commit 38118185f1aa96725eede709e4f03d94e5eaab16 Author: jobbywl Date: Thu Aug 29 21:38:48 2024 +0200 first commit diff --git a/ESPIDFNEW/.devcontainer/Dockerfile b/ESPIDFNEW/.devcontainer/Dockerfile new file mode 100644 index 0000000..1fe78dc --- /dev/null +++ b/ESPIDFNEW/.devcontainer/Dockerfile @@ -0,0 +1,47 @@ +FROM espressif/idf + +ARG DEBIAN_FRONTEND=nointeractive +ARG CONTAINER_USER=esp +ARG USER_UID=1000 +ARG USER_GID=$USER_UID + +RUN apt-get update \ + && apt install -y -q \ + cmake \ + git \ + libglib2.0-0 \ + libnuma1 \ + libpixman-1-0 \ + && rm -rf /var/lib/apt/lists/* + +# QEMU +ENV QEMU_REL=esp_develop_8.2.0_20240122 +ENV QEMU_SHA256=e7c72ef5705ad1444d391711088c8717fc89f42e9bf6d1487f9c2a326b8cfa83 +ENV QEMU_DIST=qemu-xtensa-softmmu-${QEMU_REL}-x86_64-linux-gnu.tar.xz +ENV QEMU_URL=https://github.com/espressif/qemu/releases/download/esp-develop-8.2.0-20240122/${QEMU_DIST} + +ENV LC_ALL=C.UTF-8 +ENV LANG=C.UTF-8 + +RUN wget --no-verbose ${QEMU_URL} \ + && echo "${QEMU_SHA256} *${QEMU_DIST}" | sha256sum --check --strict - \ + && tar -xf $QEMU_DIST -C /opt \ + && rm ${QEMU_DIST} + +ENV PATH=/opt/qemu/bin:${PATH} + +RUN groupadd --gid $USER_GID $CONTAINER_USER \ + && adduser --uid $USER_UID --gid $USER_GID --disabled-password --gecos "" ${CONTAINER_USER} \ + && usermod -a -G root $CONTAINER_USER && usermod -a -G dialout $CONTAINER_USER + +RUN chmod -R 775 /opt/esp/python_env/ + +USER ${CONTAINER_USER} +ENV USER=${CONTAINER_USER} +WORKDIR /home/${CONTAINER_USER} + +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/ESPIDFNEW/.devcontainer/devcontainer.json b/ESPIDFNEW/.devcontainer/devcontainer.json new file mode 100644 index 0000000..1d913ec --- /dev/null +++ b/ESPIDFNEW/.devcontainer/devcontainer.json @@ -0,0 +1,45 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: +// https://github.com/microsoft/vscode-dev-containers/tree/v0.183.0/containers/ubuntu +{ + "name": "ESP-IDF QEMU", + "build": { + "dockerfile": "Dockerfile" + }, + // Add the IDs of extensions you want installed when the container is created + "workspaceMount": "source=${localWorkspaceFolder},target=${localWorkspaceFolder},type=bind", + /* the path of workspace folder to be opened after container is running + */ + "workspaceFolder": "${localWorkspaceFolder}", + "mounts": [ + "source=extensionCache,target=/root/.vscode-server/extensions,type=volume" + ], + "customizations": { + "vscode": { + "settings": { + "terminal.integrated.defaultProfile.linux": "bash", + "idf.espIdfPath": "/opt/esp/idf", + "idf.customExtraPaths": "", + "idf.pythonBinPath": "/opt/esp/python_env/idf5.3_py3.10_env/bin/python", + "idf.toolsPath": "/opt/esp", + "idf.gitPath": "/usr/bin/git" + }, + "extensions": [ + "espressif.esp-idf-extension" + ], + }, + "codespaces": { + "settings": { + "terminal.integrated.defaultProfile.linux": "bash", + "idf.espIdfPath": "/opt/esp/idf", + "idf.customExtraPaths": "", + "idf.pythonBinPath": "/opt/esp/python_env/idf5.3_py3.10_env/bin/python", + "idf.toolsPath": "/opt/esp", + "idf.gitPath": "/usr/bin/git" + }, + "extensions": [ + "espressif.esp-idf-extension" + ], + } + }, + "runArgs": ["--privileged"] +} \ No newline at end of file diff --git a/ESPIDFNEW/.vscode/c_cpp_properties.json b/ESPIDFNEW/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..ee1cac1 --- /dev/null +++ b/ESPIDFNEW/.vscode/c_cpp_properties.json @@ -0,0 +1,27 @@ +{ + "configurations": [ + { + "name": "ESP-IDF", + "compilerPath": "${config:idf.toolsPathWin}\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe", + "compileCommands": "${workspaceFolder}/build/compile_commands.json", + "includePath": [ + "${config:idf.espIdfPath}/components/**", + "${config:idf.espIdfPathWin}/components/**", + "${config:idf.espAdfPath}/components/**", + "${config:idf.espAdfPathWin}/components/**", + "${workspaceFolder}/**" + ], + "browse": { + "path": [ + "${config:idf.espIdfPath}/components", + "${config:idf.espIdfPathWin}/components", + "${config:idf.espAdfPath}/components/**", + "${config:idf.espAdfPathWin}/components/**", + "${workspaceFolder}" + ], + "limitSymbolsToIncludedHeaders": false + } + } + ], + "version": 4 +} diff --git a/ESPIDFNEW/.vscode/launch.json b/ESPIDFNEW/.vscode/launch.json new file mode 100644 index 0000000..6d2236f --- /dev/null +++ b/ESPIDFNEW/.vscode/launch.json @@ -0,0 +1,10 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "espidf", + "name": "Launch", + "request": "launch" + } + ] +} \ No newline at end of file diff --git a/ESPIDFNEW/.vscode/settings.json b/ESPIDFNEW/.vscode/settings.json new file mode 100644 index 0000000..3b6fa15 --- /dev/null +++ b/ESPIDFNEW/.vscode/settings.json @@ -0,0 +1,41 @@ +{ + "C_Cpp.intelliSenseEngine": "default", + "idf.adapterTargetName": "esp32", + "idf.customExtraPaths": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf-gdb\\14.2_20240403\\xtensa-esp-elf-gdb\\bin;C:\\Users\\Job\\.espressif\\tools\\riscv32-esp-elf-gdb\\14.2_20240403\\riscv32-esp-elf-gdb\\bin;C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin;C:\\Users\\Job\\.espressif\\tools\\riscv32-esp-elf\\esp-13.2.0_20230928\\riscv32-esp-elf\\bin;C:\\Users\\Job\\.espressif\\tools\\esp32ulp-elf\\2.35_20220830\\esp32ulp-elf\\bin;C:\\Users\\Job\\.espressif\\tools\\cmake\\3.24.0\\bin;C:\\Users\\Job\\.espressif\\tools\\openocd-esp32\\v0.12.0-esp32-20240318\\openocd-esp32\\bin;C:\\Users\\Job\\.espressif\\tools\\ninja\\1.11.1;C:\\Users\\Job\\.espressif\\tools\\idf-exe\\1.0.3;C:\\Users\\Job\\.espressif\\tools\\ccache\\4.8\\ccache-4.8-windows-x86_64;C:\\Users\\Job\\.espressif\\tools\\dfu-util\\0.11\\dfu-util-0.11-win64;C:\\Users\\Job\\.espressif\\tools\\esp-rom-elfs\\20230320", + "idf.customExtraVars": { + "OPENOCD_SCRIPTS": "C:\\Users\\Job\\.espressif\\tools\\openocd-esp32\\v0.12.0-esp32-20240318/openocd-esp32/share/openocd/scripts", + "IDF_CCACHE_ENABLE": "1", + "ESP_ROM_ELF_DIR": "C:\\Users\\Job\\.espressif\\tools\\esp-rom-elfs\\20230320/" + }, + "idf.espIdfPathWin": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf", + "idf.openOcdConfigs": [ + "interface/ftdi/esp32_devkitj_v1.cfg", + "target/esp32.cfg" + ], + "idf.portWin": "COM4", + "idf.pythonBinPathWin": "C:\\Users\\Job\\.espressif\\python_env\\idf5.2_py3.11_env\\Scripts\\python.exe", + "idf.toolsPathWin": "C:\\Users\\Job\\.espressif", + "idf.flashType": "UART", + "files.associations": { + "param.h": "c", + "random": "c", + "math.h": "c", + "i2s.h": "c", + "cstdint": "c", + "vban.h": "c", + "http_control.h": "c", + "esp_dsp.h": "c", + "butterworthdesign.h": "c", + "esp_log.h": "c", + "inttypes.h": "c", + "freertos.h": "c", + "queue.h": "c", + "signalpath.h": "c", + "algorithm": "c", + "esp_netif.h": "c", + "event_groups.h": "c", + "i2c.h": "c", + "string.h": "c" + }, + "cmake.configureOnOpen": false +} diff --git a/ESPIDFNEW/.vscode/tasks.json b/ESPIDFNEW/.vscode/tasks.json new file mode 100644 index 0000000..1dc7915 --- /dev/null +++ b/ESPIDFNEW/.vscode/tasks.json @@ -0,0 +1,259 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Build - Build project", + "type": "shell", + "command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py build", + "windows": { + "command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py build", + "options": { + "env": { + "PATH": "${env:PATH};${config:idf.customExtraPaths}" + } + } + }, + "options": { + "env": { + "PATH": "${env:PATH}:${config:idf.customExtraPaths}" + } + }, + "problemMatcher": [ + { + "owner": "cpp", + "fileLocation": [ + "autoDetect", + "${workspaceFolder}" + ], + "pattern": { + "regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + } + ], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "Set ESP-IDF Target", + "type": "shell", + "command": "${command:espIdf.setTarget}", + "problemMatcher": { + "owner": "cpp", + "fileLocation": [ + "autoDetect", + "${workspaceFolder}" + ], + "pattern": { + "regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + } + }, + { + "label": "Clean - Clean the project", + "type": "shell", + "command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py fullclean", + "windows": { + "command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py fullclean", + "options": { + "env": { + "PATH": "${env:PATH};${config:idf.customExtraPaths}" + } + } + }, + "options": { + "env": { + "PATH": "${env:PATH}:${config:idf.customExtraPaths}" + } + }, + "problemMatcher": [ + { + "owner": "cpp", + "fileLocation": [ + "autoDetect", + "${workspaceFolder}" + ], + "pattern": { + "regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + } + ] + }, + { + "label": "Flash - Flash the device", + "type": "shell", + "command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py -p ${config:idf.port} -b ${config:idf.flashBaudRate} flash", + "windows": { + "command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py flash -p ${config:idf.portWin} -b ${config:idf.flashBaudRate}", + "options": { + "env": { + "PATH": "${env:PATH};${config:idf.customExtraPaths}" + } + } + }, + "options": { + "env": { + "PATH": "${env:PATH}:${config:idf.customExtraPaths}" + } + }, + "problemMatcher": [ + { + "owner": "cpp", + "fileLocation": [ + "autoDetect", + "${workspaceFolder}" + ], + "pattern": { + "regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + } + ] + }, + { + "label": "Monitor: Start the monitor", + "type": "shell", + "command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py -p ${config:idf.port} monitor", + "windows": { + "command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py -p ${config:idf.portWin} monitor", + "options": { + "env": { + "PATH": "${env:PATH};${config:idf.customExtraPaths}" + } + } + }, + "options": { + "env": { + "PATH": "${env:PATH}:${config:idf.customExtraPaths}" + } + }, + "problemMatcher": [ + { + "owner": "cpp", + "fileLocation": [ + "autoDetect", + "${workspaceFolder}" + ], + "pattern": { + "regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + } + ], + "dependsOn": "Flash - Flash the device" + }, + { + "label": "OpenOCD: Start openOCD", + "type": "shell", + "presentation": { + "echo": true, + "reveal": "never", + "focus": false, + "panel": "new" + }, + "command": "openocd -s ${command:espIdf.getOpenOcdScriptValue} ${command:espIdf.getOpenOcdConfigs}", + "windows": { + "command": "openocd.exe -s ${command:espIdf.getOpenOcdScriptValue} ${command:espIdf.getOpenOcdConfigs}", + "options": { + "env": { + "PATH": "${env:PATH};${config:idf.customExtraPaths}" + } + } + }, + "options": { + "env": { + "PATH": "${env:PATH}:${config:idf.customExtraPaths}" + } + }, + "problemMatcher": { + "owner": "cpp", + "fileLocation": [ + "autoDetect", + "${workspaceFolder}" + ], + "pattern": { + "regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + } + }, + { + "label": "adapter", + "type": "shell", + "command": "${config:idf.pythonBinPath}", + "isBackground": true, + "options": { + "env": { + "PATH": "${env:PATH}:${config:idf.customExtraPaths}", + "PYTHONPATH": "${command:espIdf.getExtensionPath}/esp_debug_adapter/debug_adapter" + } + }, + "problemMatcher": { + "background": { + "beginsPattern": "\bDEBUG_ADAPTER_STARTED\b", + "endsPattern": "DEBUG_ADAPTER_READY2CONNECT", + "activeOnStart": true + }, + "pattern": { + "regexp": "(\\d+)-(\\d+)-(\\d+)\\s(\\d+):(\\d+):(\\d+),(\\d+)\\s-(.+)\\s(ERROR)", + "file": 8, + "line": 2, + "column": 3, + "severity": 4, + "message": 9 + } + }, + "args": [ + "${command:espIdf.getExtensionPath}/esp_debug_adapter/debug_adapter_main.py", + "-e", + "${workspaceFolder}/build/${command:espIdf.getProjectName}.elf", + "-s", + "$OPENOCD_SCRIPTS", + "-dn", + "esp32", + "-om", + "connect_to_instance", + "-t", + "xtensa-esp32-elf-" + + ], + "windows": { + "command": "${config:idf.pythonBinPathWin}", + "options": { + "env": { + "PATH": "${env:PATH};${config:idf.customExtraPaths}", + "PYTHONPATH": "${command:espIdf.getExtensionPath}/esp_debug_adapter/debug_adapter" + } + } + } + } + ] +} \ No newline at end of file diff --git a/ESPIDFNEW/CMakeLists.txt b/ESPIDFNEW/CMakeLists.txt new file mode 100644 index 0000000..67d2d11 --- /dev/null +++ b/ESPIDFNEW/CMakeLists.txt @@ -0,0 +1,6 @@ +# 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) +project(ESPIDFNEW) diff --git a/ESPIDFNEW/README.md b/ESPIDFNEW/README.md new file mode 100644 index 0000000..29171c3 --- /dev/null +++ b/ESPIDFNEW/README.md @@ -0,0 +1,53 @@ +| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 | Linux | +| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ----- | + +# Hello World Example + +Starts a FreeRTOS task to print "Hello World". + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +## How to use example + +Follow detailed instructions provided specifically for this example. + +Select the instructions depending on Espressif chip installed on your development board: + +- [ESP32 Getting Started Guide](https://docs.espressif.com/projects/esp-idf/en/stable/get-started/index.html) +- [ESP32-S2 Getting Started Guide](https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/get-started/index.html) + + +## Example folder contents + +The project **hello_world** contains one source file in C language [hello_world_main.c](main/hello_world_main.c). The file is located in folder [main](main). + +ESP-IDF projects are built using CMake. The project build configuration is contained in `CMakeLists.txt` files that provide set of directives and instructions describing the project's source files and targets (executable, library, or both). + +Below is short explanation of remaining files in the project folder. + +``` +├── CMakeLists.txt +├── pytest_hello_world.py Python script used for automated testing +├── main +│ ├── CMakeLists.txt +│ └── hello_world_main.c +└── README.md This is the file you are currently reading +``` + +For more information on structure and contents of ESP-IDF projects, please refer to Section [Build System](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/build-system.html) of the ESP-IDF Programming Guide. + +## Troubleshooting + +* Program upload failure + + * Hardware connection is not correct: run `idf.py -p PORT monitor`, and reboot your board to see if there are any output logs. + * The baud rate for downloading is too high: lower your baud rate in the `menuconfig` menu, and try again. + +## Technical support and feedback + +Please use the following feedback channels: + +* For technical queries, go to the [esp32.com](https://esp32.com/) forum +* For a feature request or bug report, create a [GitHub issue](https://github.com/espressif/esp-idf/issues) + +We will get back to you as soon as possible. diff --git a/ESPIDFNEW/build/.bin_timestamp b/ESPIDFNEW/build/.bin_timestamp new file mode 100644 index 0000000..0c0e174 --- /dev/null +++ b/ESPIDFNEW/build/.bin_timestamp @@ -0,0 +1 @@ +6b72e2092693106ca5f125558635c6ef C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ESPIDFNEW.bin diff --git a/ESPIDFNEW/build/.ninja_deps b/ESPIDFNEW/build/.ninja_deps new file mode 100644 index 0000000..3e8812f Binary files /dev/null and b/ESPIDFNEW/build/.ninja_deps differ diff --git a/ESPIDFNEW/build/.ninja_log b/ESPIDFNEW/build/.ninja_log new file mode 100644 index 0000000..800aba3 --- /dev/null +++ b/ESPIDFNEW/build/.ninja_log @@ -0,0 +1,1145 @@ +# ninja log v5 +1471 1607 7466595301917771 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj 27e64a002ec43547 +35 52 7413941730452837 project_elf_src_esp32.c a86e8ae1bd314ee9 +114 278 7466595288645463 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj 215b695b7e1c558b +3456 3610 7466595321818621 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj d2f27dfd7334b828 +181 335 7466595289219328 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj 12350acd5931c6ba +7945 8100 7466595366612759 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ae32.S.obj e1ef063174057dcf +7571 7700 7466595362866466 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_aes3.S.obj b9353761de49bb1d +1894 2902 7466595314819944 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 85b0f66a5f9e88ea +42 89 7413941730825399 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/memory.ld 352aea33494e781f +1963 2452 7466595311037470 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj a859857d5a9ddaa2 +616 774 7466595293532991 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 8cce3400752388b3 +35 52 7413941730452837 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/project_elf_src_esp32.c a86e8ae1bd314ee9 +3122 3315 7466595318754233 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj f9087ce7072fe0d9 +6834 6974 7466595355889797 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj b8a615f77f4b7af9 +2869 3029 7466595315989754 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj 17dde28e3790fea5 +46 86 7413941730794980 esp-idf/esp_system/ld/sections.ld.in 2fdf4698abf13796 +273 433 7466595290153421 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj d3b6bb9d15a325a8 +2892 3054 7466595316232833 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj 661642cba2ae815f +46 86 7413941730794980 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld.in 2fdf4698abf13796 +128 292 7466595288574257 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj 619dc567e974c3e9 +1929 2879 7466595314764846 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj c2797ecf50204f9b +3099 3295 7466595318317855 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj 39bea2f6650c8aa5 +39 247 7413941730794980 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/partition_table/partition-table.bin 9183d3a26d2af3d +355 514 7466595290878993 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj 716f3927af0d5848 +3442 3597 7466595321747661 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj 4a522a82b3382c51 +1595 1742 7466595303229464 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj f223032903288a29 +7093 7238 7466595358231719 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj f3098e07a732e14e +263 423 7466595289915054 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj 358bc2c1f5e687e6 +3076 3235 7466595318156493 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj 1b1717bb64d83540 +39 247 7413941730794980 partition_table/partition-table.bin 9183d3a26d2af3d +1674 1818 7466595304081303 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj 321b2c0e4b7a11ed +42 89 7413941730825399 esp-idf/esp_system/ld/memory.ld 352aea33494e781f +1360 1506 7466595301156220 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj e18f0cb37075399a +3117 3311 7466595318468515 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj 4aae3f822b50bcc1 +70 237 7466595288382512 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj 3e179c19a4900b65 +253 404 7466595289847607 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj c463339bbe816a5c +3058 3213 7466595317910819 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj d2bb1533c33e191a +1153 1310 7466595298739142 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj 60dba0ee26fd1524 +142 305 7466595288750575 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj 4895936690c73076 +192 340 7466595289259331 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj 148a4362e9c49406 +812 987 7466595295764642 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj c23fa8b1655647f9 +157 321 7466595288947714 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 2c1ff53d041af089 +3333 3493 7466595320648871 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj e118852580223e14 +6993 7128 7466595357302613 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj 37e49e810c5db112 +7777 7916 7466595364939834 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_ansi.c.obj 49c703721485436b +198 345 7466595289468910 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 56b385c826692de6 +2765 2836 7466595315258541 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj 4c10e90975f8449b +5464 5555 7466595342523370 esp-idf/soc/libsoc.a 990fe0ebc2339369 +7233 7384 7466595359653557 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj dd2fe166a59e1225 +206 355 7466595289365304 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj d910da8bf6828d0a +1142 1297 7466595298653805 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj c651790f99820f38 +7333 7491 7466595360674714 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj fd68cdd5b30763c6 +6809 6951 7466595355438136 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj 5bae17b63fd3beca +218 370 7466595289458905 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 6d2763c973bce95b +3767 3821 7466595324969113 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj a90be09bc4cc6830 +227 382 7466595289692287 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj d9ac8c78ed93abc7 +438 590 7466595291732613 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj f24a2f56f0877015 +93 253 7466595288605459 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj 983eca8778b76cf2 +3209 3403 7466595319547789 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 1f6e28f324464cc +2997 3152 7466595317296144 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj 8b541aee5101f717 +2713 2955 7466595315029522 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 576bc9c9cb54841e +132 297 7466595288605459 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj 7d5e15a0f76a8b1e +7916 8063 7466595366320962 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman/float/dsps_wind_blackman_f32.c.obj 84eb7412fe5906d5 +2874 3034 7466595316019755 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 3c0d7a8818e61260 +268 427 7466595290143423 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj 8ba4af7a0377c473 +392 545 7466595291348939 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj b13b248dd37879ba +79 243 7466595288382512 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj 9efe9125fd13e338 +6914 7047 7466595356443277 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj 57a562dff32bc156 +2746 2821 7466595315029522 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj 2580897590c1e7d6 +137 300 7466595288857584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj 4b3691863f8f39d8 +110 273 7466595288827591 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj cd533100791e1e56 +6765 6914 7466595354954569 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_platform.c.obj e1b6cc5b878ff1cf +1790 1932 7466595305180320 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj 5ee3a46fdd11d9f3 +152 314 7466595288857584 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj 58ddd99ffff7c08 +3253 3441 7466595319900958 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj c7120b55037dce54 +1406 1548 7466595301359279 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj e3fc89bb4911b5a1 +1297 1462 7466595300568136 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj e8ebd5e94955fe7f +6685 6830 7466595354199003 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj 159b1c32c69458ad +124 288 7466595288655453 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj ebf8fa2a5cae3971 +3049 3202 7466595317808083 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj 1c54d548dad67a79 +97 258 7466595288605459 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj 549d695aab046743 +2000 2746 7466595314208219 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 814455cc72a40616 +396 548 7466595291308934 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj 9c19f29ae41f8517 +7773 7913 7466595364889833 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_aes3.S.obj 272c0c4de94d04b4 +3708 3816 7466595324578021 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj 4c1fc5f9909c9968 +3713 3816 7466595324439749 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj 72335e82a71850d4 +7300 7457 7466595360409144 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj 40404148ef95dc69 +400 553 7466595291288939 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj 6ab75a3a611bf4d4 +6997 7132 7466595357247654 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj 1cc5e2b91f9d5b3f +203 349 7466595289300246 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj b744581e4a371f0d +1058 1215 7466595297904595 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj 4a9b7194a423338a +67 231 7466595288720574 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj 9ed47f84e3f36bd2 +1453 1591 7466595301766187 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj 18cb30b8eba63312 +7705 7847 7466595364215025 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ae32.S.obj fd8d718607fd1eeb +735 908 7466595294891974 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b7376f6bfcfde179 +8003 8178 7466595367257975 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ansi.c.obj 62f2dc8a4d34480a +301 468 7466595290289223 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj ef62affb4892239 +210 360 7466595289375474 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj a89ba23e3eb7ba4 +1384 1526 7466595301241898 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 969f5036f5fcee5f +6783 6929 7466595355187779 esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc/ledc.c.obj dfc238ae3549119a +1457 1595 7466595301817013 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj 87ab06e0410440e2 +106 268 7466595288680554 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 125b5977fbd2ef71 +146 309 7466595288992798 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj 5a3316cc57cdaef3 +510 659 7466595292603687 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj 6e4a91f509561965 +89 247 7466595288645463 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 95c306aa1e8539eb +2707 2940 7466595315029522 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 9add99333e259dd8 +103 263 7466595288569206 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj f1e87816ecb52b7d +7789 7927 7466595365048252 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ae32.S.obj b17c8883076b2b15 +214 365 7466595289521772 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj eac116c7e25e464c +3191 3387 7466595319243282 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj fb1268d8a5d838df +6661 6809 7466595353938687 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj aa94d51ba0ad9941 +232 387 7466595289617204 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj 57129f8851348e79 +3531 3688 7466595322579017 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 7031952fc8a3f4ce +174 330 7466595289158161 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj fc327aa138c75781 +7761 7902 7466595364767896 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ansi.c.obj b1b4cb5c34beab9c +3518 3673 7466595322533809 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj 50a8be2456454686 +1552 1695 7466595302727172 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj 1289c9a50ef94ca3 +258 412 7466595289837613 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 6c5bf601d4818f57 +1237 1401 7466595299859080 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj a8d4d6b01f707cb4 +243 396 7466595289722274 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 92bac1a67e45aa88 +330 494 7466595290614311 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 86d23ff79f1691fd +288 450 7466595290208829 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 2201dfff680d7caa +7011 7146 7466595357342609 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj b74a1162d2bf067e +283 444 7466595290143423 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj cb1e941983c70642 +237 392 7466595289722274 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj b8b86da4259aa273 +3080 3240 7466595318116497 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj d16f3016dad39e08 +3785 3830 7466595325239217 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj 3c813ea2588fd57 +293 457 7466595290198830 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 9384c36f7d072514 +321 484 7466595290546997 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj ed5e1f1c5b32f035 +168 326 7466595289168162 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 5ff7d698dbe2c83c +247 400 7466595290401691 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj b0753361fce5441f +119 283 7466595288765628 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 291c58c6b36408fc +86 418 7466595289541777 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj 2e219a3e9702bef2 +82 408 7466595289541777 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj 1a881027a963e557 +644 807 7466595293834911 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj 2692824eb9d8303b +904 1063 7466595296507671 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 3468fbfa413b9679 +345 506 7466595290765026 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj 31c657b0389a3845 +7069 7209 7466595357937916 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj c1dd4937020e2ccf +506 654 7466595292328007 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj 3a9fc8a2f5da555e +314 480 7466595290451687 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj e38b275fb5208c0f +1164 1331 7466595298909859 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj 96b9fa416394982f +305 473 7466595290391688 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj 1508ee001816711a +7035 7170 7466595357578322 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj 779d48db3356ad95 +1331 1482 7466595300748643 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj e9437148483d121c +350 510 7466595290868420 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj 8ede87d262cd798c +612 769 7466595293522994 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 87c8ce4d93973944 +1723 1865 7466595304597960 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj ebf50c2331e36aaa +326 489 7466595290604310 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj c04688f64b1641b3 +1643 1790 7466595303735293 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj f0182bbfc58b7078 +1987 2921 7466595314933994 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj 270469b8e61e6e8d +5921 5986 7466595346828400 esp-idf/spi_flash/libspi_flash.a b98b719d435cc227 +8027 8181 7466595367507455 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fir_s16_m_ae32.S.obj 9602427b8a17fed3 +222 376 7466595289742281 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj 2bb43d1becdaabcc +376 531 7466595291074803 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj 162c8ec159cc508b +1279 1448 7466595300603360 esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj cc3e181aa466417f +599 754 7466595293228316 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj d0578c2bce046d3d +7101 7248 7466595358356988 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj 90c8fc1618001ac9 +365 523 7466595291147409 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj 2459753813e6c7a6 +413 567 7466595291437157 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj c2aa444e4a17ba0c +297 463 7466595290369225 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj f36f90a147ec474c +1448 1587 7466595301701144 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj d13f0c0dc5ef954a +278 438 7466595290198830 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 34b29286f88d8ad9 +6674 6823 7466595354088856 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj 295118dfee877a03 +696 1160 7466595296888991 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 345eb6775b8dda +382 536 7466595291447155 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj 6386a7c22b323e08 +1561 1704 7466595303426278 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj d79c8561566d967f +6757 6904 7466595354899521 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_slave.c.obj b0bad6c9de624122 +1682 1826 7466595304091329 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj e2c4b810695b6b20 +371 527 7466595291147409 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj fc81c645cc5f1919 +404 558 7466595291447155 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj d6482ad0e126a242 +8086 8190 7466595368622588 esp-idf/unity/libunity.a 8e1059f3d68e28af +387 541 7466595291225027 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj 9feb917c8e9530b1 +335 498 7466595290729962 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj fcfe74ad139cbaf3 +3230 3422 7466595319628780 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj e2aca51b467043a1 +654 817 7466595293864920 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj 62f172cc16899a9f +7522 7654 7466595362791412 esp-idf/esp_mm/libesp_mm.a c21c31670b60a473 +340 502 7466595290775273 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj e4325b574e952cdf +2456 2841 7466595314639476 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj eb6b7d4df288253a +428 581 7466595291682594 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj 5efd6720af9e6217 +759 933 7466595295815036 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 3098210c32d795d1 +1310 1471 7466595300488127 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj 90107592948b1da9 +1420 1560 7466595301436786 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj a5df16e34551f15e +409 562 7466595291447155 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj 4627a8281b1bee7f +480 626 7466595292066204 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj 45405b4d8667fd70 +477 621 7466595291996210 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 89c6869c486cae78 +1088 1246 7466595298286703 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj 1f967cf657325e0e +484 630 7466595292120515 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 5f2a3b5c67339443 +309 477 7466595290634315 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj cc343d810461b3f0 +1128 1279 7466595298528749 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 50d2be5e99d45621 +433 585 7466595291657521 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj db84317bca2bdfee +418 572 7466595291567342 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj 9e6886a242852f9e +1052 1211 7466595297819485 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj 41dfe3ed8e632414 +450 599 7466595291873158 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj bb9c6ba3b706b931 +423 577 7466595291647519 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj a04a57de6370dd60 +7026 7161 7466595357487239 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj a296408235532ba5 +458 604 7466595291848111 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 8388b61f611ef3b1 +468 612 7466595292267641 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj 3e0c7b1bce85fdf8 +6937 7069 7466595356644732 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 87a34b5ac5c0030 +1573 1718 7466595303076051 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj 303d236e96277a36 +3799 3835 7466595325304282 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj ea9fda92ffb29b13 +463 608 7466595291923214 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj 2f07311d7c158c64 +1835 1982 7466595305653285 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 1a06e33458df7ab9 +490 636 7466595292165572 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 5de91f264c4b5a13 +498 644 7466595292197657 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_mem.c.obj 5780dc6254af521f +1161 1323 7466595298829416 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 562c398effaa66c9 +494 640 7466595292197657 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_hardware.c.obj d333a5462c97defb +1369 1513 7466595301019161 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj f5967f63ad5cc9e6 +536 687 7466595292749003 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c.obj 64154775f1013461 +7654 7793 7466595364115078 esp-idf/efuse/libefuse.a c1039c320b56a26d +502 649 7466595292287995 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_timing.c.obj 99143c6fcfb58f6e +473 616 7466595291986189 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj 76a5b62887a7615a +553 705 7466595292801145 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/md/esp_md.c.obj aaf046b0e8ae17c0 +2961 3117 7466595316949020 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj c0f9e07da3d056d8 +518 668 7466595292548586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj e9800ef16e5557f4 +4244 4300 7466595329975172 esp-idf/esp_adc/libesp_adc.a 5b0b46ebd626ef02 +604 759 7466595293303387 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj f086cb569b0b565e +608 764 7466595293333387 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj 4e58ffa627696185 +3108 3304 7466595318518548 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj c9c336857330be83 +523 673 7466595292633682 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj 24048bb46a326150 +754 928 7466595295508846 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj 522a10633fa7a379 +541 692 7466595292699010 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c.obj b622cfbfb961d828 +548 701 7466595292851126 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj 18772f2df9b14f9c +2427 2931 7466595314969257 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj e4de0538974fa80f +545 696 7466595292729012 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c.obj 15a5bf9cbf2df9e9 +585 739 7466595293153015 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj c24105370cfe8851 +594 748 7466595293248313 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj ddd42203852b5499 +6873 7010 7466595356046436 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj 82ddd2d4cb780a91 +869 1031 7466595296156734 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 7809f8992e5688cc +514 664 7466595292643685 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/block/esp_aes.c.obj 9f0d7ba26fd3a44f +531 682 7466595292876516 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj a56ae0c463087913 +1953 2444 7466595306882661 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj 897aae360e0c5941 +444 594 7466595291858130 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj dc56cfae55aad6ad +1539 1682 7466595302631998 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj 22e594321dd91f74 +572 725 7466595293018655 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj 7cfe74930cb32ab +527 677 7466595292811124 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj d0fe2fe4f067e2f +6649 6796 7466595353868167 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj a054745cfd231c7b +1861 2419 7466595305944900 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj b8d7a6c38a22004e +1755 1899 7466595304788312 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj fc27ee13a3fa19 +908 1068 7466595296347478 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj f476a043cdcecbf +2431 2874 7466595314734849 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj c92d88d9b214ed90 +1424 1564 7466595301491208 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj 3405bf812d0c4d93 +630 790 7466595293552990 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj db2159d92435a42 +1246 1410 7466595299954362 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj ec43fd8acd79bf5e +1564 1709 7466595302910389 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj a9f907fd473f4ca5 +6249 6310 7466595350078913 esp-idf/mbedtls/mbedtls/library/libmbedtls.a c262785842fbde8 +7081 7225 7466595358191733 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj c8e994dc644cff1e +8398 8583 7413941815684422 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/x509_crt_bundle d387751da72f804e +567 720 7466595292953095 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj cd8336f0e757a8a5 +3422 3578 7466595321665801 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj df4b1c547ae58135 +1274 1346 7413941743234325 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-update ce7c6ca21460903a +590 743 7466595293188317 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 730f387c2a54b113 +558 710 7466595292943099 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj 1485ac3bd7092356 +659 829 7466595293878183 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj ff0c32fb98b32d4b +7321 7478 7466595360494206 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj 20d6acc8d7b9df35 +1491 1631 7466595302202735 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj 780ea9389750d89a +1379 1521 7466595301106220 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj 8d712434deeda553 +673 848 7466595294079458 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj 4df8052e7e71fca0 +1885 2892 7466595314789945 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj d6f8b3e0b74b8e0c +1657 1803 7466595303828360 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj 2a7a6740e1fa14f9 +60 155 7413941816160348 bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +2966 3122 7466595316980418 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj d49d29eb659a49ac +664 837 7466595294058670 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj cb1f0524bccb12 +6669 6817 7466595353989337 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj 6f9587c959a63e00 +582 735 7466595293188317 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 8b60f79e1412b123 +668 842 7466595293943443 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj 569ef161ace5f60b +7412 7562 7466595361444794 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj 188115f117455d2 +720 893 7466595294628225 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 8b2234ffb8a46271 +1498 1639 7466595302182713 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj bf9e9d5baa4a2281 +626 784 7466595293608296 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj 4d92315227f6f02 +3054 3208 7466595317868091 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj 5b533fa231d283f6 +3447 3600 7466595321757658 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 8613291d08a4f866 +6978 7112 7466595357036131 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj f269bef765307430 +965 1124 7466595297355827 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 6880107d6739ddb4 +928 1088 7466595296748317 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj aadf7468d01a4b65 +640 801 7466595293773903 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj 39fdcfea91ad648c +682 858 7466595294079458 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_platform_time.c.obj 610ce7cc020c9ee7 +692 1224 7466595296888991 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj 3697f23d5f692d8e +622 779 7466595293824910 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj b0a9046955bde0e7 +2413 2758 7466595314258226 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj fecba323ed0cf44c +7500 7633 7466595362167068 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ansi.c.obj d906e0e454c2747c +563 714 7466595292988644 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj f5f7b232aa3ff6f4 +7927 8077 7466595366428088 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/nuttall/float/dsps_wind_nuttall_f32.c.obj 4914c6b6355f2643 +6499 6551 7466595352477590 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a b17a8bb964a4c2d0 +1228 1392 7466595299869078 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj 1b9a699cbd4c94b8 +677 853 7466595294194944 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 1c21e3922db2d584 +3235 3426 7466595319679227 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj ad746ede5e65749 +1113 1201 7413941741704875 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir e6d310b1cc6cc15c +1113 1201 7413941741704875 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir e6d310b1cc6cc15c +1063 1219 7466595297975062 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj d5f74f986b37dcfe +7154 7304 7466595358820902 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj ee0f5717cbc0bc80 +743 919 7466595295200722 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj f6d201c732c78496 +714 887 7466595294576110 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj a65cabf952708f7d +764 938 7466595295030869 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 2f5b2db478f20649 +739 913 7466595295010851 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj e8d3522e4227f3d6 +801 977 7466595295320114 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj e3c4638f5c9ac14a +1201 1273 7413941742592706 bootloader-prefix/src/bootloader-stamp/bootloader-download efe2da9d14f92af1 +7550 7681 7466595362667189 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c.obj f2941b2cba56c39 +6801 6944 7466595355332882 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj 242cac8157205714 +1201 1273 7413941742592706 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-download efe2da9d14f92af1 +725 899 7466595294891974 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj cf83fe76e4bc674a +3176 3372 7466595319213284 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj 3e05445b647c7cc8 +3683 3814 7466595324168762 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj 5e7a9d516f2af85a +7532 7663 7466595362469632 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_off_f32_ansi.c.obj c49f9bc6a1516a07 +1933 2431 7466595306677480 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj 4e3cf042ae2ab0bf +649 812 7466595293824910 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj 3514aea2451f8d21 +636 795 7466595293784895 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj 75ab92b543afd4ea +7852 7987 7466595365687365 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ae32.S.obj 81de47020c3deca1 +795 972 7466595295310126 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj 58f9145659039ce2 +7914 8059 7466595366280953 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/hann/float/dsps_wind_hann_f32.c.obj 1da2d8cbddf66c82 +780 955 7466595295210724 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj 5d64969664d19bc2 +7808 7944 7466595365239140 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ae32.S.obj 6f23db74dacfe4cb +1274 1346 7413941743234325 bootloader-prefix/src/bootloader-stamp/bootloader-update ce7c6ca21460903a +730 904 7466595294881951 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 225295e72c9b6a24 +7781 7920 7466595364964882 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_aes3.S.obj dfaee34cff917c00 +784 960 7466595295210724 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj be516d101b8f88a5 +3483 3640 7466595322219801 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj d28bf96284343e49 +7864 7999 7466595365808174 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dct/float/dsps_dct_f32.c.obj b74ea756a8d4bd57 +1346 1401 7413941743870678 bootloader-prefix/src/bootloader-stamp/bootloader-patch 3b736d39ad4767ec +1346 1401 7413941743870678 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch 3b736d39ad4767ec +12608 12635 7413941856267067 bootloader-prefix/src/bootloader-stamp/bootloader-install aaf973fcc73846de +7743 7884 7466595364610095 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ae32.S.obj d8340fe53c4a4e9e +829 996 7466595295613912 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj aa28a8b1df61f1fc +3679 3814 7466595324219203 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj 2dd1ff292c465ea4 +6896 7030 7466595356327202 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_host.c.obj 846dd4b00c4524c9 +1831 1978 7466595306328080 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b1768fd2458eb526 +1037 1193 7466595297718105 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj 1b65e914d09b8716 +710 881 7466595295375453 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj f333f1989593f1d0 +1534 1678 7466595302567433 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj d84d7ebdeff27411 +577 730 7466595293378679 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj 73ab197eda0f3e05 +1224 1388 7466595299512079 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj 98d1985b5c819153 +837 1002 7466595295679595 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj a2f51cdd9d612883 +6622 6770 7466595353627192 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 59281c60ee091262 +807 981 7466595295679595 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 3d89c9f786b4659e +1993 2950 7466595314933994 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj f75386e2cc4791a4 +7170 7321 7466595358982343 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj 67fd17f2e0967c2b +7408 7558 7466595361339432 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj 1a170857fbd63e7a +3470 3624 7466595321985424 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj 1c428c906e7f1cfc +6637 6783 7466595353748018 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj 484060d3a5e3eba8 +848 1012 7466595295749591 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 12ea92f0d6b3d051 +7889 8027 7466595366066060 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.c.obj dc2b75e8b032175e +3654 3809 7466595323802852 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj 2bbc4d1029b2761a +842 1007 7466595295739595 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj be02d990a683af79 +6944 7078 7466595356835057 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj cc843380d22dd3d7 +6989 7124 7466595357267650 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj 25b04c1d9746f5f6 +2970 3125 7466595317040432 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj 188893d634e05c8b +774 948 7466595295190720 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj 5f8cd8f6fa5e4f57 +2407 2815 7466595314429022 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj 62195f500d26b691 +818 992 7466595295583921 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 2e208945ec687821 +2827 2982 7466595315622760 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj d4b2bb9ad0c94dc8 +688 863 7466595294480657 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/net_sockets.c.obj af1d86a6bc211eb +1084 1241 7466595298057488 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj b25996df9bd16f02 +1556 1699 7466595302817379 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj d2c1db65bfcbe2b8 +1786 1929 7466595305074932 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj d9f05c259e8796bb +858 1022 7466595295890133 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj e176f3c6f114eb56 +1414 1556 7466595301396789 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj ef2fabd3ed924d77 +749 924 7466595295200722 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 684e5910be747b0 +2974 3129 7466595317050436 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 4998ad7be3b452b +887 1046 7466595296156734 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj f10fc29b35c4161f +3632 3790 7466595323757769 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj 70245488d389c58a +705 875 7466595295190720 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 1bc10f2dc4a15c4e +701 869 7466595295220720 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 351e9b057920fa5e +1274 1444 7466595300308513 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj 8c48d83e9e0f43a9 +790 965 7466595295320114 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj 93bc2b88e8c51ce0 +7014 7149 7466595357387931 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj 50b6f3338902a183 +7174 7325 7466595359157635 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj d4eba6d4de98efc2 +853 1017 7466595295870085 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj 1a0bcca761fec30a +3403 3558 7466595321390377 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj fddec6cc993c9269 +914 1074 7466595296678270 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj 966c0644e32ca9a5 +2841 2997 7466595315698022 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj 1ba15b5751bd7298 +769 943 7466595295455489 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 4fd9681f66bdf8ab +1463 1598 7466595301847027 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj e72b9f238c08e4d9 +863 1026 7466595296051418 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj f771db292bd2351c +360 518 7466595291587520 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj ef7ecec313053786 +3588 3745 7466595323239143 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj 74b49374b8e4a50f +881 1042 7466595296402298 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 7943a45492d32462 +7457 7597 7466595361796075 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj add63b9b3c2d048d +875 1037 7466595296317487 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj c65c2ba3e761cbe4 +1495 1635 7466595302153310 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj 936550f032ad7ad2 +987 1142 7466595297118956 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 627e03bdec87ced7 +1022 1179 7466595297666542 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj ed64cdce56b974b4 +2727 2883 7466595314754849 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj d4f44c51dad80dd5 +6955 7089 7466595356835057 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj 665a5879cb21f43e +3649 3804 7466595324103712 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj abd30890f9709cbe +939 1098 7466595296708298 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 3faba22d8ff70571 +1478 1617 7466595302018247 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj ef611059630a83d0 +899 1058 7466595296507671 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 3614bb722ebc8a26 +1466 1603 7466595301877751 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj b3d1c086f36e2aa5 +1002 1157 7466595297305815 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj 75e998c3f52055ee +972 1128 7466595297027682 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj 87d190bb78efe3e +3964 4020 7466595327168905 esp-idf/esp_http_server/libesp_http_server.a 73ec7ca7f2c99d0f +6941 7073 7466595356624730 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj c073485c60455820 +1806 1952 7466595305391454 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 851d29afb3d1df82 +2906 3067 7466595316518779 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj e2d2205bf44356b0 +924 1083 7466595296652776 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj c42e741cb05ce27f +1530 1674 7466595302707183 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj 663cc4e5b02a799b +955 1114 7466595296918987 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj 8874ec8822d80eb3 +2444 2854 7466595314664535 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj dbc40ca71db9e62b +1042 1199 7466595297708102 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj f5acf4cb3243497b +943 1105 7466595296813383 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 3b2d182f6532aa33 +1568 1713 7466595303128290 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj 6d6fd54998ff5a9a +919 1079 7466595296652776 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 3e1805bdceba5269 +1526 1669 7466595302552380 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj ca2aa8488b7bd723 +2956 3112 7466595316858883 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj e088f94b6d746f22 +934 1093 7466595296748317 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj 537329906826128c +7634 7773 7466595363487987 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ae32.S.obj fd725b3373e21515 +3376 3536 7466595321365286 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj d42470fb4dd73eed +7244 7395 7466595359856796 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj 8ba4dfa6de523ddf +981 1138 7466595297168956 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj dcbd60950bade466 +6851 6989 7466595355929808 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj f84c29b19dcca1ee +996 1152 7466595297345813 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj 15e543458cd4c +7803 7941 7466595365199141 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ae32.S.obj e20f9d25425acc1c +1304 1466 7466595300392781 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj eea933fe191707ca +7200 7352 7466595359393049 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj 685861c4c2be3002 +1074 1232 7466595298017481 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj ee39cc4f63076289 +3605 3762 7466595323379537 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj b5422b57be4a337a +992 1147 7466595297220544 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj 56c3f88992ea0000 +1047 1205 7466595297819485 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj 6e9fcbd8ba011f0 +2759 2831 7466595315127853 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj 7fa28127e94118b8 +1847 2000 7466595305748830 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 2333eeeb8d5eb3a4 +948 1110 7466595296878983 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj 2ff161b1c0f63af2 +1138 1288 7466595298643808 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 24170d1febc7f138 +1026 1183 7466595297551118 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj cac57e919362ee9a +2438 2869 7466595314734849 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 6510a3bbd0beaf7b +1336 1487 7466595300768648 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 5b6ebd4537a992d7 +960 1120 7466595297265629 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj 9a53fd3d089ee800 +1288 1456 7466595300508131 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj 106b519b54f4db24 +1194 1360 7466595299268062 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj f95ef966b75320ca +1031 1189 7466595297728101 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj aa269af27ea84c88 +894 1052 7466595296507671 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 5933acc3e48ab756 +7868 8003 7466595365883232 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/snr/float/dsps_snr_f32.cpp.obj 86a009ecf3b8e0b1 +3023 3176 7466595317564855 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj b98d5994ac230f9f +3090 3253 7466595318116497 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 1d9e59446d84b879 +1012 1169 7466595297551118 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj 434dc9ed3b4e3898 +1124 1274 7466595298451791 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 2226dc856fcde651 +3382 3540 7466595321168950 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 89052003869172e4 +1098 1254 7466595298296715 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj 95d1883341cf2d0c +1502 1643 7466595302212731 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj a797aaecb595b3f0 +1068 1228 7466595298177740 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj 26c31fa6707b23bc +7487 7623 7466595362031832 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ae32.S.obj 2e976bc0a8ed5664 +977 1133 7466595297789494 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj 53283387e8ae82c8 +3214 3408 7466595319557803 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj efa360b276abfd9b +1211 1373 7466595299422350 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj 96777301ec31cd98 +1215 1379 7466595299402343 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj b8e18b97f6a6b6 +7248 7399 7466595359856796 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj c2ebcbd817727d5c +1007 1164 7466595297566178 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj f444122d0dd7b027 +4635 4691 7466595333877135 esp-idf/esp_netif/libesp_netif.a 8c1d438e5f94d502 +1110 1262 7466595298346727 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj f05cdb1d4985cc71 +1120 1270 7466595298451791 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj a37bf09590b8e0f0 +7265 7416 7466595360017894 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj f9fc234297b6cda4 +1094 1249 7466595298431792 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj 3d6b8bac447bf1c2 +7220 7372 7466595359433051 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj ffda0dcc090f534d +1157 1316 7466595298829416 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 2689e1ed9cb4b8d8 +3451 3605 7466595321828620 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj 636ca2d49616f811 +1079 1237 7466595298082546 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj 35ac15e7c7c87e19 +3397 3553 7466595321315290 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 7289df1279ca6a8e +1133 1283 7466595298739142 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj bc48983410894e72 +4406 4474 7466595331708627 esp-idf/esp_wifi/libesp_wifi.a ae42824a0420f3ba +1840 1987 7466595305643286 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b9fa5e11cf2bf68f +7594 7726 7466595363079078 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S.obj 68092467aeffe40e +1147 1304 7466595298709147 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 35bbddc96a591653 +3629 3784 7466595323652505 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj d470c149cd152ae7 +2804 2935 7466595315422380 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj db0973eea589ae8b +1742 1885 7466595304693038 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj 65b392f80ca25fbd +1548 1690 7466595302787380 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj 2daa7ec8a807d9df +1179 1344 7466595299056504 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj e0be95b9010f13e9 +1115 1266 7466595298441793 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj f84bbc4f7fb4f4ef +1017 1173 7466595297678080 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj b11f6bfd075a04f +2733 2793 7466595314764846 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj a5a5d9b8c543c5f5 +7828 7963 7466595365454181 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32.c.obj f7078ab5038bf279 +1170 1336 7466595298951150 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj 2a5f1204bb5b61a0 +1106 1258 7466595298451791 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj f68369601bb5a420 +1183 1349 7466595299175738 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj 878cc1594797ed8f +2911 3072 7466595316413363 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj 91b1109d5aec9be0 +1174 1340 7466595299066493 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 446817d21f90072d +7253 7403 7466595359856796 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj 9f37854730e26c28 +1199 1364 7466595299332659 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/clk_tree_hal.c.obj a0e96ae1245e0c11 +1206 1369 7466595299332659 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj c611289ba96d5d5d +7591 7723 7466595363048533 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S.obj 54fccd6dca993f87 +2836 2992 7466595315622760 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj db1a6a4316a34349 +7308 7465 7466595360524243 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj 6e4a0e51e9e7ae50 +3112 3308 7466595318478527 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj 71895b381fdd199e +2832 2988 7466595315698022 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj 21cd7c87af225ebd +1189 1355 7466595299268062 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj 54110649bf263e07 +7257 7408 7466595359796826 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj d6da37b4e8195af4 +7116 7265 7466595358481497 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj b9e27ff11c22beb +1818 1967 7466595305411455 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj ed3e09648d14aa32 +1220 1383 7466595299684808 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj db4ff1961ebae960 +1232 1396 7466595299869078 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj 9fba34bf74f086eb +1316 1474 7466595300508131 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj 117475518914f0f7 +1262 1429 7466595300145033 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj 4543d5d9e40419bb +1258 1424 7466595300145033 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj 7ecc9825939a2cf8 +2993 3147 7466595317286126 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj bd68381ae162e6c8 +1249 1414 7466595299954362 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj 9ea3b506b94d5af2 +1803 1947 7466595305265391 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj 24964ebc0be0d9e5 +8055 8474 7466595371588457 esp-idf/main/CMakeFiles/__idf_main.dir/http_control.c.obj aaeb96cdfe8393a6 +1323 1478 7466595300548129 esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj daab360e046017e5 +1266 1435 7466595300145033 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj 198f03e4571f4858 +1241 1405 7466595299859080 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj 482aba9a98173362 +7361 7515 7466595360902314 esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj 8b18f71188a90aee +60 155 7413941816160348 bootloader/bootloader.elf 1c99ec8a49304b14 +1270 1439 7466595300308513 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj 6b770af25375bc91 +1920 2859 7466595314674818 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj 10d8bd93521ff9db +1661 1806 7466595303848361 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj 63a52028e32bc726 +7225 7376 7466595359478463 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj 4d80fdc61d5cf73d +1340 1491 7466595300738647 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj 1dbc7383cfd8b021 +1364 1509 7466595300908598 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj 872536e3a589716d +1373 1517 7466595301019161 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 2ee8a39df611dd0c +6608 6751 7466595353380188 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj 917357a5822e6bba +1283 1453 7466595300488127 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj ae6c1cf5adbfa13e +1254 1420 7466595300029716 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj c7b0463181560024 +1474 1612 7466595301953014 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj 9cbb6787e01ad836 +1410 1552 7466595301349305 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj beeed8404fd21019 +1344 1495 7466595300738647 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj d58c2588fefc9cea +1401 1543 7466595301289292 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj bbcdfb58228f4b2e +7753 7893 7466595364717898 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_ansi.c.obj d27f084bdc609e81 +1355 1501 7466595301166218 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj e32468071e1ce4d +1435 1573 7466595301566256 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj 317f66614c4ffc83 +1429 1568 7466595301551208 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj 620b54512f7c49c7 +1388 1530 7466595301221899 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 4e0dbb7e099bc27f +2931 3090 7466595316583870 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj 77050982f29a75db +2815 2974 7466595315467438 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj 160058df85c6f23d +6838 6978 7466595355939809 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj 603dc96c9d8cad55 +1440 1577 7466595301616415 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj b1c82b5b8c52175e +3003 3158 7466595317371212 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj 938e1983c24b3d1 +1444 1582 7466595301666414 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj 54454433d676eb34 +7710 7852 7466595364265021 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ansi.c.obj cf4b33155f43037a +2810 2965 7466595315497702 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj ca2e5776f1683a1a +6697 6841 7466595354304088 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj 9c21f61b57b31274 +1392 1534 7466595301436786 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 916055206d41857b +1487 1627 7466595302192736 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj 54a36e5baaea8e02 +3162 3357 7466595319011780 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj b4c0e85fce1fd886 +3133 3329 7466595319021782 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 298d24b3f6692247 +1349 1498 7466595301299285 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj 28c671570ec74c72 +7832 7967 7466595365469234 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S.obj fb8d04c25dd897b8 +1482 1623 7466595302058246 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj b69f33d14fa97da +7146 7295 7466595358768219 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj ae8590b14d0f9de8 +1517 1661 7466595302413796 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj e24ce4ff79e3d1c +1865 2424 7466595305944900 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj 17643eb5174dc900 +1635 1782 7466595303735293 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj b2f7a31bf46f124b +1506 1648 7466595302288000 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj 8152ebd5b35fa4c7 +1521 1664 7466595302423806 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj 59b5b805875acbb4 +2459 2752 7466595314248240 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 1f2d268b57fad9ad +1510 1653 7466595302433804 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj 8b8bc217c6ef80bc +2982 3138 7466595317165776 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj 5be8f84600c007cf +1396 1538 7466595301436786 esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj 1fe8a130bf3839b +3063 3219 7466595317956214 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj 4dcd351ec5042f07 +1639 1786 7466595303659454 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj 8e62ed8f6953ba44 +1513 1657 7466595302373071 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj a6a60b62a5c30168 +6864 7001 7466595356071505 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_host.c.obj eadd65680aecf523 +1587 1732 7466595303065763 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj 3f0e7a918e37adb7 +7999 8178 7466595367227976 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_init_f32.c.obj 7ad3b8a20247282c +1543 1686 7466595302697170 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj af7c0f22735e1e1c +3790 3831 7466595325259216 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj c53c57c982bef996 +1578 1723 7466595303158288 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj 35ae46d13bb182b6 +3241 3431 7466595319729239 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj afa0b043be288c71 +1627 1773 7466595303524249 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_config.c.obj c27ddf7a441a0acc +1943 2437 7466595311037470 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj fdaa6808433ac72a +1598 1746 7466595303287264 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj f36dff4c3ab4beee +7447 7591 7466595361710777 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 45b84ea62526d2bf +1582 1727 7466595303168286 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj e91830d9ac8027e9 +3342 3504 7466595320809267 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 774829e3b7a3ded3 +1699 1844 7466595304377144 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj 7636e301084cf61 +1603 1750 7466595303287264 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj 37603db997cad02f +8190 8267 7466595369637670 esp-idf/cmock/libcmock.a 2b55fb756078076e +1591 1737 7466595303219464 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj 9447617943696bac +7365 7522 7466595362041831 esp-idf/driver/libdriver.a 5526aa1b50fe4cec +2854 3012 7466595315871807 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj afbb8f232a671355 +7129 7277 7466595358551524 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj e2789f9ab84af7b +1612 1759 7466595303466274 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj 5131264fb98e688c +3270 3446 7466595320181551 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj 1efaca7f435415c6 +3553 3712 7466595322851051 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj 1f8816e3978101f +7566 7696 7466595362821411 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_aes3.S.obj ac6230ed1b5c6541 +1670 1814 7466595303909748 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_crypto_lock.c.obj 56d22809138304d9 +2879 3039 7466595316087255 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 265f325e5a33b2d +1623 1768 7466595303554244 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj bf6e354bd03443b1 +3513 3668 7466595322483785 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj bbf98d0fe1988024 +4020 4075 7466595327718628 esp-idf/esp_http_client/libesp_http_client.a ecd6c8ec7c12769 +1608 1755 7466595303446275 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj 65d61d1d94f55c05 +1617 1764 7466595303466274 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj 309679278dc7f7ec +6693 6838 7466595354314083 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj 482495a4e6e8d662 +1631 1777 7466595303554244 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj b59dc5905ef497c1 +1648 1794 7466595303785764 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj ee74391dfe5070f3 +7085 7229 7466595358221722 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v1.c.obj 2af900cc87de42d1 +1678 1822 7466595304036236 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj cbf3c2a64949a5b4 +1691 1835 7466595304186560 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj 71dbbc405a99bf07 +12635 12684 7413941856763416 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 7a541dc16216c923 +1665 1810 7466595303909748 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj 1391b137c9861ecb +6842 6982 7466595355889797 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj 71dc1577c4f8b357 +8114 8200 7466595368841216 esp-idf/protobuf-c/libprotobuf-c.a 29422b81918cd3de +1728 1870 7466595304537303 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj 8e7fd40765e8af3 +1687 1830 7466595304141320 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj cf58453b797a1cb5 +6151 6200 7466595348968356 esp-idf/esp_app_format/libesp_app_format.a f6a5c27259f8c9ff +7312 7469 7466595360374822 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj f06090fa63e1428e +1653 1798 7466595303934806 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj 3b9c066e068e34d7 +7529 7660 7466595362444577 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_f32_ansi.c.obj 4142af312643b1d0 +1695 1839 7466595304226575 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 6ce9a0ea2a393b65 +1732 1875 7466595304567282 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj 280fe44e6704257c +1750 1894 7466595304743020 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj 46f13105fb914f86 +1773 1916 7466595304938434 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj fcfe5e83f6d03f71 +1778 1920 7466595305049690 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj bad62879fdabe501 +3727 3818 7466595324486205 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj 51579fa38211beac +1737 1880 7466595304647955 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj ac28dcbd4768212f +3085 3248 7466595318086478 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 652e1b9bbfc8b4ff +1746 1889 7466595304743020 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj 164c9d3dba9d4fb9 +5740 5794 7466595344914654 esp-idf/esp_rom/libesp_rom.a 7cb37579ac0210dc +2883 3044 7466595316167255 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj 8cdd051b278d72bf +1782 1925 7466595305049690 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj 5235cc60c47a9ece +3736 3818 7466595324775226 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj 45f5ace56e9ddf1b +6091 6151 7466595348481832 esp-idf/bootloader_support/libbootloader_support.a 12dba78d019721bc +7018 7154 7466595357417949 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj dead6217f53ac07 +1769 1912 7466595304933382 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj f85b1db57f244edb +1973 2459 7466595311072525 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 578afb72c5496190 +1718 1860 7466595304497283 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 70973f07a9aa505e +7769 7910 7466595364848790 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ae32.S.obj f4551f82d4cef70 +1764 1908 7466595304893376 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj 857267acf17714dd +1759 1904 7466595304798307 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj e86186c4f485ca0 +1709 1852 7466595304377144 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj ea0a01a548792a9a +1713 1856 7466595304441968 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 10fc40d471e54eec +1798 1943 7466595305200342 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj 984e3c007ae8a5ce +7403 7555 7466595361299427 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj a671abc7454ddd87 +1827 2707 7466595313997756 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj a535cad46179da2c +1794 1938 7466595305200342 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj 50fb452e81df6785 +7205 7357 7466595359488496 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj 94a4670c961a36d1 +1810 1958 7466595305316379 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj f631a6e1ad081ff1 +3570 3727 7466595323058586 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj fd7ed718caa3b9a2 +6705 6850 7466595354439416 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_cosine.c.obj a0fd651ed6948943 +2452 2945 7466595315029522 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj ec86799ea1099e67 +1814 1962 7466595305356381 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj 66e7beb6326f495f +7843 7979 7466595365597100 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c.obj 2cec1354ac0686be +1844 1992 7466595305668333 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj 32173849a08af1c1 +7645 7785 7466595363616657 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ansi.c.obj 6bf0997062df6cb +6974 7108 7466595357071181 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj d0d99f10f8a03f57 +7847 7983 7466595365637101 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c.obj 6b3afad251a2c3af +1856 2413 7466595305899464 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 52bf5997a991698 +3703 3815 7466595324314282 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj c2cf445c34cb7411 +1852 2407 7466595305793932 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj 74edc60af389843c +1925 2427 7466595306506840 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj ee5884da6438ee6c +5661 5740 7466595344368552 esp-idf/hal/libhal.a ec84f30a4ab54618 +1823 1973 7466595306348083 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj f1ada1d718f528a7 +1938 2434 7466595306677480 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj c02bf7f463afe2ed +3320 3478 7466595320466946 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj d15733abfc0e8f2c +1705 1847 7466595304477268 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj b182f101a9779614 +1947 2441 7466595306947754 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj fe6c4a96e79cc1ba +1978 2713 7466595313997756 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj b183a5be558198c +2424 2732 7466595314132848 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 3ba6044d66837058 +8063 8213 7466595368851225 esp-idf/main/CMakeFiles/__idf_main.dir/filter/signalpath.c.obj 5654665610c1556c +2419 2804 7466595314343312 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj a6caf47ddcb1608 +7799 7937 7466595365146294 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ae32.S.obj a51f1fad39ad8f5f +1982 2849 7466595314649468 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 3c2c27380b91f384 +1967 2456 7466595311072525 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj ea7504b824914608 +2434 2844 7466595314649468 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj f63c076a175c45a0 +1908 2726 7466595314112846 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj f70235609bfaef42 +7108 7257 7466595358336985 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj 2b65a9b949aca0a4 +1912 2720 7466595314092842 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj 21d46d8666b9ad9a +2441 2739 7466595314132848 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj be773fbccaaeaf92 +3044 3196 7466595317798083 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj 29ea7f2fa112a1a6 +1959 2448 7466595311037470 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 966c6824be1948a9 +2448 2764 7466595314283295 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj b7569c80a7b1a44 +2739 2809 7466595314839948 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 591b98624fb869ea +6882 7018 7466595356177741 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_master.c.obj 79a35d8bb5d521d0 +8081 8190 7466595368483566 esp-idf/app_trace/libapp_trace.a e6600951c4cb8ce +3536 3693 7466595322669034 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 470bc41bc2f4bf7 +2721 2926 7466595314933994 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj bbba5f1ec5492e59 +2822 2978 7466595315507699 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 78014ccf512161c4 +2794 2915 7466595315357301 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 930fc74334646a18 +2849 3008 7466595315773064 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj 1f7a9148bf7ebfb7 +6770 6917 7466595355069870 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj 749ee945ec958fd2 +7002 7137 7466595357312614 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj 9003e2dfae95a13c +2845 3003 7466595315786746 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj e7ad38872de42661 +2753 2826 7466595314989523 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj e2b965046230bca8 +2859 3017 7466595315925127 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj d898efdba0903433 +2864 3023 7466595315915125 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 7a796a39b476a6cf +2897 3058 7466595316403366 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj e6281f57cef62fea +2916 3076 7466595316518779 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj a952ff387c0e9d29 +2888 3049 7466595316242830 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 3c645def0fdfdeb8 +2927 3085 7466595316548760 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 239054afe7469a7d +2935 3094 7466595316699293 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj d7775f96f132ed57 +7291 7447 7466595360349556 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj bcfc99b0f2bfdd3c +2902 3063 7466595316423358 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj fa28d09bd7b75ca8 +3565 3722 7466595322951462 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj c5da2ac5b9261836 +2921 3080 7466595316528765 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj e5b22a6e2bd73fa4 +6900 7035 7466595356327202 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_transaction.c.obj 196f6dc57f4fe2af +1880 2897 7466595314789945 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 6d26a697100b4053 +2940 3099 7466595316749296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj b042ab72681aaa57 +2946 3103 7466595316788876 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj e94515ab422933f9 +2950 3108 7466595316808870 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj b2f718478792bdc1 +1904 2864 7466595314694850 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj e82754b7b6da4008 +6971 7105 7466595356986110 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj 1ceccfca0b8d791d +3474 3629 7466595322045435 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj a1c631a417770e99 +1899 2961 7466595315049516 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 328cc7d5c2800279 +3103 3299 7466595318357866 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj cc257e9285107fd8 +4527 4635 7466595333316557 esp-idf/wpa_supplicant/libwpa_supplicant.a a9a02ae5fe88cd46 +7277 7431 7466595360047894 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 17724ff476c95a41 +2978 3133 7466595317085761 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 510a8dd67d6fe660 +7452 7594 7466595361740789 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj 56c62399892e5712 +7697 7839 7466595364145079 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ansi.c.obj 9a85799059f402ad +12635 12684 7413941856763416 CMakeFiles/bootloader-complete 7a541dc16216c923 +1875 2888 7466595314779927 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj b08629ffdba1ff5d +7619 7757 7466595363356872 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ansi.c.obj cc4a324d240661a9 +2988 3142 7466595317200869 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 2fce3aaa8f431528 +1916 2911 7466595314875197 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 9f7295d4c2e0a0b6 +3012 3166 7466595317451238 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj a806603232ce632a +3008 3162 7466595317411237 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 2dbe1bcd9ef800e6 +3578 3736 7466595323058586 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj 725af8a9924d59f5 +7963 8133 7466595366783387 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ae32.S.obj 9bde44de0ca7bec6 +1889 2906 7466595314849955 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj 6da298b1136ba2b1 +7873 8007 7466595365933246 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/sfdr/float/dsps_sfdr_f32.cpp.obj d251db5965f546b3 +6918 7050 7466595356518509 esp-idf/driver/CMakeFiles/__idf_driver.dir/uart/uart.c.obj 6aa6c80a8ea2a84a +3029 3181 7466595317585099 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj f3a6ddcfc1a273c2 +4130 4186 7466595328829761 esp-idf/esp_gdbstub/libesp_gdbstub.a 89acdb31c42281ad +3017 3171 7466595317519797 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj a61641a7e5f6b569 +7192 7344 7466595359393049 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj 447649384e711106 +7793 7931 7466595365489390 esp-idf/esp_ringbuf/libesp_ringbuf.a 61a4f5cfd55df8c3 +3039 3191 7466595317710182 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj d2669c2b1310501f +7317 7474 7466595360429138 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 687ae703b8f57878 +3034 3185 7466595317625112 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj 58dc5e3b38dc8201 +3068 3225 7466595318051284 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj 3b698a3dab2c2ffe +1870 2970 7466595315107858 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj 87558f79b7c8de85 +3072 3230 7466595318051284 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj 1556de643f97818f +3693 3815 7466595324239208 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj 187e27dc77862008 +7073 7214 7466595358366990 esp-idf/mbedtls/libmbedtls.a f1016f341807a832 +3181 3376 7466595319213284 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj 42a43a06b2ee552c +3130 3325 7466595319031785 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj 4d37c5d260725a0f +3126 3320 7466595318849716 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj 568e9332a5ce6ace +4186 4244 7466595329407164 esp-idf/esp_eth/libesp_eth.a 218485065e4b3111 +6734 6881 7466595354794276 esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer_priv.c.obj ea1f5e64e3e1f8b5 +3147 3341 7466595319001780 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj 3f863c47382bcfb5 +3153 3347 7466595319011780 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj 5caabb5cfd931d30 +3185 3381 7466595319342394 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj 7330f7ff14b6e25c +8042 8182 7466595367697411 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf/common/ekf.cpp.obj af2047dbe289fbac +3143 3338 7466595318991785 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj 217bcf4c9c45fb6d +3202 3397 7466595319407725 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj 793ce78a6597c75f +3171 3366 7466595319148209 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj 555f17601b20f91c +3220 3412 7466595319547789 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj f5c3c5e15ab02ab7 +6368 6499 7466595351959911 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a ff183a9e323fa4ef +3249 3436 7466595319769241 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj ac29fd3982b30ac6 +3225 3416 7466595319628780 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj fdc58ce694f4fbc7 +3158 3352 7466595319041788 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj a0f51fd0e91652f3 +3196 3394 7466595319342394 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 345cbc8a72479612 +6826 6966 7466595355628450 esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt/pulse_cnt.c.obj ed02e5a1d7f3dee7 +3296 3451 7466595320211570 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj 693074d4842de66a +3412 3570 7466595321400369 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj 96ab30f5104246be +3574 3731 7466595323038589 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj 2f3786368561e521 +7516 7649 7466595362345191 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ansi.c.obj d2a94f37238e573a +3640 3794 7466595323822851 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj 195baf8468052e24 +3299 3456 7466595320316832 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj 4cd7d3ae03d206e9 +3095 3270 7466595318422952 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj bf7d4e7c09032ffc +3731 3818 7466595324536236 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj 5c3b53edcd017ab7 +3304 3460 7466595320441896 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj 77d2161c210d273e +3138 3333 7466595319292397 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj de9f82625018e0e3 +1401 8623 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure 125a4e09387898c8 +3311 3469 7466595320431896 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj 91de7b61414443d +6823 6963 7466595355568241 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj 729aef5b95227c40 +7121 7269 7466595358616709 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj fd25bb7ecbb98dc0 +3308 3464 7466595320490634 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj cfc22a5a6b089651 +7384 7540 7466595361279408 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj c1ef743ad24b6b0d +3338 3498 7466595320829271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj b02223319b415c6f +3353 3513 7466595320829271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj 934dc6a9cee7609a +3166 3362 7466595319213284 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj 4eff662efd0bddf5 +3619 3776 7466595323677747 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj 9e26aeb15b9906b8 +3362 3522 7466595321010746 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj e11f6713513e19a4 +3387 3544 7466595321250054 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj ac1e04d1d853065 +3325 3482 7466595320849272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 14bbee2959321306 +3329 3488 7466595320799266 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj 2b02c71dbf593e9d +3372 3531 7466595321128960 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj d71e86af437bae6 +3408 3565 7466595321410360 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj 1e33d29194c6b79b +6855 6993 7466595355949805 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave/sdio_slave.c.obj 42c928f3d0adb6fe +3436 3592 7466595321665801 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj 50714379ff0811bf +3394 3549 7466595321250054 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj 416a3c4441533524 +6657 6805 7466595353953739 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj 93903031e08ea05a +7183 7333 7466595359097634 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 7fe993e486c8fa98 +3464 3619 7466595321923698 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj 3608cdd886be0ba5 +3315 3474 7466595320799266 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 3433cae14a97c490 +3431 3587 7466595321620744 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj 3c08ec592447c382 +3357 3518 7466595321020748 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj 206c82abeae451b5 +6611 6757 7466595353380188 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj 4715b33840f4625d +3416 3574 7466595321570716 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj 6c77519f4a35f698 +3426 3582 7466595321620744 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 4d3aec39eb71f81b +5610 5661 7466595343582327 esp-idf/log/liblog.a 846b35a4b2f4b5bc +3366 3527 7466595321030745 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj 749ae00b5777c2b4 +3347 3509 7466595320924360 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj c82e13702e33e35 +7165 7316 7466595358982343 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj 2560b7379ec63b6d +3494 3649 7466595322189808 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj 64781a01a32a3771 +6830 6971 7466595355731042 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj 7eebf4c5482af496 +3478 3632 7466595322318985 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj ba05eb4219aafb5b +3558 3717 7466595322851051 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj 43c808385ca149c8 +3509 3663 7466595322416678 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj ed35c70eb27fe58 +6929 7061 7466595356584713 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 899865bdbd92890a +3498 3654 7466595322288978 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj 300614be39c0da6e +3488 3644 7466595322264852 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj 25eb0e5b4552f78b +3659 3812 7466595323822851 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32/esp_adc_cal_legacy.c.obj 2b479fc3b191c225 +570 731 7466609841026324 esp-idf/main/libmain.a 4931310e9a83c24d +3583 3740 7466595323123676 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj 533041abea6ded33 +3544 3702 7466595322769307 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj 8d0e02b6f43ee72d +3540 3697 7466595322679288 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj 22b5728166903ae4 +3460 3614 7466595322080499 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj 1c714a595a4f6f2e +3549 3708 7466595322811053 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 88a9b1170ec28ff8 +3614 3771 7466595323399525 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj 7aedf65a0a88f586 +3522 3678 7466595322579017 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj a5bf563862b25d7d +7604 7739 7466595363179666 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S.obj 1686159acd1dd79 +3504 3658 7466595322456677 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj adc47b3f754d4f7f +3593 3749 7466595323229146 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj 76559ed9b1f6b779 +3624 3780 7466595323602505 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj 3e39b239016fc766 +3527 3683 7466595322649039 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj 3ea2454a0d7c71ee +3610 3767 7466595323507427 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj fd1de726be902219 +3645 3799 7466595323757769 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj cd7bd55df748bf51 +6959 7093 7466595356975589 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj 296cd371289c0629 +7730 7873 7466595364465725 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_aes3.S.obj ddd625dd26bb390a +3717 3817 7466595324439749 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj d2b1b3b584dd881f +3673 3813 7466595324113690 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 2e5ec9f15c22f44b +7270 7422 7466595360017894 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj b256d89fb49790b1 +6625 6773 7466595353549798 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj c444f5fc97ec5f6d +3697 3815 7466595324294278 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj 7d48c9d7cb9b87ed +3688 3814 7466595324179188 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj 9c8794cfdf920d66 +3723 3817 7466595324486205 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj 46201da246105704 +3601 3758 7466595323642504 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj 5cf74aaa9ea309b5 +7022 7157 7466595357457931 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj 3d4c44652a493de0 +7158 7308 7466595358910700 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj 7a52ad6c1ed3a923 +3597 3754 7466595323249147 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj 46c1c4e0bdafe53b +3772 3821 7466595324949113 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj 21d340aceadadf41 +3749 3819 7466595324883687 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj c78a2ae044116612 +3663 3812 7466595324123697 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 214499dd4d446b37 +7723 7864 7466595364405719 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_aes3.S.obj a34e1083f648afbd +7150 7299 7466595358820902 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj 5c7df8254e17bd90 +3668 3813 7466595324153696 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj 8a22033e6c294b29 +3745 3819 7466595324787153 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj d6637b28ad703bf3 +3762 3821 7466595325018863 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj 9af80bf2f5aedcb +7491 7626 7466595362066881 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_m_ae32.S.obj 8aff41326fb0489b +3740 3819 7466595324797167 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 7fe93db89377065e +7663 7803 7466595363768903 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ae32.S.obj 1af7dff6907f8c3d +7376 7532 7466595361214082 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj 4aced734dd0b4328 +3794 3825 7466595325189208 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj a8876bf9aabd365b +7509 7641 7466595362257702 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ae32.S.obj 11e1d363b5acadb4 +3804 3840 7466595325334282 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj bba595dd072eea7c +3776 3829 7466595325239217 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj a9c490a1d722423f +3780 3823 7466595325153925 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 6e5b9050ecabab38 +3809 3843 7466595325369352 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj dc740e4c45fe92e5 +4849 4901 7466595335979635 esp-idf/esp_phy/libesp_phy.a 52fd0bcc07c50c79 +3754 3820 7466595324974159 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj 1865a2ff05bdb721 +3843 3964 7466595326608103 esp-idf/esp_https_ota/libesp_https_ota.a 3710f618f5f90ec5 +3759 3820 7466595325028859 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj 15aa066a248bec82 +4075 4130 7466595328278132 esp-idf/tcp_transport/libtcp_transport.a 1231f0fe9079c847 +8119 8208 7466595368958178 esp-idf/espcoredump/libespcoredump.a ccd0c72fef83e62e +4300 4355 7466595330520193 esp-idf/esp-tls/libesp-tls.a d64bc673a45ddbf9 +7348 7505 7466595360972423 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj c4a9778a41ce6031 +4355 4406 7466595331027798 esp-idf/http_parser/libhttp_parser.a 34e675892d7e4108 +7601 7734 7466595363149094 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S.obj 6823d16743ae7755 +7995 8178 7466595367167111 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ansi.c.obj 9b273abbce896c27 +4474 4527 7466595332245708 esp-idf/esp_coex/libesp_coex.a 517e4f4877a84c81 +4691 4792 7466595334888896 esp-idf/lwip/liblwip.a b79f7f27cd47cbc3 +4792 4849 7466595335458843 esp-idf/vfs/libvfs.a 7f91e619019ed0a4 +6551 6603 7466595352999369 esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a 6b79aba66593aa4a +4901 4964 7466595336618092 esp-idf/nvs_flash/libnvs_flash.a af6c5b28304cc93 +4965 5019 7466595337149410 esp-idf/esp_event/libesp_event.a 14ad291e18f03bba +5019 5071 7466595337685474 esp-idf/esp_timer/libesp_timer.a b3a12f98a213671c +5071 5121 7466595338179351 esp-idf/esp_common/libesp_common.a c6f344abf8ac9243 +5121 5175 7466595338725017 esp-idf/cxx/libcxx.a cd390e621b91df71 +5175 5234 7466595339318943 esp-idf/newlib/libnewlib.a e9c2b3ad25d97750 +5235 5299 7466595339953060 esp-idf/freertos/libfreertos.a 3969fdd9c5a22815 +5299 5464 7466595341606528 esp-idf/esp_hw_support/libesp_hw_support.a 344c7630dad8ebab +5555 5610 7466595343067346 esp-idf/heap/libheap.a ce5f3692b82aabc0 +5794 5863 7466595345598459 esp-idf/esp_system/libesp_system.a f988ea820090db11 +5863 5921 7466595346182405 esp-idf/pthread/libpthread.a e69c64499b448cc +6947 7081 7466595356749820 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj 4a52d02f0e5db587 +8170 8256 7466595369512290 esp-idf/spiffs/libspiffs.a cecae3fe5f9652aa +5986 6039 7466595347350387 esp-idf/app_update/libapp_update.a 73173f4f48a6425b +6039 6091 7466595347886561 esp-idf/esp_partition/libesp_partition.a dcb4789532e1d51d +6200 6248 7466595349457766 esp-idf/esp_bootloader_format/libesp_bootloader_format.a dd19745f71ed0590 +7860 7995 7466595365767355 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_aes3.S.obj de1c25fcfd40542a +6310 6368 7466595350648322 esp-idf/mbedtls/mbedtls/library/libmbedx509.a 2fc9967b0a2699c7 +8398 8583 7413941815684422 esp-idf/mbedtls/x509_crt_bundle d387751da72f804e +7543 7673 7466595362602144 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_ansi.c.obj 8753d9259f0284ce +1401 8623 7413941816160348 bootloader-prefix/src/bootloader-stamp/bootloader-configure 125a4e09387898c8 +8583 8688 7413941816789595 x509_crt_bundle.S 9c8d5a5902599397 +6814 6955 7466595355493190 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj b498bb2646deaa53 +8583 8688 7413941816789595 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/x509_crt_bundle.S 9c8d5a5902599397 +6603 6741 7466595353219851 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj f4760089d0c32554 +7210 7361 7466595359403049 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj ea743b83f05a3466 +7812 7948 7466595365289109 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sqrt/float/dsps_sqrt_f32_ansi.c.obj 96b0c3713bd052e7 +6606 6746 7466595353295091 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj 2e04e54839dbbc0f +7931 8081 7466595366868449 esp-idf/xtensa/libxtensa.a 2dff1d41ee1ce06d +6618 6765 7466595353440165 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj 91bf7d7c316945ae +6615 6761 7466595353450180 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj 410909a7eb198dbe +6641 6787 7466595353748018 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj baf49207c986ce6c +6633 6779 7466595353748018 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj 9a763bf9fb334eb9 +6645 6792 7466595353843108 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj e621c74a13c8c260 +6653 6801 7466595353868167 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj 263fa20610a1c518 +6679 6826 7466595354179022 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_glitch_filter_ops.c.obj 34690edb7f5b077a +7338 7495 7466595360664525 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj 190af8af80c3fada +6665 6814 7466595354108857 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj e268b2a6bc347ed +6690 6833 7466595354219006 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/spi_bus_lock.c.obj 476e1618f7ddc637 +6701 6846 7466595354439416 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_oneshot.c.obj dccd4c2b0bd424d4 +6726 6872 7466595354564687 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/esp32/dac_legacy.c.obj 27a6cd2ce907d7ac +6713 6860 7466595354449417 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_common.c.obj ad36b06dc1abfad9 +6717 6864 7466595354534694 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/esp32/dac_dma.c.obj a6e8734a9b96532a +6722 6868 7466595354564687 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/dac_common_legacy.c.obj 49cad2b30383a63b +6709 6855 7466595354544679 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_continuous.c.obj 1e378c7728c716cf +6752 6899 7466595354909520 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_common.c.obj c7b44a40f969a83 +6730 6877 7466595354749194 esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer.c.obj 3ba17cd1ffad9a42 +7688 7832 7466595365106297 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mat/mat.cpp.obj 9f5a948ac52ea55c +7902 8046 7466595366165753 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memset_aes3.S.obj 8d2220cc05056ab7 +6738 6886 7466595354769188 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj 3df5aab7649d900b +6792 6937 7466595355367941 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj 8348d38c3931816 +8093 8199 7466595368851225 esp-idf/console/libconsole.a 5e4310a02e281ec7 +6779 6925 7466595355187779 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj a81f23abcf196b04 +6860 6996 7466595356092319 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_transaction.c.obj c592e126f8d13507 +6746 6896 7466595354949521 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_master.c.obj c7cf5cd9f57a39bb +6742 6890 7466595354729193 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj 37807f009a35e4c +6761 6909 7466595355089899 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj b222639de72650de +7113 7261 7466595358427608 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj 51e1982bdabcddf6 +6774 6921 7466595355079884 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj 9c3f499b014711fd +6796 6940 7466595355267796 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj 9c044e0fc92f269d +7670 7812 7466595363866541 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ae32.S.obj 2d1b2c387d57864a +7678 7820 7466595363929335 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ae32.S.obj 327695df5132182a +6787 6932 7466595355272842 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj 9c768572104ad399 +6805 6947 7466595355408136 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj d94ce289d23521fc +6818 6959 7466595355608468 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj 93e31e6fceb06874 +6925 7058 7466595356508507 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj f1189e307948a6e8 +6922 7054 7466595356468339 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_i2s_deprecated.c.obj f7d65a2f721de406 +6868 7006 7466595356142303 esp-idf/driver/CMakeFiles/__idf_driver.dir/sigma_delta/sdm.c.obj 66b6b0ac42d95dc4 +6966 7101 7466595357071181 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj f07d951ec452bf18 +8022 8180 7466595367507455 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ae32.S.obj c8c57658f2731420 +6905 7039 7466595356357202 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj 1fe74f0707e1e685 +6846 6986 7466595355909797 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj 9f1e67f08d38709 +6890 7026 7466595356187782 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_crc.c.obj 50367b643acb445a +7856 7992 7466595365757354 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ansi.c.obj 49f0e7c2f0b85da7 +7718 7860 7466595364349421 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ae32.S.obj a384af4dbbac272f +6886 7022 7466595356287194 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave.c.obj 609003d986603496 +6933 7065 7466595356679804 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj 35dc60806db769cd +7820 7956 7466595365359112 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_aes3_.S.obj fa5b76cf4ec6a1fa +6877 7014 7466595356092319 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_common.c.obj 2ca8824a1a44d97 +6951 7085 7466595356775026 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj 989be127f1f8cca +7757 7897 7466595364727895 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_aes3.S.obj e69a68e3e29b46ee +6909 7043 7466595356393276 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj 5109d5186c906cfc +6963 7097 7466595357016123 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj 8864bf3805e44fd1 +6982 7116 7466595357071181 esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj 9d3ea47a6fab92db +6986 7120 7466595357187653 esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj dc025939f89b8a3e +7006 7142 7466595357352620 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj bc9f2ba8f4f1c705 +7039 7174 7466595357598335 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj 422bbae8f3b388ca +7043 7178 7466595357638335 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj 82d2cfc6530bfcdb +7630 7769 7466595363452721 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S.obj e926e8bc949500b3 +7051 7187 7466595357713437 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj effe2debddccba5f +7030 7165 7466595357537229 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj f54e585fda8eec98 +7078 7220 7466595358107364 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj 34c02cedc359aee1 +7062 7200 7466595357952962 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj f3163bb5860b1c88 +7055 7191 7466595357743438 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj 898a58866d67d3 +7612 7748 7466595363264731 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ae32.S.obj fb91c018b669f98 +7328 7487 7466595360609458 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj c0bae8b732616fc1 +7047 7182 7466595357693439 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj af5fce90b0da24f9 +7124 7273 7466595358501525 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 15c08a8eddb1c3d8 +7097 7243 7466595358397613 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj f6dd00599dfc86c +7286 7442 7466595360122995 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj 3449cb502ce6df25 +7065 7205 7466595358137367 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj 9942c65fca43f3f7 +7058 7196 7466595357832662 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj af7ed62a39d4bfc8 +7089 7233 7466595358211725 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v2.c.obj b818d2da51aebe93 +7142 7291 7466595358698218 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj 6735f0b73a86ce5e +7133 7281 7466595358596715 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj bc2860a7f80d5030 +7214 7365 7466595359786801 esp-idf/esp_pm/libesp_pm.a dad706eacd8135a5 +7105 7253 7466595358397613 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj 8b7c9dcdb59b338b +7138 7285 7466595358636706 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj ddc3e4dc779565d3 +7187 7338 7466595359182710 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj 5eb0abab36f76ca1 +7178 7328 7466595359182710 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj 81c4c7d0fcffe146 +7229 7380 7466595359623554 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj 3d282c2990d77f17 +7238 7390 7466595359678867 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj 75d10f782def6034 +7474 7612 7466595361917403 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/aes3_tie_log.c.obj 88578d8269bdd474 +7161 7312 7466595358982343 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj 8a54427c1d842b4a +7196 7348 7466595359383036 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj 232c48f63a805d8b +7261 7412 7466595359942031 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj e4c439c37f06fd72 +7274 7427 7466595360027891 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj d590cf42213943c2 +7281 7437 7466595360102994 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 33db25c97a208ee +7380 7536 7466595361117926 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj 8320af7c514f610 +7295 7452 7466595360419136 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj afd6455fae083d6e +7372 7529 7466595361026073 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 81cffc656af77bc2 +7357 7512 7466595360857237 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 7bb9f701dbfc5261 +7325 7482 7466595360609458 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj 354ad5fc2752de95 +7391 7543 7466595361244080 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj 8d90025dbc7c5580 +7626 7764 7466595363412722 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S.obj bd39b031a91e545a +7352 7508 7466595360872288 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj e8ded847b1ccb4d7 +7399 7550 7466595361289429 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj d7c1737a1efb772 +7427 7574 7466595361595693 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj 20cb1aa1817b12cf +7461 7601 7466595361866078 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj c33c6222ccce1053 +7893 8037 7466595366090696 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.S.obj 1fe57895ad249d32 +7505 7637 7466595362227704 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_aes3.S.obj c8268365c6b1f7f7 +7395 7546 7466595361254091 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj a0ae001210d2f2d8 +7482 7619 7466595361981819 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_m_ae32.S.obj e323781f94fd741d +7478 7615 7466595361947392 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ae32.S.obj cec2d85535ed4c2b +7422 7570 7466595361615697 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj b69cd43612867315 +7512 7645 7466595362272752 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S.obj 9547a5333ddd4e4d +7416 7566 7466595361557601 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj 2e36a14bf82059d9 +7442 7587 7466595361806080 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 65ab695dbc62256d +7437 7582 7466595361740789 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj 9c21492d0ae14ca8 +7470 7608 7466595361907388 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/dsps_pwroftwo.cpp.obj 4b1142eba31cc5c7 +7495 7630 7466595362127069 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ansi.c.obj 2060d6717123177f +7465 7604 7466595362011850 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj c9fe40ab6964839f +7536 7666 7466595362524609 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_ansi.c.obj fe7acfe22d58ea83 +7885 8022 7466595366021005 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_tone_gen.c.obj 906c30b539577b40 +7304 7461 7466595360364617 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 1015dddd8cd13635 +7575 7705 7466595362896798 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S.obj 8dc1477f941fcc16 +7587 7718 7466595363018531 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_aes3.S.obj 2af07878e2bff888 +7540 7670 7466595362544606 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_ansi.c.obj b69f1ea662e42592 +7546 7677 7466595362652144 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_ansi.c.obj 64819e08e55134e6 +7582 7714 7466595362978519 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_aes3.S.obj 9d4d679fd6ff9751 +7649 7789 7466595363646657 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_aes3.S.obj 89db3fee82988153 +7559 7688 7466595362757372 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c.obj a7db2fe4bf4f949b +7815 7952 7466595365319114 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32_.S.obj 53729d9bd3534ce2 +7608 7743 7466595363229681 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S.obj c18a5b1a7b582abe +7615 7753 7466595363306867 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_aes3.S.obj 78faa307555ad96c +7597 7730 7466595363119095 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S.obj 3516f6d9da30b3f2 +7578 7709 7466595362936800 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S.obj 97935fbe9020afdd +7562 7692 7466595362811416 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c.obj 5d16c4dcbd169a19 +7555 7684 7466595362811416 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c.obj 632ce228612db82 +7638 7777 7466595363527984 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S.obj f043c8ce09f1f640 +7642 7781 7466595363573032 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S.obj 5302acd7c7016d85 +7685 7827 7466595363999628 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ae32.S.obj 9f8206313988bc84 +7623 7761 7466595363382709 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c.obj c03d14e63cd29698 +7714 7856 7466595364309422 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ansi.c.obj b83cf4ffbb8ea3f1 +7431 7578 7466595361816075 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj 78099fb2b400505f +7727 7868 7466595364425724 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_ansi.c.obj 8fa5c29c05e50dd3 +7735 7876 7466595364547882 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ansi.c.obj 341bb2e399658e1f +7739 7880 7466595364580097 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ansi.c.obj 4bb4d737c7aa378 +7660 7799 7466595363758899 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ansi.c.obj b0fb577c87faddec +7748 7889 7466595364665145 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_aes3.S.obj c579fe57833659e +7666 7808 7466595363876662 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ansi.c.obj acf1a82589840f0f +7764 7906 7466595364818788 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ansi.c.obj 6faae9c56bd07f21 +7674 7815 7466595363909330 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ansi.c.obj e8f405ce5947a7be +7681 7824 7466595363979610 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ansi.c.obj 95caa3c18830a95d +7344 7500 7466595361046071 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj 6ddc2569051b9e6a +7700 7843 7466595364185008 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ansi.c.obj 591b2e4fe8338b0c +7692 7836 7466595364105079 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ansi.c.obj 5dd293a4363ec319 +8101 8199 7466595368737950 esp-idf/esp_hid/libesp_hid.a a715159d663089af +8108 8200 7466595368918173 esp-idf/esp_lcd/libesp_lcd.a 8a89e3539a1be6a3 +8126 8216 7466595369113494 esp-idf/wear_levelling/libwear_levelling.a 189e45d1e4c5d092 +8133 8224 7466595369192889 esp-idf/sdmmc/libsdmmc.a a3736b92a8a0a5cf +8140 8223 7466595369192889 esp-idf/json/libjson.a b872f19fd8fae76c +8154 8232 7466595369281942 esp-idf/nvs_sec_provider/libnvs_sec_provider.a 741cc512fd3f6781 +8162 8244 7466595369397208 esp-idf/perfmon/libperfmon.a 5d7f04d610afe101 +7785 7924 7466595364998254 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ae32.S.obj e33652706ea3f42e +8147 8231 7466595369267946 esp-idf/mqtt/libmqtt.a e4ea5c8ee84d0950 +8200 8289 7466595369857983 esp-idf/protocomm/libprotocomm.a 4a0866dea3acac64 +7824 7960 7466595365444178 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ansi.c.obj f61a687f5c696d13 +7839 7976 7466595365574596 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ae32.c.obj 3365c548bee256cb +7880 8018 7466595365981005 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_h_gen.c.obj 62ce74ded3bce1aa +7876 8012 7466595365933246 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_d_gen.c.obj b43736f75cf53d3c +60 155 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.elf 1c99ec8a49304b14 +7906 8050 7466595366215901 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memcpy_aes3.S.obj d8ccbf650f6170f4 +8224 8300 7466595369958220 esp-idf/fatfs/libfatfs.a 6dccbf0b365d94e7 +7952 8113 7466595366667813 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ae32.S.obj 30aa13b17806fddf +7937 8086 7466595366528695 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/flat_top/float/dsps_wind_flat_top_f32.c.obj 849526a59032fa0d +7920 8067 7466595366350965 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c.obj d9cc0d625f719c93 +7924 8072 7466595366398085 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c.obj ca14dee2eedf344b +7897 8042 7466595366150709 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen_init.c.obj 4ca26d6bd75b579e +7960 8126 7466595366758137 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ae32.S.obj e597ed94f8ce04da +7967 8140 7466595366843401 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_aes3.S.obj fa4dd30d5d81ad9 +7941 8093 7466595366568697 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ansi.c.obj ccc8c58f78cbbdf3 +7948 8107 7466595366642759 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ansi.c.obj 5a4988ec2636b16b +7983 8170 7466595366971770 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_aes3.S.obj cab92c6f3dbc6ebd +7980 8162 7466595366966723 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ae32.S.obj c0b4905fa6fa73cc +7956 8119 7466595366738138 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ansi.c.obj 405b7a7bedb2c8e2 +8290 8356 7466595370534180 esp-idf/esp_local_ctrl/libesp_local_ctrl.a a7ce86a6f59fb0a0 +7992 8177 7466595367077092 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_aes3.S.obj 60b4cc1efc8935a7 +7987 8177 7466595367051805 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ae32.S.obj 70494a9ba0933f38 +7836 7972 7466595365539393 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ansi.c.obj 41bf94f92a20099a +8295 8370 7466595370649407 esp-idf/wifi_provisioning/libwifi_provisioning.a b0485a0e2e2a7372 +7972 8146 7466595366868449 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ansi.c.obj c97397d9c588a0d7 +8038 8181 7466595367547455 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_aes3.S.obj 20c628f4f2af0b0 +7976 8154 7466595366931659 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_gen_f32.c.obj 2f90e3ba22adc029 +8008 8179 7466595367402249 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_init_f32.c.obj b400f9703a39860e +8012 8179 7466595367392251 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_init_s16.c.obj 1f5d7b0e4aba8038 +8018 8180 7466595367467307 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ansi.c.obj c90340f04e7c63ca +7910 8055 7466595366376161 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/view/dsps_view.cpp.obj cf3b19f39b7242c5 +8067 8455 7466595371367837 esp-idf/main/CMakeFiles/__idf_main.dir/button.c.obj b0ace5fa86b8df96 +8060 8480 7466595371648457 esp-idf/main/CMakeFiles/__idf_main.dir/filter/butterworthdesign.c.obj 6c9cfb6163ed1304 +60 155 7413941816160348 bootloader/bootloader.bin 1c99ec8a49304b14 +60 155 7413941816160348 bootloader/bootloader.map 1c99ec8a49304b14 +60 155 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +60 155 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.bin 1c99ec8a49304b14 +60 155 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.map 1c99ec8a49304b14 +12608 12635 7413941856267067 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-install aaf973fcc73846de +66 566 7466609839221971 esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj b1c0a2899af05403 +12635 12684 7413941856763416 bootloader-prefix/src/bootloader-stamp/bootloader-done 7a541dc16216c923 +12635 12684 7413941856763416 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/bootloader-complete 7a541dc16216c923 +8046 8182 7466595367697411 esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf_imu13states/ekf_imu13states.cpp.obj 16f578f9fe04e6eb +8182 8353 7466595370494176 esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a 631891cbabb61f9c +731 5465 7466609888231323 esp-idf/esp_system/ld/sections.ld df89681568a76d9c +731 5465 7466609888231323 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld df89681568a76d9c +5320 5345 7466595968007947 CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj 1ae4f586aba3818e +5465 7270 7466609906177356 ESPIDFNEW.elf a37641ce69844398 +7270 7440 7466609908112834 .bin_timestamp 731351c544b2d7f2 +7270 7440 7466609908112834 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/.bin_timestamp 731351c544b2d7f2 +7440 7497 0 esp-idf/esptool_py/CMakeFiles/app_check_size 88f9d8ebde33f029 +7440 7497 0 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/CMakeFiles/app_check_size 88f9d8ebde33f029 +25 6158 7466610487559740 build.ninja 8fa5b1189a81f13f +70 96 7466609834630910 esp-idf/main/CMakeFiles/__idf_main.dir/power/husb238.c.obj 671bb0790d91cf57 +66 270 7466595917146216 esp-idf/main/CMakeFiles/__idf_main.dir/flash.c.obj d4a95a9a059523b9 +34 6398 7466610487559740 build.ninja 8fa5b1189a81f13f +63 156 7413941816160348 bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +63 156 7413941816160348 bootloader/bootloader.elf 1c99ec8a49304b14 +63 156 7413941816160348 bootloader/bootloader.bin 1c99ec8a49304b14 +63 156 7413941816160348 bootloader/bootloader.map 1c99ec8a49304b14 +63 156 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +63 156 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.elf 1c99ec8a49304b14 +63 156 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.bin 1c99ec8a49304b14 +63 156 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.map 1c99ec8a49304b14 +56 148 7413941816160348 bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +56 148 7413941816160348 bootloader/bootloader.elf 1c99ec8a49304b14 +56 148 7413941816160348 bootloader/bootloader.bin 1c99ec8a49304b14 +56 148 7413941816160348 bootloader/bootloader.map 1c99ec8a49304b14 +56 148 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +56 148 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.elf 1c99ec8a49304b14 +56 148 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.bin 1c99ec8a49304b14 +56 148 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.map 1c99ec8a49304b14 +56 149 7413941816160348 bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +56 149 7413941816160348 bootloader/bootloader.elf 1c99ec8a49304b14 +56 149 7413941816160348 bootloader/bootloader.bin 1c99ec8a49304b14 +56 149 7413941816160348 bootloader/bootloader.map 1c99ec8a49304b14 +56 149 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +56 149 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.elf 1c99ec8a49304b14 +56 149 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.bin 1c99ec8a49304b14 +56 149 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.map 1c99ec8a49304b14 +59 150 7413941816160348 bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +59 150 7413941816160348 bootloader/bootloader.elf 1c99ec8a49304b14 +59 150 7413941816160348 bootloader/bootloader.bin 1c99ec8a49304b14 +59 150 7413941816160348 bootloader/bootloader.map 1c99ec8a49304b14 +59 150 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +59 150 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.elf 1c99ec8a49304b14 +59 150 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.bin 1c99ec8a49304b14 +59 150 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.map 1c99ec8a49304b14 +55 149 7413941816160348 bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +55 149 7413941816160348 bootloader/bootloader.elf 1c99ec8a49304b14 +55 149 7413941816160348 bootloader/bootloader.bin 1c99ec8a49304b14 +55 149 7413941816160348 bootloader/bootloader.map 1c99ec8a49304b14 +55 149 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 1c99ec8a49304b14 +55 149 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.elf 1c99ec8a49304b14 +55 149 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.bin 1c99ec8a49304b14 +55 149 7413941816160348 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.map 1c99ec8a49304b14 +62 321 7466613986781567 esp-idf/main/CMakeFiles/__idf_main.dir/ssd1306/ssd1306.c.obj 2160b63e8b4efa43 +322 383 7466613987516299 esp-idf/main/libmain.a 21be756e36d62334 +383 5160 7466614035151104 esp-idf/esp_system/ld/sections.ld df89681568a76d9c +383 5160 7466614035151104 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld df89681568a76d9c +5160 6966 7466614053136763 ESPIDFNEW.elf a37641ce69844398 +6966 7131 7466614054996067 .bin_timestamp 731351c544b2d7f2 +6966 7131 7466614054996067 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/.bin_timestamp 731351c544b2d7f2 +7131 7186 0 esp-idf/esptool_py/CMakeFiles/app_check_size 88f9d8ebde33f029 +7131 7186 0 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/CMakeFiles/app_check_size 88f9d8ebde33f029 diff --git a/ESPIDFNEW/build/CMakeCache.txt b/ESPIDFNEW/build/CMakeCache.txt new file mode 100644 index 0000000..ea66146 --- /dev/null +++ b/ESPIDFNEW/build/CMakeCache.txt @@ -0,0 +1,615 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build +# It was generated by CMake: C:/Users/Job/.espressif/tools/cmake/3.24.0/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 +######################## + +//No help, variable specified on the command line. +CCACHE_ENABLE:UNINITIALIZED=1 + +//Path to a program. +CCACHE_FOUND:FILEPATH=C:/Users/Job/.espressif/tools/ccache/4.8/ccache-4.8-windows-x86_64/ccache.exe + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING=-mlongcalls -Wno-frame-address -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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING=-mlongcalls -Wno-frame-address -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 + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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)/ESPIDFNEW + +//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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/Job/.espressif/tools/ninja/1.11.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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-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=ESPIDFNEW + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=3.6.0 + +//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=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-strip.exe + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/toolchain-esp32.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= + +//Value Computed by CMake +ESPIDFNEW_BINARY_DIR:STATIC=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build + +//Value Computed by CMake +ESPIDFNEW_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +ESPIDFNEW_SOURCE_DIR:STATIC=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW + +//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=C:/Users/Job/.espressif/tools/idf-git/2.39.2/cmd/git.exe + +//IDF Build Target +IDF_TARGET:STRING=esp32 + +//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=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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=C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls + +//No help, variable specified on the command line. +PYTHON:UNINITIALIZED=C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe + +//No help, variable specified on the command line. +PYTHON_DEPS_CHECKED:UNINITIALIZED=1 + +//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=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf + +//Value Computed by CMake +esp-idf_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +esp-idf_SOURCE_DIR:STATIC=C:/Users/Job/esp/v5.2.2/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; + +//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; + + +######################## +# 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=c:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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=24 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/Job/.espressif/tools/cmake/3.24.0/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/Job/.espressif/tools/cmake/3.24.0/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/Job/.espressif/tools/cmake/3.24.0/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=C:/Users/Job/.espressif/tools/cmake/3.24.0/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=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW +//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=90 +//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=C:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24 +//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_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=[C:/Users/Job/.espressif/tools/idf-git/2.39.2/cmd/git.exe][v2.39.2.windows.1()] +//Details about finding Python3 +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[C:/Users/Job/.espressif/python_env/idf5.2_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 +//Have include stddef.h +HAVE_STDDEF_H:INTERNAL=1 +//Have include stdint.h +HAVE_STDINT_H:INTERNAL=1 +//Have include sys/types.h +HAVE_SYS_TYPES_H:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_TIME_T_SIZE:INTERNAL=TRUE +//CHECK_TYPE_SIZE: sizeof(time_t) +TIME_T_SIZE:INTERNAL=8 +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/ESPIDFNEW +_Python3_EXECUTABLE:INTERNAL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;11;2;32;;;C:\Users\Job\.espressif\tools\idf-python\3.11.2\Lib;C:\Users\Job\.espressif\tools\idf-python\3.11.2\Lib;C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Lib\site-packages;C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Lib\site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=09dfb63b2be5358ea2d67bd3eae402d9 + diff --git a/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeASMCompiler.cmake b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeASMCompiler.cmake new file mode 100644 index 0000000..6ae9a30 --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeASMCompiler.cmake @@ -0,0 +1,20 @@ +set(CMAKE_ASM_COMPILER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_MT "") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + + + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) + + diff --git a/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeCCompiler.cmake b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeCCompiler.cmake new file mode 100644 index 0000000..95b0d47 --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "13.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_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 "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_MT "") +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) + +# 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 "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..a3073d6 --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "13.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_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") +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_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_MT "") +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) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "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 "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/backward;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/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 "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..b52c371 Binary files /dev/null and b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin differ diff --git a/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..b217e71 Binary files /dev/null and b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeSystem.cmake b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeSystem.cmake new file mode 100644 index 0000000..af7df6e --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/3.24.0/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22631") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22631") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/toolchain-esp32.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/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c b/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..2b43aa6 --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,838 @@ +#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(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# 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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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(__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" + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# 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/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdC/a.out b/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdC/a.out new file mode 100644 index 0000000..e93db1e Binary files /dev/null and b/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdC/a.out differ diff --git a/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp b/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..486becd --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,826 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__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(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# 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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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(__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" + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +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]; +#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/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdCXX/a.out b/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdCXX/a.out new file mode 100644 index 0000000..750a442 Binary files /dev/null and b/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdCXX/a.out differ diff --git a/ESPIDFNEW/build/CMakeFiles/CMakeOutput.log b/ESPIDFNEW/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..d3ebbad --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,471 @@ +The target system is: Generic - - +The host system is: Windows - 10.0.22631 - AMD64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe +Build flags: -mlongcalls;-Wno-frame-address;;-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 "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe +Build flags: -mlongcalls;-Wno-frame-address;;-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 "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/3.24.0/CompilerIdCXX/a.out" + +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +xtensa-esp-elf-gcc.exe (crosstool-NG esp-13.2.0_20230928) 13.2.0 +Copyright (C) 2023 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. + +Detecting C compiler ABI info compiled with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_eb25f && [1/2] Building C object CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj +Using built-in specs. +COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-gcc.exe +Target: xtensa-esp-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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 +gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_eb25f.dir/' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/ C:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_eb25f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\Users\Job\AppData\Local\Temp\ccMhLA0y.s +GNU C17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include" +#include "..." search starts here: +#include <...> search starts here: + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include +End of search list. +Compiler executable checksum: a7185c8b5363aeb8f378896e00d5f636 +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_eb25f.dir/' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj C:\Users\Job\AppData\Local\Temp\ccMhLA0y.s +COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ +LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/ +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.' +[2/2] Linking C executable cmTC_eb25f +Using built-in specs. +COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-gcc.exe +COLLECT_LTO_WRAPPER=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe +Target: xtensa-esp-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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 +gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) +COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ +LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/ +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_eb25f' '-dumpdir' 'cmTC_eb25f.' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe -plugin C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\ccuMarLA.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 --dynconfig=xtensa_esp32.so -o cmTC_eb25f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_eb25f' '-dumpdir' 'cmTC_eb25f.' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_eb25f && [1/2] Building C object CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-gcc.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_eb25f.dir/'] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/ C:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_eb25f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\Users\Job\AppData\Local\Temp\ccMhLA0y.s] + ignore line: [GNU C17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: a7185c8b5363aeb8f378896e00d5f636] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_eb25f.dir/'] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj C:\Users\Job\AppData\Local\Temp\ccMhLA0y.s] + ignore line: [COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.'] + ignore line: [[2/2] Linking C executable cmTC_eb25f] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_eb25f' '-dumpdir' 'cmTC_eb25f.'] + link line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe -plugin C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\ccuMarLA.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 --dynconfig=xtensa_esp32.so -o cmTC_eb25f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib CMakeFiles/cmTC_eb25f.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o ] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\ccuMarLA.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 [--dynconfig=xtensa_esp32.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_eb25f] ==> ignore + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] + arg [CMakeFiles/cmTC_eb25f.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] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + implicit dirs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_b6ac9 && [1/2] Building CXX object CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj +Using built-in specs. +COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-g++.exe +Target: xtensa-esp-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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 +gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b6ac9.dir/' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/ C:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_b6ac9.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\Users\Job\AppData\Local\Temp\ccsLXAtJ.s +GNU C++17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include" +#include "..." search starts here: +#include <...> search starts here: + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0 + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32 + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include +End of search list. +Compiler executable checksum: 7accc3f4dea0b1ef90bd5b8fb39b4353 +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b6ac9.dir/' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\Job\AppData\Local\Temp\ccsLXAtJ.s +COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ +LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/ +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.' +[2/2] Linking CXX executable cmTC_b6ac9 +Using built-in specs. +COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-g++.exe +COLLECT_LTO_WRAPPER=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe +Target: xtensa-esp-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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 +gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) +COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ +LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/ +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_b6ac9' '-dumpdir' 'cmTC_b6ac9.' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe -plugin C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\cceciczP.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 --dynconfig=xtensa_esp32.so -o cmTC_b6ac9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_b6ac9' '-dumpdir' 'cmTC_b6ac9.' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/backward] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/backward;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_b6ac9 && [1/2] Building CXX object CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-g++.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b6ac9.dir/'] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/ C:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_b6ac9.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\Users\Job\AppData\Local\Temp\ccsLXAtJ.s] + ignore line: [GNU C++17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 7accc3f4dea0b1ef90bd5b8fb39b4353] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b6ac9.dir/'] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\Job\AppData\Local\Temp\ccsLXAtJ.s] + ignore line: [COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [[2/2] Linking CXX executable cmTC_b6ac9] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_b6ac9' '-dumpdir' 'cmTC_b6ac9.'] + link line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe -plugin C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\cceciczP.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 --dynconfig=xtensa_esp32.so -o cmTC_b6ac9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib CMakeFiles/cmTC_b6ac9.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\cceciczP.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 [--dynconfig=xtensa_esp32.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_b6ac9] ==> ignore + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] + arg [CMakeFiles/cmTC_b6ac9.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] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit objs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + implicit dirs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib] + implicit fwks: [] + + +Determining if the include file sys/types.h exists passed with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_6a6a6 && [1/2] Building C object CMakeFiles/cmTC_6a6a6.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_6a6a6 + + + +Determining if the include file stdint.h exists passed with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_29f8a && [1/2] Building C object CMakeFiles/cmTC_29f8a.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_29f8a + + + +Determining if the include file stddef.h exists passed with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_9118b && [1/2] Building C object CMakeFiles/cmTC_9118b.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_9118b + + + +Determining size of time_t passed with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_e6b1a && [1/2] Building C object CMakeFiles/cmTC_e6b1a.dir/TIME_T_SIZE.c.obj +[2/2] Linking C executable cmTC_e6b1a + + + +Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD succeeded with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_3faa1 && [1/2] Building C object CMakeFiles/cmTC_3faa1.dir/src.c.obj +[2/2] Linking C executable cmTC_3faa1 +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_3faa1.dir/src.c.obj:(.literal+0x18): warning: pthread_exit is not implemented and will always fail +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_3faa1.dir/src.c.obj:(.literal+0xc): warning: pthread_cancel is not implemented and will always fail +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_3faa1.dir/src.c.obj:(.literal+0x8): warning: pthread_detach is not implemented and will always fail +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_3faa1.dir/src.c.obj:(.literal+0x10): warning: pthread_join is not implemented and will always fail +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_3faa1.dir/src.c.obj:(.literal+0x4): warning: pthread_create is not implemented and will always fail +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_3faa1.dir/src.c.obj:(.literal+0x14): warning: pthread_atfork is not implemented and will always fail + + +Source file was: +#include + +static void* test_func(void* data) +{ + return data; +} + +int main(void) +{ + pthread_t thread; + pthread_create(&thread, NULL, test_func, NULL); + pthread_detach(thread); + pthread_cancel(thread); + pthread_join(thread, NULL); + pthread_atfork(NULL, NULL, NULL); + pthread_exit(NULL); + + return 0; +} + +Performing C SOURCE FILE Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS succeeded with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_bb3ea && [1/2] Building C object CMakeFiles/cmTC_bb3ea.dir/src.c.obj +[2/2] Linking C executable cmTC_bb3ea + + +Source file was: +int main(void) { return 0; } diff --git a/ESPIDFNEW/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin b/ESPIDFNEW/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin new file mode 100644 index 0000000..720bf9f Binary files /dev/null and b/ESPIDFNEW/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin differ diff --git a/ESPIDFNEW/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c b/ESPIDFNEW/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c new file mode 100644 index 0000000..4ce0740 --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c @@ -0,0 +1,50 @@ +#include +#include +#include + + +#undef KEY +#if defined(__i386) +# define KEY '_','_','i','3','8','6' +#elif defined(__x86_64) +# define KEY '_','_','x','8','6','_','6','4' +#elif defined(__PPC64__) +# define KEY '_','_','P','P','C','6','4','_','_' +#elif defined(__ppc64__) +# define KEY '_','_','p','p','c','6','4','_','_' +#elif defined(__PPC__) +# define KEY '_','_','P','P','C','_','_' +#elif defined(__ppc__) +# define KEY '_','_','p','p','c','_','_' +#elif defined(__aarch64__) +# define KEY '_','_','a','a','r','c','h','6','4','_','_' +#elif defined(__ARM_ARCH_7A__) +# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' +#elif defined(__ARM_ARCH_7S__) +# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' +#endif + +#define SIZE (sizeof(time_t)) +static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', + ('0' + ((SIZE / 10000)%10)), + ('0' + ((SIZE / 1000)%10)), + ('0' + ((SIZE / 100)%10)), + ('0' + ((SIZE / 10)%10)), + ('0' + (SIZE % 10)), + ']', +#ifdef KEY + ' ','k','e','y','[', KEY, ']', +#endif + '\0'}; + +#ifdef __CLASSIC_C__ +int main(argc, argv) int argc; char *argv[]; +#else +int main(int argc, char *argv[]) +#endif +{ + int require = 0; + require += info_size[argc]; + (void)argv; + return require; +} diff --git a/ESPIDFNEW/build/CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj b/ESPIDFNEW/build/CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj new file mode 100644 index 0000000..534e39a Binary files /dev/null and b/ESPIDFNEW/build/CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj differ diff --git a/ESPIDFNEW/build/CMakeFiles/TargetDirectories.txt b/ESPIDFNEW/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..a736ca5 --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,651 @@ +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/menuconfig.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/confserver.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/save-defconfig.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/bootloader.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/gen_project_binary.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/app.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/erase_flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/uf2.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/uf2-app.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/monitor.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/encrypted-flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/_project_elf_src.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/ESPIDFNEW.elf.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/size.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/size-files.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/size-components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_bootloader_format/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_bootloader_format/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_bootloader_format/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_bootloader_format/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_app_format/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/partition-table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/partition_table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/memory.ld.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/sections.ld.in.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/log/CMakeFiles/__idf_log.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/log/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/log/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/log/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/log/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/log/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/log/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/port/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/port/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/port/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/port/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/port/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/port/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_common/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_common/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_common/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif_stack/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif_stack/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif_stack/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif_stack/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif_stack/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_coex/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_coex/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_coex/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_coex/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_coex/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_coex/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bt/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bt/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bt/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bt/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bt/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bt/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmock/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmock/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmock/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmock/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmock/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmock/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/console/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/console/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/console/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/console/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/console/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/console/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/http_parser/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/http_parser/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/http_parser/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/http_parser/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/http_parser/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/http_parser/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_ota/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_ota/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_ota/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_ota/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_ota/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_server/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_server/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_server/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_server/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_server/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_server/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_psram/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_psram/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_psram/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_psram/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_psram/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_psram/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protobuf-c/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protobuf-c/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protobuf-c/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protobuf-c/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protobuf-c/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protobuf-c/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/idf_test/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/idf_test/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/idf_test/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/idf_test/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/idf_test/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/idf_test/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ieee802154/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ieee802154/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ieee802154/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ieee802154/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ieee802154/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ieee802154/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/json/CMakeFiles/__idf_json.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/json/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/json/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/json/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/json/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/json/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/json/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_sec_provider/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_sec_provider/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_sec_provider/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_sec_provider/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/openthread/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/openthread/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/openthread/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/openthread/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/openthread/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/openthread/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ulp/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ulp/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ulp/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ulp/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ulp/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ulp/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/usb/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/usb/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/usb/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/usb/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/usb/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/usb/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/install/strip.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/main/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/main/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/main/CMakeFiles/list_install_components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/main/CMakeFiles/install.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/main/CMakeFiles/install/local.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/main/CMakeFiles/install/strip.dir diff --git a/ESPIDFNEW/build/CMakeFiles/bootloader-complete b/ESPIDFNEW/build/CMakeFiles/bootloader-complete new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/CMakeFiles/bootloader.dir/Labels.json b/ESPIDFNEW/build/CMakeFiles/bootloader.dir/Labels.json new file mode 100644 index 0000000..3aa1ec8 --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/bootloader.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/bootloader" + }, + { + "file" : "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/bootloader.rule" + }, + { + "file" : "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/bootloader-complete.rule" + }, + { + "file" : "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule" + }, + { + "file" : "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule" + }, + { + "file" : "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule" + }, + { + "file" : "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule" + }, + { + "file" : "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule" + }, + { + "file" : "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule" + }, + { + "file" : "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule" + } + ], + "target" : + { + "labels" : + [ + "bootloader" + ], + "name" : "bootloader" + } +} \ No newline at end of file diff --git a/ESPIDFNEW/build/CMakeFiles/bootloader.dir/Labels.txt b/ESPIDFNEW/build/CMakeFiles/bootloader.dir/Labels.txt new file mode 100644 index 0000000..eba9584 --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/bootloader.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + bootloader +# Source files and their labels +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/bootloader +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/bootloader.rule +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/bootloader-complete.rule +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule diff --git a/ESPIDFNEW/build/CMakeFiles/clean_additional.cmake b/ESPIDFNEW/build/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..bb004ce --- /dev/null +++ b/ESPIDFNEW/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 + "ESPIDFNEW.bin" + "ESPIDFNEW.map" + "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_esp32.c" + "x509_crt_bundle.S" + ) +endif() diff --git a/ESPIDFNEW/build/CMakeFiles/cmake.check_cache b/ESPIDFNEW/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/ESPIDFNEW/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/ESPIDFNEW/build/CMakeFiles/git-data/HEAD b/ESPIDFNEW/build/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..7c066d5 --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +3b8741b172dc951e18509698dee938304bcf1523 diff --git a/ESPIDFNEW/build/CMakeFiles/git-data/grabRef.cmake b/ESPIDFNEW/build/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..8ae495e --- /dev/null +++ b/ESPIDFNEW/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 "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "C:/Users/Job/esp/v5.2.2/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}" "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/ESPIDFNEW/build/CMakeFiles/git-data/head-ref b/ESPIDFNEW/build/CMakeFiles/git-data/head-ref new file mode 100644 index 0000000..7c066d5 --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +3b8741b172dc951e18509698dee938304bcf1523 diff --git a/ESPIDFNEW/build/CMakeFiles/rules.ninja b/ESPIDFNEW/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..577159f --- /dev/null +++ b/ESPIDFNEW/build/CMakeFiles/rules.ninja @@ -0,0 +1,1490 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.24 + +# 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: ESPIDFNEW +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__ESPIDFNEW.2eelf_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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__ESPIDFNEW.2eelf_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_bootloader_format_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_app_format_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_trace_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_trace_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_event_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_event_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_nvs_flash_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_nvs_flash_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_phy_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_phy_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_vfs_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_vfs_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_lwip_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_lwip_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_netif_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_netif_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_wpa_supplicant_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_wpa_supplicant_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_coex_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_coex_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_wifi_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_wifi_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_unity_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_unity_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_cmock_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_cmock_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_console_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_console_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_http_parser_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_http_parser_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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-tls_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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-tls_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_eth_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_eth_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_gdbstub_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_gdbstub_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_gdbstub_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_hid_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_hid_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_tcp_transport_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_tcp_transport_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_http_client_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_http_client_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_http_server_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_http_server_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_https_ota_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_https_ota_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_lcd_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_lcd_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_protobuf-c_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_protobuf-c_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_protocomm_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_protocomm_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_local_ctrl_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_local_ctrl_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_espcoredump_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_espcoredump_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_wear_levelling_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_wear_levelling_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_fatfs_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_fatfs_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_json_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_json_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_mqtt_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_mqtt_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_nvs_sec_provider_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_nvs_sec_provider_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_perfmon_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_perfmon_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_spiffs_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_spiffs_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_wifi_provisioning_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_wifi_provisioning_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_espressif__esp-dsp_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_espressif__esp-dsp_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER____idf_espressif__esp-dsp_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_espressif__esp-dsp_ + command = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_main_ + depfile = $DEP_FILE + deps = gcc + command = ccache C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Users\Job\.espressif\tools\ninja\1.11.1\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\Users\Job\.espressif\tools\ninja\1.11.1\ninja.exe -t targets + description = All primary targets available: + diff --git a/ESPIDFNEW/build/ESPIDFNEW.bin b/ESPIDFNEW/build/ESPIDFNEW.bin new file mode 100644 index 0000000..4bf9582 Binary files /dev/null and b/ESPIDFNEW/build/ESPIDFNEW.bin differ diff --git a/ESPIDFNEW/build/ESPIDFNEW.elf b/ESPIDFNEW/build/ESPIDFNEW.elf new file mode 100644 index 0000000..c3e6017 Binary files /dev/null and b/ESPIDFNEW/build/ESPIDFNEW.elf differ diff --git a/ESPIDFNEW/build/ESPIDFNEW.map b/ESPIDFNEW/build/ESPIDFNEW.map new file mode 100644 index 0000000..e578673 --- /dev/null +++ b/ESPIDFNEW/build/ESPIDFNEW.map @@ -0,0 +1,93294 @@ +Archive member included to satisfy reference by file (symbol) + +esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + (esp_app_desc) +esp-idf/pthread/libpthread.a(pthread.c.obj) + (pthread_include_pthread_impl) +esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + (pthread_include_pthread_cond_var_impl) +esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (pthread_key_create) +esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + (pthread_include_pthread_rwlock_impl) +esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + (pthread_include_pthread_semaphore_impl) +esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + (__ubsan_include) +esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + (call_start_cpu0) +esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (esp_system_abort) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_ipc_isr_stall_other_cpu) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) (esp_ipc_isr_port_init) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) (esp_ipc_isr_waiting_for_finish_cmd) +esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + (ld_include_highint_hdl) +esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_clk_init) +esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_cache_err_int_init) +esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (int_wdt_cpu1_ticked) +esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (panic_abort) +esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_restart) +esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (g_startup_fn) +esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (panicHandler) +esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_brownout_init) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (esp_ipc_isr_handler) +esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (panic_print_registers) +esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) (esp_backtrace_print_from_frame) +esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) (esp_backtrace_get_start) +esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (esp_restart_noos) +esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) (esp_register_freertos_tick_hook_for_cpu) +esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rom_uart_tx_wait_idle) +esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (efuse_hal_chip_revision) +esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) (efuse_hal_get_major_chip_version) +esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) (wdt_hal_init) +esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (uart_hal_write_txfifo) +esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) (brownout_hal_config) +esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_log_default_level) +esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) (esp_log_impl_lock) +esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (heap_caps_get_free_size) +esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (registered_heaps) +esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (multi_heap_get_allocated_size) +esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) (tlsf_check) +esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_get_available_memory_region_max_count) +esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_memory_region_count) +esp-idf/soc/libsoc.a(dport_access.c.obj) + (esp_dport_access_reg_read) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (esp_cpu_stall) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_clk_cpu_freq) +esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) (esp_intr_enable_source) +esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) (periph_rcc_acquire_enter) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) (rtc_isr_register) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_deep_sleep_wakeup_io_reset) +esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (mspi_timing_change_speed_mode_cache_safe) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_32k_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_init) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_cal) +esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_chip_info) +esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (sar_periph_ctrl_init) +esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (regi2c_ctrl_read_reg_mask) +esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_startup_start_app) +esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (xQueueGetMutexHolder) +esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (vTaskSuspendAll) +esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (port_xSchedulerRunning) +esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_frxt_dispatch) +esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (_xt_tick_divisor) +esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) (pvPortMalloc) +esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (vApplicationGetIdleTaskMemory) +esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (vPortSetupTimer) +esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) (vListInitialise) +esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (abort) +esp-idf/newlib/libnewlib.a(assert.c.obj) + (__assert_func) +esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (malloc) +esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) (_lock_init_recursive) +esp-idf/newlib/libnewlib.a(pthread.c.obj) + (newlib_include_pthread_impl) +esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (esp_reent_init) +esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_newlib_init) +esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_kill_r) +esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_gettimeofday_r) +esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) (esp_time_impl_get_time_since_boot) +esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + (__cxa_guard_dummy) +esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_timer_early_init) +esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (esp_timer_impl_init_system_time) +esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (esp_timer_impl_get_min_period_us) +esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (esp_timer_impl_get_time) +esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + (include_esp_phy_override) +esp-idf/vfs/libvfs.a(vfs.c.obj) + (vfs_include_syscalls_impl) +esp-idf/vfs/libvfs.a(vfs_console.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_vfs_console_register) +esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) (esp_vfs_uart_get_vfs) +esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + (nvs_sec_provider_include_impl) +esp-idf/main/libmain.a(station_example_main.c.obj) + (app_main) +esp-idf/main/libmain.a(http_control.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (start_webserver) +esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (runFilter) +esp-idf/main/libmain.a(button.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (registerInterrupt) +esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (_xt_context_save) +esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (xt_ints_on) +esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) (xt_unhandled_interrupt) +esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_xt_user_exit) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_efuse_check_errors) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_fill_buff) +esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_get_coding_scheme) +esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) (ESP_EFUSE_RD_DIS_BLOCK3) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (range_read_addr_blocks) +esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_mmu_map_init) +esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (g_mmu_mem_regions) +esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (cache_sync) +esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/main/libmain.a(button.c.obj) (gpio_set_intr_type) +esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (rtc_gpio_is_valid_gpio) +esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (i2s_stop) +esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) (uart_set_word_length) +esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) (adc_set_i2s_data_source) +esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) (adc_common_gpio_init) +esp-idf/driver/libdriver.a(i2s_platform.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) (i2s_platform_acquire_occupation) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_init_mem) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) (bootloader_flash_reset_chip) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_flash_update_id) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) (bootloader_common_get_chip_ver_pkg) +esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_flash_encryption_enabled) +esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (spi_flash_needs_reset_check) +esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (spi_flash_disable_interrupts_caches_and_other_cpu) +esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (spi_flash_mmap) +esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (spi_flash_init_chip_state) +esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_flash_erase_region) +esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) (esp_flash_default_chip) +esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_flash_init_os_functions) +esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_flash_noos_functions) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) (esp_flash_registered_chips) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_generic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_issi) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_mxic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_gd) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) (spi_flash_chip_winbond_page_program) +esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (memspi_host_init_pointers) +esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (_esp_error_check_failed) +esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (esp_crosscore_int_init) +esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) (esp_ipc_call) +esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) (task_wdt_timeout_abort) +esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) (esp_task_wdt_impl_timer_allocate) +esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) (_xt_panic) +esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (esp_rom_set_cpu_ticks_per_us) +esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_rom_spiflash_wait_idle) +esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (mmu_hal_paddr_to_vaddr) +esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) (cache_hal_suspend) +esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_init) +esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_poll_cmd_done) +esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (spi_flash_encryption_hal_enable) +esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_hal_get_sclk) +esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (gpio_hal_intr_enable_on_core) +esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) (rtcio_hal_set_direction) +esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) (i2s_hal_init) +esp-idf/hal/libhal.a(hal_utils.c.obj) + esp-idf/hal/libhal.a(i2s_hal.c.obj) (hal_utils_calc_clk_div_frac_accurate) +esp-idf/soc/libsoc.a(interrupts.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_isr_names) +esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (GPIO_HOLD_MASK) +esp-idf/soc/libsoc.a(uart_periph.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_periph_signal) +esp-idf/soc/libsoc.a(adc_periph.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) (adc_channel_io_map) +esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_periph_signal) +esp-idf/soc/libsoc.a(i2s_periph.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) (i2s_periph_signal) +esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) (rtc_io_desc) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) (esp_ptr_byte_accessible) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (esp_cpu_configure_region_protection) +esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) (periph_rtc_apll_acquire) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_gpio_reserve_pins) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (esp_clk_tree_src_get_freq_hz) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) (esp_clk_tree_rc_fast_d256_get_freq_hz) +esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) (adc_lock_release) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) (esp_clock_output_start) +esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (xEventGroupCreate) +esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (xQueueCreateWithCaps) +esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) (xTimerPendFunctionCallFromISR) +esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) (xStreamBufferGenericCreateStatic) +esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) (esp_err_to_name) +esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (esp_event_handler_instance_register) +esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) (esp_event_loop_create) +esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (lwip_bind) +esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (tcpip_callback) +esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (lwip_htons) +esp-idf/lwip/liblwip.a(init.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) (lwip_init) +esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) (ip_input) +esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (mem_init) +esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (memp_init) +esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (netif_get_by_index) +esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (pbuf_free) +esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (raw_bind_netif) +esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (tcp_init) +esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_input_pcb) +esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_split_unsent_seg) +esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_timer_needed) +esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (udp_init) +esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) (dhcp_network_changed) +esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) (etharp_cleanup_netif) +esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) (icmp_dest_unreach) +esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (igmp_init) +esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) (ip4_route) +esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip4_addr_isbroadcast_u32) +esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) (ip4_frag) +esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) (icmp6_dest_unreach) +esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip6_route) +esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (ip6addr_aton) +esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) (ip6_frag) +esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) (mld6_stop) +esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) (nd6_input) +esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) (ethbroadcast) +esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (lwip_hook_tcp_isn) +esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) (ip4_route_src_hook) +esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (lwip_setsockopt_impl_ext) +esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (sys_sem_signal) +esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) (esp_vfs_lwip_sockets_register) +esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (netconn_new_with_proto_and_callback) +esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) (lwip_netconn_is_deallocated_msg) +esp-idf/lwip/liblwip.a(err.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (err_to_errno) +esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (netbuf_delete) +esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (dns_init) +esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip6_chksum_pseudo) +esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (esp_netif_next) +esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (esp_netif_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (g_wifi_default_wpa_crypto_funcs) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (sha256_prf) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (sha1_prf) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (sha256_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (rc4_skip) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_wrap) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_unwrap) +esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (os_get_random) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (ccmp_decrypt) +esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (bin_clear_free) +esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (fastpbkdf2_hmac_sha1) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) (aes_ccm_ae) +esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (esp_wifi_init) +esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (esp_netif_create_default_wifi_sta) +esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (esp_wifi_destroy_if_driver) +esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) (g_wifi_osi_funcs) +esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) (httpd_start) +esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) (httpd_query_key_value) +esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) (httpd_sess_enum) +esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) (httpd_recv_with_opt) +esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) (httpd_uri_match_wildcard) +esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) (cs_create_ctrl_sock) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_mpi_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (mbedtls_mpi_core_bitlen) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_cipher_info_from_type) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) (mbedtls_cipher_base_lookup_table) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) (mbedtls_ct_memcmp) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_cipher_cmac_starts) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_md_info_from_type) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_md5) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (mbedtls_calloc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) (mbedtls_platform_zeroize) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (psa_generic_status_to_mbedtls) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha1) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha256) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha512) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha3_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) (esp_mbedtls_mem_calloc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (esp_aes_xts_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (esp_aes_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (esp_aes_crypt_ecb) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_mpi_exp_mod) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) (esp_mpi_enable_hardware_hw_op) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) (mbedtls_sha1_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha256_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha512_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (esp_aes_gcm_setkey) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (esp_md5_finish) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (mbedtls_aria_setkey_enc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) (mbedtls_asn1_get_tag) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) (mbedtls_asn1_write_len) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (mbedtls_ccm_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) (psa_generate_random) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_aead_encrypt_setup) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) (mbedtls_cipher_values_from_psa) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_reset_key_attributes) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_driver_wrapper_get_key_buffer_size) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_ecp_import_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_hash_abort) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_mac_abort) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_rsa_import_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_is_valid_key_id) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_destroy_persistent_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) (psa_its_get_info) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) (mbedtls_rsa_export) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (mbedtls_rsa_deduce_primes) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) (esp_sha_try_lock_engine) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_ctr_drbg_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) (mbedtls_ecdh_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) (mbedtls_ecdsa_sign) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) (mbedtls_ecp_curve_info_from_grp_id) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_ecp_group_load) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_entropy_free) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) (mbedtls_hmac_drbg_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (mbedtls_oid_get_oid_by_md) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (mbedtls_hardware_poll) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) (esp_wifi_init_internal) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (g_ic) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_crypto_attach) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (wifi_log) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_free_beacon_eb) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_ht_attach) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_add_ie_vendor_esp_head) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (ieee80211_decap) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (current_task_is_wifi_task) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (esp_mesh_quick_funcs) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (wifi_nan_reg_rxcb) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) (nan_dp_search_node) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) (nan_schedule_disc_bcn) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) (nan_get_peer_svc_record) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (g_wifi_nvs) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_reg_netstack_buf_cb) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_phy_deinit) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (ieee80211_psq_init) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_proto_attach) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_get_chan_info) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_regdomain_get_country) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_rfid_locp_recv_reset) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_scan_attach) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_sta_new_state) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) (wifi_sta_get_prof_password) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_register_hostap_timer) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) (g_chm) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (g_cnxMgr) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (offchan_in_progress) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_send_action_register) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (get_iav_key) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (ccmp) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) (sms4) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) (tkip) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) (wep) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_getmgtframe) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) (esf_buf_recycle) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) (ic_get_addr) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (lmacIsIdle) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (pm_is_sleeping) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (pTxRx) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) (wifi_gpio_debug) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) (pp_timer_do_process) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (RC_SetBasicRate) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (rcUpdateAMPDUParam) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (wDevCtrl) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (hal_agreement_add_rx_ba) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) (hal_crypto_clr_key_entry) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (hal_mac_tx_set_ppdu) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) (hal_mac_rx_get_end_state) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) (mac_tx_set_plcp1) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) (hal_sniffer_enable) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) (hal_enable_sta_tsf) +esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (xRingbufferSend) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_disable_rom_download_mode) +esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_bus_lock_register_dev) +esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spicommon_bus_using_iomux) +esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) (esp_partition_is_flash_region_writable) +esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (esp_partition_next) +esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (esp_ota_get_running_partition) +esp-idf/hal/libhal.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) (mpu_hal_set_region_access) +esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) (clk_hal_lp_slow_get_freq_hz) +esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) (mpi_hal_calc_hardware_words) +esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (sha_hal_wait_idle) +esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) (aes_hal_setkey) +esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) (esp_dport_access_read_buffer) +esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) (MPI_LL_OPERATIONS) +esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (esp_random) +esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (esp_read_mac) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) (esp_crypto_mpi_lock_acquire) +esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (ets_timer_arm) +esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (nvs_erase_key) +esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::Storage::isValid() const) +esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSHandleSimple::findEntryNs(nvs_opaque_iterator_t*)) +esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSPartition::NVSPartition(esp_partition_t const*)) +esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSPartitionManager::get_instance()) +esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::Lock::Lock()) +esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::HashList::~HashList()) +esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::Page::markFull()) +esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::PageManager::fillStats(nvs_stats_t&)) +esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) (nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::NVSPartition**)) +esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (nvs::Item::calculateCrc32() const) +esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) (nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*)) +esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (net80211_printf) +esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (esp_phy_common_clock_enable) +esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_set_modem_flag) +esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (dhcps_new) +esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (esp_netif_action_start) +esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (_g_esp_netif_inherent_ap_config) +esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (_g_esp_netif_netstack_default_wifi_ap) +esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) (wlanif_input) +esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) (ethernetif_input) +esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) (esp_pbuf_allocate) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) (esp_supplicant_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (esp_supplicant_unset_all_appie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (esp_wpa3_free_sae_data) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (owe_deinit) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (hostapd_get_hapd_data) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) (crypto_ecdh_deinit) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (eloop_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) (hostapd_setup_wpa_psk) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) (wpa_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (wpa_auth_gen_wpa_ie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (pmksa_cache_free_entry) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (ap_get_sta) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (handle_auth_sae) +esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) (check_comeback_token) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) (sae_clear_temp_data) +esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (dragonfly_min_pwe_loop_iter) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) (wpa_parse_wpa_ie_rsn) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (hmac_sha256_kdf) +esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (dh_groups_get) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (cipher_type_map_supp_to_public) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (wpa_parse_wpa_ie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (wpabuf_alloc) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) (wpa_snprintf_hex) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (sae_pk_valid_password) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (eap_client_get_eap_state) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (wpa_alloc_eapol) +esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (tls_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (crypto_bignum_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) (aes_siv_decrypt) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) (ieee802_11_parse_elems) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (eap_peer_get_eap_method) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_msg_alloc) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_mschapv2_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_peap_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) (peap_prfplus) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_tls_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) (eap_peer_tls_ssl_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_ttls_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) (mschapv2_remove_domain) +esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (pmksa_cache_flush) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) (nt_password_hash) +esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) (md4_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) (chap_md5) +esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) (des_encrypt) +esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (esp_coex_common_malloc_internal_wrapper) +esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) (http_parser_execute) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) (mbedtls_ssl_write) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) (mbedtls_ssl_tls_prf) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ssl_handshake_client_step) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ssl_handshake_server_step) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) (mbedtls_ms_time) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ssl_ciphersuite_from_id) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ssl_write_client_hello) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_pk_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_pk_ecc_set_group) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_rsa_alt_info) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_pk_parse_subpubkey) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) (mbedtls_pk_write_pubkey) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pem_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pkcs12_pbe_ext) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pkcs5_pbes2_ext) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) (mbedtls_base64_encode) +esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_x509_crt_check_key_usage) +esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) (mbedtls_x509_get_serial) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (g_misc_nvs) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (mesh_set_ie_crypto_config) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (esp_mesh_pm_tbtt_timeout_process) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (mesh_malloc) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (g_mesh_max_layer) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_nvs_init) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (mesh_set_io_process) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_delivery_toSelf) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (esp_mesh_channel_enable_jp) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (g_is_wifi_connected) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_route_init) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) (esp_mesh_send_block_start) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (mesh_timer_do_process) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) (mesh_topo_get_ttl) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (esp_mesh_ap_list_clear) +esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (esp_crt_bundle_attach) +esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) (_binary_x509_crt_bundle_start) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (bootloader_common_get_sha256_of_partition) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (bootloader_common_ota_select_crc) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_sha256_flash_contents) +esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_image_verify) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_sha256_start) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (esp_deep_sleep_register_phy_hook) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_sleep_execute_event_callbacks) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (modem_domain_pd_allowed) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (rtc_sleep_get_default_config) +esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) (ethip6_output) +esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_send_event_internal) +esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (touch_pad_get_wakeup_status) +esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_hal_set_voltage) +esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_hal_get_wakeup_status) +esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_sensor_channel_io_map) +C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (xthal_get_ccount) +C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (xthal_window_spill_nw) +C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (xthal_set_intclear) +C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) (Xthal_intlevel) +C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) (xthal_restore_extra_nw) +C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) (xthal_save_extra_nw) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (operator delete[](void*)) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (operator delete[](void*, unsigned int)) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (std::nothrow) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (operator new[](unsigned int, std::nothrow_t const&)) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) (operator delete(void*)) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) (__cxa_begin_catch) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) (__cxa_get_globals_fast) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) (std::terminate()) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__unexpected_handler) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) (operator new[](unsigned int)) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__terminate_handler) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) (operator new(unsigned int)) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) (vtable for __cxxabiv1::__si_class_type_info) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) (std::type_info::__is_pointer_p() const) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) (vtable for std::bad_alloc) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) (__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) (operator delete(void*, unsigned int)) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) (std::exception::~exception()) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (__bswapsi2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (__bswapdi2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divsf3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) (__floatundisf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__adddf3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__muldf3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divdf3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) (__gtdf2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixdfsi) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixunsdfsi) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__floatunsidf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + esp-idf/main/libmain.a(butterworthdesign.c.obj) (__truncdfsf2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__extendsfdf2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) (__ffsdi2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (__udivdi3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__umoddi3) +esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) (__wrap__Unwind_DeleteException) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) (disable_wifi_agc) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) (phy_change_channel_nomac) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) (ram_txbbgain_to_index) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) (bb_bss_cbw40_ana) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (coex_bt_high_prio) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) (temprature_sens_read) +C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) (rtc_pads_muxsel) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + esp-idf/main/libmain.a(butterworthdesign.c.obj) (sin) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + esp-idf/main/libmain.a(butterworthdesign.c.obj) (tan) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) (__kernel_cos) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) (__kernel_sin) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) (__kernel_tan) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) (__ieee754_rem_pio2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) (fabs) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) (__kernel_rem_pio2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) (floor) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) (scalbn) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + esp-idf/main/libmain.a(http_control.c.obj) (atoi) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (div) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (environ) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) (itoa) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (rand) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) (_strtol_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) (strtoul) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) (__utoa) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) (_ctype_) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_fclose_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (ferror) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) (__sflush_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (fgets) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) (__sglue) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (fopen) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fprintf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fputc) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fputs) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (fread) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) (_fseek_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (ftell) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) (__sfvwrite_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) (_fwalk_sglue) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fwrite) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (printf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) (_putc_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (putchar) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) (__srefill_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (remove) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (rename) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (setbuf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) (setvbuf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (snprintf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (sprintf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) (__sread) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) (vprintf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) (vsnprintf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) (__swbuf_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (__swsetup_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) (_fseeko_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) (_ftello_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) (memchr) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (memcmp) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + esp-idf/lwip/liblwip.a(def.c.obj) (memmove) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (strchr) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (strdup) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) (_strdup_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strlcpy) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) (strncasecmp) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (strnlen) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (strrchr) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) (strtok) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) (__strtok_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + esp-idf/lwip/liblwip.a(dns.c.obj) (strstr) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (gmtime) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) (gmtime_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (localtime_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (mktime) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) (__month_lengths) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) (time) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) (__tzcalc_limits) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) (__tz_lock) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) (_tzset_unlocked) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) (_tzset_unlocked_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) (_timezone) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) (_impure_ptr) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) (__errno) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + esp-idf/main/libmain.a(station_example_main.c.obj) (close) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) (gettimeofday) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) (stat) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (memcpy) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memset) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + esp-idf/log/liblog.a(log.c.obj) (strcmp) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (strcpy) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (strlen) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) (strncpy) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) (_getenv_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) (siscanf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) (__ssvfiscanf_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) (_svfprintf_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) (_vfprintf_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) (__sprint_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) (__sflags) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) (__swhatbuf_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) (__sccl) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) (__submore) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) (_strerror_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) (_user_strerror) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) (__gettzinfo) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) (__global_locale_ptr) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) (_localeconv_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) (frexp) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) (_dtoa_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) (__env_lock) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) (__ascii_mbtowc) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) (_Balloc) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) (__ascii_wctomb) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) (_strtoll_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) (_strtoull_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) (_mbrtowc_r) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) (iswspace) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) (iswspace_l) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) (__chclass) + +Allocating common symbols +Common symbol size file + +pwrdet_offset 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_rxbb_dc 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +mesh_self_xonseq 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +ctx 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) +phy_chan_gain_table + 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +phy_rxrf_dc 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_chan_pwr_index 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +net80211_funcs 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mesh_manual_nwk 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_self_map_addr + 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +eb_space 0xc0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +g_cnxMgr 0xef8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +s_ni 0x158 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +g_misc_nvs 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +DefFreqCalTimer 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +bt_wifi_chan_data 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +s_wifi_nvs 0x500 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +gChmCxt 0xfc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +g_ic 0x2a8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +chip7_sleep_params 0xc4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_chan_target_power + 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +g_mesh_xon_cfg_qsize + 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_xon 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +set_most_tpw 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +SigInMacISR 0x190 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +freq_i2c_addr 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +mesh_conn_leave 0x2c8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +s_dp 0x21c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_fix_rate 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +g_wifi_menuconfig 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +gScanStruct 0x11c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +g_log_level 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +g_mesh_cfg_attemps 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +sta_con_timer 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +s_tx_cacheq 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +mesh_xmit_state_mbox + 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +phy_version_str 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +chip7_phy_init_ctrl + 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +g_mesh_current_parent + 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_log_mod 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +g_mesh_self_sta_addr + 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +phy_dcur_org 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +s_sd 0x4c4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +s_eapol_txdone_cb 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +g_mesh_ext_vote_state + 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_ext_cfg 0xd0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_pm 0x1d0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ApFreqCalTimer 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_mesh_ie 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +chip7_phy_api_ctrl 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +action_q 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +wpa_crypto_funcs 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +adc_ana_conf_org 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_dac_org 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +g_mesh_chain 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +if_ctrl 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + +Discarded input sections + + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .text 0x00000000 0x6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_line 0x00000000 0x50 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_line_str + 0x00000000 0xe7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_info 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_str 0x00000000 0xf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .literal 0x00000000 0x44 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .fini.literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .init.literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .text 0x00000000 0xa2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .bss 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .ctors 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .eh_frame 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .tm_clone_table + 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .fini 0x00000000 0x6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .init 0x00000000 0x6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .text 0x00000000 0x0 CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj + .data 0x00000000 0x0 CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj + .bss 0x00000000 0x0 CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj + .comment 0x00000000 0x30 CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj + .text 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.pthread_list_find_item + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_find + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.get_default_pthread_core + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_delete + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_lock_internal + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_set_cfg + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_cfg + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_default_config + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_create + 0x00000000 0x80 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_join + 0x00000000 0x54 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_detach + 0x00000000 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_exit + 0x00000000 0x48 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_task_func + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_cancel + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.sched_yield + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_self + 0x00000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_once + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_init + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_init_if_static + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_destroy + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_lock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_timedlock + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_trylock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_unlock + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutexattr_init + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutexattr_settype + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_init + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_destroy + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_list_find_item + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_handle_by_desc + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_desc_by_handle + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_find + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.get_default_pthread_core + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.mutexattr_check + 0x00000000 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_delete + 0x00000000 0x2b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_lock_internal + 0x00000000 0x60 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_set_cfg + 0x00000000 0x51 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_cfg + 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_default_config + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_create.str1.4 + 0x00000000 0xf7 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create + 0x00000000 0x1ad esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_join + 0x00000000 0x127 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x00000000 0x8a esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_exit.str1.4 + 0x00000000 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x00000000 0xb6 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_task_func + 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_cancel.str1.4 + 0x00000000 0x2b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_cancel + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_yield + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_self.str1.4 + 0x00000000 0x2d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_self + 0x00000000 0x5b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_equal + 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_once.str1.4 + 0x00000000 0x2a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_once + 0x00000000 0x54 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init + 0x00000000 0x72 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init_if_static + 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_mutex_destroy.str1.4 + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_destroy + 0x00000000 0x7a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_lock + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_timedlock + 0x00000000 0x102 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_trylock + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_mutex_unlock.str1.4 + 0x00000000 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_unlock + 0x00000000 0x6d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_init + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_destroy + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_gettype + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_settype + 0x00000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_init + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_destroy + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getstacksize + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setstacksize + 0x00000000 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getdetachstate + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setdetachstate + 0x00000000 0x25 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$0 + 0x00000000 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$1 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$3 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$5 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6 + 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$7 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$8 + 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_list + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data.pthread_lazy_init_lock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_condattr_init + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_destroy + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_getpshared + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_setpshared + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_getclock + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_setclock + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_init + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.s_check_and_init_if_static + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_signal + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_broadcast + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_timedwait + 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_wait + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_destroy + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.pthread_condattr_init.str1.4 + 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_init + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_destroy + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_getpshared + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_setpshared + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_getclock + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.pthread_condattr_setclock.str1.4 + 0x00000000 0x2f esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_setclock + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_init + 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.s_check_and_init_if_static + 0x00000000 0x49 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_signal + 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_broadcast + 0x00000000 0x3f esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_timedwait + 0x00000000 0x173 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_wait + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_destroy + 0x00000000 0x52 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x19 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_internal_local_storage_destructor_callback + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_internal_local_storage_destructor_callback + 0x00000000 0x2a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_rwlock_init + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_init_if_static + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.checkrw_lock + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_destroy + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_rdlock + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_tryrdlock + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_wrlock + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_trywrlock + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_unlock + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init + 0x00000000 0x78 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init_if_static + 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.checkrw_lock + 0x00000000 0x26 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_destroy + 0x00000000 0x64 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_rdlock + 0x00000000 0x56 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_tryrdlock + 0x00000000 0x3e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_wrlock + 0x00000000 0x5e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_trywrlock + 0x00000000 0x4e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.pthread_rwlock_unlock.str1.4 + 0x00000000 0x6e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_unlock + 0x00000000 0x83 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.__func__$0 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.sem_destroy + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_init + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_post + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_timedwait + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_trywait + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_wait + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_getvalue + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_destroy + 0x00000000 0x21 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_init + 0x00000000 0x4e esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_post + 0x00000000 0x39 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_timedwait + 0x00000000 0x100 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_trywait + 0x00000000 0x35 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_wait + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_getvalue + 0x00000000 0x34 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.__ubsan_maybe_debugbreak + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_default_handler + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch_v1 + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_add_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_sub_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_mul_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_negate_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_divrem_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_shift_out_of_bounds + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_out_of_bounds + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_missing_return + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_vla_bound_not_positive + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_load_invalid_value + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_arg + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_return + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_builtin_unreachable + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_pointer_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_invalid_builtin + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_maybe_debugbreak + 0x00000000 0x11 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__ubsan_default_handler.str1.4 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_default_handler + 0x00000000 0x32 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch_v1 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_add_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_sub_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_mul_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_negate_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_divrem_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_shift_out_of_bounds + 0x00000000 0x1a esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_out_of_bounds + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_missing_return + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_vla_bound_not_positive + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_load_invalid_value + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_arg + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_return + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_builtin_unreachable + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_pointer_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_invalid_builtin + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$1 + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$2 + 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$3 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4 + 0x00000000 0x1b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$5 + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$6 + 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$7 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$8 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$9 + 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$10 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$11 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$12 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$13 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$14 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$15 + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$16 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.esp_get_minimum_free_heap_size + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .literal.esp_get_idf_version + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_minimum_free_heap_size + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .rodata.esp_get_idf_version.str1.4 + 0x00000000 0x7 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_idf_version + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .iram1.0.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.1.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.0 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.1 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .data 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .literal.rtc_clk_select_rtc_slow_clk + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.rtc_clk_select_rtc_slow_clk + 0x00000000 0xe esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_startup_start_app_other_cores_default + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.__cxx_eh_arena_size_get + 0x00000000 0x7 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.esp_startup_start_app_other_cores_default + 0x00000000 0xf esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .literal.esp_brownout_disable + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .text.esp_brownout_disable + 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .literal.esp_register_freertos_idle_hook + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_register_freertos_tick_hook + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_idle_hook + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook_for_cpu + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_idle_hook + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_tick_hook + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook + 0x00000000 0x2e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook_for_cpu + 0x00000000 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook + 0x00000000 0x2e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .literal.efuse_hal_get_mac + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x00000000 0x17 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.1 0x00000000 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_get_rated_freq_mhz + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_set_timing + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x00000000 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x00000000 0xc esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_rated_freq_mhz + 0x00000000 0x2d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x00000000 0x70 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x3e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .rodata.efuse_hal_clear_program_registers.str1.4 + 0x00000000 0x9f esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0xe5 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x57 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x22 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.wdt_hal_deinit + 0x00000000 0x8 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text.wdt_hal_deinit + 0x00000000 0xca esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .literal.uart_hal_txfifo_rst + 0x00000000 0xc esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.uart_hal_tx_break + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.uart_hal_read_rxfifo + 0x00000000 0x2c esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_txfifo_rst + 0x00000000 0x2e esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x00000000 0x5e esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_read_rxfifo + 0x00000000 0xe9 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .literal.esp_log_set_vprintf + 0x00000000 0xc esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_level_get + 0x00000000 0x8 esp-idf/log/liblog.a(log.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_set_vprintf + 0x00000000 0x1b esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_level_get + 0x00000000 0x15 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_system_timestamp + 0x00000000 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .rodata.esp_log_system_timestamp.str1.4 + 0x00000000 0x15 esp-idf/log/liblog.a(log_freertos.c.obj) + .text.esp_log_system_timestamp + 0x00000000 0xdb esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.bufferLock$1 + 0x00000000 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.buffer$2 0x00000000 0x12 esp-idf/log/liblog.a(log_freertos.c.obj) + .literal.heap_caps_register_failed_alloc_callback + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_malloc_extmem_enable + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6.literal + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.8.literal + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.7.literal + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_total_size + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_minimum_free_size + 0x00000000 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_print_heap_info + 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_all + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_addr + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump_all + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_allocated_size + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.15.literal + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.16.literal + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_aligned_calloc + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_register_failed_alloc_callback + 0x00000000 0x15 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_malloc_extmem_enable + 0x00000000 0xa esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6 0x00000000 0x8a esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.8 0x00000000 0x8a esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.7 0x00000000 0x8a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_total_size + 0x00000000 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_minimum_free_size + 0x00000000 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_print_heap_info.str1.4 + 0x00000000 0xf4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_print_heap_info + 0x00000000 0x7f esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity + 0x00000000 0x53 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_all + 0x00000000 0x13 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_addr + 0x00000000 0x23 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump + 0x00000000 0x39 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump_all + 0x00000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_get_allocated_size.str1.4 + 0x00000000 0x5 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_allocated_size + 0x00000000 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.15 0x00000000 0xa0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.16 0x00000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_aligned_calloc + 0x00000000 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$0 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$1 + 0x00000000 0x1d esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$5 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$6 + 0x00000000 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$7 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_add_region_with_caps + 0x00000000 0x50 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.heap_caps_add_region + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_check_add_region_allowed + 0x00000000 0x5d esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region_with_caps + 0x00000000 0x124 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region + 0x00000000 0x61 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data.registered_heaps_write_lock$0 + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.multi_heap_dump_tlsf + 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_first_block + 0x00000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_next_block + 0x00000000 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl_offs + 0x00000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_offs + 0x00000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl + 0x00000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_check + 0x00000000 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_dump + 0x00000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump_tlsf.str1.4 + 0x00000000 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump_tlsf + 0x00000000 0x1e esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_address_impl + 0x00000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_first_block + 0x00000000 0x25 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_get_next_block.str1.4 + 0x00000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_next_block + 0x00000000 0x52 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_is_free + 0x00000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl_offs + 0x00000000 0x6e esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_offs + 0x00000000 0x15 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl + 0x00000000 0x15 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_check + 0x00000000 0x4e esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump.str1.4 + 0x00000000 0x1c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump + 0x00000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_minimum_free_size_impl + 0x00000000 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$6 + 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$5 + 0x00000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$3 + 0x00000000 0xb esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$2 + 0x00000000 0x1a esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.integrity_walker + 0x00000000 0x8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_check + 0x00000000 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_check_pool + 0x00000000 0x8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_remove_pool + 0x00000000 0x44 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_memalign_offs + 0x00000000 0xd8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_memalign + 0x00000000 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.integrity_walker + 0x00000000 0x4f esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check + 0x00000000 0x108 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check_pool + 0x00000000 0x1a esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_align_size + 0x00000000 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_block_size_min + 0x00000000 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_remove_pool + 0x00000000 0x13e esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_destroy + 0x00000000 0x5 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_memalign_offs.str1.4 + 0x00000000 0x6b esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_memalign_offs + 0x00000000 0x6aa esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_memalign + 0x00000000 0x15 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$7 + 0x00000000 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$13 + 0x00000000 0x9 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$16 + 0x00000000 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$17 + 0x00000000 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .rodata.soc_memory_type_count + 0x00000000 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .literal.esp_cpu_reset + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .literal.esp_cpu_set_watchpoint + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_reset + 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_breakpoint + 0x00000000 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_set_watchpoint + 0x00000000 0x89 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_watchpoint + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$1 + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .iram1.3.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_rtc_time + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_lock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_unlock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.3 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_rtc_time + 0x00000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_lock + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_unlock + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_intr_mark_shared + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_reserve + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.1.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.6.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.7.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_dump + 0x00000000 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_mark_shared + 0x00000000 0x61 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_reserve + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.1 0x00000000 0x91 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_intno + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.6 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.7 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.esp_intr_dump.str1.4 + 0x00000000 0x123 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_dump + 0x00000000 0x1ce esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.periph_rcc_release_enter + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_rcc_release_exit + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_rcc_release_enter + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_rcc_release_exit + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.rtc_isr_deregister + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x00000000 0x6d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.esp_sleep_config_gpio_isolate + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_sleep_enable_gpio_switch + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.0.literal + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_config_gpio_isolate.str1.4 + 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_config_gpio_isolate + 0x00000000 0x83 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_enable_gpio_switch.str1.4 + 0x00000000 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_enable_gpio_switch + 0x00000000 0x85 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.str1.4 + 0x00000000 0x1a5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.0 0x00000000 0x1f4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$1 + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$2 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.s_register_config_driver + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .literal.spi_timing_get_flash_timing_param + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.s_register_config_driver + 0x00000000 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_flash_tuning + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_psram_tuning + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_enter_low_speed_mode + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_enter_high_speed_mode + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.spi_timing_is_tuned + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.spi_timing_get_flash_timing_param + 0x00000000 0x9 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_set_pin_drive_strength + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .bss.s_tuning_cfg_drv + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_src_get + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_xtal_freq_update + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apb_freq_get + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_enable + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_disable + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x00000000 0x202 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_fast_src_get + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_xtal_freq_update + 0x00000000 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_vddsdio_get_config + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x00000000 0xef esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x00000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_clk_cal_ratio + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_time_us_to_slowclk + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_us_to_slowclk.str1.4 + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_us_to_slowclk + 0x00000000 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$0 + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$3 + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .literal.sar_periph_ctrl_power_enable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_disable + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_enable + 0x00000000 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_disable + 0x00000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .iram1.1.literal + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.5.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.6.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_enable + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_disable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.1 0x00000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.5 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.6 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_enable + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.regi2c_saradc_disable.str1.4 + 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_disable + 0x00000000 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss.s_i2c_saradc_enable_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.str1.4 + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .dram1.0 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.xQueueGenericGetStaticBuffers + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueGetMutexHolderFromISR + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateCountingSemaphoreStatic + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeek + 0x00000000 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeekFromISR + 0x00000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueSpacesAvailable + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueMessagesWaitingFromISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueEmptyFromISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateSet + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueAddToSet + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueRemoveFromSet + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSet + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSetFromISR + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericGetStaticBuffers.str1.4 + 0x00000000 0xf esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericGetStaticBuffers + 0x00000000 0x44 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGetMutexHolderFromISR + 0x00000000 0x25 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphoreStatic + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeek + 0x00000000 0x120 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueuePeekFromISR.str1.4 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeekFromISR + 0x00000000 0x90 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueSpacesAvailable + 0x00000000 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaitingFromISR + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueGetQueueNumber + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.vQueueSetQueueNumber + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.ucQueueGetQueueType + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueEmptyFromISR + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateSet + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueAddToSet + 0x00000000 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueRemoveFromSet + 0x00000000 0x39 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSet + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSetFromISR + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$3 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$4 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$6 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$8 + 0x00000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$16 + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$19 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$22 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.prvTaskIsTaskSuspended + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvWriteNameToBuffer + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxGetTaskListByIndex + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.eTaskGetState + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskResume + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskResumeFromISR + 0x00000000 0x44 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskEndScheduler + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetNumberOfTasks + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetHandle + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskAbortDelay + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetTimeOutState + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskMissedYield + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskPriorityGetFromISR + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetStaticBuffers + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointer + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskGetInfo + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvListTasksWithinSingleList + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetSystemState + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark2 + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskDelayUntil + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCatchUpTicks + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskList + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskGetRunTimeStats + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyFromISR + 0x00000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyStateClear + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskGenericNotifyValueClear + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetIdleTaskHandle + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskGetIdleRunTimeCounterForCore + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskGetIdleRunTimeCounter + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskGetIdleRunTimePercentForCore + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskGetIdleRunTimePercent + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetStackStart + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetNext + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetSnapshotAll + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pvTaskGetCurrentTCBForCore + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvSearchForNameWithinSingleList + 0x00000000 0x9c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskCheckFreeStackSpace + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskIsTaskSuspended.str1.4 + 0x00000000 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskIsTaskSuspended + 0x00000000 0x59 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvWriteNameToBuffer + 0x00000000 0x2f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxGetTaskListByIndex + 0x00000000 0x42 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.eTaskGetState + 0x00000000 0xd2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskResume.str1.4 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskResume + 0x00000000 0xe3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskResumeFromISR + 0x00000000 0xf7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskEndScheduler + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetNumberOfTasks + 0x00000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetHandle.str1.4 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetHandle + 0x00000000 0xa9 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskAbortDelay + 0x00000000 0xee esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetTimeOutState + 0x00000000 0x43 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskMissedYield + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetTaskNumber + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetTaskNumber + 0x00000000 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGetFromISR + 0x00000000 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetStaticBuffers.str1.4 + 0x00000000 0x3d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetStaticBuffers + 0x00000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSetThreadLocalStoragePointer.str1.4 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointer + 0x00000000 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskGetInfo + 0x00000000 0x97 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvListTasksWithinSingleList + 0x00000000 0x88 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSystemState + 0x00000000 0xb3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark2 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskDelayUntil.str1.4 + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskDelayUntil + 0x00000000 0xb3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCatchUpTicks + 0x00000000 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskList.str1.4 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskList + 0x00000000 0xbb esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskGetRunTimeStats.str1.4 + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskGetRunTimeStats + 0x00000000 0xaa esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyFromISR + 0x00000000 0x24e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGenericNotifyStateClear.str1.4 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyStateClear + 0x00000000 0x5e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGenericNotifyValueClear + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTimerCreateTimerTask + 0x00000000 0x7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGetIdleRunTimeCounterForCore + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGetIdleRunTimeCounter + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGetIdleRunTimePercentForCore + 0x00000000 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGetIdleRunTimePercent + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetNext + 0x00000000 0x78 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x00000000 0x3d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pvTaskGetCurrentTCBForCore + 0x00000000 0x2b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$2 + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$3 + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$10 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$12 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$18 + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$20 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$28 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$29 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$30 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$31 + 0x00000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$35 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$36 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$37 + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$41 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$43 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.non_ready_task_lists + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vPortEndScheduler + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortAssertIfInISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.xPortEnterCriticalTimeoutCompliance + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortExitCriticalCompliance + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortSetStackWatchpoint + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortEndScheduler + 0x00000000 0x9 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortAssertIfInISR.str1.4 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortAssertIfInISR + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.xPortEnterCriticalTimeoutCompliance.str1.4 + 0x00000000 0x33 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortEnterCriticalTimeoutCompliance + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortExitCriticalCompliance + 0x00000000 0x27 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortGetTickRateHz + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortSetStackWatchpoint + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$2 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .literal.xt_clock_freq + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text.xt_clock_freq + 0x00000000 0xd esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .literal.xPortGetFreeHeapSize + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .literal.xPortGetMinimumEverFreeHeapSize + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .literal.xPortCheckValidListMem + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortGetFreeHeapSize + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortGetMinimumEverFreeHeapSize + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortCheckValidListMem + 0x00000000 0x49 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .literal.__assert + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(assert.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .text.__assert + 0x00000000 0x11 esp-idf/newlib/libnewlib.a(assert.c.obj) + .literal.memalign + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.aligned_alloc + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.posix_memalign + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.mallinfo + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.memalign + 0x00000000 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.aligned_alloc + 0x00000000 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.posix_memalign + 0x00000000 0x2a esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_trim + 0x00000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_usable_size + 0x00000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_stats + 0x00000000 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallopt 0x00000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallinfo + 0x00000000 0x1f esp-idf/newlib/libnewlib.a(heap.c.obj) + .iram1.12.literal + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.14.literal + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.17.literal + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.19.literal + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.20.literal + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.21.literal + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.12 0x00000000 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.14 0x00000000 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.17 0x00000000 0x17 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.19 0x00000000 0x19 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.20 0x00000000 0x19 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.21 0x00000000 0x17 esp-idf/newlib/libnewlib.a(locks.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_sigmask + 0x00000000 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.sigfillset + 0x00000000 0xd esp-idf/newlib/libnewlib.a(pthread.c.obj) + .literal.esp_reent_cleanup + 0x00000000 0x10 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text.esp_reent_cleanup + 0x00000000 0x75 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .literal._write_r_console + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._read_r_console + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._fstat_r_console + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._fsync_console + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.system + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._write_r_console + 0x00000000 0x2f esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._read_r_console + 0x00000000 0x36 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._fstat_r_console + 0x00000000 0x26 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._fsync_console + 0x00000000 0x23 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.system 0x00000000 0x11 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.adjtime + 0x00000000 0x3c esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_settime + 0x00000000 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_gettime + 0x00000000 0x1c esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_getres + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.adjtime 0x00000000 0xf5 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_settime + 0x00000000 0x52 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_gettime + 0x00000000 0x91 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_getres + 0x00000000 0x27 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.esp_time_impl_get_time + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .text.esp_time_impl_get_time + 0x00000000 0xf esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .literal._ZL20signal_waiting_tasksv + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL18wait_for_guard_objP7guard_t + 0x00000000 0x34 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL19static_init_preparev + 0x00000000 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_acquire + 0x00000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_release + 0x00000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_abort + 0x00000000 0x38 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL20signal_waiting_tasksv + 0x00000000 0x26 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZL18wait_for_guard_objP7guard_t.str1.4 + 0x00000000 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL18wait_for_guard_objP7guard_t + 0x00000000 0xbd esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL19static_init_preparev + 0x00000000 0x4a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_acquire.str1.4 + 0x00000000 0x2e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_acquire + 0x00000000 0xa6 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_release.str1.4 + 0x00000000 0x6f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_release + 0x00000000 0xa2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_abort.str1.4 + 0x00000000 0xa7 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_abort + 0x00000000 0xbe esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL31s_static_init_max_waiting_count + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL27s_static_init_waiting_count + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data._ZL15s_init_spinlock + 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL22s_static_init_wait_sem + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL19s_static_init_mutex + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.print_timer_info + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.0.literal + 0x00000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_deinit + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_dump + 0x00000000 0x40 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.11.literal + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.12.literal + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.13.literal + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.14.literal + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.15.literal + 0x00000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.print_timer_info.str1.4 + 0x00000000 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.print_timer_info + 0x00000000 0x33 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.0 0x00000000 0xed esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x00000000 0x3d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.esp_timer_dump.str1.4 + 0x00000000 0x3d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_dump + 0x00000000 0xcd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.11 0x00000000 0x3f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.12 0x00000000 0x50 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.13 0x00000000 0x42 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.14 0x00000000 0x51 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.15 0x00000000 0x16 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .iram1.1 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .literal.esp_timer_impl_lock + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_unlock + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0.literal + 0x00000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_lock + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_unlock + 0x00000000 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0 0x00000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_set + 0x00000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_advance + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_deinit + 0x00000000 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x00000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_set + 0x00000000 0x3e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_advance + 0x00000000 0x1e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_deinit + 0x00000000 0x93 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x00000000 0x53 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.0.literal + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.1.literal + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.phy_set_pwdet_power + 0x00000000 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.phy_set_tsens_power + 0x00000000 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.phy_get_tsens_value + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.0 0x00000000 0xb esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.1 0x00000000 0xb esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_set_pwdet_power + 0x00000000 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_set_tsens_power + 0x00000000 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_get_tsens_value + 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss.s_wifi_tsens_xpd_flag + 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss.s_wifi_pwdet_xpd_flag + 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.esp_vfs_register_with_id + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_with_id + 0x00000000 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd_with_local_fd + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_fd + 0x00000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_set_readonly_flag + 0x00000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pread + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pwrite + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_ioctl + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_fsync + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_utime + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_opendir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_readdir + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_readdir_r + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_telldir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_seekdir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_rewinddir + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_closedir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_mkdir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_rmdir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_access + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_truncate + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_ftruncate + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetattr + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsetattr + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcdrain + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflush + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflow + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetsid + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsendbreak + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_with_id + 0x00000000 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_with_id + 0x00000000 0x79 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister + 0x00000000 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_with_local_fd + 0x00000000 0x9d esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd + 0x00000000 0x15 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_fd + 0x00000000 0x85 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_set_readonly_flag + 0x00000000 0x51 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pread + 0x00000000 0x7e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pwrite + 0x00000000 0x7e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ioctl + 0x00000000 0x99 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_fsync + 0x00000000 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_utime + 0x00000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_opendir + 0x00000000 0x5c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir + 0x00000000 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir_r + 0x00000000 0x56 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_telldir + 0x00000000 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_seekdir + 0x00000000 0x4e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rewinddir + 0x00000000 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_closedir + 0x00000000 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_mkdir + 0x00000000 0x67 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rmdir + 0x00000000 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_access + 0x00000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_truncate + 0x00000000 0x67 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ftruncate + 0x00000000 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetattr + 0x00000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsetattr + 0x00000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcdrain 0x00000000 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflush 0x00000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflow 0x00000000 0x75 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetsid + 0x00000000 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsendbreak + 0x00000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .literal.uart_rx_char_via_driver + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.uart_tx_char_via_driver + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_register + 0x00000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_port_set_rx_line_endings + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_port_set_tx_line_endings + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_set_rx_line_endings + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_set_tx_line_endings + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_use_nonblocking + 0x00000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_use_driver + 0x00000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_rx_char_via_driver + 0x00000000 0x31 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_tx_char_via_driver + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.esp_vfs_dev_uart_register.str1.4 + 0x00000000 0x57 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_register + 0x00000000 0x27 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_port_set_rx_line_endings + 0x00000000 0x23 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_port_set_tx_line_endings + 0x00000000 0x23 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_rx_line_endings + 0x00000000 0x19 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_tx_line_endings + 0x00000000 0x19 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_nonblocking + 0x00000000 0x3c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_driver + 0x00000000 0x3c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.nvs_sec_provider_deregister + 0x00000000 0x8 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .data 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .bss 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.nvs_sec_provider_deregister + 0x00000000 0x22 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(station_example_main.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss.dacSettings + 0x00000000 0x1f esp-idf/main/libmain.a(station_example_main.c.obj) + .literal.get_handler + 0x00000000 0xc esp-idf/main/libmain.a(http_control.c.obj) + .literal.post_handler + 0x00000000 0x14 esp-idf/main/libmain.a(http_control.c.obj) + .literal.stop_webserver + 0x00000000 0x4 esp-idf/main/libmain.a(http_control.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(http_control.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(http_control.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(http_control.c.obj) + .rodata.get_handler.str1.4 + 0x00000000 0x11 esp-idf/main/libmain.a(http_control.c.obj) + .text.get_handler + 0x00000000 0x20 esp-idf/main/libmain.a(http_control.c.obj) + .rodata.post_handler.str1.4 + 0x00000000 0x12 esp-idf/main/libmain.a(http_control.c.obj) + .text.post_handler + 0x00000000 0x51 esp-idf/main/libmain.a(http_control.c.obj) + .text.stop_webserver + 0x00000000 0xf esp-idf/main/libmain.a(http_control.c.obj) + .data.uri_post + 0x00000000 0x10 esp-idf/main/libmain.a(http_control.c.obj) + .data.uri_get 0x00000000 0x10 esp-idf/main/libmain.a(http_control.c.obj) + .literal.freeFilter + 0x00000000 0x18 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .text.freeFilter + 0x00000000 0x36 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(button.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(button.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(button.c.obj) + .data 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .literal.xt_set_exception_handler + 0x00000000 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .data 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text.xt_set_exception_handler + 0x00000000 0x46 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .UserEnter.text + 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .literal.esp_efuse_read_field_bit + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_read_field_bit.str1.4 + 0x00000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x00000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0x7f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.4 + 0x00000000 0x59 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x00000000 0xa3 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x00000000 0x57 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x4b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x00000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.4 + 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.4 + 0x00000000 0x76 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x00000000 0x61 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.4 + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x00000000 0x79 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$1 + 0x00000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_efuse_lock + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.fill_reg + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.set_cnt_in_reg + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.write_reg + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_pending + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.fill_reg + 0x00000000 0x9d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.set_cnt_in_reg + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x87 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_reset.str1.4 + 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x73 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x00000000 0x5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.4 + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.4 + 0x00000000 0x12a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x60 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 + 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.4 + 0x00000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x00000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_get_read_register_address.str1.4 + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.4 + 0x00000000 0xdd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x00000000 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$2 + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3 + 0x00000000 0x25 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$4 + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$5 + 0x00000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$6 + 0x00000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_set_write_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_block_is_empty + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.4 + 0x00000000 0xa3 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x7 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x29 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0xa5 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.4 + 0x00000000 0xa1 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0xf7 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_SDIO_HOST + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_RATED + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE_4BIT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_SDIO_HOST + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_RATED + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE_4BIT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.apply_repeat_encoding + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_set_timing + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.read_r_data + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_34_encoding + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x00000000 0xbc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.apply_repeat_encoding + 0x00000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_set_timing + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.read_r_data + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x00000000 0xb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_34_encoding + 0x00000000 0x87 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip.str1.4 + 0x00000000 0x2a7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x00000000 0x25e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 + 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x113 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.start_write_addr + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .iram1.17.literal + 0x00000000 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x28 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_reserve_block_with_caps + 0x00000000 0x4c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x74 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.5.literal + 0x00000000 0x5c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_paddr_to_vaddr + 0x00000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.17 0x00000000 0x23 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0xa6 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_reserve_block_with_caps + 0x00000000 0xe2 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_dump_mapped_blocks.str1.4 + 0x00000000 0x152 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x12a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.5 0x00000000 0x171 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_paddr_to_vaddr.str1.4 + 0x00000000 0x33 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_paddr_to_vaddr + 0x00000000 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.15 0x00000000 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.14 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.13 0x00000000 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.12 0x00000000 0x1b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.11 0x00000000 0x1e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.10 0x00000000 0x20 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.9 0x00000000 0x19 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.8 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.7 0x00000000 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.6 0x00000000 0x1f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .literal.cache_register_writeback + 0x00000000 0x4 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text.cache_register_writeback + 0x00000000 0xc esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .literal.gpio_ll_iomux_out + 0x00000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_set_drive_capability + 0x00000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_get_drive_capability + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_input_enable + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_input_enable + 0x00000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_input_disable + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_input_disable + 0x00000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_output_enable + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_output_enable + 0x00000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_output_disable + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_output_disable + 0x00000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_pulldown_en + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_en + 0x00000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_pullup_en + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pullup_en + 0x00000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_pulldown_dis + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_dis + 0x00000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_pullup_dis + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pullup_dis + 0x00000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_sel_en + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_sleep_sel_dis + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_ll_get_io_config + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_level + 0x00000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_level + 0x00000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_pull_mode + 0x00000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_reset_pin + 0x00000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_remove + 0x00000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_enable + 0x00000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_disable + 0x00000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_drive_capability + 0x00000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_drive_capability + 0x00000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_en + 0x00000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_dis + 0x00000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_en + 0x00000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_dis + 0x00000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_in + 0x00000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_out + 0x00000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_set_direction + 0x00000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_set_pull_mode + 0x00000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_sel_en + 0x00000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_sel_dis + 0x00000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_dump_io_configuration + 0x00000000 0xa8 esp-idf/driver/libdriver.a(gpio.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_iomux_out + 0x00000000 0x5f esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_set_drive_capability.str1.4 + 0x00000000 0xb8 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_set_drive_capability + 0x00000000 0x4c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_get_drive_capability.str1.4 + 0x00000000 0xba esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_get_drive_capability + 0x00000000 0x3a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_input_enable + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_input_enable + 0x00000000 0x75 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_sleep_input_disable.str1.4 + 0x00000000 0xbc esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_input_disable + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_input_disable + 0x00000000 0x74 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_output_enable + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_output_enable + 0x00000000 0x71 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_output_disable + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_output_disable + 0x00000000 0x75 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_pulldown_en + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_en + 0x00000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_pullup_en + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_en + 0x00000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_pulldown_dis + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_dis + 0x00000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_pullup_dis + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_dis + 0x00000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_sel_en + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_sleep_sel_dis + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_get_io_config.str1.4 + 0x00000000 0xa6 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_get_io_config + 0x00000000 0xbb esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_level + 0x00000000 0x106 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_level + 0x00000000 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_pull_mode.str1.4 + 0x00000000 0x5e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x00000000 0x119 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_reset_pin.str1.4 + 0x00000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_reset_pin + 0x00000000 0x77 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_remove + 0x00000000 0xce esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_wakeup_enable.str1.4 + 0x00000000 0x5d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_enable + 0x00000000 0xf9 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x00000000 0xb2 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_drive_capability.str1.4 + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_drive_capability + 0x00000000 0xd2 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_get_drive_capability.str1.4 + 0x00000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_drive_capability + 0x00000000 0xd2 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_hold_en.str1.4 + 0x00000000 0x2f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_en + 0x00000000 0xb9 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_dis + 0x00000000 0xbd esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_en + 0x00000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_dis + 0x00000000 0x2c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_in + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_out + 0x00000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_set_direction + 0x00000000 0xe5 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_set_pull_mode + 0x00000000 0x11d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_sel_en + 0x00000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_sel_dis + 0x00000000 0x89 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_dump_io_configuration.str1.4 + 0x00000000 0x1ec esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_dump_io_configuration + 0x00000000 0x21d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$0 + 0x00000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$2 + 0x00000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$4 + 0x00000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6 + 0x00000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$8 + 0x00000000 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$10 + 0x00000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$12 + 0x00000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$15 + 0x00000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$17 + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$19 + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$20 + 0x00000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$21 + 0x00000000 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$22 + 0x00000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$24 + 0x00000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$25 + 0x00000000 0xd esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$26 + 0x00000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$27 + 0x00000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$28 + 0x00000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$29 + 0x00000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$30 + 0x00000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$31 + 0x00000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$33 + 0x00000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$36 + 0x00000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$48 + 0x00000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$49 + 0x00000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.rtcio_ll_set_drive_capability + 0x00000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_get_drive_capability + 0x00000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_force_hold_enable + 0x00000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtcio_ll_force_hold_disable + 0x00000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_init + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_level + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_level + 0x00000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_drive_capability + 0x00000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x00000000 0x3c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_iomux_func_sel + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_en + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_en_all + 0x00000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_dis_all + 0x00000000 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_enable + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_disable + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_set_drive_capability + 0x00000000 0x6f esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtcio_ll_get_drive_capability.str1.4 + 0x00000000 0xba esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_get_drive_capability + 0x00000000 0x54 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtcio_ll_force_hold_enable.str1.4 + 0x00000000 0xac esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_force_hold_enable + 0x00000000 0x5e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtcio_ll_force_hold_disable.str1.4 + 0x00000000 0xac esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_force_hold_disable + 0x00000000 0x63 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x00000000 0x5d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x00000000 0x98 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x00000000 0x52 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.4 + 0x00000000 0x6d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x00000000 0xde esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.4 + 0x00000000 0x39 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x00000000 0xca esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x00000000 0x5e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x00000000 0x5e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_iomux_func_sel + 0x00000000 0x5e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x00000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x00000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x00000000 0x2e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x00000000 0x2e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x00000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x00000000 0x92 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x00000000 0x7e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$3 + 0x00000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x12 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$5 + 0x00000000 0x1b esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$18 + 0x00000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$19 + 0x00000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$20 + 0x00000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$21 + 0x00000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$22 + 0x00000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$27 + 0x00000000 0xe esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal._i2s_adc_mode_recover + 0x00000000 0x20 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .literal.i2s_set_adc_mode + 0x00000000 0x20 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .literal.i2s_adc_enable + 0x00000000 0x40 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .literal.i2s_adc_disable + 0x00000000 0x34 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .literal.i2s_get_clk + 0x00000000 0x1c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .literal.i2s_set_sample_rates + 0x00000000 0x1c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .literal.i2s_set_pdm_rx_down_sample + 0x00000000 0x3c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .literal.i2s_set_pdm_tx_up_sample + 0x00000000 0x3c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .literal.i2s_write_expand + 0x00000000 0x84 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .literal.i2s_read + 0x00000000 0x34 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata._i2s_adc_mode_recover.str1.4 + 0x00000000 0x4a esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text._i2s_adc_mode_recover + 0x00000000 0x46 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_set_adc_mode.str1.4 + 0x00000000 0x4e esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_set_adc_mode + 0x00000000 0x48 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_adc_enable.str1.4 + 0x00000000 0x71 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_adc_enable + 0x00000000 0xb8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_adc_disable + 0x00000000 0xb2 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_get_clk + 0x00000000 0x45 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_set_sample_rates + 0x00000000 0x4c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_set_pdm_rx_down_sample.str1.4 + 0x00000000 0x75 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_set_pdm_rx_down_sample + 0x00000000 0xd0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_set_pdm_tx_up_sample + 0x00000000 0x11c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_write_expand.str1.4 + 0x00000000 0x1db esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_write_expand + 0x00000000 0x2b8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_read.str1.4 + 0x00000000 0x37 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_read + 0x00000000 0x11c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x9 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x11 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$15 + 0x00000000 0x19 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x1b esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0x15 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$27 + 0x00000000 0xc esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$28 + 0x00000000 0x10 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$29 + 0x00000000 0x16 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$30 + 0x00000000 0xf esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$31 + 0x00000000 0x11 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .data._i2s_adc_channel + 0x00000000 0x4 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .data._i2s_adc_unit + 0x00000000 0x4 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .literal.uart_pattern_dequeue + 0x00000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_enqueue + 0x00000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_link_free + 0x00000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_try_set_iomux_pin + 0x00000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_ll_enable_bus_clock + 0x00000000 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_module_disable + 0x00000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_ll_reset_register + 0x00000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_module_enable + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_tx_write_fifo + 0x00000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_check_buf_full + 0x00000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_rx_intr_handler_default + 0x00000000 0x114 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_free_driver_obj + 0x00000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_alloc_driver_obj + 0x00000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_sclk_freq + 0x00000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_line_inverse + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_sw_flow_ctrl + 0x00000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_hw_flow_ctrl + 0x00000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_hw_flow_ctrl + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_clear_intr_status + 0x00000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_intr_mask + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_intr_mask + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_pop_pos + 0x00000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_get_pos + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_queue_reset + 0x00000000 0x38 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_pattern_det_baud_intr + 0x00000000 0x54 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_pattern_det_intr + 0x00000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_rx_intr + 0x00000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_rx_intr + 0x00000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_tx_intr + 0x00000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_tx_intr + 0x00000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_tx_all + 0x00000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_pin + 0x00000000 0xb4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rts + 0x00000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_dtr + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_tx_idle_num + 0x00000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_param_config + 0x00000000 0x94 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_intr_config + 0x00000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_tx_chars + 0x00000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_write_bytes + 0x00000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_write_bytes_with_break + 0x00000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_read_bytes + 0x00000000 0x5c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_tx_buffer_free_size + 0x00000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_driver_delete + 0x00000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_driver_install + 0x00000000 0xac esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_mode + 0x00000000 0x48 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rx_full_threshold + 0x00000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_tx_empty_threshold + 0x00000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rx_timeout + 0x00000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_collision_flag + 0x00000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_wakeup_threshold + 0x00000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_wakeup_threshold + 0x00000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_wait_tx_idle_polling + 0x00000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_loop_back + 0x00000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_always_rx_timeout + 0x00000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_dequeue + 0x00000000 0x36 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_find_pattern_from_last + 0x00000000 0x26 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_pattern_enqueue.str1.4 + 0x00000000 0x51 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_enqueue + 0x00000000 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_link_free + 0x00000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_try_set_iomux_pin + 0x00000000 0x7e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_ll_enable_bus_clock + 0x00000000 0x54 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_module_disable + 0x00000000 0x5b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_ll_reset_register + 0x00000000 0xa0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_module_enable + 0x00000000 0x7b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_tx_write_fifo + 0x00000000 0xa8 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_check_buf_full + 0x00000000 0x70 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_rx_intr_handler_default + 0x00000000 0x8f0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_free_driver_obj + 0x00000000 0x72 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_alloc_driver_obj + 0x00000000 0xea esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_sclk_freq + 0x00000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_line_inverse + 0x00000000 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_sw_flow_ctrl.str1.4 + 0x00000000 0x76 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_sw_flow_ctrl + 0x00000000 0xca esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_hw_flow_ctrl.str1.4 + 0x00000000 0x6f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_hw_flow_ctrl + 0x00000000 0xb0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_hw_flow_ctrl + 0x00000000 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_clear_intr_status + 0x00000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_intr_mask + 0x00000000 0x71 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_intr_mask + 0x00000000 0x70 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_pop_pos + 0x00000000 0x82 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_get_pos + 0x00000000 0x78 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_queue_reset + 0x00000000 0xad esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_pattern_det_baud_intr.str1.4 + 0x00000000 0x38 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_pattern_det_baud_intr + 0x00000000 0x140 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_pattern_det_intr + 0x00000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_rx_intr + 0x00000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_rx_intr + 0x00000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_tx_intr + 0x00000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_tx_intr.str1.4 + 0x00000000 0x3b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_tx_intr + 0x00000000 0x99 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_all + 0x00000000 0x181 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_pin.str1.4 + 0x00000000 0x185 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_pin + 0x00000000 0x38a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rts.str1.4 + 0x00000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rts + 0x00000000 0x9c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_dtr + 0x00000000 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_idle_num.str1.4 + 0x00000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_idle_num + 0x00000000 0x86 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_param_config.str1.4 + 0x00000000 0x2b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_param_config + 0x00000000 0x213 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_intr_config + 0x00000000 0xed esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_tx_chars.str1.4 + 0x00000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_chars + 0x00000000 0xc0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes + 0x00000000 0x9a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_write_bytes_with_break.str1.4 + 0x00000000 0x90 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes_with_break + 0x00000000 0xf0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_read_bytes + 0x00000000 0x158 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_tx_buffer_free_size.str1.4 + 0x00000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_tx_buffer_free_size + 0x00000000 0x98 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_delete.str1.4 + 0x00000000 0x25 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_delete + 0x00000000 0x92 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_install.str1.4 + 0x00000000 0x21f esp-idf/driver/libdriver.a(uart.c.obj) + .rodata 0x00000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_install + 0x00000000 0x262 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_mode.str1.4 + 0x00000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_mode + 0x00000000 0x11e esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_full_threshold.str1.4 + 0x00000000 0x7f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_full_threshold + 0x00000000 0xc6 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_empty_threshold.str1.4 + 0x00000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_empty_threshold + 0x00000000 0xc6 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_timeout.str1.4 + 0x00000000 0x3e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_timeout + 0x00000000 0x96 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_collision_flag.str1.4 + 0x00000000 0x63 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_collision_flag + 0x00000000 0xd6 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_wakeup_threshold.str1.4 + 0x00000000 0x3f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_wakeup_threshold + 0x00000000 0x8e esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_wakeup_threshold.str1.4 + 0x00000000 0x31 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_wakeup_threshold + 0x00000000 0x6a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_wait_tx_idle_polling + 0x00000000 0xb9 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_loop_back + 0x00000000 0x42 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_always_rx_timeout + 0x00000000 0x57 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$49 + 0x00000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$48 + 0x00000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$47 + 0x00000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$46 + 0x00000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$45 + 0x00000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$44 + 0x00000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$43 + 0x00000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$42 + 0x00000000 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$41 + 0x00000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$40 + 0x00000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .bss.pat_flg$39 + 0x00000000 0x1 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$38 + 0x00000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$36 + 0x00000000 0x1d esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$33 + 0x00000000 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$32 + 0x00000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$31 + 0x00000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$30 + 0x00000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$27 + 0x00000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$26 + 0x00000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$25 + 0x00000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$24 + 0x00000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__func__$22 + 0x00000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$20 + 0x00000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$19 + 0x00000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0x22 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0x19 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$15 + 0x00000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8 + 0x00000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.adc_ll_digi_set_fsm_time + 0x00000000 0xc esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .literal.adc_ll_digi_prepare_pattern_table + 0x00000000 0x8 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .literal.adc_digi_controller_reg_set + 0x00000000 0x4c esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .literal.adc_i2s_mode_init + 0x00000000 0x54 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .text.adc_ll_digi_set_fsm_time + 0x00000000 0x8c esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .text.adc_ll_digi_prepare_pattern_table + 0x00000000 0x73 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .text.adc_digi_controller_reg_set + 0x00000000 0x2d6 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .rodata.adc_i2s_mode_init.str1.4 + 0x00000000 0x3a esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .text.adc_i2s_mode_init + 0x00000000 0x199 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x12 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .literal.adc_oneshot_ll_start + 0x00000000 0xc esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_ll_amp_disable + 0x00000000 0x18 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_ll_vref_output + 0x00000000 0x20 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_rtc_chan_init + 0x00000000 0x14 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_hal_onetime_start + 0x00000000 0x4 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_oneshot_ll_set_output_bits + 0x00000000 0x18 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_oneshot_ll_get_event + 0x00000000 0x14 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_hal_convert + 0x00000000 0x10 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc1_pad_get_io_num + 0x00000000 0x18 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc2_pad_get_io_num + 0x00000000 0x18 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_set_clk_div + 0x00000000 0x8 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_common_gpio_init + 0x00000000 0x58 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_set_data_inv + 0x00000000 0x20 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_set_data_width + 0x00000000 0x30 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc1_config_channel_atten + 0x00000000 0x38 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc1_config_width + 0x00000000 0x24 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc1_dma_mode_acquire + 0x00000000 0x2c esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc1_rtc_mode_acquire + 0x00000000 0x30 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc1_lock_release + 0x00000000 0x20 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc1_get_raw + 0x00000000 0x50 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc1_get_voltage + 0x00000000 0x4 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc1_ulp_enable + 0x00000000 0x28 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc2_config_channel_atten + 0x00000000 0x40 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc2_get_raw + 0x00000000 0x74 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .literal.adc_vref_to_gpio + 0x00000000 0x1c esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_oneshot_ll_start + 0x00000000 0x71 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_ll_amp_disable + 0x00000000 0xc5 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_ll_vref_output + 0x00000000 0xf3 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_rtc_chan_init + 0x00000000 0xcb esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_hal_onetime_start + 0x00000000 0xe esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.adc_oneshot_ll_set_output_bits.str1.4 + 0x00000000 0x37 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_oneshot_ll_set_output_bits + 0x00000000 0xaa esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_oneshot_ll_get_event + 0x00000000 0x3c esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_hal_convert + 0x00000000 0xa4 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc1_pad_get_io_num + 0x00000000 0x47 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc2_pad_get_io_num + 0x00000000 0x49 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_set_clk_div + 0x00000000 0x37 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.adc_common_gpio_init.str1.4 + 0x00000000 0xe5 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_common_gpio_init + 0x00000000 0x12a esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_set_data_inv + 0x00000000 0x74 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.adc_set_data_width.str1.4 + 0x00000000 0x36 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_set_data_width + 0x00000000 0xa4 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.adc1_config_channel_atten.str1.4 + 0x00000000 0x2e esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc1_config_channel_atten + 0x00000000 0xae esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc1_config_width + 0x00000000 0x7b esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc1_dma_mode_acquire + 0x00000000 0x82 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc1_rtc_mode_acquire + 0x00000000 0x85 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.adc1_lock_release.str1.4 + 0x00000000 0x48 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc1_lock_release + 0x00000000 0x48 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc1_get_raw + 0x00000000 0xfb esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc1_get_voltage + 0x00000000 0x10 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc1_ulp_enable + 0x00000000 0x90 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.adc2_config_channel_atten.str1.4 + 0x00000000 0x2f esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc2_config_channel_atten + 0x00000000 0xca esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.adc2_get_raw.str1.4 + 0x00000000 0x64 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc2_get_raw + 0x00000000 0x1ea esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text.adc_vref_to_gpio + 0x00000000 0x71 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0xd esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x1a esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0xd esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x12 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x12 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x1a esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__func__$7 + 0x00000000 0x1f esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__$8 + 0x00000000 0x13 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x15 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x14 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x14 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .bss.adc1_dma_lock + 0x00000000 0x4 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .text.i2s_platform_get_dma_buffer_offset + 0x00000000 0x7 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .iram1.6.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_range + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0.literal + 0x00000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3.literal + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_enable_wp + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7.literal + 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_get_spi_mode + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.6 0x00000000 0x61 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x00000000 0x7c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x00000000 0x73 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x00000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x00000000 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x00000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0 0x00000000 0x13e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_enable_wp + 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x00000000 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7 0x00000000 0xc1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.13 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_get_spi_mode + 0x00000000 0x39 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.11 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.10 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.5 0x00000000 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss.map 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.print_flash_info + 0x00000000 0x6c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.update_flash_config + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_flash_update_size + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.10.literal + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_configure_spi_pins + 0x00000000 0x54 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_init_spi_flash + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .rodata.print_flash_info.str1.4 + 0x00000000 0xf8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.print_flash_info + 0x00000000 0x11b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.update_flash_config + 0x00000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.10 0x00000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_configure_spi_pins + 0x00000000 0x17a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_init_spi_flash + 0x00000000 0x2b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_clock_get_rated_freq_mhz + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .text.bootloader_clock_get_rated_freq_mhz + 0x00000000 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_init_checks + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0xe4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x00000000 0xe esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x00000000 0x8a esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_init_checks.str1.4 + 0x00000000 0x95 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_init_checks + 0x00000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.4 + 0x00000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x00000000 0xde esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.4 + 0x00000000 0x3d6 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x1f4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .iram1.9.literal + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.10.literal + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.9 0x00000000 0x2f esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.10 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .literal.s_merge_contiguous_pages + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_pages + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_get_free_pages + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_phys2cache + 0x00000000 0x14 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_find_non_contiguous_block_nums + 0x00000000 0x23 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_pages_to_bytes + 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_merge_contiguous_pages + 0x00000000 0x59 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_pages + 0x00000000 0x107 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x00000000 0x13 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_get_free_pages + 0x00000000 0x21 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_phys2cache.str1.4 + 0x00000000 0xe esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_phys2cache + 0x00000000 0x3f esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$0 + 0x00000000 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.9.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.9 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.12 0x00000000 0x5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .dram1.7 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.11.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.find_region + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_id + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_unique_chip_id + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.8.literal + 0x00000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.14.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.15.literal + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.17.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.18.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protectable_regions + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.19.literal + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.20.literal + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.26.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.27.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_suspend_cmd_init + 0x00000000 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_app_disable_protect + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.11 0x00000000 0x34 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.find_region + 0x00000000 0x3c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x00000000 0x3a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_unique_chip_id + 0x00000000 0x86 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.8 0x00000000 0x15e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.14 0x00000000 0x36 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.15 0x00000000 0x48 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.17 0x00000000 0x5a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.18 0x00000000 0x52 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x00000000 0x52 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.19 0x00000000 0xa6 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.20 0x00000000 0xdc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.26 0x00000000 0x66 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.27 0x00000000 0x62 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_suspend_cmd_init.str1.4 + 0x00000000 0x93 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_suspend_cmd_init + 0x00000000 0x7a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.acquire_spi_device + 0x00000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0.literal + 0x00000000 0x34 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x00000000 0x44 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.use_bus_lock + 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.acquire_spi_device.str1.4 + 0x00000000 0xa6 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.acquire_spi_device + 0x00000000 0xce esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.str1.4 + 0x00000000 0xc8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0 0x00000000 0x132 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x00000000 0x39 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.spi_bus_add_flash_device.str1.4 + 0x00000000 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x00000000 0x145 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$1 + 0x00000000 0xe esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$3 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.3.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.5.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_init_os_functions + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_deinit_os_functions + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.use_bus_lock + 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.5 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x00000000 0x6f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x00000000 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_main_bus_lock + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.11.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.9 0x00000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.11 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .literal.memspi_host_erase_chip + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_erase_sector + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_erase_block + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_program_page + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_read + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_set_write_protect + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_chip + 0x00000000 0x23 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_erase_sector.str1.4 + 0x00000000 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_sector + 0x00000000 0x46 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_block + 0x00000000 0x47 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_program_page.str1.4 + 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_program_page + 0x00000000 0x4e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x00000000 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_set_write_protect + 0x00000000 0x2d esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$1 + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal._esp_error_check_failed_without_abort + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed_without_abort.str1.4 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text._esp_error_check_failed_without_abort + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .iram1.4.literal + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5.literal + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.4 0x00000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5 0x00000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .literal.delete_entry + 0x00000000 0x58 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_stop + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_restart + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_add_user + 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reset_user + 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.unsubscribe_idle + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reconfigure + 0x00000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_deinit + 0x00000000 0x3c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete_user + 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_status + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.delete_entry + 0x00000000 0x11a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_stop + 0x00000000 0x35 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_restart + 0x00000000 0x35 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_add_user + 0x00000000 0x86 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reset_user.str1.4 + 0x00000000 0x36 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reset_user + 0x00000000 0xc2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete + 0x00000000 0x4c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.unsubscribe_idle.str1.4 + 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.unsubscribe_idle + 0x00000000 0x5b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reconfigure.str1.4 + 0x00000000 0x39 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reconfigure + 0x00000000 0xdc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_deinit.str1.4 + 0x00000000 0x3d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_deinit + 0x00000000 0x9b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete_user + 0x00000000 0x6a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_status + 0x00000000 0x6a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x16 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__func__$10 + 0x00000000 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_impl_timer_reconfigure + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_free + 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_stop + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_reconfigure + 0x00000000 0x51 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.esp_task_wdt_impl_timer_free.str1.4 + 0x00000000 0x84 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_free + 0x00000000 0x84 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_stop + 0x00000000 0x29 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.__func__$0 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .iram1.0.literal + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .iram1.0 0x00000000 0x21 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .literal.spi_cache_mode_switch + 0x00000000 0x34 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_status + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_wait_idle + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_chip_internal + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_block_internal + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_sector_internal + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_data + 0x00000000 0x34 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_enable_write + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_program_page_internal + 0x00000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_statushigh + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_status + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_clear_bp + 0x00000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_set_bp + 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_config_readmode + 0x00000000 0x2c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_chip + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_block + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_sector + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write + 0x00000000 0x24 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_encrypted + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read + 0x00000000 0x54 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_area + 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_disable + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.spi_cache_mode_switch + 0x00000000 0x282 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_status + 0x00000000 0x63 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_wait_idle + 0x00000000 0x32 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_chip_internal + 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_block_internal + 0x00000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_sector_internal + 0x00000000 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.esp_rom_spiflash_read_data.str1.4 + 0x00000000 0x170 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_data + 0x00000000 0x12c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_enable_write + 0x00000000 0x3d esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.esp_rom_spiflash_program_page_internal.str1.4 + 0x00000000 0x13c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_program_page_internal + 0x00000000 0x13a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_statushigh + 0x00000000 0x21 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_status + 0x00000000 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_clear_bp + 0x00000000 0xe4 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_set_bp + 0x00000000 0x53 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_config_readmode + 0x00000000 0x9e esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_chip + 0x00000000 0x2a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_block + 0x00000000 0x6a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_sector + 0x00000000 0x6a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write + 0x00000000 0xde esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_encrypted + 0x00000000 0x5a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read + 0x00000000 0x280 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_area + 0x00000000 0xbe esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_disable + 0x00000000 0x1d esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.__func__$16 + 0x00000000 0x1b esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.__func__$14 + 0x00000000 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_frame 0x00000000 0x220 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_info 0x00000000 0xfce esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_abbrev 0x00000000 0x32f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_loc 0x00000000 0xb9f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_aranges + 0x00000000 0xc8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_line 0x00000000 0x2f4a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_str 0x00000000 0x9a2 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.mmu_ll_entry_id_to_vaddr_base + 0x00000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_ll_find_entry_id_based_on_map_value + 0x00000000 0xc esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_all + 0x00000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_init + 0x00000000 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_paddr_to_vaddr + 0x00000000 0x20 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_ll_entry_id_to_vaddr_base + 0x00000000 0xaa esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_ll_find_entry_id_based_on_map_value + 0x00000000 0x6a esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_all + 0x00000000 0x8d esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x00000000 0xb esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_paddr_to_vaddr + 0x00000000 0x75 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$1 + 0x00000000 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x14 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.cache_hal_get_cache_line_size + 0x00000000 0x10 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.cache_hal_invalidate_addr + 0x00000000 0x4 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x90 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .rodata.cache_hal_get_cache_line_size.str1.4 + 0x00000000 0x60 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_get_cache_line_size + 0x00000000 0x1c esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_invalidate_addr + 0x00000000 0x9 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .rodata.__func__$0 + 0x00000000 0x1e esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.uart_hal_set_hw_flow_ctrl + 0x00000000 0x14 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_sw_flow_ctrl + 0x00000000 0x8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_at_cmd_char + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_tx_idle_num + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_txfifo_empty_thr + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_mode + 0x00000000 0x8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_inverse_signal + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_loop_back + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_init + 0x00000000 0x10 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_rx_timeout + 0x00000000 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_hw_flow_ctrl + 0x00000000 0x72 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_hw_flow_ctrl + 0x00000000 0x28 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x00000000 0xfd esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x00000000 0xb9 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_tx_idle_num + 0x00000000 0x22 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rxfifo_full_thr + 0x00000000 0x1d esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_txfifo_empty_thr + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_wakeup_thrd + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_thrd + 0x00000000 0x13 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_mode + 0x00000000 0x1be esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x00000000 0xf esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_inverse_signal + 0x00000000 0xe3 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_init + 0x00000000 0xca esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_symb_len + 0x00000000 0x67 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rx_timeout + 0x00000000 0x6d esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x27 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.rtcio_ll_input_disable + 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_input_enable + 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_input_in_sleep + 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_output_in_sleep + 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_sleep_setting + 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_input_in_sleep + 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_output_in_sleep + 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_sleep_setting + 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_pullup_disable + 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_pulldown_disable + 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_force_hold_enable + 0x00000000 0x20 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction + 0x00000000 0x1c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x00000000 0x30 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x00000000 0x14 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_input_disable.str1.4 + 0x00000000 0xef esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_disable + 0x00000000 0x4e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_input_enable.str1.4 + 0x00000000 0xb8 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_enable + 0x00000000 0x4b esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_input_in_sleep + 0x00000000 0x4b esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_output_in_sleep + 0x00000000 0x4b esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_sleep_setting + 0x00000000 0x4b esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_input_in_sleep + 0x00000000 0x4e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_output_in_sleep + 0x00000000 0x4e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_sleep_setting + 0x00000000 0x4e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_pullup_disable + 0x00000000 0x4e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_pulldown_disable + 0x00000000 0x4e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_force_hold_enable.str1.4 + 0x00000000 0xac esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_force_hold_enable + 0x00000000 0x5e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x00000000 0x192 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x00000000 0x86 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x00000000 0x44 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$2 + 0x00000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$3 + 0x00000000 0x1f esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$4 + 0x00000000 0x21 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$5 + 0x00000000 0x20 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$6 + 0x00000000 0x1e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$7 + 0x00000000 0x20 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$8 + 0x00000000 0x1f esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$9 + 0x00000000 0x16 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$10 + 0x00000000 0x17 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_frame 0x00000000 0x160 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_info 0x00000000 0x1a0a esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_abbrev 0x00000000 0x2ef esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_loc 0x00000000 0x36e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_aranges + 0x00000000 0x88 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_ranges 0x00000000 0x78 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_line 0x00000000 0x11e0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_str 0x00000000 0xac1 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .literal.hal_utils_calc_clk_div_frac_fast + 0x00000000 0x14 esp-idf/hal/libhal.a(hal_utils.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(hal_utils.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(hal_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(hal_utils.c.obj) + .text.hal_utils_calc_clk_div_frac_fast + 0x00000000 0xbe esp-idf/hal/libhal.a(hal_utils.c.obj) + .text.hal_utils_calc_clk_div_integer + 0x00000000 0x4b esp-idf/hal/libhal.a(hal_utils.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x00000000 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .rodata.uart_periph_signal + 0x00000000 0x48 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_info 0x00000000 0x44e esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_abbrev 0x00000000 0xfb esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_line 0x00000000 0x215 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_str 0x00000000 0xc20 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .rodata.adc_channel_io_map + 0x00000000 0x50 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .debug_info 0x00000000 0x253 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .debug_abbrev 0x00000000 0x7d esp-idf/soc/libsoc.a(adc_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .debug_line 0x00000000 0xff esp-idf/soc/libsoc.a(adc_periph.c.obj) + .debug_str 0x00000000 0x8ba esp-idf/soc/libsoc.a(adc_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .rodata.spi_periph_signal + 0x00000000 0x6c esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_info 0x00000000 0x29c2 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_abbrev 0x00000000 0x1d0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_line 0x00000000 0x223 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_str 0x00000000 0x2268 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(i2s_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(i2s_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(i2s_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_dma_ext_capable + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_external_ram + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .literal.periph_rtc_dig_clk8m_enable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_dig_clk8m_get_freq + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_dig_clk8m_disable + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_enable + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_get_freq + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_disable + 0x00000000 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.__func__$3 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss.s_rc_fast_freq + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss.s_periph_ref_counts + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .literal.esp_gpio_is_pin_reserved + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_is_pin_reserved + 0x00000000 0x3d esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .literal.adc_lock_try_acquire + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .literal.adc_apb_periph_claim + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .literal.adc_apb_periph_free + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text.adc_lock_try_acquire + 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text.adc_apb_periph_claim + 0x00000000 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .rodata.adc_apb_periph_free.str1.4 + 0x00000000 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text.adc_apb_periph_free + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .bss.s_adc_digi_ctrlr_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .data.s_spinlock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .literal.xEventGroupCreateStatic + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.vEventGroupClearBitsCallback + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupClearBitsFromISR + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupGetBitsFromISR + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupSync + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.vEventGroupSetBitsCallback + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupGetStaticBuffer + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupSetBitsFromISR + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupCreateStatic + 0x00000000 0x73 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupClearBitsCallback + 0x00000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupClearBitsFromISR + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupGetBitsFromISR + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupSync + 0x00000000 0xf9 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupSetBitsCallback + 0x00000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupGetStaticBuffer.str1.4 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupGetStaticBuffer + 0x00000000 0x3d esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupSetBitsFromISR + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.uxEventGroupGetNumber + 0x00000000 0xe esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupSetNumber + 0x00000000 0x7 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$5 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$7 + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xTaskCreatePinnedToCoreWithCaps + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vTaskDeleteWithCaps + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xQueueCreateWithCaps + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vQueueDeleteWithCaps + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xSemaphoreCreateGenericWithCaps + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vSemaphoreDeleteWithCaps + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xStreamBufferGenericCreateWithCaps + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vStreamBufferGenericDeleteWithCaps + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xEventGroupCreateWithCaps + 0x00000000 0xc esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vEventGroupDeleteWithCaps + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xTaskCreatePinnedToCoreWithCaps + 0x00000000 0x72 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.vTaskDeleteWithCaps.str1.4 + 0x00000000 0x58 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vTaskDeleteWithCaps + 0x00000000 0x3e esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xQueueCreateWithCaps + 0x00000000 0x5c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vQueueDeleteWithCaps + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xSemaphoreCreateGenericWithCaps + 0x00000000 0x73 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vSemaphoreDeleteWithCaps + 0x00000000 0x37 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xStreamBufferGenericCreateWithCaps + 0x00000000 0x76 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vStreamBufferGenericDeleteWithCaps + 0x00000000 0x62 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xEventGroupCreateWithCaps + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vEventGroupDeleteWithCaps + 0x00000000 0x34 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$1 + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$3 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$4 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_info 0x00000000 0x1b50 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_abbrev 0x00000000 0x363 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_loc 0x00000000 0x4a6 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_line 0x00000000 0xc46 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_str 0x00000000 0xe40 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .comment 0x00000000 0x30 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.prvInitialiseNewTimer + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerCreate + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerCreateStatic + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerGenericCommand + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerGetTimerDaemonTaskHandle + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerGetPeriod + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.vTimerSetReloadMode + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerGetReloadMode + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.uxTimerGetReloadMode + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerGetExpiryTime + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerGetStaticBuffer + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.pcTimerGetName + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerIsTimerActive + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.pvTimerGetTimerID + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.vTimerSetTimerID + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerPendFunctionCallFromISR + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerPendFunctionCall + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.prvInitialiseNewTimer.str1.4 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.prvInitialiseNewTimer + 0x00000000 0x3e esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerCreate + 0x00000000 0x2a esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.xTimerCreateStatic.str1.4 + 0x00000000 0x2a esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerCreateStatic + 0x00000000 0x5a esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.xTimerGenericCommand.str1.4 + 0x00000000 0x7 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerGenericCommand + 0x00000000 0x75 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.xTimerGetTimerDaemonTaskHandle.str1.4 + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerGetTimerDaemonTaskHandle + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerGetPeriod + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.vTimerSetReloadMode + 0x00000000 0x4a esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerGetReloadMode + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.uxTimerGetReloadMode + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerGetExpiryTime + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.xTimerGetStaticBuffer.str1.4 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerGetStaticBuffer + 0x00000000 0x29 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.pcTimerGetName + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerIsTimerActive + 0x00000000 0x3e esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.pvTimerGetTimerID + 0x00000000 0x32 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.vTimerSetTimerID + 0x00000000 0x32 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerPendFunctionCallFromISR + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.xTimerPendFunctionCall.str1.4 + 0x00000000 0xc esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerPendFunctionCall + 0x00000000 0x36 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.uxTimerGetTimerNumber + 0x00000000 0x7 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.vTimerSetTimerNumber + 0x00000000 0x7 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$0 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$1 + 0x00000000 0x11 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$2 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$3 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$4 + 0x00000000 0xf esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$5 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$6 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$7 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$8 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$9 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$10 + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$11 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$12 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$13 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.prvInitialiseNewStreamBuffer + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvWriteBytesToBuffer + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvWriteMessageToBuffer + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvReadBytesFromBuffer + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvReadMessageFromBuffer + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGenericCreate + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGenericCreateStatic + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGetStaticBuffers + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.vStreamBufferDelete + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReset + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSetTriggerLevel + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSpacesAvailable + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferBytesAvailable + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSend + 0x00000000 0x64 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSendFromISR + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceive + 0x00000000 0x50 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferNextMessageLengthBytes + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceiveFromISR + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferIsEmpty + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferIsFull + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSendCompletedFromISR + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceiveCompletedFromISR + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvBytesInBuffer + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvInitialiseNewStreamBuffer.str1.4 + 0x00000000 0x82 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvInitialiseNewStreamBuffer + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvWriteBytesToBuffer.str1.4 + 0x00000000 0x81 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvWriteBytesToBuffer + 0x00000000 0x86 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvWriteMessageToBuffer + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvReadBytesFromBuffer.str1.4 + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvReadBytesFromBuffer + 0x00000000 0x68 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvReadMessageFromBuffer + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGenericCreate.str1.4 + 0x00000000 0xa3 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGenericCreate + 0x00000000 0xac esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGenericCreateStatic.str1.4 + 0x00000000 0x56 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGenericCreateStatic + 0x00000000 0xf8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGetStaticBuffers.str1.4 + 0x00000000 0x42 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGetStaticBuffers + 0x00000000 0x55 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.vStreamBufferDelete + 0x00000000 0x34 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReset + 0x00000000 0x66 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSetTriggerLevel + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSpacesAvailable + 0x00000000 0x40 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferBytesAvailable + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferSend.str1.4 + 0x00000000 0x62 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSend + 0x00000000 0x167 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSendFromISR + 0x00000000 0x93 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferReceive.str1.4 + 0x00000000 0x41 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceive + 0x00000000 0x118 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferNextMessageLengthBytes.str1.4 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferNextMessageLengthBytes + 0x00000000 0x5d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceiveFromISR + 0x00000000 0x90 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferIsEmpty + 0x00000000 0x2e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferIsFull + 0x00000000 0x38 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSendCompletedFromISR + 0x00000000 0x50 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceiveCompletedFromISR + 0x00000000 0x50 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.uxStreamBufferGetStreamBufferNumber + 0x00000000 0x7 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.vStreamBufferSetStreamBufferNumber + 0x00000000 0x7 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.ucStreamBufferGetStreamBufferType + 0x00000000 0xb esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$0 + 0x00000000 0x25 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$1 + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$2 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$3 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$4 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$5 + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$6 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$7 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$8 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$9 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$11 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$12 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$13 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$14 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$15 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$16 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$17 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$18 + 0x00000000 0x21 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$19 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$20 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$21 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_frame 0x00000000 0x280 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_info 0x00000000 0x263f esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_abbrev 0x00000000 0x396 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_loc 0x00000000 0x13e3 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_aranges + 0x00000000 0xe8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_ranges 0x00000000 0x120 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_line 0x00000000 0x1fbe esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_str 0x00000000 0xbb8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .comment 0x00000000 0x30 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.esp_err_to_name_r + 0x00000000 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .data 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.esp_err_to_name_r.str1.4 + 0x00000000 0xc esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text.esp_err_to_name_r + 0x00000000 0x58 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.esp_event_isr_post + 0x00000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_loop_delete_default + 0x00000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .data 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_isr_post + 0x00000000 0x24 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_loop_delete_default + 0x00000000 0x26 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.handler_instances_remove_all + 0x00000000 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.base_node_remove_all_handler + 0x00000000 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.loop_node_remove_all_handler + 0x00000000 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_loop_delete + 0x00000000 0x3c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_isr_post_to + 0x00000000 0x24 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .data 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.handler_instances_remove_all + 0x00000000 0x3c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.base_node_remove_all_handler + 0x00000000 0x46 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.loop_node_remove_all_handler + 0x00000000 0x46 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_loop_delete + 0x00000000 0xb8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_isr_post_to + 0x00000000 0xaa esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_dump + 0x00000000 0x7 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$0 + 0x00000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$4 + 0x00000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.lwip_poll_inc_sockets_used + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_pollscan + 0x00000000 0x3c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll_dec_sockets_used + 0x00000000 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getaddrname + 0x00000000 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt_impl + 0x00000000 0xcc esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt_callback + 0x00000000 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_init + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_cleanup + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_dbg_get_socket + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_connect + 0x00000000 0x3c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_recvmsg + 0x00000000 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_readv + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_sendmsg + 0x00000000 0x80 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_writev + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll + 0x00000000 0x4c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getpeername + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockname + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt + 0x00000000 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_inet_ntop + 0x00000000 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_inet_pton + 0x00000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_inc_sockets_used + 0x00000000 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_pollscan + 0x00000000 0x150 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_dec_sockets_used + 0x00000000 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getaddrname + 0x00000000 0x108 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt_impl + 0x00000000 0x586 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt_callback + 0x00000000 0x36 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_init + 0x00000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_cleanup + 0x00000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_dbg_get_socket + 0x00000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_connect + 0x00000000 0x122 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_recvmsg + 0x00000000 0x160 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_readv + 0x00000000 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_sendmsg + 0x00000000 0x252 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_writev + 0x00000000 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_poll.str1.4 + 0x00000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll + 0x00000000 0x11f esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getpeername + 0x00000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockname + 0x00000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt + 0x00000000 0xb6 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_inet_ntop + 0x00000000 0x62 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_inet_pton + 0x00000000 0x46 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$3 + 0x00000000 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$4 + 0x00000000 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$5 + 0x00000000 0xa esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.pbuf_free_int + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_new + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_delete + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback + 0x00000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback_fromisr + 0x00000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.pbuf_free_callback + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.mem_free_callback + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_int + 0x00000000 0xe esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_new + 0x00000000 0x1b esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_delete + 0x00000000 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback + 0x00000000 0x2e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback_fromisr + 0x00000000 0x2e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_callback + 0x00000000 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.mem_free_callback + 0x00000000 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$3 + 0x00000000 0x26 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$4 + 0x00000000 0x1e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.lwip_strnstr + 0x00000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .literal.lwip_itoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnstr + 0x00000000 0x44 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_stricmp + 0x00000000 0x41 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnicmp + 0x00000000 0x56 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_itoa + 0x00000000 0x9b esp-idf/lwip/liblwip.a(def.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .literal.ipaddr_ntoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.ipaddr_ntoa_r + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.ipaddr_aton + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa + 0x00000000 0x26 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa_r + 0x00000000 0x2a esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_aton + 0x00000000 0x4b esp-idf/lwip/liblwip.a(ip.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .literal.memp_malloc_pool + 0x00000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.memp_free_pool + 0x00000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_init_pool + 0x00000000 0x5 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_malloc_pool.str1.4 + 0x00000000 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_malloc_pool + 0x00000000 0x23 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_free_pool + 0x00000000 0x26 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$1 + 0x00000000 0xf esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$3 + 0x00000000 0x11 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.netif_input + 0x00000000 0x20 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_index_to_name + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_name_to_index + 0x00000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_ipaddr + 0x00000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_netmask + 0x00000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_gw + 0x00000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_noaddr + 0x00000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_create_ip6_linklocal_address + 0x00000000 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_ip6_address + 0x00000000 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_input.str1.4 + 0x00000000 0x37 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_input + 0x00000000 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_index_to_name + 0x00000000 0x2e esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_name_to_index + 0x00000000 0x1d esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_ipaddr + 0x00000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_netmask + 0x00000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_gw + 0x00000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_noaddr + 0x00000000 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_create_ip6_linklocal_address.str1.4 + 0x00000000 0x32 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_create_ip6_linklocal_address + 0x00000000 0xf6 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add_ip6_address.str1.4 + 0x00000000 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_ip6_address + 0x00000000 0xd5 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$3 + 0x00000000 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$4 + 0x00000000 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$16 + 0x00000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.pbuf_header + 0x00000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_dechain + 0x00000000 0x1c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_get_contiguous + 0x00000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_coalesce + 0x00000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_put_at + 0x00000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memcmp + 0x00000000 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memfind + 0x00000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_strstr + 0x00000000 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_header + 0x00000000 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_dechain.str1.4 + 0x00000000 0x39 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_dechain + 0x00000000 0x6b esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_get_contiguous + 0x00000000 0x56 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_coalesce + 0x00000000 0x24 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_put_at + 0x00000000 0x28 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memcmp + 0x00000000 0x63 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memfind + 0x00000000 0x41 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_strstr + 0x00000000 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$4 + 0x00000000 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.raw_connect + 0x00000000 0x10 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_disconnect + 0x00000000 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_connect + 0x00000000 0xfd esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_disconnect + 0x00000000 0x8b esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.tcp_listen_with_backlog + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_txnow + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_connect + 0x00000000 0x44 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_debug_state_str + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_tcp_get_tcp_addrinfo + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_new + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_listen_with_backlog + 0x00000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_txnow + 0x00000000 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_setprio + 0x00000000 0xe esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_connect + 0x00000000 0x2d1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_debug_state_str + 0x00000000 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_tcp_get_tcp_addrinfo + 0x00000000 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_new 0x00000000 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.str1.4 + 0x00000000 0x76 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_state_str + 0x00000000 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .literal.sys_timeouts_deinit + 0x00000000 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + .literal.sys_restart_timeouts + 0x00000000 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text.sys_timeouts_deinit + 0x00000000 0x1f esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text.sys_restart_timeouts + 0x00000000 0x2a esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_num_cyclic_timers + 0x00000000 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .literal.dhcp_inform + 0x00000000 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_inform + 0x00000000 0xa8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .literal.etharp_find_addr + 0x00000000 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .literal.etharp_get_entry + 0x00000000 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_find_addr.str1.4 + 0x00000000 0x22 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_find_addr + 0x00000000 0x61 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_get_entry + 0x00000000 0x7a esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$4 + 0x00000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$5 + 0x00000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .literal.ip4_set_default_multicast_netif + 0x00000000 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_output + 0x00000000 0x18 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_set_default_multicast_netif + 0x00000000 0xa esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_output + 0x00000000 0x51 esp-idf/lwip/liblwip.a(ip4.c.obj) + .rodata.__func__$0 + 0x00000000 0xb esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_addr_netmask_valid + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ipaddr_addr + 0x00000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_ntoa_r + 0x00000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_ntoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4_addr_netmask_valid + 0x00000000 0x32 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ipaddr_addr + 0x00000000 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_ntoa_r + 0x00000000 0x92 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_ntoa + 0x00000000 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss.str$0 0x00000000 0x10 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .literal.icmp6_send_response_with_addrs + 0x00000000 0x1c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_packet_too_big + 0x00000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_time_exceeded + 0x00000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_time_exceeded_with_addrs + 0x00000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.icmp6_send_response_with_addrs.str1.4 + 0x00000000 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_send_response_with_addrs + 0x00000000 0x4e esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_packet_too_big + 0x00000000 0x13 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_time_exceeded + 0x00000000 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_time_exceeded_with_addrs + 0x00000000 0x18 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.ip6_output + 0x00000000 0x1c esp-idf/lwip/liblwip.a(ip6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .text.ip6_output + 0x00000000 0x171 esp-idf/lwip/liblwip.a(ip6.c.obj) + .rodata.__func__$0 + 0x00000000 0xb esp-idf/lwip/liblwip.a(ip6.c.obj) + .literal.ip6addr_aton + 0x00000000 0x10 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .literal.ip6addr_ntoa_r + 0x00000000 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .literal.ip6addr_ntoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_aton + 0x00000000 0x194 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .rodata.ip6addr_ntoa_r.str1.4 + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa_r + 0x00000000 0x217 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa + 0x00000000 0x14 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss.str$0 0x00000000 0x28 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .literal.ip4_netif_exist + 0x00000000 0x4 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .text.ip4_netif_exist + 0x00000000 0x3a esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .literal.lwip_getsockopt_impl_ext + 0x00000000 0x8 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .rodata.lwip_getsockopt_impl_ext.str1.4 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .text.lwip_getsockopt_impl_ext + 0x00000000 0xc9 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .literal.sys_mutex_free + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_mbox_trypost_fromisr + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_jiffies + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_thread_sem_deinit + 0x00000000 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_delay_ms + 0x00000000 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mutex_free + 0x00000000 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_trypost_fromisr.str1.4 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mbox_trypost_fromisr + 0x00000000 0x44 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mbox_set_owner + 0x00000000 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_jiffies + 0x00000000 0xd esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_thread_sem_deinit + 0x00000000 0x26 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_delay_ms + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$5 + 0x00000000 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .literal.netconn_bind_if + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_connect + 0x00000000 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_disconnect + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_sendto + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_close + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_udp_raw_netbuf + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_tcp_pbuf + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv + 0x00000000 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_gethostbyname_addrtype + 0x00000000 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_init + 0x00000000 0x1c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_cleanup + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_bind_if + 0x00000000 0x23 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_connect + 0x00000000 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_disconnect + 0x00000000 0x21 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_sendto + 0x00000000 0x75 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_close + 0x00000000 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_udp_raw_netbuf + 0x00000000 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_tcp_pbuf + 0x00000000 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_recv.str1.4 + 0x00000000 0xa esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv + 0x00000000 0xa9 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_gethostbyname_addrtype + 0x00000000 0x4a esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_thread_init.str1.4 + 0x00000000 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_init + 0x00000000 0x32 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_cleanup + 0x00000000 0x16 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$2 + 0x00000000 0xd esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.lwip_netconn_do_dns_found + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_connected + 0x00000000 0x28 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_bind_if + 0x00000000 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_connect + 0x00000000 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_disconnect + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_gethostbyname + 0x00000000 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_dns_found + 0x00000000 0x2c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_connected.str1.4 + 0x00000000 0x7d esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_connected + 0x00000000 0xca esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_bind_if + 0x00000000 0x66 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_connect + 0x00000000 0xce esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_disconnect + 0x00000000 0x2c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_gethostbyname + 0x00000000 0x32 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$5 + 0x00000000 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_new + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_ref + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_chain + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_new + 0x00000000 0x1c esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_ref + 0x00000000 0x46 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_chain + 0x00000000 0x22 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_data + 0x00000000 0x39 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_next + 0x00000000 0x2a esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_first + 0x00000000 0xb esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.dns_backupserver_available + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_server_is_set + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_create_txid + 0x00000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_call_found + 0x00000000 0x24 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_correct_response + 0x00000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_send + 0x00000000 0x64 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_check_entry + 0x00000000 0x34 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_check_entries + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_lookup + 0x00000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_alloc_random_port + 0x00000000 0x1c esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_alloc_pcb + 0x00000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_enqueue + 0x00000000 0x28 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_compare_name + 0x00000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_skip_name + 0x00000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_recv + 0x00000000 0x78 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_clear_cache + 0x00000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_getserver + 0x00000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_tmr + 0x00000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_timeout_cb + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_gethostbyname_addrtype + 0x00000000 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_gethostbyname + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_backupserver_available + 0x00000000 0x82 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_server_is_set + 0x00000000 0x77 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_create_txid + 0x00000000 0x3c esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_call_found.str1.4 + 0x00000000 0x3d esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_call_found + 0x00000000 0x1a0 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_correct_response + 0x00000000 0x6a esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_send.str1.4 + 0x00000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_send + 0x00000000 0x291 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_check_entry.str1.4 + 0x00000000 0x3b esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_check_entry + 0x00000000 0x260 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_check_entries + 0x00000000 0x1a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_lookup + 0x00000000 0xe5 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_alloc_random_port + 0x00000000 0x5e esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_alloc_pcb + 0x00000000 0x71 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_enqueue + 0x00000000 0x1dd esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_compare_name + 0x00000000 0xc8 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_skip_name + 0x00000000 0x72 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_recv + 0x00000000 0x45a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_clear_cache + 0x00000000 0x13 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_getserver + 0x00000000 0x1a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_tmr 0x00000000 0x5e esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_timeout_cb + 0x00000000 0xb esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_gethostbyname_addrtype.str1.4 + 0x00000000 0x13 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_gethostbyname_addrtype + 0x00000000 0x14c esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_gethostbyname + 0x00000000 0x19 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$0 + 0x00000000 0x9 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$1 + 0x00000000 0xf esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$2 + 0x00000000 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_mquery_v6group + 0x00000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_mquery_v4group + 0x00000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_requests + 0x00000000 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_table + 0x00000000 0x4a0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_seqno + 0x00000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_last_pcb_idx + 0x00000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_pcbs 0x00000000 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.s_is_tmr_start + 0x00000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.inet_cksum_pseudo_partial_base + 0x00000000 0x20 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.inet_chksum_pseudo_partial + 0x00000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip6_chksum_pseudo_partial + 0x00000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip_chksum_pseudo_partial + 0x00000000 0x8 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.inet_cksum_pseudo_partial_base.str1.4 + 0x00000000 0x3d esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_cksum_pseudo_partial_base + 0x00000000 0xba esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_chksum_pseudo_partial + 0x00000000 0x3e esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip6_chksum_pseudo_partial + 0x00000000 0x55 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip_chksum_pseudo_partial + 0x00000000 0x2f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .literal.esp_netif_dhcpc_option_api + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_find_if_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_lwip_ipc_call_fn + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.get_handle_from_ifkey_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_start_api + 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_stop_api + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_stop_api + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info_api + 0x00000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_get_clients_by_mac_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info_api + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info_api + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_netif_impl_name_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ppp_set_auth_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_join_ip6_multicast_group_api + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_leave_ip6_multicast_group_api + 0x00000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_add_ip6_address_api + 0x00000000 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_remove_ip6_address_api + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_default_netif + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_default_netif + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_ip4addr_ntoa + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_ip4addr_aton + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_str_to_ip4 + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_str_to_ip6 + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_deinit + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_tcpip_exec + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_handle_from_ifkey + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_find_if + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_destroy + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_stop + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_start + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_stop + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_mac + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_option_api + 0x00000000 0x4c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_get_clients_by_mac + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info + 0x00000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ip6_get_addr_type + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_linklocal + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_global + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_all_ip6 + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_option + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_option + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_netif_impl_name + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ppp_set_auth + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_join_ip6_multicast_group + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_leave_ip6_multicast_group + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_add_ip6_address + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_remove_ip6_address + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.tcpip_exec_api + 0x00000000 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_option_api + 0x00000000 0x90 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_find_if_api + 0x00000000 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_lwip_ipc_call_fn + 0x00000000 0x22 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.get_handle_from_ifkey_api + 0x00000000 0x13 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start_api + 0x00000000 0xa1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_stop_api + 0x00000000 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcpc_stop_api.str1.4 + 0x00000000 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_stop_api + 0x00000000 0x61 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_set_ip_info_api.str1.4 + 0x00000000 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info_api + 0x00000000 0x12a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_clients_by_mac_api + 0x00000000 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info_api + 0x00000000 0x52 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info_api + 0x00000000 0x4c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal_api + 0x00000000 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_name_api + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_ppp_set_auth_api + 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_join_ip6_multicast_group_api.str1.4 + 0x00000000 0x3b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_join_ip6_multicast_group_api + 0x00000000 0x4e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_leave_ip6_multicast_group_api.str1.4 + 0x00000000 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_leave_ip6_multicast_group_api + 0x00000000 0x56 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_add_ip6_address_api.str1.4 + 0x00000000 0x7c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_add_ip6_address_api + 0x00000000 0xe0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_remove_ip6_address_api + 0x00000000 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_default_netif + 0x00000000 0x11 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_default_netif + 0x00000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip4_addr + 0x00000000 0x43 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_ip4addr_ntoa + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_ip4addr_aton + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_str_to_ip4 + 0x00000000 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_str_to_ip6 + 0x00000000 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_handle_from_netif_impl + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl + 0x00000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_deinit + 0x00000000 0x19 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_tcpip_exec + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_handle_from_ifkey + 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_find_if + 0x00000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_destroy + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_transmit + 0x00000000 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_stop + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_status + 0x00000000 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_stop + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_mac + 0x00000000 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcps_option_api.str1.4 + 0x00000000 0x5c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_option_api + 0x00000000 0x291 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_clients_by_mac + 0x00000000 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info + 0x00000000 0x59 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_get_dns_info.str1.4 + 0x00000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info + 0x00000000 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_ip6_get_addr_type + 0x00000000 0x5e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_linklocal + 0x00000000 0x4e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_global + 0x00000000 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_all_ip6 + 0x00000000 0xf0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_route_prio + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_option + 0x00000000 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_option + 0x00000000 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_index + 0x00000000 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_name + 0x00000000 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_napt_enable + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_ppp_set_auth + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_napt_disable + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_link_speed + 0x00000000 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_join_ip6_multicast_group + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_leave_ip6_multicast_group + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_add_ip6_address + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_remove_ip6_address + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$2 + 0x00000000 0x17 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .rodata.g_wifi_default_mesh_crypto_funcs + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .literal.sha384_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.sha512_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_init + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_update + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_finish + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_sha384_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_sha384 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.aes_128_ctr_encrypt + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_mod_exp + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_dh_init + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.sha384_vector + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.sha512_vector + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_init + 0x00000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_update + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_finish + 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_sha384_vector + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_sha384 + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.aes_128_ctr_encrypt + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_mod_exp + 0x00000000 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_dh_init + 0x00000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_global_init + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_global_deinit + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .literal.ccmp_aad_nonce_pv1 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_encrypt_pv1 + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_decrypt + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_encrypt + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_aad_nonce_pv1 + 0x00000000 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_get_pn + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_encrypt_pv1 + 0x00000000 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_decrypt + 0x00000000 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_encrypt + 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.hwaddr_aton2 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.printf_encode + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpa_ssid_txt + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpa_merge_byte_arrays + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.str_clear_free + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.os_gmtime + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.os_mktime + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.get_param + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.hwaddr_aton2 + 0x00000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .rodata.printf_encode.str1.4 + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.printf_encode + 0x00000000 0xcb esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_ssid_txt + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.__hide_aliasing_typecast + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_is_hex + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.has_ctrl_char + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_merge_byte_arrays + 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.str_clear_free + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.os_gmtime + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.os_mktime + 0x00000000 0xd6 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.rssi_to_rcpi + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.get_param + 0x00000000 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .bss.ssid_txt$0 + 0x00000000 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .literal.esp_wifi_deinit + 0x00000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.esp_wifi_deinit + 0x00000000 0x1d esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.ieee80211_ftm_attach + 0x00000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .literal.disconnect_and_destroy + 0x00000000 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_set_default_wifi_ap_handlers + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_set_default_wifi_nan_handlers + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_clear_default_wifi_driver_and_handlers + 0x00000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_attach_wifi_ap + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_default_wifi_ap + 0x00000000 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_destroy_default_wifi + 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_wifi + 0x00000000 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_default_wifi_mesh_netifs + 0x00000000 0x8c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.disconnect_and_destroy + 0x00000000 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_set_default_wifi_ap_handlers + 0x00000000 0xd esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_set_default_wifi_nan_handlers + 0x00000000 0xd esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_clear_default_wifi_driver_and_handlers + 0x00000000 0x4d esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_attach_wifi_ap + 0x00000000 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_default_wifi_ap + 0x00000000 0x6a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_destroy_default_wifi + 0x00000000 0x17 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_wifi + 0x00000000 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_mesh_netifs.str1.4 + 0x00000000 0xa8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_default_wifi_mesh_netifs + 0x00000000 0x148 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$0 + 0x00000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$1 + 0x00000000 0x16 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$3 + 0x00000000 0x21 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_destroy_if_driver + 0x00000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_destroy_if_driver + 0x00000000 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .rodata.memset_func + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.httpd_stop + 0x00000000 0x2c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .text.httpd_get_client_list + 0x00000000 0x6d esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .text.httpd_get_global_user_ctx + 0x00000000 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .text.httpd_get_global_transport_ctx + 0x00000000 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .rodata.httpd_stop.str1.4 + 0x00000000 0x3e esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .text.httpd_stop + 0x00000000 0xa9 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .rodata.ESP_HTTP_SERVER_EVENT + 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .literal.httpd_cookie_key_value + 0x00000000 0x20 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .literal.httpd_validate_req_ptr + 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .literal.httpd_req_get_hdr_value_len + 0x00000000 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .literal.httpd_req_get_hdr_value_str + 0x00000000 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .literal.httpd_req_get_cookie_val + 0x00000000 0x38 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_cookie_key_value + 0x00000000 0xcd esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_validate_req_ptr + 0x00000000 0x2a esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_req_get_url_query_len + 0x00000000 0x25 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_req_get_hdr_value_len + 0x00000000 0x99 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_req_get_hdr_value_str + 0x00000000 0xbd esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.httpd_req_get_cookie_val.str1.4 + 0x00000000 0x88 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_req_get_cookie_val + 0x00000000 0x9d esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .literal.httpd_sess_get_ctx + 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .literal.httpd_sess_set_ctx + 0x00000000 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .literal.httpd_sess_get_transport_ctx + 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .literal.httpd_sess_set_transport_ctx + 0x00000000 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .literal.httpd_sess_update_lru_counter + 0x00000000 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .literal.httpd_sess_trigger_close + 0x00000000 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text.httpd_sess_get_ctx + 0x00000000 0x2a esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text.httpd_sess_set_ctx + 0x00000000 0x62 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text.httpd_sess_get_transport_ctx + 0x00000000 0x16 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text.httpd_sess_set_transport_ctx + 0x00000000 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text.httpd_sess_update_lru_counter + 0x00000000 0x5d esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text.httpd_sess_trigger_close + 0x00000000 0x23 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .literal.httpd_sess_set_send_override + 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .literal.httpd_sess_set_recv_override + 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .literal.httpd_sess_set_pending_override + 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .literal.httpd_resp_set_hdr + 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .literal.httpd_resp_send_chunk + 0x00000000 0x5c esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .literal.httpd_req_async_handler_begin + 0x00000000 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .literal.httpd_req_async_handler_complete + 0x00000000 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .literal.httpd_socket_send + 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .literal.httpd_socket_recv + 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_sess_set_send_override + 0x00000000 0x1b esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_sess_set_recv_override + 0x00000000 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_sess_set_pending_override + 0x00000000 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_send + 0x00000000 0x34 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_resp_set_hdr + 0x00000000 0x5d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .rodata.httpd_resp_send_chunk.str1.4 + 0x00000000 0x42 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_resp_send_chunk + 0x00000000 0x1a9 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_register_err_handler + 0x00000000 0x31 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_req_async_handler_begin + 0x00000000 0x7d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_req_async_handler_complete + 0x00000000 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_req_to_sockfd + 0x00000000 0x15 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_socket_send + 0x00000000 0x2e esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_socket_recv + 0x00000000 0x2e esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .literal.httpd_unregister_uri_handler + 0x00000000 0x24 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .literal.httpd_unregister_uri + 0x00000000 0x20 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.httpd_unregister_uri_handler.str1.4 + 0x00000000 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .text.httpd_unregister_uri_handler + 0x00000000 0xcd esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.httpd_unregister_uri.str1.4 + 0x00000000 0x38 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .text.httpd_unregister_uri + 0x00000000 0xc6 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.__func__$1 + 0x00000000 0x15 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.__func__$2 + 0x00000000 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .literal.cs_recv_from_ctrl_sock + 0x00000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .text 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .data 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .text.cs_recv_from_ctrl_sock + 0x00000000 0x1e esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .literal.mbedtls_mpi_lt_mpi_ct + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_swap + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_read_string + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_read_file + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mpi_write_hlp + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_write_string + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_write_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_gen_prime + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_self_test + 0x00000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mpi_get_digit + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_lt_mpi_ct + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_swap + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_string + 0x00000000 0x135 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_file + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mpi_write_hlp + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_string.str1.4 + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_write_string + 0x00000000 0x111 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_file.str1.4 + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_write_file + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_gen_prime + 0x00000000 0x23c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_self_test.str1.4 + 0x00000000 0x46a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_self_test + 0x00000000 0x302 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.gcd_pairs + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_core_ct_uint_table_lookup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_mul + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.exp_mod_precompute_window + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod_working_limbs + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_from_mont_rep + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.exp_mod_get_window_size + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_ct_uint_table_lookup + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_add_if + 0x00000000 0x4b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_mul + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.exp_mod_precompute_window + 0x00000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod_working_limbs + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod + 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_check_zero_ct + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_from_mont_rep + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.get_pkcs_padding + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_one_and_zeros_padding + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_zeros_and_len_padding + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_zeros_padding + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_no_padding + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.add_zeros_padding + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_aead_encrypt + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_aead_decrypt + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_list + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_set_iv + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_reset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_update_ad + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_finish + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_set_padding_mode + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_write_tag + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_check_tag + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_crypt + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_auth_encrypt_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_auth_decrypt_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_ct_uint_lt + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.add_pkcs_padding + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_pkcs_padding + 0x00000000 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.add_one_and_zeros_padding + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_one_and_zeros_padding + 0x00000000 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.add_zeros_and_len_padding + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_zeros_and_len_padding + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_zeros_padding + 0x00000000 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_no_padding + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.add_zeros_padding + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_aead_encrypt + 0x00000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_aead_decrypt + 0x00000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_list + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_info_from_string + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_set_iv + 0x00000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_reset + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_update_ad + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_finish + 0x00000000 0x19c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_set_padding_mode + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_write_tag + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_check_tag + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_crypt + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_auth_encrypt_ext + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_auth_decrypt_ext + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss.supported_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .bss.mbedtls_cipher_supported + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .literal.mbedtls_ct_memcpy_offset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_memcpy_offset + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.cmac_test_subkeys + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac_reset + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.cmac_test_wth_cipher + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_aes_cmac_prf_128 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.test_aes128_cmac_prf + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cmac_self_test + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.cmac_test_subkeys.str1.4 + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.cmac_test_subkeys + 0x00000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cipher_cmac_reset + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cipher_cmac + 0x00000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.cmac_test_wth_cipher.str1.4 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.cmac_test_wth_cipher + 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_aes_cmac_prf_128 + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.test_aes128_cmac_prf.str1.4 + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.test_aes128_cmac_prf + 0x00000000 0x6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.mbedtls_cmac_self_test.str1.4 + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cmac_self_test + 0x00000000 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFT 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFM 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFKlen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFK 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_message_lengths + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.test_message + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_md_clone + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_error_from_psa + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_list + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_info_from_string + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_get_name + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_file + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_hmac + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_clone + 0x00000000 0xe7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_get_type + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_error_from_psa + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_list + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_info_from_string + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_get_name + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_info_from_ctx + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_md_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_file + 0x00000000 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_hmac + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.str1.4 + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.md_names + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.supported_digests + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md5_self_test + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.mbedtls_md5_self_test.str1.4 + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text.mbedtls_md5_self_test + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_sum + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buflen + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buf + 0x00000000 0x237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.mbedtls_platform_set_calloc_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_set_calloc_free + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_setup + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_teardown + 0x00000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.convert_raw_to_der_single_int + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.convert_der_to_raw_single_int + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.psa_pk_status_to_mbedtls + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.mbedtls_psa_get_random + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.mbedtls_ecdsa_raw_to_der + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.mbedtls_ecdsa_der_to_raw + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.convert_raw_to_der_single_int + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.convert_der_to_raw_single_int + 0x00000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_generic_status_to_mbedtls + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_status_to_mbedtls + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_pk_status_to_mbedtls + 0x00000000 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecc_group_to_psa + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecc_group_from_psa + 0x00000000 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_psa_get_random + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecdsa_raw_to_der + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecdsa_der_to_raw + 0x00000000 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_pk_rsa_errors + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_lms_errors + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_md_errors + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_info 0x00000000 0xa68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_abbrev 0x00000000 0x2a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_loc 0x00000000 0x92f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_line 0x00000000 0xefc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_str 0x00000000 0x6dd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.mbedtls_sha1_self_test + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.mbedtls_sha1_self_test.str1.4 + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text.mbedtls_sha1_self_test + 0x00000000 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_sum + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buflen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buf + 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .literal.mbedtls_sha256_common_self_test + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha256_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha224_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.mbedtls_sha256_common_self_test.str1.4 + 0x00000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256_common_self_test + 0x00000000 0x137 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha224_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha256_test_sum + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha224_test_sum + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha_test_buflen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha_test_buf + 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha512_common_self_test + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha512_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha384_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.mbedtls_sha512_common_self_test.str1.4 + 0x00000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512_common_self_test + 0x00000000 0x137 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha384_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha512_test_sum + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha384_test_sum + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha_test_buflen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha_test_buf + 0x00000000 0x153 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha3_clone + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .literal.mbedtls_sha3_long_kat_test + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .literal.mbedtls_sha3_kat_test + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .literal.mbedtls_sha3_self_test + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text.mbedtls_sha3_clone + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.mbedtls_sha3_long_kat_test.str1.4 + 0x00000000 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text.mbedtls_sha3_long_kat_test + 0x00000000 0x12e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.mbedtls_sha3_kat_test.str1.4 + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text.mbedtls_sha3_kat_test + 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.mbedtls_sha3_self_test.str1.4 + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text.mbedtls_sha3_self_test + 0x00000000 0xda esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.long_kat_hash_sha3_512 + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.long_kat_hash_sha3_384 + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.long_kat_hash_sha3_256 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.long_kat_hash_sha3_224 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_hash_sha3_512 + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_hash_sha3_384 + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_hash_sha3_256 + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_hash_sha3_224 + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_data_len + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_data + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .literal.esp_internal_aes_encrypt + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_encrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_internal_aes_decrypt + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_crypt_cfb8 + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_encrypt + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_encrypt + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_decrypt + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_decrypt + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_cfb8 + 0x00000000 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_mpi_mul_mpi_mod + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.esp_mpi_mul_mpi_mod + 0x00000000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.esp_mpi_hardware_words + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_interrupt_enable + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_interrupt_clear + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_mul_mpi_mod_hw_op + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_hardware_words + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_interrupt_enable + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_interrupt_clear + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_mul_mpi_mod_hw_op + 0x00000000 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.mbedtls_sha1_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_sha1_clone + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_sha256_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_internal_sha256_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_clone + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_internal_sha256_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha512_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_internal_sha512_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_clone + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_internal_sha512_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.esp_gcm_derive_J0 + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_starts + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_update_ad + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_finish + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_crypt_and_tag_partial_hw + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_crypt_and_tag + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_auth_decrypt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.gcm_gen_table + 0x00000000 0x149 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_gcm_derive_J0 + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_starts + 0x00000000 0xca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata.esp_aes_gcm_update_ad.str1.4 + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_update_ad + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_finish + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_crypt_and_tag_partial_hw + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_crypt_and_tag + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_auth_decrypt + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_md5_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_clone + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text.esp_md5_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text.esp_md5_clone + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.mbedtls_aria_self_test + 0x00000000 0x154 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.mbedtls_aria_self_test.str1.4 + 0x00000000 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .text.mbedtls_aria_self_test + 0x00000000 0x4b3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_ctr_ct + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_cfb_ct + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_cbc_ct + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_iv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_pt + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_ct + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_pt + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .literal.asn1_get_sequence_of_cb + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bool + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_enum + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bitstring + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_traverse_sequence_of + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_sequence_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_sequence_of + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_alg_null + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_free_named_data_list + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_free_named_data_list_shallow + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_find_named_data + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.asn1_get_sequence_of_cb + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bool + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_enum + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bitstring + 0x00000000 0x53 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_traverse_sequence_of + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_sequence_free + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_sequence_of + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_alg_null + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_free_named_data_list + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_free_named_data_list_shallow + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_find_named_data + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.asn1_write_tagged_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_raw_buffer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_null + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_oid + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_algorithm_identifier_ext + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_algorithm_identifier + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bool + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_enum + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_tagged_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_utf8_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_printable_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_ia5_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bitstring + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_named_bitstring + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_octet_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_store_named_data + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.asn1_write_tagged_int + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_raw_buffer + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_null + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_oid + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_algorithm_identifier_ext + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_algorithm_identifier + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bool + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_int + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_enum + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_tagged_string + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_utf8_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_printable_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_ia5_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bitstring + 0x00000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_named_bitstring + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_octet_string + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_store_named_data + 0x00000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_ccm_clear_state + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.ccm_calculate_first_block_if_ready + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_compare_tags + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_starts + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_set_lengths + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_update_ad + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_finish + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.ccm_auth_crypt + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.ccm_auth_decrypt + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_star_encrypt_and_tag + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_encrypt_and_tag + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_star_auth_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_auth_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_self_test + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_clear_state + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.ccm_calculate_first_block_if_ready + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_compare_tags + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_starts + 0x00000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_set_lengths + 0x00000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_update_ad + 0x00000000 0xf3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_finish + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.ccm_auth_crypt + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.ccm_auth_decrypt + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_star_encrypt_and_tag + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_encrypt_and_tag + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_star_auth_decrypt + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_auth_decrypt + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.mbedtls_ccm_self_test.str1.4 + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_self_test + 0x00000000 0x18c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.res_test_data + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.tag_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.add_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.ad_test_data + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.key_test_data + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.psa_extend_key_usage_flags + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_initialized + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_drivers_initialized + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_key_can_do + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_policy_algorithm_intersection + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_algorithm_permits + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_policy_permits + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_restrict_key_policy + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_policy + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_finalize_alg_and_key_validation + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_verify_check_alg + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_get_base_algorithm + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_nonce_length + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_algorithm + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_tag_length + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_get_kdf_alg + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.is_kdf_alg_supported + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_try_support + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_allows_free_form_secret_input + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_check_input_type + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_seed + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_label + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_input + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_set_other_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_ecjpake_to_pms_input + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_copy_input + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_copy_output + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key_buffer_internal + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_wipe_tag_output_buffer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_key_slot_with_policy + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_transparent_key_slot_with_policy + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_attributes + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_start_key_creation + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_finish_key_creation + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_hash_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_set_key + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_psk_to_ms_input + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_mac_sign_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_start_hmac + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_mac_verify_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_mac_compute + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute_internal + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_asymmetric_encrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_asymmetric_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_cipher_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_cipher_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_cipher_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_cipher_encrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_cipher_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_aead_encrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_aead_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_aead_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_aead_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_aead_verify + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_init + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_can_do_hash + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_can_do_cipher + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_to_psa_error + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_random_internal + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_random_seed + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_init_subsystem + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_unstructured_key_bit_size + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_validate_key_type_and_size_for_key_generation + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_allocate_buffer_to_slot + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key_material_into_slot + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_import_key_into_slot + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_import_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_remove_key_data_from_memory + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_wipe_key_slot + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_fail_key_creation + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_destroy_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_key_attributes + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key_internal + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_export_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key_internal + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_finish_internal + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_setup + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_try_support + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_set_maximum_capacity + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup_kdf + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_setup + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_builtin + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_sign_hash + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message_builtin + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_internal + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_builtin + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_verify_hash + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message_builtin + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_internal + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_set_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_get_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_sign_hash_start + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_abort_internal + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_verify_hash_start + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_abort_internal + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_complete + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_setup + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_setup + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_nonce_internal + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_lengths + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_abort + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_internal + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_integer_internal + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_integer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_raw_builtin + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_key_agreement + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_raw_internal + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_internal + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key_internal + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_generate_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key_ext + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_configure_entropy_sources + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_free + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_init + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_input_alloc + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_input_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_import_key + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_verify + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compare + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_finish + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_start + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_start + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_set_iv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_nonce + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update_ad + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_bytes + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_key_agreement + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_output_alloc + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_output_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_finish + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compute + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_ecjpake_to_pms_read + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_prf_generate_next_block + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_prf_read + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_encrypt + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_decrypt + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_complete + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_generate_iv + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_update + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_generate_nonce + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_finish + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_verify + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_bytes + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_ecc_key_weierstrass_helper + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_ecc_key_montgomery_helper + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_derived_key_internal + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_key_ext + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_raw_key_agreement + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_random + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_extend_key_usage_flags + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.key_type_is_raw_bytes + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_initialized + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_drivers_initialized + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_key_can_do + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_policy_algorithm_intersection + 0x00000000 0x3fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_algorithm_permits + 0x00000000 0x372 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_policy_permits + 0x00000000 0x104 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_restrict_key_policy + 0x00000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_policy + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_optional_attributes + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_finalize_alg_and_key_validation + 0x00000000 0x25e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_verify_check_alg + 0x00000000 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_get_base_algorithm + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_nonce_length + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_algorithm + 0x00000000 0xc1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_tag_length + 0x00000000 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_final_checks + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_get_kdf_alg + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.is_kdf_alg_supported + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_try_support + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_allows_free_form_secret_input + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_check_input_type + 0x00000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_seed + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_key + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_label + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_input + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_set_other_key + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_ecjpake_to_pms_input + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_copy_input + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_copy_output + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key_buffer_internal + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_wipe_tag_output_buffer + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_key_slot_with_policy + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_transparent_key_slot_with_policy + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_attributes + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_start_key_creation + 0x00000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_finish_key_creation + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_hash_setup + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_set_key + 0x00000000 0xc5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_psk_to_ms_input + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_mac_sign_setup + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_start_hmac + 0x00000000 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_mac_verify_setup + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_mac_compute + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute_internal + 0x00000000 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_asymmetric_encrypt + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_asymmetric_decrypt + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_cipher_encrypt_setup + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_cipher_decrypt_setup + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_cipher_abort + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_cipher_encrypt + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_cipher_decrypt + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_aead_encrypt + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_aead_decrypt + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_aead_encrypt_setup + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_aead_decrypt_setup + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_aead_verify + 0x00000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_free + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_init + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_can_do_hash + 0x00000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_can_do_cipher + 0x00000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_to_psa_error + 0x00000000 0x5a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_random_internal + 0x00000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_random_seed + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_init_subsystem + 0x00000000 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_unstructured_key_bit_size + 0x00000000 0xb5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_key_type_and_size_for_key_generation + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_allocate_buffer_to_slot + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_copy_key_material_into_slot + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_import_key_into_slot + 0x00000000 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_import_key + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_remove_key_data_from_memory + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_wipe_key_slot + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_fail_key_creation + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_destroy_key + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_key_attributes + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key_internal + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_export_key + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key_internal + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_copy_key + 0x00000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_abort + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_finish_internal + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_setup + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_try_support + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_set_maximum_capacity + 0x00000000 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup_kdf + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_clone + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_abort + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_setup + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_builtin + 0x00000000 0x9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_sign_hash + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_message_builtin + 0x00000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_internal + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_builtin + 0x00000000 0x99 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_verify_hash + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_message_builtin + 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_internal + 0x00000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_set_max_ops + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_get_max_ops + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_interruptible_set_max_ops + 0x00000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_start + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_sign_hash_start + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_complete + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_abort_internal + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_abort + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_start + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_verify_hash_start + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_complete + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_abort_internal + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_complete + 0x00000000 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_abort + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_abort + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_setup + 0x00000000 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_abort + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_setup + 0x00000000 0xc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_nonce_internal + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_lengths + 0x00000000 0x6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_abort + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_internal + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_integer_internal + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_get_capacity + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_set_capacity + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_production_parameters_are_default + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_integer + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_key + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_raw_builtin + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_key_agreement + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_raw_internal + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_internal + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_internal + 0x00000000 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_generate_key + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_ext + 0x00000000 0x1ca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_configure_entropy_sources + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_free + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_init + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_input_alloc + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_input_free + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_import_key + 0x00000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_update + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_verify + 0x00000000 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_compare + 0x00000000 0xad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_update + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_finish + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify + 0x00000000 0xa3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_message + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_start + 0x00000000 0xda esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_start + 0x00000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_set_iv + 0x00000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_nonce + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_update_ad + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_bytes + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_key_agreement + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_output_alloc + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_output_free + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_finish + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_compute + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_ecjpake_to_pms_read + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_finish + 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_prf_generate_next_block + 0x00000000 0x1d6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_prf_read + 0x00000000 0x11d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_message + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_encrypt + 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_decrypt + 0x00000000 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_complete + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_generate_iv + 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_update + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_finish + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt + 0x00000000 0x1d3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt + 0x00000000 0x189 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt + 0x00000000 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt + 0x00000000 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_generate_nonce + 0x00000000 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_update + 0x00000000 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_finish + 0x00000000 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_verify + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_bytes + 0x00000000 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_ecc_key_weierstrass_helper + 0x00000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_ecc_key_montgomery_helper + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_derived_key_internal + 0x00000000 0x10d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_key_ext + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_raw_key_agreement + 0x00000000 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_random + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .rodata.default_production_parameters + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .data.psa_interruptible_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .bss.global_data + 0x00000000 0x1fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_frame 0x00000000 0x1318 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_info 0x00000000 0xeea8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_abbrev 0x00000000 0x5b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_loc 0x00000000 0xaf97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_aranges + 0x00000000 0x670 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_ranges 0x00000000 0x720 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_line 0x00000000 0xdfa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_str 0x00000000 0x4358 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_setup + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_nonce + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_lengths + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update_ad + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_finish + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_abort + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.psa_aead_unpadded_locate_tag + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.psa_aead_setup + 0x00000000 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt_setup + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt_setup + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_nonce + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_lengths + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update_ad + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_finish + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_abort + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt + 0x00000000 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt + 0x00000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_frame 0x00000000 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_info 0x00000000 0x174f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_abbrev 0x00000000 0x3fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_loc 0x00000000 0x8a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_aranges + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_line 0x00000000 0xebc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_str 0x00000000 0xcd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_cipher_validate_values + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.psa_cipher_update_ecb + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_cipher_values_from_psa + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_cipher_info_from_psa + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.psa_cipher_setup + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_set_iv + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_update + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_finish + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_validate_values + 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.psa_cipher_update_ecb + 0x00000000 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_values_from_psa + 0x00000000 0x115 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_info_from_psa + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.psa_cipher_setup + 0x00000000 0x165 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt_setup + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt_setup + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_set_iv + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_update + 0x00000000 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_finish + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_abort + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt + 0x00000000 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_frame 0x00000000 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_info 0x00000000 0x153d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_abbrev 0x00000000 0x3c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_loc 0x00000000 0x9c7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_ranges 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_line 0x00000000 0x13f3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_str 0x00000000 0xbb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.psa_reset_key_attributes + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text.psa_reset_key_attributes + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_info 0x00000000 0x21e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_abbrev 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_line 0x00000000 0x30b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_str 0x00000000 0x39a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .literal.psa_driver_wrapper_export_public_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_get_key_buffer_size + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_export_public_key + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_get_builtin_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_info 0x00000000 0x4b9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_abbrev 0x00000000 0x1b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_loc 0x00000000 0x143 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_line 0x00000000 0x3f5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_str 0x00000000 0x536 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .literal.mbedtls_psa_ecp_load_representation + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_key + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_import_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_public_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_generate_key + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_sign_hash + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_load_public_part + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_verify_hash + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_key_agreement_ecdh + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.check_ecc_parameters + 0x00000000 0x106 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_representation + 0x00000000 0x135 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_key + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_import_key + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_public_key + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_generate_key + 0x00000000 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_sign_hash + 0x00000000 0x146 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_public_part + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_verify_hash + 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_key_agreement_ecdh + 0x00000000 0x12a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_info 0x00000000 0x1998 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_abbrev 0x00000000 0x36b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_loc 0x00000000 0xc1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_line 0x00000000 0x125c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_str 0x00000000 0xcd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_hash_abort + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_setup + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_clone + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_update + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_finish + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_abort + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_setup + 0x00000000 0x1ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_clone + 0x00000000 0xd3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_update + 0x00000000 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_finish + 0x00000000 0x19b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_compute + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_info 0x00000000 0xfdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_abbrev 0x00000000 0x281 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_loc 0x00000000 0x731 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_line 0x00000000 0xc6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_str 0x00000000 0x8e9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.psa_hmac_abort_internal + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mac_init + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.cmac_setup + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_setup_internal + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_update_internal + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_hmac_finish_internal + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_mac_finish_internal + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_abort + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_mac_setup + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_update + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_finish + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_finish + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_abort_internal + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mac_init + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.cmac_setup + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_setup_internal + 0x00000000 0x257 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_update_internal + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_hmac_finish_internal + 0x00000000 0x176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_mac_finish_internal + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_abort + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_mac_setup + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_update + 0x00000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_finish + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_finish + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_compute + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_frame 0x00000000 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_info 0x00000000 0x1820 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_abbrev 0x00000000 0x439 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_loc 0x00000000 0x88e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_line 0x00000000 0x1206 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_str 0x00000000 0xbfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.rsa_pss_expected_salt_len + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_check_rsa_key_byte_aligned + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_rsa_oaep_set_padding_mode + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_md_get_size_from_type + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_rsa_decode_md_type + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_load_representation + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_key + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_import_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_public_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_generate_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_sign_hash + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_verify_hash + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_encrypt + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_decrypt + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_read_exponent + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.rsa_pss_expected_salt_len + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_check_rsa_key_byte_aligned + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_oaep_set_padding_mode + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_md_get_size_from_type + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_decode_md_type + 0x00000000 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_load_representation + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_key + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_import_key + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_public_key + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_generate_key + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_sign_hash + 0x00000000 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_verify_hash + 0x00000000 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_encrypt + 0x00000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_decrypt + 0x00000000 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_frame 0x00000000 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_info 0x00000000 0x19c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_abbrev 0x00000000 0x3dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_loc 0x00000000 0x9a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_line 0x00000000 0x13b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_str 0x00000000 0xaba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_extend_key_usage_flags + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_key_slots_initialized + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_load_persistent_key_into_slot + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_is_valid_key_id + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot_in_memory + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_initialize_key_slots + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_wipe_all_key_slots + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_reserve_free_key_slot + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_unregister_read + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_unregister_read_under_mutex + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_open_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_close_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_purge_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.mbedtls_psa_get_stats + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_extend_key_usage_flags + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_key_slots_initialized + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_load_persistent_key_into_slot + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_is_valid_key_id + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot_in_memory + 0x00000000 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_initialize_key_slots + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_wipe_all_key_slots + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_reserve_free_key_slot + 0x00000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_unregister_read + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_unregister_read_under_mutex + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_validate_key_location + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_validate_key_persistence + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_open_key + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_close_key + 0x00000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_purge_key + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.mbedtls_psa_get_stats + 0x00000000 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .bss.global_data + 0x00000000 0x504 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_frame 0x00000000 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_info 0x00000000 0xe91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_abbrev 0x00000000 0x42e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_loc 0x00000000 0xad6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_aranges + 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_ranges 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_line 0x00000000 0x13d5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_str 0x00000000 0x94d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_crypto_storage_get_data_length + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.check_magic_header + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_crypto_storage_load + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_is_key_present_in_storage + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_crypto_storage_store + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_destroy_persistent_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_format_key_data_for_storage + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_parse_key_data_from_storage + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_save_persistent_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_free_persistent_key_data + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_load_persistent_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_its_identifier_of_slot + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_get_data_length + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .rodata 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.check_magic_header + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_load + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_is_key_present_in_storage + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_crypto_storage_store + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_destroy_persistent_key + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_format_key_data_for_storage + 0x00000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_parse_key_data_from_storage + 0x00000000 0x156 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_save_persistent_key + 0x00000000 0x69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_free_persistent_key_data + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_load_persistent_key + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_frame 0x00000000 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_info 0x00000000 0x1192 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_abbrev 0x00000000 0x391 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_loc 0x00000000 0xa5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_aranges + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_line 0x00000000 0x101e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_str 0x00000000 0x73f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_its_fill_filename + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_read_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_get_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_get + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_set + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_remove + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_fill_filename.str1.4 + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_fill_filename + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_read_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_read_file + 0x00000000 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_get_info + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_get + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_set.str1.4 + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_set + 0x00000000 0xf1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_remove + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_info 0x00000000 0x1269 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_abbrev 0x00000000 0x337 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_loc 0x00000000 0x534 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_ranges 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_line 0x00000000 0xa25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_str 0x00000000 0x855 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.asn1_get_nonzero_mpi + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.myrand + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_import + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export_raw + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_write_pubkey + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export_crt + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_write_key + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_set_padding + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_sign_no_mode_check + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_sign_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_parse_key + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_gen_key + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_copy + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_self_test + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.asn1_get_nonzero_mpi + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.myrand 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_import + 0x00000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export_raw + 0x00000000 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export + 0x00000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_write_pubkey + 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export_crt + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_write_key + 0x00000000 0x1a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_set_padding + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_get_padding_mode + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_get_md_alg + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_sign_no_mode_check + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_sign_ext + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_parse_key + 0x00000000 0x1b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_gen_key + 0x00000000 0x248 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_copy + 0x00000000 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .rodata.mbedtls_rsa_self_test.str1.4 + 0x00000000 0x3b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .rodata 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_self_test + 0x00000000 0x2bf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .literal.esp_sha_lock_engine + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_lock_engine + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.ctr_drbg_self_test_entropy + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_write_seed_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update_seed_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_self_test + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.ctr_drbg_self_test_entropy + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_prediction_resistance + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_entropy_len + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_nonce_len + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_reseed_interval + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_write_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_write_seed_file + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_update_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update_seed_file + 0x00000000 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_self_test.str1.4 + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_self_test + 0x00000000 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss.test_offset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_nopr + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_pr + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.pers_nopr + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.pers_pr + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_nopr + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_pr + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.ecdh_init_internal + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_setup_internal + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_read_params_internal + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_read_public_internal + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_get_params_internal + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_make_params_internal + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.ecdh_make_public_internal + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_setup + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_make_params + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_read_params + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_get_params + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_make_public + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_read_public + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_grp_id + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_init_internal + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_setup_internal + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_read_params_internal + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_read_public_internal + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_get_params_internal + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_can_do + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_make_params_internal + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.ecdh_make_public_internal + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_get_grp_id + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_setup + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_make_params + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_read_params + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_get_params + 0x00000000 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_make_public + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_read_public + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdsa_sign + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_sign_det_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_verify + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_genkey + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_from_keypair + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign_det_ext + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_verify + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_genkey + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_from_keypair + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.self_test_rng + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_grp_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_tls_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_name + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_point_read_string + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_point_write_binary + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_point + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_write_point + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group_id + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_write_group + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.self_test_point + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_keypair_base + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_keypair + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_set_public_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_read_key + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_write_key_ext + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_write_public_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_keypair_calc_public + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_export + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_self_test + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_rng + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_adjust_exponent + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_grp_id + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_tls_id + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_name + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_point_read_string + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_point_write_binary + 0x00000000 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_point + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_write_point + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group_id + 0x00000000 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_write_group + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.self_test_point.str1.4 + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_point + 0x00000000 0x10b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_keypair_base + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_keypair + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_key + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_set_public_key + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_read_key + 0x00000000 0x152 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_write_key_ext + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_write_public_key + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_keypair_calc_public + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_keypair_get_group_id + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_export + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.mbedtls_ecp_self_test.str1.4 + 0x00000000 0x38d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_self_test + 0x00000000 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .data.state$0 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .literal.entropy_dummy_source + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test_gather + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_manual + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_gather + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_write_seed_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_seed_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_self_test + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test_check_bits + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.entropy_dummy_source + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test_gather + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_manual + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_gather + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_write_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_write_seed_file + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_update_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_seed_file + 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_source_self_test.str1.4 + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test + 0x00000000 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_self_test.str1.4 + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_self_test + 0x00000000 0x112 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.hmac_drbg_self_test_entropy + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_seed + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_write_seed_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_update_seed_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_self_test + 0x00000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.hmac_drbg_self_test_entropy + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_seed + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_prediction_resistance + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_entropy_len + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_reseed_interval + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_write_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_write_seed_file + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_update_seed_file.str1.4 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_update_seed_file + 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_self_test.str1.4 + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_self_test + 0x00000000 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss.test_offset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_nopr + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_nopr + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_pr + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_pr + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.oid_parse_number + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_subidentifier_encode_into + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_x520_attr_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_x509_ext_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_ext_key_usage_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_certificate_policies_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_sig_alg_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_cipher_alg_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_md_alg_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_md_hmac_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_pkcs12_pbe_alg_from_asn1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_attr_short_name + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_x509_ext_type + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_extended_key_usage + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_certificate_policies + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_sig_alg_desc + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_sig_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_sig_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_pk_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_ec_grp + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_ec_grp_algid + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_cipher_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_md_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_md_hmac + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_pkcs12_pbe_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_numeric_string + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_from_numeric_string + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_parse_number + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_subidentifier_num_bytes + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_subidentifier_encode_into + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_x520_attr_from_asn1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_x509_ext_from_asn1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_ext_key_usage_from_asn1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_certificate_policies_from_asn1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_sig_alg_from_asn1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_cipher_alg_from_asn1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_md_alg_from_asn1 + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_md_hmac_from_asn1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_pkcs12_pbe_alg_from_asn1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_attr_short_name + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_x509_ext_type + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_extended_key_usage + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_certificate_policies + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_sig_alg_desc + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_sig_alg + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_sig_alg + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_pk_alg + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_ec_grp + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_ec_grp_algid + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_cipher_alg + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_md_alg + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_md_hmac + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_pkcs12_pbe_alg + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.mbedtls_oid_get_numeric_string.str1.4 + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_numeric_string + 0x00000000 0xe5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_from_numeric_string + 0x00000000 0x198 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_pkcs12_pbe_alg + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_md_hmac + 0x00000000 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_cipher_alg + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_sig_alg + 0x00000000 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_certificate_policies + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_ext_key_usage + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x509_ext + 0x00000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x520_attr_type + 0x00000000 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .literal.esp_wifi_ftm_get_report_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_resp_set_offset_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_config_channel_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_channel_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_bw_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_aid_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_negotiated_phymode_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_inactive_time_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_aid_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_netstack_buf_cb_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_send_deauth_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_end_session_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_init_state + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_is_stop_in_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_lock + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_unlock + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_completed + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_inactive_time_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config_local$part$5 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config_default + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_current_ap_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_ap_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_cacl_mac + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_rssi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_station_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_deauth + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_register_user_ie_manufacturer_recv_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_unregister_user_ie_manufacturer_recv_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_set_user_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_user_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_check_chan_param + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_deinit_in_caller_task + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_in_caller_task + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_osi_ready + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_osi_funcs_register + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_osi_funcs_md5_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_crypto_funcs_md5_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_wifi_type_md5_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_esp_wifi_md5_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_esp_wifi_he_md5_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_wifi_he_type_md5_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.net80211_softap_funcs_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.net80211_funcs_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.net80211_funcs_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_init_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deinit_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_initiate_session + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restart + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_connect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_disconnect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_clear_fast_connect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deauth_sta + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_promiscuous_scan_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.get_total_scan_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_records + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_record + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_clear_ap_list + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_list + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_connectionless_module_set_wake_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ps + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ps + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_protocol + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_protocol + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_11b_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_espnow_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_80211_tx_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_bandwidth + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_bandwidth + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_home_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_country + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_country_code + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_country + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_country_code + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mac + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mac + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_ap_info + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_ctrl_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_ctrl_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_rx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_storage + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_rxcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_sta_ip + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_auto_connect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_auto_connect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restore + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_event_post + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_mesh_event_post + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_disable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_max_tx_power + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_max_tx_power + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_event_mask + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_event_mask + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_rx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant_gpio + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant_gpio + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_fix_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_fix_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sta_rx_probe_req + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ipc_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_end_session + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_get_report + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_resp_set_offset + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .wifislpiram.42.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_level + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_mod + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_log + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_ioctl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_configure_wake_window + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_force_wakeup_acquire + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_force_wakeup_release + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_on_coex_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_on_coex_schm_phase + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_update_listen_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_update_light_sleep_default_params + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sleep_delay_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_keep_alive_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_beacon_monitor_configure + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_netstack_buf_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_config_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_issue_disconnect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_improve_contention_ability + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_bandwidth + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_aid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_aid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_negotiated_phymode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_tsf_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_tx_done_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_inactive_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_inactive_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_statis_dump + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_spp_amsdu + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_disable_pmf_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_phy_apply_phy_init_data + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_publish_service + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_subscribe_service + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_send_followup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_datapath_req + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_datapath_resp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_datapath_end + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_mesh_reg_rxcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ap_assoc_expire + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_ap_assoc_expire + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_router_bssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_router_bssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_beacon_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_beacon_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_map_deauth + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_sta_disassoc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_info + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_ie_len + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_record + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_record + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_get + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_get + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_allow_root_conflicts + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_root_conflicts_allowed + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_monitor_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_monitor_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_funcs_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_key_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_ap_records + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_info + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_record + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_clear_parent_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_rssi_threshold_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_rssi_threshold_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_roots_found + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_storage + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_switch_channel_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_active_duty_cycle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_active_duty_cycle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_network_duty_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_network_duty_cycle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_network_duty_cycle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_running_active_duty_cycle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_ps_get_ext_duty + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_ps_duty_signaling + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_non_mesh_connections + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_dynamic_cs + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_eb_tx_status_success_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_get_report_local + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_resp_set_offset_local + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_config_channel_local + 0x00000000 0x82 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_channel_local + 0x00000000 0xb8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_bw_local + 0x00000000 0xce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_aid_local + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_negotiated_phymode_local + 0x00000000 0x61 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_inactive_time_local + 0x00000000 0x77 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_end_session_local + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_inactive_time_local + 0x00000000 0x84 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_config + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_config_default + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_current_ap_id + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_ap_check + 0x00000000 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_cacl_mac + 0x00000000 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_rssi + 0x00000000 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_get_station_num + 0x00000000 0x63 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_register_user_ie_manufacturer_recv_cb + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_unregister_user_ie_manufacturer_recv_cb + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_set_user_ie + 0x00000000 0x18e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_get_user_ie + 0x00000000 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.wifi_get_user_ie + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_osi_ready + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_osi_funcs_md5_check + 0x00000000 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_crypto_funcs_md5_check + 0x00000000 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_wifi_type_md5_check + 0x00000000 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_esp_wifi_md5_check + 0x00000000 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_esp_wifi_he_md5_check + 0x00000000 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_wifi_he_type_md5_check + 0x00000000 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_initiate_session + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restart + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_disconnect + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_clear_fast_connect + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_promiscuous_scan_start + 0x00000000 0xac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.get_total_scan_time + 0x00000000 0xe2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_start + 0x00000000 0x1a0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_stop + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_num + 0x00000000 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_records + 0x00000000 0xb0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_record + 0x00000000 0x82 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_clear_ap_list + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ap_get_sta_list + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_connectionless_module_set_wake_interval + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ps + 0x00000000 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ps + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_protocol + 0x00000000 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_protocol + 0x00000000 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_11b_rate + 0x00000000 0x102 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_espnow_rate + 0x00000000 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_80211_tx_rate + 0x00000000 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_bandwidth + 0x00000000 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_bandwidth + 0x00000000 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_channel + 0x00000000 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_home_channel + 0x00000000 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_channel + 0x00000000 0x7c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_country + 0x00000000 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_country_code + 0x00000000 0xc6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_country + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_country_code + 0x00000000 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_mac + 0x00000000 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_ap_info + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_filter + 0x00000000 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_filter + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_ctrl_filter + 0x00000000 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_ctrl_filter + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous + 0x00000000 0x84 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_rx_cb + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous + 0x00000000 0x41 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_storage + 0x00000000 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_auto_connect + 0x00000000 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_auto_connect + 0x00000000 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restore + 0x00000000 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie + 0x00000000 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie_cb + 0x00000000 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_max_tx_power + 0x00000000 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_max_tx_power + 0x00000000 0x4b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_event_mask + 0x00000000 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi + 0x00000000 0x9c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_config + 0x00000000 0xc6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_rx_cb + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant_gpio + 0x00000000 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant_gpio + 0x00000000 0x53 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant + 0x00000000 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant + 0x00000000 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_fix_rate + 0x00000000 0x86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_fix_rate + 0x00000000 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_sta_rx_probe_req + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_end_session + 0x00000000 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_get_report + 0x00000000 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_resp_set_offset + 0x00000000 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_log_mod + 0x00000000 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_log + 0x00000000 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_ioctl + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_configure_wake_window + 0x00000000 0x8a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_force_wakeup_acquire + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_force_wakeup_release + 0x00000000 0x67 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_update_listen_interval + 0x00000000 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_update_light_sleep_default_params + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_sleep_delay_time + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_keep_alive_time + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_beacon_monitor_configure + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_config_channel + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_improve_contention_ability + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_channel + 0x00000000 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_bandwidth + 0x00000000 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_aid + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_negotiated_phymode + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_tsf_time + 0x00000000 0xa7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_tx_done_cb + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_inactive_time + 0x00000000 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_inactive_time + 0x00000000 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_statis_dump + 0x00000000 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_spp_amsdu + 0x00000000 0x7d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_disable_pmf_config + 0x00000000 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_phy_apply_phy_init_data + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_publish_service + 0x00000000 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_subscribe_service + 0x00000000 0x78 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_send_followup + 0x00000000 0x6c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_datapath_req + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_datapath_resp + 0x00000000 0x6c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_datapath_end + 0x00000000 0x6c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_mesh_reg_rxcb + 0x00000000 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ap_assoc_expire + 0x00000000 0x7c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_ap_assoc_expire + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_router_bssid + 0x00000000 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_router_bssid + 0x00000000 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_beacon_interval + 0x00000000 0x57 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_beacon_interval + 0x00000000 0xa0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_sta_disassoc + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_cur_ap_info + 0x00000000 0xea C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_ie_len + 0x00000000 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_cur_ap_record + 0x00000000 0x180 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_record + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_init + 0x00000000 0x94 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_deinit + 0x00000000 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_set + 0x00000000 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_get + 0x00000000 0xac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_roots_set + 0x00000000 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_roots_get + 0x00000000 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_allow_root_conflicts + 0x00000000 0x84 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_is_root_conflicts_allowed + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_parent_monitor_config + 0x00000000 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_monitor_config + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ie_crypto_funcs_internal + 0x00000000 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ie_crypto_key_internal + 0x00000000 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_ap_records + 0x00000000 0x16e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_get_cur_ap_info + 0x00000000 0x109 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_get_cur_ap_record + 0x00000000 0x1d0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_parent_candidate + 0x00000000 0x82 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_clear_parent_candidate + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_candidate + 0x00000000 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_rssi_threshold_internal + 0x00000000 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_rssi_threshold_internal + 0x00000000 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_is_roots_found + 0x00000000 0x55 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_storage + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_switch_channel_internal + 0x00000000 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_active_duty_cycle + 0x00000000 0xfc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_active_duty_cycle + 0x00000000 0x81 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_network_duty_internal + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_network_duty_cycle + 0x00000000 0xbc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_network_duty_cycle + 0x00000000 0x9d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_ps_get_ext_duty + 0x00000000 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_ps_duty_signaling + 0x00000000 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_non_mesh_connections + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_dynamic_cs + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_eb_tx_status_success_internal + 0x00000000 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.token$14702 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.sort_bss$14554 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.old_scan_id$13747 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.45 + 0x00000000 0x41 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.44 + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.43 + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_fetch_num + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_sort_num + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_sort_bss + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.40 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.39 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.36 + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.35 + 0x00000000 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.34 + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.33 + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.32 + 0x00000000 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.31 + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.30 + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.29 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.28 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.27 + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.26 + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.25 + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_verbose.24 + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_verbose.23 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.22 + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.15 + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.14 + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_esp_wifi_he_md5 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_he_type_md5 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_esp_wifi_md5 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_type_md5 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_crypto_funcs_md5 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_osi_funcs_md5 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.ieee80211_freedom_inside_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query_resp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query_req + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_recv_sa_query_resp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_recv_sa_query_req + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_rate_ref_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_freedom_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_user_ie_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifattach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifdetach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_create_nan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_nan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_softap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_sta + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_recycle_rx_pkt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_get_rand_macaddr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_get_rand_macaddr_keep_oui + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_elem_match + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ie_match + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_elem + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ext_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ext_elem + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_setup_pmf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_create_softap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_create_sta + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_mode_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_is_robust_mgmt_frm + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.wifi_recycle_rx_pkt + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.wifi_get_rand_macaddr + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.wifi_get_rand_macaddr_keep_oui + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ie_match + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_elem + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ext_ie + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ext_elem + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata.ieee80211_opcap + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_remote + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_git + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_crypto_attach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_available + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_setkey + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_encap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_decap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_aes_128_cmac_encrypt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_aes_128_cmac_decrypt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_gmac_decrypt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_get_cipher_mic_len + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_available + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_setkey + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.wifi_log + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_hmac_rxtx_statis_dump + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_hmac_statis_dump + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_hmac_rxtx_statis_dump + 0x00000000 0x297 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_hmac_statis_dump + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.14 + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.13 + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.12 + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.11 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.10 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.9 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.8 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.7 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.6 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.5 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.4 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.3 + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.2 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.unlikely.is_non_esp_oui + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.unlikely.is_esp_manufacturer_oui + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_is_action_category_robust + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_beacon_txcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_send_beacon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_try_sa_query + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_sa_query_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_ps_txcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .wifi0iram.46.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_free_beacon_eb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_send_beacon_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_delete_ptk + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_attach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_deliver_data + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_data_txcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_ap_reg_rxcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_rx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_auth_open + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_recv_ctl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_sa_query_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_try_sa_query_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_recv_mgmt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_input + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.add_mic_ie_bip + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .wifi0iram.46 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .text.ieee80211_hostapd_data_txcb + 0x00000000 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.APRecvBcnStartTick + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + COMMON 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.addba_get_rap_from_private + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_stop_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_tx_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_response_txcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_stop_age_timer$part$0 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_body + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_response + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_attach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_free_rx_ba_index + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_rx_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_delba + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_alloc_rx_ba_index + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_rx_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_request + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_deattach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_cal_tx_pps + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_request + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.27.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_dispatch_movement + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.29.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.31.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.33.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_age_bss + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_start_age_timer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_age_all + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_process_multicast_address_qos_frame + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.37.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_recv_bar + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_cleanup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_parse_htcap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_has_ht40_bss + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_update_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updatehtcap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updateparams + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_htrates + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_basic_htrates + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_vendor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_body + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_vendor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_action_output + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_delba + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_addba + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap1 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap_amsdu + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_cal_tx_pps + 0x00000000 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_ampdu_stop + 0x00000000 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_ie_vendor_esp_head + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_mesh_group + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_simple_pair + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_freq_annon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_now + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_ssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_manufacturer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_mesh_group + 0x00000000 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_simple_pair + 0x00000000 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_freq_annon + 0x00000000 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_now + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_ssid + 0x00000000 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.wpa_cipher + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.rsn_cipher + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_deliver_data + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_decap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_support_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_11b_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_rates + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_set_max_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_lr_only + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_phy_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_lr_rates + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_alloc_challenge + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_beacon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_wpa + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_rsn_cipher_priority + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_better_rsn_pairwise_cipher + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_amsdu_negotiate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_rsn + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_ht_cipher + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_wapi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_action + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_rateset + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_deliver_data + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_is_11b_rate + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.wifi_wps_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_get + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_pmk_is_valid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_set_config_local_2 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.current_task_is_wifi_task + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.adc2_wifi_acquire + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.adc2_wifi_release + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_get_reconnect_policy + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_2nd_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_phy_2nd_chan_is_valid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_bw + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_phy_2nd_chan_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_save_ap_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.print_sta_pmk + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_connect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_disconnect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_disconnect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_scan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mac_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_filter_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_ctrl_filter_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_set_ap_num_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_auto_connect_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_softap_max_support_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_softap_set_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_macaddr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_post_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_disable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_reset_mac + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.34.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.36.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_txq_empty + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_sw_txq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mode_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.esp_wifi_internal_set_baw + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_menuconfig_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_crypto_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wpa_crypto_funcs_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_crypto_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_init_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_start_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_connect_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_disconnect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_disconnect_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_start_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_stop_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_to_ant_type + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.cipher_map_net80211_to_public_cipher + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_clear_ap_list_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_copy_ap_record + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_list_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_record_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_info_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_sta_list_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_protocol_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_protocol_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_bw_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_bw_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_channel_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_home_channel_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_channel_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_chan_range + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ps_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_country + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_country + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restart_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_rxcb_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restore_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_cb_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_max_tpw + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_event_mask + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_csi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_csi_set_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_config_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifirxiram.84.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant_gpio + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_fix_rate_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deauth_sta_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_is_started + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_start_flag + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_is_started + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_enable_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_disable_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_log_mod_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_type_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_status_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ipc_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_appie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_appie_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_cb_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_internal_ioctl_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_tsf_time_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ftm_start_initiator_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_send_mgmt_frame + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_rssi_threshold + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_register_mgmt_frame + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_roc_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_set_config_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_config_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_publish_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_subscribe_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_followup_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ndp_req_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ndp_resp_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ndp_end_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_action_tx_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_configure_wake_window_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_disable_pmf_config_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ap_remove_sta_node_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ap_sta_sae_auth_done_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_force_wakeup_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_update_listen_interval_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_on_coex_start_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_on_coex_schm_phase_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_set_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_get_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_set_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_get_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_init_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_deinit_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_map_deauth_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_set_beacon_interval_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_assoc_expire_set_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_set_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_get_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_root_conflicts_set_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_funcs_set_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_key_set_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_set_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_get_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_set_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_clear_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_get_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_set_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_get_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_is_roots_found_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_switch_channel_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_cycle_set_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_cycle_get_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_ext_get_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_act_duty_signaling_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_dynamic_cs_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_stop + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_start + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ioctl_ht2040_get + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ioctl_ht2040_set + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.adc2_wifi_acquire + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.adc2_wifi_release + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_phy_2nd_chan + 0x00000000 0x41 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_phy_2nd_chan_is_valid + 0x00000000 0xa1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_phy_mode + 0x00000000 0x321 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_phy_2nd_chan_process + 0x00000000 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.print_sta_pmk + 0x00000000 0x1cc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_sta_scan + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_mac_process + 0x00000000 0x19a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_filter_process + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_ctrl_filter_process + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_set_ap_num_process + 0x00000000 0x4e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_auto_connect_process + 0x00000000 0x78 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.chip_post_deinit + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_process + 0x00000000 0x92 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.esp_wifi_internal_set_baw + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_crypto_deinit + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_hmac_deinit + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_lmac_deinit + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_disconnect + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_scan_start_process + 0x00000000 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_scan_stop_process + 0x00000000 0x39 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ant_to_ant_type + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.cipher_map_net80211_to_public_cipher + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_clear_ap_list_process + 0x00000000 0x5c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_copy_ap_record + 0x00000000 0x105 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_ap_list_process + 0x00000000 0x216 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_ap_record_process + 0x00000000 0x90 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_ap_info_process + 0x00000000 0x17a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_sta_list_process + 0x00000000 0x168 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_protocol_process + 0x00000000 0xf1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_protocol_process + 0x00000000 0x8f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_bw_process + 0x00000000 0xfa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_bw_process + 0x00000000 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_channel_process + 0x00000000 0x162 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_home_channel_process + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_channel_process + 0x00000000 0x41 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_chan_range + 0x00000000 0x99 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ps_process + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_country + 0x00000000 0x20c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_country + 0x00000000 0x69 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_restart_process + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_restore_process + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_vnd_ie_process + 0x00000000 0x115 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_vnd_ie_cb_process + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_max_tpw + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_event_mask + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_csi + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_csi_set_config + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ant_config_check + 0x00000000 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifirxiram.84 + 0x00000000 0xa9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ant + 0x00000000 0x4f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ant_gpio + 0x00000000 0xb7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_fix_rate_process + 0x00000000 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_start_flag + 0x00000000 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wpa2_ent_enable_process + 0x00000000 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wpa2_ent_disable_process + 0x00000000 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_log_mod_process + 0x00000000 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_type_process + 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_status_process + 0x00000000 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_cb_process + 0x00000000 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_internal_ioctl_process + 0x00000000 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_tsf_time_process + 0x00000000 0x78 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ftm_start_initiator_process + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_rssi_threshold + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_roc_process + 0x00000000 0xd8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_nan_publish_process + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_nan_subscribe_process + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_nan_followup_process + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ndp_req_process + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ndp_resp_process + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ndp_end_process + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_action_tx_process + 0x00000000 0xf4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_configure_wake_window_process + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_disable_pmf_config_process + 0x00000000 0x17a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_force_wakeup_process + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_update_listen_interval_process + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_set_progress + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_get_progress + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_roots_ie_set_progress + 0x00000000 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_roots_ie_get_progress + 0x00000000 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_init_progress + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_deinit_progress + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_sta_disassoc + 0x00000000 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_sta_disassoc_progress + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_set_beacon_interval_progress + 0x00000000 0x9b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_assoc_expire_set_progress + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_router_bssid_set_progress + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_router_bssid_get_progress + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_root_conflicts_set_progress + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_crypto_funcs_set_progress + 0x00000000 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_crypto_key_set_progress + 0x00000000 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_monitor_set_progress + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_monitor_get_progress + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_set_progress + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_clear_progress + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_get_progress + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_rssi_threshold_set_progress + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_rssi_threshold_get_progress + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_is_roots_found_progress + 0x00000000 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_switch_channel_progress + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ps_duty_cycle_set_process + 0x00000000 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ps_duty_ext_get_process + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_act_duty_signaling_process + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_dynamic_cs_process + 0x00000000 0x9a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.CSWTCH$225 + 0x00000000 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.127 + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.126 + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.125 + 0x00000000 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data.g_mesh_root_conflicts_allowed + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data.map_assoc_expire + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.mesh_router_bssid + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.116 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.115 + 0x00000000 0x51 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.114 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.113 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.112 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.111 + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.110 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.109 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.105 + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.104 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.99 + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.98 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.97 + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data.s_ioctl_table + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.96 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.95 + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.91 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.90 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.89 + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.88 + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.87 + 0x00000000 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.86 + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.85 + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.83 + 0x00000000 0x45 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.82 + 0x00000000 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.81 + 0x00000000 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.80 + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.79 + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.78 + 0x00000000 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.77 + 0x00000000 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.76 + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.75 + 0x00000000 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.74 + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.73 + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.72 + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.71 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.70 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.69 + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.68 + 0x00000000 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.67 + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.43 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.14 + 0x00000000 0xac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.13 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.10 + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.9 + 0x00000000 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_public_action_recv_mesh_awake + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_mesh_quick_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_mesh_quick_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_update_beacon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_fully_associated + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.is_esp_mesh_assoc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_public_action_send_mesh_awake + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_public_action_recv_mesh_awake + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_mesh_quick_init + 0x00000000 0x1b2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_mesh_quick_deinit + 0x00000000 0xb2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_vnd_mesh_update_beacon + 0x00000000 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_vnd_mesh_fully_associated + 0x00000000 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .rodata.str1.1 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .rodata 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_public_action_send_mesh_awake + 0x00000000 0x190 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .bss.esp_mesh_ps_duty + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .bss.esp_mesh_appie + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.nan_mgmt_txcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_random_word + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_random_byte + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_tsf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_is_in_dw + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_update_tsf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_action_frames_queued + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_flush_action_q + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_clust_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_disc_enable_rx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_disc_disable_rx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.wifi_nan_reg_rxcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_set_update_sdf_pending + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_set_trc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_input + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_rx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_transmit_bcn + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_alloc_beacon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_alloc_sdf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_alloc_action + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_post_event + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_transmit_action + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_tx_action_frame + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_tx_queued_action_frames + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_set_config_local + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_mgmt_txcb + 0x00000000 0xa2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_get_random_word + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_get_random_byte + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_is_in_dw + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_update_tsf + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_action_frames_queued + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_flush_action_q + 0x00000000 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_disc_enable_rx + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_disc_disable_rx + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_input + 0x00000000 0x3ec C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_transmit_bcn + 0x00000000 0xc2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.str1.1 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_alloc_beacon + 0x00000000 0x18a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_alloc_sdf + 0x00000000 0x17f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_alloc_action + 0x00000000 0x17f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_transmit_action + 0x00000000 0x93 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_tx_action_frame + 0x00000000 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_tx_queued_action_frames + 0x00000000 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_start + 0x00000000 0x110 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_stop + 0x00000000 0xca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.19 + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.18 + 0x00000000 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.17 + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.16 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.15 + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.14 + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.13 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.12 + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.11 + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.10 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.9 + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.8 + 0x00000000 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_warning.7 + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.5 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_debug.4 + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .bss.s_nan_rx_enabled + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_NETWORK_ID + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_STANDARD_BSSID + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_ACTION_OUI + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_STANDARD_OUI + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_dp_clear_tmp_data + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_ndp_resp_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.ndc_txop_end + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.ndc_txop_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .wifi0iram.8.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_in_ndc_slot + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_is_peer_available + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_alloc_time_slots + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_get_chan_bitmap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_allocate_crbs + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_alloc_conditional + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_reset_avail_flags_sdf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_avail_entries_len + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_add_entry + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_construct_availability + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_send_indication_event + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_send_confirm_event + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_send_terminated_event + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_node_available + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_alloc_node + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_remove_node + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .wifi0iram.10.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_get_peer_ndp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_get_peer_ndl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_alloc_ndp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_alloc_ndl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_delete_peer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_setup_peer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_confirm_peer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_construct_device_caps + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_post_tx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_ndp_resp_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_confirm + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_terminate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_resp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_req + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_confirm + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_terminate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_resp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_req + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_ndpa + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_ndla + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_elem_container + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_dev_caps + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_chan_from_bitmap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_time_bitmap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_ndca + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_parse_avail_entries + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_availability + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_req + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_resp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_confirm + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_terminate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_get_attr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_rx_naf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_naf_txcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_datapath_send_req + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_datapath_send_resp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_datapath_end + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_init_availability + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_indicate_ndc_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_indicate_faw_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_schedule_next_faw + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_schedule_ndc_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_ndp_resp_timeout + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.ndc_txop_end + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.ndc_txop_start + 0x00000000 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_alloc_time_slots + 0x00000000 0x47 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_get_chan_bitmap + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_allocate_crbs + 0x00000000 0x134 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata 0x00000000 0x3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_alloc_conditional + 0x00000000 0xfc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_reset_avail_flags_sdf + 0x00000000 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_avail_entries_len + 0x00000000 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_add_entry + 0x00000000 0xb4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_construct_availability + 0x00000000 0x107 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_send_indication_event + 0x00000000 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_send_terminated_event + 0x00000000 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_node_available + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_alloc_node + 0x00000000 0xf4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .wifi0iram.10 0x00000000 0x4b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_get_peer_ndp + 0x00000000 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_get_peer_ndl + 0x00000000 0x83 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_alloc_ndp + 0x00000000 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_alloc_ndl + 0x00000000 0x8c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_setup_peer + 0x00000000 0xaa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_confirm_peer + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_construct_device_caps + 0x00000000 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_confirm + 0x00000000 0xc8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_terminate + 0x00000000 0xa3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_resp + 0x00000000 0x32e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_req + 0x00000000 0x19b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_confirm + 0x00000000 0x6c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_terminate + 0x00000000 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_resp + 0x00000000 0x9a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_req + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_ndpa + 0x00000000 0xdd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_ndla + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_elem_container + 0x00000000 0xe5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_dev_caps + 0x00000000 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_chan_from_bitmap + 0x00000000 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_time_bitmap + 0x00000000 0xc2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_ndca + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_parse_avail_entries + 0x00000000 0x116 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_availability + 0x00000000 0x171 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_req + 0x00000000 0x157 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_resp + 0x00000000 0x120 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_confirm + 0x00000000 0x92 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_terminate + 0x00000000 0x4b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_get_attr + 0x00000000 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_rx_naf + 0x00000000 0x17c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata.nan_rx_naf + 0x00000000 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_naf_txcb + 0x00000000 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_datapath_send_req + 0x00000000 0x204 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_datapath_send_resp + 0x00000000 0xaa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_datapath_end + 0x00000000 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_init_availability + 0x00000000 0x67 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_init + 0x00000000 0x65 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_deinit + 0x00000000 0x80 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_indicate_ndc_start + 0x00000000 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_indicate_faw_start + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_schedule_next_faw + 0x00000000 0xfb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_schedule_ndc_start + 0x00000000 0x86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.41 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.40 + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.39 + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.38 + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.37 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.36 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.35 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.34 + 0x00000000 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.33 + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.32 + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.31 + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.30 + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.29 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.28 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.27 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.26 + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.25 + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.24 + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.23 + 0x00000000 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.22 + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.21 + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.20 + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.19 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.18 + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.17 + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.16 + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.15 + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.11 + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_debug.7 + 0x00000000 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .bss.s_avail_seq + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.6 + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_info.5 + 0x00000000 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_info.4 + 0x00000000 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .data.g_opclass_chan_tbl + 0x00000000 0xd2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .data.g_def_2g_channels + 0x00000000 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_in_transit_event_hdlr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_schedule_next_dwstart + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_fill_dynamic_attr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_compare_mr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_update_amr_for_non_anchor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_common_dwstart_ops + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_common_dwend_ops + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_ndc_start_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_end_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_start_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_action_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_disc_bcn_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sync_bcn_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dwend_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_warmup_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_scan_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dwstart_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_is_ambtt_too_old$isra$0 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_update_tsf_from_bcn$isra$1 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_adjust_non_anchor_tsf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_recycle_rx_bcn$isra$2 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_stop_handler + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_init_event_hdlr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_update_bcn_stats + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_nms_event_hdlr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_nmns_event_hdlr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_started_event + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_scan_event_hdlr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_schedule_disc_bcn + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_am_event_hdlr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_master_event_hdlr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_handle_event_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_handle_event + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_warmup_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_scan_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dw_start_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dw_end_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_disc_bcn_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_sync_bcn_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_action_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_start_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_end_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_ndc_start_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_in_transit_event_hdlr + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_schedule_next_dwstart + 0x00000000 0x4b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_fill_dynamic_attr + 0x00000000 0x80 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_compare_mr + 0x00000000 0xa4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_update_amr_for_non_anchor + 0x00000000 0x21d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_common_dwstart_ops + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_common_dwend_ops + 0x00000000 0x157 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_ndc_start_timeout + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_faw_end_timeout + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_faw_start_timeout + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_action_timeout + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_disc_bcn_timeout + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sync_bcn_timeout + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_dwend_timeout + 0x00000000 0x63 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_warmup_timeout + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_scan_timeout + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_dwstart_timeout + 0x00000000 0xdb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_is_ambtt_too_old$isra$0 + 0x00000000 0x4e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_update_tsf_from_bcn$isra$1 + 0x00000000 0xce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_adjust_non_anchor_tsf + 0x00000000 0xae C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_recycle_rx_bcn$isra$2 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_stop_handler + 0x00000000 0x18f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_init_event_hdlr + 0x00000000 0x152 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_update_bcn_stats + 0x00000000 0xee C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_nms_event_hdlr + 0x00000000 0x18a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_nmns_event_hdlr + 0x00000000 0x157 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_send_started_event + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .rodata.str1.1 + 0x00000000 0xd1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_scan_event_hdlr + 0x00000000 0x419 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_schedule_disc_bcn + 0x00000000 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_am_event_hdlr + 0x00000000 0x398 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_master_event_hdlr + 0x00000000 0x19e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_handle_event_internal + 0x00000000 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_handle_event + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_deinit + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_stop + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .rodata.gNanSm + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .rodata_wlog_debug.4 + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .data.nan_state_str + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_prepare_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_all_wildcard_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_sdea + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_publish_sdf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_subscribe_sdf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_followup_sdf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_get_peer_svc_record + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_insert_peer_svc_record + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_discovery_result + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_replied_event + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_receive_event + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_static_sdfs_present + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_static_sdfs + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_solicited_publish + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_match_filters + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_parse_sdea + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_parse_dev_caps + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_parse_availability + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_service_type_diff + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_receive_ctrl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_rx_sdf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_get_service_idx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_get_service_by_index + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_get_service_by_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sdf_txcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_update_static_sdfs + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_tolower + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_compute_service_hash + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_start_publish_service + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_start_subscribe_service + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.cleanup_peer_list + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_cancel_service + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_services_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_services_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_followup_msg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata.str1.1 + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_prepare_filter + 0x00000000 0x7c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_all_wildcard_filter + 0x00000000 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_sdea + 0x00000000 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_publish_sdf + 0x00000000 0x1e2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_subscribe_sdf + 0x00000000 0x175 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_followup_sdf + 0x00000000 0xec C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_get_peer_svc_record + 0x00000000 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_insert_peer_svc_record + 0x00000000 0x63 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_discovery_result + 0x00000000 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_replied_event + 0x00000000 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_receive_event + 0x00000000 0x78 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_static_sdfs_present + 0x00000000 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_static_sdfs + 0x00000000 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_solicited_publish + 0x00000000 0xb4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_match_filters + 0x00000000 0x81 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_parse_sdea + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_parse_dev_caps + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_parse_availability + 0x00000000 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_service_type_diff + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_receive_ctrl + 0x00000000 0x2a8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_rx_sdf + 0x00000000 0xcd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_get_service_idx + 0x00000000 0x5d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_get_service_by_index + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_get_service_by_id + 0x00000000 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sdf_txcb + 0x00000000 0xa6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_update_static_sdfs + 0x00000000 0x126 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_tolower + 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_compute_service_hash + 0x00000000 0x86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_start_publish_service + 0x00000000 0x1ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_start_subscribe_service + 0x00000000 0x1b2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.cleanup_peer_list + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_cancel_service + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_services_init + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_services_deinit + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_followup_msg + 0x00000000 0xd6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.13 + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.12 + 0x00000000 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.11 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.10 + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.9 + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.8 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.7 + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.6 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.5 + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_debug.4 + 0x00000000 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + COMMON 0x00000000 0x4c4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.wifi_nvs_cfg_item_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_cfg_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_sta_restore + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_ap_restore + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_nvs_set_default_ssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_commit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_adjust_2nd_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_compare_cfg_diff + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_set_default_ssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_ssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_password + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_password + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_country + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_listen_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_load + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_restore + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get_sta_listen_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_set_sta_listen_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_reset_current_ap_info + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_sta_restore + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_ap_restore + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.ieee80211_nvs_set_default_ssid + 0x00000000 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_restore + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_set_sta_listen_interval + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.7 + 0x00000000 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.6 + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.add_appie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size$part$5 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx_is_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_reg_encap_amsdu_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_reg_netstack_buf_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_set_hmac_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.wifi_is_started + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.6.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_recycle_cache_eb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_empty_txq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.is_wapi_alloc_tx_buf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_wapi_alloc_tx_buf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.get_wifi_internal_state + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_copy_eb_header + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_adjust_head + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_adjust_last_length + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_length_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_setup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_tx_mgt_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.18.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_classify + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_rates + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_dsparams + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_xrates + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_probe_resp_app_ies + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_beacon_app_ies + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_assoc_resp_ies + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_assoc_req_ies + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_probe_req_ies + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_wme_param + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_csa + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_extcap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_size + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_setup_robust_mgmtframe + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_mgmt_output + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_getcapinfo + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_assoc_req_construct + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_assoc_resp_construct + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_auth_construct + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_get_robustmgtframe + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_deauth_construct + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_disassoc_construct + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifi0iram.36.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_search_node + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.5.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.7.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx_by_ref + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.10.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_mesh_tx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_pending_eb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_send_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_encap_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_amsdu + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_proberesp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_deauth + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_raw_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_raw_frame_sanity_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_80211_tx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_beacon_construct + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.59.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_nulldata + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifi0iram.19.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifi0iram.11.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_probereq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_mgmt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_proberesp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_deauth + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_beacon_alloc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_null_data + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_pm_tx_null_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_internal_tx_is_stop + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_reg_encap_amsdu_cb + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.wifi_is_started + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.get_wifi_internal_state + 0x00000000 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_amsdu_adjust_last_length + 0x00000000 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_vnd_ie_size + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_internal_tx_by_ref + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_mesh_tx + 0x00000000 0xa5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_raw_frame_sanity_check + 0x00000000 0x208 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_80211_tx + 0x00000000 0x150 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.53 + 0x00000000 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.52 + 0x00000000 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.51 + 0x00000000 0x45 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.50 + 0x00000000 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.49 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.48 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.47 + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.46 + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.45 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.44 + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_phy_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_type_get + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_mode_show + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_setup_ratetable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_set_user_sup_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .text.ieee80211_set_user_sup_rate + 0x00000000 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_psq_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_gpsq_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_cleanup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_find_max_bss + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_set_tim + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_head + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_tail + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_drop_one_pkt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_send_one_pkt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_is_buff_pkt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.pwrsave_flushq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_node_pwrsave + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_node_cleanup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_txcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_is_bufferable_mmpdu + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_cleanup + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_take_tail + 0x00000000 0x49 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_proto_attach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_gettid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_set_shortslottime + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_iserp_rateset + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_wme_initparams + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_wme_updateparams + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_mlme_connect_bss + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_iserp_rateset + 0x00000000 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_wme_initparams + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .rodata.rates$10306 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.get_country_chan_info + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_get_chan_info + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_is_40mhz_valid_bw + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .text.ieee80211_get_chan_info + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata.ieee80211_get_chan_info + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata_wlog_warning.3 + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_regdomain_max_tx_power + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_get_country + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_update_phy_country + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_scan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_connect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_add_countryie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_max_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_ap_max_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_min_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_ap_min_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_policy + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_in_range + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_is_active_scan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_max_tx_power + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_chan_num + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_policy + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .data.s_map 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_rfid_locp_recv_open + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv_close + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv_reset + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.register_ieee80211_rfid_locp_recv_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.unregister_ieee80211_rfid_locp_recv_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_open + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_close + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.register_ieee80211_rfid_locp_recv_cb + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.unregister_ieee80211_rfid_locp_recv_cb + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.scan_enter_oper_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.sta_update_owe_bssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_attach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_deattach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_apnum + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_pm_channel_op_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_flush_all_tx_buf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_cancel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_bssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_bssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_hidden_ssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_act_duration + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_pas_duration + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_home_chan_dwell_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_probe_ssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_probe_ssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_prefer_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_update_scan_history + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_build_chan_list + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_desChan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_type + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.cannel_scan_connect_state + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_check_hidden + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.scan_add_ssid_do + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.scan_add_ssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_reset_cipher_and_akm + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_profile_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.free_bss_info + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.clear_bss_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_done + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_next_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_enter_oper_channel_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_end + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_connect_state + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.check_bss_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_scan_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_scan_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_ht2040_coex + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_fill_wps_scan_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_owe_channel_info + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_validate_owe_scenarios + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_beacon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_get_apnum + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_pm_channel_op_cb + 0x00000000 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_add_bssid + 0x00000000 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_set_home_chan_dwell_time + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.cannel_scan_connect_state + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_connect_state + 0x00000000 0x53 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_set_scan_id + 0x00000000 0x57 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_get_scan_id + 0x00000000 0x53 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.71 + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.70 + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_is_action_category_robust + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_eapol_txdone_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_assoc_comeback + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_reg_eapol_txdone_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_sta_new_state + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .wifiextrairam.39.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_reg_rxcb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_michael_mic_failure + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_ft + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_open + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_shared + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_wme_standard_ac_to_esp_ac + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_wmeparams + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_rx_csa + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.reset_cs_thres + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_obss_scan_param + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_retry_assoc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_assoc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_ctl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_bip_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_process_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_is_wpa3_enabled + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_sae + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_mgmt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .wifirxiram.45.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .wifirxiram.51.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_get_owe_data + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_connect_internal_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_pmk_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_pmk_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_update_ap_info_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_ap_ssid_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_ssid_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_authmode_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_max_sta_conn + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_pairwise_cipher_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_authmode_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_pmf_config_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_config_sae_pwe_h2e_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_rsnxe + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_wpa2_authmode_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_config_sae_pk_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_sae_pk_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_enable_sae_pk_only_mode_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_owe_trans_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_notify_node_sae_auth_done + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_is_sta_sae_reauth_node + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_sae_identifier_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_password_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_sta_get_prof_password + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_ap_pmf_enabled + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_password_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_reset_param_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_set_reset_param_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa2_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wapi_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_rsn_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_pairwise_cipher_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_group_cipher_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_sta_gtk_index + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_sta_gtk_index + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_gtk + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_ptk + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_spp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_wpa_ptk_init_done_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_enable_sta_privacy_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_running_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_auth_done_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa2_cb_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa2_cb_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_unregister_wapi_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_register_wapi_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa_cb_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa_cb_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_assoc_bssid_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_sta_is_connected + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_hostap_private_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_deauthenticate_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_spp_attrubute_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_user_init_flag_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_set_rx_policy + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_get_init_flag + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_set_init_flag + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask_zero + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_set_mask + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_clear_mask + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_mac_addr_from_frame + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_del_key_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_key_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_key_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_tx_cb_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_eapol_txdonecb_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_macaddr_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_deauth_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_init_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_ap_key_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ppInstallKey + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_sta_key_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_sta_key_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_appie_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_appie_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unset_appie_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_enable_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_disable_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wpa2_ent_state_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_type_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_type_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_status_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_disarm_sta_connection_timer_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_status_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_cb_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_internal_supplicant_header_md5_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_start_flag_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_pmf_enabled + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_mgmt_group_cipher + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_igtk_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_active_igtk_key_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_igtk_from_keyidx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_skip_supp_pmkcaching + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_rssi_threshold + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_rm_enabled_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_btm_enabled_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_mbo_enabled_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_ft_enabled_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_mgmt_frame_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_send_mgmt_frm_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_action_tx_req + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_remain_on_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_connect_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_get_prof_pmk_internal + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_disable_sae_pk_internal + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_sta_gtk_index + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_enable_sta_privacy_internal + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_is_running_internal + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_unregister_wpa2_cb_internal + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_register_wpa2_cb_internal + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_unregister_wapi_cb + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_register_wapi_cb + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_assoc_bssid_internal + 0x00000000 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_get_init_flag + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_set_init_flag + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask_zero + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_set_mask + 0x00000000 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_clear_mask + 0x00000000 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_mac_addr_from_frame + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_del_key_internal + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_key_internal + 0x00000000 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_key_internal + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_register_tx_cb_internal + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_appie_internal + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_enable_internal + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_disable_internal + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wpa2_ent_state_internal + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_type_internal + 0x00000000 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_wps_type_internal + 0x00000000 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_disarm_sta_connection_timer_internal + 0x00000000 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_status_internal + 0x00000000 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_cb_internal + 0x00000000 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_internal_supplicant_header_md5_check + 0x00000000 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_start_flag_internal + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_rssi_threshold + 0x00000000 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_rm_enabled_internal + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_btm_enabled_internal + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_mbo_enabled_internal + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_ft_enabled_internal + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_action_tx_req + 0x00000000 0x94 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_remain_on_channel + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data.g_wifi_supplicant_funcs_md5 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_nan_ndp_resp_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_ndc_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_faw_end + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_faw_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_send_action + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_send_sync_bcn + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_send_disc_bcn + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_dw_end + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_dw_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_scan_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_warmup_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ampdu_age_handle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_addba + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ap_try_sa_query + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ap_sa_query_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_retry_assoc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_sa_query_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_try_sa_query + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_assoc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_auth + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_chm_dwell + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_handshake + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_beacon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_probe_send + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_csa + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_enter_op_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_inter_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_connect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_hostap_handle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_send_beacon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_register_hostap_timer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_do_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.chm_end_op_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_phy_change_channel$constprop$2 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_mhz2num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_release_lock + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_end_op + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_end_op_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_cancel_op + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_acquire_lock + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_current_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .wifi0iram.12.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_home_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_set_home_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_chan_info + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_set_current_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_change_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_start_op + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_return_home_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.cnx_sta_connect_led_timer_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_cal_rc_util + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_get_next_rc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_traverse_rc_lis_done + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_op + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_to_bss + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.ieee80211_cnx_attach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal._cnx_start_connect_without_scan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_can_do_obss_scan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_scan_cmd + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wl_is_ap_no_lr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wl_clear_ap_no_lr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_validate_owe_bss + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_get_authtype_strength + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_check_bssid_in_blacklist + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_from_blacklist + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_add_to_blacklist + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_clear_blacklist + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_choose_rc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_search + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_do_handoff_internal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_add_rc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_all_rc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_do_handoff + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_next_ap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_start_handoff_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_connect_cmd + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_alloc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc_except + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_rssi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_state_metric + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc_tx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_age + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.esp_mesh_get_tsf_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.send_ap_probe + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_alloc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_remove + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifi0iram.90.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifi0iram.92.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_is_any_node_connecting + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_staconnected_event_policy + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_toomany_deny + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_pm + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss_more + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.ic_set_sta + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_leave + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_associated + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_leave + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_join + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_start_obss_scan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_done_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_stop_obss_scan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_done + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifislprxiram.115.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifislprxiram.116.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.cnx_sta_scan_cmd + 0x00000000 0x402 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.cnx_get_authtype_strength + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.esp_mesh_get_tsf_time + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.cnx_is_any_node_connecting + 0x00000000 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.wifi_softap_staconnected_event_policy + 0x00000000 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.wifi_softap_toomany_deny + 0x00000000 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.cnx_stop_obss_scan + 0x00000000 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifislprxiram.116 + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.25 + 0x00000000 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.24 + 0x00000000 0x65 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.23 + 0x00000000 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.22 + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.21 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.20 + 0x00000000 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.19 + 0x00000000 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.18 + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.17 + 0x00000000 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.offchan_in_progress + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_recv_action + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_send_action_tx_status + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.roc_op_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.roc_op_end + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_txop_end + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_txop_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.roc_op_start + 0x00000000 0x43 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.roc_op_end + 0x00000000 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.offchan_txop_end + 0x00000000 0x82 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.offchan_txop_start + 0x00000000 0x292 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .rodata_wlog_error.3 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .rodata_wlog_error.2 + 0x00000000 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .data.s_global_offchan_seq + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.send_inval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.recv_inval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action_register + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action_unregister + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_register + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_unregister + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text.ieee80211_send_action_unregister + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text.ieee80211_recv_action_unregister + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.get_iav_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_recv_action_vendor_spec + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_get_key_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_get_key_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_add_action_vendor_spec_esp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_alloc_action_vendor_spec + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_send_action_vendor_spec + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_action_vendor_spec_attach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_spec_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_spec_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_get_key_cb + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_get_key_cb + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .rodata.str1.1 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_add_action_vendor_spec_esp + 0x00000000 0x6b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_alloc_action_vendor_spec + 0x00000000 0xfd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_send_action_vendor_spec + 0x00000000 0x3d8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_spec_cb + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_spec_cb + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .data.s_global_vendor_seq$10902 + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_tx_content + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ccmp_encap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ccmp_decap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_decrypt_espnow_pkt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_decrypt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_encrypt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.sms4_decap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .literal.sms4_encap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .literal.tkip_decap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.tkip_encap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.wep_encap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .literal.wep_decap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .literal.ieee80211_getmgtframe + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .literal.ieee80211_getbcnframe + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .literal.esf_buf_alloc_dynamic_default_handler + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .wifiextrairam.5.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_alloc_default_handler + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .wifislprxiram.7.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_recycle_default_handler + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .wifirxiram.9.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setup_for_mesh + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setup_static + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_free_static + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setdown + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_statis_dump + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .text.esf_buf_setup_for_mesh + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata.str1.1 + 0x00000000 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .text.esf_buf_statis_dump + 0x00000000 0xc6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.20 + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.19 + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.18 + 0x00000000 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.bb_intr_handl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_addr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .wifislprxiram.3.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_is_pure_sta + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_ptk_alg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_crypto + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_obtain_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_rssi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_tx_pkt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_alloc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_tx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_rx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.esp_wifi_internal_free_rx_buffer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_tx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_rx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_post_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_michael_mic_failure_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_pp_tx_done_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_ctrl_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_ctrl_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_promis_rx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_csi_rx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_config_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_is_mgmt_hwdecr_enabled + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_pm_tx_null_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_net80211_tx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_ftm_callbacks + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_nan_callbacks + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_pp_post + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_enable_sniffer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_sniffer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_vif + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_next_tbtt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_rx_ba + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_reset_rx_ba + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_add_rx_ba + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_reset_tbtt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_key_all + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_ac_param + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ampdu_op + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.esp_mesh_set_6m_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_trc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_bb_check_noise_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_interrupt_handler + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_clear_interrupt_handler + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_enable_rx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_rx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_beacon_int + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_mac + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_bssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_current_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_random + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_trc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_tx_is_idle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_pp_hdl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy_ubssid_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_sta_auth_flag + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_interface + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_trc_set_per_pkt_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_trc_update_ifx_phy_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_stop_hw_txq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_stop_sw_txq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_txq_empty + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_fix_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_fix_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_create_wifi_task + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_delete_wifi_task + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_csi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .wifislprxiram.13.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .wifislprxiram.14.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_csi_set_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_update_light_sleep_default_params + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_sleep_delay_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_keep_alive_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_beacon_monitor_configure + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_update_listen_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_rx_disable_bssid_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_rx_enable_bssid_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_bar_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_trc_update_def_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_espnow_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_80211_tx_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_espnow_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_80211_tx_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_default_sched + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_G6M_sched + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_connectionless_module_set_wake_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.bb_intr_handl + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_is_pure_sta + 0x00000000 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_rssi + 0x00000000 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_pp_tx_done_cb + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_promis_filter + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_promis_filter + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_promis_ctrl_filter + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_promis_ctrl_filter + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_promis_rx_cb + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_csi_rx_cb + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_ftm_callbacks + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_nan_callbacks + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_pp_post + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.esp_mesh_set_6m_rate + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_bb_check_noise_init + 0x00000000 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_random + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_tx_is_idle + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_fix_rate + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_fix_rate + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_csi + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_csi_set_config + 0x00000000 0x84 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_update_light_sleep_default_params + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_sleep_delay_time + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_keep_alive_time + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_beacon_monitor_configure + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_update_listen_interval + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_rx_disable_bssid_check + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_rx_enable_bssid_check + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_bar_rate + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_trc_update_def_rate + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_espnow_rate + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_80211_tx_rate + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_espnow_rate + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_80211_tx_rate + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_default_sched + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_G6M_sched + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_connectionless_module_set_wake_interval + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_info.11 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.lmacIsIdle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacGetTxFrame + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacReachShortLimit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacReachLongLimit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacIsLongFrame + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.3.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.4.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifiextrairam.5.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacSetAcParam + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacInitAc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacInit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxopSuccess + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.17.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacEndRetryAMPDUFail + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.28.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.32.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.33.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.34.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.38.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.dbg_cnt_lmac_drop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_retry_counter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_msdu_lifetime + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_mib + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_rts + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_rts + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.54.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.55.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmac_record_txtime + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmac_update_tx_statistic + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.59.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacDiscardMSDU + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.18.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacRetryTxFrame + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifiextrairam.20.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.19.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.22.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.13.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifiextrairam.15.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessShortRetryFail + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCtsTimeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessLongRetryFail + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCollision + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCollisions_task + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessAckTimeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxRtsError + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxseckiderr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxError + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifiextrairam.35.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacRxDone + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacDisableTransmit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxTimeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacStopTransmit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.dbg_lmac_get_acs + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmac_stop_hw_txq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.63.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_set_11b_tx_plcp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmacReachShortLimit + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmacReachLongLimit + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.3 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.4 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmacProcessTxopSuccess + 0x00000000 0xa4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.dbg_cnt_lmac_drop + 0x00000000 0x8d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_set_retry_counter + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_set_msdu_lifetime + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_get_mib + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_set_rts + 0x00000000 0x5c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_get_rts + 0x00000000 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmac_record_txtime + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmac_update_tx_statistic + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.13 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.dbg_lmac_get_acs + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_set_11b_tx_plcp + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10261 + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10244 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.53 + 0x00000000 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.14 + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.12 + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.10 + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.9 + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .data.txopstart_index + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.hal_pm_unblock_txq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_incr_active_cnt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_incr_coex_active_cnt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disable_active_timer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_monitor_tbtt_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_monitor_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_connectionless_wake_window_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_connectionless_wake_interval_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_sleep_delay_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_slice_wifi_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_active_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_dream_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tbtt_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.wifi_apb80m_request + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.wifi_apb80m_release + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.3.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_dream + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_sleeping + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_open + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.4.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_allow_tx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.5.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.6.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.8.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_sleep_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_sleep_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_disable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.18.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.19.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.20.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.21.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_enable_sleep_delay_timer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disable_disconnected_sleep_delay_timer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_enable_disconnected_sleep_delay_timer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_pend_noise_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_register_pm_tx_null_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_nullfunc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_wakeup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_sleep + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.23.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.24.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.25.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.26.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.27.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.28.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_wake + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.29.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_sleep + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.is_off_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_wake_up + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_probe_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_off_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_wake_done + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_separate_connectionless_window + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.22.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.30.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_go_to_sleep + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_next_tbtt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mesh_set_next_tbtt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.32.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.34.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_timestamp_statistic + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_misc_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_in_wifi_slice_threshold + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.36.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_schm_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_schm_process_restart + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_slice_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_dream_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.38.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_sleep_delay_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.40.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.41.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.45.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.46.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tx_data_done_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tx_null_data_done_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_go_to_wake + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_probe_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_update_params + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.37.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.43.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_tbtt_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.42.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.39.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_active_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifiextrairam.44.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_sleep_null_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_wake_null_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_coex_schm_process_restart + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_coex_schm_status_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_coex_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_probe_resp_rx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.48.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.49.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifiextrairam.50.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_data_tx_done + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_attach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_deattach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_sleep_type + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_get_sleep_type + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_monitor_configure + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_update_light_sleep_default_params + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_sleep_delay_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_keep_alive_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_scan_lock + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_scan_unlock + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_try_scan_unlock + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_force_scan_unlock + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_get_idle_wait_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_enable_sta_disconnected_power_management + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_register_connectionless_wake_window + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_unregister_connectionless_wake_window + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_connectionless_module_set_wake_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .iram1.56.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_reconnect_policy + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_set_reconnect_policy + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.wifi_apb80m_request + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.wifi_apb80m_release + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_is_dream + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_mac_sleep_init + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_mac_sleep_deinit + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_pend_noise_check + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.23 + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.is_off_channel + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_beacon_misc_process + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_set_sleep_type + 0x00000000 0xc2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_get_sleep_type + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_beacon_monitor_configure + 0x00000000 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_update_light_sleep_default_params + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_set_sleep_delay_time + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_set_keep_alive_time + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_scan_lock + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_scan_unlock + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_try_scan_unlock + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_get_idle_wait_time + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_register_connectionless_wake_window + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_unregister_connectionless_wake_window + 0x00000000 0x57 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_connectionless_module_set_wake_interval + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.55 + 0x00000000 0x3f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.54 + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pp_delete_task_manually + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislpiram.6.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.getle32 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.putle32 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.rotl 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.rotr 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.xswap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_set_cut_rx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_set_cut_evt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_can_cut_sevt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_can_cut_evt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.RxNodeNum + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.TxNodeNum + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.SigSpaceMalloc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.SigSpaceFree + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.DefFreqCalTimerCB + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifirxiram.7.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_net80211_tx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_config_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_timer_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_michael_mic_failure_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.8.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_default_event_handler + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.12.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppAddTimCount + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterPromisRxCallback + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterTxDoneUserActionCallback + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterRxCallback + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterTxCallback + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppUnregisterTxCallback + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_tx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_unregister_tx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.17.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRecycleTxBuf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxQIdle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckIsConnTraffic + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxConnTrafficIdle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.19.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.20.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppSetInterface + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.23.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.25.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_gettid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppAssembleMicHdr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCalTkipMic + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppClearRxFragment + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifirxiram.27.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppGetTxQFirstAvail_Locked + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppFetchTxQFirstAvail + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDequeueTxQ + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRollBackTxQ + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppSetBarRate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppFillAMPDUBar + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.32.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.33.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.34.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.35.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxAMPDUlength + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.36.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.37.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppReSendBar + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRecordBarRRC + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.43.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.47.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.49.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.21.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.50.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.51.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.29.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.emul_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_create_task + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_deattach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.59.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppInitTxq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppEnableQueue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.62.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppTxqEmpty + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .iram1.66.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_delete_task + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.63.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.64.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppProcessWaitQ + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDisableQueue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxIdle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.61.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.60.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.65.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDiscardMPDU + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.68.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.70.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.13.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppPrepareBarFrame + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_attach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.38.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.40.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.41.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.24.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.44.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.10.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.71.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppClearTxq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_stop_sw_txq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.72.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.73.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppGetTaskHdl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppMessageInQ + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.74.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.rotl 0x00000000 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.rotr 0x00000000 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_set_cut_rx + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_set_cut_evt + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_can_cut_sevt + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_can_cut_evt + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.RxNodeNum + 0x00000000 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.TxNodeNum + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.SigSpaceMalloc + 0x00000000 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.SigSpaceFree + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.DefFreqCalTimerCB + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppAddTimCount + 0x00000000 0x198 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRegisterPromisRxCallback + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRegisterTxDoneUserActionCallback + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppUnregisterTxCallback + 0x00000000 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_register_tx_cb + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_unregister_tx_cb + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRecycleTxBuf + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppGetTxQFirstAvail_Locked + 0x00000000 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppFetchTxQFirstAvail + 0x00000000 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRollBackTxQ + 0x00000000 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppSetBarRate + 0x00000000 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.32 + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.36 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.emul_timeout + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppProcessWaitQ + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppMessageInQ + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.CanDoFreqCal + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.LowestFreqOffsetInOneChk + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.HighestFreqOffsetInOneChk + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.NoiseTimerInterval + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pend_flag_periodic_cal + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.CurSigIdxToBeUse + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.CurFreeSigIdx + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_allow_cut_sevt + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_need_cut_rx + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.libpp_reversion_git + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + COMMON 0x00000000 0x1a4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .iram1.4.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .iram1.5.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_rxtx_statis_dump + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_hw_statis_dump + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_diag_statis_dump + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_ps_statis_dump + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_ps_statis_reset + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_statis_dump + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_eb_show + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_event_show + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_int_show + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_rx_show + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_tx_show + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_ebuf_loc_show + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_path_show + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_path_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_throughput_cal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .iram1.5 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata.str1.1 + 0x00000000 0x1c0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_rxtx_statis_dump + 0x00000000 0x21e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_hw_statis_dump + 0x00000000 0x2ff C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_diag_statis_dump + 0x00000000 0x1be C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_ps_statis_dump + 0x00000000 0x192 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_statis_dump + 0x00000000 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_eb_show + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_event_show + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_int_show + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_rx_show + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_tx_show + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_ebuf_loc_show + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_path_show + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_path_set + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_throughput_cal + 0x00000000 0xa1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.36 + 0x00000000 0x3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss.s_t_old 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss.s_total 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.35 + 0x00000000 0x55 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.34 + 0x00000000 0x51 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.33 + 0x00000000 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.32 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.31 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.30 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.29 + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.28 + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.27 + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.26 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.25 + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.24 + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.23 + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.22 + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.21 + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.20 + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.19 + 0x00000000 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.18 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.17 + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.16 + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.15 + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.14 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.13 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.12 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.11 + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.10 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.9 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.8 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.7 + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.6 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.pp_timer_beacon_monitor_tbtt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_beacon_monitor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_connectionless_wake_window + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_connectionless_wake_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_disconnected_sleep_delay + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_sleep_delay + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_coex_slice + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_active + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_dream + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .wifislpiram.3.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_noise_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .wifislpiram.4.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_register_post_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.RC_GetDuration + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_SetBasicRate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetAckRate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetRtsRate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetAckTime + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetCtsTime + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetBlockAckTime + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text.RC_GetAckRate + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text.RC_GetRtsRate + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.rc11NRate2SchedIdx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc11GRate2SchedIdx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc11BRate2SchedIdx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcLoRaRate2SchedIdx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcBuildIndex + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_calc_duration + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rx11NRate2AMPDULimit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trcAmpduSetState + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcSetTxAmpduLimit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdateAMPDUParam + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11NHighestRateIdx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11GHighestRateIdx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11BHighestRateIdx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetDefaultHigestRateIdx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetHighestRateIdx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcClearCurStat + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcClearCurSched + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcClearCurAMPDUSched + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdatePhyMode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcLowerSched + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpSched + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdateAckSnr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcTxUpdatePer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.8.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifirxiram.9.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onAmpduOp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_set_per_pkt_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcSetBarRate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_default_sched + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_G6M_sched + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetAmpduSched + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifiextrairam.13.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rssi_margin + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.TRC_PER_IS_GOOD + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcAmpduLowerRate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.TRC_AMPDU_PER_UP_THRESHOLD + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.10.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdateRate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.11.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcReachRetryLimit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcAttach + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_NeedRTS + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onDisconnect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onScanStart + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onScanDone + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_isAmpduOn + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifiextrairam.19.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_SetTxAmpduState + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.20.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.21.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_mask + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_disable_trc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_disable_trc_by_interface + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_sta_trc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifirxiram.25.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_trc_by_index + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_trc_default + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_only_sta_trc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_update_def_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_update_ifx_phy_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_set_per_conn_fix_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_enable_trc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_fix_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_set_fix_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_get_espnow_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_set_espnow_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_get_80211_tx_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_set_80211_tx_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcClearCurStat + 0x00000000 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcSetBarRate + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_default_sched + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_G6M_sched + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_NeedRTS + 0x00000000 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.trc_NeedRTS + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onDisconnect + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onScanStart + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onScanDone + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_isAmpduOn + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_SetTxAmpduState + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_mask + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_sta_trc + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_trc_default + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_only_sta_trc + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_update_def_rate + 0x00000000 0xbf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_fix_rate + 0x00000000 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_set_fix_rate + 0x00000000 0x98 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_get_espnow_rate + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_set_espnow_rate + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_get_80211_tx_rate + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_set_80211_tx_rate + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.27 + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data.BAROFDMSched + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.g_80211_tx_rate + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.g_espnow_rate + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifiorslpiram.27.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetCurChannel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetAuthed + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Set_Beacon_Int + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Reset_TBTT + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_reset_bcnSendTick + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Mesh_Enable_Tsf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Mesh_Set_TBTT + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Get_Next_TBTT + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.5.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.6.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.7.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.8.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.9.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.10.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_mac_sleep_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_mac_sleep_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.13.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.14.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.15.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislpiram.16.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_csi_hw_bug_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_csi_rx_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_misc_pkt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.19.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_pop_promis_misc_buf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_process_misc_pkt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_misc_buf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_pkt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_get_promis_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_get_promis_ctrl_filter + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SnifferRxAmpdu + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SnifferRxData + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_IndicateCtrlFrame + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_RxSecError + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.28.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_nan_set_callbacks + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_nan_is_in_dw + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_FetchFirstDesc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Rxbuf_Deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Rxbuf_Init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_disable_low_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_enable_low_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_is_low_rate_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.46.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.47.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.48.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislpiram.26.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.23.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.25.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.29.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.31.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Insert_KeyEntry + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry_all_cnx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Crypto_Disable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.52.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_csi_rx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_is_mgmt_hwdecr_enabled + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_csi_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_ampdu_rx_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_ampdu_tx_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_amsdu_tx_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_nvs_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_rx_baw + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_static_rx_buffer_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_dynamic_rx_buffer_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_tx_buffer_type + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_static_tx_buffer_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_dynamic_tx_buffer_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_rx_mgmt_buffer_type + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_rx_mgmt_buffer_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_cache_tx_buffer_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_task_stack_size + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_timer_task_stack_size + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_wps_task_stack_size + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_wpa2_task_stack_size + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_coexist_task_stack_size + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_pm_task_stack_size + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_task_core_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_beacon_max_len + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_mgmt_sbuf_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_feature_capabilities + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_espnow_max_encrypt_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_is_cache_tx_buf_enabled + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_sta_disconnected_pm + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_Mesh_Enable_Tsf + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_Mesh_Set_TBTT + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_mac_sleep_init + 0x00000000 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_mac_sleep_deinit + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_set_promis_filter + 0x00000000 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_get_promis_filter + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_set_promis_ctrl_filter + 0x00000000 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_get_promis_ctrl_filter + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.28 + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_nan_set_callbacks + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_FetchFirstDesc + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_set_csi_rx_cb + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_csi_enable + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_timer_task_stack_size + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_wps_task_stack_size + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_wpa2_task_stack_size + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_coexist_task_stack_size + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_pm_task_stack_size + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss.dbg_rx_bcn_count + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.12 + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.11 + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.hal_agreement_add_rx_ba + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_agreement_clr_rx_ba + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_agreement_del_rx_ba + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_store + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_restore + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_restore_by_hw_index + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_crypto_clr_key_entry + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_get_using_key_idx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_set_key_entry + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_is_key_valid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_get_key_entry + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_mgmt_rx_enabled + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_disable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .text.hal_crypto_get_using_key_idx + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.mac_tx_set_plcp0 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_tx_set_duration + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tx_set_ppdu + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.3.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.4.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.5.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifiextrairam.6.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.7.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_txq_invalid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_is_txq_valid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_is_txq_enabled + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.8.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_now + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tx_set_cca + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_disable_low_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_enable_low_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.9.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_rxbuf_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_disable_mac + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_enable_mac + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislpiram.10.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislprxiram.11.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislprxiram.12.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_txrx_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_rxq_policy + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_last_rxbuf_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_last_rxbuf_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_rxbuf_disable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.13.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.14.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.15.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_addr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_bssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_rx_set_policy + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_clr_bssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_get_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.wDev_Mesh_Disable_Tsf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifiextrairam.16.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_set_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_reset + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_csi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislprxiram.17.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.18.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_rx_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_rx_disable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_rx_disable_bssid_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_rx_enable_bssid_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_is_txq_enabled + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislpiram.10 + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.mac_last_rxbuf_deinit + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.mac_rxbuf_disable + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_clr_bssid + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.wDev_Mesh_Disable_Tsf + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_tsf_set_time + 0x00000000 0x6d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_set_csi + 0x00000000 0x55 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_rx_enable + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_rx_disable + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_rx_disable_bssid_check + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_rx_enable_bssid_check + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss.g_mac_deinit_txing + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss.g_mac_deinit_rxing + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss.g_mac_deinit_count + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.2.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .wifislprxiram.3.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .wifislprxiram.4.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .wifislprxiram.5.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .iram1.6.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .literal.mac_tx_set_plcp1 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_plcp2 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_htsig + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .wifi0iram.5.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_get_txq_state + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_clr_txq_state + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_get_txq_pmd + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_attenna_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_rate_autoack_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_sniffer_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_disable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_rx_set_promis + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_rx_clr_statistics + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_enable_sta_tsf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.hal_disable_sta_tsf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.hal_enable_nan_tsf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.hal_disable_nan_tsf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.hal_disable_softap_tsf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .text.hal_enable_nan_tsf + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .text.hal_disable_nan_tsf + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.prvReturnItemByteBuf + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemByteBuf + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsByteBuffer + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReturnItemDefault + 0x00000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemDefault + 0x00000000 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvSendItemDoneNoSplit + 0x00000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsDefault + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetFreeSize + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvInitializeNewRingbuffer + 0x00000000 0x4c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemByteBuf + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemAllowSplit + 0x00000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemNoSplit + 0x00000000 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReceiveGenericFromISR + 0x00000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreate + 0x00000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateNoSplit + 0x00000000 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateStatic + 0x00000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendAcquire + 0x00000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendComplete + 0x00000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendFromISR + 0x00000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveFromISR + 0x00000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplit + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplitFromISR + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpTo + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpToFromISR + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferReturnItemFromISR + 0x00000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferDelete + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetMaxItemSize + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetCurFreeSize + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferAddToQueueSetRead + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferRemoveFromQueueSetRead + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferGetInfo + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferPrintInfo + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetStaticBuffer + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateWithCaps + 0x00000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferDeleteWithCaps + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .data 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeNoSplit + 0x00000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeAllowSplit + 0x00000000 0x50 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeByteBuf + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemByteBuf + 0x00000000 0x4f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetItemByteBuf.str1.4 + 0x00000000 0x127 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemByteBuf + 0x00000000 0xff esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsByteBuffer + 0x00000000 0x6e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReturnItemDefault.str1.4 + 0x00000000 0x165 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemDefault + 0x00000000 0x144 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetItemDefault.str1.4 + 0x00000000 0x186 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemDefault + 0x00000000 0x192 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvSendItemDoneNoSplit.str1.4 + 0x00000000 0x7e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvSendItemDoneNoSplit + 0x00000000 0x126 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsDefault + 0x00000000 0xae esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetFreeSize.str1.4 + 0x00000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetFreeSize + 0x00000000 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvInitializeNewRingbuffer.str1.4 + 0x00000000 0x3b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvInitializeNewRingbuffer + 0x00000000 0xc9 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemByteBuf + 0x00000000 0x8d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemAllowSplit + 0x00000000 0xfc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemNoSplit + 0x00000000 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGenericFromISR + 0x00000000 0xae esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferCreate.str1.4 + 0x00000000 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreate + 0x00000000 0x8e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateNoSplit + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferCreateStatic.str1.4 + 0x00000000 0x82 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateStatic + 0x00000000 0x8b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendAcquire + 0x00000000 0x74 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendComplete + 0x00000000 0xb9 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendFromISR + 0x00000000 0xee esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveFromISR + 0x00000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceiveSplit.str1.4 + 0x00000000 0x88 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplit + 0x00000000 0x6c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplitFromISR + 0x00000000 0x69 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceiveUpTo.str1.4 + 0x00000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpTo + 0x00000000 0x65 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpToFromISR + 0x00000000 0x61 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferReturnItemFromISR + 0x00000000 0x67 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDelete + 0x00000000 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetMaxItemSize + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetCurFreeSize + 0x00000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferAddToQueueSetRead.str1.4 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferAddToQueueSetRead + 0x00000000 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferRemoveFromQueueSetRead + 0x00000000 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferGetInfo + 0x00000000 0x6a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferPrintInfo.str1.4 + 0x00000000 0x43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferPrintInfo + 0x00000000 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferGetStaticBuffer.str1.4 + 0x00000000 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetStaticBuffer + 0x00000000 0x42 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateWithCaps + 0x00000000 0x54 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.vRingbufferDeleteWithCaps.str1.4 + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDeleteWithCaps + 0x00000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$2 + 0x00000000 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$3 + 0x00000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$4 + 0x00000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5 + 0x00000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$6 + 0x00000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$7 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$8 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$9 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$10 + 0x00000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$12 + 0x00000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$13 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$14 + 0x00000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$15 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$16 + 0x00000000 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$17 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$20 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$22 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$23 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$24 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$25 + 0x00000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$26 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$27 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$29 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$30 + 0x00000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$31 + 0x00000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$32 + 0x00000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$33 + 0x00000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$34 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$35 + 0x00000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$36 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_basic_rom_console + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_disable_basic_rom_console.str1.4 + 0x00000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_basic_rom_console + 0x00000000 0x33 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x5a7 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x1ca esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x2b esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0x578 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0xc7f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .iram1.10.literal + 0x00000000 0x1c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.7.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.16.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.12.literal + 0x00000000 0x24 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_init_lock + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_deinit_lock + 0x00000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_register_dev + 0x00000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_unregister_dev + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.24.literal + 0x00000000 0x24 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.26.literal + 0x00000000 0x1c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.29.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_bg_request + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.30.literal + 0x00000000 0x2c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.31.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.32.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.33.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.try_acquire_free_dev + 0x00000000 0x4c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.11 0x00000000 0x9f esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.req_core + 0x00000000 0x6f esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.10 0x00000000 0x85 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.13 0x00000000 0x3c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.7 0x00000000 0x13 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.16 0x00000000 0x6a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.14 0x00000000 0x5c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.12 0x00000000 0xb0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_init_lock + 0x00000000 0x39 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.spi_bus_deinit_lock.str1.4 + 0x00000000 0x5b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_deinit_lock + 0x00000000 0x3b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_register_dev + 0x00000000 0x99 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_unregister_dev + 0x00000000 0x44 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_set_bg_control + 0x00000000 0xb esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.21 0x00000000 0x1e esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.22 0x00000000 0x15 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.str1.4 + 0x00000000 0xf2 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.24 0x00000000 0x65 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.26 0x00000000 0x42 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.27 0x00000000 0xa esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.28 0x00000000 0x28 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.29 0x00000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_request + 0x00000000 0x10 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.30 0x00000000 0xbb esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.31 0x00000000 0x10 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.32 0x00000000 0x1c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.33 0x00000000 0x37 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.34 0x00000000 0x1d esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x19 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x1b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__func__$3 + 0x00000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .dram1.0 0x00000000 0x9 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .data.s_spinlock + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.check_iomux_pins_quad + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.bus_uses_iomux_pins + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_dma_ll_enable_bus_clock + 0x00000000 0x14 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_dma_ll_reset_register + 0x00000000 0x14 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.connect_spi_and_dma + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_ll_enable_bus_clock + 0x00000000 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_ll_reset_register + 0x00000000 0x34 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.claim_dma_chan + 0x00000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.alloc_dma_chan + 0x00000000 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.dma_chan_free + 0x00000000 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.bus_iomux_pins_set_quad + 0x00000000 0x2c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.bus_iomux_pins_set + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_claim + 0x00000000 0x2c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_in_use + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_free + 0x00000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqsource_for_host + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqdma_source_for_host + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_alloc + 0x00000000 0x28 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_free + 0x00000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_initialize_io + 0x00000000 0x13c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_free_io_cfg + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_initialize + 0x00000000 0x44 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_free_io + 0x00000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_using_iomux + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_main_set_lock + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_lock_get_by_id + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_initialize + 0x00000000 0x90 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_get_attr + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_free + 0x00000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_register_destroy_func + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.0.literal + 0x00000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.1.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.2.literal + 0x00000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.3.literal + 0x00000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.check_iomux_pins_quad + 0x00000000 0x8c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_uses_iomux_pins + 0x00000000 0x11 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_dma_ll_enable_bus_clock + 0x00000000 0x39 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_dma_ll_reset_register + 0x00000000 0x2e esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.connect_spi_and_dma + 0x00000000 0x31 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spi_ll_enable_bus_clock.str1.4 + 0x00000000 0x37 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_ll_enable_bus_clock + 0x00000000 0xdb esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_ll_reset_register + 0x00000000 0xaa esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.claim_dma_chan + 0x00000000 0x66 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.alloc_dma_chan.str1.4 + 0x00000000 0xc1 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.alloc_dma_chan + 0x00000000 0xb2 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.dma_chan_free.str1.4 + 0x00000000 0x25 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.dma_chan_free + 0x00000000 0x99 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_iomux_pins_set_quad + 0x00000000 0xc4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_iomux_pins_set + 0x00000000 0xf esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_periph_claim.str1.4 + 0x00000000 0x35 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_claim + 0x00000000 0xc6 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_in_use + 0x00000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_free + 0x00000000 0x92 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqsource_for_host + 0x00000000 0x11 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqdma_source_for_host + 0x00000000 0x11 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_alloc + 0x00000000 0x92 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_free + 0x00000000 0x42 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_bus_initialize_io.str1.4 + 0x00000000 0x321 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_initialize_io + 0x00000000 0x738 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_free_io_cfg + 0x00000000 0x61 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_initialize.str1.4 + 0x00000000 0xba esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_initialize + 0x00000000 0x114 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_free_io.str1.4 + 0x00000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_free_io + 0x00000000 0x52 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_using_iomux + 0x00000000 0x8e esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_main_set_lock + 0x00000000 0xd esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_lock_get_by_id + 0x00000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spi_bus_initialize.str1.4 + 0x00000000 0x11f esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_initialize + 0x00000000 0x258 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_get_attr + 0x00000000 0x12 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_free + 0x00000000 0x7a esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_register_destroy_func + 0x00000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.0 0x00000000 0x52 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.1 0x00000000 0x11 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.2 0x00000000 0x4c esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.3 0x00000000 0x28 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$1 + 0x00000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$2 + 0x00000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$3 + 0x00000000 0x17 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$5 + 0x00000000 0xe esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6 + 0x00000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0xf esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$8 + 0x00000000 0xf esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$9 + 0x00000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$10 + 0x00000000 0x16 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$11 + 0x00000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_waiting_for_chan + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.dmaworkaround_mux + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb_arg + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_channels_busy + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_dma_spinlock + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_dma_chan_enabled + 0x00000000 0x1 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.bus_ctx 0x00000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.s_mainbus + 0x00000000 0x64 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_claiming_func + 0x00000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_periph_claimed + 0x00000000 0x3 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_frame 0x00000000 0x340 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_info 0x00000000 0x5ff9 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_abbrev 0x00000000 0x614 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_loc 0x00000000 0x13b6 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_aranges + 0x00000000 0x128 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_ranges 0x00000000 0x148 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_line 0x00000000 0x3768 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_str 0x00000000 0x34bc esp-idf/driver/libdriver.a(spi_common.c.obj) + .comment 0x00000000 0x30 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.esp_partition_get_sha256 + 0x00000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_check_identity + 0x00000000 0x10 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_get_sha256 + 0x00000000 0x15 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_check_identity + 0x00000000 0x4b esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.bootloader_util_regions_overlap + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_unload_all + 0x00000000 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_find_first + 0x00000000 0xc esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_verify + 0x00000000 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_register_external + 0x00000000 0x28 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_deregister_external + 0x00000000 0x14 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.bootloader_util_regions_overlap.str1.4 + 0x00000000 0x5e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.bootloader_util_regions_overlap + 0x00000000 0x51 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_unload_all + 0x00000000 0x66 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_find_first + 0x00000000 0x2c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_verify.str1.4 + 0x00000000 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_verify + 0x00000000 0x82 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_register_external + 0x00000000 0xe2 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_deregister_external + 0x00000000 0x62 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$0 + 0x00000000 0x20 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$1 + 0x00000000 0x15 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$4 + 0x00000000 0x19 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.get_ota_ops_entry + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.image_validate + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.find_default_boot_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.read_otadata + 0x00000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.rewrite_ota_seq + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.check_invalid_otadata + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.get_last_invalid_otadata + 0x00000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_begin + 0x00000000 0x28 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write + 0x00000000 0x50 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write_with_offset + 0x00000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_abort + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_end + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_app_partition_count + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_rewrite_ota_data + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_set_boot_partition + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_boot_partition + 0x00000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_next_update_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_bootloader_description + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_partition_description + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_check_rollback_is_possible + 0x00000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_current_ota_is_workable + 0x00000000 0x48 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_valid_cancel_rollback + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_invalid_rollback_and_reboot + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_last_invalid_partition + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_state_partition + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_erase_last_boot_app_partition + 0x00000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .data 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.is_ota_partition + 0x00000000 0x2e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.set_new_state_otadata + 0x00000000 0x7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_ota_ops_entry + 0x00000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.image_validate + 0x00000000 0x26 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.find_default_boot_partition.str1.4 + 0x00000000 0x4f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.find_default_boot_partition + 0x00000000 0x5c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.read_otadata.str1.4 + 0x00000000 0x62 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.read_otadata + 0x00000000 0x8e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.rewrite_ota_seq + 0x00000000 0x5a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.check_invalid_otadata + 0x00000000 0x32 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_last_invalid_otadata + 0x00000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_begin + 0x00000000 0xda esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write.str1.4 + 0x00000000 0xb5 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write + 0x00000000 0x184 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write_with_offset.str1.4 + 0x00000000 0xc5 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write_with_offset + 0x00000000 0xc2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_abort + 0x00000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_end + 0x00000000 0x89 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_app_partition_count.str1.4 + 0x00000000 0x46 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_app_partition_count + 0x00000000 0x40 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_rewrite_ota_data + 0x00000000 0x96 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_boot_partition + 0x00000000 0x61 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_boot_partition.str1.4 + 0x00000000 0x4b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_boot_partition + 0x00000000 0x8b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_next_update_partition.str1.4 + 0x00000000 0x13 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_next_update_partition + 0x00000000 0x64 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_bootloader_description + 0x00000000 0x67 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_partition_description + 0x00000000 0x4a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_check_rollback_is_possible + 0x00000000 0xbe esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_current_ota_is_workable.str1.4 + 0x00000000 0xdc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_current_ota_is_workable + 0x00000000 0xe6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_valid_cancel_rollback + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback_and_reboot + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_last_invalid_partition + 0x00000000 0x66 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_state_partition + 0x00000000 0x95 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_erase_last_boot_app_partition + 0x00000000 0xd2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$0 + 0x00000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$3 + 0x00000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$4 + 0x00000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_last_handle + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_entries_head + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.mpi_hal_interrupt_enable + 0x00000000 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text.mpi_hal_interrupt_enable + 0x00000000 0x21 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .literal.esp_mac_addr_len_get + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_iface_mac_addr_set + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_set + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_efuse_mac_get_custom + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_derive_local_mac + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_get + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_mac_addr_len_get + 0x00000000 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_iface_mac_addr_set + 0x00000000 0xad esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_base_mac_addr_set + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_custom + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_derive_local_mac + 0x00000000 0x69 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_base_mac_addr_get + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_init + 0x00000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_deinit + 0x00000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL24lookup_storage_from_namePKc + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZZL24close_handles_and_deinitPKcENKUlR14NVSHandleEntryE_clES2_ + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL24close_handles_and_deinitPKcEUlRS1_E_EEET_SC_SC_T0_St18input_iterator_tag + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL24close_handles_and_deinitPKcEUlRS1_E_ET_S8_S8_T0_ + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_dump + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_init_partition_ptr + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_init_partition + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_init + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_secure_init_partition + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_secure_init + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_find_key + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_erase_all + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_str + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_str + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_stats + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_used_entry_count + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_generate_keys + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_read_security_cfg + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_register_security_scheme + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_get_default_security_scheme + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_find + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_find_in_handle + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_next + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_info + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_release_iterator + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL24close_handles_and_deinitPKc + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_erase_partition + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_erase + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_erase_partition_ptr + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit_partition + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIsEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i16 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIlEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i32 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIxEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i64 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIyEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_u64 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIsEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i16 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIlEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i32 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIxEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i64 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIyEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_u64 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZZ27nvs_flash_read_security_cfgENKUlPhS_mE_clES_S_m + 0x00000000 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL24lookup_storage_from_namePKc + 0x00000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZZL24close_handles_and_deinitPKcENKUlR14NVSHandleEntryE_clES2_ + 0x00000000 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL24close_handles_and_deinitPKcEUlRS1_E_EEET_SC_SC_T0_St18input_iterator_tag + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL24close_handles_and_deinitPKcEUlRS1_E_ET_S8_S8_T0_ + 0x00000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_dump + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_init_partition_ptr + 0x00000000 0x6e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_init_partition + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_init + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_secure_init_partition + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_secure_init + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_find_key + 0x00000000 0x47 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_erase_all + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_str + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_str + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_stats + 0x00000000 0x62 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_used_entry_count + 0x00000000 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_generate_keys + 0x00000000 0xf6 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_read_security_cfg + 0x00000000 0xee esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_register_security_scheme + 0x00000000 0x1d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_get_default_security_scheme + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_generate_keys_v2 + 0x00000000 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_read_security_cfg_v2 + 0x00000000 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_find + 0x00000000 0x8e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_find_in_handle + 0x00000000 0x89 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_next + 0x00000000 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_info + 0x00000000 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_release_iterator + 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL24close_handles_and_deinitPKc + 0x00000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase_partition + 0x00000000 0x62 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase_partition_ptr + 0x00000000 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit_partition + 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIsEimPKcT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i16 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIlEimPKcT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i32 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIxEimPKcT_ + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i64 + 0x00000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIyEimPKcT_ + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u64 + 0x00000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIsEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i16 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIlEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i32 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIxEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i64 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIyEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u64 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZL26nvs_sec_default_scheme_cfg + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9debugDumpEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage11findEntryNsEP21nvs_opaque_iterator_th + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage15clearNamespacesEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage4initEmm + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7StorageD2Ev + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x00000000 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x00000000 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x00000000 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x00000000 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000 0x7f esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZNK3nvs7Storage7isValidEv + 0x00000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9debugDumpEv + 0x00000000 0x17 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x00000000 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x8a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage11findEntryNsEP21nvs_opaque_iterator_th + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000 0x8c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000 0xdf esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage15clearNamespacesEv + 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage4initEmm + 0x00000000 0x154 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7StorageD2Ev + 0x00000000 0x17 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple11findEntryNsEP21nvs_opaque_iterator_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x00000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple11findEntryNsEP21nvs_opaque_iterator_t + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZNK3nvs15NVSHandleSimple18get_partition_nameEv + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZNK3nvs15NVSHandleSimple11get_storageEv + 0x00000000 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .group 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .literal._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x00000000 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager17open_handles_sizeEv + 0x00000000 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x00000000 0xa0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x00000000 0x7a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t + 0x00000000 0x8a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x00000000 0x92 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .rodata._ZTVN3nvs9NVSHandleE + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs4Lock6uninitEv + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .text._ZN3nvs4Lock6uninitEv + 0x00000000 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text._ZN3nvs8HashListC2Ev + 0x00000000 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .group 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4PageC2Ev + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10setVersionEh + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZNK3nvs4Page9debugDumpEv + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page15mLoadEntryTableEv + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZSt9__find_ifIPmN9__gnu_cxx5__ops10_Iter_predIZN3nvs4Page4loadEPNS4_9PartitionEmEUlmE_EEET_SA_SA_T0_St26random_access_iterator_tag + 0x00000000 0x72 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4PageC2Ev + 0x00000000 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page10setVersionEh + 0x00000000 0x19 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page15pageStateToNameENS0_9PageStateE.str1.4 + 0x00000000 0xbc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x00000000 0x61 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZNK3nvs4Page9debugDumpEv.str1.4 + 0x00000000 0xa6 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZNK3nvs4Page9debugDumpEv + 0x00000000 0xdb esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page11calcEntriesER11nvs_stats_t.str1.4 + 0x00000000 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x00000000 0x71 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page15mLoadEntryTableEv + 0x00000000 0x3ec esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x00000000 0x127 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZZN3nvs11PageManager4loadEPNS_9PartitionEmmENKUlRKNS_4PageEE_clES5_ + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_EEET_SF_SF_T0_St18input_iterator_tag + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_ET_SB_SB_T0_ + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x00000000 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZZN3nvs11PageManager4loadEPNS_9PartitionEmmENKUlRKNS_4PageEE_clES5_ + 0x00000000 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_EEET_SF_SF_T0_St18input_iterator_tag + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_ET_SB_SB_T0_ + 0x00000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x00000000 0x52 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00000000 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x00000000 0x270 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .literal._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_12NVSPartitionE + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + 0x00000000 0x49 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_12NVSPartitionE + 0x00000000 0x61 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_frame 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_info 0x00000000 0xf3f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_abbrev 0x00000000 0x425 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_loc 0x00000000 0x1be esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_ranges 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_line 0x00000000 0x89c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_str 0x00000000 0xde4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .group 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t + 0x00000000 0x47 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .rodata._ZTVN3nvs9PartitionE + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal.rtc_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wpa_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wpa2_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wps_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.pp_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.sc_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.core_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.coexist_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wapi_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.mesh_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.rtc_printf.str1.4 + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.rtc_printf + 0x00000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wpa_printf.str1.4 + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wpa_printf + 0x00000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wpa2_printf.str1.4 + 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wpa2_printf + 0x00000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wps_printf.str1.4 + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wps_printf + 0x00000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.pp_printf.str1.4 + 0x00000000 0x3 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.pp_printf + 0x00000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.sc_printf.str1.4 + 0x00000000 0xc esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.sc_printf + 0x00000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.core_printf.str1.4 + 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.core_printf + 0x00000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.coexist_printf.str1.4 + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.coexist_printf + 0x00000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wapi_printf.str1.4 + 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wapi_printf + 0x00000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.mesh_printf.str1.4 + 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.mesh_printf + 0x00000000 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.esp_phy_rf_get_on_ts + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_phy_erase_cal_data_in_nvs + 0x00000000 0x40 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.phy_get_lock + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_rf_get_on_ts + 0x00000000 0xc esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_release_init_data + 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_erase_cal_data_in_nvs.str1.4 + 0x00000000 0xd2 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_erase_cal_data_in_nvs + 0x00000000 0x9e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.phy_get_lock + 0x00000000 0xa esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__$7 + 0x00000000 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.phy_enabled_modem_contains + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_track_pll_internal + 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_track_pll_timer_callback + 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_track_pll + 0x00000000 0x14 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_track_pll_init + 0x00000000 0x34 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_track_pll_deinit + 0x00000000 0x24 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_enabled_modem_contains + 0x00000000 0x1b esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll_internal + 0x00000000 0x2f esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll_timer_callback + 0x00000000 0x24 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll + 0x00000000 0x45 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.phy_track_pll_init.str1.4 + 0x00000000 0xce esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll_init + 0x00000000 0x5f esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.phy_track_pll_deinit.str1.4 + 0x00000000 0x4a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll_deinit + 0x00000000 0x43 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.__func__$0 + 0x00000000 0x15 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.__func__$1 + 0x00000000 0x13 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss.s_wifi_prev_timestamp + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss.phy_track_pll_timer + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.dhcp_search_ip_on_mac + 0x00000000 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.dhcps_dns_setserver + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_option_info + 0x00000000 0x76 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcp_search_ip_on_mac + 0x00000000 0x3a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_setserver + 0x00000000 0x21 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_getserver + 0x00000000 0x15 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.esp_netif_action_join_ip6_multicast_group + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_leave_ip6_multicast_group + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_add_ip6_address + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_remove_ip6_address + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_join_ip6_multicast_group + 0x00000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_leave_ip6_multicast_group + 0x00000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_add_ip6_address + 0x00000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_remove_ip6_address + 0x00000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_eth_config + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_ap_config + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_soft_ap_ip + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_wifi_ap + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_wifi_nan + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_eth + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_wifi_netif_config_nan + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_wifi_netif_config_ap + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_eth_netif_config + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .literal.wlanif_init_ap + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .literal.wlanif_init_nan + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text.wlanif_init_ap + 0x00000000 0x1d esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text.wlanif_init_nan + 0x00000000 0x1d esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .literal.ethernet_low_level_output + 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .literal.ethernetif_input + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .literal.ethernetif_init + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernet_low_level_init + 0x00000000 0x20 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernet_low_level_output + 0x00000000 0x81 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernetif_input + 0x00000000 0x5b esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .rodata.ethernetif_init.str1.4 + 0x00000000 0x4e esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernetif_init + 0x00000000 0x58 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .rodata.__func__$0 + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_info 0x00000000 0xaf8 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_abbrev 0x00000000 0x2bb esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_loc 0x00000000 0x22a esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_line 0x00000000 0x7ed esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_str 0x00000000 0x77f esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .literal.wpa_sendto_wrapper + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .literal.esp_supplicant_disable_pmk_caching + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text.wpa_sendto_wrapper + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text.esp_supplicant_disable_pmk_caching + 0x00000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .literal.esp_supplicant_str_to_mac + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_supplicant_str_to_mac + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_rrm_send_neighbor_rep_request + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_wnm_send_bss_transition_mgmt_query + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .literal.esp_wifi_unregister_wpa3_cb + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text.esp_wifi_unregister_wpa3_cb + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.crypto_rng_wrapper + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.pk_write_ec_pubkey_formatted + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.pk_write_ec_param + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_group_byname + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_affine_coordinates + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_get_order + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_key_compare + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_debug_print_point + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_public_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_priv_key_der + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_group_from_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_private_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_publickey_buf + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_write_pubkey_der + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_key + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_curve_id + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ecdh + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ecdsa_get_sign + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_edcsa_sign_verify + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_parse_subpub_key + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_is_ec_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_gen_keypair + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.mbedtls_pk_write_pubkey_formatted + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_pk_write_formatted_pubkey_der + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_write_pub_key + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_rng_wrapper + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.pk_write_ec_pubkey_formatted + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.pk_write_ec_param + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_group_byname + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_affine_coordinates + 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_get_order + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_key_compare + 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_debug_print_point + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_public_key + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_priv_key_der + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_group_from_key + 0x00000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_private_key + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_publickey_buf + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_write_pubkey_der + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_key + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_curve_id + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ecdh + 0x00000000 0x116 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ecdsa_get_sign + 0x00000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_edcsa_sign_verify + 0x00000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_debug_print_ec_key + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_parse_subpub_key + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_is_ec_key + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_gen_keypair + 0x00000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.mbedtls_pk_write_pubkey_formatted + 0x00000000 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_pk_write_formatted_pubkey_der + 0x00000000 0xf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_write_pub_key + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.eloop_cancel_timeout_one + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_is_timeout_registered + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_deplete_timeout + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_replenish_timeout + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_cancel_timeout_one + 0x00000000 0xa5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_is_timeout_registered + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_deplete_timeout + 0x00000000 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_replenish_timeout + 0x00000000 0xd9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.hostapd_config_defaults_bss + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_config_defaults + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp_empty + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_wep_key_cmp + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_maclist_found + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults_bss + 0x00000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults + 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp_empty + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_wep_key_cmp + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_maclist_found + 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_rate_found + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.wpa_auth_pmksa_remove + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_auth_sm_event + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_for_each_sta + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sta_no_wpa + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_pmksa_remove + 0x00000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sm_event + 0x00000000 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .literal.pmksa_cache_auth_flush + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .literal.pmksa_cache_auth_list + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text.pmksa_cache_auth_flush + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .rodata.pmksa_cache_auth_list.str1.4 + 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text.pmksa_cache_auth_list + 0x00000000 0xdc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .literal.ap_sta_delayed_1x_auth_fail_cb + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.hostapd_free_stas + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.ap_sta_delayed_1x_auth_fail_disconnect + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.ap_sta_pending_delayed_1x_auth_fail_disconnect + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_delayed_1x_auth_fail_cb + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_for_each_sta + 0x00000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.hostapd_free_stas + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_delayed_1x_auth_fail_disconnect + 0x00000000 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_pending_delayed_1x_auth_fail_disconnect + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .literal.sae_state_txt + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_state_txt.str1.4 + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_state_txt + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .text.dragonfly_suitable_group + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .literal.wpa_cipher_txt + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.wpa_insert_pmkid + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.wpa_cipher_rsc_len + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata.wpa_cipher_txt.str1.4 + 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_cipher_txt + 0x00000000 0x9d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_insert_pmkid + 0x00000000 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_cipher_rsc_len + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .literal.dh_init + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.dh_derive_shared + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_init 0x00000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_derive_shared + 0x00000000 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.wpa_sm_set_pmk + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.wpa_sta_is_cur_pmksa_set + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.eapol_sm_notify_eap_success + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sm_set_pmk + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sta_is_cur_pmksa_set + 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .literal.wpabuf_resize + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_alloc_ext_data + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_clear_free + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_dup + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_concat + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_printf + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_resize + 0x00000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_alloc_ext_data + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_clear_free + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_dup + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_concat + 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_printf + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal._wpa_snprintf_hex + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpa_snprintf_hex_uppercase + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpa_snprintf_hex + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .rodata._wpa_snprintf_hex.str1.4 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text._wpa_snprintf_hex + 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex_uppercase + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_info 0x00000000 0x346 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_abbrev 0x00000000 0x139 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_loc 0x00000000 0x27c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_line 0x00000000 0x485 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_str 0x00000000 0x306 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.add_char + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .literal.sae_pk_base32_encode + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.add_char + 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.sae_pk_base32_encode + 0x00000000 0x10e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .literal.wpa2_api_lock + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_api_unlock + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_rxq_init + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_rxq_enqueue + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_rxq_dequeue + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_rxq_deinit + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_set_eap_state + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_start_eapol_internal + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_client_enable_fn + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_wifi_sta_enterprise_disable + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_post + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_task_delete + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_peer_sm_deinit + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_peer_sm_init + 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_client_disable_fn + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_start_eapol + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_sm_rx_eapol + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_ent_rx_eapol + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_sm_send_eapol + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_sm_process_request + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_sm_rx_eapol_internal + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_task + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_wifi_sta_enterprise_enable + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_certificate_and_key + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_certificate_and_key + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_ca_cert + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_ca_cert + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_identity + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_identity + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_username + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_username + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_password + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_password + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_new_password + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_new_password + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_disable_time_check + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wifi_sta_get_enterprise_disable_time_check + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_get_disable_time_check + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_ttls_phase2_method + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_pac_file + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_fast_params + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_use_default_cert_bundle + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_api_lock + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_api_unlock + 0x00000000 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_rxq_init + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_rxq_enqueue + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_rxq_dequeue + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_rxq_deinit + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_set_eap_state + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.wpa2_start_eapol_internal.str1.4 + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_start_eapol_internal + 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_client_enable_fn + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_wifi_sta_enterprise_disable + 0x00000000 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_post + 0x00000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_task_delete + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.eap_peer_sm_deinit.str1.4 + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_peer_sm_deinit + 0x00000000 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.eap_peer_sm_init.str1.4 + 0x00000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_peer_sm_init + 0x00000000 0xfe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_client_disable_fn + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_start_eapol + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_sm_rx_eapol + 0x00000000 0x75 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_ent_rx_eapol + 0x00000000 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_sm_send_eapol + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.eap_sm_process_request.str1.4 + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_sm_process_request + 0x00000000 0x202 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.eap_sm_rx_eapol_internal.str1.4 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_sm_rx_eapol_internal + 0x00000000 0x105 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_task + 0x00000000 0x107 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_wifi_sta_enterprise_enable + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_certificate_and_key + 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_certificate_and_key + 0x00000000 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_ca_cert + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_ca_cert + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_identity + 0x00000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_identity + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_username + 0x00000000 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_username + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_password + 0x00000000 0x51 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_password + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_new_password + 0x00000000 0x51 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_new_password + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_disable_time_check + 0x00000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wifi_sta_get_enterprise_disable_time_check + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_get_disable_time_check + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.esp_eap_client_set_ttls_phase2_method.str1.4 + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_ttls_phase2_method + 0x00000000 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_suiteb_192bit_certification + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_pac_file + 0x00000000 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.esp_eap_client_set_fast_params.str1.4 + 0x00000000 0x4b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_fast_params + 0x00000000 0xcd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_use_default_cert_bundle + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_rxq + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .data.s_disable_time_check + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wifi_wpa2_sync_sem + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_api_lock + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .data.s_wpa2_state + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_queue + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_task_hdl + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_data_lock + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .text.wpa_sm_get_beacon_ie + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .literal.tls_mbedtls_cleanup + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_conn_delete + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_key_derivation + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_read + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_write + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_enable_sha1_config + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.set_ca_cert + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.set_pki_context + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_set_ciphersuite + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.set_client_config + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_create_mbedtls_handle + 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_prf + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_init + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_deinit + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_init + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_deinit + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_handshake + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_encrypt + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_decrypt + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_get_version + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_get_cipher + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_set_params + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_export_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_shutdown + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_get_random + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_cleanup + 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_conn_delete + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_key_derivation + 0x00000000 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_read + 0x00000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_write + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_enable_sha1_config + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.set_ca_cert + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.set_pki_context + 0x00000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_set_ciphersuite + 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.set_client_config.str1.4 + 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.set_client_config + 0x00000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.tls_create_mbedtls_handle.str1.4 + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_create_mbedtls_handle + 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_prf + 0x00000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_init + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_deinit + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_init + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_deinit + 0x00000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_errors + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_established + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_global_set_verify + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_verify + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_handshake + 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_server_handshake + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_encrypt + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_decrypt + 0x00000000 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_resumed + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_cipher_list + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_version + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_cipher + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_enable_workaround + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_failed + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_read_alerts + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_write_alerts + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_params + 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_global_set_params + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_session_ticket_cb + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_export_key + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_eap_fast_key + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_client_hello_ext + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_shutdown + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_random + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.__func__$0 + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.eap_ciphersuite_preference + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.eap_mbedtls_x509_crt_profile + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .data.tls_sig_algs_for_eap + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .bss.tls_instance_count + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_frame 0x00000000 0x3e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_info 0x00000000 0x47e4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_abbrev 0x00000000 0x5ff esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_loc 0x00000000 0xff6 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_aranges + 0x00000000 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_ranges 0x00000000 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_line 0x00000000 0x1e53 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_str 0x00000000 0x30f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.crypto_bignum_bits + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_to_string + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_free_buffer + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_bignum_bits + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_bignum_to_string + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_free_buffer + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.aes_siv_encrypt + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .text.aes_siv_encrypt + 0x00000000 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.mbo_add_ie + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.ieee802_11_parse_candidate_list + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.ieee802_11_vendor_ie_concat + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.get_ie 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_ie_count + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.get_vendor_ie + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.mbo_add_ie + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .rodata.ieee802_11_parse_candidate_list.str1.4 + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_parse_candidate_list + 0x00000000 0x13d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_vendor_ie_concat + 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_ext_capab + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.get_operating_class + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.wpabuf_put_be24 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.wpabuf_put_be32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_copy_buf + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_get_eap_method + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_get_methods + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_get_type + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_phase2_type + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_phase2_types + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_alloc + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_free + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_register + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_unregister_methods + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_register_methods + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_config_init + 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_config_deinit + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_blob_init + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_get_method_name + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_blob_deinit + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_abort + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_allowed_method + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_allowMethod + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_build_identity_resp + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_build_nak + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request_identity + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_request_new_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_buildIdentity + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_identity + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_password2 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_new_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_set_config_blob + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_blob + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_config_allowed_method + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_allowed_phase2_type + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_set_scard_pin + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_get_scard_identity + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.wpabuf_put_be24 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.wpabuf_put_be32 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_copy_buf + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_eap_method + 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_methods + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_type + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_phase2_type + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_phase2_types + 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_alloc + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_free + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_register + 0x00000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_unregister_methods + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_register_methods + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_deinit_prev_method + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_peer_config_init.str1.4 + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_config_init + 0x00000000 0x1c2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_config_deinit + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_peer_blob_init.str1.4 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_blob_init + 0x00000000 0x132 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_sm_get_method_name.str1.4 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_get_method_name + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_blob_deinit + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_abort + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_allowed_method + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_allowMethod + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_build_identity_resp + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_build_nak + 0x00000000 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request + 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_identity + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_password + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_new_password + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_buildIdentity + 0x00000000 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_identity + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_password + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_password2 + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_new_password + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_set_config_blob + 0x00000000 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_blob + 0x00000000 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.config_methods + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.eap_methods + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.esp_crt_bundle_attach_fn + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_default_cert_bundle + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_suiteb_certification + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_pac_file_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_pac_file + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_phase1_options + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ttls_phase2_type + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_new_password_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_new_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_password_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ca_cert_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ca_cert + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_passwd_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_passwd + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_client_cert_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_client_cert + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_username_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_username + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_anonymous_identity_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_anonymous_identity + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_frame 0x00000000 0x3e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_info 0x00000000 0x26fb esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_abbrev 0x00000000 0x543 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_loc 0x00000000 0xf7f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_aranges + 0x00000000 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_ranges 0x00000000 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_line 0x00000000 0x282d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_str 0x00000000 0x19ea esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.wpabuf_put_be24 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.wpabuf_put_be32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.eap_hdr_validate + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.eap_msg_alloc + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.wpabuf_put_be24 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.wpabuf_put_be32 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_hdr_len_valid + 0x00000000 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_hdr_validate + 0x00000000 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_msg_alloc + 0x00000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_update_len + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_get_id + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_get_type + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_frame 0x00000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_info 0x00000000 0xa4c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_abbrev 0x00000000 0x29f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_loc 0x00000000 0x831 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_aranges + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_line 0x00000000 0xb5f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_str 0x00000000 0x5fe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.eap_mschapv2_getKey + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_check_config + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_copy_challenge + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_challenge_reply + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_challenge + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_deinit + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_password_changed + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_success + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_failure_txt + 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_change_password + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_failure + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_process + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_init + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_peer_mschapv2_register + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_check_mslen + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_isKeyAvailable + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_getKey + 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_check_config + 0x00000000 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_copy_challenge + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_challenge_reply + 0x00000000 0x11e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_challenge + 0x00000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_deinit + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_password_changed + 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_success + 0x00000000 0x8b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .rodata.eap_mschapv2_failure_txt.str1.4 + 0x00000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_failure_txt + 0x00000000 0x174 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_change_password + 0x00000000 0x1d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_failure + 0x00000000 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_process + 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_init + 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .rodata.eap_peer_mschapv2_register.str1.4 + 0x00000000 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_peer_mschapv2_register + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_frame 0x00000000 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_info 0x00000000 0x277e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_abbrev 0x00000000 0x4c1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_loc 0x00000000 0x1186 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_aranges + 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_ranges 0x00000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_line 0x00000000 0x2248 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_str 0x00000000 0x1137 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_peap_get_session_id + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_init_for_reauth + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_deinit_for_reauth + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_has_reauth_data + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_get_status + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_getKey + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.wpabuf_put_be32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.wpabuf_put_be16 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peapv2_tlv_eap_payload + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_get_isk + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_build_nak + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_derive_cmk + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_validate_cryptobinding + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.peap_phase2_sufficient + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_add_cryptobinding + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_build_result + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_tlv_process + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_phase2_request + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_decrypt + 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_process + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_deinit + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_parse_phase1 + 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_init + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peer_peap_register + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_isKeyAvailable + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_session_id + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_init_for_reauth + 0x00000000 0x67 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_deinit_for_reauth + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_has_reauth_data + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_get_status.str1.4 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_status + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata 0x00000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_getKey.str1.4 + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_getKey + 0x00000000 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.wpabuf_put_be32 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.wpabuf_put_be16 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peapv2_tlv_eap_payload + 0x00000000 0x65 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_isk + 0x00000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_build_nak + 0x00000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_derive_cmk.str1.4 + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_derive_cmk + 0x00000000 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_validate_cryptobinding + 0x00000000 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.peap_phase2_sufficient + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_add_cryptobinding + 0x00000000 0xbe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_build_result + 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_tlv_process + 0x00000000 0x174 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_phase2_request + 0x00000000 0x1a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_decrypt + 0x00000000 0x3d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_process.str1.4 + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_process + 0x00000000 0x1b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_deinit + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_parse_phase1.str1.4 + 0x00000000 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_parse_phase1 + 0x00000000 0xfc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_init.str1.4 + 0x00000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_init + 0x00000000 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peer_peap_register.str1.4 + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peer_peap_register + 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_frame 0x00000000 0x280 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_info 0x00000000 0x3b1d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_abbrev 0x00000000 0x4db esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_loc 0x00000000 0x1aef esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_aranges + 0x00000000 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_ranges 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_line 0x00000000 0x3d98 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_str 0x00000000 0x134b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.peap_prfplus + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .text.peap_prfplus + 0x00000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_info 0x00000000 0x359 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_abbrev 0x00000000 0x164 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_loc 0x00000000 0x11f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_line 0x00000000 0x58e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_str 0x00000000 0x2f6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .literal.eap_tls_getKey + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_failure + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_success + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_process + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_deinit + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_init + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_peer_tls_register + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_isKeyAvailable + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_getKey + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_failure + 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .rodata.eap_tls_success.str1.4 + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_success + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_process + 0x00000000 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_deinit + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_init + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .rodata.eap_peer_tls_register.str1.4 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_peer_tls_register + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_frame 0x00000000 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_info 0x00000000 0x12e5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_abbrev 0x00000000 0x30c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_loc 0x00000000 0x287 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_aranges + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_ranges 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_line 0x00000000 0xa9a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_str 0x00000000 0xc5f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_params_flags + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_params_from_conf1 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_check_blob + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_params_from_conf + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_init_connection + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.wpabuf_put_be32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_msg_alloc + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_ssl_init + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_derive_key + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_derive_session_id + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_build_ack + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_status + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_process_init + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reset_input + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reassemble_fragment + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_data_reassemble + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_process_input + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reset_output + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_ssl_deinit + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_process_output + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_process_helper + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reauth_init + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_decrypt + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_encrypt + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_select_phase2_methods + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_phase2_nak + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_tls_params_flags.str1.4 + 0x00000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_params_flags + 0x00000000 0x6b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_params_from_conf1 + 0x00000000 0x8b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_check_blob + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_params_from_conf + 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_init_connection + 0x00000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.wpabuf_put_be32 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_msg_alloc + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_peer_tls_ssl_init.str1.4 + 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_ssl_init + 0x00000000 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_derive_key + 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_derive_session_id + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_build_ack + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_peer_tls_status.str1.4 + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_status + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_process_init + 0x00000000 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reset_input + 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reassemble_fragment + 0x00000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_data_reassemble + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_process_input + 0x00000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reset_output + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_ssl_deinit + 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_tls_process_output.str1.4 + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_process_output + 0x00000000 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_process_helper + 0x00000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reauth_init + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_decrypt + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_encrypt + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_select_phase2_methods + 0x00000000 0x101 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_phase2_nak + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_frame 0x00000000 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_info 0x00000000 0x2a1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_abbrev 0x00000000 0x512 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_loc 0x00000000 0x10c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_aranges + 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_ranges 0x00000000 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_line 0x00000000 0x270f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_str 0x00000000 0x137e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_ttls_fake_identity_request + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_get_emsk + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_get_session_id + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_getKey + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_init_for_reauth + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_deinit_for_reauth + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_has_reauth_data + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_get_status + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_eap_process + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_encrypt_response + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_eap_method + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_avp_hdr + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_avp_encapsulate + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_eap + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_avp_add + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_pap + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_implicit_challenge + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_mschapv2 + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_mschap + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request_chap + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_implicit_identity_request + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_phase2_eap + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_start + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_parse_attr_eap + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_parse_avp + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_parse_avps + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_phase2_mschapv2 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_decrypted + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_decrypt + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_v0_derive_key + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process_handshake + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_deinit + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_init + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_peer_ttls_register + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_eap_deinit + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_select_eap_method + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_check_auth_status + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_isKeyAvailable + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_fake_identity_request + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_emsk + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_session_id + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_getKey + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_init_for_reauth + 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_deinit_for_reauth + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_has_reauth_data + 0x00000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_get_status.str1.4 + 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_status + 0x00000000 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_eap_process + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_encrypt_response + 0x00000000 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_eap_method + 0x00000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_avp_hdr + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_avp_encapsulate + 0x00000000 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_eap + 0x00000000 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_avp_add + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_pap + 0x00000000 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_implicit_challenge.str1.4 + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_implicit_challenge + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_mschapv2 + 0x00000000 0x182 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_mschap + 0x00000000 0x12e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request_chap + 0x00000000 0x10d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_phase2_request.str1.4 + 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request + 0x00000000 0xd7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_implicit_identity_request + 0x00000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_phase2_eap + 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_start + 0x00000000 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_parse_attr_eap + 0x00000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_parse_avp + 0x00000000 0xf2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_parse_avps + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_phase2_mschapv2 + 0x00000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_decrypted + 0x00000000 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_decrypt + 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_v0_derive_key.str1.4 + 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_v0_derive_key + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process_handshake + 0x00000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process + 0x00000000 0xba esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_deinit + 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_init.str1.4 + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_init + 0x00000000 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_peer_ttls_register.str1.4 + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_peer_ttls_register + 0x00000000 0x67 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_frame 0x00000000 0x3d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_info 0x00000000 0x41e1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_abbrev 0x00000000 0x49a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_loc 0x00000000 0x20f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_aranges + 0x00000000 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_ranges 0x00000000 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_line 0x00000000 0x3d15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_str 0x00000000 0x1510 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.mschapv2_derive_response + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .literal.mschapv2_verify_auth_response + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_remove_domain + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_derive_response + 0x00000000 0xda esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_verify_auth_response + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_info 0x00000000 0x5a7 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_abbrev 0x00000000 0x171 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_loc 0x00000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_line 0x00000000 0x696 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_str 0x00000000 0x441 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .literal.pmksa_cache_list + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .rodata.pmksa_cache_list.str1.4 + 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text.pmksa_cache_list + 0x00000000 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.challenge_hash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_password_hash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.hash_nt_password_hash + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.challenge_response + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_nt_response + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_nt_response_pwhash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_authenticator_response_pwhash + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_authenticator_response + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_challenge_response + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.get_master_key + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.get_asymetric_start_key + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.encrypt_pw_block_with_password_hash + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.new_password_encrypted_with_old_nt_password_hash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_password_hash_encrypted_with_block + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.old_nt_password_hash_encrypted_with_new_nt_password_hash + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.utf8_to_ucs2 + 0x00000000 0xc5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.challenge_hash + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_password_hash + 0x00000000 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.hash_nt_password_hash + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.challenge_response + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_nt_response + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_nt_response_pwhash + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_authenticator_response_pwhash + 0x00000000 0x89 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_authenticator_response + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_challenge_response + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.get_master_key + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.get_asymetric_start_key + 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.encrypt_pw_block_with_password_hash + 0x00000000 0x83 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.new_password_encrypted_with_old_nt_password_hash + 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_password_hash_encrypted_with_block + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.old_nt_password_hash_encrypted_with_new_nt_password_hash + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.shs_pad2$0 + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic2$1 + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic3$2 + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.shs_pad1$3 + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic1$4 + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic2$5 + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic1$6 + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_frame 0x00000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_info 0x00000000 0x1297 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_abbrev 0x00000000 0x287 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_loc 0x00000000 0x7f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_line 0x00000000 0x1033 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_str 0x00000000 0x6b7 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.MD4Init + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Transform + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Update + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Pad + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Final + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.md4_vector + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Init 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Transform + 0x00000000 0x456 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Update + 0x00000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Pad 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Final + 0x00000000 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.md4_vector + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .rodata.PADDING + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_info 0x00000000 0x775 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_abbrev 0x00000000 0x1c9 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_loc 0x00000000 0x43c esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_line 0x00000000 0xaa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_str 0x00000000 0x9ed esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.chap_md5 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .text.chap_md5 + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_info 0x00000000 0x1ca esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_abbrev 0x00000000 0x10b esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_loc 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_line 0x00000000 0x340 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_str 0x00000000 0x2b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .literal.desfunc + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.cookey + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.deskey + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_encrypt + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_key_setup + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_block_encrypt + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_block_decrypt + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_key_setup + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_encrypt + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_decrypt + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.desfunc 0x00000000 0x1e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.cookey 0x00000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.deskey 0x00000000 0x16c esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_encrypt + 0x00000000 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_key_setup + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_block_encrypt + 0x00000000 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_block_decrypt + 0x00000000 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_key_setup + 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_encrypt + 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_decrypt + 0x00000000 0x99 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP8 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP7 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP6 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP5 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP4 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP3 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP2 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP1 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.pc2 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.totrot + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.pc1 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.bigbyte + 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.bytebit + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_info 0x00000000 0xfb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_abbrev 0x00000000 0x2d9 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_loc 0x00000000 0xf62 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_line 0x00000000 0x1b5b esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_str 0x00000000 0xa77 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.esp_coex_internal_semphr_take_wrapper + 0x00000000 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_internal_semphr_give_wrapper + 0x00000000 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_internal_semphr_delete_wrapper + 0x00000000 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.9.literal + 0x00000000 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.8.literal + 0x00000000 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_internal_semphr_create_wrapper + 0x00000000 0xc esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .data 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.7 0x00000000 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_take_wrapper + 0x00000000 0x21 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_give_wrapper + 0x00000000 0x15 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_delete_wrapper + 0x00000000 0x1a esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.9 0x00000000 0x11 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.8 0x00000000 0x14 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_create_wrapper + 0x00000000 0x24 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .data.g_coex_adapter_funcs + 0x00000000 0x58 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.http_method_str + 0x00000000 0x8 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_errno_name + 0x00000000 0x18 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_errno_description + 0x00000000 0x18 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_body_is_final + 0x00000000 0x4 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_parser_version + 0x00000000 0x4 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text 0x00000000 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .data 0x00000000 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .bss 0x00000000 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_method_str.str1.4 + 0x00000000 0xa esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_method_str + 0x00000000 0x19 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_errno_name.str1.4 + 0x00000000 0x2f esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_errno_name + 0x00000000 0x2a esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_errno_description + 0x00000000 0x2a esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_body_is_final + 0x00000000 0x19 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_parser_version + 0x00000000 0x8 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.__func__$3 + 0x00000000 0x17 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.__func__$4 + 0x00000000 0x10 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_strerror_tab + 0x00000000 0x108 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.ssl_check_record_type + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_read_application_data + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_build_record_nonce + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_extract_add_data_from_record + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ct_hmac + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_consume_current_message + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_check_ctr_renegotiate + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_check_record + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_encrypt_buf + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_decrypt_buf + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_prepare_record_content + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_fetch_input + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_start_handshake_msg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_prepare_handshake_record + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_handle_message_type + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_update_out_pointers + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_flush_output + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_reset_in_out_pointers + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_get_record_expansion + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_transform_free + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_set_inbound_transform + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_set_outbound_transform + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write_record + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write_handshake_msg_ext + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_finish_handshake_msg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write_change_cipher_spec + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_send_alert_message + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_send_fatal_handshake_failure + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_tls12_handle_hs_message_post_handshake + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_handle_hs_message_post_handshake + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_close_notify + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_write_real + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_parse_record_header + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_get_next_record + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_read_record + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_parse_change_cipher_spec + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_read + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_handle_pending_alert + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ct_uint_lt + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_transform_aead_dynamic_iv_is_explicit + 0x00000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_get_hs_total_len + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_check_record_type + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_record_is_in_progress + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_transform_get_explicit_iv_len + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_read_application_data + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_build_record_nonce + 0x00000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_extract_add_data_from_record + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ct_hmac + 0x00000000 0x161 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_consume_current_message + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_check_ctr_renegotiate + 0x00000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_set_timer + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_check_timer + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_check_record + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_encrypt_buf + 0x00000000 0x377 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_decrypt_buf + 0x00000000 0x402 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_prepare_record_content + 0x00000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_fetch_input + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_start_handshake_msg + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_prepare_handshake_record + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_update_handshake_status + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_handle_message_type + 0x00000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_update_out_pointers + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_flush_output + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_update_in_pointers + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_reset_in_out_pointers + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_get_bytes_avail + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_check_pending + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_get_record_expansion + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_transform_free + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_set_inbound_transform + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_set_outbound_transform + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_version + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_record + 0x00000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_handshake_msg_ext + 0x00000000 0x9a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_finish_handshake_msg + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_change_cipher_spec + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_send_alert_message + 0x00000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_send_fatal_handshake_failure + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_tls12_handle_hs_message_post_handshake + 0x00000000 0x7e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_handle_hs_message_post_handshake + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_close_notify + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_write_real + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_read_version + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_parse_record_header + 0x00000000 0x87 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_get_next_record + 0x00000000 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_read_record + 0x00000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_parse_change_cipher_spec + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_read + 0x00000000 0x14a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_handle_pending_alert + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_pend_fatal_alert + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_frame 0x00000000 0x508 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_info 0x00000000 0x57aa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_abbrev 0x00000000 0x5f6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_loc 0x00000000 0x2b1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_aranges + 0x00000000 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_ranges 0x00000000 0x2c8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_line 0x00000000 0x4fc9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_str 0x00000000 0x295b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_mfl_code_to_length + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_conf_version_check + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_conf_check + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_set_handshake_prfs + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_get_type + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_key_cert_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_append_key_cert + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_generic + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_sha256 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_sha384 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_compute_master + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_update_checksum_sha256 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_update_checksum_sha384 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_update_checksum_start + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_handshake_params_init + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_tls12_session_save + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_session_save + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_srv_check_client_no_crt_notification + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_check_peer_crt_unchanged + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_tls12_session_load + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_session_load + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_clear_peer_cert + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_prepare_handshake_step + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_write_hello_request + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_get_handshake_transcript_sha384 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_get_handshake_transcript_sha256 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_finished_tls_generic + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_finished_tls_sha256 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_finished_tls_sha384 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_verify_tls_legacy + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_verify_tls_sha256 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_verify_tls_sha384 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_parse_certificate_chain + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_pk_get_ec_group_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_tls_prf + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_extension_mask + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_optimize_checksum + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_add_hs_msg_to_checksum + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_reset_checksum + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_transform_init + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset_msg_layer + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_timer_cb + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_own_cert + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_hs_own_cert + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_mode_from_transform + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_mode_from_ciphersuite + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_tls12_populate_transform + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_hostname + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_alpn_protocols + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_max_frag_len + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_renegotiation_period + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_ciphersuite + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_version + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_input_max_frag_len + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_output_max_frag_len + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_max_out_record_payload + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_max_in_record_payload + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_save + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_step + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_free + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_free + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_copy + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_session + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_session + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_handshake_init + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_setup + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_start_renegotiation + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_renegotiate + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset_int + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_load + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_free + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_config_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_config_defaults + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_config_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_sig_from_pk + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_psa_curve_info_from_tls_id + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_ecp_group_id_from_tls_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_tls_id_from_ecp_group_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_check_curve + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_check_cert_usage + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_parse_certificate_verify + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_handshake_transcript + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_sig_alg_ext + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_derive_keys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_calc_verify_md + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_certificate + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_certificate + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_wrapup_free_hs_transform + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_wrapup + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_finished + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_finished + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_key_exchange_md_tls1_2 + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_sig_alg_ext + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_server_name_ext + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_alpn_ext + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_alpn_ext + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_own_cert + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_tls12_sig_alg_is_supported + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_mfl_code_to_length + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_conf_version_check + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_conf_check + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_base_mode + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_actual_mode + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_set_handshake_prfs + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_parse_certificate_coordinate + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.tls_prf_get_type + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_key_cert_free + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_append_key_cert + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.tls_prf_generic + 0x00000000 0x195 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.tls_prf_sha256 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.tls_prf_sha384 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_compute_master.str1.4 + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_compute_master + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_update_checksum_sha256 + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_update_checksum_sha384 + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_update_checksum_start + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_handshake_params_init + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_tls12_session_save + 0x00000000 0x17e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_session_save + 0x00000000 0x8d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_srv_check_client_no_crt_notification + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_check_peer_crt_unchanged + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_tls12_session_load + 0x00000000 0x281 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_session_load + 0x00000000 0x8f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_clear_peer_cert + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_prepare_handshake_step + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_write_hello_request + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_get_handshake_transcript_sha384 + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_get_handshake_transcript_sha256 + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_calc_finished_tls_generic.str1.4 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_finished_tls_generic + 0x00000000 0x8f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_finished_tls_sha256 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_finished_tls_sha384 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_verify_tls_legacy + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_verify_tls_sha256 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_verify_tls_sha384 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_parse_certificate_chain + 0x00000000 0x1a2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_pk_get_ec_group_id + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_tls_prf + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_extension_id + 0x00000000 0x19e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_extension_mask + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_optimize_checksum + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_add_hs_hdr_to_checksum + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_add_hs_msg_to_checksum + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_reset_checksum + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_transform_init + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset_msg_layer + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_endpoint + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_transport + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dtls_badmac_limit + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_authmode + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_verify + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_rng + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dbg + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_bio + 0x00000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_read_timeout + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_timer_cb + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_cache + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_ciphersuites + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_cert_profile + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_own_cert + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_ca_chain + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_hs_sni + 0x00000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_own_cert + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_ca_chain + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_dn_hints + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_authmode + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_verify + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_mode_from_transform + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_mode_from_ciphersuite + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_tls12_populate_transform.str1.4 + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_tls12_populate_transform + 0x00000000 0x302 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_sig_algs + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_groups + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hostname + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_sni + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_alpn_protocols + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_alpn_protocol + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_cert_req_ca_list + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_encrypt_then_mac + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_extended_master_secret + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_max_frag_len + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_legacy_renegotiation + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation_enforced + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation_period + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_tickets + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_tickets_cb + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_export_keys_cb + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_verify_result + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ciphersuite_id_from_ssl + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ciphersuite + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_get_version.str1.4 + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_version + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_input_max_frag_len + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_output_max_frag_len + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_max_out_record_payload + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_max_in_record_payload + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_peer_cert + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_save + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_step + 0x00000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_free + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_free + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_copy + 0x00000000 0x99 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_session + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_session + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_handshake_init + 0x00000000 0xbd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_setup + 0x00000000 0x9f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_start_renegotiation + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_renegotiate + 0x00000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset_int + 0x00000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_load + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_free + 0x00000000 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_config_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_config_defaults + 0x00000000 0xd1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_config_free + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_sig_from_pk + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_sig_from_pk_alg + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_pk_alg_from_sig + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_md_alg_from_hash + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_hash_from_md_alg + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_check_curve_tls_id + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_psa_curve_info_from_tls_id + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ecp_group_id_from_tls_id + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_tls_id_from_ecp_group_id + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_check_curve + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_check_cert_usage.str1.4 + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_check_cert_usage + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_parse_certificate_verify + 0x00000000 0x16a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_handshake_transcript + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_sig_alg_ext + 0x00000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_derive_keys + 0x00000000 0xae esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_calc_verify_md + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_certificate + 0x00000000 0xfb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_certificate + 0x00000000 0xde esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_wrapup_free_hs_transform + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_wrapup + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_finished + 0x00000000 0x9e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_finished + 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_key_exchange_md_tls1_2 + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_validate_ciphersuite + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_sig_alg_ext + 0x00000000 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_server_name_ext + 0x00000000 0x104 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_alpn_ext + 0x00000000 0x10c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_alpn_ext + 0x00000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.tls_id_match_table + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_suiteb_groups + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_tls12_preset_suiteb_sig_algs + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_suiteb_sig_algs + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_tls12_preset_default_sig_algs + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_default_sig_algs + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_suiteb_ciphersuites + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_default_groups + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_serialized_session_header + 0x00000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_frame 0x00000000 0xdf0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_info 0x00000000 0x9195 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_abbrev 0x00000000 0x643 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_loc 0x00000000 0x5eca esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_aranges + 0x00000000 0x4b8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_ranges 0x00000000 0x5b0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_line 0x00000000 0x993d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_str 0x00000000 0x45ee esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_write_supported_point_formats_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_max_fragment_length_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_encrypt_then_mac_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_extended_ms_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_renegotiation_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_session_ticket_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_max_fragment_length_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_encrypt_then_mac_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_extended_ms_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_session_ticket_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_supported_point_formats_ext + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_certificate_request + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_server_hello_done + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_renegotiation_info + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_alpn_ext + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_server_hello + 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_check_server_ecdh_params + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_get_ecdh_params_from_cert + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_server_ecdh_params + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.mbedtls_ssl_get_pk_type_and_md_alg_from_sig_alg + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.mbedtls_md_get_size_from_type + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_server_key_exchange + 0x00000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_encrypted_pms + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_client_key_exchange + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_write_certificate_verify + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_new_session_ticket + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.mbedtls_ssl_tls12_write_client_hello_exts + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.mbedtls_ssl_handshake_client_step + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_ssl_own_key + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_ssl_own_cert + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_ssl_tls12_sig_alg_is_supported + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_supported_point_formats_ext + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_max_fragment_length_ext + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_encrypt_then_mac_ext + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_extended_ms_ext + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_renegotiation_ext + 0x00000000 0x65 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_session_ticket_ext + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_max_fragment_length_ext + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_encrypt_then_mac_ext + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_extended_ms_ext + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_session_ticket_ext + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_supported_point_formats_ext + 0x00000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_certificate_request + 0x00000000 0x132 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_server_hello_done + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_renegotiation_info + 0x00000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_alpn_ext + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_server_hello + 0x00000000 0x436 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_check_server_ecdh_params + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_get_ecdh_params_from_cert + 0x00000000 0x73 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_server_ecdh_params + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_ssl_get_pk_type_and_md_alg_from_sig_alg + 0x00000000 0x65 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_md_get_size_from_type + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_server_key_exchange + 0x00000000 0x30e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_encrypted_pms + 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_client_key_exchange + 0x00000000 0xba esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_write_certificate_verify + 0x00000000 0x13e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_parse_new_session_ticket + 0x00000000 0x137 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_ssl_tls12_write_client_hello_exts + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_ssl_handshake_client_step + 0x00000000 0x17f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_frame 0x00000000 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_info 0x00000000 0x4c47 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_abbrev 0x00000000 0x57c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_loc 0x00000000 0x2c96 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_aranges + 0x00000000 0x110 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_ranges 0x00000000 0x148 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_line 0x00000000 0x495d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_str 0x00000000 0x2706 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.ssl_parse_supported_point_formats + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_max_fragment_length_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_encrypt_then_mac_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_extended_ms_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_renegotiation_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_renegotiation_info + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_supported_groups_ext + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_handle_id_based_session_resumption + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_session_ticket_ext + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.mbedtls_pk_get_ec_group_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_check_key_curve + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_pick_cert + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_ciphersuite_match + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_client_hello + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_encrypt_then_mac_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_server_hello + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_server_hello_done + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_get_ecdh_params_from_cert + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_prepare_server_key_exchange + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_server_key_exchange + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_certificate_request + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_decrypt_encrypted_pms + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_encrypted_pms + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_client_key_exchange + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_parse_certificate_verify + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_write_new_session_ticket + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.mbedtls_ssl_handshake_server_step + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_ciphersuite_no_pfs + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_own_key + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_own_cert + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_tls12_sig_alg_is_supported + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_extended_ms_ext + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_session_ticket_ext + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_max_fragment_length_ext + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_supported_point_formats_ext + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_supported_point_formats + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_max_fragment_length_ext + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_encrypt_then_mac_ext + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_extended_ms_ext + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_renegotiation_ext + 0x00000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_renegotiation_info + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_supported_groups_ext + 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_handle_id_based_session_resumption + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_session_ticket_ext + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_pk_get_ec_group_id + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_check_key_curve + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_pick_cert + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_ciphersuite_match + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .rodata 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_client_hello + 0x00000000 0x608 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_encrypt_then_mac_ext + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_server_hello + 0x00000000 0x1e8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_server_hello_done + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_get_ecdh_params_from_cert + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_prepare_server_key_exchange + 0x00000000 0x1ce esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_server_key_exchange + 0x00000000 0xae esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_certificate_request + 0x00000000 0x180 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_decrypt_encrypted_pms + 0x00000000 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_encrypted_pms + 0x00000000 0xea esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_client_key_exchange + 0x00000000 0xde esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_parse_certificate_verify + 0x00000000 0x172 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_write_new_session_ticket + 0x00000000 0x95 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_handshake_server_step + 0x00000000 0x163 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_conf_preference_order + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_frame 0x00000000 0x370 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_info 0x00000000 0x5847 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_abbrev 0x00000000 0x5b9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_loc 0x00000000 0x3828 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_aranges + 0x00000000 0x138 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_ranges 0x00000000 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_line 0x00000000 0x5a48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_str 0x00000000 0x2afa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.mbedtls_ms_time + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .text.mbedtls_ms_time + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_info 0x00000000 0x1d5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_abbrev 0x00000000 0x10e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_loc 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_line 0x00000000 0x34c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_str 0x00000000 0x2fa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .literal.mbedtls_ssl_ciphersuite_from_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_ciphersuite_from_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_list_ciphersuites + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_get_ciphersuite_name + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_get_ciphersuite_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_ciphersuite_get_cipher_key_bitlen + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.ciphersuite_is_removed + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_from_string + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_from_id + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_list_ciphersuites + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.mbedtls_ssl_get_ciphersuite_name.str1.4 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_name + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_id + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_get_cipher_key_bitlen + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_sig_pk_alg + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_sig_alg + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_uses_ec + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss.supported_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss.supported_ciphersuites + 0x00000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.str1.4 + 0x00000000 0x889 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.ciphersuite_definitions + 0x00000000 0x3b0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.ciphersuite_preference + 0x00000000 0x2e8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_info 0x00000000 0x934 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_abbrev 0x00000000 0x237 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_loc 0x00000000 0x495 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_line 0x00000000 0x82b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_str 0x00000000 0x126c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.ssl_generate_random + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_prepare_client_hello + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_write_client_hello_cipher_suites + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_write_hostname_ext + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_write_alpn_ext + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_write_supported_groups_ext + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.ssl_write_client_hello_body + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.mbedtls_ssl_write_client_hello + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.mbedtls_ssl_tls12_named_group_is_ecdhe + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_generate_random + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_prepare_client_hello + 0x00000000 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_write_client_hello_cipher_suites + 0x00000000 0xf9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_write_hostname_ext + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_write_alpn_ext + 0x00000000 0xbd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_write_supported_groups_ext + 0x00000000 0xe5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.ssl_write_client_hello_body + 0x00000000 0x210 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.mbedtls_ssl_write_client_hello + 0x00000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_info 0x00000000 0x31a2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_abbrev 0x00000000 0x51c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_loc 0x00000000 0x1a14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_ranges 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_line 0x00000000 0x1f8d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_str 0x00000000 0x1e81 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.psa_extend_key_usage_flags + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.psa_algorithm_for_rsa + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_md_get_size_from_type + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.pk_hashlen_helper + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_setup_rsa_alt + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify_restartable + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign_restartable + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_decrypt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_encrypt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_check_pair + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_debug + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_get_name + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.copy_from_psa + 0x00000000 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_copy_from_psa + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_copy_public_from_psa + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign_ext + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_get_psa_attributes + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.import_public_into_psa + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.import_pair_into_psa + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_import_into_psa + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify_ext + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.psa_extend_key_usage_flags + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.psa_algorithm_for_rsa + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_md_get_size_from_type + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.pk_hashlen_helper + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_setup_rsa_alt + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_can_do + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify_restartable + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign_restartable + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_decrypt + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_encrypt + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_check_pair + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_bitlen + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_debug + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .rodata.mbedtls_pk_get_name.str1.4 + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_name + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.copy_from_psa + 0x00000000 0x2a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_copy_from_psa + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_copy_public_from_psa + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign_ext + 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_psa_attributes + 0x00000000 0x211 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.import_public_into_psa + 0x00000000 0x106 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.import_pair_into_psa + 0x00000000 0x14b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_import_into_psa + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify_ext + 0x00000000 0xe3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_ecc_set_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .literal.mbedtls_pk_ecc_set_pubkey_from_prv + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .text.mbedtls_pk_ecc_set_key + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .text.mbedtls_pk_ecc_set_pubkey_from_prv + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .literal.rsa_alt_sign_wrap + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_decrypt_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_free_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_alloc_wrap + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_check_pair + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_can_do + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_get_bitlen + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_sign_wrap + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_decrypt_wrap + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_free_wrap + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_alloc_wrap + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_check_pair + 0x00000000 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.mbedtls_rsa_alt_info + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.pk_get_ecparams + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_rfc8410_der + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_sec1_der + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_pkcs8_unencrypted_der + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_key_pkcs8_encrypted_der + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_key + 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_load_file + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_keyfile + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_public_keyfile + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_ecc_tag_is_specified_ec_domain + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_get_ecparams + 0x00000000 0x5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_rfc8410_der + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_sec1_der + 0x00000000 0x14f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_pkcs8_unencrypted_der + 0x00000000 0x183 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_key_pkcs8_encrypted_der.str1.4 + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_key_pkcs8_encrypted_der + 0x00000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_key.str1.4 + 0x00000000 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_key + 0x00000000 0x322 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_load_file.str1.4 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_load_file + 0x00000000 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_keyfile + 0x00000000 0x5f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_public_keyfile + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_get_type_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_get_ec_group_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_pubkey + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_param + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_rsa_der + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_private + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_rfc8410_der + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_der + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey_der + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_key_der + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey_pem + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_key_pem + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_get_type_ext + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_get_ec_group_id + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_pubkey + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_param + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_rsa_der + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_private + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_rfc8410_der + 0x00000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_der + 0x00000000 0x104 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey_der + 0x00000000 0x126 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_key_der + 0x00000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata.mbedtls_pk_write_pubkey_pem.str1.4 + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey_pem + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata.mbedtls_pk_write_key_pem.str1.4 + 0x00000000 0xbd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_key_pem + 0x00000000 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_frame 0x00000000 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_info 0x00000000 0x17e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_abbrev 0x00000000 0x3ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_loc 0x00000000 0xb05 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_ranges 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_line 0x00000000 0x1427 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_str 0x00000000 0x929 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pem_write_buffer + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text.mbedtls_pem_write_buffer + 0x00000000 0x121 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .literal.pkcs12_parse_pbe_params + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.pkcs12_fill_buffer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_md_get_size_from_type + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.calculate_hashes + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs12_derivation + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.pkcs12_pbe_derive_key_iv + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs12_pbe_ext + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.pkcs12_parse_pbe_params + 0x00000000 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.pkcs12_fill_buffer + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.mbedtls_md_get_size_from_type + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.calculate_hashes + 0x00000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.mbedtls_pkcs12_derivation + 0x00000000 0x24d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.pkcs12_pbe_derive_key_iv + 0x00000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.mbedtls_pkcs12_pbe_ext + 0x00000000 0x142 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_frame 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_info 0x00000000 0x16d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_abbrev 0x00000000 0x43a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_loc 0x00000000 0xadd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_ranges 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_line 0x00000000 0xf1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_str 0x00000000 0x133d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.pkcs5_parse_pbkdf2_params + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.pkcs5_pbkdf2_hmac + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_pkcs5_pbkdf2_hmac_ext + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_pkcs5_pbes2_ext + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_pkcs5_self_test + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.pkcs5_parse_pbkdf2_params + 0x00000000 0xaf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.pkcs5_pbkdf2_hmac + 0x00000000 0x14c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_pbkdf2_hmac_ext + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.mbedtls_pkcs5_pbes2_ext.str1.4 + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_pbes2_ext + 0x00000000 0x1fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.mbedtls_pkcs5_self_test.str1.4 + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_self_test + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.result_key_test_data + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.key_len_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.it_cnt_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.salt_test_data + 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.slen_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.password_test_data + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.plen_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_info 0x00000000 0x18bd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_abbrev 0x00000000 0x43b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_loc 0x00000000 0x8b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_line 0x00000000 0xf0e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_str 0x00000000 0x1452 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_base64_encode + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.mbedtls_base64_self_test + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_ct_base64_enc_char + 0x00000000 0xcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_base64_encode + 0x00000000 0x14a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.mbedtls_base64_self_test.str1.4 + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_base64_self_test + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_enc + 0x00000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_dec + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.x509_get_uid + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_subject_key_id + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_certificate_policies + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_san_uri + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_string_cmp + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_name_cmp + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_ee_locally_trusted + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_version + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_dates + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_basic_constraints + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_ext_key_usage + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_authority_key_id + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_get_crt_ext + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_info_ext_key_usage + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_info_cert_policies + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_inet_pton_ipv4 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_inet_pton_ipv6 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_pk_get_ec_group_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_profile_check_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_check_wildcard + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_cn + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_signature + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_info + 0x00000000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_info + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_check_key_usage + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_parent + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_find_parent_in + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_find_parent + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_check_extended_key_usage + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_is_revoked + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_verifycrl + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_verify_chain + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_cn_inet_pton + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_san_ip + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_san + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_verify_name + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_verify_restartable_ca_cb + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_with_profile + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_restartable + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_free + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_parse_der_core + 0x00000000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der_internal + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der_nocopy + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der_with_ext_cb + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_file + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_path + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_get_ca_istrue + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_profile_check_md_alg + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_profile_check_pk_alg + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_memcasecmp + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verify_chain_reset + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_merge_flags_with_cb + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_uid + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_subject_key_id + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata 0x00000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_certificate_policies + 0x00000000 0x12d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_san_uri + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_string_cmp + 0x00000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_name_cmp + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_ee_locally_trusted + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_version + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_dates + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_basic_constraints + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_ext_key_usage + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_authority_key_id + 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_crt_ext + 0x00000000 0x2ac esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_info_ext_key_usage.str1.4 + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_info_ext_key_usage + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_info_cert_policies + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_inet_pton_ipv4 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_inet_pton_ipv6 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_pk_get_ec_group_id + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_profile_check_key + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_check_wildcard + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_cn + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_signature + 0x00000000 0x69 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_info.str1.4 + 0x00000000 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_info + 0x00000000 0x57a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_verify_info.str1.4 + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_info + 0x00000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_check_key_usage + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_parent + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_find_parent_in + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_find_parent + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_check_extended_key_usage + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_is_revoked + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verifycrl + 0x00000000 0xf5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verify_chain + 0x00000000 0x135 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_cn_inet_pton + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_san_ip + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_san + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_crt_verify_name.str1.4 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verify_name + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verify_restartable_ca_cb + 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_with_profile + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_restartable + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_free + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_parse_der_core + 0x00000000 0x384 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der_internal + 0x00000000 0x8d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der_nocopy + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der_with_ext_cb + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_parse.str1.4 + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse + 0x00000000 0xf6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_file + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_parse_path.str1.4 + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_path + 0x00000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_get_ca_istrue + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.str1.4 + 0x00000000 0x406 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_crt_verify_strings + 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_none + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_suiteb + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_next + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_default + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_frame 0x00000000 0x550 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_info 0x00000000 0x56d7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_abbrev 0x00000000 0x4d8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_loc 0x00000000 0x39cc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_aranges + 0x00000000 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_ranges 0x00000000 0x228 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_line 0x00000000 0x5911 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_str 0x00000000 0x19b0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.md_type_to_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_date_is_valid + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_parse_time + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_get_attr_type_value + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_get_hash_alg + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_get_other_name + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_serial + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_alg_null + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_rsassa_pss_params + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_name + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_time + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_sig + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_sig_alg + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_ext + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_dn_gets + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_serial_gets + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_sig_alg_gets + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_key_size_helper + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_ns_cert_type + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_key_usage + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_parse_subject_alt_name + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_free_subject_alt_name + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_subject_alt_name_ext + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_subject_alt_name + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_subject_alt_name + 0x00000000 0xac esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_cert_type + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_key_usage + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.md_type_to_string.str1.4 + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.md_type_to_string + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_date_is_valid + 0x00000000 0xcd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_parse2_int + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_parse_time + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.nibble_to_hex_digit + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_get_attr_type_value + 0x00000000 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_get_hash_alg + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.x509_get_other_name.str1.4 + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_get_other_name + 0x00000000 0x11f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_serial + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_alg_null + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_alg + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_get_rsassa_pss_params.str1.4 + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_rsassa_pss_params + 0x00000000 0x1de esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_name + 0x00000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_time + 0x00000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_sig + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_sig_alg + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_ext + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_dn_gets.str1.4 + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_dn_gets + 0x00000000 0x341 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_serial_gets.str1.4 + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_serial_gets + 0x00000000 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_sig_alg_gets.str1.4 + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_sig_alg_gets + 0x00000000 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_key_size_helper.str1.4 + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_key_size_helper + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_time_cmp + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_time_is_past + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_time_is_future + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_ns_cert_type + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_key_usage + 0x00000000 0x57 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_parse_subject_alt_name + 0x00000000 0x156 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_free_subject_alt_name + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_subject_alt_name_ext + 0x00000000 0xdd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_subject_alt_name + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_subject_alt_name.str1.4 + 0x00000000 0x164 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_subject_alt_name + 0x00000000 0x4ea esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_cert_type.str1.4 + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_cert_type + 0x00000000 0x1b9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_key_usage.str1.4 + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_key_usage + 0x00000000 0x1ed esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_frame 0x00000000 0x328 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_info 0x00000000 0x3571 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_abbrev 0x00000000 0x419 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_loc 0x00000000 0x3636 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_aranges + 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_ranges 0x00000000 0x188 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_line 0x00000000 0x4ec1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_str 0x00000000 0xce6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.misc_nvs_load + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_restore + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .text.misc_nvs_restore + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .data.libcore_reversion_git + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.is_zero_addr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_ext_assoc_len + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_ext_get_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_announce + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_yield + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_fixed + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_gone + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ps + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_ext_assoc_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_sync_interface_tsf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ext_assoc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free$part$14 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed$part$15 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_conflict_root_state$part$31 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_my_ie_encrypted + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_ssid_len + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_coding_ie_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_encrypt_vnd_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_assoc_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_decrypt_vnd_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_check_vnd_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_ie_crypto_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_get + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_sta_monitor_rssi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_reject_connection + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_change_beacon_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_get + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_ie_esp_mesh_head + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ssid_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ext_assoc_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ps_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_duty_signaling + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_init_mesh_assoc_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.roots_type2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_malloc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._print_roots_count + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_num_reach_max + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_reset_window_open_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_announce + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_get + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_valid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce_used + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield_used + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_fixed + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_gone + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_vnd_roots_len + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_roots_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_stop_beacon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_close_expire + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_open_expire + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_fixed + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_gone + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.print_roots_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_duty_signaling + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_ps_set_new_duty + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_post_event + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_master_is_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_parse_ps_entire_rule + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_parse_ps_uplink_rule + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_check_duration_expire + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_set_master_identity + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_clr_master_identity + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_clr_remaining + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_set_remaining + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_check_allowed + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_cycle_set_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_ps_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_recv_mesh_duty_signaling + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_process_remaining + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_root_process_duty_duration_expire + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_cycle_get_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_found + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_invalid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_ie_ignored + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_is_same_router + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_conflict_root_state + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_roots_gone + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_announce + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_conflict_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_remove_conflict_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_yield + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_conflict_table + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_find_conflict_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_update_conflict_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_add_conflict_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_found_conflict_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_remove_gone + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_gone + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie_ttl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_yield + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_root_process_roots_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_parse_conflict_roots_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_roots_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_check_conflict_beacon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_assoc_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_clear_parent_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_switch_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_weak_rssi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_assoc_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_candidate_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_monitor_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_monitor_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_sub_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_set_flag_roots_found + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_roots_len + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_probe_response + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_vote_candidate_rssi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_beacon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_rssi_threshold + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_rssi_threshold + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_init_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_deinit_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_zero_addr + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_ext_assoc_len + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_ext_get_process + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ssid + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_announce + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_yield + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_fixed + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_gone + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ps + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_ext_assoc_ie + 0x00000000 0x7c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_sync_interface_tsf + 0x00000000 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ext_assoc + 0x00000000 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_free$part$14 + 0x00000000 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_fixed$part$15 + 0x00000000 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_conflict_root_state$part$31 + 0x00000000 0x25b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_my_ie_encrypted + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_ssid_len + 0x00000000 0x67 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_coding_ie_key + 0x00000000 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_encrypt_vnd_ie + 0x00000000 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_assoc_ie + 0x00000000 0xa4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_decrypt_vnd_ie + 0x00000000 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_check_vnd_ie + 0x00000000 0x85 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_ie_crypto_config + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_mesh_quick_set + 0x00000000 0x25a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.ieee80211_mesh_quick_set + 0x00000000 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_mesh_quick_get + 0x00000000 0x15a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.ieee80211_mesh_quick_get + 0x00000000 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_sta_monitor_rssi + 0x00000000 0x148 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_reject_connection + 0x00000000 0xc9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_change_beacon_interval + 0x00000000 0x9c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_quick_set + 0x00000000 0x1d4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_quick_get + 0x00000000 0x61 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.str1.1 + 0x00000000 0x342 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_ie_esp_mesh_head + 0x00000000 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ssid_ie + 0x00000000 0xfe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ext_assoc_ie + 0x00000000 0x98 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ps_ie + 0x00000000 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_duty_signaling + 0x00000000 0xee C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_init_mesh_assoc_ie + 0x00000000 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.roots_type2str + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_free + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_malloc + 0x00000000 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._print_roots_count + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_num_reach_max + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_reset_window_open_time + 0x00000000 0x85 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_announce + 0x00000000 0x27c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_fixed + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_roots_get + 0x00000000 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_valid + 0x00000000 0xa7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce + 0x00000000 0xae C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield + 0x00000000 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce_used + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield_used + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_fixed + 0x00000000 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_gone + 0x00000000 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_vnd_roots_len + 0x00000000 0x87 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_roots_ie + 0x00000000 0x136 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_stop_beacon + 0x00000000 0xde C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_check_window_close_expire + 0x00000000 0x19a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_check_window_open_expire + 0x00000000 0x1ca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_fixed + 0x00000000 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_gone + 0x00000000 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.print_roots_ie + 0x00000000 0x29a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_duty_signaling + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_ps_set_new_duty + 0x00000000 0xa2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_post_event + 0x00000000 0xe0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_master_is_root + 0x00000000 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_parse_ps_entire_rule + 0x00000000 0x4cf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_parse_ps_uplink_rule + 0x00000000 0x20b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_check_duration_expire + 0x00000000 0x4b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_set_master_identity + 0x00000000 0xe1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_clr_master_identity + 0x00000000 0x136 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_clr_remaining + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_set_remaining + 0x00000000 0xb0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_check_allowed + 0x00000000 0x20e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_cycle_set_process + 0x00000000 0x31e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_ps_ie + 0x00000000 0x28d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_recv_mesh_duty_signaling + 0x00000000 0x104 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_nwk_duty_process_remaining + 0x00000000 0x33f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_root_process_duty_duration_expire + 0x00000000 0xaa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_ps_duty_cycle_get_process + 0x00000000 0x185 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_new_root_found + 0x00000000 0x19a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_new_root_invalid + 0x00000000 0x92 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_ie_ignored + 0x00000000 0x8b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_is_same_router + 0x00000000 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_conflict_root_state + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_check_roots_gone + 0x00000000 0xfe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_announce + 0x00000000 0x128 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_conflict_root + 0x00000000 0x13b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_remove_conflict_root + 0x00000000 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_yield + 0x00000000 0x161 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_conflict_table + 0x00000000 0xf5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_find_conflict_root + 0x00000000 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_update_conflict_root + 0x00000000 0xf4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_add_conflict_root + 0x00000000 0x207 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_new_found_conflict_root + 0x00000000 0x51 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_roots_set + 0x00000000 0x53c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_remove_gone + 0x00000000 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_gone + 0x00000000 0x190 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_stop + 0x00000000 0x120 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_process_roots_ie_ttl + 0x00000000 0xb6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_yield + 0x00000000 0x22f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_root_process_roots_ie + 0x00000000 0x34e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_process_roots_ie + 0x00000000 0x39c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_parse_conflict_roots_ie + 0x00000000 0x450 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_conflict_roots_ie + 0x00000000 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_check_conflict_beacon + 0x00000000 0xdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_conflict_assoc_ie + 0x00000000 0x4c0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_parent_candidate + 0x00000000 0xf8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_clear_parent_candidate + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_candidate + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_switch_candidate + 0x00000000 0x35b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_weak_rssi + 0x00000000 0x1c3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_assoc_ie + 0x00000000 0xea C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_parent_candidate_ie + 0x00000000 0x24f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_parent_monitor_config + 0x00000000 0x87 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_monitor_config + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_sub_ie + 0x00000000 0x99 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_set_flag_roots_found + 0x00000000 0xde C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_roots_len + 0x00000000 0x2ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_parent_ie + 0x00000000 0x48a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_probe_response + 0x00000000 0x121 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_vote_candidate_rssi + 0x00000000 0x110 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_beacon + 0x00000000 0x14a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_rssi_threshold + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_rssi_threshold + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_quick_funcs_init + 0x00000000 0x1ad C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_init_cb + 0x00000000 0xab C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_quick_funcs_deinit + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_deinit_cb + 0x00000000 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.CSWTCH$377 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.rx_bcn_count$10994 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.monitor_count$10865 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.last_parent_layer$10864 + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.mesh_sub_ie$10855 + 0x00000000 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data.candidate_rssi$10844 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.monitor_time_start$10775 + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$10742 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.post_event_time$10564 + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.signaling_token$10383 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$10319 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.max_ie_len$10314 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.roots_found_time$10312 + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.is_roots_found$10311 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.post_event_time$10271 + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$9947 + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$9941 + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$9768 + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.36 + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.35 + 0x00000000 0x77 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.34 + 0x00000000 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_worse_rssi_time + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.33 + 0x00000000 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.32 + 0x00000000 0x99 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.31 + 0x00000000 0xa0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.30 + 0x00000000 0xa3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.29 + 0x00000000 0xa2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.28 + 0x00000000 0x89 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.27 + 0x00000000 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.26 + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.25 + 0x00000000 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.24 + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.23 + 0x00000000 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.22 + 0x00000000 0x51 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.21 + 0x00000000 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.20 + 0x00000000 0x85 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.19 + 0x00000000 0x61 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.18 + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.17 + 0x00000000 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.16 + 0x00000000 0x5f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.15 + 0x00000000 0x53 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.14 + 0x00000000 0x43 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.13 + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.12 + 0x00000000 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.11 + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.10 + 0x00000000 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.9 + 0x00000000 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.8 + 0x00000000 0x75 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.7 + 0x00000000 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.6 + 0x00000000 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_error.5 + 0x00000000 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.4 + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.3 + 0x00000000 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_error.2 + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.esp_mesh_remain_nwk_duty + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_device_duty_type + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_parent_duty_type + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_device_duty + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_parent_duty + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.wifi_vnd_ext_mesh_roots + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_conflict_roots + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_roots_ie_life + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_assoc_time + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_weak_time + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_parent_candidate + 0x00000000 0xb0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_rssi_threshold + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_monitor_parent_cfg + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_recv_bcn_count + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_is_probe_requested + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.iv 0x00000000 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_ie_crypto_funcs + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_ie_crypto_key + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data.g_mesh_monitor_parent_beacon_count + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data.MESH_BCAST_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_pm_tbtt_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tbtt_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_rx_beacon_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tx_data_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tx_null_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.mesh_pm_set_null + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_go_to_sleep + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_go_to_wake + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_is_start_pm_now + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.mesh_pm_tbtt_start + 0x00000000 0x5c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tbtt_timeout_process + 0x00000000 0x1fb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_rx_beacon_process + 0x00000000 0x188 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tx_data_process + 0x00000000 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_tx_null_process + 0x00000000 0x5d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.mesh_pm_set_null + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_go_to_sleep + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_pm_go_to_wake + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.esp_mesh_is_start_pm_now + 0x00000000 0x57 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.rx_bcn_count$8143 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.send_null_cnt$8089 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .rodata_wlog_info.4 + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .rodata_wlog_warning.3 + 0x00000000 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .rodata_wlog_info.2 + 0x00000000 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.mesh_ps_keep_cnx + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .data.s_mesh_active_duty_cycle + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.s_mesh_next_awake_tbtt + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.s_mesh_is_awake_duty + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .data.g_mesh_dfs_compensation_ms + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.mesh_mutex_lock + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_mutex_unlock + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_mbox + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_free_mbox + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_malloc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_free + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_context + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_free_context + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_create_task + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.wifi_event_id2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.nwk_event_id2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_msg_id2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_state_id2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.discnx_reason_id2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_ie_type2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.scan_status2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.vote_done2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.vote_start2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.txq_opr2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_wifi_err2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.io_cfg2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.opt_type2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.reconnect_type2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.dutytype2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_mutex_lock + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_mutex_unlock + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.str1.1 + 0x00000000 0xdd3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_create_mbox + 0x00000000 0xa4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_free_mbox + 0x00000000 0x93 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_malloc + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_free + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_create_context + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_free_context + 0x00000000 0x8c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_create_task + 0x00000000 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.wifi_event_id2str + 0x00000000 0x148 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.wifi_event_id2str + 0x00000000 0xe8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.nwk_event_id2str + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.tx_msg_id2str + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.tx_state_id2str + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.discnx_reason_id2str + 0x00000000 0x170 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_ie_type2str + 0x00000000 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.scan_status2str + 0x00000000 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.vote_done2str + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.vote_start2str + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.txq_opr2str + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.tx_wifi_err2str + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.io_cfg2str + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.opt_type2str + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.reconnect_type2str + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.dutytype2str + 0x00000000 0x9b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$57 + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$55 + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$53 + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$51 + 0x00000000 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$49 + 0x00000000 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$47 + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$45 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$40 + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$38 + 0x00000000 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$36 + 0x00000000 0xc0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .bss.strid$9412 + 0x00000000 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.__func__$9368 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.__func__$9362 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_get_rx_pending + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_ie_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_wifi_event_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_wifi_event_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_stop_recv + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_parse_option + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_add_option + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_chain_header_add_ttl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_send_process_topo + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_send_process_flag + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_wait + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_signal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_mgmt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv_add_option + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv_process_flag + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_recv + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_encrypt_ie_plain_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_router + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_router + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_type + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_type + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_max_layer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_password + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_authmode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_authmode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_connections + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_connections + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_non_mesh_connections + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_non_mesh_connections + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_layer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_parent_bssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_print_rxQ_waiting + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_myself_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_tcpip_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_flush_tcpip_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_recv_release + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_recv_toDS + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_max_layer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_self_organized + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_self_organized + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_parent + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_parent + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_waive_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_waive_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_send_stop_vote + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_stop_vote + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_vote_percentage + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_vote_percentage + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_addr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_attempts + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_attempts + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_xmit_state_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_total_node_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_switch_parent_paras + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_switch_parent_paras + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_xon_qsize + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_xon_qsize + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_group + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_insert_group_addr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_addr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_group_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_id + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_list + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_capacity_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_capacity_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_ie_encrypted + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_funcs + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_funcs + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ie_crypto_key + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_root_healing_delay + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_healing_delay + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_passive_scan_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_passive_scan_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_fix_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_root_fixed + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_announce_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_announce_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_list + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_switch_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_look_for_network + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_topology + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_topology + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_device_active + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_enable_ps + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_disable_ps + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_ps_enabled + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_ps_get_duties + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.str1.1 + 0x00000000 0xaa0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_rx_pending + 0x00000000 0x13f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_ie_init + 0x00000000 0x136 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_wifi_event_init + 0x00000000 0xd4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_wifi_event_deinit + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_init + 0x00000000 0x261 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_stop_recv + 0x00000000 0x1ee C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_parse_option + 0x00000000 0x118 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.mesh_parse_option + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_add_option + 0x00000000 0x11c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_chain_header_add_ttl + 0x00000000 0x5d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_send_process_topo + 0x00000000 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_send_process_flag + 0x00000000 0x178 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_sem_wait + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_sem_signal + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_mgmt + 0x00000000 0x2ea C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send + 0x00000000 0x6b4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.esp_mesh_send + 0x00000000 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_recv_add_option + 0x00000000 0x170 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_recv_process_flag + 0x00000000 0x105 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_recv + 0x00000000 0x3e8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_recv + 0x00000000 0x166 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_encrypt_ie_plain_key + 0x00000000 0x118 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_config + 0x00000000 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_router + 0x00000000 0xb8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_router + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_id + 0x00000000 0xd8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_id + 0x00000000 0x152 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_id + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_type + 0x00000000 0xb2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_type + 0x00000000 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_max_layer + 0x00000000 0x4e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_password + 0x00000000 0xcf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_authmode + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_ap_authmode + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_connections + 0x00000000 0x75 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_ap_connections + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_non_mesh_connections + 0x00000000 0x84 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_config + 0x00000000 0x4b1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_non_mesh_connections + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_layer + 0x00000000 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_parent_bssid + 0x00000000 0xa8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_root + 0x00000000 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_print_rxQ_waiting + 0x00000000 0x204 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_push_to_myself_queue + 0x00000000 0x21c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_push_to_tcpip_queue + 0x00000000 0x3ca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_flush_tcpip_queue + 0x00000000 0xa9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_recv_release + 0x00000000 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_recv_toDS + 0x00000000 0x1da C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_max_layer + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_self_organized + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_self_organized + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_parent + 0x00000000 0x677 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_parent + 0x00000000 0x15a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_waive_root + 0x00000000 0xa6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_waive_root + 0x00000000 0xa0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_send_stop_vote + 0x00000000 0x1c5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_stop_vote + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_vote_percentage + 0x00000000 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_vote_percentage + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_root_addr + 0x00000000 0xaa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_attempts + 0x00000000 0xae C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_attempts + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_push_to_xmit_state_queue + 0x00000000 0xb4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_stop + 0x00000000 0x6aa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_deinit + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_start + 0x00000000 0x21c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_total_node_num + 0x00000000 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_switch_parent_paras + 0x00000000 0xb9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_switch_parent_paras + 0x00000000 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_xon_qsize + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_xon_qsize + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_my_group + 0x00000000 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_insert_group_addr + 0x00000000 0x141 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_addr + 0x00000000 0x1a6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_group_id + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_id + 0x00000000 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_group_num + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_group_list + 0x00000000 0x8a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_capacity_num + 0x00000000 0x86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_capacity_num + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_my_ie_encrypted + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_ie_crypto_funcs + 0x00000000 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_funcs + 0x00000000 0x107 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_ie_crypto_key + 0x00000000 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_key + 0x00000000 0x1a4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_ie_crypto_key + 0x00000000 0xf2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_root_healing_delay + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_root_healing_delay + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_passive_scan_time + 0x00000000 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_passive_scan_time + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_fix_root + 0x00000000 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_root_fixed + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_announce_interval + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_announce_interval + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_num + 0x00000000 0xec C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_list + 0x00000000 0x12a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_switch_channel + 0x00000000 0x124 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_look_for_network + 0x00000000 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_topology + 0x00000000 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_topology + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_device_active + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_enable_ps + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_disable_ps + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_ps_enabled + 0x00000000 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_ps_get_duties + 0x00000000 0xe6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9873 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9861 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9805 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9746 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9736 + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9727 + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9651 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9619 + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9551 + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9532 + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.option$9499 + 0x00000000 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.value$9498 + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9453 + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9443 + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_group_addr + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_send_mutex + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_stop_mutex + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_mesh_stop_event_group + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_ioctl_sem + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_xmit_sem + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_tcpip_mbox + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_myself_mbox + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_ext_crypto_config + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.s_mesh_ie_crypto_plain_key + 0x00000000 0x41 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_mesh_started + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_mesh_inited + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_extra_toDS_qsize + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_extra_toSelf_qsize + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_standalone_sta + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_ann_interval + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_root_fixed + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_rt_capacity + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_root_healing_delay + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_passive_scan_time + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_cfg_vote_percent + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_mesh_cfg_switch_parent + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_max_layer + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.libmesh_reversion_git + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.MESH_BCAST_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + COMMON 0x00000000 0x146 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.nvs_op2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_operate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_layer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_assoc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.str1.1 + 0x00000000 0xf5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.nvs_op2str + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_operate + 0x00000000 0x368 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.esp_mesh_nvs_operate + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_set_layer + 0x00000000 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_set_assoc + 0x00000000 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_init + 0x00000000 0x5d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_deinit + 0x00000000 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.CSWTCH$12 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .bss.mesh_nvs_settings + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .data.mesh_nvs_handle + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .bss.g_mesh_nvs_settings + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_io_sem_wait + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.esp_mesh_io_sem_signal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_io_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.esp_mesh_stop_parent_reconnection + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_router + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_self_organized + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_type + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_csa_set_bssid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_switch_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_look_for_network + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_nwk_io_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.esp_mesh_io_sem_wait + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.esp_mesh_io_sem_signal + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.str1.1 + 0x00000000 0x20c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_io_process + 0x00000000 0xdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.esp_mesh_stop_parent_reconnection + 0x00000000 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_router + 0x00000000 0x22b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_self_organized + 0x00000000 0x145 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_type + 0x00000000 0x2da C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_csa_set_bssid + 0x00000000 0x92 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_switch_channel + 0x00000000 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_look_for_network + 0x00000000 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_nwk_io_process + 0x00000000 0x1d9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.mesh_nwk_io_process + 0x00000000 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.__func__$9423 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.__func__$9369 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.csa_bssid + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.s_mesh_io_error + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.g_mesh_stop_reconnection + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_process_mgmt_announce$part$6 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_routing_table$part$7 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.optype2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_get_optlen + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_mcast_cover_node + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_remove_myself_from_forwarding + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toDS + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toSelf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mcast_cover_node + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_mcast + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_bcast + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_switch + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_waive + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_announce + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_routing_table + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_options + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_ucast + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_forward_packet + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.str1.1 + 0x00000000 0x8bc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_announce$part$6 + 0x00000000 0x3f1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_routing_table$part$7 + 0x00000000 0x3ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.optype2str + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_get_optlen + 0x00000000 0x78 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_mcast_cover_node + 0x00000000 0x350 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_remove_myself_from_forwarding + 0x00000000 0x113 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_delivery_toDS + 0x00000000 0x1fc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_delivery_toSelf + 0x00000000 0x3cc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mcast_cover_node + 0x00000000 0x4ca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_mcast + 0x00000000 0x17a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_bcast + 0x00000000 0x39c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_root_switch + 0x00000000 0x182 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_root_waive + 0x00000000 0x1e2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_announce + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_routing_table + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_options + 0x00000000 0x226 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_ucast + 0x00000000 0x9b8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_forward_packet + 0x00000000 0x3ca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.CSWTCH$144 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9469 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9455 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9437 + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9405 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9371 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .bss.mesh_xseqno + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .data.MESH_BCAST_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_channel_enable_jp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.esp_mesh_scan_done_get_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_reselect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_look_for_network + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_allow_switch + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.str1.1 + 0x00000000 0x69c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.esp_mesh_channel_enable_jp + 0x00000000 0x67 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.esp_mesh_scan_done_get_channel + 0x00000000 0x7ab C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_reselect + 0x00000000 0x2c2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_look_for_network + 0x00000000 0x368 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_allow_switch + 0x00000000 0x13c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$9438 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$9427 + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss.look_for_nwk_count$9422 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss.scan_times$9402 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$9408 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_set_root_candidate$part$17 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate_ie$part$18 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_sta_auth_expire_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_register_timer_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_update_rssi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_mesh_last_parent + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_root_switch + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_switch_parent + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_my_votes + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_check_rc_expire + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_change_layer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_parent_candidate_config + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_check_root_conflict + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_monitor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timer_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timer_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_disable_parent_switch_monitor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ps_control_check_awake + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_set_awake + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_set_sleep + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_get_min_duty + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_find_conflict_roots + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_remove_conflict_roots + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_self_mac_greater + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_is_yield_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_add_conflict_roots + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_announce + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_monitor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_delete_timers + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_gone + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_fixed + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_conflict_roots + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_rmv_announcement + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_scan_allowed + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_rt_change_debug + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_rt_change_debug + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_vote_done + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_disconnected + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_request + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_rootless + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_no_parent_found + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_connect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_child_set_ps_duty + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_child_clr_ps_duty + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_process_ps_type + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_is_better_parent + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_mesh_child + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_flush_scan_result + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_done + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.scan_result_print + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_scan_done_process_weak + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_insert_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done_vote + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_current_parent + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_ie_rssi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate_ie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_votes + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_root_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_same_root_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_add_invalid_rc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal._mesh_find_root_competitor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.print_rc_info + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_is_last_rc_existing + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_rcandidate_rssi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_init_rcandidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_check_last_rcandidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_find_root_competitor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_vote_root_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_router + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_nvs_settings + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_is_better_parent + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_compute_rank + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_set_ignore + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_limit_layer2_cap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_rssi + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_layer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_process_ps_awake + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_child_event + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_child_macconnected + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.print_txupQ_pending + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx_lock + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_insert_child + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_child + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_children + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_leaf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_no_parent + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_clear_parent + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_disconnect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_revote_root + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_healing + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_push_to_nwk_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_route_announce_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_connect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_router + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_candidate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_disconnect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_manual_networking + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_disconnect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_connect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_disconnect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_reselect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_layer + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_ie_change + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_conflict_discnx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_cycle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_wifi_event_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_post_toDS_state + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_rssi_threshold + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_rssi_threshold + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_default_rssi_threshold + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_inited + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_running + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_parent_organized + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_beacon_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_adjust_passive_scan_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_beacon_interval + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_select_done + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_select + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_main + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_get_duties + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_print_scan_result + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate$part$17 + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate_ie$part$18 + 0x00000000 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_sta_auth_expire_time + 0x00000000 0x47 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_register_timer_cb + 0x00000000 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_ie_update_rssi + 0x00000000 0xc9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_ie + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.is_mesh_last_parent + 0x00000000 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_send_root_switch + 0x00000000 0x78 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.str1.1 + 0x00000000 0x2b64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_switch_parent + 0x00000000 0x202 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_compute_my_votes + 0x00000000 0x85 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_check_rc_expire + 0x00000000 0x36a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_change_layer + 0x00000000 0x9e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_parent_candidate_config + 0x00000000 0xc3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_parent_check_root_conflict + 0x00000000 0xce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.route_announce_timer_start + 0x00000000 0xb7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.route_announce_timeout_process + 0x00000000 0xb4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.route_announce_timer_stop + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_ie_monitor + 0x00000000 0x130 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ie_monitor_timeout_process + 0x00000000 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timer_start + 0x00000000 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timer_start + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.candidate_monitor_timer_stop + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_disable_parent_switch_monitor + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.candidate_monitor_timer_start + 0x00000000 0x212 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_ps_control_check_awake + 0x00000000 0xa3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_set_awake + 0x00000000 0x5c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_set_sleep + 0x00000000 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_get_min_duty + 0x00000000 0x138 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_timeout_process + 0x00000000 0x1ee C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_find_conflict_roots + 0x00000000 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_remove_conflict_roots + 0x00000000 0xe0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.is_self_mac_greater + 0x00000000 0x82 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_is_yield_root + 0x00000000 0x59 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_add_conflict_roots + 0x00000000 0x20d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_yield_roots_announce + 0x00000000 0x21e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_yield_roots_monitor + 0x00000000 0x1c6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_delete_timers + 0x00000000 0xc2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_gone + 0x00000000 0x86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_fixed + 0x00000000 0xea C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_stop + 0x00000000 0xc8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_conflict_roots + 0x00000000 0x18e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_send_rmv_announcement + 0x00000000 0x1e0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_scan_allowed + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_rt_change_debug + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_rt_change_debug + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_vote_done + 0x00000000 0xd0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_disconnected + 0x00000000 0xae C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_scan_request + 0x00000000 0xfd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_rootless + 0x00000000 0xac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_no_parent_found + 0x00000000 0x9e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_process_connect + 0x00000000 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_child_set_ps_duty + 0x00000000 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_child_clr_ps_duty + 0x00000000 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_process_ps_type + 0x00000000 0xa6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_is_better_parent + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.is_mesh_child + 0x00000000 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_flush_scan_result + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_scan_done + 0x00000000 0x212 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.scan_result_print + 0x00000000 0x29c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_scan_done_process_weak + 0x00000000 0xf5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_conn_init + 0x00000000 0xca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_conn_deinit + 0x00000000 0xc2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_parent_insert_candidate + 0x00000000 0x166 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_scan_done_vote + 0x00000000 0x534 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_scan_done + 0x00000000 0x774 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_update_current_parent + 0x00000000 0x13f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate + 0x00000000 0x99 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_update_ie_rssi + 0x00000000 0xa9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate_ie + 0x00000000 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_compute_votes + 0x00000000 0xed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_root_candidate + 0x00000000 0x24d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_same_root_candidate + 0x00000000 0x65 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_add_invalid_rc + 0x00000000 0x116 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text._mesh_find_root_competitor + 0x00000000 0x68a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.print_rc_info + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_is_last_rc_existing + 0x00000000 0x124 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_update_rcandidate_rssi + 0x00000000 0xa1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_init_rcandidate + 0x00000000 0xf8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_check_last_rcandidate + 0x00000000 0x26e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_find_root_competitor + 0x00000000 0x1cc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_vote_root_candidate + 0x00000000 0x5a8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_router + 0x00000000 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_nvs_settings + 0x00000000 0x25d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_is_better_parent + 0x00000000 0x124 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_compute_rank + 0x00000000 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_set_ignore + 0x00000000 0x104 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_limit_layer2_cap + 0x00000000 0x25e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_try_rssi + 0x00000000 0x1fb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_try_layer + 0x00000000 0x14c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent + 0x00000000 0x22c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_num + 0x00000000 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_process_ps_awake + 0x00000000 0x145 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_child_event + 0x00000000 0xe8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_child_macconnected + 0x00000000 0x254 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.print_txupQ_pending + 0x00000000 0x286 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_idx + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_idx_lock + 0x00000000 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_insert_child + 0x00000000 0x2fd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_remove_child + 0x00000000 0x75 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_remove_children + 0x00000000 0x125 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_leaf + 0x00000000 0x6c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_no_parent + 0x00000000 0xdd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_clear_parent + 0x00000000 0x15a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_node_process_disconnect + 0x00000000 0x45 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_revote_root + 0x00000000 0x59 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_node_process_healing + 0x00000000 0xd5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_push_to_nwk_queue + 0x00000000 0x12a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_route_announce_timeout + 0x00000000 0x5f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ie_monitor_timeout + 0x00000000 0x5f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timeout + 0x00000000 0x5f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timeout + 0x00000000 0x5f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_candidate_monitor_timeout + 0x00000000 0x5f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_candidate_monitor_timeout_process + 0x00000000 0xc6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_timeout + 0x00000000 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_sta_connect + 0x00000000 0x215 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_connect_to_router + 0x00000000 0x33d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_connect_to_candidate + 0x00000000 0x404 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timeout_process + 0x00000000 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_process_disconnect + 0x00000000 0x112 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_manual_networking + 0x00000000 0x35d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_sta_disconnect + 0x00000000 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_connect + 0x00000000 0x86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_disconnect + 0x00000000 0x86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_parent_reselect + 0x00000000 0xdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_layer + 0x00000000 0xf6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_ie_change + 0x00000000 0x402 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_conflict_discnx + 0x00000000 0x80 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_node_process_cycle + 0x00000000 0xfd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_wifi_event_cb + 0x00000000 0x4df C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.mesh_wifi_event_cb + 0x00000000 0xe4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_post_toDS_state + 0x00000000 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_rssi_threshold + 0x00000000 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_rssi_threshold + 0x00000000 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_default_rssi_threshold + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_nwk_inited + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_nwk_running + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_parent_organized + 0x00000000 0x73 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_task_deinit + 0x00000000 0xb9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_nwk_task_init + 0x00000000 0x3c9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_nwk_task_deinit + 0x00000000 0xc8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_beacon_interval + 0x00000000 0x6d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_adjust_passive_scan_time + 0x00000000 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_beacon_interval + 0x00000000 0x51 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_parent_select_done + 0x00000000 0x965 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_parent_select + 0x00000000 0x943 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timeout_process + 0x00000000 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_task_main + 0x00000000 0x38c3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_task_main + 0x00000000 0xb0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_get_duties + 0x00000000 0x11a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_print_scan_result + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10881 + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.last_event_id$10811 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10786 + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10778 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10747 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10734 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10718 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10445 + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10441 + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10429 + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10404 + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10385 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10363 + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10356 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10287 + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10151 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10146 + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10132 + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10109 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10098 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10084 + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10023 + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9884 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9852 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9844 + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9839 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9827 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9818 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9793 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9787 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.cnx_backoff$9780 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_final_struggle$9768 + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.max_voter_num$9763 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9765 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9713 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9701 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9657 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9637 + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_rt_change_dbg + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_monitor_timer_interval + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_history_root_backoff + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.retry_attemps + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_ps_cnt + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_layer_backoff_times + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_rssi_backoff_times + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.vote_log_time_start + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.vote_log_time_stop + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_scan_times + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_extra_scan_attempts + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_ps_times + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_rc_times + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_rcandidate + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_rcandidate + 0x00000000 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_ps_control + 0x00000000 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data.s_mesh_beacon_interval + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_running_channel + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data.s_monitor_parent_config + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_first_short_time_retries + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_rssi_threshold + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_root_addr + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_is_parent_set + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_sta_discnx_times + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_sta_cnx_times + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent + 0x00000000 0x6c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent_chain + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent_ie + 0x00000000 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.ann_time_start + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mie_log_time_start + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_root_connect_timer_armed + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.ps_control_timer + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.candidate_monitor_timer + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.root_connect_timer + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.bcn_change_timer + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mie_monitor_timer + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.route_announce_timer + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_timer_func + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_task + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_mbox + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.is_nwk_running + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_root_children_list + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_invalid_list + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_expire_list + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_cyclic_list + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_map_list + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_idle_list + 0x00000000 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_print_scan_result_enable + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data.s_mesh_scan_done + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_scan_req + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_layer + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_rmv_opt + 0x00000000 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_conn_mutex + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_conn + 0x00000000 0x2c8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_disconnecting + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_connecting + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_connected + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + COMMON 0x00000000 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_rt_change_timeout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timer_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timeout_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_match_self + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_total_children_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_sub_route + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_route + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_print_route_table + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_sub_capacity + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.routetype2str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_update_route_table + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_delete_sub_children + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_add_announcement + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_fill_rmv_sub_child + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_malloc_rmv_announcement + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_construct_rmv_announcement + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_pack_rmv_announcement + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_rmv_announcement + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_multi_routing_table + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_ie_update_capacity + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_nonassociated_children + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_monitor_nonassociated_children + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_remove_nonassociated_children + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_copy_mgmt_announce + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_process_redundant_subchildren + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_combine_multi_redundant_ack + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_multi_redundant_ack + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_refresh_routing_table + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table_size + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_list + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_request + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_ack + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_nwk_redundant_route + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timeout + 0x00000000 0x5c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_route_init + 0x00000000 0x65 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_route_deinit + 0x00000000 0xac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timer_start + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timeout_process + 0x00000000 0x57 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_match_self + 0x00000000 0x5c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_total_children_num + 0x00000000 0x7d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_lookup_sub_route + 0x00000000 0xc4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.str1.1 + 0x00000000 0xd03 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_lookup_route + 0x00000000 0x14a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_print_route_table + 0x00000000 0x9f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_sub_capacity + 0x00000000 0x59 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.routetype2str + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_update_route_table + 0x00000000 0x3ff C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_delete_sub_children + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_send_add_announcement + 0x00000000 0xed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_fill_rmv_sub_child + 0x00000000 0x39c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_malloc_rmv_announcement + 0x00000000 0xbc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_construct_rmv_announcement + 0x00000000 0xc0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_pack_rmv_announcement + 0x00000000 0xcd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_pack_rmv_announcement + 0x00000000 0x136 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_pack_multi_routing_table + 0x00000000 0x4fb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_ie_update_capacity + 0x00000000 0x184 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_check_nonassociated_children + 0x00000000 0x84 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_monitor_nonassociated_children + 0x00000000 0x2ed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_remove_nonassociated_children + 0x00000000 0x1c6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_copy_mgmt_announce + 0x00000000 0x2df C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_process_redundant_subchildren + 0x00000000 0x3bd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_combine_multi_redundant_ack + 0x00000000 0x2ac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_check_multi_redundant_ack + 0x00000000 0x2b1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_refresh_routing_table + 0x00000000 0x6fa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_routing_table_size + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_routing_table + 0x00000000 0x1ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_get_subnet_nodes_num + 0x00000000 0xc0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_get_subnet_nodes_list + 0x00000000 0xfe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_send_rtable_request + 0x00000000 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_send_rtable_ack + 0x00000000 0x20a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_nwk_redundant_route + 0x00000000 0x1ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.CSWTCH$137 + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9701 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9688 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9659 + 0x00000000 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9654 + 0x00000000 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9629 + 0x00000000 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9614 + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9525 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9507 + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9467 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9394 + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9377 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9369 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.mesh_multi_send_ack + 0x00000000 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.mesh_multi_recv_ack + 0x00000000 0xf0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.rt_change_timer + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.mesh_route_table + 0x00000000 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.is_route_inited + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_print_txQ_waiting + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_print_txQ_waiting + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_get_tx_pending + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_get_tx_pending + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_event + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_forward_check_active + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_check_tid_mbox_full + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_ack_state_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_best_effort_tx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_wnd_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_operation_rxseqno + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_cidx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_insert_child + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_delete_child + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_xonseq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_clear_xonseq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_process_txupQ_pending + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_tx_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_force_txupQ_pending + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_available_txupQ_num + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_txQ + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_tid_flush + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_tid_stop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_ps_tx_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_ps_tx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.tx_task_main + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_discard_context + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_xon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_recv_xon + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_main + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_deliver_packet + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_flush_packets + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_disconnected + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_expired + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_upstream_packets + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.xon_task_main + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_no_wnd + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_task_main + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_main + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_flush_upstream_packets + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_time + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.str1.1 + 0x00000000 0x141a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_print_txQ_waiting + 0x00000000 0x13e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_print_txQ_waiting + 0x00000000 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_get_tx_pending + 0x00000000 0x1b1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_get_tx_pending + 0x00000000 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_event + 0x00000000 0x1c8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_start + 0x00000000 0x1b0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_forward_check_active + 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_check_tid_mbox_full + 0x00000000 0x1d4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.mesh_check_tid_mbox_full + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_ack_state_queue + 0x00000000 0xac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_cb + 0x00000000 0x10b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_best_effort_tx + 0x00000000 0x323 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_wnd_queue + 0x00000000 0x102 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_operation_rxseqno + 0x00000000 0x3c8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_get_cidx + 0x00000000 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_insert_child + 0x00000000 0x94 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_delete_child + 0x00000000 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_get_xonseq + 0x00000000 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_clear_xonseq + 0x00000000 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending + 0x00000000 0xc86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_process_txupQ_pending + 0x00000000 0x270 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_tx_queue + 0x00000000 0x535 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_force_txupQ_pending + 0x00000000 0x146 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_available_txupQ_num + 0x00000000 0x1d0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_flush_txQ + 0x00000000 0x130 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_tid_flush + 0x00000000 0x1e5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_tid_stop + 0x00000000 0x1c8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_ps_tx_queue + 0x00000000 0x7d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_ps_tx + 0x00000000 0x138 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.tx_task_main + 0x00000000 0x240 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_discard_context + 0x00000000 0x16a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_xon + 0x00000000 0x6e5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_recv_xon + 0x00000000 0x14f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_task_main + 0x00000000 0x9a2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_deliver_packet + 0x00000000 0x1c0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_flush_packets + 0x00000000 0x23d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_disconnected + 0x00000000 0x309 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_expired + 0x00000000 0x131 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_flush_upstream_packets + 0x00000000 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.xon_task_main + 0x00000000 0x1b5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_no_wnd + 0x00000000 0xf0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_task_main + 0x00000000 0xa8f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_task_deinit + 0x00000000 0x1da C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_task_init + 0x00000000 0x252 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_tx_task_init + 0x00000000 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_task_deinit + 0x00000000 0xa4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_deinit + 0x00000000 0xc2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_send_block_deinit + 0x00000000 0x91 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_send_block_main + 0x00000000 0x4b2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_init + 0x00000000 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_flush_upstream_packets + 0x00000000 0x182 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_time + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9914 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9906 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9869 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9811 + 0x00000000 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9758 + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9740 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9732 + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9724 + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_fail_cnt$9699 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9706 + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9688 + 0x00000000 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9640 + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9633 + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9622 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9609 + 0x00000000 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9599 + 0x00000000 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9561 + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9545 + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9512 + 0x00000000 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9500 + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9477 + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9440 + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9409 + 0x00000000 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_flush_mbox + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_task + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_mbox + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.is_block_running + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .data.g_mesh_packet_lifetime + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_xreq_seqno + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_be_xmit_seqno + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_new_wnd_mbox + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_ack_state_mbox + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_mbox + 0x00000000 0xa8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_task + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.is_mesh_tx_started + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_reassign_xseqno + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .data.MESH_BCAST_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + COMMON 0x00000000 0x2e8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_timer_route_announce + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_mie_monitor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_bcn_change + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_root_connect + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_candidate_monitor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_rt_change + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_ps_control + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_do_process + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_route_announce + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_mie_monitor + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_bcn_change + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_root_connect + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_candidate_monitor + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_rt_change + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_ps_control + 0x00000000 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .rodata.str1.1 + 0x00000000 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_do_process + 0x00000000 0xe8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .rodata.__func__$9400 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .data.mesh_timer_info + 0x00000000 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.esp_mesh_push_to_rx_queue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.mesh_topo_get_ttl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_wifi_recv_cb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_deinit + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_main + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.str1.1 + 0x00000000 0x2f7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_push_to_rx_queue + 0x00000000 0xca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.mesh_topo_get_ttl + 0x00000000 0xc2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_wifi_recv_cb + 0x00000000 0x748 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_rx_task_deinit + 0x00000000 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.mesh_rx_task_deinit + 0x00000000 0x95 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.mesh_rx_task_main + 0x00000000 0x230 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_rx_task_init + 0x00000000 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$9426 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$9413 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.parent_last_mac_seqno$9410 + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$9385 + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_task + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_mbox + 0x00000000 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.is_rx_running + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .data.MESH_BCAST_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.MESH_ZERO_ADDR + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_ap_list_clear + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_expire + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_expire + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_invalid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_invalid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_update_invalid + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_enqueue + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.str1.1 + 0x00000000 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear + 0x00000000 0xce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find_expire + 0x00000000 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear_expire + 0x00000000 0xbe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find_invalid + 0x00000000 0xba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear_invalid + 0x00000000 0xc2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_update_invalid + 0x00000000 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find + 0x00000000 0x94 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_enqueue + 0x00000000 0x1b9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.__func__$9433 + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.__func__$9361 + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_crt_check_signature + 0x00000000 0x54 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_verify_callback + 0x00000000 0x3c esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_init + 0x00000000 0x4c esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_attach + 0x00000000 0x34 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_detach + 0x00000000 0xc esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_set + 0x00000000 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_check_signature.str1.4 + 0x00000000 0xe7 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_check_signature + 0x00000000 0x113 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_verify_callback.str1.4 + 0x00000000 0x99 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_verify_callback + 0x00000000 0xfa esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_bundle_init.str1.4 + 0x00000000 0x131 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_init + 0x00000000 0x129 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_bundle_attach.str1.4 + 0x00000000 0x30 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_attach + 0x00000000 0x6a esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_detach + 0x00000000 0x22 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_set + 0x00000000 0x11 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .bss.s_crt_bundle + 0x00000000 0xc esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .bss.s_dummy_crt + 0x00000000 0x198 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_info 0x00000000 0x1d64 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_abbrev 0x00000000 0x350 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_loc 0x00000000 0x629 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_ranges 0x00000000 0x50 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_line 0x00000000 0xf8d esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_str 0x00000000 0x16b8 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .rodata.embedded + 0x00000000 0xfa3d esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .literal.bootloader_common_check_long_hold_gpio_level + 0x00000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x00000000 0x64 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_vddsdio_configure + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_check_long_hold_gpio_level.str1.4 + 0x00000000 0xf4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio_level + 0x00000000 0xf6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_label_search.str1.4 + 0x00000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_label_search + 0x00000000 0xac esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.4 + 0x00000000 0x115 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x00000000 0x142 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x00000000 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_vddsdio_configure + 0x00000000 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.__func__$0 + 0x00000000 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x00000000 0x19f0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x00000000 0x3d4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x00000000 0x4ae esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x00000000 0x103a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x00000000 0x13ab esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_ota_select_crc + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_valid + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_check_chip_validity + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_get_active_otadata + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_crc + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_invalid + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_valid + 0x00000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.4 + 0x00000000 0xea esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_chip_validity + 0x00000000 0x11a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_select_otadata + 0x00000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_get_active_otadata + 0x00000000 0x31 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x00000000 0x9e1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x00000000 0x245 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x00000000 0x423 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x00000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x00000000 0x98a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x00000000 0xe80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.index_to_partition + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.log_invalid_app_partition + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.write_otadata + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_actual_ota_seq + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_common_read_otadata + 0x00000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_common_get_partition_description + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_partition_table + 0x00000000 0x8c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_get_selected_boot_partition + 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_reset + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_atexit + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_cache_and_start_app + 0x00000000 0xe0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.unpack_load_app + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.load_image + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_boot_image + 0x00000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha256_flash_contents + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.index_to_partition + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.check_anti_rollback + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.try_load_partition + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.log_invalid_app_partition.str1.4 + 0x00000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.log_invalid_app_partition + 0x00000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.write_otadata.str1.4 + 0x00000000 0x45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.write_otadata + 0x00000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.4 + 0x00000000 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_actual_ota_seq + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_common_read_otadata.str1.4 + 0x00000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_read_otadata + 0x00000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_get_partition_description + 0x00000000 0x89 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.4 + 0x00000000 0x1df esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x00000000 0x1ac esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.4 + 0x00000000 0x113 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_get_selected_boot_partition + 0x00000000 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_reset + 0x00000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_atexit + 0x00000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_cache_and_start_app.str1.4 + 0x00000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_cache_and_start_app + 0x00000000 0x4dd esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.unpack_load_app.str1.4 + 0x00000000 0x6d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.unpack_load_app + 0x00000000 0xc4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.4 + 0x00000000 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.4 + 0x00000000 0xe2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_boot_image + 0x00000000 0x15a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x00000000 0x75 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_debug_buffer + 0x00000000 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x00000000 0x8b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__$1 + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss.ota_has_initial_contents + 0x00000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x00000000 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x00000000 0x29bf esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x00000000 0x4d1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x00000000 0x1470 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x00000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x00000000 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x00000000 0x2e9a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x00000000 0x16ac esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.esp_partition_table_verify + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.esp_partition_table_verify.str1.4 + 0x00000000 0x16c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text.esp_partition_table_verify + 0x00000000 0x16d esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x00000000 0x622 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x00000000 0x1f3 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x00000000 0x213 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x00000000 0x80c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x00000000 0x4b4 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .literal.should_map + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_segment_header + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_appended_hash_and_sig + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_checksum + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_image_header + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_image_header + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.should_load + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment_data + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment + 0x00000000 0x54 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segments + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_simple_hash + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.image_load + 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_metadata + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_flash_size + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_map + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_segment_header.str1.4 + 0x00000000 0x98 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_segment_header + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash_and_sig.str1.4 + 0x00000000 0x4d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_appended_hash_and_sig + 0x00000000 0x67 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_checksum.str1.4 + 0x00000000 0x43 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_checksum + 0x00000000 0xcc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_image_header.str1.4 + 0x00000000 0x9f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_image_header + 0x00000000 0x72 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_image_header + 0x00000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_load + 0x00000000 0x4e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment_data.str1.4 + 0x00000000 0x3d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment_data + 0x00000000 0xbd esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment.str1.4 + 0x00000000 0xd9 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment + 0x00000000 0x14e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.4 + 0x00000000 0x31 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segments + 0x00000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_simple_hash.str1.4 + 0x00000000 0x5e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_simple_hash + 0x00000000 0x6a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.4 + 0x00000000 0x47 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x00000000 0x118 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_metadata + 0x00000000 0x82 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x00000000 0x1f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x00000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x00000000 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x00000000 0x1d38 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x00000000 0x367 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x00000000 0x104b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x00000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x00000000 0xc0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x00000000 0x1fc4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x00000000 0x14a1 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.bootloader_sha256_start + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_finish + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_start + 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_data.str1.4 + 0x00000000 0x59 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_data + 0x00000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_finish + 0x00000000 0x47 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$1 + 0x00000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x00000000 0x509 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x00000000 0x1a6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x00000000 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x00000000 0x4f8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x00000000 0x434 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_random_enable + 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal.bootloader_random_disable + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text.bootloader_random_enable + 0x00000000 0x1c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text.bootloader_random_disable + 0x00000000 0x11d esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_info 0x00000000 0x26e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_abbrev 0x00000000 0xd5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_line 0x00000000 0x1016 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_str 0x00000000 0x5c1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal.rtcio_ll_ext0_set_wakeup_pin + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.s_do_deep_sleep_phy_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.11.literal + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.s_sleep_hook_deregister + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.get_power_down_flags + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.16.literal + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.15.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_function_select + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_input_enable + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.ext0_wakeup_prepare + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_force_hold_enable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.ext1_wakeup_prepare + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.timer_wakeup_prepare + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.12.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.13.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.17.literal + 0x00000000 0xc0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.22.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_periph_use_8m + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_get_deep_sleep_wake_stub + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_set_deep_sleep_wake_stub + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.19.literal + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.20.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.21.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_light_sleep_start + 0x00000000 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wakeup_source + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_timer_wakeup + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_try + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext0_wakeup + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_gpio_wakeup + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_uart_wakeup + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_cause + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_pd_config + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_disable_rom_logging + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtc_sleep_enable_ultra_low + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_ext0_set_wakeup_pin + 0x00000000 0x3d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.s_do_deep_sleep_phy_callback + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.11 0x00000000 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.s_sleep_hook_deregister + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.get_power_down_flags + 0x00000000 0xe3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.16 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.15 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_iomux_func_sel.str1.4 + 0x00000000 0xeb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_iomux_func_sel + 0x00000000 0x61 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_function_select.str1.4 + 0x00000000 0x174 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_function_select + 0x00000000 0xaa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_input_enable + 0x00000000 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.ext0_wakeup_prepare + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_force_hold_enable.str1.4 + 0x00000000 0xac esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_force_hold_enable + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.ext1_wakeup_prepare.str1.4 + 0x00000000 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.ext1_wakeup_prepare + 0x00000000 0x10c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.timer_wakeup_prepare + 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.12 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.str1.4 + 0x00000000 0x437 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.13 0x00000000 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.17 0x00000000 0x2fe esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.22 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_periph_use_8m + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_get_deep_sleep_wake_stub + 0x00000000 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_set_deep_sleep_wake_stub + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.19 0x00000000 0xa1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_hook + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_hook + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.20 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.21 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_light_sleep_start + 0x00000000 0x335 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_wakeup_source.str1.4 + 0x00000000 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wakeup_source + 0x00000000 0x151 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ulp_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_timer_wakeup + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_try + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_touchpad_wakeup.str1.4 + 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext0_wakeup.str1.4 + 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext0_wakeup + 0x00000000 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext1_wakeup_io.str1.4 + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0x141 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_ext1_wakeup_io.str1.4 + 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup + 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_gpio_wakeup + 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_uart_wakeup + 0x00000000 0x51 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_beacon_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_beacon_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_bt_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_bt_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_cause + 0x00000000 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_get_touchpad_wakeup_status.str1.4 + 0x00000000 0x55 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_pd_config.str1.4 + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_pd_config + 0x00000000 0xc1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_disable_rom_logging + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtc_sleep_enable_ultra_low + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$18 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$15 + 0x00000000 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$14 + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$13 + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$11 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$9 + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$8 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$7 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$6 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$4 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$3 + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_suspended_uarts_bmap + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_cache_suspend_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_periph_use_8m_flag + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_ultra_low_enabled + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_fast.10 + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_light_sleep_wakeup + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.s_config + 0x00000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_lightsleep_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_dslp_cb + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .iram1.0 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_info 0x00000000 0x126 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_abbrev 0x00000000 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_line 0x00000000 0xe9 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_str 0x00000000 0x3c8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .literal.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.periph_inform_out_light_sleep_overhead + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_register_light_sleep_default_params_config_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_unregister_light_sleep_default_params_config_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.modem_domain_pd_allowed + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .iram1.0 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .iram1.1 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_configure + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x00000000 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.periph_inform_out_light_sleep_overhead + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_light_sleep_default_params_config_callback + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_light_sleep_default_params_config_callback + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss.s_light_sleep_default_params_config_cb + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss.s_periph_inform_out_light_sleep_overhead_cb + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_info 0x00000000 0x30a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_abbrev 0x00000000 0x18f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_loc 0x00000000 0x165 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_line 0x00000000 0x55a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_str 0x00000000 0x4f3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.rtc_sleep_finish + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_pd + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_get_default_config + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x00000000 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_deep_sleep_start + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_finish + 0x00000000 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_pd + 0x00000000 0x1bd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x00000000 0x13d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x00000000 0x4b1 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x00000000 0x5d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_deep_sleep_start + 0x00000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_frame 0x00000000 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_info 0x00000000 0x5c5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_abbrev 0x00000000 0x250 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_loc 0x00000000 0xd4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_ranges 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_line 0x00000000 0x224d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_str 0x00000000 0x549 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .literal.esp_mesh_send_event_internal + 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .rodata.esp_mesh_send_event_internal.str1.4 + 0x00000000 0xb esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .text.esp_mesh_send_event_internal + 0x00000000 0x18 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .rodata.MESH_EVENT + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_info 0x00000000 0x34f esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_abbrev 0x00000000 0xfa esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_loc 0x00000000 0x2b esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_line 0x00000000 0x394 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_str 0x00000000 0x95e esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .literal.touch_ll_set_threshold + 0x00000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_ll_get_threshold + 0x00000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_ll_read_trigger_status_mask + 0x00000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_isr_deregister + 0x00000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_voltage + 0x00000000 0x40 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_voltage + 0x00000000 0x14 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_cnt_mode + 0x00000000 0x40 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_cnt_mode + 0x00000000 0x2c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_io_init + 0x00000000 0x2c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_fsm_start + 0x00000000 0x14 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_fsm_stop + 0x00000000 0x14 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_fsm_mode + 0x00000000 0x3c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_fsm_mode + 0x00000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_sw_start + 0x00000000 0x18 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_thresh + 0x00000000 0x28 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_thresh + 0x00000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_wakeup_status + 0x00000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.0.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.1.literal + 0x00000000 0x8 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_ll_set_threshold + 0x00000000 0x85 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_ll_get_threshold + 0x00000000 0x5f esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_ll_read_trigger_status_mask + 0x00000000 0x46 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_isr_deregister + 0x00000000 0x11 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_voltage.str1.4 + 0x00000000 0x6e esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_voltage + 0x00000000 0xda esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_voltage + 0x00000000 0x3d esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_cnt_mode.str1.4 + 0x00000000 0x38 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_cnt_mode + 0x00000000 0xbc esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_cnt_mode + 0x00000000 0x6d esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_io_init + 0x00000000 0x62 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_fsm_start + 0x00000000 0x2e esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_fsm_stop + 0x00000000 0x2e esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_fsm_mode.str1.4 + 0x00000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_fsm_mode + 0x00000000 0x9e esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_fsm_mode + 0x00000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_sw_start + 0x00000000 0x42 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_thresh + 0x00000000 0x5d esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_thresh + 0x00000000 0x46 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_wakeup_status + 0x00000000 0x42 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.0 0x00000000 0x14 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.1 0x00000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x12 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x16 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_frame 0x00000000 0x1d8 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_info 0x00000000 0x4512 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_abbrev 0x00000000 0x459 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_loc 0x00000000 0x635 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_aranges + 0x00000000 0xb0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_ranges 0x00000000 0xa0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_line 0x00000000 0x1404 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_str 0x00000000 0x3182 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .comment 0x00000000 0x30 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_ll_set_threshold + 0x00000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_config + 0x00000000 0x10 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_set_voltage + 0x00000000 0x10 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_voltage + 0x00000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_set_meas_mode + 0x00000000 0xc esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_meas_mode + 0x00000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_ll_set_threshold + 0x00000000 0x85 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_config + 0x00000000 0x53 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_set_voltage + 0x00000000 0x5f esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_voltage + 0x00000000 0x29 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_set_meas_mode + 0x00000000 0x60 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_meas_mode + 0x00000000 0x3d esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_info 0x00000000 0x26e5 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_abbrev 0x00000000 0x320 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_loc 0x00000000 0x58a esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_line 0x00000000 0x7eb esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_str 0x00000000 0x17b7 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_ll_set_meas_time + 0x00000000 0x8 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_ll_read_trigger_status_mask + 0x00000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_init + 0x00000000 0x40 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_deinit + 0x00000000 0x10 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_wakeup_status + 0x00000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_ll_set_meas_time + 0x00000000 0x57 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_ll_read_trigger_status_mask + 0x00000000 0x46 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_init + 0x00000000 0x135 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_deinit + 0x00000000 0x3d esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_wakeup_status + 0x00000000 0x30 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_info 0x00000000 0x3374 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_abbrev 0x00000000 0x337 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_loc 0x00000000 0xf3 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_line 0x00000000 0x6f2 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_str 0x00000000 0x235f esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .rodata.touch_sensor_channel_io_map + 0x00000000 0x28 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_info 0x00000000 0x261 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_abbrev 0x00000000 0x84 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_line 0x00000000 0x111 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_str 0x00000000 0x8cc esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .text 0x00000000 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) + .debug_line 0x00000000 0x92 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) + .debug_info 0x00000000 0x53 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .literal._ZSt15set_new_handlerPFvvE + 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .text._ZSt15set_new_handlerPFvvE + 0x00000000 0x1e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .eh_frame 0x00000000 0x38 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .literal._ZSt18uncaught_exceptionv + 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .literal._ZSt19uncaught_exceptionsv + 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .text.__cxa_get_exception_ptr + 0x00000000 0xa C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .text._ZSt18uncaught_exceptionv + 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .text._ZSt19uncaught_exceptionsv + 0x00000000 0xd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .eh_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .eh_frame 0x00000000 0x8c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .literal._ZSt13set_terminatePFvvE + 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZN10__cxxabiv112__unexpectedEPFvvE + 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZSt14set_unexpectedPFvvE + 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZSt14get_unexpectedv + 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZSt10unexpectedv + 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt13set_terminatePFvvE + 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZN10__cxxabiv112__unexpectedEPFvvE + 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt14set_unexpectedPFvvE + 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt14get_unexpectedv + 0x00000000 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt10unexpectedv + 0x00000000 0xf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .eh_frame 0x00000000 0x70 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .data._ZN10__cxxabiv120__unexpected_handlerE + 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_info 0x00000000 0x3c5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_abbrev 0x00000000 0x27a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_aranges + 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_line 0x00000000 0x7c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_str 0x00000000 0x674 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_line_str + 0x00000000 0x4df C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .eh_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .group 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .eh_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .eh_frame 0x00000000 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .group 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .group 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .group 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .eh_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .group 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv115__forced_unwindD0Ev + 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD2Ev + 0x00000000 0x5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD0Ev + 0x00000000 0xf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD2Ev + 0x00000000 0x5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x00000000 0xf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZGTtNKSt9exceptionD1Ev + 0x00000000 0x5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZGTtNKSt13bad_exceptionD1Ev + 0x00000000 0x5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line 0x00000000 0x6f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line_str + 0x00000000 0xf4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_info 0x00000000 0x31 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_str 0x00000000 0x10b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .text 0x00000000 0x22 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_line 0x00000000 0x8d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_line_str + 0x00000000 0xf4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_info 0x00000000 0x31 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_str 0x00000000 0x10b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .text 0x00000000 0x85 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + .debug_line 0x00000000 0x159 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + .debug_info 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + .literal 0x00000000 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .text 0x00000000 0x312 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line 0x00000000 0x6b1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_info 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .text 0x00000000 0x1ff C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_line 0x00000000 0x478 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_info 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .literal 0x00000000 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .text 0x00000000 0x213 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_line 0x00000000 0x4a1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_info 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .literal 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .text 0x00000000 0x176 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_line 0x00000000 0x36f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_info 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .text 0x00000000 0x4c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line 0x00000000 0xe7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_info 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x5d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_line 0x00000000 0x117 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_info 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x3d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_line 0x00000000 0xc9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_info 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .text 0x00000000 0xa4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_line 0x00000000 0x195 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_info 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x62 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line 0x00000000 0x117 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_info 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x23 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_info 0x00000000 0x185 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_abbrev 0x00000000 0x10b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_loclists + 0x00000000 0x7f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_line 0x00000000 0xe1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_str 0x00000000 0x18a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .debug_line_str + 0x00000000 0x1dc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x37 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_info 0x00000000 0xce C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_abbrev 0x00000000 0x68 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_loclists + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line 0x00000000 0xef C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_str 0x00000000 0x160 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line_str + 0x00000000 0x1dc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x24a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_info 0x00000000 0x693 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_abbrev 0x00000000 0x1b4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_loclists + 0x00000000 0x4f1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_rnglists + 0x00000000 0x4c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_line 0x00000000 0x9ae C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_str 0x00000000 0x1d5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_line_str + 0x00000000 0x1dc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .text 0x00000000 0x28b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_info 0x00000000 0x71a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_abbrev 0x00000000 0x1a6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_loclists + 0x00000000 0x479 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_rnglists + 0x00000000 0x41 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_line 0x00000000 0xb54 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_str 0x00000000 0x1d5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_line_str + 0x00000000 0x1dc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .text 0x00000000 0x20c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_info 0x00000000 0x64c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000 0x196 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_loclists + 0x00000000 0x4a6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_rnglists + 0x00000000 0x4f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line 0x00000000 0x8e9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_str 0x00000000 0x1d6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line_str + 0x00000000 0x1dc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .text 0x00000000 0x21b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_info 0x00000000 0x6c7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_abbrev 0x00000000 0x1a7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_loclists + 0x00000000 0x496 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_rnglists + 0x00000000 0x33 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_line 0x00000000 0x9af C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_str 0x00000000 0x1d6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_line_str + 0x00000000 0x1dc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .literal._Z12abort_returnIPPvET_v + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z12abort_returnIPvET_v + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z12abort_returnIP11frame_stateET_v + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.abort_expect_void + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.abort_expect_void_and_return + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.forward_abort_uw_ctx + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_SetEnableExceptionFdeSorting + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_bases + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_table_bases + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_table + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_Find_FDE + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetGR + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetCFA + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_SetIP + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_SetGR + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetIPInfo + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z17__frame_state_forPvP11frame_state + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_Resume + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_RaiseException + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_ForcedUnwind + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_Backtrace + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIPPvET_v + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIPvET_v + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIP11frame_stateET_v + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.abort_expect_void + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.abort_expect_void_and_return + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.forward_abort_uw_ctx + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetEnableExceptionFdeSorting + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_bases + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_table_bases + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_table + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Find_FDE + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetGR + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetCFA + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetIP + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetGR + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetIPInfo + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z17__frame_state_forPvP11frame_state + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Resume + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_RaiseException + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_ForcedUnwind + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Backtrace + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .iram1.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.0.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ram_set_pbus_mem + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ram_start_tx_tone + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ram_bb_tx_ht20_cen + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ram_phy_get_noisefloor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ram_check_noise_floor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.1.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ram_bb_bss_bw_40_en + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.bt_txdc_cal$part$5 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.bt_txiq_cal$part$6 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.spur_cal$part$8 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.2.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.3.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.5.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.6.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.4.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.7.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.8.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.9.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.10.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.11.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.13.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.15.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.14.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.16.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.18.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ram_gen_rx_gain_table + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_cal_iq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.rx_chan_dc_sort + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_cal_dc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.wr_rx_gain_mem + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_testchip_70 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.bt_correct_bbgain + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.bt_index_to_bb + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.bt_bb_to_index + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.bt_txdc_cal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.get_bbgain_db + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.bt_txiq_cal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.force_bttx_gain + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_bttx_low_power + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_wifitx_low_power + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.set_tx_gain_table_bt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.set_tx_dig_gain + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.spur_cal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.set_chanfreq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.set_chanfreq_nomac + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.chip_sleep_prot_en + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.chip_sleep_prot_dis + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.chip_v7_rxmax_ext_dig + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.chip_v7_rxmax_ext + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.set_cca + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.set_rx_sense + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.read_hw_noisefloor + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_get_txpwr_param + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.noise_check_loop + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.noise_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.target_power_backoff + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_set_rfrx_dcap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.chip_v7_set_chan_misc + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_table + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.rx_blocking_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.rx_gain_level + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.txiq_cal_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_rx11blr_cfg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.analog_gain_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_param_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.bb_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.wifi_rifs_mode_en + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_chan_filt_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_get_tx_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.register_chipv7_phy_init_param + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.uart_wait_idle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_get_romfunc_addr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_byte_to_word + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.rf_cal_data_recovery + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.rf_cal_data_backup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_get_rf_cal_version + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_rfcal_data_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.i2cmst_reg_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.fe_reg_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.12.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.17.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.get_phy_version_str + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_version_print + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.tx_cont_en + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.tx_cont_dis + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.tx_cont_cfg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_get_tx_pwr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_init_pwr_print + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_get_rx_freq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.reset_rf_dig + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.register_chipv7_phy + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_set_most_tpw + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_get_most_tpw + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_rx_sense_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ant_dft_cfg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ant_wifitx_cfg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ant_wifirx_cfg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ant_bttx_cfg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ant_btrx_cfg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ant_tx_cfg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.ant_rx_cfg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.esp_tx_state_out + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_chan_dump_cfg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.chan14_mic_cfg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.chan14_mic_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_get_adc_rand + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_enable_low_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_disable_low_rate + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_close_pa + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.btpwr_backoff + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_dig_reg_backup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.get_iq_est_snr_1 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.freq_offset_get_pwr_1 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.get_spur4m_pwr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.rx_spur_cal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.bt_opt_write_mem + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.bt_rx_spur_opt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_init_param_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.pbus_print + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_reg_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_i2c_check + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.phy_cal_print + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.5 0x00000000 0x67 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .phyiram.11 0x00000000 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.bt_correct_bbgain + 0x00000000 0xb4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.bt_bb_to_index + 0x00000000 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.bt_txdc_cal + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.get_bbgain_db + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.bt_txiq_cal + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.force_bttx_gain + 0x00000000 0xa7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_bttx_low_power + 0x00000000 0xb1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_wifitx_low_power + 0x00000000 0x17a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.set_tx_dig_gain + 0x00000000 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.spur_cal + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.set_chanfreq + 0x00000000 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.chip_v7_rxmax_ext_dig + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.chip_v7_rxmax_ext + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.set_cca 0x00000000 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_get_txpwr_param + 0x00000000 0x81 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.noise_init + 0x00000000 0x12b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.target_power_backoff + 0x00000000 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_set_rfrx_dcap + 0x00000000 0xf0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.rx_blocking_set + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.rx_gain_level + 0x00000000 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_rx11blr_cfg + 0x00000000 0x7d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_param_set + 0x00000000 0x4f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.wifi_rifs_mode_en + 0x00000000 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_chan_filt_set + 0x00000000 0x10d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_get_tx_rate + 0x00000000 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.uart_wait_idle + 0x00000000 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_version_print + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.tx_cont_en + 0x00000000 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.tx_cont_dis + 0x00000000 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.tx_cont_cfg + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_get_tx_pwr + 0x00000000 0x59 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_init_pwr_print + 0x00000000 0x152 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_get_rx_freq + 0x00000000 0x51 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_get_most_tpw + 0x00000000 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_rx_sense_set + 0x00000000 0xa8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.ant_dft_cfg + 0x00000000 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.ant_wifitx_cfg + 0x00000000 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.ant_wifirx_cfg + 0x00000000 0xc8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.ant_bttx_cfg + 0x00000000 0x53 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.ant_btrx_cfg + 0x00000000 0xc7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.ant_tx_cfg + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.ant_rx_cfg + 0x00000000 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.esp_tx_state_out + 0x00000000 0xfd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_chan_dump_cfg + 0x00000000 0xb8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.chan14_mic_enable + 0x00000000 0x71 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_get_adc_rand + 0x00000000 0x19a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_close_pa + 0x00000000 0xb9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.btpwr_backoff + 0x00000000 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_dig_reg_backup + 0x00000000 0x3c9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.get_iq_est_snr_1 + 0x00000000 0x4ce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.freq_offset_get_pwr_1 + 0x00000000 0x214 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.get_spur4m_pwr + 0x00000000 0xfd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.rx_spur_cal + 0x00000000 0xe9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.bt_opt_write_mem + 0x00000000 0x91 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.bt_rx_spur_opt + 0x00000000 0x1b3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.pbus_print + 0x00000000 0xdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_reg_check + 0x00000000 0x20d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_i2c_check + 0x00000000 0x1e5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .text.phy_cal_print + 0x00000000 0x592 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .rodata.CSWTCH$352 + 0x00000000 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .rodata.CSWTCH$351 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .rodata.CSWTCH$350 + 0x00000000 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .bss.rfrx_dcap_enable + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .bss.rfrx_vga_lna_dcap + 0x00000000 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .bss.bt_txpwr_backoff + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .bss.chan14_mic_flag + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .bss.bt_mode_wifibb + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .bss.rxmax_ext_level + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .bss.noise_timeout_flag + 0x00000000 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .data.noise_array + 0x00000000 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .literal.RFChannelSel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .literal.phy_change_channel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .literal.phy_change_channel_nomac + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .text.RFChannelSel + 0x00000000 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .text.phy_change_channel + 0x00000000 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .iram1.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .phyiram.23.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .phyiram.24.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .phyiram.25.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .phyiram.26.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .phyiram.27.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_index_to_txbbgain + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_txdc_cal_v70 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.txcal_debuge_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_txcal_work_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_get_fm_sar_dout + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_txiq_get_mis_pwr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_txiq_cover + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.rfcal_txiq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_iq_est_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_iq_est_disable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_dc_iq_est + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_pbus_rx_dco_cal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.rxdc_est_min + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.pbus_rx_dco_cal_1step + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.rc_cal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_rfcal_txcap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.tx_cap_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_meas_tone_pwr_db + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_rfcal_pwrctrl + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_tx_pwr_backoff + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.cal_rf_ana_gain + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.tx_pwctrl_init_cal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.tx_pwctrl_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.bt_tx_pwctrl_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.set_bt_chan_cal_interp + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.phy_set_bt_dig_gain + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.ram_phy_get_vdd33 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.txpwr_offset + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.phy_get_bb_freqoffset + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.phy_pwdet_always_en + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .literal.dpd_scale_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .phyiram.23 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .text.set_bt_chan_cal_interp + 0x00000000 0xcc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .text.phy_set_bt_dig_gain + 0x00000000 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .text.phy_get_bb_freqoffset + 0x00000000 0x87 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .text.phy_pwdet_always_en + 0x00000000 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .text.dpd_scale_set + 0x00000000 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .phyiram.22.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .iram1.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .phyiram.20.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .phyiram.21.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .phyiram.19.literal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.ram_pbus_force_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.ram_pbus_xpd_tx_on + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.i2c_xtal_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.i2c_rfpll_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.ram_rfpll_reset + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.ram_restart_cal + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.ram_wait_rfpll_cal_end + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.ram_rfpll_set_freq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.get_lna_vga_dcap_val + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_rxmax_ext_ana + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.phy_freq_correct_opt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_adc_wr_dly + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.i2c_bbtop_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.i2c_rftx_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.i2c_bias_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.rfpll_1p2_opt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_cap + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.correct_rfpll_offset + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.wr_rf_freq_mem + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.write_freq_mem_all + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.get_rfrx_dcap_bt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_init$part$2 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_read_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_read_mem + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_write_set + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_set_wifi_data + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.phy_wifi_pll_track + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.phy_bt_pll_track + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.tsens_read_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.phy_bt_power_track + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.bt_get_i2c_data + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.write_wifi_chan_data + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.set_chan_freq_hw_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.rf_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.check_rfpll_write_i2c + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.phy_hw_set_freq_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.set_chan_freq_sw_start + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.set_channel_rfpll_freq + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_nomac + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_offset + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_ana + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.freq_write_wifi_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.phy_unforce_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.phy_force_chan + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.phy_set_wifi_mode_only + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.i2c_xtal_init + 0x00000000 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.i2c_rfpll_init + 0x00000000 0x90 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.chip_v7_adc_wr_dly + 0x00000000 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.i2c_bbtop_init + 0x00000000 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.i2c_rftx_init + 0x00000000 0x78 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.get_rf_freq_init + 0x00000000 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.bt_i2c_read_set + 0x00000000 0xf1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.bt_i2c_read_mem + 0x00000000 0xc3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.phy_wifi_pll_track + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.phy_bt_pll_track + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.phy_bt_power_track + 0x00000000 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.check_rfpll_write_i2c + 0x00000000 0x86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.phy_hw_set_freq_enable + 0x00000000 0x10a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.freq_write_wifi_chan + 0x00000000 0xd4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.phy_unforce_chan + 0x00000000 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.phy_force_chan + 0x00000000 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .text.phy_set_wifi_mode_only + 0x00000000 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .bss.flag$5257 + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .literal.BT_tx_8m_enable + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.BT_tx_if_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.BT_init_rx_filters + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.bt_dgmixer_fstep_250k + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.bt_rfoffset_en + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.bt_bb_init_cmplx + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.bt_bb_init_cmplx_reg + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.rw_coex_on + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.force_bt_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.force_wifi_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.unforce_wifi_mode + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.coex_bt_high_prio + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.bt_rxfilt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.bt_txfilt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.bt_cmplx_hq_wr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.bt_cmplx_lq_wr + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.bt_cmplx_hq_re + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.bt_cmplx_lq_re + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.BT_tx_8m_enable + 0x00000000 0x7f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.BT_tx_if_init + 0x00000000 0x94 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.BT_init_rx_filters + 0x00000000 0x2bc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.bt_dgmixer_fstep_250k + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.bt_rfoffset_en + 0x00000000 0x47 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.bt_bb_init_cmplx + 0x00000000 0x26e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.bt_bb_init_cmplx_reg + 0x00000000 0xb5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.rw_coex_on + 0x00000000 0x90 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.force_bt_mode + 0x00000000 0xf6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.force_wifi_mode + 0x00000000 0xb2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.unforce_wifi_mode + 0x00000000 0x96 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.bt_rxfilt + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.bt_txfilt + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.bt_cmplx_hq_wr + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.bt_cmplx_lq_wr + 0x00000000 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.bt_cmplx_hq_re + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .text.bt_cmplx_lq_re + 0x00000000 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .bss.force_wifi_mode_on + 0x00000000 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .literal.temprature_sens_read + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.dac_out + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.touch_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.touch_read + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.vdd33_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.get_vdd33 + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.adc1_read_test + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.adc1_amp_read_full + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.hall_sens_read_full + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.hall_sens_amp_read_full + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.adc2_read_test + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.adc1_pad_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.adc1_read + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.adc1_amp_read + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.hall_sens_read + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.hall_sens_amp_read + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.adc2_pad_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.adc2_read + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.adc_pad_int + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.adc_pad_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.dac_pad_init + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.dac_out 0x00000000 0x249 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.touch_init + 0x00000000 0xc2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.touch_read + 0x00000000 0xba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.vdd33_init + 0x00000000 0x13b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.get_vdd33 + 0x00000000 0x100 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.adc1_read_test + 0x00000000 0x1f0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.adc1_amp_read_full + 0x00000000 0x213 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.hall_sens_read_full + 0x00000000 0xfd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.hall_sens_amp_read_full + 0x00000000 0xe8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.adc2_read_test + 0x00000000 0x1b0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.adc1_pad_init + 0x00000000 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.adc1_read + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.adc1_amp_read + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.hall_sens_read + 0x00000000 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.hall_sens_amp_read + 0x00000000 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.adc2_pad_init + 0x00000000 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.adc2_read + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.adc_pad_int + 0x00000000 0x108 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.adc_pad_init + 0x00000000 0x180 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .text.dac_pad_init + 0x00000000 0xce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .rodata.CSWTCH$24 + 0x00000000 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .rodata.CSWTCH$18 + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .literal.rtc_cmd_wakeup_conf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_pads_muxsel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_pads_funsel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_pads_slpsel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_pads_slpoe + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_pads_slpie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_pads_funie + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_pads_pu + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_pads_pd + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_pads_hold + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_apbbridge_sel + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_powerup_rf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_powerdown_rf + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_get_st + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_is_st_idle + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_soc_clk_ck12m + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_init_full + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_pad_gpio_wakeup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_pad_ext_wakeup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_cmd_ext_wakeup + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_wifi_force_pd + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_sdreg_off + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.rtc_slp_prep_lite_12M + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .literal.cfg_sdio_volt + 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .data 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .bss 0x00000000 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_cmd_wakeup_conf + 0x00000000 0x67 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_pads_muxsel + 0x00000000 0x29e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_pads_funsel + 0x00000000 0x292 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_pads_slpsel + 0x00000000 0x292 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_pads_slpoe + 0x00000000 0x1ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_pads_slpie + 0x00000000 0x28e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_pads_funie + 0x00000000 0x292 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_pads_pu + 0x00000000 0x1ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_pads_pd + 0x00000000 0x1ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_pads_hold + 0x00000000 0x266 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_apbbridge_sel + 0x00000000 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_powerup_rf + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_powerdown_rf + 0x00000000 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_get_st + 0x00000000 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_is_st_idle + 0x00000000 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_soc_clk_ck12m + 0x00000000 0x4f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_init_full + 0x00000000 0x3ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_pad_gpio_wakeup + 0x00000000 0xd3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_pad_ext_wakeup + 0x00000000 0xd7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_cmd_ext_wakeup + 0x00000000 0xce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_wifi_force_pd + 0x00000000 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_sdreg_off + 0x00000000 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.rtc_slp_prep_lite_12M + 0x00000000 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .text.cfg_sdio_volt + 0x00000000 0xb3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .debug_frame 0x00000000 0x250 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .debug_info 0x00000000 0x965 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .debug_abbrev 0x00000000 0x1ac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .debug_loc 0x00000000 0x455 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .debug_aranges + 0x00000000 0xd8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .debug_ranges 0x00000000 0xc8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .debug_line 0x00000000 0x104b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .debug_str 0x00000000 0x4a2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .comment 0x00000000 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .text 0x00000000 0x29 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .debug_info 0x00000000 0x8ea C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .debug_abbrev 0x00000000 0x1eb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .debug_loclists + 0x00000000 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .debug_line 0x00000000 0xd6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .debug_str 0x00000000 0x4e4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .debug_line_str + 0x00000000 0x315 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .text 0x00000000 0xd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .debug_info 0x00000000 0xfc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .debug_abbrev 0x00000000 0xc1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .debug_loclists + 0x00000000 0x5e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .debug_line 0x00000000 0x99 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .debug_str 0x00000000 0x11b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .debug_line_str + 0x00000000 0x229 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + .data 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + .bss 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + .debug_info 0x00000000 0x6b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + .debug_abbrev 0x00000000 0x5b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + .debug_aranges + 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + .debug_line 0x00000000 0x3a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + .debug_str 0x00000000 0x9b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + .debug_line_str + 0x00000000 0x1e0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .text 0x00000000 0x4c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_info 0x00000000 0x17e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_abbrev 0x00000000 0x119 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_loclists + 0x00000000 0x99 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_line 0x00000000 0x15c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_str 0x00000000 0x12f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .debug_line_str + 0x00000000 0x22c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .literal 0x00000000 0x48 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .text 0x00000000 0xce C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .rodata.str1.1 + 0x00000000 0x83 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .debug_info 0x00000000 0x9a8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .debug_abbrev 0x00000000 0x24c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .debug_loclists + 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .debug_rnglists + 0x00000000 0x1b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .debug_line 0x00000000 0x2aa C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .debug_str 0x00000000 0x503 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .debug_line_str + 0x00000000 0x31e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .literal 0x00000000 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .text 0x00000000 0x13a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .debug_frame 0x00000000 0x70 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .debug_info 0x00000000 0xe47 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .debug_abbrev 0x00000000 0x323 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .debug_loclists + 0x00000000 0x248 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .debug_rnglists + 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .debug_line 0x00000000 0x59b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .debug_str 0x00000000 0x762 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .debug_line_str + 0x00000000 0x3c1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .text 0x00000000 0x11e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .debug_frame 0x00000000 0x70 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .debug_info 0x00000000 0xdc9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .debug_abbrev 0x00000000 0x2df C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .debug_loclists + 0x00000000 0x1fd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .debug_line 0x00000000 0x554 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .debug_str 0x00000000 0x75e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .debug_line_str + 0x00000000 0x3bc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .text 0x00000000 0x7c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .rodata.str1.1 + 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_info 0x00000000 0x1c6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_abbrev 0x00000000 0x115 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_loclists + 0x00000000 0xb9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_line 0x00000000 0x225 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_str 0x00000000 0x14a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .debug_line_str + 0x00000000 0x237 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .rodata 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_info 0x00000000 0xb9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_abbrev 0x00000000 0x62 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_aranges + 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_line 0x00000000 0x3e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_str 0x00000000 0x112 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .debug_line_str + 0x00000000 0x226 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .literal 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .text 0x00000000 0x338 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_frame 0x00000000 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_info 0x00000000 0x83d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_abbrev 0x00000000 0x267 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_loclists + 0x00000000 0x539 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_line 0x00000000 0x934 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_str 0x00000000 0x173 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .debug_line_str + 0x00000000 0x2b0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .literal 0x00000000 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .text 0x00000000 0xf6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_info 0x00000000 0xa72 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_abbrev 0x00000000 0x2c1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_loclists + 0x00000000 0x66 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_line 0x00000000 0x2ef C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_str 0x00000000 0x5c4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .debug_line_str + 0x00000000 0x333 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .literal 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .text 0x00000000 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .debug_info 0x00000000 0x937 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .debug_abbrev 0x00000000 0x22b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .debug_loclists + 0x00000000 0x2b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .debug_line 0x00000000 0x165 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .debug_str 0x00000000 0x565 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .debug_line_str + 0x00000000 0x32a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .literal 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .text 0x00000000 0x1c4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_frame 0x00000000 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_info 0x00000000 0xbbd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_abbrev 0x00000000 0x347 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_loclists + 0x00000000 0x162 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_line 0x00000000 0x60c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_str 0x00000000 0x5bb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .debug_line_str + 0x00000000 0x333 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .literal 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .text 0x00000000 0x11e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .debug_info 0x00000000 0xb05 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .debug_abbrev 0x00000000 0x290 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .debug_loclists + 0x00000000 0xd5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .debug_rnglists + 0x00000000 0x19 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .debug_line 0x00000000 0x3ca C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .debug_str 0x00000000 0x587 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .debug_line_str + 0x00000000 0x330 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .literal 0x00000000 0xc0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .text 0x00000000 0x25a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .text 0x00000000 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_info 0x00000000 0x988 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_abbrev 0x00000000 0x256 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_loclists + 0x00000000 0x4c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_line 0x00000000 0x14c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_str 0x00000000 0x535 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .debug_line_str + 0x00000000 0x32f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .literal 0x00000000 0x1c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .text 0x00000000 0x74 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_info 0x00000000 0x9e6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_abbrev 0x00000000 0x26e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_loclists + 0x00000000 0x5c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_line 0x00000000 0x18b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_str 0x00000000 0x57a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .debug_line_str + 0x00000000 0x327 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .literal 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .text 0x00000000 0x90 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_info 0x00000000 0xaae C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_abbrev 0x00000000 0x287 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_loclists + 0x00000000 0x5f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_line 0x00000000 0x213 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_str 0x00000000 0x5c4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .debug_line_str + 0x00000000 0x33a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .literal 0x00000000 0x2c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .text 0x00000000 0x100 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .debug_info 0x00000000 0xaf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .debug_abbrev 0x00000000 0x2dc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .debug_loclists + 0x00000000 0x110 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .debug_rnglists + 0x00000000 0x16 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .debug_line 0x00000000 0x33e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .debug_str 0x00000000 0x597 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .debug_line_str + 0x00000000 0x330 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .text 0x00000000 0x29 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .debug_info 0x00000000 0x93b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .debug_abbrev 0x00000000 0x251 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .debug_loclists + 0x00000000 0x5c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .debug_line 0x00000000 0x121 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .debug_str 0x00000000 0x4ef C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .debug_line_str + 0x00000000 0x315 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .literal 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .text 0x00000000 0xbc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_info 0x00000000 0xae9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_abbrev 0x00000000 0x2ca C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_loclists + 0x00000000 0x8f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_line 0x00000000 0x252 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_str 0x00000000 0x5c3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .debug_line_str + 0x00000000 0x334 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .literal 0x00000000 0x1c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .text 0x00000000 0x98 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .debug_info 0x00000000 0xa52 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .debug_abbrev 0x00000000 0x2b6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .debug_loclists + 0x00000000 0xc0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .debug_line 0x00000000 0x1e7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .debug_str 0x00000000 0x584 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .debug_line_str + 0x00000000 0x324 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .text 0x00000000 0x2c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .debug_info 0x00000000 0x8e3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .debug_abbrev 0x00000000 0x214 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .debug_loclists + 0x00000000 0x44 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .debug_line 0x00000000 0xf9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .debug_str 0x00000000 0x4f7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .debug_line_str + 0x00000000 0x31b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .text 0x00000000 0x2e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .debug_info 0x00000000 0x8be C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .debug_abbrev 0x00000000 0x213 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .debug_loclists + 0x00000000 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .debug_line 0x00000000 0xed C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .debug_str 0x00000000 0x4f5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .debug_line_str + 0x00000000 0x320 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .text 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .debug_info 0x00000000 0x884 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .debug_abbrev 0x00000000 0x1e2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .debug_loclists + 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .debug_line 0x00000000 0xa2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .debug_str 0x00000000 0x4e2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .debug_line_str + 0x00000000 0x318 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .text 0x00000000 0x1b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .debug_info 0x00000000 0x89c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .debug_abbrev 0x00000000 0x1b6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .debug_line 0x00000000 0xa7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .debug_str 0x00000000 0x4e1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .debug_line_str + 0x00000000 0x318 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .literal 0x00000000 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .text 0x00000000 0x1a1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_info 0x00000000 0xaec C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_abbrev 0x00000000 0x2a2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_loclists + 0x00000000 0x12b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_rnglists + 0x00000000 0x16 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_line 0x00000000 0x4e3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_str 0x00000000 0x5ab C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .debug_line_str + 0x00000000 0x336 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .literal 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .text 0x00000000 0xc6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_frame 0x00000000 0x88 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_info 0x00000000 0xb40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_abbrev 0x00000000 0x231 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_loclists + 0x00000000 0xc8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_line 0x00000000 0x273 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_str 0x00000000 0x54d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .debug_line_str + 0x00000000 0x31d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .literal 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .text 0x00000000 0x9c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_info 0x00000000 0x98c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_abbrev 0x00000000 0x26a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_loclists + 0x00000000 0xa1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_line 0x00000000 0x250 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_str 0x00000000 0x516 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .debug_line_str + 0x00000000 0x324 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .literal 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .text 0x00000000 0xf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .debug_info 0x00000000 0x9be C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .debug_abbrev 0x00000000 0x276 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .debug_loclists + 0x00000000 0xa0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .debug_line 0x00000000 0x323 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .debug_str 0x00000000 0x568 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .debug_line_str + 0x00000000 0x32a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .text 0x00000000 0x12 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_info 0x00000000 0xf1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_abbrev 0x00000000 0xab C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_line 0x00000000 0x8c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_str 0x00000000 0x125 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_line_str + 0x00000000 0x2ba C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .text 0x00000000 0x1b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_info 0x00000000 0x110 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_abbrev 0x00000000 0xb1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_loclists + 0x00000000 0x98 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_line 0x00000000 0xd0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_str 0x00000000 0x128 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .debug_line_str + 0x00000000 0x2b3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .literal 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .text 0x00000000 0x4f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_info 0x00000000 0x12b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_abbrev 0x00000000 0x90 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_loclists + 0x00000000 0x150 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line 0x00000000 0x17f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_str 0x00000000 0x118 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line_str + 0x00000000 0x2b3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .text 0x00000000 0x41 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .debug_info 0x00000000 0x109 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .debug_abbrev 0x00000000 0xac C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .debug_loclists + 0x00000000 0xc9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .debug_line 0x00000000 0x121 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .debug_str 0x00000000 0x132 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .debug_line_str + 0x00000000 0x2b6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .text 0x00000000 0x22 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_info 0x00000000 0xe1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_abbrev 0x00000000 0x86 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_loclists + 0x00000000 0x7e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_line 0x00000000 0xda C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_str 0x00000000 0x111 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .debug_line_str + 0x00000000 0x232 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .text 0x00000000 0x1d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .debug_info 0x00000000 0xf4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .debug_abbrev 0x00000000 0x82 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .debug_loclists + 0x00000000 0x4c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .debug_line 0x00000000 0xd6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .debug_str 0x00000000 0x111 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .debug_line_str + 0x00000000 0x232 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .text 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_info 0x00000000 0xe9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_abbrev 0x00000000 0x9f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_loclists + 0x00000000 0x42 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_line 0x00000000 0xf9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_str 0x00000000 0x119 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_line_str + 0x00000000 0x2b6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .text 0x00000000 0x15 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .debug_info 0x00000000 0x86a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .debug_abbrev 0x00000000 0x1d1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .debug_loclists + 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .debug_line 0x00000000 0xa0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .debug_str 0x00000000 0x4e2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .debug_line_str + 0x00000000 0x31b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .text 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_info 0x00000000 0x913 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_abbrev 0x00000000 0x21c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_loclists + 0x00000000 0x34 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_line 0x00000000 0xd7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_str 0x00000000 0x4fe C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .debug_line_str + 0x00000000 0x32a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .literal 0x00000000 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .text 0x00000000 0x2e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_info 0x00000000 0x923 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_abbrev 0x00000000 0x21a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_loclists + 0x00000000 0x2c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_line 0x00000000 0xcd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_str 0x00000000 0x511 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .debug_line_str + 0x00000000 0x327 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .text 0x00000000 0x50 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_info 0x00000000 0x151 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_abbrev 0x00000000 0xde C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_loclists + 0x00000000 0xea C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_line 0x00000000 0x1c9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_str 0x00000000 0x135 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .debug_line_str + 0x00000000 0x2b6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .text 0x00000000 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_info 0x00000000 0x10d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_abbrev 0x00000000 0xa3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_loclists + 0x00000000 0xab C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_line 0x00000000 0x14d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_str 0x00000000 0x12a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .debug_line_str + 0x00000000 0x2b6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .text 0x00000000 0x44 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_info 0x00000000 0x178 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_abbrev 0x00000000 0xca C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_loclists + 0x00000000 0xe6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_rnglists + 0x00000000 0x1d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_line 0x00000000 0x164 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_str 0x00000000 0x125 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .debug_line_str + 0x00000000 0x2cb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .text 0x00000000 0x3a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_info 0x00000000 0xde C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_abbrev 0x00000000 0x79 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_loclists + 0x00000000 0xa6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_line 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_str 0x00000000 0x119 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .debug_line_str + 0x00000000 0x2b6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .text 0x00000000 0x1a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .debug_info 0x00000000 0xe1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .debug_abbrev 0x00000000 0x8d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .debug_loclists + 0x00000000 0x4b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .debug_line 0x00000000 0xbd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .debug_str 0x00000000 0x11f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .debug_line_str + 0x00000000 0x2b6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .text 0x00000000 0x32 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .debug_info 0x00000000 0x128 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .debug_abbrev 0x00000000 0xce C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .debug_loclists + 0x00000000 0x96 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .debug_line 0x00000000 0x100 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .debug_str 0x00000000 0x11e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .debug_line_str + 0x00000000 0x235 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .literal 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .text 0x00000000 0x6c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .rodata.str1.1 + 0x00000000 0x85 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .debug_info 0x00000000 0x966 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .debug_abbrev 0x00000000 0x24a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .debug_loclists + 0x00000000 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .debug_line 0x00000000 0x1e9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .debug_str 0x00000000 0x50b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .debug_line_str + 0x00000000 0x32d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .literal 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .text 0x00000000 0x76 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .debug_info 0x00000000 0x19d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .debug_abbrev 0x00000000 0xf9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .debug_loclists + 0x00000000 0xa9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .debug_line 0x00000000 0x27e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .debug_str 0x00000000 0x148 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .debug_line_str + 0x00000000 0x238 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .text 0x00000000 0x36 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_info 0x00000000 0xef C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_abbrev 0x00000000 0x9f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_loclists + 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_line 0x00000000 0x134 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_str 0x00000000 0x118 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_line_str + 0x00000000 0x2b3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .literal 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .text 0x00000000 0x3a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .rodata.str1.1 + 0x00000000 0x83 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .debug_info 0x00000000 0x9cc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .debug_abbrev 0x00000000 0x23d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .debug_loclists + 0x00000000 0x34 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .debug_rnglists + 0x00000000 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .debug_line 0x00000000 0x118 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .debug_str 0x00000000 0x566 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .debug_line_str + 0x00000000 0x397 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .literal 0x00000000 0x50 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .text 0x00000000 0x1be C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_info 0x00000000 0x24e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_abbrev 0x00000000 0xf7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_loclists + 0x00000000 0x103 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_line 0x00000000 0x4ec C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_str 0x00000000 0x1bf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .debug_line_str + 0x00000000 0x2f2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .literal 0x00000000 0x38 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .text 0x00000000 0x25c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .debug_info 0x00000000 0x390 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .debug_abbrev 0x00000000 0x191 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .debug_loclists + 0x00000000 0x95 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .debug_line 0x00000000 0x648 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .debug_str 0x00000000 0x259 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .debug_line_str + 0x00000000 0x30b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .literal 0x00000000 0x54 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .text 0x00000000 0x562 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .rodata 0x00000000 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .debug_info 0x00000000 0x4a1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .debug_abbrev 0x00000000 0x20c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .debug_loclists + 0x00000000 0x2ca C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .debug_rnglists + 0x00000000 0x17 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .debug_line 0x00000000 0xce8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .debug_str 0x00000000 0x2b2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .debug_line_str + 0x00000000 0x30b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .rodata 0x00000000 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_info 0x00000000 0xad C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_abbrev 0x00000000 0x61 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_aranges + 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_line 0x00000000 0x3f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_str 0x00000000 0x11a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .debug_line_str + 0x00000000 0x1f6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .text 0x00000000 0x34 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .debug_info 0x00000000 0x8eb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .debug_abbrev 0x00000000 0x1e3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .debug_loclists + 0x00000000 0x1b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .debug_line 0x00000000 0x129 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .debug_str 0x00000000 0x52e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .debug_line_str + 0x00000000 0x387 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .literal 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .text 0x00000000 0x1a6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_info 0x00000000 0x298 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_abbrev 0x00000000 0x139 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_loclists + 0x00000000 0x13e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_line 0x00000000 0x44f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_str 0x00000000 0x1ea C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .debug_line_str + 0x00000000 0x2c4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .literal 0x00000000 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .text 0x00000000 0x1e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .debug_info 0x00000000 0x106 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .debug_abbrev 0x00000000 0xc8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .debug_line 0x00000000 0x7e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .debug_str 0x00000000 0x17c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .debug_line_str + 0x00000000 0x230 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .literal 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .text 0x00000000 0x31 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .debug_info 0x00000000 0x889 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .debug_abbrev 0x00000000 0x1d7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .debug_line 0x00000000 0xc2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .debug_str 0x00000000 0x50f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .debug_line_str + 0x00000000 0x31a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .literal 0x00000000 0x88 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .text 0x00000000 0x472 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .bss 0x00000000 0x1c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .rodata.str1.1 + 0x00000000 0x61 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_info 0x00000000 0xe64 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_abbrev 0x00000000 0x2bd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_loclists + 0x00000000 0x1bc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_line 0x00000000 0xb95 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_str 0x00000000 0x64a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .debug_line_str + 0x00000000 0x3b8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .data 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .bss 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .rodata.str1.1 + 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .debug_info 0x00000000 0xcb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .debug_abbrev 0x00000000 0x5e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .debug_aranges + 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .debug_line 0x00000000 0x3e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .debug_str 0x00000000 0x126 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .debug_line_str + 0x00000000 0x223 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .bss 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .text 0x00000000 0x15 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_info 0x00000000 0x869 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_abbrev 0x00000000 0x1d1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_loclists + 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_line 0x00000000 0xa5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_str 0x00000000 0x4e0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .debug_line_str + 0x00000000 0x32d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .text 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .debug_info 0x00000000 0xa83 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .debug_abbrev 0x00000000 0x1e1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .debug_loclists + 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .debug_line 0x00000000 0xbf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .debug_str 0x00000000 0x629 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .debug_line_str + 0x00000000 0x3ac C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .literal 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .text 0x00000000 0x135 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line 0x00000000 0x30f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line_str + 0x00000000 0xf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_info 0x00000000 0x33 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_str 0x00000000 0x105 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .literal 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .text 0x00000000 0x74 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_line 0x00000000 0x146 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_line_str + 0x00000000 0xf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_info 0x00000000 0x31 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_str 0x00000000 0x105 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .literal 0x00000000 0x1c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + .text 0x00000000 0x123 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_line 0x00000000 0x2b4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_line_str + 0x00000000 0xf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_info 0x00000000 0x33 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + .debug_str 0x00000000 0x105 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + .text 0x00000000 0x90 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_line 0x00000000 0x182 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_line_str + 0x00000000 0xf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_info 0x00000000 0x33 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + .debug_str 0x00000000 0x105 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .text 0x00000000 0x63 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_line 0x00000000 0x122 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_line_str + 0x00000000 0xf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_info 0x00000000 0x31 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_str 0x00000000 0x105 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .text 0x00000000 0x113 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_line 0x00000000 0x2a8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_line_str + 0x00000000 0xf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_info 0x00000000 0x33 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_str 0x00000000 0x107 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .literal 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .text 0x00000000 0x90 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_info 0x00000000 0x9a4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_abbrev 0x00000000 0x245 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_loclists + 0x00000000 0x94 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_line 0x00000000 0x235 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_str 0x00000000 0x52a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .debug_line_str + 0x00000000 0x334 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .literal 0x00000000 0x1c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .text 0x00000000 0xc4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .debug_info 0x00000000 0xa0a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .debug_abbrev 0x00000000 0x25a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .debug_loclists + 0x00000000 0x51 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .debug_line 0x00000000 0x2d3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .debug_str 0x00000000 0x551 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .debug_line_str + 0x00000000 0x340 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .literal 0x00000000 0xcc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .text 0x00000000 0x1fb9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .rodata 0x00000000 0x13e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_frame 0x00000000 0x8c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_info 0x00000000 0x2257 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_abbrev 0x00000000 0x489 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_loclists + 0x00000000 0x1644 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_rnglists + 0x00000000 0x167 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_line 0x00000000 0x4146 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_str 0x00000000 0x977 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .debug_line_str + 0x00000000 0x46a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .literal 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .text 0x00000000 0x9a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .debug_info 0x00000000 0x10e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .debug_abbrev 0x00000000 0x9a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .debug_loclists + 0x00000000 0xf8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .debug_line 0x00000000 0x242 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .debug_str 0x00000000 0x121 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .debug_line_str + 0x00000000 0x22d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .literal 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .text 0x00000000 0x1b4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .debug_frame 0x00000000 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .debug_info 0x00000000 0xb1f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .debug_abbrev 0x00000000 0x2c6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .debug_loclists + 0x00000000 0x106 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .debug_line 0x00000000 0x645 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .debug_str 0x00000000 0x5a4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .debug_line_str + 0x00000000 0x33c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .literal 0x00000000 0x154 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .text 0x00000000 0x242 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .rodata.str1.1 + 0x00000000 0x697 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .rodata 0x00000000 0x23c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_frame 0x00000000 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_info 0x00000000 0x992 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_abbrev 0x00000000 0x22e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_loclists + 0x00000000 0xd46 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_line 0x00000000 0xaa8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_str 0x00000000 0x52d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .debug_line_str + 0x00000000 0x32b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .text 0x00000000 0x7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_info 0x00000000 0x96 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_abbrev 0x00000000 0x77 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_loclists + 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_line 0x00000000 0x7b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_str 0x00000000 0xc4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .debug_line_str + 0x00000000 0x1e3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .text 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .data 0x00000000 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_info 0x00000000 0x170 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_abbrev 0x00000000 0xb7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_line 0x00000000 0x74 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_str 0x00000000 0x19a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .debug_line_str + 0x00000000 0x2b0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .literal 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .text 0x00000000 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .bss 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .literal 0x00000000 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .text 0x00000000 0x1e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .debug_info 0x00000000 0x88a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .debug_abbrev 0x00000000 0x1e4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .debug_line 0x00000000 0xaa C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .debug_str 0x00000000 0x555 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .debug_line_str + 0x00000000 0x31f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .text 0x00000000 0x3f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_info 0x00000000 0xbaa C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_abbrev 0x00000000 0x243 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_loclists + 0x00000000 0x3b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_line 0x00000000 0x1b3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_str 0x00000000 0x70d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .debug_line_str + 0x00000000 0x3ad C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .literal 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .text 0x00000000 0x198 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .debug_frame 0x00000000 0x70 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .debug_info 0x00000000 0xe0b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .debug_abbrev 0x00000000 0x30d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .debug_loclists + 0x00000000 0x2cb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .debug_line 0x00000000 0x5da C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .debug_str 0x00000000 0x772 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .debug_line_str + 0x00000000 0x3bc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .literal 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .text 0x00000000 0x190 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .debug_frame 0x00000000 0x70 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .debug_info 0x00000000 0xe03 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .debug_abbrev 0x00000000 0x314 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .debug_loclists + 0x00000000 0x28d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .debug_line 0x00000000 0x5b8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .debug_str 0x00000000 0x776 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .debug_line_str + 0x00000000 0x3bf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .text 0x00000000 0x4c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .rodata.str1.1 + 0x00000000 0x1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_frame 0x00000000 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_info 0x00000000 0xbe8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_abbrev 0x00000000 0x25f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_loclists + 0x00000000 0x43 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_line 0x00000000 0x1be C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_str 0x00000000 0x706 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .debug_line_str + 0x00000000 0x3a1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .text 0x00000000 0x11 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .debug_info 0x00000000 0xea C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .debug_abbrev 0x00000000 0xb9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .debug_loclists + 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .debug_line 0x00000000 0x97 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .debug_str 0x00000000 0x128 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .debug_line_str + 0x00000000 0x311 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .text 0x00000000 0x1c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_info 0x00000000 0xacf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_abbrev 0x00000000 0x1b1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_loclists + 0x00000000 0x2b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_line 0x00000000 0xda C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_str 0x00000000 0x6be C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .debug_line_str + 0x00000000 0x3b8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .init.literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .text 0x00000000 0x16 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .ctors 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .eh_frame 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .tm_clone_table + 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .init 0x00000000 0x6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .init 0x00000000 0x2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .fini 0x00000000 0x2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + +Memory Configuration + +Name Origin Length Attributes +iram0_0_seg 0x40080000 0x00020000 xr +iram0_2_seg 0x400d0020 0x0032ffe0 xr +dram0_0_seg 0x3ffb0000 0x0002c200 rw +drom0_0_seg 0x3f400020 0x003fffe0 r +rtc_iram_seg 0x400c0000 0x00002000 xrw +rtc_data_seg 0x3ff80000 0x00002000 rw +rtc_fast_reserved_seg 0x3ff82000 0x00000000 rw +rtc_slow_seg 0x50000000 0x00001fe8 rw +rtc_slow_reserved_seg 0x50001fe8 0x00000018 rw +extern_ram_seg 0x3f800000 0x00400000 xrw +*default* 0x00000000 0xffffffff + +Linker script and memory map + +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + 0x00000000 IDF_TARGET_ESP32 = 0x0 +LOAD CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/esp_hid/libesp_hid.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD esp-idf/esp_lcd/libesp_lcd.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/esp_hid/libesp_hid.a +LOAD esp-idf/esp_lcd/libesp_lcd.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/newlib/libnewlib.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a +LOAD esp-idf/cxx/libcxx.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libnosys.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + 0x3ff40000 PROVIDE (UART0 = 0x3ff40000) + 0x3ff42000 PROVIDE (SPI1 = 0x3ff42000) + 0x3ff43000 PROVIDE (SPI0 = 0x3ff43000) + 0x3ff44000 PROVIDE (GPIO = 0x3ff44000) + [!provide] PROVIDE (SDM = 0x3ff44f00) + 0x3ff48000 PROVIDE (RTCCNTL = 0x3ff48000) + 0x3ff48400 PROVIDE (RTCIO = 0x3ff48400) + 0x3ff48800 PROVIDE (SENS = 0x3ff48800) + [!provide] PROVIDE (HINF = 0x3ff4b000) + [!provide] PROVIDE (UHCI1 = 0x3ff4c000) + 0x3ff4f000 PROVIDE (I2S0 = 0x3ff4f000) + 0x3ff50000 PROVIDE (UART1 = 0x3ff50000) + [!provide] PROVIDE (I2C0 = 0x3ff53000) + [!provide] PROVIDE (UHCI0 = 0x3ff54000) + [!provide] PROVIDE (HOST = 0x3ff55000) + [!provide] PROVIDE (RMT = 0x3ff56000) + [!provide] PROVIDE (RMTMEM = 0x3ff56800) + [!provide] PROVIDE (PCNT = 0x3ff57000) + [!provide] PROVIDE (SLC = 0x3ff58000) + [!provide] PROVIDE (LEDC = 0x3ff59000) + 0x3ff5a000 PROVIDE (EFUSE = 0x3ff5a000) + [!provide] PROVIDE (MCPWM0 = 0x3ff5e000) + 0x3ff5f000 PROVIDE (TIMERG0 = 0x3ff5f000) + 0x3ff60000 PROVIDE (TIMERG1 = 0x3ff60000) + 0x3ff64000 PROVIDE (SPI2 = 0x3ff64000) + 0x3ff65000 PROVIDE (SPI3 = 0x3ff65000) + 0x3ff66000 PROVIDE (SYSCON = 0x3ff66000) + [!provide] PROVIDE (I2C1 = 0x3ff67000) + [!provide] PROVIDE (SDMMC = 0x3ff68000) + [!provide] PROVIDE (EMAC_DMA = 0x3ff69000) + [!provide] PROVIDE (EMAC_EXT = 0x3ff69800) + [!provide] PROVIDE (EMAC_MAC = 0x3ff6a000) + [!provide] PROVIDE (TWAI = 0x3ff6b000) + [!provide] PROVIDE (MCPWM1 = 0x3ff6c000) + 0x3ff6d000 PROVIDE (I2S1 = 0x3ff6d000) + 0x3ff6e000 PROVIDE (UART2 = 0x3ff6e000) + [!provide] PROVIDE (Add2SelfBigHex256 = 0x40015b7c) + [!provide] PROVIDE (AddBigHex256 = 0x40015b28) + [!provide] PROVIDE (AddBigHexModP256 = 0x40015c98) + [!provide] PROVIDE (AddP256 = 0x40015c74) + [!provide] PROVIDE (AddPdiv2_256 = 0x40015ce0) + [!provide] PROVIDE (app_gpio_arg = 0x3ffe003c) + [!provide] PROVIDE (app_gpio_handler = 0x3ffe0040) + [!provide] PROVIDE (BasePoint_x_256 = 0x3ff97488) + [!provide] PROVIDE (BasePoint_y_256 = 0x3ff97468) + [!provide] PROVIDE (bigHexInversion256 = 0x400168f0) + [!provide] PROVIDE (bigHexP256 = 0x3ff973bc) + [!provide] PROVIDE (btdm_r_ble_bt_handler_tab_p_get = 0x40019b0c) + [!provide] PROVIDE (btdm_r_btdm_option_data_p_get = 0x40010004) + [!provide] PROVIDE (btdm_r_btdm_rom_version_get = 0x40010078) + [!provide] PROVIDE (btdm_r_data_init = 0x4001002c) + [!provide] PROVIDE (btdm_r_import_rf_phy_func_p_get = 0x40054298) + [!provide] PROVIDE (btdm_r_ip_func_p_get = 0x40019af0) + [!provide] PROVIDE (btdm_r_ip_func_p_set = 0x40019afc) + [!provide] PROVIDE (btdm_r_modules_func_p_get = 0x4005427c) + [!provide] PROVIDE (btdm_r_modules_func_p_set = 0x40054270) + [!provide] PROVIDE (btdm_r_plf_func_p_set = 0x40054288) + [!provide] PROVIDE (bt_util_buf_env = 0x3ffb8bd4) + 0x400095e0 PROVIDE (cache_flash_mmu_set_rom = 0x400095e0) + 0x40009a14 PROVIDE (Cache_Flush_rom = 0x40009a14) + 0x40009ab8 PROVIDE (Cache_Read_Disable_rom = 0x40009ab8) + 0x40009a84 PROVIDE (Cache_Read_Enable_rom = 0x40009a84) + [!provide] PROVIDE (Cache_Read_Init_rom = 0x40009950) + [!provide] PROVIDE (cache_sram_mmu_set_rom = 0x400097f4) + [!provide] PROVIDE (calc_rtc_memory_crc = 0x40008170) + [!provide] PROVIDE (__clear_cache = 0x40063860) + [!provide] PROVIDE (co_default_bdaddr = 0x3ffae704) + [!provide] PROVIDE (co_null_bdaddr = 0x3ffb80e0) + [!provide] PROVIDE (co_sca2ppm = 0x3ff971e8) + [!provide] PROVIDE (crc16_be = 0x4005d09c) + [!provide] PROVIDE (crc16_le = 0x4005d05c) + [!provide] PROVIDE (crc32_be = 0x4005d024) + 0x4005cfec PROVIDE (crc32_le = 0x4005cfec) + [!provide] PROVIDE (crc8_be = 0x4005d114) + [!provide] PROVIDE (crc8_le = 0x4005d0e0) + [!provide] PROVIDE (_data_end_rom = 0x4000d5c8) + [!provide] PROVIDE (_data_end_btdm_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_btdm_rom = 0x4000d4f4) + [!provide] PROVIDE (_data_start_btdm = 0x3ffae6e0) + [!provide] PROVIDE (_data_end_btdm = 0x3ffaff10) + [!provide] PROVIDE (_bss_start_btdm = 0x3ffb8000) + [!provide] PROVIDE (_bss_end_btdm = 0x3ffbff70) + [!provide] PROVIDE (dbg_default_handler = 0x3ff97218) + [!provide] PROVIDE (dbg_default_state = 0x3ff97220) + [!provide] PROVIDE (dbg_state = 0x3ffb8d5d) + [!provide] PROVIDE (DebugE256PublicKey_x = 0x3ff97428) + [!provide] PROVIDE (DebugE256PublicKey_y = 0x3ff97408) + [!provide] PROVIDE (DebugE256SecretKey = 0x3ff973e8) + [!provide] PROVIDE (debug_timer = 0x3ffe042c) + [!provide] PROVIDE (debug_timerfn = 0x3ffe0430) + [!provide] PROVIDE (dh_group14_generator = 0x3ff9ac60) + [!provide] PROVIDE (dh_group14_prime = 0x3ff9ab60) + [!provide] PROVIDE (dh_group15_generator = 0x3ff9ab5f) + [!provide] PROVIDE (dh_group15_prime = 0x3ff9a9df) + [!provide] PROVIDE (dh_group16_generator = 0x3ff9a9de) + [!provide] PROVIDE (dh_group16_prime = 0x3ff9a7de) + [!provide] PROVIDE (dh_group17_generator = 0x3ff9a7dd) + [!provide] PROVIDE (dh_group17_prime = 0x3ff9a4dd) + [!provide] PROVIDE (dh_group18_generator = 0x3ff9a4dc) + [!provide] PROVIDE (dh_group18_prime = 0x3ff9a0dc) + [!provide] PROVIDE (dh_group1_generator = 0x3ff9ae03) + [!provide] PROVIDE (dh_group1_prime = 0x3ff9ada3) + [!provide] PROVIDE (dh_group2_generator = 0x3ff9ada2) + [!provide] PROVIDE (dh_group2_prime = 0x3ff9ad22) + [!provide] PROVIDE (dh_group5_generator = 0x3ff9ad21) + [!provide] PROVIDE (dh_group5_prime = 0x3ff9ac61) + 0x3ffae290 PROVIDE (g_rom_spiflash_dummy_len_plus = 0x3ffae290) + [!provide] PROVIDE (ecc_env = 0x3ffb8d60) + [!provide] PROVIDE (ecc_Jacobian_InfinityPoint256 = 0x3ff972e8) + [!provide] PROVIDE (em_buf_env = 0x3ffb8d74) + 0x4005d144 PROVIDE (esp_crc8 = 0x4005d144) + [!provide] PROVIDE (_etext = 0x4000d66c) + [!provide] PROVIDE (ets_readySet_ = 0x3ffe01f0) + [!provide] PROVIDE (ets_startup_callback = 0x3ffe0404) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (exc_cause_table = 0x3ff991d0) + [!provide] PROVIDE (GF_Jacobian_Point_Addition256 = 0x400163a4) + [!provide] PROVIDE (GF_Jacobian_Point_Double256 = 0x40016260) + [!provide] PROVIDE (GF_Point_Jacobian_To_Affine256 = 0x40016b0c) + [!provide] PROVIDE (g_phyFuns_instance = 0x3ffae0c4) + 0x3ffae270 PROVIDE (g_rom_flashchip = 0x3ffae270) + [!provide] PROVIDE (gTxMsg = 0x3ffe0050) + [!provide] PROVIDE (hci_cmd_desc_root_tab = 0x3ff976d4) + [!provide] PROVIDE (hci_cmd_desc_tab_ctrl_bb = 0x3ff97b70) + [!provide] PROVIDE (hci_cmd_desc_tab_info_par = 0x3ff97b1c) + [!provide] PROVIDE (hci_cmd_desc_tab_le = 0x3ff97870) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_ctrl = 0x3ff97fc0) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_pol = 0x3ff97f3c) + [!provide] PROVIDE (hci_cmd_desc_tab_stat_par = 0x3ff97ac8) + [!provide] PROVIDE (hci_cmd_desc_tab_testing = 0x3ff97a98) + [!provide] PROVIDE (hci_cmd_desc_tab_vs = 0x3ff97714) + [!provide] PROVIDE (hci_command_handler = 0x4004c928) + [!provide] PROVIDE (hci_env = 0x3ffb9350) + [!provide] PROVIDE (rwip_env = 0x3ffb8bcc) + [!provide] PROVIDE (hci_evt_dbg_desc_tab = 0x3ff9750c) + [!provide] PROVIDE (hci_evt_desc_tab = 0x3ff9751c) + [!provide] PROVIDE (hci_evt_le_desc_tab = 0x3ff974b4) + [!provide] PROVIDE (hci_fc_env = 0x3ffb9340) + [!provide] PROVIDE (jd_decomp = 0x400613e8) + [!provide] PROVIDE (jd_prepare = 0x40060fa8) + [!provide] PROVIDE (ke_env = 0x3ffb93cc) + [!provide] PROVIDE (ke_handler_search = 0x4001a430) + [!provide] PROVIDE (ke_task_env = 0x3ffb81d4) + [!provide] PROVIDE (ke_event_env = 0x3ffb81a4) + [!provide] PROVIDE (lb_default_handler = 0x3ff982b8) + [!provide] PROVIDE (lb_default_state_tab_p_get = 0x4001c198) + [!provide] PROVIDE (lb_env = 0x3ffb9424) + [!provide] PROVIDE (lb_hci_cmd_handler_tab_p_get = 0x4001c18c) + [!provide] PROVIDE (lb_state = 0x3ffb94e8) + [!provide] PROVIDE (lc_default_handler = 0x3ff98648) + [!provide] PROVIDE (lc_default_state_tab_p_get = 0x4002f494) + [!provide] PROVIDE (lc_env = 0x3ffb94ec) + [!provide] PROVIDE (lc_hci_cmd_handler_tab_p_get = 0x4002f488) + [!provide] PROVIDE (lc_state = 0x3ffb9508) + [!provide] PROVIDE (ld_acl_br_sizes = 0x3ff98a2a) + [!provide] PROVIDE (ld_acl_br_types = 0x3ff98a36) + [!provide] PROVIDE (ld_acl_edr_sizes = 0x3ff98a14) + [!provide] PROVIDE (ld_acl_edr_types = 0x3ff98a22) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_pcm_settings_dft = 0x3ff98a0c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sync_train_channels = 0x3ff98a3c) + [!provide] PROVIDE (llc_default_handler = 0x3ff98b3c) + [!provide] PROVIDE (llc_default_state_tab_p_get = 0x40046058) + [!provide] PROVIDE (llc_env = 0x3ffb96d0) + [!provide] PROVIDE (llc_hci_acl_data_tx_handler = 0x40042398) + [!provide] PROVIDE (llc_hci_cmd_handler_tab_p_get = 0x40042358) + [!provide] PROVIDE (llc_hci_command_handler = 0x40042360) + [!provide] PROVIDE (llcp_pdu_handler_tab_p_get = 0x40043f64) + [!provide] PROVIDE (llc_state = 0x3ffb96f8) + [!provide] PROVIDE (lldesc_build_chain = 0x4000a850) + [!provide] PROVIDE (lldesc_num2link = 0x4000a948) + [!provide] PROVIDE (lldesc_set_owner = 0x4000a974) + [!provide] PROVIDE (lld_evt_deferred_elt_push = 0x400466b4) + [!provide] PROVIDE (lld_evt_deferred_elt_pop = 0x400466dc) + [!provide] PROVIDE (lld_evt_winsize_change = 0x40046730) + [!provide] PROVIDE (lld_evt_rxwin_compute = 0x400467c8) + [!provide] PROVIDE (lld_evt_slave_time_compute = 0x40046818) + [!provide] PROVIDE (lld_evt_env = 0x3ffb9704) + [!provide] PROVIDE (lld_evt_elt_wait_get = 0x400468e4) + [!provide] PROVIDE (lld_evt_get_next_free_slot = 0x4004692c) + [!provide] PROVIDE (lld_pdu_adv_pk_desc_tab = 0x3ff98c70) + [!provide] PROVIDE (lld_pdu_llcp_pk_desc_tab = 0x3ff98b68) + [!provide] PROVIDE (lld_pdu_tx_flush_list = 0x4004a760) + [!provide] PROVIDE (lld_pdu_pack = 0x4004ab14) + [!provide] PROVIDE (LLM_AA_CT1 = 0x3ff98d8a) + [!provide] PROVIDE (LLM_AA_CT2 = 0x3ff98d88) + [!provide] PROVIDE (llm_default_handler = 0x3ff98d80) + [!provide] PROVIDE (llm_default_state_tab_p_get = 0x4004e718) + [!provide] PROVIDE (llm_hci_cmd_handler_tab_p_get = 0x4004c920) + [!provide] PROVIDE (llm_le_env = 0x3ffb976c) + [!provide] PROVIDE (llm_local_cmds = 0x3ff98d38) + [!provide] PROVIDE (llm_local_data_len_values = 0x3ff98d1c) + [!provide] PROVIDE (llm_local_le_feats = 0x3ff98d30) + [!provide] PROVIDE (llm_local_le_states = 0x3ff98d28) + [!provide] PROVIDE (llm_state = 0x3ffb985c) + [!provide] PROVIDE (lm_default_handler = 0x3ff990e0) + [!provide] PROVIDE (lm_default_state_tab_p_get = 0x40054268) + [!provide] PROVIDE (lm_env = 0x3ffb9860) + [!provide] PROVIDE (lm_hci_cmd_handler_tab_p_get = 0x4005425c) + [!provide] PROVIDE (lm_local_supp_feats = 0x3ff990ee) + [!provide] PROVIDE (lm_n_page_tab = 0x3ff990e8) + [!provide] PROVIDE (lmp_desc_tab = 0x3ff96e6c) + [!provide] PROVIDE (lmp_ext_desc_tab = 0x3ff96d9c) + [!provide] PROVIDE (lm_state = 0x3ffb9a1c) + [!provide] PROVIDE (maxSecretKey_256 = 0x3ff97448) + [!provide] PROVIDE (mmu_init = 0x400095a4) + [!provide] PROVIDE (MultiplyBigHexByUint32_256 = 0x40016214) + [!provide] PROVIDE (MultiplyBigHexModP256 = 0x400160b8) + [!provide] PROVIDE (MultiplyByU32ModP256 = 0x40015fdc) + [!provide] PROVIDE (multofup = 0x4000ab8c) + [!provide] PROVIDE (mz_adler32 = 0x4005edbc) + [!provide] PROVIDE (mz_crc32 = 0x4005ee88) + [!provide] PROVIDE (mz_free = 0x4005eed4) + [!provide] PROVIDE (notEqual256 = 0x40015b04) + [!provide] PROVIDE (one_bits = 0x3ff971f8) + 0x40004100 PROVIDE (phy_get_romfuncs = 0x40004100) + [!provide] PROVIDE (_Pri_4_HandlerAddress = 0x3ffe0648) + [!provide] PROVIDE (_Pri_5_HandlerAddress = 0x3ffe064c) + [!provide] PROVIDE (r_btdm_option_data = 0x3ffae6e0) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_alloc = 0x40010218) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_free = 0x40010234) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_alloc = 0x40010268) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_free = 0x40010280) + [!provide] PROVIDE (r_bt_util_buf_init = 0x400100e4) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_alloc = 0x400101d0) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_free = 0x400101ec) + [!provide] PROVIDE (r_bt_util_buf_sync_clear = 0x400103c8) + [!provide] PROVIDE (r_bt_util_buf_sync_init = 0x400102c4) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_alloc = 0x40010468) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_free = 0x4001049c) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_alloc = 0x400103ec) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_free = 0x40010428) + [!provide] PROVIDE (r_co_bdaddr_compare = 0x40014324) + [!provide] PROVIDE (r_co_bytes_to_string = 0x400142e4) + [!provide] PROVIDE (r_co_list_check_size_available = 0x400142c4) + [!provide] PROVIDE (r_co_list_extract = 0x4001404c) + [!provide] PROVIDE (r_co_list_extract_after = 0x40014118) + [!provide] PROVIDE (r_co_list_find = 0x4001419c) + [!provide] PROVIDE (r_co_list_init = 0x40013f14) + [!provide] PROVIDE (r_co_list_insert_after = 0x40014254) + [!provide] PROVIDE (r_co_list_insert_before = 0x40014200) + [!provide] PROVIDE (r_co_list_merge = 0x400141bc) + [!provide] PROVIDE (r_co_list_pool_init = 0x40013f30) + [!provide] PROVIDE (r_co_list_pop_front = 0x40014028) + [!provide] PROVIDE (r_co_list_push_back = 0x40013fb8) + [!provide] PROVIDE (r_co_list_push_front = 0x40013ff4) + [!provide] PROVIDE (r_co_list_size = 0x400142ac) + [!provide] PROVIDE (r_co_nb_good_channels = 0x40014360) + [!provide] PROVIDE (r_co_slot_to_duration = 0x40014348) + [!provide] PROVIDE (r_dbg_init = 0x40014394) + [!provide] PROVIDE (r_dbg_platform_reset_complete = 0x400143d0) + [!provide] PROVIDE (r_dbg_swdiag_init = 0x40014470) + [!provide] PROVIDE (r_dbg_swdiag_read = 0x400144a4) + [!provide] PROVIDE (r_dbg_swdiag_write = 0x400144d0) + [!provide] PROVIDE (r_E1 = 0x400108e8) + [!provide] PROVIDE (r_E21 = 0x40010968) + [!provide] PROVIDE (r_E22 = 0x400109b4) + [!provide] PROVIDE (r_E3 = 0x40010a58) + [!provide] PROVIDE (lm_n192_mod_mul = 0x40011dc0) + [!provide] PROVIDE (lm_n192_mod_add = 0x40011e9c) + [!provide] PROVIDE (lm_n192_mod_sub = 0x40011eec) + [!provide] PROVIDE (r_ea_alarm_clear = 0x40015ab4) + [!provide] PROVIDE (r_ea_alarm_set = 0x40015a10) + [!provide] PROVIDE (r_ea_elt_cancel = 0x400150d0) + [!provide] PROVIDE (r_ea_elt_create = 0x40015264) + [!provide] PROVIDE (r_ea_elt_insert = 0x400152a8) + [!provide] PROVIDE (r_ea_elt_remove = 0x400154f0) + [!provide] PROVIDE (r_ea_finetimer_isr = 0x400155d4) + [!provide] PROVIDE (r_ea_init = 0x40015228) + [!provide] PROVIDE (r_ea_interval_create = 0x4001555c) + [!provide] PROVIDE (r_ea_interval_delete = 0x400155a8) + [!provide] PROVIDE (r_ea_interval_duration_req = 0x4001597c) + [!provide] PROVIDE (r_ea_interval_insert = 0x4001557c) + [!provide] PROVIDE (r_ea_interval_remove = 0x40015590) + [!provide] PROVIDE (ea_conflict_check = 0x40014e9c) + [!provide] PROVIDE (ea_prog_timer = 0x40014f88) + [!provide] PROVIDE (r_ea_offset_req = 0x40015748) + [!provide] PROVIDE (r_ea_sleep_check = 0x40015928) + [!provide] PROVIDE (r_ea_sw_isr = 0x40015724) + [!provide] PROVIDE (r_ea_time_get_halfslot_rounded = 0x40015894) + [!provide] PROVIDE (r_ea_time_get_slot_rounded = 0x400158d4) + [!provide] PROVIDE (r_ecc_abort_key256_generation = 0x40017070) + [!provide] PROVIDE (r_ecc_generate_key256 = 0x40016e00) + [!provide] PROVIDE (r_ecc_gen_new_public_key = 0x400170c0) + [!provide] PROVIDE (r_ecc_gen_new_secret_key = 0x400170e4) + [!provide] PROVIDE (r_ecc_get_debug_Keys = 0x40017224) + [!provide] PROVIDE (r_ecc_init = 0x40016dbc) + [!provide] PROVIDE (ecc_point_multiplication_uint8_256 = 0x40016804) + [!provide] PROVIDE (RecvBuff = 0x3ffe009c) + [!provide] PROVIDE (r_em_buf_init = 0x4001729c) + [!provide] PROVIDE (r_em_buf_rx_buff_addr_get = 0x400173e8) + [!provide] PROVIDE (r_em_buf_rx_free = 0x400173c4) + [!provide] PROVIDE (r_em_buf_tx_buff_addr_get = 0x40017404) + [!provide] PROVIDE (r_em_buf_tx_free = 0x4001741c) + [!provide] PROVIDE (r_F1_256 = 0x400133e4) + [!provide] PROVIDE (r_F2_256 = 0x40013568) + [!provide] PROVIDE (r_F3_256 = 0x40013664) + [!provide] PROVIDE (RFPLL_ICP_TABLE = 0x3ffb8b7c) + [!provide] PROVIDE (r_G_256 = 0x40013470) + [!provide] PROVIDE (r_H3 = 0x40013760) + [!provide] PROVIDE (r_H4 = 0x40013830) + [!provide] PROVIDE (r_h4tl_init = 0x40017878) + [!provide] PROVIDE (r_h4tl_start = 0x40017924) + [!provide] PROVIDE (r_h4tl_stop = 0x40017934) + [!provide] PROVIDE (r_h4tl_write = 0x400178d0) + [!provide] PROVIDE (r_H5 = 0x400138dc) + [!provide] PROVIDE (r_hashConcat = 0x40013a38) + [!provide] PROVIDE (r_hci_acl_tx_data_alloc = 0x4001951c) + [!provide] PROVIDE (r_hci_acl_tx_data_received = 0x40019654) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_register = 0x40018900) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_unregister = 0x400189ac) + [!provide] PROVIDE (r_hci_bt_acl_conhdl_register = 0x4001895c) + [!provide] PROVIDE (r_hci_cmd_get_max_param_size = 0x400192d0) + [!provide] PROVIDE (r_hci_cmd_received = 0x400192f8) + [!provide] PROVIDE (r_hci_evt_filter_add = 0x40018a64) + [!provide] PROVIDE (r_hci_evt_mask_set = 0x400189e4) + [!provide] PROVIDE (r_hci_fc_acl_buf_size_set = 0x40017988) + [!provide] PROVIDE (r_hci_fc_acl_en = 0x400179d8) + [!provide] PROVIDE (r_hci_fc_acl_packet_sent = 0x40017a3c) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_acl_packets = 0x40017aa4) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_sync_packets = 0x40017ac8) + [!provide] PROVIDE (r_hci_fc_host_nb_acl_pkts_complete = 0x40017a6c) + [!provide] PROVIDE (r_hci_fc_host_nb_sync_pkts_complete = 0x40017a88) + [!provide] PROVIDE (r_hci_fc_init = 0x40017974) + [!provide] PROVIDE (r_hci_fc_sync_buf_size_set = 0x400179b0) + [!provide] PROVIDE (r_hci_fc_sync_en = 0x40017a30) + [!provide] PROVIDE (r_hci_fc_sync_packet_sent = 0x40017a54) + [!provide] PROVIDE (r_hci_init = 0x40018538) + [!provide] PROVIDE (r_hci_look_for_cmd_desc = 0x40018454) + [!provide] PROVIDE (r_hci_look_for_dbg_evt_desc = 0x400184c4) + [!provide] PROVIDE (r_hci_look_for_evt_desc = 0x400184a0) + [!provide] PROVIDE (r_hci_look_for_le_evt_desc = 0x400184e0) + [!provide] PROVIDE (r_hci_reset = 0x4001856c) + [!provide] PROVIDE (r_hci_send_2_host = 0x400185bc) + [!provide] PROVIDE (r_hci_sync_tx_data_alloc = 0x40019754) + [!provide] PROVIDE (r_hci_sync_tx_data_received = 0x400197c0) + [!provide] PROVIDE (r_hci_tl_init = 0x40019290) + [!provide] PROVIDE (r_hci_tl_send = 0x40019228) + [!provide] PROVIDE (r_hci_util_pack = 0x40019874) + [!provide] PROVIDE (r_hci_util_unpack = 0x40019998) + [!provide] PROVIDE (r_hci_voice_settings_get = 0x40018bdc) + [!provide] PROVIDE (r_hci_voice_settings_set = 0x40018be8) + [!provide] PROVIDE (r_HMAC = 0x40013968) + [!provide] PROVIDE (r_import_rf_phy_func = 0x3ffb8354) + [!provide] PROVIDE (r_import_rf_phy_func_p = 0x3ffafd64) + [!provide] PROVIDE (r_ip_funcs = 0x3ffae710) + [!provide] PROVIDE (r_ip_funcs_p = 0x3ffae70c) + [!provide] PROVIDE (r_ke_check_malloc = 0x40019de0) + [!provide] PROVIDE (r_ke_event_callback_set = 0x40019ba8) + [!provide] PROVIDE (r_ke_event_clear = 0x40019c2c) + [!provide] PROVIDE (r_ke_event_flush = 0x40019ccc) + [!provide] PROVIDE (r_ke_event_get = 0x40019c78) + [!provide] PROVIDE (r_ke_event_get_all = 0x40019cc0) + [!provide] PROVIDE (r_ke_event_init = 0x40019b90) + [!provide] PROVIDE (r_ke_event_schedule = 0x40019cdc) + [!provide] PROVIDE (r_ke_event_set = 0x40019be0) + [!provide] PROVIDE (r_ke_flush = 0x4001a374) + [!provide] PROVIDE (r_ke_free = 0x4001a014) + [!provide] PROVIDE (r_ke_get_max_mem_usage = 0x4001a1c8) + [!provide] PROVIDE (r_ke_get_mem_usage = 0x4001a1a0) + [!provide] PROVIDE (r_ke_init = 0x4001a318) + [!provide] PROVIDE (r_ke_is_free = 0x4001a184) + [!provide] PROVIDE (r_ke_malloc = 0x40019eb4) + [!provide] PROVIDE (r_ke_mem_init = 0x40019d3c) + [!provide] PROVIDE (r_ke_mem_is_empty = 0x40019d8c) + [!provide] PROVIDE (r_ke_msg_alloc = 0x4001a1e0) + [!provide] PROVIDE (r_ke_msg_dest_id_get = 0x4001a2e0) + [!provide] PROVIDE (r_ke_msg_discard = 0x4001a850) + [!provide] PROVIDE (r_ke_msg_forward = 0x4001a290) + [!provide] PROVIDE (r_ke_msg_forward_new_id = 0x4001a2ac) + [!provide] PROVIDE (r_ke_msg_free = 0x4001a2cc) + [!provide] PROVIDE (r_ke_msg_in_queue = 0x4001a2f8) + [!provide] PROVIDE (r_ke_msg_save = 0x4001a858) + [!provide] PROVIDE (r_ke_msg_send = 0x4001a234) + [!provide] PROVIDE (r_ke_msg_send_basic = 0x4001a26c) + [!provide] PROVIDE (r_ke_msg_src_id_get = 0x4001a2ec) + [!provide] PROVIDE (r_ke_queue_extract = 0x40055fd0) + [!provide] PROVIDE (r_ke_queue_insert = 0x40056020) + [!provide] PROVIDE (r_ke_sleep_check = 0x4001a3d8) + [!provide] PROVIDE (r_ke_state_get = 0x4001a7d8) + [!provide] PROVIDE (r_ke_state_set = 0x4001a6fc) + [!provide] PROVIDE (r_ke_stats_get = 0x4001a3f0) + [!provide] PROVIDE (r_ke_task_check = 0x4001a8a4) + [!provide] PROVIDE (r_ke_task_create = 0x4001a674) + [!provide] PROVIDE (r_ke_task_delete = 0x4001a6c0) + [!provide] PROVIDE (r_ke_task_init = 0x4001a650) + [!provide] PROVIDE (r_ke_task_msg_flush = 0x4001a860) + [!provide] PROVIDE (r_ke_timer_active = 0x4001ac08) + [!provide] PROVIDE (r_ke_timer_adjust_all = 0x4001ac30) + [!provide] PROVIDE (r_ke_timer_clear = 0x4001ab90) + [!provide] PROVIDE (r_ke_timer_init = 0x4001aa9c) + [!provide] PROVIDE (r_ke_timer_set = 0x4001aac0) + [!provide] PROVIDE (r_ke_timer_sleep_check = 0x4001ac50) + [!provide] PROVIDE (r_KPrimC = 0x40010ad4) + [!provide] PROVIDE (r_lb_clk_adj_activate = 0x4001ae70) + [!provide] PROVIDE (r_lb_clk_adj_id_get = 0x4001af14) + [!provide] PROVIDE (r_lb_clk_adj_period_update = 0x4001af20) + [!provide] PROVIDE (r_lb_init = 0x4001acd4) + [!provide] PROVIDE (r_lb_mst_key = 0x4001afc0) + [!provide] PROVIDE (r_lb_mst_key_cmp = 0x4001af74) + [!provide] PROVIDE (r_lb_mst_key_restart_enc = 0x4001b0d4) + [!provide] PROVIDE (r_lb_mst_start_act_bcst_enc = 0x4001b198) + [!provide] PROVIDE (r_lb_mst_stop_act_bcst_enc = 0x4001b24c) + [!provide] PROVIDE (r_lb_reset = 0x4001ad38) + [!provide] PROVIDE (r_lb_send_lmp = 0x4001adbc) + [!provide] PROVIDE (r_lb_send_pdu_clk_adj = 0x4001af3c) + [!provide] PROVIDE (r_lb_util_get_csb_mode = 0x4001ada4) + [!provide] PROVIDE (r_lb_util_get_nb_broadcast = 0x4001ad80) + [!provide] PROVIDE (r_lb_util_get_res_lt_addr = 0x4001ad98) + [!provide] PROVIDE (r_lb_util_set_nb_broadcast = 0x4001ad8c) + [!provide] PROVIDE (r_lc_afh_set = 0x4001cc74) + [!provide] PROVIDE (r_lc_afh_start = 0x4001d240) + [!provide] PROVIDE (r_lc_auth_cmp = 0x4001cd54) + [!provide] PROVIDE (r_lc_calc_link_key = 0x4001ce7c) + [!provide] PROVIDE (r_lc_chg_pkt_type_cmp = 0x4001d038) + [!provide] PROVIDE (r_lc_chg_pkt_type_cont = 0x4001cfbc) + [!provide] PROVIDE (r_lc_chg_pkt_type_retry = 0x4001d0ac) + [!provide] PROVIDE (r_lc_chk_to = 0x4001d2a8) + [!provide] PROVIDE (r_lc_cmd_stat_send = 0x4001c914) + [!provide] PROVIDE (r_lc_comb_key_svr = 0x4001d30c) + [!provide] PROVIDE (r_lc_con_cmp = 0x4001d44c) + [!provide] PROVIDE (r_lc_con_cmp_evt_send = 0x4001d4fc) + [!provide] PROVIDE (r_lc_conn_seq_done = 0x40021334) + [!provide] PROVIDE (r_lc_detach = 0x4002037c) + [!provide] PROVIDE (r_lc_dhkey = 0x4001d564) + [!provide] PROVIDE (r_lc_enc_cmp = 0x4001d8bc) + [!provide] PROVIDE (r_lc_enc_key_refresh = 0x4001d720) + [!provide] PROVIDE (r_lc_end_chk_colli = 0x4001d858) + [!provide] PROVIDE (r_lc_end_of_sniff_nego = 0x4001d9a4) + [!provide] PROVIDE (r_lc_enter_sniff_mode = 0x4001ddb8) + [!provide] PROVIDE (r_lc_epr_change_lk = 0x4001db38) + [!provide] PROVIDE (r_lc_epr_cmp = 0x4001da88) + [!provide] PROVIDE (r_lc_epr_resp = 0x4001e0b4) + [!provide] PROVIDE (r_lc_epr_rsw_cmp = 0x4001dd40) + [!provide] PROVIDE (r_lc_ext_feat = 0x40020d6c) + [!provide] PROVIDE (r_lc_feat = 0x40020984) + [!provide] PROVIDE (r_lc_hl_connect = 0x400209e8) + [!provide] PROVIDE (r_lc_init = 0x4001c948) + [!provide] PROVIDE (r_lc_init_calc_f3 = 0x4001deb0) + [!provide] PROVIDE (r_lc_initiator_epr = 0x4001e064) + [!provide] PROVIDE (r_lc_init_passkey_loop = 0x4001dfc0) + [!provide] PROVIDE (r_lc_init_start_mutual_auth = 0x4001df60) + [!provide] PROVIDE (r_lc_key_exch_end = 0x4001e140) + [!provide] PROVIDE (r_lc_legacy_pair = 0x4001e1c0) + [!provide] PROVIDE (r_lc_local_switch = 0x4001e22c) + [!provide] PROVIDE (r_lc_local_trans_mode = 0x4001e2e4) + [!provide] PROVIDE (r_lc_local_untrans_mode = 0x4001e3a0) + [!provide] PROVIDE (r_lc_loc_auth = 0x40020ecc) + [!provide] PROVIDE (r_lc_locepr_lkref = 0x4001d648) + [!provide] PROVIDE (r_lc_locepr_rsw = 0x4001d5d0) + [!provide] PROVIDE (r_lc_loc_sniff = 0x40020a6c) + [!provide] PROVIDE (r_lc_max_slot_mgt = 0x4001e410) + [!provide] PROVIDE (r_lc_mst_key = 0x4001e7c0) + [!provide] PROVIDE (r_lc_mst_qos_done = 0x4001ea80) + [!provide] PROVIDE (r_lc_mst_send_mst_key = 0x4001e8f4) + [!provide] PROVIDE (r_lc_mutual_auth_end = 0x4001e670) + [!provide] PROVIDE (r_lc_mutual_auth_end2 = 0x4001e4f4) + [!provide] PROVIDE (r_lc_packet_type = 0x40021038) + [!provide] PROVIDE (r_lc_pair = 0x40020ddc) + [!provide] PROVIDE (r_lc_pairing_cont = 0x4001eafc) + [!provide] PROVIDE (r_lc_passkey_comm = 0x4001ed20) + [!provide] PROVIDE (r_lc_prepare_all_links_for_clk_adj = 0x40021430) + [!provide] PROVIDE (r_lc_proc_rcv_dhkey = 0x4001edec) + [!provide] PROVIDE (r_lc_ptt = 0x4001ee2c) + [!provide] PROVIDE (r_lc_ptt_cmp = 0x4001eeec) + [!provide] PROVIDE (r_lc_qos_setup = 0x4001ef50) + [!provide] PROVIDE (r_lc_rd_rem_name = 0x4001efd0) + [!provide] PROVIDE (r_lc_release = 0x4001f8a8) + [!provide] PROVIDE (r_lc_rem_enc = 0x4001f124) + [!provide] PROVIDE (r_lc_rem_name_cont = 0x4001f290) + [!provide] PROVIDE (r_lc_rem_nego_trans_mode = 0x4001f1b4) + [!provide] PROVIDE (r_lc_rem_sniff = 0x40020ca4) + [!provide] PROVIDE (r_lc_rem_sniff_sub_rate = 0x40020b10) + [!provide] PROVIDE (r_lc_rem_switch = 0x4001f070) + [!provide] PROVIDE (r_lc_rem_trans_mode = 0x4001f314) + [!provide] PROVIDE (r_lc_rem_unsniff = 0x400207a0) + [!provide] PROVIDE (r_lc_rem_untrans_mode = 0x4001f36c) + [!provide] PROVIDE (r_lc_reset = 0x4001c99c) + [!provide] PROVIDE (r_lc_resp_auth = 0x4001f518) + [!provide] PROVIDE (r_lc_resp_calc_f3 = 0x4001f710) + [!provide] PROVIDE (r_lc_resp_num_comp = 0x40020074) + [!provide] PROVIDE (r_lc_resp_oob_nonce = 0x4001f694) + [!provide] PROVIDE (r_lc_resp_oob_wait_nonce = 0x4001f66c) + [!provide] PROVIDE (r_lc_resp_pair = 0x400208a4) + [!provide] PROVIDE (r_lc_resp_sec_auth = 0x4001f4a0) + [!provide] PROVIDE (r_lc_resp_wait_dhkey_cont = 0x4001f86c) + [!provide] PROVIDE (r_lc_restart_enc = 0x4001f8ec) + [!provide] PROVIDE (r_lc_restart_enc_cont = 0x4001f940) + [!provide] PROVIDE (r_lc_restore_afh_reporting = 0x4001f028) + [!provide] PROVIDE (r_lc_restore_to = 0x4001f9e0) + [!provide] PROVIDE (r_lc_ret_sniff_max_slot_chg = 0x4001fa30) + [!provide] PROVIDE (r_lc_rsw_clean_up = 0x4001dc70) + [!provide] PROVIDE (r_lc_rsw_done = 0x4001db94) + [!provide] PROVIDE (r_lc_sco_baseband_ack = 0x40022b00) + [!provide] PROVIDE (r_lc_sco_detach = 0x40021e40) + [!provide] PROVIDE (r_lc_sco_host_accept = 0x40022118) + [!provide] PROVIDE (r_lc_sco_host_reject = 0x400222b8) + [!provide] PROVIDE (r_lc_sco_host_request = 0x40021f4c) + [!provide] PROVIDE (r_lc_sco_host_request_disc = 0x4002235c) + [!provide] PROVIDE (r_lc_sco_init = 0x40021dc8) + [!provide] PROVIDE (r_lc_sco_peer_accept = 0x40022780) + [!provide] PROVIDE (r_lc_sco_peer_accept_disc = 0x40022a08) + [!provide] PROVIDE (r_lc_sco_peer_reject = 0x40022824) + [!provide] PROVIDE (r_lc_sco_peer_reject_disc = 0x40022a8c) + [!provide] PROVIDE (r_lc_sco_peer_request = 0x4002240c) + [!provide] PROVIDE (r_lc_sco_peer_request_disc = 0x400228ec) + [!provide] PROVIDE (r_lc_sco_release = 0x40021eec) + [!provide] PROVIDE (r_lc_sco_reset = 0x40021dfc) + [!provide] PROVIDE (r_lc_sco_timeout = 0x40022bd4) + [!provide] PROVIDE (r_lc_sec_auth_compute_sres = 0x4001f3ec) + [!provide] PROVIDE (r_lc_semi_key_cmp = 0x40020294) + [!provide] PROVIDE (r_lc_send_enc_chg_evt = 0x4002134c) + [!provide] PROVIDE (r_lc_send_enc_mode = 0x40020220) + [!provide] PROVIDE (r_lc_send_lmp = 0x4001c1a8) + [!provide] PROVIDE (r_lc_send_pdu_acc = 0x4001c21c) + [!provide] PROVIDE (r_lc_send_pdu_acc_ext4 = 0x4001c240) + [!provide] PROVIDE (r_lc_send_pdu_au_rand = 0x4001c308) + [!provide] PROVIDE (r_lc_send_pdu_auto_rate = 0x4001c5d0) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_ack = 0x4001c46c) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_req = 0x4001c494) + [!provide] PROVIDE (r_lc_send_pdu_comb_key = 0x4001c368) + [!provide] PROVIDE (r_lc_send_pdu_dhkey_chk = 0x4001c8e8) + [!provide] PROVIDE (r_lc_send_pdu_encaps_head = 0x4001c440) + [!provide] PROVIDE (r_lc_send_pdu_encaps_payl = 0x4001c410) + [!provide] PROVIDE (r_lc_send_pdu_enc_key_sz_req = 0x4001c670) + [!provide] PROVIDE (r_lc_send_pdu_esco_lk_rem_req = 0x4001c5a8) + [!provide] PROVIDE (r_lc_send_pdu_feats_ext_req = 0x4001c6ec) + [!provide] PROVIDE (r_lc_send_pdu_feats_res = 0x4001c694) + [!provide] PROVIDE (r_lc_send_pdu_in_rand = 0x4001c338) + [!provide] PROVIDE (r_lc_send_pdu_io_cap_res = 0x4001c72c) + [!provide] PROVIDE (r_lc_send_pdu_lsto = 0x4001c64c) + [!provide] PROVIDE (r_lc_send_pdu_max_slot = 0x4001c3c8) + [!provide] PROVIDE (r_lc_send_pdu_max_slot_req = 0x4001c3ec) + [!provide] PROVIDE (r_lc_send_pdu_not_acc = 0x4001c26c) + [!provide] PROVIDE (r_lc_send_pdu_not_acc_ext4 = 0x4001c294) + [!provide] PROVIDE (r_lc_send_pdu_num_comp_fail = 0x4001c770) + [!provide] PROVIDE (r_lc_send_pdu_pause_enc_aes_req = 0x4001c794) + [!provide] PROVIDE (r_lc_send_pdu_paus_enc_req = 0x4001c7c0) + [!provide] PROVIDE (r_lc_send_pdu_ptt_req = 0x4001c4c0) + [!provide] PROVIDE (r_lc_send_pdu_qos_req = 0x4001c82c) + [!provide] PROVIDE (r_lc_send_pdu_resu_enc_req = 0x4001c7e4) + [!provide] PROVIDE (r_lc_send_pdu_sco_lk_rem_req = 0x4001c580) + [!provide] PROVIDE (r_lc_send_pdu_set_afh = 0x4001c2c8) + [!provide] PROVIDE (r_lc_send_pdu_setup_cmp = 0x4001c808) + [!provide] PROVIDE (r_lc_send_pdu_slot_off = 0x4001c854) + [!provide] PROVIDE (r_lc_send_pdu_sniff_req = 0x4001c5f0) + [!provide] PROVIDE (r_lc_send_pdu_sp_cfm = 0x4001c518) + [!provide] PROVIDE (r_lc_send_pdu_sp_nb = 0x4001c4e8) + [!provide] PROVIDE (r_lc_send_pdu_sres = 0x4001c548) + [!provide] PROVIDE (r_lc_send_pdu_tim_acc = 0x4001c6cc) + [!provide] PROVIDE (r_lc_send_pdu_unit_key = 0x4001c398) + [!provide] PROVIDE (r_lc_send_pdu_unsniff_req = 0x4001c894) + [!provide] PROVIDE (r_lc_send_pdu_vers_req = 0x4001c8b4) + [!provide] PROVIDE (r_lc_skip_hl_oob_req = 0x400201bc) + [!provide] PROVIDE (r_lc_sniff_init = 0x40022cac) + [!provide] PROVIDE (r_lc_sniff_max_slot_chg = 0x40020590) + [!provide] PROVIDE (r_lc_sniff_reset = 0x40022cc8) + [!provide] PROVIDE (r_lc_sniff_slot_unchange = 0x40021100) + [!provide] PROVIDE (r_lc_sniff_sub_mode = 0x400204fc) + [!provide] PROVIDE (r_lc_sp_end = 0x400213a8) + [!provide] PROVIDE (r_lc_sp_fail = 0x40020470) + [!provide] PROVIDE (r_lc_sp_oob_tid_fail = 0x400204cc) + [!provide] PROVIDE (r_lc_ssr_nego = 0x4002125c) + [!provide] PROVIDE (r_lc_start = 0x4001ca28) + [!provide] PROVIDE (r_lc_start_enc = 0x4001fb28) + [!provide] PROVIDE (r_lc_start_enc_key_size = 0x4001fd9c) + [!provide] PROVIDE (r_lc_start_key_exch = 0x4001fe10) + [!provide] PROVIDE (r_lc_start_lmp_to = 0x4001fae8) + [!provide] PROVIDE (r_lc_start_oob = 0x4001fffc) + [!provide] PROVIDE (r_lc_start_passkey = 0x4001feac) + [!provide] PROVIDE (r_lc_start_passkey_loop = 0x4001ff88) + [!provide] PROVIDE (r_lc_stop_afh_report = 0x40020184) + [!provide] PROVIDE (r_lc_stop_enc = 0x40020110) + [!provide] PROVIDE (r_lc_switch_cmp = 0x40020448) + [!provide] PROVIDE (r_lc_unit_key_svr = 0x400206d8) + [!provide] PROVIDE (r_lc_unsniff = 0x40020c50) + [!provide] PROVIDE (r_lc_unsniff_cmp = 0x40020810) + [!provide] PROVIDE (r_lc_unsniff_cont = 0x40020750) + [!provide] PROVIDE (r_lc_upd_to = 0x4002065c) + [!provide] PROVIDE (r_lc_util_convert_pref_rate_to_packet_type = 0x4002f9b0) + [!provide] PROVIDE (r_lc_util_get_max_packet_size = 0x4002f4ac) + [!provide] PROVIDE (r_lc_util_get_offset_clke = 0x4002f538) + [!provide] PROVIDE (r_lc_util_get_offset_clkn = 0x4002f51c) + [!provide] PROVIDE (r_lc_util_set_loc_trans_coll = 0x4002f500) + [!provide] PROVIDE (r_lc_version = 0x40020a30) + [!provide] PROVIDE (lc_set_encap_pdu_data_p192 = 0x4002e4c8) + [!provide] PROVIDE (lc_set_encap_pdu_data_p256 = 0x4002e454) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lmp_clk_adj_req_handler = 0x4002751c) + [!provide] PROVIDE (lmp_feats_res_ext_handler = 0x4002cac4) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (lmp_pkt_type_tbl_req_handler = 0x40027574) + [!provide] PROVIDE (lmp_esco_link_req_handler = 0x40027610) + [!provide] PROVIDE (lmp_rmv_esco_link_req_handler = 0x400276e8) + [!provide] PROVIDE (lmp_ch_class_req_handler = 0x40027730) + [!provide] PROVIDE (lmp_ch_class_handler = 0x4002ca18) + [!provide] PROVIDE (lmp_ssr_req_handler = 0x4002780c) + [!provide] PROVIDE (lmp_ssr_res_handler = 0x40027900) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_pause_enc_req_handler = 0x4002df90) + [!provide] PROVIDE (lmp_resume_enc_req_handler = 0x4002e084) + [!provide] PROVIDE (lmp_num_comparison_fail_handler = 0x40027a74) + [!provide] PROVIDE (lmp_passkey_fail_handler = 0x40027aec) + [!provide] PROVIDE (lmp_keypress_notif_handler = 0x4002c5c8) + [!provide] PROVIDE (lmp_pwr_ctrl_req_handler = 0x400263bc) + [!provide] PROVIDE (lmp_pwr_ctrl_res_handler = 0x40026480) + [!provide] PROVIDE (lmp_auto_rate_handler = 0x40026548) + [!provide] PROVIDE (lmp_pref_rate_handler = 0x4002657c) + [!provide] PROVIDE (lmp_name_req_handler = 0x40025050) + [!provide] PROVIDE (lmp_name_res_handler = 0x400250bc) + [!provide] PROVIDE (lmp_not_accepted_handler = 0x400251d0) + [!provide] PROVIDE (lmp_accepted_handler = 0x4002e894) + [!provide] PROVIDE (lmp_clk_off_req_handler = 0x40025a44) + [!provide] PROVIDE (lmp_clk_off_res_handler = 0x40025ab8) + [!provide] PROVIDE (lmp_detach_handler = 0x40025b74) + [!provide] PROVIDE (lmp_tempkey_handler = 0x4002b6b0) + [!provide] PROVIDE (lmp_temprand_handler = 0x4002b74c) + [!provide] PROVIDE (lmp_sres_handler = 0x4002b840) + [!provide] PROVIDE (lmp_aurand_handler = 0x4002bda0) + [!provide] PROVIDE (lmp_unitkey_handler = 0x4002c13c) + [!provide] PROVIDE (lmp_combkey_handler = 0x4002c234) + [!provide] PROVIDE (lmp_inrand_handler = 0x4002c414) + [!provide] PROVIDE (lmp_oob_fail_handler = 0x40027b84) + [!provide] PROVIDE (lmp_ping_req_handler = 0x40027c08) + [!provide] PROVIDE (lmp_ping_res_handler = 0x40027c5c) + [!provide] PROVIDE (lmp_enc_mode_req_handler = 0x40025c60) + [!provide] PROVIDE (lmp_enc_key_size_req_handler = 0x40025e54) + [!provide] PROVIDE (lmp_switch_req_handler = 0x40025f84) + [!provide] PROVIDE (lmp_start_enc_req_handler = 0x4002e124) + [!provide] PROVIDE (lmp_stop_enc_req_handler = 0x4002de30) + [!provide] PROVIDE (lmp_sniff_req_handler = 0x400260c8) + [!provide] PROVIDE (lmp_unsniff_req_handler = 0x400261e0) + [!provide] PROVIDE (lmp_incr_pwr_req_handler = 0x4002629c) + [!provide] PROVIDE (lmp_decr_pwr_req_handler = 0x400262f8) + [!provide] PROVIDE (lmp_max_pwr_handler = 0x40026354) + [!provide] PROVIDE (lmp_min_pwr_handler = 0x40026388) + [!provide] PROVIDE (lmp_ver_req_handler = 0x400265f0) + [!provide] PROVIDE (lmp_ver_res_handler = 0x40026670) + [!provide] PROVIDE (lmp_qos_handler = 0x40026790) + [!provide] PROVIDE (lmp_qos_req_handler = 0x40026844) + [!provide] PROVIDE (lmp_sco_link_req_handler = 0x40026930) + [!provide] PROVIDE (lmp_rmv_sco_link_req_handler = 0x40026a10) + [!provide] PROVIDE (lmp_max_slot_handler = 0x40026a54) + [!provide] PROVIDE (lmp_max_slot_req_handler = 0x40026aac) + [!provide] PROVIDE (lmp_timing_accu_req_handler = 0x40026b54) + [!provide] PROVIDE (lmp_timing_accu_res_handler = 0x40026bcc) + [!provide] PROVIDE (lmp_setup_cmp_handler = 0x40026c84) + [!provide] PROVIDE (lmp_feats_res_handler = 0x4002b548) + [!provide] PROVIDE (lmp_feats_req_handler = 0x4002b620) + [!provide] PROVIDE (lmp_host_con_req_handler = 0x4002b3d8) + [!provide] PROVIDE (lmp_use_semi_perm_key_handler = 0x4002b4c4) + [!provide] PROVIDE (lmp_slot_off_handler = 0x40026cc8) + [!provide] PROVIDE (lmp_page_mode_req_handler = 0x40026d0c) + [!provide] PROVIDE (lmp_page_scan_mode_req_handler = 0x40026d4c) + [!provide] PROVIDE (lmp_supv_to_handler = 0x40026d94) + [!provide] PROVIDE (lmp_test_activate_handler = 0x40026e7c) + [!provide] PROVIDE (lmp_test_ctrl_handler = 0x40026ee4) + [!provide] PROVIDE (lmp_enc_key_size_mask_req_handler = 0x40027038) + [!provide] PROVIDE (lmp_enc_key_size_mask_res_handler = 0x400270a4) + [!provide] PROVIDE (lmp_set_afh_handler = 0x4002b2e4) + [!provide] PROVIDE (lmp_encaps_hdr_handler = 0x40027120) + [!provide] PROVIDE (lmp_encaps_payl_handler = 0x4002e590) + [!provide] PROVIDE (lmp_sp_nb_handler = 0x4002acf0) + [!provide] PROVIDE (lmp_sp_cfm_handler = 0x4002b170) + [!provide] PROVIDE (lmp_dhkey_chk_handler = 0x4002ab48) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_io_cap_res_handler = 0x4002c670) + [!provide] PROVIDE (lmp_io_cap_req_handler = 0x4002c7a4) + [!provide] PROVIDE (lc_cmd_cmp_bd_addr_send = 0x4002cec4) + [!provide] PROVIDE (ld_acl_tx_packet_type_select = 0x4002fb40) + [!provide] PROVIDE (ld_acl_sched = 0x40033268) + [!provide] PROVIDE (ld_acl_sniff_sched = 0x4003340c) + [!provide] PROVIDE (ld_acl_sniff_exit = 0x400312b4) + [!provide] PROVIDE (ld_acl_rx = 0x4003274c) + [!provide] PROVIDE (ld_acl_tx = 0x4002ffdc) + [!provide] PROVIDE (ld_acl_rx_sync = 0x4002fbec) + [!provide] PROVIDE (ld_acl_rx_sync2 = 0x4002fd8c) + [!provide] PROVIDE (ld_acl_rx_no_sync = 0x4002fe78) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_rsw_frm_cbk = 0x40033bb0) + [!provide] PROVIDE (ld_sco_modify = 0x40031778) + [!provide] PROVIDE (lm_cmd_cmp_send = 0x40051838) + [!provide] PROVIDE (ld_sco_frm_cbk = 0x400349dc) + [!provide] PROVIDE (ld_acl_sco_rsvd_check = 0x4002fa94) + [!provide] PROVIDE (ld_acl_sniff_frm_cbk = 0x4003482c) + [!provide] PROVIDE (ld_inq_end = 0x4003ab48) + [!provide] PROVIDE (ld_inq_sched = 0x4003aba4) + [!provide] PROVIDE (ld_inq_frm_cbk = 0x4003ae4c) + [!provide] PROVIDE (ld_pscan_frm_cbk = 0x4003ebe4) + [!provide] PROVIDE (r_ld_acl_active_hop_types_get = 0x40036e10) + [!provide] PROVIDE (r_ld_acl_afh_confirm = 0x40036d40) + [!provide] PROVIDE (r_ld_acl_afh_prepare = 0x40036c84) + [!provide] PROVIDE (r_ld_acl_afh_set = 0x40036b60) + [!provide] PROVIDE (r_ld_acl_allowed_tx_packet_types_set = 0x40036810) + [!provide] PROVIDE (r_ld_acl_bcst_rx_dec = 0x40036394) + [!provide] PROVIDE (r_ld_acl_bit_off_get = 0x40036b18) + [!provide] PROVIDE (r_ld_acl_clk_adj_set = 0x40036a00) + [!provide] PROVIDE (r_ld_acl_clk_off_get = 0x40036b00) + [!provide] PROVIDE (r_ld_acl_clk_set = 0x40036950) + [!provide] PROVIDE (r_ld_acl_clock_offset_get = 0x400364c0) + [!provide] PROVIDE (r_ld_acl_current_tx_power_get = 0x400368f0) + [!provide] PROVIDE (r_ld_acl_data_flush = 0x400357bc) + [!provide] PROVIDE (r_ld_acl_data_tx = 0x4003544c) + [!provide] PROVIDE (r_ld_acl_edr_set = 0x4003678c) + [!provide] PROVIDE (r_ld_acl_enc_key_load = 0x40036404) + [!provide] PROVIDE (r_ld_acl_flow_off = 0x40035400) + [!provide] PROVIDE (r_ld_acl_flow_on = 0x4003541c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_get = 0x40035f9c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_set = 0x40035fe0) + [!provide] PROVIDE (r_ld_acl_init = 0x40034d08) + [!provide] PROVIDE (r_ld_acl_lmp_flush = 0x40035d80) + [!provide] PROVIDE (r_ld_acl_lmp_tx = 0x40035b34) + [!provide] PROVIDE (r_ld_acl_lsto_get = 0x400366b4) + [!provide] PROVIDE (r_ld_acl_lsto_set = 0x400366f8) + [!provide] PROVIDE (r_ld_acl_reset = 0x40034d24) + [!provide] PROVIDE (r_ld_acl_role_get = 0x40036b30) + [!provide] PROVIDE (r_ld_acl_rssi_delta_get = 0x40037028) + [!provide] PROVIDE (r_ld_acl_rsw_req = 0x40035e74) + [!provide] PROVIDE (r_ld_acl_rx_enc = 0x40036344) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_get = 0x40036e58) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_set = 0x40036ea0) + [!provide] PROVIDE (r_ld_acl_slot_offset_get = 0x4003653c) + [!provide] PROVIDE (r_ld_acl_slot_offset_set = 0x40036658) + [!provide] PROVIDE (r_ld_acl_sniff = 0x4003617c) + [!provide] PROVIDE (r_ld_acl_sniff_trans = 0x400360a8) + [!provide] PROVIDE (r_ld_acl_ssr_set = 0x40036274) + [!provide] PROVIDE (r_ld_acl_start = 0x40034ddc) + [!provide] PROVIDE (r_ld_acl_stop = 0x4003532c) + [!provide] PROVIDE (r_ld_acl_test_mode_set = 0x40036f24) + [!provide] PROVIDE (r_ld_acl_timing_accuracy_set = 0x4003673c) + [!provide] PROVIDE (r_ld_acl_t_poll_get = 0x40036024) + [!provide] PROVIDE (r_ld_acl_t_poll_set = 0x40036068) + [!provide] PROVIDE (r_ld_acl_tx_enc = 0x400362f8) + [!provide] PROVIDE (ld_acl_frm_cbk = 0x40034414) + [!provide] PROVIDE (ld_acl_rsw_end = 0x40032bc0) + [!provide] PROVIDE (ld_acl_end = 0x40033140) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (r_ld_acl_unsniff = 0x400361e0) + [!provide] PROVIDE (r_ld_active_check = 0x4003cac4) + [!provide] PROVIDE (r_ld_afh_ch_assess_data_get = 0x4003caec) + [!provide] PROVIDE (r_ld_bcst_acl_data_tx = 0x40038d3c) + [!provide] PROVIDE (r_ld_bcst_acl_init = 0x40038bd0) + [!provide] PROVIDE (r_ld_bcst_acl_reset = 0x40038bdc) + [!provide] PROVIDE (r_ld_bcst_acl_start = 0x4003882c) + [!provide] PROVIDE (r_ld_bcst_afh_update = 0x40038f3c) + [!provide] PROVIDE (r_ld_bcst_enc_key_load = 0x4003906c) + [!provide] PROVIDE (r_ld_bcst_lmp_tx = 0x40038bf8) + [!provide] PROVIDE (r_ld_bcst_tx_enc = 0x40038ff8) + [!provide] PROVIDE (r_ld_bd_addr_get = 0x4003ca20) + [!provide] PROVIDE (r_ld_channel_assess = 0x4003c184) + [!provide] PROVIDE (r_ld_class_of_dev_get = 0x4003ca34) + [!provide] PROVIDE (r_ld_class_of_dev_set = 0x4003ca50) + [!provide] PROVIDE (r_ld_csb_rx_afh_update = 0x40039af4) + [!provide] PROVIDE (r_ld_csb_rx_init = 0x40039690) + [!provide] PROVIDE (r_ld_csb_rx_reset = 0x4003969c) + [!provide] PROVIDE (r_ld_csb_rx_start = 0x4003972c) + [!provide] PROVIDE (r_ld_csb_rx_stop = 0x40039bb8) + [!provide] PROVIDE (r_ld_csb_tx_afh_update = 0x4003a5fc) + [!provide] PROVIDE (r_ld_csb_tx_clr_data = 0x4003a71c) + [!provide] PROVIDE (r_ld_csb_tx_dis = 0x4003a5e8) + [!provide] PROVIDE (r_ld_csb_tx_en = 0x4003a1c0) + [!provide] PROVIDE (r_ld_csb_tx_init = 0x4003a0e8) + [!provide] PROVIDE (r_ld_csb_tx_reset = 0x4003a0f8) + [!provide] PROVIDE (r_ld_csb_tx_set_data = 0x4003a6c0) + [!provide] PROVIDE (r_ld_fm_clk_isr = 0x4003a7a8) + [!provide] PROVIDE (r_ld_fm_frame_isr = 0x4003a82c) + [!provide] PROVIDE (r_ld_fm_init = 0x4003a760) + [!provide] PROVIDE (r_ld_fm_prog_check = 0x4003ab28) + [!provide] PROVIDE (r_ld_fm_prog_disable = 0x4003a984) + [!provide] PROVIDE (r_ld_fm_prog_enable = 0x4003a944) + [!provide] PROVIDE (r_ld_fm_prog_push = 0x4003a9d4) + [!provide] PROVIDE (r_ld_fm_reset = 0x4003a794) + [!provide] PROVIDE (r_ld_fm_rx_isr = 0x4003a7f4) + [!provide] PROVIDE (r_ld_fm_sket_isr = 0x4003a8a4) + [!provide] PROVIDE (r_ld_init = 0x4003c294) + [!provide] PROVIDE (r_ld_inq_init = 0x4003b15c) + [!provide] PROVIDE (r_ld_inq_reset = 0x4003b168) + [!provide] PROVIDE (r_ld_inq_start = 0x4003b1f0) + [!provide] PROVIDE (r_ld_inq_stop = 0x4003b4f0) + [!provide] PROVIDE (r_ld_iscan_eir_get = 0x4003c118) + [!provide] PROVIDE (r_ld_iscan_eir_set = 0x4003bfa0) + [!provide] PROVIDE (r_ld_iscan_init = 0x4003b9f0) + [!provide] PROVIDE (r_ld_iscan_reset = 0x4003ba14) + [!provide] PROVIDE (r_ld_iscan_restart = 0x4003ba44) + [!provide] PROVIDE (r_ld_iscan_start = 0x4003bb28) + [!provide] PROVIDE (r_ld_iscan_stop = 0x4003bf1c) + [!provide] PROVIDE (r_ld_iscan_tx_pwr_get = 0x4003c138) + [!provide] PROVIDE (r_ld_page_init = 0x4003d808) + [!provide] PROVIDE (r_ld_page_reset = 0x4003d814) + [!provide] PROVIDE (r_ld_page_start = 0x4003d848) + [!provide] PROVIDE (r_ld_page_stop = 0x4003da54) + [!provide] PROVIDE (r_ld_pca_coarse_clock_adjust = 0x4003e324) + [!provide] PROVIDE (r_ld_pca_init = 0x4003deb4) + [!provide] PROVIDE (r_ld_pca_initiate_clock_dragging = 0x4003e4ac) + [!provide] PROVIDE (r_ld_pca_local_config = 0x4003df6c) + [!provide] PROVIDE (r_ld_pca_mws_frame_sync = 0x4003e104) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_gt = 0x4003e278) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_lt = 0x4003e280) + [!provide] PROVIDE (r_ld_pca_reporting_enable = 0x4003e018) + [!provide] PROVIDE (r_ld_pca_reset = 0x4003df0c) + [!provide] PROVIDE (r_ld_pca_update_target_offset = 0x4003e050) + [!provide] PROVIDE (r_ld_pscan_evt_handler = 0x4003f238) + [!provide] PROVIDE (r_ld_pscan_init = 0x4003f474) + [!provide] PROVIDE (r_ld_pscan_reset = 0x4003f498) + [!provide] PROVIDE (r_ld_pscan_restart = 0x4003f4b8) + [!provide] PROVIDE (r_ld_pscan_start = 0x4003f514) + [!provide] PROVIDE (r_ld_pscan_stop = 0x4003f618) + [!provide] PROVIDE (r_ld_read_clock = 0x4003c9e4) + [!provide] PROVIDE (r_ld_reset = 0x4003c714) + [!provide] PROVIDE (r_ld_sched_acl_add = 0x4003f978) + [!provide] PROVIDE (r_ld_sched_acl_remove = 0x4003f99c) + [!provide] PROVIDE (r_ld_sched_compute = 0x4003f6f8) + [!provide] PROVIDE (r_ld_sched_init = 0x4003f7ac) + [!provide] PROVIDE (r_ld_sched_inq_add = 0x4003f8a8) + [!provide] PROVIDE (r_ld_sched_inq_remove = 0x4003f8d0) + [!provide] PROVIDE (r_ld_sched_iscan_add = 0x4003f7e8) + [!provide] PROVIDE (r_ld_sched_iscan_remove = 0x4003f808) + [!provide] PROVIDE (r_ld_sched_page_add = 0x4003f910) + [!provide] PROVIDE (r_ld_sched_page_remove = 0x4003f938) + [!provide] PROVIDE (r_ld_sched_pscan_add = 0x4003f828) + [!provide] PROVIDE (r_ld_sched_pscan_remove = 0x4003f848) + [!provide] PROVIDE (r_ld_sched_reset = 0x4003f7d4) + [!provide] PROVIDE (r_ld_sched_sco_add = 0x4003fa4c) + [!provide] PROVIDE (r_ld_sched_sco_remove = 0x4003fa9c) + [!provide] PROVIDE (r_ld_sched_sniff_add = 0x4003f9c4) + [!provide] PROVIDE (r_ld_sched_sniff_remove = 0x4003fa0c) + [!provide] PROVIDE (r_ld_sched_sscan_add = 0x4003f868) + [!provide] PROVIDE (r_ld_sched_sscan_remove = 0x4003f888) + [!provide] PROVIDE (r_ld_sco_audio_isr = 0x40037cc8) + [!provide] PROVIDE (r_ld_sco_data_tx = 0x40037ee8) + [!provide] PROVIDE (r_ld_sco_start = 0x40037110) + [!provide] PROVIDE (r_ld_sco_stop = 0x40037c40) + [!provide] PROVIDE (r_ld_sco_update = 0x40037a74) + [!provide] PROVIDE (r_ld_sscan_activated = 0x4004031c) + [!provide] PROVIDE (r_ld_sscan_init = 0x400402f0) + [!provide] PROVIDE (r_ld_sscan_reset = 0x400402fc) + [!provide] PROVIDE (r_ld_sscan_start = 0x40040384) + [!provide] PROVIDE (r_ld_strain_init = 0x400409f4) + [!provide] PROVIDE (r_ld_strain_reset = 0x40040a00) + [!provide] PROVIDE (r_ld_strain_start = 0x40040a8c) + [!provide] PROVIDE (r_ld_strain_stop = 0x40040df0) + [!provide] PROVIDE (r_ld_timing_accuracy_get = 0x4003caac) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_get = 0x4004131c) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_set = 0x40041308) + [!provide] PROVIDE (r_ld_util_bch_create = 0x40040fcc) + [!provide] PROVIDE (r_ld_util_fhs_pk = 0x400411c8) + [!provide] PROVIDE (r_ld_util_fhs_unpk = 0x40040e54) + [!provide] PROVIDE (r_ld_util_stp_pk = 0x400413f4) + [!provide] PROVIDE (r_ld_util_stp_unpk = 0x40041324) + [!provide] PROVIDE (r_ld_version_get = 0x4003ca6c) + [!provide] PROVIDE (r_ld_wlcoex_set = 0x4003caf8) + [!provide] PROVIDE (r_llc_ch_assess_get_current_ch_map = 0x40041574) + [!provide] PROVIDE (r_llc_ch_assess_get_local_ch_map = 0x4004150c) + [!provide] PROVIDE (r_llc_ch_assess_local = 0x40041494) + [!provide] PROVIDE (r_llc_ch_assess_merge_ch = 0x40041588) + [!provide] PROVIDE (r_llc_ch_assess_reass_ch = 0x400415c0) + [!provide] PROVIDE (r_llc_common_cmd_complete_send = 0x40044eac) + [!provide] PROVIDE (r_llc_common_cmd_status_send = 0x40044ee0) + [!provide] PROVIDE (r_llc_common_enc_change_evt_send = 0x40044f6c) + [!provide] PROVIDE (r_llc_common_enc_key_ref_comp_evt_send = 0x40044f38) + [!provide] PROVIDE (r_llc_common_flush_occurred_send = 0x40044f0c) + [!provide] PROVIDE (r_llc_common_nb_of_pkt_comp_evt_send = 0x40045000) + [!provide] PROVIDE (r_llc_con_update_complete_send = 0x40044d68) + [!provide] PROVIDE (r_llc_con_update_finished = 0x4004518c) + [!provide] PROVIDE (r_llc_con_update_ind = 0x40045038) + [!provide] PROVIDE (r_llc_discon_event_complete_send = 0x40044a30) + [!provide] PROVIDE (r_llc_end_evt_defer = 0x40046330) + [!provide] PROVIDE (r_llc_feats_rd_event_send = 0x40044e0c) + [!provide] PROVIDE (r_llc_init = 0x40044778) + [!provide] PROVIDE (r_llc_le_con_cmp_evt_send = 0x40044a78) + [!provide] PROVIDE (r_llc_llcp_ch_map_update_pdu_send = 0x40043f94) + [!provide] PROVIDE (r_llc_llcp_con_param_req_pdu_send = 0x400442fc) + [!provide] PROVIDE (r_llc_llcp_con_param_rsp_pdu_send = 0x40044358) + [!provide] PROVIDE (r_llc_llcp_con_update_pdu_send = 0x400442c4) + [!provide] PROVIDE (r_llc_llcp_enc_req_pdu_send = 0x40044064) + [!provide] PROVIDE (r_llc_llcp_enc_rsp_pdu_send = 0x40044160) + [!provide] PROVIDE (r_llc_llcp_feats_req_pdu_send = 0x400443b4) + [!provide] PROVIDE (r_llc_llcp_feats_rsp_pdu_send = 0x400443f0) + [!provide] PROVIDE (r_llc_llcp_get_autorize = 0x4004475c) + [!provide] PROVIDE (r_llc_llcp_length_req_pdu_send = 0x40044574) + [!provide] PROVIDE (r_llc_llcp_length_rsp_pdu_send = 0x400445ac) + [!provide] PROVIDE (r_llc_llcp_pause_enc_req_pdu_send = 0x40043fd8) + [!provide] PROVIDE (r_llc_llcp_pause_enc_rsp_pdu_send = 0x40044010) + [!provide] PROVIDE (r_llc_llcp_ping_req_pdu_send = 0x4004454c) + [!provide] PROVIDE (r_llc_llcp_ping_rsp_pdu_send = 0x40044560) + [!provide] PROVIDE (r_llc_llcp_recv_handler = 0x40044678) + [!provide] PROVIDE (r_llc_llcp_reject_ind_pdu_send = 0x4004425c) + [!provide] PROVIDE (r_llc_llcp_start_enc_req_pdu_send = 0x4004441c) + [!provide] PROVIDE (r_llc_llcp_start_enc_rsp_pdu_send = 0x400441f8) + [!provide] PROVIDE (r_llc_llcp_terminate_ind_pdu_send = 0x400444b0) + [!provide] PROVIDE (r_llc_llcp_tester_send = 0x400445e4) + [!provide] PROVIDE (r_llc_llcp_unknown_rsp_send_pdu = 0x40044534) + [!provide] PROVIDE (r_llc_llcp_version_ind_pdu_send = 0x40043f6c) + [!provide] PROVIDE (r_llc_lsto_con_update = 0x40045098) + [!provide] PROVIDE (r_llc_ltk_req_send = 0x40044dc0) + [!provide] PROVIDE (r_llc_map_update_finished = 0x40045260) + [!provide] PROVIDE (r_llc_map_update_ind = 0x400450f0) + [!provide] PROVIDE (r_llc_pdu_acl_tx_ack_defer = 0x400464dc) + [!provide] PROVIDE (r_llc_pdu_defer = 0x40046528) + [!provide] PROVIDE (r_llc_pdu_llcp_tx_ack_defer = 0x400463ac) + [!provide] PROVIDE (r_llc_reset = 0x400447b8) + [!provide] PROVIDE (r_llc_start = 0x400447f4) + [!provide] PROVIDE (r_llc_stop = 0x400449ac) + [!provide] PROVIDE (r_llc_util_bw_mgt = 0x4004629c) + [!provide] PROVIDE (r_llc_util_clear_operation_ptr = 0x40046234) + [!provide] PROVIDE (r_llc_util_dicon_procedure = 0x40046130) + [!provide] PROVIDE (r_llc_util_get_free_conhdl = 0x400460c8) + [!provide] PROVIDE (r_llc_util_get_nb_active_link = 0x40046100) + [!provide] PROVIDE (r_llc_util_set_auth_payl_to_margin = 0x400461f4) + [!provide] PROVIDE (r_llc_util_set_llcp_discard_enable = 0x400461c8) + [!provide] PROVIDE (r_llc_util_update_channel_map = 0x400461ac) + [!provide] PROVIDE (r_llc_version_rd_event_send = 0x40044e60) + [!provide] PROVIDE (r_lld_adv_start = 0x40048b38) + [!provide] PROVIDE (r_lld_adv_stop = 0x40048ea0) + [!provide] PROVIDE (r_lld_ch_map_ind = 0x4004a2f4) + [!provide] PROVIDE (r_lld_con_param_req = 0x40049f0c) + [!provide] PROVIDE (r_lld_con_param_rsp = 0x40049e00) + [!provide] PROVIDE (r_lld_con_start = 0x400491f8) + [!provide] PROVIDE (r_lld_con_stop = 0x40049fdc) + [!provide] PROVIDE (r_lld_con_update_after_param_req = 0x40049bcc) + [!provide] PROVIDE (r_lld_con_update_ind = 0x4004a30c) + [!provide] PROVIDE (r_lld_con_update_req = 0x40049b60) + [!provide] PROVIDE (r_lld_core_reset = 0x40048a9c) + [!provide] PROVIDE (r_lld_crypt_isr = 0x4004a324) + [!provide] PROVIDE (r_lld_evt_adv_create = 0x400481f4) + [!provide] PROVIDE (r_lld_evt_canceled = 0x400485c8) + [!provide] PROVIDE (r_lld_evt_channel_next = 0x40046aac) + [!provide] PROVIDE (r_lld_evt_deffered_elt_handler = 0x400482bc) + [!provide] PROVIDE (r_lld_evt_delete_elt_handler = 0x40046974) + [!provide] PROVIDE (r_lld_evt_delete_elt_push = 0x40046a3c) + [!provide] PROVIDE (r_lld_evt_drift_compute = 0x40047670) + [!provide] PROVIDE (r_lld_evt_elt_delete = 0x40047538) + [!provide] PROVIDE (r_lld_evt_elt_insert = 0x400474c8) + [!provide] PROVIDE (r_lld_evt_end = 0x400483e8) + [!provide] PROVIDE (r_lld_evt_end_isr = 0x4004862c) + [!provide] PROVIDE (r_lld_evt_init = 0x40046b3c) + [!provide] PROVIDE (r_lld_evt_init_evt = 0x40046cd0) + [!provide] PROVIDE (r_lld_evt_move_to_master = 0x40047ba0) + [!provide] PROVIDE (r_lld_evt_move_to_slave = 0x40047e18) + [!provide] PROVIDE (r_lld_evt_prevent_stop = 0x40047adc) + [!provide] PROVIDE (r_lld_evt_restart = 0x40046d50) + [!provide] PROVIDE (r_lld_evt_rx = 0x40048578) + [!provide] PROVIDE (r_lld_evt_rx_isr = 0x40048678) + [!provide] PROVIDE (r_lld_evt_scan_create = 0x40047ae8) + [!provide] PROVIDE (r_lld_evt_schedule = 0x40047908) + [!provide] PROVIDE (r_lld_evt_schedule_next = 0x400477dc) + [!provide] PROVIDE (r_lld_evt_schedule_next_instant = 0x400476a8) + [!provide] PROVIDE (r_lld_evt_slave_update = 0x40048138) + [!provide] PROVIDE (r_lld_evt_update_create = 0x40047cd8) + [!provide] PROVIDE (r_lld_get_mode = 0x40049ff8) + [!provide] PROVIDE (r_lld_init = 0x4004873c) + [!provide] PROVIDE (r_lld_move_to_master = 0x400499e0) + [!provide] PROVIDE (r_lld_move_to_slave = 0x4004a024) + [!provide] PROVIDE (r_lld_pdu_adv_pack = 0x4004b488) + [!provide] PROVIDE (r_lld_pdu_check = 0x4004ac34) + [!provide] PROVIDE (r_lld_pdu_data_send = 0x4004b018) + [!provide] PROVIDE (r_lld_pdu_data_tx_push = 0x4004aecc) + [!provide] PROVIDE (r_lld_pdu_rx_handler = 0x4004b4d4) + [!provide] PROVIDE (r_lld_pdu_send_packet = 0x4004b774) + [!provide] PROVIDE (r_lld_pdu_tx_flush = 0x4004b414) + [!provide] PROVIDE (r_lld_pdu_tx_loop = 0x4004ae40) + [!provide] PROVIDE (r_lld_pdu_tx_prog = 0x4004b120) + [!provide] PROVIDE (r_lld_pdu_tx_push = 0x4004b080) + [!provide] PROVIDE (r_lld_ral_renew_req = 0x4004a73c) + [!provide] PROVIDE (r_lld_scan_start = 0x40048ee0) + [!provide] PROVIDE (r_lld_scan_stop = 0x40049190) + [!provide] PROVIDE (r_lld_test_mode_rx = 0x4004a540) + [!provide] PROVIDE (r_lld_test_mode_tx = 0x4004a350) + [!provide] PROVIDE (r_lld_test_stop = 0x4004a710) + [!provide] PROVIDE (r_lld_util_anchor_point_move = 0x4004bacc) + [!provide] PROVIDE (r_lld_util_compute_ce_max = 0x4004bc0c) + [!provide] PROVIDE (r_lld_util_connection_param_set = 0x4004ba40) + [!provide] PROVIDE (r_lld_util_dle_set_cs_fields = 0x4004ba90) + [!provide] PROVIDE (r_lld_util_eff_tx_time_set = 0x4004bd88) + [!provide] PROVIDE (r_lld_util_elt_programmed = 0x4004bce0) + [!provide] PROVIDE (r_lld_util_flush_list = 0x4004bbd8) + [!provide] PROVIDE (r_lld_util_freq2chnl = 0x4004b9e4) + [!provide] PROVIDE (r_lld_util_get_bd_address = 0x4004b8ac) + [!provide] PROVIDE (r_lld_util_get_local_offset = 0x4004ba10) + [!provide] PROVIDE (r_lld_util_get_peer_offset = 0x4004ba24) + [!provide] PROVIDE (r_lld_util_get_tx_pkt_cnt = 0x4004bd80) + [!provide] PROVIDE (r_lld_util_instant_get = 0x4004b890) + [!provide] PROVIDE (r_lld_util_instant_ongoing = 0x4004bbfc) + [!provide] PROVIDE (r_lld_util_priority_set = 0x4004bd10) + [!provide] PROVIDE (r_lld_util_priority_update = 0x4004bd78) + [!provide] PROVIDE (r_lld_util_ral_force_rpa_renew = 0x4004b980) + [!provide] PROVIDE (r_lld_util_set_bd_address = 0x4004b8f8) + [!provide] PROVIDE (r_lld_wlcoex_set = 0x4004bd98) + [!provide] PROVIDE (r_llm_ble_ready = 0x4004cc34) + [!provide] PROVIDE (r_llm_common_cmd_complete_send = 0x4004d288) + [!provide] PROVIDE (r_llm_common_cmd_status_send = 0x4004d2b4) + [!provide] PROVIDE (r_llm_con_req_ind = 0x4004cc54) + [!provide] PROVIDE (r_llm_con_req_tx_cfm = 0x4004d158) + [!provide] PROVIDE (r_llm_create_con = 0x4004de78) + [!provide] PROVIDE (r_llm_encryption_done = 0x4004dff8) + [!provide] PROVIDE (r_llm_encryption_start = 0x4004e128) + [!provide] PROVIDE (r_llm_end_evt_defer = 0x4004eb6c) + [!provide] PROVIDE (r_llm_init = 0x4004c9f8) + [!provide] PROVIDE (r_llm_le_adv_report_ind = 0x4004cdf4) + [!provide] PROVIDE (r_llm_pdu_defer = 0x4004ec48) + [!provide] PROVIDE (r_llm_ral_clear = 0x4004e1fc) + [!provide] PROVIDE (r_llm_ral_dev_add = 0x4004e23c) + [!provide] PROVIDE (r_llm_ral_dev_rm = 0x4004e3bc) + [!provide] PROVIDE (r_llm_ral_get_rpa = 0x4004e400) + [!provide] PROVIDE (r_llm_ral_set_timeout = 0x4004e4a0) + [!provide] PROVIDE (r_llm_ral_update = 0x4004e4f8) + [!provide] PROVIDE (r_llm_set_adv_data = 0x4004d960) + [!provide] PROVIDE (r_llm_set_adv_en = 0x4004d7ec) + [!provide] PROVIDE (r_llm_set_adv_param = 0x4004d5f4) + [!provide] PROVIDE (r_llm_set_scan_en = 0x4004db64) + [!provide] PROVIDE (r_llm_set_scan_param = 0x4004dac8) + [!provide] PROVIDE (r_llm_set_scan_rsp_data = 0x4004da14) + [!provide] PROVIDE (r_llm_test_mode_start_rx = 0x4004d534) + [!provide] PROVIDE (r_llm_test_mode_start_tx = 0x4004d2fc) + [!provide] PROVIDE (r_llm_util_adv_data_update = 0x4004e8fc) + [!provide] PROVIDE (r_llm_util_apply_bd_addr = 0x4004e868) + [!provide] PROVIDE (r_llm_util_bd_addr_in_ral = 0x4004eb08) + [!provide] PROVIDE (r_llm_util_bd_addr_in_wl = 0x4004e788) + [!provide] PROVIDE (r_llm_util_bd_addr_wl_position = 0x4004e720) + [!provide] PROVIDE (r_llm_util_bl_add = 0x4004e9ac) + [!provide] PROVIDE (r_llm_util_bl_check = 0x4004e930) + [!provide] PROVIDE (r_llm_util_bl_rem = 0x4004ea70) + [!provide] PROVIDE (r_llm_util_check_address_validity = 0x4004e7e4) + [!provide] PROVIDE (r_llm_util_check_evt_mask = 0x4004e8b0) + [!provide] PROVIDE (r_llm_util_check_map_validity = 0x4004e800) + [!provide] PROVIDE (r_llm_util_get_channel_map = 0x4004e8d4) + [!provide] PROVIDE (r_llm_util_get_supp_features = 0x4004e8e8) + [!provide] PROVIDE (r_llm_util_set_public_addr = 0x4004e89c) + [!provide] PROVIDE (r_llm_wl_clr = 0x4004dc54) + [!provide] PROVIDE (r_llm_wl_dev_add = 0x4004dcc0) + [!provide] PROVIDE (r_llm_wl_dev_add_hdl = 0x4004dd38) + [!provide] PROVIDE (r_llm_wl_dev_rem = 0x4004dcfc) + [!provide] PROVIDE (r_llm_wl_dev_rem_hdl = 0x4004dde0) + [!provide] PROVIDE (r_lm_acl_disc = 0x4004f148) + [!provide] PROVIDE (r_LM_AddSniff = 0x40022d20) + [!provide] PROVIDE (r_lm_add_sync = 0x40051358) + [!provide] PROVIDE (r_lm_afh_activate_timer = 0x4004f444) + [!provide] PROVIDE (r_lm_afh_ch_ass_en_get = 0x4004f3f8) + [!provide] PROVIDE (r_lm_afh_host_ch_class_get = 0x4004f410) + [!provide] PROVIDE (r_lm_afh_master_ch_map_get = 0x4004f43c) + [!provide] PROVIDE (r_lm_afh_peer_ch_class_set = 0x4004f418) + [!provide] PROVIDE (r_lm_check_active_sync = 0x40051334) + [!provide] PROVIDE (r_LM_CheckEdrFeatureRequest = 0x4002f90c) + [!provide] PROVIDE (r_LM_CheckSwitchInstant = 0x4002f8c0) + [!provide] PROVIDE (r_lm_check_sync_hl_rsp = 0x4005169c) + [!provide] PROVIDE (r_lm_clk_adj_ack_pending_clear = 0x4004f514) + [!provide] PROVIDE (r_lm_clk_adj_instant_pending_set = 0x4004f4d8) + [!provide] PROVIDE (r_LM_ComputePacketType = 0x4002f554) + [!provide] PROVIDE (r_LM_ComputeSniffSubRate = 0x400233ac) + [!provide] PROVIDE (r_lm_debug_key_compare_192 = 0x4004f3a8) + [!provide] PROVIDE (r_lm_debug_key_compare_256 = 0x4004f3d0) + [!provide] PROVIDE (r_lm_dhkey_calc_init = 0x40013234) + [!provide] PROVIDE (r_lm_dhkey_compare = 0x400132d8) + [!provide] PROVIDE (r_lm_dut_mode_en_get = 0x4004f3ec) + [!provide] PROVIDE (r_LM_ExtractMaxEncKeySize = 0x4001aca4) + [!provide] PROVIDE (r_lm_f1 = 0x40012bb8) + [!provide] PROVIDE (r_lm_f2 = 0x40012cfc) + [!provide] PROVIDE (r_lm_f3 = 0x40013050) + [!provide] PROVIDE (r_lm_g = 0x40012f90) + [!provide] PROVIDE (r_LM_GetAFHSwitchInstant = 0x4002f86c) + [!provide] PROVIDE (r_lm_get_auth_en = 0x4004f1ac) + [!provide] PROVIDE (r_lm_get_common_pkt_types = 0x4002fa1c) + [!provide] PROVIDE (r_LM_GetConnectionAcceptTimeout = 0x4004f1f4) + [!provide] PROVIDE (r_LM_GetFeature = 0x4002f924) + [!provide] PROVIDE (r_LM_GetLinkTimeout = 0x400233ec) + [!provide] PROVIDE (r_LM_GetLocalNameSeg = 0x4004f200) + [!provide] PROVIDE (r_lm_get_loopback_mode = 0x4004f248) + [!provide] PROVIDE (r_LM_GetMasterEncKeySize = 0x4001b29c) + [!provide] PROVIDE (r_LM_GetMasterEncRand = 0x4001b288) + [!provide] PROVIDE (r_LM_GetMasterKey = 0x4001b260) + [!provide] PROVIDE (r_LM_GetMasterKeyRand = 0x4001b274) + [!provide] PROVIDE (r_lm_get_min_sync_intv = 0x400517a8) + [!provide] PROVIDE (r_lm_get_nb_acl = 0x4004ef9c) + [!provide] PROVIDE (r_lm_get_nb_sync_link = 0x4005179c) + [!provide] PROVIDE (r_lm_get_nonce = 0x400131c4) + [!provide] PROVIDE (r_lm_get_oob_local_commit = 0x4004f374) + [!provide] PROVIDE (r_lm_get_oob_local_data_192 = 0x4004f2d4) + [!provide] PROVIDE (r_lm_get_oob_local_data_256 = 0x4004f318) + [!provide] PROVIDE (r_LM_GetPINType = 0x4004f1e8) + [!provide] PROVIDE (r_lm_get_priv_key_192 = 0x4004f278) + [!provide] PROVIDE (r_lm_get_priv_key_256 = 0x4004f2b8) + [!provide] PROVIDE (r_lm_get_pub_key_192 = 0x4004f258) + [!provide] PROVIDE (r_lm_get_pub_key_256 = 0x4004f298) + [!provide] PROVIDE (r_LM_GetQoSParam = 0x4002f6e0) + [!provide] PROVIDE (r_lm_get_sec_con_host_supp = 0x4004f1d4) + [!provide] PROVIDE (r_LM_GetSniffSubratingParam = 0x4002325c) + [!provide] PROVIDE (r_lm_get_sp_en = 0x4004f1c0) + [!provide] PROVIDE (r_LM_GetSwitchInstant = 0x4002f7f8) + [!provide] PROVIDE (r_lm_get_synchdl = 0x4005175c) + [!provide] PROVIDE (r_lm_get_sync_param = 0x400503b4) + [!provide] PROVIDE (r_lm_init = 0x4004ed34) + [!provide] PROVIDE (r_lm_init_sync = 0x400512d8) + [!provide] PROVIDE (r_lm_is_acl_con = 0x4004f47c) + [!provide] PROVIDE (r_lm_is_acl_con_role = 0x4004f49c) + [!provide] PROVIDE (r_lm_is_clk_adj_ack_pending = 0x4004f4e8) + [!provide] PROVIDE (r_lm_is_clk_adj_instant_pending = 0x4004f4c8) + [!provide] PROVIDE (r_lm_local_ext_fr_configured = 0x4004f540) + [!provide] PROVIDE (r_lm_look_for_stored_link_key = 0x4002f948) + [!provide] PROVIDE (r_lm_look_for_sync = 0x40051774) + [!provide] PROVIDE (r_lm_lt_addr_alloc = 0x4004ef1c) + [!provide] PROVIDE (r_lm_lt_addr_free = 0x4004ef74) + [!provide] PROVIDE (r_lm_lt_addr_reserve = 0x4004ef48) + [!provide] PROVIDE (r_LM_MakeCof = 0x4002f84c) + [!provide] PROVIDE (r_LM_MakeRandVec = 0x400112d8) + [!provide] PROVIDE (r_lm_master_clk_adj_req_handler = 0x40054180) + [!provide] PROVIDE (r_LM_MaxSlot = 0x4002f694) + [!provide] PROVIDE (r_lm_modif_sync = 0x40051578) + [!provide] PROVIDE (r_lm_n_is_zero = 0x40012170) + [!provide] PROVIDE (r_lm_num_clk_adj_ack_pending_set = 0x4004f500) + [!provide] PROVIDE (r_lm_oob_f1 = 0x40012e54) + [!provide] PROVIDE (r_lm_pca_sscan_link_get = 0x4004f560) + [!provide] PROVIDE (r_lm_pca_sscan_link_set = 0x4004f550) + [!provide] PROVIDE (nvds_null_read = 0x400542a0) + [!provide] PROVIDE (nvds_null_write = 0x400542a8) + [!provide] PROVIDE (nvds_null_erase = 0x400542b0) + [!provide] PROVIDE (nvds_read = 0x400542c4) + [!provide] PROVIDE (nvds_write = 0x400542fc) + [!provide] PROVIDE (nvds_erase = 0x40054334) + [!provide] PROVIDE (nvds_init_memory = 0x40054358) + [!provide] PROVIDE (r_lmp_pack = 0x4001135c) + [!provide] PROVIDE (r_lmp_unpack = 0x4001149c) + [!provide] PROVIDE (r_lm_read_features = 0x4004f0d8) + [!provide] PROVIDE (r_LM_RemoveSniff = 0x40023124) + [!provide] PROVIDE (r_LM_RemoveSniffSubrating = 0x400233c4) + [!provide] PROVIDE (r_lm_remove_sync = 0x400517c8) + [!provide] PROVIDE (r_lm_reset_sync = 0x40051304) + [!provide] PROVIDE (r_lm_role_switch_finished = 0x4004f028) + [!provide] PROVIDE (r_lm_role_switch_start = 0x4004efe0) + [!provide] PROVIDE (r_lm_sco_nego_end = 0x40051828) + [!provide] PROVIDE (r_LM_SniffSubrateNegoRequired = 0x40023334) + [!provide] PROVIDE (r_LM_SniffSubratingHlReq = 0x40023154) + [!provide] PROVIDE (r_LM_SniffSubratingPeerReq = 0x400231dc) + [!provide] PROVIDE (r_lm_sp_debug_mode_get = 0x4004f398) + [!provide] PROVIDE (r_lm_sp_n192_convert_wnaf = 0x400123c0) + [!provide] PROVIDE (r_lm_sp_n_one = 0x400123a4) + [!provide] PROVIDE (r_lm_sp_p192_add = 0x40012828) + [!provide] PROVIDE (r_lm_sp_p192_dbl = 0x4001268c) + [!provide] PROVIDE (r_lm_sp_p192_invert = 0x40012b6c) + [!provide] PROVIDE (r_lm_sp_p192_point_jacobian_to_affine = 0x40012468) + [!provide] PROVIDE (r_lm_sp_p192_points_jacobian_to_affine = 0x400124e4) + [!provide] PROVIDE (r_lm_sp_p192_point_to_inf = 0x40012458) + [!provide] PROVIDE (r_lm_sp_pre_compute_points = 0x40012640) + [!provide] PROVIDE (r_lm_sp_sha256_calculate = 0x400121a0) + [!provide] PROVIDE (r_LM_SuppressAclPacket = 0x4002f658) + [!provide] PROVIDE (r_lm_sync_flow_ctrl_en_get = 0x4004f404) + [!provide] PROVIDE (r_LM_UpdateAclEdrPacketType = 0x4002f5d8) + [!provide] PROVIDE (r_LM_UpdateAclPacketType = 0x4002f584) + [!provide] PROVIDE (r_modules_funcs = 0x3ffafd6c) + [!provide] PROVIDE (r_modules_funcs_p = 0x3ffafd68) + [!provide] PROVIDE (r_nvds_del = 0x400544c4) + [!provide] PROVIDE (r_nvds_get = 0x40054488) + [!provide] PROVIDE (r_nvds_init = 0x40054410) + [!provide] PROVIDE (r_nvds_lock = 0x400544fc) + [!provide] PROVIDE (r_nvds_put = 0x40054534) + [!provide] PROVIDE (rom_abs_temp = 0x400054f0) + [!provide] PROVIDE (rom_bb_bss_bw_40_en = 0x4000401c) + [!provide] PROVIDE (rom_bb_bss_cbw40_dig = 0x40003bac) + [!provide] PROVIDE (rom_bb_rx_ht20_cen_bcov_en = 0x40003734) + [!provide] PROVIDE (rom_bb_tx_ht20_cen = 0x40003760) + [!provide] PROVIDE (rom_bb_wdg_test_en = 0x40003b70) + [!provide] PROVIDE (rom_cbw2040_cfg = 0x400040b0) + [!provide] PROVIDE (rom_check_noise_floor = 0x40003c78) + [!provide] PROVIDE (rom_chip_i2c_readReg = 0x40004110) + [!provide] PROVIDE (rom_chip_i2c_writeReg = 0x40004168) + [!provide] PROVIDE (rom_chip_v7_bt_init = 0x40004d8c) + [!provide] PROVIDE (rom_chip_v7_rx_init = 0x40004cec) + [!provide] PROVIDE (rom_chip_v7_rx_rifs_en = 0x40003d90) + [!provide] PROVIDE (rom_chip_v7_tx_init = 0x40004d18) + [!provide] PROVIDE (rom_clk_force_on_vit = 0x40003710) + [!provide] PROVIDE (rom_correct_rf_ana_gain = 0x400062a8) + [!provide] PROVIDE (rom_dc_iq_est = 0x400055c8) + [!provide] PROVIDE (rom_disable_agc = 0x40002fa4) + [!provide] PROVIDE (rom_enable_agc = 0x40002fcc) + [!provide] PROVIDE (rom_en_pwdet = 0x4000506c) + [!provide] PROVIDE (rom_gen_rx_gain_table = 0x40003e3c) + [!provide] PROVIDE (rom_get_data_sat = 0x4000312c) + [!provide] PROVIDE (rom_get_fm_sar_dout = 0x40005204) + [!provide] PROVIDE (rom_get_power_db = 0x40005fc8) + [!provide] PROVIDE (rom_get_pwctrl_correct = 0x400065d4) + [!provide] PROVIDE (rom_get_rfcal_rxiq_data = 0x40005bbc) + [!provide] PROVIDE (rom_get_rf_gain_qdb = 0x40006290) + [!provide] PROVIDE (rom_get_sar_dout = 0x40006564) + 0x40004148 PROVIDE (rom_i2c_readReg = 0x40004148) + 0x400041c0 PROVIDE (rom_i2c_readReg_Mask = 0x400041c0) + 0x400041a4 PROVIDE (rom_i2c_writeReg = 0x400041a4) + 0x400041fc PROVIDE (rom_i2c_writeReg_Mask = 0x400041fc) + [!provide] PROVIDE (rom_index_to_txbbgain = 0x40004df8) + [!provide] PROVIDE (rom_iq_est_disable = 0x40005590) + [!provide] PROVIDE (rom_iq_est_enable = 0x40005514) + [!provide] PROVIDE (rom_linear_to_db = 0x40005f64) + [!provide] PROVIDE (rom_loopback_mode_en = 0x400030f8) + [!provide] PROVIDE (rom_meas_tone_pwr_db = 0x40006004) + [!provide] PROVIDE (rom_mhz2ieee = 0x4000404c) + [!provide] PROVIDE (rom_noise_floor_auto_set = 0x40003bdc) + [!provide] PROVIDE (rom_pbus_debugmode = 0x40004458) + [!provide] PROVIDE (rom_pbus_force_mode = 0x40004270) + [!provide] PROVIDE (rom_pbus_force_test = 0x400043c0) + [!provide] PROVIDE (rom_pbus_rd = 0x40004414) + [!provide] PROVIDE (rom_pbus_rd_addr = 0x40004334) + [!provide] PROVIDE (rom_pbus_rd_shift = 0x40004374) + [!provide] PROVIDE (rom_pbus_rx_dco_cal = 0x40005620) + [!provide] PROVIDE (rom_pbus_set_dco = 0x40004638) + [!provide] PROVIDE (rom_pbus_set_rxgain = 0x40004480) + [!provide] PROVIDE (rom_pbus_workmode = 0x4000446c) + [!provide] PROVIDE (rom_pbus_xpd_rx_off = 0x40004508) + [!provide] PROVIDE (rom_pbus_xpd_rx_on = 0x4000453c) + [!provide] PROVIDE (rom_pbus_xpd_tx_off = 0x40004590) + [!provide] PROVIDE (rom_pbus_xpd_tx_on = 0x400045e0) + [!provide] PROVIDE (rom_phy_disable_agc = 0x40002f6c) + [!provide] PROVIDE (rom_phy_disable_cca = 0x40003000) + [!provide] PROVIDE (rom_phy_enable_agc = 0x40002f88) + [!provide] PROVIDE (rom_phy_enable_cca = 0x4000302c) + [!provide] PROVIDE (rom_phy_freq_correct = 0x40004b44) + [!provide] PROVIDE (rom_phyFuns = 0x3ffae0c0) + [!provide] PROVIDE (rom_phy_get_noisefloor = 0x40003c2c) + [!provide] PROVIDE (rom_phy_get_vdd33 = 0x4000642c) + [!provide] PROVIDE (rom_pow_usr = 0x40003044) + [!provide] PROVIDE (rom_read_sar_dout = 0x400051c0) + [!provide] PROVIDE (rom_restart_cal = 0x400046e0) + [!provide] PROVIDE (rom_rfcal_pwrctrl = 0x40006058) + [!provide] PROVIDE (rom_rfcal_rxiq = 0x40005b4c) + [!provide] PROVIDE (rom_rfcal_txcap = 0x40005dec) + [!provide] PROVIDE (rom_rfpll_reset = 0x40004680) + [!provide] PROVIDE (rom_rfpll_set_freq = 0x400047f8) + [!provide] PROVIDE (rom_rtc_mem_backup = 0x40003db4) + [!provide] PROVIDE (rom_rtc_mem_recovery = 0x40003df4) + [!provide] PROVIDE (rom_rx_gain_force = 0x4000351c) + [!provide] PROVIDE (rom_rxiq_cover_mg_mp = 0x40005a68) + [!provide] PROVIDE (rom_rxiq_get_mis = 0x400058e4) + [!provide] PROVIDE (rom_rxiq_set_reg = 0x40005a00) + [!provide] PROVIDE (rom_set_cal_rxdc = 0x400030b8) + [!provide] PROVIDE (rom_set_chan_cal_interp = 0x40005ce0) + [!provide] PROVIDE (rom_set_channel_freq = 0x40004880) + [!provide] PROVIDE (rom_set_loopback_gain = 0x40003060) + [!provide] PROVIDE (rom_set_noise_floor = 0x40003d48) + [!provide] PROVIDE (rom_set_pbus_mem = 0x400031a4) + [!provide] PROVIDE (rom_set_rf_freq_offset = 0x40004ca8) + [!provide] PROVIDE (rom_set_rxclk_en = 0x40003594) + [!provide] PROVIDE (rom_set_txcap_reg = 0x40005d50) + [!provide] PROVIDE (rom_set_txclk_en = 0x40003564) + [!provide] PROVIDE (rom_spur_coef_cfg = 0x40003ac8) + [!provide] PROVIDE (rom_spur_reg_write_one_tone = 0x400037f0) + [!provide] PROVIDE (rom_start_tx_tone = 0x400036b4) + [!provide] PROVIDE (rom_start_tx_tone_step = 0x400035d0) + [!provide] PROVIDE (rom_stop_tx_tone = 0x40003f98) + [!provide] PROVIDE (_rom_store = 0x4000d66c) + [!provide] PROVIDE (_rom_store_table = 0x4000d4f8) + [!provide] PROVIDE (rom_target_power_add_backoff = 0x40006268) + [!provide] PROVIDE (rom_tx_atten_set_interp = 0x400061cc) + [!provide] PROVIDE (rom_txbbgain_to_index = 0x40004dc0) + [!provide] PROVIDE (rom_txcal_work_mode = 0x4000510c) + [!provide] PROVIDE (rom_txdc_cal_init = 0x40004e10) + [!provide] PROVIDE (rom_txdc_cal_v70 = 0x40004ea4) + [!provide] PROVIDE (rom_txiq_cover = 0x4000538c) + [!provide] PROVIDE (rom_txiq_get_mis_pwr = 0x400052dc) + [!provide] PROVIDE (rom_txiq_set_reg = 0x40005154) + [!provide] PROVIDE (rom_tx_pwctrl_bg_init = 0x4000662c) + [!provide] PROVIDE (rom_txtone_linear_pwr = 0x40005290) + [!provide] PROVIDE (rom_wait_rfpll_cal_end = 0x400047a8) + [!provide] PROVIDE (rom_write_gain_mem = 0x4000348c) + [!provide] PROVIDE (rom_write_rfpll_sdm = 0x40004740) + 0x4000ab7c PROVIDE (roundup2 = 0x4000ab7c) + [!provide] PROVIDE (r_plf_funcs_p = 0x3ffb8360) + [!provide] PROVIDE (r_rf_rw_bt_init = 0x40054868) + [!provide] PROVIDE (r_rf_rw_init = 0x40054b0c) + [!provide] PROVIDE (r_rf_rw_le_init = 0x400549d0) + [!provide] PROVIDE (r_rwble_activity_ongoing_check = 0x40054d8c) + [!provide] PROVIDE (r_rwble_init = 0x40054bf4) + [!provide] PROVIDE (r_rwble_isr = 0x40054e08) + [!provide] PROVIDE (r_rwble_reset = 0x40054ce8) + [!provide] PROVIDE (r_rwble_sleep_check = 0x40054d78) + [!provide] PROVIDE (r_rwble_version = 0x40054dac) + [!provide] PROVIDE (r_rwbt_init = 0x40055160) + [!provide] PROVIDE (r_rwbt_isr = 0x40055248) + [!provide] PROVIDE (r_rwbt_reset = 0x400551bc) + [!provide] PROVIDE (r_rwbt_sleep_check = 0x4005577c) + [!provide] PROVIDE (r_rwbt_sleep_enter = 0x400557a4) + [!provide] PROVIDE (r_rwbt_sleep_wakeup = 0x400557fc) + [!provide] PROVIDE (r_rwbt_sleep_wakeup_end = 0x400558cc) + [!provide] PROVIDE (r_rwbt_version = 0x4005520c) + [!provide] PROVIDE (r_rwip_assert_err = 0x40055f88) + [!provide] PROVIDE (r_rwip_check_wakeup_boundary = 0x400558fc) + [!provide] PROVIDE (r_rwip_ext_wakeup_enable = 0x40055f3c) + [!provide] PROVIDE (r_rwip_init = 0x4005595c) + [!provide] PROVIDE (r_rwip_pca_clock_dragging_only = 0x40055f48) + [!provide] PROVIDE (r_rwip_prevent_sleep_clear = 0x40055ec8) + [!provide] PROVIDE (r_rwip_prevent_sleep_set = 0x40055e64) + [!provide] PROVIDE (r_rwip_reset = 0x40055ab8) + [!provide] PROVIDE (r_rwip_schedule = 0x40055b38) + [!provide] PROVIDE (r_rwip_sleep = 0x40055b5c) + [!provide] PROVIDE (r_rwip_sleep_enable = 0x40055f30) + [!provide] PROVIDE (r_rwip_version = 0x40055b20) + [!provide] PROVIDE (r_rwip_wakeup = 0x40055dc4) + [!provide] PROVIDE (r_rwip_wakeup_delay_set = 0x40055e4c) + [!provide] PROVIDE (r_rwip_wakeup_end = 0x40055e18) + [!provide] PROVIDE (r_rwip_wlcoex_set = 0x40055f60) + [!provide] PROVIDE (r_SHA_256 = 0x40013a90) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (rwip_rf = 0x3ffbdb28) + [!provide] PROVIDE (rwip_rf_p_get = 0x400558f4) + [!provide] PROVIDE (r_XorKey = 0x400112c0) + [!provide] PROVIDE (sha_blk_bits = 0x3ff99290) + [!provide] PROVIDE (sha_blk_bits_bytes = 0x3ff99288) + [!provide] PROVIDE (sha_blk_hash_bytes = 0x3ff9928c) + [!provide] PROVIDE (sig_matrix = 0x3ffae293) + [!provide] PROVIDE (sip_after_tx_complete = 0x4000b358) + [!provide] PROVIDE (sip_alloc_to_host_evt = 0x4000ab9c) + [!provide] PROVIDE (sip_get_ptr = 0x4000b34c) + [!provide] PROVIDE (sip_get_state = 0x4000ae2c) + [!provide] PROVIDE (sip_init_attach = 0x4000ae58) + [!provide] PROVIDE (sip_install_rx_ctrl_cb = 0x4000ae10) + [!provide] PROVIDE (sip_install_rx_data_cb = 0x4000ae20) + [!provide] PROVIDE (sip_is_active = 0x4000b3c0) + [!provide] PROVIDE (sip_post_init = 0x4000aed8) + [!provide] PROVIDE (sip_reclaim_from_host_cmd = 0x4000adbc) + [!provide] PROVIDE (sip_reclaim_tx_data_pkt = 0x4000ad5c) + [!provide] PROVIDE (sip_send = 0x4000af54) + [!provide] PROVIDE (sip_to_host_chain_append = 0x4000aef8) + [!provide] PROVIDE (sip_to_host_evt_send_done = 0x4000ac04) + [!provide] PROVIDE (slc_add_credits = 0x4000baf4) + [!provide] PROVIDE (slc_enable = 0x4000b64c) + [!provide] PROVIDE (slc_from_host_chain_fetch = 0x4000b7e8) + [!provide] PROVIDE (slc_from_host_chain_recycle = 0x4000bb10) + [!provide] PROVIDE (slc_has_pkt_to_host = 0x4000b5fc) + [!provide] PROVIDE (slc_init_attach = 0x4000b918) + [!provide] PROVIDE (slc_init_credit = 0x4000badc) + [!provide] PROVIDE (slc_reattach = 0x4000b62c) + [!provide] PROVIDE (slc_send_to_host_chain = 0x4000b6a0) + [!provide] PROVIDE (slc_set_host_io_max_window = 0x4000b89c) + [!provide] PROVIDE (slc_to_host_chain_recycle = 0x4000b758) + [!provide] PROVIDE (specialModP256 = 0x4001600c) + [!provide] PROVIDE (__stack = 0x3ffe3f20) + [!provide] PROVIDE (__stack_app = 0x3ffe7e30) + [!provide] PROVIDE (_stack_sentry = 0x3ffe1320) + [!provide] PROVIDE (_stack_sentry_app = 0x3ffe5230) + [!provide] PROVIDE (_start = 0x40000704) + [!provide] PROVIDE (start_tb_console = 0x4005a980) + [!provide] PROVIDE (_stat_r = 0x4000bcb4) + [!provide] PROVIDE (_stext = 0x40000560) + [!provide] PROVIDE (SubtractBigHex256 = 0x40015bcc) + [!provide] PROVIDE (SubtractBigHexMod256 = 0x40015e8c) + [!provide] PROVIDE (SubtractBigHexUint32_256 = 0x40015f8c) + [!provide] PROVIDE (SubtractFromSelfBigHex256 = 0x40015c20) + [!provide] PROVIDE (SubtractFromSelfBigHexSign256 = 0x40015dc8) + [!provide] PROVIDE (sw_to_hw = 0x3ffb8d40) + 0x3ffae020 PROVIDE (syscall_table_ptr_app = 0x3ffae020) + 0x3ffae024 PROVIDE (syscall_table_ptr_pro = 0x3ffae024) + [!provide] PROVIDE (tdefl_compress = 0x400600bc) + [!provide] PROVIDE (tdefl_compress_buffer = 0x400607f4) + [!provide] PROVIDE (tdefl_compress_mem_to_mem = 0x40060900) + [!provide] PROVIDE (tdefl_compress_mem_to_output = 0x400608e0) + [!provide] PROVIDE (tdefl_get_adler32 = 0x400608d8) + [!provide] PROVIDE (tdefl_get_prev_return_status = 0x400608d0) + [!provide] PROVIDE (tdefl_init = 0x40060810) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory = 0x4006091c) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory_ex = 0x40060910) + [!provide] PROVIDE (tinfl_decompress = 0x4005ef30) + [!provide] PROVIDE (tinfl_decompress_mem_to_callback = 0x40060090) + [!provide] PROVIDE (tinfl_decompress_mem_to_mem = 0x40060050) + [!provide] PROVIDE (UartDev = 0x3ffe019c) + [!provide] PROVIDE (user_code_start = 0x3ffe0400) + [!provide] PROVIDE (veryBigHexP256 = 0x3ff9736c) + [!provide] PROVIDE (xthal_bcopy = 0x4000c098) + [!provide] PROVIDE (xthal_copy123 = 0x4000c124) + [!provide] PROVIDE (xthal_get_ccompare = 0x4000c078) + [!provide] PROVIDE (xthal_get_ccount = 0x4000c050) + [!provide] PROVIDE (xthal_get_interrupt = 0x4000c1e4) + [!provide] PROVIDE (xthal_get_intread = 0x4000c1e4) + [!provide] PROVIDE (Xthal_intlevel = 0x3ff9c2b4) + [!provide] PROVIDE (xthal_memcpy = 0x4000c0bc) + [!provide] PROVIDE (xthal_set_ccompare = 0x4000c058) + [!provide] PROVIDE (xthal_set_intclear = 0x4000c1ec) + 0x4000bfdc PROVIDE (_xtos_set_intlevel = 0x4000bfdc) + 0x3ffe01e0 PROVIDE (g_ticks_per_us_pro = 0x3ffe01e0) + 0x3ffe40f0 PROVIDE (g_ticks_per_us_app = 0x3ffe40f0) + 0x40063238 PROVIDE (esp_rom_spiflash_config_param = 0x40063238) + 0x400621b0 PROVIDE (esp_rom_spiflash_read_user_cmd = 0x400621b0) + 0x40062e60 PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40062e60) + 0x40062df4 PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40062df4) + 0x40062e1c PROVIDE (esp_rom_spiflash_prepare_encrypted_data = 0x40062e1c) + [!provide] PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40061ddc) + [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40062a6c) + 0x40062bc8 PROVIDE (esp_rom_spiflash_config_clk = 0x40062bc8) + 0x3ffae270 PROVIDE (g_rom_spiflash_chip = 0x3ffae270) + [!provide] PROVIDE (SPI_write_enable = 0x40062320) + [!provide] PROVIDE (hci_le_rd_rem_used_feats_cmd_handler = 0x400417b4) + [!provide] PROVIDE (llcp_length_req_handler = 0x40043808) + [!provide] PROVIDE (llcp_unknown_rsp_handler = 0x40043ba8) + [!provide] PROVIDE (llcp_channel_map_req_handler = 0x4004291c) + [!provide] PROVIDE (llcp_con_up_req_handler = 0x400426f0) + [!provide] PROVIDE (FilePacketSendDeflatedReqMsgProc = 0x40008b24) + [!provide] PROVIDE (FilePacketSendReqMsgProc = 0x40008860) + [!provide] PROVIDE (FlashDwnLdDeflatedStartMsgProc = 0x40008ad8) + [!provide] PROVIDE (FlashDwnLdParamCfgMsgProc = 0x4000891c) + [!provide] PROVIDE (FlashDwnLdStartMsgProc = 0x40008820) + [!provide] PROVIDE (FlashDwnLdStopDeflatedReqMsgProc = 0x40008c18) + [!provide] PROVIDE (FlashDwnLdStopReqMsgProc = 0x400088ec) + [!provide] PROVIDE (MemDwnLdStartMsgProc = 0x40008948) + [!provide] PROVIDE (MemDwnLdStopReqMsgProc = 0x400089dc) + [!provide] PROVIDE (MemPacketSendReqMsgProc = 0x40008978) + [!provide] PROVIDE (uart_baudrate_detect = 0x40009034) + [!provide] PROVIDE (uart_buff_switch = 0x400093c0) + [!provide] PROVIDE (UartConnCheck = 0x40008738) + [!provide] PROVIDE (UartConnectProc = 0x40008a04) + [!provide] PROVIDE (UartDwnLdProc = 0x40008ce8) + [!provide] PROVIDE (UartRegReadProc = 0x40008a58) + [!provide] PROVIDE (UartRegWriteProc = 0x40008a14) + [!provide] PROVIDE (UartSetBaudProc = 0x40008aac) + [!provide] PROVIDE (UartSpiAttachProc = 0x40008a6c) + [!provide] PROVIDE (UartSpiReadProc = 0x40008a80) + [!provide] PROVIDE (VerifyFlashMd5Proc = 0x40008c44) + [!provide] PROVIDE (GetUartDevice = 0x40009598) + [!provide] PROVIDE (RcvMsg = 0x4000954c) + [!provide] PROVIDE (SendMsg = 0x40009384) + [!provide] PROVIDE (UartGetCmdLn = 0x40009564) + [!provide] PROVIDE (UartRxString = 0x400092fc) + [!provide] PROVIDE (Uart_Init = 0x40009120) + [!provide] PROVIDE (recv_packet = 0x40009424) + [!provide] PROVIDE (send_packet = 0x40009340) + [!provide] PROVIDE (uartAttach = 0x40008fd0) + [!provide] PROVIDE (uart_div_modify = 0x400090cc) + [!provide] PROVIDE (uart_rx_intr_handler = 0x40008f4c) + 0x400092d0 PROVIDE (uart_rx_one_char = 0x400092d0) + [!provide] PROVIDE (uart_rx_one_char_block = 0x400092a4) + [!provide] PROVIDE (uart_rx_readbuff = 0x40009394) + 0x40009258 PROVIDE (uart_tx_flush = 0x40009258) + 0x40009200 PROVIDE (uart_tx_one_char = 0x40009200) + [!provide] PROVIDE (uart_tx_one_char2 = 0x4000922c) + 0x40009028 PROVIDE (uart_tx_switch = 0x40009028) + [!provide] PROVIDE (gpio_output_set = 0x40009b24) + [!provide] PROVIDE (gpio_output_set_high = 0x40009b5c) + [!provide] PROVIDE (gpio_input_get = 0x40009b88) + [!provide] PROVIDE (gpio_input_get_high = 0x40009b9c) + 0x40009edc PROVIDE (gpio_matrix_in = 0x40009edc) + 0x40009f0c PROVIDE (gpio_matrix_out = 0x40009f0c) + 0x40009fdc PROVIDE (gpio_pad_select_gpio = 0x40009fdc) + [!provide] PROVIDE (gpio_pad_set_drv = 0x4000a11c) + [!provide] PROVIDE (gpio_pad_pulldown = 0x4000a348) + 0x4000a22c PROVIDE (gpio_pad_pullup = 0x4000a22c) + [!provide] PROVIDE (gpio_pad_hold = 0x4000a734) + [!provide] PROVIDE (gpio_pad_unhold = 0x4000a484) + [!provide] PROVIDE (ets_aes_crypt = 0x4005c9b8) + [!provide] PROVIDE (ets_aes_disable = 0x4005c8f8) + [!provide] PROVIDE (ets_aes_enable = 0x4005c8cc) + [!provide] PROVIDE (ets_aes_set_endian = 0x4005c928) + [!provide] PROVIDE (ets_aes_setkey_dec = 0x4005c994) + [!provide] PROVIDE (ets_aes_setkey_enc = 0x4005c97c) + [!provide] PROVIDE (ets_bigint_disable = 0x4005c4e0) + [!provide] PROVIDE (ets_bigint_enable = 0x4005c498) + [!provide] PROVIDE (ets_bigint_mod_mult_getz = 0x4005c818) + [!provide] PROVIDE (ets_bigint_mod_mult_prepare = 0x4005c7b4) + [!provide] PROVIDE (ets_bigint_mod_power_getz = 0x4005c614) + [!provide] PROVIDE (ets_bigint_mod_power_prepare = 0x4005c54c) + [!provide] PROVIDE (ets_bigint_montgomery_mult_getz = 0x4005c7a4) + [!provide] PROVIDE (ets_bigint_montgomery_mult_prepare = 0x4005c6fc) + [!provide] PROVIDE (ets_bigint_mult_getz = 0x4005c6e8) + [!provide] PROVIDE (ets_bigint_mult_prepare = 0x4005c630) + [!provide] PROVIDE (ets_bigint_wait_finish = 0x4005c520) + [!provide] PROVIDE (ets_post = 0x4000673c) + [!provide] PROVIDE (ets_run = 0x400066bc) + [!provide] PROVIDE (ets_set_idle_cb = 0x40006674) + [!provide] PROVIDE (ets_task = 0x40006688) + [!provide] PROVIDE (ets_efuse_get_8M_clock = 0x40008710) + 0x40008658 PROVIDE (ets_efuse_get_spiconfig = 0x40008658) + [!provide] PROVIDE (ets_efuse_program_op = 0x40008628) + [!provide] PROVIDE (ets_efuse_read_op = 0x40008600) + [!provide] PROVIDE (ets_intr_lock = 0x400067b0) + [!provide] PROVIDE (ets_intr_unlock = 0x400067c4) + [!provide] PROVIDE (ets_isr_attach = 0x400067ec) + [!provide] PROVIDE (ets_waiti0 = 0x400067d8) + 0x4000681c PROVIDE (intr_matrix_set = 0x4000681c) + [!provide] PROVIDE (check_pos = 0x400068b8) + 0x4000689c PROVIDE (ets_set_appcpu_boot_addr = 0x4000689c) + [!provide] PROVIDE (ets_set_startup_callback = 0x4000688c) + [!provide] PROVIDE (ets_set_user_start = 0x4000687c) + [!provide] PROVIDE (ets_unpack_flash_code = 0x40007018) + [!provide] PROVIDE (ets_unpack_flash_code_legacy = 0x4000694c) + [!provide] PROVIDE (rom_main = 0x400076c4) + [!provide] PROVIDE (ets_write_char_uart = 0x40007cf8) + 0x40007d18 PROVIDE (ets_install_putc1 = 0x40007d18) + 0x40007d38 PROVIDE (ets_install_putc2 = 0x40007d38) + 0x40007d28 PROVIDE (ets_install_uart_printf = 0x40007d28) + 0x40007d54 PROVIDE (ets_printf = 0x40007d54) + [!provide] PROVIDE (rtc_boot_control = 0x4000821c) + 0x400081d4 PROVIDE (rtc_get_reset_reason = 0x400081d4) + [!provide] PROVIDE (rtc_get_wakeup_cause = 0x400081f4) + [!provide] PROVIDE (rtc_select_apb_bridge = 0x40008288) + 0x40008208 PROVIDE (set_rtc_memory_crc = 0x40008208) + 0x4000824c PROVIDE (software_reset = 0x4000824c) + 0x40008264 PROVIDE (software_reset_cpu = 0x40008264) + [!provide] PROVIDE (ets_secure_boot_check = 0x4005cb40) + [!provide] PROVIDE (ets_secure_boot_check_finish = 0x4005cc04) + [!provide] PROVIDE (ets_secure_boot_check_start = 0x4005cbcc) + [!provide] PROVIDE (ets_secure_boot_finish = 0x4005ca84) + [!provide] PROVIDE (ets_secure_boot_hash = 0x4005cad4) + [!provide] PROVIDE (ets_secure_boot_obtain = 0x4005cb14) + [!provide] PROVIDE (ets_secure_boot_rd_abstract = 0x4005cba8) + [!provide] PROVIDE (ets_secure_boot_rd_iv = 0x4005cb84) + [!provide] PROVIDE (ets_secure_boot_start = 0x4005ca34) + [!provide] PROVIDE (ets_sha_disable = 0x4005c0a8) + [!provide] PROVIDE (ets_sha_enable = 0x4005c07c) + [!provide] PROVIDE (ets_sha_finish = 0x4005c104) + [!provide] PROVIDE (ets_sha_init = 0x4005c0d4) + [!provide] PROVIDE (ets_sha_update = 0x4005c2a0) + 0x40008534 PROVIDE (ets_delay_us = 0x40008534) + [!provide] PROVIDE (ets_get_cpu_frequency = 0x4000855c) + 0x40008588 PROVIDE (ets_get_detected_xtal_freq = 0x40008588) + [!provide] PROVIDE (ets_get_xtal_scale = 0x4000856c) + 0x40008550 PROVIDE (ets_update_cpu_frequency_rom = 0x40008550) + [!provide] PROVIDE (hci_tl_env = 0x3ffb8154) + [!provide] PROVIDE (ld_acl_env = 0x3ffb8258) + [!provide] PROVIDE (ea_env = 0x3ffb80ec) + [!provide] PROVIDE (lc_sco_data_path_config = 0x3ffb81f8) + [!provide] PROVIDE (lc_sco_env = 0x3ffb81fc) + [!provide] PROVIDE (ld_active_ch_map = 0x3ffb8334) + [!provide] PROVIDE (ld_bcst_acl_env = 0x3ffb8274) + [!provide] PROVIDE (ld_csb_rx_env = 0x3ffb8278) + [!provide] PROVIDE (ld_csb_tx_env = 0x3ffb827c) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_fm_env = 0x3ffb8284) + [!provide] PROVIDE (ld_inq_env = 0x3ffb82e4) + [!provide] PROVIDE (ld_iscan_env = 0x3ffb82e8) + [!provide] PROVIDE (ld_page_env = 0x3ffb82f0) + [!provide] PROVIDE (ld_pca_env = 0x3ffb82f4) + [!provide] PROVIDE (ld_pscan_env = 0x3ffb8308) + [!provide] PROVIDE (ld_sched_env = 0x3ffb830c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sco_env = 0x3ffb824c) + [!provide] PROVIDE (ld_sscan_env = 0x3ffb832c) + [!provide] PROVIDE (ld_strain_env = 0x3ffb8330) + [!provide] PROVIDE (LM_Sniff = 0x3ffb8230) + [!provide] PROVIDE (LM_SniffSubRate = 0x3ffb8214) + [!provide] PROVIDE (prbs_64bytes = 0x3ff98992) + [!provide] PROVIDE (nvds_env = 0x3ffb8364) + [!provide] PROVIDE (nvds_magic_number = 0x3ff9912a) + [!provide] PROVIDE (TASK_DESC_LLD = 0x3ff98b58) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_evt_canceled_cbk = 0x40033944) + [!provide] PROVIDE (ld_acl_evt_stop_cbk = 0x40033870) + [!provide] PROVIDE (ld_acl_evt_start_cbk = 0x40030ab0) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_rx_isr = 0x40033aa8) + [!provide] PROVIDE (lc_acl_disc_ind_handler = 0x4002f270) + [!provide] PROVIDE (lc_pca_sscan_start_req_handler = 0x40029b34) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (ld_pscan_em_init = 0x4003e5e8) + [!provide] PROVIDE (ld_acl_rsw_start = 0x40032e90) + [!provide] PROVIDE (ld_acl_sniff_enter = 0x40031244) + [!provide] PROVIDE (ld_acl_sniff_trans_sched = 0x40033734) + [!provide] PROVIDE (lc_pwr_decr_ind_handler = 0x4002859c) + [!provide] PROVIDE (lc_pwr_incr_ind_handler = 0x400284a8) + [!provide] PROVIDE (lc_pwr_max_ind_handler = 0x40028690) + [!provide] PROVIDE (lm_sync_conf = 0x3ffb8348) + [!provide] PROVIDE (lm_nb_sync_active = 0x3ffb8346) + [!provide] PROVIDE (lm_sync_nego = 0x3ffb8345) + [!provide] PROVIDE (lm_nego_cnt = 0x3ffb8344) + [!provide] PROVIDE (lm_nego_cntl = 0x3ffb8342) + [!provide] PROVIDE (lm_nego_max_cnt = 0x3ffb8343) + [!provide] PROVIDE (lm_nego_pkt_used = 0x3ffb8340) + 0x4005cfec PROVIDE (esp_rom_crc32_le = crc32_le) + [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) + [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) + [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) + [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) + [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) + 0x40009fdc PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) + 0x4000a22c PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) + [!provide] PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) + 0x40009edc PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) + 0x40009f0c PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) + 0x4005d144 PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x40008658 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + 0x40009258 PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + 0x40009200 PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + 0x400092d0 PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + 0x40009028 PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_uart_switch_buffer = uart_buff_switch) + 0x4005da7c PROVIDE (esp_rom_md5_init = 0x4005da7c) + 0x4005da9c PROVIDE (esp_rom_md5_update = 0x4005da9c) + 0x4005db1c PROVIDE (esp_rom_md5_final = 0x4005db1c) + 0x4000824c PROVIDE (esp_rom_software_reset_system = software_reset) + 0x40008264 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x40007d54 PROVIDE (esp_rom_printf = ets_printf) + 0x40008534 PROVIDE (esp_rom_delay_us = ets_delay_us) + 0x40007d28 PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x400081d4 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x4000681c PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + [!provide] PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_set_bp = esp_rom_spiflash_lock) + [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + 0x40004148 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x400041c0 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x400041a4 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x400041fc PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x4006387c __absvdi2 = 0x4006387c + 0x40063868 __absvsi2 = 0x40063868 + 0x40002590 __adddf3 = 0x40002590 + 0x400020e8 __addsf3 = 0x400020e8 + 0x40002cbc __addvdi3 = 0x40002cbc + 0x40002c98 __addvsi3 = 0x40002c98 + 0x4000c818 __ashldi3 = 0x4000c818 + 0x4000c830 __ashrdi3 = 0x4000c830 + 0x40064b08 __bswapdi2 = 0x40064b08 + 0x40064ae0 __bswapsi2 = 0x40064ae0 + 0x40064b7c __clrsbdi2 = 0x40064b7c + 0x40064b64 __clrsbsi2 = 0x40064b64 + 0x4000ca50 __clzdi2 = 0x4000ca50 + 0x4000c7e8 __clzsi2 = 0x4000c7e8 + 0x40063820 __cmpdi2 = 0x40063820 + 0x4000ca64 __ctzdi2 = 0x4000ca64 + 0x4000c7f0 __ctzsi2 = 0x4000c7f0 + 0x400645a4 __divdc3 = 0x400645a4 + 0x40002954 __divdf3 = 0x40002954 + 0x4000ca84 __divdi3 = 0x4000ca84 + 0x4000c7b8 __divsi3 = 0x4000c7b8 + 0x400636a8 __eqdf2 = 0x400636a8 + 0x40063374 __eqsf2 = 0x40063374 + 0x40002c34 __extendsfdf2 = 0x40002c34 + 0x4000ca2c __ffsdi2 = 0x4000ca2c + 0x4000c804 __ffssi2 = 0x4000c804 + 0x40002ac4 __fixdfdi = 0x40002ac4 + 0x40002a78 __fixdfsi = 0x40002a78 + 0x4000244c __fixsfdi = 0x4000244c + 0x4000240c __fixsfsi = 0x4000240c + 0x40002b30 __fixunsdfsi = 0x40002b30 + 0x40002504 __fixunssfdi = 0x40002504 + 0x400024ac __fixunssfsi = 0x400024ac + 0x4000c988 __floatdidf = 0x4000c988 + 0x4000c8c0 __floatdisf = 0x4000c8c0 + 0x4000c944 __floatsidf = 0x4000c944 + 0x4000c870 __floatsisf = 0x4000c870 + 0x4000c978 __floatundidf = 0x4000c978 + 0x4000c8b0 __floatundisf = 0x4000c8b0 + 0x4000c938 __floatunsidf = 0x4000c938 + 0x4000c864 __floatunsisf = 0x4000c864 + 0x40064a70 __gcc_bcmp = 0x40064a70 + 0x40063768 __gedf2 = 0x40063768 + 0x4006340c __gesf2 = 0x4006340c + 0x400636dc __gtdf2 = 0x400636dc + 0x400633a0 __gtsf2 = 0x400633a0 + 0x40063704 __ledf2 = 0x40063704 + 0x400633c0 __lesf2 = 0x400633c0 + 0x4000c84c __lshrdi3 = 0x4000c84c + 0x40063790 __ltdf2 = 0x40063790 + 0x4006342c __ltsf2 = 0x4006342c + 0x4000cd4c __moddi3 = 0x4000cd4c + 0x4000c7c0 __modsi3 = 0x4000c7c0 + 0x40063c90 __muldc3 = 0x40063c90 + 0x4006358c __muldf3 = 0x4006358c + 0x4000c9fc __muldi3 = 0x4000c9fc + 0x400632c8 __mulsf3 = 0x400632c8 + 0x4000c7b0 __mulsi3 = 0x4000c7b0 + 0x40002d78 __mulvdi3 = 0x40002d78 + 0x40002d60 __mulvsi3 = 0x40002d60 + 0x400636a8 __nedf2 = 0x400636a8 + 0x400634a0 __negdf2 = 0x400634a0 + 0x4000ca14 __negdi2 = 0x4000ca14 + 0x400020c0 __negsf2 = 0x400020c0 + 0x40002e98 __negvdi2 = 0x40002e98 + 0x40002e78 __negvsi2 = 0x40002e78 + 0x40063374 __nesf2 = 0x40063374 + 0x3ff96544 __nsau_data = 0x3ff96544 + 0x40002f3c __paritysi2 = 0x40002f3c + 0x3ff96544 __popcount_tab = 0x3ff96544 + 0x40002ef8 __popcountdi2 = 0x40002ef8 + 0x40002ed0 __popcountsi2 = 0x40002ed0 + 0x400638e4 __powidf2 = 0x400638e4 + 0x400026e4 __subdf3 = 0x400026e4 + 0x400021d0 __subsf3 = 0x400021d0 + 0x40002d20 __subvdi3 = 0x40002d20 + 0x40002cf8 __subvsi3 = 0x40002cf8 + 0x40002b90 __truncdfsf2 = 0x40002b90 + 0x40063840 __ucmpdi2 = 0x40063840 + 0x40064bec __udiv_w_sdiv = 0x40064bec + 0x4000cff8 __udivdi3 = 0x4000cff8 + 0x40064bf4 __udivmoddi4 = 0x40064bf4 + 0x4000c7c8 __udivsi3 = 0x4000c7c8 + 0x4000d280 __umoddi3 = 0x4000d280 + 0x4000c7d0 __umodsi3 = 0x4000c7d0 + 0x4000c7d8 __umulsidi3 = 0x4000c7d8 + 0x400637f4 __unorddf2 = 0x400637f4 + 0x40063478 __unordsf2 = 0x40063478 + 0x3ff96354 _ctype_ = 0x3ff96354 + 0x3ff96350 __ctype_ptr__ = 0x3ff96350 + 0x3ffae0b4 environ = 0x3ffae0b4 + 0x3ffae0b0 _global_impure_ptr = 0x3ffae0b0 + 0x3ff96530 __mb_cur_max = 0x3ff96530 + 0x3ff96458 __sf_fake_stderr = 0x3ff96458 + 0x3ff96498 __sf_fake_stdin = 0x3ff96498 + 0x3ff96478 __sf_fake_stdout = 0x3ff96478 + 0x3ff96540 __wctomb = 0x3ff96540 + 0x3ffae0ac __sfp_lock = 0x3ffae0ac + 0x3ffae0a8 __sinit_lock = 0x3ffae0a8 + 0x3ffae0b8 __env_lock_object = 0x3ffae0b8 + 0x3ffae080 __tz_lock_object = 0x3ffae080 + 0x40001778 close = 0x40001778 + 0x4000178c open = 0x4000178c + 0x400017dc read = 0x400017dc + 0x400017f4 sbrk = 0x400017f4 + 0x40001808 times = 0x40001808 + 0x4000181c write = 0x4000181c + 0x40056340 abs = 0x40056340 + 0x40058ef0 __ascii_wctomb = 0x40058ef0 + 0x400566c4 atoi = 0x400566c4 + 0x400566d4 _atoi_r = 0x400566d4 + 0x400566ec atol = 0x400566ec + 0x400566fc _atol_r = 0x400566fc + 0x4000c1f4 bzero = 0x4000c1f4 + 0x40001df8 _cleanup = 0x40001df8 + 0x40001d48 _cleanup_r = 0x40001d48 + 0x40000e8c creat = 0x40000e8c + 0x40056348 div = 0x40056348 + 0x4000c728 __dummy_lock = 0x4000c728 + 0x4000c730 __dummy_lock_try = 0x4000c730 + 0x40001fd4 __env_lock = 0x40001fd4 + 0x40001fe0 __env_unlock = 0x40001fe0 + 0x400020ac fclose = 0x400020ac + 0x40001fec _fclose_r = 0x40001fec + 0x40059394 fflush = 0x40059394 + 0x40059320 _fflush_r = 0x40059320 + 0x40001f44 _findenv_r = 0x40001f44 + 0x40001f1c __fp_lock_all = 0x40001f1c + 0x40001f30 __fp_unlock_all = 0x40001f30 + 0x40058da0 __fputwc = 0x40058da0 + 0x40058ea8 fputwc = 0x40058ea8 + 0x40058e4c _fputwc_r = 0x40058e4c + 0x4000c738 _fwalk = 0x4000c738 + 0x4000c770 _fwalk_reent = 0x4000c770 + 0x40001fbc _getenv_r = 0x40001fbc + 0x40000f04 isalnum = 0x40000f04 + 0x40000f18 isalpha = 0x40000f18 + 0x4000c20c isascii = 0x4000c20c + 0x40000f2c isblank = 0x40000f2c + 0x40000f50 iscntrl = 0x40000f50 + 0x40000f64 isdigit = 0x40000f64 + 0x40000f94 isgraph = 0x40000f94 + 0x40000f78 islower = 0x40000f78 + 0x40000fa8 isprint = 0x40000fa8 + 0x40000fc0 ispunct = 0x40000fc0 + 0x40000fd4 isspace = 0x40000fd4 + 0x40000fe8 isupper = 0x40000fe8 + 0x40056678 __itoa = 0x40056678 + 0x400566b4 itoa = 0x400566b4 + 0x40056370 labs = 0x40056370 + 0x40056378 ldiv = 0x40056378 + 0x400562cc longjmp = 0x400562cc + 0x4000c220 memccpy = 0x4000c220 + 0x4000c244 memchr = 0x4000c244 + 0x4000c260 memcmp = 0x4000c260 + 0x4000c2c8 memcpy = 0x4000c2c8 + 0x4000c3c0 memmove = 0x4000c3c0 + 0x4000c400 memrchr = 0x4000c400 + 0x4000c44c memset = 0x4000c44c + 0x40056424 qsort = 0x40056424 + 0x40001058 rand = 0x40001058 + 0x400010d4 rand_r = 0x400010d4 + 0x4000c498 __sccl = 0x4000c498 + 0x400011b8 __sclose = 0x400011b8 + 0x40001148 __seofread = 0x40001148 + 0x40056268 setjmp = 0x40056268 + 0x400591e0 __sflush_r = 0x400591e0 + 0x40001dc8 __sfmoreglue = 0x40001dc8 + 0x40001e90 __sfp = 0x40001e90 + 0x40001e08 __sfp_lock_acquire = 0x40001e08 + 0x40001e14 __sfp_lock_release = 0x40001e14 + 0x40001e38 __sinit = 0x40001e38 + 0x40001e20 __sinit_lock_acquire = 0x40001e20 + 0x40001e2c __sinit_lock_release = 0x40001e2c + 0x40001004 srand = 0x40001004 + 0x40001118 __sread = 0x40001118 + 0x40001184 __sseek = 0x40001184 + 0x400011cc strcasecmp = 0x400011cc + 0x40001210 strcasestr = 0x40001210 + 0x4000c518 strcat = 0x4000c518 + 0x4000c53c strchr = 0x4000c53c + 0x40001274 strcmp = 0x40001274 + 0x40001398 strcoll = 0x40001398 + 0x400013ac strcpy = 0x400013ac + 0x4000c558 strcspn = 0x4000c558 + 0x4000143c strdup = 0x4000143c + 0x40001450 _strdup_r = 0x40001450 + 0x40001470 strlcat = 0x40001470 + 0x4000c584 strlcpy = 0x4000c584 + 0x400014c0 strlen = 0x400014c0 + 0x40001524 strlwr = 0x40001524 + 0x40001550 strncasecmp = 0x40001550 + 0x4000c5c4 strncat = 0x4000c5c4 + 0x4000c5f4 strncmp = 0x4000c5f4 + 0x400015d4 strncpy = 0x400015d4 + 0x400016b0 strndup = 0x400016b0 + 0x400016c4 _strndup_r = 0x400016c4 + 0x4000c628 strnlen = 0x4000c628 + 0x40001708 strrchr = 0x40001708 + 0x40001734 strsep = 0x40001734 + 0x4000c648 strspn = 0x4000c648 + 0x4000c674 strstr = 0x4000c674 + 0x4000c6a8 __strtok_r = 0x4000c6a8 + 0x4000c70c strtok_r = 0x4000c70c + 0x4005681c strtol = 0x4005681c + 0x40056714 _strtol_r = 0x40056714 + 0x4005692c strtoul = 0x4005692c + 0x40056834 _strtoul_r = 0x40056834 + 0x4000174c strupr = 0x4000174c + 0x40058f3c __submore = 0x40058f3c + 0x40058cb4 __swbuf = 0x40058cb4 + 0x40058bec __swbuf_r = 0x40058bec + 0x40001150 __swrite = 0x40001150 + 0x4000c720 toascii = 0x4000c720 + 0x40001868 tolower = 0x40001868 + 0x40001884 toupper = 0x40001884 + 0x400590f4 ungetc = 0x400590f4 + 0x40058fa0 _ungetc_r = 0x40058fa0 + 0x400561f0 __utoa = 0x400561f0 + 0x40056258 utoa = 0x40056258 + 0x40058920 wcrtomb = 0x40058920 + 0x400588d8 _wcrtomb_r = 0x400588d8 + 0x40058f14 _wctomb_r = 0x40058f14 + 0x00000010 _esp_flash_mmap_prefetch_pad_size = 0x10 + 0x00000000 _esp_memprot_prefetch_pad_size = 0x0 + 0x00000000 _esp_memprot_align_size = 0x0 + 0x00010000 _esp_mmu_block_size = 0x10000 + 0x3ffb9a68 _heap_start = _heap_low_start + 0x400a0000 _sram1_iram_start = 0x400a0000 + 0x00000000 _sram1_iram_len = (_iram_end > _sram1_iram_start)?(_iram_end - _sram1_iram_start):0x0 + 0x40000000 _heap_end = ALIGN (((0x40000000 - _sram1_iram_len) - 0x3), 0x4) + 0x3ff80000 _data_seg_org = ORIGIN (rtc_data_seg) + 0x00000001 ASSERT ((_rodata_start == ORIGIN (default_rodata_seg)), .flash.appdesc section must be placed at the beginning of the rodata segment.) + +.rtc.text 0x400c0000 0x0 + 0x400c0000 . = ALIGN (0x4) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + 0x400c0000 _rtc_text_end = ABSOLUTE (.) + +.rtc.dummy 0x3ff80000 0x0 + 0x3ff80000 _rtc_dummy_start = ABSOLUTE (.) + 0x3ff80000 _rtc_fast_start = ABSOLUTE (.) + 0x00000000 . = SIZEOF (.rtc.text) + 0x3ff80000 _rtc_dummy_end = ABSOLUTE (.) + +.rtc.force_fast + 0x3ff80000 0x0 + 0x3ff80000 . = ALIGN (0x4) + 0x3ff80000 _rtc_force_fast_start = ABSOLUTE (.) + 0x3ff80000 _coredump_rtc_fast_start = ABSOLUTE (.) + *(.rtc.fast.coredump .rtc.fast.coredump.*) + 0x3ff80000 _coredump_rtc_fast_end = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x3ff80000 . = ALIGN (0x4) + 0x3ff80000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x50000000 0x0 + 0x50000000 _rtc_data_start = ABSOLUTE (.) + 0x50000000 _coredump_rtc_start = ABSOLUTE (.) + *(.rtc.coredump .rtc.coredump.*) + 0x50000000 _coredump_rtc_end = ABSOLUTE (.) + *(.rtc.data .rtc.data.*) + *(.rtc.rodata .rtc.rodata.*) + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.*) + 0x50000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x50000000 0x0 + 0x50000000 _rtc_bss_start = ABSOLUTE (.) + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + *(.rtc.bss) + 0x50000000 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x50000000 0x0 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_noinit_start = ABSOLUTE (.) + *(.rtc_noinit .rtc_noinit.*) + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_noinit_end = ABSOLUTE (.) + +.rtc.force_slow + 0x50000000 0x0 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_force_slow_start = ABSOLUTE (.) + *(.rtc.force_slow .rtc.force_slow.*) + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_force_slow_end = ABSOLUTE (.) + +.rtc_fast_reserved + 0x3ff82000 0x0 + 0x3ff82000 . = ALIGN (0x4) + 0x3ff82000 _rtc_fast_reserved_start = ABSOLUTE (.) + *(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*) + 0x3ff82000 _rtc_fast_reserved_end = ABSOLUTE (.) + 0x00000000 _rtc_fast_reserved_length = (_rtc_fast_reserved_end - _rtc_fast_reserved_start) + 0x00000001 ASSERT ((_rtc_fast_reserved_length <= LENGTH (rtc_fast_reserved_seg)), RTC FAST reserved segment data does not fit.) + +.rtc_slow_reserved + 0x50001fe8 0x18 + 0x50001fe8 . = ALIGN (0x4) + 0x50001fe8 _rtc_slow_reserved_start = ABSOLUTE (.) + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + .rtc_timer_data_in_rtc_mem + 0x50001fe8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x50002000 _rtc_slow_reserved_end = ABSOLUTE (.) + 0x00000018 _rtc_slow_reserved_length = (_rtc_slow_reserved_end - _rtc_slow_reserved_start) + 0x00000018 _rtc_reserved_length = _rtc_slow_reserved_length + 0x00000001 ASSERT ((_rtc_slow_reserved_length <= LENGTH (rtc_slow_reserved_seg)), RTC SLOW reserved segment data does not fit.) + 0x00000000 _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) + 0x00000000 _rtc_fast_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_fast_end - _rtc_fast_start):(_rtc_noinit_end - _rtc_fast_start) + 0x00000000 ASSERT ((_rtc_slow_length <= LENGTH (rtc_slow_seg)), RTC_SLOW segment data does not fit.) + 0x00000000 ASSERT ((_rtc_fast_length <= LENGTH (rtc_data_seg)), RTC_FAST segment data does not fit.) + +.iram0.vectors 0x40080000 0x403 + 0x40080000 _iram_start = ABSOLUTE (.) + 0x40080000 _vector_table = ABSOLUTE (.) + 0x00000000 . = 0x0 + *(.WindowVectors.text) + .WindowVectors.text + 0x40080000 0x16a esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40080000 _WindowOverflow4 + 0x40080040 _WindowUnderflow4 + 0x40080050 _xt_alloca_exc + 0x40080080 _WindowOverflow8 + 0x400800c0 _WindowUnderflow8 + 0x40080100 _WindowOverflow12 + 0x40080140 _WindowUnderflow12 + 0x00000180 . = 0x180 + *fill* 0x4008016a 0x16 + *(.Level2InterruptVector.text) + .Level2InterruptVector.text + 0x40080180 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080180 _Level2Vector + 0x000001c0 . = 0x1c0 + *fill* 0x40080186 0x3a + *(.Level3InterruptVector.text) + .Level3InterruptVector.text + 0x400801c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x400801c0 _Level3Vector + 0x00000200 . = 0x200 + *fill* 0x400801c6 0x3a + *(.Level4InterruptVector.text) + .Level4InterruptVector.text + 0x40080200 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080200 _Level4Vector + 0x00000240 . = 0x240 + *fill* 0x40080206 0x3a + *(.Level5InterruptVector.text) + .Level5InterruptVector.text + 0x40080240 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080240 _Level5Vector + 0x00000280 . = 0x280 + *fill* 0x40080246 0x3a + *(.DebugExceptionVector.text) + .DebugExceptionVector.text + 0x40080280 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40080280 _DebugExceptionVector + 0x000002c0 . = 0x2c0 + *fill* 0x40080286 0x3a + *(.NMIExceptionVector.text) + .NMIExceptionVector.text + 0x400802c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x400802c0 _NMIExceptionVector + 0x00000300 . = 0x300 + *fill* 0x400802c6 0x3a + *(.KernelExceptionVector.text) + .KernelExceptionVector.text + 0x40080300 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080300 _KernelExceptionVector + 0x00000340 . = 0x340 + *fill* 0x40080306 0x3a + *(.UserExceptionVector.text) + .UserExceptionVector.text + 0x40080340 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080340 _UserExceptionVector + 0x000003c0 . = 0x3c0 + *fill* 0x40080346 0x7a + *(.DoubleExceptionVector.text) + .DoubleExceptionVector.text + 0x400803c0 0xe esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x11 (size before relaxing) + 0x400803c0 _DoubleExceptionVector + 0x00000400 . = 0x400 + *fill* 0x400803ce 0x32 + 0x40080400 _invalid_pc_placeholder = ABSOLUTE (.) + *(.*Vector.literal) + .DoubleExceptionVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .KernelExceptionVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .UserExceptionVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level2InterruptVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level3InterruptVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level4InterruptVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level5InterruptVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .NMIExceptionVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + *(.UserEnter.literal) + *(.UserEnter.text) + 0x40080400 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + .init 0x40080400 0x3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + 0x40080400 _init + 0x40080403 _init_end = ABSOLUTE (.) + +.iram0.text 0x40080404 0x1769b + 0x40080404 _iram_text_start = ABSOLUTE (.) + *(.iram1 .iram1.*) + .iram1.7.literal + 0x40080404 0x34 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x3c (size before relaxing) + .iram1.8.literal + 0x40080438 0x1c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x40 (size before relaxing) + .iram1.9.literal + 0x40080454 0x64 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xb8 (size before relaxing) + .iram1.1.literal + 0x400804b8 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x18 (size before relaxing) + .iram1.7.literal + 0x400804bc 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x14 (size before relaxing) + .iram1.2.literal + 0x400804cc 0x1c esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x2c (size before relaxing) + .iram1.3.literal + 0x400804e8 0xc esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x38 (size before relaxing) + .iram1.5.literal + 0x400804f4 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x400804f4 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .iram1.literal + 0x400804fc 0x10 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x1c (size before relaxing) + .iram1.0.literal + 0x4008050c 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x1c (size before relaxing) + .iram1.1.literal + 0x40080510 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .iram1.1.literal + 0x40080518 0xc esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40080524 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40080524 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x40080528 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x40080528 0xc esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x28 (size before relaxing) + .iram1.literal + 0x40080534 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x24 (size before relaxing) + .iram1.1.literal + 0x4008053c 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x40080550 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40080550 0x2c esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.3.literal + 0x4008057c 0x10 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x60 (size before relaxing) + .iram1.4.literal + 0x4008058c 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0xc (size before relaxing) + .iram1.literal + 0x4008058c 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x4008058c 0x14 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x28 (size before relaxing) + .iram1.8.literal + 0x400805a0 0x2c esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x9c (size before relaxing) + .iram1.0.literal + 0x400805cc 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .iram1.2.literal + 0x400805d0 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x400805d8 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x400805d8 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x400805d8 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x400805dc 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x400805dc 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.9.literal + 0x400805e0 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.0.literal + 0x400805e4 0x28 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x3c (size before relaxing) + .iram1.2.literal + 0x4008060c 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x1c (size before relaxing) + .iram1.13.literal + 0x40080610 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x40080610 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x40080614 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x28 (size before relaxing) + .iram1.10.literal + 0x40080628 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .iram1.11.literal + 0x40080634 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x50 (size before relaxing) + .iram1.12.literal + 0x40080644 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.5.literal + 0x40080648 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x28 (size before relaxing) + .iram1.14.literal + 0x4008064c 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x40080650 0x4 esp-idf/soc/libsoc.a(dport_access.c.obj) + .iram1.1.literal + 0x40080654 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x40080654 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.2.literal + 0x4008065c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40080664 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x40080668 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x34 (size before relaxing) + .iram1.5.literal + 0x40080674 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .iram1.8.literal + 0x40080674 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x40080674 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .iram1.9.literal + 0x40080678 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x40080678 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + .iram1.0.literal + 0x40080684 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x40080688 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x40080688 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x4008068c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .iram1.5.literal + 0x4008068c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x24 (size before relaxing) + .iram1.6.literal + 0x40080690 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x24 (size before relaxing) + .iram1.5.literal + 0x40080690 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x20 (size before relaxing) + .iram1.6.literal + 0x400806a0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x10 (size before relaxing) + .iram1.7.literal + 0x400806ac 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x400806ac 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .iram1.3.literal + 0x400806b4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .iram1.4.literal + 0x400806b8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .iram1.4.literal + 0x400806bc 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .iram1.0.literal + 0x400806c0 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + .iram1.16.literal + 0x400806c4 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x400806d0 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x34 (size before relaxing) + .iram1.9.literal + 0x400806d8 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x28 (size before relaxing) + .iram1.1.literal + 0x400806e0 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x400806e0 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x400806e0 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x24 (size before relaxing) + .iram1.5.literal + 0x400806e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x400806e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x400806e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x400806e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x400806e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x400806e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x400806e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.15.literal + 0x400806e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.18.literal + 0x400806e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.22.literal + 0x400806e8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x400806e8 0x4 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x400806ec 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .iram1.0.literal + 0x400806f8 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .iram1.7.literal + 0x400806f8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x400806fc 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18 (size before relaxing) + .iram1.8.literal + 0x4008070c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.5.literal + 0x4008070c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.9.literal + 0x4008070c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40080710 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18 (size before relaxing) + .iram1.2.literal + 0x40080710 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x20 (size before relaxing) + .iram1.3.literal + 0x40080710 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x14 (size before relaxing) + .iram1.0.literal + 0x40080710 0x4 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x40080714 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.0.literal + 0x4008071c 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.1.literal + 0x4008072c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x4008072c 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x48 (size before relaxing) + .iram1.4.literal + 0x4008074c 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x2c (size before relaxing) + .iram1.1.literal + 0x4008075c 0x80 esp-idf/main/libmain.a(station_example_main.c.obj) + 0xb0 (size before relaxing) + .iram1.0.literal + 0x400807dc 0xc esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x34 (size before relaxing) + .iram1.1.literal + 0x400807e8 0x8 esp-idf/main/libmain.a(button.c.obj) + 0x14 (size before relaxing) + .iram1.0.literal + 0x400807f0 0x10 esp-idf/main/libmain.a(button.c.obj) + 0x28 (size before relaxing) + .iram1.0.literal + 0x40080800 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x40080804 0x44 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0xac (size before relaxing) + .iram1.2.literal + 0x40080848 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x40080848 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x70 (size before relaxing) + .iram1.4.literal + 0x40080878 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x10 (size before relaxing) + .iram1.16.literal + 0x40080878 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40080878 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.3.literal + 0x4008087c 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x4008087c 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.1.literal + 0x40080880 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x40080880 0x8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x50 (size before relaxing) + .iram1.1.literal + 0x40080888 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x40 (size before relaxing) + .iram1.2.literal + 0x400808c0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x400808c0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.12.literal + 0x400808c0 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x18 (size before relaxing) + .iram1.6.literal + 0x400808c4 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.7.literal + 0x400808d4 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .iram1.8.literal + 0x400808d8 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x60 (size before relaxing) + .iram1.9.literal + 0x40080910 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x14 (size before relaxing) + .iram1.0.literal + 0x40080920 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080920 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4 (size before relaxing) + .iram1.12.literal + 0x40080920 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080920 0x40 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x70 (size before relaxing) + .iram1.13.literal + 0x40080960 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40080960 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.8.literal + 0x40080964 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x44 (size before relaxing) + .iram1.11.literal + 0x40080974 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x24 (size before relaxing) + .iram1.14.literal + 0x40080980 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080980 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x40080980 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x14 (size before relaxing) + .iram1.8.literal + 0x40080988 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.10.literal + 0x4008098c 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x40080990 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.5.literal + 0x40080994 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .iram1.12.literal + 0x4008099c 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .iram1.10.literal + 0x400809a8 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .iram1.13.literal + 0x400809a8 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .iram1.9.literal + 0x400809ac 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x5c (size before relaxing) + .iram1.16.literal + 0x400809c8 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .iram1.21.literal + 0x400809d8 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x18 (size before relaxing) + .iram1.22.literal + 0x400809dc 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3c (size before relaxing) + .iram1.25.literal + 0x400809e8 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + .iram1.28.literal + 0x400809f0 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x5c (size before relaxing) + .iram1.9.literal + 0x40080a04 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .iram1.17.literal + 0x40080a04 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .iram1.8.literal + 0x40080a0c 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x14 (size before relaxing) + .iram1.12.literal + 0x40080a18 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x40080a18 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.10.literal + 0x40080a20 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.14.literal + 0x40080a20 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x40080a20 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.0.literal + 0x40080a28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080a28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x40080a28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40080a28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x40080a28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080a28 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.6.literal + 0x40080a2c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.1.literal + 0x40080a2c 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x40080a3c 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x40080a4c 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40080a4c 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080a4c 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x40080a4c 0x1c esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x30 (size before relaxing) + .iram1.literal + 0x40080a68 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40080a68 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x8 (size before relaxing) + .iram1.10.literal + 0x40080a6c 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.2.literal + 0x40080a70 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x40080a70 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x40080a70 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x40080a70 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.16.literal + 0x40080a70 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.15.literal + 0x40080a74 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.14.literal + 0x40080a74 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.13.literal + 0x40080a74 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x40080a74 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080a74 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.9.literal + 0x40080a74 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x40080a74 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080a74 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080a74 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40080a7c 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .iram1.1.literal + 0x40080a80 0x18 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x34 (size before relaxing) + .iram1.2.literal + 0x40080a98 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x34 (size before relaxing) + .iram1.3.literal + 0x40080a9c 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x40080a9c 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x10 (size before relaxing) + .iram1.3.literal + 0x40080aa0 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x40080aa0 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x40080aa0 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40080aa0 0x14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x38 (size before relaxing) + .iram1.6.literal + 0x40080ab4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x40080ab4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x40080ab4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xc (size before relaxing) + .iram1.3.literal + 0x40080ab4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x40080ab4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x40080ab4 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_cpu_stall + 0x40080ab4 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_cpu_unstall + 0x40080ad0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_gpio_reserve_pins + 0x40080ad4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .literal.esp_ptr_byte_accessible + 0x40080ad8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x8 (size before relaxing) + .literal.periph_module_reset + 0x40080adc 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x30 (size before relaxing) + .literal.wifi_module_disable + 0x40080aec 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.wifi_module_enable + 0x40080af0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.rtc_clk_32k_enable_common + 0x40080af4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_disable + 0x40080b08 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_enable + 0x40080b10 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_bbpll_configure + 0x40080b14 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x3c (size before relaxing) + .literal.rtc_clk_32k_enable + 0x40080b20 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_32k_enable_external + 0x40080b28 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x40080b28 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8md256_enabled + 0x40080b30 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_apll_enable + 0x40080b30 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x24 (size before relaxing) + .literal.rtc_clk_apll_coeff_set + 0x40080b38 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x40080b38 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x40080b38 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x40080b38 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x40080b44 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x40080b48 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_calc + 0x40080b4c 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc4 (size before relaxing) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x40080b94 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_get_config + 0x40080b94 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x40080ba0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_xtal + 0x40080ba4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x34 (size before relaxing) + .literal.rtc_clk_cpu_set_to_default_config + 0x40080bb8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x40080bb8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x34 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_8m + 0x40080bc0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x40080bc8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .literal.rtc_clk_cal_internal + 0x40080bc8 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x74 (size before relaxing) + .literal.rtc_clk_cal + 0x40080bf8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x24 (size before relaxing) + .literal.rtc_time_get + 0x40080c00 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x24 (size before relaxing) + .literal.rtc_clk_wait_for_slow_cycle + 0x40080c10 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_freq_cal + 0x40080c1c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x8 (size before relaxing) + .literal.enable_timer_group0_for_calibration + 0x40080c20 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x24 (size before relaxing) + .literal.cache_sync + 0x40080c30 0x4 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .literal.prvAcquireItemNoSplit + 0x40080c34 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x20 (size before relaxing) + .literal.prvReceiveGeneric + 0x40080c48 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x34 (size before relaxing) + .literal.prvSendAcquireGeneric + 0x40080c54 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.xRingbufferSend + 0x40080c54 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x1c (size before relaxing) + .literal.xRingbufferReceive + 0x40080c60 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x14 (size before relaxing) + .literal.vRingbufferReturnItem + 0x40080c68 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.esp_error_check_failed_print + 0x40080c70 0x14 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x28 (size before relaxing) + .literal._esp_error_check_failed + 0x40080c84 0x8 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x10 (size before relaxing) + .literal.esp_system_abort + 0x40080c8c 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x4 (size before relaxing) + .literal.wifi_sta_receive + 0x40080c8c 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.wifi_transmit_wrap + 0x40080c94 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.prvCopyDataToQueue + 0x40080c98 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvCopyDataFromQueue + 0x40080c98 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.prvNotifyQueueSetContainer + 0x40080c98 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40 (size before relaxing) + .literal.xQueueGenericReset + 0x40080cb0 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.prvInitialiseNewQueue + 0x40080cc0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.xQueueGenericCreateStatic + 0x40080cc0 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x24 (size before relaxing) + .literal.xQueueGenericCreate + 0x40080cd0 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGetMutexHolder + 0x40080cd4 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateCountingSemaphore + 0x40080cdc 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x14 (size before relaxing) + .literal.xQueueGenericSend + 0x40080ce4 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x68 (size before relaxing) + .literal.prvInitialiseMutex + 0x40080cf4 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateMutex + 0x40080d00 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueCreateMutexStatic + 0x40080d00 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGiveMutexRecursive + 0x40080d00 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGenericSendFromISR + 0x40080d08 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.xQueueGiveFromISR + 0x40080d0c 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.xQueueReceive + 0x40080d18 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x54 (size before relaxing) + .literal.xQueueSemaphoreTake + 0x40080d24 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x60 (size before relaxing) + .literal.xQueueTakeMutexRecursive + 0x40080d28 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueReceiveFromISR + 0x40080d2c 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.uxQueueMessagesWaiting + 0x40080d3c 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.vQueueDelete + 0x40080d48 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueIsQueueFullFromISR + 0x40080d50 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x14 (size before relaxing) + .literal.vQueueWaitForMessageRestricted + 0x40080d58 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.vPortTaskWrapper + 0x40080d58 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x18 (size before relaxing) + .literal.vPortTLSPointersDelCb + 0x40080d60 0x10 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x38 (size before relaxing) + .literal.vPortCleanUpCoprocArea + 0x40080d70 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.xPortStartScheduler + 0x40080d70 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x10 (size before relaxing) + .literal.pxPortInitialiseStack + 0x40080d74 0x24 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x34 (size before relaxing) + .literal.xPortInIsrContext + 0x40080d98 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.xPortEnterCriticalTimeout + 0x40080d98 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x5c (size before relaxing) + .literal.vPortExitCritical + 0x40080dc8 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + .literal.vPortYieldOtherCore + 0x40080dd4 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.vApplicationStackOverflowHook + 0x40080dd4 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.vPortTCBPreDeleteHook + 0x40080de0 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal 0x40080de0 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0xa4 (size before relaxing) + .literal._xt_tick_divisor_init + 0x40080e04 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0xc (size before relaxing) + .literal.pvPortMalloc + 0x40080e08 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x8 (size before relaxing) + .literal.vPortFree + 0x40080e08 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4 (size before relaxing) + .literal.xPortCheckValidTCBMem + 0x40080e08 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x14 (size before relaxing) + .literal.xPortcheckValidStackMem + 0x40080e10 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x14 (size before relaxing) + .literal.vApplicationGetIdleTaskMemory + 0x40080e10 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x20 (size before relaxing) + .literal.vApplicationGetTimerTaskMemory + 0x40080e20 0x8 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x24 (size before relaxing) + .literal.vPortSetupTimer + 0x40080e28 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x8 (size before relaxing) + .literal.xPortSysTickHandler + 0x40080e28 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x10 (size before relaxing) + .literal.xEventGroupCreate + 0x40080e28 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x1c (size before relaxing) + .literal.xEventGroupWaitBits + 0x40080e34 0x20 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x5c (size before relaxing) + .literal.xEventGroupClearBits + 0x40080e54 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x24 (size before relaxing) + .literal.xEventGroupSetBits + 0x40080e5c 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x34 (size before relaxing) + .literal.vEventGroupDelete + 0x40080e68 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x34 (size before relaxing) + .literal.prvGetNextExpireTime + 0x40080e74 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.prvInsertTimerInActiveList + 0x40080e78 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x10 (size before relaxing) + .literal.prvReloadTimer + 0x40080e7c 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x4 (size before relaxing) + .literal.prvProcessExpiredTimer + 0x40080e7c 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xc (size before relaxing) + .literal.prvSwitchTimerLists + 0x40080e7c 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xc (size before relaxing) + .literal.prvSampleTimeNow + 0x40080e7c 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xc (size before relaxing) + .literal.prvProcessTimerOrBlockTask + 0x40080e80 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x2c (size before relaxing) + .literal.prvProcessReceivedCommands + 0x40080e88 0xc esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x30 (size before relaxing) + .literal.prvTimerTask + 0x40080e94 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xc (size before relaxing) + .literal.prvCheckForValidListAndQueue + 0x40080e94 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x34 (size before relaxing) + .literal.xTimerCreateTimerTask + 0x40080ea4 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x2c (size before relaxing) + .literal.prvCheckTaskCanBeScheduledSMP + 0x40080eb8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvResetNextTaskUnblockTime + 0x40080ec0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvIsYieldRequiredSMP + 0x40080ec8 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.prvSelectHighestPriorityTaskSMP + 0x40080ed4 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.prvDeleteTCB + 0x40080ee8 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvCheckTasksWaitingTermination + 0x40080ef8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvAddCurrentTaskToDelayedList + 0x40080f0c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvIdleTask + 0x40080f18 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvInitialiseNewTask + 0x40080f1c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.prvInitialiseTaskLists + 0x40080f24 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.prvAddNewTaskToReadyList + 0x40080f30 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.vTaskSuspendAll + 0x40080f3c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.xTaskGetTickCount + 0x40080f3c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetTickCountFromISR + 0x40080f3c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.xTaskIncrementTick + 0x40080f3c 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x70 (size before relaxing) + .literal.vTaskSwitchContext + 0x40080f5c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.vTaskPlaceOnEventList + 0x40080f68 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.vTaskPlaceOnUnorderedEventList + 0x40080f74 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.vTaskPlaceOnEventListRestricted + 0x40080f7c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskRemoveFromEventList + 0x40080f84 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.vTaskRemoveFromUnorderedEventList + 0x40080f98 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x44 (size before relaxing) + .literal.vTaskInternalSetTimeOutState + 0x40080fa8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskCheckForTimeOut + 0x40080fa8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskGetCurrentTaskHandle + 0x40080fbc 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.uxTaskPriorityGet + 0x40080fbc 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.vTaskPrioritySet + 0x40080fbc 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vTaskSuspend + 0x40080fc4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.pcTaskGetName + 0x40080fcc 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.pvTaskGetThreadLocalStoragePointer + 0x40080fd8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetSchedulerState + 0x40080fd8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .literal.vTaskDelete + 0x40080fd8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x60 (size before relaxing) + .literal.vTaskDelay + 0x40080fe0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskResumeAll + 0x40080fe4 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.xTaskPriorityInherit + 0x40080ff0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskPriorityDisinherit + 0x40080ff0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vTaskPriorityDisinheritAfterTimeout + 0x40081004 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.uxTaskResetEventItemValue + 0x40081014 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.pvTaskIncrementMutexHeldCount + 0x40081014 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.ulTaskGenericNotifyTake + 0x40081014 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.xTaskGenericNotifyWait + 0x40081020 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.xTaskGenericNotify + 0x40081028 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x58 (size before relaxing) + .literal.vTaskGenericNotifyGiveFromISR + 0x4008104c 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.prvTakeKernelLock + 0x4008105c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvReleaseKernelLock + 0x4008105c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskIncrementTickOtherCores + 0x4008105c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.xTaskCreatePinnedToCore + 0x40081068 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.xTaskCreateStaticPinnedToCore + 0x40081070 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.prvCreateIdleTasks + 0x40081080 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.vTaskStartScheduler + 0x4008108c 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskGetCoreID + 0x4008109c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetIdleTaskHandleForCore + 0x4008109c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskGetCurrentTaskHandleForCore + 0x400810a8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.prvTaskPriorityRaise + 0x400810ac 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.prvTaskPriorityRestore + 0x400810b4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x400810b4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.__getreent + 0x400810b4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskGetSnapshot + 0x400810b4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.cache_hal_suspend + 0x400810b4 0x14 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x34 (size before relaxing) + .literal.cache_hal_resume + 0x400810c8 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x24 (size before relaxing) + .literal.cache_hal_is_cache_enabled + 0x400810c8 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x10 (size before relaxing) + .literal.mmu_ll_check_entry_valid + 0x400810c8 0x10 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x18 (size before relaxing) + .literal.mmu_ll_get_entry_target + 0x400810d8 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x1c (size before relaxing) + .literal.mmu_ll_entry_id_to_paddr_base + 0x400810e0 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x18 (size before relaxing) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x400810e4 0x20 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x30 (size before relaxing) + .literal.mmu_hal_map_region + 0x40081104 0x2c esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x78 (size before relaxing) + .literal.mmu_hal_unmap_region + 0x40081130 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x68 (size before relaxing) + .literal.mmu_hal_vaddr_to_paddr + 0x40081138 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x54 (size before relaxing) + .literal.spi_flash_encrypt_ll_enable + 0x40081140 0x4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_encrypt_ll_disable + 0x40081144 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_encrypt_ll_plaintext_save + 0x40081144 0x18 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_encryption_hal_enable + 0x4008115c 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_disable + 0x4008115c 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_prepare + 0x4008115c 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_encryption_hal_done + 0x40081164 0x4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_ll_set_read_mode + 0x40081168 0x8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_ll_set_buffer_data + 0x40081170 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_ll_get_buffer_data + 0x40081170 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_configure_host_io_mode + 0x40081170 0x8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_hal_common_command + 0x40081178 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_read + 0x40081178 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_erase_chip + 0x40081178 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_erase_sector + 0x40081178 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_erase_block + 0x4008117c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_program_page + 0x4008117c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_set_write_protect + 0x4008117c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_check_status + 0x4008117c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_resume + 0x4008117c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_suspend + 0x4008117c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_init + 0x4008117c 0x3c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x54 (size before relaxing) + .literal.wdt_hal_config_stage + 0x400811b8 0xc esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x34 (size before relaxing) + .literal.wdt_hal_write_protect_disable + 0x400811c4 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_enable + 0x400811c4 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_handle_intr + 0x400811c4 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_feed + 0x400811c4 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_set_flashboot_en + 0x400811c4 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.assert_valid_block + 0x400811c4 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_free_impl + 0x400811c8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_allocated_size_impl + 0x400811c8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_internal_lock + 0x400811c8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xc (size before relaxing) + .literal.multi_heap_internal_unlock + 0x400811c8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xc (size before relaxing) + .literal.multi_heap_malloc_impl + 0x400811c8 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x14 (size before relaxing) + .literal.multi_heap_realloc_impl + 0x400811c8 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2c (size before relaxing) + .literal.tlsf_free + 0x400811d4 0x54 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xa0 (size before relaxing) + .literal.tlsf_get_pool + 0x40081228 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_malloc + 0x40081228 0x30 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x94 (size before relaxing) + .literal.tlsf_realloc + 0x40081258 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0xd4 (size before relaxing) + .literal.esp_log_write + 0x40081264 0x4 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_early_timestamp + 0x40081268 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_impl_lock + 0x40081268 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_lock_timeout + 0x4008126c 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_unlock + 0x4008126c 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0xc (size before relaxing) + .literal.esp_log_timestamp + 0x4008126c 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1c (size before relaxing) + .literal.abort + 0x40081270 0x10 esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x28 (size before relaxing) + .literal.ra_to_str + 0x40081280 0x4 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x8 (size before relaxing) + .literal.__assert_func + 0x40081284 0x20 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x40 (size before relaxing) + .literal.malloc + 0x400812a4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.realloc + 0x400812a4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free 0x400812a4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._malloc_r + 0x400812a4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._free_r + 0x400812a4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._realloc_r + 0x400812a4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._calloc_r + 0x400812a4 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.calloc + 0x400812a8 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_needs_reset_check + 0x400812a8 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_set_erasing_flag + 0x400812ac 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .literal.spi_flash_brownout_need_reset + 0x400812b0 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_read_status_hs + 0x400812b0 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_read_id_hs + 0x400812b0 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x1c (size before relaxing) + .literal.memspi_host_flush_cache + 0x400812bc 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_init_pointers + 0x400812bc 0x8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_gd_detect_size + 0x400812c4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_suspend_cmd_conf + 0x400812c8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_gd_set_io_mode + 0x400812c8 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_chip_gd_get_io_mode + 0x400812dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_detect_size + 0x400812dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_reset + 0x400812dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x400812dc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_write_encrypted + 0x400812e4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_common_read_qe_sr + 0x400812e8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_qe_sr + 0x400812e8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x400812e8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_common_write_status_16b_wrsr + 0x400812e8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x400812e8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_generic_write + 0x400812f0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_get_write_protect + 0x400812f0 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_yield + 0x400812fc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_suspend_cmd_conf + 0x400812fc 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_generic_read_unique_id + 0x40081300 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x40081308 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_get_io_mode + 0x40081308 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr + 0x40081308 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr + 0x40081308 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr2 + 0x40081308 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_set_io_mode + 0x40081308 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_probe + 0x40081308 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_issi_set_io_mode + 0x4008130c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_get_io_mode + 0x40081314 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_detect_size + 0x40081314 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_command_winbond_program_4B + 0x40081314 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_page_program + 0x40081314 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_winbond_erase_sector_4B + 0x40081314 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_sector + 0x40081314 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_erase_block_4B + 0x40081314 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_block + 0x40081314 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_read + 0x40081314 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x1c (size before relaxing) + .literal 0x4008131c 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x4 (size before relaxing) + .literal 0x4008131c 0x4 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x2c (size before relaxing) + .iram1.7 0x40081320 0x97 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x9f (size before relaxing) + 0x40081320 call_start_cpu1 + *fill* 0x400813b7 0x1 + .iram1.8 0x400813b8 0x102 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x11a (size before relaxing) + 0x400813b8 do_multicore_settings + *fill* 0x400814ba 0x2 + .iram1.9 0x400814bc 0x1af esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x1cb (size before relaxing) + 0x400814bc call_start_cpu0 + *fill* 0x4008166b 0x1 + .iram1.1 0x4008166c 0x37 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x47 (size before relaxing) + 0x4008166c esp_restart_noos_dig + *fill* 0x400816a3 0x1 + .iram1.7 0x400816a4 0x5d esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x61 (size before relaxing) + *fill* 0x40081701 0x3 + .iram1.2 0x40081704 0x6e esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x76 (size before relaxing) + 0x40081704 esp_ipc_isr_stall_other_cpu + *fill* 0x40081772 0x2 + .iram1.3 0x40081774 0x83 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x8e (size before relaxing) + 0x40081774 esp_ipc_isr_release_other_cpu + *fill* 0x400817f7 0x1 + .iram1.5 0x400817f8 0xf esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x400817f8 esp_ipc_isr_stall_abort + *fill* 0x40081807 0x1 + .iram1.0 0x40081808 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x40081808 esp_ipc_isr_port_int_trigger + .iram1 0x40081828 0x91 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x95 (size before relaxing) + 0x40081828 xt_highint4 + 0x400818b9 ld_include_highint_hdl + *fill* 0x400818b9 0x3 + .iram1.0 0x400818bc 0x62 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x72 (size before relaxing) + *fill* 0x4008191e 0x2 + .iram1.1 0x40081920 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x40081920 panic_abort + *fill* 0x4008193a 0x2 + .iram1.1 0x4008193c 0x2a esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x4008193c start_cpu_other_cores + *fill* 0x40081966 0x2 + .iram1.0 0x40081968 0x1a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x22 (size before relaxing) + *fill* 0x40081982 0x2 + .iram1.1 0x40081984 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x40081984 panicHandler + *fill* 0x40081996 0x2 + .iram1.2 0x40081998 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x40081998 xt_unhandled_exception + *fill* 0x400819aa 0x2 + .iram1.1 0x400819ac 0x53 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x62 (size before relaxing) + *fill* 0x400819ff 0x1 + .iram1 0x40081a00 0x63 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x40081a00 esp_ipc_isr_handler + *fill* 0x40081a63 0x1 + .iram1.1 0x40081a64 0x3b esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + *fill* 0x40081a9f 0x1 + .iram1.2 0x40081aa0 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.0 0x40081ab8 0x99 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x40081ab8 esp_backtrace_get_next_frame + *fill* 0x40081b51 0x3 + .iram1.3 0x40081b54 0x16e esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x176 (size before relaxing) + 0x40081b54 esp_backtrace_print_from_frame + *fill* 0x40081cc2 0x2 + .iram1.4 0x40081cc4 0x28 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x2c (size before relaxing) + 0x40081cc4 esp_backtrace_print + .iram1 0x40081cec 0x1d esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x40081cec esp_backtrace_get_start + *fill* 0x40081d09 0x3 + .iram1.7 0x40081d0c 0x8b esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x97 (size before relaxing) + 0x40081d0c esp_system_reset_modules_on_exit + *fill* 0x40081d97 0x1 + .iram1.8 0x40081d98 0x133 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x177 (size before relaxing) + 0x40081d98 esp_restart_noos + *fill* 0x40081ecb 0x1 + .iram1.0 0x40081ecc 0x27 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x40081ecc esp_vApplicationTickHook + *fill* 0x40081ef3 0x1 + .iram1.2 0x40081ef4 0x4b esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0x40081ef4 esp_rom_uart_tx_wait_idle + *fill* 0x40081f3f 0x1 + .iram1.0 0x40081f40 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x40081f40 efuse_hal_chip_revision + .iram1.3 0x40081f58 0x28 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40081f58 efuse_hal_flash_encryption_enabled + .iram1.0 0x40081f80 0x49 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40081f80 efuse_hal_get_major_chip_version + *fill* 0x40081fc9 0x3 + .iram1.1 0x40081fcc 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40081fcc efuse_hal_get_minor_chip_version + .iram1.1 0x40081fdc 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x40081ff2 0x2 + .iram1.9 0x40081ff4 0x23 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x40082017 0x1 + .iram1.0 0x40082018 0x89 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x99 (size before relaxing) + *fill* 0x400820a1 0x3 + .iram1.2 0x400820a4 0xa8 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xac (size before relaxing) + .iram1.13 0x4008214c 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x34 (size before relaxing) + .iram1.3 0x4008217c 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x30 (size before relaxing) + 0x4008217c heap_caps_malloc + .iram1.4 0x400821a8 0x70 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x78 (size before relaxing) + 0x400821a8 heap_caps_malloc_default + .iram1.10 0x40082218 0x37 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x3e (size before relaxing) + 0x40082218 heap_caps_free + *fill* 0x4008224f 0x1 + .iram1.11 0x40082250 0x108 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x124 (size before relaxing) + .iram1.12 0x40082358 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x30 (size before relaxing) + 0x40082358 heap_caps_realloc + .iram1.5 0x40082384 0x7c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x80 (size before relaxing) + 0x40082384 heap_caps_realloc_default + .iram1.14 0x40082400 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x32 (size before relaxing) + 0x40082400 heap_caps_calloc + *fill* 0x4008242e 0x2 + .iram1.0 0x40082430 0x15 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x40082430 esp_dport_access_reg_read + *fill* 0x40082445 0x3 + .iram1.1 0x40082448 0xc esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x40082448 esp_dport_access_sequence_reg_read + .iram1.1 0x40082454 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40082454 esp_clk_cpu_freq + .iram1.2 0x40082464 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40082464 esp_clk_apb_freq + *fill* 0x4008247e 0x2 + .iram1.0 0x40082480 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + *fill* 0x400824b9 0x3 + .iram1.4 0x400824bc 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x8f (size before relaxing) + 0x400824bc esp_intr_noniram_disable + *fill* 0x40082530 0x0 + .iram1.5 0x40082530 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x7b (size before relaxing) + 0x40082530 esp_intr_noniram_enable + *fill* 0x40082594 0x0 + .iram1.8 0x40082594 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x40082594 esp_intr_enable_source + *fill* 0x400825a4 0x0 + .iram1.2 0x400825a4 0xba esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xce (size before relaxing) + 0x400825a4 esp_intr_enable + *fill* 0x4008265e 0x2 + .iram1.9 0x40082660 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x40082660 esp_intr_disable_source + *fill* 0x40082670 0x0 + .iram1.3 0x40082670 0xf6 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x10e (size before relaxing) + 0x40082670 esp_intr_disable + *fill* 0x40082766 0x2 + .iram1.0 0x40082768 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x40082783 0x1 + .iram1.1 0x40082784 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x4008279f 0x1 + .iram1.3 0x400827a0 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x2a (size before relaxing) + 0x400827a0 periph_rcc_enter + *fill* 0x400827bf 0x1 + .iram1.4 0x400827c0 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x23 (size before relaxing) + 0x400827c0 periph_rcc_exit + *fill* 0x400827dc 0x0 + .iram1.5 0x400827dc 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x63 (size before relaxing) + 0x400827dc wifi_bt_common_module_enable + *fill* 0x4008282c 0x0 + .iram1.6 0x4008282c 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x5f (size before relaxing) + 0x4008282c wifi_bt_common_module_disable + *fill* 0x40082874 0x0 + .iram1.5 0x40082874 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x58 (size before relaxing) + .iram1.6 0x400828c0 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x400828c0 rtc_isr_noniram_disable + *fill* 0x400828f2 0x2 + .iram1.7 0x400828f4 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x400828f4 rtc_isr_noniram_enable + *fill* 0x40082912 0x2 + .iram1.2 0x40082914 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x67 (size before relaxing) + 0x40082914 regi2c_ctrl_read_reg_mask + *fill* 0x4008296c 0x0 + .iram1.3 0x4008296c 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x63 (size before relaxing) + 0x4008296c regi2c_ctrl_write_reg + *fill* 0x400829bc 0x0 + .iram1.4 0x400829bc 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x6b (size before relaxing) + 0x400829bc regi2c_ctrl_write_reg_mask + *fill* 0x40082a18 0x0 + .iram1.4 0x40082a18 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40082a18 xPortInterruptedFromISRContext + *fill* 0x40082a32 0x2 + .iram1.0 0x40082a34 0x24 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x2f (size before relaxing) + *fill* 0x40082a58 0x0 + .iram1.16 0x40082a58 0x17 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x1a (size before relaxing) + *fill* 0x40082a6f 0x1 + .iram1.4 0x40082a70 0xa5 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xb9 (size before relaxing) + *fill* 0x40082b15 0x3 + .iram1.9 0x40082b18 0x5e esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x6a (size before relaxing) + *fill* 0x40082b76 0x2 + .iram1.1 0x40082b78 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40082b78 _lock_init + *fill* 0x40082b8b 0x1 + .iram1.2 0x40082b8c 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40082b8c _lock_init_recursive + *fill* 0x40082b9f 0x1 + .iram1.3 0x40082ba0 0x37 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x47 (size before relaxing) + 0x40082ba0 _lock_close_recursive + 0x40082ba0 _lock_close + *fill* 0x40082bd7 0x1 + .iram1.5 0x40082bd8 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x40082bd8 _lock_acquire + *fill* 0x40082be6 0x2 + .iram1.6 0x40082be8 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x40082be8 _lock_acquire_recursive + *fill* 0x40082bf6 0x2 + .iram1.7 0x40082bf8 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x40082bf8 _lock_try_acquire + .iram1.8 0x40082c08 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x40082c08 _lock_try_acquire_recursive + .iram1.10 0x40082c18 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40082c18 _lock_release + *fill* 0x40082c27 0x1 + .iram1.11 0x40082c28 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40082c28 _lock_release_recursive + *fill* 0x40082c37 0x1 + .iram1.13 0x40082c38 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40082c38 __retarget_lock_init_recursive + *fill* 0x40082c4b 0x1 + .iram1.15 0x40082c4c 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40082c4c __retarget_lock_close_recursive + *fill* 0x40082c5b 0x1 + .iram1.18 0x40082c5c 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x40082c5c __retarget_lock_acquire_recursive + *fill* 0x40082c6f 0x1 + .iram1.22 0x40082c70 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x40082c70 __retarget_lock_release_recursive + *fill* 0x40082c83 0x1 + .iram1.0 0x40082c84 0x29 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x40082c84 esp_reent_init + *fill* 0x40082cad 0x3 + .iram1.1 0x40082cb0 0x4a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x40082cb0 _gettimeofday_r + *fill* 0x40082cfa 0x2 + .iram1.0 0x40082cfc 0x28 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2c (size before relaxing) + 0x40082cfc _times_r + .iram1.7 0x40082d24 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x2c (size before relaxing) + .iram1.4 0x40082d4c 0x94 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.8 0x40082de0 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x26 (size before relaxing) + *fill* 0x40082dff 0x1 + .iram1.5 0x40082e00 0x61 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x65 (size before relaxing) + *fill* 0x40082e61 0x3 + .iram1.9 0x40082e64 0x1e esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x22 (size before relaxing) + *fill* 0x40082e82 0x2 + .iram1.1 0x40082e84 0x65 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x75 (size before relaxing) + 0x40082e84 esp_timer_start_once + *fill* 0x40082ee9 0x3 + .iram1.2 0x40082eec 0x85 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x99 (size before relaxing) + 0x40082eec esp_timer_start_periodic + *fill* 0x40082f71 0x3 + .iram1.3 0x40082f74 0x41 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4d (size before relaxing) + 0x40082f74 esp_timer_stop + *fill* 0x40082fb5 0x3 + .iram1.0 0x40082fb8 0x1f esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x40082fb8 esp_system_get_time + *fill* 0x40082fd7 0x1 + .iram1.3 0x40082fd8 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x40082ff2 0x2 + .iram1.0 0x40082ff4 0x4f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x40082ff4 esp_timer_impl_get_counter_reg + *fill* 0x40083043 0x1 + .iram1.1 0x40083044 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x17 (size before relaxing) + 0x40083044 esp_timer_get_time + 0x40083044 esp_timer_impl_get_time + *fill* 0x40083058 0x0 + .iram1.2 0x40083058 0x148 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x15b (size before relaxing) + 0x40083058 esp_timer_impl_set_alarm_id + *fill* 0x400831a0 0x0 + .iram1.4 0x400831a0 0x67 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x6b (size before relaxing) + 0x400831a0 esp_timer_private_update_apb_freq + 0x400831a0 esp_timer_impl_update_apb_freq + *fill* 0x40083207 0x1 + .iram1.1 0x40083208 0x1de esp-idf/main/libmain.a(station_example_main.c.obj) + 0x1ea (size before relaxing) + *fill* 0x400833e6 0x2 + .iram1.0 0x400833e8 0x13c esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x400833e8 runFilter + .iram1.1 0x40083524 0x4f esp-idf/main/libmain.a(button.c.obj) + 0x57 (size before relaxing) + *fill* 0x40083573 0x1 + .iram1.0 0x40083574 0x186 esp-idf/main/libmain.a(button.c.obj) + 0x192 (size before relaxing) + *fill* 0x400836fa 0x2 + .iram1.0 0x400836fc 0x16 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x400836fc xt_unhandled_interrupt + *fill* 0x40083712 0x2 + .iram1 0x40083714 0x4e2 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x506 (size before relaxing) + 0x40083714 xt_debugexception + 0x400837e8 _xt_user_exit + 0x40083b1c _xt_medint2_exit + 0x40083bcc _xt_medint3_exit + 0x40083be8 xt_highint5 + 0x40083bf0 xt_nmi + *fill* 0x40083bf6 0x2 + .iram1.2 0x40083bf8 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xb (size before relaxing) + *fill* 0x40083c00 0x0 + .iram1.3 0x40083c00 0x215 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x22d (size before relaxing) + *fill* 0x40083e15 0x3 + .iram1.4 0x40083e18 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x29 (size before relaxing) + *fill* 0x40083e35 0x3 + .iram1.16 0x40083e38 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x22 (size before relaxing) + *fill* 0x40083e52 0x2 + .iram1.1 0x40083e54 0x69 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x40083e54 esp_mmu_paddr_find_caps + *fill* 0x40083ebd 0x3 + .iram1.3 0x40083ec0 0x15 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x19 (size before relaxing) + *fill* 0x40083ed5 0x3 + .iram1.0 0x40083ed8 0x129 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x40084001 0x3 + .iram1.1 0x40084004 0x70 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.0 0x40084074 0x178 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x1a3 (size before relaxing) + *fill* 0x400841ec 0x0 + .iram1.1 0x400841ec 0x206 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x400841ec bootloader_flash_execute_command_common + *fill* 0x400843f2 0x2 + .iram1.2 0x400843f4 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x400843f4 bootloader_execute_flash_command + .iram1.4 0x40084414 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2e (size before relaxing) + 0x40084414 bootloader_read_flash_id + *fill* 0x4008443e 0x2 + .iram1.12 0x40084440 0x9a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xa2 (size before relaxing) + 0x40084440 bootloader_flash_reset_chip + *fill* 0x400844da 0x2 + .iram1.6 0x400844dc 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x400844dc bootloader_flash_cs_timing_config + *fill* 0x4008454a 0x2 + .iram1.7 0x4008454c 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x4008454c bootloader_flash_clock_config + .iram1.8 0x40084598 0x1ea esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x40084598 bootloader_flash_gpio_config + *fill* 0x40084782 0x2 + .iram1.9 0x40084784 0xb3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x40084784 bootloader_flash_dummy_config + *fill* 0x40084837 0x1 + .iram1.0 0x40084838 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x40084838 bootloader_common_get_chip_ver_pkg + *fill* 0x40084856 0x2 + .iram1.0 0x40084858 0xa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xd (size before relaxing) + 0x40084858 esp_flash_encryption_enabled + *fill* 0x40084862 0x2 + .iram1.12 0x40084864 0xf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40084864 spi_flash_disable_cache + *fill* 0x40084873 0x1 + .iram1.7 0x40084874 0xfa esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x116 (size before relaxing) + 0x40084874 spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x4008496e 0x2 + .iram1.13 0x40084970 0xf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40084970 spi_flash_restore_cache + *fill* 0x4008497f 0x1 + .iram1.6 0x40084980 0x46 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x52 (size before relaxing) + 0x40084980 spi_flash_op_block_func + *fill* 0x400849c6 0x2 + .iram1.8 0x400849c8 0xa5 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xb5 (size before relaxing) + 0x400849c8 spi_flash_enable_interrupts_caches_and_other_cpu + *fill* 0x40084a6d 0x3 + .iram1.11 0x40084a70 0xbb esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xbf (size before relaxing) + 0x40084a70 spi_flash_enable_cache + *fill* 0x40084b2b 0x1 + .iram1.14 0x40084b2c 0x11 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40084b2c spi_flash_cache_enabled + *fill* 0x40084b3d 0x3 + .iram1.0 0x40084b40 0x1c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x20 (size before relaxing) + .iram1.1 0x40084b5c 0x56 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x5a (size before relaxing) + 0x40084b5c spi_flash_check_and_flush_cache + *fill* 0x40084bb2 0x2 + .iram1.8 0x40084bb4 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40084bb4 spi_flash_guard_set + *fill* 0x40084bbe 0x2 + .iram1.10 0x40084bc0 0x42 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40084bc0 esp_mspi_pin_init + *fill* 0x40084c02 0x2 + .iram1.6 0x40084c04 0x46 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x40084c4a 0x2 + .iram1.5 0x40084c4c 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x40084c6e 0x2 + .iram1.12 0x40084c70 0x8e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x92 (size before relaxing) + *fill* 0x40084cfe 0x2 + .iram1.10 0x40084d00 0x6c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x70 (size before relaxing) + .iram1.13 0x40084d6c 0x6e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40084d6c esp_flash_get_physical_size + *fill* 0x40084dda 0x2 + .iram1.9 0x40084ddc 0x16e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x186 (size before relaxing) + 0x40084ddc esp_flash_init_main + *fill* 0x40084f4a 0x2 + .iram1.16 0x40084f4c 0x22a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x232 (size before relaxing) + 0x40084f4c esp_flash_erase_region + *fill* 0x40085176 0x2 + .iram1.21 0x40085178 0x142 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40085178 esp_flash_read + *fill* 0x400852ba 0x2 + .iram1.22 0x400852bc 0x193 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x197 (size before relaxing) + 0x400852bc esp_flash_write + *fill* 0x4008544f 0x1 + .iram1.25 0x40085450 0x66 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40085450 esp_flash_read_encrypted + *fill* 0x400854b6 0x2 + .iram1.28 0x400854b8 0x1c6 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1de (size before relaxing) + 0x400854b8 esp_flash_write_encrypted + *fill* 0x4008567e 0x2 + .iram1.9 0x40085680 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x20 (size before relaxing) + .iram1.17 0x40085698 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.8 0x400856c8 0x33 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x400856fb 0x1 + .iram1.12 0x400856fc 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x40085706 0x2 + .iram1.11 0x40085708 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4a (size before relaxing) + *fill* 0x4008574e 0x2 + .iram1.10 0x40085750 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.14 0x40085760 0xb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x4008576b 0x1 + .iram1.13 0x4008576c 0x31 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x4008579d 0x3 + .iram1.0 0x400857a0 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x400857a8 0x0 + .iram1.7 0x400857a8 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x18 (size before relaxing) + .iram1.1 0x400857bc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x400857c4 0x0 + .iram1.6 0x400857c4 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.8 0x400857d0 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.7 0x400857e0 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x40085803 0x1 + .iram1.6 0x40085804 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x40085827 0x1 + .iram1.1 0x40085828 0x5a esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x66 (size before relaxing) + *fill* 0x40085882 0x2 + .iram1.2 0x40085884 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x60 (size before relaxing) + .iram1.3 0x400858dc 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x400858dc esp_crosscore_int_send_yield + *fill* 0x400858eb 0x1 + .iram1.6 0x400858ec 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x400858ec esp_crosscore_int_send_print_backtrace + *fill* 0x400858fb 0x1 + .iram1.7 0x400858fc 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x400858fc esp_crosscore_int_send_twdt_abort + *fill* 0x4008590b 0x1 + .iram1.2 0x4008590c 0x97 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xa6 (size before relaxing) + *fill* 0x400859a3 0x1 + .iram1 0x400859a4 0x40 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x48 (size before relaxing) + 0x400859a4 _xt_panic + .iram1.1 0x400859e4 0xf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x400859e4 esp_rom_set_cpu_ticks_per_us + *fill* 0x400859f3 0x1 + .iram1.10 0x400859f4 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40085a02 0x2 + .iram1.2 0x40085a04 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + 0x40085a04 wifi_malloc + .iram1.3 0x40085a10 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x40085a10 wifi_realloc + *fill* 0x40085a21 0x3 + .iram1.4 0x40085a24 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x40085a24 wifi_calloc + *fill* 0x40085a35 0x3 + .iram1.5 0x40085a38 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40085a49 0x3 + .iram1.16 0x40085a4c 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.15 0x40085a60 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.14 0x40085a74 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.13 0x40085a88 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40085a9a 0x2 + .iram1.1 0x40085a9c 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x40085aa4 0x0 + .iram1.0 0x40085aa4 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x40085aac 0x0 + .iram1.9 0x40085aac 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40085ac1 0x3 + .iram1.8 0x40085ac4 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .iram1.7 0x40085ad0 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40085ae1 0x3 + .iram1.28 0x40085ae4 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x40085ae4 lmacProcessCollisions + *fill* 0x40085af3 0x1 + .iram1.32 0x40085af4 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x40085af4 lmacProcessAllTxTimeout + *fill* 0x40085b03 0x1 + .iram1.33 0x40085b04 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x40085b04 lmacPostTxComplete + *fill* 0x40085b13 0x1 + .iram1.34 0x40085b14 0x63 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x67 (size before relaxing) + 0x40085b2c lmacProcessRxSucData + *fill* 0x40085b77 0x1 + .iram1.56 0x40085b78 0xaa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xc2 (size before relaxing) + 0x40085b7c pm_get_null_max_tx_time + *fill* 0x40085c22 0x2 + .iram1.66 0x40085c24 0x14e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x156 (size before relaxing) + 0x40085c3c pp_post + *fill* 0x40085d72 0x2 + .iram1.4 0x40085d74 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x40085d78 wifi_gpio_debug + *fill* 0x40085d8b 0x1 + .iram1.19 0x40085d8c 0x69 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x6d (size before relaxing) + 0x40085d90 wdev_push_promis_misc_buf + *fill* 0x40085df5 0x3 + .iram1.46 0x40085df8 0x7f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xa5 (size before relaxing) + 0x40085dfc wdev_process_panic_watchdog + *fill* 0x40085e77 0x1 + .iram1.47 0x40085e78 0x1c6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x21a (size before relaxing) + 0x40085ebc wDev_ProcessFiq + *fill* 0x4008603e 0x2 + .iram1.13 0x40086040 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x40086044 hal_mac_interrupt_get_event + *fill* 0x40086051 0x3 + .iram1.14 0x40086054 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x40086058 hal_mac_interrupt_clr_event + .iram1.15 0x40086068 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x23 (size before relaxing) + 0x40086068 hal_mac_interrupt_clr_watchdog + *fill* 0x40086083 0x1 + .iram1.2 0x40086084 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x40086088 hal_mac_rx_get_end_state + .iram1.6 0x40086098 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x5f (size before relaxing) + 0x400860ac hal_mac_rx_get_end_info + *fill* 0x400860f3 0x1 + .iram1.0 0x400860f4 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x44 (size before relaxing) + 0x400860f4 esp_random + .iram1.0 0x40086134 0x13 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x40086147 0x1 + .iram1.1 0x40086148 0x5a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x6e (size before relaxing) + 0x40086148 ets_timer_arm_us + 0x40086148 os_timer_arm_us + *fill* 0x400861a2 0x2 + .iram1.2 0x400861a4 0x63 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x77 (size before relaxing) + 0x400861a4 os_timer_arm + 0x400861a4 ets_timer_arm + *fill* 0x40086207 0x1 + .iram1.3 0x40086208 0x14 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x18 (size before relaxing) + 0x40086208 os_timer_disarm + 0x40086208 ets_timer_disarm + .iram1.2 0x4008621c 0x24 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x2c (size before relaxing) + 0x4008621c phy_enter_critical + .iram1.3 0x40086240 0x1c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x23 (size before relaxing) + 0x40086240 phy_exit_critical + *fill* 0x4008625c 0x0 + .iram1.4 0x4008625c 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xb (size before relaxing) + 0x4008625c esp_phy_common_clock_enable + *fill* 0x40086264 0x0 + .iram1.5 0x40086264 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xb (size before relaxing) + 0x40086264 esp_phy_common_clock_disable + *fill* 0x4008626c 0x0 + .iram1.6 0x4008626c 0x74 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x87 (size before relaxing) + 0x4008626c esp_wifi_power_domain_on + 0x4008626c esp_wifi_bt_power_domain_on + *fill* 0x400862e0 0x0 + .iram1.6 0x400862e0 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x400862e0 esp_coex_common_malloc_internal_wrapper + *fill* 0x400862f2 0x2 + .iram1.1 0x400862f4 0x22 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x26 (size before relaxing) + 0x400862f4 esp_coex_common_int_disable_wrapper + *fill* 0x40086316 0x2 + .iram1.2 0x40086318 0x17 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x22 (size before relaxing) + 0x40086318 esp_coex_common_int_restore_wrapper + *fill* 0x4008632f 0x1 + .iram1.3 0x40086330 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xb (size before relaxing) + 0x40086330 esp_coex_common_task_yield_from_isr_wrapper + *fill* 0x40086338 0x0 + .iram1.4 0x40086338 0xa esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xe (size before relaxing) + 0x40086338 esp_coex_common_timer_disarm_wrapper + *fill* 0x40086342 0x2 + .iram1.5 0x40086344 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40086344 esp_coex_common_timer_arm_us_wrapper + *fill* 0x40086356 0x2 + .iram1 0x40086358 0x88a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x9ca (size before relaxing) + 0x4008635c ram_disable_agc + 0x40086378 ram_enable_agc + 0x400863ac ram_write_gain_mem + 0x40086410 ram_set_txclk_en + 0x40086440 ram_set_rxclk_en + 0x40086480 disable_wifi_agc + 0x400864dc enable_wifi_agc + 0x40086548 wr_bt_tx_atten + 0x400865a4 wr_bt_tx_gain_mem + 0x400866a4 set_tx_gain_table + 0x40086780 set_most_pwr_reg + 0x40086968 bb_wdt_rst_enable + 0x4008698c bb_wdt_int_enable + 0x400869b8 bb_wdt_timeout_clear + 0x400869d8 bb_wdt_get_status + 0x400869f0 bt_tx_gain_cal + 0x40086aa4 bt_tx_gain_cal_set + 0x40086ab4 phy_wifi_enable_set + 0x40086b04 ram_set_noise_floor + 0x40086b70 phy_close_rf + *fill* 0x40086be2 0x2 + .iram1 0x40086be4 0xfc7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x10e7 (size before relaxing) + 0x40086bec get_target_power_offset + 0x40086c34 ram_txbbgain_to_index + 0x40086c70 ram_set_chan_cal_interp + 0x40086d3c write_txrate_power_offset + 0x40086ea0 get_phy_target_power + 0x40086f14 force_txrx_off + 0x40086fa4 phy_pwdet_onetime_en + 0x40086fe8 ram_read_sar_dout + 0x4008701c get_rate_fcc_index + 0x40087154 get_rate_target_power + 0x400871a0 get_chan_pwr_index + 0x40087220 write_wifi_dig_gain + 0x40087284 correct_rf_ana_gain_new + 0x40087394 tx_gain_table_set + 0x40087434 set_chan_dig_gain + 0x400876f0 tx_pwctrl_cal + 0x40087a14 tx_pwctrl_background + 0x40087afc ram_get_rf_gain_qdb + 0x40087b14 wifi_11g_rate_chg + 0x40087b2c ram_set_txcap_reg + *fill* 0x40087bab 0x1 + .iram1 0x40087bac 0xa85 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0xd49 (size before relaxing) + 0x40087bb0 get_i2c_read_mask + 0x40087be4 pll_correct_dcap + 0x40087ccc phy_dis_hw_set_freq + 0x40087d2c phy_force_wifi_chan + 0x40087e30 phy_en_hw_set_freq + 0x40087e88 ram_chip_i2c_readReg + 0x40087f60 ram_chip_i2c_writeReg + 0x40088004 phy_unforce_wifi_chan + 0x40088090 wifi_track_pll_cap + 0x40088114 phy_get_fetx_delay + 0x40088138 get_temp_cal + 0x40088174 btpwr_pll_track + 0x4008824c phy_bt_ifs_set + 0x40088294 tsens_code_read + 0x40088300 btpwr_tsens_track + 0x40088370 bt_track_tx_power + 0x400883b0 bt_track_pll_cap + 0x4008841c chan_to_freq + 0x40088454 get_i2c_write_data + 0x40088484 i2c_write_master + 0x400884fc ram_pbus_debugmode + 0x40088528 ram_pbus_force_test + 0x4008858c force_txrxoff + *fill* 0x40088631 0x0 + *fill* 0x40088631 0x0 + *fill* 0x40088631 0x0 + *fill* 0x40088631 0x0 + *fill* 0x40088631 0x0 + *fill* 0x40088631 0x0 + *fill* 0x40088631 0x0 + *fill* 0x40088631 0x3 + .iram1 0x40088634 0xa esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + 0x40088634 esp_ipc_isr_waiting_for_finish_cmd + *fill* 0x4008863e 0x0 + *fill* 0x4008863e 0x0 + *fill* 0x4008863e 0x0 + *fill* 0x4008863e 0x2 + .iram1.2 0x40088640 0x5 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x40088640 esp_reset_reason_set_hint + *fill* 0x40088645 0x3 + .iram1.3 0x40088648 0x7 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x40088648 esp_reset_reason_get_hint + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x0 + *fill* 0x4008864f 0x1 + .iram1.2 0x40088650 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40088650 efuse_hal_get_disable_wafer_version_major + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x0 + *fill* 0x40088657 0x1 + .iram1.6 0x40088658 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x4008866b 0x0 + *fill* 0x4008866b 0x0 + *fill* 0x4008866b 0x0 + *fill* 0x4008866b 0x0 + *fill* 0x4008866b 0x0 + *fill* 0x4008866b 0x0 + *fill* 0x4008866b 0x0 + *fill* 0x4008866b 0x1 + .iram1.1 0x4008866c 0x9 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x4008866c esp_timer_impl_get_min_period_us + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x0 + *fill* 0x40088675 0x3 + .iram1.11 0x40088678 0x7 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40088678 spi_flash_init_chip_state + *fill* 0x4008867f 0x0 + *fill* 0x4008867f 0x1 + .iram1.3 0x40088680 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.4 0x400886a4 0x1a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x400886be 0x0 + *fill* 0x400886be 0x2 + .iram1.7 0x400886c0 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x400886c0 esp_flash_chip_driver_initialized + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + *fill* 0x400886d0 0x0 + .iram1.6 0x400886d0 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x400886e2 0x0 + *fill* 0x400886e2 0x2 + .iram1.11 0x400886e4 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x400886e9 0x3 + .iram1.12 0x400886ec 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x400886f1 0x3 + .iram1.17 0x400886f4 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x400886fb 0x1 + .iram1.18 0x400886fc 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40088703 0x1 + .iram1.19 0x40088704 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4008870b 0x1 + .iram1.20 0x4008870c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40088713 0x1 + .iram1.21 0x40088714 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x0 + *fill* 0x40088719 0x3 + .iram1.0 0x4008871c 0x7 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4008871c esp_coex_common_env_is_chip_wrapper + *fill* 0x40088723 0x0 + *fill* 0x40088723 0x0 + *fill* 0x40088723 0x0 + *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*) + *libapp_trace.a:port_uart.*(.literal .literal.* .text .text.*) + *libdriver.a:gptimer.*(.literal.gptimer_default_isr .text.gptimer_default_isr) + *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) + *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) + *fill* 0x40088723 0x1 + .text.esp_cpu_compare_and_set + 0x40088724 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40088724 esp_cpu_compare_and_set + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall) + *fill* 0x40088739 0x3 + .text.esp_cpu_stall + 0x4008873c 0x83 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x87 (size before relaxing) + 0x4008873c esp_cpu_stall + *fill* 0x400887bf 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) + *fill* 0x400887bf 0x1 + .text.esp_cpu_unstall + 0x400887c0 0x51 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x55 (size before relaxing) + 0x400887c0 esp_cpu_unstall + *fill* 0x40088811 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) + *fill* 0x40088811 0x3 + .text.esp_cpu_wait_for_intr + 0x40088814 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40088814 esp_cpu_wait_for_intr + *libesp_hw_support.a:esp_gpio_reserve.*(.literal.esp_gpio_is_pin_reserved .text.esp_gpio_is_pin_reserved) + *libesp_hw_support.a:esp_gpio_reserve.*(.literal.esp_gpio_reserve_pins .text.esp_gpio_reserve_pins) + .text.esp_gpio_reserve_pins + 0x4008881c 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x4008881c esp_gpio_reserve_pins + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *fill* 0x40088835 0x3 + .text.esp_ptr_byte_accessible + 0x40088838 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x40088838 esp_ptr_byte_accessible + *fill* 0x40088851 0x0 + *libesp_hw_support.a:mspi_timing_config.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) + *fill* 0x40088851 0x3 + .text.mspi_timing_change_speed_mode_cache_safe + 0x40088854 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x40088854 mspi_timing_change_speed_mode_cache_safe + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) + *fill* 0x40088859 0x3 + .text.periph_module_reset + 0x4008885c 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x6b (size before relaxing) + 0x4008885c periph_module_reset + *fill* 0x400888b4 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_disable .text.wifi_module_disable) + *fill* 0x400888b4 0x0 + .text.wifi_module_disable + 0x400888b4 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4e (size before relaxing) + 0x400888b4 wifi_module_disable + *fill* 0x400888ef 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_enable .text.wifi_module_enable) + *fill* 0x400888ef 0x1 + .text.wifi_module_enable + 0x400888f0 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4f (size before relaxing) + 0x400888f0 wifi_module_enable + *fill* 0x4008892c 0x0 + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + *fill* 0x4008892c 0x0 + .text.rtc_clk_32k_enable_common + 0x4008892c 0x95 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x400889c1 0x3 + .text.rtc_clk_bbpll_disable + 0x400889c4 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x40088a02 0x2 + .text.rtc_clk_bbpll_enable + 0x40088a04 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x76 (size before relaxing) + *fill* 0x40088a6a 0x2 + .text.rtc_clk_bbpll_configure + 0x40088a6c 0x1b4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1c8 (size before relaxing) + .text.rtc_clk_32k_enable + 0x40088c20 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x39 (size before relaxing) + 0x40088c20 rtc_clk_32k_enable + *fill* 0x40088c55 0x3 + .text.rtc_clk_32k_enable_external + 0x40088c58 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xe (size before relaxing) + 0x40088c58 rtc_clk_32k_enable_external + *fill* 0x40088c62 0x2 + .text.rtc_clk_8m_enable + 0x40088c64 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40088c64 rtc_clk_8m_enable + *fill* 0x40088d01 0x3 + .text.rtc_clk_8md256_enabled + 0x40088d04 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40088d04 rtc_clk_8md256_enabled + *fill* 0x40088d1e 0x2 + .text.rtc_clk_apll_enable + 0x40088d20 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40088d20 rtc_clk_apll_enable + *fill* 0x40088dae 0x2 + .text.rtc_clk_apll_coeff_set + 0x40088db0 0xc5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xe5 (size before relaxing) + 0x40088db0 rtc_clk_apll_coeff_set + *fill* 0x40088e75 0x3 + .text.rtc_clk_slow_src_set + 0x40088e78 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x9a (size before relaxing) + 0x40088e78 rtc_clk_slow_src_set + *fill* 0x40088f0e 0x2 + .text.rtc_clk_slow_src_get + 0x40088f10 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40088f10 rtc_clk_slow_src_get + *fill* 0x40088f2a 0x2 + .text.rtc_clk_slow_freq_get_hz + 0x40088f2c 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2a (size before relaxing) + 0x40088f2c rtc_clk_slow_freq_get_hz + *fill* 0x40088f52 0x2 + .text.rtc_clk_fast_src_set + 0x40088f54 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4a (size before relaxing) + 0x40088f54 rtc_clk_fast_src_set + *fill* 0x40088f9b 0x1 + .text.rtc_clk_xtal_freq_get + 0x40088f9c 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40088f9c rtc_clk_xtal_freq_get + 0x40088f9c rtc_get_xtal + *fill* 0x40088fcf 0x1 + .text.rtc_clk_apll_coeff_calc + 0x40088fd0 0x220 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x22c (size before relaxing) + 0x40088fd0 rtc_clk_apll_coeff_calc + .text.rtc_clk_cpu_freq_mhz_to_config + 0x400891f0 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x400891f0 rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_get_config + 0x40089258 0xc9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xd1 (size before relaxing) + 0x40089258 rtc_clk_cpu_freq_get_config + *fill* 0x40089321 0x3 + .text.rtc_clk_apb_freq_update + 0x40089324 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40089324 rtc_clk_apb_freq_update + *fill* 0x4008933d 0x3 + .text.rtc_clk_cpu_freq_to_xtal + 0x40089340 0x81 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x89 (size before relaxing) + 0x40089340 rtc_clk_cpu_freq_to_xtal + *fill* 0x400893c1 0x3 + .text.rtc_clk_cpu_set_to_default_config + 0x400893c4 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x19 (size before relaxing) + 0x400893c4 rtc_clk_cpu_set_to_default_config + *fill* 0x400893d5 0x3 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x400893d8 0xad esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xb9 (size before relaxing) + *fill* 0x40089485 0x3 + .text.rtc_clk_cpu_freq_to_8m + 0x40089488 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x66 (size before relaxing) + *fill* 0x400894ea 0x2 + .text.rtc_clk_cpu_freq_set_config + 0x400894ec 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8f (size before relaxing) + 0x400894ec rtc_clk_cpu_freq_set_config + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *fill* 0x40089560 0x0 + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_get_config .text.rtc_vddsdio_get_config) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + *fill* 0x40089560 0x0 + .text.rtc_clk_cal_internal + 0x40089560 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x214 (size before relaxing) + .text.rtc_clk_cal + 0x40089760 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xe0 (size before relaxing) + 0x40089760 rtc_clk_cal + .text.rtc_time_get + 0x40089838 0x6f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40089838 rtc_time_get + *fill* 0x400898a7 0x1 + .text.rtc_clk_wait_for_slow_cycle + 0x400898a8 0xa7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x400898a8 rtc_clk_wait_for_slow_cycle + *fill* 0x4008994f 0x1 + .text.rtc_clk_freq_cal + 0x40089950 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40089950 rtc_clk_freq_cal + *fill* 0x4008996a 0x2 + .text.enable_timer_group0_for_calibration + 0x4008996c 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x6e (size before relaxing) + *fill* 0x400899d6 0x0 + *fill* 0x400899d6 0x0 + *fill* 0x400899d6 0x0 + *fill* 0x400899d6 0x0 + *libesp_hw_support.a:rtc_wdt.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *libesp_mm.a:cache_esp32.*(.literal .literal.* .text .text.*) + *fill* 0x400899d6 0x2 + .text.cache_sync + 0x400899d8 0x22 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x400899d8 cache_sync + *fill* 0x400899fa 0x0 + *libesp_mm.a:esp_cache.*(.literal .literal.* .text .text.*) + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + *fill* 0x400899fa 0x2 + .text.prvAcquireItemNoSplit + 0x400899fc 0xb2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x40089aae 0x2 + .text.prvReceiveGeneric + 0x40089ab0 0xfb esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x10b (size before relaxing) + *fill* 0x40089bab 0x1 + .text.prvSendAcquireGeneric + 0x40089bac 0xdc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xf4 (size before relaxing) + .text.xRingbufferSend + 0x40089c88 0x62 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x66 (size before relaxing) + 0x40089c88 xRingbufferSend + *fill* 0x40089cea 0x2 + .text.xRingbufferReceive + 0x40089cec 0x45 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x40089cec xRingbufferReceive + *fill* 0x40089d31 0x3 + .text.vRingbufferReturnItem + 0x40089d34 0x5c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x6e (size before relaxing) + 0x40089d34 vRingbufferReturnItem + *fill* 0x40089d90 0x0 + .text.prvCheckItemAvail + 0x40089d90 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x40089dc8 0x0 + *fill* 0x40089dc8 0x0 + *fill* 0x40089dc8 0x0 + *fill* 0x40089dc8 0x0 + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + .text.esp_error_check_failed_print + 0x40089dc8 0x4b esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x4f (size before relaxing) + *fill* 0x40089e13 0x1 + .text._esp_error_check_failed + 0x40089e14 0x2a esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x32 (size before relaxing) + 0x40089e14 _esp_error_check_failed + *fill* 0x40089e3e 0x0 + *fill* 0x40089e3e 0x0 + *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) + *fill* 0x40089e3e 0x2 + .text.esp_system_abort + 0x40089e40 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0xc (size before relaxing) + 0x40089e40 esp_system_abort + *fill* 0x40089e48 0x0 + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + .text.__ubsan_include + 0x40089e48 0x5 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x40089e48 __ubsan_include + *libesp_wifi.a:esp_adapter.*(.literal.coex_pti_get_wrapper .text.coex_pti_get_wrapper) + *fill* 0x40089e4d 0x3 + .text.coex_pti_get_wrapper + 0x40089e50 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *libesp_wifi.a:wifi_netif.*(.literal.wifi_sta_receive .text.wifi_sta_receive) + *fill* 0x40089e57 0x1 + .text.wifi_sta_receive + 0x40089e58 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + *fill* 0x40089e74 0x0 + *libesp_wifi.a:wifi_netif.*(.literal.wifi_transmit_wrap .text.wifi_transmit_wrap) + .text.wifi_transmit_wrap + 0x40089e74 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .literal EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .literal.* EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .text EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .text.*) + .text.prvCopyDataToQueue + 0x40089e88 0x90 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvCopyDataFromQueue + 0x40089f18 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x40089f3b 0x1 + .text.prvNotifyQueueSetContainer + 0x40089f3c 0x9f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xb6 (size before relaxing) + *fill* 0x40089fdb 0x1 + .text.xQueueGenericReset + 0x40089fdc 0xc3 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xd6 (size before relaxing) + 0x40089fdc xQueueGenericReset + *fill* 0x4008a09f 0x1 + .text.prvInitialiseNewQueue + 0x4008a0a0 0x22 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x26 (size before relaxing) + *fill* 0x4008a0c2 0x2 + .text.xQueueGenericCreateStatic + 0x4008a0c4 0x93 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x9f (size before relaxing) + 0x4008a0c4 xQueueGenericCreateStatic + *fill* 0x4008a157 0x1 + .text.xQueueGenericCreate + 0x4008a158 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x5c (size before relaxing) + 0x4008a158 xQueueGenericCreate + .text.xQueueGetMutexHolder + 0x4008a1ac 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3a (size before relaxing) + 0x4008a1ac xQueueGetMutexHolder + *fill* 0x4008a1e2 0x2 + .text.xQueueCreateCountingSemaphore + 0x4008a1e4 0x3e esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x41 (size before relaxing) + 0x4008a1e4 xQueueCreateCountingSemaphore + *fill* 0x4008a222 0x2 + .text.xQueueGenericSend + 0x4008a224 0x174 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1ac (size before relaxing) + 0x4008a224 xQueueGenericSend + .text.prvInitialiseMutex + 0x4008a398 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateMutex + 0x4008a3d4 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1a (size before relaxing) + 0x4008a3d4 xQueueCreateMutex + *fill* 0x4008a3ea 0x2 + .text.xQueueCreateMutexStatic + 0x4008a3ec 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1e (size before relaxing) + 0x4008a3ec xQueueCreateMutexStatic + *fill* 0x4008a406 0x2 + .text.xQueueGiveMutexRecursive + 0x4008a408 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x48 (size before relaxing) + 0x4008a408 xQueueGiveMutexRecursive + .text.xQueueGenericSendFromISR + 0x4008a448 0x103 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x117 (size before relaxing) + 0x4008a448 xQueueGenericSendFromISR + *fill* 0x4008a54b 0x1 + .text.xQueueGiveFromISR + 0x4008a54c 0xca esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xd6 (size before relaxing) + 0x4008a54c xQueueGiveFromISR + *fill* 0x4008a616 0x2 + .text.xQueueReceive + 0x4008a618 0x100 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x124 (size before relaxing) + 0x4008a618 xQueueReceive + .text.xQueueSemaphoreTake + 0x4008a718 0x114 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x140 (size before relaxing) + 0x4008a718 xQueueSemaphoreTake + .text.xQueueTakeMutexRecursive + 0x4008a82c 0x42 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x46 (size before relaxing) + 0x4008a82c xQueueTakeMutexRecursive + *fill* 0x4008a86e 0x2 + .text.xQueueReceiveFromISR + 0x4008a870 0x90 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xa0 (size before relaxing) + 0x4008a870 xQueueReceiveFromISR + .text.uxQueueMessagesWaiting + 0x4008a900 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + 0x4008a900 uxQueueMessagesWaiting + .text.vQueueDelete + 0x4008a92c 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x27 (size before relaxing) + 0x4008a92c vQueueDelete + *fill* 0x4008a950 0x0 + .text.xQueueIsQueueFullFromISR + 0x4008a950 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2c (size before relaxing) + 0x4008a950 xQueueIsQueueFullFromISR + .text.vQueueWaitForMessageRestricted + 0x4008a978 0x27 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2e (size before relaxing) + 0x4008a978 vQueueWaitForMessageRestricted + *fill* 0x4008a99f 0x1 + .text.vPortTaskWrapper + 0x4008a9a0 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x32 (size before relaxing) + *fill* 0x4008a9c6 0x2 + .text.vPortTLSPointersDelCb + 0x4008a9c8 0xa3 esp-idf/freertos/libfreertos.a(port.c.obj) + 0xaa (size before relaxing) + *fill* 0x4008aa6b 0x1 + .text.vPortCleanUpCoprocArea + 0x4008aa6c 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1a (size before relaxing) + *fill* 0x4008aa82 0x2 + .text.xPortStartScheduler + 0x4008aa84 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x2e (size before relaxing) + 0x4008aa84 xPortStartScheduler + *fill* 0x4008aaaa 0x2 + .text.pxPortInitialiseStack + 0x4008aaac 0x99 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4008aaac pxPortInitialiseStack + *fill* 0x4008ab45 0x3 + .text.xPortInIsrContext + 0x4008ab48 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4008ab48 xPortInIsrContext + *fill* 0x4008ab6e 0x2 + .text.xPortEnterCriticalTimeout + 0x4008ab70 0x150 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x15c (size before relaxing) + 0x4008ab70 xPortEnterCriticalTimeout + .text.vPortExitCritical + 0x4008acc0 0x8c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4008acc0 vPortExitCritical + .text.vPortYieldOtherCore + 0x4008ad4c 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x4008ad4c vPortYieldOtherCore + *fill* 0x4008ad56 0x2 + .text.vApplicationStackOverflowHook + 0x4008ad58 0x3d esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4008ad58 vApplicationStackOverflowHook + *fill* 0x4008ad95 0x3 + .text.vPortTCBPreDeleteHook + 0x4008ad98 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x16 (size before relaxing) + 0x4008ad98 vPortTCBPreDeleteHook + *fill* 0x4008adaa 0x2 + .text 0x4008adac 0x25a esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x26a (size before relaxing) + 0x4008adac _frxt_setup_switch + 0x4008adc4 _frxt_int_enter + 0x4008ae08 _frxt_int_exit + 0x4008ae58 _frxt_timer_int + 0x4008ae80 _frxt_tick_timer_init + 0x4008ae9c _frxt_dispatch + 0x4008af00 vPortYield + 0x4008af64 vPortYieldFromInt + 0x4008af98 _frxt_task_coproc_state + 0x4008afd8 _frxt_coproc_exc_hook + *fill* 0x4008b006 0x2 + .text._xt_tick_divisor_init + 0x4008b008 0x1c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x1f (size before relaxing) + 0x4008b008 _xt_tick_divisor_init + *fill* 0x4008b024 0x0 + .text.pvPortMalloc + 0x4008b024 0x12 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4008b024 pvPortMalloc + *fill* 0x4008b036 0x2 + .text.vPortFree + 0x4008b038 0xa esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0xe (size before relaxing) + 0x4008b038 vPortFree + *fill* 0x4008b042 0x2 + .text.xPortCheckValidTCBMem + 0x4008b044 0x49 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4008b044 xPortCheckValidTCBMem + *fill* 0x4008b08d 0x3 + .text.xPortcheckValidStackMem + 0x4008b090 0x48 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4008b090 xPortcheckValidStackMem + .text.vApplicationGetIdleTaskMemory + 0x4008b0d8 0x3d esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x4b (size before relaxing) + 0x4008b0d8 vApplicationGetIdleTaskMemory + *fill* 0x4008b115 0x3 + .text.vApplicationGetTimerTaskMemory + 0x4008b118 0x3d esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x4b (size before relaxing) + 0x4008b118 vApplicationGetTimerTaskMemory + *fill* 0x4008b155 0x3 + .text.vPortSetupTimer + 0x4008b158 0xb esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x11 (size before relaxing) + 0x4008b158 vPortSetupTimer + *fill* 0x4008b163 0x1 + .text.xPortSysTickHandler + 0x4008b164 0x27 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x2f (size before relaxing) + 0x4008b164 xPortSysTickHandler + *fill* 0x4008b18b 0x1 + .text.xEventGroupCreate + 0x4008b18c 0x38 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x40 (size before relaxing) + 0x4008b18c xEventGroupCreate + .text.xEventGroupWaitBits + 0x4008b1c4 0x10c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x12c (size before relaxing) + 0x4008b1c4 xEventGroupWaitBits + .text.xEventGroupClearBits + 0x4008b2d0 0x56 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x5a (size before relaxing) + 0x4008b2d0 xEventGroupClearBits + *fill* 0x4008b326 0x2 + .text.xEventGroupSetBits + 0x4008b328 0xa6 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0xb2 (size before relaxing) + 0x4008b328 xEventGroupSetBits + *fill* 0x4008b3ce 0x2 + .text.vEventGroupDelete + 0x4008b3d0 0x67 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x7f (size before relaxing) + 0x4008b3d0 vEventGroupDelete + *fill* 0x4008b437 0x1 + .text.prvGetNextExpireTime + 0x4008b438 0x29 esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x4008b461 0x3 + .text.prvInsertTimerInActiveList + 0x4008b464 0x5a esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x4008b4be 0x2 + .text.prvReloadTimer + 0x4008b4c0 0x26 esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x4008b4e6 0x2 + .text.prvProcessExpiredTimer + 0x4008b4e8 0x3a esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x42 (size before relaxing) + *fill* 0x4008b522 0x2 + .text.prvSwitchTimerLists + 0x4008b524 0x33 esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x4008b557 0x1 + .text.prvSampleTimeNow + 0x4008b558 0x2b esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x2f (size before relaxing) + *fill* 0x4008b583 0x1 + .text.prvProcessTimerOrBlockTask + 0x4008b584 0x78 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x93 (size before relaxing) + *fill* 0x4008b5fc 0x0 + .text.prvProcessReceivedCommands + 0x4008b5fc 0x125 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x135 (size before relaxing) + *fill* 0x4008b721 0x3 + .text.prvTimerTask + 0x4008b724 0x15 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x1d (size before relaxing) + *fill* 0x4008b739 0x3 + .text.prvCheckForValidListAndQueue + 0x4008b73c 0x48 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x58 (size before relaxing) + .text.xTimerCreateTimerTask + 0x4008b784 0x5c esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x64 (size before relaxing) + 0x4008b784 xTimerCreateTimerTask + .text.prvGetDisinheritPriorityAfterTimeout + 0x4008b7e0 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x0 + *fill* 0x4008b7fe 0x2 + .text.vListInitialise + 0x4008b800 0x24 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4008b800 vListInitialise + .text.vListInitialiseItem + 0x4008b824 0xc esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4008b824 vListInitialiseItem + .text.vListInsertEnd + 0x4008b830 0x39 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4008b830 vListInsertEnd + *fill* 0x4008b869 0x3 + .text.vListInsert + 0x4008b86c 0x5c esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4008b86c vListInsert + .text.uxListRemove + 0x4008b8c8 0x52 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x4008b8c8 uxListRemove + *fill* 0x4008b91a 0x2 + .text.prvTestWaitCondition + 0x4008b91c 0x1e esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *fill* 0x4008b93a 0x0 + *libfreertos.a:tasks.*(.literal.__getreent .literal.eTaskGetState .literal.pcTaskGetName .literal.prvAddCurrentTaskToDelayedList .literal.prvAddNewTaskToReadyList .literal.prvCheckTaskCanBeScheduledSMP .literal.prvCheckTasksWaitingTermination .literal.prvCreateIdleTasks .literal.prvDeleteTCB .literal.prvIdleTask .literal.prvInitialiseNewTask .literal.prvInitialiseTaskLists .literal.prvIsYieldRequiredSMP .literal.prvListTasksWithinSingleList .literal.prvReleaseKernelLock .literal.prvResetNextTaskUnblockTime .literal.prvSelectHighestPriorityTaskSMP .literal.prvTakeKernelLock .literal.prvTaskIsTaskSuspended .literal.prvTaskPriorityRaise .literal.prvTaskPriorityRestore .literal.prvWriteNameToBuffer .literal.pvTaskGetCurrentTCBForCore .literal.pvTaskGetThreadLocalStoragePointer .literal.pvTaskIncrementMutexHeldCount .literal.pxTaskGetStackStart .literal.ulTaskGenericNotifyTake .literal.ulTaskGenericNotifyValueClear .literal.ulTaskGetIdleRunTimeCounter .literal.ulTaskGetIdleRunTimeCounterForCore .literal.ulTaskGetIdleRunTimePercent .literal.ulTaskGetIdleRunTimePercentForCore .literal.uxTaskGetNumberOfTasks .literal.uxTaskGetStackHighWaterMark .literal.uxTaskGetStackHighWaterMark2 .literal.uxTaskGetSystemState .literal.uxTaskPriorityGet .literal.uxTaskPriorityGetFromISR .literal.uxTaskResetEventItemValue .literal.vTaskDelay .literal.vTaskDelete .literal.vTaskEndScheduler .literal.vTaskGenericNotifyGiveFromISR .literal.vTaskGetInfo .literal.vTaskGetRunTimeStats .literal.vTaskGetSnapshot .literal.vTaskInternalSetTimeOutState .literal.vTaskList .literal.vTaskMissedYield .literal.vTaskPlaceOnEventList .literal.vTaskPlaceOnEventListRestricted .literal.vTaskPlaceOnUnorderedEventList .literal.vTaskPriorityDisinheritAfterTimeout .literal.vTaskPrioritySet .literal.vTaskRemoveFromUnorderedEventList .literal.vTaskResume .literal.vTaskSetThreadLocalStoragePointer .literal.vTaskSetThreadLocalStoragePointerAndDelCallback .literal.vTaskSetTimeOutState .literal.vTaskStartScheduler .literal.vTaskSuspend .literal.vTaskSuspendAll .literal.vTaskSwitchContext .literal.xTaskAbortDelay .literal.xTaskCatchUpTicks .literal.xTaskCheckForTimeOut .literal.xTaskCreatePinnedToCore .literal.xTaskCreateStaticPinnedToCore .literal.xTaskDelayUntil .literal.xTaskGenericNotify .literal.xTaskGenericNotifyFromISR .literal.xTaskGenericNotifyStateClear .literal.xTaskGenericNotifyWait .literal.xTaskGetCoreID .literal.xTaskGetCurrentTaskHandle .literal.xTaskGetCurrentTaskHandleForCore .literal.xTaskGetHandle .literal.xTaskGetIdleTaskHandle .literal.xTaskGetIdleTaskHandleForCore .literal.xTaskGetSchedulerState .literal.xTaskGetStaticBuffers .literal.xTaskGetTickCount .literal.xTaskGetTickCountFromISR .literal.xTaskIncrementTick .literal.xTaskIncrementTickOtherCores .literal.xTaskPriorityDisinherit .literal.xTaskPriorityInherit .literal.xTaskRemoveFromEventList .literal.xTaskResumeAll .literal.xTaskResumeFromISR .text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTaskCanBeScheduledSMP .text.prvCheckTasksWaitingTermination .text.prvCreateIdleTasks .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask .text.prvInitialiseTaskLists .text.prvIsYieldRequiredSMP .text.prvListTasksWithinSingleList .text.prvReleaseKernelLock .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvSelectHighestPriorityTaskSMP .text.prvTakeKernelLock .text.prvTaskCheckFreeStackSpace .text.prvTaskIsTaskSuspended .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.prvWriteNameToBuffer .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.ulTaskGetIdleRunTimeCounter .text.ulTaskGetIdleRunTimeCounterForCore .text.ulTaskGetIdleRunTimePercent .text.ulTaskGetIdleRunTimePercentForCore .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskGetSystemState .text.uxTaskGetTaskNumber .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetInfo .text.vTaskGetRunTimeStats .text.vTaskGetSnapshot .text.vTaskInternalSetTimeOutState .text.vTaskList .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .text.vTaskSetTaskNumber .text.vTaskSetThreadLocalStoragePointer .text.vTaskSetThreadLocalStoragePointerAndDelCallback .text.vTaskSetTimeOutState .text.vTaskStartScheduler .text.vTaskSuspend .text.vTaskSuspendAll .text.vTaskSwitchContext .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetSchedulerState .text.xTaskGetStaticBuffers .text.xTaskGetTickCount .text.xTaskGetTickCountFromISR .text.xTaskIncrementTick .text.xTaskIncrementTickOtherCores .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) + *fill* 0x4008b93a 0x2 + .text.prvCheckTaskCanBeScheduledSMP + 0x4008b93c 0x46 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4008b982 0x2 + .text.prvResetNextTaskUnblockTime + 0x4008b984 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvIsYieldRequiredSMP + 0x4008b9c0 0xa2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4008ba62 0x2 + .text.prvSelectHighestPriorityTaskSMP + 0x4008ba64 0x1e8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvDeleteTCB + 0x4008bc4c 0x48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + *fill* 0x4008bc94 0x0 + .text.prvCheckTasksWaitingTermination + 0x4008bc94 0x96 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9e (size before relaxing) + *fill* 0x4008bd2a 0x2 + .text.prvAddCurrentTaskToDelayedList + 0x4008bd2c 0x11a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x11e (size before relaxing) + *fill* 0x4008be46 0x2 + .text.prvIdleTask + 0x4008be48 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + *fill* 0x4008be57 0x1 + .text.prvInitialiseNewTask + 0x4008be58 0xa2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xae (size before relaxing) + *fill* 0x4008befa 0x2 + .text.prvInitialiseTaskLists + 0x4008befc 0x69 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x79 (size before relaxing) + *fill* 0x4008bf65 0x3 + .text.prvAddNewTaskToReadyList + 0x4008bf68 0x1a4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1af (size before relaxing) + *fill* 0x4008c10c 0x0 + .text.vTaskSuspendAll + 0x4008c10c 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x32 (size before relaxing) + 0x4008c10c vTaskSuspendAll + *fill* 0x4008c13a 0x2 + .text.xTaskGetTickCount + 0x4008c13c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008c13c xTaskGetTickCount + *fill* 0x4008c149 0x3 + .text.xTaskGetTickCountFromISR + 0x4008c14c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x22 (size before relaxing) + 0x4008c14c xTaskGetTickCountFromISR + *fill* 0x4008c16a 0x2 + .text.xTaskIncrementTick + 0x4008c16c 0x284 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x29b (size before relaxing) + 0x4008c16c xTaskIncrementTick + *fill* 0x4008c3f0 0x0 + .text.vTaskSwitchContext + 0x4008c3f0 0xf4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10f (size before relaxing) + 0x4008c3f0 vTaskSwitchContext + *fill* 0x4008c4e4 0x0 + .text.vTaskPlaceOnEventList + 0x4008c4e4 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + 0x4008c4e4 vTaskPlaceOnEventList + *fill* 0x4008c52b 0x1 + .text.vTaskPlaceOnUnorderedEventList + 0x4008c52c 0x9b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa7 (size before relaxing) + 0x4008c52c vTaskPlaceOnUnorderedEventList + *fill* 0x4008c5c7 0x1 + .text.vTaskPlaceOnEventListRestricted + 0x4008c5c8 0xb7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc3 (size before relaxing) + 0x4008c5c8 vTaskPlaceOnEventListRestricted + *fill* 0x4008c67f 0x1 + .text.xTaskRemoveFromEventList + 0x4008c680 0x1fc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x213 (size before relaxing) + 0x4008c680 xTaskRemoveFromEventList + *fill* 0x4008c87c 0x0 + .text.vTaskRemoveFromUnorderedEventList + 0x4008c87c 0x1b6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1be (size before relaxing) + 0x4008c87c vTaskRemoveFromUnorderedEventList + *fill* 0x4008ca32 0x2 + .text.vTaskInternalSetTimeOutState + 0x4008ca34 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008ca34 vTaskInternalSetTimeOutState + *fill* 0x4008ca4d 0x3 + .text.xTaskCheckForTimeOut + 0x4008ca50 0xb7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc2 (size before relaxing) + 0x4008ca50 xTaskCheckForTimeOut + *fill* 0x4008cb07 0x1 + .text.xTaskGetCurrentTaskHandle + 0x4008cb08 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008cb08 xTaskGetCurrentTaskHandle + *fill* 0x4008cb27 0x1 + .text.uxTaskPriorityGet + 0x4008cb28 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x26 (size before relaxing) + 0x4008cb28 uxTaskPriorityGet + *fill* 0x4008cb47 0x1 + .text.vTaskPrioritySet + 0x4008cb48 0x15b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x16b (size before relaxing) + 0x4008cb48 vTaskPrioritySet + *fill* 0x4008cca3 0x1 + .text.vTaskSuspend + 0x4008cca4 0x124 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x134 (size before relaxing) + 0x4008cca4 vTaskSuspend + .text.pcTaskGetName + 0x4008cdc8 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x27 (size before relaxing) + 0x4008cdc8 pcTaskGetName + *fill* 0x4008cdec 0x0 + .text.pvTaskGetThreadLocalStoragePointer + 0x4008cdec 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + 0x4008cdec pvTaskGetThreadLocalStoragePointer + .text.xTaskGetSchedulerState + 0x4008ce08 0x37 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008ce08 xTaskGetSchedulerState + *fill* 0x4008ce3f 0x1 + .text.vTaskDelete + 0x4008ce40 0xf4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x113 (size before relaxing) + 0x4008ce40 vTaskDelete + *fill* 0x4008cf34 0x0 + .text.vTaskDelay + 0x4008cf34 0x3b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4f (size before relaxing) + 0x4008cf34 vTaskDelay + *fill* 0x4008cf6f 0x1 + .text.xTaskResumeAll + 0x4008cf70 0x1f0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1ff (size before relaxing) + 0x4008cf70 xTaskResumeAll + *fill* 0x4008d160 0x0 + .text.xTaskPriorityInherit + 0x4008d160 0x10f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x11a (size before relaxing) + 0x4008d160 xTaskPriorityInherit + *fill* 0x4008d26f 0x1 + .text.xTaskPriorityDisinherit + 0x4008d270 0xe8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xf7 (size before relaxing) + 0x4008d270 xTaskPriorityDisinherit + *fill* 0x4008d358 0x0 + .text.vTaskPriorityDisinheritAfterTimeout + 0x4008d358 0xfc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xff (size before relaxing) + 0x4008d358 vTaskPriorityDisinheritAfterTimeout + *fill* 0x4008d454 0x0 + .text.uxTaskResetEventItemValue + 0x4008d454 0x42 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x46 (size before relaxing) + 0x4008d454 uxTaskResetEventItemValue + *fill* 0x4008d496 0x2 + .text.pvTaskIncrementMutexHeldCount + 0x4008d498 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4a (size before relaxing) + 0x4008d498 pvTaskIncrementMutexHeldCount + *fill* 0x4008d4df 0x1 + .text.ulTaskGenericNotifyTake + 0x4008d4e0 0xf2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x106 (size before relaxing) + 0x4008d4e0 ulTaskGenericNotifyTake + *fill* 0x4008d5d2 0x2 + .text.xTaskGenericNotifyWait + 0x4008d5d4 0x123 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x137 (size before relaxing) + 0x4008d5d4 xTaskGenericNotifyWait + *fill* 0x4008d6f7 0x1 + .text.xTaskGenericNotify + 0x4008d6f8 0x1d3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1e6 (size before relaxing) + 0x4008d6f8 xTaskGenericNotify + *fill* 0x4008d8cb 0x1 + .text.vTaskGenericNotifyGiveFromISR + 0x4008d8cc 0x1a3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1b3 (size before relaxing) + 0x4008d8cc vTaskGenericNotifyGiveFromISR + *fill* 0x4008da6f 0x1 + .text.prvTakeKernelLock + 0x4008da70 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + 0x4008da70 prvTakeKernelLock + *fill* 0x4008da7d 0x3 + .text.prvReleaseKernelLock + 0x4008da80 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xe (size before relaxing) + 0x4008da80 prvReleaseKernelLock + *fill* 0x4008da8b 0x1 + .text.xTaskIncrementTickOtherCores + 0x4008da8c 0x96 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9a (size before relaxing) + 0x4008da8c xTaskIncrementTickOtherCores + *fill* 0x4008db22 0x2 + .text.xTaskCreatePinnedToCore + 0x4008db24 0x96 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa6 (size before relaxing) + 0x4008db24 xTaskCreatePinnedToCore + *fill* 0x4008dbba 0x2 + .text.xTaskCreateStaticPinnedToCore + 0x4008dbbc 0xf0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xfc (size before relaxing) + 0x4008dbbc xTaskCreateStaticPinnedToCore + .text.prvCreateIdleTasks + 0x4008dcac 0x8e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x92 (size before relaxing) + *fill* 0x4008dd3a 0x2 + .text.vTaskStartScheduler + 0x4008dd3c 0x61 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x74 (size before relaxing) + 0x4008dd3c vTaskStartScheduler + *fill* 0x4008dd9d 0x3 + .text.xTaskGetCoreID + 0x4008dda0 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13 (size before relaxing) + 0x4008dda0 xTaskGetCoreID + *fill* 0x4008ddb0 0x0 + .text.xTaskGetIdleTaskHandleForCore + 0x4008ddb0 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + 0x4008ddb0 xTaskGetIdleTaskHandleForCore + .text.xTaskGetCurrentTaskHandleForCore + 0x4008dde8 0x2b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008dde8 xTaskGetCurrentTaskHandleForCore + *fill* 0x4008de13 0x1 + .text.prvTaskPriorityRaise + 0x4008de14 0xdb esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xeb (size before relaxing) + 0x4008de14 prvTaskPriorityRaise + *fill* 0x4008deef 0x1 + .text.prvTaskPriorityRestore + 0x4008def0 0xe0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xef (size before relaxing) + 0x4008def0 prvTaskPriorityRestore + *fill* 0x4008dfd0 0x0 + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x4008dfd0 0x33 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x37 (size before relaxing) + 0x4008dfd0 vTaskSetThreadLocalStoragePointerAndDelCallback + *fill* 0x4008e003 0x1 + .text.__getreent + 0x4008e004 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008e004 __getreent + *fill* 0x4008e01a 0x2 + .text.vTaskGetSnapshot + 0x4008e01c 0x25 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x29 (size before relaxing) + 0x4008e01c vTaskGetSnapshot + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *fill* 0x4008e041 0x0 + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal_esp32.*(.literal .literal.* .text .text.*) + *fill* 0x4008e041 0x3 + .text.cache_hal_suspend + 0x4008e044 0xde esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0xea (size before relaxing) + 0x4008e044 cache_hal_suspend + *fill* 0x4008e122 0x2 + .text.cache_hal_resume + 0x4008e124 0x7e esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x8e (size before relaxing) + 0x4008e124 cache_hal_resume + *fill* 0x4008e1a2 0x2 + .text.cache_hal_is_cache_enabled + 0x4008e1a4 0x25 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x29 (size before relaxing) + 0x4008e1a4 cache_hal_is_cache_enabled + *fill* 0x4008e1c9 0x0 + *fill* 0x4008e1c9 0x0 + *fill* 0x4008e1c9 0x0 + *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) + *fill* 0x4008e1c9 0x3 + .text.mmu_ll_check_entry_valid + 0x4008e1cc 0x41 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x45 (size before relaxing) + *fill* 0x4008e20d 0x3 + .text.mmu_ll_get_entry_target + 0x4008e210 0x48 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x50 (size before relaxing) + .text.mmu_ll_entry_id_to_paddr_base + 0x4008e258 0x41 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x49 (size before relaxing) + *fill* 0x4008e299 0x3 + .text.mmu_hal_check_valid_ext_vaddr_region + 0x4008e29c 0xa3 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4008e29c mmu_hal_check_valid_ext_vaddr_region + *fill* 0x4008e33f 0x1 + .text.mmu_hal_map_region + 0x4008e340 0x185 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x195 (size before relaxing) + 0x4008e340 mmu_hal_map_region + *fill* 0x4008e4c5 0x3 + .text.mmu_hal_unmap_region + 0x4008e4c8 0x13f esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x147 (size before relaxing) + 0x4008e4c8 mmu_hal_unmap_region + *fill* 0x4008e607 0x1 + .text.mmu_hal_vaddr_to_paddr + 0x4008e608 0xd0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xe4 (size before relaxing) + 0x4008e608 mmu_hal_vaddr_to_paddr + *fill* 0x4008e6d8 0x0 + *fill* 0x4008e6d8 0x0 + *fill* 0x4008e6d8 0x0 + .text.mmu_hal_pages_to_bytes + 0x4008e6d8 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4008e6d8 mmu_hal_pages_to_bytes + *fill* 0x4008e6e0 0x0 + *fill* 0x4008e6e0 0x0 + *fill* 0x4008e6e0 0x0 + *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + .text.spi_flash_encrypt_ll_enable + 0x4008e6e0 0x1b esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + *fill* 0x4008e6fb 0x1 + .text.spi_flash_encrypt_ll_disable + 0x4008e6fc 0x1b esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + *fill* 0x4008e717 0x1 + .text.spi_flash_encrypt_ll_plaintext_save + 0x4008e718 0x43 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x46 (size before relaxing) + *fill* 0x4008e75b 0x1 + .text.spi_flash_encryption_hal_enable + 0x4008e75c 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0xb (size before relaxing) + 0x4008e75c spi_flash_encryption_hal_enable + *fill* 0x4008e764 0x0 + .text.spi_flash_encryption_hal_disable + 0x4008e764 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0xb (size before relaxing) + 0x4008e764 spi_flash_encryption_hal_disable + *fill* 0x4008e76c 0x0 + .text.spi_flash_encryption_hal_prepare + 0x4008e76c 0x20 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x24 (size before relaxing) + 0x4008e76c spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x4008e78c 0x10 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4008e78c spi_flash_encryption_hal_done + *fill* 0x4008e79c 0x0 + *fill* 0x4008e79c 0x0 + *fill* 0x4008e79c 0x0 + *fill* 0x4008e79c 0x0 + *fill* 0x4008e79c 0x0 + .text.spi_flash_encryption_hal_destroy + 0x4008e79c 0x5 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4008e79c spi_flash_encryption_hal_destroy + *fill* 0x4008e7a1 0x3 + .text.spi_flash_encryption_hal_check + 0x4008e7a4 0xf esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4008e7a4 spi_flash_encryption_hal_check + *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x4008e7b3 0x1 + .text.spi_flash_ll_set_read_mode + 0x4008e7b4 0xba esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *fill* 0x4008e86e 0x2 + .text.spi_flash_ll_set_buffer_data + 0x4008e870 0x3d esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *fill* 0x4008e8ad 0x3 + .text.spi_flash_ll_get_buffer_data + 0x4008e8b0 0x56 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *fill* 0x4008e906 0x2 + .text.spi_flash_hal_configure_host_io_mode + 0x4008e908 0x198 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008e908 spi_flash_hal_configure_host_io_mode + .text.spi_flash_hal_common_command + 0x4008eaa0 0x168 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x16c (size before relaxing) + 0x4008eaa0 spi_flash_hal_common_command + .text.spi_flash_hal_read + 0x4008ec08 0xc0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008ec08 spi_flash_hal_read + .text.spi_flash_hal_erase_chip + 0x4008ecc8 0x22 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008ecc8 spi_flash_hal_erase_chip + *fill* 0x4008ecea 0x2 + .text.spi_flash_hal_erase_sector + 0x4008ecec 0x5a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008ecec spi_flash_hal_erase_sector + *fill* 0x4008ed46 0x2 + .text.spi_flash_hal_erase_block + 0x4008ed48 0x52 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008ed48 spi_flash_hal_erase_block + *fill* 0x4008ed9a 0x2 + .text.spi_flash_hal_program_page + 0x4008ed9c 0x74 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008ed9c spi_flash_hal_program_page + .text.spi_flash_hal_set_write_protect + 0x4008ee10 0x3c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008ee10 spi_flash_hal_set_write_protect + .text.spi_flash_hal_check_status + 0x4008ee4c 0x36 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008ee4c spi_flash_hal_check_status + *fill* 0x4008ee82 0x2 + .text.spi_flash_hal_resume + 0x4008ee84 0x6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x9 (size before relaxing) + 0x4008ee84 spi_flash_hal_resume + *fill* 0x4008ee8a 0x2 + .text.spi_flash_hal_suspend + 0x4008ee8c 0x6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x9 (size before relaxing) + 0x4008ee8c spi_flash_hal_suspend + *fill* 0x4008ee92 0x0 + *fill* 0x4008ee92 0x0 + *fill* 0x4008ee92 0x0 + *fill* 0x4008ee92 0x2 + .text.spi_flash_hal_poll_cmd_done + 0x4008ee94 0xf esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008ee94 spi_flash_hal_poll_cmd_done + *fill* 0x4008eea3 0x1 + .text.spi_flash_hal_device_config + 0x4008eea4 0xdb esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008eea4 spi_flash_hal_device_config + *fill* 0x4008ef7f 0x0 + *fill* 0x4008ef7f 0x0 + *fill* 0x4008ef7f 0x0 + *fill* 0x4008ef7f 0x0 + *fill* 0x4008ef7f 0x1 + .text.spi_flash_hal_setup_read_suspend + 0x4008ef80 0x7 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008ef80 spi_flash_hal_setup_read_suspend + *fill* 0x4008ef87 0x0 + *fill* 0x4008ef87 0x0 + *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) + *libhal.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x4008ef87 0x1 + .text.wdt_hal_init + 0x4008ef88 0x29a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008ef88 wdt_hal_init + *fill* 0x4008f222 0x2 + .text.wdt_hal_config_stage + 0x4008f224 0x16d esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x174 (size before relaxing) + 0x4008f224 wdt_hal_config_stage + *fill* 0x4008f391 0x3 + .text.wdt_hal_write_protect_disable + 0x4008f394 0x22 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008f394 wdt_hal_write_protect_disable + *fill* 0x4008f3b6 0x2 + .text.wdt_hal_enable + 0x4008f3b8 0x50 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008f3b8 wdt_hal_enable + .text.wdt_hal_handle_intr + 0x4008f408 0x50 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008f408 wdt_hal_handle_intr + .text.wdt_hal_feed + 0x4008f458 0x2a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008f458 wdt_hal_feed + *fill* 0x4008f482 0x2 + .text.wdt_hal_set_flashboot_en + 0x4008f484 0x49 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008f484 wdt_hal_set_flashboot_en + *fill* 0x4008f4cd 0x0 + *fill* 0x4008f4cd 0x0 + *fill* 0x4008f4cd 0x3 + .text.wdt_hal_write_protect_enable + 0x4008f4d0 0x20 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008f4d0 wdt_hal_write_protect_enable + .text.wdt_hal_disable + 0x4008f4f0 0x32 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008f4f0 wdt_hal_disable + *fill* 0x4008f522 0x0 + *fill* 0x4008f522 0x0 + *fill* 0x4008f522 0x2 + .text.wdt_hal_is_enabled + 0x4008f524 0x22 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008f524 wdt_hal_is_enabled + *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) + *fill* 0x4008f546 0x2 + .text.assert_valid_block + 0x4008f548 0x38 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x3c (size before relaxing) + *fill* 0x4008f580 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl .text.multi_heap_aligned_alloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl_offs .text.multi_heap_aligned_alloc_impl_offs) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) + *libheap.a:multi_heap.*(.literal.multi_heap_free_impl .text.multi_heap_free_impl) + .text.multi_heap_free_impl + 0x4008f580 0x46 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x56 (size before relaxing) + 0x4008f580 multi_heap_free_impl + 0x4008f580 multi_heap_aligned_free + 0x4008f580 multi_heap_free + *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) + *fill* 0x4008f5c6 0x2 + .text.multi_heap_get_allocated_size_impl + 0x4008f5c8 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + 0x4008f5c8 multi_heap_get_allocated_size_impl + 0x4008f5c8 multi_heap_get_allocated_size + *fill* 0x4008f5d4 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_get_block_address_impl .text.multi_heap_get_block_address_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_first_block .text.multi_heap_get_first_block) + *libheap.a:multi_heap.*(.literal.multi_heap_get_next_block .text.multi_heap_get_next_block) + *libheap.a:multi_heap.*(.literal.multi_heap_internal_lock .text.multi_heap_internal_lock) + .text.multi_heap_internal_lock + 0x4008f5d4 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x28 (size before relaxing) + 0x4008f5d4 multi_heap_internal_lock + *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock) + .text.multi_heap_internal_unlock + 0x4008f5f8 0x1f esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x26 (size before relaxing) + 0x4008f5f8 multi_heap_internal_unlock + *libheap.a:multi_heap.*(.literal.multi_heap_is_free .text.multi_heap_is_free) + *libheap.a:multi_heap.*(.literal.multi_heap_malloc_impl .text.multi_heap_malloc_impl) + *fill* 0x4008f617 0x1 + .text.multi_heap_malloc_impl + 0x4008f618 0x50 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x60 (size before relaxing) + 0x4008f618 multi_heap_malloc + 0x4008f618 multi_heap_malloc_impl + *fill* 0x4008f668 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl) + .text.multi_heap_realloc_impl + 0x4008f668 0x6e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x86 (size before relaxing) + 0x4008f668 multi_heap_realloc + 0x4008f668 multi_heap_realloc_impl + *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock) + *fill* 0x4008f6d6 0x2 + .text.multi_heap_set_lock + 0x4008f6d8 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4008f6d8 multi_heap_set_lock + *libheap.a:tlsf.*(.literal.tlsf_align_size .text.tlsf_align_size) + *libheap.a:tlsf.*(.literal.tlsf_alloc_overhead .text.tlsf_alloc_overhead) + *fill* 0x4008f6df 0x1 + .text.tlsf_alloc_overhead + 0x4008f6e0 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4008f6e0 tlsf_alloc_overhead + *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size) + *fill* 0x4008f6e7 0x1 + .text.tlsf_block_size + 0x4008f6e8 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4008f6e8 tlsf_block_size + *libheap.a:tlsf.*(.literal.tlsf_block_size_max .text.tlsf_block_size_max) + *fill* 0x4008f6fe 0x2 + .text.tlsf_block_size_max + 0x4008f700 0x19 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4008f700 tlsf_block_size_max + *libheap.a:tlsf.*(.literal.tlsf_block_size_min .text.tlsf_block_size_min) + *libheap.a:tlsf.*(.literal.tlsf_free .text.tlsf_free) + *fill* 0x4008f719 0x3 + .text.tlsf_free + 0x4008f71c 0x404 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x41c (size before relaxing) + 0x4008f71c tlsf_free + *fill* 0x4008fb20 0x0 + *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool) + .text.tlsf_get_pool + 0x4008fb20 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + 0x4008fb20 tlsf_get_pool + *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc) + .text.tlsf_malloc + 0x4008fb2c 0x3df esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3f3 (size before relaxing) + 0x4008fb2c tlsf_malloc + *libheap.a:tlsf.*(.literal.tlsf_memalign .text.tlsf_memalign) + *libheap.a:tlsf.*(.literal.tlsf_memalign_offs .text.tlsf_memalign_offs) + *libheap.a:tlsf.*(.literal.tlsf_realloc .text.tlsf_realloc) + *fill* 0x4008ff0b 0x1 + .text.tlsf_realloc + 0x4008ff0c 0x5ae esp-idf/heap/libheap.a(tlsf.c.obj) + 0x5da (size before relaxing) + 0x4008ff0c tlsf_realloc + *fill* 0x400904ba 0x0 + *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size) + *fill* 0x400904ba 0x2 + .text.tlsf_size + 0x400904bc 0xe esp-idf/heap/libheap.a(tlsf.c.obj) + 0x400904bc tlsf_size + *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) + *fill* 0x400904ca 0x2 + .text.esp_log_write + 0x400904cc 0x26 esp-idf/log/liblog.a(log.c.obj) + 0x400904cc esp_log_write + *fill* 0x400904f2 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *fill* 0x400904f2 0x2 + .text.esp_log_early_timestamp + 0x400904f4 0x1c esp-idf/log/liblog.a(log_freertos.c.obj) + 0x400904f4 esp_log_early_timestamp + *fill* 0x40090510 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + .text.esp_log_impl_lock + 0x40090510 0x27 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x32 (size before relaxing) + 0x40090510 esp_log_impl_lock + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *fill* 0x40090537 0x1 + .text.esp_log_impl_lock_timeout + 0x40090538 0x3c esp-idf/log/liblog.a(log_freertos.c.obj) + 0x44 (size before relaxing) + 0x40090538 esp_log_impl_lock_timeout + *fill* 0x40090574 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + .text.esp_log_impl_unlock + 0x40090574 0x1b esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1f (size before relaxing) + 0x40090574 esp_log_impl_unlock + *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *fill* 0x4009058f 0x1 + .text.esp_log_timestamp + 0x40090590 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x57 (size before relaxing) + 0x40090590 esp_log_timestamp + *fill* 0x400905d8 0x0 + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *fill* 0x400905d8 0x0 + .wifi0iram.8 0x400905d8 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x7c (size before relaxing) + 0x400905e8 nan_dp_search_node + .wifi0iram.19 0x40090648 0x55d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x5a5 (size before relaxing) + 0x40090684 ieee80211_encap_esfbuf + *fill* 0x40090ba5 0x3 + .wifi0iram.11 0x40090ba8 0x2a8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2d8 (size before relaxing) + 0x40090bf8 ieee80211_output_process + .wifi0iram.12 0x40090e50 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x40090e54 chm_is_at_home_channel + *fill* 0x40090e6e 0x2 + .wifi0iram.90 0x40090e70 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x86 (size before relaxing) + 0x40090e80 cnx_node_search + *fill* 0x40090ee6 0x2 + .wifi0iram.92 0x40090ee8 0x55 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x69 (size before relaxing) + 0x40090ef0 cnx_node_is_existing + *fill* 0x40090f3d 0x3 + .wifi0iram.36 0x40090f40 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x40090f40 ieee80211_is_tx_allowed + *fill* 0x40090f5e 0x0 + *fill* 0x40090f5e 0x0 + *fill* 0x40090f5e 0x0 + *fill* 0x40090f5e 0x0 + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *fill* 0x40090f5e 0x2 + .wifirxiram.27 + 0x40090f60 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x78 (size before relaxing) + 0x40090f6c ampdu_dispatch + .wifirxiram.29 + 0x40090fc8 0x91 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xa1 (size before relaxing) + 0x40090fd0 ampdu_dispatch_as_many_as_possible + *fill* 0x40091059 0x3 + .wifirxiram.31 + 0x4009105c 0x8d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x9d (size before relaxing) + 0x40091060 ampdu_dispatch_all + *fill* 0x400910e9 0x3 + .wifirxiram.33 + 0x400910ec 0xd7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xf3 (size before relaxing) + 0x400910f0 ampdu_dispatch_upto + *fill* 0x400911c3 0x1 + .wifirxiram.37 + 0x400911c4 0x238 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x26c (size before relaxing) + 0x400911e8 ieee80211_ampdu_reorder + .wifirxiram.45 + 0x400913fc 0x58a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x5d2 (size before relaxing) + 0x40091448 sta_input + *fill* 0x40091986 0x2 + .wifirxiram.51 + 0x40091988 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x20 (size before relaxing) + 0x40091988 sta_rx_cb + *fill* 0x400919a0 0x0 + *fill* 0x400919a0 0x0 + *fill* 0x400919a0 0x0 + *fill* 0x400919a0 0x0 + *fill* 0x400919a0 0x0 + *libnet80211.a:(.wifislprxiram .wifislprxiram.*) + .wifislprxiram.34 + 0x400919a0 0x8f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xa3 (size before relaxing) + 0x400919b0 wifi_rf_phy_enable + *fill* 0x40091a2f 0x1 + .wifislprxiram.36 + 0x40091a30 0x80 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x9c (size before relaxing) + 0x40091a38 wifi_rf_phy_disable + .wifislprxiram.115 + 0x40091ab0 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x52 (size before relaxing) + 0x40091ab0 sta_reset_beacon_timeout + *fill* 0x40091afa 0x0 + *libnewlib.a:abort.*(.literal .literal.* .text .text.*) + *fill* 0x40091afa 0x2 + .text.abort 0x40091afc 0x8c esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x90 (size before relaxing) + 0x40091afc abort + *fill* 0x40091b88 0x0 + *libnewlib.a:assert.*(.literal .literal.* .text .text.*) + .text.ra_to_str + 0x40091b88 0x2f esp-idf/newlib/libnewlib.a(assert.c.obj) + *fill* 0x40091bb7 0x1 + .text.__assert_func + 0x40091bb8 0x10c esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x118 (size before relaxing) + 0x40091bb8 __assert_func + *fill* 0x40091cc4 0x0 + .text.newlib_include_assert_impl + 0x40091cc4 0x5 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x40091cc4 newlib_include_assert_impl + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + *fill* 0x40091cc9 0x3 + .text.malloc 0x40091ccc 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x40091ccc valloc + 0x40091ccc malloc + 0x40091ccc pvalloc + .text.realloc 0x40091cd8 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40091cd8 realloc + *fill* 0x40091ce9 0x3 + .text.free 0x40091cec 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x40091cec cfree + 0x40091cec free + *fill* 0x40091cf6 0x2 + .text._malloc_r + 0x40091cf8 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x40091cf8 _malloc_r + .text._free_r 0x40091d04 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x40091d04 _free_r + *fill* 0x40091d0e 0x2 + .text._realloc_r + 0x40091d10 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40091d10 _realloc_r + *fill* 0x40091d21 0x3 + .text._calloc_r + 0x40091d24 0x2c esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x30 (size before relaxing) + 0x40091d24 _calloc_r + .text.calloc 0x40091d50 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x18 (size before relaxing) + 0x40091d50 calloc + *fill* 0x40091d64 0x0 + *fill* 0x40091d64 0x0 + *fill* 0x40091d64 0x0 + *fill* 0x40091d64 0x0 + *fill* 0x40091d64 0x0 + .text.newlib_include_heap_impl + 0x40091d64 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x40091d64 newlib_include_heap_impl + *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) + *libpp.a:(.wifi0iram .wifi0iram.*) + *fill* 0x40091d69 0x3 + .wifi0iram.17 0x40091d6c 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x40091d70 GetAccess + *fill* 0x40091d81 0x3 + .wifi0iram.38 0x40091d84 0x82 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xa2 (size before relaxing) + 0x40091d88 lmacMSDUAged + *fill* 0x40091e06 0x2 + .wifi0iram.54 0x40091e08 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x5a (size before relaxing) + 0x40091e08 lmacAdjustTimestamp + *fill* 0x40091e52 0x2 + .wifi0iram.55 0x40091e54 0x1f2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x23a (size before relaxing) + 0x40091e80 lmacTxFrame + *fill* 0x40092046 0x2 + .wifi0iram.59 0x40092048 0x8f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xba (size before relaxing) + 0x40092060 lmacTxDone + *fill* 0x400920d7 0x1 + .wifi0iram.18 0x400920d8 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x400920dc lmacDiscardAgedMSDU + .wifi0iram.19 0x400920f0 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x27 (size before relaxing) + 0x400920f0 lmacRecycleMPDU + *fill* 0x40092113 0x1 + .wifi0iram.22 0x40092114 0x2c2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x31a (size before relaxing) + 0x40092140 lmacEndFrameExchangeSequence + *fill* 0x400923d6 0x2 + .wifi0iram.63 0x400923d8 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x20 (size before relaxing) + 0x400923d8 is_lmac_idle + .wifi0iram.8 0x400923f4 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1e (size before relaxing) + 0x400923f8 pp_process_hmac_waiting_txq + *fill* 0x4009240e 0x2 + .wifi0iram.12 0x40092410 0x8d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x95 (size before relaxing) + 0x40092410 ppTxProtoProc + *fill* 0x4009249d 0x3 + .wifi0iram.20 0x400924a0 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x6c (size before relaxing) + 0x400924a0 ppProcTxCallback + .wifi0iram.23 0x40092508 0x118 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x120 (size before relaxing) + 0x4009250c pp_coex_tx_request + .wifi0iram.33 0x40092620 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x27 (size before relaxing) + 0x40092620 ppResumeTxAMPDU + *fill* 0x40092643 0x1 + .wifi0iram.34 0x40092644 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40092648 ppCalSubFrameLength + *fill* 0x4009266b 0x1 + .wifi0iram.62 0x4009266c 0xf2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xfe (size before relaxing) + 0x40092670 ppSearchTxQueue + *fill* 0x4009275e 0x2 + .wifi0iram.60 0x40092760 0x114 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x124 (size before relaxing) + 0x40092768 ppSearchTxframe + .wifi0iram.65 0x40092874 0x18d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1a9 (size before relaxing) + 0x40092880 ppMapTxQueue + *fill* 0x40092a01 0x3 + .wifi0iram.68 0x40092a04 0x144 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x164 (size before relaxing) + 0x40092a24 ppProcTxSecFrame + .wifi0iram.70 0x40092b48 0x67 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x6b (size before relaxing) + 0x40092b54 ppCalFrameTimes + *fill* 0x40092baf 0x1 + .wifi0iram.13 0x40092bb0 0x1ef C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x25f (size before relaxing) + 0x40092bc4 ppTxPkt + *fill* 0x40092d9f 0x1 + .wifi0iram.41 0x40092da0 0x2c6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2fe (size before relaxing) + 0x40092db4 ppCalTxAMPDULength + *fill* 0x40093066 0x2 + .wifi0iram.24 0x40093068 0x148 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x190 (size before relaxing) + 0x40093074 ppProcessTxQ + .wifi0iram.44 0x400931b0 0x3db C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x436 (size before relaxing) + 0x400931c4 ppResortTxAMPDU + *fill* 0x4009358b 0x1 + .wifi0iram.10 0x4009358c 0x1ff C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x237 (size before relaxing) + 0x400935c8 ppTask + *fill* 0x4009378b 0x1 + .wifi0iram.74 0x4009378c 0xa3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xbb (size before relaxing) + 0x40093798 ppProcessLifeTime + *fill* 0x4009382f 0x1 + .wifi0iram.8 0x40093830 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x73 (size before relaxing) + 0x40093838 rcUpdateTxDone + *fill* 0x4009389f 0x1 + .wifi0iram.10 0x400938a0 0x35e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x386 (size before relaxing) + 0x400938d0 rcUpdateTxDoneAmpdu2 + *fill* 0x40093bfe 0x2 + .wifi0iram.11 0x40093c00 0xd9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xe1 (size before relaxing) + 0x40093c20 rcGetSched + *fill* 0x40093cd9 0x3 + .wifi0iram.7 0x40093cdc 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9b (size before relaxing) + 0x40093cf4 wdev_mac_reg_load + *fill* 0x40093d4b 0x1 + .wifi0iram.8 0x40093d4c 0x57 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9b (size before relaxing) + 0x40093d4c wdev_mac_reg_store + *fill* 0x40093da3 0x1 + .wifi0iram.9 0x40093da4 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40093db4 wdev_mac_special_reg_load + .wifi0iram.10 0x40093dc8 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x24 (size before relaxing) + 0x40093dcc wdev_mac_special_reg_store + .wifi0iram.13 0x40093de0 0x99 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xb5 (size before relaxing) + 0x40093df0 wdev_mac_wakeup + *fill* 0x40093e79 0x3 + .wifi0iram.14 0x40093e7c 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x36 (size before relaxing) + 0x40093e7c wdev_is_data_in_rxlist + *fill* 0x40093eaa 0x2 + .wifi0iram.15 0x40093eac 0x7c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xa8 (size before relaxing) + 0x40093eb0 wdev_mac_sleep + .wifi0iram.3 0x40093f28 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x34 (size before relaxing) + 0x40093f2c hal_mac_tx_config_timeout + .wifi0iram.4 0x40093f58 0x5f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x63 (size before relaxing) + 0x40093f60 hal_mac_tx_config_edca + *fill* 0x40093fb7 0x1 + .wifi0iram.5 0x40093fb8 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2c (size before relaxing) + 0x40093fbc hal_mac_txq_enable + .wifi0iram.7 0x40093fe0 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x40093fec hal_mac_tx_get_blockack + *fill* 0x4009403b 0x1 + .wifi0iram.8 0x4009403c 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x40094040 hal_random + *fill* 0x4009404d 0x3 + .wifi0iram.9 0x40094050 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2f (size before relaxing) + 0x40094058 hal_mac_is_low_rate_enabled + *fill* 0x4009407b 0x1 + .wifi0iram.18 0x4009407c 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x43 (size before relaxing) + 0x40094084 hal_mac_deinit + *fill* 0x400940b7 0x1 + .wifi0iram.5 0x400940b8 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x400940bc hal_mac_tx_is_cbw40 + *fill* 0x400940d8 0x0 + *fill* 0x400940d8 0x0 + *fill* 0x400940d8 0x0 + *fill* 0x400940d8 0x0 + *fill* 0x400940d8 0x0 + *fill* 0x400940d8 0x0 + *fill* 0x400940d8 0x0 + *fill* 0x400940d8 0x0 + *fill* 0x400940d8 0x0 + *fill* 0x400940d8 0x0 + *fill* 0x400940d8 0x0 + *fill* 0x400940d8 0x0 + .wifi0iram.35 0x400940d8 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x400940d8 ppEmptyDelimiterLength + .wifi0iram.37 0x400940f8 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x400940f8 ppSubFromAMPDU + *fill* 0x40094114 0x0 + *fill* 0x40094114 0x0 + *fill* 0x40094114 0x0 + *fill* 0x40094114 0x0 + *fill* 0x40094114 0x0 + *fill* 0x40094114 0x0 + *fill* 0x40094114 0x0 + *fill* 0x40094114 0x0 + *fill* 0x40094114 0x0 + *fill* 0x40094114 0x0 + *fill* 0x40094114 0x0 + .wifi0iram.20 0x40094114 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40094114 trc_isTxAmpduOperational + *fill* 0x40094126 0x2 + .wifi0iram.21 0x40094128 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40094128 trc_tid_isTxAmpduOperational + *fill* 0x4009413f 0x1 + .wifi0iram.5 0x40094140 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40094140 wdev_bank_store + *fill* 0x4009415e 0x2 + .wifi0iram.6 0x40094160 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40094160 wdev_bank_load + *fill* 0x4009417e 0x0 + *fill* 0x4009417e 0x0 + *fill* 0x4009417e 0x0 + *fill* 0x4009417e 0x0 + *fill* 0x4009417e 0x0 + *fill* 0x4009417e 0x0 + *fill* 0x4009417e 0x0 + *fill* 0x4009417e 0x0 + *fill* 0x4009417e 0x0 + *fill* 0x4009417e 0x0 + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *fill* 0x4009417e 0x2 + .wifiorslpiram.27 + 0x40094180 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x33 (size before relaxing) + 0x40094184 wDev_GetNoiseFloor + *libpp.a:(.wifirxiram .wifirxiram.*) + *fill* 0x400941af 0x1 + .wifirxiram.9 0x400941b0 0x105 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x115 (size before relaxing) + 0x400941c4 esf_buf_recycle + *fill* 0x400942b5 0x3 + .wifirxiram.18 + 0x400942b8 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x8e (size before relaxing) + 0x400942c4 pm_enable_active_timer + *fill* 0x40094332 0x2 + .wifirxiram.45 + 0x40094334 0x7c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x88 (size before relaxing) + 0x40094344 pm_rx_data_process + .wifirxiram.49 + 0x400943b0 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x400943b0 pm_on_data_rx + *fill* 0x400943cc 0x0 + .wifirxiram.7 0x400943cc 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x36 (size before relaxing) + 0x400943cc ppProcessRxPktHdr + *fill* 0x400943fa 0x2 + .wifirxiram.27 + 0x400943fc 0x42e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x49a (size before relaxing) + 0x40094420 ppRxFragmentProc + *fill* 0x4009482a 0x2 + .wifirxiram.9 0x4009482c 0x80 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x84 (size before relaxing) + 0x4009482c rcUpdateRxDone + .wifirxiram.25 + 0x400948ac 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x5a (size before relaxing) + 0x400948b0 rc_get_trc + *fill* 0x400948fe 0x2 + .wifirxiram.25 + 0x40094900 0x2f6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x32a (size before relaxing) + 0x4009491c wDev_IndicateAmpdu + *fill* 0x40094bf6 0x0 + *fill* 0x40094bf6 0x0 + *fill* 0x40094bf6 0x2 + .wifirxiram.46 + 0x40094bf8 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x40094bf8 pm_hmac_rx_data_process + *fill* 0x40094bfd 0x0 + *fill* 0x40094bfd 0x0 + *fill* 0x40094bfd 0x0 + *fill* 0x40094bfd 0x0 + *fill* 0x40094bfd 0x0 + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *fill* 0x40094bfd 0x3 + .wifislprxiram.7 + 0x40094c00 0x148 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x168 (size before relaxing) + 0x40094c0c esf_buf_alloc + .wifislprxiram.3 + 0x40094d48 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x40094d48 ic_interface_enabled + .wifislprxiram.13 + 0x40094d5c 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40094d5c ic_mac_init + *fill* 0x40094d66 0x2 + .wifislprxiram.14 + 0x40094d68 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40094d68 ic_mac_deinit + *fill* 0x40094d72 0x2 + .wifislprxiram.3 + 0x40094d74 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x40094d74 pm_is_waked + *fill* 0x40094d86 0x2 + .wifislprxiram.4 + 0x40094d88 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x70 (size before relaxing) + 0x40094d8c pm_sleep_for + .wifislprxiram.6 + 0x40094de0 0xb3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xc3 (size before relaxing) + 0x40094de8 pm_scale_listen_interval + *fill* 0x40094e93 0x1 + .wifislprxiram.8 + 0x40094e94 0x1d2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x216 (size before relaxing) + 0x40094ebc pm_parse_beacon + *fill* 0x40095066 0x2 + .wifislprxiram.21 + 0x40095068 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x30 (size before relaxing) + 0x4009506c pm_disable_sleep_delay_timer + .wifislprxiram.24 + 0x40095090 0x7b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7f (size before relaxing) + 0x40095094 pm_beacon_monitor_tbtt_start + *fill* 0x4009510b 0x1 + .wifislprxiram.25 + 0x4009510c 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x4009510c pm_beacon_monitor_tbtt_stop + *fill* 0x4009511f 0x1 + .wifislprxiram.26 + 0x40095120 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x48 (size before relaxing) + 0x40095120 pm_enable_beacon_monitor_timer + .wifislprxiram.27 + 0x40095160 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x41 (size before relaxing) + 0x40095160 pm_disable_beacon_monitor_timer + *fill* 0x40095195 0x3 + .wifislprxiram.28 + 0x40095198 0xdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xff (size before relaxing) + 0x400951a0 pm_dream + *fill* 0x40095277 0x1 + .wifislprxiram.29 + 0x40095278 0x19a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1ce (size before relaxing) + 0x40095280 pm_sleep + *fill* 0x40095412 0x2 + .wifislprxiram.30 + 0x40095414 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x49 (size before relaxing) + 0x40095414 pm_check_state + *fill* 0x4009544e 0x2 + .wifislprxiram.36 + 0x40095450 0x81 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x9d (size before relaxing) + 0x40095450 pm_keep_alive + *fill* 0x400954d1 0x3 + .wifislprxiram.38 + 0x400954d4 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4e (size before relaxing) + 0x400954d4 pm_beacon_monitor_timeout_process + *fill* 0x4009551a 0x2 + .wifislprxiram.37 + 0x4009551c 0x181 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1a5 (size before relaxing) + 0x4009552c pm_process_tim + *fill* 0x4009569d 0x3 + .wifislprxiram.43 + 0x400956a0 0x98 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xac (size before relaxing) + 0x400956a0 pm_rx_beacon_process + .wifislprxiram.42 + 0x40095738 0xef C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x10f (size before relaxing) + 0x4009575c pm_tbtt_process + *fill* 0x40095827 0x1 + .wifislprxiram.39 + 0x40095828 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x23 (size before relaxing) + 0x40095828 pm_beacon_monitor_tbtt_timeout_process + *fill* 0x40095843 0x1 + .wifislprxiram.48 + 0x40095844 0x8f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xb3 (size before relaxing) + 0x4009584c pm_on_beacon_rx + *fill* 0x400958d3 0x1 + .wifislprxiram.25 + 0x400958d4 0xdd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x10d (size before relaxing) + 0x400958d8 ppRxProtoProc + *fill* 0x400959b1 0x3 + .wifislprxiram.50 + 0x400959b4 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x22 (size before relaxing) + 0x400959b4 ppEnqueueRxq + *fill* 0x400959d2 0x2 + .wifislprxiram.51 + 0x400959d4 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x29 (size before relaxing) + 0x400959d4 ppDequeueRxq_Locked + *fill* 0x400959f9 0x3 + .wifislprxiram.29 + 0x400959fc 0x131 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x161 (size before relaxing) + 0x40095a00 ppRxPkt + *fill* 0x40095b2d 0x3 + .wifislprxiram.48 + 0x40095b30 0x103 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x14f (size before relaxing) + 0x40095b44 wDev_AppendRxBlocks + *fill* 0x40095c33 0x1 + .wifislprxiram.23 + 0x40095c34 0x276 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2ba (size before relaxing) + 0x40095c34 wDev_IndicateFrame + *fill* 0x40095eaa 0x2 + .wifislprxiram.29 + 0x40095eac 0x329 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x39d (size before relaxing) + 0x40095ecc wDev_ProcessRxSucData + *fill* 0x400961d5 0x3 + .wifislprxiram.31 + 0x400961d8 0xfc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12c (size before relaxing) + 0x400961ec wdevProcessRxSucDataAll + .wifislprxiram.52 + 0x400962d4 0x8b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9f (size before relaxing) + 0x400962e8 wDevCheckBlockError + *fill* 0x4009635f 0x1 + .wifislprxiram.11 + 0x40096360 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x40096364 hal_mac_rx_read_rxdscrnext + *fill* 0x40096371 0x3 + .wifislprxiram.12 + 0x40096374 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x40096378 hal_mac_rx_set_base + .wifislprxiram.17 + 0x40096388 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x25 (size before relaxing) + 0x4009638c hal_mac_init + *fill* 0x400963a9 0x3 + .wifislprxiram.3 + 0x400963ac 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x400963b0 hal_mac_rx_get_last_dscr + *fill* 0x400963bd 0x3 + .wifislprxiram.4 + 0x400963c0 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x14 (size before relaxing) + 0x400963c0 hal_mac_rx_is_dscr_reload + .wifislprxiram.5 + 0x400963d0 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x1e (size before relaxing) + 0x400963d0 hal_mac_rx_set_dscr_reload + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *fill* 0x400963ea 0x0 + *librtc.a:(.literal .literal.* .text .text.*) + *fill* 0x400963ea 0x2 + .text.coex_bt_high_prio + 0x400963ec 0x117 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + 0x137 (size before relaxing) + 0x40096408 coex_bt_high_prio + *fill* 0x40096503 0x1 + .text.temprature_sens_read + 0x40096504 0xb1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + 0xe1 (size before relaxing) + 0x40096508 temprature_sens_read + *fill* 0x400965b5 0x0 + *fill* 0x400965b5 0x0 + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + *fill* 0x400965b5 0x3 + .text.spi_flash_needs_reset_check + 0x400965b8 0x16 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x400965b8 spi_flash_needs_reset_check + *fill* 0x400965ce 0x2 + .text.spi_flash_set_erasing_flag + 0x400965d0 0xb esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x400965d0 spi_flash_set_erasing_flag + *fill* 0x400965db 0x1 + .text.spi_flash_brownout_need_reset + 0x400965dc 0x21 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x400965dc spi_flash_brownout_need_reset + *fill* 0x400965fd 0x0 + *fill* 0x400965fd 0x0 + *fill* 0x400965fd 0x0 + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + *fill* 0x400965fd 0x3 + .text.memspi_host_read_status_hs + 0x40096600 0x33 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40096600 memspi_host_read_status_hs + *fill* 0x40096633 0x1 + .text.memspi_host_read_id_hs + 0x40096634 0x82 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x86 (size before relaxing) + 0x40096634 memspi_host_read_id_hs + *fill* 0x400966b6 0x2 + .text.memspi_host_flush_cache + 0x400966b8 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x400966b8 memspi_host_flush_cache + *fill* 0x400966d1 0x3 + .text.memspi_host_init_pointers + 0x400966d4 0x4e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x400966d4 memspi_host_init_pointers + *fill* 0x40096722 0x0 + *fill* 0x40096722 0x2 + .text.memspi_host_write_data_slicer + 0x40096724 0x33 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40096724 memspi_host_write_data_slicer + *fill* 0x40096757 0x1 + .text.memspi_host_read_data_slicer + 0x40096758 0x2a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40096758 memspi_host_read_data_slicer + *fill* 0x40096782 0x0 + *fill* 0x40096782 0x0 + *fill* 0x40096782 0x0 + *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *fill* 0x40096782 0x2 + .text.spi_flash_chip_gd_detect_size + 0x40096784 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40096784 spi_flash_chip_gd_detect_size + *fill* 0x400967b9 0x3 + .text.spi_flash_chip_gd_suspend_cmd_conf + 0x400967bc 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x400967bc spi_flash_chip_gd_suspend_cmd_conf + *fill* 0x400967f2 0x2 + .text.spi_flash_chip_gd_set_io_mode + 0x400967f4 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x44 (size before relaxing) + 0x400967f4 spi_flash_chip_gd_set_io_mode + .text.spi_flash_chip_gd_get_io_mode + 0x40096834 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40096834 spi_flash_chip_gd_get_io_mode + *fill* 0x40096852 0x2 + .text.spi_flash_chip_gd_get_caps + 0x40096854 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40096854 spi_flash_chip_gd_get_caps + *fill* 0x4009686d 0x0 + *fill* 0x4009686d 0x3 + .text.spi_flash_chip_gd_probe + 0x40096870 0x39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40096870 spi_flash_chip_gd_probe + *fill* 0x400968a9 0x0 + *fill* 0x400968a9 0x0 + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + *fill* 0x400968a9 0x3 + .text.spi_flash_chip_generic_detect_size + 0x400968ac 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x400968ac spi_flash_chip_generic_detect_size + *fill* 0x400968ed 0x3 + .text.spi_flash_chip_generic_reset + 0x400968f0 0x55 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x400968f0 spi_flash_chip_generic_reset + *fill* 0x40096945 0x3 + .text.spi_flash_chip_generic_config_host_io_mode + 0x40096948 0x152 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096948 spi_flash_chip_generic_config_host_io_mode + *fill* 0x40096a9a 0x2 + .text.spi_flash_chip_generic_write_encrypted + 0x40096a9c 0xcb esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096a9c spi_flash_chip_generic_write_encrypted + *fill* 0x40096b67 0x1 + .text.spi_flash_common_read_qe_sr + 0x40096b68 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_write_qe_sr + 0x40096b98 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x40096bc6 0x2 + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x40096bc8 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3c (size before relaxing) + 0x40096bc8 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x40096c00 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096c00 spi_flash_common_write_status_16b_wrsr + *fill* 0x40096c15 0x3 + .text.spi_flash_chip_generic_read + 0x40096c18 0xb6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc2 (size before relaxing) + 0x40096c18 spi_flash_chip_generic_read + *fill* 0x40096cce 0x2 + .text.spi_flash_chip_generic_write + 0x40096cd0 0xad esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096cd0 spi_flash_chip_generic_write + *fill* 0x40096d7d 0x3 + .text.spi_flash_chip_generic_get_write_protect + 0x40096d80 0x3c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096d80 spi_flash_chip_generic_get_write_protect + .text.spi_flash_chip_generic_yield + 0x40096dbc 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096dbc spi_flash_chip_generic_yield + *fill* 0x40096e06 0x2 + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x40096e08 0x5a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x5e (size before relaxing) + 0x40096e08 spi_flash_chip_generic_suspend_cmd_conf + *fill* 0x40096e62 0x2 + .text.spi_flash_chip_generic_read_unique_id + 0x40096e64 0x80 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x84 (size before relaxing) + 0x40096e64 spi_flash_chip_generic_read_unique_id + .text.spi_flash_common_read_status_8b_rdsr2 + 0x40096ee4 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096ee4 spi_flash_common_read_status_8b_rdsr2 + *fill* 0x40096ef9 0x3 + .text.spi_flash_chip_generic_get_io_mode + 0x40096efc 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096efc spi_flash_chip_generic_get_io_mode + *fill* 0x40096f1a 0x2 + .text.spi_flash_common_read_status_8b_rdsr + 0x40096f1c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096f1c spi_flash_common_read_status_8b_rdsr + *fill* 0x40096f31 0x3 + .text.spi_flash_common_write_status_8b_wrsr + 0x40096f34 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096f34 spi_flash_common_write_status_8b_wrsr + *fill* 0x40096f49 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x40096f4c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096f4c spi_flash_common_write_status_8b_wrsr2 + *fill* 0x40096f61 0x3 + .text.spi_flash_chip_generic_set_io_mode + 0x40096f64 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096f64 spi_flash_chip_generic_set_io_mode + *fill* 0x40096f7c 0x0 + *fill* 0x40096f7c 0x0 + .text.spi_flash_chip_generic_probe + 0x40096f7c 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096f7c spi_flash_chip_generic_probe + *fill* 0x40096f83 0x0 + *fill* 0x40096f83 0x1 + .text.spi_flash_chip_generic_erase_chip + 0x40096f84 0x8e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40096f84 spi_flash_chip_generic_erase_chip + *fill* 0x40097012 0x2 + .text.spi_flash_chip_generic_erase_sector + 0x40097014 0x8a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40097014 spi_flash_chip_generic_erase_sector + *fill* 0x4009709e 0x2 + .text.spi_flash_chip_generic_erase_block + 0x400970a0 0x8a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x400970a0 spi_flash_chip_generic_erase_block + *fill* 0x4009712a 0x2 + .text.spi_flash_chip_generic_page_program + 0x4009712c 0x6c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4009712c spi_flash_chip_generic_page_program + .text.spi_flash_chip_generic_set_write_protect + 0x40097198 0x4f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40097198 spi_flash_chip_generic_set_write_protect + *fill* 0x400971e7 0x1 + .text.spi_flash_chip_generic_read_reg + 0x400971e8 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x400971e8 spi_flash_chip_generic_read_reg + *fill* 0x400971fa 0x2 + .text.spi_flash_chip_generic_wait_idle + 0x400971fc 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x400971fc spi_flash_chip_generic_wait_idle + *fill* 0x40097294 0x0 + *fill* 0x40097294 0x0 + .text.spi_flash_chip_generic_get_caps + 0x40097294 0x17 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40097294 spi_flash_chip_generic_get_caps + *fill* 0x400972ab 0x0 + *fill* 0x400972ab 0x0 + *fill* 0x400972ab 0x0 + *fill* 0x400972ab 0x0 + *fill* 0x400972ab 0x0 + *fill* 0x400972ab 0x0 + *fill* 0x400972ab 0x1 + .text.spi_flash_chip_generic_read_unique_id_none + 0x400972ac 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x400972ac spi_flash_chip_generic_read_unique_id_none + *fill* 0x400972b4 0x0 + *fill* 0x400972b4 0x0 + *fill* 0x400972b4 0x0 + *fill* 0x400972b4 0x0 + *fill* 0x400972b4 0x0 + .text.spi_flash_common_set_io_mode + 0x400972b4 0xbe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x400972b4 spi_flash_common_set_io_mode + *fill* 0x40097372 0x0 + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + *fill* 0x40097372 0x2 + .text.spi_flash_chip_issi_probe + 0x40097374 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x40097374 spi_flash_chip_issi_probe + *fill* 0x4009739d 0x3 + .text.spi_flash_chip_issi_set_io_mode + 0x400973a0 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x400973a0 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x400973b4 0x1f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x400973b4 spi_flash_chip_issi_get_io_mode + *fill* 0x400973d3 0x1 + .text.spi_flash_chip_issi_get_caps + 0x400973d4 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x400973d4 spi_flash_chip_issi_get_caps + *fill* 0x400973db 0x0 + *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *fill* 0x400973db 0x1 + .text.spi_flash_chip_mxic_detect_size + 0x400973dc 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x400973dc spi_flash_chip_mxic_detect_size + *fill* 0x40097426 0x2 + .text.spi_flash_chip_mxic_probe + 0x40097428 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x40097428 spi_flash_chip_mxic_probe + *fill* 0x4009744d 0x0 + *fill* 0x4009744d 0x3 + .text.spi_flash_chip_mxic_get_caps + 0x40097450 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x40097450 spi_flash_chip_mxic_get_caps + *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *fill* 0x40097457 0x1 + .text.spi_flash_command_winbond_program_4B + 0x40097458 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x400974a2 0x2 + .text.spi_flash_chip_winbond_page_program + 0x400974a4 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x3c (size before relaxing) + 0x400974a4 spi_flash_chip_winbond_page_program + .text.spi_flash_command_winbond_erase_sector_4B + 0x400974dc 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x40097522 0x2 + .text.spi_flash_chip_winbond_erase_sector + 0x40097524 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x60 (size before relaxing) + 0x40097524 spi_flash_chip_winbond_erase_sector + .text.spi_flash_command_erase_block_4B + 0x40097580 0x49 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x400975c9 0x3 + .text.spi_flash_chip_winbond_erase_block + 0x400975cc 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x60 (size before relaxing) + 0x400975cc spi_flash_chip_winbond_erase_block + .text.spi_flash_chip_winbond_read + 0x40097628 0xc6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xca (size before relaxing) + 0x40097628 spi_flash_chip_winbond_read + *fill* 0x400976ee 0x2 + .text.spi_flash_chip_winbond_probe + 0x400976f0 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x400976f0 spi_flash_chip_winbond_probe + *fill* 0x40097706 0x2 + .text.spi_flash_chip_winbond_get_caps + 0x40097708 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x40097708 spi_flash_chip_winbond_get_caps + *fill* 0x40097721 0x0 + *fill* 0x40097721 0x0 + *fill* 0x40097721 0x0 + *fill* 0x40097721 0x0 + *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) + *libxt_hal.a:(.literal .literal.* .text .text.*) + *fill* 0x40097721 0x3 + .text 0x40097724 0x137 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x40097724 xthal_spill_registers_into_stack_nw + 0x40097724 xthal_window_spill_nw + 0x40097838 xthal_window_spill + *fill* 0x4009785b 0x0 + *fill* 0x4009785b 0x1 + .text 0x4009785c 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + 0x4009785c xthal_set_intclear + .text 0x40097864 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + 0x40097864 xthal_restore_extra_nw + *fill* 0x400978a2 0x2 + .text 0x400978a4 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + 0x400978a4 xthal_save_extra_nw + *libxtensa.a:(EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .literal EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .literal.* EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .text EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .text.*) + *fill* 0x400978e2 0x2 + .text 0x400978e4 0x186 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x18e (size before relaxing) + 0x400978e4 _xt_context_save + 0x40097988 _xt_context_restore + 0x400979cc _xt_coproc_init + 0x400979e0 _xt_coproc_release + 0x40097a24 _xt_coproc_savecs + 0x40097a48 _xt_coproc_restorecs + *fill* 0x40097a6a 0x0 + *fill* 0x40097a6a 0x2 + .text 0x40097a6c 0x33 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x40097a6c xt_ints_on + 0x40097a84 xt_ints_off + +.dram0.data 0x3ffb0000 0x475c + 0x3ffb0000 _data_start = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(.data .data.*) + .data.s_keys_lock + 0x3ffb0000 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data.esp_ipc_isr_end_fl + 0x3ffb0008 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb0008 esp_ipc_isr_end_fl + .data.s_ipc_isr_mux + 0x3ffb000c 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data.s_panic_uart + 0x3ffb0014 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.rtc_wdt_ctx + 0x3ffb0018 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.wdt0_context + 0x3ffb0020 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .data 0x3ffb0028 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .data.hooks_spinlock + 0x3ffb0038 0x8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data.s_log_print_func + 0x3ffb0040 0x4 esp-idf/log/liblog.a(log.c.obj) + .data.esp_log_default_level + 0x3ffb0044 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x3ffb0044 esp_log_default_level + .data.malloc_alwaysinternal_limit + 0x3ffb0048 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.first_call$0 + 0x3ffb004c 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *fill* 0x3ffb004d 0x3 + .data.s_esp_rtc_time_lock + 0x3ffb0050 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data.spinlock + 0x3ffb0058 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data.periph_spinlock + 0x3ffb0060 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data.rtc_spinlock + 0x3ffb0068 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x3ffb0068 rtc_spinlock + .data.mux 0x3ffb0070 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data.xKernelLock + 0x3ffb0078 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.lock_init_spinlock + 0x3ffb0080 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data.s_stub_table + 0x3ffb0088 0x90 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data.s_timer_lock + 0x3ffb0118 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data.timestamp_id + 0x3ffb0120 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x3ffb0120 timestamp_id + .data.s_time_update_lock + 0x3ffb0130 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x3ffb0130 s_time_update_lock + .data.s_fd_table + 0x3ffb0138 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data.s_registered_select_lock + 0x3ffb01f8 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.s_context + 0x3ffb0200 0x6c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.s_streamname + 0x3ffb026c 0x11 esp-idf/main/libmain.a(station_example_main.c.obj) + *fill* 0x3ffb027d 0x3 + .data.s_sampleRate + 0x3ffb0280 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + .data.s_noChannels + 0x3ffb0284 0x1 esp-idf/main/libmain.a(station_example_main.c.obj) + *fill* 0x3ffb0285 0x3 + .data.channel1_volume_get + 0x3ffb0288 0x10 esp-idf/main/libmain.a(http_control.c.obj) + 0x3ffb0288 channel1_volume_get + .data.volumeChangeGet + 0x3ffb0298 0x10 esp-idf/main/libmain.a(http_control.c.obj) + 0x3ffb0298 volumeChangeGet + .data.index_get + 0x3ffb02a8 0x10 esp-idf/main/libmain.a(http_control.c.obj) + 0x3ffb02a8 index_get + .data.volume_HTML_String + 0x3ffb02b8 0x4d6 esp-idf/main/libmain.a(http_control.c.obj) + 0x3ffb02b8 volume_HTML_String + *fill* 0x3ffb078e 0x2 + .data.filter_HTML_String + 0x3ffb0790 0x5c8 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x3ffb0790 filter_HTML_String + .data 0x3ffb0d58 0x400 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x3ffb0d58 _xt_interrupt_table + 0x3ffb0f58 _xt_exception_table + *fill* 0x3ffb1158 0x8 + .data 0x3ffb1160 0x14 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x3ffb1160 _xt_coproc_owner_sa + 0x3ffb1170 _xt_coproc_owner_sa_lock + .data.ESP_EFUSE_MAC_VERSION + 0x3ffb1174 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3ffb1174 ESP_EFUSE_MAC_VERSION + .data.ESP_EFUSE_MAC_CUSTOM + 0x3ffb117c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3ffb117c ESP_EFUSE_MAC_CUSTOM + .data.ESP_EFUSE_CUSTOM_MAC_CRC + 0x3ffb1184 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3ffb1184 ESP_EFUSE_CUSTOM_MAC_CRC + .data.ESP_EFUSE_MAC_CRC + 0x3ffb118c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3ffb118c ESP_EFUSE_MAC_CRC + .data.ESP_EFUSE_MAC + 0x3ffb1194 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3ffb1194 ESP_EFUSE_MAC + .data.s_cache_drv + 0x3ffb11b0 0x8 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .data.gpio_context + 0x3ffb11b8 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .data._gpio_hal + 0x3ffb11d8 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .data.i2s_spinlock + 0x3ffb11dc 0x10 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .data.uart_selectlock + 0x3ffb11ec 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .data.uart_context + 0x3ffb11f4 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .data.g_i2s 0x3ffb1224 0x18 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + 0x3ffb1224 g_i2s + .data.s_flash_op_cpu + 0x3ffb123c 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data.esp_flash_registered_chips + 0x3ffb1240 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x3ffb1240 esp_flash_registered_chips + .data.default_registered_chips + 0x3ffb1244 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data.reason_spinlock + 0x3ffb125c 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data.spinlock + 0x3ffb1264 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data.periph_spinlock + 0x3ffb126c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + *fill* 0x3ffb1274 0x4 + .data.s_clkout_handle + 0x3ffb1278 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .data.s_clkout_lock + 0x3ffb12d8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .data.s_mapping_list_lock + 0x3ffb12e0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .data.xTimerLock + 0x3ffb12e8 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .data.tcp_port + 0x3ffb12f0 0x2 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data.udp_port + 0x3ffb12f2 0x2 esp-idf/lwip/liblwip.a(udp.c.obj) + .data.retrans_timer + 0x3ffb12f4 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb12f4 retrans_timer + .data.reachable_time + 0x3ffb12f8 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb12f8 reachable_time + .data.g_wifi_osi_funcs + 0x3ffb12fc 0x1d8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x3ffb12fc g_wifi_osi_funcs + .data.mbedtls_cipher_base_lookup_table + 0x3ffb14d4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x3ffb14d4 mbedtls_cipher_base_lookup_table + .data.mbedtls_free_func + 0x3ffb14f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.mbedtls_calloc_func + 0x3ffb14f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.aes_spinlock + 0x3ffb14f8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .data.engines_in_use_lock + 0x3ffb1500 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data.memory_block_lock + 0x3ffb1508 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data.WIFI_MESH_EVENT + 0x3ffb1510 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb1510 WIFI_MESH_EVENT + .data.g_wifi_event_mask + 0x3ffb1514 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb1514 g_wifi_event_mask + .data.s_wifi_init_state + 0x3ffb1518 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.TmpSTAAPCloseAP + 0x3ffb151c 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3ffb151c TmpSTAAPCloseAP + .data.g_phy_cap_rx_stbc + 0x3ffb151d 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3ffb151d g_phy_cap_rx_stbc + .data.g_mesh_self_organized + 0x3ffb151e 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb151e g_mesh_self_organized + .data.s_ndp_id + 0x3ffb151f 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x3ffb151f s_ndp_id + .data.g_wifi_nvs + 0x3ffb1520 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x3ffb1520 g_wifi_nvs + .data.s_raw_seq$13183 + 0x3ffb1524 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .data.country_info_24ghz + 0x3ffb1526 0xe6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x3ffb1526 country_info_24ghz + .data.g_scan_chan_list + 0x3ffb160c 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + *fill* 0x3ffb161a 0x2 + .data.g_scan 0x3ffb161c 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x3ffb161c g_scan + .data.g_dynamic_cs + 0x3ffb1620 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb1620 g_dynamic_cs + .data.s_ap_igtk_active_idx + 0x3ffb162c 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data.s_sta_igtk_active_idx + 0x3ffb162e 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data.g_timer_info + 0x3ffb1630 0x100 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x3ffb1630 g_timer_info + .data.g_chm 0x3ffb1730 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x3ffb1730 g_chm + .data.join_deny_flag + 0x3ffb1734 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + *fill* 0x3ffb1735 0x3 + .data.public_recv_action + 0x3ffb1738 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.sa_query_recv_action + 0x3ffb17c0 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.vendor_recv_action + 0x3ffb17c8 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ht_recv_action + 0x3ffb17cc 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ba_recv_action + 0x3ffb17d0 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.sa_query_send_action + 0x3ffb17dc 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.vendor_send_action + 0x3ffb17e4 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ht_send_action + 0x3ffb17e8 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ba_send_action + 0x3ffb17ec 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ccmp 0x3ffb17f8 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x3ffb17f8 ccmp + .data.sms4 0x3ffb1810 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + 0x3ffb1810 sms4 + .data.tkip 0x3ffb1828 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0x3ffb1828 tkip + .data.wep 0x3ffb1840 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x3ffb1840 wep + .data.g_eb_list_desc + 0x3ffb1858 0xc8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x3ffb1858 g_eb_list_desc + .data.lmacConfMib + 0x3ffb1920 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x3ffb1920 lmacConfMib + .data.g_pm_cfg + 0x3ffb1950 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3ffb1950 g_pm_cfg + .data.pTxRx 0x3ffb197c 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb197c pTxRx + .data.TxRxCxt 0x3ffb1980 0x3cc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb1980 TxRxCxt + .data.g_pp_timer_info + 0x3ffb1d4c 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x3ffb1d4c g_pp_timer_info + .data.rc11BSchedTbl + 0x3ffb1dac 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb1dac rc11BSchedTbl + .data.rcP2P11GSchedTbl + 0x3ffb1df4 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb1df4 rcP2P11GSchedTbl + .data.rc11GSchedTbl + 0x3ffb1e54 0x9c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb1e54 rc11GSchedTbl + .data.rcP2P11NSchedTbl + 0x3ffb1ef0 0x6c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb1ef0 rcP2P11NSchedTbl + .data.rc11NSchedTbl + 0x3ffb1f5c 0xa8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb1f5c rc11NSchedTbl + .data.rcLoRaSchedTbl + 0x3ffb2004 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb2004 rcLoRaSchedTbl + .data.BasicOFDMSched + 0x3ffb201c 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb201c BasicOFDMSched + .data.trc_ctl 0x3ffb2028 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb2028 trc_ctl + .data.BcnInterval + 0x3ffb2044 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb2044 BcnInterval + .data.wDevCtrl + 0x3ffb2048 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb2048 wDevCtrl + .data.s_mac_table + 0x3ffb2080 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .data._g_esp_netif_netstack_default_wifi_sta + 0x3ffb20b8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x3ffb20b8 _g_esp_netif_netstack_default_wifi_sta + .data.g_allowed_groups + 0x3ffb20bc 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x3ffb20bc g_allowed_groups + .data.spinlock_rtc_deep_sleep + 0x3ffb20c4 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data._ZN10__cxxabiv119__terminate_handlerE + 0x3ffb20cc 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + 0x3ffb20cc __cxxabiv1::__terminate_handler + .data.chan14_mic_most_power + 0x3ffb20d0 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb20d0 chan14_mic_most_power + .data.phy_in_most_power_bk + 0x3ffb20d1 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb20d1 phy_in_most_power_bk + .data.phy_in_most_power + 0x3ffb20d2 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb20d2 phy_in_most_power + *fill* 0x3ffb20d3 0x1 + .data.bt_tx_pa_gain + 0x3ffb20d4 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb20d4 bt_tx_pa_gain + *fill* 0x3ffb20d6 0x2 + .data.tx_rf_ana_gain + 0x3ffb20d8 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb20d8 tx_rf_ana_gain + .data.wifi_bbgain_max + 0x3ffb20dc 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb20dc wifi_bbgain_max + *fill* 0x3ffb20dd 0x3 + .data.bt_rx_gain_swp + 0x3ffb20e0 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .data.rfbb_gain_swp + 0x3ffb20e9 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + *fill* 0x3ffb20ea 0x2 + .data.wifi_rx_gain_swp + 0x3ffb20ec 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .data.wifi_txband_ht40 + 0x3ffb20f8 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x3ffb20f8 wifi_txband_ht40 + .data.wifi_txband + 0x3ffb20f9 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x3ffb20f9 wifi_txband + .data.rfcal_bb_atten_init + 0x3ffb20fa 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x3ffb20fa rfcal_bb_atten_init + .data.dreg_1p2_set + 0x3ffb20fb 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb20fb dreg_1p2_set + .data.phy_wifi_pll_track_en + 0x3ffb20fc 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb20fc phy_wifi_pll_track_en + .data.phy_bt_pll_track_en + 0x3ffb20fd 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb20fd phy_bt_pll_track_en + *fill* 0x3ffb20fe 0x2 + .data 0x3ffb2100 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + 0x3ffb2100 __sglue + .data 0x3ffb210c 0xf4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + 0x3ffb210c _impure_ptr + 0x3ffb2110 _impure_data + .data 0x3ffb2200 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + 0x3ffb2200 __global_locale_ptr + *(.dram1 .dram1.*) + .dram1.2 0x3ffb2204 0x2b esp-idf/esp_system/libesp_system.a(brownout.c.obj) + *fill* 0x3ffb222f 0x1 + .dram1.0 0x3ffb2230 0x4 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .dram1.4 0x3ffb2234 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.3 0x3ffb223c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.2 0x3ffb2240 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.1 0x3ffb2244 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.0 0x3ffb2248 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.0 0x3ffb224c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3ffb224c FreeRTOS_openocd_params + *fill* 0x3ffb2254 0xc + .dram1.3 0x3ffb2260 0xc00 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb2260 port_IntStack + .dram1.2 0x3ffb2e60 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb2e60 offset_xCoreID + .dram1.1 0x3ffb2e64 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb2e64 offset_cpsa + .dram1.0 0x3ffb2e68 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb2e68 offset_pxEndOfStack + .dram1.0 0x3ffb2e6c 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.6 0x3ffb2e70 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x3ffb2e70 g_flash_guard_default_ops + .dram1.29 0x3ffb2e78 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb2e93 0x1 + .dram1.23 0x3ffb2e94 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb2eaf 0x1 + .dram1.2 0x3ffb2eb0 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3ffb2eb0 rom_spiflash_api_funcs + .dram1.1 0x3ffb2eb4 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.0 0x3ffb2ec4 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb2ece 0x2 + .dram1.2 0x3ffb2ed0 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.1 0x3ffb2ef0 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.16 0x3ffb2f1c 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.15 0x3ffb2f44 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.10 0x3ffb2f54 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x3ffb2f54 esp_flash_noos_functions + .dram1.5 0x3ffb2f7c 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb2f7c spi_flash_chip_generic_timeout + .dram1.4 0x3ffb2f90 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.3 0x3ffb2fa8 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb2fa8 rom_flash_chip_dummy_hpm + .dram1.2 0x3ffb2fac 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb2fac rom_flash_chip_dummy + .dram1.1 0x3ffb2fb0 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3ffb2fb6 0x2 + .dram1.0 0x3ffb2fb8 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3ffb2fbe 0x2 + .dram1.0 0x3ffb2fc0 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .dram1.1 0x3ffb3018 0xb8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.0 0x3ffb30d0 0xb8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.0 0x3ffb3188 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3ffb31a1 0x3 + .dram1.0 0x3ffb31a4 0x28 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x3ffb31a4 GPIO_PIN_MUX_REG_OFFSET + .dram1.6 0x3ffb31cc 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb31cc g_wifi_mac_time_delta + .dram1.5 0x3ffb31d0 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb31d0 g_osi_funcs_p + .dram1.5 0x3ffb31d4 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb31d4 g_intr_lock_mux + .dram1.4 0x3ffb31d8 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb31d8 g_mesh_is_root + *fill* 0x3ffb31d9 0x3 + .dram1.3 0x3ffb31dc 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb31dc g_mesh_init_ps_type + .dram1.2 0x3ffb31e0 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb31e0 g_mesh_is_started + .dram1.2 0x3ffb31e1 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb31e1 g_sta_connected_flag + *fill* 0x3ffb31e2 0x2 + .dram1.3 0x3ffb31e4 0x80 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x3ffb31e4 eb_txdesc_space + .dram1.5 0x3ffb3264 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb3264 xphyQueue + .dram1.4 0x3ffb3268 0x90 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb3268 bars + .dram1.3 0x3ffb32f8 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb32f8 pp_sig_cnt + *fill* 0x3ffb3316 0x2 + .dram1.3 0x3ffb3318 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .dram1.45 0x3ffb331c 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *fill* 0x3ffb331d 0x3 + .dram1.44 0x3ffb3320 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.43 0x3ffb333c 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.42 0x3ffb3344 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.18 0x3ffb3354 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.3 0x3ffb3358 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.1 0x3ffb335c 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .dram1.0 0x3ffb3364 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x3ffb336c _coredump_dram_start = ABSOLUTE (.) + *(.dram2.coredump .dram2.coredump.*) + 0x3ffb336c _coredump_dram_end = ABSOLUTE (.) + *libapp_trace.a:app_trace.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libapp_trace.a:app_trace_util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libapp_trace.a:port_uart.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_config.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.rtc_clk_apll_coeff_calc.str1.4 + 0x3ffb336c 0xca esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x3ffb336c 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_to_xtal.str1.4 + 0x3ffb336c 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.__func__$25 + 0x3ffb336c 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *libesp_mm.a:cache_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:esp_cache.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.esp_error_check_failed_print.str1.4 + 0x3ffb3383 0x5c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed.str1.4 + 0x3ffb3383 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:cache_hal_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.mmu_ll_entry_id_to_vaddr_base.str1.4 + 0x3ffb3383 0x37 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_ll_check_entry_valid.str1.4 + 0x3ffb3383 0x1d esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_ll_get_entry_target.str1.4 + 0x3ffb3383 0x2b esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_paddr_to_vaddr.str1.4 + 0x3ffb3383 0x52 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_map_region.str1.4 + 0x3ffb3383 0xd5 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_vaddr_to_paddr.str1.4 + 0x3ffb3383 0x5f esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb3383 0x1 + .rodata.__func__$2 + 0x3ffb3384 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb33a2 0x2 + .rodata.__func__$3 + 0x3ffb33a4 0x18 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$4 + 0x3ffb33bc 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb33d5 0x3 + .rodata.__func__$5 + 0x3ffb33d8 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb33ef 0x1 + .rodata.__func__$6 + 0x3ffb33f0 0x15 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb3405 0x3 + .rodata.__func__$7 + 0x3ffb3408 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb341b 0x1 + .rodata.__func__$8 + 0x3ffb341c 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$9 + 0x3ffb3430 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb3443 0x1 + .rodata.__func__$12 + 0x3ffb3444 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_encrypt_ll_plaintext_save.str1.4 + 0x3ffb345d 0xe4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + *fill* 0x3ffb345d 0x3 + .rodata.__func__$0 + 0x3ffb3460 0x24 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:wdt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.wdt_hal_config_stage.str1.4 + 0x3ffb3484 0xdaf esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x54 (size before relaxing) + *fill* 0x3ffb4233 0x1 + .rodata.__func__$0 + 0x3ffb4234 0x15 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.abort.str1.4 + 0x3ffb4249 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) + *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.__assert_func.str1.4 + 0x3ffb4249 0x36 esp-idf/newlib/libnewlib.a(assert.c.obj) + *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb4249 0x3 + .rodata 0x3ffb424c 0xa8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .rodata.ram_set_pbus_mem + 0x3ffb42f4 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .rodata.str1.4 + 0x3ffb4320 0x581 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .rodata.CSWTCH$339 + 0x3ffb4320 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + *fill* 0x3ffb4326 0x2 + .rodata 0x3ffb4328 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .rodata.str1.4 + 0x3ffb43a6 0x141 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + *fill* 0x3ffb43a6 0x2 + .rodata.CSWTCH$293 + 0x3ffb43a8 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .rodata.CSWTCH$289 + 0x3ffb43ac 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + *fill* 0x3ffb43b7 0x1 + .rodata.CSWTCH$283 + 0x3ffb43b8 0x3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + *fill* 0x3ffb43bb 0x1 + .rodata.CSWTCH$266 + 0x3ffb43bc 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .rodata.CSWTCH$256 + 0x3ffb43c4 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .rodata.CSWTCH$254 + 0x3ffb43cc 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + *fill* 0x3ffb43d2 0x2 + .rodata.dco_gain_coarse$4706 + 0x3ffb43d4 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .rodata.str1.4 + 0x3ffb43da 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + *fill* 0x3ffb43da 0x2 + .rodata 0x3ffb43dc 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .rodata.bt_i2c_write_set + 0x3ffb43e8 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .rodata.bt_get_i2c_data + 0x3ffb440c 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .rodata.CSWTCH$166 + 0x3ffb4440 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .rodata.CSWTCH$131 + 0x3ffb4450 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.memspi_host_read_id_hs.str1.4 + 0x3ffb4480 0x25 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.TAG 0x3ffb4480 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb4487 0x1 + .rodata.esp_flash_chip_gd + 0x3ffb4488 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x3ffb4488 esp_flash_chip_gd + .rodata.chip_name + 0x3ffb4504 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_generic_read.str1.4 + 0x3ffb4507 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x3ffb4507 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_suspend_cmd_conf.str1.4 + 0x3ffb4507 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read_unique_id.str1.4 + 0x3ffb4507 0x53 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3ffb4507 0x1 + .rodata.__func__$0 + 0x3ffb4508 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3ffb4531 0x3 + .rodata.esp_flash_chip_generic + 0x3ffb4534 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb4534 esp_flash_chip_generic + .rodata.chip_name + 0x3ffb45b0 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x3ffb45b8 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb45c5 0x3 + .rodata.esp_flash_chip_issi + 0x3ffb45c8 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x3ffb45c8 esp_flash_chip_issi + .rodata.chip_name + 0x3ffb4644 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb4649 0x3 + .rodata.esp_flash_chip_mxic + 0x3ffb464c 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x3ffb464c esp_flash_chip_mxic + .rodata.chip_name + 0x3ffb46c8 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_winbond_read.str1.4 + 0x3ffb46cd 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x3ffb46cd 0x3 + .rodata.esp_flash_chip_winbond + 0x3ffb46d0 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x3ffb46d0 esp_flash_chip_winbond + .rodata.chip_name + 0x3ffb474c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .rodata.TAG 0x3ffb4754 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + 0x3ffb475c _data_end = ABSOLUTE (.) + 0x3ffb475c . = ALIGN (0x4) + +.ext_ram_noinit + 0x3f800000 0x0 + 0x3f800000 _ext_ram_noinit_start = ABSOLUTE (.) + *(.ext_ram_noinit*) + 0x3f800000 . = ALIGN (0x4) + 0x3f800000 _ext_ram_noinit_end = ABSOLUTE (.) + +.noinit 0x3ffb475c 0x0 + 0x3ffb475c . = ALIGN (0x4) + 0x3ffb475c _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x3ffb475c . = ALIGN (0x4) + 0x3ffb475c _noinit_end = ABSOLUTE (.) + +.ext_ram.bss 0x3f800000 0x0 + 0x3f800000 _ext_ram_bss_start = ABSOLUTE (.) + 0x3f800000 . = ALIGN (0x4) + 0x3f800000 _ext_ram_bss_end = ABSOLUTE (.) + +.dram0.bss 0x3ffb4760 0x5308 + 0x3ffb4760 . = ALIGN (0x8) + 0x3ffb4760 _bss_start = ABSOLUTE (.) + *(.bss .bss.*) + .bss.app_elf_sha256_str + 0x3ffb4760 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x3ffb4760 app_elf_sha256_str + *fill* 0x3ffb476a 0x2 + .bss.s_pthread_cfg_key + 0x3ffb476c 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_mux + 0x3ffb4770 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_keys 0x3ffb4774 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x3ffb4774 s_keys + .bss.s_resume_cores + 0x3ffb4778 0x1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3ffb4779 0x3 + .bss.s_cpu_inited + 0x3ffb477c 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3ffb477e 0x2 + .bss.s_cpu_up 0x3ffb4780 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3ffb4782 0x2 + .bss.esp_ipc_isr_finish_cmd + 0x3ffb4784 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stored_interrupt_level + 0x3ffb4788 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_count_of_nested_calls + 0x3ffb478c 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stall_state + 0x3ffb4794 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.esp_ipc_func_arg + 0x3ffb4798 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb4798 esp_ipc_func_arg + .bss.esp_ipc_func + 0x3ffb479c 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb479c esp_ipc_func + .bss.esp_ipc_isr_start_fl + 0x3ffb47a0 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb47a0 esp_ipc_isr_start_fl + .bss.int_wdt_cpu1_ticked + 0x3ffb47a4 0x1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x3ffb47a4 int_wdt_cpu1_ticked + *fill* 0x3ffb47a5 0x3 + .bss.iwdt_context + 0x3ffb47a8 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss.g_panic_abort_details + 0x3ffb47b0 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3ffb47b0 g_panic_abort_details + .bss.g_panic_abort + 0x3ffb47b4 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3ffb47b4 g_panic_abort + *fill* 0x3ffb47b5 0x3 + .bss.shutdown_handlers + 0x3ffb47b8 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss.s_system_full_inited + 0x3ffb47cc 0x1 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x3ffb47cd 0x3 + .bss.s_system_inited + 0x3ffb47d0 0x2 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x3ffb47d2 0x6 + .bss.g_startup_time + 0x3ffb47d8 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3ffb47d8 g_startup_time + .bss.g_exc_frames + 0x3ffb47e0 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x3ffb47e0 g_exc_frames + .bss.tick_cb 0x3ffb47e8 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.idle_cb 0x3ffb4828 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.s_log_cache_misses + 0x3ffb4868 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_entry_count + 0x3ffb486c 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_max_generation + 0x3ffb4870 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache + 0x3ffb4874 0xf8 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_tags + 0x3ffb496c 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.base$0 0x3ffb4970 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.s_log_mutex + 0x3ffb4974 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.alloc_failed_callback + 0x3ffb4978 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss.registered_heaps + 0x3ffb497c 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x3ffb497c registered_heaps + .bss.non_iram_int_disabled_flag + 0x3ffb4980 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3ffb4982 0x2 + .bss.non_iram_int_disabled + 0x3ffb4984 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.non_iram_int_mask + 0x3ffb498c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.vector_desc_head + 0x3ffb4994 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.ref_counts + 0x3ffb4998 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x3ffb49ba 0x2 + .bss.s_rtc_isr_handle + 0x3ffb49bc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss.s_cur_pll_freq + 0x3ffb49c0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_sar_power_on_cnt + 0x3ffb49c4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss.s_other_cpu_startup_done + 0x3ffb49c8 0x1 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x3ffb49c9 0x3 + .bss.ulTotalRunTime + 0x3ffb49cc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.ulTaskSwitchedInTime + 0x3ffb49d0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxSchedulerSuspended + 0x3ffb49d8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xIdleTaskHandle + 0x3ffb49e0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNextTaskUnblockTime + 0x3ffb49e8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTaskNumber + 0x3ffb49ec 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNumOfOverflows + 0x3ffb49f0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xYieldPending + 0x3ffb49f4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendedTicks + 0x3ffb49fc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSchedulerRunning + 0x3ffb4a00 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTopReadyPriority + 0x3ffb4a04 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTickCount + 0x3ffb4a08 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxCurrentNumberOfTasks + 0x3ffb4a0c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x3ffb4a10 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxDeletedTasksWaitingCleanUp + 0x3ffb4a24 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x3ffb4a28 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x3ffb4a3c 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxOverflowDelayedTaskList + 0x3ffb4a64 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxDelayedTaskList + 0x3ffb4a68 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x3ffb4a6c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x3ffb4a80 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxReadyTasksLists + 0x3ffb4a94 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxCurrentTCBs + 0x3ffb4c88 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3ffb4c88 pxCurrentTCBs + .bss.port_switch_flag + 0x3ffb4c90 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb4c90 port_switch_flag + .bss.port_uxOldInterruptState + 0x3ffb4c98 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb4c98 port_uxOldInterruptState + .bss.port_uxCriticalNesting + 0x3ffb4ca0 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb4ca0 port_uxCriticalNesting + .bss.port_interruptNesting + 0x3ffb4ca8 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb4ca8 port_interruptNesting + .bss.port_xSchedulerRunning + 0x3ffb4cb0 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb4cb0 port_xSchedulerRunning + .bss._xt_tick_divisor + 0x3ffb4cb8 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x3ffb4cb8 _xt_tick_divisor + .bss.s_common_recursive_mutex + 0x3ffb4cbc 0x5c esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x3ffb4cbc __lock___env_recursive_mutex + 0x3ffb4cbc __lock___sfp_recursive_mutex + 0x3ffb4cbc __lock___atexit_recursive_mutex + 0x3ffb4cbc __lock___malloc_recursive_mutex + 0x3ffb4cbc __lock___sinit_recursive_mutex + .bss.s_common_mutex + 0x3ffb4d18 0x5c esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x3ffb4d18 __lock___arc4random_mutex + 0x3ffb4d18 __lock___dd_hash_mutex + 0x3ffb4d18 __lock___at_quick_exit_mutex + 0x3ffb4d18 __lock___tz_mutex + .bss.s_time_lock + 0x3ffb4d74 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_adjtime_total_correction_us + 0x3ffb4d78 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_adjtime_start_us + 0x3ffb4d80 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_boot_time_lock + 0x3ffb4d88 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + *fill* 0x3ffb4d8c 0x4 + .bss.s_microseconds_offset + 0x3ffb4d90 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x3ffb4d90 s_microseconds_offset + .bss.s_timer_task + 0x3ffb4d98 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_timers 0x3ffb4d9c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_correction_us + 0x3ffb4da0 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss.s_alarm_handler + 0x3ffb4da8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_timer_interrupt_handle + 0x3ffb4dac 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_wifi_adc_xpd_flag + 0x3ffb4db0 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + *fill* 0x3ffb4db1 0x3 + .bss.s_fd_table_lock + 0x3ffb4db4 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs_count + 0x3ffb4db8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs 0x3ffb4dbc 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.vfs_console + 0x3ffb4ddc 0x8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss.primary_vfs_index + 0x3ffb4de4 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss.s_uart_select_count + 0x3ffb4de8 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_registered_select_num + 0x3ffb4df4 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_registered_selects + 0x3ffb4df8 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.outBuf$1 0x3ffb4dfc 0x800 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss.rightOut$2 + 0x3ffb55fc 0x400 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss.leftOut$3 + 0x3ffb59fc 0x400 esp-idf/main/libmain.a(station_example_main.c.obj) + *fill* 0x3ffb5dfc 0x4 + .bss.volume 0x3ffb5e00 0x28 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x3ffb5e00 volume + .bss.audioBufferFilled + 0x3ffb5e28 0x1 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss.i2s_running + 0x3ffb5e29 0x1 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x3ffb5e29 i2s_running + *fill* 0x3ffb5e2a 0x2 + .bss.i2s_config + 0x3ffb5e2c 0x30 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x3ffb5e2c i2s_config + .bss.i2s_num 0x3ffb5e5c 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x3ffb5e5c i2s_num + .bss.s_framecounter + 0x3ffb5e60 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss.s_datatype + 0x3ffb5e64 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss.s_retry_num + 0x3ffb5e68 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss.s_wifi_event_group + 0x3ffb5e6c 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss.lpfFilter + 0x3ffb5e70 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + .bss.sp_Filters + 0x3ffb5e74 0x60 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .bss.oldpinB$0 + 0x3ffb5ed4 0x1 esp-idf/main/libmain.a(button.c.obj) + .bss.oldpinA$1 + 0x3ffb5ed5 0x1 esp-idf/main/libmain.a(button.c.obj) + .bss.state$2 0x3ffb5ed6 0x1 esp-idf/main/libmain.a(button.c.obj) + *fill* 0x3ffb5ed7 0x1 + .bss.parameterQueue + 0x3ffb5ed8 0x4 esp-idf/main/libmain.a(button.c.obj) + .bss.callbackQueue + 0x3ffb5edc 0x4 esp-idf/main/libmain.a(button.c.obj) + .bss.s_burn_counter + 0x3ffb5ee0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.s_mmu_ctx + 0x3ffb5ee4 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss.p_i2s 0x3ffb5f60 0x8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .bss.p_uart_obj + 0x3ffb5f68 0xc esp-idf/driver/libdriver.a(uart.c.obj) + .bss.flash_erasing + 0x3ffb5f74 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.flash_brownout_needs_reset + 0x3ffb5f75 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.s_flash_op_complete + 0x3ffb5f76 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_can_start + 0x3ffb5f77 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_mutex + 0x3ffb5f78 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_cache_state + 0x3ffb5f7c 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_guard_ops + 0x3ffb5f84 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss.esp_flash_default_chip + 0x3ffb5f88 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x3ffb5f88 esp_flash_default_chip + .bss.reason 0x3ffb5f8c 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss.s_func_arg + 0x3ffb5f94 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func 0x3ffb5f9c 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_ack + 0x3ffb5fa4 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_mutex + 0x3ffb5fac 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_task_handle + 0x3ffb5fb4 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.p_twdt_obj + 0x3ffb5fbc 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss.g_twdt_isr + 0x3ffb5fc0 0x1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x3ffb5fc0 g_twdt_isr + *fill* 0x3ffb5fc1 0x3 + .bss.init_context + 0x3ffb5fc4 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss.s_cache_status + 0x3ffb5fd0 0x8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss.s_apll_ref_cnt + 0x3ffb5fd8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss.s_cur_apll_freq + 0x3ffb5fdc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss.s_reserve_status + 0x3ffb5fe0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .bss.s_calibrated_freq + 0x3ffb5fe8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss.adc2_lock + 0x3ffb5ff0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .bss.adc1_lock + 0x3ffb5ff4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .bss.s_mapping_list + 0x3ffb5ff8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .bss.xStaticTimerQueue$14 + 0x3ffb5ffc 0x5c esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.ucStaticTimerQueueStorage$15 + 0x3ffb6058 0xa0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.xLastTime$17 + 0x3ffb60f8 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.xTimerTaskHandle + 0x3ffb60fc 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.xTimerQueue + 0x3ffb6100 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.pxOverflowTimerList + 0x3ffb6104 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.pxCurrentTimerList + 0x3ffb6108 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.xActiveTimerList2 + 0x3ffb610c 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.xActiveTimerList1 + 0x3ffb6120 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.s_default_loop + 0x3ffb6134 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss.select_cb_list + 0x3ffb6138 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.select_cb_ctr + 0x3ffb613c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.sockets 0x3ffb6140 0xc8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv6_multicast_memberships + 0x3ffb6208 0x118 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv4_multicast_memberships + 0x3ffb6320 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.tcpip_mbox + 0x3ffb6398 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done_arg + 0x3ffb639c 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done + 0x3ffb63a0 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.ip_data 0x3ffb63a4 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x3ffb63a4 ip_data + .bss.loop_netif + 0x3ffb63e8 0xfc esp-idf/lwip/liblwip.a(netif.c.obj) + .bss.netif_num + 0x3ffb64e4 0x1 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3ffb64e5 0x3 + .bss.netif_default + 0x3ffb64e8 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3ffb64e8 netif_default + .bss.netif_list + 0x3ffb64ec 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3ffb64ec netif_list + .bss.ext_callback + 0x3ffb64f0 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss.pbuf_free_ooseq_pending + 0x3ffb64f4 0x1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3ffb64f4 pbuf_free_ooseq_pending + *fill* 0x3ffb64f5 0x3 + .bss.raw_pcbs 0x3ffb64f8 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss.tcp_timer_ctr + 0x3ffb64fc 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss.tcp_timer + 0x3ffb64fd 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss.tcp_active_pcbs_changed + 0x3ffb64fe 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb64fe tcp_active_pcbs_changed + *fill* 0x3ffb64ff 0x1 + .bss.tcp_tw_pcbs + 0x3ffb6500 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb6500 tcp_tw_pcbs + .bss.tcp_active_pcbs + 0x3ffb6504 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb6504 tcp_active_pcbs + .bss.tcp_listen_pcbs + 0x3ffb6508 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb6508 tcp_listen_pcbs + .bss.tcp_bound_pcbs + 0x3ffb650c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb650c tcp_bound_pcbs + .bss.tcp_ticks + 0x3ffb6510 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb6510 tcp_ticks + .bss.tcp_input_pcb + 0x3ffb6514 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x3ffb6514 tcp_input_pcb + .bss.recv_data + 0x3ffb6518 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_flags + 0x3ffb651c 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.flags 0x3ffb651d 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcplen 0x3ffb651e 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_acked + 0x3ffb6520 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3ffb6522 0x2 + .bss.ackno 0x3ffb6524 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.seqno 0x3ffb6528 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcp_optidx + 0x3ffb652c 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3ffb652e 0x2 + .bss.tcphdr_opt2 + 0x3ffb6530 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_opt1len + 0x3ffb6534 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_optlen + 0x3ffb6536 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr 0x3ffb6538 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.inseg 0x3ffb653c 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcpip_tcp_timer_active + 0x3ffb654c 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.current_timeout_due_time + 0x3ffb6550 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.next_timeout + 0x3ffb6554 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.udp_pcbs 0x3ffb6558 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3ffb6558 udp_pcbs + .bss.xid$12 0x3ffb655c 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.dhcp_pcb_refcount + 0x3ffb6560 0x1 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3ffb6561 0x3 + .bss.dhcp_pcb 0x3ffb6564 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.dhcp_rx_options_given + 0x3ffb6568 0xb esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x3ffb6568 dhcp_rx_options_given + *fill* 0x3ffb6573 0x1 + .bss.dhcp_rx_options_val + 0x3ffb6574 0x2c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x3ffb6574 dhcp_rx_options_val + .bss.etharp_cached_entry + 0x3ffb65a0 0x1 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3ffb65a1 0x3 + .bss.arp_table + 0x3ffb65a4 0xf0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss.is_tmr_start + 0x3ffb6694 0x1 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x3ffb6695 0x3 + .bss.allrouters + 0x3ffb6698 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.allsystems + 0x3ffb669c 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.ip4_default_multicast_netif + 0x3ffb66a0 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss.ip_id 0x3ffb66a4 0x2 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x3ffb66a6 0x2 + .bss.identification$1 + 0x3ffb66a8 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss.is_tmr_start + 0x3ffb66ac 0x1 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss.last_router$1 + 0x3ffb66ad 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3ffb66ae 0x2 + .bss.nd6_ra_buffer + 0x3ffb66b0 0x20 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_tmr_rs_reduction + 0x3ffb66d0 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3ffb66d1 0x3 + .bss.multicast_address + 0x3ffb66d4 0x14 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_cached_destination_index + 0x3ffb66e8 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_cached_neighbor_index + 0x3ffb66e9 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3ffb66ea 0x2 + .bss.default_router_list + 0x3ffb66ec 0x24 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb66ec default_router_list + .bss.prefix_list + 0x3ffb6710 0x8c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb6710 prefix_list + .bss.destination_cache + 0x3ffb679c 0x1e0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb679c destination_cache + .bss.neighbor_cache + 0x3ffb697c 0xdc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb697c neighbor_cache + .bss.base_time + 0x3ffb6a58 0x4 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss.input 0x3ffb6a5c 0x40 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss.lwip_task$1 + 0x3ffb6a9c 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.sys_thread_sem_key + 0x3ffb6aa0 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.g_lwip_protect_mutex + 0x3ffb6aa4 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.dns_servers + 0x3ffb6aa8 0x48 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.s_esp_netif_counter + 0x3ffb6af0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss.s_head 0x3ffb6af4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x3ffb6af4 s_head + .bss.api_lock_sem + 0x3ffb6af8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.api_sync_sem + 0x3ffb6afc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.netif_callback + 0x3ffb6b00 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.s_is_last_default_esp_netif_overridden + 0x3ffb6b08 0x1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x3ffb6b09 0x3 + .bss.s_last_default_esp_netif + 0x3ffb6b0c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.s_wifi_mac_time_update_cb + 0x3ffb6b10 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x3ffb6b10 s_wifi_mac_time_update_cb + .bss.s_wifi_inited + 0x3ffb6b14 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .bss.wifi_default_handlers_set + 0x3ffb6b15 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x3ffb6b16 0x2 + .bss.s_wifi_netifs + 0x3ffb6b18 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss.s_wifi_netifs + 0x3ffb6b24 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_rxcbs + 0x3ffb6b30 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_thread_sem_key$0 + 0x3ffb6b3c 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss.s_wifi_thread_sem_key_init$1 + 0x3ffb6b40 0x1 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss.engines_in_use + 0x3ffb6b41 0x1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x3ffb6b42 0x2 + .bss.engine_states + 0x3ffb6b44 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss.init_done$1 + 0x3ffb6b50 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.ecp_supported_grp_id + 0x3ffb6b54 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.mul_count + 0x3ffb6b88 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.dbl_count + 0x3ffb6b8c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.add_count + 0x3ffb6b90 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.mesh_rxcb + 0x3ffb6b94 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb6b94 mesh_rxcb + .bss.s_wifi_api_lock + 0x3ffb6b98 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb6b98 s_wifi_api_lock + .bss.wifi_sta_rx_probe_req + 0x3ffb6b9c 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb6b9c wifi_sta_rx_probe_req + .bss.s_wifi_stop_in_progress + 0x3ffb6ba0 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x3ffb6ba1 0x3 + .bss.g_hmac_cnt + 0x3ffb6ba4 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0x3ffb6ba4 g_hmac_cnt + .bss.g_beacon_eb_allocated + 0x3ffb6be4 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x3ffb6be5 0x3 + .bss.ap_rxcb 0x3ffb6be8 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3ffb6be8 ap_rxcb + .bss.tim_offset + 0x3ffb6bec 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x3ffb6bed 0x3 + .bss.BcnIntvl 0x3ffb6bf0 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.g_beacon_idx + 0x3ffb6bf4 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3ffb6bf4 g_beacon_idx + *fill* 0x3ffb6bf5 0x3 + .bss.g_beacon_eb + 0x3ffb6bf8 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3ffb6bf8 g_beacon_eb + .bss.g_beacon_dtim_send_mc + 0x3ffb6c00 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.beacon_send_start_flag + 0x3ffb6c01 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x3ffb6c02 0x2 + .bss.beacon_timer + 0x3ffb6c04 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.tokens$11018 + 0x3ffb6c18 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .bss.ap_id$12320 + 0x3ffb6c1c 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x3ffb6c1d 0x3 + .bss.mesh_deauth_reason + 0x3ffb6c20 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.g_wifi_global_lock + 0x3ffb6c24 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb6c24 g_wifi_global_lock + .bss.s_wifi_task_hdl + 0x3ffb6c28 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb6c28 s_wifi_task_hdl + .bss.s_wps_start + 0x3ffb6c2c 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.s_wpa2_start + 0x3ffb6c2d 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.g_mac_sleep_en + 0x3ffb6c2e 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb6c2e g_mac_sleep_en + *fill* 0x3ffb6c2f 0x1 + .bss.esp_mesh_quick_funcs + 0x3ffb6c30 0xb0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb6c30 esp_mesh_quick_funcs + .bss.g_mesh_topology + 0x3ffb6ce0 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb6ce0 g_mesh_topology + .bss.ndp_rxcb 0x3ffb6ce4 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x3ffb6ce4 ndp_rxcb + .bss.g_wifi_nvs_cfg + 0x3ffb6ce8 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .bss.s_netstack_ref + 0x3ffb6cec 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3ffb6cec s_netstack_ref + .bss.s_encap_amsdu_func + 0x3ffb6cf0 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .bss.s_netstack_free + 0x3ffb6cf4 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3ffb6cf4 s_netstack_free + .bss.len_dh_ie + 0x3ffb6cf8 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .bss.g_wifi_improve_contention_ability + 0x3ffb6cf9 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x3ffb6cf9 g_wifi_improve_contention_ability + .bss.s_ch$11389 + 0x3ffb6cfa 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .bss.s_owe_scan_flag + 0x3ffb6cfc 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .bss.connect_scan_flag + 0x3ffb6d00 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x3ffb6d00 connect_scan_flag + *fill* 0x3ffb6d01 0x1 + .bss.scannum 0x3ffb6d02 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x3ffb6d02 scannum + .bss.sta_csa_timer + 0x3ffb6d04 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb6d04 sta_csa_timer + .bss.sta_rxcb 0x3ffb6d18 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb6d18 sta_rxcb + .bss.rssi_index + 0x3ffb6d1c 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb6d1c rssi_index + *fill* 0x3ffb6d1d 0x3 + .bss.rssi_saved + 0x3ffb6d20 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb6d20 rssi_saved + .bss.in_rssi_adjust + 0x3ffb6d28 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb6d28 in_rssi_adjust + .bss.s_ap_igtk + 0x3ffb6d29 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss.s_sta_igtk + 0x3ffb6d79 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss.is_connected_sync + 0x3ffb6dc9 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.ap_no_lr 0x3ffb6dca 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb6dca ap_no_lr + .bss.reconnect_flag + 0x3ffb6dcb 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb6dcb reconnect_flag + .bss.g_rssi_threshold_failure + 0x3ffb6dcc 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb6dcc g_rssi_threshold_failure + .bss.g_authmode_threshold_failure + 0x3ffb6dcd 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb6dcd g_authmode_threshold_failure + .bss.g_authmode_incompatible + 0x3ffb6dce 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb6dce g_authmode_incompatible + .bss.g_in_blacklist_flag + 0x3ffb6dcf 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb6dcf g_in_blacklist_flag + .bss.s_sta_last_start_txseq + 0x3ffb6dd0 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + *fill* 0x3ffb6dd2 0x2 + .bss.g_cnx_probe_rc_list_cb + 0x3ffb6dd4 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb6dd4 g_cnx_probe_rc_list_cb + .bss.cnx_csa_timer + 0x3ffb6dd8 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.s_csa_timer_bss + 0x3ffb6dec 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.avs_rx_content + 0x3ffb6df0 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.get_key_cb + 0x3ffb6df4 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_cb 0x3ffb6df8 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.s_is_6m 0x3ffb6dfc 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x3ffb6dfc s_is_6m + .bss.g_pp_tx_pkt_num + 0x3ffb6dfd 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x3ffb6dfd g_pp_tx_pkt_num + *fill* 0x3ffb6dfe 0x2 + .bss.our_instances + 0x3ffb6e00 0xb4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .bss.beacon_monitor_data$11040 + 0x3ffb6eb4 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .bss.g_pm_tx_null_func + 0x3ffb6ec8 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .bss.current_ifidx$11084 + 0x3ffb6ecc 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x3ffb6ecd 0x3 + .bss.s_fragment + 0x3ffb6ed0 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb6ed0 s_fragment + .bss.s_wifi_queue + 0x3ffb6ee0 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb6ee0 s_wifi_queue + .bss.s_michael_mic_failure_cb + 0x3ffb6ee4 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.s_pp_task_create_sem + 0x3ffb6ee8 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.s_pp_task_del_sem + 0x3ffb6eec 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_task_hdl + 0x3ffb6ef0 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_config_func + 0x3ffb6ef4 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_timer_func + 0x3ffb6ef8 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_net80211_tx_func + 0x3ffb6efc 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_tx_done_cb_func + 0x3ffb6f00 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x3ffb6f04 0x4 + .bss.g_pm_cnt 0x3ffb6f08 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x3ffb6f08 g_pm_cnt + .bss.g_lmac_cnt + 0x3ffb6f50 0xb4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x3ffb6f50 g_lmac_cnt + .bss.s_timer_post + 0x3ffb7004 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .bss.s_fix_rate_mask + 0x3ffb7008 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb7008 s_fix_rate_mask + .bss.g_per_conn_trc + 0x3ffb700c 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.dbg_rx_all_count + 0x3ffb7064 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb7064 dbg_rx_all_count + .bss.BcnSendTick + 0x3ffb7068 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb7068 BcnSendTick + .bss.wDevMacSleep + 0x3ffb706c 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb706c wDevMacSleep + .bss.g_wdev_csi_rx_ctx + 0x3ffb70dc 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb70dc g_wdev_csi_rx_ctx + .bss.g_wdev_csi_rx + 0x3ffb70e0 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb70e0 g_wdev_csi_rx + .bss.g_wdev_nan_is_in_dw_cb + 0x3ffb70e4 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb70e4 g_wdev_nan_is_in_dw_cb + .bss.g_wdev_last_desc_reset + 0x3ffb70e8 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb70e8 g_wdev_last_desc_reset + *fill* 0x3ffb70e9 0x3 + .bss.s_partition_list_lock + 0x3ffb70ec 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.s_partition_list + 0x3ffb70f0 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.curr_partition$2 + 0x3ffb70f4 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.last_ccount$1 + 0x3ffb70f8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .bss.s_crypto_mpi_lock + 0x3ffb70fc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss._ZL13s_nvs_handles + 0x3ffb7100 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZN14NVSHandleEntry17s_nvs_next_handleE + 0x3ffb710c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x3ffb710c NVSHandleEntry::s_nvs_next_handle + .bss._ZN3nvs19NVSPartitionManager8instanceE + 0x3ffb7110 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x3ffb7110 nvs::NVSPartitionManager::instance + .bss._ZN3nvs4Lock10mSemaphoreE + 0x3ffb7114 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x3ffb7114 nvs::Lock::mSemaphore + .bss.s_common_clock_disable_time$0 + 0x3ffb7118 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_is_phy_calibrated + 0x3ffb711c 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3ffb711d 0x3 + .bss.s_phy_rf_en_ts + 0x3ffb7120 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_phy_access_lock + 0x3ffb7128 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_phy_modem_flag + 0x3ffb712c 0x2 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + *fill* 0x3ffb712e 0x2 + .bss.wpa_cb 0x3ffb7130 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3ffb7130 wpa_cb + .bss.wifi_funcs + 0x3ffb7134 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3ffb7134 wifi_funcs + .bss.g_wpa_pmk_caching_disabled + 0x3ffb7138 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3ffb7138 g_wpa_pmk_caching_disabled + *fill* 0x3ffb7139 0x7 + .bss.g_wpa_supp + 0x3ffb7140 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x3ffb7140 g_wpa_supp + .bss.g_wpa3_hostap_auth_api_lock + 0x3ffb71e8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x3ffb71e8 g_wpa3_hostap_auth_api_lock + .bss.g_wpa3_hostap_evt_queue + 0x3ffb71ec 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_wpa3_hostap_task_hdl + 0x3ffb71f0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_confirm + 0x3ffb71f4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_commit + 0x3ffb71f8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_token + 0x3ffb71fc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_data + 0x3ffb7200 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_pt 0x3ffb7280 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.global_hapd + 0x3ffb7284 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x3ffb7284 global_hapd + .bss.eloop 0x3ffb7288 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss.eloop_data_lock + 0x3ffb72a8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss.s_sm_valid_bitmap + 0x3ffb72ac 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.s_sm_table + 0x3ffb72b0 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.assoc_ie_buf + 0x3ffb72f0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3ffb72f0 assoc_ie_buf + .bss.gWpaSm 0x3ffb7320 0x338 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3ffb7320 gWpaSm + .bss.gEapSm 0x3ffb7658 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.g_misc_nvs_init + 0x3ffb765c 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + *fill* 0x3ffb765d 0x3 + .bss.s_dslp_phy_cb + 0x3ffb7660 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss._ZN12_GLOBAL__N_113__new_handlerE + 0x3ffb766c 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .bss._ZL4init 0x3ffb7670 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .bss._ZN17__eh_globals_init7_S_initE + 0x3ffb7674 0x1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x3ffb7674 __eh_globals_init::_S_init + *fill* 0x3ffb7675 0x3 + .bss._ZN12_GLOBAL__N_110eh_globalsE + 0x3ffb7678 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .bss.g_phyFuns + 0x3ffb7680 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb7680 g_phyFuns + .bss.bt_dig_gain_force + 0x3ffb7684 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb7684 bt_dig_gain_force + .bss.init_wifi_disable + 0x3ffb7685 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb7685 init_wifi_disable + .bss.corr_cca_thr + 0x3ffb7686 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb7686 corr_cca_thr + .bss.lr_enable + 0x3ffb7687 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb7687 lr_enable + .bss.chan14_mic_en + 0x3ffb7688 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb7688 chan14_mic_en + .bss.re_entry 0x3ffb7689 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb7689 re_entry + .bss.force_hw_set_freq_flag + 0x3ffb768a 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb768a force_hw_set_freq_flag + .bss.phy_init_flag + 0x3ffb768b 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb768b phy_init_flag + .bss.phy_set_most_tpw_index + 0x3ffb768c 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb768c phy_set_most_tpw_index + *fill* 0x3ffb768d 0x1 + .bss.target_power_backoff_qdb + 0x3ffb768e 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb768e target_power_backoff_qdb + .bss.phy_set_most_tpw_flag + 0x3ffb7690 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb7690 phy_set_most_tpw_flag + .bss.phy_set_most_tpw_disbg + 0x3ffb7691 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb7691 phy_set_most_tpw_disbg + .bss.phy_meas_noise_floor + 0x3ffb7692 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb7692 phy_meas_noise_floor + .bss.sw_scan_mode + 0x3ffb7694 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb7694 sw_scan_mode + .bss.force_tx_gain_en + 0x3ffb7695 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x3ffb7695 force_tx_gain_en + .bss.phy_pwdet_onetime_flag + 0x3ffb7696 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x3ffb7696 phy_pwdet_onetime_flag + .bss.phy_dis_pwdet_one + 0x3ffb7697 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x3ffb7697 phy_dis_pwdet_one + .bss.phy_tx_pwr_error + 0x3ffb7698 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x3ffb7698 phy_tx_pwr_error + .bss.phy_in_vdd33_offset + 0x3ffb769a 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x3ffb769a phy_in_vdd33_offset + .bss.tx_pwctrl_track_num + 0x3ffb769b 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x3ffb769b tx_pwctrl_track_num + .bss.phy_tx_power_out + 0x3ffb769c 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x3ffb769c phy_tx_power_out + .bss.bt_pwr_track_num + 0x3ffb769e 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb769e bt_pwr_track_num + .bss.bt_pwr_freq_old + 0x3ffb769f 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb769f bt_pwr_freq_old + .bss.bt_pwr_cap_sum_old + 0x3ffb76a0 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76a0 bt_pwr_cap_sum_old + *fill* 0x3ffb76a1 0x1 + .bss.bt_pwr_cap_sum + 0x3ffb76a2 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76a2 bt_pwr_cap_sum + .bss.btpwr_atten_offset + 0x3ffb76a4 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76a4 btpwr_atten_offset + .bss.btpwr_tsen_flag + 0x3ffb76a5 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76a5 btpwr_tsen_flag + .bss.btpwr_tsen_old + 0x3ffb76a6 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76a6 btpwr_tsen_old + .bss.btpwr_tsen_init + 0x3ffb76a7 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76a7 btpwr_tsen_init + .bss.rfpll_offset_delta + 0x3ffb76a8 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76a8 rfpll_offset_delta + .bss.phy_bt_power_track_en + 0x3ffb76aa 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76aa phy_bt_power_track_en + .bss.phy_sw_set_chan_en + 0x3ffb76ab 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76ab phy_sw_set_chan_en + .bss.phy_force_wifi_chan_en + 0x3ffb76ac 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76ac phy_force_wifi_chan_en + .bss.phy_freq_wifi_only + 0x3ffb76ad 0x1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76ad phy_freq_wifi_only + .bss.phy_freq_offset + 0x3ffb76ae 0x2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb76ae phy_freq_offset + .bss 0x3ffb76b0 0x13c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + 0x3ffb76b0 __sf + 0x3ffb77e8 __stdio_exit_handler + *(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem) + *(.ext_ram.bss .ext_ram.bss.*) + *(COMMON) + COMMON 0x3ffb77ec 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb77ec net80211_funcs + COMMON 0x3ffb77f0 0x2a8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x3ffb77f0 g_ic + COMMON 0x3ffb7a98 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x3ffb7a98 wpa_crypto_funcs + *fill* 0x3ffb7b0c 0x4 + COMMON 0x3ffb7b10 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb7b10 g_wifi_menuconfig + COMMON 0x3ffb7b70 0x160 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x3ffb7b70 s_ni + 0x3ffb7cc8 action_q + COMMON 0x3ffb7cd0 0x21c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x3ffb7cd0 s_dp + COMMON 0x3ffb7eec 0x500 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x3ffb7eec s_wifi_nvs + COMMON 0x3ffb83ec 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3ffb83ec s_tx_cacheq + COMMON 0x3ffb83f4 0x11c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x3ffb83f4 gScanStruct + COMMON 0x3ffb8510 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb8510 s_eapol_txdone_cb + COMMON 0x3ffb8514 0xfc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x3ffb8514 gChmCxt + COMMON 0x3ffb8610 0xf0c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb8610 g_cnxMgr + 0x3ffb9508 sta_con_timer + COMMON 0x3ffb951c 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x3ffb951c ctx + COMMON 0x3ffb9524 0xc0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x3ffb9524 eb_space + COMMON 0x3ffb95e4 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x3ffb95e4 if_ctrl + *fill* 0x3ffb960c 0x4 + COMMON 0x3ffb9610 0x1d0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3ffb9610 g_pm + COMMON 0x3ffb97e0 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb97e0 s_fix_rate + COMMON 0x3ffb97ec 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x3ffb97ec g_misc_nvs + 0x3ffb97f0 g_log_level + 0x3ffb97f4 g_log_mod + COMMON 0x3ffb980c 0x201 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3ffb980c pwrdet_offset + 0x3ffb9810 phy_rxbb_dc + 0x3ffb9820 phy_rxrf_dc + 0x3ffb98a8 chip7_sleep_params + 0x3ffb996c set_most_tpw + 0x3ffb9970 phy_version_str + 0x3ffb9998 chip7_phy_init_ctrl + 0x3ffb99f6 phy_dcur_org + 0x3ffb99f8 chip7_phy_api_ctrl + 0x3ffb9a08 adc_ana_conf_org + 0x3ffb9a0c phy_dac_org + *fill* 0x3ffb9a0d 0x3 + COMMON 0x3ffb9a10 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x3ffb9a10 phy_chan_gain_table + 0x3ffb9a18 phy_chan_pwr_index + 0x3ffb9a2c phy_chan_target_power + *fill* 0x3ffb9a3d 0x3 + COMMON 0x3ffb9a40 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3ffb9a40 bt_wifi_chan_data + 0x3ffb9a54 freq_i2c_addr + 0x3ffb9a68 . = ALIGN (0x8) + *fill* 0x3ffb9a61 0x7 + 0x3ffb9a68 _bss_end = ABSOLUTE (.) + 0x00000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + +.flash.appdesc 0x3f400020 0x100 + 0x3f400020 _rodata_reserved_start = ABSOLUTE (.) + 0x3f400020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x3f400020 0x100 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x3f400020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + 0x3f400120 . = ALIGN (ALIGNOF (.flash.rodata)) + +.flash.rodata 0x3f400120 0x23dd8 + 0x3f400120 _flash_rodata_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .sdata2 EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .sdata2.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .srodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .srodata.*) + .rodata.pthread_cleanup_thread_specific_data_callback.str1.4 + 0x3f400120 0x10af6 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x3d (size before relaxing) + *fill* 0x3f410c16 0x2 + .rodata.__func__$0 + 0x3f410c18 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.start_other_core.str1.4 + 0x3f410c46 0xcc esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.str1.4 + 0x3f410c46 0x26 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.str1.4 + 0x3f410c46 0x33 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + *fill* 0x3f410c46 0x2 + .rodata.__func__$0 + 0x3f410c48 0x1e esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .rodata.select_rtc_slow_clk.str1.4 + 0x3f410c66 0x5c esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.esp_clk_init.str1.4 + 0x3f410c66 0x68 esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x3f410c66 0x2 + .rodata 0x3f410c68 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.__func__$0 + 0x3f410c6c 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x3f410c79 0x3 + .rodata 0x3f410c7c 0x10 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.esp_panic_handler.str1.4 + 0x3f410c8c 0x87 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.do_core_init.str1.4 + 0x3f410c8c 0xb8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .rodata.do_system_init_fn.str1.4 + 0x3f410c8c 0x51 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .rodata.start_cpu0_default.str1.4 + 0x3f410c8c 0x231 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .rodata.__func__$0 + 0x3f410c8c 0xd esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x3f410c99 0x3 + .rodata.g_startup_fn + 0x3f410c9c 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3f410c9c g_startup_fn + .rodata.frame_to_panic_info.str1.4 + 0x3f410ca4 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata.print_state_for_core.str1.4 + 0x3f410ca4 0x3 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata 0x3f410ca4 0x5 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .rodata.str1.4 + 0x3f410ca9 0x4 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .rodata.print_debug_exception_details.str1.4 + 0x3f410ca9 0x93 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.print_illegal_instruction_details.str1.4 + 0x3f410ca9 0x1a esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_print_registers.str1.4 + 0x3f410ca9 0x1a5 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x3f410ca9 0x3 + .rodata 0x3f410cac 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_arch_fill_info.str1.4 + 0x3f410d0c 0x21 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_soc_fill_info.str1.4 + 0x3f410d0c 0xf esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.4 + 0x3f410d0c 0x2b3 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.pseudo_reason$0 + 0x3f410d0c 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.reason$1 + 0x3f410d2c 0xa0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.4 + 0x3f410dcc 0x4d esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .rodata 0x3f410dcc 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .rodata.uart_hal_rxfifo_rst.str1.4 + 0x3f410ddc 0xc1 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .rodata.uart_hal_write_txfifo.str1.4 + 0x3f410ddc 0x90 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .rodata.__func__$1 + 0x3f410ddc 0x15 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + *fill* 0x3f410df1 0x3 + .rodata.__func__$2 + 0x3f410df4 0x13 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .rodata.get_cached_log_level.str1.4 + 0x3f410e07 0x67 esp-idf/log/liblog.a(log.c.obj) + .rodata.esp_log_level_set.str1.4 + 0x3f410e07 0x2 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x3f410e07 0x1 + .rodata.__func__$0 + 0x3f410e08 0x15 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x3f410e1d 0x3 + .rodata.__func__$1 + 0x3f410e20 0x12 esp-idf/log/liblog.a(log.c.obj) + .rodata.str1.4 + 0x3f410e32 0x11d esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f410e32 0x2 + .rodata.__func__$2 + 0x3f410e34 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f410e45 0x3 + .rodata.__func__$3 + 0x3f410e48 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f410e5a 0x2 + .rodata.__func__$4 + 0x3f410e5c 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f410e6b 0x1 + .rodata.__func__$8 + 0x3f410e6c 0x17 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f410e83 0x1 + .rodata.__func__$9 + 0x3f410e84 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f410e9e 0x2 + .rodata.__func__$10 + 0x3f410ea0 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f410eb9 0x3 + .rodata.__func__$11 + 0x3f410ebc 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$12 + 0x3f410ed4 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.register_heap.str1.4 + 0x3f410ee5 0x43 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.heap_caps_init.str1.4 + 0x3f410ee5 0x130 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x3f410ee5 0x3 + .rodata.__func__$1 + 0x3f410ee8 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$2 + 0x3f410efc 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x3f410f0b 0x1 + .rodata.__func__$3 + 0x3f410f0c 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.assert_valid_block.str1.4 + 0x3f410f1a 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_register_impl.str1.4 + 0x3f410f1a 0x2f esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_get_first_block.str1.4 + 0x3f410f1a 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x3f410f1a 0x2 + .rodata.__func__$4 + 0x3f410f1c 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$0 + 0x3f410f34 0x19 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.control_construct.str1.4 + 0x3f410f4d 0xca esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.default_walker.str1.4 + 0x3f410f4d 0x26 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_check.str1.4 + 0x3f410f4d 0x4a esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_add_pool.str1.4 + 0x3f410f4d 0x142 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_remove_pool.str1.4 + 0x3f410f4d 0x116 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_create.str1.4 + 0x3f410f4d 0x32 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_malloc.str1.4 + 0x3f410f4d 0x1a7 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_free.str1.4 + 0x3f410f4d 0x110 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_realloc.str1.4 + 0x3f410f4d 0x2e esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f410f4d 0x3 + .rodata.__func__$0 + 0x3f410f50 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$1 + 0x3f410f60 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f410f6d 0x3 + .rodata.__func__$2 + 0x3f410f70 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f410f81 0x3 + .rodata.__func__$3 + 0x3f410f84 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f410f91 0x3 + .rodata.__func__$5 + 0x3f410f94 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f410fa5 0x3 + .rodata.__func__$6 + 0x3f410fa8 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f410fb2 0x2 + .rodata.__func__$8 + 0x3f410fb4 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$9 + 0x3f410fc0 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$10 + 0x3f410fd0 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f410fe3 0x1 + .rodata.__func__$11 + 0x3f410fe4 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f410ffa 0x2 + .rodata.__func__$12 + 0x3f410ffc 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f41100e 0x2 + .rodata.__func__$14 + 0x3f411010 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f411022 0x2 + .rodata.__func__$15 + 0x3f411024 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f411036 0x2 + .rodata.__func__$18 + 0x3f411038 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f41104a 0x2 + .rodata.__func__$20 + 0x3f41104c 0xb esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.s_prepare_reserved_regions.str1.4 + 0x3f411057 0x105 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x3f411057 0x1 + .rodata.__func__$0 + 0x3f411058 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x3f411073 0x1 + .rodata.soc_memory_region_count + 0x3f411074 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f411074 soc_memory_region_count + .rodata.soc_memory_regions + 0x3f411078 0x35c esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f411078 soc_memory_regions + .rodata.str1.4 + 0x3f4113d4 0x27 esp-idf/heap/libheap.a(memory_layout.c.obj) + .rodata.soc_memory_types + 0x3f4113d4 0x50 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f4113d4 soc_memory_types + .rodata.esp_cpu_stall.str1.4 + 0x3f411424 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$0 + 0x3f411424 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *fill* 0x3f41143a 0x2 + .rodata.__func__$2 + 0x3f41143c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$3 + 0x3f41144c 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *fill* 0x3f41145a 0x2 + .rodata.intr_desc_table + 0x3f41145c 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.find_desc_for_source.str1.4 + 0x3f41165c 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.is_vect_desc_usable.str1.4 + 0x3f41165c 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.esp_intr_alloc_intrstatus.str1.4 + 0x3f41165c 0xbe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.intr_free_for_current_cpu.str1.4 + 0x3f41165c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$0 + 0x3f41165c 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3f41166d 0x3 + .rodata.__func__$1 + 0x3f411670 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3f41168a 0x2 + .rodata.__func__$2 + 0x3f41168c 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3f4116a2 0x2 + .rodata.__func__$3 + 0x3f4116a4 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3f4116bd 0x3 + .rodata.__func__$5 + 0x3f4116c0 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$6 + 0x3f4116d4 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.periph_module_enable.str1.4 + 0x3f4116e9 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x3f4116e9 0x3 + .rodata.__func__$0 + 0x3f4116ec 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__$1 + 0x3f411700 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x3f411716 0x2 + .rodata.__func__$2 + 0x3f411718 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.rtcio_ll_force_hold_disable.str1.4 + 0x3f41172d 0xdf esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + *fill* 0x3f41172d 0x3 + .rodata.__func__$0 + 0x3f411730 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.rtc_clk_cal_internal.str1.4 + 0x3f41174c 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_clk_cal_ratio.str1.4 + 0x3f41174c 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_get.str1.4 + 0x3f41174c 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_clk_wait_for_slow_cycle.str1.4 + 0x3f41174c 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$1 + 0x3f41174c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$2 + 0x3f411758 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.s_sar_power_release.str1.4 + 0x3f41176d 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + *fill* 0x3f41176d 0x3 + .rodata.__func__$0 + 0x3f411770 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata.main_task.str1.4 + 0x3f411784 0xdd esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.esp_startup_start_app.str1.4 + 0x3f411784 0x40 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.__func__$0 + 0x3f411784 0xa esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x3f41178e 0x2 + .rodata.__func__$1 + 0x3f411790 0x16 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.prvNotifyQueueSetContainer.str1.4 + 0x3f4117a6 0x8f esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericReset.str1.4 + 0x3f4117a6 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericCreateStatic.str1.4 + 0x3f4117a6 0x37 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGetMutexHolder.str1.4 + 0x3f4117a6 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueCreateCountingSemaphoreStatic.str1.4 + 0x3f4117a6 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericSend.str1.4 + 0x3f4117a6 0xfb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.prvInitialiseMutex.str1.4 + 0x3f4117a6 0x3b esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGiveMutexRecursive.str1.4 + 0x3f4117a6 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGiveFromISR.str1.4 + 0x3f4117a6 0x7d esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueReceive.str1.4 + 0x3f4117a6 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueReceiveFromISR.str1.4 + 0x3f4117a6 0x52 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.uxQueueMessagesWaiting.str1.4 + 0x3f4117a6 0x7 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f4117a6 0x2 + .rodata.__func__$0 + 0x3f4117a8 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f4117c1 0x3 + .rodata.__func__$2 + 0x3f4117c4 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f4117d1 0x3 + .rodata.__func__$5 + 0x3f4117d4 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f4117eb 0x1 + .rodata.__func__$7 + 0x3f4117ec 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f411801 0x3 + .rodata.__func__$9 + 0x3f411804 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$10 + 0x3f411818 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f411826 0x2 + .rodata.__func__$11 + 0x3f411828 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f41183a 0x2 + .rodata.__func__$12 + 0x3f41183c 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f411855 0x3 + .rodata.__func__$13 + 0x3f411858 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f411873 0x1 + .rodata.__func__$14 + 0x3f411874 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f411886 0x2 + .rodata.__func__$15 + 0x3f411888 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f4118a6 0x2 + .rodata.__func__$17 + 0x3f4118a8 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f4118c1 0x3 + .rodata.__func__$18 + 0x3f4118c4 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f4118dd 0x3 + .rodata.__func__$20 + 0x3f4118e0 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f4118f5 0x3 + .rodata.__func__$21 + 0x3f4118f8 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$23 + 0x3f41190c 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f411926 0x2 + .rodata.__func__$24 + 0x3f411928 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$25 + 0x3f41193c 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.prvIsYieldRequiredSMP.str1.4 + 0x3f41194f 0x4a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvSelectHighestPriorityTaskSMP.str1.4 + 0x3f41194f 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvDeleteTCB.str1.4 + 0x3f41194f 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvInitialiseNewTask.str1.4 + 0x3f41194f 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.eTaskGetState.str1.4 + 0x3f41194f 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskIncrementTick.str1.4 + 0x3f41194f 0x8e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPlaceOnEventList.str1.4 + 0x3f41194f 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskRemoveFromEventList.str1.4 + 0x3f41194f 0x49 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskRemoveFromUnorderedEventList.str1.4 + 0x3f41194f 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSetTimeOutState.str1.4 + 0x3f41194f 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCheckForTimeOut.str1.4 + 0x3f41194f 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPrioritySet.str1.4 + 0x3f41194f 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSuspend.str1.4 + 0x3f41194f 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskDelete.str1.4 + 0x3f41194f 0x7f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskResumeAll.str1.4 + 0x3f41194f 0x7f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskPriorityDisinherit.str1.4 + 0x3f41194f 0x41 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 + 0x3f41194f 0x2b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.ulTaskGenericNotifyTake.str1.4 + 0x3f41194f 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGenericNotify.str1.4 + 0x3f41194f 0x83 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskIncrementTickOtherCores.str1.4 + 0x3f41194f 0x55 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreatePinnedToCore.str1.4 + 0x3f41194f 0xbc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreateStaticPinnedToCore.str1.4 + 0x3f41194f 0x65 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvCreateIdleTasks.str1.4 + 0x3f41194f 0x5 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskStartScheduler.str1.4 + 0x3f41194f 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetIdleTaskHandleForCore.str1.4 + 0x3f41194f 0xbe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskPriorityRaise.str1.4 + 0x3f41194f 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f41194f 0x1 + .rodata.__func__$1 + 0x3f411950 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411965 0x3 + .rodata.__func__$4 + 0x3f411968 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411989 0x3 + .rodata.__func__$5 + 0x3f41198c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f4119aa 0x2 + .rodata.__func__$6 + 0x3f4119ac 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f4119ca 0x2 + .rodata.__func__$7 + 0x3f4119cc 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f4119e1 0x3 + .rodata.__func__$8 + 0x3f4119e4 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$9 + 0x3f4119fc 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411a19 0x3 + .rodata.__func__$11 + 0x3f411a1c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411a3a 0x2 + .rodata.__func__$13 + 0x3f411a3c 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411a4f 0x1 + .rodata.__func__$14 + 0x3f411a50 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411a67 0x1 + .rodata.__func__$15 + 0x3f411a68 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$16 + 0x3f411a80 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$17 + 0x3f411aa4 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$19 + 0x3f411abc 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411ad1 0x3 + .rodata.__func__$21 + 0x3f411ad4 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411af6 0x2 + .rodata.__func__$22 + 0x3f411af8 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411b11 0x3 + .rodata.__func__$23 + 0x3f411b14 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$24 + 0x3f411b34 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411b53 0x1 + .rodata.__func__$25 + 0x3f411b54 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411b6a 0x2 + .rodata.__func__$26 + 0x3f411b6c 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$27 + 0x3f411b8c 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411b9f 0x1 + .rodata.__func__$32 + 0x3f411ba0 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411bae 0x2 + .rodata.__func__$33 + 0x3f411bb0 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411bbf 0x1 + .rodata.__func__$34 + 0x3f411bc0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$38 + 0x3f411bd4 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411be1 0x3 + .rodata.__func__$39 + 0x3f411be4 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411bfa 0x2 + .rodata.__func__$40 + 0x3f411bfc 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411c0d 0x3 + .rodata.__func__$42 + 0x3f411c10 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411c1b 0x1 + .rodata.__func__$44 + 0x3f411c1c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f411c29 0x3 + .rodata.__func__$45 + 0x3f411c2c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.uxTopUsedPriority + 0x3f411c38 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3f411c38 uxTopUsedPriority + .rodata.vPortTaskWrapper.str1.4 + 0x3f411c3c 0x58 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortTLSPointersDelCb.str1.4 + 0x3f411c3c 0x72 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.pxPortInitialiseStack.str1.4 + 0x3f411c3c 0x65 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.xPortEnterCriticalTimeout.str1.4 + 0x3f411c3c 0xef esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortExitCritical.str1.4 + 0x3f411c3c 0x34 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationStackOverflowHook.str1.4 + 0x3f411c3c 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$0 + 0x3f411c3c 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x3f411c4d 0x3 + .rodata.__func__$1 + 0x3f411c50 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x3f411c61 0x3 + .rodata.__func__$3 + 0x3f411c64 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationGetIdleTaskMemory.str1.4 + 0x3f411c7a 0x5a esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x3f411c7a 0x2 + .rodata.__func__$0 + 0x3f411c7c 0x1f esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x3f411c9b 0x1 + .rodata.__func__$1 + 0x3f411c9c 0x1e esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.str1.4 + 0x3f411cba 0x91 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.esp_newlib_locks_init.str1.4 + 0x3f411cba 0x68 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x3f411cba 0x2 + .rodata.__func__$4 + 0x3f411cbc 0x16 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x3f411cd2 0x2 + .rodata.__func__$3 + 0x3f411cd4 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x3f411ce7 0x1 + .rodata.__func__$2 + 0x3f411ce8 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x3f411cfd 0x3 + .rodata.__func__$1 + 0x3f411d00 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x3f411d15 0x3 + .rodata.__func__$0 + 0x3f411d18 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.esp_newlib_init_global_stdio.str1.4 + 0x3f411d24 0x6 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .rodata.str1.4 + 0x3f411d24 0x33 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.init_timer_task.str1.4 + 0x3f411d24 0x7f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.esp_timer_init.str1.4 + 0x3f411d24 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.__func__$0 + 0x3f411d24 0xd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.esp_timer_impl_init_system_time.str1.4 + 0x3f411d31 0x51 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .rodata.str1.4 + 0x3f411d31 0x108 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.esp_timer_impl_init.str1.4 + 0x3f411d31 0xbf esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x3f411d31 0x3 + .rodata.__func__$2 + 0x3f411d34 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x3f411d53 0x1 + .rodata.__func__$1 + 0x3f411d54 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.translate_path.str1.4 + 0x3f411d70 0x5f esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_vfs_register_fd_range.str1.4 + 0x3f411d70 0x1 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.__func__$0 + 0x3f411d70 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.console_open.str1.4 + 0x3f411d7f 0xf esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .rodata.esp_vfs_dev_console_register.str1.4 + 0x3f411d7f 0xd esp-idf/vfs/libvfs.a(vfs_console.c.obj) + *fill* 0x3f411d7f 0x1 + .rodata.vfs 0x3f411d80 0xa4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .rodata.uart_tx_char.str1.4 + 0x3f411e24 0xc1 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_rx_char.str1.4 + 0x3f411e24 0x8e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_fcntl.str1.4 + 0x3f411e24 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_return_char.str1.4 + 0x3f411e24 0x1d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_access.str1.4 + 0x3f411e24 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_fsync.str1.4 + 0x3f411e24 0x12 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.__func__$1 + 0x3f411e24 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x3f411e2f 0x1 + .rodata.__func__$2 + 0x3f411e30 0x11 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x3f411e41 0x3 + .rodata.__func__$3 + 0x3f411e44 0xa esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x3f411e4e 0x2 + .rodata.__func__$4 + 0x3f411e50 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x3f411e5b 0x1 + .rodata.__func__$5 + 0x3f411e5c 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x3f411e67 0x1 + .rodata.__func__$6 + 0x3f411e68 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x3f411e73 0x1 + .rodata.__func__$7 + 0x3f411e74 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x3f411e7f 0x1 + .rodata.__func__$8 + 0x3f411e80 0x15 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x3f411e95 0x3 + .rodata.__func__$9 + 0x3f411e98 0x14 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.vfs 0x3f411eac 0xa4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.s_uart_mount_points + 0x3f411f50 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.s_ctx 0x3f411f5c 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.event_handler.str1.4 + 0x3f411f68 0x9f esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.cwcallback.str1.4 + 0x3f411f68 0x3 esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.ccwcallback.str1.4 + 0x3f411f68 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.buttonCallback.str1.4 + 0x3f411f68 0xc esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.configure_i2s.str1.4 + 0x3f411f68 0x14d esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.str1.4 + 0x3f411f68 0xb3 esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.udp_server_task.str1.4 + 0x3f411f68 0x197 esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.wifi_init_sta.str1.4 + 0x3f411f68 0x345 esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata 0x3f411f68 0x20 esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.app_main.str1.4 + 0x3f411f88 0x37 esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.__func__$0 + 0x3f411f88 0xc esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.__func__$4 + 0x3f411f94 0x9 esp-idf/main/libmain.a(station_example_main.c.obj) + *fill* 0x3f411f9d 0x3 + .rodata.__func__$5 + 0x3f411fa0 0xe esp-idf/main/libmain.a(station_example_main.c.obj) + *fill* 0x3f411fae 0x2 + .rodata.pin_config$6 + 0x3f411fb0 0x14 esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.__func__$7 + 0x3f411fc4 0xe esp-idf/main/libmain.a(station_example_main.c.obj) + *fill* 0x3f411fd2 0x2 + .rodata.VBAN_SRList + 0x3f411fd4 0x54 esp-idf/main/libmain.a(station_example_main.c.obj) + .rodata.volumeChangeCB.str1.4 + 0x3f412028 0x67 esp-idf/main/libmain.a(http_control.c.obj) + .rodata.getVolumeLevel.str1.4 + 0x3f412028 0xa esp-idf/main/libmain.a(http_control.c.obj) + .rodata 0x3f412028 0x54 esp-idf/main/libmain.a(http_control.c.obj) + .rodata.str1.4 + 0x3f41207c 0x25 esp-idf/main/libmain.a(http_control.c.obj) + .rodata.http_filter_submit.str1.4 + 0x3f41207c 0x78 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .rodata.getFilterJson.str1.4 + 0x3f41207c 0x5a esp-idf/main/libmain.a(butterworthdesign.c.obj) + .rodata.str1.4 + 0x3f41207c 0x29 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .rodata.uri_filter + 0x3f41207c 0x10 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x3f41207c uri_filter + .rodata.uri_filter_submit + 0x3f41208c 0x10 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x3f41208c uri_filter_submit + .rodata.uri_filter_get + 0x3f41209c 0x10 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x3f41209c uri_filter_get + .rodata.registerInterrupt.str1.4 + 0x3f4120ac 0x13 esp-idf/main/libmain.a(button.c.obj) + .rodata.str1.4 + 0x3f4120ac 0x23 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + *fill* 0x3f4120ac 0x4 + .rodata 0x3f4120b0 0x24 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x3f4120b0 _xt_coproc_sa_offset + .rodata.set_cnt_in_reg.str1.4 + 0x3f4120d4 0x63 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.write_reg.str1.4 + 0x3f4120d4 0x10c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.4 + 0x3f4120d4 0x69 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_read_reg.str1.4 + 0x3f4120d4 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x3f4120d4 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x3f4120ef 0x1 + .rodata.__func__$7 + 0x3f4120f0 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x3f41210a 0x2 + .rodata.MAC_VERSION + 0x3f41210c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM + 0x3f412110 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CUSTOM_MAC_CRC + 0x3f412114 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CRC + 0x3f412118 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC 0x3f41211c 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.range_read_addr_blocks + 0x3f412134 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x3f412134 range_read_addr_blocks + .rodata.s_get_bus_mask.str1.4 + 0x3f412154 0x91 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.s_reserve_irom_region.str1.4 + 0x3f412154 0xbe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.s_reserve_drom_region.str1.4 + 0x3f412154 0x8b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_init.str1.4 + 0x3f412154 0x93 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_get_max_consecutive_free_block_size.str1.4 + 0x3f412154 0x5d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_reserve_block_with_caps.str1.4 + 0x3f412154 0x2c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map.str1.4 + 0x3f412154 0x17e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_unmap.str1.4 + 0x3f412154 0xa3 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_vaddr_to_paddr.str1.4 + 0x3f412154 0x7b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$1 + 0x3f412154 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f41216b 0x1 + .rodata.__FUNCTION__$2 + 0x3f41216c 0xe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f41217a 0x2 + .rodata.__func__$4 + 0x3f41217c 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$5 + 0x3f412188 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$8 + 0x3f412194 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f4121aa 0x2 + .rodata.__func__$9 + 0x3f4121ac 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$10 + 0x3f4121c0 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f4121d6 0x2 + .rodata.__func__$11 + 0x3f4121d8 0x11 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.str1.4 + 0x3f4121e9 0x5 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f4121e9 0x3 + .rodata.g_mmu_mem_regions + 0x3f4121ec 0x48 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x3f4121ec g_mmu_mem_regions + .rodata.gpio_input_disable.str1.4 + 0x3f412234 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_output_disable.str1.4 + 0x3f412234 0xf1 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_pullup_en.str1.4 + 0x3f412234 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_ll_input_enable.str1.4 + 0x3f412234 0xb8 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_sleep_output_enable.str1.4 + 0x3f412234 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_intr_type.str1.4 + 0x3f412234 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_direction.str1.4 + 0x3f412234 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_config.str1.4 + 0x3f412234 0x1a8 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_handler_add.str1.4 + 0x3f412234 0x49 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_register.str1.4 + 0x3f412234 0x81 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_install_isr_service.str1.4 + 0x3f412234 0x23 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$32 + 0x3f412234 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f412246 0x2 + .rodata.__FUNCTION__$34 + 0x3f412248 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f41225d 0x3 + .rodata.__FUNCTION__$35 + 0x3f412260 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f412279 0x3 + .rodata.__func__$37 + 0x3f41227c 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f412293 0x1 + .rodata.__func__$38 + 0x3f412294 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$39 + 0x3f4122a0 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$40 + 0x3f4122b0 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f4122bf 0x1 + .rodata.__func__$41 + 0x3f4122c0 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f4122d7 0x1 + .rodata.__FUNCTION__$42 + 0x3f4122d8 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$43 + 0x3f4122ec 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f4122ff 0x1 + .rodata.__FUNCTION__$44 + 0x3f412300 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f412313 0x1 + .rodata.__func__$45 + 0x3f412314 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f412329 0x3 + .rodata.__FUNCTION__$46 + 0x3f41232c 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f41233e 0x2 + .rodata.__FUNCTION__$47 + 0x3f412340 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f412353 0x1 + .rodata.__FUNCTION__$50 + 0x3f412354 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f412366 0x2 + .rodata.__FUNCTION__$51 + 0x3f412368 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f412379 0x3 + .rodata.__FUNCTION__$52 + 0x3f41237c 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f41238f 0x1 + .rodata.__FUNCTION__$53 + 0x3f412390 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f4123a2 0x2 + .rodata.__func__$54 + 0x3f4123a4 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$55 + 0x3f4123b8 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f4123c9 0x3 + .rodata.__FUNCTION__$56 + 0x3f4123cc 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$57 + 0x3f4123dc 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x3f4123ee 0x2 + .rodata.__FUNCTION__$58 + 0x3f4123f0 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.rtcio_ll_iomux_func_sel.str1.4 + 0x3f4123ff 0xeb esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtcio_ll_function_select.str1.4 + 0x3f4123ff 0x174 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_init.str1.4 + 0x3f4123ff 0x3b esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x3f4123ff 0x1 + .rodata.__func__$8 + 0x3f412400 0x1a esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x3f41241a 0x2 + .rodata.__FUNCTION__$9 + 0x3f41241c 0x16 esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x3f412432 0x2 + .rodata.__func__$10 + 0x3f412434 0x19 esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x3f41244d 0x3 + .rodata.__FUNCTION__$11 + 0x3f412450 0x15 esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x3f412465 0x3 + .rodata.__func__$12 + 0x3f412468 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$13 + 0x3f412480 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$14 + 0x3f412494 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x3f4124ab 0x1 + .rodata.__FUNCTION__$15 + 0x3f4124ac 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x3f4124bf 0x1 + .rodata.__FUNCTION__$24 + 0x3f4124c0 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$25 + 0x3f4124d0 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$26 + 0x3f4124e8 0x19 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.i2s_check_cfg_validity.str1.4 + 0x3f412501 0x1e6 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_config_source_clock.str1.4 + 0x3f412501 0x82 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_calculate_adc_dac_clock.str1.4 + 0x3f412501 0xd1 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_calculate_common_clock.str1.4 + 0x3f412501 0x39 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_calculate_clock.str1.4 + 0x3f412501 0xfe esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_delete_dma_buffer.str1.4 + 0x3f412501 0x3d esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_alloc_dma_buffer.str1.4 + 0x3f412501 0x7b esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_realloc_dma_buffer.str1.4 + 0x3f412501 0x3e esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_destroy_dma_object.str1.4 + 0x3f412501 0x38 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_dma_intr_init.str1.4 + 0x3f412501 0x3d esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.str1.4 + 0x3f412501 0x3c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_create_dma_object.str1.4 + 0x3f412501 0x10d esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_dma_object_init.str1.4 + 0x3f412501 0x80 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_init_legacy.str1.4 + 0x3f412501 0x106 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_check_set_mclk.str1.4 + 0x3f412501 0x36 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.gpio_matrix_out_check_and_set.str1.4 + 0x3f412501 0xbd esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_set_dac_mode.str1.4 + 0x3f412501 0x33 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_set_clk.str1.4 + 0x3f412501 0x136 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_driver_uninstall.str1.4 + 0x3f412501 0x3e esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_driver_install.str1.4 + 0x3f412501 0x191 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_write.str1.4 + 0x3f412501 0x37 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.i2s_set_pin.str1.4 + 0x3f412501 0x107 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.check_i2s_driver_conflict.str1.4 + 0x3f412501 0xea esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f412501 0x3 + .rodata.__func__$0 + 0x3f412504 0x17 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f41251b 0x1 + .rodata.__FUNCTION__$1 + 0x3f41251c 0x13 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f41252f 0x1 + .rodata.__FUNCTION__$2 + 0x3f412530 0xc esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$3 + 0x3f41253c 0x14 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$6 + 0x3f412550 0xa esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f41255a 0x2 + .rodata.__FUNCTION__$7 + 0x3f41255c 0x16 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f412572 0x2 + .rodata.__FUNCTION__$8 + 0x3f412574 0x14 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$9 + 0x3f412588 0x12 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f41259a 0x2 + .rodata.__FUNCTION__$10 + 0x3f41259c 0x10 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$11 + 0x3f4125ac 0x17 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f4125c3 0x1 + .rodata.__FUNCTION__$12 + 0x3f4125c4 0x13 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f4125d7 0x1 + .rodata.__FUNCTION__$13 + 0x3f4125d8 0x17 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f4125ef 0x1 + .rodata.__FUNCTION__$14 + 0x3f4125f0 0x15 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f412605 0x3 + .rodata.__FUNCTION__$18 + 0x3f412608 0x15 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f41261d 0x3 + .rodata.__FUNCTION__$19 + 0x3f412620 0x16 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f412636 0x2 + .rodata.__FUNCTION__$20 + 0x3f412638 0x17 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f41264f 0x1 + .rodata.__FUNCTION__$21 + 0x3f412650 0x1b esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f41266b 0x1 + .rodata.__FUNCTION__$22 + 0x3f41266c 0x1b esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f412687 0x1 + .rodata.__FUNCTION__$23 + 0x3f412688 0x1b esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f4126a3 0x1 + .rodata.__FUNCTION__$24 + 0x3f4126a4 0x1c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$25 + 0x3f4126c0 0x14 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$26 + 0x3f4126d4 0xc esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.__FUNCTION__$32 + 0x3f4126e0 0x11 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f4126f1 0x3 + .rodata.__FUNCTION__$33 + 0x3f4126f4 0x9 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x3f4126fd 0x3 + .rodata.__FUNCTION__$34 + 0x3f412700 0xa esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .rodata.uart_reenable_intr_mask.str1.4 + 0x3f41270a 0x37 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_word_length.str1.4 + 0x3f41270a 0x2f esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_stop_bits.str1.4 + 0x3f41270a 0x2f esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_baudrate.str1.4 + 0x3f41270a 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_pattern_pop_pos.str1.4 + 0x3f41270a 0x32 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_wait_tx_done.str1.4 + 0x3f41270a 0x90 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_flush_input.str1.4 + 0x3f41270a 0x2e esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x3f41270a 0x2 + .rodata.__FUNCTION__$37 + 0x3f41270c 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x3f41271d 0x3 + .rodata.__FUNCTION__$35 + 0x3f412720 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x3f41273b 0x1 + .rodata.__FUNCTION__$34 + 0x3f41273c 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__func__$29 + 0x3f412754 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x3f412766 0x2 + .rodata.__FUNCTION__$28 + 0x3f412768 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x3f41277a 0x2 + .rodata.__FUNCTION__$7 + 0x3f41277c 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x3f41278e 0x2 + .rodata.__FUNCTION__$6 + 0x3f412790 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x3f4127a2 0x2 + .rodata.__FUNCTION__$5 + 0x3f4127a4 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$4 + 0x3f4127b4 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$3 + 0x3f4127c4 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x3f4127d7 0x1 + .rodata.__FUNCTION__$2 + 0x3f4127d8 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x3f4127eb 0x1 + .rodata.__FUNCTION__$1 + 0x3f4127ec 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x3f412801 0x3 + .rodata.__FUNCTION__$0 + 0x3f412804 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.adc_set_i2s_data_source.str1.4 + 0x3f412819 0x42 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + *fill* 0x3f412819 0x3 + .rodata.__FUNCTION__$1 + 0x3f41281c 0x18 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .rodata.adc1_pad_get_io_num.str1.4 + 0x3f412834 0x34 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.check_adc_oneshot_driver_conflict.str1.4 + 0x3f412834 0xbf esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .rodata.i2s_platform_acquire_occupation.str1.4 + 0x3f412834 0x86 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .rodata.__FUNCTION__$0 + 0x3f412834 0x20 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .rodata.__FUNCTION__$1 + 0x3f412854 0x20 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .rodata.str1.4 + 0x3f412874 0x7f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$1 + 0x3f412874 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.spi_flash_init_lock.str1.4 + 0x3f41289c 0x45 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.str1.4 + 0x3f41289c 0x191 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.__func__$0 + 0x3f41289c 0x1c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.__func__$1 + 0x3f4128b8 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x3f4128e9 0x3 + .rodata.__func__$2 + 0x3f4128ec 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x3f41291e 0x2 + .rodata.__func__$3 + 0x3f412920 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.s_merge_contiguous_pages.str1.4 + 0x3f412934 0x44 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_munmap.str1.4 + 0x3f412934 0x32 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$1 + 0x3f412934 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.esp_mspi_get_io.str1.4 + 0x3f412945 0x3f esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + *fill* 0x3f412945 0x3 + .rodata.__func__$0 + 0x3f412948 0x10 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.s_mspi_io_num_default + 0x3f412958 0x6 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.str1.4 + 0x3f41295e 0x241 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_read_unique_chip_id.str1.4 + 0x3f41295e 0x92 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3f41295e 0x2 + .rodata.__func__$0 + 0x3f412960 0x1a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3f41297a 0x2 + .rodata.__func__$1 + 0x3f41297c 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__$2 + 0x3f41298c 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3f4129a3 0x1 + .rodata.io_mode_str + 0x3f4129a4 0xb4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_init_default_chip.str1.4 + 0x3f412a58 0xfc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.TAG 0x3f412a58 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.str1.4 + 0x3f412a62 0x47 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x3f412a62 0x2 + .rodata.__func__$0 + 0x3f412a64 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.str1.4 + 0x3f412a7d 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.esp_crosscore_int_init.str1.4 + 0x3f412a7d 0x2f esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x3f412a7d 0x3 + .rodata.__func__$0 + 0x3f412a80 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x3f412a97 0x1 + .rodata.__func__$1 + 0x3f412a98 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.str1.4 + 0x3f412aaf 0x42 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .rodata.esp_ipc_init.str1.4 + 0x3f412aaf 0xe esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x3f412aaf 0x1 + .rodata.__func__$0 + 0x3f412ab0 0x9 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x3f412ab9 0x3 + .rodata.__func__$1 + 0x3f412abc 0xd esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .rodata.add_entry.str1.4 + 0x3f412ac9 0xc7 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.delete_entry.str1.4 + 0x3f412ac9 0x5f esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.task_wdt_timeout_abort.str1.4 + 0x3f412ac9 0xd3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_add.str1.4 + 0x3f412ac9 0x3b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.subscribe_idle.str1.4 + 0x3f412ac9 0xa8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_init.str1.4 + 0x3f412ac9 0xa4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_print_triggered_tasks.str1.4 + 0x3f412ac9 0xc1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.task_wdt_isr.str1.4 + 0x3f412ac9 0x33 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f412ac9 0x3 + .rodata.__FUNCTION__$5 + 0x3f412acc 0x13 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f412adf 0x1 + .rodata.__FUNCTION__$7 + 0x3f412ae0 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f412aea 0x2 + .rodata.__FUNCTION__$8 + 0x3f412aec 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f412afd 0x3 + .rodata.__func__$12 + 0x3f412b00 0xf esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f412b0f 0x1 + .rodata.__func__$13 + 0x3f412b10 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f412b1d 0x3 + .rodata.__FUNCTION__$14 + 0x3f412b20 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f412b32 0x2 + .rodata.__func__$15 + 0x3f412b34 0x17 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.get_flash_clock_divider.str1.4 + 0x3f412b4b 0x93 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .rodata.hal_utils_calc_clk_div_frac_fast.str1.4 + 0x3f412b4b 0x3c esp-idf/hal/libhal.a(hal_utils.c.obj) + .rodata.str1.4 + 0x3f412b4b 0x2cd esp-idf/soc/libsoc.a(interrupts.c.obj) + *fill* 0x3f412b4b 0x1 + .rodata.esp_isr_names + 0x3f412b4c 0x114 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x3f412b4c esp_isr_names + .rodata.GPIO_PIN_MUX_REG + 0x3f412c60 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x3f412c60 GPIO_PIN_MUX_REG + .rodata.i2s_periph_signal + 0x3f412d00 0x28 esp-idf/soc/libsoc.a(i2s_periph.c.obj) + 0x3f412d00 i2s_periph_signal + .rodata.rtc_io_desc + 0x3f412d28 0x3f0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x3f412d28 rtc_io_desc + .rodata.rtc_io_num_map + 0x3f413118 0xa0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x3f413118 rtc_io_num_map + .rodata 0x3f4131b8 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .rodata.periph_rtc_dig_clk8m_disable.str1.4 + 0x3f4131cc 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.periph_rtc_apll_release.str1.4 + 0x3f4131cc 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.periph_rtc_apll_freq_set.str1.4 + 0x3f4131cc 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.__FUNCTION__$0 + 0x3f4131cc 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + *fill* 0x3f4131e5 0x3 + .rodata.__func__$1 + 0x3f4131e8 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + *fill* 0x3f413201 0x3 + .rodata.__func__$2 + 0x3f413204 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.esp_clk_tree_src_get_freq_hz.str1.4 + 0x3f41321c 0xec esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .rodata.__FUNCTION__$0 + 0x3f41321c 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .rodata.clk_tree_rtc_slow_calibration.str1.4 + 0x3f413239 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .rodata.esp_clk_tree_lp_fast_get_freq_hz.str1.4 + 0x3f413239 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + *fill* 0x3f413239 0x3 + .rodata.__func__$0 + 0x3f41323c 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + *fill* 0x3f41325d 0x3 + .rodata.__func__$1 + 0x3f413260 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .rodata.adc_lock_release.str1.4 + 0x3f41327e 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + *fill* 0x3f41327e 0x2 + .rodata.__FUNCTION__$1 + 0x3f413280 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .rodata.clkout_mapping_alloc.str1.4 + 0x3f413291 0xf9 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .rodata.esp_clock_output_start.str1.4 + 0x3f413291 0x15b esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .rodata.esp_clock_output_stop.str1.4 + 0x3f413291 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + *fill* 0x3f413291 0x3 + .rodata.__FUNCTION__$0 + 0x3f413294 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + *fill* 0x3f4132aa 0x2 + .rodata.__func__$1 + 0x3f4132ac 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + *fill* 0x3f4132c3 0x1 + .rodata.__func__$2 + 0x3f4132c4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .rodata.__FUNCTION__$3 + 0x3f4132d8 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .rodata.xEventGroupCreateStatic.str1.4 + 0x3f4132ef 0xab esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupWaitBits.str1.4 + 0x3f4132ef 0x9f esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupClearBits.str1.4 + 0x3f4132ef 0x26 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupSetBits.str1.4 + 0x3f4132ef 0x24 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.vEventGroupDelete.str1.4 + 0x3f4132ef 0x72 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x3f4132ef 0x1 + .rodata.__func__$1 + 0x3f4132f0 0x12 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x3f413302 0x2 + .rodata.__func__$2 + 0x3f413304 0x13 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x3f413317 0x1 + .rodata.__func__$3 + 0x3f413318 0x15 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x3f41332d 0x3 + .rodata.__func__$4 + 0x3f413330 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$6 + 0x3f413344 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.prvProcessReceivedCommands.str1.4 + 0x3f413358 0x5b esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.xTimerCreateTimerTask.str1.4 + 0x3f413358 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__func__$16 + 0x3f413358 0x1b esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x3f413373 0x1 + .rodata.__func__$18 + 0x3f413374 0x16 esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x3f41338a 0x2 + .rodata.esp_unknown_msg + 0x3f41338c 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.4 + 0x3f413392 0x17ee esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x3f413392 0x2 + .rodata.esp_err_msg_table + 0x3f413394 0x6c8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.esp_event_loop_create_default.str1.4 + 0x3f413a5c 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .rodata 0x3f413a5c 0x14 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .rodata.handler_instances_add.str1.4 + 0x3f413a70 0x48 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.base_node_add_handler.str1.4 + 0x3f413a70 0x35 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.loop_node_add_handler.str1.4 + 0x3f413a70 0x3f esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_loop_create.str1.4 + 0x3f413a70 0x139 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_loop_run.str1.4 + 0x3f413a70 0x33 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_loop_run_task.str1.4 + 0x3f413a70 0x33 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_handler_register_with_internal.str1.4 + 0x3f413a70 0x9b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_handler_unregister_with_internal.str1.4 + 0x3f413a70 0x61 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$1 + 0x3f413a70 0x12 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x3f413a82 0x2 + .rodata.__func__$2 + 0x3f413a84 0x2b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x3f413aaf 0x1 + .rodata.__func__$3 + 0x3f413ab0 0x29 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x3f413ad9 0x3 + .rodata.__func__$5 + 0x3f413adc 0x13 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.free_socket_locked.str1.4 + 0x3f413aef 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.sock_inc_used_locked.str1.4 + 0x3f413aef 0x23 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sockopt_to_ipopt.str1.4 + 0x3f413aef 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.alloc_socket.str1.4 + 0x3f413aef 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_unlink_select_cb.str1.4 + 0x3f413aef 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sock_make_addr.str1.4 + 0x3f413aef 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_selscan.str1.4 + 0x3f413aef 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_select_dec_sockets_used.str1.4 + 0x3f413aef 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_pollscan.str1.4 + 0x3f413aef 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_recv_tcp.str1.4 + 0x3f413aef 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_recvfrom_udp_raw.str1.4 + 0x3f413aef 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.event_callback.str1.4 + 0x3f413aef 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_getsockopt_callback.str1.4 + 0x3f413aef 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_setsockopt_impl.str1.4 + 0x3f413aef 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_accept.str1.4 + 0x3f413aef 0x25 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_close.str1.4 + 0x3f413aef 0x17 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_recvfrom.str1.4 + 0x3f413aef 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413aef 0x1 + .rodata.__func__$0 + 0x3f413af0 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413b05 0x3 + .rodata.__func__$1 + 0x3f413b08 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413b21 0x3 + .rodata.__func__$2 + 0x3f413b24 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413b3a 0x2 + .rodata.__func__$6 + 0x3f413b3c 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413b59 0x3 + .rodata.__func__$7 + 0x3f413b5c 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413b69 0x3 + .rodata.__func__$8 + 0x3f413b6c 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413b82 0x2 + .rodata.__func__$9 + 0x3f413b84 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413b99 0x3 + .rodata.__func__$10 + 0x3f413b9c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$11 + 0x3f413ba8 0xf esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413bb7 0x1 + .rodata.__func__$12 + 0x3f413bb8 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413bce 0x2 + .rodata.__func__$13 + 0x3f413bd0 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$14 + 0x3f413be4 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413bf2 0x2 + .rodata.__func__$15 + 0x3f413bf4 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413bff 0x1 + .rodata.__func__$16 + 0x3f413c00 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$17 + 0x3f413c0c 0x13 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413c1f 0x1 + .rodata.__func__$18 + 0x3f413c20 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413c2d 0x3 + .rodata.__func__$19 + 0x3f413c30 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x3f413c3e 0x2 + .rodata.__func__$20 + 0x3f413c40 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.tcpip_thread_handle_msg.str1.4 + 0x3f413c4c 0x4a esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.tcpip_inpkt.str1.4 + 0x3f413c4c 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.tcpip_send_msg_wait_sem.str1.4 + 0x3f413c4c 0x1a esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.tcpip_init.str1.4 + 0x3f413c4c 0x28 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$0 + 0x3f413c4c 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$1 + 0x3f413c64 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3f413c71 0x3 + .rodata.__func__$2 + 0x3f413c74 0xb esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3f413c7f 0x1 + .rodata.__func__$5 + 0x3f413c80 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3f413c8f 0x1 + .rodata.__func__$6 + 0x3f413c90 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$7 + 0x3f413ca8 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3f413cbb 0x1 + .rodata.__func__$8 + 0x3f413cbc 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3f413ccb 0x1 + .rodata.__func__$9 + 0x3f413ccc 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.ip_addr_any_type + 0x3f413cd8 0x18 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x3f413cd8 ip_addr_any_type + .rodata.mem_malloc.str1.4 + 0x3f413cf0 0x4d esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.mem_free.str1.4 + 0x3f413cf0 0x28 esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.__func__$0 + 0x3f413cf0 0x9 esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x3f413cf9 0x3 + .rodata.__func__$1 + 0x3f413cfc 0xb esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.do_memp_malloc_pool.str1.4 + 0x3f413d07 0x4e esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.do_memp_free_pool.str1.4 + 0x3f413d07 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x3f413d07 0x1 + .rodata.__func__$0 + 0x3f413d08 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x3f413d1a 0x2 + .rodata.__func__$2 + 0x3f413d1c 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_pools + 0x3f413d30 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413d30 memp_pools + .rodata.memp_PBUF_POOL + 0x3f413d78 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413d78 memp_PBUF_POOL + *fill* 0x3f413d7a 0x2 + .rodata.memp_PBUF + 0x3f413d7c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413d7c memp_PBUF + *fill* 0x3f413d7e 0x2 + .rodata.memp_MLD6_GROUP + 0x3f413d80 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413d80 memp_MLD6_GROUP + *fill* 0x3f413d82 0x2 + .rodata.memp_ND6_QUEUE + 0x3f413d84 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413d84 memp_ND6_QUEUE + *fill* 0x3f413d86 0x2 + .rodata.memp_NETDB + 0x3f413d88 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413d88 memp_NETDB + *fill* 0x3f413d8a 0x2 + .rodata.memp_SYS_TIMEOUT + 0x3f413d8c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413d8c memp_SYS_TIMEOUT + *fill* 0x3f413d8e 0x2 + .rodata.memp_IGMP_GROUP + 0x3f413d90 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413d90 memp_IGMP_GROUP + *fill* 0x3f413d92 0x2 + .rodata.memp_ARP_QUEUE + 0x3f413d94 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413d94 memp_ARP_QUEUE + *fill* 0x3f413d96 0x2 + .rodata.memp_TCPIP_MSG_INPKT + 0x3f413d98 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413d98 memp_TCPIP_MSG_INPKT + *fill* 0x3f413d9a 0x2 + .rodata.memp_TCPIP_MSG_API + 0x3f413d9c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413d9c memp_TCPIP_MSG_API + *fill* 0x3f413d9e 0x2 + .rodata.memp_NETCONN + 0x3f413da0 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413da0 memp_NETCONN + *fill* 0x3f413da2 0x2 + .rodata.memp_NETBUF + 0x3f413da4 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413da4 memp_NETBUF + *fill* 0x3f413da6 0x2 + .rodata.memp_FRAG_PBUF + 0x3f413da8 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413da8 memp_FRAG_PBUF + *fill* 0x3f413daa 0x2 + .rodata.memp_TCP_SEG + 0x3f413dac 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413dac memp_TCP_SEG + *fill* 0x3f413dae 0x2 + .rodata.memp_TCP_PCB_LISTEN + 0x3f413db0 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413db0 memp_TCP_PCB_LISTEN + *fill* 0x3f413db2 0x2 + .rodata.memp_TCP_PCB + 0x3f413db4 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413db4 memp_TCP_PCB + *fill* 0x3f413db6 0x2 + .rodata.memp_UDP_PCB + 0x3f413db8 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413db8 memp_UDP_PCB + *fill* 0x3f413dba 0x2 + .rodata.memp_RAW_PCB + 0x3f413dbc 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f413dbc memp_RAW_PCB + .rodata.netif_loopif_init.str1.4 + 0x3f413dbe 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_do_set_netmask.str1.4 + 0x3f413dbe 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_issue_reports.str1.4 + 0x3f413dbe 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_poll.str1.4 + 0x3f413dbe 0x98 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_loop_output.str1.4 + 0x3f413dbe 0x70 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_get_ip6_addr_match.str1.4 + 0x3f413dbe 0x52 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add_ext_callback.str1.4 + 0x3f413dbe 0x2f esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_remove_ext_callback.str1.4 + 0x3f413dbe 0xd esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_invoke_ext_callback.str1.4 + 0x3f413dbe 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add.str1.4 + 0x3f413dbe 0x42 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_ip6_addr_set_parts.str1.4 + 0x3f413dbe 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_ip6_addr_set.str1.4 + 0x3f413dbe 0x46 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413dbe 0x2 + .rodata.__func__$0 + 0x3f413dc0 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413dda 0x2 + .rodata.__func__$1 + 0x3f413ddc 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413df6 0x2 + .rodata.__func__$2 + 0x3f413df8 0x17 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413e0f 0x1 + .rodata.__func__$5 + 0x3f413e10 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413e29 0x3 + .rodata.__func__$6 + 0x3f413e2c 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413e45 0x3 + .rodata.__func__$7 + 0x3f413e48 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413e61 0x3 + .rodata.__func__$8 + 0x3f413e64 0x13 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413e77 0x1 + .rodata.__func__$9 + 0x3f413e78 0xb esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413e83 0x1 + .rodata.__func__$10 + 0x3f413e84 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413e96 0x2 + .rodata.__func__$11 + 0x3f413e98 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$12 + 0x3f413ea8 0x15 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413ebd 0x3 + .rodata.__func__$13 + 0x3f413ec0 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$14 + 0x3f413ed4 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$15 + 0x3f413ee8 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3f413ef2 0x2 + .rodata.__func__$17 + 0x3f413ef4 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.pbuf_add_header_impl.str1.4 + 0x3f413f06 0x36 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_alloc_reference.str1.4 + 0x3f413f06 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_free.str1.4 + 0x3f413f06 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_alloc.str1.4 + 0x3f413f06 0xab esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_realloc.str1.4 + 0x3f413f06 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_ref.str1.4 + 0x3f413f06 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_cat.str1.4 + 0x3f413f06 0x2d esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_copy_partial_pbuf.str1.4 + 0x3f413f06 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_take.str1.4 + 0x3f413f06 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_take_at.str1.4 + 0x3f413f06 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_clone.str1.4 + 0x3f413f06 0x11 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413f06 0x2 + .rodata.__func__$0 + 0x3f413f08 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413f13 0x1 + .rodata.__func__$1 + 0x3f413f14 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413f21 0x3 + .rodata.__func__$2 + 0x3f413f24 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413f2e 0x2 + .rodata.__func__$3 + 0x3f413f30 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413f47 0x1 + .rodata.__func__$5 + 0x3f413f48 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413f51 0x3 + .rodata.__func__$6 + 0x3f413f54 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413f5d 0x3 + .rodata.__func__$7 + 0x3f413f60 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413f6a 0x2 + .rodata.__func__$8 + 0x3f413f6c 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413f7f 0x1 + .rodata.__func__$9 + 0x3f413f80 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413f95 0x3 + .rodata.__func__$10 + 0x3f413f98 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413fa5 0x3 + .rodata.__func__$11 + 0x3f413fa8 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x3f413fbd 0x3 + .rodata.__func__$12 + 0x3f413fc0 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.raw_input.str1.4 + 0x3f413fcb 0x75 esp-idf/lwip/liblwip.a(raw.c.obj) + .rodata.raw_sendto_if_src.str1.4 + 0x3f413fcb 0x4a esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x3f413fcb 0x1 + .rodata.__func__$0 + 0x3f413fcc 0x12 esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x3f413fde 0x2 + .rodata.__func__$1 + 0x3f413fe0 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + .rodata.tcp_remove_listener.str1.4 + 0x3f413fea 0x51 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_listen_closed.str1.4 + 0x3f413fea 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_free_listen.str1.4 + 0x3f413fea 0x19 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_free.str1.4 + 0x3f413fea 0x11 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_backlog_delayed.str1.4 + 0x3f413fea 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_listen_with_backlog_and_err.str1.4 + 0x3f413fea 0x2d esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_update_rcv_ann_wnd.str1.4 + 0x3f413fea 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_recved.str1.4 + 0x3f413fea 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_seg_copy.str1.4 + 0x3f413fea 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_recv.str1.4 + 0x3f413fea 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_sent.str1.4 + 0x3f413fea 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_err.str1.4 + 0x3f413fea 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_poll.str1.4 + 0x3f413fea 0x1e esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_next_iss.str1.4 + 0x3f413fea 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_eff_send_mss_netif.str1.4 + 0x3f413fea 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_pcb_remove.str1.4 + 0x3f413fea 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_abandon.str1.4 + 0x3f413fea 0x31 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_accept_null.str1.4 + 0x3f413fea 0x1d esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_netif_ip_addr_changed_pcblist.str1.4 + 0x3f413fea 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_kill_state.str1.4 + 0x3f413fea 0xe esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_close_shutdown.str1.4 + 0x3f413fea 0x39 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_slowtmr.str1.4 + 0x3f413fea 0x1ca esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f413fea 0x2 + .rodata.__func__$0 + 0x3f413fec 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f41400e 0x2 + .rodata.__func__$1 + 0x3f414010 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414027 0x1 + .rodata.__func__$2 + 0x3f414028 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414035 0x3 + .rodata.__func__$3 + 0x3f414038 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414047 0x1 + .rodata.__func__$4 + 0x3f414048 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414051 0x3 + .rodata.__func__$5 + 0x3f414054 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$6 + 0x3f41405c 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414065 0x3 + .rodata.__func__$7 + 0x3f414068 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414071 0x3 + .rodata.__func__$8 + 0x3f414074 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414083 0x1 + .rodata.__func__$9 + 0x3f414084 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414091 0x3 + .rodata.__func__$10 + 0x3f414094 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$11 + 0x3f4140a0 0xb esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f4140ab 0x1 + .rodata.__func__$12 + 0x3f4140ac 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f4140c3 0x1 + .rodata.__func__$13 + 0x3f4140c4 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$14 + 0x3f4140d4 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$15 + 0x3f4140f4 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$16 + 0x3f414100 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414117 0x1 + .rodata.__func__$17 + 0x3f414118 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$18 + 0x3f414128 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$19 + 0x3f41413c 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f41414e 0x2 + .rodata.__func__$20 + 0x3f414150 0x13 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414163 0x1 + .rodata.__func__$21 + 0x3f414164 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414179 0x3 + .rodata.__func__$22 + 0x3f41417c 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$23 + 0x3f414190 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f414199 0x3 + .rodata.tcp_pcb_lists + 0x3f41419c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3f41419c tcp_pcb_lists + .rodata.tcp_persist_backoff + 0x3f4141ac 0x7 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f4141b3 0x1 + .rodata.tcp_backoff + 0x3f4141b4 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_parseopt.str1.4 + 0x3f4141c1 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_input_delayed_close.str1.4 + 0x3f4141c1 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_timewait_input.str1.4 + 0x3f4141c1 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_listen_input.str1.4 + 0x3f4141c1 0x1e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_oos_insert_segment.str1.4 + 0x3f4141c1 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_free_acked_segments.str1.4 + 0x3f4141c1 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_receive.str1.4 + 0x3f4141c1 0x131 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_process.str1.4 + 0x3f4141c1 0x86 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_input.str1.4 + 0x3f4141c1 0x172 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3f4141c1 0x3 + .rodata.__func__$0 + 0x3f4141c4 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$1 + 0x3f4141dc 0x17 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3f4141f3 0x1 + .rodata.__func__$2 + 0x3f4141f4 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$3 + 0x3f41420c 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$4 + 0x3f414218 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$5 + 0x3f414224 0xd esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3f414231 0x3 + .rodata.__func__$6 + 0x3f414234 0x11 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3f414245 0x3 + .rodata.__func__$7 + 0x3f414248 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3f41425b 0x1 + .rodata.__func__$8 + 0x3f41425c 0xa esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_write_checks.str1.4 + 0x3f414266 0xbe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_segment_busy.str1.4 + 0x3f414266 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_fill_options.str1.4 + 0x3f414266 0x3b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_pbuf_prealloc.str1.4 + 0x3f414266 0x58 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_create_segment.str1.4 + 0x3f414266 0x59 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_alloc_header_common.str1.4 + 0x3f414266 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_alloc_header.str1.4 + 0x3f414266 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_segment.str1.4 + 0x3f414266 0x62 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_control_segment.str1.4 + 0x3f414266 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_write.str1.4 + 0x3f414266 0xfa esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_split_unsent_seg.str1.4 + 0x3f414266 0x66 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_enqueue_flags.str1.4 + 0x3f414266 0x120 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_send_fin.str1.4 + 0x3f414266 0x1a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_rto_prepare.str1.4 + 0x3f414266 0x24 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit.str1.4 + 0x3f414266 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_fast.str1.4 + 0x3f414266 0x1d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rst.str1.4 + 0x3f414266 0x37 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_send_empty_ack.str1.4 + 0x3f414266 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output.str1.4 + 0x3f414266 0x57 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_rto_commit.str1.4 + 0x3f414266 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_rto.str1.4 + 0x3f414266 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_keepalive.str1.4 + 0x3f414266 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_zero_window_probe.str1.4 + 0x3f414266 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f414266 0x2 + .rodata.__func__$0 + 0x3f414268 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f41427e 0x2 + .rodata.__func__$1 + 0x3f414280 0xe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f41428e 0x2 + .rodata.__func__$2 + 0x3f414290 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$3 + 0x3f4142a8 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f4142bb 0x1 + .rodata.__func__$4 + 0x3f4142bc 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f4142d7 0x1 + .rodata.__func__$5 + 0x3f4142d8 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$6 + 0x3f4142f0 0x1f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f41430f 0x1 + .rodata.__func__$7 + 0x3f414310 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$8 + 0x3f414318 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$9 + 0x3f414328 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f414333 0x1 + .rodata.__func__$10 + 0x3f414334 0xf esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f414343 0x1 + .rodata.__func__$11 + 0x3f414344 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f41435a 0x2 + .rodata.__func__$12 + 0x3f41435c 0x17 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f414373 0x1 + .rodata.__func__$13 + 0x3f414374 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$14 + 0x3f41438c 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f41439f 0x1 + .rodata.__func__$15 + 0x3f4143a0 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f4143ab 0x1 + .rodata.__func__$16 + 0x3f4143ac 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f4143be 0x2 + .rodata.__func__$17 + 0x3f4143c0 0xd esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f4143cd 0x3 + .rodata.__func__$18 + 0x3f4143d0 0x15 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f4143e5 0x3 + .rodata.__func__$19 + 0x3f4143e8 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f4143fb 0x1 + .rodata.__func__$20 + 0x3f4143fc 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f41440e 0x2 + .rodata.__func__$21 + 0x3f414410 0x11 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x3f414421 0x3 + .rodata.__func__$22 + 0x3f414424 0xa esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.sys_timeout_abs.str1.4 + 0x3f41442e 0x6e esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.sys_timeout.str1.4 + 0x3f41442e 0x36 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.sys_timeouts_sleeptime.str1.4 + 0x3f41442e 0x12 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x3f41442e 0x2 + .rodata.__func__$0 + 0x3f414430 0x17 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x3f414447 0x1 + .rodata.__func__$1 + 0x3f414448 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.__func__$2 + 0x3f414454 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_cyclic_timers + 0x3f414464 0x20 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x3f414464 lwip_cyclic_timers + .rodata.udp_input_local_match.str1.4 + 0x3f414484 0x75 esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.udp_input.str1.4 + 0x3f414484 0x4f esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.udp_sendto_if_src.str1.4 + 0x3f414484 0x2e esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.__func__$0 + 0x3f414484 0x12 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x3f414496 0x2 + .rodata.__func__$1 + 0x3f414498 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x3f4144ae 0x2 + .rodata.__func__$2 + 0x3f4144b0 0xa esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.dhcp_option_short.str1.4 + 0x3f4144ba 0x6b esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option.str1.4 + 0x3f4144ba 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_byte.str1.4 + 0x3f4144ba 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_long.str1.4 + 0x3f4144ba 0x3a esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_create_msg.str1.4 + 0x3f4144ba 0x40 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_hostname.str1.4 + 0x3f4144ba 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_dec_pcb_refcount.str1.4 + 0x3f4144ba 0x24 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_inc_pcb_refcount.str1.4 + 0x3f4144ba 0x25 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_parse_reply.str1.4 + 0x3f4144ba 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_recv.str1.4 + 0x3f4144ba 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_set_struct.str1.4 + 0x3f4144ba 0x44 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_network_changed.str1.4 + 0x3f4144ba 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3f4144ba 0x2 + .rodata.__func__$0 + 0x3f4144bc 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3f4144d1 0x3 + .rodata.__func__$1 + 0x3f4144d4 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3f4144e5 0x3 + .rodata.__func__$2 + 0x3f4144e8 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3f4144f2 0x2 + .rodata.__func__$3 + 0x3f4144f4 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3f41450a 0x2 + .rodata.__func__$4 + 0x3f41450c 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3f414522 0x2 + .rodata.__func__$5 + 0x3f414524 0xd esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3f414531 0x3 + .rodata.__func__$6 + 0x3f414534 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$7 + 0x3f414544 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3f414555 0x3 + .rodata.__func__$8 + 0x3f414558 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3f41456d 0x3 + .rodata.__func__$9 + 0x3f414570 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3f414581 0x3 + .rodata.__func__$10 + 0x3f414584 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$11 + 0x3f414590 0x12 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3f4145a2 0x2 + .rodata.__func__$13 + 0x3f4145a4 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_discover_request_options + 0x3f4145b4 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.free_etharp_q.str1.4 + 0x3f4145b8 0x4d esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_find_entry.str1.4 + 0x3f4145b8 0x55 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_update_arp_entry.str1.4 + 0x3f4145b8 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_raw.str1.4 + 0x3f4145b8 0x85 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_get_entry.str1.4 + 0x3f4145b8 0x20 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_output_to_arp_index.str1.4 + 0x3f4145b8 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_query.str1.4 + 0x3f4145b8 0x52 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$0 + 0x3f4145b8 0xd esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3f4145c5 0x3 + .rodata.__func__$1 + 0x3f4145c8 0x1b esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3f4145e3 0x1 + .rodata.__func__$2 + 0x3f4145e4 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3f4145f2 0x2 + .rodata.__func__$3 + 0x3f4145f4 0xb esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3f4145ff 0x1 + .rodata.__func__$6 + 0x3f414600 0x12 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3f414612 0x2 + .rodata.__func__$7 + 0x3f414614 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$8 + 0x3f41462c 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.icmp_send_response.str1.4 + 0x3f41463a 0x5b esp-idf/lwip/liblwip.a(icmp.c.obj) + .rodata.icmp_input.str1.4 + 0x3f41463a 0x6a esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x3f41463a 0x2 + .rodata.__func__$0 + 0x3f41463c 0x13 esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x3f41464f 0x1 + .rodata.__func__$1 + 0x3f414650 0xb esp-idf/lwip/liblwip.a(icmp.c.obj) + .rodata.igmp_send.str1.4 + 0x3f41465b 0x6b esp-idf/lwip/liblwip.a(igmp.c.obj) + .rodata.igmp_lookup_group.str1.4 + 0x3f41465b 0x75 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x3f41465b 0x1 + .rodata.__func__$0 + 0x3f41465c 0xa esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x3f414666 0x2 + .rodata.__func__$1 + 0x3f414668 0x12 esp-idf/lwip/liblwip.a(igmp.c.obj) + .rodata.ip4_output_if_opt_src.str1.4 + 0x3f41467a 0x69 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x3f41467a 0x2 + .rodata.__func__$1 + 0x3f41467c 0x16 esp-idf/lwip/liblwip.a(ip4.c.obj) + .rodata.ip4addr_aton.str1.4 + 0x3f414692 0x3f esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + *fill* 0x3f414692 0x2 + .rodata.__func__$1 + 0x3f414694 0xd esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + *fill* 0x3f4146a1 0x3 + .rodata.ip_addr_broadcast + 0x3f4146a4 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x3f4146a4 ip_addr_broadcast + .rodata.ip_addr_any + 0x3f4146bc 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x3f4146bc ip_addr_any + .rodata.ip4_frag.str1.4 + 0x3f4146d4 0x53 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .rodata.__func__$0 + 0x3f4146d4 0x9 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .rodata.icmp6_send_response_with_addrs_and_netif.str1.4 + 0x3f4146dd 0x5c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.icmp6_send_response.str1.4 + 0x3f4146dd 0x24 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x3f4146dd 0x3 + .rodata.__func__$1 + 0x3f4146e0 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x3f414709 0x3 + .rodata.__func__$2 + 0x3f41470c 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.ip6_output_if_src.str1.4 + 0x3f414720 0x6a esp-idf/lwip/liblwip.a(ip6.c.obj) + .rodata.__func__$1 + 0x3f414720 0x12 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x3f414732 0x2 + .rodata.ip6_addr_any + 0x3f414734 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x3f414734 ip6_addr_any + .rodata.ip6_frag.str1.4 + 0x3f41474c 0x6c esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .rodata.__func__$0 + 0x3f41474c 0x9 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .rodata.nd6_process_autoconfig_prefix.str1.4 + 0x3f414755 0x42 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_free_q.str1.4 + 0x3f414755 0x29 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_send_na.str1.4 + 0x3f414755 0x1b esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_get_next_hop_entry.str1.4 + 0x3f414755 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_find_route.str1.4 + 0x3f414755 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3f414755 0x3 + .rodata.__func__$0 + 0x3f414758 0x17 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3f41476f 0x1 + .rodata.__func__$2 + 0x3f414770 0xf esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3f41477f 0x1 + .rodata.__func__$3 + 0x3f414780 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$4 + 0x3f414788 0xb esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3f414793 0x1 + .rodata.__func__$5 + 0x3f414794 0x1e esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3f4147b2 0x2 + .rodata.__func__$6 + 0x3f4147b4 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$7 + 0x3f4147c0 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.ethernet_output.str1.4 + 0x3f4147cc 0x63 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.__func__$0 + 0x3f4147cc 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.ethzero + 0x3f4147dc 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x3f4147dc ethzero + *fill* 0x3f4147e2 0x2 + .rodata.ethbroadcast + 0x3f4147e4 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x3f4147e4 ethbroadcast + .rodata.sys_mutex_lock.str1.4 + 0x3f4147ea 0x4a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mutex_unlock.str1.4 + 0x3f4147ea 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_sem_new.str1.4 + 0x3f4147ea 0x49 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_sem_signal.str1.4 + 0x3f4147ea 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_arch_sem_wait.str1.4 + 0x3f4147ea 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_post.str1.4 + 0x3f4147ea 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_arch_mbox_fetch.str1.4 + 0x3f4147ea 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_free.str1.4 + 0x3f4147ea 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_init.str1.4 + 0x3f4147ea 0x50 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_thread_sem_init.str1.4 + 0x3f4147ea 0x37 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_thread_tcpip.str1.4 + 0x3f4147ea 0x2d esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3f4147ea 0x2 + .rodata.__func__$0 + 0x3f4147ec 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3f4147fd 0x3 + .rodata.__func__$2 + 0x3f414800 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3f41480e 0x2 + .rodata.__func__$3 + 0x3f414810 0x17 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3f414827 0x1 + .rodata.__func__$4 + 0x3f414828 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$6 + 0x3f41483c 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3f41484a 0x2 + .rodata.__func__$7 + 0x3f41484c 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3f41485e 0x2 + .rodata.__func__$8 + 0x3f414860 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3f41486f 0x1 + .rodata.__func__$9 + 0x3f414870 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$10 + 0x3f41487c 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x3f41488d 0x3 + .rodata.__func__$11 + 0x3f414890 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.esp_vfs_lwip_sockets_register.str1.4 + 0x3f41489f 0x71 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x3f41489f 0x1 + .rodata.__func__$0 + 0x3f4148a0 0x1e esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .rodata.netconn_new_with_proto_and_callback.str1.4 + 0x3f4148be 0x89 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_write_vectors_partly.str1.4 + 0x3f4148be 0x23 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_recv_data.str1.4 + 0x3f4148be 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x3f4148be 0x2 + .rodata.__func__$1 + 0x3f4148c0 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x3f4148dd 0x3 + .rodata.__func__$3 + 0x3f4148e0 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x3f4148f2 0x2 + .rodata.__func__$4 + 0x3f4148f4 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.lwip_netconn_err_to_msg.str1.4 + 0x3f414918 0x3c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.recv_udp.str1.4 + 0x3f414918 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.pcb_new.str1.4 + 0x3f414918 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.err_tcp.str1.4 + 0x3f414918 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_writemore.str1.4 + 0x3f414918 0xcb esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_close_internal.str1.4 + 0x3f414918 0x8b esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.recv_tcp.str1.4 + 0x3f414918 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_is_err_msg.str1.4 + 0x3f414918 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_alloc.str1.4 + 0x3f414918 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_free.str1.4 + 0x3f414918 0xa8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_drain.str1.4 + 0x3f414918 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.accept_function.str1.4 + 0x3f414918 0x27 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_delconn.str1.4 + 0x3f414918 0x4f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_listen.str1.4 + 0x3f414918 0x2d esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_write.str1.4 + 0x3f414918 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_getaddr.str1.4 + 0x3f414918 0x15 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_close.str1.4 + 0x3f414918 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$0 + 0x3f414918 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f41492e 0x2 + .rodata.__func__$1 + 0x3f414930 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$2 + 0x3f414948 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f41495e 0x2 + .rodata.__func__$3 + 0x3f414960 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$4 + 0x3f414970 0x17 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f414987 0x1 + .rodata.__func__$6 + 0x3f414988 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7 + 0x3f4149a0 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f4149ae 0x2 + .rodata.__func__$8 + 0x3f4149b0 0xd esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f4149bd 0x3 + .rodata.__func__$9 + 0x3f4149c0 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f4149ce 0x2 + .rodata.__func__$10 + 0x3f4149d0 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f4149d9 0x3 + .rodata.__func__$11 + 0x3f4149dc 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f4149e5 0x3 + .rodata.__func__$12 + 0x3f4149e8 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f414a07 0x1 + .rodata.__func__$13 + 0x3f414a08 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f414a22 0x2 + .rodata.__func__$14 + 0x3f414a24 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f414a2d 0x3 + .rodata.__func__$15 + 0x3f414a30 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$16 + 0x3f414a48 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$17 + 0x3f414a50 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x3f414a59 0x3 + .rodata.__func__$18 + 0x3f414a5c 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$19 + 0x3f414a64 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_closed + 0x3f414a7c 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3f414a7c netconn_closed + .rodata.netconn_reset + 0x3f414a7d 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3f414a7d netconn_reset + .rodata.netconn_aborted + 0x3f414a7e 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3f414a7e netconn_aborted + .rodata.netconn_deleted + 0x3f414a7f 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3f414a7f netconn_deleted + .rodata.err_to_errno_table + 0x3f414a80 0x44 esp-idf/lwip/liblwip.a(err.c.obj) + .rodata.netbuf_alloc.str1.4 + 0x3f414ac4 0x4f esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.__func__$0 + 0x3f414ac4 0xd esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.esp_netif_remove_from_list_unsafe.str1.4 + 0x3f414ad1 0x47 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x3f414ad1 0x3 + .rodata.__func__$0 + 0x3f414ad4 0x22 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .rodata.str1.4 + 0x3f414af6 0x9 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x3f414af6 0x2 + .rodata.IP_EVENT + 0x3f414af8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x3f414af8 IP_EVENT + .rodata.esp_netif_config_sanity_check.str1.4 + 0x3f414afc 0x123 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcps_cb.str1.4 + 0x3f414afc 0xa0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_internal_nd6_cb.str1.4 + 0x3f414afc 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_ip_lost_timer.str1.4 + 0x3f414afc 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_init_configuration.str1.4 + 0x3f414afc 0x5f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_new_api.str1.4 + 0x3f414afc 0x1c2 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcps_start_api.str1.4 + 0x3f414afc 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_start_api.str1.4 + 0x3f414afc 0xcd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcpc_start_api.str1.4 + 0x3f414afc 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_set_hostname_api.str1.4 + 0x3f414afc 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_init.str1.4 + 0x3f414afc 0xbd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_attach.str1.4 + 0x3f414afc 0x4a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_internal_dhcpc_cb.str1.4 + 0x3f414afc 0x43 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$3 + 0x3f414afc 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$4 + 0x3f414b10 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x3f414b22 0x2 + .rodata.g_wifi_default_wpa_crypto_funcs + 0x3f414b24 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x3f414b24 g_wifi_default_wpa_crypto_funcs + .rodata.HMAC_sha1_init.str1.4 + 0x3f414b98 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .rodata.pbkdf2_sha1.str1.4 + 0x3f414b98 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .rodata.__func__$0 + 0x3f414b98 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + *fill* 0x3f414ba7 0x1 + .rodata.__func__$1 + 0x3f414ba8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .rodata.esp_wifi_config_info.str1.4 + 0x3f414bb4 0x180 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.wifi_deinit_internal.str1.4 + 0x3f414bb4 0xa1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.s_set_default_wifi_log_level.str1.4 + 0x3f414bb4 0x23 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.esp_wifi_init.str1.4 + 0x3f414bb4 0x72 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.str1.4 + 0x3f414bb4 0xb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.WIFI_EVENT + 0x3f414bb4 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x3f414bb4 WIFI_EVENT + .rodata.wifi_default_action_sta_got_ip.str1.4 + 0x3f414bb8 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.wifi_start.str1.4 + 0x3f414bb8 0xbb esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.create_and_attach.str1.4 + 0x3f414bb8 0x3f esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_ap.str1.4 + 0x3f414bb8 0xac esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_sta.str1.4 + 0x3f414bb8 0x51 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$2 + 0x3f414bb8 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_wifi_create_if_driver.str1.4 + 0x3f414bda 0x50 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .rodata.esp_wifi_register_if_rxcb.str1.4 + 0x3f414bda 0xe8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .rodata.httpd_process_ctrl_msg.str1.4 + 0x3f414bda 0x63 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .rodata.httpd_create.str1.4 + 0x3f414bda 0x186 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .rodata.httpd_server_init.str1.4 + 0x3f414bda 0x15a esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .rodata.esp_http_server_dispatch_event.str1.4 + 0x3f414bda 0x59 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .rodata.httpd_accept_conn.str1.4 + 0x3f414bda 0x200 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .rodata.httpd_server.str1.4 + 0x3f414bda 0x6f esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .rodata.httpd_queue_work.str1.4 + 0x3f414bda 0x31 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .rodata.httpd_start.str1.4 + 0x3f414bda 0xc5 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x3f414bda 0x2 + .rodata.__func__$0 + 0x3f414bdc 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x3f414bee 0x2 + .rodata.__func__$1 + 0x3f414bf0 0xd esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x3f414bfd 0x3 + .rodata.__func__$2 + 0x3f414c00 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x3f414c12 0x2 + .rodata.__func__$3 + 0x3f414c14 0x17 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x3f414c2b 0x1 + .rodata.__func__$4 + 0x3f414c2c 0xd esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x3f414c39 0x3 + .rodata.__func__$5 + 0x3f414c3c 0x11 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .rodata.cb_header_value.str1.4 + 0x3f414c4d 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.cb_url.str1.4 + 0x3f414c4d 0x49 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.verify_url.str1.4 + 0x3f414c4d 0xd5 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.pause_parsing.str1.4 + 0x3f414c4d 0x78 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.cb_headers_complete.str1.4 + 0x3f414c4d 0x8a esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.parse_block.str1.4 + 0x3f414c4d 0xdc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.httpd_req_new.str1.4 + 0x3f414c4d 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x3f414c4d 0x3 + .rodata.__func__$0 + 0x3f414c50 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.__func__$1 + 0x3f414c5c 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x3f414c63 0x1 + .rodata.__func__$2 + 0x3f414c64 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.__func__$3 + 0x3f414c74 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.__func__$4 + 0x3f414c84 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.__func__$5 + 0x3f414c98 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x3f414ca3 0x1 + .rodata.__func__$6 + 0x3f414ca4 0xe esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x3f414cb2 0x2 + .rodata.__func__$7 + 0x3f414cb4 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x3f414cbf 0x1 + .rodata.__func__$8 + 0x3f414cc0 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.httpd_sess_delete.str1.4 + 0x3f414ccb 0x46 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .rodata.enum_function.str1.4 + 0x3f414ccb 0x36 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .rodata.httpd_sess_new.str1.4 + 0x3f414ccb 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x3f414ccb 0x1 + .rodata.__func__$0 + 0x3f414ccc 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x3f414cde 0x2 + .rodata.__func__$1 + 0x3f414ce0 0xf esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x3f414cef 0x1 + .rodata.__func__$2 + 0x3f414cf0 0xe esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .rodata.httpd_sock_err.str1.4 + 0x3f414cfe 0x39 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .rodata.httpd_resp_send.str1.4 + 0x3f414cfe 0x3b esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .rodata.httpd_resp_send_err.str1.4 + 0x3f414cfe 0x362 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .rodata.httpd_default_send.str1.4 + 0x3f414cfe 0x5 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .rodata.httpd_default_recv.str1.4 + 0x3f414cfe 0x5 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x3f414cfe 0x2 + .rodata.__func__$0 + 0x3f414d00 0xf esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x3f414d0f 0x1 + .rodata.__func__$1 + 0x3f414d10 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .rodata.httpd_register_uri_handler.str1.4 + 0x3f414d24 0x9a esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.httpd_uri.str1.4 + 0x3f414d24 0xad esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.__func__$0 + 0x3f414d24 0xa esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x3f414d2e 0x2 + .rodata.__func__$3 + 0x3f414d30 0x1b esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.cs_create_ctrl_sock.str1.4 + 0x3f414d4b 0xa esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + *fill* 0x3f414d4b 0x1 + .rodata.small_prime_gaps + 0x3f414d4c 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x3f414df3 0x1 + .rodata.mbedtls_cipher_definitions + 0x3f414df4 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x3f414df4 mbedtls_cipher_definitions + .rodata.str1.4 + 0x3f414f74 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ccm_star_no_tag_info + 0x3f414f74 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ccm_star_no_tag_info + 0x3f414f7c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ccm_star_no_tag_info + 0x3f414f84 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ccm_info + 0x3f414f8c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ccm_info + 0x3f414f94 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ccm_info + 0x3f414f9c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ccm_aria_info + 0x3f414fa4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_gcm_info + 0x3f414fd0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_gcm_info + 0x3f414fd8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_gcm_info + 0x3f414fe0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.gcm_aria_info + 0x3f414fe8 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ctr_info + 0x3f415014 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ctr_info + 0x3f41501c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ctr_info + 0x3f415024 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_cfb128_info + 0x3f41502c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_cfb128_info + 0x3f415034 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_cfb128_info + 0x3f41503c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_cbc_info + 0x3f415044 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_cbc_info + 0x3f41504c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_cbc_info + 0x3f415054 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ecb_info + 0x3f41505c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ecb_info + 0x3f415064 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ecb_info + 0x3f41506c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_info + 0x3f415074 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_star_no_tag_info + 0x3f4150a0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_star_no_tag_info + 0x3f4150a8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_star_no_tag_info + 0x3f4150b0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_info + 0x3f4150b8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_info + 0x3f4150c0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_info + 0x3f4150c8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ccm_aes_info + 0x3f4150d0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_gcm_info + 0x3f4150fc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_gcm_info + 0x3f415104 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_gcm_info + 0x3f41510c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.gcm_aes_info + 0x3f415114 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_xts_info + 0x3f415140 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_xts_info + 0x3f415148 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.xts_aes_info + 0x3f415150 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ctr_info + 0x3f41517c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ctr_info + 0x3f415184 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ctr_info + 0x3f41518c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ofb_info + 0x3f415194 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ofb_info + 0x3f41519c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ofb_info + 0x3f4151a4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cfb128_info + 0x3f4151ac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cfb128_info + 0x3f4151b4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cfb128_info + 0x3f4151bc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cbc_info + 0x3f4151c4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cbc_info + 0x3f4151cc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cbc_info + 0x3f4151d4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ecb_info + 0x3f4151dc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ecb_info + 0x3f4151e4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ecb_info + 0x3f4151ec 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_info + 0x3f4151f4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.mbedtls_sha3_512_info + 0x3f415220 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha3_384_info + 0x3f415228 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha3_256_info + 0x3f415230 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha3_224_info + 0x3f415238 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha512_info + 0x3f415240 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha384_info + 0x3f415248 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha256_info + 0x3f415250 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha224_info + 0x3f415258 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha1_info + 0x3f415260 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_md5_info + 0x3f415268 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.memset_func + 0x3f415270 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .rodata.rho 0x3f415274 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.iota_r_packed + 0x3f41528c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.esp_aes_crypt_cfb128.str1.4 + 0x3f4152a4 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.esp_aes_crypt_ctr.str1.4 + 0x3f4152a4 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.mpi_mult_mpi_failover_mod_mult.str1.4 + 0x3f4152a4 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .rodata.__func__$0 + 0x3f4152a4 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x3f4152c3 0x1 + .rodata.sha1_padding + 0x3f4152c4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .rodata.sha256_padding + 0x3f415304 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.K 0x3f415344 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.sha512_padding + 0x3f415444 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x3f4154c4 0x4 + .rodata.K 0x3f4154c8 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .rodata.esp_aes_gcm_starts.str1.4 + 0x3f415748 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata.esp_aes_gcm_update.str1.4 + 0x3f415748 0xbb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata.last4 0x3f415748 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata 0x3f4157c8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_is2 + 0x3f4157f8 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_is1 + 0x3f4158f8 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_sb2 + 0x3f4159f8 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_sb1 + 0x3f415af8 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.mbedtls_rsa_deduce_primes.str1.4 + 0x3f415bf8 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .rodata.sha_get_engine_state.str1.4 + 0x3f415bf8 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_lock_engine_common.str1.4 + 0x3f415bf8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_read_digest_state.str1.4 + 0x3f415bf8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$0 + 0x3f415bf8 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x3f415c06 0x2 + .rodata.__func__$1 + 0x3f415c08 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x3f415c22 0x2 + .rodata.__func__$2 + 0x3f415c24 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x3f415c39 0x3 + .rodata.__func__$3 + 0x3f415c3c 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x3f415c57 0x1 + .rodata.ecp_x25519_bad_point_2 + 0x3f415c58 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.ecp_x25519_bad_point_1 + 0x3f415c60 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.x25519_bad_point_2 + 0x3f415c68 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.x25519_bad_point_1 + 0x3f415c88 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.str1.4 + 0x3f415ca8 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.ecp_supported_curves + 0x3f415ca8 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.Rp$0 0x3f415d44 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.Rp$1 0x3f415d4c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.Rp$2 0x3f415d54 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.curve25519_part_of_n + 0x3f415d5c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T + 0x3f415d6c 0x300 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_31_Y + 0x3f41606c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_31_X + 0x3f4160ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_30_Y + 0x3f4160ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_30_X + 0x3f41612c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_29_Y + 0x3f41616c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_29_X + 0x3f4161ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_28_Y + 0x3f4161ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_28_X + 0x3f41622c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_27_Y + 0x3f41626c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_27_X + 0x3f4162ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_26_Y + 0x3f4162ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_26_X + 0x3f41632c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_25_Y + 0x3f41636c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_25_X + 0x3f4163ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_24_Y + 0x3f4163ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_24_X + 0x3f41642c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_23_Y + 0x3f41646c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_23_X + 0x3f4164ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_22_Y + 0x3f4164ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_22_X + 0x3f41652c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_21_Y + 0x3f41656c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_21_X + 0x3f4165ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_20_Y + 0x3f4165ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_20_X + 0x3f41662c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_19_Y + 0x3f41666c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_19_X + 0x3f4166ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_18_Y + 0x3f4166ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_18_X + 0x3f41672c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_17_Y + 0x3f41676c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_17_X + 0x3f4167ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_16_Y + 0x3f4167ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_16_X + 0x3f41682c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_15_Y + 0x3f41686c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_15_X + 0x3f4168ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_14_Y + 0x3f4168ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_14_X + 0x3f41692c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_13_Y + 0x3f41696c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_13_X + 0x3f4169ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_12_Y + 0x3f4169ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_12_X + 0x3f416a2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_11_Y + 0x3f416a6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_11_X + 0x3f416aac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_10_Y + 0x3f416aec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_10_X + 0x3f416b2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_9_Y + 0x3f416b6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_9_X + 0x3f416bac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_8_Y + 0x3f416bec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_8_X + 0x3f416c2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_7_Y + 0x3f416c6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_7_X + 0x3f416cac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_6_Y + 0x3f416cec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_6_X + 0x3f416d2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_5_Y + 0x3f416d6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_5_X + 0x3f416dac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_4_Y + 0x3f416dec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_4_X + 0x3f416e2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_3_Y + 0x3f416e6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_3_X + 0x3f416eac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_2_Y + 0x3f416eec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_2_X + 0x3f416f2c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_1_Y + 0x3f416f6c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_1_X + 0x3f416fac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_0_Y + 0x3f416fec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_0_X + 0x3f41702c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_n + 0x3f41706c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gy + 0x3f4170ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gx + 0x3f4170ec 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_b + 0x3f41712c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_a + 0x3f41716c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_p + 0x3f4171ac 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T + 0x3f4171ec 0x300 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_31_Y + 0x3f4174ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_31_X + 0x3f41751c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_30_Y + 0x3f41754c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_30_X + 0x3f41757c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_29_Y + 0x3f4175ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_29_X + 0x3f4175dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_28_Y + 0x3f41760c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_28_X + 0x3f41763c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_27_Y + 0x3f41766c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_27_X + 0x3f41769c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_26_Y + 0x3f4176cc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_26_X + 0x3f4176fc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_25_Y + 0x3f41772c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_25_X + 0x3f41775c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_24_Y + 0x3f41778c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_24_X + 0x3f4177bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_23_Y + 0x3f4177ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_23_X + 0x3f41781c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_22_Y + 0x3f41784c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_22_X + 0x3f41787c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_21_Y + 0x3f4178ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_21_X + 0x3f4178dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_20_Y + 0x3f41790c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_20_X + 0x3f41793c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_19_Y + 0x3f41796c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_19_X + 0x3f41799c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_18_Y + 0x3f4179cc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_18_X + 0x3f4179fc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_17_Y + 0x3f417a2c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_17_X + 0x3f417a5c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_16_Y + 0x3f417a8c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_16_X + 0x3f417abc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_15_Y + 0x3f417aec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_15_X + 0x3f417b1c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_14_Y + 0x3f417b4c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_14_X + 0x3f417b7c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_13_Y + 0x3f417bac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_13_X + 0x3f417bdc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_12_Y + 0x3f417c0c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_12_X + 0x3f417c3c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_11_Y + 0x3f417c6c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_11_X + 0x3f417c9c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_10_Y + 0x3f417ccc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_10_X + 0x3f417cfc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_9_Y + 0x3f417d2c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_9_X + 0x3f417d5c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_8_Y + 0x3f417d8c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_8_X + 0x3f417dbc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_7_Y + 0x3f417dec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_7_X + 0x3f417e1c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_6_Y + 0x3f417e4c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_6_X + 0x3f417e7c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_5_Y + 0x3f417eac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_5_X + 0x3f417edc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_4_Y + 0x3f417f0c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_4_X + 0x3f417f3c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_3_Y + 0x3f417f6c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_3_X + 0x3f417f9c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_2_Y + 0x3f417fcc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_2_X + 0x3f417ffc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_1_Y + 0x3f41802c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_1_X + 0x3f41805c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_0_Y + 0x3f41808c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_0_X + 0x3f4180bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_n + 0x3f4180ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gy + 0x3f41811c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gx + 0x3f41814c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_b + 0x3f41817c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_a + 0x3f4181ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_p + 0x3f4181dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T + 0x3f41820c 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_15_Y + 0x3f41838c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_15_X + 0x3f4183ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_14_Y + 0x3f4183cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_14_X + 0x3f4183ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_13_Y + 0x3f41840c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_13_X + 0x3f41842c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_12_Y + 0x3f41844c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_12_X + 0x3f41846c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_11_Y + 0x3f41848c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_11_X + 0x3f4184ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_10_Y + 0x3f4184cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_10_X + 0x3f4184ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_9_Y + 0x3f41850c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_9_X + 0x3f41852c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_8_Y + 0x3f41854c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_8_X + 0x3f41856c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_7_Y + 0x3f41858c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_7_X + 0x3f4185ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_6_Y + 0x3f4185cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_6_X + 0x3f4185ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_5_Y + 0x3f41860c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_5_X + 0x3f41862c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_4_Y + 0x3f41864c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_4_X + 0x3f41866c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_3_Y + 0x3f41868c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_3_X + 0x3f4186ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_2_Y + 0x3f4186cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_2_X + 0x3f4186ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_1_Y + 0x3f41870c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_1_X + 0x3f41872c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_0_Y + 0x3f41874c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_0_X + 0x3f41876c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_n + 0x3f41878c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gy + 0x3f4187ac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gx + 0x3f4187cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_b + 0x3f4187ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_a + 0x3f41880c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_p + 0x3f41882c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T + 0x3f41884c 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_15_Y + 0x3f4189cc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_15_X + 0x3f4189ec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_14_Y + 0x3f418a0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_14_X + 0x3f418a2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_13_Y + 0x3f418a4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_13_X + 0x3f418a6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_12_Y + 0x3f418a8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_12_X + 0x3f418aac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_11_Y + 0x3f418acc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_11_X + 0x3f418aec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_10_Y + 0x3f418b0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_10_X + 0x3f418b2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_9_Y + 0x3f418b4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_9_X + 0x3f418b6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_8_Y + 0x3f418b8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_8_X + 0x3f418bac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_7_Y + 0x3f418bcc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_7_X + 0x3f418bec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_6_Y + 0x3f418c0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_6_X + 0x3f418c2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_5_Y + 0x3f418c4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_5_X + 0x3f418c6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_4_Y + 0x3f418c8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_4_X + 0x3f418cac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_3_Y + 0x3f418ccc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_3_X + 0x3f418cec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_2_Y + 0x3f418d0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_2_X + 0x3f418d2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_1_Y + 0x3f418d4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_1_X + 0x3f418d6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_0_Y + 0x3f418d8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_0_X + 0x3f418dac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_n + 0x3f418dcc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gy + 0x3f418dec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gx + 0x3f418e0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_b + 0x3f418e2c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_a + 0x3f418e30 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_p + 0x3f418e34 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T + 0x3f418e54 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_15_Y + 0x3f418fd4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_15_X + 0x3f418ff4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_14_Y + 0x3f419014 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_14_X + 0x3f419034 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_13_Y + 0x3f419054 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_13_X + 0x3f419074 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_12_Y + 0x3f419094 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_12_X + 0x3f4190b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_11_Y + 0x3f4190d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_11_X + 0x3f4190f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_10_Y + 0x3f419114 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_10_X + 0x3f419134 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_9_Y + 0x3f419154 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_9_X + 0x3f419174 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_8_Y + 0x3f419194 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_8_X + 0x3f4191b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_7_Y + 0x3f4191d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_7_X + 0x3f4191f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_6_Y + 0x3f419214 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_6_X + 0x3f419234 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_5_Y + 0x3f419254 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_5_X + 0x3f419274 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_4_Y + 0x3f419294 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_4_X + 0x3f4192b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_3_Y + 0x3f4192d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_3_X + 0x3f4192f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_2_Y + 0x3f419314 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_2_X + 0x3f419334 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_1_Y + 0x3f419354 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_1_X + 0x3f419374 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_0_Y + 0x3f419394 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_0_X + 0x3f4193b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_n + 0x3f4193d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gy + 0x3f4193f4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gx + 0x3f419410 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_b + 0x3f41942c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_a + 0x3f419430 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_p + 0x3f419434 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T + 0x3f419450 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_15_Y + 0x3f4195d0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_15_X + 0x3f4195e8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_14_Y + 0x3f419600 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_14_X + 0x3f419618 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_13_Y + 0x3f419630 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_13_X + 0x3f419648 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_12_Y + 0x3f419660 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_12_X + 0x3f419678 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_11_Y + 0x3f419690 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_11_X + 0x3f4196a8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_10_Y + 0x3f4196c0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_10_X + 0x3f4196d8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_9_Y + 0x3f4196f0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_9_X + 0x3f419708 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_8_Y + 0x3f419720 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_8_X + 0x3f419738 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_7_Y + 0x3f419750 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_7_X + 0x3f419768 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_6_Y + 0x3f419780 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_6_X + 0x3f419798 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_5_Y + 0x3f4197b0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_5_X + 0x3f4197c8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_4_Y + 0x3f4197e0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_4_X + 0x3f4197f8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_3_Y + 0x3f419810 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_3_X + 0x3f419828 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_2_Y + 0x3f419840 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_2_X + 0x3f419858 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_1_Y + 0x3f419870 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_1_X + 0x3f419888 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_0_Y + 0x3f4198a0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_0_X + 0x3f4198b8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_n + 0x3f4198d0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gy + 0x3f4198e8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gx + 0x3f419900 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_b + 0x3f419918 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_a + 0x3f41991c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_p + 0x3f419920 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T + 0x3f419938 0x300 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_31_Y + 0x3f419c38 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_31_X + 0x3f419c80 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_30_Y + 0x3f419cc8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_30_X + 0x3f419d10 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_29_Y + 0x3f419d58 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_29_X + 0x3f419da0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_28_Y + 0x3f419de8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_28_X + 0x3f419e30 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_27_Y + 0x3f419e78 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_27_X + 0x3f419ec0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_26_Y + 0x3f419f08 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_26_X + 0x3f419f50 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_25_Y + 0x3f419f98 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_25_X + 0x3f419fe0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_24_Y + 0x3f41a028 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_24_X + 0x3f41a070 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_23_Y + 0x3f41a0b8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_23_X + 0x3f41a100 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_22_Y + 0x3f41a148 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_22_X + 0x3f41a190 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_21_Y + 0x3f41a1d8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_21_X + 0x3f41a220 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_20_Y + 0x3f41a268 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_20_X + 0x3f41a2b0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_19_Y + 0x3f41a2f8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_19_X + 0x3f41a340 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_18_Y + 0x3f41a388 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_18_X + 0x3f41a3d0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_17_Y + 0x3f41a418 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_17_X + 0x3f41a460 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_16_Y + 0x3f41a4a8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_16_X + 0x3f41a4f0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_15_Y + 0x3f41a538 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_15_X + 0x3f41a580 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_14_Y + 0x3f41a5c8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_14_X + 0x3f41a610 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_13_Y + 0x3f41a658 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_13_X + 0x3f41a6a0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_12_Y + 0x3f41a6e8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_12_X + 0x3f41a730 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_11_Y + 0x3f41a778 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_11_X + 0x3f41a7c0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_10_Y + 0x3f41a808 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_10_X + 0x3f41a850 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_9_Y + 0x3f41a898 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_9_X + 0x3f41a8e0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_8_Y + 0x3f41a928 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_8_X + 0x3f41a970 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_7_Y + 0x3f41a9b8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_7_X + 0x3f41aa00 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_6_Y + 0x3f41aa48 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_6_X + 0x3f41aa90 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_5_Y + 0x3f41aad8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_5_X + 0x3f41ab20 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_4_Y + 0x3f41ab68 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_4_X + 0x3f41abb0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_3_Y + 0x3f41abf8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_3_X + 0x3f41ac40 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_2_Y + 0x3f41ac88 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_2_X + 0x3f41acd0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_1_Y + 0x3f41ad18 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_1_X + 0x3f41ad60 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_0_Y + 0x3f41ada8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_0_X + 0x3f41adf0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_n + 0x3f41ae38 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gy + 0x3f41ae7c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gx + 0x3f41aec0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_b + 0x3f41af04 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_p + 0x3f41af48 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T + 0x3f41af8c 0x300 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_31_Y + 0x3f41b28c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_31_X + 0x3f41b2bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_30_Y + 0x3f41b2ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_30_X + 0x3f41b31c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_29_Y + 0x3f41b34c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_29_X + 0x3f41b37c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_28_Y + 0x3f41b3ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_28_X + 0x3f41b3dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_27_Y + 0x3f41b40c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_27_X + 0x3f41b43c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_26_Y + 0x3f41b46c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_26_X + 0x3f41b49c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_25_Y + 0x3f41b4cc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_25_X + 0x3f41b4fc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_24_Y + 0x3f41b52c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_24_X + 0x3f41b55c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_23_Y + 0x3f41b58c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_23_X + 0x3f41b5bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_22_Y + 0x3f41b5ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_22_X + 0x3f41b61c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_21_Y + 0x3f41b64c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_21_X + 0x3f41b67c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_20_Y + 0x3f41b6ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_20_X + 0x3f41b6dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_19_Y + 0x3f41b70c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_19_X + 0x3f41b73c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_18_Y + 0x3f41b76c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_18_X + 0x3f41b79c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_17_Y + 0x3f41b7cc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_17_X + 0x3f41b7fc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_16_Y + 0x3f41b82c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_16_X + 0x3f41b85c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_15_Y + 0x3f41b88c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_15_X + 0x3f41b8bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_14_Y + 0x3f41b8ec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_14_X + 0x3f41b91c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_13_Y + 0x3f41b94c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_13_X + 0x3f41b97c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_12_Y + 0x3f41b9ac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_12_X + 0x3f41b9dc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_11_Y + 0x3f41ba0c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_11_X + 0x3f41ba3c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_10_Y + 0x3f41ba6c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_10_X + 0x3f41ba9c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_9_Y + 0x3f41bacc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_9_X + 0x3f41bafc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_8_Y + 0x3f41bb2c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_8_X + 0x3f41bb5c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_7_Y + 0x3f41bb8c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_7_X + 0x3f41bbbc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_6_Y + 0x3f41bbec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_6_X + 0x3f41bc1c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_5_Y + 0x3f41bc4c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_5_X + 0x3f41bc7c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_4_Y + 0x3f41bcac 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_4_X + 0x3f41bcdc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_3_Y + 0x3f41bd0c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_3_X + 0x3f41bd3c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_2_Y + 0x3f41bd6c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_2_X + 0x3f41bd9c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_1_Y + 0x3f41bdcc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_1_X + 0x3f41bdfc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_0_Y + 0x3f41be2c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_0_X + 0x3f41be5c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_n + 0x3f41be8c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gy + 0x3f41bebc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gx + 0x3f41beec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_b + 0x3f41bf1c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_p + 0x3f41bf4c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T + 0x3f41bf7c 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_15_Y + 0x3f41c0fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_15_X + 0x3f41c11c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_14_Y + 0x3f41c13c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_14_X + 0x3f41c15c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_13_Y + 0x3f41c17c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_13_X + 0x3f41c19c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_12_Y + 0x3f41c1bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_12_X + 0x3f41c1dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_11_Y + 0x3f41c1fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_11_X + 0x3f41c21c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_10_Y + 0x3f41c23c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_10_X + 0x3f41c25c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_9_Y + 0x3f41c27c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_9_X + 0x3f41c29c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_8_Y + 0x3f41c2bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_8_X + 0x3f41c2dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_7_Y + 0x3f41c2fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_7_X + 0x3f41c31c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_6_Y + 0x3f41c33c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_6_X + 0x3f41c35c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_5_Y + 0x3f41c37c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_5_X + 0x3f41c39c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_4_Y + 0x3f41c3bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_4_X + 0x3f41c3dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_3_Y + 0x3f41c3fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_3_X + 0x3f41c41c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_2_Y + 0x3f41c43c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_2_X + 0x3f41c45c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_1_Y + 0x3f41c47c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_1_X + 0x3f41c49c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_0_Y + 0x3f41c4bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_0_X + 0x3f41c4dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_n + 0x3f41c4fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gy + 0x3f41c51c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gx + 0x3f41c53c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_b + 0x3f41c55c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_p + 0x3f41c57c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T + 0x3f41c59c 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_15_Y + 0x3f41c71c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_15_X + 0x3f41c73c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_14_Y + 0x3f41c75c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_14_X + 0x3f41c77c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_13_Y + 0x3f41c79c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_13_X + 0x3f41c7bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_12_Y + 0x3f41c7dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_12_X + 0x3f41c7fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_11_Y + 0x3f41c81c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_11_X + 0x3f41c83c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_10_Y + 0x3f41c85c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_10_X + 0x3f41c87c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_9_Y + 0x3f41c89c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_9_X + 0x3f41c8bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_8_Y + 0x3f41c8dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_8_X + 0x3f41c8fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_7_Y + 0x3f41c91c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_7_X + 0x3f41c93c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_6_Y + 0x3f41c95c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_6_X + 0x3f41c97c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_5_Y + 0x3f41c99c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_5_X + 0x3f41c9bc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_4_Y + 0x3f41c9dc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_4_X + 0x3f41c9fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_3_Y + 0x3f41ca1c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_3_X + 0x3f41ca3c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_2_Y + 0x3f41ca5c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_2_X + 0x3f41ca7c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_1_Y + 0x3f41ca9c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_1_X + 0x3f41cabc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_0_Y + 0x3f41cadc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_0_X + 0x3f41cafc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_n + 0x3f41cb1c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gy + 0x3f41cb38 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gx + 0x3f41cb54 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_b + 0x3f41cb70 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_p + 0x3f41cb8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T + 0x3f41cbac 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_15_Y + 0x3f41cd2c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_15_X + 0x3f41cd44 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_14_Y + 0x3f41cd5c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_14_X + 0x3f41cd74 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_13_Y + 0x3f41cd8c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_13_X + 0x3f41cda4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_12_Y + 0x3f41cdbc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_12_X + 0x3f41cdd4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_11_Y + 0x3f41cdec 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_11_X + 0x3f41ce04 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_10_Y + 0x3f41ce1c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_10_X + 0x3f41ce34 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_9_Y + 0x3f41ce4c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_9_X + 0x3f41ce64 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_8_Y + 0x3f41ce7c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_8_X + 0x3f41ce94 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_7_Y + 0x3f41ceac 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_7_X + 0x3f41cec4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_6_Y + 0x3f41cedc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_6_X + 0x3f41cef4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_5_Y + 0x3f41cf0c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_5_X + 0x3f41cf24 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_4_Y + 0x3f41cf3c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_4_X + 0x3f41cf54 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_3_Y + 0x3f41cf6c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_3_X + 0x3f41cf84 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_2_Y + 0x3f41cf9c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_2_X + 0x3f41cfb4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_1_Y + 0x3f41cfcc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_1_X + 0x3f41cfe4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_0_Y + 0x3f41cffc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_0_X + 0x3f41d014 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_n + 0x3f41d02c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gy + 0x3f41d044 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gx + 0x3f41d05c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_b + 0x3f41d074 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_p + 0x3f41d08c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.mpi_one + 0x3f41d0a4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.str1.4 + 0x3f41d0a8 0xeb9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_md_alg + 0x3f41d0a8 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_ecp_grp_algid + 0x3f41d184 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata 0x3f41d1ac 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x3f41d1e1 0x3 + .rodata.oid_ecp_grp + 0x3f41d1e4 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_pk_alg + 0x3f41d2d4 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.str1.1 + 0x3f41d324 0xa2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x25a (size before relaxing) + .rodata.str1.1 + 0x3f41dd51 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + *fill* 0x3f41dd51 0x3 + .rodata.wifi_mode_set + 0x3f41dd54 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata.ieee80211_ethbroadcast + 0x3f41dd68 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x3f41dd68 ieee80211_ethbroadcast + .rodata.str1.1 + 0x3f41dd6e 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata.str1.1 + 0x3f41dd6e 0x92 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata.str1.1 + 0x3f41dd6e 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata.str1.1 + 0x3f41dd6e 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata 0x3f41dd6e 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata.str1.1 + 0x3f41dd7e 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .rodata.str1.1 + 0x3f41dd7e 0xac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + *fill* 0x3f41dd7e 0x2 + .rodata 0x3f41dd80 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata.CSWTCH$56 + 0x3f41dd9c 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata.str1.1 + 0x3f41ddfc 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.wifi_set_mode_process + 0x3f41ddfc 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.CSWTCH$142 + 0x3f41de10 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$12562 + 0x3f41de14 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.str1.1 + 0x3f41de2a 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata.str1.1 + 0x3f41de2a 0x2ac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + *fill* 0x3f41de2a 0x2 + .rodata.wifi_nvs_set + 0x3f41de2c 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_compare_cfg_diff + 0x3f41de4c 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_load + 0x3f41de6c 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.str1.1 + 0x3f41de8c 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata 0x3f41de8c 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.info$12922 + 0x3f41de9a 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.s_ac_param$12927 + 0x3f41dea3 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.param$12928 + 0x3f41debf 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.str1.1 + 0x3f41dec8 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_11g_table + 0x3f41dec8 0xd4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_11b_table + 0x3f41df9c 0xd4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_is_40mhz_valid_bw + 0x3f41e070 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata.str1.1 + 0x3f41e08c 0x3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .rodata.str1.1 + 0x3f41e08c 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata.str1.1 + 0x3f41e08c 0x59 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata.ieee80211_sta_new_state + 0x3f41e08c 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata 0x3f41e0a4 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata.state_desc$11841 + 0x3f41e0a8 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata.str1.1 + 0x3f41e0cc 0x4e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata.wifi_set_rx_policy + 0x3f41e0cc 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata.CSWTCH$163 + 0x3f41e104 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata.__FUNCTION__$10882 + 0x3f41e10a 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10903 + 0x3f41e120 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10830 + 0x3f41e138 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10836 + 0x3f41e150 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10842 + 0x3f41e16a 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10848 + 0x3f41e187 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10854 + 0x3f41e195 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10862 + 0x3f41e1aa 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10870 + 0x3f41e1bb 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10876 + 0x3f41e1cf 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10891 + 0x3f41e1e3 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10897 + 0x3f41e1f2 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10909 + 0x3f41e202 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10915 + 0x3f41e21d 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10921 + 0x3f41e23c 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10933 + 0x3f41e256 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10927 + 0x3f41e274 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.str1.1 + 0x3f41e28e 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata.str1.1 + 0x3f41e28e 0xbd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata.CSWTCH$156 + 0x3f41e28e 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + *fill* 0x3f41e299 0x3 + .rodata.CSWTCH$128 + 0x3f41e29c 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata.str1.1 + 0x3f41e2dc 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .rodata.str1.1 + 0x3f41e2dc 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .rodata 0x3f41e2dc 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata.str1.1 + 0x3f41e324 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata 0x3f41e324 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10617 + 0x3f41e33c 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10591 + 0x3f41e347 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10544 + 0x3f41e353 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10517 + 0x3f41e366 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10498 + 0x3f41e37c 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10487 + 0x3f41e392 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10468 + 0x3f41e3a8 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10436 + 0x3f41e3c1 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10416 + 0x3f41e3db 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10371 + 0x3f41e3f1 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10340 + 0x3f41e406 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10304 + 0x3f41e423 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10271 + 0x3f41e444 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.str1.1 + 0x3f41e459 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata.str1.1 + 0x3f41e459 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x3f41e459 0x3 + .rodata 0x3f41e45c 0x6c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata.CSWTCH$295 + 0x3f41e4c8 0x4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata.our_controls + 0x3f41e4cc 0x158 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .rodata.rcUpdateAMPDUParam + 0x3f41e624 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.rcUpdatePhyMode + 0x3f41e664 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.str1.1 + 0x3f41e680 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.rssi_margin + 0x3f41e680 0x80 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x3f41e700 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.TRC_AMPDU_PER_UP_THRESHOLD + 0x3f41e734 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.CSWTCH$94 + 0x3f41e768 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.CSWTCH$86 + 0x3f41e788 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.CSWTCH$84 + 0x3f41e7b3 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.__FUNCTION__$12082 + 0x3f41e7de 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.__FUNCTION__$11994 + 0x3f41e7f0 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.__FUNCTION__$11981 + 0x3f41e7fa 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.str1.1 + 0x3f41e80a 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10838 + 0x3f41e80a 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10792 + 0x3f41e81e 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10678 + 0x3f41e832 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10666 + 0x3f41e84a 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata 0x3f41e860 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .rodata.prvReturnItemByteBuf.str1.4 + 0x3f41e866 0x7f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvCheckItemFitsByteBuffer.str1.4 + 0x3f41e866 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvAcquireItemNoSplit.str1.4 + 0x3f41e866 0x64 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReceiveGeneric.str1.4 + 0x3f41e866 0x35 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSendAcquire.str1.4 + 0x3f41e866 0x81 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSendComplete.str1.4 + 0x3f41e866 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSend.str1.4 + 0x3f41e866 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceive.str1.4 + 0x3f41e866 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f41e866 0x2 + .rodata.__func__$11 + 0x3f41e868 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f41e87e 0x2 + .rodata.__func__$18 + 0x3f41e880 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f41e892 0x2 + .rodata.__func__$19 + 0x3f41e894 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f41e8a7 0x1 + .rodata.__func__$21 + 0x3f41e8a8 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$28 + 0x3f41e8b8 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f41e8ce 0x2 + .rodata.g_spi_lock_main_flash_dev + 0x3f41e8d0 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x3f41e8d0 g_spi_lock_main_flash_dev + .rodata.esp_partition_write.str1.4 + 0x3f41e8d4 0x46 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$0 + 0x3f41e8d4 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x3f41e8e7 0x1 + .rodata.__func__$1 + 0x3f41e8e8 0x1a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x3f41e902 0x2 + .rodata.__func__$2 + 0x3f41e904 0x18 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$3 + 0x3f41e91c 0x17 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x3f41e933 0x1 + .rodata.__func__$4 + 0x3f41e934 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$5 + 0x3f41e948 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.load_partitions.str1.4 + 0x3f41e95b 0x79 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.ensure_partitions_loaded.str1.4 + 0x3f41e95b 0x36 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_unload_all.str1.4 + 0x3f41e95b 0x4b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_next.str1.4 + 0x3f41e95b 0x3 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_get.str1.4 + 0x3f41e95b 0x11 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x3f41e95b 0x1 + .rodata.__func__$2 + 0x3f41e95c 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x3f41e96e 0x2 + .rodata.__func__$3 + 0x3f41e970 0x13 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_ota_get_running_partition.str1.4 + 0x3f41e983 0x5f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x3f41e983 0x1 + .rodata.__func__$1 + 0x3f41e984 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.clk_hal_lp_slow_get_freq_hz.str1.4 + 0x3f41e9a2 0x31 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.clk_hal_cpu_get_freq_hz.str1.4 + 0x3f41e9a2 0x33 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + *fill* 0x3f41e9a2 0x2 + .rodata.__func__$0 + 0x3f41e9a4 0x1c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.__func__$1 + 0x3f41e9c0 0x1e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.mpi_ll_read_from_mem_block.str1.4 + 0x3f41e9de 0x3f esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x3f41e9de 0x2 + .rodata.__func__$0 + 0x3f41e9e0 0x1b esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x3f41e9fb 0x1 + .rodata.MPI_LL_OPERATIONS + 0x3f41e9fc 0x4 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + 0x3f41e9fc MPI_LL_OPERATIONS + .rodata.MPI_LL_BLOCK_BASES + 0x3f41ea00 0x10 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + 0x3f41ea00 MPI_LL_BLOCK_BASES + .rodata.esp_fill_random.str1.4 + 0x3f41ea10 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.__func__$0 + 0x3f41ea10 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.get_idx.str1.4 + 0x3f41ea20 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.generate_mac.str1.4 + 0x3f41ea20 0x2d esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_efuse_mac_custom.str1.4 + 0x3f41ea20 0xb5 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_efuse_factory_mac.str1.4 + 0x3f41ea20 0xb1 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_mac_addr_from_mac_table.str1.4 + 0x3f41ea20 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.esp_iface_mac_addr_set.str1.4 + 0x3f41ea20 0xab esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.esp_read_mac.str1.4 + 0x3f41ea20 0x6d esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.__func__$0 + 0x3f41ea20 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.ets_timer_setfn.str1.4 + 0x3f41ea36 0x89 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.str1.4 + 0x3f41ea36 0xb9 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x3f41ea36 0x2 + .rodata.__func__$2 + 0x3f41ea38 0xe esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x3f41ea46 0x2 + .rodata.__func__$1 + 0x3f41ea48 0x11 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x3f41ea59 0x3 + .rodata.__func__$0 + 0x3f41ea5c 0x10 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.nvs_flash_init.str1.4 + 0x3f41ea6c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .rodata._ZTVN3nvs9NVSHandleE + 0x3f41ea6c 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x3f41ea6c vtable for nvs::NVSHandle + .rodata._ZTVN3nvs15NVSHandleSimpleE + 0x3f41eaac 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x3f41eaac vtable for nvs::NVSHandleSimple + .rodata._ZTVN3nvs9PartitionE + 0x3f41eaec 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x3f41eaec vtable for nvs::Partition + .rodata._ZTVN3nvs12NVSPartitionE + 0x3f41eb20 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x3f41eb20 vtable for nvs::NVSPartition + .rodata._ZTVN3nvs19NVSPartitionManagerE + 0x3f41eb54 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x3f41eb54 vtable for nvs::NVSPartitionManager + .rodata._ZTVN3nvs21NVSEncryptedPartitionE + 0x3f41eb64 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x3f41eb64 vtable for nvs::NVSEncryptedPartition + .rodata.lib_printf.str1.4 + 0x3f41eb98 0x1b esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.phy_printf.str1.4 + 0x3f41eb98 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.net80211_printf.str1.4 + 0x3f41eb98 0x9 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.load_cal_data_from_nvs_handle.str1.4 + 0x3f41eb98 0x13d esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.store_cal_data_to_nvs_handle.str1.4 + 0x3f41eb98 0x10a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_load_cal_data_from_nvs.str1.4 + 0x3f41eb98 0x6b esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_load_cal_and_init.str1.4 + 0x3f41eb98 0x19c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__$8 + 0x3f41eb98 0x1a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3f41ebb2 0x2 + .rodata.__func__$6 + 0x3f41ebb4 0x1d esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3f41ebd1 0x3 + .rodata.__func__$4 + 0x3f41ebd4 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3f41ebf2 0x2 + .rodata.__func__$3 + 0x3f41ebf4 0x1f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3f41ec13 0x1 + .rodata.phy_init_data + 0x3f41ec14 0x80 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.kill_oldest_dhcps_pool.str1.4 + 0x3f41ec94 0x57 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.dhcps_start.str1.4 + 0x3f41ec94 0x70 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.__func__$0 + 0x3f41ec94 0x17 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x3f41ecab 0x1 + .rodata.magic_cookie + 0x3f41ecac 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.esp_netif_action_connected.str1.4 + 0x3f41ecb0 0xba esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .rodata.esp_netif_action_got_ip.str1.4 + 0x3f41ecb0 0x4f esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .rodata.__FUNCTION__$0 + 0x3f41ecb0 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .rodata.str1.4 + 0x3f41eccb 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + *fill* 0x3f41eccb 0x1 + .rodata._g_esp_netif_inherent_sta_config + 0x3f41eccc 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x3f41eccc _g_esp_netif_inherent_sta_config + .rodata.s_wifi_netif_config_sta + 0x3f41ecf4 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.wlanif_init.str1.4 + 0x3f41ecfc 0x4a esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .rodata.__func__$0 + 0x3f41ecfc 0xc esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .rodata.wpa3_hostap_auth_init.str1.4 + 0x3f41ed08 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .rodata.wpa_group_init_gmk_and_counter.str1.4 + 0x3f41ed08 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.wpa_gtk_update.str1.4 + 0x3f41ed08 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.wpa_group_config_group_keys.str1.4 + 0x3f41ed08 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.wpa_derive_ptk.str1.4 + 0x3f41ed08 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.sae_check_big_sync.str1.4 + 0x3f41ed08 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .rodata.sae_accept_sta.str1.4 + 0x3f41ed08 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .rodata.sae_sm_step.str1.4 + 0x3f41ed08 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .rodata.handle_auth_sae.str1.4 + 0x3f41ed08 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .rodata.sswu.str1.4 + 0x3f41ed08 0x11c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata 0x3f41ed08 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_test_pwd_seed_ffc.str1.4 + 0x3f41ed28 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pt_ecc.str1.4 + 0x3f41ed28 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pt_ffc.str1.4 + 0x3f41ed28 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_keys.str1.4 + 0x3f41ed28 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pwe_from_pt_ecc.str1.4 + 0x3f41ed28 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pwe_from_pt_ffc.str1.4 + 0x3f41ed28 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.dragonfly_get_rand_1_to_p_1.str1.4 + 0x3f41ed28 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .rodata.rsn_pmkid.str1.4 + 0x3f41ed28 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata 0x3f41ed28 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata.hmac_sha256_kdf.str1.4 + 0x3f41ed34 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .rodata.dh_groups + 0x3f41ed34 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_order + 0x3f41ed54 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_prime + 0x3f41ee14 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_generator + 0x3f41eed4 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.wpa_derive_ptk.str1.4 + 0x3f41eed5 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .rodata.owe_process_assoc_resp.str1.4 + 0x3f41eed5 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .rodata.wpa_gen_wpa_ie_rsn.str1.4 + 0x3f41eed5 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x3f41eed5 0x3 + .rodata.__func__$1 + 0x3f41eed8 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .rodata.add_char.str1.4 + 0x3f41eeeb 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x3f41eeeb 0x1 + .rodata.d_perm_table + 0x3f41eeec 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .rodata.d_mult_table + 0x3f41ef0c 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .rodata.zero 0x3f41f30c 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .rodata.http_parse_host.str1.4 + 0x3f41f31c 0x4b esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_parser_execute.str1.4 + 0x3f41f31c 0x1ee esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_parser_parse_url.str1.4 + 0x3f41f31c 0x14 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.http_parser_pause.str1.4 + 0x3f41f31c 0x31 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.__func__$0 + 0x3f41f31c 0x12 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + *fill* 0x3f41f32e 0x2 + .rodata.__func__$1 + 0x3f41f330 0x10 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.__func__$2 + 0x3f41f340 0x16 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + *fill* 0x3f41f356 0x2 + .rodata.__func__$5 + 0x3f41f358 0x14 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.str1.4 + 0x3f41f36c 0x7a3 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.normal_url_char + 0x3f41f36c 0x20 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.unhex 0x3f41f38c 0x100 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.tokens + 0x3f41f48c 0x100 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.method_strings + 0x3f41f58c 0x84 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .rodata.rsa_debug.str1.4 + 0x3f41f610 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.eckey_debug.str1.4 + 0x3f41f610 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.str1.4 + 0x3f41f610 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.mbedtls_ecdsa_info + 0x3f41f610 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3f41f610 mbedtls_ecdsa_info + .rodata.mbedtls_eckeydh_info + 0x3f41f640 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3f41f640 mbedtls_eckeydh_info + .rodata.mbedtls_eckey_info + 0x3f41f670 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3f41f670 mbedtls_eckey_info + .rodata.mbedtls_rsa_info + 0x3f41f6a0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3f41f6a0 mbedtls_rsa_info + .rodata.pk_group_from_specified.str1.4 + 0x3f41f6d0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_public_key.str1.4 + 0x3f41f6d0 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pem_read_buffer.str1.4 + 0x3f41f6d0 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .rodata.str1.1 + 0x3f41f6d0 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .rodata.s_sleep_hook_register.str1.4 + 0x3f41f6d0 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata 0x3f41f6d0 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + 0x3f41f6d0 Xthal_intlevel + .rodata._ZSt7nothrow + 0x3f41f6f0 0x1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + 0x3f41f6f0 std::nothrow + .rodata._ZTSSt9exception + 0x3f41f6f1 0xd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x3f41f6f1 typeinfo name for std::exception + *fill* 0x3f41f6fe 0x2 + .rodata._ZTISt9exception + 0x3f41f700 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x3f41f700 typeinfo for std::exception + .rodata._ZTSSt9bad_alloc + 0x3f41f708 0xd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x3f41f708 typeinfo name for std::bad_alloc + *fill* 0x3f41f715 0x3 + .rodata._ZTISt9bad_alloc + 0x3f41f718 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x3f41f718 typeinfo for std::bad_alloc + .rodata._ZTVN10__cxxabiv120__si_class_type_infoE + 0x3f41f724 0x2c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x3f41f724 vtable for __cxxabiv1::__si_class_type_info + .rodata._ZTVSt9type_info + 0x3f41f750 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x3f41f750 vtable for std::type_info + .rodata._ZNKSt9bad_alloc4whatEv.str1.1 + 0x3f41f770 0xf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .rodata._ZTVSt9bad_alloc + 0x3f41f770 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x3f41f770 vtable for std::bad_alloc + .rodata._ZTVN10__cxxabiv117__class_type_infoE + 0x3f41f784 0x2c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x3f41f784 vtable for __cxxabiv1::__class_type_info + .rodata._ZNKSt9exception4whatEv.str1.1 + 0x3f41f7b0 0xf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZNKSt13bad_exception4whatEv.str1.1 + 0x3f41f7b0 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVSt9exception + 0x3f41f7b0 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x3f41f7b0 vtable for std::exception + .rodata._ZTVSt13bad_exception + 0x3f41f7c4 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x3f41f7c4 vtable for std::bad_exception + .rodata._ZTVN10__cxxabiv115__forced_unwindE + 0x3f41f7d8 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x3f41f7d8 vtable for __cxxabiv1::__forced_unwind + .rodata._ZTVN10__cxxabiv119__foreign_exceptionE + 0x3f41f7ec 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x3f41f7ec vtable for __cxxabiv1::__foreign_exception + .rodata 0x3f41f800 0x188 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .rodata 0x3f41f988 0x50 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .rodata.str1.1 + 0x3f41f9d8 0x2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .rodata 0x3f41f9d8 0x240 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .rodata.str1.1 + 0x3f41fc18 0x34 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .rodata 0x3f41fc18 0x240 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .rodata.str1.1 + 0x3f41fe58 0x34 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .rodata 0x3f41fe58 0x240 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .rodata.str1.1 + 0x3f420098 0x22 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .rodata.str1.1 + 0x3f420098 0xb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .rodata 0x3f420098 0x16c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + 0x3f420098 __default_global_locale + .rodata.str1.1 + 0x3f420204 0xa3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .rodata.str1.1 + 0x3f420204 0x95 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + *fill* 0x3f420204 0x4 + .rodata 0x3f420208 0x128 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + 0x3f420218 __mprec_tinytens + 0x3f420240 __mprec_bigtens + 0x3f420268 __mprec_tens + .rodata 0x3f420330 0x418 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + 0x3f420570 __action_table + 0x3f4205dc __state_table + 0x3f420648 __chclass + .rodata.str1.1 + 0x3f420748 0x22 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + *(.rodata_wlog_error .rodata_wlog_error.*) + .rodata_wlog_error.41 + 0x3f420748 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.38 + 0x3f42076b 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.37 + 0x3f42078a 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.21 + 0x3f4207ae 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.18 + 0x3f4207cf 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.16 + 0x3f4207f0 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.11 + 0x3f42080a 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.8 + 0x3f42082e 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.9 + 0x3f420849 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_error.12 + 0x3f420865 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.11 + 0x3f420893 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.10 + 0x3f4208ba 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.9 + 0x3f4208ce 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.8 + 0x3f4208db 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.7 + 0x3f420909 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.6 + 0x3f420930 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.5 + 0x3f420944 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.4 + 0x3f420951 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.3 + 0x3f420978 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.2 + 0x3f42097f 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.42 + 0x3f420986 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.32 + 0x3f42098d 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.28 + 0x3f4209a5 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.26 + 0x3f4209ac 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.25 + 0x3f4209c9 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.21 + 0x3f4209e6 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.19 + 0x3f4209ed 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.17 + 0x3f4209f4 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.13 + 0x3f4209fb 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.11 + 0x3f420a02 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.10 + 0x3f420a09 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.9 + 0x3f420a10 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.67 + 0x3f420a17 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.65 + 0x3f420a1e 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.63 + 0x3f420a25 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.62 + 0x3f420a2c 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.61 + 0x3f420a33 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.60 + 0x3f420a3a 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.59 + 0x3f420a41 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.58 + 0x3f420a48 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.57 + 0x3f420a4f 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.55 + 0x3f420a56 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.54 + 0x3f420a5d 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.51 + 0x3f420a64 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.46 + 0x3f420a6b 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.44 + 0x3f420a72 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.43 + 0x3f420a79 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.42 + 0x3f420a80 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.41 + 0x3f420a87 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.38 + 0x3f420a8e 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.36 + 0x3f420a95 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.35 + 0x3f420a9c 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.34 + 0x3f420ab2 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.32 + 0x3f420ab9 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.30 + 0x3f420ac0 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.28 + 0x3f420ac7 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.26 + 0x3f420ace 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.25 + 0x3f420ae5 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.24 + 0x3f420af9 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.22 + 0x3f420b00 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.17 + 0x3f420b07 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.16 + 0x3f420b4f 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.15 + 0x3f420b7a 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.14 + 0x3f420ba2 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.13 + 0x3f420bc6 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.12 + 0x3f420be8 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.11 + 0x3f420c0b 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.10 + 0x3f420c6f 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.9 + 0x3f420c92 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.8 + 0x3f420cb6 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.6 + 0x3f420cd3 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.5 + 0x3f420cda 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.3 + 0x3f420ce1 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.8 + 0x3f420ce8 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.7 + 0x3f420cef 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.3 + 0x3f420d0f 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.121 + 0x3f420d16 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.108 + 0x3f420d31 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.107 + 0x3f420d48 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.106 + 0x3f420d72 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.101 + 0x3f420d90 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.100 + 0x3f420da8 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.92 + 0x3f420daf 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.62 + 0x3f420dbf 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.55 + 0x3f420de0 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.54 + 0x3f420e0d 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.53 + 0x3f420e20 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.52 + 0x3f420e36 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.51 + 0x3f420e65 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.50 + 0x3f420e7a 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.49 + 0x3f420ea3 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.48 + 0x3f420ecb 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.47 + 0x3f420ef4 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.46 + 0x3f420f1c 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.45 + 0x3f420f64 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.44 + 0x3f420faa 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.42 + 0x3f420fce 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.41 + 0x3f420fd5 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.39 + 0x3f420fdc 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.38 + 0x3f420fe3 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.37 + 0x3f420fea 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.35 + 0x3f420ff1 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.28 + 0x3f420ff8 0x4b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.25 + 0x3f421043 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.24 + 0x3f42106e 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.17 + 0x3f4210ac 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.8 + 0x3f4210cc 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.7 + 0x3f4210dc 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.6 + 0x3f4210eb 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.20 + 0x3f4210f9 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.13 + 0x3f421120 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.9 + 0x3f421155 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.16 + 0x3f42115c 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.5 + 0x3f421175 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.3 + 0x3f421196 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.2 + 0x3f4211b0 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.56 + 0x3f4211ce 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.54 + 0x3f4211d5 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.41 + 0x3f4211dc 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.39 + 0x3f4211e3 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.38 + 0x3f4211ea 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.37 + 0x3f4211f1 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.35 + 0x3f4211f8 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.31 + 0x3f4211ff 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.29 + 0x3f421206 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.28 + 0x3f42120d 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.26 + 0x3f421214 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.25 + 0x3f42121b 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.23 + 0x3f421222 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.22 + 0x3f421229 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.20 + 0x3f421269 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.16 + 0x3f421270 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.15 + 0x3f421277 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.14 + 0x3f42127e 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.13 + 0x3f421285 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.4 + 0x3f42128c 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.3 + 0x3f421293 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.2 + 0x3f4212ae 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.84 + 0x3f4212b5 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.62 + 0x3f4212bc 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.61 + 0x3f4212d2 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.58 + 0x3f4212e8 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.54 + 0x3f42132e 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.52 + 0x3f421344 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.50 + 0x3f421376 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.42 + 0x3f421396 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.10 + 0x3f42139d 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.87 + 0x3f4213a4 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.85 + 0x3f4213cb 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.84 + 0x3f4213de 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.82 + 0x3f421440 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.81 + 0x3f42149a 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.63 + 0x3f4214a1 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.52 + 0x3f4214af 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.46 + 0x3f4214d0 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.11 + 0x3f4214d7 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.10 + 0x3f4214de 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.4 + 0x3f4214e5 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.28 + 0x3f421513 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.27 + 0x3f421530 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.26 + 0x3f42154c 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.25 + 0x3f42156f 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.13 + 0x3f421595 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_error.8 + 0x3f42159c 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_error.7 + 0x3f4215b1 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_error.97 + 0x3f4215c1 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.94 + 0x3f4215c8 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.93 + 0x3f4215cf 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.91 + 0x3f4215d6 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.64 + 0x3f4215dd 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.57 + 0x3f4215f4 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.56 + 0x3f4215fb 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.46 + 0x3f421615 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.12 + 0x3f42164f 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.2 + 0x3f42166c 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .rodata_wlog_error.5 + 0x3f421673 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.4 + 0x3f421690 0x71 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.3 + 0x3f421701 0x4e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.2 + 0x3f42174f 0x57 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.8 + 0x3f4217a6 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_error.6 + 0x3f4217c1 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_error.4 + 0x3f4217e0 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_error.10 + 0x3f421807 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_error.60 + 0x3f421821 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.58 + 0x3f42182b 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.57 + 0x3f421835 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.56 + 0x3f42183f 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.52 + 0x3f421849 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.51 + 0x3f421853 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.49 + 0x3f42185d 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.48 + 0x3f421867 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.47 + 0x3f421871 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.46 + 0x3f42187b 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.45 + 0x3f421885 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.44 + 0x3f42188f 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.43 + 0x3f421899 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.41 + 0x3f4218a3 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.40 + 0x3f4218ad 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.39 + 0x3f4218b7 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.37 + 0x3f4218c1 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.31 + 0x3f4218cb 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.30 + 0x3f4218d5 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.29 + 0x3f4218df 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.27 + 0x3f4218e9 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.26 + 0x3f4218f3 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.25 + 0x3f4218fd 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.24 + 0x3f421907 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.23 + 0x3f421911 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.21 + 0x3f42191b 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.16 + 0x3f421925 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.33 + 0x3f42192f 0x6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_error.75 + 0x3f421935 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.69 + 0x3f42193c 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.57 + 0x3f421943 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.56 + 0x3f42196b 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.55 + 0x3f421992 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.54 + 0x3f4219bb 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.48 + 0x3f4219e4 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.45 + 0x3f4219eb 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.42 + 0x3f4219f2 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.39 + 0x3f4219f9 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.30 + 0x3f421a00 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.18 + 0x3f421a1f 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.15 + 0x3f421a26 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.11 + 0x3f421a2d 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.9 + 0x3f421a3d 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.28 + 0x3f421a44 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.26 + 0x3f421a64 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.22 + 0x3f421a7a 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.18 + 0x3f421a95 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.17 + 0x3f421a9f 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.16 + 0x3f421ac4 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.15 + 0x3f421ace 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.14 + 0x3f421adb 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.12 + 0x3f421ae5 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.5 + 0x3f421aef 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.4 + 0x3f421b1b 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.3 + 0x3f421b47 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.51 + 0x3f421b73 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.50 + 0x3f421b7d 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.49 + 0x3f421b9f 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.40 + 0x3f421ba9 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.36 + 0x3f421bd5 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.33 + 0x3f421c04 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.32 + 0x3f421c0e 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.30 + 0x3f421c18 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.20 + 0x3f421c22 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *(.rodata_wlog_info .rodata_wlog_info.*) + .rodata_wlog_info.11 + 0x3f421c3c 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.10 + 0x3f421c6e 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.8 + 0x3f421c96 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.7 + 0x3f421cc1 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.6 + 0x3f421d15 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.5 + 0x3f421d43 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.4 + 0x3f421d6e 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.50 + 0x3f421d7a 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.48 + 0x3f421dbe 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.27 + 0x3f421e0b 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.24 + 0x3f421e3e 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.23 + 0x3f421e7c 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.20 + 0x3f421e94 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.50 + 0x3f421eac 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.49 + 0x3f421ed8 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.47 + 0x3f421f13 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.28 + 0x3f421f35 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_info.60 + 0x3f421f6a 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.59 + 0x3f421f84 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.58 + 0x3f421f99 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.57 + 0x3f421fbc 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.40 + 0x3f421fd6 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.2 + 0x3f421fe0 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .rodata_wlog_info.73 + 0x3f422003 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.72 + 0x3f422020 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.57 + 0x3f422035 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.56 + 0x3f42206d 0x3f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.55 + 0x3f4220ac 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.13 + 0x3f4220df 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.95 + 0x3f4220ec 0x43 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.93 + 0x3f42212f 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.89 + 0x3f42216f 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.83 + 0x3f42217a 0x39 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.70 + 0x3f4221b3 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.68 + 0x3f4221e4 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.67 + 0x3f422220 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.66 + 0x3f42225c 0x51 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.65 + 0x3f4222ad 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.33 + 0x3f4222cc 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.2 + 0x3f4222ec 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.22 + 0x3f422301 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.21 + 0x3f422323 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.20 + 0x3f422345 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.19 + 0x3f422368 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.18 + 0x3f42238b 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.17 + 0x3f4223ae 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.16 + 0x3f4223d0 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.15 + 0x3f4223f3 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.14 + 0x3f422416 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.13 + 0x3f422438 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.12 + 0x3f42245b 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.11 + 0x3f42247e 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.10 + 0x3f42249b 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.9 + 0x3f4224be 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.8 + 0x3f4224db 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.7 + 0x3f4224fe 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.6 + 0x3f422521 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.5 + 0x3f422544 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.4 + 0x3f422567 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.111 + 0x3f42258a 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.110 + 0x3f4225aa 0x53 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.107 + 0x3f4225fd 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.105 + 0x3f42261b 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.100 + 0x3f422639 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.99 + 0x3f422675 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.96 + 0x3f422685 0x59 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.95 + 0x3f4226de 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.83 + 0x3f42272e 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.82 + 0x3f422761 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.55 + 0x3f422781 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.53 + 0x3f4227b0 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.48 + 0x3f4227e5 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.41 + 0x3f4227fa 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.40 + 0x3f422809 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.13 + 0x3f422829 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.2 + 0x3f422859 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .rodata_wlog_info.17 + 0x3f42287a 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.16 + 0x3f422897 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.15 + 0x3f4228b6 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.14 + 0x3f4228d4 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.13 + 0x3f4228f9 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.12 + 0x3f42291d 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.11 + 0x3f422940 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.12 + 0x3f42296a 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_info.61 + 0x3f422976 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.42 + 0x3f422987 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.36 + 0x3f422994 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.57 + 0x3f4229a7 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.53 + 0x3f4229e1 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.52 + 0x3f422a37 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.51 + 0x3f422a65 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.47 + 0x3f422a79 0x3f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.17 + 0x3f422ab8 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.16 + 0x3f422ae7 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.15 + 0x3f422b15 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.14 + 0x3f422b5d 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.13 + 0x3f422b97 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.12 + 0x3f422bbb 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.11 + 0x3f422be9 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.10 + 0x3f422c31 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.9 + 0x3f422c6b 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.7 + 0x3f422c94 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.58 + 0x3f422cd6 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_info.26 + 0x3f422d07 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_info.22 + 0x3f422d19 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_info.41 + 0x3f422d2a 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.39 + 0x3f422d45 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.38 + 0x3f422d64 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.37 + 0x3f422d82 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.22 + 0x3f422da1 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.21 + 0x3f422db4 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.4 + 0x3f422dc6 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .rodata_wlog_info.3 + 0x3f422ddd 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .rodata_wlog_info.2 + 0x3f422e08 0x53 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + .rodata_wlog_warning.20 + 0x3f422e5b 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.19 + 0x3f422e6b 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.13 + 0x3f422e8c 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.12 + 0x3f422eaa 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.10 + 0x3f422ec6 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.9 + 0x3f422ee2 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.7 + 0x3f422efc 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.12 + 0x3f422f1c 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_warning.49 + 0x3f422f76 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.47 + 0x3f422f9b 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.45 + 0x3f422fc0 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.44 + 0x3f422ffd 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.43 + 0x3f423018 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.38 + 0x3f423054 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.37 + 0x3f423075 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.36 + 0x3f423096 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.15 + 0x3f4230b4 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.14 + 0x3f42310f 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.12 + 0x3f423132 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.8 + 0x3f423139 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.7 + 0x3f423159 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.6 + 0x3f42317d 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.4 + 0x3f423186 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.3 + 0x3f42318f 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.68 + 0x3f4231b9 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.66 + 0x3f4231e1 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.64 + 0x3f4231ea 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.56 + 0x3f4231f3 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.48 + 0x3f423205 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.40 + 0x3f42322e 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.39 + 0x3f423264 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.23 + 0x3f42327c 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.20 + 0x3f42328b 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.19 + 0x3f4232b7 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.18 + 0x3f4232d0 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.7 + 0x3f4232dd 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.4 + 0x3f4232ec 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.44 + 0x3f423305 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.30 + 0x3f42332e 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.29 + 0x3f423380 0x45 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.27 + 0x3f4233c5 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.2 + 0x3f4233e6 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.124 + 0x3f423409 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.123 + 0x3f42342c 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.122 + 0x3f423451 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.103 + 0x3f42348d 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.94 + 0x3f4234a7 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.93 + 0x3f4234b2 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.61 + 0x3f4234bd 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.56 + 0x3f4234d7 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.31 + 0x3f423507 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.30 + 0x3f423557 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.29 + 0x3f4235ab 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.27 + 0x3f4235f1 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.26 + 0x3f423608 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.23 + 0x3f42361e 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.12 + 0x3f42367e 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.11 + 0x3f4236de 0x39 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.15 + 0x3f423717 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.14 + 0x3f423736 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.13 + 0x3f423764 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.12 + 0x3f42377a 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.11 + 0x3f42379e 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.10 + 0x3f4237c5 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.9 + 0x3f4237e0 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.8 + 0x3f4237fb 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.4 + 0x3f423816 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.58 + 0x3f423830 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.57 + 0x3f42383a 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.55 + 0x3f42384f 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.43 + 0x3f423860 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.42 + 0x3f42386b 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.40 + 0x3f42387c 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.34 + 0x3f423892 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.33 + 0x3f4238a0 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.32 + 0x3f4238b6 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.30 + 0x3f4238c0 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.27 + 0x3f4238d4 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.24 + 0x3f4238e8 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.17 + 0x3f4238fc 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.9 + 0x3f423906 0x47 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.8 + 0x3f42394d 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.2 + 0x3f42395a 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata_wlog_warning.49 + 0x3f42396f 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.7 + 0x3f423989 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.6 + 0x3f42399b 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.3 + 0x3f4239b8 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.94 + 0x3f4239e6 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.92 + 0x3f423a0b 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.86 + 0x3f423a30 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.64 + 0x3f423a4d 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.24 + 0x3f423a69 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_warning.23 + 0x3f423a7a 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_warning.109 + 0x3f423a83 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.72 + 0x3f423aa9 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.2 + 0x3f423aca 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .rodata_wlog_warning.3 + 0x3f423b07 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .rodata_wlog_warning.10 + 0x3f423b25 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_warning.62 + 0x3f423b4d 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_warning.50 + 0x3f423b6e 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_warning.35 + 0x3f423b81 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_warning.31 + 0x3f423c0f 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_warning.67 + 0x3f423c53 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.53 + 0x3f423c6e 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.52 + 0x3f423c8f 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.31 + 0x3f423caf 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.28 + 0x3f423cbc 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.16 + 0x3f423cd6 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.14 + 0x3f423ce0 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.6 + 0x3f423cff 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .rodata_wlog_warning.5 + 0x3f423d10 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .rodata_wlog_warning.24 + 0x3f423d19 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.23 + 0x3f423d20 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.7 + 0x3f423d2e 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.6 + 0x3f423d5c 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.35 + 0x3f423d8e 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.24 + 0x3f423da1 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.17 + 0x3f423db6 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.4 + 0x3f423dc7 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .rodata_wlog_warning.3 + 0x3f423dd0 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .rodata_wlog_warning.2 + 0x3f423dd9 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .rodata_wlog_warning.4 + 0x3f423de2 0x9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .rodata_wlog_warning.3 + 0x3f423deb 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .rodata_wlog_warning.3 + 0x3f423e1a 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .rodata_wlog_warning.2 + 0x3f423e39 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x3f423e45 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *fill* 0x3f423e45 0x3 + .gcc_except_table._ZnajRKSt9nothrow_t + 0x3f423e48 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .gcc_except_table.__cxa_get_globals_fast + 0x3f423e58 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table.__cxa_get_globals + 0x3f423e5c 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x3f423e60 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table._ZN10__cxxabiv111__terminateEPFvvE + 0x3f423e64 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + 0x3f423e74 . = ((. + 0x3) & 0xfffffffffffffffc) + 0x3f423e74 __init_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors SORT_BY_NAME(.ctors.*)) + .ctors 0x3f423e74 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .ctors 0x3f423e78 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .ctors 0x3f423e7c 0x4 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .ctors 0x3f423e80 0x4 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .ctors 0x3f423e84 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .ctors 0x3f423e88 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .ctors 0x3f423e8c 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .ctors 0x3f423e90 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x3f423e94 __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + .dtors 0x3f423e94 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .dtors) + .dtors 0x3f423e98 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + .dtors 0x3f423e9c 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + 0x3f423e9c __DTOR_END__ + 0x3f423ea0 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x3f423ea0 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x3f423ea0 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x3f423ea0 0x48 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f423ee8 soc_reserved_memory_region_end = ABSOLUTE (.) + 0x3f423ee8 _esp_system_init_fn_array_start = ABSOLUTE (.) + *(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)) + .esp_system_init_fn.100 + 0x3f423ee8 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .esp_system_init_fn.200 + 0x3f423ef0 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3f423ef8 _esp_system_init_fn_array_end = ABSOLUTE (.) + 0x3f423ef8 _rodata_end = ABSOLUTE (.) + 0x3f423ef8 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x3f423ef8 _lit4_end = ABSOLUTE (.) + 0x3f423ef8 . = ALIGN (0x4) + 0x3f423ef8 _thread_local_start = ABSOLUTE (.) + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + 0x3f423ef8 _thread_local_end = ABSOLUTE (.) + 0x3f423ef8 . = ALIGN (0x4) + 0x00000010 _flash_rodata_align = ALIGNOF (.flash.rodata) + +.flash.rodata_noload + 0x3f423ef8 0x29ae + 0x3f423ef8 _rodata_reserved_end = ABSOLUTE (.) + 0x3f423ef8 . = ALIGN (0x4) + *(.rodata_wlog_debug .rodata_wlog_debug.*) + .rodata_wlog_debug.40 + 0x3f423ef8 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.39 + 0x3f423f42 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.35 + 0x3f423f94 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.34 + 0x3f423fd0 0x4e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.33 + 0x3f42401e 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.31 + 0x3f424079 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.30 + 0x3f424097 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.29 + 0x3f4240bd 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.22 + 0x3f4240dd 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.16 + 0x3f42410b 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.43 + 0x3f42413c 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.42 + 0x3f424192 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.41 + 0x3f4241ea 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.40 + 0x3f424210 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.39 + 0x3f42423b 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.38 + 0x3f424247 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.37 + 0x3f424266 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.36 + 0x3f424289 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.35 + 0x3f4242b8 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.34 + 0x3f4242fe 0x3f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.33 + 0x3f42433d 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.32 + 0x3f42437d 0x47 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.31 + 0x3f4243c4 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.26 + 0x3f4243fa 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.25 + 0x3f42440c 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.24 + 0x3f42441e 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.23 + 0x3f424430 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.22 + 0x3f424442 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.21 + 0x3f424454 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.20 + 0x3f42446d 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.19 + 0x3f42447f 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.18 + 0x3f424490 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.17 + 0x3f4244a0 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.16 + 0x3f4244b2 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.15 + 0x3f4244cb 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.14 + 0x3f4244dd 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.13 + 0x3f4244ee 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.12 + 0x3f424500 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.11 + 0x3f424511 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.10 + 0x3f424526 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.9 + 0x3f424538 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.6 + 0x3f42456e 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.5 + 0x3f424579 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.4 + 0x3f4245b4 0x49 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.120 + 0x3f4245fd 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.119 + 0x3f42462d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.118 + 0x3f424668 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.117 + 0x3f424698 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.102 + 0x3f4246d0 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.66 + 0x3f4246fc 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.65 + 0x3f424712 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.64 + 0x3f42472d 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.63 + 0x3f424740 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.33 + 0x3f424768 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.32 + 0x3f424781 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.21 + 0x3f42479a 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.20 + 0x3f4247b3 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.19 + 0x3f4247cb 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.18 + 0x3f4247e5 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.16 + 0x3f4247fd 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.14 + 0x3f424809 0x3f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_debug.12 + 0x3f424848 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_debug.21 + 0x3f42487c 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_debug.4 + 0x3f4248a7 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .rodata_wlog_debug.3 + 0x3f4248bb 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .rodata_wlog_debug.100 + 0x3f4248de 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.99 + 0x3f4248fb 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.98 + 0x3f424916 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.96 + 0x3f424946 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.95 + 0x3f42497d 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.94 + 0x3f4249b3 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.93 + 0x3f4249dc 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.85 + 0x3f424a09 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.83 + 0x3f424a2c 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.82 + 0x3f424a4a 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.81 + 0x3f424a62 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.80 + 0x3f424a98 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.79 + 0x3f424ac4 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.78 + 0x3f424aea 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.77 + 0x3f424af8 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.76 + 0x3f424b07 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.75 + 0x3f424b16 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.74 + 0x3f424b25 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.69 + 0x3f424b4f 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.68 + 0x3f424b8a 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.67 + 0x3f424bd4 0x6d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.66 + 0x3f424c41 0x71 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.65 + 0x3f424cb2 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.64 + 0x3f424cea 0x6d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.63 + 0x3f424d57 0x6d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.60 + 0x3f424dc4 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.59 + 0x3f424dd7 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.53 + 0x3f424de3 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.51 + 0x3f424df8 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.48 + 0x3f424e0b 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.47 + 0x3f424e4d 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.41 + 0x3f424e97 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.40 + 0x3f424ea5 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.25 + 0x3f424eb3 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.21 + 0x3f424edd 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.20 + 0x3f424ef6 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.19 + 0x3f424f02 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.16 + 0x3f424f34 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.15 + 0x3f424f5c 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.14 + 0x3f424f80 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.8 + 0x3f424fab 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.5 + 0x3f424fe0 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.4 + 0x3f425034 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.91 + 0x3f42504d 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.90 + 0x3f425065 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.88 + 0x3f42507d 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.80 + 0x3f425096 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.79 + 0x3f4250ad 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.78 + 0x3f4250d7 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.77 + 0x3f4250f0 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.76 + 0x3f42511d 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.75 + 0x3f425142 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.74 + 0x3f42515b 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.73 + 0x3f425180 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.72 + 0x3f425196 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.71 + 0x3f4251b6 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.69 + 0x3f4251d3 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.62 + 0x3f425206 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.61 + 0x3f425229 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.60 + 0x3f425267 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.59 + 0x3f42528a 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.58 + 0x3f4252ad 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.57 + 0x3f4252e4 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.56 + 0x3f4252f3 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.55 + 0x3f42530a 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.54 + 0x3f42532d 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.53 + 0x3f425349 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.41 + 0x3f425360 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.40 + 0x3f425376 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.38 + 0x3f42538f 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.37 + 0x3f4253a7 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.36 + 0x3f4253c8 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.35 + 0x3f425404 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.34 + 0x3f42541c 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.32 + 0x3f42544b 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.31 + 0x3f425461 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.30 + 0x3f42547c 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.29 + 0x3f425494 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.28 + 0x3f4254ac 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.27 + 0x3f4254c8 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.26 + 0x3f4254dc 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.25 + 0x3f4254f7 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.24 + 0x3f425510 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.23 + 0x3f425530 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.22 + 0x3f425559 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.21 + 0x3f425573 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.20 + 0x3f42558e 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.19 + 0x3f4255a6 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.18 + 0x3f4255b0 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.17 + 0x3f4255c1 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.16 + 0x3f4255d9 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.15 + 0x3f425606 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.14 + 0x3f42561e 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.13 + 0x3f425636 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.12 + 0x3f42564e 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.11 + 0x3f425666 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.10 + 0x3f42567e 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.9 + 0x3f4256a2 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.8 + 0x3f4256ba 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.7 + 0x3f4256e6 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.6 + 0x3f4256fe 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.5 + 0x3f425716 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.4 + 0x3f42572e 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.3 + 0x3f425743 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.12 + 0x3f425762 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.9 + 0x3f425774 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.8 + 0x3f425797 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.7 + 0x3f4257d9 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.6 + 0x3f4257fc 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.5 + 0x3f42581f 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.114 + 0x3f42586b 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.113 + 0x3f425883 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.112 + 0x3f42589c 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.108 + 0x3f4258b5 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.106 + 0x3f4258db 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.104 + 0x3f425911 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.103 + 0x3f425937 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.102 + 0x3f42595c 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.101 + 0x3f42597a 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.98 + 0x3f42599f 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.89 + 0x3f4259b4 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.88 + 0x3f4259e0 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.87 + 0x3f425a0c 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.86 + 0x3f425a37 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.85 + 0x3f425a4f 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.84 + 0x3f425a67 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.81 + 0x3f425a7f 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.80 + 0x3f425aa6 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.78 + 0x3f425abf 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.77 + 0x3f425ace 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.76 + 0x3f425b0b 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.75 + 0x3f425b3d 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.74 + 0x3f425b4b 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.73 + 0x3f425b5b 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.71 + 0x3f425b70 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.70 + 0x3f425bad 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.69 + 0x3f425bef 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.68 + 0x3f425c24 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.67 + 0x3f425c50 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.66 + 0x3f425c7c 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.61 + 0x3f425cb2 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.60 + 0x3f425cc8 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.59 + 0x3f425cf3 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.58 + 0x3f425d09 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.54 + 0x3f425d3e 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.52 + 0x3f425d73 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.51 + 0x3f425d8c 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.50 + 0x3f425da4 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.49 + 0x3f425dda 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.47 + 0x3f425df5 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.44 + 0x3f425e33 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.43 + 0x3f425e4b 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.42 + 0x3f425e77 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.39 + 0x3f425e8d 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.38 + 0x3f425ea5 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.37 + 0x3f425ec2 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.36 + 0x3f425ed5 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.35 + 0x3f425ef6 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.34 + 0x3f425f17 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.33 + 0x3f425f2d 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.32 + 0x3f425f44 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.31 + 0x3f425f52 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.30 + 0x3f425f5c 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.29 + 0x3f425f69 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.28 + 0x3f425f7a 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.27 + 0x3f425f8a 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.26 + 0x3f425fae 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.16 + 0x3f425fc6 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.15 + 0x3f425fe4 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.14 + 0x3f426007 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.11 + 0x3f426027 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.10 + 0x3f42605d 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.9 + 0x3f426087 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.8 + 0x3f4260a6 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.7 + 0x3f4260cc 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.6 + 0x3f4260f1 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.5 + 0x3f42610f 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.4 + 0x3f426125 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.3 + 0x3f426135 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.9 + 0x3f42614d 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.8 + 0x3f426166 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.7 + 0x3f42617f 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.6 + 0x3f426198 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.5 + 0x3f4261b1 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.4 + 0x3f4261ca 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + .rodata_wlog_verbose.53 + 0x3f4261e3 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_verbose.52 + 0x3f426203 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_verbose.12 + 0x3f426212 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_verbose.97 + 0x3f42624d 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.92 + 0x3f426289 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.91 + 0x3f42629c 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.90 + 0x3f4262af 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.89 + 0x3f4262c2 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.88 + 0x3f4262d5 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.87 + 0x3f4262ed 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.86 + 0x3f426300 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.46 + 0x3f42631e 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.45 + 0x3f42632b 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.43 + 0x3f426358 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.39 + 0x3f426375 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.38 + 0x3f42639a 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.37 + 0x3f4263c2 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.36 + 0x3f4263ea 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.35 + 0x3f42641a 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.34 + 0x3f42643c 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.33 + 0x3f42645d 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.32 + 0x3f426479 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.31 + 0x3f42649e 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.30 + 0x3f4264be 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.29 + 0x3f4264ea 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.28 + 0x3f4264fa 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.27 + 0x3f426517 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.26 + 0x3f42652d 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.24 + 0x3f42653b 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.23 + 0x3f426555 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.22 + 0x3f42656f 0x45 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.18 + 0x3f4265b4 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.17 + 0x3f4265c9 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.12 + 0x3f4265da 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.11 + 0x3f4265ed 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.9 + 0x3f426607 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.2 + 0x3f426642 0x3f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.49 + 0x3f426681 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.48 + 0x3f426696 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.47 + 0x3f4266ba 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.44 + 0x3f4266f8 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.43 + 0x3f42670f 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.42 + 0x3f426723 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.11 + 0x3f426731 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.10 + 0x3f426747 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.9 + 0x3f42675e 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.6 + 0x3f426775 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.5 + 0x3f4267a2 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.4 + 0x3f4267b2 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.3 + 0x3f4267c2 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.2 + 0x3f4267d9 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.79 + 0x3f4267f9 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.65 + 0x3f426815 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.63 + 0x3f426836 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.62 + 0x3f426848 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.45 + 0x3f42687b 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + +.flash.text 0x400d0020 0x9022f + 0x400d0020 _stext = . + 0x400d0020 _instruction_reserved_start = ABSOLUTE (.) + 0x400d0020 _text_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libdriver.a:gptimer.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libdriver.a:gptimer.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libdriver.a:gptimer.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libdriver.a:gptimer.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text.*) + .literal.esp_app_get_description + 0x400d0020 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.esp_app_format_init_elf_sha256 + 0x400d0024 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.esp_app_get_elf_sha256 + 0x400d002c 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0xc (size before relaxing) + .literal.esp_pthread_cfg_key_destructor + 0x400d0030 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x4 (size before relaxing) + .literal.esp_pthread_init + 0x400d0030 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x18 (size before relaxing) + .literal.find_key + 0x400d003c 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x10 (size before relaxing) + .literal.pthread_cleanup_thread_specific_data_callback + 0x400d0044 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x1c (size before relaxing) + .literal.pthread_key_create + 0x400d0050 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x14 (size before relaxing) + .literal.pthread_key_delete + 0x400d0050 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x18 (size before relaxing) + .literal.pthread_getspecific + 0x400d0050 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x8 (size before relaxing) + .literal.pthread_setspecific + 0x400d0054 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x20 (size before relaxing) + .literal.core_intr_matrix_clear + 0x400d0058 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.start_other_core + 0x400d005c 0x38 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x74 (size before relaxing) + .literal.startup_resume_other_cores + 0x400d0094 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.esp_ipc_isr_init + 0x400d0098 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x8 (size before relaxing) + .literal.esp_ipc_isr_port_init + 0x400d009c 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0xc (size before relaxing) + .literal.select_rtc_slow_clk + 0x400d009c 0x8 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x30 (size before relaxing) + .literal.esp_clk_init + 0x400d00a4 0x24 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x80 (size before relaxing) + .literal.esp_perip_clk_init + 0x400d00c8 0x34 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x60 (size before relaxing) + .literal.esp_cache_err_int_init + 0x400d00fc 0x8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x1c (size before relaxing) + .literal.esp_cache_err_get_cpuid + 0x400d0104 0x8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x10 (size before relaxing) + .literal.esp_int_wdt_init + 0x400d010c 0x24 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x48 (size before relaxing) + .literal.esp_int_wdt_cpu_init + 0x400d0130 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x14 (size before relaxing) + .literal.panic_print_char_uart + 0x400d0134 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.disable_all_wdts + 0x400d0138 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x20 (size before relaxing) + .literal.panic_print_char + 0x400d0140 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.panic_print_str + 0x400d0140 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.print_abort_details + 0x400d0140 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_hex + 0x400d0144 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_dec + 0x400d0144 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.esp_panic_handler_reconfigure_wdts + 0x400d0148 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x30 (size before relaxing) + .literal.esp_panic_handler + 0x400d014c 0x3c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xd4 (size before relaxing) + .literal.esp_register_shutdown_handler + 0x400d0188 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_unregister_shutdown_handler + 0x400d018c 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x4 (size before relaxing) + .literal.esp_restart + 0x400d018c 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0xc (size before relaxing) + .literal.do_global_ctors + 0x400d018c 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .literal.do_core_init + 0x400d0194 0x18 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x50 (size before relaxing) + .literal.do_system_init_fn + 0x400d01ac 0x14 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x20 (size before relaxing) + .literal.do_secondary_init + 0x400d01c0 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .literal.start_cpu0_default + 0x400d01c0 0x40 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xd0 (size before relaxing) + .literal.frame_to_panic_info + 0x400d0200 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x10 (size before relaxing) + .literal.panic_handler + 0x400d0208 0x44 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x84 (size before relaxing) + .literal.print_state_for_core + 0x400d024c 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x14 (size before relaxing) + .literal.print_state + 0x400d0250 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + .literal.panic_restart + 0x400d0250 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .literal.esp_brownout_init + 0x400d0250 0x8 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x14 (size before relaxing) + .literal.print_debug_exception_details + 0x400d0258 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x40 (size before relaxing) + .literal.print_illegal_instruction_details + 0x400d0278 0x14 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x34 (size before relaxing) + .literal.panic_print_registers + 0x400d028c 0x2c esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x84 (size before relaxing) + .literal.panic_arch_fill_info + 0x400d02b8 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.panic_soc_fill_info + 0x400d02c8 0xc esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x10 (size before relaxing) + .literal.panic_print_backtrace + 0x400d02d4 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x4 (size before relaxing) + .literal.esp_vApplicationIdleHook + 0x400d02d4 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x8 (size before relaxing) + .literal.esp_register_freertos_idle_hook_for_cpu + 0x400d02d8 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_register_freertos_tick_hook_for_cpu + 0x400d02dc 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_deregister_freertos_idle_hook_for_cpu + 0x400d02e0 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x10 (size before relaxing) + .literal.uart_hal_rxfifo_rst + 0x400d02e0 0x28 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.uart_hal_write_txfifo + 0x400d0308 0x14 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.brownout_hal_config + 0x400d031c 0x10 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x1c (size before relaxing) + .literal.heap_caps_get_free_size + 0x400d032c 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_info + 0x400d0338 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x10 (size before relaxing) + .literal.heap_caps_get_largest_free_block + 0x400d033c 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x4 (size before relaxing) + .literal.register_heap + 0x400d033c 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_enable_nonos_stack_heaps + 0x400d0350 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_init + 0x400d0350 0x38 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x88 (size before relaxing) + .literal.s_get_num_reserved_regions + 0x400d0388 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .literal.s_prepare_reserved_regions + 0x400d0390 0x20 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x40 (size before relaxing) + .literal.soc_get_available_memory_region_max_count + 0x400d03b0 0x4 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x8 (size before relaxing) + .literal.soc_get_available_memory_regions + 0x400d03b4 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x20 (size before relaxing) + .literal.calc_checksum + 0x400d03bc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_slowclk_cal_get + 0x400d03c0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_rtc_get_time_us + 0x400d03c4 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x38 (size before relaxing) + .literal.esp_clk_slowclk_cal_set + 0x400d03cc 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x8 (size before relaxing) + .literal.insert_vector_desc + 0x400d03cc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.find_desc_for_int + 0x400d03d0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.get_desc_for_int + 0x400d03d0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + .literal.find_desc_for_source + 0x400d03d8 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.is_vect_desc_usable + 0x400d03e4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.get_available_int + 0x400d03f4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x28 (size before relaxing) + .literal.esp_intr_alloc_intrstatus + 0x400d03f8 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xa4 (size before relaxing) + .literal.esp_intr_alloc + 0x400d0428 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.intr_free_for_current_cpu + 0x400d0428 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x38 (size before relaxing) + .literal.esp_intr_free + 0x400d0434 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.intr_free_for_other_cpu + 0x400d0438 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.s_rtc_isr_noniram_hook + 0x400d0438 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.s_rtc_isr_noniram_hook_relieve + 0x400d043c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x4 (size before relaxing) + .literal.rtc_isr_ensure_installed + 0x400d043c 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x28 (size before relaxing) + .literal.rtc_isr_register + 0x400d0458 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x24 (size before relaxing) + .literal.rtcio_ll_force_hold_disable + 0x400d0460 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x20 (size before relaxing) + .literal.esp_deep_sleep_wakeup_io_reset + 0x400d0474 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0xc (size before relaxing) + .literal.esp_chip_info + 0x400d047c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0xc (size before relaxing) + .literal.esp_newlib_locks_init + 0x400d0480 0x28 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x38 (size before relaxing) + .literal.esp_cleanup_r + 0x400d04a8 0x8 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x10 (size before relaxing) + .literal.raise_r_stub + 0x400d04b0 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_newlib_init + 0x400d04b0 0x1c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x30 (size before relaxing) + .literal.esp_newlib_init_global_stdio + 0x400d04cc 0x14 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x2c (size before relaxing) + .literal.syscall_not_implemented_aborts + 0x400d04e0 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.fcntl + 0x400d04e0 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x8 (size before relaxing) + .literal.adjust_boot_time + 0x400d04e0 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x18 (size before relaxing) + .literal.get_adjusted_boot_time + 0x400d04e8 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.adjtime_corr_stop + 0x400d04ec 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .literal.settimeofday + 0x400d04ec 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.usleep + 0x400d04f0 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.sleep + 0x400d04f8 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .literal.esp_newlib_time_init + 0x400d04f8 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4 (size before relaxing) + .literal.esp_time_impl_get_time_since_boot + 0x400d04f8 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x8 (size before relaxing) + .literal.esp_time_impl_set_boot_time + 0x400d04fc 0xc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_time_impl_get_boot_time + 0x400d0508 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_set_time_from_rtc + 0x400d0508 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xc (size before relaxing) + .literal.esp_sync_timekeeping_timers + 0x400d0508 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x1c (size before relaxing) + .literal.esp_time_impl_init + 0x400d050c 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x4 (size before relaxing) + .literal.init_timer_task + 0x400d050c 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x30 (size before relaxing) + .literal.timer_process_alarm + 0x400d0524 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x30 (size before relaxing) + .literal.timer_task + 0x400d052c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.deinit_timer_task + 0x400d052c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_create + 0x400d052c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .literal.esp_timer_delete + 0x400d052c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18 (size before relaxing) + .literal.esp_timer_early_init + 0x400d052c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_init + 0x400d052c 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x24 (size before relaxing) + .literal.__esp_system_init_fn_esp_timer_startup_init + 0x400d0534 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4 (size before relaxing) + .literal.esp_timer_impl_init_system_time + 0x400d0534 0x14 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x28 (size before relaxing) + .literal.esp_timer_impl_early_init + 0x400d0548 0x34 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x4c (size before relaxing) + .literal.esp_timer_impl_init + 0x400d057c 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x5c (size before relaxing) + .literal.set_xpd_sar + 0x400d05a8 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.set_global_fd_sets + 0x400d05b4 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.translate_path + 0x400d05bc 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_register_common + 0x400d05d0 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + .literal.esp_vfs_register + 0x400d05e0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_register_fd_range + 0x400d05e0 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x28 (size before relaxing) + .literal.get_vfs_for_index + 0x400d05e8 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.get_vfs_for_fd + 0x400d05e8 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.call_end_selects + 0x400d05e8 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4 (size before relaxing) + .literal.get_vfs_for_path + 0x400d05e8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_open + 0x400d05ec 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + .literal.esp_vfs_write + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_lseek + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_read + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_close + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x18 (size before relaxing) + .literal.esp_vfs_fstat + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_fcntl_r + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_stat + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_link + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_unlink + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_rename + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_select + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x98 (size before relaxing) + .literal.esp_vfs_select_triggered + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_select_triggered_isr + 0x400d05f0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.console_open + 0x400d05f0 0xc esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x10 (size before relaxing) + .literal.console_write + 0x400d05fc 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fstat + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_close + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_read + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fcntl + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fsync + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_access + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_end_select + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_tcsetattr + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcgetattr + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcdrain + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcflush + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_start_select + 0x400d0600 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_dev_console_register + 0x400d0600 0x8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_console_register + 0x400d0608 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x14 (size before relaxing) + .literal.uart_read_char + 0x400d0608 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.unregister_select + 0x400d060c 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_end_select + 0x400d0618 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.register_select + 0x400d061c 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_start_select + 0x400d061c 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x40 (size before relaxing) + .literal.select_notif_callback_isr + 0x400d0620 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_tcflush + 0x400d0620 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_tcdrain + 0x400d0620 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xc (size before relaxing) + .literal.uart_tcgetattr + 0x400d0620 0x4c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x8c (size before relaxing) + .literal.uart_tx_char + 0x400d066c 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_rx_char + 0x400d0678 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_fcntl + 0x400d0680 0x10 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_fstat + 0x400d0690 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_close + 0x400d0694 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_return_char + 0x400d0698 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_tcsetattr + 0x400d06a0 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x9c (size before relaxing) + .literal.uart_access + 0x400d06a0 0x10 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_open + 0x400d06b0 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_fsync + 0x400d06b4 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_read + 0x400d06bc 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_write + 0x400d06c0 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_uart_get_vfs + 0x400d06c4 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.event_handler + 0x400d06c8 0x20 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x48 (size before relaxing) + .literal.cwcallback + 0x400d06e8 0x8 esp-idf/main/libmain.a(station_example_main.c.obj) + .literal.ccwcallback + 0x400d06f0 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x8 (size before relaxing) + .literal.buttonCallback + 0x400d06f4 0x4 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x8 (size before relaxing) + .literal.createFilterbtw + 0x400d06f8 0x8 esp-idf/main/libmain.a(station_example_main.c.obj) + 0xc (size before relaxing) + .literal.configure_i2s + 0x400d0700 0x3c esp-idf/main/libmain.a(station_example_main.c.obj) + 0x84 (size before relaxing) + .literal.udp_server_task + 0x400d073c 0x34 esp-idf/main/libmain.a(station_example_main.c.obj) + 0xb0 (size before relaxing) + .literal.wifi_init_sta + 0x400d0770 0x68 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x110 (size before relaxing) + .literal.app_main + 0x400d07d8 0x20 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x5c (size before relaxing) + .literal.index_handler + 0x400d07f8 0x4 esp-idf/main/libmain.a(http_control.c.obj) + 0x8 (size before relaxing) + .literal.volumeChangeCB + 0x400d07fc 0x20 esp-idf/main/libmain.a(http_control.c.obj) + 0x40 (size before relaxing) + .literal.getVolumeLevel + 0x400d081c 0x8 esp-idf/main/libmain.a(http_control.c.obj) + 0x18 (size before relaxing) + .literal.start_webserver + 0x400d0824 0x14 esp-idf/main/libmain.a(http_control.c.obj) + 0x28 (size before relaxing) + .literal.http_filter + 0x400d0838 0x4 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x8 (size before relaxing) + .literal.createFilter + 0x400d083c 0x44 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0xc8 (size before relaxing) + .literal.http_filter_submit + 0x400d0880 0x18 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x50 (size before relaxing) + .literal.getFilterJson + 0x400d0898 0x8 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x14 (size before relaxing) + .literal.http_getFilter + 0x400d08a0 0x0 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x18 (size before relaxing) + .literal.filter_registerHTTPHandlers + 0x400d08a0 0xc esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x18 (size before relaxing) + .literal.printStatus + 0x400d08ac 0x8 esp-idf/main/libmain.a(button.c.obj) + 0x14 (size before relaxing) + .literal.registerInterrupt + 0x400d08b4 0x10 esp-idf/main/libmain.a(button.c.obj) + 0x4c (size before relaxing) + .literal.esp_efuse_read_field_blob + 0x400d08c4 0xc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x18 (size before relaxing) + .literal.esp_efuse_check_errors + 0x400d08d0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.check_range_of_bits + 0x400d08d4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x4 (size before relaxing) + .literal.esp_efuse_utility_process + 0x400d08d4 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x4c (size before relaxing) + .literal.esp_efuse_utility_read_reg + 0x400d0904 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x2c (size before relaxing) + .literal.esp_efuse_utility_fill_buff + 0x400d0918 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x8 (size before relaxing) + .literal.esp_efuse_utility_count_once + 0x400d091c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xc (size before relaxing) + .literal.esp_efuse_get_coding_scheme + 0x400d0920 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x4 (size before relaxing) + .literal.s_get_bus_mask + 0x400d0920 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x40 (size before relaxing) + .literal.s_reserve_irom_region + 0x400d0950 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x20 (size before relaxing) + .literal.s_reserve_drom_region + 0x400d0968 0x10 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x20 (size before relaxing) + .literal.esp_mmu_map_init + 0x400d0978 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x3c (size before relaxing) + .literal.esp_mmu_map + 0x400d0990 0x48 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xcc (size before relaxing) + .literal.esp_mmu_unmap + 0x400d09d8 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x38 (size before relaxing) + .literal.esp_mmu_vaddr_to_paddr + 0x400d09e4 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x34 (size before relaxing) + .literal.gpio_input_disable + 0x400d09f0 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_od_enable + 0x400d0a0c 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_od_disable + 0x400d0a14 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_output_disable + 0x400d0a18 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x3c (size before relaxing) + .literal.gpio_ll_pullup_en + 0x400d0a30 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + 0x1c (size before relaxing) + .literal.gpio_ll_pulldown_en + 0x400d0a3c 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x1c (size before relaxing) + .literal.gpio_ll_input_enable + 0x400d0a40 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x1c (size before relaxing) + .literal.gpio_input_enable + 0x400d0a48 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_intr_enable_on_core + 0x400d0a4c 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x8 (size before relaxing) + .literal.gpio_output_enable + 0x400d0a4c 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_isr_register_on_core_static + 0x400d0a58 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x4 (size before relaxing) + .literal.gpio_pullup_en + 0x400d0a58 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x38 (size before relaxing) + .literal.gpio_pullup_dis + 0x400d0a60 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x38 (size before relaxing) + .literal.gpio_pulldown_en + 0x400d0a64 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x38 (size before relaxing) + .literal.gpio_pulldown_dis + 0x400d0a68 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x38 (size before relaxing) + .literal.gpio_set_intr_type + 0x400d0a6c 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x38 (size before relaxing) + .literal.gpio_intr_enable + 0x400d0a74 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x30 (size before relaxing) + .literal.gpio_intr_disable + 0x400d0a78 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_set_direction + 0x400d0a7c 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x40 (size before relaxing) + .literal.gpio_config + 0x400d0a84 0x28 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x9c (size before relaxing) + .literal.gpio_isr_handler_add + 0x400d0aac 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x44 (size before relaxing) + .literal.gpio_uninstall_isr_service + 0x400d0ab4 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x1c (size before relaxing) + .literal.gpio_isr_register + 0x400d0ab4 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x48 (size before relaxing) + .literal.gpio_install_isr_service + 0x400d0ac8 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x4c (size before relaxing) + .literal.rtcio_ll_iomux_func_sel + 0x400d0ad8 0xc esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x1c (size before relaxing) + .literal.rtcio_ll_function_select + 0x400d0ae4 0xc esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x28 (size before relaxing) + .literal.rtcio_ll_pullup_enable + 0x400d0af0 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x1c (size before relaxing) + .literal.rtcio_ll_pullup_disable + 0x400d0af4 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x1c (size before relaxing) + .literal.rtcio_ll_pulldown_enable + 0x400d0af8 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x1c (size before relaxing) + .literal.rtcio_ll_pulldown_disable + 0x400d0afc 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x1c (size before relaxing) + .literal.rtc_gpio_is_valid_gpio + 0x400d0b00 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x4 (size before relaxing) + .literal.rtc_io_number_get + 0x400d0b00 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x4 (size before relaxing) + .literal.rtc_gpio_deinit + 0x400d0b00 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x2c (size before relaxing) + .literal.rtc_gpio_pullup_en + 0x400d0b10 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x2c (size before relaxing) + .literal.rtc_gpio_pullup_dis + 0x400d0b14 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x2c (size before relaxing) + .literal.rtc_gpio_pulldown_en + 0x400d0b18 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x2c (size before relaxing) + .literal.rtc_gpio_pulldown_dis + 0x400d0b1c 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x2c (size before relaxing) + .literal.i2s_tx_reset + 0x400d0b20 0x4 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .literal.i2s_rx_reset + 0x400d0b24 0x0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x4 (size before relaxing) + .literal.i2s_tx_start + 0x400d0b24 0x4 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0xc (size before relaxing) + .literal.i2s_rx_start + 0x400d0b28 0x0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0xc (size before relaxing) + .literal.i2s_tx_stop + 0x400d0b28 0x8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0xc (size before relaxing) + .literal.i2s_rx_stop + 0x400d0b30 0x0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0xc (size before relaxing) + .literal.i2s_get_buf_size + 0x400d0b30 0x4 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x8 (size before relaxing) + .literal.i2s_dac_set_slot_legacy + 0x400d0b34 0xc esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x18 (size before relaxing) + .literal.i2s_adc_set_slot_legacy + 0x400d0b40 0x14 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x1c (size before relaxing) + .literal.i2s_mode_identify + 0x400d0b54 0x0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x4 (size before relaxing) + .literal.i2s_config_transfer + 0x400d0b54 0x0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x8 (size before relaxing) + .literal.i2s_check_cfg_validity + 0x400d0b54 0x24 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x60 (size before relaxing) + .literal.i2s_set_slot_legacy + 0x400d0b78 0x8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x24 (size before relaxing) + .literal.i2s_config_source_clock + 0x400d0b80 0x10 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x28 (size before relaxing) + .literal.i2s_calculate_adc_dac_clock + 0x400d0b90 0x18 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x3c (size before relaxing) + .literal.i2s_calculate_pdm_tx_clock + 0x400d0ba8 0x4 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x3c (size before relaxing) + .literal.i2s_calculate_pdm_rx_clock + 0x400d0bac 0x4 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x3c (size before relaxing) + .literal.i2s_calculate_common_clock + 0x400d0bb0 0x8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x1c (size before relaxing) + .literal.i2s_calculate_clock + 0x400d0bb8 0x14 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x4c (size before relaxing) + .literal.i2s_set_clock_legacy + 0x400d0bcc 0x0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x10 (size before relaxing) + .literal.i2s_delete_dma_buffer + 0x400d0bcc 0x8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x20 (size before relaxing) + .literal.i2s_alloc_dma_buffer + 0x400d0bd4 0x18 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x54 (size before relaxing) + .literal.i2s_realloc_dma_buffer + 0x400d0bec 0x8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x28 (size before relaxing) + .literal.i2s_destroy_dma_object + 0x400d0bf4 0x8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x30 (size before relaxing) + .literal.i2s_dma_intr_init + 0x400d0bfc 0x10 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x24 (size before relaxing) + .literal.i2s_create_dma_object + 0x400d0c0c 0x14 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x54 (size before relaxing) + .literal.i2s_dma_object_init + 0x400d0c20 0xc esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x30 (size before relaxing) + .literal.i2s_init_legacy + 0x400d0c2c 0x2c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x8c (size before relaxing) + .literal.i2s_check_set_mclk + 0x400d0c58 0x8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x1c (size before relaxing) + .literal.gpio_matrix_out_check_and_set + 0x400d0c60 0xc esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x2c (size before relaxing) + .literal.gpio_matrix_in_check_and_set + 0x400d0c6c 0x4 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x2c (size before relaxing) + .literal.i2s_start + 0x400d0c70 0x8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x38 (size before relaxing) + .literal.i2s_stop + 0x400d0c78 0x4 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x30 (size before relaxing) + .literal.i2s_set_dac_mode + 0x400d0c7c 0x1c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x34 (size before relaxing) + .literal.i2s_set_clk + 0x400d0c98 0x18 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x90 (size before relaxing) + .literal.i2s_driver_uninstall + 0x400d0cb0 0xc esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x5c (size before relaxing) + .literal.i2s_driver_install + 0x400d0cbc 0x24 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x90 (size before relaxing) + .literal.i2s_write + 0x400d0ce0 0x8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x34 (size before relaxing) + .literal.i2s_zero_dma_buffer + 0x400d0ce8 0x4 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x24 (size before relaxing) + .literal.i2s_set_pin + 0x400d0cec 0x18 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x8c (size before relaxing) + .literal.check_i2s_driver_conflict + 0x400d0d04 0xc esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x28 (size before relaxing) + .literal.uart_pattern_queue_update + 0x400d0d10 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_reenable_intr_mask + 0x400d0d14 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_set_word_length + 0x400d0d24 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_get_word_length + 0x400d0d30 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_set_stop_bits + 0x400d0d38 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_get_stop_bits + 0x400d0d44 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_set_parity + 0x400d0d4c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_get_parity + 0x400d0d54 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_set_baudrate + 0x400d0d5c 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + 0x38 (size before relaxing) + .literal.uart_get_baudrate + 0x400d0d6c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x38 (size before relaxing) + .literal.uart_wait_tx_done + 0x400d0d74 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + 0x70 (size before relaxing) + .literal.uart_get_buffered_data_len + 0x400d0d8c 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_flush_input + 0x400d0d90 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x74 (size before relaxing) + .literal.uart_is_driver_installed + 0x400d0d98 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_set_select_notif_callback + 0x400d0d98 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_get_selectlock + 0x400d0d98 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.adc_set_i2s_data_source + 0x400d0d9c 0x14 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + 0x2c (size before relaxing) + .literal.check_adc_oneshot_driver_conflict + 0x400d0db0 0x10 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + 0x28 (size before relaxing) + .literal.i2s_ll_enable_bus_clock + 0x400d0dc0 0x4 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + 0x18 (size before relaxing) + .literal.i2s_ll_reset_register + 0x400d0dc4 0x0 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + 0x1c (size before relaxing) + .literal.i2s_platform_acquire_occupation + 0x400d0dc4 0x1c esp-idf/driver/libdriver.a(i2s_platform.c.obj) + 0x48 (size before relaxing) + .literal.i2s_platform_release_occupation + 0x400d0de0 0x8 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + 0x38 (size before relaxing) + .literal.bootloader_init_mem + 0x400d0de8 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_flash_update_id + 0x400d0de8 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_flash_get_wp_pin + 0x400d0dec 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_init_lock + 0x400d0dec 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_op_lock + 0x400d0dfc 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_op_unlock + 0x400d0dfc 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_mmap + 0x400d0dfc 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_munmap + 0x400d0dfc 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_cache2phys + 0x400d0e08 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .literal.esp_mspi_get_io + 0x400d0e08 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x1c (size before relaxing) + .literal.esp_flash_read_chip_id + 0x400d0e1c 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_init_default_chip + 0x400d0e1c 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x3c (size before relaxing) + .literal.esp_flash_app_init + 0x400d0e34 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x14 (size before relaxing) + .literal.esp_flash_app_enable_os_functions + 0x400d0e38 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .literal.esp_crosscore_int_init + 0x400d0e44 0x1c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x30 (size before relaxing) + .literal.esp_ipc_call_and_wait + 0x400d0e60 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x3c (size before relaxing) + .literal.esp_ipc_init + 0x400d0e74 0x1c esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x38 (size before relaxing) + .literal.esp_ipc_call + 0x400d0e90 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x4 (size before relaxing) + .literal.esp_ipc_call_blocking + 0x400d0e90 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x4 (size before relaxing) + .literal.find_entry_and_check_all_reset + 0x400d0e90 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.find_entry_from_task_handle_and_check_all_reset + 0x400d0e94 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.task_wdt_timer_feed + 0x400d0e94 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x8 (size before relaxing) + .literal.add_entry + 0x400d0e94 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x5c (size before relaxing) + .literal.get_task_affinity + 0x400d0eac 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.task_wdt_timeout_abort + 0x400d0eac 0x1c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x58 (size before relaxing) + .literal.task_wdt_timeout_handling + 0x400d0ec8 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.esp_task_wdt_add + 0x400d0ec8 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x20 (size before relaxing) + .literal.subscribe_idle + 0x400d0ed0 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x34 (size before relaxing) + .literal.esp_task_wdt_init + 0x400d0ee8 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .literal.esp_task_wdt_reset + 0x400d0efc 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.idle_hook_cb + 0x400d0f04 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.esp_task_wdt_print_triggered_tasks + 0x400d0f04 0x1c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.task_wdt_isr + 0x400d0f20 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x64 (size before relaxing) + .literal.esp_task_wdt_impl_timer_allocate + 0x400d0f34 0x8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x48 (size before relaxing) + .literal.esp_task_wdt_impl_timer_feed + 0x400d0f3c 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .literal.esp_task_wdt_impl_timeout_triggered + 0x400d0f3c 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .literal.esp_task_wdt_impl_timer_restart + 0x400d0f3c 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_ll_calculate_clock_reg + 0x400d0f3c 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.get_flash_clock_divider + 0x400d0f3c 0x10 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_cal_clock + 0x400d0f4c 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_init + 0x400d0f4c 0x10 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x400d0f5c 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_supports_direct_read + 0x400d0f5c 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.gpio_hal_intr_enable_on_core + 0x400d0f5c 0x4 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0xc (size before relaxing) + .literal.gpio_hal_intr_disable + 0x400d0f60 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x4 (size before relaxing) + .literal.i2s_ll_tx_set_mclk + 0x400d0f60 0xc esp-idf/hal/libhal.a(i2s_hal.c.obj) + .literal.i2s_hal_calc_mclk_precise_division + 0x400d0f6c 0x0 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x4 (size before relaxing) + .literal.i2s_hal_init + 0x400d0f6c 0x0 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x8 (size before relaxing) + .literal._i2s_hal_set_tx_clock + 0x400d0f6c 0x0 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x10 (size before relaxing) + .literal._i2s_hal_set_rx_clock + 0x400d0f6c 0x4 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x14 (size before relaxing) + .literal.i2s_hal_std_set_tx_slot + 0x400d0f70 0x4 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x18 (size before relaxing) + .literal.i2s_hal_std_set_rx_slot + 0x400d0f74 0x4 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x1c (size before relaxing) + .literal.i2s_hal_pdm_set_tx_slot + 0x400d0f78 0x18 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x28 (size before relaxing) + .literal.i2s_hal_pdm_set_rx_slot + 0x400d0f90 0x4 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x14 (size before relaxing) + .literal.hal_utils_calc_clk_div_frac_accurate + 0x400d0f94 0xc esp-idf/hal/libhal.a(hal_utils.c.obj) + 0x14 (size before relaxing) + .literal.esp_cpu_configure_region_protection + 0x400d0fa0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x10 (size before relaxing) + .literal.periph_rtc_apll_acquire + 0x400d0fa8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0x14 (size before relaxing) + .literal.periph_rtc_apll_release + 0x400d0fb0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0x28 (size before relaxing) + .literal.periph_rtc_apll_freq_set + 0x400d0fc0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0x40 (size before relaxing) + .literal.esp_clk_tree_src_get_freq_hz + 0x400d0fd0 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x6c (size before relaxing) + .literal.clk_tree_rtc_slow_calibration + 0x400d0fec 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x24 (size before relaxing) + .literal.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x400d0ffc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x18 (size before relaxing) + .literal.esp_clk_tree_xtal32k_get_freq_hz + 0x400d1004 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x18 (size before relaxing) + .literal.esp_clk_tree_lp_slow_get_freq_hz + 0x400d1004 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_rc_fast_get_freq_hz + 0x400d1004 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_clk_tree_lp_fast_get_freq_hz + 0x400d1008 0xc esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x20 (size before relaxing) + .literal.adc_lock_acquire + 0x400d1014 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.adc_lock_release + 0x400d101c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x30 (size before relaxing) + .literal.adc2_wifi_acquire + 0x400d102c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x4 (size before relaxing) + .literal.adc2_wifi_release + 0x400d102c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x4 (size before relaxing) + .literal.clkout_channel_alloc + 0x400d102c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x2c (size before relaxing) + .literal.clkout_channel_free + 0x400d103c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x18 (size before relaxing) + .literal.clkout_mapping_alloc + 0x400d103c 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x58 (size before relaxing) + .literal.clkout_mapping_free + 0x400d105c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x54 (size before relaxing) + .literal.esp_clock_output_start + 0x400d105c 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x48 (size before relaxing) + .literal.esp_clock_output_stop + 0x400d1078 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x28 (size before relaxing) + .literal.esp_clock_output_pin_ctrl_init + 0x400d1080 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x8 (size before relaxing) + .literal.esp_err_to_name + 0x400d1084 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.tryget_socket_unconn_nouse + 0x400d108c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.free_socket_locked + 0x400d1090 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.sock_inc_used_locked + 0x400d109c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.tryget_socket_unconn_locked + 0x400d10a8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.lwip_sockopt_to_ipopt + 0x400d10a8 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.sock_inc_used + 0x400d10b4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.tryget_socket_unconn + 0x400d10b8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.alloc_socket + 0x400d10b8 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x24 (size before relaxing) + .literal.lwip_select_inc_sockets_used_set + 0x400d10c0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_select_inc_sockets_used + 0x400d10c0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_link_select_cb + 0x400d10c0 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_unlink_select_cb + 0x400d10c8 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.sockaddr_to_ipaddr_port + 0x400d10d4 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_sock_make_addr + 0x400d10e4 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .literal.lwip_recv_tcp_from + 0x400d10f8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.free_socket_free_elements + 0x400d10f8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.free_socket + 0x400d10f8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.done_socket + 0x400d10f8 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.tryget_socket + 0x400d10fc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.get_socket + 0x400d10fc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.lwip_selscan + 0x400d10fc 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x24 (size before relaxing) + .literal.lwip_select_dec_sockets_used + 0x400d1104 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x18 (size before relaxing) + .literal.lwip_socket_register_membership + 0x400d110c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_socket_unregister_membership + 0x400d1110 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_socket_register_mld6_membership + 0x400d1110 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_socket_unregister_mld6_membership + 0x400d1114 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_socket_drop_registered_memberships + 0x400d1114 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_socket_drop_registered_mld6_memberships + 0x400d1114 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_recv_tcp + 0x400d1114 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x50 (size before relaxing) + .literal.lwip_recvfrom_udp_raw + 0x400d112c 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.select_check_waiters + 0x400d1134 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.event_callback + 0x400d1138 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x38 (size before relaxing) + .literal.lwip_setsockopt_impl + 0x400d1144 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x138 (size before relaxing) + .literal.lwip_setsockopt_callback + 0x400d1178 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_accept + 0x400d1184 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x7c (size before relaxing) + .literal.lwip_bind + 0x400d1190 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x38 (size before relaxing) + .literal.lwip_close + 0x400d1190 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_listen + 0x400d1198 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_recvfrom + 0x400d1198 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_read + 0x400d11a0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_recv + 0x400d11a0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_sendto + 0x400d11a0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x48 (size before relaxing) + .literal.lwip_send + 0x400d11a0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_socket + 0x400d11a0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2c (size before relaxing) + .literal.lwip_write + 0x400d11a4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_select + 0x400d11a4 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x9c (size before relaxing) + .literal.lwip_shutdown + 0x400d11b4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2c (size before relaxing) + .literal.lwip_setsockopt + 0x400d11b4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_ioctl + 0x400d11b8 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_fcntl + 0x400d11bc 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.tcpip_timeouts_mbox_fetch + 0x400d11c0 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_thread_handle_msg + 0x400d11c0 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_thread + 0x400d11cc 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x28 (size before relaxing) + .literal.tcpip_inpkt + 0x400d11dc 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_input + 0x400d11e4 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x10 (size before relaxing) + .literal.tcpip_callback + 0x400d11ec 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x1c (size before relaxing) + .literal.tcpip_try_callback + 0x400d11f0 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_send_msg_wait_sem + 0x400d11f4 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x24 (size before relaxing) + .literal.tcpip_api_call + 0x400d11fc 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_init + 0x400d1200 0x14 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x34 (size before relaxing) + .literal.lwip_init + 0x400d1214 0xc esp-idf/lwip/liblwip.a(init.c.obj) + 0x24 (size before relaxing) + .literal.ip_input + 0x400d1220 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x8 (size before relaxing) + .literal.mem_malloc + 0x400d1220 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x1c (size before relaxing) + .literal.mem_free + 0x400d122c 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x1c (size before relaxing) + .literal.mem_calloc + 0x400d1238 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x4 (size before relaxing) + .literal.do_memp_malloc_pool + 0x400d1238 0xc esp-idf/lwip/liblwip.a(memp.c.obj) + 0x20 (size before relaxing) + .literal.do_memp_free_pool + 0x400d1244 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x1c (size before relaxing) + .literal.memp_malloc + 0x400d124c 0x4 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x8 (size before relaxing) + .literal.memp_free + 0x400d1250 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x8 (size before relaxing) + .literal.netif_loopif_init + 0x400d1250 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_do_set_netmask + 0x400d1264 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_do_set_gw + 0x400d126c 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_do_ip_addr_changed + 0x400d1270 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_issue_reports + 0x400d1270 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_do_set_ipaddr + 0x400d1278 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_poll + 0x400d127c 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x40 (size before relaxing) + .literal.netif_set_default + 0x400d1290 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_loop_output + 0x400d1294 0x18 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4c (size before relaxing) + .literal.netif_loop_output_ipv6 + 0x400d12ac 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_loop_output_ipv4 + 0x400d12ac 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_get_ip6_addr_match + 0x400d12ac 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_get_by_index + 0x400d12b8 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_find + 0x400d12bc 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x8 (size before relaxing) + .literal.netif_add_ext_callback + 0x400d12bc 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_remove_ext_callback + 0x400d12cc 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_invoke_ext_callback + 0x400d12d4 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x14 (size before relaxing) + .literal.netif_set_addr + 0x400d12dc 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_add + 0x400d12e0 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x40 (size before relaxing) + .literal.netif_set_up + 0x400d12fc 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_set_down + 0x400d12fc 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_remove + 0x400d12fc 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .literal.netif_set_link_up + 0x400d12fc 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_init + 0x400d12fc 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x20 (size before relaxing) + .literal.netif_set_link_down + 0x400d1310 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_ip6_addr_set_parts + 0x400d1310 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x2c (size before relaxing) + .literal.netif_ip6_addr_set + 0x400d131c 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_ip6_addr_set_state + 0x400d1328 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x28 (size before relaxing) + .literal.pbuf_add_header_impl + 0x400d132c 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_pool_is_empty + 0x400d1338 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_free_ooseq + 0x400d1340 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_free_ooseq_callback + 0x400d1344 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_alloc_reference + 0x400d1344 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_alloced_custom + 0x400d1350 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_add_header + 0x400d1350 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_add_header_force + 0x400d1350 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_remove_header + 0x400d1350 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_header_impl + 0x400d1354 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_header_force + 0x400d1354 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_free + 0x400d1354 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3c (size before relaxing) + .literal.pbuf_alloc + 0x400d1364 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x44 (size before relaxing) + .literal.pbuf_realloc + 0x400d1378 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x28 (size before relaxing) + .literal.pbuf_free_header + 0x400d138c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_ref + 0x400d138c 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_cat + 0x400d1394 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x10 (size before relaxing) + .literal.pbuf_chain + 0x400d139c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_copy_partial_pbuf + 0x400d139c 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_copy + 0x400d13a8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_copy_partial + 0x400d13a8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_skip + 0x400d13a8 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_take + 0x400d13ac 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_take_at + 0x400d13b8 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_clone + 0x400d13c0 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_try_get_at + 0x400d13c8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_get_at + 0x400d13c8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.raw_input_local_match + 0x400d13c8 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_input + 0x400d13cc 0x18 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x24 (size before relaxing) + .literal.raw_bind + 0x400d13e4 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x10 (size before relaxing) + .literal.raw_sendto_if_src + 0x400d13e4 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + 0x44 (size before relaxing) + .literal.raw_sendto + 0x400d13f0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x18 (size before relaxing) + .literal.raw_send + 0x400d13f0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.raw_remove + 0x400d13f0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x8 (size before relaxing) + .literal.raw_new + 0x400d13f0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0xc (size before relaxing) + .literal.raw_new_ip_type + 0x400d13f0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.raw_netif_ip_addr_changed + 0x400d13f0 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.tcp_new_port + 0x400d13f0 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_remove_listener + 0x400d1400 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_listen_closed + 0x400d140c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x20 (size before relaxing) + .literal.tcp_free_listen + 0x400d1418 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_init + 0x400d1420 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_free + 0x400d1420 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_backlog_delayed + 0x400d1428 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_backlog_accepted + 0x400d1430 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_close_shutdown_fin + 0x400d1434 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x24 (size before relaxing) + .literal.tcp_handle_closepend + 0x400d1438 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_bind + 0x400d1438 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x24 (size before relaxing) + .literal.tcp_listen_with_backlog_and_err + 0x400d143c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x28 (size before relaxing) + .literal.tcp_update_rcv_ann_wnd + 0x400d144c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x20 (size before relaxing) + .literal.tcp_recved + 0x400d145c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_seg_free + 0x400d1468 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_segs_free + 0x400d1468 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_seg_copy + 0x400d1468 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_recv + 0x400d1470 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_sent + 0x400d1478 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_err + 0x400d1484 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_poll + 0x400d1490 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_next_iss + 0x400d149c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_eff_send_mss_netif + 0x400d14a8 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_free_ooseq + 0x400d14b4 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_pcb_purge + 0x400d14b4 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_pcb_remove + 0x400d14b4 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4c (size before relaxing) + .literal.tcp_abandon + 0x400d14e0 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x44 (size before relaxing) + .literal.tcp_abort + 0x400d14f0 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_accept_null + 0x400d14f0 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_kill_timewait + 0x400d14f8 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_kill_prio + 0x400d14fc 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_netif_ip_addr_changed_pcblist + 0x400d14fc 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_netif_ip_addr_changed + 0x400d1508 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_kill_state + 0x400d1508 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_alloc + 0x400d1510 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x44 (size before relaxing) + .literal.tcp_new_ip_type + 0x400d1520 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_close_shutdown + 0x400d1520 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5c (size before relaxing) + .literal.tcp_close_ext + 0x400d1530 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_close + 0x400d1530 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_recv_null + 0x400d1530 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_process_refused_data + 0x400d1530 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_fasttmr + 0x400d1530 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_shutdown + 0x400d1530 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_slowtmr + 0x400d1530 0x3c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xb4 (size before relaxing) + .literal.tcp_tmr + 0x400d156c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_get_next_optbyte + 0x400d1570 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .literal.tcp_parseopt + 0x400d1580 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_input_delayed_close + 0x400d1590 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x20 (size before relaxing) + .literal.tcp_timewait_input + 0x400d159c 0x1c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x38 (size before relaxing) + .literal.tcp_listen_input + 0x400d15b8 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x64 (size before relaxing) + .literal.tcp_oos_insert_segment + 0x400d15c0 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_free_acked_segments + 0x400d15c8 0x14 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x30 (size before relaxing) + .literal.tcp_receive + 0x400d15dc 0x3c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x190 (size before relaxing) + .literal.tcp_process + 0x400d1618 0x1c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xc4 (size before relaxing) + .literal.tcp_input + 0x400d1634 0x30 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x134 (size before relaxing) + .literal.tcp_trigger_input_pcb_close + 0x400d1664 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x4 (size before relaxing) + .literal.tcp_write_checks + 0x400d1664 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_output_segment_busy + 0x400d1678 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x10 (size before relaxing) + .literal.tcp_output_fill_options + 0x400d1680 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x18 (size before relaxing) + .literal.tcp_pbuf_prealloc + 0x400d168c 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_create_segment + 0x400d169c 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x40 (size before relaxing) + .literal.tcp_output_alloc_header_common + 0x400d16ac 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x28 (size before relaxing) + .literal.tcp_output_alloc_header + 0x400d16b4 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_route + 0x400d16bc 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc (size before relaxing) + .literal.tcp_output_segment + 0x400d16bc 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x54 (size before relaxing) + .literal.tcp_output_control_segment + 0x400d16d0 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_write + 0x400d16d8 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x68 (size before relaxing) + .literal.tcp_split_unsent_seg + 0x400d16f8 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x54 (size before relaxing) + .literal.tcp_enqueue_flags + 0x400d170c 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x44 (size before relaxing) + .literal.tcp_send_fin + 0x400d1728 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_rto_prepare + 0x400d1730 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_rexmit + 0x400d1738 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_fast + 0x400d1740 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rst + 0x400d1748 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2c (size before relaxing) + .literal.tcp_send_empty_ack + 0x400d1758 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_output + 0x400d1760 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x68 (size before relaxing) + .literal.tcp_rexmit_rto_commit + 0x400d1770 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rexmit_rto + 0x400d1778 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x18 (size before relaxing) + .literal.tcp_keepalive + 0x400d1780 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_zero_window_probe + 0x400d178c 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x34 (size before relaxing) + .literal.sys_timeout_abs + 0x400d1798 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.lwip_cyclic_timer + 0x400d17a8 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x14 (size before relaxing) + .literal.sys_timeout + 0x400d17b0 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x1c (size before relaxing) + .literal.tcp_timer_needed + 0x400d17b8 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_tcp_timer + 0x400d17c0 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.sys_timeouts_init + 0x400d17c0 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0xc (size before relaxing) + .literal.sys_untimeout + 0x400d17c4 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x8 (size before relaxing) + .literal.sys_check_timeouts + 0x400d17c4 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x10 (size before relaxing) + .literal.sys_timeouts_sleeptime + 0x400d17c4 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.udp_new_port + 0x400d17cc 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x14 (size before relaxing) + .literal.udp_input_local_match + 0x400d17d4 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1c (size before relaxing) + .literal.udp_init + 0x400d17e4 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_input + 0x400d17e4 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x6c (size before relaxing) + .literal.udp_bind + 0x400d17f4 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1c (size before relaxing) + .literal.udp_sendto_if_src + 0x400d17f4 0xc esp-idf/lwip/liblwip.a(udp.c.obj) + 0x44 (size before relaxing) + .literal.udp_sendto_if + 0x400d1800 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0xc (size before relaxing) + .literal.udp_sendto + 0x400d1800 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x20 (size before relaxing) + .literal.udp_send + 0x400d1804 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.udp_connect + 0x400d1804 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x18 (size before relaxing) + .literal.udp_disconnect + 0x400d1804 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + .literal.udp_remove + 0x400d1808 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_new + 0x400d1808 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_new_ip_type + 0x400d1808 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.udp_netif_ip_addr_changed + 0x400d1808 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_option_short + 0x400d1808 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option + 0x400d1814 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_byte + 0x400d181c 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_long + 0x400d1824 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_create_msg + 0x400d182c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2c (size before relaxing) + .literal.dhcp_option_hostname + 0x400d1838 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x20 (size before relaxing) + .literal.dhcp_option_trailer + 0x400d1840 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_rebind + 0x400d1840 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x48 (size before relaxing) + .literal.dhcp_t2_timeout + 0x400d184c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_reboot + 0x400d184c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x54 (size before relaxing) + .literal.dhcp_select + 0x400d184c 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x64 (size before relaxing) + .literal.dhcp_handle_offer + 0x400d1850 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_discover + 0x400d1858 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4c (size before relaxing) + .literal.dhcp_decline + 0x400d1858 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x38 (size before relaxing) + .literal.dhcp_check + 0x400d1858 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_bind + 0x400d1858 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_handle_nak + 0x400d185c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_dec_pcb_refcount + 0x400d185c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1c (size before relaxing) + .literal.dhcp_inc_pcb_refcount + 0x400d1868 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x30 (size before relaxing) + .literal.dhcp_parse_reply + 0x400d1874 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x30 (size before relaxing) + .literal.dhcp_handle_ack + 0x400d1880 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_recv + 0x400d1880 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_set_struct + 0x400d1888 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x24 (size before relaxing) + .literal.dhcp_cleanup + 0x400d1898 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14 (size before relaxing) + .literal.dhcp_network_changed + 0x400d189c 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_arp_reply + 0x400d18a4 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_renew + 0x400d18a4 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_t1_timeout + 0x400d18a8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_release_and_stop + 0x400d18a8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_start + 0x400d18a8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x24 (size before relaxing) + .literal.dhcp_coarse_tmr + 0x400d18a8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14 (size before relaxing) + .literal.dhcp_timeout + 0x400d18a8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x20 (size before relaxing) + .literal.dhcp_fine_tmr + 0x400d18a8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_fine_timeout_cb + 0x400d18a8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_release + 0x400d18a8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_stop + 0x400d18a8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.free_etharp_q + 0x400d18a8 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x20 (size before relaxing) + .literal.etharp_free_entry + 0x400d18b8 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_find_entry + 0x400d18bc 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x28 (size before relaxing) + .literal.etharp_update_arp_entry + 0x400d18cc 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x30 (size before relaxing) + .literal.etharp_raw + 0x400d18d4 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x44 (size before relaxing) + .literal.etharp_request_dst + 0x400d18e8 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_add_static_entry + 0x400d18ec 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_remove_static_entry + 0x400d18ec 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc (size before relaxing) + .literal.etharp_cleanup_netif + 0x400d18ec 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_input + 0x400d18ec 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x1c (size before relaxing) + .literal.etharp_request + 0x400d18ec 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_tmr + 0x400d18f0 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc (size before relaxing) + .literal.etharp_output_to_arp_index + 0x400d18f0 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x24 (size before relaxing) + .literal.etharp_query + 0x400d18f8 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x54 (size before relaxing) + .literal.etharp_output + 0x400d190c 0xc esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x48 (size before relaxing) + .literal.icmp_send_response + 0x400d1918 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x28 (size before relaxing) + .literal.icmp_input + 0x400d1924 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x6c (size before relaxing) + .literal.icmp_dest_unreach + 0x400d1930 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_start_timer + 0x400d1930 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_delaying_member + 0x400d1938 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_ip_output_if + 0x400d1938 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_send + 0x400d1938 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_timeout + 0x400d1948 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8 (size before relaxing) + .literal.igmp_init + 0x400d194c 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_stop + 0x400d1954 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_report_groups + 0x400d1954 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_lookup_group + 0x400d1954 0xc esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x24 (size before relaxing) + .literal.igmp_start + 0x400d1960 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8 (size before relaxing) + .literal.igmp_input + 0x400d1960 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_joingroup_netif + 0x400d1960 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_joingroup + 0x400d1960 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xc (size before relaxing) + .literal.igmp_leavegroup_netif + 0x400d1960 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x14 (size before relaxing) + .literal.igmp_leavegroup + 0x400d1960 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xc (size before relaxing) + .literal.igmp_tmr + 0x400d1960 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x18 (size before relaxing) + .literal.igmp_timeout_cb + 0x400d1960 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.ip4_input_accept + 0x400d1960 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x8 (size before relaxing) + .literal.ip4_route + 0x400d1960 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x10 (size before relaxing) + .literal.ip4_route_src + 0x400d1964 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x8 (size before relaxing) + .literal.ip4_input + 0x400d1964 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x68 (size before relaxing) + .literal.ip4_output_if_opt_src + 0x400d1968 0x14 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x44 (size before relaxing) + .literal.ip4_output_if_opt + 0x400d197c 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if + 0x400d197c 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if_src + 0x400d197c 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4addr_aton + 0x400d197c 0x10 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x20 (size before relaxing) + .literal.ip4_frag + 0x400d198c 0xc esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x3c (size before relaxing) + .literal.icmp6_send_response_with_addrs_and_netif + 0x400d1998 0xc esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x28 (size before relaxing) + .literal.icmp6_send_response + 0x400d19a4 0x8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x20 (size before relaxing) + .literal.icmp6_input + 0x400d19ac 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x48 (size before relaxing) + .literal.icmp6_dest_unreach + 0x400d19ac 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x4 (size before relaxing) + .literal.icmp6_param_problem + 0x400d19ac 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x8 (size before relaxing) + .literal.ip6_input_accept + 0x400d19ac 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6_route + 0x400d19ac 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x1c (size before relaxing) + .literal.ip6_select_source_address + 0x400d19ac 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x14 (size before relaxing) + .literal.ip6_input + 0x400d19b0 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0xf4 (size before relaxing) + .literal.ip6_output_if_src + 0x400d19b0 0x14 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x48 (size before relaxing) + .literal.ip6_output_if + 0x400d19c4 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x8 (size before relaxing) + .literal.ip6_options_add_hbh_ra + 0x400d19c4 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6_frag + 0x400d19c4 0x14 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x44 (size before relaxing) + .literal.mld6_delayed_report + 0x400d19d8 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x14 (size before relaxing) + .literal.mld6_new_group + 0x400d19e0 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_send + 0x400d19e0 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x20 (size before relaxing) + .literal.mld6_stop + 0x400d19e0 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_report_groups + 0x400d19e0 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_input + 0x400d19e0 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x30 (size before relaxing) + .literal.mld6_joingroup_netif + 0x400d19e0 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1c (size before relaxing) + .literal.mld6_joingroup + 0x400d19e0 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xc (size before relaxing) + .literal.mld6_leavegroup_netif + 0x400d19e0 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1c (size before relaxing) + .literal.mld6_leavegroup + 0x400d19e0 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xc (size before relaxing) + .literal.mld6_tmr + 0x400d19e0 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x18 (size before relaxing) + .literal.mld6_timeout_cb + 0x400d19e0 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_neighbor_cache_entry + 0x400d19e0 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_find_destination_cache_entry + 0x400d19e4 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_new_destination_cache_entry + 0x400d19e8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_is_prefix_in_netif + 0x400d19e8 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_select_router + 0x400d19ec 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_get_router + 0x400d19f4 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_get_onlink_prefix + 0x400d19f4 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_new_onlink_prefix + 0x400d19f4 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_send_q + 0x400d19f4 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x18 (size before relaxing) + .literal.nd6_duplicate_addr_detected + 0x400d19f4 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_process_autoconfig_prefix + 0x400d19f4 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2c (size before relaxing) + .literal.nd6_free_q + 0x400d1a04 0x1c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x34 (size before relaxing) + .literal.nd6_free_neighbor_cache_entry + 0x400d1a20 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_new_neighbor_cache_entry + 0x400d1a20 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_send_na + 0x400d1a20 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x30 (size before relaxing) + .literal.nd6_send_rs + 0x400d1a2c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x20 (size before relaxing) + .literal.nd6_send_ns + 0x400d1a2c 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x30 (size before relaxing) + .literal.nd6_send_neighbor_cache_probe + 0x400d1a30 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_new_router + 0x400d1a30 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_get_next_hop_entry + 0x400d1a30 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4c (size before relaxing) + .literal.nd6_queue_packet + 0x400d1a40 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x28 (size before relaxing) + .literal.nd6_input + 0x400d1a40 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x124 (size before relaxing) + .literal.nd6_tmr + 0x400d1a50 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x54 (size before relaxing) + .literal.nd6_clear_destination_cache + 0x400d1a58 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_route + 0x400d1a58 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_get_next_hop_addr_or_queue + 0x400d1a60 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xc (size before relaxing) + .literal.nd6_get_destination_mtu + 0x400d1a60 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_reachability_hint + 0x400d1a60 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_cleanup_netif + 0x400d1a60 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_adjust_mld_membership + 0x400d1a60 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x10 (size before relaxing) + .literal.ethernet_input + 0x400d1a60 0x4 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x28 (size before relaxing) + .literal.ethernet_output + 0x400d1a64 0xc esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x20 (size before relaxing) + .literal.lwip_init_tcp_isn + 0x400d1a70 0x10 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x18 (size before relaxing) + .literal.lwip_hook_tcp_isn + 0x400d1a80 0x18 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x40 (size before relaxing) + .literal.ip4_route_src_hook + 0x400d1a98 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_parse_extra_opts + 0x400d1a98 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0xc (size before relaxing) + .literal.dhcp_append_extra_opts + 0x400d1a98 0x4 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .literal.sys_thread_sem_free + 0x400d1a9c 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_mutex_new + 0x400d1a9c 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_mutex_lock + 0x400d1a9c 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mutex_unlock + 0x400d1aa8 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_sem_new + 0x400d1ab0 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_sem_signal + 0x400d1abc 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_sem_signal_isr + 0x400d1ac4 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_sem_wait + 0x400d1ac4 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_sem_free + 0x400d1acc 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_mbox_new + 0x400d1acc 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_mbox_post + 0x400d1acc 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_trypost + 0x400d1ad4 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_mbox_fetch + 0x400d1ad4 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_arch_mbox_tryfetch + 0x400d1adc 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_free + 0x400d1ae0 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.sys_thread_new + 0x400d1ae8 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_init + 0x400d1ae8 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x28 (size before relaxing) + .literal.sys_now + 0x400d1afc 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_protect + 0x400d1afc 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_arch_unprotect + 0x400d1afc 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_thread_sem_init + 0x400d1afc 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x2c (size before relaxing) + .literal.sys_thread_sem_get + 0x400d1b00 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_thread_tcpip + 0x400d1b00 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.lwip_get_socket_select_semaphore + 0x400d1b0c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select_isr + 0x400d1b0c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select + 0x400d1b0c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_ioctl_r_wrapper + 0x400d1b0c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_fcntl_r_wrapper + 0x400d1b0c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_fstat + 0x400d1b0c 0x4 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_lwip_sockets_register + 0x400d1b10 0x34 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x40 (size before relaxing) + .literal.netconn_apimsg + 0x400d1b44 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_tcp_recvd_msg + 0x400d1b44 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_close_shutdown + 0x400d1b48 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_new_with_proto_and_callback + 0x400d1b4c 0x18 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x34 (size before relaxing) + .literal.netconn_prepare_delete + 0x400d1b64 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_delete + 0x400d1b68 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_getaddr + 0x400d1b68 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_bind + 0x400d1b6c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x14 (size before relaxing) + .literal.netconn_listen_with_backlog + 0x400d1b70 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_tcp_recvd + 0x400d1b74 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_send + 0x400d1b74 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_write_vectors_partly + 0x400d1b78 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x20 (size before relaxing) + .literal.netconn_write_partly + 0x400d1b84 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_err + 0x400d1b84 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_accept + 0x400d1b84 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x3c (size before relaxing) + .literal.netconn_recv_data + 0x400d1b88 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x48 (size before relaxing) + .literal.netconn_recv_udp_raw_netbuf_flags + 0x400d1b90 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_recv_data_tcp + 0x400d1b90 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x10 (size before relaxing) + .literal.netconn_recv_tcp_pbuf_flags + 0x400d1b90 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_shutdown + 0x400d1b90 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_join_leave_group + 0x400d1b90 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_join_leave_group_netif + 0x400d1b94 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.lwip_netconn_err_to_msg + 0x400d1b98 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.recv_udp + 0x400d1bb0 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3c (size before relaxing) + .literal.recv_raw + 0x400d1bc0 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.setup_tcp + 0x400d1bc0 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x24 (size before relaxing) + .literal.pcb_new + 0x400d1bd0 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x30 (size before relaxing) + .literal.err_tcp + 0x400d1be0 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40 (size before relaxing) + .literal.netconn_mark_mbox_invalid + 0x400d1bf4 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_writemore + 0x400d1bf8 0x20 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x60 (size before relaxing) + .literal.lwip_netconn_do_close_internal + 0x400d1c18 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x88 (size before relaxing) + .literal.poll_tcp + 0x400d1c30 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.sent_tcp + 0x400d1c34 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.tcp_do_abort + 0x400d1c38 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4 (size before relaxing) + .literal.recv_tcp + 0x400d1c38 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_is_deallocated_msg + 0x400d1c4c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4 (size before relaxing) + .literal.lwip_netconn_is_err_msg + 0x400d1c4c 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.lwip_netconn_do_newconn + 0x400d1c54 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x8 (size before relaxing) + .literal.netconn_alloc + 0x400d1c54 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.netconn_free + 0x400d1c5c 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x28 (size before relaxing) + .literal.netconn_drain + 0x400d1c6c 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x48 (size before relaxing) + .literal.accept_function + 0x400d1c78 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4c (size before relaxing) + .literal.lwip_netconn_do_delconn + 0x400d1c80 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_do_bind + 0x400d1c90 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.lwip_netconn_do_listen + 0x400d1c90 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x34 (size before relaxing) + .literal.lwip_netconn_do_send + 0x400d1c9c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.lwip_netconn_do_recv + 0x400d1c9c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xc (size before relaxing) + .literal.lwip_netconn_do_accepted + 0x400d1c9c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x8 (size before relaxing) + .literal.lwip_netconn_do_write + 0x400d1c9c 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x24 (size before relaxing) + .literal.lwip_netconn_do_getaddr + 0x400d1ca4 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_close + 0x400d1cac 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_do_join_leave_group + 0x400d1cb8 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_join_leave_group_netif + 0x400d1cb8 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.err_to_errno + 0x400d1cb8 0x4 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_delete + 0x400d1cbc 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x8 (size before relaxing) + .literal.netbuf_alloc + 0x400d1cbc 0xc esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x18 (size before relaxing) + .literal.netbuf_free + 0x400d1cc8 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x4 (size before relaxing) + .literal.dns_setserver + 0x400d1cc8 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x10 (size before relaxing) + .literal.inet_cksum_pseudo_base + 0x400d1ccc 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0xc (size before relaxing) + .literal.inet_chksum_pseudo + 0x400d1ccc 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip6_chksum_pseudo + 0x400d1ccc 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip_chksum_pseudo + 0x400d1ccc 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x8 (size before relaxing) + .literal.inet_chksum + 0x400d1ccc 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.inet_chksum_pbuf + 0x400d1ccc 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_add_to_list_unsafe + 0x400d1ccc 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_remove_from_list_unsafe + 0x400d1cd4 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_get_nr_of_ifs + 0x400d1ce0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_next_unsafe + 0x400d1ce0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_next + 0x400d1ce0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_is_netif_listed + 0x400d1ce0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_get_handle_from_ifkey_unsafe + 0x400d1ce0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_is_active + 0x400d1ce0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_default_netif_internal + 0x400d1ce0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_lwip_ipc_call_msg + 0x400d1ce0 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_lwip_ipc_call + 0x400d1cec 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_update_default_netif + 0x400d1cec 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_lwip_ipc_call_get_netif + 0x400d1cf0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_api_cb + 0x400d1cf0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.tcpip_init_done + 0x400d1cf0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_config_sanity_check + 0x400d1cf0 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_set_mac_api + 0x400d1cfc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_set_ip_old_info_api + 0x400d1cfc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcps_cb + 0x400d1cfc 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.esp_netif_start_ip_lost_timer + 0x400d1d04 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.netif_set_mldv6_flag + 0x400d1d0c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_internal_nd6_cb + 0x400d1d10 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.netif_set_garp_flag + 0x400d1d14 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_ip_lost_timer + 0x400d1d1c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.netif_send_mldv6 + 0x400d1d20 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .literal.esp_netif_init_configuration + 0x400d1d20 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2c (size before relaxing) + .literal.netif_unset_garp_flag + 0x400d1d30 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.netif_unset_mldv6_flag + 0x400d1d30 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_lwip_remove + 0x400d1d30 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_destroy_api + 0x400d1d30 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x38 (size before relaxing) + .literal.esp_netif_new_api + 0x400d1d34 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc0 (size before relaxing) + .literal.netif_send_garp + 0x400d1d50 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_lwip_add + 0x400d1d50 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_start_api + 0x400d1d54 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x78 (size before relaxing) + .literal.esp_netif_stop_api + 0x400d1d78 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.dns_clear_servers + 0x400d1d78 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcpc_start_api + 0x400d1d78 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_set_hostname_api + 0x400d1d80 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x18 (size before relaxing) + .literal.esp_netif_up_api + 0x400d1d84 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .literal.esp_netif_down_api + 0x400d1d84 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.esp_netif_init + 0x400d1d84 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x5c (size before relaxing) + .literal.esp_netif_new + 0x400d1d94 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_attach + 0x400d1d98 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_set_driver_config + 0x400d1da0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_mac + 0x400d1da0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_start + 0x400d1da4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_stop + 0x400d1da8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_netstack_buf_ref + 0x400d1dac 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_netstack_buf_free + 0x400d1dac 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcpc_start + 0x400d1dac 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_set_hostname + 0x400d1db0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_get_hostname + 0x400d1db4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_up + 0x400d1db4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_down + 0x400d1db8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_update_default_netif_lwip + 0x400d1dbc 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x3c (size before relaxing) + .literal.esp_netif_get_old_ip_info + 0x400d1dc4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_get_ip_info + 0x400d1dc4 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_old_ip_info + 0x400d1dc4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_internal_dhcpc_cb + 0x400d1dc8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x34 (size before relaxing) + .literal.netif_callback_fn + 0x400d1dcc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_supp_crc32 + 0x400d1dcc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .literal.esp_aes_decrypt + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_encrypt + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_unwrap + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_wrap + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.sha256_prf_bits + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x14 (size before relaxing) + .literal.sha256_prf + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x4 (size before relaxing) + .literal.sha1_prf + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x14 (size before relaxing) + .literal.digest_vector + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.hmac_vector + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.aes_crypt_init + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.aes_crypt_deinit + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.aes_crypt + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.sha256_vector + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.sha1_vector + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.md5_vector + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha256_vector + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha256 + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_md5_vector + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_md5 + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha1_vector + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha1 + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt_init + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt_deinit + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt_init + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt_deinit + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_128_cbc_encrypt + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.aes_128_cbc_decrypt + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + .literal.aes_ctr_encrypt + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + .literal.pbkdf2_sha1 + 0x400d1dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.omac1_aes_vector + 0x400d1dd0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x20 (size before relaxing) + .literal.omac1_aes_128_vector + 0x400d1dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.omac1_aes_128 + 0x400d1dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_wrap + 0x400d1dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x24 (size before relaxing) + .literal.aes_unwrap + 0x400d1dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x24 (size before relaxing) + .literal.os_get_time + 0x400d1dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_random + 0x400d1dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_get_random + 0x400d1dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_sleep + 0x400d1dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x8 (size before relaxing) + .literal.forced_memzero + 0x400d1dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.ccmp_aad_nonce + 0x400d1dd4 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x18 (size before relaxing) + .literal.ccmp_decrypt + 0x400d1ddc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x14 (size before relaxing) + .literal.ccmp_encrypt + 0x400d1ddc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x1c (size before relaxing) + .literal.hex2byte + 0x400d1ddc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.hexstr2bin + 0x400d1ddc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_ntp_timestamp + 0x400d1ddc 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x1c (size before relaxing) + .literal.printf_decode + 0x400d1de8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.dup_binstr + 0x400d1de8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_config_parse_string + 0x400d1de8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x38 (size before relaxing) + .literal.bin_clear_free + 0x400d1dec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.os_memdup + 0x400d1dec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.os_reltime_expired + 0x400d1dec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.HMAC_sha1_final + 0x400d1dec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_sha1_init_start + 0x400d1dec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x8 (size before relaxing) + .literal.HMAC_sha1_init + 0x400d1dec 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x34 (size before relaxing) + .literal.sha1_extract + 0x400d1df8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x14 (size before relaxing) + .literal.pbkdf2_f_sha1 + 0x400d1df8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x38 (size before relaxing) + .literal.pbkdf2_sha1 + 0x400d1dfc 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x28 (size before relaxing) + .literal.fastpbkdf2_hmac_sha1 + 0x400d1e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_encr_start + 0x400d1e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_auth + 0x400d1e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_encr + 0x400d1e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_encr_auth + 0x400d1e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_decr_auth + 0x400d1e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_auth_start + 0x400d1e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.aes_ccm_ae + 0x400d1e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x1c (size before relaxing) + .literal.aes_ccm_ad + 0x400d1e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.esp_wifi_config_info + 0x400d1e08 0x28 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x74 (size before relaxing) + .literal.wifi_deinit_internal + 0x400d1e30 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4c (size before relaxing) + .literal.esp_wifi_set_log_level + 0x400d1e44 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4 (size before relaxing) + .literal.s_set_default_wifi_log_level + 0x400d1e44 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x20 (size before relaxing) + .literal.esp_wifi_init + 0x400d1e54 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x44 (size before relaxing) + .literal.wifi_default_action_sta_got_ip + 0x400d1e64 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x1c (size before relaxing) + .literal.wifi_default_action_ap_stop + 0x400d1e70 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_stop + 0x400d1e70 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_start + 0x400d1e70 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x50 (size before relaxing) + .literal.wifi_default_action_ap_start + 0x400d1e88 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_start + 0x400d1e88 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_disconnected + 0x400d1e88 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_connected + 0x400d1e88 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x28 (size before relaxing) + .literal.clear_default_wifi_handlers + 0x400d1e88 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4c (size before relaxing) + .literal.set_default_wifi_handlers + 0x400d1eac 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x50 (size before relaxing) + .literal.create_and_attach + 0x400d1eac 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x18 (size before relaxing) + .literal.esp_netif_attach_wifi + 0x400d1eb0 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.esp_wifi_set_default_wifi_sta_handlers + 0x400d1eb0 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_attach_wifi_station + 0x400d1eb0 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_create_default_wifi_sta + 0x400d1eb0 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x38 (size before relaxing) + .literal.httpd_process_session + 0x400d1ed0 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0xc (size before relaxing) + .literal.httpd_process_ctrl_msg + 0x400d1ed0 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x28 (size before relaxing) + .literal.httpd_os_thread_delete + 0x400d1ee8 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .literal.httpd_create + 0x400d1ef0 0x24 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x88 (size before relaxing) + .literal.httpd_server_init + 0x400d1f14 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0xa0 (size before relaxing) + .literal.httpd_delete + 0x400d1f30 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x18 (size before relaxing) + .literal.esp_http_server_dispatch_event + 0x400d1f30 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x1c (size before relaxing) + .literal.httpd_accept_conn + 0x400d1f38 0x24 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0xc0 (size before relaxing) + .literal.httpd_server + 0x400d1f5c 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x44 (size before relaxing) + .literal.httpd_thread + 0x400d1f6c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x18 (size before relaxing) + .literal.httpd_queue_work + 0x400d1f6c 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x18 (size before relaxing) + .literal.httpd_start + 0x400d1f74 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x38 (size before relaxing) + .literal.init_req + 0x400d1f88 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x4 (size before relaxing) + .literal.init_req_aux + 0x400d1f88 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x8 (size before relaxing) + .literal.parse_init + 0x400d1f88 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x24 (size before relaxing) + .literal.cb_header_value + 0x400d1fa0 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x14 (size before relaxing) + .literal.cb_url + 0x400d1fac 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x20 (size before relaxing) + .literal.verify_url + 0x400d1fb4 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x3c (size before relaxing) + .literal.pause_parsing + 0x400d1fc8 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x28 (size before relaxing) + .literal.cb_no_body + 0x400d1fd4 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x1c (size before relaxing) + .literal.cb_on_body + 0x400d1fd8 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x18 (size before relaxing) + .literal.cb_header_field + 0x400d1fdc 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x20 (size before relaxing) + .literal.continue_parsing + 0x400d1fe0 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x4 (size before relaxing) + .literal.cb_headers_complete + 0x400d1fe0 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x34 (size before relaxing) + .literal.read_block + 0x400d1fec 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x8 (size before relaxing) + .literal.parse_block + 0x400d1fec 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x40 (size before relaxing) + .literal.httpd_parse_req + 0x400d2000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x1c (size before relaxing) + .literal.httpd_req_cleanup + 0x400d2000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x4 (size before relaxing) + .literal.httpd_req_new + 0x400d2000 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x18 (size before relaxing) + .literal.httpd_req_delete + 0x400d2008 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0xc (size before relaxing) + .literal.httpd_query_key_value + 0x400d2008 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x20 (size before relaxing) + .literal.httpd_req_get_url_query_str + 0x400d2014 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x8 (size before relaxing) + .literal.fd_is_valid + 0x400d2014 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x8 (size before relaxing) + .literal.httpd_sess_get_free + 0x400d2014 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0xc (size before relaxing) + .literal.httpd_is_sess_available + 0x400d2018 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x4 (size before relaxing) + .literal.httpd_sess_get + 0x400d2018 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0xc (size before relaxing) + .literal.httpd_sess_free_ctx + 0x400d2018 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x4 (size before relaxing) + .literal.httpd_sess_clear_ctx + 0x400d2018 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x8 (size before relaxing) + .literal.httpd_sess_set_descriptors + 0x400d2018 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0xc (size before relaxing) + .literal.httpd_sess_delete_invalid + 0x400d2018 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0xc (size before relaxing) + .literal.httpd_sess_delete + 0x400d2018 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x2c (size before relaxing) + .literal.enum_function + 0x400d2024 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x20 (size before relaxing) + .literal.httpd_sess_new + 0x400d202c 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x2c (size before relaxing) + .literal.httpd_sess_close + 0x400d203c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x4 (size before relaxing) + .literal.httpd_sess_init + 0x400d203c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0xc (size before relaxing) + .literal.httpd_sess_process + 0x400d203c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x8 (size before relaxing) + .literal.httpd_sess_trigger_close_ + 0x400d203c 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x8 (size before relaxing) + .literal.httpd_sess_close_lru + 0x400d2040 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x10 (size before relaxing) + .literal.httpd_sess_close_all + 0x400d2040 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0xc (size before relaxing) + .literal.httpd_recv_pending + 0x400d2040 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_sock_err + 0x400d2040 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x24 (size before relaxing) + .literal.httpd_recv_with_opt + 0x400d2054 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_recv + 0x400d2054 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_unrecv + 0x400d2054 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_resp_send + 0x400d2054 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4c (size before relaxing) + .literal.httpd_resp_send_err + 0x400d2068 0x74 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0xb0 (size before relaxing) + .literal.httpd_req_handle_err + 0x400d20dc 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_req_recv + 0x400d20dc 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x8 (size before relaxing) + .literal.httpd_default_send + 0x400d20dc 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0xc (size before relaxing) + .literal.httpd_default_recv + 0x400d20e0 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0xc (size before relaxing) + .literal.httpd_uri_match_simple + 0x400d20e4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x8 (size before relaxing) + .literal.httpd_find_uri_handler + 0x400d20e4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x4 (size before relaxing) + .literal.httpd_uri_match_wildcard + 0x400d20e4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0xc (size before relaxing) + .literal.httpd_register_uri_handler + 0x400d20e4 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x40 (size before relaxing) + .literal.httpd_unregister_all_uri_handlers + 0x400d2100 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x8 (size before relaxing) + .literal.httpd_uri + 0x400d2100 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x38 (size before relaxing) + .literal.cs_create_ctrl_sock + 0x400d2110 0x4 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x18 (size before relaxing) + .literal.cs_free_ctrl_sock + 0x400d2114 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x4 (size before relaxing) + .literal.cs_send_to_ctrl_sock + 0x400d2114 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_int_div_int + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_free + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_grow + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_safe_cond_assign + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_safe_cond_swap + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_resize_clear + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_shrink + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_copy + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_lset + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_set_bit + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_bitlen + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_size + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_read_binary_le + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_read_binary + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_write_binary_le + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_write_binary + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_shift_l + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_shift_r + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_abs + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_mpi + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_int + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_add_abs + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_sub_abs + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.add_sub_mpi + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_add_mpi + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_mpi + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_add_int + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_int + 0x400d2114 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_div_mpi + 0x400d2114 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa8 (size before relaxing) + .literal.mbedtls_mpi_div_int + 0x400d2118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mod_mpi + 0x400d2118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_mod_int + 0x400d2118 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mpi_check_small_factors + 0x400d2118 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_gcd + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x58 (size before relaxing) + .literal.mbedtls_mpi_fill_random + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mpi_miller_rabin + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_mpi_random + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_inv_mod + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xd0 (size before relaxing) + .literal.mbedtls_mpi_is_prime_ext + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mpi_bigendian_to_host + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_bitlen + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_bigendian_to_host + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_uint_le_mpi + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_lt_ct + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_read_le + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_read_be + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_write_le + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_write_be + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_shift_r + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_core_shift_l + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_montmul + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_core_get_mont_r2_unsafe + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_core_fill_random + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_random + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_core_to_mont_rep + 0x400d211c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_info_from_type + 0x400d211c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_values + 0x400d2120 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_cipher_init + 0x400d2124 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_free + 0x400d2124 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_setup + 0x400d2124 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_cipher_setkey + 0x400d212c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_update + 0x400d2134 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x48 (size before relaxing) + .literal.xts_aes_ctx_free + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_ctx_alloc + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_setkey_dec_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_setkey_enc_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_xts_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_ctx_free + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_ctx_alloc + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_aria_setkey_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.gcm_aes_setkey_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ccm_ctx_free + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_ctx_alloc + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_aria_setkey_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ccm_aes_setkey_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_ctx_free + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aria_ctx_alloc + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aria_setkey_dec_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_setkey_enc_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_ctr_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_cfb128_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_cbc_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_ecb_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_ctx_free + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_ctx_alloc + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_setkey_dec_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_setkey_enc_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ctr_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ofb_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cfb128_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cbc_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ecb_wrap + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ct_memmove_left + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x4 (size before relaxing) + .literal.cmac_multiply_by_u + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0xc (size before relaxing) + .literal.cmac_generate_subkeys + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_starts + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_update + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_finish + 0x400d2148 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_md_info_from_type + 0x400d2148 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_init + 0x400d2170 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_free + 0x400d2170 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_md_setup + 0x400d2170 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_md_starts + 0x400d2178 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_md_update + 0x400d2178 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_md_finish + 0x400d2178 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_md + 0x400d2178 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_md_hmac_starts + 0x400d2178 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_md_hmac_update + 0x400d2178 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_md_hmac_finish + 0x400d2178 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_md_hmac_reset + 0x400d2178 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_md5 + 0x400d2178 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_calloc + 0x400d2178 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_free + 0x400d217c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_platform_zeroize + 0x400d2180 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.mbedtls_zeroize_and_free + 0x400d2184 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha1 + 0x400d2184 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256 + 0x400d2184 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512 + 0x400d2184 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x14 (size before relaxing) + .literal.keccak_f1600 + 0x400d2184 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_sha3_init + 0x400d218c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha3_free + 0x400d218c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha3_starts + 0x400d218c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha3_update + 0x400d218c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_sha3_finish + 0x400d218c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_sha3 + 0x400d218c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x14 (size before relaxing) + .literal.esp_mbedtls_mem_calloc + 0x400d218c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x8 (size before relaxing) + .literal.esp_mbedtls_mem_free + 0x400d2190 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .literal.esp_aes_xts_init + 0x400d2194 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_free + 0x400d2194 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_setkey_enc + 0x400d2194 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_xts_setkey_dec + 0x400d2194 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_crypt_xts + 0x400d2194 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x1c (size before relaxing) + .literal.esp_aes_init + 0x400d2194 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_free + 0x400d2194 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_setkey + 0x400d2194 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_block + 0x400d2194 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x14 (size before relaxing) + .literal.esp_aes_acquire_hardware + 0x400d2198 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_release_hardware + 0x400d21a0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_crypt_ecb + 0x400d21a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x18 (size before relaxing) + .literal.esp_aes_crypt_cbc + 0x400d21a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x28 (size before relaxing) + .literal.esp_aes_crypt_cfb128 + 0x400d21a4 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x38 (size before relaxing) + .literal.esp_aes_crypt_ctr + 0x400d21b0 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x40 (size before relaxing) + .literal.esp_aes_crypt_ofb + 0x400d21bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x34 (size before relaxing) + .literal.mpi_words + 0x400d21bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.modular_inverse + 0x400d21bc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.calculate_rinv + 0x400d21c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x10 (size before relaxing) + .literal.mpi_montgomery_exp_calc + 0x400d21c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x3c (size before relaxing) + .literal.esp_mpi_exp_mod + 0x400d21c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x3c (size before relaxing) + .literal.mpi_mult_mpi_failover_mod_mult + 0x400d21c0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_mpi_exp_mod + 0x400d21d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mul_mpi + 0x400d21d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x40 (size before relaxing) + .literal.mpi_mult_mpi_overlong + 0x400d21d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_mul_int + 0x400d21d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x4 (size before relaxing) + .literal.mpi_ll_enable_bus_clock + 0x400d21d0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0xc (size before relaxing) + .literal.mpi_ll_reset_register + 0x400d21d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x10 (size before relaxing) + .literal.esp_mpi_enable_hardware_hw_op + 0x400d21d4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x18 (size before relaxing) + .literal.esp_mpi_disable_hardware_hw_op + 0x400d21dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x14 (size before relaxing) + .literal.esp_mpi_mul_mpi_hw_op + 0x400d21dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x14 (size before relaxing) + .literal.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x400d21dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x28 (size before relaxing) + .literal.esp_mont_hw_op + 0x400d21dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_sha1_software_process + 0x400d21dc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.esp_internal_sha1_parallel_engine_process + 0x400d21ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha1_init + 0x400d21ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_free + 0x400d21ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha1_starts + 0x400d21ec 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_internal_sha1_process + 0x400d2200 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_update + 0x400d2200 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha1_finish + 0x400d2200 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256_software_process + 0x400d2204 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.esp_internal_sha256_parallel_engine_process + 0x400d2208 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha256_init + 0x400d2208 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_free + 0x400d2208 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha256_starts + 0x400d2208 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_sha256_update + 0x400d2248 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256_finish + 0x400d2248 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512_software_process + 0x400d224c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.esp_internal_sha512_parallel_engine_process + 0x400d2250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha512_init + 0x400d2250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_free + 0x400d2250 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha512_starts + 0x400d2250 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x84 (size before relaxing) + .literal.mbedtls_sha512_update + 0x400d2290 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512_finish + 0x400d2290 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x14 (size before relaxing) + .literal.gcm_mult + 0x400d2294 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.increment32_j0 + 0x400d2298 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x8 (size before relaxing) + .literal.esp_gcm_ghash + 0x400d2298 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x18 (size before relaxing) + .literal.esp_aes_gcm_setkey + 0x400d2298 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_init + 0x400d2298 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_free + 0x400d2298 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_update + 0x400d2298 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x54 (size before relaxing) + .literal.esp_md5_finish + 0x400d22ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_update + 0x400d22ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_init + 0x400d22ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_starts + 0x400d22ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_free + 0x400d22ac 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.aria_a + 0x400d22ac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .literal.aria_fo_xor + 0x400d22b4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x18 (size before relaxing) + .literal.aria_fe_xor + 0x400d22c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x18 (size before relaxing) + .literal.aria_rot128 + 0x400d22c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_aria_setkey_enc + 0x400d22c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_aria_setkey_dec + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_aria_crypt_ecb + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_aria_init + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_aria_free + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_aria_crypt_cbc + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_aria_crypt_cfb128 + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_aria_crypt_ctr + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_tag + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.asn1_get_tagged_int + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_int + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_mpi + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_get_bitstring_null + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_alg + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_asn1_write_len_and_tag + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_write_mpi + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ccm_crypt + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ccm_init + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_setkey + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ccm_free + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_update + 0x400d22c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x18 (size before relaxing) + .literal.rsa_check_context + 0x400d22c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30 (size before relaxing) + .literal.rsa_prepare_blinding + 0x400d22cc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3c (size before relaxing) + .literal.rsa_unblind + 0x400d22d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_md_get_size_from_type + 0x400d22d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.compute_hash + 0x400d22d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mgf_mask + 0x400d22d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x38 (size before relaxing) + .literal.hash_mprime + 0x400d22d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ct_rsaes_pkcs1_v15_unpadding + 0x400d22d0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.rsa_rsassa_pkcs1_v15_encode + 0x400d22d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_rsa_import_raw + 0x400d22d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_complete + 0x400d22d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_rsa_init + 0x400d22d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_get_bitlen + 0x400d22d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_check_pubkey + 0x400d22d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_rsa_parse_pubkey + 0x400d22d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_rsa_check_privkey + 0x400d22d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_check_pub_priv + 0x400d22d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_public + 0x400d22d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_private + 0x400d22dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc0 (size before relaxing) + .literal.rsa_rsassa_pss_sign_no_mode_check + 0x400d22e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x28 (size before relaxing) + .literal.rsa_rsassa_pss_sign + 0x400d22e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_encrypt + 0x400d22e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x400d22e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_encrypt + 0x400d22e0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_decrypt + 0x400d22e4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x400d22e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_decrypt + 0x400d22e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_sign + 0x400d22e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x400d22e8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_sign + 0x400d22ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify_ext + 0x400d22ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify + 0x400d22ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x400d22ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_verify + 0x400d22ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_free + 0x400d22ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_rsa_deduce_primes + 0x400d22ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_rsa_deduce_private_exponent + 0x400d22f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_rsa_deduce_crt + 0x400d22f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_validate_params + 0x400d22f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x68 (size before relaxing) + .literal.mbedtls_rsa_validate_crt + 0x400d22f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x48 (size before relaxing) + .literal.sha_get_engine_state + 0x400d22f0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x24 (size before relaxing) + .literal.esp_sha_lock_engine_common + 0x400d2310 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x2c (size before relaxing) + .literal.esp_sha_lock_memory_block + 0x400d2324 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_unlock_memory_block + 0x400d2328 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_try_lock_engine + 0x400d2328 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4 (size before relaxing) + .literal.esp_sha_unlock_engine + 0x400d2328 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x1c (size before relaxing) + .literal.esp_sha_read_digest_state + 0x400d2328 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x28 (size before relaxing) + .literal.esp_sha_block + 0x400d2334 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_ctr_increment_counter + 0x400d2338 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x8 (size before relaxing) + .literal.block_cipher_df + 0x400d2338 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x44 (size before relaxing) + .literal.ctr_drbg_update_internal + 0x400d2338 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed_internal + 0x400d2338 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ctr_drbg_init + 0x400d2338 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ctr_drbg_free + 0x400d2338 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed + 0x400d2338 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ctr_drbg_seed + 0x400d2338 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ctr_drbg_random_with_add + 0x400d2338 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ctr_drbg_random + 0x400d2338 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_gen_public_restartable + 0x400d2338 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.ecdh_compute_shared_restartable + 0x400d2338 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x18 (size before relaxing) + .literal.ecdh_free_internal + 0x400d233c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecdh_gen_public + 0x400d233c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_compute_shared + 0x400d233c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_calc_secret_internal + 0x400d233c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecdh_init + 0x400d233c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_free + 0x400d233c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_calc_secret + 0x400d233c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.derive_mpi + 0x400d233c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x10 (size before relaxing) + .literal.ecdsa_signature_to_asn1 + 0x400d233c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecdsa_sign_restartable + 0x400d2340 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_ecdsa_sign_det_restartable + 0x400d2348 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_ecdsa_verify_restartable + 0x400d234c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x6c (size before relaxing) + .literal.mbedtls_ecdsa_write_signature_restartable + 0x400d2350 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecdsa_write_signature + 0x400d2350 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_read_signature_restartable + 0x400d2350 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecdsa_read_signature + 0x400d2358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_init + 0x400d2358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_free + 0x400d2358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.ecp_pick_window_size + 0x400d2358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mpi_init_many + 0x400d2358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mpi_free_many + 0x400d2358 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.ecp_check_bad_points_mx + 0x400d2358 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .literal.ecp_check_pubkey_mx + 0x400d2360 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_sub_int_mod + 0x400d2360 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_sub_mod + 0x400d2360 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_modp + 0x400d2360 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_mpi_mul_mod + 0x400d2360 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_add_mod + 0x400d2364 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_sw_rhs + 0x400d2364 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_sw_derive_y + 0x400d2364 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.ecp_check_pubkey_sw + 0x400d2368 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x30 (size before relaxing) + .literal.ecp_double_add_mxz + 0x400d2368 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x48 (size before relaxing) + .literal.ecp_randomize_mxz + 0x400d2368 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.ecp_randomize_jac + 0x400d2368 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ecp_gen_privkey_sw + 0x400d2368 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_normalize_mxz + 0x400d2368 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_normalize_jac + 0x400d2368 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_mpi_mul_int_mod + 0x400d2368 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_shift_l_mod + 0x400d2368 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_double_jac + 0x400d2368 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x78 (size before relaxing) + .literal.ecp_normalize_jac_many + 0x400d236c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x58 (size before relaxing) + .literal.ecp_safe_invert_jac + 0x400d2374 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_select_comb + 0x400d2374 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.ecp_comb_recode_core + 0x400d2374 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_comb_recode_scalar + 0x400d2374 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecp_gen_privkey_mx + 0x400d2374 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecp_curve_list + 0x400d2374 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_grp_id_list + 0x400d2378 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_point_init + 0x400d2380 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_init + 0x400d2380 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_keypair_init + 0x400d2380 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_point_free + 0x400d2380 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_free + 0x400d2380 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ecp_keypair_free + 0x400d2380 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_copy + 0x400d2380 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_mul_mxz + 0x400d2380 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5c (size before relaxing) + .literal.mbedtls_ecp_group_copy + 0x400d2380 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_set_zero + 0x400d2380 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_add_mixed + 0x400d2380 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x78 (size before relaxing) + .literal.ecp_precompute_comb + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x28 (size before relaxing) + .literal.ecp_mul_comb_core + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.ecp_mul_comb_after_precomp + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_mul_comb + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecp_is_zero + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_point_cmp + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecp_point_read_binary + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_ecp_check_pubkey + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecp_check_privkey + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.ecp_mul_restartable_internal + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_mul_restartable + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_mul + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_mul_shortcuts + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_ecp_muladd_restartable + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_ecp_muladd + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_gen_privkey + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecp_check_pub_priv + 0x400d2384 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .literal.ecp_mod_p255 + 0x400d2384 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x10 (size before relaxing) + .literal.ecp_mod_koblitz + 0x400d238c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x2c (size before relaxing) + .literal.ecp_mod_p256k1 + 0x400d2390 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p224k1 + 0x400d2394 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p192k1 + 0x400d2398 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p521 + 0x400d239c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_mod_p384 + 0x400d239c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p256 + 0x400d239c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p224 + 0x400d239c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p192 + 0x400d239c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x28 (size before relaxing) + .literal.ecp_group_load + 0x400d239c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_use_curve25519 + 0x400d23a0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_ecp_group_load + 0x400d23a8 0x144 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x180 (size before relaxing) + .literal.entropy_update + 0x400d24ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x20 (size before relaxing) + .literal.entropy_gather_internal + 0x400d24ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_free + 0x400d24ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_init + 0x400d24ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_entropy_func + 0x400d24f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_hmac_drbg_init + 0x400d24f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_hmac_drbg_update + 0x400d24f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x2c (size before relaxing) + .literal.hmac_drbg_reseed_core + 0x400d24f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_hmac_drbg_seed_buf + 0x400d24f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_hmac_drbg_reseed + 0x400d24f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_random_with_add + 0x400d24f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_hmac_drbg_random + 0x400d24f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_free + 0x400d24f4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xc (size before relaxing) + .literal.oid_pk_alg_from_asn1 + 0x400d24f4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_grp_id_from_asn1 + 0x400d24fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_grp_id_algid_from_asn1 + 0x400d2500 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_oid_get_pk_alg + 0x400d2504 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_ec_grp + 0x400d2504 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_ec_grp_algid + 0x400d2504 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_md + 0x400d2504 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_hardware_poll + 0x400d2508 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x4 (size before relaxing) + .text.esp_app_get_description + 0x400d2508 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x400d2508 esp_app_get_description + .text.esp_app_format_init_elf_sha256 + 0x400d2510 0x5c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x400d2510 esp_app_format_init_elf_sha256 + .text.esp_app_get_elf_sha256 + 0x400d256c 0x44 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x400d256c esp_app_get_elf_sha256 + .text.esp_pthread_cfg_key_destructor + 0x400d25b0 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xe (size before relaxing) + *fill* 0x400d25ba 0x2 + .text.esp_pthread_init + 0x400d25bc 0x36 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x3e (size before relaxing) + 0x400d25bc esp_pthread_init + *fill* 0x400d25f2 0x2 + .text.find_key + 0x400d25f4 0x2c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x2f (size before relaxing) + *fill* 0x400d2620 0x0 + .text.pthread_cleanup_thread_specific_data_callback + 0x400d2620 0x3f esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4a (size before relaxing) + *fill* 0x400d265f 0x1 + .text.pthread_key_create + 0x400d2660 0x45 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4d (size before relaxing) + 0x400d2660 pthread_key_create + *fill* 0x400d26a5 0x3 + .text.pthread_key_delete + 0x400d26a8 0x3e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x49 (size before relaxing) + 0x400d26a8 pthread_key_delete + *fill* 0x400d26e6 0x2 + .text.pthread_getspecific + 0x400d26e8 0x1c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x20 (size before relaxing) + 0x400d26e8 pthread_getspecific + .text.pthread_setspecific + 0x400d2704 0xb7 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0xc3 (size before relaxing) + 0x400d2704 pthread_setspecific + *fill* 0x400d27bb 0x1 + .text.core_intr_matrix_clear + 0x400d27bc 0x23 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x400d27df 0x1 + .text.start_other_core + 0x400d27e0 0xe9 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x115 (size before relaxing) + *fill* 0x400d28c9 0x3 + .text.startup_resume_other_cores + 0x400d28cc 0x10 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x400d28cc startup_resume_other_cores + .text.esp_ipc_isr_init + 0x400d28dc 0x1f esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x400d28dc esp_ipc_isr_init + *fill* 0x400d28fb 0x1 + .text.esp_ipc_isr_port_init + 0x400d28fc 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x24 (size before relaxing) + 0x400d28fc esp_ipc_isr_port_init + .text.select_rtc_slow_clk + 0x400d291c 0x8c esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x9c (size before relaxing) + .text.esp_clk_init + 0x400d29a8 0xf5 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x131 (size before relaxing) + 0x400d29a8 esp_clk_init + *fill* 0x400d2a9d 0x3 + .text.esp_perip_clk_init + 0x400d2aa0 0xea esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x112 (size before relaxing) + 0x400d2aa0 esp_perip_clk_init + *fill* 0x400d2b8a 0x2 + .text.esp_cache_err_int_init + 0x400d2b8c 0x54 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x5c (size before relaxing) + 0x400d2b8c esp_cache_err_int_init + .text.esp_cache_err_get_cpuid + 0x400d2be0 0x29 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x2d (size before relaxing) + 0x400d2be0 esp_cache_err_get_cpuid + *fill* 0x400d2c09 0x3 + .text.esp_int_wdt_init + 0x400d2c0c 0xa4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0xb8 (size before relaxing) + 0x400d2c0c esp_int_wdt_init + .text.esp_int_wdt_cpu_init + 0x400d2cb0 0x2c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x34 (size before relaxing) + 0x400d2cb0 esp_int_wdt_cpu_init + .text.panic_print_char_uart + 0x400d2cdc 0x38 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text.disable_all_wdts + 0x400d2d14 0x3b esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4b (size before relaxing) + *fill* 0x400d2d4f 0x1 + .text.panic_print_char + 0x400d2d50 0xb esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xe (size before relaxing) + 0x400d2d50 panic_print_char + *fill* 0x400d2d5b 0x1 + .text.panic_print_str + 0x400d2d5c 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x400d2d5c panic_print_str + *fill* 0x400d2d76 0x2 + .text.print_abort_details + 0x400d2d78 0xd esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + *fill* 0x400d2d85 0x3 + .text.panic_print_hex + 0x400d2d88 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x2f (size before relaxing) + 0x400d2d88 panic_print_hex + *fill* 0x400d2db4 0x0 + .text.panic_print_dec + 0x400d2db4 0x3c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x46 (size before relaxing) + 0x400d2db4 panic_print_dec + *fill* 0x400d2df0 0x0 + .text.esp_panic_handler_reconfigure_wdts + 0x400d2df0 0x63 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x7b (size before relaxing) + 0x400d2df0 esp_panic_handler_reconfigure_wdts + *fill* 0x400d2e53 0x1 + .text.esp_panic_handler + 0x400d2e54 0x196 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x1f7 (size before relaxing) + 0x400d2e54 esp_panic_handler + *fill* 0x400d2fea 0x2 + .text.esp_register_shutdown_handler + 0x400d2fec 0x32 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x400d2fec esp_register_shutdown_handler + *fill* 0x400d301e 0x2 + .text.esp_unregister_shutdown_handler + 0x400d3020 0x2a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x400d3020 esp_unregister_shutdown_handler + *fill* 0x400d304a 0x2 + .text.esp_restart + 0x400d304c 0x20 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x26 (size before relaxing) + 0x400d304c esp_restart + *fill* 0x400d306c 0x0 + .text.do_global_ctors + 0x400d306c 0x19 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x400d3085 0x3 + .text.do_core_init + 0x400d3088 0x6d esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x88 (size before relaxing) + *fill* 0x400d30f5 0x3 + .text.do_system_init_fn + 0x400d30f8 0x51 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x59 (size before relaxing) + *fill* 0x400d3149 0x3 + .text.do_secondary_init + 0x400d314c 0x5e esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x62 (size before relaxing) + *fill* 0x400d31aa 0x2 + .text.start_cpu0_default + 0x400d31ac 0x1b4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x1f8 (size before relaxing) + 0x400d31ac start_cpu0 + .text.frame_to_panic_info + 0x400d3360 0x3d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x41 (size before relaxing) + *fill* 0x400d339d 0x3 + .text.panic_handler + 0x400d33a0 0x15a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x172 (size before relaxing) + *fill* 0x400d34fa 0x2 + .text.print_state_for_core + 0x400d34fc 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x2a (size before relaxing) + *fill* 0x400d3522 0x2 + .text.print_state + 0x400d3524 0x49 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x51 (size before relaxing) + *fill* 0x400d356d 0x3 + .text.panic_restart + 0x400d3570 0xf esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + 0x400d3570 panic_restart + *fill* 0x400d357f 0x1 + .text.esp_brownout_init + 0x400d3580 0x47 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x4b (size before relaxing) + 0x400d3580 esp_brownout_init + *fill* 0x400d35c7 0x1 + .text.print_debug_exception_details + 0x400d35c8 0x50 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x68 (size before relaxing) + .text.print_illegal_instruction_details + 0x400d3618 0x52 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x6a (size before relaxing) + *fill* 0x400d366a 0x2 + .text.panic_print_registers + 0x400d366c 0xd3 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x10f (size before relaxing) + 0x400d366c panic_print_registers + *fill* 0x400d373f 0x1 + .text.panic_arch_fill_info + 0x400d3740 0x32 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d3740 panic_arch_fill_info + *fill* 0x400d3772 0x2 + .text.panic_soc_fill_info + 0x400d3774 0x56 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d3774 panic_soc_fill_info + *fill* 0x400d37ca 0x2 + .text.panic_print_backtrace + 0x400d37cc 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d37cc panic_print_backtrace + .text.esp_vApplicationIdleHook + 0x400d37ec 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x33 (size before relaxing) + 0x400d37ec esp_vApplicationIdleHook + *fill* 0x400d381c 0x0 + .text.esp_register_freertos_idle_hook_for_cpu + 0x400d381c 0x51 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x59 (size before relaxing) + 0x400d381c esp_register_freertos_idle_hook_for_cpu + *fill* 0x400d386d 0x3 + .text.esp_register_freertos_tick_hook_for_cpu + 0x400d3870 0x4d esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x55 (size before relaxing) + 0x400d3870 esp_register_freertos_tick_hook_for_cpu + *fill* 0x400d38bd 0x3 + .text.esp_deregister_freertos_idle_hook_for_cpu + 0x400d38c0 0x3c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x40 (size before relaxing) + 0x400d38c0 esp_deregister_freertos_idle_hook_for_cpu + .text.uart_hal_rxfifo_rst + 0x400d38fc 0x82 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x400d38fc uart_hal_rxfifo_rst + *fill* 0x400d397e 0x2 + .text.uart_hal_write_txfifo + 0x400d3980 0x82 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x85 (size before relaxing) + 0x400d3980 uart_hal_write_txfifo + *fill* 0x400d3a02 0x2 + .text.brownout_hal_config + 0x400d3a04 0xb0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x400d3a04 brownout_hal_config + .text.heap_caps_get_free_size + 0x400d3ab4 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x400d3ab4 heap_caps_get_free_size + *fill* 0x400d3ae1 0x3 + .text.heap_caps_get_info + 0x400d3ae4 0x70 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x400d3ae4 heap_caps_get_info + .text.heap_caps_get_largest_free_block + 0x400d3b54 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x400d3b54 heap_caps_get_largest_free_block + *fill* 0x400d3b65 0x3 + .text.register_heap + 0x400d3b68 0x2f esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x32 (size before relaxing) + *fill* 0x400d3b97 0x1 + .text.heap_caps_enable_nonos_stack_heaps + 0x400d3b98 0x28 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2c (size before relaxing) + 0x400d3b98 heap_caps_enable_nonos_stack_heaps + .text.heap_caps_init + 0x400d3bc0 0x2ae esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2be (size before relaxing) + 0x400d3bc0 heap_caps_init + *fill* 0x400d3e6e 0x2 + .text.s_get_num_reserved_regions + 0x400d3e70 0x11 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x400d3e81 0x3 + .text.s_prepare_reserved_regions + 0x400d3e84 0xb0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0xb4 (size before relaxing) + .text.soc_get_available_memory_region_max_count + 0x400d3f34 0x12 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x400d3f34 soc_get_available_memory_region_max_count + *fill* 0x400d3f46 0x2 + .text.soc_get_available_memory_regions + 0x400d3f48 0x119 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x11d (size before relaxing) + 0x400d3f48 soc_get_available_memory_regions + *fill* 0x400d4061 0x3 + .text.calc_checksum + 0x400d4064 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_slowclk_cal_get + 0x400d4088 0xd esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x400d4088 esp_clk_slowclk_cal_get + *fill* 0x400d4095 0x3 + .text.esp_rtc_get_time_us + 0x400d4098 0xd4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xf3 (size before relaxing) + 0x400d4098 esp_rtc_get_time_us + *fill* 0x400d416c 0x0 + .text.esp_clk_slowclk_cal_set + 0x400d416c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x13 (size before relaxing) + 0x400d416c esp_clk_slowclk_cal_set + *fill* 0x400d417c 0x0 + .text.insert_vector_desc + 0x400d417c 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.find_desc_for_int + 0x400d41cc 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.get_desc_for_int + 0x400d41f0 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x5e (size before relaxing) + *fill* 0x400d4242 0x2 + .text.find_desc_for_source + 0x400d4244 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x400d42b6 0x2 + .text.is_vect_desc_usable + 0x400d42b8 0xe1 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x400d4399 0x3 + .text.get_available_int + 0x400d439c 0x149 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x159 (size before relaxing) + *fill* 0x400d44e5 0x3 + .text.esp_intr_alloc_intrstatus + 0x400d44e8 0x311 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x339 (size before relaxing) + 0x400d44e8 esp_intr_alloc_intrstatus + *fill* 0x400d47f9 0x3 + .text.esp_intr_alloc + 0x400d47fc 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + 0x400d47fc esp_intr_alloc + .text.intr_free_for_current_cpu + 0x400d4814 0xde esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xee (size before relaxing) + *fill* 0x400d48f2 0x2 + .text.esp_intr_free + 0x400d48f4 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x52 (size before relaxing) + 0x400d48f4 esp_intr_free + *fill* 0x400d4942 0x2 + .text.intr_free_for_other_cpu + 0x400d4944 0xa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xe (size before relaxing) + *fill* 0x400d494e 0x2 + .text.s_rtc_isr_noniram_hook + 0x400d4950 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + *fill* 0x400d495f 0x1 + .text.s_rtc_isr_noniram_hook_relieve + 0x400d4960 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + *fill* 0x400d4972 0x2 + .text.rtc_isr_ensure_installed + 0x400d4974 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x5f (size before relaxing) + *fill* 0x400d49cc 0x0 + .text.rtc_isr_register + 0x400d49cc 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x6a (size before relaxing) + 0x400d49cc rtc_isr_register + *fill* 0x400d4a22 0x2 + .text.rtcio_ll_force_hold_disable + 0x400d4a24 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + *fill* 0x400d4a87 0x1 + .text.esp_deep_sleep_wakeup_io_reset + 0x400d4a88 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x68 (size before relaxing) + 0x400d4a88 esp_deep_sleep_wakeup_io_reset + .text.esp_chip_info + 0x400d4aec 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x9e (size before relaxing) + 0x400d4aec esp_chip_info + *fill* 0x400d4b86 0x2 + .text.esp_newlib_locks_init + 0x400d4b88 0x59 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x65 (size before relaxing) + 0x400d4b88 esp_newlib_locks_init + *fill* 0x400d4be1 0x3 + .text.esp_cleanup_r + 0x400d4be4 0x3c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .text.raise_r_stub + 0x400d4c20 0xf esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + *fill* 0x400d4c2f 0x1 + .text.esp_newlib_init + 0x400d4c30 0x4a esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x52 (size before relaxing) + 0x400d4c30 esp_newlib_init + 0x400d4c30 esp_setup_newlib_syscalls + *fill* 0x400d4c7a 0x2 + .text.esp_newlib_init_global_stdio + 0x400d4c7c 0x70 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x400d4c7c esp_newlib_init_global_stdio + .text.syscall_not_implemented_aborts + 0x400d4cec 0x6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x9 (size before relaxing) + 0x400d4cec _exit + 0x400d4cec _sbrk_r + 0x400d4cec _raise_r + 0x400d4cec raise + *fill* 0x400d4cf2 0x2 + .text.fcntl 0x400d4cf4 0x3a esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x3e (size before relaxing) + 0x400d4cf4 fcntl + *fill* 0x400d4d2e 0x2 + .text.adjust_boot_time + 0x400d4d30 0x13a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x13e (size before relaxing) + *fill* 0x400d4e6a 0x2 + .text.get_adjusted_boot_time + 0x400d4e6c 0x1a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x22 (size before relaxing) + *fill* 0x400d4e86 0x2 + .text.adjtime_corr_stop + 0x400d4e88 0x29 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x34 (size before relaxing) + *fill* 0x400d4eb1 0x3 + .text.settimeofday + 0x400d4eb4 0x49 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x54 (size before relaxing) + 0x400d4eb4 settimeofday + *fill* 0x400d4efd 0x3 + .text.usleep 0x400d4f00 0x2c esp-idf/newlib/libnewlib.a(time.c.obj) + 0x400d4f00 usleep + .text.sleep 0x400d4f2c 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x13 (size before relaxing) + 0x400d4f2c sleep + *fill* 0x400d4f3c 0x0 + .text.esp_newlib_time_init + 0x400d4f3c 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0xb (size before relaxing) + 0x400d4f3c esp_newlib_time_init + *fill* 0x400d4f44 0x0 + .text.esp_time_impl_get_time_since_boot + 0x400d4f44 0x1f esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x400d4f44 esp_time_impl_get_time_since_boot + *fill* 0x400d4f63 0x1 + .text.esp_time_impl_set_boot_time + 0x400d4f64 0x23 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x400d4f64 esp_time_impl_set_boot_time + *fill* 0x400d4f87 0x1 + .text.esp_time_impl_get_boot_time + 0x400d4f88 0x23 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x400d4f88 esp_time_impl_get_boot_time + *fill* 0x400d4fab 0x1 + .text.esp_set_time_from_rtc + 0x400d4fac 0x27 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x2f (size before relaxing) + 0x400d4fac esp_set_time_from_rtc + *fill* 0x400d4fd3 0x1 + .text.esp_sync_timekeeping_timers + 0x400d4fd4 0x60 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x70 (size before relaxing) + 0x400d4fd4 esp_sync_timekeeping_timers + .text.esp_time_impl_init + 0x400d5034 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xb (size before relaxing) + 0x400d5034 esp_time_impl_init + *fill* 0x400d503c 0x0 + .text.init_timer_task + 0x400d503c 0x75 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x79 (size before relaxing) + *fill* 0x400d50b1 0x3 + .text.timer_process_alarm + 0x400d50b4 0x11d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x128 (size before relaxing) + *fill* 0x400d51d1 0x3 + .text.timer_task + 0x400d51d4 0x17 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1b (size before relaxing) + *fill* 0x400d51eb 0x1 + .text.deinit_timer_task + 0x400d51ec 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x400d5206 0x2 + .text.esp_timer_create + 0x400d5208 0x81 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x400d5208 esp_timer_create + *fill* 0x400d5289 0x3 + .text.esp_timer_delete + 0x400d528c 0x55 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x65 (size before relaxing) + 0x400d528c esp_timer_delete + *fill* 0x400d52e1 0x3 + .text.esp_timer_early_init + 0x400d52e4 0xf esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x13 (size before relaxing) + 0x400d52e4 esp_timer_early_init + *fill* 0x400d52f3 0x1 + .text.esp_timer_init + 0x400d52f4 0x32 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x3e (size before relaxing) + 0x400d52f4 esp_timer_init + *fill* 0x400d5326 0x2 + .text.__esp_system_init_fn_esp_timer_startup_init + 0x400d5328 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xd (size before relaxing) + *fill* 0x400d5332 0x2 + .text.esp_timer_impl_init_system_time + 0x400d5334 0x5a esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x6a (size before relaxing) + 0x400d5334 esp_timer_impl_init_system_time + *fill* 0x400d538e 0x2 + .text.esp_timer_impl_early_init + 0x400d5390 0xd8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xdc (size before relaxing) + 0x400d5390 esp_timer_impl_early_init + .text.esp_timer_impl_init + 0x400d5468 0xd7 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xf3 (size before relaxing) + 0x400d5468 esp_timer_impl_init + *fill* 0x400d553f 0x1 + .text.set_xpd_sar + 0x400d5540 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x400d5540 set_xpd_sar + .text.set_global_fd_sets + 0x400d5568 0xf8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.translate_path + 0x400d5660 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x400d569e 0x2 + .text.esp_vfs_register_common + 0x400d56a0 0xf6 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xfa (size before relaxing) + 0x400d56a0 esp_vfs_register_common + *fill* 0x400d5796 0x2 + .text.esp_vfs_register + 0x400d5798 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + 0x400d5798 esp_vfs_register + .text.esp_vfs_register_fd_range + 0x400d57b4 0x106 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10e (size before relaxing) + 0x400d57b4 esp_vfs_register_fd_range + *fill* 0x400d58ba 0x2 + .text.get_vfs_for_index + 0x400d58bc 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d58bc get_vfs_for_index + *fill* 0x400d58de 0x2 + .text.get_vfs_for_fd + 0x400d58e0 0x25 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x400d5905 0x3 + .text.call_end_selects + 0x400d5908 0x31 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x400d5939 0x3 + .text.get_vfs_for_path + 0x400d593c 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d593c get_vfs_for_path + *fill* 0x400d59aa 0x2 + .text.esp_vfs_open + 0x400d59ac 0x106 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d59ac _open_r + 0x400d59ac esp_vfs_open + *fill* 0x400d5ab2 0x2 + .text.esp_vfs_write + 0x400d5ab4 0x6d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x400d5ab4 _write_r + 0x400d5ab4 esp_vfs_write + *fill* 0x400d5b21 0x3 + .text.esp_vfs_lseek + 0x400d5b24 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x74 (size before relaxing) + 0x400d5b24 esp_vfs_lseek + 0x400d5b24 _lseek_r + .text.esp_vfs_read + 0x400d5b94 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x74 (size before relaxing) + 0x400d5b94 _read_r + 0x400d5b94 esp_vfs_read + .text.esp_vfs_close + 0x400d5c04 0xbf esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc7 (size before relaxing) + 0x400d5c04 esp_vfs_close + 0x400d5c04 _close_r + *fill* 0x400d5cc3 0x1 + .text.esp_vfs_fstat + 0x400d5cc4 0x6a esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x6e (size before relaxing) + 0x400d5cc4 _fstat_r + 0x400d5cc4 esp_vfs_fstat + *fill* 0x400d5d2e 0x2 + .text.esp_vfs_fcntl_r + 0x400d5d30 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x74 (size before relaxing) + 0x400d5d30 _fcntl_r + 0x400d5d30 esp_vfs_fcntl_r + .text.esp_vfs_stat + 0x400d5da0 0x47 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4b (size before relaxing) + 0x400d5da0 _stat_r + 0x400d5da0 esp_vfs_stat + *fill* 0x400d5de7 0x1 + .text.esp_vfs_link + 0x400d5de8 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x80 (size before relaxing) + 0x400d5de8 esp_vfs_link + 0x400d5de8 _link_r + .text.esp_vfs_unlink + 0x400d5e60 0x50 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x54 (size before relaxing) + 0x400d5e60 esp_vfs_unlink + 0x400d5e60 _unlink_r + .text.esp_vfs_rename + 0x400d5eb0 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8c (size before relaxing) + 0x400d5eb0 esp_vfs_rename + 0x400d5eb0 _rename_r + .text.esp_vfs_select + 0x400d5f34 0x3fa esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x436 (size before relaxing) + 0x400d5f34 select + 0x400d5f34 esp_vfs_select + *fill* 0x400d632e 0x2 + .text.esp_vfs_select_triggered + 0x400d6330 0x45 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x49 (size before relaxing) + 0x400d6330 esp_vfs_select_triggered + *fill* 0x400d6375 0x3 + .text.esp_vfs_select_triggered_isr + 0x400d6378 0x41 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x45 (size before relaxing) + 0x400d6378 esp_vfs_select_triggered_isr + *fill* 0x400d63b9 0x3 + .text.console_open + 0x400d63bc 0x21 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d63bc console_open + *fill* 0x400d63dd 0x3 + .text.console_write + 0x400d63e0 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d63e0 console_write + .text.console_fstat + 0x400d6400 0x18 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x1c (size before relaxing) + 0x400d6400 console_fstat + .text.console_close + 0x400d6418 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d6418 console_close + .text.console_read + 0x400d6434 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d6434 console_read + .text.console_fcntl + 0x400d6454 0x21 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d6454 console_fcntl + *fill* 0x400d6475 0x3 + .text.console_fsync + 0x400d6478 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d6478 console_fsync + *fill* 0x400d6495 0x3 + .text.console_access + 0x400d6498 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d6498 console_access + *fill* 0x400d64b5 0x3 + .text.console_end_select + 0x400d64b8 0x2d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d64b8 console_end_select + *fill* 0x400d64e5 0x3 + .text.console_tcsetattr + 0x400d64e8 0x21 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d64e8 console_tcsetattr + *fill* 0x400d6509 0x3 + .text.console_tcgetattr + 0x400d650c 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x20 (size before relaxing) + 0x400d650c console_tcgetattr + .text.console_tcdrain + 0x400d6528 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d6528 console_tcdrain + *fill* 0x400d6545 0x3 + .text.console_tcflush + 0x400d6548 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x20 (size before relaxing) + 0x400d6548 console_tcflush + .text.console_start_select + 0x400d6564 0x41 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + *fill* 0x400d65a5 0x3 + .text.esp_vfs_dev_console_register + 0x400d65a8 0x15 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d65a8 esp_vfs_dev_console_register + *fill* 0x400d65bd 0x3 + .text.esp_vfs_console_register + 0x400d65c0 0x22 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x2a (size before relaxing) + 0x400d65c0 esp_vfs_console_register + *fill* 0x400d65e2 0x2 + .text.uart_read_char + 0x400d65e4 0x22 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d6606 0x2 + .text.unregister_select + 0x400d6608 0x60 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x6c (size before relaxing) + .text.uart_end_select + 0x400d6668 0x82 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x96 (size before relaxing) + *fill* 0x400d66ea 0x2 + .text.register_select + 0x400d66ec 0x51 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x55 (size before relaxing) + *fill* 0x400d673d 0x3 + .text.uart_start_select + 0x400d6740 0x1a5 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c5 (size before relaxing) + *fill* 0x400d68e5 0x3 + .text.select_notif_callback_isr + 0x400d68e8 0xde esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xea (size before relaxing) + *fill* 0x400d69c6 0x2 + .text.uart_tcflush + 0x400d69c8 0x42 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d6a0a 0x2 + .text.uart_tcdrain + 0x400d6a0c 0x32 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d6a3e 0x2 + .text.uart_tcgetattr + 0x400d6a40 0x392 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d6dd2 0x2 + .text.uart_tx_char + 0x400d6dd4 0x7e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x81 (size before relaxing) + *fill* 0x400d6e52 0x2 + .text.uart_rx_char + 0x400d6e54 0xed esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d6f41 0x3 + .text.uart_fcntl + 0x400d6f44 0x69 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d6fad 0x3 + .text.uart_fstat + 0x400d6fb0 0x35 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d6fe5 0x3 + .text.uart_close + 0x400d6fe8 0x22 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d700a 0x2 + .text.uart_return_char + 0x400d700c 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d7032 0x2 + .text.uart_tcsetattr + 0x400d7034 0x38e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d73c2 0x2 + .text.uart_access + 0x400d73c4 0x5c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_open + 0x400d7420 0x4f esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d746f 0x1 + .text.uart_fsync + 0x400d7470 0x39 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x45 (size before relaxing) + *fill* 0x400d74a9 0x3 + .text.uart_read + 0x400d74ac 0xaa esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xba (size before relaxing) + *fill* 0x400d7556 0x2 + .text.uart_write + 0x400d7558 0x86 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x8e (size before relaxing) + *fill* 0x400d75de 0x2 + .text.esp_vfs_uart_get_vfs + 0x400d75e0 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x400d75e0 esp_vfs_uart_get_vfs + .text.event_handler + 0x400d75e8 0xaa esp-idf/main/libmain.a(station_example_main.c.obj) + 0xc6 (size before relaxing) + *fill* 0x400d7692 0x2 + .text.cwcallback + 0x400d7694 0xe esp-idf/main/libmain.a(station_example_main.c.obj) + 0x400d7694 cwcallback + *fill* 0x400d76a2 0x2 + .text.ccwcallback + 0x400d76a4 0xe esp-idf/main/libmain.a(station_example_main.c.obj) + 0x400d76a4 ccwcallback + *fill* 0x400d76b2 0x2 + .text.buttonCallback + 0x400d76b4 0xe esp-idf/main/libmain.a(station_example_main.c.obj) + 0x400d76b4 buttonCallback + *fill* 0x400d76c2 0x2 + .text.createFilterbtw + 0x400d76c4 0x1c esp-idf/main/libmain.a(station_example_main.c.obj) + .text.configure_i2s + 0x400d76e0 0x113 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x14b (size before relaxing) + 0x400d76e0 configure_i2s + *fill* 0x400d77f3 0x1 + .text.udp_server_task + 0x400d77f4 0x185 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x1cd (size before relaxing) + *fill* 0x400d7979 0x3 + .text.wifi_init_sta + 0x400d797c 0x287 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x2db (size before relaxing) + 0x400d797c wifi_init_sta + *fill* 0x400d7c03 0x1 + .text.app_main + 0x400d7c04 0x7f esp-idf/main/libmain.a(station_example_main.c.obj) + 0x9b (size before relaxing) + 0x400d7c04 app_main + *fill* 0x400d7c83 0x1 + .text.index_handler + 0x400d7c84 0x14 esp-idf/main/libmain.a(http_control.c.obj) + 0x400d7c84 index_handler + .text.volumeChangeCB + 0x400d7c98 0xa1 esp-idf/main/libmain.a(http_control.c.obj) + 0xb1 (size before relaxing) + 0x400d7c98 volumeChangeCB + *fill* 0x400d7d39 0x3 + .text.getVolumeLevel + 0x400d7d3c 0x51 esp-idf/main/libmain.a(http_control.c.obj) + 0x400d7d3c getVolumeLevel + *fill* 0x400d7d8d 0x3 + .text.start_webserver + 0x400d7d90 0x4d esp-idf/main/libmain.a(http_control.c.obj) + 0x59 (size before relaxing) + 0x400d7d90 start_webserver + *fill* 0x400d7ddd 0x3 + .text.http_filter + 0x400d7de0 0x14 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x400d7de0 http_filter + .text.createFilter + 0x400d7df4 0x22b esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x247 (size before relaxing) + 0x400d7df4 createFilter + *fill* 0x400d801f 0x1 + .text.http_filter_submit + 0x400d8020 0xc0 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0xd8 (size before relaxing) + 0x400d8020 http_filter_submit + .text.getFilterJson + 0x400d80e0 0x3a esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x400d80e0 getFilterJson + *fill* 0x400d811a 0x2 + .text.http_getFilter + 0x400d811c 0x50 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x400d811c http_getFilter + .text.filter_registerHTTPHandlers + 0x400d816c 0x1e esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x26 (size before relaxing) + 0x400d816c filter_registerHTTPHandlers + *fill* 0x400d818a 0x2 + .text.printStatus + 0x400d818c 0x30 esp-idf/main/libmain.a(button.c.obj) + 0x3b (size before relaxing) + *fill* 0x400d81bc 0x0 + .text.registerInterrupt + 0x400d81bc 0xc8 esp-idf/main/libmain.a(button.c.obj) + 0xe8 (size before relaxing) + 0x400d81bc registerInterrupt + .text.esp_efuse_read_field_blob + 0x400d8284 0x61 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x65 (size before relaxing) + 0x400d8284 esp_efuse_read_field_blob + *fill* 0x400d82e5 0x3 + .text.esp_efuse_check_errors + 0x400d82e8 0xd esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x400d82e8 esp_efuse_check_errors + *fill* 0x400d82f5 0x3 + .text.check_range_of_bits + 0x400d82f8 0x52 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x56 (size before relaxing) + *fill* 0x400d834a 0x2 + .text.esp_efuse_utility_process + 0x400d834c 0x149 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x150 (size before relaxing) + 0x400d834c esp_efuse_utility_process + *fill* 0x400d8495 0x3 + .text.esp_efuse_utility_read_reg + 0x400d8498 0x70 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x77 (size before relaxing) + 0x400d8498 esp_efuse_utility_read_reg + *fill* 0x400d8508 0x0 + .text.esp_efuse_utility_fill_buff + 0x400d8508 0xbe esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x400d8508 esp_efuse_utility_fill_buff + *fill* 0x400d85c6 0x2 + .text.esp_efuse_utility_count_once + 0x400d85c8 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x400d85c8 esp_efuse_utility_count_once + *fill* 0x400d85fa 0x2 + .text.esp_efuse_get_coding_scheme + 0x400d85fc 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x400d85fc esp_efuse_get_coding_scheme + .text.s_get_bus_mask + 0x400d8628 0xd5 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xd9 (size before relaxing) + *fill* 0x400d86fd 0x3 + .text.s_reserve_irom_region + 0x400d8700 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x80 (size before relaxing) + .text.s_reserve_drom_region + 0x400d877c 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x80 (size before relaxing) + .text.esp_mmu_map_init + 0x400d87f8 0x190 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x19c (size before relaxing) + 0x400d87f8 esp_mmu_map_init + .text.esp_mmu_map + 0x400d8988 0x3c9 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x409 (size before relaxing) + 0x400d8988 esp_mmu_map + *fill* 0x400d8d51 0x3 + .text.esp_mmu_unmap + 0x400d8d54 0x11c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x130 (size before relaxing) + 0x400d8d54 esp_mmu_unmap + .text.esp_mmu_vaddr_to_paddr + 0x400d8e70 0xb6 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xca (size before relaxing) + 0x400d8e70 esp_mmu_vaddr_to_paddr + *fill* 0x400d8f26 0x2 + .text.gpio_input_disable + 0x400d8f28 0x7d esp-idf/driver/libdriver.a(gpio.c.obj) + 0x81 (size before relaxing) + *fill* 0x400d8fa5 0x3 + .text.gpio_od_enable + 0x400d8fa8 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) + 0x80 (size before relaxing) + .text.gpio_od_disable + 0x400d9024 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) + 0x80 (size before relaxing) + .text.gpio_output_disable + 0x400d90a0 0xe1 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xe8 (size before relaxing) + *fill* 0x400d9181 0x3 + .text.gpio_ll_pullup_en + 0x400d9184 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x400d91c3 0x1 + .text.gpio_ll_pulldown_en + 0x400d91c4 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_ll_input_enable + 0x400d9204 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_input_enable + 0x400d9244 0x71 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x75 (size before relaxing) + *fill* 0x400d92b5 0x3 + .text.gpio_intr_enable_on_core + 0x400d92b8 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x400d92ce 0x2 + .text.gpio_output_enable + 0x400d92d0 0xbc esp-idf/driver/libdriver.a(gpio.c.obj) + 0xc0 (size before relaxing) + .text.gpio_isr_register_on_core_static + 0x400d938c 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x18 (size before relaxing) + .text.gpio_pullup_en + 0x400d93a0 0x8e esp-idf/driver/libdriver.a(gpio.c.obj) + 0x9e (size before relaxing) + 0x400d93a0 gpio_pullup_en + *fill* 0x400d942e 0x2 + .text.gpio_pullup_dis + 0x400d9430 0xa1 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xad (size before relaxing) + 0x400d9430 gpio_pullup_dis + *fill* 0x400d94d1 0x3 + .text.gpio_pulldown_en + 0x400d94d4 0x8e esp-idf/driver/libdriver.a(gpio.c.obj) + 0x9e (size before relaxing) + 0x400d94d4 gpio_pulldown_en + *fill* 0x400d9562 0x2 + .text.gpio_pulldown_dis + 0x400d9564 0xa1 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xad (size before relaxing) + 0x400d9564 gpio_pulldown_dis + *fill* 0x400d9605 0x3 + .text.gpio_set_intr_type + 0x400d9608 0x124 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x12c (size before relaxing) + 0x400d9608 gpio_set_intr_type + .text.gpio_intr_enable + 0x400d972c 0x92 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x9a (size before relaxing) + 0x400d972c gpio_intr_enable + *fill* 0x400d97be 0x2 + .text.gpio_intr_disable + 0x400d97c0 0x70 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x74 (size before relaxing) + 0x400d97c0 gpio_intr_disable + .text.gpio_set_direction + 0x400d9830 0xe8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xfc (size before relaxing) + 0x400d9830 gpio_set_direction + .text.gpio_config + 0x400d9918 0x1e6 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x216 (size before relaxing) + 0x400d9918 gpio_config + *fill* 0x400d9afe 0x2 + .text.gpio_isr_handler_add + 0x400d9b00 0xc9 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xe5 (size before relaxing) + 0x400d9b00 gpio_isr_handler_add + *fill* 0x400d9bc9 0x3 + .text.gpio_uninstall_isr_service + 0x400d9bcc 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + 0x4e (size before relaxing) + 0x400d9bcc gpio_uninstall_isr_service + *fill* 0x400d9c0a 0x2 + .text.gpio_isr_register + 0x400d9c0c 0xa6 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xbe (size before relaxing) + 0x400d9c0c gpio_isr_register + *fill* 0x400d9cb2 0x2 + .text.gpio_install_isr_service + 0x400d9cb4 0x96 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xb2 (size before relaxing) + 0x400d9cb4 gpio_install_isr_service + *fill* 0x400d9d4a 0x2 + .text.rtcio_ll_iomux_func_sel + 0x400d9d4c 0x61 esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x400d9dad 0x3 + .text.rtcio_ll_function_select + 0x400d9db0 0xa2 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0xaa (size before relaxing) + *fill* 0x400d9e52 0x2 + .text.rtcio_ll_pullup_enable + 0x400d9e54 0x4b esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x400d9e9f 0x1 + .text.rtcio_ll_pullup_disable + 0x400d9ea0 0x4e esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x400d9eee 0x2 + .text.rtcio_ll_pulldown_enable + 0x400d9ef0 0x4b esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x400d9f3b 0x1 + .text.rtcio_ll_pulldown_disable + 0x400d9f3c 0x4e esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x400d9f8a 0x2 + .text.rtc_gpio_is_valid_gpio + 0x400d9f8c 0x21 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x400d9f8c rtc_gpio_is_valid_gpio + *fill* 0x400d9fad 0x3 + .text.rtc_io_number_get + 0x400d9fb0 0xd esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x400d9fb0 rtc_io_number_get + *fill* 0x400d9fbd 0x3 + .text.rtc_gpio_deinit + 0x400d9fc0 0x49 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x5d (size before relaxing) + 0x400d9fc0 rtc_gpio_deinit + *fill* 0x400da009 0x3 + .text.rtc_gpio_pullup_en + 0x400da00c 0x44 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x5c (size before relaxing) + 0x400da00c rtc_gpio_pullup_en + .text.rtc_gpio_pullup_dis + 0x400da050 0x44 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x5c (size before relaxing) + 0x400da050 rtc_gpio_pullup_dis + .text.rtc_gpio_pulldown_en + 0x400da094 0x44 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x5c (size before relaxing) + 0x400da094 rtc_gpio_pulldown_en + .text.rtc_gpio_pulldown_dis + 0x400da0d8 0x44 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x5c (size before relaxing) + 0x400da0d8 rtc_gpio_pulldown_dis + .text.i2s_tx_reset + 0x400da11c 0x9c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_rx_reset + 0x400da1b8 0x9c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_tx_start + 0x400da254 0x70 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_rx_start + 0x400da2c4 0x73 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x400da337 0x1 + .text.i2s_tx_stop + 0x400da338 0x51 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x400da389 0x3 + .text.i2s_rx_stop + 0x400da38c 0x55 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x400da3e1 0x3 + .text.i2s_get_buf_size + 0x400da3e4 0x30 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_dac_set_slot_legacy + 0x400da414 0x136 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x400da54a 0x2 + .text.i2s_adc_set_slot_legacy + 0x400da54c 0xec esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_mode_identify + 0x400da638 0x58 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .text.i2s_config_transfer + 0x400da690 0x12a esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + *fill* 0x400da7ba 0x2 + .text.i2s_check_cfg_validity + 0x400da7bc 0x130 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x158 (size before relaxing) + .text.i2s_set_slot_legacy + 0x400da8ec 0xcf esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0xd7 (size before relaxing) + *fill* 0x400da9bb 0x1 + .text.i2s_config_source_clock + 0x400da9bc 0x66 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x72 (size before relaxing) + *fill* 0x400daa22 0x2 + .text.i2s_calculate_adc_dac_clock + 0x400daa24 0xc2 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0xd6 (size before relaxing) + *fill* 0x400daae6 0x2 + .text.i2s_calculate_pdm_tx_clock + 0x400daae8 0xca esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0xda (size before relaxing) + *fill* 0x400dabb2 0x2 + .text.i2s_calculate_pdm_rx_clock + 0x400dabb4 0xce esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0xe2 (size before relaxing) + *fill* 0x400dac82 0x2 + .text.i2s_calculate_common_clock + 0x400dac84 0x8e esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x96 (size before relaxing) + *fill* 0x400dad12 0x2 + .text.i2s_calculate_clock + 0x400dad14 0xdc esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0xfc (size before relaxing) + .text.i2s_set_clock_legacy + 0x400dadf0 0x42 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x4a (size before relaxing) + *fill* 0x400dae32 0x2 + .text.i2s_delete_dma_buffer + 0x400dae34 0x7b esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x83 (size before relaxing) + *fill* 0x400daeaf 0x1 + .text.i2s_alloc_dma_buffer + 0x400daeb0 0x1d8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x1f0 (size before relaxing) + .text.i2s_realloc_dma_buffer + 0x400db088 0x54 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x68 (size before relaxing) + .text.i2s_destroy_dma_object + 0x400db0dc 0x7d esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x8d (size before relaxing) + *fill* 0x400db159 0x3 + .text.i2s_dma_intr_init + 0x400db15c 0x44 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x4c (size before relaxing) + .text.i2s_create_dma_object + 0x400db1a0 0xee esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x11a (size before relaxing) + *fill* 0x400db28e 0x2 + .text.i2s_dma_object_init + 0x400db290 0x9f esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0xb7 (size before relaxing) + *fill* 0x400db32f 0x1 + .text.i2s_init_legacy + 0x400db330 0x350 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x380 (size before relaxing) + .text.i2s_check_set_mclk + 0x400db680 0x48 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x54 (size before relaxing) + .text.gpio_matrix_out_check_and_set + 0x400db6c8 0x5e esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x62 (size before relaxing) + *fill* 0x400db726 0x2 + .text.gpio_matrix_in_check_and_set + 0x400db728 0x5b esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x5f (size before relaxing) + *fill* 0x400db783 0x1 + .text.i2s_start + 0x400db784 0x7a esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x96 (size before relaxing) + 0x400db784 i2s_start + *fill* 0x400db7fe 0x2 + .text.i2s_stop + 0x400db800 0x82 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x92 (size before relaxing) + 0x400db800 i2s_stop + *fill* 0x400db882 0x2 + .text.i2s_set_dac_mode + 0x400db884 0x148 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x150 (size before relaxing) + 0x400db884 i2s_set_dac_mode + .text.i2s_set_clk + 0x400db9cc 0x254 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x298 (size before relaxing) + 0x400db9cc i2s_set_clk + .text.i2s_driver_uninstall + 0x400dbc20 0xee esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x11a (size before relaxing) + 0x400dbc20 i2s_driver_uninstall + *fill* 0x400dbd0e 0x2 + .text.i2s_driver_install + 0x400dbd10 0x16c esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x1bc (size before relaxing) + 0x400dbd10 i2s_driver_install + .text.i2s_write + 0x400dbe7c 0x108 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x11c (size before relaxing) + 0x400dbe7c i2s_write + .text.i2s_zero_dma_buffer + 0x400dbf84 0xea esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0xee (size before relaxing) + 0x400dbf84 i2s_zero_dma_buffer + *fill* 0x400dc06e 0x2 + .text.i2s_set_pin + 0x400dc070 0x29e esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x2d2 (size before relaxing) + 0x400dc070 i2s_set_pin + *fill* 0x400dc30e 0x2 + .text.check_i2s_driver_conflict + 0x400dc310 0x40 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x48 (size before relaxing) + .text.uart_pattern_queue_update + 0x400dc350 0x3d esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x400dc38d 0x3 + .text.uart_reenable_intr_mask + 0x400dc390 0x68 esp-idf/driver/libdriver.a(uart.c.obj) + 0x70 (size before relaxing) + .text.uart_set_word_length + 0x400dc3f8 0x74 esp-idf/driver/libdriver.a(uart.c.obj) + 0x80 (size before relaxing) + 0x400dc3f8 uart_set_word_length + .text.uart_get_word_length + 0x400dc46c 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + 0x40 (size before relaxing) + 0x400dc46c uart_get_word_length + .text.uart_set_stop_bits + 0x400dc4a8 0x72 esp-idf/driver/libdriver.a(uart.c.obj) + 0x7e (size before relaxing) + 0x400dc4a8 uart_set_stop_bits + *fill* 0x400dc51a 0x2 + .text.uart_get_stop_bits + 0x400dc51c 0x4e esp-idf/driver/libdriver.a(uart.c.obj) + 0x56 (size before relaxing) + 0x400dc51c uart_get_stop_bits + *fill* 0x400dc56a 0x2 + .text.uart_set_parity + 0x400dc56c 0x4e esp-idf/driver/libdriver.a(uart.c.obj) + 0x56 (size before relaxing) + 0x400dc56c uart_set_parity + *fill* 0x400dc5ba 0x2 + .text.uart_get_parity + 0x400dc5bc 0x4e esp-idf/driver/libdriver.a(uart.c.obj) + 0x56 (size before relaxing) + 0x400dc5bc uart_get_parity + *fill* 0x400dc60a 0x2 + .text.uart_set_baudrate + 0x400dc60c 0xc2 esp-idf/driver/libdriver.a(uart.c.obj) + 0xd6 (size before relaxing) + 0x400dc60c uart_set_baudrate + *fill* 0x400dc6ce 0x2 + .text.uart_get_baudrate + 0x400dc6d0 0x8e esp-idf/driver/libdriver.a(uart.c.obj) + 0xa2 (size before relaxing) + 0x400dc6d0 uart_get_baudrate + *fill* 0x400dc75e 0x2 + .text.uart_wait_tx_done + 0x400dc760 0x1d2 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1fa (size before relaxing) + 0x400dc760 uart_wait_tx_done + *fill* 0x400dc932 0x2 + .text.uart_get_buffered_data_len + 0x400dc934 0x7c esp-idf/driver/libdriver.a(uart.c.obj) + 0x88 (size before relaxing) + 0x400dc934 uart_get_buffered_data_len + .text.uart_flush_input + 0x400dc9b0 0x170 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1a8 (size before relaxing) + 0x400dc9b0 uart_flush + 0x400dc9b0 uart_flush_input + .text.uart_is_driver_installed + 0x400dcb20 0x1e esp-idf/driver/libdriver.a(uart.c.obj) + 0x400dcb20 uart_is_driver_installed + *fill* 0x400dcb3e 0x2 + .text.uart_set_select_notif_callback + 0x400dcb40 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + 0x400dcb40 uart_set_select_notif_callback + *fill* 0x400dcb56 0x2 + .text.uart_get_selectlock + 0x400dcb58 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x400dcb58 uart_get_selectlock + .text.adc_set_i2s_data_source + 0x400dcb60 0x62 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + 0x6a (size before relaxing) + 0x400dcb60 adc_set_i2s_data_source + *fill* 0x400dcbc2 0x2 + .text.check_adc_oneshot_driver_conflict + 0x400dcbc4 0x40 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + 0x48 (size before relaxing) + .text.i2s_ll_enable_bus_clock + 0x400dcc04 0x50 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + 0x57 (size before relaxing) + *fill* 0x400dcc54 0x0 + .text.i2s_ll_reset_register + 0x400dcc54 0x56 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + 0x5e (size before relaxing) + *fill* 0x400dccaa 0x2 + .text.i2s_platform_acquire_occupation + 0x400dccac 0xda esp-idf/driver/libdriver.a(i2s_platform.c.obj) + 0xf2 (size before relaxing) + 0x400dccac i2s_platform_acquire_occupation + *fill* 0x400dcd86 0x2 + .text.i2s_platform_release_occupation + 0x400dcd88 0x98 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + 0xaf (size before relaxing) + 0x400dcd88 i2s_platform_release_occupation + *fill* 0x400dce20 0x0 + .text.bootloader_init_mem + 0x400dce20 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0xb (size before relaxing) + 0x400dce20 bootloader_init_mem + *fill* 0x400dce28 0x0 + .text.bootloader_flash_update_id + 0x400dce28 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x10 (size before relaxing) + 0x400dce28 bootloader_flash_update_id + *fill* 0x400dce35 0x3 + .text.bootloader_flash_get_wp_pin + 0x400dce38 0x45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x49 (size before relaxing) + 0x400dce38 bootloader_flash_get_wp_pin + *fill* 0x400dce7d 0x3 + .text.spi_flash_init_lock + 0x400dce80 0x23 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x27 (size before relaxing) + 0x400dce80 spi_flash_init_lock + *fill* 0x400dcea3 0x1 + .text.spi_flash_op_lock + 0x400dcea4 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x400dcea4 spi_flash_op_lock + *fill* 0x400dceb6 0x2 + .text.spi_flash_op_unlock + 0x400dceb8 0xd esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + 0x400dceb8 spi_flash_op_unlock + *fill* 0x400dcec5 0x3 + .text.spi_flash_mmap + 0x400dcec8 0x90 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x97 (size before relaxing) + 0x400dcec8 spi_flash_mmap + *fill* 0x400dcf58 0x0 + .text.spi_flash_munmap + 0x400dcf58 0x3e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x46 (size before relaxing) + 0x400dcf58 spi_flash_munmap + *fill* 0x400dcf96 0x2 + .text.spi_flash_cache2phys + 0x400dcf98 0x25 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x29 (size before relaxing) + 0x400dcf98 spi_flash_cache2phys + *fill* 0x400dcfbd 0x3 + .text.esp_mspi_get_io + 0x400dcfc0 0x54 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x58 (size before relaxing) + 0x400dcfc0 esp_mspi_get_io + .text.esp_flash_read_chip_id + 0x400dd014 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + 0x400dd014 esp_flash_read_chip_id + .text.esp_flash_init_default_chip + 0x400dd024 0xb2 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0xbe (size before relaxing) + 0x400dd024 esp_flash_init_default_chip + *fill* 0x400dd0d6 0x2 + .text.esp_flash_app_init + 0x400dd0d8 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x1f (size before relaxing) + 0x400dd0d8 esp_flash_app_init + *fill* 0x400dd0ef 0x1 + .text.esp_flash_app_enable_os_functions + 0x400dd0f0 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x400dd0f0 esp_flash_app_enable_os_functions + *fill* 0x400dd115 0x3 + .text.esp_crosscore_int_init + 0x400dd118 0x66 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x76 (size before relaxing) + 0x400dd118 esp_crosscore_int_init + *fill* 0x400dd17e 0x2 + .text.esp_ipc_call_and_wait + 0x400dd180 0xb5 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xd1 (size before relaxing) + *fill* 0x400dd235 0x3 + .text.esp_ipc_init + 0x400dd238 0x85 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x91 (size before relaxing) + *fill* 0x400dd2bd 0x3 + .text.esp_ipc_call + 0x400dd2c0 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x400dd2c0 esp_ipc_call + *fill* 0x400dd2d5 0x3 + .text.esp_ipc_call_blocking + 0x400dd2d8 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x400dd2d8 esp_ipc_call_blocking + *fill* 0x400dd2ed 0x3 + .text.find_entry_and_check_all_reset + 0x400dd2f0 0x36 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x400dd326 0x2 + .text.find_entry_from_task_handle_and_check_all_reset + 0x400dd328 0x37 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x400dd35f 0x1 + .text.task_wdt_timer_feed + 0x400dd360 0x24 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.add_entry + 0x400dd384 0x101 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x11d (size before relaxing) + *fill* 0x400dd485 0x3 + .text.get_task_affinity + 0x400dd488 0x25 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x400dd4ad 0x3 + .text.task_wdt_timeout_abort + 0x400dd4b0 0xa9 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xbc (size before relaxing) + 0x400dd4b0 task_wdt_timeout_abort + *fill* 0x400dd559 0x3 + .text.task_wdt_timeout_handling + 0x400dd55c 0xb7 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xc6 (size before relaxing) + *fill* 0x400dd613 0x1 + .text.esp_task_wdt_add + 0x400dd614 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x50 (size before relaxing) + 0x400dd614 esp_task_wdt_add + .text.subscribe_idle + 0x400dd658 0x5b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x6b (size before relaxing) + *fill* 0x400dd6b3 0x1 + .text.esp_task_wdt_init + 0x400dd6b4 0xd7 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xf2 (size before relaxing) + 0x400dd6b4 esp_task_wdt_init + *fill* 0x400dd78b 0x1 + .text.esp_task_wdt_reset + 0x400dd78c 0x8b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xa2 (size before relaxing) + 0x400dd78c esp_task_wdt_reset + *fill* 0x400dd817 0x1 + .text.idle_hook_cb + 0x400dd818 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd (size before relaxing) + *fill* 0x400dd822 0x2 + .text.esp_task_wdt_print_triggered_tasks + 0x400dd824 0xce esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x400dd824 esp_task_wdt_print_triggered_tasks + *fill* 0x400dd8f2 0x2 + .text.task_wdt_isr + 0x400dd8f4 0xb5 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd4 (size before relaxing) + *fill* 0x400dd9a9 0x3 + .text.esp_task_wdt_impl_timer_allocate + 0x400dd9ac 0xcd esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xe1 (size before relaxing) + 0x400dd9ac esp_task_wdt_impl_timer_allocate + *fill* 0x400dda79 0x3 + .text.esp_task_wdt_impl_timer_feed + 0x400dda7c 0x21 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x29 (size before relaxing) + 0x400dda7c esp_task_wdt_impl_timer_feed + *fill* 0x400dda9d 0x3 + .text.esp_task_wdt_impl_timeout_triggered + 0x400ddaa0 0x17 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x1f (size before relaxing) + 0x400ddaa0 esp_task_wdt_impl_timeout_triggered + *fill* 0x400ddab7 0x1 + .text.esp_task_wdt_impl_timer_restart + 0x400ddab8 0x25 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x31 (size before relaxing) + 0x400ddab8 esp_task_wdt_impl_timer_restart + *fill* 0x400ddadd 0x3 + .text.spi_flash_ll_calculate_clock_reg + 0x400ddae0 0x2d esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + *fill* 0x400ddb0d 0x3 + .text.get_flash_clock_divider + 0x400ddb10 0x5c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x6c (size before relaxing) + .text.spi_flash_cal_clock + 0x400ddb6c 0x19 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x1d (size before relaxing) + *fill* 0x400ddb85 0x3 + .text.spi_flash_hal_init + 0x400ddb88 0xe4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x400ddb88 spi_flash_hal_init + .text.spi_flash_hal_supports_direct_write + 0x400ddc6c 0x14 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x400ddc6c spi_flash_hal_supports_direct_write + .text.spi_flash_hal_supports_direct_read + 0x400ddc80 0x14 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x400ddc80 spi_flash_hal_supports_direct_read + .text.gpio_hal_intr_enable_on_core + 0x400ddc94 0x93 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x400ddc94 gpio_hal_intr_enable_on_core + *fill* 0x400ddd27 0x1 + .text.gpio_hal_intr_disable + 0x400ddd28 0x6c esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x400ddd28 gpio_hal_intr_disable + .text.i2s_ll_tx_set_mclk + 0x400ddd94 0xbd esp-idf/hal/libhal.a(i2s_hal.c.obj) + *fill* 0x400dde51 0x3 + .text.i2s_hal_calc_mclk_precise_division + 0x400dde54 0x20 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x400dde54 i2s_hal_calc_mclk_precise_division + .text.i2s_hal_init + 0x400dde74 0x1c esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x400dde74 i2s_hal_init + .text._i2s_hal_set_tx_clock + 0x400dde90 0x8e esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x92 (size before relaxing) + 0x400dde90 _i2s_hal_set_tx_clock + *fill* 0x400ddf1e 0x2 + .text._i2s_hal_set_rx_clock + 0x400ddf20 0x92 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x96 (size before relaxing) + 0x400ddf20 _i2s_hal_set_rx_clock + *fill* 0x400ddfb2 0x2 + .text.i2s_hal_std_set_tx_slot + 0x400ddfb4 0x188 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x400ddfb4 i2s_hal_std_set_tx_slot + .text.i2s_hal_std_set_rx_slot + 0x400de13c 0x180 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x400de13c i2s_hal_std_set_rx_slot + .text.i2s_hal_pdm_set_tx_slot + 0x400de2bc 0x1ec esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x400de2bc i2s_hal_pdm_set_tx_slot + .text.i2s_hal_pdm_set_rx_slot + 0x400de4a8 0x124 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x400de4a8 i2s_hal_pdm_set_rx_slot + .text.hal_utils_calc_clk_div_frac_accurate + 0x400de5cc 0xda esp-idf/hal/libhal.a(hal_utils.c.obj) + 0x400de5cc hal_utils_calc_clk_div_frac_accurate + *fill* 0x400de6a6 0x2 + .text.esp_cpu_configure_region_protection + 0x400de6a8 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x400de6a8 esp_cpu_configure_region_protection + *fill* 0x400de6db 0x1 + .text.periph_rtc_apll_acquire + 0x400de6dc 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0x2f (size before relaxing) + 0x400de6dc periph_rtc_apll_acquire + *fill* 0x400de700 0x0 + .text.periph_rtc_apll_release + 0x400de700 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0x4f (size before relaxing) + 0x400de700 periph_rtc_apll_release + *fill* 0x400de748 0x0 + .text.periph_rtc_apll_freq_set + 0x400de748 0xad esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0xbd (size before relaxing) + 0x400de748 periph_rtc_apll_freq_set + *fill* 0x400de7f5 0x3 + .text.esp_clk_tree_src_get_freq_hz + 0x400de7f8 0x172 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x1a6 (size before relaxing) + 0x400de7f8 esp_clk_tree_src_get_freq_hz + *fill* 0x400de96a 0x2 + .text.clk_tree_rtc_slow_calibration + 0x400de96c 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x4c (size before relaxing) + .text.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x400de9b0 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x5a (size before relaxing) + 0x400de9b0 esp_clk_tree_rc_fast_d256_get_freq_hz + *fill* 0x400de9fe 0x2 + .text.esp_clk_tree_xtal32k_get_freq_hz + 0x400dea00 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x5a (size before relaxing) + 0x400dea00 esp_clk_tree_xtal32k_get_freq_hz + *fill* 0x400dea4e 0x2 + .text.esp_clk_tree_lp_slow_get_freq_hz + 0x400dea50 0x3d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x41 (size before relaxing) + 0x400dea50 esp_clk_tree_lp_slow_get_freq_hz + *fill* 0x400dea8d 0x3 + .text.esp_clk_tree_rc_fast_get_freq_hz + 0x400dea90 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x400dea90 esp_clk_tree_rc_fast_get_freq_hz + *fill* 0x400deaa9 0x3 + .text.esp_clk_tree_lp_fast_get_freq_hz + 0x400deaac 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x56 (size before relaxing) + 0x400deaac esp_clk_tree_lp_fast_get_freq_hz + *fill* 0x400deafe 0x2 + .text.adc_lock_acquire + 0x400deb00 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x400deb00 adc_lock_acquire + *fill* 0x400deb1e 0x2 + .text.adc_lock_release + 0x400deb20 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x86 (size before relaxing) + 0x400deb20 adc_lock_release + *fill* 0x400deb92 0x2 + .text.adc2_wifi_acquire + 0x400deb94 0xc esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x10 (size before relaxing) + 0x400deb94 adc2_wifi_acquire + .text.adc2_wifi_release + 0x400deba0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x10 (size before relaxing) + 0x400deba0 adc2_wifi_release + .text.clkout_channel_alloc + 0x400debac 0x16f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x17e (size before relaxing) + *fill* 0x400ded1b 0x1 + .text.clkout_channel_free + 0x400ded1c 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x97 (size before relaxing) + *fill* 0x400deda8 0x0 + .text.clkout_mapping_alloc + 0x400deda8 0xe4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0xfc (size before relaxing) + .text.clkout_mapping_free + 0x400dee8c 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x104 (size before relaxing) + .text.esp_clock_output_start + 0x400def74 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0xf4 (size before relaxing) + 0x400def74 esp_clock_output_start + .text.esp_clock_output_stop + 0x400df04c 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x6e (size before relaxing) + 0x400df04c esp_clock_output_stop + *fill* 0x400df0af 0x1 + .text.esp_clock_output_pin_ctrl_init + 0x400df0b0 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + *fill* 0x400df0e7 0x1 + .text.esp_err_to_name + 0x400df0e8 0x2b esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x400df0e8 esp_err_to_name + *fill* 0x400df113 0x1 + .text.tryget_socket_unconn_nouse + 0x400df114 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.free_socket_locked + 0x400df130 0x4b esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x400df17b 0x1 + .text.sock_inc_used_locked + 0x400df17c 0x5d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x400df1d9 0x3 + .text.tryget_socket_unconn_locked + 0x400df1dc 0x26 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2a (size before relaxing) + *fill* 0x400df202 0x2 + .text.lwip_sockopt_to_ipopt + 0x400df204 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.sock_inc_used + 0x400df224 0x47 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x52 (size before relaxing) + *fill* 0x400df26b 0x1 + .text.tryget_socket_unconn + 0x400df26c 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .text.alloc_socket + 0x400df284 0xac esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xb4 (size before relaxing) + .text.lwip_select_inc_sockets_used_set + 0x400df330 0x5c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x60 (size before relaxing) + .text.lwip_select_inc_sockets_used + 0x400df38c 0x32 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x3a (size before relaxing) + *fill* 0x400df3be 0x2 + .text.lwip_link_select_cb + 0x400df3c0 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_unlink_select_cb + 0x400df3f0 0x67 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x6b (size before relaxing) + *fill* 0x400df457 0x1 + .text.sockaddr_to_ipaddr_port + 0x400df458 0x7f esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x400df4d7 0x1 + .text.lwip_sock_make_addr + 0x400df4d8 0xf8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xfc (size before relaxing) + .text.lwip_recv_tcp_from + 0x400df5d0 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x44 (size before relaxing) + .text.free_socket_free_elements + 0x400df610 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x26 (size before relaxing) + *fill* 0x400df62f 0x1 + .text.free_socket + 0x400df630 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .text.done_socket + 0x400df658 0x7a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8a (size before relaxing) + *fill* 0x400df6d2 0x2 + .text.tryget_socket + 0x400df6d4 0x1a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1e (size before relaxing) + *fill* 0x400df6ee 0x2 + .text.get_socket + 0x400df6f0 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .text.lwip_selscan + 0x400df708 0x229 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x231 (size before relaxing) + *fill* 0x400df931 0x3 + .text.lwip_select_dec_sockets_used + 0x400df934 0x47 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4f (size before relaxing) + *fill* 0x400df97b 0x1 + .text.lwip_socket_register_membership + 0x400df97c 0x51 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x59 (size before relaxing) + *fill* 0x400df9cd 0x3 + .text.lwip_socket_unregister_membership + 0x400df9d0 0x5c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x63 (size before relaxing) + *fill* 0x400dfa2c 0x0 + .text.lwip_socket_register_mld6_membership + 0x400dfa2c 0x66 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x6a (size before relaxing) + *fill* 0x400dfa92 0x2 + .text.lwip_socket_unregister_mld6_membership + 0x400dfa94 0xa7 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xae (size before relaxing) + *fill* 0x400dfb3b 0x1 + .text.lwip_socket_drop_registered_memberships + 0x400dfb3c 0x6a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x76 (size before relaxing) + *fill* 0x400dfba6 0x2 + .text.lwip_socket_drop_registered_mld6_memberships + 0x400dfba8 0x72 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x7a (size before relaxing) + *fill* 0x400dfc1a 0x2 + .text.lwip_recv_tcp + 0x400dfc1c 0x138 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14b (size before relaxing) + *fill* 0x400dfd54 0x0 + .text.lwip_recvfrom_udp_raw + 0x400dfd54 0xd8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xe0 (size before relaxing) + .text.select_check_waiters + 0x400dfe2c 0xfa esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x112 (size before relaxing) + *fill* 0x400dff26 0x2 + .text.event_callback + 0x400dff28 0xf8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10c (size before relaxing) + .text.lwip_setsockopt_impl + 0x400e0020 0x736 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x76a (size before relaxing) + *fill* 0x400e0756 0x2 + .text.lwip_setsockopt_callback + 0x400e0758 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .text.lwip_accept + 0x400e0784 0x1d0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20c (size before relaxing) + 0x400e0784 lwip_accept + .text.lwip_bind + 0x400e0954 0xea esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10e (size before relaxing) + 0x400e0954 lwip_bind + *fill* 0x400e0a3e 0x2 + .text.lwip_close + 0x400e0a40 0x81 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x99 (size before relaxing) + 0x400e0a40 lwip_close + *fill* 0x400e0ac1 0x3 + .text.lwip_listen + 0x400e0ac4 0x71 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x81 (size before relaxing) + 0x400e0ac4 lwip_listen + *fill* 0x400e0b35 0x3 + .text.lwip_recvfrom + 0x400e0b38 0xc3 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xdb (size before relaxing) + 0x400e0b38 lwip_recvfrom + *fill* 0x400e0bfb 0x1 + .text.lwip_read + 0x400e0bfc 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x400e0bfc lwip_read + *fill* 0x400e0c15 0x3 + .text.lwip_recv + 0x400e0c18 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x400e0c18 lwip_recv + *fill* 0x400e0c31 0x3 + .text.lwip_sendto + 0x400e0c34 0x16a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x192 (size before relaxing) + 0x400e0c34 lwip_sendto + *fill* 0x400e0d9e 0x2 + .text.lwip_send + 0x400e0da0 0x81 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x95 (size before relaxing) + 0x400e0da0 lwip_send + *fill* 0x400e0e21 0x3 + .text.lwip_socket + 0x400e0e24 0xc8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xd7 (size before relaxing) + 0x400e0e24 lwip_socket + *fill* 0x400e0eec 0x0 + .text.lwip_write + 0x400e0eec 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x400e0eec lwip_write + *fill* 0x400e0f01 0x3 + .text.lwip_select + 0x400e0f04 0x39d esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x3f5 (size before relaxing) + 0x400e0f04 lwip_select + *fill* 0x400e12a1 0x3 + .text.lwip_shutdown + 0x400e12a4 0x9a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xb6 (size before relaxing) + 0x400e12a4 lwip_shutdown + *fill* 0x400e133e 0x2 + .text.lwip_setsockopt + 0x400e1340 0x80 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xa0 (size before relaxing) + 0x400e1340 lwip_setsockopt + .text.lwip_ioctl + 0x400e13c0 0x5b esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x63 (size before relaxing) + 0x400e13c0 lwip_ioctl + *fill* 0x400e141b 0x1 + .text.lwip_fcntl + 0x400e141c 0xbc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc8 (size before relaxing) + 0x400e141c lwip_fcntl + .text.tcpip_timeouts_mbox_fetch + 0x400e14d8 0x36 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x46 (size before relaxing) + *fill* 0x400e150e 0x2 + .text.tcpip_thread_handle_msg + 0x400e1510 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x9b (size before relaxing) + *fill* 0x400e15a0 0x0 + .text.tcpip_thread + 0x400e15a0 0x3b esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x49 (size before relaxing) + *fill* 0x400e15db 0x1 + .text.tcpip_inpkt + 0x400e15dc 0x4e esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5a (size before relaxing) + 0x400e15dc tcpip_inpkt + *fill* 0x400e162a 0x2 + .text.tcpip_input + 0x400e162c 0x2b esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x2e (size before relaxing) + 0x400e162c tcpip_input + *fill* 0x400e1657 0x1 + .text.tcpip_callback + 0x400e1658 0x3d esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x45 (size before relaxing) + 0x400e1658 tcpip_callback + *fill* 0x400e1695 0x3 + .text.tcpip_try_callback + 0x400e1698 0x4e esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5a (size before relaxing) + 0x400e1698 tcpip_try_callback + *fill* 0x400e16e6 0x2 + .text.tcpip_send_msg_wait_sem + 0x400e16e8 0x4c esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x54 (size before relaxing) + 0x400e16e8 tcpip_send_msg_wait_sem + .text.tcpip_api_call + 0x400e1734 0x3d esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x49 (size before relaxing) + 0x400e1734 tcpip_api_call + *fill* 0x400e1771 0x3 + .text.tcpip_init + 0x400e1774 0x42 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x4e (size before relaxing) + 0x400e1774 tcpip_init + *fill* 0x400e17b6 0x2 + .text.lwip_init + 0x400e17b8 0x29 esp-idf/lwip/liblwip.a(init.c.obj) + 0x3b (size before relaxing) + 0x400e17b8 lwip_init + *fill* 0x400e17e1 0x3 + .text.ip_input + 0x400e17e4 0x2d esp-idf/lwip/liblwip.a(ip.c.obj) + 0x35 (size before relaxing) + 0x400e17e4 ip_input + *fill* 0x400e1811 0x3 + .text.mem_malloc + 0x400e1814 0x34 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x3f (size before relaxing) + 0x400e1814 mem_malloc + *fill* 0x400e1848 0x0 + .text.mem_free + 0x400e1848 0x3a esp-idf/lwip/liblwip.a(mem.c.obj) + 0x3d (size before relaxing) + 0x400e1848 mem_free + *fill* 0x400e1882 0x2 + .text.mem_calloc + 0x400e1884 0x11 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x400e1884 mem_calloc + *fill* 0x400e1895 0x3 + .text.do_memp_malloc_pool + 0x400e1898 0x39 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x48 (size before relaxing) + *fill* 0x400e18d1 0x3 + .text.do_memp_free_pool + 0x400e18d4 0x24 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x30 (size before relaxing) + .text.memp_malloc + 0x400e18f8 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x400e18f8 memp_malloc + .text.memp_free + 0x400e1918 0x1c esp-idf/lwip/liblwip.a(memp.c.obj) + 0x400e1918 memp_free + .text.netif_loopif_init + 0x400e1934 0x31 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x34 (size before relaxing) + *fill* 0x400e1965 0x3 + .text.netif_do_set_netmask + 0x400e1968 0x66 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x6a (size before relaxing) + *fill* 0x400e19ce 0x2 + .text.netif_do_set_gw + 0x400e19d0 0x68 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x6c (size before relaxing) + .text.netif_do_ip_addr_changed + 0x400e1a38 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .text.netif_issue_reports + 0x400e1a54 0x47 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x53 (size before relaxing) + *fill* 0x400e1a9b 0x1 + .text.netif_do_set_ipaddr + 0x400e1a9c 0x89 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x91 (size before relaxing) + *fill* 0x400e1b25 0x3 + .text.netif_poll + 0x400e1b28 0xc3 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xd5 (size before relaxing) + 0x400e1b28 netif_poll + *fill* 0x400e1beb 0x1 + .text.netif_set_default + 0x400e1bec 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + 0x400e1bec netif_set_default + *fill* 0x400e1bf6 0x2 + .text.netif_loop_output + 0x400e1bf8 0xea esp-idf/lwip/liblwip.a(netif.c.obj) + 0x106 (size before relaxing) + 0x400e1bf8 netif_loop_output + *fill* 0x400e1ce2 0x2 + .text.netif_loop_output_ipv6 + 0x400e1ce4 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x400e1cf6 0x2 + .text.netif_loop_output_ipv4 + 0x400e1cf8 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x400e1d0a 0x2 + .text.netif_get_ip6_addr_match + 0x400e1d0c 0xa2 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x400e1d0c netif_get_ip6_addr_match + *fill* 0x400e1dae 0x2 + .text.netif_get_by_index + 0x400e1db0 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x400e1db0 netif_get_by_index + .text.netif_find + 0x400e1dd8 0x4c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x400e1dd8 netif_find + .text.netif_add_ext_callback + 0x400e1e24 0x33 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x39 (size before relaxing) + 0x400e1e24 netif_add_ext_callback + *fill* 0x400e1e57 0x1 + .text.netif_remove_ext_callback + 0x400e1e58 0x5a esp-idf/lwip/liblwip.a(netif.c.obj) + 0x5e (size before relaxing) + 0x400e1e58 netif_remove_ext_callback + *fill* 0x400e1eb2 0x2 + .text.netif_invoke_ext_callback + 0x400e1eb4 0x31 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x35 (size before relaxing) + 0x400e1eb4 netif_invoke_ext_callback + *fill* 0x400e1ee5 0x3 + .text.netif_set_addr + 0x400e1ee8 0xa6 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xae (size before relaxing) + 0x400e1ee8 netif_set_addr + *fill* 0x400e1f8e 0x2 + .text.netif_add + 0x400e1f90 0x1e2 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1ea (size before relaxing) + 0x400e1f90 netif_add + *fill* 0x400e2172 0x2 + .text.netif_set_up + 0x400e2174 0x32 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x36 (size before relaxing) + 0x400e2174 netif_set_up + *fill* 0x400e21a6 0x2 + .text.netif_set_down + 0x400e21a8 0x38 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3c (size before relaxing) + 0x400e21a8 netif_set_down + .text.netif_remove + 0x400e21e0 0x9d esp-idf/lwip/liblwip.a(netif.c.obj) + 0xa5 (size before relaxing) + 0x400e21e0 netif_remove + *fill* 0x400e227d 0x3 + .text.netif_set_link_up + 0x400e2280 0x3a esp-idf/lwip/liblwip.a(netif.c.obj) + 0x42 (size before relaxing) + 0x400e2280 netif_set_link_up + *fill* 0x400e22ba 0x2 + .text.netif_init + 0x400e22bc 0x56 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x5e (size before relaxing) + 0x400e22bc netif_init + *fill* 0x400e2312 0x2 + .text.netif_set_link_down + 0x400e2314 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x400e2314 netif_set_link_down + .text.netif_ip6_addr_set_parts + 0x400e2340 0x12a esp-idf/lwip/liblwip.a(netif.c.obj) + 0x12e (size before relaxing) + 0x400e2340 netif_ip6_addr_set_parts + *fill* 0x400e246a 0x2 + .text.netif_ip6_addr_set + 0x400e246c 0x3b esp-idf/lwip/liblwip.a(netif.c.obj) + 0x43 (size before relaxing) + 0x400e246c netif_ip6_addr_set + *fill* 0x400e24a7 0x1 + .text.netif_ip6_addr_set_state + 0x400e24a8 0xc0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xcc (size before relaxing) + 0x400e24a8 netif_ip6_addr_set_state + .text.pbuf_add_header_impl + 0x400e2568 0x78 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_pool_is_empty + 0x400e25e0 0x3f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4f (size before relaxing) + *fill* 0x400e261f 0x1 + .text.pbuf_free_ooseq + 0x400e2620 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3b (size before relaxing) + *fill* 0x400e2653 0x1 + .text.pbuf_free_ooseq_callback + 0x400e2654 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xb (size before relaxing) + *fill* 0x400e265c 0x0 + .text.pbuf_alloc_reference + 0x400e265c 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x400e265c pbuf_alloc_reference + .text.pbuf_alloced_custom + 0x400e26a8 0x38 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x400e26a8 pbuf_alloced_custom + .text.pbuf_add_header + 0x400e26e0 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x400e26e0 pbuf_add_header + .text.pbuf_add_header_force + 0x400e26f0 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x400e26f0 pbuf_add_header_force + .text.pbuf_remove_header + 0x400e2700 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x52 (size before relaxing) + 0x400e2700 pbuf_remove_header + *fill* 0x400e274e 0x2 + .text.pbuf_header_impl + 0x400e2750 0x23 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x26 (size before relaxing) + *fill* 0x400e2773 0x1 + .text.pbuf_header_force + 0x400e2774 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x400e2774 pbuf_header_force + .text.pbuf_free + 0x400e2788 0xb3 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xcb (size before relaxing) + 0x400e2788 pbuf_free + *fill* 0x400e283b 0x1 + .text.pbuf_alloc + 0x400e283c 0x14c esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x160 (size before relaxing) + 0x400e283c pbuf_alloc + .text.pbuf_realloc + 0x400e2988 0x9b esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x9e (size before relaxing) + 0x400e2988 pbuf_realloc + *fill* 0x400e2a23 0x1 + .text.pbuf_free_header + 0x400e2a24 0x4b esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4f (size before relaxing) + 0x400e2a24 pbuf_free_header + *fill* 0x400e2a6f 0x1 + .text.pbuf_ref + 0x400e2a70 0x2a esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x32 (size before relaxing) + 0x400e2a70 pbuf_ref + *fill* 0x400e2a9a 0x2 + .text.pbuf_cat + 0x400e2a9c 0x51 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x400e2a9c pbuf_cat + *fill* 0x400e2aed 0x3 + .text.pbuf_chain + 0x400e2af0 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x17 (size before relaxing) + 0x400e2af0 pbuf_chain + *fill* 0x400e2b03 0x1 + .text.pbuf_copy_partial_pbuf + 0x400e2b04 0x11d esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x121 (size before relaxing) + 0x400e2b04 pbuf_copy_partial_pbuf + *fill* 0x400e2c21 0x3 + .text.pbuf_copy + 0x400e2c24 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x400e2c24 pbuf_copy + *fill* 0x400e2c43 0x1 + .text.pbuf_copy_partial + 0x400e2c44 0x7e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x400e2c44 pbuf_copy_partial + *fill* 0x400e2cc2 0x2 + .text.pbuf_skip + 0x400e2cc4 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x400e2cc4 pbuf_skip + .text.pbuf_take + 0x400e2cd8 0x7a esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x400e2cd8 pbuf_take + *fill* 0x400e2d52 0x2 + .text.pbuf_take_at + 0x400e2d54 0x7e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x86 (size before relaxing) + 0x400e2d54 pbuf_take_at + *fill* 0x400e2dd2 0x2 + .text.pbuf_clone + 0x400e2dd4 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x36 (size before relaxing) + 0x400e2dd4 pbuf_clone + *fill* 0x400e2e02 0x2 + .text.pbuf_try_get_at + 0x400e2e04 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x400e2e04 pbuf_try_get_at + *fill* 0x400e2e32 0x2 + .text.pbuf_get_at + 0x400e2e34 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + 0x400e2e34 pbuf_get_at + .text.raw_input_local_match + 0x400e2e4c 0xf6 esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x400e2f42 0x2 + .text.raw_input + 0x400e2f44 0xfd esp-idf/lwip/liblwip.a(raw.c.obj) + 0x100 (size before relaxing) + 0x400e2f44 raw_input + *fill* 0x400e3041 0x3 + .text.raw_bind + 0x400e3044 0x10a esp-idf/lwip/liblwip.a(raw.c.obj) + 0x10e (size before relaxing) + 0x400e3044 raw_bind + *fill* 0x400e314e 0x2 + .text.raw_sendto_if_src + 0x400e3150 0x23f esp-idf/lwip/liblwip.a(raw.c.obj) + 0x25f (size before relaxing) + 0x400e3150 raw_sendto_if_src + *fill* 0x400e338f 0x1 + .text.raw_sendto + 0x400e3390 0x135 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x400e3390 raw_sendto + *fill* 0x400e34c5 0x3 + .text.raw_send + 0x400e34c8 0x15 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x400e34c8 raw_send + *fill* 0x400e34dd 0x3 + .text.raw_remove + 0x400e34e0 0x36 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x3a (size before relaxing) + 0x400e34e0 raw_remove + *fill* 0x400e3516 0x2 + .text.raw_new 0x400e3518 0x32 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x400e3518 raw_new + *fill* 0x400e354a 0x2 + .text.raw_new_ip_type + 0x400e354c 0x18 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x1b (size before relaxing) + 0x400e354c raw_new_ip_type + *fill* 0x400e3564 0x0 + .text.raw_netif_ip_addr_changed + 0x400e3564 0xcf esp-idf/lwip/liblwip.a(raw.c.obj) + 0x400e3564 raw_netif_ip_addr_changed + *fill* 0x400e3633 0x1 + .text.tcp_new_port + 0x400e3634 0x6a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x400e369e 0x2 + .text.tcp_remove_listener + 0x400e36a0 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x2b (size before relaxing) + *fill* 0x400e36c7 0x1 + .text.tcp_listen_closed + 0x400e36c8 0x41 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x49 (size before relaxing) + *fill* 0x400e3709 0x3 + .text.tcp_free_listen + 0x400e370c 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x26 (size before relaxing) + *fill* 0x400e372c 0x0 + .text.tcp_init + 0x400e372c 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x17 (size before relaxing) + 0x400e372c tcp_init + *fill* 0x400e3740 0x0 + .text.tcp_free + 0x400e3740 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x26 (size before relaxing) + 0x400e3740 tcp_free + *fill* 0x400e3760 0x0 + .text.tcp_backlog_delayed + 0x400e3760 0x4f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x53 (size before relaxing) + 0x400e3760 tcp_backlog_delayed + *fill* 0x400e37af 0x1 + .text.tcp_backlog_accepted + 0x400e37b0 0x4d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x400e37b0 tcp_backlog_accepted + *fill* 0x400e37fd 0x3 + .text.tcp_close_shutdown_fin + 0x400e3800 0x7e esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8a (size before relaxing) + *fill* 0x400e387e 0x2 + .text.tcp_handle_closepend + 0x400e3880 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x400e38a9 0x3 + .text.tcp_bind + 0x400e38ac 0x265 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x26d (size before relaxing) + 0x400e38ac tcp_bind + *fill* 0x400e3b11 0x3 + .text.tcp_listen_with_backlog_and_err + 0x400e3b14 0x17e esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x186 (size before relaxing) + 0x400e3b14 tcp_listen_with_backlog_and_err + *fill* 0x400e3c92 0x2 + .text.tcp_update_rcv_ann_wnd + 0x400e3c94 0x6c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x6f (size before relaxing) + 0x400e3c94 tcp_update_rcv_ann_wnd + *fill* 0x400e3d00 0x0 + .text.tcp_recved + 0x400e3d00 0x5c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x60 (size before relaxing) + 0x400e3d00 tcp_recved + .text.tcp_seg_free + 0x400e3d5c 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + 0x400e3d5c tcp_seg_free + .text.tcp_segs_free + 0x400e3d74 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x400e3d74 tcp_segs_free + *fill* 0x400e3d8b 0x1 + .text.tcp_seg_copy + 0x400e3d8c 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3a (size before relaxing) + 0x400e3d8c tcp_seg_copy + *fill* 0x400e3dc2 0x2 + .text.tcp_recv + 0x400e3dc4 0x1e esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x22 (size before relaxing) + 0x400e3dc4 tcp_recv + *fill* 0x400e3de2 0x2 + .text.tcp_sent + 0x400e3de4 0x1e esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x22 (size before relaxing) + 0x400e3de4 tcp_sent + *fill* 0x400e3e02 0x2 + .text.tcp_err 0x400e3e04 0x1e esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x22 (size before relaxing) + 0x400e3e04 tcp_err + *fill* 0x400e3e22 0x2 + .text.tcp_poll + 0x400e3e24 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x400e3e24 tcp_poll + .text.tcp_next_iss + 0x400e3e4c 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x2c (size before relaxing) + 0x400e3e4c tcp_next_iss + *fill* 0x400e3e75 0x3 + .text.tcp_eff_send_mss_netif + 0x400e3e78 0x4f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x57 (size before relaxing) + 0x400e3e78 tcp_eff_send_mss_netif + *fill* 0x400e3ec7 0x1 + .text.tcp_free_ooseq + 0x400e3ec8 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x16 (size before relaxing) + 0x400e3ec8 tcp_free_ooseq + *fill* 0x400e3eda 0x2 + .text.tcp_pcb_purge + 0x400e3edc 0x5e esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x66 (size before relaxing) + 0x400e3edc tcp_pcb_purge + *fill* 0x400e3f3a 0x2 + .text.tcp_pcb_remove + 0x400e3f3c 0xca esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xd9 (size before relaxing) + 0x400e3f3c tcp_pcb_remove + *fill* 0x400e4006 0x2 + .text.tcp_abandon + 0x400e4008 0xd6 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xea (size before relaxing) + 0x400e4008 tcp_abandon + *fill* 0x400e40de 0x2 + .text.tcp_abort + 0x400e40e0 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x400e40e0 tcp_abort + *fill* 0x400e40ef 0x1 + .text.tcp_accept_null + 0x400e40f0 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x24 (size before relaxing) + *fill* 0x400e4111 0x3 + .text.tcp_kill_timewait + 0x400e4114 0x2f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x32 (size before relaxing) + *fill* 0x400e4143 0x1 + .text.tcp_kill_prio + 0x400e4144 0x58 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5b (size before relaxing) + *fill* 0x400e419c 0x0 + .text.tcp_netif_ip_addr_changed_pcblist + 0x400e419c 0x75 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x400e4211 0x3 + .text.tcp_netif_ip_addr_changed + 0x400e4214 0xe3 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xeb (size before relaxing) + 0x400e4214 tcp_netif_ip_addr_changed + *fill* 0x400e42f7 0x1 + .text.tcp_kill_state + 0x400e42f8 0x4f esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x400e4347 0x1 + .text.tcp_alloc + 0x400e4348 0xb2 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xd2 (size before relaxing) + 0x400e4348 tcp_alloc + *fill* 0x400e43fa 0x2 + .text.tcp_new_ip_type + 0x400e43fc 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x400e43fc tcp_new_ip_type + *fill* 0x400e4416 0x2 + .text.tcp_close_shutdown + 0x400e4418 0x14b esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x166 (size before relaxing) + *fill* 0x400e4563 0x1 + .text.tcp_close_ext + 0x400e4564 0x2d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x400e4564 tcp_close_ext + *fill* 0x400e4591 0x3 + .text.tcp_close + 0x400e4594 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x400e4594 tcp_close + *fill* 0x400e45a6 0x2 + .text.tcp_recv_null + 0x400e45a8 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3a (size before relaxing) + 0x400e45a8 tcp_recv_null + *fill* 0x400e45de 0x2 + .text.tcp_process_refused_data + 0x400e45e0 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8b (size before relaxing) + 0x400e45e0 tcp_process_refused_data + *fill* 0x400e4667 0x1 + .text.tcp_fasttmr + 0x400e4668 0x85 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x89 (size before relaxing) + 0x400e4668 tcp_fasttmr + *fill* 0x400e46ed 0x3 + .text.tcp_shutdown + 0x400e46f0 0x76 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x7a (size before relaxing) + 0x400e46f0 tcp_shutdown + *fill* 0x400e4766 0x2 + .text.tcp_slowtmr + 0x400e4768 0x475 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4ad (size before relaxing) + 0x400e4768 tcp_slowtmr + *fill* 0x400e4bdd 0x3 + .text.tcp_tmr 0x400e4be0 0x1c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x22 (size before relaxing) + 0x400e4be0 tcp_tmr + *fill* 0x400e4bfc 0x0 + .text.tcp_get_next_optbyte + 0x400e4bfc 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text.tcp_parseopt + 0x400e4c3c 0xa2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xb1 (size before relaxing) + *fill* 0x400e4cde 0x2 + .text.tcp_input_delayed_close + 0x400e4ce0 0x49 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x51 (size before relaxing) + *fill* 0x400e4d29 0x3 + .text.tcp_timewait_input + 0x400e4d2c 0xa2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xaa (size before relaxing) + *fill* 0x400e4dce 0x2 + .text.tcp_listen_input + 0x400e4dd0 0x1f3 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x216 (size before relaxing) + *fill* 0x400e4fc3 0x1 + .text.tcp_oos_insert_segment + 0x400e4fc4 0xfc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x100 (size before relaxing) + .text.tcp_free_acked_segments + 0x400e50c0 0xd2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xda (size before relaxing) + *fill* 0x400e5192 0x2 + .text.tcp_receive + 0x400e5194 0xcd6 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xd22 (size before relaxing) + *fill* 0x400e5e6a 0x2 + .text.tcp_process + 0x400e5e6c 0x64c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x674 (size before relaxing) + .text.tcp_input + 0x400e64b8 0x86b esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x8da (size before relaxing) + 0x400e64b8 tcp_input + *fill* 0x400e6d23 0x1 + .text.tcp_trigger_input_pcb_close + 0x400e6d24 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x400e6d24 tcp_trigger_input_pcb_close + *fill* 0x400e6d37 0x1 + .text.tcp_write_checks + 0x400e6d38 0xc0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_output_segment_busy + 0x400e6df8 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x400e6e21 0x3 + .text.tcp_output_fill_options + 0x400e6e24 0x3b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x42 (size before relaxing) + *fill* 0x400e6e5f 0x1 + .text.tcp_pbuf_prealloc + 0x400e6e60 0x62 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x66 (size before relaxing) + *fill* 0x400e6ec2 0x2 + .text.tcp_create_segment + 0x400e6ec4 0xf5 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x10d (size before relaxing) + *fill* 0x400e6fb9 0x3 + .text.tcp_output_alloc_header_common + 0x400e6fbc 0xc7 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xdb (size before relaxing) + *fill* 0x400e7083 0x1 + .text.tcp_output_alloc_header + 0x400e7084 0x46 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x4a (size before relaxing) + *fill* 0x400e70ca 0x2 + .text.tcp_route + 0x400e70cc 0x39 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x400e7105 0x3 + .text.tcp_output_segment + 0x400e7108 0x193 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1af (size before relaxing) + *fill* 0x400e729b 0x1 + .text.tcp_output_control_segment + 0x400e729c 0x8b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x9a (size before relaxing) + *fill* 0x400e7327 0x1 + .text.tcp_write + 0x400e7328 0x2e9 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x309 (size before relaxing) + 0x400e7328 tcp_write + *fill* 0x400e7611 0x3 + .text.tcp_split_unsent_seg + 0x400e7614 0x1c2 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1ea (size before relaxing) + 0x400e7614 tcp_split_unsent_seg + *fill* 0x400e77d6 0x2 + .text.tcp_enqueue_flags + 0x400e77d8 0x138 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x144 (size before relaxing) + 0x400e77d8 tcp_enqueue_flags + .text.tcp_send_fin + 0x400e7910 0x7d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x81 (size before relaxing) + 0x400e7910 tcp_send_fin + *fill* 0x400e798d 0x3 + .text.tcp_rexmit_rto_prepare + 0x400e7990 0xbd esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xcd (size before relaxing) + 0x400e7990 tcp_rexmit_rto_prepare + *fill* 0x400e7a4d 0x3 + .text.tcp_rexmit + 0x400e7a50 0xbd esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc5 (size before relaxing) + 0x400e7a50 tcp_rexmit + *fill* 0x400e7b0d 0x3 + .text.tcp_rexmit_fast + 0x400e7b10 0x67 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x6b (size before relaxing) + 0x400e7b10 tcp_rexmit_fast + *fill* 0x400e7b77 0x1 + .text.tcp_rst 0x400e7b78 0x6c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x78 (size before relaxing) + 0x400e7b78 tcp_rst + .text.tcp_send_empty_ack + 0x400e7be4 0x7d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x85 (size before relaxing) + 0x400e7be4 tcp_send_empty_ack + *fill* 0x400e7c61 0x3 + .text.tcp_output + 0x400e7c64 0x3d9 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x3f9 (size before relaxing) + 0x400e7c64 tcp_output + *fill* 0x400e803d 0x3 + .text.tcp_rexmit_rto_commit + 0x400e8040 0x2d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x30 (size before relaxing) + 0x400e8040 tcp_rexmit_rto_commit + *fill* 0x400e806d 0x3 + .text.tcp_rexmit_rto + 0x400e8070 0x27 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2f (size before relaxing) + 0x400e8070 tcp_rexmit_rto + *fill* 0x400e8097 0x1 + .text.tcp_keepalive + 0x400e8098 0x4f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x5f (size before relaxing) + 0x400e8098 tcp_keepalive + *fill* 0x400e80e7 0x1 + .text.tcp_zero_window_probe + 0x400e80e8 0x125 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x135 (size before relaxing) + 0x400e80e8 tcp_zero_window_probe + *fill* 0x400e820d 0x3 + .text.sys_timeout_abs + 0x400e8210 0x61 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x65 (size before relaxing) + *fill* 0x400e8271 0x3 + .text.lwip_cyclic_timer + 0x400e8274 0x37 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x3e (size before relaxing) + *fill* 0x400e82ab 0x1 + .text.sys_timeout + 0x400e82ac 0x27 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x2f (size before relaxing) + 0x400e82ac sys_timeout + *fill* 0x400e82d3 0x1 + .text.tcp_timer_needed + 0x400e82d4 0x2f esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x400e82d4 tcp_timer_needed + *fill* 0x400e8303 0x1 + .text.tcpip_tcp_timer + 0x400e8304 0x2d esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x35 (size before relaxing) + *fill* 0x400e8331 0x3 + .text.sys_timeouts_init + 0x400e8334 0x1f esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x23 (size before relaxing) + 0x400e8334 sys_timeouts_init + *fill* 0x400e8353 0x1 + .text.sys_untimeout + 0x400e8354 0x3e esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42 (size before relaxing) + 0x400e8354 sys_untimeout + *fill* 0x400e8392 0x2 + .text.sys_check_timeouts + 0x400e8394 0x3a esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42 (size before relaxing) + 0x400e8394 sys_check_timeouts + *fill* 0x400e83ce 0x2 + .text.sys_timeouts_sleeptime + 0x400e83d0 0x38 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x3c (size before relaxing) + 0x400e83d0 sys_timeouts_sleeptime + .text.udp_new_port + 0x400e8408 0x54 esp-idf/lwip/liblwip.a(udp.c.obj) + .text.udp_input_local_match + 0x400e845c 0x13c esp-idf/lwip/liblwip.a(udp.c.obj) + .text.udp_init + 0x400e8598 0x14 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x17 (size before relaxing) + 0x400e8598 udp_init + *fill* 0x400e85ac 0x0 + .text.udp_input + 0x400e85ac 0x324 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x34f (size before relaxing) + 0x400e85ac udp_input + *fill* 0x400e88d0 0x0 + .text.udp_bind + 0x400e88d0 0x25a esp-idf/lwip/liblwip.a(udp.c.obj) + 0x400e88d0 udp_bind + *fill* 0x400e8b2a 0x2 + .text.udp_sendto_if_src + 0x400e8b2c 0x200 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x224 (size before relaxing) + 0x400e8b2c udp_sendto_if_src + .text.udp_sendto_if + 0x400e8d2c 0xd9 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x400e8d2c udp_sendto_if + *fill* 0x400e8e05 0x3 + .text.udp_sendto + 0x400e8e08 0x115 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x11d (size before relaxing) + 0x400e8e08 udp_sendto + *fill* 0x400e8f1d 0x3 + .text.udp_send + 0x400e8f20 0x39 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3d (size before relaxing) + 0x400e8f20 udp_send + *fill* 0x400e8f59 0x3 + .text.udp_connect + 0x400e8f5c 0x12e esp-idf/lwip/liblwip.a(udp.c.obj) + 0x132 (size before relaxing) + 0x400e8f5c udp_connect + *fill* 0x400e908a 0x2 + .text.udp_disconnect + 0x400e908c 0x92 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x400e908c udp_disconnect + *fill* 0x400e911e 0x2 + .text.udp_remove + 0x400e9120 0x36 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3a (size before relaxing) + 0x400e9120 udp_remove + *fill* 0x400e9156 0x2 + .text.udp_new 0x400e9158 0x20 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x24 (size before relaxing) + 0x400e9158 udp_new + .text.udp_new_ip_type + 0x400e9178 0x18 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x400e9178 udp_new_ip_type + .text.udp_netif_ip_addr_changed + 0x400e9190 0xcc esp-idf/lwip/liblwip.a(udp.c.obj) + 0x400e9190 udp_netif_ip_addr_changed + .text.dhcp_option_short + 0x400e925c 0x32 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x35 (size before relaxing) + *fill* 0x400e928e 0x2 + .text.dhcp_option + 0x400e9290 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_option_byte + 0x400e92c4 0x26 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x400e92ea 0x2 + .text.dhcp_option_long + 0x400e92ec 0x4c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4f (size before relaxing) + *fill* 0x400e9338 0x0 + .text.dhcp_create_msg + 0x400e9338 0x124 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x130 (size before relaxing) + .text.dhcp_option_hostname + 0x400e945c 0x76 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x7e (size before relaxing) + *fill* 0x400e94d2 0x2 + .text.dhcp_option_trailer + 0x400e94d4 0x36 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x400e950a 0x2 + .text.dhcp_rebind + 0x400e950c 0x110 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x134 (size before relaxing) + .text.dhcp_t2_timeout + 0x400e961c 0x2a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2e (size before relaxing) + *fill* 0x400e9646 0x2 + .text.dhcp_reboot + 0x400e9648 0x12c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x15c (size before relaxing) + .text.dhcp_select + 0x400e9774 0x16a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x19e (size before relaxing) + *fill* 0x400e98de 0x2 + .text.dhcp_handle_offer + 0x400e98e0 0x5e esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x62 (size before relaxing) + *fill* 0x400e993e 0x2 + .text.dhcp_discover + 0x400e9940 0x10d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x131 (size before relaxing) + *fill* 0x400e9a4d 0x3 + .text.dhcp_decline + 0x400e9a50 0xaf esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xcb (size before relaxing) + *fill* 0x400e9aff 0x1 + .text.dhcp_check + 0x400e9b00 0x43 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4b (size before relaxing) + *fill* 0x400e9b43 0x1 + .text.dhcp_bind + 0x400e9b44 0xbe esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xc2 (size before relaxing) + *fill* 0x400e9c02 0x2 + .text.dhcp_handle_nak + 0x400e9c04 0x1f esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x27 (size before relaxing) + *fill* 0x400e9c23 0x1 + .text.dhcp_dec_pcb_refcount + 0x400e9c24 0x37 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x3b (size before relaxing) + *fill* 0x400e9c5b 0x1 + .text.dhcp_inc_pcb_refcount + 0x400e9c5c 0x71 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x7d (size before relaxing) + *fill* 0x400e9ccd 0x3 + .text.dhcp_parse_reply + 0x400e9cd0 0x393 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x39b (size before relaxing) + *fill* 0x400ea063 0x1 + .text.dhcp_handle_ack + 0x400ea064 0xff esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x103 (size before relaxing) + *fill* 0x400ea163 0x1 + .text.dhcp_recv + 0x400ea164 0x135 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x148 (size before relaxing) + *fill* 0x400ea299 0x3 + .text.dhcp_set_struct + 0x400ea29c 0x52 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x55 (size before relaxing) + 0x400ea29c dhcp_set_struct + *fill* 0x400ea2ee 0x2 + .text.dhcp_cleanup + 0x400ea2f0 0x28 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2b (size before relaxing) + 0x400ea2f0 dhcp_cleanup + *fill* 0x400ea318 0x0 + .text.dhcp_network_changed + 0x400ea318 0x48 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4e (size before relaxing) + 0x400ea318 dhcp_network_changed + *fill* 0x400ea360 0x0 + .text.dhcp_arp_reply + 0x400ea360 0x1e esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x22 (size before relaxing) + 0x400ea360 dhcp_arp_reply + *fill* 0x400ea37e 0x2 + .text.dhcp_renew + 0x400ea380 0x10f esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x133 (size before relaxing) + 0x400ea380 dhcp_renew + *fill* 0x400ea48f 0x1 + .text.dhcp_t1_timeout + 0x400ea490 0x2a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2e (size before relaxing) + *fill* 0x400ea4ba 0x2 + .text.dhcp_release_and_stop + 0x400ea4bc 0x128 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14f (size before relaxing) + 0x400ea4bc dhcp_release_and_stop + *fill* 0x400ea5e4 0x0 + .text.dhcp_start + 0x400ea5e4 0xba esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xc6 (size before relaxing) + 0x400ea5e4 dhcp_start + *fill* 0x400ea69e 0x2 + .text.dhcp_coarse_tmr + 0x400ea6a0 0x65 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x69 (size before relaxing) + 0x400ea6a0 dhcp_coarse_tmr + *fill* 0x400ea705 0x3 + .text.dhcp_timeout + 0x400ea708 0x92 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x9e (size before relaxing) + *fill* 0x400ea79a 0x2 + .text.dhcp_fine_tmr + 0x400ea79c 0x58 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x400ea79c dhcp_fine_tmr + .text.dhcp_fine_timeout_cb + 0x400ea7f4 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe (size before relaxing) + 0x400ea7f4 dhcp_fine_timeout_cb + *fill* 0x400ea7fe 0x2 + .text.dhcp_release + 0x400ea800 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + 0x400ea800 dhcp_release + .text.dhcp_stop + 0x400ea80c 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe (size before relaxing) + 0x400ea80c dhcp_stop + *fill* 0x400ea816 0x2 + .text.free_etharp_q + 0x400ea818 0x3d esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x49 (size before relaxing) + *fill* 0x400ea855 0x3 + .text.etharp_free_entry + 0x400ea858 0x31 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x35 (size before relaxing) + *fill* 0x400ea889 0x3 + .text.etharp_find_entry + 0x400ea88c 0x199 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x19d (size before relaxing) + *fill* 0x400eaa25 0x3 + .text.etharp_update_arp_entry + 0x400eaa28 0xe4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xf0 (size before relaxing) + .text.etharp_raw + 0x400eab0c 0xde esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xee (size before relaxing) + *fill* 0x400eabea 0x2 + .text.etharp_request_dst + 0x400eabec 0x21 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x25 (size before relaxing) + *fill* 0x400eac0d 0x3 + .text.etharp_add_static_entry + 0x400eac10 0x21 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x29 (size before relaxing) + 0x400eac10 etharp_add_static_entry + *fill* 0x400eac31 0x3 + .text.etharp_remove_static_entry + 0x400eac34 0x31 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x39 (size before relaxing) + 0x400eac34 etharp_remove_static_entry + *fill* 0x400eac65 0x3 + .text.etharp_cleanup_netif + 0x400eac68 0x32 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x400eac68 etharp_cleanup_netif + *fill* 0x400eac9a 0x2 + .text.etharp_input + 0x400eac9c 0xdc esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x400eac9c etharp_input + .text.etharp_request + 0x400ead78 0x15 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x400ead78 etharp_request + *fill* 0x400ead8d 0x3 + .text.etharp_tmr + 0x400ead90 0xa8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x400ead90 etharp_tmr + .text.etharp_output_to_arp_index + 0x400eae38 0xae esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xb6 (size before relaxing) + *fill* 0x400eaee6 0x2 + .text.etharp_query + 0x400eaee8 0x1fc esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x20c (size before relaxing) + 0x400eaee8 etharp_query + .text.etharp_output + 0x400eb0e4 0x155 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x165 (size before relaxing) + 0x400eb0e4 etharp_output + *fill* 0x400eb239 0x3 + .text.icmp_send_response + 0x400eb23c 0xe4 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0xf4 (size before relaxing) + .text.icmp_input + 0x400eb320 0x1bf esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x1ea (size before relaxing) + 0x400eb320 icmp_input + *fill* 0x400eb4df 0x1 + .text.icmp_dest_unreach + 0x400eb4e0 0x12 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x400eb4e0 icmp_dest_unreach + *fill* 0x400eb4f2 0x2 + .text.igmp_start_timer + 0x400eb4f4 0x3e esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x42 (size before relaxing) + *fill* 0x400eb532 0x2 + .text.igmp_delaying_member + 0x400eb534 0x22 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x26 (size before relaxing) + *fill* 0x400eb556 0x2 + .text.igmp_ip_output_if + 0x400eb558 0x2d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x31 (size before relaxing) + *fill* 0x400eb585 0x3 + .text.igmp_send + 0x400eb588 0xbb esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xca (size before relaxing) + *fill* 0x400eb643 0x1 + .text.igmp_timeout + 0x400eb644 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x400eb66a 0x2 + .text.igmp_init + 0x400eb66c 0x15 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x400eb66c igmp_init + *fill* 0x400eb681 0x3 + .text.igmp_stop + 0x400eb684 0x31 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x400eb684 igmp_stop + *fill* 0x400eb6b5 0x3 + .text.igmp_report_groups + 0x400eb6b8 0x1f esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x400eb6b8 igmp_report_groups + *fill* 0x400eb6d7 0x1 + .text.igmp_lookup_group + 0x400eb6d8 0x86 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8a (size before relaxing) + *fill* 0x400eb75e 0x2 + .text.igmp_start + 0x400eb760 0x36 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x400eb760 igmp_start + *fill* 0x400eb796 0x2 + .text.igmp_input + 0x400eb798 0xf7 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10a (size before relaxing) + 0x400eb798 igmp_input + *fill* 0x400eb88f 0x1 + .text.igmp_joingroup_netif + 0x400eb890 0x85 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x89 (size before relaxing) + 0x400eb890 igmp_joingroup_netif + *fill* 0x400eb915 0x3 + .text.igmp_joingroup + 0x400eb918 0x5e esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x400eb918 igmp_joingroup + *fill* 0x400eb976 0x2 + .text.igmp_leavegroup_netif + 0x400eb978 0x89 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x95 (size before relaxing) + 0x400eb978 igmp_leavegroup_netif + *fill* 0x400eba01 0x3 + .text.igmp_leavegroup + 0x400eba04 0x5d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x61 (size before relaxing) + 0x400eba04 igmp_leavegroup + *fill* 0x400eba61 0x3 + .text.igmp_tmr + 0x400eba64 0x66 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x400eba64 igmp_tmr + *fill* 0x400ebaca 0x2 + .text.igmp_timeout_cb + 0x400ebacc 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xb (size before relaxing) + *fill* 0x400ebad4 0x0 + .text.ip4_input_accept + 0x400ebad4 0x30 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x34 (size before relaxing) + .text.ip4_route + 0x400ebb04 0x77 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x400ebb04 ip4_route + *fill* 0x400ebb7b 0x1 + .text.ip4_route_src + 0x400ebb7c 0x1c esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x20 (size before relaxing) + 0x400ebb7c ip4_route_src + .text.ip4_input + 0x400ebb98 0x293 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x2b6 (size before relaxing) + 0x400ebb98 ip4_input + *fill* 0x400ebe2b 0x1 + .text.ip4_output_if_opt_src + 0x400ebe2c 0x281 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x295 (size before relaxing) + 0x400ebe2c ip4_output_if_opt_src + *fill* 0x400ec0ad 0x3 + .text.ip4_output_if_opt + 0x400ec0b0 0x35 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x400ec0b0 ip4_output_if_opt + *fill* 0x400ec0e5 0x3 + .text.ip4_output_if + 0x400ec0e8 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x29 (size before relaxing) + 0x400ec0e8 ip4_output_if + *fill* 0x400ec10d 0x3 + .text.ip4_output_if_src + 0x400ec110 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x29 (size before relaxing) + 0x400ec110 ip4_output_if_src + *fill* 0x400ec135 0x3 + .text.ip4addr_aton + 0x400ec138 0x1c7 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x1cb (size before relaxing) + 0x400ec138 ip4addr_aton + *fill* 0x400ec2ff 0x1 + .text.ip4_frag + 0x400ec300 0x179 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x191 (size before relaxing) + 0x400ec300 ip4_frag + *fill* 0x400ec479 0x3 + .text.icmp6_send_response_with_addrs_and_netif + 0x400ec47c 0xe3 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0xef (size before relaxing) + *fill* 0x400ec55f 0x1 + .text.icmp6_send_response + 0x400ec560 0x3e esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x42 (size before relaxing) + *fill* 0x400ec59e 0x2 + .text.icmp6_input + 0x400ec5a0 0xfb esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x12a (size before relaxing) + 0x400ec5a0 icmp6_input + *fill* 0x400ec69b 0x1 + .text.icmp6_dest_unreach + 0x400ec69c 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x400ec69c icmp6_dest_unreach + .text.icmp6_param_problem + 0x400ec6b0 0x1a esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x400ec6b0 icmp6_param_problem + *fill* 0x400ec6ca 0x2 + .text.ip6_input_accept + 0x400ec6cc 0x82 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x400ec74e 0x2 + .text.ip6_route + 0x400ec750 0x27a esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x27e (size before relaxing) + 0x400ec750 ip6_route + *fill* 0x400ec9ca 0x2 + .text.ip6_select_source_address + 0x400ec9cc 0x1a5 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x1a9 (size before relaxing) + 0x400ec9cc ip6_select_source_address + *fill* 0x400ecb71 0x3 + .text.ip6_input + 0x400ecb74 0x6dd esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x75d (size before relaxing) + 0x400ecb74 ip6_input + *fill* 0x400ed251 0x3 + .text.ip6_output_if_src + 0x400ed254 0x355 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x365 (size before relaxing) + 0x400ed254 ip6_output_if_src + *fill* 0x400ed5a9 0x3 + .text.ip6_output_if + 0x400ed5ac 0x69 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x400ed5ac ip6_output_if + *fill* 0x400ed615 0x3 + .text.ip6_options_add_hbh_ra + 0x400ed618 0x3e esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x42 (size before relaxing) + 0x400ed618 ip6_options_add_hbh_ra + *fill* 0x400ed656 0x2 + .text.ip6_frag + 0x400ed658 0x15d esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x179 (size before relaxing) + 0x400ed658 ip6_frag + *fill* 0x400ed7b5 0x3 + .text.mld6_delayed_report + 0x400ed7b8 0x5a esp-idf/lwip/liblwip.a(mld6.c.obj) + *fill* 0x400ed812 0x2 + .text.mld6_new_group + 0x400ed814 0x67 esp-idf/lwip/liblwip.a(mld6.c.obj) + *fill* 0x400ed87b 0x1 + .text.mld6_send + 0x400ed87c 0x110 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x124 (size before relaxing) + .text.mld6_stop + 0x400ed98c 0x31 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x400ed98c mld6_stop + *fill* 0x400ed9bd 0x3 + .text.mld6_report_groups + 0x400ed9c0 0x1b esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x400ed9c0 mld6_report_groups + *fill* 0x400ed9db 0x1 + .text.mld6_input + 0x400ed9dc 0x175 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x184 (size before relaxing) + 0x400ed9dc mld6_input + *fill* 0x400edb51 0x3 + .text.mld6_joingroup_netif + 0x400edb54 0xf5 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xfd (size before relaxing) + 0x400edb54 mld6_joingroup_netif + *fill* 0x400edc49 0x3 + .text.mld6_joingroup + 0x400edc4c 0x40 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x47 (size before relaxing) + 0x400edc4c mld6_joingroup + *fill* 0x400edc8c 0x0 + .text.mld6_leavegroup_netif + 0x400edc8c 0xe9 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xf5 (size before relaxing) + 0x400edc8c mld6_leavegroup_netif + *fill* 0x400edd75 0x3 + .text.mld6_leavegroup + 0x400edd78 0x43 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4b (size before relaxing) + 0x400edd78 mld6_leavegroup + *fill* 0x400eddbb 0x1 + .text.mld6_tmr + 0x400eddbc 0x72 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x76 (size before relaxing) + 0x400eddbc mld6_tmr + *fill* 0x400ede2e 0x2 + .text.mld6_timeout_cb + 0x400ede30 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xb (size before relaxing) + *fill* 0x400ede38 0x0 + .text.nd6_find_neighbor_cache_entry + 0x400ede38 0x72 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x400edeaa 0x2 + .text.nd6_find_destination_cache_entry + 0x400edeac 0x70 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_new_destination_cache_entry + 0x400edf1c 0x62 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x400edf7e 0x2 + .text.nd6_is_prefix_in_netif + 0x400edf80 0xb9 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x400ee039 0x3 + .text.nd6_select_router + 0x400ee03c 0xc0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_get_router + 0x400ee0fc 0x5a esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x400ee156 0x2 + .text.nd6_get_onlink_prefix + 0x400ee158 0x60 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_new_onlink_prefix + 0x400ee1b8 0xb0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_send_q + 0x400ee268 0x132 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x136 (size before relaxing) + *fill* 0x400ee39a 0x2 + .text.nd6_duplicate_addr_detected + 0x400ee39c 0x42 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4a (size before relaxing) + *fill* 0x400ee3de 0x2 + .text.nd6_process_autoconfig_prefix + 0x400ee3e0 0x23b esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x242 (size before relaxing) + *fill* 0x400ee61b 0x1 + .text.nd6_free_q + 0x400ee61c 0x55 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x61 (size before relaxing) + *fill* 0x400ee671 0x3 + .text.nd6_free_neighbor_cache_entry + 0x400ee674 0x6b esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x400ee6df 0x1 + .text.nd6_new_neighbor_cache_entry + 0x400ee6e0 0x1de esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1ea (size before relaxing) + *fill* 0x400ee8be 0x2 + .text.nd6_send_na + 0x400ee8c0 0x15e esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x16a (size before relaxing) + *fill* 0x400eea1e 0x2 + .text.nd6_send_rs + 0x400eea20 0xed esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xf9 (size before relaxing) + *fill* 0x400eeb0d 0x3 + .text.nd6_send_ns + 0x400eeb10 0x1a0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1ac (size before relaxing) + .text.nd6_send_neighbor_cache_probe + 0x400eecb0 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x12 (size before relaxing) + *fill* 0x400eecbe 0x2 + .text.nd6_new_router + 0x400eecc0 0x13a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x13e (size before relaxing) + *fill* 0x400eedfa 0x2 + .text.nd6_get_next_hop_entry + 0x400eedfc 0x355 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x365 (size before relaxing) + *fill* 0x400ef151 0x3 + .text.nd6_queue_packet + 0x400ef154 0x105 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x119 (size before relaxing) + *fill* 0x400ef259 0x3 + .text.nd6_input + 0x400ef25c 0xcf7 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xd6a (size before relaxing) + 0x400ef25c nd6_input + *fill* 0x400eff53 0x1 + .text.nd6_tmr 0x400eff54 0x463 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x47f (size before relaxing) + 0x400eff54 nd6_tmr + *fill* 0x400f03b7 0x1 + .text.nd6_clear_destination_cache + 0x400f03b8 0x29 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x400f03b8 nd6_clear_destination_cache + *fill* 0x400f03e1 0x3 + .text.nd6_find_route + 0x400f03e4 0x96 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x9a (size before relaxing) + 0x400f03e4 nd6_find_route + *fill* 0x400f047a 0x2 + .text.nd6_get_next_hop_addr_or_queue + 0x400f047c 0x8e esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x92 (size before relaxing) + 0x400f047c nd6_get_next_hop_addr_or_queue + *fill* 0x400f050a 0x2 + .text.nd6_get_destination_mtu + 0x400f050c 0x2a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2e (size before relaxing) + 0x400f050c nd6_get_destination_mtu + *fill* 0x400f0536 0x2 + .text.nd6_reachability_hint + 0x400f0538 0x15a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x15e (size before relaxing) + 0x400f0538 nd6_reachability_hint + *fill* 0x400f0692 0x2 + .text.nd6_cleanup_netif + 0x400f0694 0xa6 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xac (size before relaxing) + 0x400f0694 nd6_cleanup_netif + *fill* 0x400f073a 0x2 + .text.nd6_adjust_mld_membership + 0x400f073c 0xa0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xa3 (size before relaxing) + 0x400f073c nd6_adjust_mld_membership + *fill* 0x400f07dc 0x0 + .text.ethernet_input + 0x400f07dc 0xf4 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x100 (size before relaxing) + 0x400f07dc ethernet_input + .text.ethernet_output + 0x400f08d0 0x69 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x71 (size before relaxing) + 0x400f08d0 ethernet_output + *fill* 0x400f0939 0x3 + .text.lwip_init_tcp_isn + 0x400f093c 0x2a esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x400f093c lwip_init_tcp_isn + *fill* 0x400f0966 0x2 + .text.lwip_hook_tcp_isn + 0x400f0968 0xd2 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0xda (size before relaxing) + 0x400f0968 lwip_hook_tcp_isn + *fill* 0x400f0a3a 0x2 + .text.ip4_route_src_hook + 0x400f0a3c 0x2e esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x400f0a3c ip4_route_src_hook + *fill* 0x400f0a6a 0x2 + .text.dhcp_parse_extra_opts + 0x400f0a6c 0x71 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x79 (size before relaxing) + 0x400f0a6c dhcp_parse_extra_opts + *fill* 0x400f0add 0x3 + .text.dhcp_append_extra_opts + 0x400f0ae0 0x5e esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x400f0ae0 dhcp_append_extra_opts + *fill* 0x400f0b3e 0x2 + .text.sys_thread_sem_free + 0x400f0b40 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1a (size before relaxing) + *fill* 0x400f0b54 0x0 + .text.sys_mutex_new + 0x400f0b54 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1a (size before relaxing) + 0x400f0b54 sys_mutex_new + *fill* 0x400f0b6a 0x2 + .text.sys_mutex_lock + 0x400f0b6c 0x1f esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x23 (size before relaxing) + 0x400f0b6c sys_mutex_lock + *fill* 0x400f0b8b 0x1 + .text.sys_mutex_unlock + 0x400f0b8c 0x23 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x27 (size before relaxing) + 0x400f0b8c sys_mutex_unlock + *fill* 0x400f0baf 0x1 + .text.sys_sem_new + 0x400f0bb0 0x55 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x61 (size before relaxing) + 0x400f0bb0 sys_sem_new + *fill* 0x400f0c05 0x3 + .text.sys_sem_signal + 0x400f0c08 0x24 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x28 (size before relaxing) + 0x400f0c08 sys_sem_signal + .text.sys_sem_signal_isr + 0x400f0c2c 0x1c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x400f0c2c sys_sem_signal_isr + .text.sys_arch_sem_wait + 0x400f0c48 0x52 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x5e (size before relaxing) + 0x400f0c48 sys_arch_sem_wait + *fill* 0x400f0c9a 0x2 + .text.sys_sem_free + 0x400f0c9c 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x12 (size before relaxing) + 0x400f0c9c sys_sem_free + *fill* 0x400f0caa 0x2 + .text.sys_mbox_new + 0x400f0cac 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x3e (size before relaxing) + 0x400f0cac sys_mbox_new + *fill* 0x400f0ce2 0x2 + .text.sys_mbox_post + 0x400f0ce4 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x2c (size before relaxing) + 0x400f0ce4 sys_mbox_post + .text.sys_mbox_trypost + 0x400f0d0c 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x400f0d0c sys_mbox_trypost + *fill* 0x400f0d2e 0x2 + .text.sys_arch_mbox_fetch + 0x400f0d30 0x5f esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x6a (size before relaxing) + 0x400f0d30 sys_arch_mbox_fetch + *fill* 0x400f0d8f 0x1 + .text.sys_arch_mbox_tryfetch + 0x400f0d90 0x3a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x400f0d90 sys_arch_mbox_tryfetch + *fill* 0x400f0dca 0x2 + .text.sys_mbox_free + 0x400f0dcc 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x3e (size before relaxing) + 0x400f0dcc sys_mbox_free + *fill* 0x400f0e02 0x2 + .text.sys_thread_new + 0x400f0e04 0x24 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x28 (size before relaxing) + 0x400f0e04 sys_thread_new + .text.sys_init + 0x400f0e28 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x48 (size before relaxing) + 0x400f0e28 sys_init + *fill* 0x400f0e5e 0x2 + .text.sys_now 0x400f0e60 0xd esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x10 (size before relaxing) + 0x400f0e60 sys_now + *fill* 0x400f0e6d 0x3 + .text.sys_arch_protect + 0x400f0e70 0x1b esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x21 (size before relaxing) + 0x400f0e70 sys_arch_protect + *fill* 0x400f0e8b 0x1 + .text.sys_arch_unprotect + 0x400f0e8c 0xb esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xe (size before relaxing) + 0x400f0e8c sys_arch_unprotect + *fill* 0x400f0e97 0x1 + .text.sys_thread_sem_init + 0x400f0e98 0x60 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x78 (size before relaxing) + 0x400f0e98 sys_thread_sem_init + .text.sys_thread_sem_get + 0x400f0ef8 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + 0x400f0ef8 sys_thread_sem_get + .text.sys_thread_tcpip + 0x400f0f10 0x6c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x70 (size before relaxing) + 0x400f0f10 sys_thread_tcpip + .text.lwip_get_socket_select_semaphore + 0x400f0f7c 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xd (size before relaxing) + *fill* 0x400f0f86 0x2 + .text.lwip_stop_socket_select_isr + 0x400f0f88 0x12 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x16 (size before relaxing) + *fill* 0x400f0f9a 0x2 + .text.lwip_stop_socket_select + 0x400f0f9c 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x400f0fa6 0x2 + .text.lwip_ioctl_r_wrapper + 0x400f0fa8 0x3a esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x400f0fe2 0x2 + .text.lwip_fcntl_r_wrapper + 0x400f0fe4 0x10 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x14 (size before relaxing) + .text.lwip_fstat + 0x400f0ff4 0x45 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x400f1039 0x3 + .text.esp_vfs_lwip_sockets_register + 0x400f103c 0x68 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x6c (size before relaxing) + 0x400f103c esp_vfs_lwip_sockets_register + .text.netconn_apimsg + 0x400f10a4 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x22 (size before relaxing) + *fill* 0x400f10c2 0x2 + .text.netconn_tcp_recvd_msg + 0x400f10c4 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x400f10f5 0x3 + .text.netconn_close_shutdown + 0x400f10f8 0x25 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x29 (size before relaxing) + *fill* 0x400f111d 0x3 + .text.netconn_new_with_proto_and_callback + 0x400f1120 0x72 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x86 (size before relaxing) + 0x400f1120 netconn_new_with_proto_and_callback + *fill* 0x400f1192 0x2 + .text.netconn_prepare_delete + 0x400f1194 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x26 (size before relaxing) + 0x400f1194 netconn_prepare_delete + *fill* 0x400f11b2 0x2 + .text.netconn_delete + 0x400f11b4 0x2f esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x400f11b4 netconn_delete + *fill* 0x400f11e3 0x1 + .text.netconn_getaddr + 0x400f11e4 0x3d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x400f11e4 netconn_getaddr + *fill* 0x400f1221 0x3 + .text.netconn_bind + 0x400f1224 0x8d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x91 (size before relaxing) + 0x400f1224 netconn_bind + *fill* 0x400f12b1 0x3 + .text.netconn_listen_with_backlog + 0x400f12b4 0x25 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x400f12b4 netconn_listen_with_backlog + *fill* 0x400f12d9 0x3 + .text.netconn_tcp_recvd + 0x400f12dc 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x400f12dc netconn_tcp_recvd + *fill* 0x400f1309 0x3 + .text.netconn_send + 0x400f130c 0x1f esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x400f130c netconn_send + *fill* 0x400f132b 0x1 + .text.netconn_write_vectors_partly + 0x400f132c 0xe2 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xe6 (size before relaxing) + 0x400f132c netconn_write_vectors_partly + *fill* 0x400f140e 0x2 + .text.netconn_write_partly + 0x400f1410 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x400f1410 netconn_write_partly + *fill* 0x400f142d 0x3 + .text.netconn_err + 0x400f1430 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x24 (size before relaxing) + 0x400f1430 netconn_err + .text.netconn_accept + 0x400f1450 0x102 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x126 (size before relaxing) + 0x400f1450 netconn_accept + *fill* 0x400f1552 0x2 + .text.netconn_recv_data + 0x400f1554 0x13a esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x15e (size before relaxing) + *fill* 0x400f168e 0x2 + .text.netconn_recv_udp_raw_netbuf_flags + 0x400f1690 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x31 (size before relaxing) + 0x400f1690 netconn_recv_udp_raw_netbuf_flags + *fill* 0x400f16bd 0x3 + .text.netconn_recv_data_tcp + 0x400f16c0 0xa7 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xaf (size before relaxing) + *fill* 0x400f1767 0x1 + .text.netconn_recv_tcp_pbuf_flags + 0x400f1768 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x31 (size before relaxing) + 0x400f1768 netconn_recv_tcp_pbuf_flags + *fill* 0x400f1795 0x3 + .text.netconn_shutdown + 0x400f1798 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x2d (size before relaxing) + 0x400f1798 netconn_shutdown + *fill* 0x400f17c2 0x2 + .text.netconn_join_leave_group + 0x400f17c4 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x31 (size before relaxing) + 0x400f17c4 netconn_join_leave_group + *fill* 0x400f17f1 0x3 + .text.netconn_join_leave_group_netif + 0x400f17f4 0x37 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x400f17f4 netconn_join_leave_group_netif + *fill* 0x400f182b 0x1 + .text.lwip_netconn_err_to_msg + 0x400f182c 0x4a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x400f1876 0x2 + .text.recv_udp + 0x400f1878 0x113 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x123 (size before relaxing) + *fill* 0x400f198b 0x1 + .text.recv_raw + 0x400f198c 0xa5 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xb5 (size before relaxing) + *fill* 0x400f1a31 0x3 + .text.setup_tcp + 0x400f1a34 0x32 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x42 (size before relaxing) + *fill* 0x400f1a66 0x2 + .text.pcb_new 0x400f1a68 0xea esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xf2 (size before relaxing) + *fill* 0x400f1b52 0x2 + .text.err_tcp 0x400f1b54 0x110 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x128 (size before relaxing) + .text.netconn_mark_mbox_invalid + 0x400f1c64 0x40 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x47 (size before relaxing) + *fill* 0x400f1ca4 0x0 + .text.lwip_netconn_do_writemore + 0x400f1ca4 0x285 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x295 (size before relaxing) + *fill* 0x400f1f29 0x3 + .text.lwip_netconn_do_close_internal + 0x400f1f2c 0x1d8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x208 (size before relaxing) + .text.poll_tcp + 0x400f2104 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x66 (size before relaxing) + *fill* 0x400f2166 0x2 + .text.sent_tcp + 0x400f2168 0x60 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x68 (size before relaxing) + .text.tcp_do_abort + 0x400f21c8 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x10 (size before relaxing) + .text.recv_tcp + 0x400f21d4 0xa6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xb6 (size before relaxing) + *fill* 0x400f227a 0x2 + .text.lwip_netconn_is_deallocated_msg + 0x400f227c 0x12 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x400f227c lwip_netconn_is_deallocated_msg + *fill* 0x400f228e 0x2 + .text.lwip_netconn_is_err_msg + 0x400f2290 0x4c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x400f2290 lwip_netconn_is_err_msg + .text.lwip_netconn_do_newconn + 0x400f22dc 0x1d esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x20 (size before relaxing) + 0x400f22dc lwip_netconn_do_newconn + *fill* 0x400f22f9 0x3 + .text.netconn_alloc + 0x400f22fc 0x6c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x78 (size before relaxing) + 0x400f22fc netconn_alloc + .text.netconn_free + 0x400f2368 0x56 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x5a (size before relaxing) + 0x400f2368 netconn_free + *fill* 0x400f23be 0x2 + .text.netconn_drain + 0x400f23c0 0xce esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xf2 (size before relaxing) + *fill* 0x400f248e 0x2 + .text.accept_function + 0x400f2490 0x112 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x142 (size before relaxing) + *fill* 0x400f25a2 0x2 + .text.lwip_netconn_do_delconn + 0x400f25a4 0x102 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x10e (size before relaxing) + 0x400f25a4 lwip_netconn_do_delconn + *fill* 0x400f26a6 0x2 + .text.lwip_netconn_do_bind + 0x400f26a8 0xd5 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xe4 (size before relaxing) + 0x400f26a8 lwip_netconn_do_bind + *fill* 0x400f277d 0x3 + .text.lwip_netconn_do_listen + 0x400f2780 0x157 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x16f (size before relaxing) + 0x400f2780 lwip_netconn_do_listen + *fill* 0x400f28d7 0x1 + .text.lwip_netconn_do_send + 0x400f28d8 0xf2 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x102 (size before relaxing) + 0x400f28d8 lwip_netconn_do_send + *fill* 0x400f29ca 0x2 + .text.lwip_netconn_do_recv + 0x400f29cc 0x40 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x44 (size before relaxing) + 0x400f29cc lwip_netconn_do_recv + .text.lwip_netconn_do_accepted + 0x400f2a0c 0x23 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x26 (size before relaxing) + 0x400f2a0c lwip_netconn_do_accepted + *fill* 0x400f2a2f 0x1 + .text.lwip_netconn_do_write + 0x400f2a30 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x86 (size before relaxing) + 0x400f2a30 lwip_netconn_do_write + *fill* 0x400f2aaa 0x2 + .text.lwip_netconn_do_getaddr + 0x400f2aac 0x17f esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x183 (size before relaxing) + 0x400f2aac lwip_netconn_do_getaddr + *fill* 0x400f2c2b 0x1 + .text.lwip_netconn_do_close + 0x400f2c2c 0xc8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xd7 (size before relaxing) + 0x400f2c2c lwip_netconn_do_close + *fill* 0x400f2cf4 0x0 + .text.lwip_netconn_do_join_leave_group + 0x400f2cf4 0x71 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x400f2cf4 lwip_netconn_do_join_leave_group + *fill* 0x400f2d65 0x3 + .text.lwip_netconn_do_join_leave_group_netif + 0x400f2d68 0x78 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x7f (size before relaxing) + 0x400f2d68 lwip_netconn_do_join_leave_group_netif + *fill* 0x400f2de0 0x0 + .text.err_to_errno + 0x400f2de0 0x26 esp-idf/lwip/liblwip.a(err.c.obj) + 0x400f2de0 err_to_errno + *fill* 0x400f2e06 0x2 + .text.netbuf_delete + 0x400f2e08 0x1b esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x22 (size before relaxing) + 0x400f2e08 netbuf_delete + *fill* 0x400f2e23 0x1 + .text.netbuf_alloc + 0x400f2e24 0x46 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x4a (size before relaxing) + 0x400f2e24 netbuf_alloc + *fill* 0x400f2e6a 0x2 + .text.netbuf_free + 0x400f2e6c 0x14 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x18 (size before relaxing) + 0x400f2e6c netbuf_free + .text.dns_setserver + 0x400f2e80 0x3a esp-idf/lwip/liblwip.a(dns.c.obj) + 0x400f2e80 dns_setserver + *fill* 0x400f2eba 0x2 + .text.inet_cksum_pseudo_base + 0x400f2ebc 0x72 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x7a (size before relaxing) + *fill* 0x400f2f2e 0x2 + .text.inet_chksum_pseudo + 0x400f2f30 0x38 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x3c (size before relaxing) + 0x400f2f30 inet_chksum_pseudo + .text.ip6_chksum_pseudo + 0x400f2f68 0x54 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x400f2f68 ip6_chksum_pseudo + .text.ip_chksum_pseudo + 0x400f2fbc 0x29 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x2c (size before relaxing) + 0x400f2fbc ip_chksum_pseudo + *fill* 0x400f2fe5 0x3 + .text.inet_chksum + 0x400f2fe8 0x18 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x400f2fe8 inet_chksum + .text.inet_chksum_pbuf + 0x400f3000 0x56 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x5a (size before relaxing) + 0x400f3000 inet_chksum_pbuf + *fill* 0x400f3056 0x2 + .text.esp_netif_add_to_list_unsafe + 0x400f3058 0x2d esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400f3058 esp_netif_add_to_list_unsafe + *fill* 0x400f3085 0x3 + .text.esp_netif_remove_from_list_unsafe + 0x400f3088 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400f3088 esp_netif_remove_from_list_unsafe + .text.esp_netif_get_nr_of_ifs + 0x400f30e8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400f30e8 esp_netif_get_nr_of_ifs + *fill* 0x400f30f2 0x2 + .text.esp_netif_next_unsafe + 0x400f30f4 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400f30f4 esp_netif_next_unsafe + *fill* 0x400f3125 0x3 + .text.esp_netif_next + 0x400f3128 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x10 (size before relaxing) + 0x400f3128 esp_netif_next + .text.esp_netif_is_netif_listed + 0x400f3134 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400f3134 esp_netif_is_netif_listed + .text.esp_netif_get_handle_from_ifkey_unsafe + 0x400f3154 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400f3154 esp_netif_get_handle_from_ifkey_unsafe + .text.esp_netif_is_active + 0x400f3184 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x12 (size before relaxing) + *fill* 0x400f3192 0x2 + .text.esp_netif_set_default_netif_internal + 0x400f3194 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x400f319e 0x2 + .text.esp_netif_lwip_ipc_call_msg + 0x400f31a0 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x41 (size before relaxing) + *fill* 0x400f31d5 0x3 + .text.esp_netif_lwip_ipc_call + 0x400f31d8 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x22 (size before relaxing) + *fill* 0x400f31f6 0x2 + .text.esp_netif_update_default_netif + 0x400f31f8 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_lwip_ipc_call_get_netif + 0x400f320c 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x22 (size before relaxing) + *fill* 0x400f322a 0x2 + .text.esp_netif_api_cb + 0x400f322c 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x400f3247 0x1 + .text.tcpip_init_done + 0x400f3248 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x400f3252 0x2 + .text.esp_netif_config_sanity_check + 0x400f3254 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x6e (size before relaxing) + *fill* 0x400f32b6 0x2 + .text.esp_netif_set_mac_api + 0x400f32b8 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f32b8 esp_netif_set_mac_api + *fill* 0x400f32e1 0x3 + .text.esp_netif_set_ip_old_info_api + 0x400f32e4 0x2d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x400f3311 0x3 + .text.esp_netif_dhcps_cb + 0x400f3314 0x7e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8e (size before relaxing) + *fill* 0x400f3392 0x2 + .text.esp_netif_start_ip_lost_timer + 0x400f3394 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x24 (size before relaxing) + .text.netif_set_mldv6_flag + 0x400f33b4 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1a (size before relaxing) + *fill* 0x400f33ca 0x2 + .text.esp_netif_internal_nd6_cb + 0x400f33cc 0xd6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe6 (size before relaxing) + *fill* 0x400f34a2 0x2 + .text.netif_set_garp_flag + 0x400f34a4 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x13 (size before relaxing) + *fill* 0x400f34b4 0x0 + .text.esp_netif_ip_lost_timer + 0x400f34b4 0x6a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x76 (size before relaxing) + *fill* 0x400f351e 0x2 + .text.netif_send_mldv6 + 0x400f3520 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x22 (size before relaxing) + *fill* 0x400f353b 0x1 + .text.esp_netif_init_configuration + 0x400f353c 0x100 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x104 (size before relaxing) + .text.netif_unset_garp_flag + 0x400f363c 0xd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + *fill* 0x400f3649 0x3 + .text.netif_unset_mldv6_flag + 0x400f364c 0xd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + *fill* 0x400f3659 0x3 + .text.esp_netif_lwip_remove + 0x400f365c 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x48 (size before relaxing) + .text.esp_netif_destroy_api + 0x400f3698 0x59 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x7d (size before relaxing) + *fill* 0x400f36f1 0x3 + .text.esp_netif_new_api + 0x400f36f4 0x1cf esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x232 (size before relaxing) + *fill* 0x400f38c3 0x1 + .text.netif_send_garp + 0x400f38c4 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + *fill* 0x400f38e5 0x3 + .text.esp_netif_lwip_add + 0x400f38e8 0x69 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x79 (size before relaxing) + *fill* 0x400f3951 0x3 + .text.esp_netif_start_api + 0x400f3954 0x142 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x17a (size before relaxing) + *fill* 0x400f3a96 0x2 + .text.esp_netif_stop_api + 0x400f3a98 0x75 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8d (size before relaxing) + *fill* 0x400f3b0d 0x3 + .text.dns_clear_servers + 0x400f3b10 0x2a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x400f3b3a 0x2 + .text.esp_netif_dhcpc_start_api + 0x400f3b3c 0xc1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xcd (size before relaxing) + *fill* 0x400f3bfd 0x3 + .text.esp_netif_set_hostname_api + 0x400f3c00 0x59 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x5d (size before relaxing) + *fill* 0x400f3c59 0x3 + .text.esp_netif_up_api + 0x400f3c5c 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x3d (size before relaxing) + *fill* 0x400f3c8d 0x3 + .text.esp_netif_down_api + 0x400f3c90 0xa2 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xba (size before relaxing) + *fill* 0x400f3d32 0x2 + .text.esp_netif_init + 0x400f3d34 0xbd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xf1 (size before relaxing) + 0x400f3d34 esp_netif_init + *fill* 0x400f3df1 0x3 + .text.esp_netif_new + 0x400f3df4 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f3df4 esp_netif_new + .text.esp_netif_attach + 0x400f3e0c 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x3e (size before relaxing) + 0x400f3e0c esp_netif_attach + *fill* 0x400f3e42 0x2 + .text.esp_netif_set_driver_config + 0x400f3e44 0x2e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f3e44 esp_netif_set_driver_config + *fill* 0x400f3e72 0x2 + .text.esp_netif_set_mac + 0x400f3e74 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f3e74 esp_netif_set_mac + *fill* 0x400f3e9d 0x3 + .text.esp_netif_start + 0x400f3ea0 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f3ea0 esp_netif_start + .text.esp_netif_stop + 0x400f3eb4 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f3eb4 esp_netif_stop + .text.esp_netif_netstack_buf_ref + 0x400f3ec8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + 0x400f3ec8 esp_netif_netstack_buf_ref + *fill* 0x400f3ed2 0x2 + .text.esp_netif_netstack_buf_free + 0x400f3ed4 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + 0x400f3ed4 esp_netif_netstack_buf_free + *fill* 0x400f3ede 0x2 + .text.esp_netif_dhcpc_start + 0x400f3ee0 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f3ee0 esp_netif_dhcpc_start + .text.esp_netif_set_hostname + 0x400f3ef4 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f3ef4 esp_netif_set_hostname + .text.esp_netif_get_hostname + 0x400f3f08 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f3f08 esp_netif_get_hostname + *fill* 0x400f3f31 0x3 + .text.esp_netif_up + 0x400f3f34 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f3f34 esp_netif_up + .text.esp_netif_down + 0x400f3f48 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f3f48 esp_netif_down + .text.esp_netif_update_default_netif_lwip + 0x400f3f5c 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x108 (size before relaxing) + .text.esp_netif_get_old_ip_info + 0x400f4044 0x2a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f4044 esp_netif_get_old_ip_info + *fill* 0x400f406e 0x2 + .text.esp_netif_get_ip_info + 0x400f4070 0x5a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f4070 esp_netif_get_ip_info + *fill* 0x400f40ca 0x2 + .text.esp_netif_set_old_ip_info + 0x400f40cc 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400f40cc esp_netif_set_old_ip_info + .text.esp_netif_internal_dhcpc_cb + 0x400f40e0 0xdc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xeb (size before relaxing) + *fill* 0x400f41bc 0x0 + .text.netif_callback_fn + 0x400f41bc 0x2e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x32 (size before relaxing) + *fill* 0x400f41ea 0x2 + .text.esp_supp_crc32 + 0x400f41ec 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .text.esp_aes_decrypt + 0x400f4200 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x12 (size before relaxing) + *fill* 0x400f420e 0x2 + .text.esp_aes_encrypt + 0x400f4210 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x12 (size before relaxing) + *fill* 0x400f421e 0x2 + .text.esp_aes_unwrap + 0x400f4220 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x18 (size before relaxing) + .text.esp_aes_wrap + 0x400f4234 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x18 (size before relaxing) + .text.sha256_prf_bits + 0x400f4248 0xda esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0xe6 (size before relaxing) + 0x400f4248 sha256_prf_bits + *fill* 0x400f4322 0x2 + .text.sha256_prf + 0x400f4324 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x400f4324 sha256_prf + .text.sha1_prf + 0x400f4344 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x400f4344 sha1_prf + *fill* 0x400f43de 0x2 + .text.digest_vector + 0x400f43e0 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x71 (size before relaxing) + *fill* 0x400f443d 0x3 + .text.hmac_vector + 0x400f4440 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x78 (size before relaxing) + .text.aes_crypt_init + 0x400f44a4 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x54 (size before relaxing) + .text.aes_crypt_deinit + 0x400f44ec 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x16 (size before relaxing) + *fill* 0x400f44fe 0x2 + .text.aes_crypt + 0x400f4500 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + *fill* 0x400f4515 0x3 + .text.sha256_vector + 0x400f4518 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x400f4518 sha256_vector + .text.sha1_vector + 0x400f452c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x400f452c sha1_vector + .text.md5_vector + 0x400f4540 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x400f4540 md5_vector + .text.hmac_sha256_vector + 0x400f4554 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x400f4554 hmac_sha256_vector + .text.hmac_sha256 + 0x400f456c 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400f456c hmac_sha256 + *fill* 0x400f4589 0x3 + .text.hmac_md5_vector + 0x400f458c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x400f458c hmac_md5_vector + .text.hmac_md5 + 0x400f45a4 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400f45a4 hmac_md5 + *fill* 0x400f45c1 0x3 + .text.hmac_sha1_vector + 0x400f45c4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x400f45c4 hmac_sha1_vector + .text.hmac_sha1 + 0x400f45dc 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400f45dc hmac_sha1 + *fill* 0x400f45f9 0x3 + .text.aes_encrypt_init + 0x400f45fc 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + 0x400f45fc aes_encrypt_init + .text.aes_encrypt + 0x400f460c 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400f460c aes_encrypt + *fill* 0x400f4621 0x3 + .text.aes_encrypt_deinit + 0x400f4624 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xe (size before relaxing) + 0x400f4624 aes_encrypt_deinit + *fill* 0x400f462e 0x2 + .text.aes_decrypt_init + 0x400f4630 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + 0x400f4630 aes_decrypt_init + .text.aes_decrypt + 0x400f4640 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400f4640 aes_decrypt + *fill* 0x400f4655 0x3 + .text.aes_decrypt_deinit + 0x400f4658 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xe (size before relaxing) + 0x400f4658 aes_decrypt_deinit + *fill* 0x400f4662 0x2 + .text.aes_128_cbc_encrypt + 0x400f4664 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x58 (size before relaxing) + 0x400f4664 aes_128_cbc_encrypt + .text.aes_128_cbc_decrypt + 0x400f46ac 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x58 (size before relaxing) + 0x400f46ac aes_128_cbc_decrypt + .text.aes_ctr_encrypt + 0x400f46f4 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4b (size before relaxing) + 0x400f46f4 aes_ctr_encrypt + *fill* 0x400f4730 0x0 + .text.pbkdf2_sha1 + 0x400f4730 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x24 (size before relaxing) + 0x400f4730 pbkdf2_sha1 + .text.omac1_aes_vector + 0x400f4750 0xa7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xb7 (size before relaxing) + 0x400f4750 omac1_aes_vector + *fill* 0x400f47f7 0x1 + .text.omac1_aes_128_vector + 0x400f47f8 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400f47f8 omac1_aes_128_vector + *fill* 0x400f4811 0x3 + .text.omac1_aes_128 + 0x400f4814 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x400f4814 omac1_aes_128 + .text.aes_wrap + 0x400f482c 0xc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0xca (size before relaxing) + 0x400f482c aes_wrap + *fill* 0x400f48ee 0x2 + .text.aes_unwrap + 0x400f48f0 0xde esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0xe6 (size before relaxing) + 0x400f48f0 aes_unwrap + *fill* 0x400f49ce 0x2 + .text.os_get_time + 0x400f49d0 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x400f49d0 os_get_time + *fill* 0x400f49ed 0x3 + .text.os_random + 0x400f49f0 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0xd (size before relaxing) + 0x400f49f0 os_random + *fill* 0x400f49fa 0x2 + .text.os_get_random + 0x400f49fc 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x400f49fc os_get_random + *fill* 0x400f4a0d 0x3 + .text.os_sleep + 0x400f4a10 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x1f (size before relaxing) + 0x400f4a10 os_sleep + *fill* 0x400f4a2c 0x0 + .text.forced_memzero + 0x400f4a2c 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x400f4a2c forced_memzero + *fill* 0x400f4a3b 0x1 + .text.ccmp_aad_nonce + 0x400f4a3c 0x116 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + *fill* 0x400f4b52 0x2 + .text.ccmp_decrypt + 0x400f4b54 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x9a (size before relaxing) + 0x400f4b54 ccmp_decrypt + *fill* 0x400f4be2 0x2 + .text.ccmp_encrypt + 0x400f4be4 0xfc esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x108 (size before relaxing) + 0x400f4be4 ccmp_encrypt + .text.hex2byte + 0x400f4ce0 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x30 (size before relaxing) + 0x400f4ce0 hex2byte + .text.hexstr2bin + 0x400f4d0c 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x400f4d0c hexstr2bin + .text.wpa_get_ntp_timestamp + 0x400f4d34 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x56 (size before relaxing) + 0x400f4d34 wpa_get_ntp_timestamp + *fill* 0x400f4d86 0x2 + .text.printf_decode + 0x400f4d88 0x154 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x15c (size before relaxing) + 0x400f4d88 printf_decode + .text.dup_binstr + 0x400f4edc 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x400f4edc dup_binstr + *fill* 0x400f4f06 0x2 + .text.wpa_config_parse_string + 0x400f4f08 0x116 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x12e (size before relaxing) + 0x400f4f08 wpa_config_parse_string + *fill* 0x400f501e 0x2 + .text.bin_clear_free + 0x400f5020 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x1a (size before relaxing) + 0x400f5020 bin_clear_free + *fill* 0x400f5036 0x2 + .text.os_memdup + 0x400f5038 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x400f5038 os_memdup + .text.os_reltime_expired + 0x400f5064 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x400f5064 os_reltime_expired + .text.HMAC_sha1_final + 0x400f50d4 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x28 (size before relaxing) + .text.mbedtls_sha1_init_start + 0x400f50f4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x20 (size before relaxing) + .text.HMAC_sha1_init + 0x400f510c 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0xca (size before relaxing) + *fill* 0x400f51c2 0x2 + .text.sha1_extract + 0x400f51c4 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .text.pbkdf2_f_sha1 + 0x400f51fc 0xe2 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0xfe (size before relaxing) + *fill* 0x400f52de 0x2 + .text.pbkdf2_sha1 + 0x400f52e0 0x91 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x99 (size before relaxing) + *fill* 0x400f5371 0x3 + .text.fastpbkdf2_hmac_sha1 + 0x400f5374 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x400f5374 fastpbkdf2_hmac_sha1 + *fill* 0x400f538f 0x1 + .text.aes_ccm_encr_start + 0x400f5390 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x400f53aa 0x2 + .text.aes_ccm_auth + 0x400f53ac 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x5e (size before relaxing) + *fill* 0x400f5402 0x2 + .text.aes_ccm_encr + 0x400f5404 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x72 (size before relaxing) + *fill* 0x400f546e 0x2 + .text.aes_ccm_encr_auth + 0x400f5470 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x36 (size before relaxing) + *fill* 0x400f54a2 0x2 + .text.aes_ccm_decr_auth + 0x400f54a4 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x36 (size before relaxing) + *fill* 0x400f54d6 0x2 + .text.aes_ccm_auth_start + 0x400f54d8 0xba esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xca (size before relaxing) + *fill* 0x400f5592 0x2 + .text.aes_ccm_ae + 0x400f5594 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xa6 (size before relaxing) + 0x400f5594 aes_ccm_ae + *fill* 0x400f5626 0x2 + .text.aes_ccm_ad + 0x400f5628 0xa7 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xbf (size before relaxing) + 0x400f5628 aes_ccm_ad + *fill* 0x400f56cf 0x1 + .text.esp_wifi_config_info + 0x400f56d0 0xb2 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xf2 (size before relaxing) + *fill* 0x400f5782 0x2 + .text.wifi_deinit_internal + 0x400f5784 0x7e esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xa2 (size before relaxing) + *fill* 0x400f5802 0x2 + .text.esp_wifi_set_log_level + 0x400f5804 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xe (size before relaxing) + *fill* 0x400f580e 0x2 + .text.s_set_default_wifi_log_level + 0x400f5810 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x32 (size before relaxing) + *fill* 0x400f5836 0x2 + .text.esp_wifi_init + 0x400f5838 0x7c esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x98 (size before relaxing) + 0x400f5838 esp_wifi_init + .text.wifi_default_action_sta_got_ip + 0x400f58b4 0x3b esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x43 (size before relaxing) + *fill* 0x400f58ef 0x1 + .text.wifi_default_action_ap_stop + 0x400f58f0 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_stop + 0x400f5908 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_start + 0x400f5920 0xa0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xc8 (size before relaxing) + .text.wifi_default_action_ap_start + 0x400f59c0 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_start + 0x400f59d8 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_disconnected + 0x400f59f0 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_connected + 0x400f5a08 0x52 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x66 (size before relaxing) + *fill* 0x400f5a5a 0x2 + .text.clear_default_wifi_handlers + 0x400f5a5c 0x65 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x81 (size before relaxing) + *fill* 0x400f5ac1 0x3 + .text.set_default_wifi_handlers + 0x400f5ac4 0xc1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xd9 (size before relaxing) + *fill* 0x400f5b85 0x3 + .text.create_and_attach + 0x400f5b88 0x34 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x3c (size before relaxing) + .text.esp_netif_attach_wifi + 0x400f5bbc 0x39 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x400f5bf5 0x3 + .text.esp_wifi_set_default_wifi_sta_handlers + 0x400f5bf8 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xd (size before relaxing) + 0x400f5bf8 esp_wifi_set_default_wifi_sta_handlers + *fill* 0x400f5c02 0x2 + .text.esp_netif_attach_wifi_station + 0x400f5c04 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x400f5c04 esp_netif_attach_wifi_station + *fill* 0x400f5c15 0x3 + .text.esp_netif_create_default_wifi_sta + 0x400f5c18 0x56 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x6a (size before relaxing) + 0x400f5c18 esp_netif_create_default_wifi_sta + *fill* 0x400f5c6e 0x2 + .text.httpd_process_session + 0x400f5c70 0x71 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x75 (size before relaxing) + *fill* 0x400f5ce1 0x3 + .text.httpd_process_ctrl_msg + 0x400f5ce4 0x77 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x83 (size before relaxing) + *fill* 0x400f5d5b 0x1 + .text.httpd_os_thread_delete + 0x400f5d5c 0x11 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x400f5d6d 0x3 + .text.httpd_create + 0x400f5d70 0x176 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x400f5ee6 0x2 + .text.httpd_server_init + 0x400f5ee8 0x1c6 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x1ea (size before relaxing) + *fill* 0x400f60ae 0x2 + .text.httpd_delete + 0x400f60b0 0x3c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .text.esp_http_server_dispatch_event + 0x400f60ec 0x3a esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x3e (size before relaxing) + 0x400f60ec esp_http_server_dispatch_event + *fill* 0x400f6126 0x2 + .text.httpd_accept_conn + 0x400f6128 0x250 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x274 (size before relaxing) + .text.httpd_server + 0x400f6378 0x172 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x18a (size before relaxing) + *fill* 0x400f64ea 0x2 + .text.httpd_thread + 0x400f64ec 0x37 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x43 (size before relaxing) + *fill* 0x400f6523 0x1 + .text.httpd_queue_work + 0x400f6524 0x5a esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x400f6524 httpd_queue_work + *fill* 0x400f657e 0x2 + .text.httpd_start + 0x400f6580 0xa9 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0xb5 (size before relaxing) + 0x400f6580 httpd_start + *fill* 0x400f6629 0x3 + .text.init_req + 0x400f662c 0x2a esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x400f6656 0x2 + .text.init_req_aux + 0x400f6658 0x36 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x400f668e 0x2 + .text.parse_init + 0x400f6690 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x48 (size before relaxing) + .text.cb_header_value + 0x400f66d0 0x66 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x400f6736 0x2 + .text.cb_url 0x400f6738 0x84 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.verify_url + 0x400f67bc 0xe8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0xec (size before relaxing) + .text.pause_parsing + 0x400f68a4 0x87 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x8b (size before relaxing) + *fill* 0x400f692b 0x1 + .text.cb_no_body + 0x400f692c 0x71 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x400f699d 0x3 + .text.cb_on_body + 0x400f69a0 0x5b esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x400f69fb 0x1 + .text.cb_header_field + 0x400f69fc 0xae esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x400f6aaa 0x2 + .text.continue_parsing + 0x400f6aac 0x1f esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x23 (size before relaxing) + *fill* 0x400f6acb 0x1 + .text.cb_headers_complete + 0x400f6acc 0x124 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.read_block + 0x400f6bf0 0x4f esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x53 (size before relaxing) + *fill* 0x400f6c3f 0x1 + .text.parse_block + 0x400f6c40 0x118 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_parse_req + 0x400f6d58 0x78 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x84 (size before relaxing) + .text.httpd_req_cleanup + 0x400f6dd0 0x43 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x47 (size before relaxing) + *fill* 0x400f6e13 0x1 + .text.httpd_req_new + 0x400f6e14 0x57 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x63 (size before relaxing) + 0x400f6e14 httpd_req_new + *fill* 0x400f6e6b 0x1 + .text.httpd_req_delete + 0x400f6e6c 0x3d esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x45 (size before relaxing) + 0x400f6e6c httpd_req_delete + *fill* 0x400f6ea9 0x3 + .text.httpd_query_key_value + 0x400f6eac 0xbf esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x400f6eac httpd_query_key_value + *fill* 0x400f6f6b 0x1 + .text.httpd_req_get_url_query_str + 0x400f6f6c 0x56 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x400f6f6c httpd_req_get_url_query_str + *fill* 0x400f6fc2 0x2 + .text.fd_is_valid + 0x400f6fc4 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x2c (size before relaxing) + .text.httpd_sess_get_free + 0x400f6fec 0x32 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x36 (size before relaxing) + 0x400f6fec httpd_sess_get_free + *fill* 0x400f701e 0x2 + .text.httpd_is_sess_available + 0x400f7020 0x11 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x15 (size before relaxing) + 0x400f7020 httpd_is_sess_available + *fill* 0x400f7031 0x3 + .text.httpd_sess_get + 0x400f7034 0x4c esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x400f7034 httpd_sess_get + .text.httpd_sess_free_ctx + 0x400f7080 0x20 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x400f7080 httpd_sess_free_ctx + .text.httpd_sess_clear_ctx + 0x400f70a0 0x32 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x400f70a0 httpd_sess_clear_ctx + *fill* 0x400f70d2 0x2 + .text.httpd_sess_set_descriptors + 0x400f70d4 0x2c esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x30 (size before relaxing) + 0x400f70d4 httpd_sess_set_descriptors + .text.httpd_sess_delete_invalid + 0x400f7100 0x22 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x26 (size before relaxing) + 0x400f7100 httpd_sess_delete_invalid + *fill* 0x400f7122 0x2 + .text.httpd_sess_delete + 0x400f7124 0xa2 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0xae (size before relaxing) + 0x400f7124 httpd_sess_delete + *fill* 0x400f71c6 0x2 + .text.enum_function + 0x400f71c8 0x16d esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x171 (size before relaxing) + *fill* 0x400f7335 0x3 + .text.httpd_sess_new + 0x400f7338 0x82 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x8a (size before relaxing) + 0x400f7338 httpd_sess_new + *fill* 0x400f73ba 0x2 + .text.httpd_sess_close + 0x400f73bc 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x400f73e2 0x2 + .text.httpd_sess_init + 0x400f73e4 0x1f esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x23 (size before relaxing) + 0x400f73e4 httpd_sess_init + *fill* 0x400f7403 0x1 + .text.httpd_sess_process + 0x400f7404 0x5d esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x61 (size before relaxing) + 0x400f7404 httpd_sess_process + *fill* 0x400f7461 0x3 + .text.httpd_sess_trigger_close_ + 0x400f7464 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x400f7464 httpd_sess_trigger_close_ + *fill* 0x400f7481 0x3 + .text.httpd_sess_close_lru + 0x400f7484 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x44 (size before relaxing) + 0x400f7484 httpd_sess_close_lru + .text.httpd_sess_close_all + 0x400f74c4 0x22 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x26 (size before relaxing) + 0x400f74c4 httpd_sess_close_all + *fill* 0x400f74e6 0x2 + .text.httpd_recv_pending + 0x400f74e8 0x32 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x400f751a 0x2 + .text.httpd_sock_err + 0x400f751c 0x70 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x74 (size before relaxing) + .text.httpd_recv_with_opt + 0x400f758c 0x68 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x400f758c httpd_recv_with_opt + .text.httpd_recv + 0x400f75f4 0x15 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x400f75f4 httpd_recv + *fill* 0x400f7609 0x3 + .text.httpd_unrecv + 0x400f760c 0x2f esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x400f760c httpd_unrecv + *fill* 0x400f763b 0x1 + .text.httpd_resp_send + 0x400f763c 0x149 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x165 (size before relaxing) + 0x400f763c httpd_resp_send + *fill* 0x400f7785 0x3 + .text.httpd_resp_send_err + 0x400f7788 0x19a esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x1b6 (size before relaxing) + 0x400f7788 httpd_resp_send_err + *fill* 0x400f7922 0x2 + .text.httpd_req_handle_err + 0x400f7924 0x33 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x400f7924 httpd_req_handle_err + *fill* 0x400f7957 0x1 + .text.httpd_req_recv + 0x400f7958 0x5c esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x60 (size before relaxing) + 0x400f7958 httpd_req_recv + .text.httpd_default_send + 0x400f79b4 0x29 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x2d (size before relaxing) + 0x400f79b4 httpd_default_send + *fill* 0x400f79dd 0x3 + .text.httpd_default_recv + 0x400f79e0 0x2a esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x2e (size before relaxing) + 0x400f79e0 httpd_default_recv + *fill* 0x400f7a0a 0x2 + .text.httpd_uri_match_simple + 0x400f7a0c 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x400f7a39 0x3 + .text.httpd_find_uri_handler + 0x400f7a3c 0x6e esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x400f7aaa 0x2 + .text.httpd_uri_match_wildcard + 0x400f7aac 0x106 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x400f7aac httpd_uri_match_wildcard + *fill* 0x400f7bb2 0x2 + .text.httpd_register_uri_handler + 0x400f7bb4 0xfd esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x101 (size before relaxing) + 0x400f7bb4 httpd_register_uri_handler + *fill* 0x400f7cb1 0x3 + .text.httpd_unregister_all_uri_handlers + 0x400f7cb4 0x3f esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x400f7cb4 httpd_unregister_all_uri_handlers + *fill* 0x400f7cf3 0x1 + .text.httpd_uri + 0x400f7cf4 0xd2 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0xda (size before relaxing) + 0x400f7cf4 httpd_uri + *fill* 0x400f7dc6 0x2 + .text.cs_create_ctrl_sock + 0x400f7dc8 0x5a esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x62 (size before relaxing) + 0x400f7dc8 cs_create_ctrl_sock + *fill* 0x400f7e22 0x2 + .text.cs_free_ctrl_sock + 0x400f7e24 0xe esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x400f7e24 cs_free_ctrl_sock + *fill* 0x400f7e32 0x2 + .text.cs_send_to_ctrl_sock + 0x400f7e34 0x42 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x4a (size before relaxing) + 0x400f7e34 cs_send_to_ctrl_sock + *fill* 0x400f7e76 0x2 + .text.mbedtls_int_div_int + 0x400f7e78 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x400f7eaa 0x2 + .text.mbedtls_mpi_free + 0x400f7eac 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f7eac mbedtls_mpi_free + *fill* 0x400f7ed2 0x2 + .text.mbedtls_mpi_grow + 0x400f7ed4 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x55 (size before relaxing) + 0x400f7ed4 mbedtls_mpi_grow + *fill* 0x400f7f25 0x3 + .text.mbedtls_mpi_safe_cond_assign + 0x400f7f28 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7a (size before relaxing) + 0x400f7f28 mbedtls_mpi_safe_cond_assign + *fill* 0x400f7f9a 0x2 + .text.mbedtls_mpi_safe_cond_swap + 0x400f7f9c 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8c (size before relaxing) + 0x400f7f9c mbedtls_mpi_safe_cond_swap + .text.mbedtls_mpi_resize_clear + 0x400f8020 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x48 (size before relaxing) + .text.mbedtls_mpi_shrink + 0x400f8064 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x78 (size before relaxing) + 0x400f8064 mbedtls_mpi_shrink + .text.mbedtls_mpi_copy + 0x400f80d8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f80d8 mbedtls_mpi_copy + .text.mbedtls_mpi_lset + 0x400f8160 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x47 (size before relaxing) + 0x400f8160 mbedtls_mpi_lset + *fill* 0x400f81a3 0x1 + .text.mbedtls_mpi_set_bit + 0x400f81a4 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x68 (size before relaxing) + 0x400f81a4 mbedtls_mpi_set_bit + .text.mbedtls_mpi_bitlen + 0x400f8208 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f8208 mbedtls_mpi_bitlen + *fill* 0x400f821a 0x2 + .text.mbedtls_mpi_size + 0x400f821c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x13 (size before relaxing) + 0x400f821c mbedtls_mpi_size + *fill* 0x400f822b 0x1 + .text.mbedtls_mpi_read_binary_le + 0x400f822c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x36 (size before relaxing) + 0x400f822c mbedtls_mpi_read_binary_le + *fill* 0x400f825a 0x2 + .text.mbedtls_mpi_read_binary + 0x400f825c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x36 (size before relaxing) + 0x400f825c mbedtls_mpi_read_binary + *fill* 0x400f828a 0x2 + .text.mbedtls_mpi_write_binary_le + 0x400f828c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f828c mbedtls_mpi_write_binary_le + *fill* 0x400f82a2 0x2 + .text.mbedtls_mpi_write_binary + 0x400f82a4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f82a4 mbedtls_mpi_write_binary + *fill* 0x400f82ba 0x2 + .text.mbedtls_mpi_shift_l + 0x400f82bc 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x46 (size before relaxing) + 0x400f82bc mbedtls_mpi_shift_l + *fill* 0x400f82fa 0x2 + .text.mbedtls_mpi_shift_r + 0x400f82fc 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f82fc mbedtls_mpi_shift_r + *fill* 0x400f8312 0x2 + .text.mbedtls_mpi_cmp_abs + 0x400f8314 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f8314 mbedtls_mpi_cmp_abs + .text.mbedtls_mpi_cmp_mpi + 0x400f8388 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f8388 mbedtls_mpi_cmp_mpi + *fill* 0x400f842e 0x2 + .text.mbedtls_mpi_cmp_int + 0x400f8430 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x38 (size before relaxing) + 0x400f8430 mbedtls_mpi_cmp_int + .text.mbedtls_mpi_add_abs + 0x400f8464 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa6 (size before relaxing) + 0x400f8464 mbedtls_mpi_add_abs + *fill* 0x400f8502 0x2 + .text.mbedtls_mpi_sub_abs + 0x400f8504 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa9 (size before relaxing) + 0x400f8504 mbedtls_mpi_sub_abs + *fill* 0x400f85a5 0x3 + .text.add_sub_mpi + 0x400f85a8 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x6e (size before relaxing) + *fill* 0x400f860e 0x2 + .text.mbedtls_mpi_add_mpi + 0x400f8610 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f8610 mbedtls_mpi_add_mpi + *fill* 0x400f8625 0x3 + .text.mbedtls_mpi_sub_mpi + 0x400f8628 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f8628 mbedtls_mpi_sub_mpi + *fill* 0x400f863d 0x3 + .text.mbedtls_mpi_add_int + 0x400f8640 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f8640 mbedtls_mpi_add_int + *fill* 0x400f867a 0x2 + .text.mbedtls_mpi_sub_int + 0x400f867c 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f867c mbedtls_mpi_sub_int + *fill* 0x400f86b5 0x3 + .text.mbedtls_mpi_div_mpi + 0x400f86b8 0x364 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x3d0 (size before relaxing) + 0x400f86b8 mbedtls_mpi_div_mpi + .text.mbedtls_mpi_div_int + 0x400f8a1c 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x3c (size before relaxing) + 0x400f8a1c mbedtls_mpi_div_int + .text.mbedtls_mpi_mod_mpi + 0x400f8a54 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x6e (size before relaxing) + 0x400f8a54 mbedtls_mpi_mod_mpi + *fill* 0x400f8aba 0x2 + .text.mbedtls_mpi_mod_int + 0x400f8abc 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400f8abc mbedtls_mpi_mod_int + *fill* 0x400f8b3d 0x3 + .text.mpi_check_small_factors + 0x400f8b40 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x5a (size before relaxing) + *fill* 0x400f8b96 0x2 + .text.mbedtls_mpi_gcd + 0x400f8b98 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x130 (size before relaxing) + 0x400f8b98 mbedtls_mpi_gcd + .text.mbedtls_mpi_fill_random + 0x400f8c8c 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x3a (size before relaxing) + 0x400f8c8c mbedtls_mpi_fill_random + *fill* 0x400f8cbe 0x2 + .text.mpi_miller_rabin + 0x400f8cc0 0x1a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x1ef (size before relaxing) + *fill* 0x400f8e63 0x1 + .text.mbedtls_mpi_random + 0x400f8e64 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x48 (size before relaxing) + 0x400f8e64 mbedtls_mpi_random + .text.mbedtls_mpi_inv_mod + 0x400f8ea4 0x2a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x32c (size before relaxing) + 0x400f8ea4 mbedtls_mpi_inv_mod + .text.mbedtls_mpi_is_prime_ext + 0x400f9148 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x6a (size before relaxing) + 0x400f9148 mbedtls_mpi_is_prime_ext + *fill* 0x400f91a6 0x2 + .text.mpi_bigendian_to_host + 0x400f91a8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_bitlen + 0x400f91b8 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400f91b8 mbedtls_mpi_core_bitlen + *fill* 0x400f91e3 0x1 + .text.mbedtls_mpi_core_bigendian_to_host + 0x400f91e4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x30 (size before relaxing) + 0x400f91e4 mbedtls_mpi_core_bigendian_to_host + .text.mbedtls_mpi_core_uint_le_mpi + 0x400f9210 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400f9210 mbedtls_mpi_core_uint_le_mpi + *fill* 0x400f924a 0x2 + .text.mbedtls_mpi_core_lt_ct + 0x400f924c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x48 (size before relaxing) + 0x400f924c mbedtls_mpi_core_lt_ct + .text.mbedtls_mpi_core_read_le + 0x400f9290 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400f9290 mbedtls_mpi_core_read_le + .text.mbedtls_mpi_core_read_be + 0x400f92e8 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x51 (size before relaxing) + 0x400f92e8 mbedtls_mpi_core_read_be + *fill* 0x400f9335 0x3 + .text.mbedtls_mpi_core_write_le + 0x400f9338 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400f9338 mbedtls_mpi_core_write_le + *fill* 0x400f93b2 0x2 + .text.mbedtls_mpi_core_write_be + 0x400f93b4 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400f93b4 mbedtls_mpi_core_write_be + .text.mbedtls_mpi_core_shift_r + 0x400f942c 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400f942c mbedtls_mpi_core_shift_r + *fill* 0x400f94bf 0x1 + .text.mbedtls_mpi_core_shift_l + 0x400f94c0 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400f94c0 mbedtls_mpi_core_shift_l + *fill* 0x400f9535 0x3 + .text.mbedtls_mpi_core_montmul + 0x400f9538 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x9e (size before relaxing) + 0x400f9538 mbedtls_mpi_core_montmul + *fill* 0x400f95ca 0x2 + .text.mbedtls_mpi_core_get_mont_r2_unsafe + 0x400f95cc 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4a (size before relaxing) + 0x400f95cc mbedtls_mpi_core_get_mont_r2_unsafe + *fill* 0x400f9606 0x2 + .text.mbedtls_mpi_core_fill_random + 0x400f9608 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x62 (size before relaxing) + 0x400f9608 mbedtls_mpi_core_fill_random + *fill* 0x400f9666 0x2 + .text.mbedtls_mpi_core_random + 0x400f9668 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x8e (size before relaxing) + 0x400f9668 mbedtls_mpi_core_random + *fill* 0x400f96e6 0x2 + .text.mbedtls_mpi_core_to_mont_rep + 0x400f96e8 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x1e (size before relaxing) + 0x400f96e8 mbedtls_mpi_core_to_mont_rep + *fill* 0x400f9702 0x2 + .text.mbedtls_cipher_info_from_type + 0x400f9704 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x400f9704 mbedtls_cipher_info_from_type + *fill* 0x400f971e 0x2 + .text.mbedtls_cipher_info_from_values + 0x400f9720 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x400f9720 mbedtls_cipher_info_from_values + *fill* 0x400f975a 0x2 + .text.mbedtls_cipher_init + 0x400f975c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x400f975c mbedtls_cipher_init + *fill* 0x400f976e 0x2 + .text.mbedtls_cipher_free + 0x400f9770 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x36 (size before relaxing) + 0x400f9770 mbedtls_cipher_free + *fill* 0x400f97a3 0x1 + .text.mbedtls_cipher_setup + 0x400f97a4 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x400f97a4 mbedtls_cipher_setup + *fill* 0x400f97e1 0x3 + .text.mbedtls_cipher_setkey + 0x400f97e4 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x400f97e4 mbedtls_cipher_setkey + *fill* 0x400f9879 0x3 + .text.mbedtls_cipher_update + 0x400f987c 0x2a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x2a8 (size before relaxing) + 0x400f987c mbedtls_cipher_update + .text.xts_aes_ctx_free + 0x400f9b20 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x17 (size before relaxing) + *fill* 0x400f9b33 0x1 + .text.xts_aes_ctx_alloc + 0x400f9b34 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x400f9b4a 0x2 + .text.xts_aes_setkey_dec_wrap + 0x400f9b4c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.xts_aes_setkey_enc_wrap + 0x400f9b5c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_xts_wrap + 0x400f9b6c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9b91 0x3 + .text.gcm_ctx_free + 0x400f9b94 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x400f9ba6 0x2 + .text.gcm_ctx_alloc + 0x400f9ba8 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x400f9bbe 0x2 + .text.gcm_aria_setkey_wrap + 0x400f9bc0 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9bd5 0x3 + .text.gcm_aes_setkey_wrap + 0x400f9bd8 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9bed 0x3 + .text.ccm_ctx_free + 0x400f9bf0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x400f9c02 0x2 + .text.ccm_ctx_alloc + 0x400f9c04 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x400f9c1a 0x2 + .text.ccm_aria_setkey_wrap + 0x400f9c1c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9c31 0x3 + .text.ccm_aes_setkey_wrap + 0x400f9c34 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9c49 0x3 + .text.aria_ctx_free + 0x400f9c4c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x400f9c5e 0x2 + .text.aria_ctx_alloc + 0x400f9c60 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x400f9c76 0x2 + .text.aria_setkey_dec_wrap + 0x400f9c78 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aria_setkey_enc_wrap + 0x400f9c88 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aria_crypt_ctr_wrap + 0x400f9c98 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9cb5 0x3 + .text.aria_crypt_cfb128_wrap + 0x400f9cb8 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9cd5 0x3 + .text.aria_crypt_cbc_wrap + 0x400f9cd8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9cf1 0x3 + .text.aria_crypt_ecb_wrap + 0x400f9cf4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_ctx_free + 0x400f9d04 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x400f9d16 0x2 + .text.aes_ctx_alloc + 0x400f9d18 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x400f9d2e 0x2 + .text.aes_setkey_dec_wrap + 0x400f9d30 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_setkey_enc_wrap + 0x400f9d40 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_ctr_wrap + 0x400f9d50 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9d6d 0x3 + .text.aes_crypt_ofb_wrap + 0x400f9d70 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9d89 0x3 + .text.aes_crypt_cfb128_wrap + 0x400f9d8c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9da9 0x3 + .text.aes_crypt_cbc_wrap + 0x400f9dac 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9dc5 0x3 + .text.aes_crypt_ecb_wrap + 0x400f9dc8 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400f9ddd 0x3 + .text.mbedtls_ct_memmove_left + 0x400f9de0 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x400f9de0 mbedtls_ct_memmove_left + *fill* 0x400f9e45 0x3 + .text.cmac_multiply_by_u + 0x400f9e48 0x9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + *fill* 0x400f9ee5 0x3 + .text.cmac_generate_subkeys + 0x400f9ee8 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x5a (size before relaxing) + *fill* 0x400f9f3a 0x2 + .text.mbedtls_cipher_cmac_starts + 0x400f9f3c 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x7e (size before relaxing) + 0x400f9f3c mbedtls_cipher_cmac_starts + *fill* 0x400f9fb6 0x2 + .text.mbedtls_cipher_cmac_update + 0x400f9fb8 0xf7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x400f9fb8 mbedtls_cipher_cmac_update + *fill* 0x400fa0af 0x1 + .text.mbedtls_cipher_cmac_finish + 0x400fa0b0 0x109 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x125 (size before relaxing) + 0x400fa0b0 mbedtls_cipher_cmac_finish + *fill* 0x400fa1b9 0x3 + .text.mbedtls_md_info_from_type + 0x400fa1bc 0x8d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x400fa1bc mbedtls_md_info_from_type + *fill* 0x400fa249 0x3 + .text.mbedtls_md_init + 0x400fa24c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x400fa24c mbedtls_md_init + *fill* 0x400fa25e 0x2 + .text.mbedtls_md_free + 0x400fa260 0x8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xa6 (size before relaxing) + 0x400fa260 mbedtls_md_free + *fill* 0x400fa2ef 0x1 + .text.mbedtls_md_setup + 0x400fa2f0 0x146 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x17e (size before relaxing) + 0x400fa2f0 mbedtls_md_setup + *fill* 0x400fa436 0x2 + .text.mbedtls_md_starts + 0x400fa438 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x400fa438 mbedtls_md_starts + .text.mbedtls_md_update + 0x400fa540 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xb0 (size before relaxing) + 0x400fa540 mbedtls_md_update + .text.mbedtls_md_finish + 0x400fa5e8 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xb3 (size before relaxing) + 0x400fa5e8 mbedtls_md_finish + *fill* 0x400fa693 0x1 + .text.mbedtls_md + 0x400fa694 0x10d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x115 (size before relaxing) + 0x400fa694 mbedtls_md + *fill* 0x400fa7a1 0x3 + .text.mbedtls_md_hmac_starts + 0x400fa7a4 0xd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xe5 (size before relaxing) + 0x400fa7a4 mbedtls_md_hmac_starts + *fill* 0x400fa879 0x3 + .text.mbedtls_md_hmac_update + 0x400fa87c 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x400fa87c mbedtls_md_hmac_update + *fill* 0x400fa8ad 0x3 + .text.mbedtls_md_hmac_finish + 0x400fa8b0 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x7e (size before relaxing) + 0x400fa8b0 mbedtls_md_hmac_finish + *fill* 0x400fa91e 0x2 + .text.mbedtls_md_hmac_reset + 0x400fa920 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x46 (size before relaxing) + 0x400fa920 mbedtls_md_hmac_reset + *fill* 0x400fa95e 0x2 + .text.mbedtls_md5 + 0x400fa960 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x40 (size before relaxing) + 0x400fa960 mbedtls_md5 + *fill* 0x400fa991 0x3 + .text.mbedtls_calloc + 0x400fa994 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x400fa994 mbedtls_calloc + .text.mbedtls_free + 0x400fa9a8 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x400fa9a8 mbedtls_free + *fill* 0x400fa9b7 0x1 + .text.mbedtls_platform_zeroize + 0x400fa9b8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x400fa9b8 mbedtls_platform_zeroize + .text.mbedtls_zeroize_and_free + 0x400fa9d0 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x1a (size before relaxing) + 0x400fa9d0 mbedtls_zeroize_and_free + *fill* 0x400fa9e3 0x1 + .text.mbedtls_sha1 + 0x400fa9e4 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x40 (size before relaxing) + 0x400fa9e4 mbedtls_sha1 + *fill* 0x400faa15 0x3 + .text.mbedtls_sha256 + 0x400faa18 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x4a (size before relaxing) + 0x400faa18 mbedtls_sha256 + *fill* 0x400faa56 0x2 + .text.mbedtls_sha512 + 0x400faa58 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x4a (size before relaxing) + 0x400faa58 mbedtls_sha512 + *fill* 0x400faa96 0x2 + .text.keccak_f1600 + 0x400faa98 0x84f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + *fill* 0x400fb2e7 0x1 + .text.mbedtls_sha3_init + 0x400fb2e8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x400fb2e8 mbedtls_sha3_init + *fill* 0x400fb2fa 0x2 + .text.mbedtls_sha3_free + 0x400fb2fc 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x12 (size before relaxing) + 0x400fb2fc mbedtls_sha3_free + *fill* 0x400fb30b 0x1 + .text.mbedtls_sha3_starts + 0x400fb30c 0x6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x400fb30c mbedtls_sha3_starts + *fill* 0x400fb377 0x1 + .text.mbedtls_sha3_update + 0x400fb378 0x199 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x400fb378 mbedtls_sha3_update + *fill* 0x400fb511 0x3 + .text.mbedtls_sha3_finish + 0x400fb514 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x10f (size before relaxing) + 0x400fb514 mbedtls_sha3_finish + *fill* 0x400fb620 0x0 + .text.mbedtls_sha3 + 0x400fb620 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x42 (size before relaxing) + 0x400fb620 mbedtls_sha3 + *fill* 0x400fb653 0x1 + .text.esp_mbedtls_mem_calloc + 0x400fb654 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x400fb654 esp_mbedtls_mem_calloc + .text.esp_mbedtls_mem_free + 0x400fb668 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x400fb668 esp_mbedtls_mem_free + *fill* 0x400fb676 0x2 + .text.esp_aes_xts_init + 0x400fb678 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17 (size before relaxing) + 0x400fb678 esp_aes_xts_init + *fill* 0x400fb688 0x0 + .text.esp_aes_xts_free + 0x400fb688 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17 (size before relaxing) + 0x400fb688 esp_aes_xts_free + *fill* 0x400fb698 0x0 + .text.esp_aes_xts_setkey_enc + 0x400fb698 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x3e (size before relaxing) + 0x400fb698 esp_aes_xts_setkey_enc + *fill* 0x400fb6ce 0x2 + .text.esp_aes_xts_setkey_dec + 0x400fb6d0 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x3e (size before relaxing) + 0x400fb6d0 esp_aes_xts_setkey_dec + *fill* 0x400fb706 0x2 + .text.esp_aes_crypt_xts + 0x400fb708 0x16e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17a (size before relaxing) + 0x400fb708 esp_aes_crypt_xts + *fill* 0x400fb876 0x2 + .text.esp_aes_init + 0x400fb878 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x400fb878 esp_aes_init + *fill* 0x400fb887 0x1 + .text.esp_aes_free + 0x400fb888 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x400fb888 esp_aes_free + *fill* 0x400fb89a 0x2 + .text.esp_aes_setkey + 0x400fb89c 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x400fb89c esp_aes_setkey + *fill* 0x400fb8de 0x2 + .text.esp_aes_block + 0x400fb8e0 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x7a (size before relaxing) + *fill* 0x400fb952 0x2 + .text.esp_aes_acquire_hardware + 0x400fb954 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x400fb954 esp_aes_acquire_hardware + .text.esp_aes_release_hardware + 0x400fb96c 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x17 (size before relaxing) + 0x400fb96c esp_aes_release_hardware + *fill* 0x400fb97f 0x1 + .text.esp_aes_crypt_ecb + 0x400fb980 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x62 (size before relaxing) + 0x400fb980 esp_aes_crypt_ecb + *fill* 0x400fb9ce 0x2 + .text.esp_aes_crypt_cbc + 0x400fb9d0 0x11e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x12e (size before relaxing) + 0x400fb9d0 esp_aes_crypt_cbc + *fill* 0x400fbaee 0x2 + .text.esp_aes_crypt_cfb128 + 0x400fbaf0 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x134 (size before relaxing) + 0x400fbaf0 esp_aes_crypt_cfb128 + .text.esp_aes_crypt_ctr + 0x400fbc14 0x12c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x13c (size before relaxing) + 0x400fbc14 esp_aes_crypt_ctr + .text.esp_aes_crypt_ofb + 0x400fbd40 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xf4 (size before relaxing) + 0x400fbd40 esp_aes_crypt_ofb + .text.mpi_words + 0x400fbe2c 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x400fbe4e 0x2 + .text.modular_inverse + 0x400fbe50 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.calculate_rinv + 0x400fbec0 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x36 (size before relaxing) + *fill* 0x400fbeeb 0x1 + .text.mpi_montgomery_exp_calc + 0x400fbeec 0xe5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x111 (size before relaxing) + *fill* 0x400fbfd1 0x3 + .text.esp_mpi_exp_mod + 0x400fbfd4 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x120 (size before relaxing) + .text.mpi_mult_mpi_failover_mod_mult + 0x400fc0c8 0x61 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x78 (size before relaxing) + *fill* 0x400fc129 0x3 + .text.mbedtls_mpi_exp_mod + 0x400fc12c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + 0x400fc12c mbedtls_mpi_exp_mod + .text.mbedtls_mpi_mul_mpi + 0x400fc140 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x148 (size before relaxing) + 0x400fc140 mbedtls_mpi_mul_mpi + .text.mpi_mult_mpi_overlong + 0x400fc264 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x78 (size before relaxing) + *fill* 0x400fc2c9 0x3 + .text.mbedtls_mpi_mul_int + 0x400fc2cc 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x400fc2cc mbedtls_mpi_mul_int + *fill* 0x400fc2ed 0x3 + .text.mpi_ll_enable_bus_clock + 0x400fc2f0 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.mpi_ll_reset_register + 0x400fc324 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + *fill* 0x400fc362 0x2 + .text.esp_mpi_enable_hardware_hw_op + 0x400fc364 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x35 (size before relaxing) + 0x400fc364 esp_mpi_enable_hardware_hw_op + *fill* 0x400fc38e 0x2 + .text.esp_mpi_disable_hardware_hw_op + 0x400fc390 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x30 (size before relaxing) + 0x400fc390 esp_mpi_disable_hardware_hw_op + *fill* 0x400fc3b9 0x3 + .text.esp_mpi_mul_mpi_hw_op + 0x400fc3bc 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x46 (size before relaxing) + 0x400fc3bc esp_mpi_mul_mpi_hw_op + *fill* 0x400fc3f2 0x2 + .text.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x400fc3f4 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x8a (size before relaxing) + 0x400fc3f4 esp_mpi_mult_mpi_failover_mod_mult_hw_op + *fill* 0x400fc45e 0x2 + .text.esp_mont_hw_op + 0x400fc460 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x96 (size before relaxing) + 0x400fc460 esp_mont_hw_op + *fill* 0x400fc4da 0x2 + .text.mbedtls_sha1_software_process + 0x400fc4dc 0x1263 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + *fill* 0x400fd73f 0x1 + .text.esp_internal_sha1_parallel_engine_process + 0x400fd740 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x56 (size before relaxing) + *fill* 0x400fd78e 0x2 + .text.mbedtls_sha1_init + 0x400fd790 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x400fd790 mbedtls_sha1_init + *fill* 0x400fd7a2 0x2 + .text.mbedtls_sha1_free + 0x400fd7a4 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x22 (size before relaxing) + 0x400fd7a4 mbedtls_sha1_free + *fill* 0x400fd7bf 0x1 + .text.mbedtls_sha1_starts + 0x400fd7c0 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x400fd7c0 mbedtls_sha1_starts + *fill* 0x400fd7f9 0x3 + .text.mbedtls_internal_sha1_process + 0x400fd7fc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x14 (size before relaxing) + 0x400fd7fc mbedtls_internal_sha1_process + .text.mbedtls_sha1_update + 0x400fd80c 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0xa8 (size before relaxing) + 0x400fd80c mbedtls_sha1_update + .text.mbedtls_sha1_finish + 0x400fd8b0 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x116 (size before relaxing) + 0x400fd8b0 mbedtls_sha1_finish + *fill* 0x400fd9ba 0x2 + .text.mbedtls_sha256_software_process + 0x400fd9bc 0x9bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.esp_internal_sha256_parallel_engine_process + 0x400fe378 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x5d (size before relaxing) + *fill* 0x400fe3ca 0x2 + .text.mbedtls_sha256_init + 0x400fe3cc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x400fe3cc mbedtls_sha256_init + *fill* 0x400fe3de 0x2 + .text.mbedtls_sha256_free + 0x400fe3e0 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x22 (size before relaxing) + 0x400fe3e0 mbedtls_sha256_free + *fill* 0x400fe3fb 0x1 + .text.mbedtls_sha256_starts + 0x400fe3fc 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x400fe3fc mbedtls_sha256_starts + .text.mbedtls_sha256_update + 0x400fe474 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0xa8 (size before relaxing) + 0x400fe474 mbedtls_sha256_update + .text.mbedtls_sha256_finish + 0x400fe518 0x157 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x163 (size before relaxing) + 0x400fe518 mbedtls_sha256_finish + *fill* 0x400fe66f 0x1 + .text.mbedtls_sha512_software_process + 0x400fe670 0xe61 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x400ff4d1 0x3 + .text.esp_internal_sha512_parallel_engine_process + 0x400ff4d4 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x400ff546 0x2 + .text.mbedtls_sha512_init + 0x400ff548 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x400ff548 mbedtls_sha512_init + *fill* 0x400ff55a 0x2 + .text.mbedtls_sha512_free + 0x400ff55c 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x2a (size before relaxing) + 0x400ff55c mbedtls_sha512_free + *fill* 0x400ff583 0x1 + .text.mbedtls_sha512_starts + 0x400ff584 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0xdc (size before relaxing) + 0x400ff584 mbedtls_sha512_starts + *fill* 0x400ff65d 0x3 + .text.mbedtls_sha512_update + 0x400ff660 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0xe4 (size before relaxing) + 0x400ff660 mbedtls_sha512_update + .text.mbedtls_sha512_finish + 0x400ff738 0x272 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x27a (size before relaxing) + 0x400ff738 mbedtls_sha512_finish + *fill* 0x400ff9aa 0x2 + .text.gcm_mult + 0x400ff9ac 0x129 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x400ffad5 0x3 + .text.increment32_j0 + 0x400ffad8 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x400ffb1a 0x2 + .text.esp_gcm_ghash + 0x400ffb1c 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x5e (size before relaxing) + *fill* 0x400ffb6e 0x2 + .text.esp_aes_gcm_setkey + 0x400ffb70 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x400ffb70 esp_aes_gcm_setkey + *fill* 0x400ffbb1 0x3 + .text.esp_aes_gcm_init + 0x400ffbb4 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x400ffbb4 esp_aes_gcm_init + *fill* 0x400ffbcb 0x1 + .text.esp_aes_gcm_free + 0x400ffbcc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x400ffbcc esp_aes_gcm_free + *fill* 0x400ffbde 0x2 + .text.esp_aes_gcm_update + 0x400ffbe0 0x144 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x150 (size before relaxing) + 0x400ffbe0 esp_aes_gcm_update + .text.esp_md5_finish + 0x400ffd24 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x400ffd24 esp_md5_finish + *fill* 0x400ffd35 0x3 + .text.esp_md5_update + 0x400ffd38 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x400ffd38 esp_md5_update + .text.esp_md5_init + 0x400ffd4c 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x400ffd4c esp_md5_init + *fill* 0x400ffd5a 0x2 + .text.esp_md5_starts + 0x400ffd5c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x10 (size before relaxing) + 0x400ffd5c esp_md5_starts + .text.esp_md5_free + 0x400ffd68 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x12 (size before relaxing) + 0x400ffd68 esp_md5_free + *fill* 0x400ffd76 0x2 + .text.aria_a 0x400ffd78 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x400ffe61 0x3 + .text.aria_fo_xor + 0x400ffe64 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x81 (size before relaxing) + *fill* 0x400ffee1 0x3 + .text.aria_fe_xor + 0x400ffee4 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x81 (size before relaxing) + *fill* 0x400fff61 0x3 + .text.aria_rot128 + 0x400fff64 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x400fffda 0x2 + .text.mbedtls_aria_setkey_enc + 0x400fffdc 0x233 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x243 (size before relaxing) + 0x400fffdc mbedtls_aria_setkey_enc + *fill* 0x4010020f 0x1 + .text.mbedtls_aria_setkey_dec + 0x40100210 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x40100210 mbedtls_aria_setkey_dec + *fill* 0x40100286 0x2 + .text.mbedtls_aria_crypt_ecb + 0x40100288 0x1c1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x1cd (size before relaxing) + 0x40100288 mbedtls_aria_crypt_ecb + *fill* 0x40100449 0x3 + .text.mbedtls_aria_init + 0x4010044c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4010044c mbedtls_aria_init + *fill* 0x4010045e 0x2 + .text.mbedtls_aria_free + 0x40100460 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x12 (size before relaxing) + 0x40100460 mbedtls_aria_free + *fill* 0x4010046f 0x1 + .text.mbedtls_aria_crypt_cbc + 0x40100470 0xbd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x40100470 mbedtls_aria_crypt_cbc + *fill* 0x4010052d 0x3 + .text.mbedtls_aria_crypt_cfb128 + 0x40100530 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x40100530 mbedtls_aria_crypt_cfb128 + *fill* 0x401005c5 0x3 + .text.mbedtls_aria_crypt_ctr + 0x401005c8 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x401005c8 mbedtls_aria_crypt_ctr + .text.mbedtls_asn1_get_tag + 0x40100634 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x40100634 mbedtls_asn1_get_tag + *fill* 0x40100665 0x3 + .text.asn1_get_tagged_int + 0x40100668 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x96 (size before relaxing) + *fill* 0x401006fa 0x2 + .text.mbedtls_asn1_get_int + 0x401006fc 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x401006fc mbedtls_asn1_get_int + *fill* 0x40100711 0x3 + .text.mbedtls_asn1_get_mpi + 0x40100714 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x30 (size before relaxing) + 0x40100714 mbedtls_asn1_get_mpi + .text.mbedtls_asn1_get_bitstring_null + 0x40100740 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x3e (size before relaxing) + 0x40100740 mbedtls_asn1_get_bitstring_null + *fill* 0x4010077a 0x2 + .text.mbedtls_asn1_get_alg + 0x4010077c 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x93 (size before relaxing) + 0x4010077c mbedtls_asn1_get_alg + *fill* 0x40100803 0x1 + .text.mbedtls_asn1_write_len_and_tag + 0x40100804 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x2e (size before relaxing) + *fill* 0x4010082e 0x2 + .text.mbedtls_asn1_write_mpi + 0x40100830 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x7e (size before relaxing) + 0x40100830 mbedtls_asn1_write_mpi + *fill* 0x401008a6 0x2 + .text.mbedtls_ccm_crypt + 0x401008a8 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x6e (size before relaxing) + *fill* 0x40100912 0x2 + .text.mbedtls_ccm_init + 0x40100914 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x40100914 mbedtls_ccm_init + *fill* 0x40100926 0x2 + .text.mbedtls_ccm_setkey + 0x40100928 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x52 (size before relaxing) + 0x40100928 mbedtls_ccm_setkey + *fill* 0x4010096e 0x2 + .text.mbedtls_ccm_free + 0x40100970 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1b (size before relaxing) + 0x40100970 mbedtls_ccm_free + *fill* 0x40100987 0x1 + .text.mbedtls_ccm_update + 0x40100988 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1ac (size before relaxing) + 0x40100988 mbedtls_ccm_update + .text.rsa_check_context + 0x40100b30 0xca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xea (size before relaxing) + *fill* 0x40100bfa 0x2 + .text.rsa_prepare_blinding + 0x40100bfc 0x107 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x132 (size before relaxing) + *fill* 0x40100d03 0x1 + .text.rsa_unblind + 0x40100d04 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xac (size before relaxing) + *fill* 0x40100d8e 0x2 + .text.mbedtls_md_get_size_from_type + 0x40100d90 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x16 (size before relaxing) + *fill* 0x40100da2 0x2 + .text.compute_hash + 0x40100da4 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x25 (size before relaxing) + *fill* 0x40100dc5 0x3 + .text.mgf_mask + 0x40100dc8 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xf9 (size before relaxing) + *fill* 0x40100ea1 0x3 + .text.hash_mprime + 0x40100ea4 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x92 (size before relaxing) + *fill* 0x40100f1e 0x2 + .text.mbedtls_ct_rsaes_pkcs1_v15_unpadding + 0x40100f20 0xfc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x108 (size before relaxing) + .text.rsa_rsassa_pkcs1_v15_encode + 0x4010101c 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x15e (size before relaxing) + *fill* 0x40101176 0x2 + .text.mbedtls_rsa_import_raw + 0x40101178 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x81 (size before relaxing) + 0x40101178 mbedtls_rsa_import_raw + *fill* 0x401011e9 0x3 + .text.mbedtls_rsa_complete + 0x401011ec 0x1f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x212 (size before relaxing) + 0x401011ec mbedtls_rsa_complete + *fill* 0x401013de 0x2 + .text.mbedtls_rsa_init + 0x401013e0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x401013e0 mbedtls_rsa_init + *fill* 0x401013fa 0x2 + .text.mbedtls_rsa_get_bitlen + 0x401013fc 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + 0x401013fc mbedtls_rsa_get_bitlen + .text.mbedtls_rsa_check_pubkey + 0x40101408 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x62 (size before relaxing) + 0x40101408 mbedtls_rsa_check_pubkey + *fill* 0x4010145a 0x2 + .text.mbedtls_rsa_parse_pubkey + 0x4010145c 0xc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xe5 (size before relaxing) + 0x4010145c mbedtls_rsa_parse_pubkey + *fill* 0x40101525 0x3 + .text.mbedtls_rsa_check_privkey + 0x40101528 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x6b (size before relaxing) + 0x40101528 mbedtls_rsa_check_privkey + *fill* 0x4010158b 0x1 + .text.mbedtls_rsa_check_pub_priv + 0x4010158c 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x41 (size before relaxing) + 0x4010158c mbedtls_rsa_check_pub_priv + *fill* 0x401015c5 0x3 + .text.mbedtls_rsa_public + 0x401015c8 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x82 (size before relaxing) + 0x401015c8 mbedtls_rsa_public + *fill* 0x4010163a 0x2 + .text.mbedtls_rsa_private + 0x4010163c 0x252 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2e6 (size before relaxing) + 0x4010163c mbedtls_rsa_private + *fill* 0x4010188e 0x2 + .text.rsa_rsassa_pss_sign_no_mode_check + 0x40101890 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x18a (size before relaxing) + *fill* 0x40101a0a 0x2 + .text.rsa_rsassa_pss_sign + 0x40101a0c 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + *fill* 0x40101a49 0x3 + .text.mbedtls_rsa_rsaes_oaep_encrypt + 0x40101a4c 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x100 (size before relaxing) + 0x40101a4c mbedtls_rsa_rsaes_oaep_encrypt + .text.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x40101b44 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x40101b44 mbedtls_rsa_rsaes_pkcs1_v15_encrypt + *fill* 0x40101be5 0x3 + .text.mbedtls_rsa_pkcs1_encrypt + 0x40101be8 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x40101be8 mbedtls_rsa_pkcs1_encrypt + *fill* 0x40101c25 0x3 + .text.mbedtls_rsa_rsaes_oaep_decrypt + 0x40101c28 0x19b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1b7 (size before relaxing) + 0x40101c28 mbedtls_rsa_rsaes_oaep_decrypt + *fill* 0x40101dc3 0x1 + .text.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x40101dc4 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x5d (size before relaxing) + 0x40101dc4 mbedtls_rsa_rsaes_pkcs1_v15_decrypt + *fill* 0x40101e15 0x3 + .text.mbedtls_rsa_pkcs1_decrypt + 0x40101e18 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x40101e18 mbedtls_rsa_pkcs1_decrypt + *fill* 0x40101e5d 0x3 + .text.mbedtls_rsa_rsassa_pss_sign + 0x40101e60 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x40101e60 mbedtls_rsa_rsassa_pss_sign + *fill* 0x40101e81 0x3 + .text.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x40101e84 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xd6 (size before relaxing) + 0x40101e84 mbedtls_rsa_rsassa_pkcs1_v15_sign + *fill* 0x40101f3e 0x2 + .text.mbedtls_rsa_pkcs1_sign + 0x40101f40 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x40101f40 mbedtls_rsa_pkcs1_sign + *fill* 0x40101f8a 0x2 + .text.mbedtls_rsa_rsassa_pss_verify_ext + 0x40101f8c 0x1a9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1b9 (size before relaxing) + 0x40101f8c mbedtls_rsa_rsassa_pss_verify_ext + *fill* 0x40102135 0x3 + .text.mbedtls_rsa_rsassa_pss_verify + 0x40102138 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x40102138 mbedtls_rsa_rsassa_pss_verify + *fill* 0x40102169 0x3 + .text.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x4010216c 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x92 (size before relaxing) + 0x4010216c mbedtls_rsa_rsassa_pkcs1_v15_verify + *fill* 0x401021f2 0x2 + .text.mbedtls_rsa_pkcs1_verify + 0x401021f4 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x41 (size before relaxing) + 0x401021f4 mbedtls_rsa_pkcs1_verify + *fill* 0x4010222d 0x3 + .text.mbedtls_rsa_free + 0x40102230 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x7c (size before relaxing) + 0x40102230 mbedtls_rsa_free + .text.mbedtls_rsa_deduce_primes + 0x40102288 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x218 (size before relaxing) + 0x40102288 mbedtls_rsa_deduce_primes + .text.mbedtls_rsa_deduce_private_exponent + 0x40102450 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0xc8 (size before relaxing) + 0x40102450 mbedtls_rsa_deduce_private_exponent + .text.mbedtls_rsa_deduce_crt + 0x401024f0 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x7a (size before relaxing) + 0x401024f0 mbedtls_rsa_deduce_crt + *fill* 0x4010255e 0x2 + .text.mbedtls_rsa_validate_params + 0x40102560 0x1d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x218 (size before relaxing) + 0x40102560 mbedtls_rsa_validate_params + .text.mbedtls_rsa_validate_crt + 0x40102734 0x12c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x15c (size before relaxing) + 0x40102734 mbedtls_rsa_validate_crt + .text.sha_get_engine_state + 0x40102860 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x401028d6 0x2 + .text.esp_sha_lock_engine_common + 0x401028d8 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x70 (size before relaxing) + .text.esp_sha_lock_memory_block + 0x40102940 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x40102940 esp_sha_lock_memory_block + .text.esp_sha_unlock_memory_block + 0x40102950 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x40102950 esp_sha_unlock_memory_block + *fill* 0x4010295e 0x2 + .text.esp_sha_try_lock_engine + 0x40102960 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x40102960 esp_sha_try_lock_engine + *fill* 0x40102971 0x3 + .text.esp_sha_unlock_engine + 0x40102974 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4a (size before relaxing) + 0x40102974 esp_sha_unlock_engine + *fill* 0x401029ba 0x2 + .text.esp_sha_read_digest_state + 0x401029bc 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x44 (size before relaxing) + 0x401029bc esp_sha_read_digest_state + .text.esp_sha_block + 0x401029f0 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x68 (size before relaxing) + 0x401029f0 esp_sha_block + .text.mbedtls_ctr_increment_counter + 0x40102a4c 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + *fill* 0x40102ab2 0x2 + .text.block_cipher_df + 0x40102ab4 0x196 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x1b2 (size before relaxing) + *fill* 0x40102c4a 0x2 + .text.ctr_drbg_update_internal + 0x40102c4c 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x88 (size before relaxing) + .text.mbedtls_ctr_drbg_reseed_internal + 0x40102ccc 0xc5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xd1 (size before relaxing) + *fill* 0x40102d91 0x3 + .text.mbedtls_ctr_drbg_init + 0x40102d94 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x24 (size before relaxing) + 0x40102d94 mbedtls_ctr_drbg_init + .text.mbedtls_ctr_drbg_free + 0x40102db4 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x23 (size before relaxing) + 0x40102db4 mbedtls_ctr_drbg_free + *fill* 0x40102dd3 0x1 + .text.mbedtls_ctr_drbg_reseed + 0x40102dd4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x40102dd4 mbedtls_ctr_drbg_reseed + *fill* 0x40102de9 0x3 + .text.mbedtls_ctr_drbg_seed + 0x40102dec 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x58 (size before relaxing) + 0x40102dec mbedtls_ctr_drbg_seed + .text.mbedtls_ctr_drbg_random_with_add + 0x40102e3c 0xc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xd3 (size before relaxing) + 0x40102e3c mbedtls_ctr_drbg_random_with_add + *fill* 0x40102eff 0x1 + .text.mbedtls_ctr_drbg_random + 0x40102f00 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x18 (size before relaxing) + 0x40102f00 mbedtls_ctr_drbg_random + .text.ecdh_gen_public_restartable + 0x40102f14 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x2c (size before relaxing) + .text.ecdh_compute_shared_restartable + 0x40102f3c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x53 (size before relaxing) + *fill* 0x40102f80 0x0 + .text.ecdh_free_internal + 0x40102f80 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x36 (size before relaxing) + *fill* 0x40102fa6 0x2 + .text.mbedtls_ecdh_gen_public + 0x40102fa8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x40102fa8 mbedtls_ecdh_gen_public + *fill* 0x40102fc1 0x3 + .text.mbedtls_ecdh_compute_shared + 0x40102fc4 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x40102fc4 mbedtls_ecdh_compute_shared + *fill* 0x40102fe1 0x3 + .text.ecdh_calc_secret_internal + 0x40102fe4 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8e (size before relaxing) + *fill* 0x40103066 0x2 + .text.mbedtls_ecdh_init + 0x40103068 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x40103068 mbedtls_ecdh_init + *fill* 0x40103081 0x3 + .text.mbedtls_ecdh_free + 0x40103084 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x40103084 mbedtls_ecdh_free + *fill* 0x401030a3 0x1 + .text.mbedtls_ecdh_calc_secret + 0x401030a4 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x401030a4 mbedtls_ecdh_calc_secret + *fill* 0x401030cd 0x3 + .text.derive_mpi + 0x401030d0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x58 (size before relaxing) + .text.ecdsa_signature_to_asn1 + 0x40103120 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x88 (size before relaxing) + .text.mbedtls_ecdsa_sign_restartable + 0x4010319c 0x1bd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x211 (size before relaxing) + 0x4010319c mbedtls_ecdsa_sign_restartable + *fill* 0x40103359 0x3 + .text.mbedtls_ecdsa_sign_det_restartable + 0x4010335c 0xcb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xef (size before relaxing) + 0x4010335c mbedtls_ecdsa_sign_det_restartable + *fill* 0x40103427 0x1 + .text.mbedtls_ecdsa_verify_restartable + 0x40103428 0x143 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x193 (size before relaxing) + 0x40103428 mbedtls_ecdsa_verify_restartable + *fill* 0x4010356b 0x1 + .text.mbedtls_ecdsa_write_signature_restartable + 0x4010356c 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x76 (size before relaxing) + 0x4010356c mbedtls_ecdsa_write_signature_restartable + *fill* 0x401035d2 0x2 + .text.mbedtls_ecdsa_write_signature + 0x401035d4 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x401035d4 mbedtls_ecdsa_write_signature + *fill* 0x401035fd 0x3 + .text.mbedtls_ecdsa_read_signature_restartable + 0x40103600 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xa9 (size before relaxing) + 0x40103600 mbedtls_ecdsa_read_signature_restartable + *fill* 0x40103693 0x1 + .text.mbedtls_ecdsa_read_signature + 0x40103694 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x40103694 mbedtls_ecdsa_read_signature + *fill* 0x401036ad 0x3 + .text.mbedtls_ecdsa_init + 0x401036b0 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xe (size before relaxing) + 0x401036b0 mbedtls_ecdsa_init + *fill* 0x401036ba 0x2 + .text.mbedtls_ecdsa_free + 0x401036bc 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xf (size before relaxing) + 0x401036bc mbedtls_ecdsa_free + *fill* 0x401036c8 0x0 + .text.ecp_pick_window_size + 0x401036c8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .text.mpi_init_many + 0x401036f8 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x40103713 0x1 + .text.mpi_free_many + 0x40103714 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x4010372f 0x1 + .text.ecp_check_bad_points_mx + 0x40103730 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xab (size before relaxing) + *fill* 0x401037c4 0x0 + .text.ecp_check_pubkey_mx + 0x401037c4 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x41 (size before relaxing) + *fill* 0x401037fd 0x3 + .text.mbedtls_mpi_sub_int_mod + 0x40103800 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3e (size before relaxing) + *fill* 0x40103837 0x1 + .text.mbedtls_mpi_sub_mod + 0x40103838 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3e (size before relaxing) + *fill* 0x40103873 0x1 + .text.ecp_modp + 0x40103874 0x99 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x9d (size before relaxing) + *fill* 0x4010390d 0x3 + .text.mbedtls_mpi_mul_mod + 0x40103910 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2f (size before relaxing) + *fill* 0x4010393b 0x1 + .text.mbedtls_mpi_add_mod + 0x4010393c 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x40103976 0x2 + .text.ecp_sw_rhs + 0x40103978 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x60 (size before relaxing) + .text.mbedtls_ecp_sw_derive_y + 0x401039d0 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x98 (size before relaxing) + *fill* 0x40103a4d 0x3 + .text.ecp_check_pubkey_sw + 0x40103a50 0x7b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x9b (size before relaxing) + *fill* 0x40103acb 0x1 + .text.ecp_double_add_mxz + 0x40103acc 0x121 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x15d (size before relaxing) + *fill* 0x40103bed 0x3 + .text.ecp_randomize_mxz + 0x40103bf0 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5a (size before relaxing) + *fill* 0x40103c37 0x1 + .text.ecp_randomize_jac + 0x40103c38 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x90 (size before relaxing) + .text.mbedtls_ecp_gen_privkey_sw + 0x40103cb4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .text.ecp_normalize_mxz + 0x40103cd0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x38 (size before relaxing) + .text.ecp_normalize_jac + 0x40103d00 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x92 (size before relaxing) + *fill* 0x40103d77 0x1 + .text.mbedtls_mpi_mul_int_mod + 0x40103d78 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x40103db2 0x2 + .text.mbedtls_mpi_shift_l_mod + 0x40103db4 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3a (size before relaxing) + *fill* 0x40103dea 0x2 + .text.ecp_double_jac + 0x40103dec 0x1f6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x25a (size before relaxing) + *fill* 0x40103fe2 0x2 + .text.ecp_normalize_jac_many + 0x40103fe4 0x165 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1a1 (size before relaxing) + *fill* 0x40104149 0x3 + .text.ecp_safe_invert_jac + 0x4010414c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4c (size before relaxing) + .text.ecp_select_comb + 0x40104188 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x6a (size before relaxing) + *fill* 0x401041e6 0x2 + .text.ecp_comb_recode_core + 0x401041e8 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8e (size before relaxing) + *fill* 0x40104272 0x2 + .text.ecp_comb_recode_scalar + 0x40104274 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x91 (size before relaxing) + *fill* 0x401042e9 0x3 + .text.mbedtls_ecp_gen_privkey_mx + 0x401042ec 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x76 (size before relaxing) + *fill* 0x40104352 0x2 + .text.mbedtls_ecp_curve_list + 0x40104354 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x40104354 mbedtls_ecp_curve_list + .text.mbedtls_ecp_grp_id_list + 0x4010435c 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4010435c mbedtls_ecp_grp_id_list + *fill* 0x40104399 0x3 + .text.mbedtls_ecp_point_init + 0x4010439c 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1f (size before relaxing) + 0x4010439c mbedtls_ecp_point_init + *fill* 0x401043b3 0x1 + .text.mbedtls_ecp_group_init + 0x401043b4 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4f (size before relaxing) + 0x401043b4 mbedtls_ecp_group_init + *fill* 0x401043f3 0x1 + .text.mbedtls_ecp_keypair_init + 0x401043f4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + 0x401043f4 mbedtls_ecp_keypair_init + .text.mbedtls_ecp_point_free + 0x4010440c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + 0x4010440c mbedtls_ecp_point_free + .text.mbedtls_ecp_group_free + 0x40104424 0x6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x7f (size before relaxing) + 0x40104424 mbedtls_ecp_group_free + *fill* 0x4010448f 0x1 + .text.mbedtls_ecp_keypair_free + 0x40104490 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x21 (size before relaxing) + 0x40104490 mbedtls_ecp_keypair_free + *fill* 0x401044a9 0x3 + .text.mbedtls_ecp_copy + 0x401044ac 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x32 (size before relaxing) + 0x401044ac mbedtls_ecp_copy + *fill* 0x401044d6 0x2 + .text.ecp_mul_mxz + 0x401044d8 0x141 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x185 (size before relaxing) + *fill* 0x40104619 0x3 + .text.mbedtls_ecp_group_copy + 0x4010461c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4010461c mbedtls_ecp_group_copy + *fill* 0x4010462d 0x3 + .text.mbedtls_ecp_set_zero + 0x40104630 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x36 (size before relaxing) + 0x40104630 mbedtls_ecp_set_zero + *fill* 0x4010465a 0x2 + .text.ecp_add_mixed + 0x4010465c 0x1d6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x22a (size before relaxing) + *fill* 0x40104832 0x2 + .text.ecp_precompute_comb + 0x40104834 0x157 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x163 (size before relaxing) + *fill* 0x4010498b 0x1 + .text.ecp_mul_comb_core + 0x4010498c 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xb6 (size before relaxing) + *fill* 0x40104a2a 0x2 + .text.ecp_mul_comb_after_precomp + 0x40104a2c 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x7e (size before relaxing) + *fill* 0x40104a9e 0x2 + .text.ecp_mul_comb + 0x40104aa0 0x115 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x128 (size before relaxing) + *fill* 0x40104bb5 0x3 + .text.mbedtls_ecp_is_zero + 0x40104bb8 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x40104bb8 mbedtls_ecp_is_zero + *fill* 0x40104bcf 0x1 + .text.mbedtls_ecp_point_cmp + 0x40104bd0 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3f (size before relaxing) + 0x40104bd0 mbedtls_ecp_point_cmp + *fill* 0x40104c07 0x1 + .text.mbedtls_ecp_point_read_binary + 0x40104c08 0x11e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x13a (size before relaxing) + 0x40104c08 mbedtls_ecp_point_read_binary + *fill* 0x40104d26 0x2 + .text.mbedtls_ecp_check_pubkey + 0x40104d28 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4d (size before relaxing) + 0x40104d28 mbedtls_ecp_check_pubkey + *fill* 0x40104d6d 0x3 + .text.mbedtls_ecp_check_privkey + 0x40104d70 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8c (size before relaxing) + 0x40104d70 mbedtls_ecp_check_privkey + .text.ecp_mul_restartable_internal + 0x40104de8 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x74 (size before relaxing) + .text.mbedtls_ecp_mul_restartable + 0x40104e4c 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x26 (size before relaxing) + 0x40104e4c mbedtls_ecp_mul_restartable + *fill* 0x40104e6e 0x2 + .text.mbedtls_ecp_mul + 0x40104e70 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x40104e70 mbedtls_ecp_mul + *fill* 0x40104e8d 0x3 + .text.mbedtls_ecp_mul_shortcuts + 0x40104e90 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xe7 (size before relaxing) + *fill* 0x40104f50 0x0 + .text.mbedtls_ecp_muladd_restartable + 0x40104f50 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8f (size before relaxing) + 0x40104f50 mbedtls_ecp_muladd_restartable + *fill* 0x40104fc3 0x1 + .text.mbedtls_ecp_muladd + 0x40104fc4 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x40104fc4 mbedtls_ecp_muladd + *fill* 0x40104fe1 0x3 + .text.mbedtls_ecp_gen_privkey + 0x40104fe4 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x41 (size before relaxing) + 0x40104fe4 mbedtls_ecp_gen_privkey + *fill* 0x40105021 0x3 + .text.mbedtls_ecp_check_pub_priv + 0x40105024 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xb8 (size before relaxing) + 0x40105024 mbedtls_ecp_check_pub_priv + .text.ecp_mod_p255 + 0x401050bc 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x4010510d 0x3 + .text.ecp_mod_koblitz + 0x40105110 0x176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x186 (size before relaxing) + *fill* 0x40105286 0x2 + .text.ecp_mod_p256k1 + 0x40105288 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x401052a2 0x2 + .text.ecp_mod_p224k1 + 0x401052a4 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x401052be 0x2 + .text.ecp_mod_p192k1 + 0x401052c0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x401052da 0x2 + .text.ecp_mod_p521 + 0x401052dc 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x4010535a 0x2 + .text.ecp_mod_p384 + 0x4010535c 0x826 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x82a (size before relaxing) + *fill* 0x40105b82 0x2 + .text.ecp_mod_p256 + 0x40105b84 0x632 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x636 (size before relaxing) + *fill* 0x401061b6 0x2 + .text.ecp_mod_p224 + 0x401061b8 0x30e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x312 (size before relaxing) + *fill* 0x401064c6 0x2 + .text.ecp_mod_p192 + 0x401064c8 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xbb (size before relaxing) + *fill* 0x4010655f 0x1 + .text.ecp_group_load + 0x40106560 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x90 (size before relaxing) + .text.ecp_use_curve25519 + 0x401065ec 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xb8 (size before relaxing) + *fill* 0x4010667d 0x3 + .text.mbedtls_ecp_group_load + 0x40106680 0x310 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x320 (size before relaxing) + 0x40106680 mbedtls_ecp_group_load + .text.entropy_update + 0x40106990 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x84 (size before relaxing) + .text.entropy_gather_internal + 0x40106a04 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x86 (size before relaxing) + *fill* 0x40106a82 0x2 + .text.mbedtls_entropy_free + 0x40106a84 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x26 (size before relaxing) + 0x40106a84 mbedtls_entropy_free + *fill* 0x40106aa6 0x2 + .text.mbedtls_entropy_init + 0x40106aa8 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x33 (size before relaxing) + 0x40106aa8 mbedtls_entropy_init + *fill* 0x40106ad7 0x1 + .text.mbedtls_entropy_func + 0x40106ad8 0x10d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x12d (size before relaxing) + 0x40106ad8 mbedtls_entropy_func + *fill* 0x40106be5 0x3 + .text.mbedtls_hmac_drbg_init + 0x40106be8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x40106be8 mbedtls_hmac_drbg_init + .text.mbedtls_hmac_drbg_update + 0x40106c00 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xd8 (size before relaxing) + 0x40106c00 mbedtls_hmac_drbg_update + .text.hmac_drbg_reseed_core + 0x40106cc0 0xc1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + *fill* 0x40106d81 0x3 + .text.mbedtls_hmac_drbg_seed_buf + 0x40106d84 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x54 (size before relaxing) + 0x40106d84 mbedtls_hmac_drbg_seed_buf + .text.mbedtls_hmac_drbg_reseed + 0x40106dc8 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x40106dc8 mbedtls_hmac_drbg_reseed + *fill* 0x40106ddd 0x3 + .text.mbedtls_hmac_drbg_random_with_add + 0x40106de0 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xd8 (size before relaxing) + 0x40106de0 mbedtls_hmac_drbg_random_with_add + .text.mbedtls_hmac_drbg_random + 0x40106ea4 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + 0x40106ea4 mbedtls_hmac_drbg_random + .text.mbedtls_hmac_drbg_free + 0x40106eb8 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x20 (size before relaxing) + 0x40106eb8 mbedtls_hmac_drbg_free + .text.oid_pk_alg_from_asn1 + 0x40106ed4 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x40106f0b 0x1 + .text.oid_grp_id_from_asn1 + 0x40106f0c 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x40106f42 0x2 + .text.oid_grp_id_algid_from_asn1 + 0x40106f44 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x40106f7b 0x1 + .text.mbedtls_oid_get_pk_alg + 0x40106f7c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x40106f7c mbedtls_oid_get_pk_alg + *fill* 0x40106f95 0x3 + .text.mbedtls_oid_get_ec_grp + 0x40106f98 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x40106f98 mbedtls_oid_get_ec_grp + *fill* 0x40106fb1 0x3 + .text.mbedtls_oid_get_ec_grp_algid + 0x40106fb4 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x40106fb4 mbedtls_oid_get_ec_grp_algid + *fill* 0x40106fcd 0x3 + .text.mbedtls_oid_get_oid_by_md + 0x40106fd0 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x40106fd0 mbedtls_oid_get_oid_by_md + *fill* 0x40106ff6 0x2 + .text.mbedtls_hardware_poll + 0x40106ff8 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x40106ff8 mbedtls_hardware_poll + *fill* 0x4010700b 0x1 + .text.esp_wifi_ap_get_sta_aid_local + 0x4010700c 0x81 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x85 (size before relaxing) + 0x4010701c esp_wifi_ap_get_sta_aid_local + *fill* 0x4010708d 0x3 + .text.esp_wifi_internal_reg_netstack_buf_cb_local + 0x40107090 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x16 (size before relaxing) + 0x40107090 esp_wifi_internal_reg_netstack_buf_cb_local + *fill* 0x4010709e 0x2 + .text.esp_wifi_send_deauth_local + 0x401070a0 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x14 (size before relaxing) + 0x401070a0 esp_wifi_send_deauth_local + *fill* 0x401070ad 0x3 + .text.wifi_get_init_state + 0x401070b0 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x401070b4 wifi_get_init_state + *fill* 0x401070be 0x2 + .text.wifi_is_stop_in_progress + 0x401070c0 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x401070c4 wifi_is_stop_in_progress + *fill* 0x401070cf 0x1 + .text.wifi_api_lock + 0x401070d0 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x5a (size before relaxing) + 0x401070dc wifi_api_lock + *fill* 0x40107122 0x2 + .text.wifi_api_unlock + 0x40107124 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x2d (size before relaxing) + 0x40107124 wifi_api_unlock + *fill* 0x40107145 0x3 + .text.wifi_init_completed + 0x40107148 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3a (size before relaxing) + 0x40107148 wifi_init_completed + *fill* 0x4010716b 0x1 + .text.wifi_station_get_config_local$part$5 + 0x4010716c 0x1a3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1da (size before relaxing) + *fill* 0x4010730f 0x1 + .text.wifi_softap_get_config + 0x40107310 0x186 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1d2 (size before relaxing) + 0x40107314 wifi_softap_get_config + *fill* 0x40107496 0x2 + .text.wifi_softap_deauth + 0x40107498 0x93 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xc2 (size before relaxing) + 0x4010749c wifi_softap_deauth + *fill* 0x4010752b 0x1 + .text.wifi_check_chan_param + 0x4010752c 0x71 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x81 (size before relaxing) + 0x4010752c wifi_check_chan_param + *fill* 0x4010759d 0x3 + .text.wifi_deinit_in_caller_task + 0x401075a0 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x45 (size before relaxing) + 0x401075a4 wifi_deinit_in_caller_task + *fill* 0x401075cd 0x3 + .text.wifi_init_in_caller_task + 0x401075d0 0x85 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xb4 (size before relaxing) + 0x401075d8 wifi_init_in_caller_task + *fill* 0x40107655 0x3 + .text.wifi_osi_funcs_register + 0x40107658 0x55 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x65 (size before relaxing) + 0x40107668 wifi_osi_funcs_register + *fill* 0x401076ad 0x3 + .text.net80211_softap_funcs_init + 0x401076b0 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x5a (size before relaxing) + 0x401076d0 net80211_softap_funcs_init + *fill* 0x40107706 0x2 + .text.net80211_funcs_init + 0x40107708 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x52 (size before relaxing) + 0x4010770c net80211_funcs_init + *fill* 0x40107743 0x1 + .text.net80211_funcs_deinit + 0x40107744 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x28 (size before relaxing) + 0x40107744 net80211_funcs_deinit + .text.esp_wifi_init_internal + 0x40107764 0xfc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x17c (size before relaxing) + 0x40107778 esp_wifi_init_internal + .text.esp_wifi_deinit_internal + 0x40107860 0xdc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x154 (size before relaxing) + 0x40107870 esp_wifi_deinit_internal + .text.esp_wifi_set_mode + 0x4010793c 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x54 (size before relaxing) + 0x40107940 esp_wifi_set_mode + .text.esp_wifi_get_mode + 0x4010797c 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x46 (size before relaxing) + 0x4010797c esp_wifi_get_mode + *fill* 0x401079a6 0x2 + .text.esp_wifi_start + 0x401079a8 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x401079ac esp_wifi_start + .text.esp_wifi_stop + 0x401079e0 0x197 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1fe (size before relaxing) + 0x40107a08 esp_wifi_stop + *fill* 0x40107b77 0x1 + .text.esp_wifi_connect + 0x40107b78 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x68 (size before relaxing) + 0x40107b7c esp_wifi_connect + .text.esp_wifi_deauth_sta + 0x40107bc0 0x5c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7c (size before relaxing) + 0x40107bc4 esp_wifi_deauth_sta + .text.esp_wifi_set_config + 0x40107c1c 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x8a (size before relaxing) + 0x40107c24 esp_wifi_set_config + *fill* 0x40107c8e 0x2 + .text.esp_wifi_get_config + 0x40107c90 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x40107c90 esp_wifi_get_config + .text.esp_wifi_get_mac + 0x40107cc8 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x40107cc8 esp_wifi_get_mac + .text.esp_wifi_internal_reg_rxcb + 0x40107cf4 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x6a (size before relaxing) + 0x40107cf8 esp_wifi_internal_reg_rxcb + *fill* 0x40107d46 0x2 + .text.esp_wifi_internal_set_sta_ip + 0x40107d48 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x41 (size before relaxing) + 0x40107d48 esp_wifi_internal_set_sta_ip + *fill* 0x40107d75 0x3 + .text.wifi_event_post + 0x40107d78 0x43 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4b (size before relaxing) + 0x40107d84 wifi_event_post + *fill* 0x40107dbb 0x1 + .text.wifi_mesh_event_post + 0x40107dbc 0x3f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4b (size before relaxing) + 0x40107dc4 wifi_mesh_event_post + *fill* 0x40107dfb 0x1 + .text.esp_wifi_vnd_lora_enable + 0x40107dfc 0xae C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xc6 (size before relaxing) + 0x40107dfc esp_wifi_vnd_lora_enable + *fill* 0x40107eaa 0x2 + .text.esp_wifi_vnd_lora_disable + 0x40107eac 0x45 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x51 (size before relaxing) + 0x40107eac esp_wifi_vnd_lora_disable + *fill* 0x40107ef1 0x3 + .text.esp_wifi_get_event_mask + 0x40107ef4 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x2f (size before relaxing) + 0x40107ef8 esp_wifi_get_event_mask + *fill* 0x40107f1b 0x1 + .text.esp_wifi_ipc_internal + 0x40107f1c 0x126 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x146 (size before relaxing) + 0x40107f24 esp_wifi_ipc_internal + *fill* 0x40108042 0x2 + .text.esp_wifi_internal_set_log_level + 0x40108044 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x40108048 esp_wifi_internal_set_log_level + *fill* 0x4010805f 0x1 + .text.esp_wifi_internal_on_coex_start + 0x40108060 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4f (size before relaxing) + 0x40108064 esp_wifi_internal_on_coex_start + *fill* 0x40108097 0x1 + .text.esp_wifi_internal_on_coex_schm_phase + 0x40108098 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4f (size before relaxing) + 0x4010809c esp_wifi_internal_on_coex_schm_phase + *fill* 0x401080cf 0x1 + .text.esp_wifi_internal_reg_netstack_buf_cb + 0x401080d0 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x2d (size before relaxing) + 0x401080d4 esp_wifi_internal_reg_netstack_buf_cb + *fill* 0x401080f9 0x3 + .text.esp_wifi_internal_issue_disconnect + 0x401080fc 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x30 (size before relaxing) + 0x40108100 esp_wifi_internal_issue_disconnect + .text.esp_wifi_ap_get_sta_aid + 0x40108128 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x42 (size before relaxing) + 0x4010812c esp_wifi_ap_get_sta_aid + *fill* 0x40108162 0x2 + .text.esp_mesh_map_deauth + 0x40108164 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7a (size before relaxing) + 0x40108168 esp_mesh_map_deauth + *fill* 0x401081be 0x2 + .text.esp_mesh_get_running_active_duty_cycle + 0x401081c0 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x59 (size before relaxing) + 0x401081c4 esp_mesh_get_running_active_duty_cycle + *fill* 0x4010820d 0x3 + .text.ieee80211_freedom_inside_cb + 0x40108210 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x38 (size before relaxing) + 0x40108210 ieee80211_freedom_inside_cb + .text.ieee80211_send_sa_query + 0x40108244 0xad C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xcd (size before relaxing) + *fill* 0x401082f1 0x3 + .text.ieee80211_send_sa_query_resp + 0x401082f4 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_send_sa_query_req + 0x40108314 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_recv_sa_query_resp + 0x40108334 0xd0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xe4 (size before relaxing) + .text.ieee80211_recv_sa_query_req + 0x40108404 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_rate_ref_init + 0x40108428 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x22 (size before relaxing) + 0x40108428 ieee80211_rate_ref_init + *fill* 0x40108446 0x2 + .text.ieee80211_freedom_init + 0x40108448 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x32 (size before relaxing) + 0x4010844c ieee80211_freedom_init + *fill* 0x40108472 0x2 + .text.ieee80211_user_ie_init + 0x40108474 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x43 (size before relaxing) + 0x40108478 ieee80211_user_ie_init + *fill* 0x401084af 0x1 + .text.ieee80211_ifattach + 0x401084b0 0xbf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x113 (size before relaxing) + 0x401084b0 ieee80211_ifattach + *fill* 0x4010856f 0x1 + .text.ieee80211_ifdetach + 0x40108570 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x1b (size before relaxing) + 0x40108570 ieee80211_ifdetach + *fill* 0x4010857f 0x1 + .text.wifi_create_nan + 0x40108580 0xa4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xc8 (size before relaxing) + 0x40108584 wifi_create_nan + .text.wifi_destroy_nan + 0x40108624 0x57 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x7e (size before relaxing) + 0x40108624 wifi_destroy_nan + *fill* 0x4010867b 0x1 + .text.wifi_destroy_softap + 0x4010867c 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x8c (size before relaxing) + 0x4010867c wifi_destroy_softap + .text.wifi_destroy_sta + 0x401086e0 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x96 (size before relaxing) + 0x401086e0 wifi_destroy_sta + *fill* 0x4010874a 0x2 + .text.ieee80211_find_elem_match + 0x4010874c 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x54 (size before relaxing) + 0x4010874c ieee80211_find_elem_match + .text.ieee80211_find_ie + 0x4010879c 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x1e (size before relaxing) + 0x4010879c ieee80211_find_ie + *fill* 0x401087b6 0x2 + .text.ieee80211_setup_pmf + 0x401087b8 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x5a (size before relaxing) + 0x401087c8 ieee80211_setup_pmf + *fill* 0x401087f6 0x2 + .text.wifi_create_softap + 0x401087f8 0xbc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xf4 (size before relaxing) + 0x401087fc wifi_create_softap + .text.wifi_create_sta + 0x401088b4 0xc4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x104 (size before relaxing) + 0x401088bc wifi_create_sta + .text.wifi_mode_set + 0x40108978 0x190 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x1d8 (size before relaxing) + 0x40108990 wifi_mode_set + .text.ieee80211_crypto_encap + 0x40108b08 0x79 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x85 (size before relaxing) + 0x40108b10 ieee80211_crypto_encap + *fill* 0x40108b81 0x3 + .text.ieee80211_crypto_decap + 0x40108b84 0x9d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0xb1 (size before relaxing) + 0x40108b88 ieee80211_crypto_decap + *fill* 0x40108c21 0x3 + .text.ieee80211_crypto_aes_128_cmac_encrypt + 0x40108c24 0x106 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x12e (size before relaxing) + 0x40108c2c ieee80211_crypto_aes_128_cmac_encrypt + *fill* 0x40108d2a 0x2 + .text.ieee80211_crypto_aes_128_cmac_decrypt + 0x40108d2c 0x151 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x181 (size before relaxing) + 0x40108d3c ieee80211_crypto_aes_128_cmac_decrypt + *fill* 0x40108e7d 0x3 + .text.ieee80211_crypto_gmac_decrypt + 0x40108e80 0x1c7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x1fb (size before relaxing) + 0x40108e90 ieee80211_crypto_gmac_decrypt + *fill* 0x40109047 0x1 + .text.wifi_log + 0x40109048 0xbc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0xc4 (size before relaxing) + 0x4010905c wifi_log + .text.unlikely.is_non_esp_oui + 0x40109104 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x40109136 0x2 + .text.unlikely.is_esp_manufacturer_oui + 0x40109138 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .text.ieee80211_hostapd_beacon_txcb + 0x40109174 0xd2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xf6 (size before relaxing) + 0x40109190 ieee80211_hostapd_beacon_txcb + *fill* 0x40109246 0x2 + .text.ieee80211_hostap_send_beacon + 0x40109248 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x40109256 0x2 + .text.hostap_handle_timer + 0x40109258 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + 0x40109258 hostap_handle_timer + *fill* 0x40109266 0x2 + .text.ap_try_sa_query + 0x40109268 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x40109276 0x2 + .text.ap_sa_query_timeout + 0x40109278 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x40109286 0x2 + .text.ieee80211_hostapd_ps_txcb + 0x40109288 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3a (size before relaxing) + 0x4010928c ieee80211_hostapd_ps_txcb + *fill* 0x401092b6 0x2 + .text.ieee80211_free_beacon_eb + 0x401092b8 0x59 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x61 (size before relaxing) + 0x401092c8 ieee80211_free_beacon_eb + *fill* 0x40109311 0x3 + .text.ieee80211_hostap_send_beacon_process + 0x40109314 0x372 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3ea (size before relaxing) + 0x40109354 ieee80211_hostap_send_beacon_process + *fill* 0x40109686 0x2 + .text.hostap_delete_ptk + 0x40109688 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x44 (size before relaxing) + 0x40109688 hostap_delete_ptk + .text.ieee80211_hostap_attach + 0x401096b8 0x1b4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x234 (size before relaxing) + 0x401096d4 ieee80211_hostap_attach + .text.hostap_deliver_data + 0x4010986c 0xae C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xc2 (size before relaxing) + 0x4010987c hostap_deliver_data + *fill* 0x4010991a 0x2 + .text.hostap_handle_timer_process + 0x4010991c 0x15f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1b2 (size before relaxing) + 0x4010993c hostap_handle_timer_process + *fill* 0x40109a7b 0x1 + .text.wifi_ap_reg_rxcb + 0x40109a7c 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x11 (size before relaxing) + 0x40109a7c wifi_ap_reg_rxcb + *fill* 0x40109a89 0x3 + .text.ap_rx_cb + 0x40109a8c 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x26 (size before relaxing) + 0x40109a8c ap_rx_cb + *fill* 0x40109aaa 0x2 + .text.hostap_auth_open + 0x40109aac 0x169 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1c1 (size before relaxing) + 0x40109ac0 hostap_auth_open + *fill* 0x40109c15 0x3 + .text.hostap_recv_ctl + 0x40109c18 0x14f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x192 (size before relaxing) + 0x40109c2c hostap_recv_ctl + *fill* 0x40109d67 0x1 + .text.wifi_softap_start + 0x40109d68 0x352 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x402 (size before relaxing) + 0x40109d88 wifi_softap_start + *fill* 0x4010a0ba 0x2 + .text.wifi_softap_stop + 0x4010a0bc 0x158 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1cc (size before relaxing) + 0x4010a0c0 wifi_softap_stop + .text.ap_sa_query_timeout_process + 0x4010a214 0x80 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xb0 (size before relaxing) + 0x4010a21c ap_sa_query_timeout_process + .text.ap_try_sa_query_process + 0x4010a294 0x17d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1a5 (size before relaxing) + 0x4010a2a8 ap_try_sa_query_process + *fill* 0x4010a411 0x3 + .text.hostap_recv_mgmt + 0x4010a414 0x1106 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x12ca (size before relaxing) + 0x4010a494 hostap_recv_mgmt + *fill* 0x4010b51a 0x2 + .text.hostap_input + 0x4010b51c 0x6ab C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x76b (size before relaxing) + 0x4010b534 hostap_input + *fill* 0x4010bbc7 0x1 + .text.add_mic_ie_bip + 0x4010bbc8 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x66 (size before relaxing) + 0x4010bbcc add_mic_ie_bip + *fill* 0x4010bc1a 0x2 + .text.addba_stop_timeout + 0x4010bc1c 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x22 (size before relaxing) + *fill* 0x4010bc3a 0x2 + .text.ampdu_tx_stop + 0x4010bc3c 0x7f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x97 (size before relaxing) + *fill* 0x4010bcbb 0x1 + .text.addba_response_txcb + 0x4010bcbc 0x182 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1ae (size before relaxing) + *fill* 0x4010be3e 0x2 + .text.ieee80211_ampdu_timeout + 0x4010be40 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x4010be4e 0x2 + .text.addba_timeout + 0x4010be50 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x4010be5e 0x2 + .text.ieee80211_ampdu_stop_age_timer$part$0 + 0x4010be60 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x30 (size before relaxing) + .text.ieee80211_add_htcap_body + 0x4010be88 0x1fd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x20d (size before relaxing) + *fill* 0x4010c085 0x3 + .text.ht_recv_action_ba_addba_response + 0x4010c088 0x16d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1b1 (size before relaxing) + *fill* 0x4010c1f5 0x3 + .text.ieee80211_ht_attach + 0x4010c1f8 0x21c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x294 (size before relaxing) + 0x4010c248 ieee80211_ht_attach + .text.ampdu_free_rx_ba_index + 0x4010c414 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3f (size before relaxing) + 0x4010c418 ampdu_free_rx_ba_index + *fill* 0x4010c44b 0x1 + .text.ampdu_rx_stop + 0x4010c44c 0xc5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xe1 (size before relaxing) + *fill* 0x4010c511 0x3 + .text.ht_recv_action_ba_delba + 0x4010c514 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x8d (size before relaxing) + *fill* 0x4010c57a 0x2 + .text.ampdu_alloc_rx_ba_index + 0x4010c57c 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x8a (size before relaxing) + 0x4010c580 ampdu_alloc_rx_ba_index + *fill* 0x4010c5f6 0x2 + .text.ampdu_rx_start + 0x4010c5f8 0x104 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x134 (size before relaxing) + .text.ht_recv_action_ba_addba_request + 0x4010c6fc 0x184 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1bc (size before relaxing) + .text.ieee80211_ht_deattach + 0x4010c880 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x9e (size before relaxing) + 0x4010c884 ieee80211_ht_deattach + *fill* 0x4010c8fa 0x2 + .text.ieee80211_ampdu_enable + 0x4010c8fc 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1a (size before relaxing) + 0x4010c8fc ieee80211_ampdu_enable + *fill* 0x4010c90e 0x2 + .text.ieee80211_ampdu_request + 0x4010c910 0x164 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x188 (size before relaxing) + 0x4010c924 ieee80211_ampdu_request + .text.ieee80211_ampdu_age_bss + 0x4010ca74 0xd9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xe1 (size before relaxing) + *fill* 0x4010cb4d 0x3 + .text.ieee80211_ampdu_start_age_timer + 0x4010cb50 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x69 (size before relaxing) + 0x4010cb54 ieee80211_ampdu_start_age_timer + *fill* 0x4010cb9d 0x3 + .text.ieee80211_ampdu_age_all + 0x4010cba0 0xa0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xd4 (size before relaxing) + 0x4010cba0 ieee80211_ampdu_age_all + .text.ampdu_process_multicast_address_qos_frame + 0x4010cc40 0xaa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xae (size before relaxing) + 0x4010cc40 ampdu_process_multicast_address_qos_frame + *fill* 0x4010ccea 0x2 + .text.ieee80211_recv_bar + 0x4010ccec 0x73 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x87 (size before relaxing) + 0x4010ccf0 ieee80211_recv_bar + *fill* 0x4010cd5f 0x1 + .text.ieee80211_ht_node_cleanup + 0x4010cd60 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x42 (size before relaxing) + 0x4010cd60 ieee80211_ht_node_cleanup + *fill* 0x4010cd92 0x2 + .text.ieee80211_ht_node_init + 0x4010cd94 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x8a (size before relaxing) + 0x4010cda0 ieee80211_ht_node_init + *fill* 0x4010ce06 0x2 + .text.ieee80211_parse_htcap + 0x4010ce08 0x130 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x148 (size before relaxing) + 0x4010ce1c ieee80211_parse_htcap + .text.ieee80211_has_ht40_bss + 0x4010cf38 0xa8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xb0 (size before relaxing) + 0x4010cf38 ieee80211_has_ht40_bss + .text.ieee80211_update_channel + 0x4010cfe0 0x36a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3e2 (size before relaxing) + 0x4010cff8 ieee80211_update_channel + *fill* 0x4010d34a 0x2 + .text.ieee80211_ht_updatehtcap + 0x4010d34c 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x40 (size before relaxing) + 0x4010d34c ieee80211_ht_updatehtcap + *fill* 0x4010d37d 0x3 + .text.ieee80211_ht_updateparams + 0x4010d380 0x193 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1c3 (size before relaxing) + 0x4010d3ac ieee80211_ht_updateparams + *fill* 0x4010d513 0x1 + .text.ieee80211_setup_htrates + 0x4010d514 0xc5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xd5 (size before relaxing) + 0x4010d520 ieee80211_setup_htrates + *fill* 0x4010d5d9 0x3 + .text.ieee80211_setup_basic_htrates + 0x4010d5dc 0x98 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xac (size before relaxing) + 0x4010d5e8 ieee80211_setup_basic_htrates + .text.ieee80211_add_htcap + 0x4010d674 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x54 (size before relaxing) + 0x4010d67c ieee80211_add_htcap + .text.ieee80211_add_htcap_vendor + 0x4010d6b8 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3c (size before relaxing) + 0x4010d6b8 ieee80211_add_htcap_vendor + .text.ieee80211_add_htinfo_body + 0x4010d6ec 0x141 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x159 (size before relaxing) + 0x4010d6f8 ieee80211_add_htinfo_body + *fill* 0x4010d82d 0x3 + .text.ieee80211_add_htinfo + 0x4010d830 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x54 (size before relaxing) + 0x4010d838 ieee80211_add_htinfo + .text.ieee80211_add_htinfo_vendor + 0x4010d874 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x6a (size before relaxing) + 0x4010d87c ieee80211_add_htinfo_vendor + *fill* 0x4010d8ce 0x2 + .text.ht_action_output + 0x4010d8d0 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x2d (size before relaxing) + 0x4010d8d0 ht_action_output + *fill* 0x4010d8f1 0x3 + .text.ht_send_action_ba_delba + 0x4010d8f4 0xdd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xf9 (size before relaxing) + *fill* 0x4010d9d1 0x3 + .text.ht_send_action_ba_addba + 0x4010d9d4 0x149 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x165 (size before relaxing) + *fill* 0x4010db1d 0x3 + .text.ieee80211_decap1 + 0x4010db20 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x4010db24 ieee80211_decap1 + *fill* 0x4010db8f 0x1 + .text.ieee80211_decap_amsdu + 0x4010db90 0x110 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x134 (size before relaxing) + 0x4010db9c ieee80211_decap_amsdu + .text.ieee80211_add_ie_vendor_esp_head + 0x4010dca0 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x4010dca4 ieee80211_add_ie_vendor_esp_head + .text.ieee80211_add_ie_vendor_esp_manufacturer + 0x4010dcd8 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x52 (size before relaxing) + 0x4010dcd8 ieee80211_add_ie_vendor_esp_manufacturer + *fill* 0x4010dd1e 0x2 + .text.wpa_cipher + 0x4010dd20 0x77 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x83 (size before relaxing) + *fill* 0x4010dd97 0x1 + .text.rsn_cipher + 0x4010dd98 0xb8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_decap + 0x4010de50 0x1d3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x1f7 (size before relaxing) + 0x4010de64 ieee80211_decap + *fill* 0x4010e023 0x1 + .text.ieee80211_setup_rates + 0x4010e024 0xe0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xe4 (size before relaxing) + 0x4010e028 ieee80211_setup_rates + .text.ieee80211_set_max_rate + 0x4010e104 0x114 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x130 (size before relaxing) + 0x4010e110 ieee80211_set_max_rate + .text.ieee80211_setup_phy_mode + 0x4010e218 0xe6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xf6 (size before relaxing) + 0x4010e224 ieee80211_setup_phy_mode + *fill* 0x4010e2fe 0x2 + .text.ieee80211_setup_lr_rates + 0x4010e300 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x74 (size before relaxing) + 0x4010e300 ieee80211_setup_lr_rates + .text.ieee80211_alloc_challenge + 0x4010e370 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x4a (size before relaxing) + 0x4010e374 ieee80211_alloc_challenge + *fill* 0x4010e3ae 0x2 + .text.ieee80211_parse_beacon + 0x4010e3b0 0x5f2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x632 (size before relaxing) + 0x4010e3d0 ieee80211_parse_beacon + *fill* 0x4010e9a2 0x2 + .text.ieee80211_parse_wpa + 0x4010e9a4 0x100 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x11c (size before relaxing) + 0x4010e9a4 ieee80211_parse_wpa + .text.ieee80211_rsn_cipher_priority + 0x4010eaa4 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x2e (size before relaxing) + 0x4010eaa8 ieee80211_rsn_cipher_priority + *fill* 0x4010eace 0x2 + .text.ieee80211_better_rsn_pairwise_cipher + 0x4010ead0 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x35 (size before relaxing) + 0x4010ead0 ieee80211_better_rsn_pairwise_cipher + *fill* 0x4010eaf5 0x3 + .text.ieee80211_amsdu_negotiate + 0x4010eaf8 0xbe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xca (size before relaxing) + 0x4010eb04 ieee80211_amsdu_negotiate + *fill* 0x4010ebb6 0x2 + .text.ieee80211_parse_rsn + 0x4010ebb8 0x864 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x908 (size before relaxing) + 0x4010ec88 ieee80211_parse_rsn + .text.ieee80211_is_ht_cipher + 0x4010f41c 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x2b (size before relaxing) + 0x4010f41c ieee80211_is_ht_cipher + *fill* 0x4010f443 0x1 + .text.ieee80211_parse_wapi + 0x4010f444 0x90 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x9c (size before relaxing) + 0x4010f448 ieee80211_parse_wapi + .text.ieee80211_parse_action + 0x4010f4d4 0xb2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xb6 (size before relaxing) + 0x4010f4d4 ieee80211_parse_action + *fill* 0x4010f586 0x2 + .text.wifi_pmk_is_valid + 0x4010f588 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + *fill* 0x4010f5ad 0x3 + .text.ieee80211_ioctl_process + 0x4010f5b0 0xe6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x106 (size before relaxing) + 0x4010f5b8 ieee80211_ioctl_process + *fill* 0x4010f696 0x2 + .text.wifi_station_set_config_local_2 + 0x4010f698 0x4fa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x5ea (size before relaxing) + *fill* 0x4010fb92 0x2 + .text.current_task_is_wifi_task + 0x4010fb94 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x27 (size before relaxing) + 0x4010fb98 current_task_is_wifi_task + *fill* 0x4010fbb7 0x1 + .text._do_wifi_stop + 0x4010fbb8 0x78 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x98 (size before relaxing) + 0x4010fbc0 _do_wifi_stop + .text._do_wifi_start + 0x4010fc30 0xb2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xd6 (size before relaxing) + 0x4010fc3c _do_wifi_start + *fill* 0x4010fce2 0x2 + .text.ieee80211_set_phy_bw + 0x4010fce4 0x1b7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1ff (size before relaxing) + 0x4010fce4 ieee80211_set_phy_bw + *fill* 0x4010fe9b 0x1 + .text.wifi_station_save_ap_channel + 0x4010fe9c 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x82 (size before relaxing) + 0x4010fe9c wifi_station_save_ap_channel + *fill* 0x4010fefe 0x2 + .text.ieee80211_sta_connect + 0x4010ff00 0xd0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x108 (size before relaxing) + 0x4010ff14 ieee80211_sta_connect + .text.ieee80211_sta_disconnect + 0x4010ffd0 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xa0 (size before relaxing) + 0x4010ffd0 ieee80211_sta_disconnect + .text._do_wifi_disconnect + 0x40110040 0x80 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xac (size before relaxing) + .text.wifi_softap_max_support_num + 0x401100c0 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x32 (size before relaxing) + 0x401100c0 wifi_softap_max_support_num + *fill* 0x401100e2 0x2 + .text.wifi_softap_set_config + 0x401100e4 0x815 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x999 (size before relaxing) + 0x4011010c wifi_softap_set_config + *fill* 0x401108f9 0x3 + .text.wifi_get_macaddr + 0x401108fc 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3e (size before relaxing) + 0x40110900 wifi_get_macaddr + *fill* 0x4011092e 0x2 + .text.chip_enable + 0x40110930 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x40110934 chip_enable + .text.chip_disable + 0x40110950 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x40110954 chip_disable + .text.wifi_reset_mac + 0x40110970 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x68 (size before relaxing) + 0x40110984 wifi_reset_mac + .text.wifi_hw_start + 0x401109d4 0x11b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x16a (size before relaxing) + 0x401109e8 wifi_hw_start + *fill* 0x40110aef 0x1 + .text.wifi_txq_empty + 0x40110af0 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x40110af0 wifi_txq_empty + .text.wifi_stop_sw_txq + 0x40110b14 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4c (size before relaxing) + 0x40110b18 wifi_stop_sw_txq + .text.wifi_hw_stop + 0x40110b40 0x100 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x15c (size before relaxing) + 0x40110b4c wifi_hw_stop + .text.wifi_set_mode_process + 0x40110c40 0x1d0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x248 (size before relaxing) + 0x40110c44 wifi_set_mode_process + .text.wifi_menuconfig_init + 0x40110e10 0x1b1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1c5 (size before relaxing) + 0x40110e44 wifi_menuconfig_init + *fill* 0x40110fc1 0x3 + .text.wpa_crypto_funcs_init + 0x40110fc4 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x43 (size before relaxing) + 0x40110fcc wpa_crypto_funcs_init + *fill* 0x40110ffb 0x1 + .text.wifi_crypto_init + 0x40110ffc 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x14 (size before relaxing) + 0x40110ffc wifi_crypto_init + .text.wifi_hmac_init + 0x40111008 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x54 (size before relaxing) + 0x40111010 wifi_hmac_init + .text.wifi_lmac_init + 0x40111034 0xd2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x126 (size before relaxing) + 0x40111054 wifi_lmac_init + *fill* 0x40111106 0x2 + .text.wifi_deinit + 0x40111108 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3a (size before relaxing) + 0x40111108 wifi_deinit + *fill* 0x4011112a 0x2 + .text.wifi_init_process + 0x4011112c 0xfe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x145 (size before relaxing) + 0x40111134 wifi_init_process + *fill* 0x4011122a 0x2 + .text.wifi_deinit_process + 0x4011122c 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x11 (size before relaxing) + 0x4011122c wifi_deinit_process + *fill* 0x40111236 0x2 + .text.wifi_start_process + 0x40111238 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xab (size before relaxing) + 0x40111238 wifi_start_process + *fill* 0x401112a7 0x1 + .text.wifi_stop_process + 0x401112a8 0x10a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x16e (size before relaxing) + 0x401112ac wifi_stop_process + *fill* 0x401113b2 0x2 + .text.wifi_connect_process + 0x401113b4 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x6a (size before relaxing) + 0x401113bc wifi_connect_process + *fill* 0x401113fe 0x2 + .text.wifi_disconnect_process + 0x40111400 0x5d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x81 (size before relaxing) + 0x40111408 wifi_disconnect_process + *fill* 0x4011145d 0x3 + .text.wifi_set_rxcb_process + 0x40111460 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3c (size before relaxing) + 0x40111460 wifi_set_rxcb_process + .text.wifi_deauth_sta_process + 0x4011148c 0x103 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x147 (size before relaxing) + 0x40111490 wifi_deauth_sta_process + *fill* 0x4011158f 0x1 + .text.wifi_wps_is_started + 0x40111590 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x40111594 wifi_wps_is_started + *fill* 0x4011159f 0x1 + .text.wifi_wpa2_is_started + 0x401115a0 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x401115a4 wifi_wpa2_is_started + *fill* 0x401115af 0x1 + .text.wifi_ipc_process + 0x401115b0 0x5f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x67 (size before relaxing) + 0x401115b4 wifi_ipc_process + *fill* 0x4011160f 0x1 + .text.ieee80211_set_appie + 0x40111610 0x183 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x193 (size before relaxing) + 0x40111618 ieee80211_set_appie + *fill* 0x40111793 0x1 + .text.wifi_set_appie_process + 0x40111794 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1c (size before relaxing) + 0x40111794 wifi_set_appie_process + .text.wifi_send_mgmt_frame + 0x401117ac 0x13e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x192 (size before relaxing) + 0x401117c0 wifi_send_mgmt_frame + *fill* 0x401118ea 0x2 + .text.wifi_register_mgmt_frame + 0x401118ec 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1b (size before relaxing) + 0x401118ec wifi_register_mgmt_frame + *fill* 0x40111903 0x1 + .text.wifi_nan_set_config_local + 0x40111904 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x8e (size before relaxing) + 0x40111910 wifi_nan_set_config_local + *fill* 0x40111972 0x2 + .text.wifi_set_config_process + 0x40111974 0x3e3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x44b (size before relaxing) + 0x40111980 wifi_set_config_process + *fill* 0x40111d57 0x1 + .text.wifi_ap_remove_sta_node_process + 0x40111d58 0x82 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x9e (size before relaxing) + 0x40111d60 wifi_ap_remove_sta_node_process + *fill* 0x40111dda 0x2 + .text.wifi_ap_sta_sae_auth_done_process + 0x40111ddc 0xe2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x10e (size before relaxing) + 0x40111de4 wifi_ap_sta_sae_auth_done_process + *fill* 0x40111ebe 0x2 + .text.wifi_on_coex_start_process + 0x40111ec0 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2e (size before relaxing) + 0x40111ec0 wifi_on_coex_start_process + *fill* 0x40111ede 0x2 + .text.wifi_on_coex_schm_phase_process + 0x40111ee0 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x11 (size before relaxing) + 0x40111ee0 wifi_on_coex_schm_phase_process + *fill* 0x40111eea 0x2 + .text.wifi_mesh_map_deauth_progress + 0x40111eec 0x7b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x97 (size before relaxing) + 0x40111eec wifi_mesh_map_deauth_progress + *fill* 0x40111f67 0x1 + .text.wifi_mesh_ps_duty_cycle_get_process + 0x40111f68 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + 0x40111f68 wifi_mesh_ps_duty_cycle_get_process + *fill* 0x40111f8d 0x3 + .text.ieee80211_ioctl_init + 0x40111f90 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3f (size before relaxing) + 0x40111f98 ieee80211_ioctl_init + *fill* 0x40111fb7 0x1 + .text.ieee80211_ioctl_deinit + 0x40111fb8 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x13 (size before relaxing) + 0x40111fb8 ieee80211_ioctl_deinit + *fill* 0x40111fc7 0x1 + .text.ieee80211_ioctl + 0x40111fc8 0x18e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1e6 (size before relaxing) + 0x40111fd8 ieee80211_ioctl + *fill* 0x40112156 0x2 + .text.is_esp_mesh_assoc + 0x40112158 0xd4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0xd8 (size before relaxing) + 0x40112164 is_esp_mesh_assoc + .text.nan_get_tsf + 0x4011222c 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x16 (size before relaxing) + 0x4011222c nan_get_tsf + *fill* 0x4011223a 0x2 + .text.nan_get_clust_id + 0x4011223c 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x40112240 nan_get_clust_id + .text.wifi_nan_reg_rxcb + 0x40112248 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x4011224c wifi_nan_reg_rxcb + *fill* 0x40112259 0x3 + .text.nan_set_update_sdf_pending + 0x4011225c 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x40112260 nan_set_update_sdf_pending + .text.nan_set_trc + 0x40112274 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x8a (size before relaxing) + 0x40112274 nan_set_trc + *fill* 0x401122ea 0x2 + .text.nan_rx_cb + 0x401122ec 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x18 (size before relaxing) + 0x401122ec nan_rx_cb + .text.nan_post_event + 0x401122fc 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x16 (size before relaxing) + 0x401122fc nan_post_event + *fill* 0x4011230a 0x2 + .text.nan_set_config_local + 0x4011230c 0xa8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0xd4 (size before relaxing) + 0x40112318 nan_set_config_local + .text.nan_dp_clear_tmp_data + 0x401123b4 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x72 (size before relaxing) + *fill* 0x4011241e 0x2 + .text.nan_sched_in_ndc_slot + 0x40112420 0x39 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x3d (size before relaxing) + 0x40112428 nan_sched_in_ndc_slot + *fill* 0x40112459 0x3 + .text.nan_sched_is_peer_available + 0x4011245c 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x40 (size before relaxing) + 0x40112460 nan_sched_is_peer_available + .text.nan_dp_send_confirm_event + 0x40112494 0x57 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x6b (size before relaxing) + 0x40112494 nan_dp_send_confirm_event + *fill* 0x401124eb 0x1 + .text.nan_dp_remove_node + 0x401124ec 0x41 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x55 (size before relaxing) + 0x401124ec nan_dp_remove_node + *fill* 0x4011252d 0x3 + .text.nan_dp_delete_peer + 0x40112530 0xef C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x127 (size before relaxing) + 0x40112538 nan_dp_delete_peer + *fill* 0x4011261f 0x1 + .text.nan_dp_post_tx + 0x40112620 0xc6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0xe2 (size before relaxing) + 0x40112628 nan_dp_post_tx + *fill* 0x401126e6 0x2 + .text.nan_ndp_resp_timeout_process + 0x401126e8 0xa7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0xcb (size before relaxing) + 0x401126f8 nan_ndp_resp_timeout_process + *fill* 0x4011278f 0x1 + .text.nan_warmup_timeout_process + 0x40112790 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x40112790 nan_warmup_timeout_process + *fill* 0x4011279f 0x1 + .text.nan_scan_timeout_process + 0x401127a0 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x401127a0 nan_scan_timeout_process + *fill* 0x401127af 0x1 + .text.nan_dw_start_process + 0x401127b0 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x401127b0 nan_dw_start_process + *fill* 0x401127bf 0x1 + .text.nan_dw_end_process + 0x401127c0 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x401127c0 nan_dw_end_process + *fill* 0x401127cf 0x1 + .text.nan_send_disc_bcn_process + 0x401127d0 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x401127d0 nan_send_disc_bcn_process + *fill* 0x401127e3 0x1 + .text.nan_send_sync_bcn_process + 0x401127e4 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x401127e4 nan_send_sync_bcn_process + *fill* 0x401127f7 0x1 + .text.nan_send_action_process + 0x401127f8 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x401127f8 nan_send_action_process + *fill* 0x4011280b 0x1 + .text.nan_faw_start_process + 0x4011280c 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x4011280c nan_faw_start_process + *fill* 0x4011281f 0x1 + .text.nan_faw_end_process + 0x40112820 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x40112820 nan_faw_end_process + *fill* 0x40112833 0x1 + .text.nan_ndc_start_process + 0x40112834 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x40112834 nan_ndc_start_process + *fill* 0x40112847 0x1 + .text.nan_sm_init + 0x40112848 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x1b (size before relaxing) + 0x40112848 nan_sm_init + *fill* 0x4011285f 0x1 + .text.nan_sm_start + 0x40112860 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x16 (size before relaxing) + 0x40112860 nan_sm_start + *fill* 0x4011286f 0x1 + .text.wifi_nvs_cfg_item_init + 0x40112870 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x98 (size before relaxing) + 0x4011287c wifi_nvs_cfg_item_init + .text.wifi_nvs_cfg_init + 0x401128f8 0x93d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xb15 (size before relaxing) + 0x40112adc wifi_nvs_cfg_init + *fill* 0x40113235 0x3 + .text.wifi_nvs_get + 0x40113238 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xe (size before relaxing) + 0x40113238 wifi_nvs_get + *fill* 0x40113242 0x2 + .text.wifi_nvs_commit + 0x40113244 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x4a (size before relaxing) + 0x40113244 wifi_nvs_commit + *fill* 0x4011327e 0x2 + .text.wifi_nvs_set + 0x40113280 0x186 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x1b2 (size before relaxing) + 0x4011329c wifi_nvs_set + *fill* 0x40113406 0x2 + .text.ieee80211_adjust_2nd_chan + 0x40113408 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x7c (size before relaxing) + 0x40113408 ieee80211_adjust_2nd_chan + .text.wifi_nvs_compare_cfg_diff + 0x4011346c 0x18a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x1a2 (size before relaxing) + 0x40113470 wifi_nvs_compare_cfg_diff + *fill* 0x401135f6 0x2 + .text.wifi_set_default_ssid + 0x401135f8 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x58 (size before relaxing) + 0x401135fc wifi_set_default_ssid + .text.wifi_nvs_validate_ap_ssid + 0x4011363c 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x22 (size before relaxing) + 0x4011363c wifi_nvs_validate_ap_ssid + *fill* 0x40113656 0x2 + .text.wifi_nvs_validate_ap_password + 0x40113658 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x48 (size before relaxing) + 0x40113658 wifi_nvs_validate_ap_password + .text.wifi_nvs_validate_sta_password + 0x40113690 0x41 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x51 (size before relaxing) + 0x40113690 wifi_nvs_validate_sta_password + *fill* 0x401136d1 0x3 + .text.wifi_nvs_validate_country + 0x401136d4 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x58 (size before relaxing) + 0x401136d4 wifi_nvs_validate_country + .text.wifi_nvs_validate_ap_chan + 0x40113728 0x4b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x6b (size before relaxing) + 0x40113728 wifi_nvs_validate_ap_chan + *fill* 0x40113773 0x1 + .text.wifi_nvs_validate_ap_num + 0x40113774 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x21 (size before relaxing) + 0x40113774 wifi_nvs_validate_ap_num + *fill* 0x40113791 0x3 + .text.wifi_nvs_validate_sta_listen_interval + 0x40113794 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x20 (size before relaxing) + 0x40113794 wifi_nvs_validate_sta_listen_interval + .text.wifi_nvs_load + 0x401137b0 0x2ca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x34e (size before relaxing) + *fill* 0x40113a7a 0x2 + .text.wifi_nvs_get_sta_listen_interval + 0x40113a7c 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x11 (size before relaxing) + 0x40113a7c wifi_nvs_get_sta_listen_interval + *fill* 0x40113a89 0x3 + .text.wifi_nvs_reset_current_ap_info + 0x40113a8c 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x8e (size before relaxing) + 0x40113a8c wifi_nvs_reset_current_ap_info + *fill* 0x40113afe 0x2 + .text.wifi_nvs_deinit + 0x40113b00 0x49 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x59 (size before relaxing) + 0x40113b00 wifi_nvs_deinit + *fill* 0x40113b49 0x3 + .text.wifi_nvs_init + 0x40113b4c 0x75 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xa1 (size before relaxing) + 0x40113b58 wifi_nvs_init + *fill* 0x40113bc1 0x3 + .text.add_appie + 0x40113bc4 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1b (size before relaxing) + *fill* 0x40113bdb 0x1 + .text.ieee80211_vnd_ie_size$part$5 + 0x40113bdc 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x35 (size before relaxing) + *fill* 0x40113c0d 0x3 + .text.ieee80211_reg_netstack_buf_cb + 0x40113c10 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x40113c18 ieee80211_reg_netstack_buf_cb + *fill* 0x40113c2a 0x2 + .text.ieee80211_set_hmac_stop + 0x40113c2c 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3f (size before relaxing) + 0x40113c2c ieee80211_set_hmac_stop + *fill* 0x40113c5f 0x1 + .text.ieee80211_recycle_cache_eb + 0x40113c60 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2f (size before relaxing) + 0x40113c60 ieee80211_recycle_cache_eb + *fill* 0x40113c84 0x0 + .text.ieee80211_empty_txq + 0x40113c84 0x85 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x95 (size before relaxing) + 0x40113c88 ieee80211_empty_txq + *fill* 0x40113d09 0x3 + .text.is_wapi_alloc_tx_buf + 0x40113d0c 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3a (size before relaxing) + 0x40113d0c is_wapi_alloc_tx_buf + *fill* 0x40113d42 0x2 + .text.ieee80211_wapi_alloc_tx_buf + 0x40113d44 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x58 (size before relaxing) + 0x40113d48 ieee80211_wapi_alloc_tx_buf + .text.ieee80211_copy_eb_header + 0x40113d98 0x8d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x95 (size before relaxing) + 0x40113d9c ieee80211_copy_eb_header + *fill* 0x40113e25 0x3 + .text.ieee80211_amsdu_adjust_head + 0x40113e28 0xdb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xeb (size before relaxing) + 0x40113e2c ieee80211_amsdu_adjust_head + *fill* 0x40113f03 0x1 + .text.ieee80211_amsdu_length_check + 0x40113f04 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2d (size before relaxing) + 0x40113f04 ieee80211_amsdu_length_check + *fill* 0x40113f2d 0x3 + .text.ieee80211_output_init + 0x40113f30 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x39 (size before relaxing) + 0x40113f3c ieee80211_output_init + *fill* 0x40113f61 0x3 + .text.ieee80211_send_setup + 0x40113f64 0x141 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x16d (size before relaxing) + 0x40113f70 ieee80211_send_setup + *fill* 0x401140a5 0x3 + .text.ieee80211_tx_mgt_cb + 0x401140a8 0x132 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x162 (size before relaxing) + 0x401140ac ieee80211_tx_mgt_cb + *fill* 0x401141da 0x2 + .text.ieee80211_classify + 0x401141dc 0x17e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x19e (size before relaxing) + 0x401141f4 ieee80211_classify + *fill* 0x4011435a 0x2 + .text.ieee80211_add_rates + 0x4011435c 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x34 (size before relaxing) + 0x4011435c ieee80211_add_rates + .text.ieee80211_add_dsparams + 0x4011438c 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2a (size before relaxing) + 0x4011438c ieee80211_add_dsparams + *fill* 0x401143b2 0x2 + .text.ieee80211_add_xrates + 0x401143b4 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x5e (size before relaxing) + 0x401143b4 ieee80211_add_xrates + *fill* 0x4011440a 0x2 + .text.ieee80211_add_probe_resp_app_ies + 0x4011440c 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x23 (size before relaxing) + 0x4011440c ieee80211_add_probe_resp_app_ies + *fill* 0x4011442b 0x1 + .text.ieee80211_add_beacon_app_ies + 0x4011442c 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x23 (size before relaxing) + 0x4011442c ieee80211_add_beacon_app_ies + *fill* 0x4011444b 0x1 + .text.ieee80211_add_assoc_resp_ies + 0x4011444c 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x4011444c ieee80211_add_assoc_resp_ies + *fill* 0x4011446a 0x2 + .text.ieee80211_add_assoc_req_ies + 0x4011446c 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x4011446c ieee80211_add_assoc_req_ies + *fill* 0x4011448a 0x2 + .text.ieee80211_add_probe_req_ies + 0x4011448c 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x4011448c ieee80211_add_probe_req_ies + *fill* 0x401144aa 0x2 + .text.ieee80211_add_wme_param + 0x401144ac 0x8c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x90 (size before relaxing) + 0x401144b4 ieee80211_add_wme_param + .text.ieee80211_add_csa + 0x40114538 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x38 (size before relaxing) + 0x40114538 ieee80211_add_csa + .text.ieee80211_add_extcap + 0x4011456c 0x7f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x9f (size before relaxing) + 0x40114574 ieee80211_add_extcap + *fill* 0x401145eb 0x1 + .text.ieee80211_vnd_ie_set + 0x401145ec 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x40 (size before relaxing) + 0x401145ec ieee80211_vnd_ie_set + .text.ieee80211_vnd_lora_ie_size + 0x40114624 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1c (size before relaxing) + 0x40114624 ieee80211_vnd_lora_ie_size + .text.ieee80211_vnd_lora_ie_set + 0x4011463c 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3a (size before relaxing) + 0x4011463c ieee80211_vnd_lora_ie_set + *fill* 0x4011466e 0x2 + .text.ieee80211_setup_robust_mgmtframe + 0x40114670 0x6d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x7c (size before relaxing) + 0x40114670 ieee80211_setup_robust_mgmtframe + *fill* 0x401146dd 0x3 + .text.ieee80211_mgmt_output + 0x401146e0 0x227 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x277 (size before relaxing) + 0x401146f0 ieee80211_mgmt_output + *fill* 0x40114907 0x1 + .text.ieee80211_getcapinfo + 0x40114908 0x93 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xaf (size before relaxing) + 0x40114910 ieee80211_getcapinfo + *fill* 0x4011499b 0x1 + .text.ieee80211_assoc_req_construct + 0x4011499c 0x490 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x56c (size before relaxing) + 0x401149c0 ieee80211_assoc_req_construct + .text.ieee80211_assoc_resp_construct + 0x40114e2c 0x366 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x41a (size before relaxing) + 0x40114e40 ieee80211_assoc_resp_construct + *fill* 0x40115192 0x2 + .text.ieee80211_auth_construct + 0x40115194 0x332 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x366 (size before relaxing) + 0x401151a0 ieee80211_auth_construct + *fill* 0x401154c6 0x2 + .text.ieee80211_get_robustmgtframe + 0x401154c8 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x39 (size before relaxing) + 0x401154c8 ieee80211_get_robustmgtframe + *fill* 0x401154f9 0x3 + .text.ieee80211_deauth_construct + 0x401154fc 0x5d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x65 (size before relaxing) + 0x40115500 ieee80211_deauth_construct + *fill* 0x40115559 0x3 + .text.ieee80211_disassoc_construct + 0x4011555c 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x62 (size before relaxing) + 0x40115560 ieee80211_disassoc_construct + *fill* 0x401155b6 0x2 + .text.ieee80211_search_node + 0x401155b8 0xea C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x102 (size before relaxing) + 0x401155d0 ieee80211_search_node + *fill* 0x401156a2 0x2 + .text.ieee80211_output + 0x401156a4 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1d (size before relaxing) + 0x401156a4 ieee80211_output + *fill* 0x401156bd 0x3 + .text.ieee80211_output_pending_eb + 0x401156c0 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x94 (size before relaxing) + 0x401156c4 ieee80211_output_pending_eb + .text.ieee80211_amsdu_send_check + 0x40115730 0xab C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xb7 (size before relaxing) + 0x40115738 ieee80211_amsdu_send_check + *fill* 0x401157db 0x1 + .text.ieee80211_amsdu_encap_check + 0x401157dc 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x70 (size before relaxing) + 0x401157dc ieee80211_amsdu_encap_check + .text.ieee80211_encap_amsdu + 0x4011583c 0x1b1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x201 (size before relaxing) + 0x4011583c ieee80211_encap_amsdu + *fill* 0x401159ed 0x3 + .text.ieee80211_alloc_proberesp + 0x401159f0 0x2ae C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x362 (size before relaxing) + 0x40115a00 ieee80211_alloc_proberesp + *fill* 0x40115c9e 0x2 + .text.ieee80211_alloc_deauth + 0x40115ca0 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x58 (size before relaxing) + 0x40115ca4 ieee80211_alloc_deauth + .text.ieee80211_output_raw_process + 0x40115cec 0x194 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1d8 (size before relaxing) + 0x40115cf8 ieee80211_output_raw_process + .text.ieee80211_beacon_construct + 0x40115e80 0x272 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2fe (size before relaxing) + 0x40115e80 ieee80211_beacon_construct + *fill* 0x401160f2 0x2 + .text.ieee80211_send_nulldata + 0x401160f4 0x140 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1a0 (size before relaxing) + 0x401160fc ieee80211_send_nulldata + .text.ieee80211_send_probereq + 0x40116234 0x23d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2c1 (size before relaxing) + 0x4011623c ieee80211_send_probereq + *fill* 0x40116471 0x3 + .text.ieee80211_send_mgmt + 0x40116474 0xe6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x126 (size before relaxing) + 0x4011647c ieee80211_send_mgmt + *fill* 0x4011655a 0x2 + .text.ieee80211_send_proberesp + 0x4011655c 0xec C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x13c (size before relaxing) + 0x40116564 ieee80211_send_proberesp + .text.ieee80211_send_deauth + 0x40116648 0xf8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x144 (size before relaxing) + 0x40116650 ieee80211_send_deauth + .text.ieee80211_beacon_alloc + 0x40116740 0x1fe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x26e (size before relaxing) + 0x40116758 ieee80211_beacon_alloc + *fill* 0x4011693e 0x2 + .text.ieee80211_encap_null_data + 0x40116940 0x10b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x143 (size before relaxing) + 0x40116948 ieee80211_encap_null_data + *fill* 0x40116a4b 0x1 + .text.ieee80211_pm_tx_null_process + 0x40116a4c 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3f (size before relaxing) + 0x40116a4c ieee80211_pm_tx_null_process + *fill* 0x40116a83 0x1 + .text.ieee80211_phy_deinit + 0x40116a84 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x11 (size before relaxing) + 0x40116a84 ieee80211_phy_deinit + *fill* 0x40116a8e 0x2 + .text.ieee80211_phy_type_get + 0x40116a90 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x5f (size before relaxing) + 0x40116a90 ieee80211_phy_type_get + *fill* 0x40116aeb 0x1 + .text.ieee80211_phy_mode_show + 0x40116aec 0x7d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x40116b0c ieee80211_phy_mode_show + *fill* 0x40116b69 0x3 + .text.ieee80211_setup_ratetable + 0x40116b6c 0x115 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x135 (size before relaxing) + 0x40116b84 ieee80211_setup_ratetable + *fill* 0x40116c81 0x3 + .text.ieee80211_phy_init + 0x40116c84 0xa0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0xee (size before relaxing) + 0x40116c88 ieee80211_phy_init + *fill* 0x40116d24 0x0 + .text.ieee80211_psq_init + 0x40116d24 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x1d (size before relaxing) + 0x40116d24 ieee80211_psq_init + *fill* 0x40116d3d 0x3 + .text.ieee80211_gpsq_init + 0x40116d40 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x5a (size before relaxing) + 0x40116d44 ieee80211_gpsq_init + *fill* 0x40116d7e 0x2 + .text.ieee80211_psq_find_max_bss + 0x40116d80 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x3b (size before relaxing) + 0x40116d80 ieee80211_psq_find_max_bss + *fill* 0x40116db3 0x1 + .text.ieee80211_set_tim + 0x40116db4 0x7f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x87 (size before relaxing) + 0x40116db4 ieee80211_set_tim + *fill* 0x40116e33 0x1 + .text.ieee80211_psq_take_head + 0x40116e34 0x41 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x45 (size before relaxing) + 0x40116e34 ieee80211_psq_take_head + *fill* 0x40116e75 0x3 + .text.ieee80211_psq_drop_one_pkt + 0x40116e78 0x4f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x6b (size before relaxing) + 0x40116e78 ieee80211_psq_drop_one_pkt + *fill* 0x40116ec7 0x1 + .text.ieee80211_psq_send_one_pkt + 0x40116ec8 0x5d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x79 (size before relaxing) + 0x40116ec8 ieee80211_psq_send_one_pkt + *fill* 0x40116f25 0x3 + .text.ieee80211_psq_is_buff_pkt + 0x40116f28 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x4c (size before relaxing) + 0x40116f28 ieee80211_psq_is_buff_pkt + *fill* 0x40116f5d 0x3 + .text.ieee80211_pwrsave + 0x40116f60 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x82 (size before relaxing) + 0x40116f60 ieee80211_pwrsave + *fill* 0x40116fce 0x2 + .text.pwrsave_flushq + 0x40116fd0 0xc9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0xe9 (size before relaxing) + 0x40116fd0 pwrsave_flushq + *fill* 0x40117099 0x3 + .text.ieee80211_node_pwrsave + 0x4011709c 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x7a (size before relaxing) + 0x4011709c ieee80211_node_pwrsave + *fill* 0x401170fe 0x2 + .text.ieee80211_pwrsave_node_cleanup + 0x40117100 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x47 (size before relaxing) + 0x40117100 ieee80211_pwrsave_node_cleanup + *fill* 0x40117137 0x1 + .text.ieee80211_pwrsave_txcb + 0x40117138 0x7f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x9f (size before relaxing) + 0x40117138 ieee80211_pwrsave_txcb + *fill* 0x401171b7 0x1 + .text.ieee80211_proto_attach + 0x401171b8 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x2f (size before relaxing) + 0x401171bc ieee80211_proto_attach + *fill* 0x401171df 0x1 + .text.ieee80211_wme_updateparams + 0x401171e0 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x4a (size before relaxing) + 0x401171e4 ieee80211_wme_updateparams + *fill* 0x4011721e 0x2 + .text.ieee80211_mlme_connect_bss + 0x40117220 0xf7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x11f (size before relaxing) + 0x40117230 ieee80211_mlme_connect_bss + *fill* 0x40117317 0x1 + .text.get_country_chan_info + 0x40117318 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x30 (size before relaxing) + .text.ieee80211_is_40mhz_valid_bw + 0x40117344 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x64 (size before relaxing) + 0x4011734c ieee80211_is_40mhz_valid_bw + .text.ieee80211_regdomain_get_country + 0x40117398 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x3e (size before relaxing) + 0x40117398 ieee80211_regdomain_get_country + *fill* 0x401173ce 0x2 + .text.ieee80211_update_phy_country + 0x401173d0 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x30 (size before relaxing) + 0x401173d0 ieee80211_update_phy_country + .text.ieee80211_regdomain_update + 0x401173f4 0x138 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x15c (size before relaxing) + 0x401173f8 ieee80211_regdomain_update + .text.ieee80211_regdomain_update_in_scan + 0x4011752c 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x16 (size before relaxing) + 0x4011752c ieee80211_regdomain_update_in_scan + *fill* 0x4011753e 0x2 + .text.ieee80211_regdomain_update_in_connect + 0x40117540 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x18 (size before relaxing) + 0x40117540 ieee80211_regdomain_update_in_connect + .text.ieee80211_add_countryie + 0x40117554 0x65 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x71 (size before relaxing) + 0x40117558 ieee80211_add_countryie + *fill* 0x401175b9 0x3 + .text.ieee80211_regdomain_max_chan + 0x401175bc 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x2e (size before relaxing) + 0x401175bc ieee80211_regdomain_max_chan + *fill* 0x401175e2 0x2 + .text.ieee80211_regdomain_ap_max_chan + 0x401175e4 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x1c (size before relaxing) + 0x401175e4 ieee80211_regdomain_ap_max_chan + .text.ieee80211_regdomain_min_chan + 0x401175fc 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x24 (size before relaxing) + 0x401175fc ieee80211_regdomain_min_chan + .text.ieee80211_regdomain_ap_min_chan + 0x40117618 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x12 (size before relaxing) + 0x40117618 ieee80211_regdomain_ap_min_chan + *fill* 0x40117623 0x1 + .text.ieee80211_regdomain_chan_in_range + 0x40117624 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x2e (size before relaxing) + 0x40117624 ieee80211_regdomain_chan_in_range + *fill* 0x40117642 0x2 + .text.ieee80211_regdomain_is_active_scan + 0x40117644 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x33 (size before relaxing) + 0x40117644 ieee80211_regdomain_is_active_scan + *fill* 0x40117673 0x1 + .text.ieee80211_rfid_locp_recv_reset + 0x40117674 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x14 (size before relaxing) + 0x40117674 ieee80211_rfid_locp_recv_reset + .text.ieee80211_rfid_locp_recv + 0x40117684 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x20 (size before relaxing) + 0x40117684 ieee80211_rfid_locp_recv + .text.scan_enter_oper_channel + 0x401176a0 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x401176ae 0x2 + .text.scan_inter_channel_timeout + 0x401176b0 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x401176be 0x2 + .text.scan_op_start + 0x401176c0 0x1d2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x232 (size before relaxing) + *fill* 0x40117892 0x2 + .text.unlikely.sta_update_owe_bssid + 0x40117894 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x77 (size before relaxing) + *fill* 0x401178ef 0x1 + .text.ieee80211_scan_attach + 0x401178f0 0xab C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xbb (size before relaxing) + 0x40117900 ieee80211_scan_attach + *fill* 0x4011799b 0x1 + .text.ieee80211_scan_deattach + 0x4011799c 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2c (size before relaxing) + 0x4011799c ieee80211_scan_deattach + .text.scan_flush_all_tx_buf + 0x401179c0 0x68 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x84 (size before relaxing) + 0x401179c8 scan_flush_all_tx_buf + .text.scan_cancel + 0x40117a28 0x7c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x94 (size before relaxing) + 0x40117a2c scan_cancel + .text.scan_remove_bssid + 0x40117aa4 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x19 (size before relaxing) + 0x40117aa4 scan_remove_bssid + *fill* 0x40117ab9 0x3 + .text.scan_hidden_ssid + 0x40117abc 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x17 (size before relaxing) + 0x40117abc scan_hidden_ssid + *fill* 0x40117acf 0x1 + .text.scan_set_act_duration + 0x40117ad0 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x15 (size before relaxing) + 0x40117ad0 scan_set_act_duration + *fill* 0x40117ae1 0x3 + .text.scan_set_pas_duration + 0x40117ae4 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x13 (size before relaxing) + 0x40117ae4 scan_set_pas_duration + *fill* 0x40117af3 0x1 + .text.scan_add_probe_ssid + 0x40117af4 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x72 (size before relaxing) + 0x40117af4 scan_add_probe_ssid + *fill* 0x40117b5a 0x2 + .text.scan_remove_probe_ssid + 0x40117b5c 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x31 (size before relaxing) + 0x40117b5c scan_remove_probe_ssid + *fill* 0x40117b89 0x3 + .text.scan_prefer_chan + 0x40117b8c 0x1cd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x225 (size before relaxing) + 0x40117bac scan_prefer_chan + *fill* 0x40117d59 0x3 + .text.scan_update_scan_history + 0x40117d5c 0x184 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x1a8 (size before relaxing) + 0x40117d6c scan_update_scan_history + .text.scan_build_chan_list + 0x40117ee0 0x90 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xa0 (size before relaxing) + 0x40117ee8 scan_build_chan_list + .text.scan_set_desChan + 0x40117f70 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x19 (size before relaxing) + 0x40117f70 scan_set_desChan + *fill* 0x40117f85 0x3 + .text.scan_get_type + 0x40117f88 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x10 (size before relaxing) + 0x40117f88 scan_get_type + .text.unlikely.scan_add_ssid_do + 0x40117f94 0x47a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x4c2 (size before relaxing) + *fill* 0x4011840e 0x2 + .text.unlikely.scan_add_ssid + 0x40118410 0x17b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x19f (size before relaxing) + *fill* 0x4011858b 0x1 + .text.scan_reset_cipher_and_akm + 0x4011858c 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x33 (size before relaxing) + 0x4011858c scan_reset_cipher_and_akm + *fill* 0x401185bb 0x1 + .text.scan_profile_check + 0x401185bc 0x57a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x622 (size before relaxing) + 0x401185fc scan_profile_check + *fill* 0x40118b36 0x2 + .text.free_bss_info + 0x40118b38 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x4a (size before relaxing) + 0x40118b3c free_bss_info + *fill* 0x40118b7a 0x2 + .text.clear_bss_queue + 0x40118b7c 0x63 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x7f (size before relaxing) + 0x40118b84 clear_bss_queue + *fill* 0x40118bdf 0x1 + .text.scan_done + 0x40118be0 0x239 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2c9 (size before relaxing) + *fill* 0x40118e19 0x3 + .text.scan_next_channel + 0x40118e1c 0x1c4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x21c (size before relaxing) + .text.scan_enter_oper_channel_process + 0x40118fe0 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x34 (size before relaxing) + 0x40118fe4 scan_enter_oper_channel_process + .text.scan_inter_channel_timeout_process + 0x40119000 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x8c (size before relaxing) + 0x40119008 scan_inter_channel_timeout_process + .text.scan_op_end + 0x40119070 0x170 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x1cc (size before relaxing) + .text.scan_start + 0x401191e0 0x133 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x193 (size before relaxing) + 0x401191f4 scan_start + *fill* 0x40119313 0x1 + .text.check_bss_queue + 0x40119314 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x5c (size before relaxing) + 0x40119314 check_bss_queue + .text.scan_parse_ht2040_coex + 0x40119360 0x74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x84 (size before relaxing) + 0x40119368 scan_parse_ht2040_coex + .text.scan_get_owe_channel_info + 0x401193d4 0x81 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x8d (size before relaxing) + 0x401193d4 scan_get_owe_channel_info + *fill* 0x40119455 0x3 + .text.scan_validate_owe_scenarios + 0x40119458 0x8c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xa4 (size before relaxing) + 0x40119464 scan_validate_owe_scenarios + .text.scan_parse_beacon + 0x401194e4 0xc5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xe7b (size before relaxing) + 0x4011954c scan_parse_beacon + *fill* 0x4011a13f 0x1 + .text.sta_eapol_txdone_cb + 0x4011a140 0xb3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xbf (size before relaxing) + 0x4011a144 sta_eapol_txdone_cb + *fill* 0x4011a1f3 0x1 + .text.sta_assoc_comeback + 0x4011a1f4 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x4011a202 0x2 + .text.sta_try_sa_query + 0x4011a204 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x4011a212 0x2 + .text.sta_sa_query_timeout + 0x4011a214 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x4011a222 0x2 + .text.wifi_sta_reg_eapol_txdone_cb + 0x4011a224 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x26 (size before relaxing) + 0x4011a228 wifi_sta_reg_eapol_txdone_cb + *fill* 0x4011a242 0x2 + .text.ieee80211_sta_new_state + 0x4011a244 0xaf9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xcd1 (size before relaxing) + 0x4011a2f0 ieee80211_sta_new_state + *fill* 0x4011ad3d 0x3 + .text.wifi_sta_reg_rxcb + 0x4011ad40 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x11 (size before relaxing) + 0x4011ad40 wifi_sta_reg_rxcb + *fill* 0x4011ad4d 0x3 + .text.sta_michael_mic_failure + 0x4011ad50 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3e (size before relaxing) + 0x4011ad54 sta_michael_mic_failure + *fill* 0x4011ad86 0x2 + .text.sta_auth_ft + 0x4011ad88 0xd2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x102 (size before relaxing) + 0x4011ad98 sta_auth_ft + *fill* 0x4011ae5a 0x2 + .text.sta_auth_open + 0x4011ae5c 0x147 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x18f (size before relaxing) + 0x4011ae70 sta_auth_open + *fill* 0x4011afa3 0x1 + .text.sta_auth_shared + 0x4011afa4 0x14a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x172 (size before relaxing) + 0x4011afac sta_auth_shared + *fill* 0x4011b0ee 0x2 + .text.ieee80211_wme_standard_ac_to_esp_ac + 0x4011b0f0 0x4f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x53 (size before relaxing) + 0x4011b0f8 ieee80211_wme_standard_ac_to_esp_ac + *fill* 0x4011b13f 0x1 + .text.ieee80211_parse_wmeparams + 0x4011b140 0x9c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xa0 (size before relaxing) + 0x4011b140 ieee80211_parse_wmeparams + .text.sta_rx_csa + 0x4011b1dc 0x240 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x26c (size before relaxing) + 0x4011b208 sta_rx_csa + .text.reset_cs_thres + 0x4011b41c 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3a (size before relaxing) + 0x4011b420 reset_cs_thres + *fill* 0x4011b44a 0x2 + .text.ieee80211_parse_obss_scan_param + 0x4011b44c 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x2a (size before relaxing) + 0x4011b44c ieee80211_parse_obss_scan_param + *fill* 0x4011b472 0x2 + .text.sta_retry_assoc + 0x4011b474 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x7a (size before relaxing) + 0x4011b474 sta_retry_assoc + *fill* 0x4011b4de 0x2 + .text.sta_recv_assoc + 0x4011b4e0 0x654 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x724 (size before relaxing) + 0x4011b524 sta_recv_assoc + .text.sta_recv_ctl + 0x4011bb34 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + 0x4011bb34 sta_recv_ctl + *fill* 0x4011bb43 0x1 + .text.wifi_station_start + 0x4011bb44 0xaa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xda (size before relaxing) + 0x4011bb4c wifi_station_start + *fill* 0x4011bbee 0x2 + .text.wifi_station_stop + 0x4011bbf0 0x86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xae (size before relaxing) + 0x4011bbf4 wifi_station_stop + *fill* 0x4011bc76 0x2 + .text.sta_bip_check + 0x4011bc78 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x96 (size before relaxing) + 0x4011bc78 sta_bip_check + *fill* 0x4011bcea 0x2 + .text.sta_sa_query_process_timeout + 0x4011bcec 0x73 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x8f (size before relaxing) + 0x4011bcf8 sta_sa_query_process_timeout + *fill* 0x4011bd5f 0x1 + .text.sta_try_sa_query_process + 0x4011bd60 0x179 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1a1 (size before relaxing) + 0x4011bd70 sta_try_sa_query_process + *fill* 0x4011bed9 0x3 + .text.sta_is_wpa3_enabled + 0x4011bedc 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x31 (size before relaxing) + 0x4011bedc sta_is_wpa3_enabled + *fill* 0x4011bf01 0x3 + .text.sta_auth_sae + 0x4011bf04 0x189 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1bd (size before relaxing) + 0x4011bf08 sta_auth_sae + *fill* 0x4011c08d 0x3 + .text.sta_recv_mgmt + 0x4011c090 0xb7b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xccb (size before relaxing) + 0x4011c0c8 sta_recv_mgmt + *fill* 0x4011cc0b 0x1 + .text.sta_get_owe_data + 0x4011cc0c 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x13 (size before relaxing) + 0x4011cc0c sta_get_owe_data + *fill* 0x4011cc1b 0x1 + .text.wifi_sta_connect_internal_process + 0x4011cc1c 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2b (size before relaxing) + 0x4011cc1c wifi_sta_connect_internal_process + *fill* 0x4011cc3f 0x1 + .text.esp_wifi_ap_get_prof_pmk_internal + 0x4011cc40 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4011cc40 esp_wifi_ap_get_prof_pmk_internal + *fill* 0x4011cc4f 0x1 + .text.esp_wifi_sta_update_ap_info_internal + 0x4011cc50 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x3d (size before relaxing) + 0x4011cc50 esp_wifi_sta_update_ap_info_internal + *fill* 0x4011cc79 0x3 + .text.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x4011cc7c 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x22 (size before relaxing) + 0x4011cc7c esp_wifi_sta_get_ap_info_prof_pmk_internal + *fill* 0x4011cc9a 0x2 + .text.esp_wifi_ap_get_prof_ap_ssid_internal + 0x4011cc9c 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4011cc9c esp_wifi_ap_get_prof_ap_ssid_internal + *fill* 0x4011ccab 0x1 + .text.esp_wifi_sta_get_prof_ssid_internal + 0x4011ccac 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x10 (size before relaxing) + 0x4011ccac esp_wifi_sta_get_prof_ssid_internal + .text.esp_wifi_ap_get_prof_authmode_internal + 0x4011ccb8 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4011ccb8 esp_wifi_ap_get_prof_authmode_internal + .text.esp_wifi_ap_get_max_sta_conn + 0x4011ccc8 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4011ccc8 esp_wifi_ap_get_max_sta_conn + .text.esp_wifi_ap_get_prof_pairwise_cipher_internal + 0x4011ccd8 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4011ccd8 esp_wifi_ap_get_prof_pairwise_cipher_internal + .text.esp_wifi_sta_get_prof_authmode_internal + 0x4011cce8 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4011cce8 esp_wifi_sta_get_prof_authmode_internal + *fill* 0x4011ccf6 0x2 + .text.esp_wifi_get_pmf_config_internal + 0x4011ccf8 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x5a (size before relaxing) + 0x4011ccf8 esp_wifi_get_pmf_config_internal + *fill* 0x4011cd4e 0x2 + .text.esp_wifi_get_config_sae_pwe_h2e_internal + 0x4011cd50 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x44 (size before relaxing) + 0x4011cd54 esp_wifi_get_config_sae_pwe_h2e_internal + .text.esp_wifi_sta_get_rsnxe + 0x4011cd8c 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x26 (size before relaxing) + 0x4011cd8c esp_wifi_sta_get_rsnxe + *fill* 0x4011cda7 0x1 + .text.esp_wifi_sta_disable_wpa2_authmode_internal + 0x4011cda8 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x5e (size before relaxing) + 0x4011cdb0 esp_wifi_sta_disable_wpa2_authmode_internal + *fill* 0x4011cdf2 0x2 + .text.esp_wifi_sta_get_config_sae_pk_internal + 0x4011cdf4 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4011cdf4 esp_wifi_sta_get_config_sae_pk_internal + .text.esp_wifi_enable_sae_pk_only_mode_internal + 0x4011ce04 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x47 (size before relaxing) + 0x4011ce08 esp_wifi_enable_sae_pk_only_mode_internal + *fill* 0x4011ce3f 0x1 + .text.esp_wifi_sta_disable_owe_trans_internal + 0x4011ce40 0x4e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x5e (size before relaxing) + 0x4011ce48 esp_wifi_sta_disable_owe_trans_internal + *fill* 0x4011ce8e 0x2 + .text.esp_wifi_ap_notify_node_sae_auth_done + 0x4011ce90 0x4e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x5a (size before relaxing) + 0x4011ce94 esp_wifi_ap_notify_node_sae_auth_done + *fill* 0x4011cede 0x2 + .text.esp_wifi_ap_is_sta_sae_reauth_node + 0x4011cee0 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x20 (size before relaxing) + 0x4011cee0 esp_wifi_ap_is_sta_sae_reauth_node + .text.esp_wifi_sta_get_sae_identifier_internal + 0x4011cefc 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4011cefc esp_wifi_sta_get_sae_identifier_internal + *fill* 0x4011cf0b 0x1 + .text.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x4011cf0c 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x19 (size before relaxing) + 0x4011cf0c esp_wifi_sta_is_ap_notify_completed_rsne_internal + *fill* 0x4011cf21 0x3 + .text.esp_wifi_ap_get_prof_password_internal + 0x4011cf24 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4011cf24 esp_wifi_ap_get_prof_password_internal + *fill* 0x4011cf33 0x1 + .text.wifi_sta_get_prof_password + 0x4011cf34 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x4011cf34 wifi_sta_get_prof_password + *fill* 0x4011cf41 0x3 + .text.wifi_ap_pmf_enabled + 0x4011cf44 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x48 (size before relaxing) + 0x4011cf44 wifi_ap_pmf_enabled + .text.esp_wifi_sta_get_prof_password_internal + 0x4011cf84 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x4011cf84 esp_wifi_sta_get_prof_password_internal + *fill* 0x4011cf91 0x3 + .text.esp_wifi_sta_get_reset_param_internal + 0x4011cf94 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4011cf94 esp_wifi_sta_get_reset_param_internal + *fill* 0x4011cfa2 0x2 + .text.esp_wifi_sta_set_reset_param_internal + 0x4011cfa4 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1a (size before relaxing) + 0x4011cfa4 esp_wifi_sta_set_reset_param_internal + *fill* 0x4011cfba 0x2 + .text.esp_wifi_sta_prof_is_wpa_internal + 0x4011cfbc 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2f (size before relaxing) + 0x4011cfbc esp_wifi_sta_prof_is_wpa_internal + *fill* 0x4011cfe7 0x1 + .text.esp_wifi_sta_prof_is_wpa2_internal + 0x4011cfe8 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x31 (size before relaxing) + 0x4011cfec esp_wifi_sta_prof_is_wpa2_internal + *fill* 0x4011d015 0x3 + .text.esp_wifi_sta_prof_is_wapi_internal + 0x4011d018 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x22 (size before relaxing) + 0x4011d018 esp_wifi_sta_prof_is_wapi_internal + *fill* 0x4011d036 0x2 + .text.esp_wifi_sta_prof_is_rsn_internal + 0x4011d038 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x31 (size before relaxing) + 0x4011d03c esp_wifi_sta_prof_is_rsn_internal + *fill* 0x4011d065 0x3 + .text.esp_wifi_sta_get_pairwise_cipher_internal + 0x4011d068 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4011d068 esp_wifi_sta_get_pairwise_cipher_internal + *fill* 0x4011d076 0x2 + .text.esp_wifi_sta_get_group_cipher_internal + 0x4011d078 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4011d078 esp_wifi_sta_get_group_cipher_internal + *fill* 0x4011d086 0x2 + .text.ieee80211_get_key + 0x4011d088 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1c (size before relaxing) + 0x4011d088 ieee80211_get_key + .text.ieee80211_set_key + 0x4011d0a0 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x44 (size before relaxing) + 0x4011d0a0 ieee80211_set_key + .text.ieee80211_set_sta_gtk_index + 0x4011d0dc 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2d (size before relaxing) + 0x4011d0dc ieee80211_set_sta_gtk_index + *fill* 0x4011d105 0x3 + .text.ieee80211_set_gtk + 0x4011d108 0x45 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x55 (size before relaxing) + 0x4011d110 ieee80211_set_gtk + *fill* 0x4011d14d 0x3 + .text.ieee80211_get_ptk + 0x4011d150 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1c (size before relaxing) + 0x4011d150 ieee80211_get_ptk + .text.ieee80211_get_spp + 0x4011d168 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x34 (size before relaxing) + 0x4011d168 ieee80211_get_spp + .text.esp_wifi_wpa_ptk_init_done_internal + 0x4011d194 0x83 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0xa7 (size before relaxing) + 0x4011d198 esp_wifi_wpa_ptk_init_done_internal + *fill* 0x4011d217 0x1 + .text.esp_wifi_auth_done_internal + 0x4011d218 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x4011d218 esp_wifi_auth_done_internal + *fill* 0x4011d222 0x2 + .text.esp_wifi_unregister_wpa_cb_internal + 0x4011d224 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2a (size before relaxing) + 0x4011d224 esp_wifi_unregister_wpa_cb_internal + *fill* 0x4011d246 0x2 + .text.esp_wifi_register_wpa_cb_internal + 0x4011d248 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1e (size before relaxing) + 0x4011d248 esp_wifi_register_wpa_cb_internal + *fill* 0x4011d25b 0x1 + .text.ieee80211_sta_is_connected + 0x4011d25c 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x4011d260 ieee80211_sta_is_connected + .text.esp_wifi_get_hostap_private_internal + 0x4011d274 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x16 (size before relaxing) + 0x4011d274 esp_wifi_get_hostap_private_internal + *fill* 0x4011d286 0x2 + .text.esp_wifi_deauthenticate_internal + 0x4011d288 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x36 (size before relaxing) + 0x4011d288 esp_wifi_deauthenticate_internal + *fill* 0x4011d2b3 0x1 + .text.esp_wifi_get_spp_attrubute_internal + 0x4011d2b4 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x28 (size before relaxing) + 0x4011d2b4 esp_wifi_get_spp_attrubute_internal + .text.esp_wifi_get_user_init_flag_internal + 0x4011d2d8 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1d (size before relaxing) + 0x4011d2d8 esp_wifi_get_user_init_flag_internal + *fill* 0x4011d2f1 0x3 + .text.wifi_set_rx_policy + 0x4011d2f4 0x178 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1fb (size before relaxing) + 0x4011d2f8 wifi_set_rx_policy + *fill* 0x4011d46c 0x0 + .text.esp_wifi_register_eapol_txdonecb_internal + 0x4011d46c 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4011d46c esp_wifi_register_eapol_txdonecb_internal + .text.esp_wifi_get_macaddr_internal + 0x4011d478 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1f (size before relaxing) + 0x4011d478 esp_wifi_get_macaddr_internal + *fill* 0x4011d493 0x1 + .text.esp_wifi_ap_deauth_internal + 0x4011d494 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x6c (size before relaxing) + 0x4011d498 esp_wifi_ap_deauth_internal + .text.wifi_init_key + 0x4011d4ec 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x34 (size before relaxing) + 0x4011d4f0 wifi_init_key + .text.esp_wifi_set_ap_key_internal + 0x4011d518 0x15c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1b4 (size before relaxing) + 0x4011d524 esp_wifi_set_ap_key_internal + .text.ppInstallKey + 0x4011d674 0x12e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x176 (size before relaxing) + 0x4011d678 ppInstallKey + *fill* 0x4011d7a2 0x2 + .text.esp_wifi_set_sta_key_internal + 0x4011d7a4 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x68 (size before relaxing) + 0x4011d7a4 esp_wifi_set_sta_key_internal + .text.esp_wifi_get_sta_key_internal + 0x4011d804 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x50 (size before relaxing) + 0x4011d804 esp_wifi_get_sta_key_internal + .text.esp_wifi_set_appie_internal + 0x4011d84c 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x6a (size before relaxing) + 0x4011d850 esp_wifi_set_appie_internal + *fill* 0x4011d8a2 0x2 + .text.esp_wifi_unset_appie_internal + 0x4011d8a4 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1a (size before relaxing) + 0x4011d8a4 esp_wifi_unset_appie_internal + *fill* 0x4011d8ba 0x2 + .text.esp_wifi_get_wps_status_internal + 0x4011d8bc 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x10 (size before relaxing) + 0x4011d8bc esp_wifi_get_wps_status_internal + .text.esp_wifi_sta_pmf_enabled + 0x4011d8c8 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4011d8c8 esp_wifi_sta_pmf_enabled + *fill* 0x4011d8d6 0x2 + .text.esp_wifi_sta_get_mgmt_group_cipher + 0x4011d8d8 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2a (size before relaxing) + 0x4011d8dc esp_wifi_sta_get_mgmt_group_cipher + *fill* 0x4011d8fe 0x2 + .text.esp_wifi_set_igtk_internal + 0x4011d900 0xd0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0xd8 (size before relaxing) + 0x4011d914 esp_wifi_set_igtk_internal + .text.ieee80211w_get_active_igtk_key_id + 0x4011d9d0 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x26 (size before relaxing) + 0x4011d9d0 ieee80211w_get_active_igtk_key_id + *fill* 0x4011d9ea 0x2 + .text.ieee80211w_get_igtk_from_keyidx + 0x4011d9ec 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x44 (size before relaxing) + 0x4011d9f4 ieee80211w_get_igtk_from_keyidx + .text.esp_wifi_skip_supp_pmkcaching + 0x4011da28 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4011da28 esp_wifi_skip_supp_pmkcaching + *fill* 0x4011da36 0x2 + .text.esp_wifi_register_mgmt_frame_internal + 0x4011da38 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x64 (size before relaxing) + 0x4011da3c esp_wifi_register_mgmt_frame_internal + .text.esp_wifi_send_mgmt_frm_internal + 0x4011da84 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x8e (size before relaxing) + 0x4011da88 esp_wifi_send_mgmt_frm_internal + *fill* 0x4011daf2 0x2 + .text.esp_wifi_sta_connect_internal + 0x4011daf4 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x42 (size before relaxing) + 0x4011daf8 esp_wifi_sta_connect_internal + *fill* 0x4011db26 0x2 + .text.ieee80211_nan_ndp_resp_timeout + 0x4011db28 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011db37 0x1 + .text.ieee80211_nan_ndc_start + 0x4011db38 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011db47 0x1 + .text.ieee80211_nan_faw_end + 0x4011db48 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011db57 0x1 + .text.ieee80211_nan_faw_start + 0x4011db58 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011db67 0x1 + .text.ieee80211_nan_send_action + 0x4011db68 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011db77 0x1 + .text.ieee80211_nan_send_sync_bcn + 0x4011db78 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011db87 0x1 + .text.ieee80211_nan_send_disc_bcn + 0x4011db88 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011db97 0x1 + .text.ieee80211_nan_dw_end + 0x4011db98 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011dba7 0x1 + .text.ieee80211_nan_dw_start + 0x4011dba8 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011dbb7 0x1 + .text.ieee80211_nan_scan_timeout + 0x4011dbb8 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011dbc7 0x1 + .text.ieee80211_nan_warmup_timeout + 0x4011dbc8 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011dbd7 0x1 + .text.ieee80211_ampdu_age_handle + 0x4011dbd8 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011dbe7 0x1 + .text.ieee80211_addba + 0x4011dbe8 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4011dbf7 0x1 + .text.ieee80211_ap_try_sa_query + 0x4011dbf8 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + 0x4011dc00 ieee80211_ap_try_sa_query + *fill* 0x4011dc2a 0x2 + .text.ieee80211_ap_sa_query_timeout + 0x4011dc2c 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + 0x4011dc34 ieee80211_ap_sa_query_timeout + *fill* 0x4011dc5e 0x2 + .text.ieee80211_sta_retry_assoc + 0x4011dc60 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4011dc8f 0x1 + .text.ieee80211_sta_sa_query_timeout + 0x4011dc90 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4011dcbf 0x1 + .text.ieee80211_sta_try_sa_query + 0x4011dcc0 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x4011dcee 0x2 + .text.ieee80211_assoc + 0x4011dcf0 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4011dd1f 0x1 + .text.ieee80211_auth + 0x4011dd20 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4011dd4f 0x1 + .text.ieee80211_chm_dwell + 0x4011dd50 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x4011dd82 0x2 + .text.ieee80211_handshake + 0x4011dd84 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4011ddb3 0x1 + .text.ieee80211_beacon + 0x4011ddb4 0x3f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x52 (size before relaxing) + *fill* 0x4011ddf3 0x1 + .text.ieee80211_probe_send + 0x4011ddf4 0x3f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x52 (size before relaxing) + *fill* 0x4011de33 0x1 + .text.ieee80211_csa + 0x4011de34 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x4e (size before relaxing) + *fill* 0x4011de6f 0x1 + .text.ieee80211_scan_enter_op_chan + 0x4011de70 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x4011dea2 0x2 + .text.ieee80211_scan_inter_chan + 0x4011dea4 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x4011ded6 0x2 + .text.ieee80211_timer_connect + 0x4011ded8 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4011df07 0x1 + .text.ieee80211_hostap_handle + 0x4011df08 0x32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x4011df3a 0x2 + .text.ieee80211_send_beacon + 0x4011df3c 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x44 (size before relaxing) + .text.ieee80211_register_hostap_timer + 0x4011df70 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x4011df7c ieee80211_register_hostap_timer + .text.ieee80211_timer_do_process + 0x4011dfac 0x92 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0xa6 (size before relaxing) + 0x4011dfb4 ieee80211_timer_do_process + *fill* 0x4011e03e 0x2 + .text.ieee80211_timer_process + 0x4011e040 0xb0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0xf8 (size before relaxing) + 0x4011e050 ieee80211_timer_process + .text.chm_end_op_timeout + 0x4011e0f0 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x16 (size before relaxing) + *fill* 0x4011e0fe 0x2 + .text.chm_phy_change_channel$constprop$2 + 0x4011e100 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x57 (size before relaxing) + *fill* 0x4011e13b 0x1 + .text.chm_mhz2num + 0x4011e13c 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x68 (size before relaxing) + 0x4011e150 chm_mhz2num + .text.chm_deinit + 0x4011e1a0 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x4011e1a0 chm_deinit + *fill* 0x4011e1c6 0x2 + .text.chm_release_lock + 0x4011e1c8 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x20 (size before relaxing) + 0x4011e1c8 chm_release_lock + .text.chm_end_op + 0x4011e1e4 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x36 (size before relaxing) + 0x4011e1e4 chm_end_op + *fill* 0x4011e212 0x2 + .text.chm_end_op_timeout_process + 0x4011e214 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x4011e214 chm_end_op_timeout_process + *fill* 0x4011e233 0x1 + .text.chm_cancel_op + 0x4011e234 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x50 (size before relaxing) + 0x4011e234 chm_cancel_op + .text.chm_acquire_lock + 0x4011e274 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x41 (size before relaxing) + 0x4011e274 chm_acquire_lock + *fill* 0x4011e2a9 0x3 + .text.chm_get_current_channel + 0x4011e2ac 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x4011e2ac chm_get_current_channel + *fill* 0x4011e2b9 0x3 + .text.chm_get_home_channel + 0x4011e2bc 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x4011e2bc chm_get_home_channel + *fill* 0x4011e2c9 0x3 + .text.chm_set_home_channel + 0x4011e2cc 0xad C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0xd1 (size before relaxing) + 0x4011e2d4 chm_set_home_channel + *fill* 0x4011e379 0x3 + .text.chm_get_chan_info + 0x4011e37c 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x26 (size before relaxing) + 0x4011e37c chm_get_chan_info + *fill* 0x4011e39e 0x2 + .text.chm_set_current_channel + 0x4011e3a0 0xfb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x12f (size before relaxing) + 0x4011e3b4 chm_set_current_channel + *fill* 0x4011e49b 0x1 + .text.chm_init + 0x4011e49c 0xdb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0xfb (size before relaxing) + 0x4011e4a4 chm_init + *fill* 0x4011e577 0x1 + .text.chm_change_channel + 0x4011e578 0xe3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x113 (size before relaxing) + *fill* 0x4011e65b 0x1 + .text.chm_start_op + 0x4011e65c 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x46 (size before relaxing) + 0x4011e65c chm_start_op + *fill* 0x4011e69a 0x2 + .text.chm_return_home_channel + 0x4011e69c 0x49 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x59 (size before relaxing) + 0x4011e6a0 chm_return_home_channel + *fill* 0x4011e6e5 0x3 + .text.cnx_sta_connect_led_timer_cb + 0x4011e6e8 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x23 (size before relaxing) + 0x4011e6e8 cnx_sta_connect_led_timer_cb + *fill* 0x4011e707 0x1 + .text.cnx_cal_rc_util + 0x4011e708 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x5e (size before relaxing) + *fill* 0x4011e762 0x2 + .text.cnx_get_next_rc + 0x4011e764 0x3a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x46 (size before relaxing) + *fill* 0x4011e79e 0x2 + .text.cnx_traverse_rc_lis_done + 0x4011e7a0 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x43 (size before relaxing) + *fill* 0x4011e7d3 0x1 + .text.cnx_connect_timeout + 0x4011e7d4 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x4011e7d4 cnx_connect_timeout + *fill* 0x4011e7e2 0x2 + .text.cnx_handshake_timeout + 0x4011e7e4 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x4011e7e4 cnx_handshake_timeout + *fill* 0x4011e7f2 0x2 + .text.cnx_csa_fn + 0x4011e7f4 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x18 (size before relaxing) + 0x4011e7f4 cnx_csa_fn + .text.mgd_probe_send_timeout + 0x4011e804 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x4011e812 0x2 + .text.cnx_beacon_timeout + 0x4011e814 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x4011e822 0x2 + .text.cnx_connect_op + 0x4011e824 0x21e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x286 (size before relaxing) + *fill* 0x4011ea42 0x2 + .text.cnx_probe_rc + 0x4011ea44 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x77 (size before relaxing) + *fill* 0x4011ea9f 0x1 + .text.cnx_connect_to_bss + 0x4011eaa0 0x3ae C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x44e (size before relaxing) + *fill* 0x4011ee4e 0x2 + .text.ieee80211_cnx_attach + 0x4011ee50 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x52 (size before relaxing) + 0x4011ee58 ieee80211_cnx_attach + *fill* 0x4011ee8e 0x2 + .text._cnx_start_connect_without_scan + 0x4011ee90 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x78 (size before relaxing) + 0x4011ee94 _cnx_start_connect_without_scan + .text.cnx_can_do_obss_scan + 0x4011eef0 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x72 (size before relaxing) + 0x4011ef00 cnx_can_do_obss_scan + *fill* 0x4011ef56 0x2 + .text.cnx_obss_scan + 0x4011ef58 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xb6 (size before relaxing) + 0x4011ef68 cnx_obss_scan + *fill* 0x4011efce 0x2 + .text.cnx_obss_scan_timeout + 0x4011efd0 0x5d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x75 (size before relaxing) + 0x4011efe0 cnx_obss_scan_timeout + *fill* 0x4011f02d 0x3 + .text.cnx_auth_timeout + 0x4011f030 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x4011f030 cnx_auth_timeout + *fill* 0x4011f03e 0x2 + .text.cnx_assoc_timeout + 0x4011f040 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x4011f040 cnx_assoc_timeout + *fill* 0x4011f04e 0x2 + .text.wl_is_ap_no_lr + 0x4011f050 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x4011f054 wl_is_ap_no_lr + *fill* 0x4011f05f 0x1 + .text.wl_clear_ap_no_lr + 0x4011f060 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x17 (size before relaxing) + 0x4011f060 wl_clear_ap_no_lr + *fill* 0x4011f073 0x1 + .text.cnx_csa_fn_process + 0x4011f074 0xe4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x128 (size before relaxing) + 0x4011f084 cnx_csa_fn_process + .text.cnx_validate_owe_bss + 0x4011f158 0x107 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x14b (size before relaxing) + 0x4011f158 cnx_validate_owe_bss + *fill* 0x4011f25f 0x1 + .text.cnx_bss_init + 0x4011f260 0xbe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xd2 (size before relaxing) + 0x4011f26c cnx_bss_init + *fill* 0x4011f31e 0x2 + .text.cnx_check_bssid_in_blacklist + 0x4011f320 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x34 (size before relaxing) + 0x4011f320 cnx_check_bssid_in_blacklist + .text.cnx_remove_from_blacklist + 0x4011f34c 0x8d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x9d (size before relaxing) + 0x4011f350 cnx_remove_from_blacklist + *fill* 0x4011f3d9 0x3 + .text.cnx_add_to_blacklist + 0x4011f3dc 0xb8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xdc (size before relaxing) + 0x4011f3e8 cnx_add_to_blacklist + .text.cnx_clear_blacklist + 0x4011f494 0x63 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x77 (size before relaxing) + 0x4011f498 cnx_clear_blacklist + *fill* 0x4011f4f7 0x1 + .text.cnx_choose_rc + 0x4011f4f8 0x1e2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x246 (size before relaxing) + *fill* 0x4011f6da 0x2 + .text.cnx_rc_search + 0x4011f6dc 0x39 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x45 (size before relaxing) + 0x4011f6dc cnx_rc_search + *fill* 0x4011f715 0x3 + .text.cnx_do_handoff_internal + 0x4011f718 0xa4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xc0 (size before relaxing) + 0x4011f720 cnx_do_handoff_internal + .text.cnx_add_rc + 0x4011f7bc 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x92 (size before relaxing) + 0x4011f7c0 cnx_add_rc + *fill* 0x4011f84a 0x2 + .text.cnx_remove_all_rc + 0x4011f84c 0x71 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x81 (size before relaxing) + 0x4011f850 cnx_remove_all_rc + *fill* 0x4011f8bd 0x3 + .text.cnx_do_handoff + 0x4011f8c0 0x2f0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3b0 (size before relaxing) + .text.cnx_connect_next_ap + 0x4011fbb0 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x54 (size before relaxing) + 0x4011fbb4 cnx_connect_next_ap + .text.cnx_start_handoff_cb + 0x4011fbec 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x86 (size before relaxing) + 0x4011fbf4 cnx_start_handoff_cb + *fill* 0x4011fc46 0x2 + .text.cnx_remove_rc + 0x4011fc48 0xc7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xdf (size before relaxing) + 0x4011fc50 cnx_remove_rc + *fill* 0x4011fd0f 0x1 + .text.cnx_sta_connect_cmd + 0x4011fd10 0x23c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x308 (size before relaxing) + 0x4011fd2c cnx_sta_connect_cmd + .text.cnx_connect_timeout_process + 0x4011ff4c 0x80 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xa7 (size before relaxing) + 0x4011ff54 cnx_connect_timeout_process + *fill* 0x4011ffcc 0x0 + .text.cnx_auth_timeout_process + 0x4011ffcc 0x39 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x61 (size before relaxing) + 0x4011ffd4 cnx_auth_timeout_process + *fill* 0x40120005 0x3 + .text.cnx_assoc_timeout_process + 0x40120008 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x4c (size before relaxing) + 0x40120010 cnx_assoc_timeout_process + .text.cnx_handshake_timeout_process + 0x40120034 0x4e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x76 (size before relaxing) + 0x4012003c cnx_handshake_timeout_process + *fill* 0x40120082 0x2 + .text.cnx_bss_alloc + 0x40120084 0x2bb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x322 (size before relaxing) + 0x401200a0 cnx_bss_alloc + *fill* 0x4012033f 0x1 + .text.cnx_remove_rc_except + 0x40120340 0x8c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xa0 (size before relaxing) + 0x40120344 cnx_remove_rc_except + .text.cnx_rc_update_rssi + 0x401203cc 0x71 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x75 (size before relaxing) + 0x401203cc cnx_rc_update_rssi + *fill* 0x4012043d 0x3 + .text.cnx_rc_update_state_metric + 0x40120440 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x5e (size before relaxing) + 0x40120440 cnx_rc_update_state_metric + *fill* 0x40120496 0x2 + .text.cnx_probe_rc_tx_cb + 0x40120498 0x55 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x7c (size before relaxing) + *fill* 0x401204ed 0x3 + .text.cnx_update_bss + 0x401204f0 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x2a (size before relaxing) + 0x401204f0 cnx_update_bss + *fill* 0x4012050e 0x2 + .text.send_ap_probe + 0x40120510 0x96 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xc2 (size before relaxing) + 0x40120510 send_ap_probe + *fill* 0x401205a6 0x2 + .text.mgd_probe_send_timeout_process + 0x401205a8 0x134 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x178 (size before relaxing) + 0x401205c0 mgd_probe_send_timeout_process + .text.cnx_node_alloc + 0x401206dc 0xca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xe6 (size before relaxing) + 0x401206dc cnx_node_alloc + *fill* 0x401207a6 0x2 + .text.cnx_node_remove + 0x401207a8 0xbf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xe3 (size before relaxing) + 0x401207a8 cnx_node_remove + *fill* 0x40120867 0x1 + .text.cnx_sta_pm + 0x40120868 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3a (size before relaxing) + 0x40120868 cnx_sta_pm + *fill* 0x40120897 0x1 + .text.cnx_update_bss_more + 0x40120898 0x383 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x417 (size before relaxing) + 0x4012089c cnx_update_bss_more + *fill* 0x40120c1b 0x1 + .text.cnx_beacon_timeout_process + 0x40120c1c 0x98 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xd4 (size before relaxing) + 0x40120c24 cnx_beacon_timeout_process + .text.ic_set_sta + 0x40120cb4 0xca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xe6 (size before relaxing) + 0x40120cb8 ic_set_sta + *fill* 0x40120d7e 0x2 + .text.cnx_sta_leave + 0x40120d80 0x28a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x326 (size before relaxing) + 0x40120d8c cnx_sta_leave + *fill* 0x4012100a 0x2 + .text.cnx_sta_associated + 0x4012100c 0x16e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x1a2 (size before relaxing) + 0x4012102c cnx_sta_associated + *fill* 0x4012117a 0x2 + .text.cnx_node_leave + 0x4012117c 0x1d0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x22a (size before relaxing) + 0x4012118c cnx_node_leave + *fill* 0x4012134c 0x0 + .text.cnx_node_join + 0x4012134c 0x30a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x38e (size before relaxing) + 0x4012137c cnx_node_join + *fill* 0x40121656 0x2 + .text.cnx_start_obss_scan + 0x40121658 0xd8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xf8 (size before relaxing) + 0x40121668 cnx_start_obss_scan + .text.cnx_obss_scan_done_cb + 0x40121730 0x12d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16d (size before relaxing) + 0x40121744 cnx_obss_scan_done_cb + *fill* 0x4012185d 0x3 + .text.cnx_auth_done + 0x40121860 0x2c6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x37e (size before relaxing) + 0x40121890 cnx_auth_done + *fill* 0x40121b26 0x2 + .text.offchan_in_progress + 0x40121b28 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x40121b2c offchan_in_progress + *fill* 0x40121b37 0x1 + .text.offchan_recv_action + 0x40121b38 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x20 (size before relaxing) + 0x40121b38 offchan_recv_action + .text.offchan_send_action_tx_status + 0x40121b54 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x3f (size before relaxing) + 0x40121b54 offchan_send_action_tx_status + *fill* 0x40121b8b 0x1 + .text.ieee80211_send_action_register + 0x40121b8c 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x40121b9c ieee80211_send_action_register + *fill* 0x40121bfb 0x1 + .text.ieee80211_send_action + 0x40121bfc 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x82 (size before relaxing) + 0x40121c00 ieee80211_send_action + *fill* 0x40121c6e 0x2 + .text.ieee80211_recv_action_register + 0x40121c70 0x83 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x40121c84 ieee80211_recv_action_register + *fill* 0x40121cf3 0x1 + .text.ieee80211_recv_action + 0x40121cf4 0xa7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0xc7 (size before relaxing) + 0x40121d00 ieee80211_recv_action + *fill* 0x40121d9b 0x1 + .text.get_iav_key + 0x40121d9c 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x40121da0 get_iav_key + .text.ieee80211_recv_action_vendor_spec + 0x40121db8 0xf2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x102 (size before relaxing) + 0x40121dc0 ieee80211_recv_action_vendor_spec + *fill* 0x40121eaa 0x2 + .text.ieee80211_action_vendor_spec_attach + 0x40121eac 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x38 (size before relaxing) + 0x40121eb0 ieee80211_action_vendor_spec_attach + .text.ccmp_encap + 0x40121edc 0x83 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x87 (size before relaxing) + 0x40121edc ccmp_encap + *fill* 0x40121f5f 0x1 + .text.ccmp_decap + 0x40121f60 0x94 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x9b (size before relaxing) + 0x40121f60 ccmp_decap + *fill* 0x40121ff4 0x0 + .text.ieee80211_decrypt_espnow_pkt + 0x40121ff4 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x84 (size before relaxing) + 0x40121ff4 ieee80211_decrypt_espnow_pkt + .text.ieee80211_ccmp_decrypt + 0x40122064 0x1d1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x1e9 (size before relaxing) + 0x40122070 ieee80211_ccmp_decrypt + *fill* 0x40122235 0x3 + .text.ieee80211_ccmp_encrypt + 0x40122238 0xea C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x102 (size before relaxing) + 0x4012223c ieee80211_ccmp_encrypt + *fill* 0x40122322 0x2 + .text.sms4_decap + 0x40122324 0x86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + 0x8e (size before relaxing) + *fill* 0x401223aa 0x2 + .text.sms4_encap + 0x401223ac 0xca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + 0xd2 (size before relaxing) + *fill* 0x40122476 0x2 + .text.tkip_decap + 0x40122478 0x9f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0xa7 (size before relaxing) + 0x40122478 tkip_decap + *fill* 0x40122517 0x1 + .text.tkip_encap + 0x40122518 0x9d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0xa5 (size before relaxing) + 0x4012251c tkip_encap + *fill* 0x401225b5 0x3 + .text.wep_encap + 0x401225b8 0x65 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x69 (size before relaxing) + 0x401225b8 wep_encap + *fill* 0x4012261d 0x3 + .text.ieee80211_getmgtframe + 0x40122620 0x3f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x47 (size before relaxing) + 0x40122620 ieee80211_getmgtframe + *fill* 0x4012265f 0x1 + .text.ieee80211_getbcnframe + 0x40122660 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x8e (size before relaxing) + 0x40122668 ieee80211_getbcnframe + *fill* 0x401226ce 0x2 + .text.esf_buf_alloc_dynamic_default_handler + 0x401226d0 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x21 (size before relaxing) + 0x401226d4 esf_buf_alloc_dynamic_default_handler + *fill* 0x401226ed 0x3 + .text.esf_buf_alloc_default_handler + 0x401226f0 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x21 (size before relaxing) + 0x401226f4 esf_buf_alloc_default_handler + *fill* 0x4012270d 0x3 + .text.esf_buf_recycle_default_handler + 0x40122710 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x22 (size before relaxing) + 0x40122714 esf_buf_recycle_default_handler + *fill* 0x4012272e 0x2 + .text.esf_buf_setup_static + 0x40122730 0x52 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x62 (size before relaxing) + 0x4012273c esf_buf_setup_static + *fill* 0x40122782 0x2 + .text.esf_buf_free_static + 0x40122784 0x96 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0xaa (size before relaxing) + 0x40122784 esf_buf_free_static + *fill* 0x4012281a 0x2 + .text.esf_buf_setdown + 0x4012281c 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x19 (size before relaxing) + 0x4012281c esf_buf_setdown + *fill* 0x40122831 0x3 + .text.esf_buf_setup + 0x40122834 0x1eb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x27f (size before relaxing) + 0x40122858 esf_buf_setup + *fill* 0x40122a1f 0x1 + .text.ic_get_addr + 0x40122a20 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x40122a24 ic_get_addr + *fill* 0x40122a35 0x3 + .text.ic_get_ptk_alg + 0x40122a38 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x40122a38 ic_get_ptk_alg + .text.ic_disable_crypto + 0x40122a4c 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x30 (size before relaxing) + 0x40122a4c ic_disable_crypto + .text.ic_set_key + 0x40122a74 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x9e (size before relaxing) + 0x40122a74 ic_set_key + *fill* 0x40122b02 0x2 + .text.ic_get_key + 0x40122b04 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x5c (size before relaxing) + 0x40122b04 ic_get_key + .text.ic_obtain_key + 0x40122b54 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x7f (size before relaxing) + 0x40122b54 ic_obtain_key + *fill* 0x40122bc3 0x1 + .text.ic_tx_pkt + 0x40122bc4 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x15 (size before relaxing) + 0x40122bc4 ic_tx_pkt + *fill* 0x40122bd5 0x3 + .text.ic_ebuf_alloc + 0x40122bd8 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x40122bdc ic_ebuf_alloc + .text.ic_ebuf_recycle_tx + 0x40122bf0 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40122bf0 ic_ebuf_recycle_tx + *fill* 0x40122bfe 0x2 + .text.ic_ebuf_recycle_rx + 0x40122c00 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40122c00 ic_ebuf_recycle_rx + *fill* 0x40122c0a 0x2 + .text.esp_wifi_internal_free_rx_buffer + 0x40122c0c 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40122c0c esp_wifi_internal_free_rx_buffer + *fill* 0x40122c16 0x2 + .text.ic_register_tx_cb + 0x40122c18 0x15 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x19 (size before relaxing) + 0x40122c18 ic_register_tx_cb + *fill* 0x40122c2d 0x3 + .text.ic_register_rx_cb + 0x40122c30 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x16 (size before relaxing) + 0x40122c30 ic_register_rx_cb + *fill* 0x40122c42 0x2 + .text.ic_register_timer_post_cb + 0x40122c44 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40122c44 ic_register_timer_post_cb + .text.ic_register_michael_mic_failure_cb + 0x40122c50 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40122c50 ic_register_michael_mic_failure_cb + .text.ic_register_config_cb + 0x40122c5c 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x40122c5c ic_register_config_cb + .text.ic_is_mgmt_hwdecr_enabled + 0x40122c70 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40122c70 ic_is_mgmt_hwdecr_enabled + *fill* 0x40122c7d 0x3 + .text.ic_register_pm_tx_null_cb + 0x40122c80 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x40122c80 ic_register_pm_tx_null_cb + .text.ic_register_net80211_tx_cb + 0x40122c94 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x40122c94 ic_register_net80211_tx_cb + .text.ic_register_timer_cb + 0x40122ca8 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x40122ca8 ic_register_timer_cb + .text.ic_enable_sniffer + 0x40122cbc 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40122cbc ic_enable_sniffer + *fill* 0x40122cc6 0x2 + .text.ic_disable_sniffer + 0x40122cc8 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40122cc8 ic_disable_sniffer + *fill* 0x40122cd2 0x2 + .text.ic_set_vif + 0x40122cd4 0x1bf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x22b (size before relaxing) + 0x40122cf8 ic_set_vif + *fill* 0x40122e93 0x1 + .text.ic_get_next_tbtt + 0x40122e94 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40122e94 ic_get_next_tbtt + *fill* 0x40122e9e 0x2 + .text.ic_del_rx_ba + 0x40122ea0 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40122ea0 ic_del_rx_ba + *fill* 0x40122eab 0x1 + .text.ic_reset_rx_ba + 0x40122eac 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1b (size before relaxing) + 0x40122eac ic_reset_rx_ba + *fill* 0x40122ec0 0x0 + .text.ic_add_rx_ba + 0x40122ec0 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x20 (size before relaxing) + 0x40122ec0 ic_add_rx_ba + *fill* 0x40122ed9 0x3 + .text.ic_reset_tbtt + 0x40122edc 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0xf (size before relaxing) + 0x40122edc ic_reset_tbtt + *fill* 0x40122ee4 0x0 + .text.ic_del_key_all + 0x40122ee4 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40122ee4 ic_del_key_all + *fill* 0x40122ef1 0x3 + .text.ic_del_key + 0x40122ef4 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x28 (size before relaxing) + 0x40122ef4 ic_del_key + .text.ic_set_ac_param + 0x40122f14 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1e (size before relaxing) + 0x40122f14 ic_set_ac_param + *fill* 0x40122f2b 0x1 + .text.ic_ampdu_op + 0x40122f2c 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2c (size before relaxing) + 0x40122f2c ic_ampdu_op + *fill* 0x40122f49 0x3 + .text.ic_set_trc + 0x40122f4c 0xac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0xd0 (size before relaxing) + 0x40122f50 ic_set_trc + .text.ic_deinit + 0x40122ff8 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2f (size before relaxing) + 0x40122ff8 ic_deinit + *fill* 0x4012300b 0x1 + .text.ic_init 0x4012300c 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x9a (size before relaxing) + 0x40123014 ic_init + *fill* 0x40123067 0x1 + .text.ic_set_interrupt_handler + 0x40123068 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x4a (size before relaxing) + 0x4012306c ic_set_interrupt_handler + *fill* 0x4012309e 0x2 + .text.ic_clear_interrupt_handler + 0x401230a0 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x38 (size before relaxing) + 0x401230a0 ic_clear_interrupt_handler + .text.ic_enable_rx + 0x401230cc 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x23 (size before relaxing) + 0x401230cc ic_enable_rx + *fill* 0x401230e7 0x1 + .text.ic_disable_rx + 0x401230e8 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x23 (size before relaxing) + 0x401230e8 ic_disable_rx + *fill* 0x40123103 0x1 + .text.ic_set_beacon_int + 0x40123104 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40123104 ic_set_beacon_int + *fill* 0x4012310e 0x2 + .text.ic_set_mac + 0x40123110 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40123110 ic_set_mac + *fill* 0x4012311d 0x3 + .text.ic_set_bssid + 0x40123120 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40123120 ic_set_bssid + *fill* 0x4012312d 0x3 + .text.ic_set_current_channel + 0x40123130 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x40123130 ic_set_current_channel + *fill* 0x4012313c 0x0 + .text.ic_get_trc + 0x4012313c 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x17 (size before relaxing) + 0x4012313c ic_get_trc + *fill* 0x4012314c 0x0 + .text.ic_get_pp_hdl + 0x4012314c 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x4012314c ic_get_pp_hdl + *fill* 0x40123156 0x2 + .text.ic_set_rx_policy_ubssid_check + 0x40123158 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1c (size before relaxing) + 0x40123158 ic_set_rx_policy_ubssid_check + .text.ic_set_rx_policy + 0x40123170 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1d (size before relaxing) + 0x40123170 ic_set_rx_policy + *fill* 0x40123186 0x2 + .text.ic_set_sta_auth_flag + 0x40123188 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40123188 ic_set_sta_auth_flag + *fill* 0x40123193 0x1 + .text.ic_set_interface + 0x40123194 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40123194 ic_set_interface + *fill* 0x401231a1 0x3 + .text.ic_trc_set_per_pkt_rate + 0x401231a4 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x401231a4 ic_trc_set_per_pkt_rate + *fill* 0x401231b3 0x1 + .text.ic_trc_update_ifx_phy_mode + 0x401231b4 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x401231b4 ic_trc_update_ifx_phy_mode + *fill* 0x401231c3 0x1 + .text.ic_stop_hw_txq + 0x401231c4 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x401231c4 ic_stop_hw_txq + *fill* 0x401231ce 0x2 + .text.ic_stop_sw_txq + 0x401231d0 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2a (size before relaxing) + 0x401231d4 ic_stop_sw_txq + *fill* 0x401231ea 0x2 + .text.ic_txq_empty + 0x401231ec 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x401231ec ic_txq_empty + *fill* 0x401231f6 0x2 + .text.ic_create_wifi_task + 0x401231f8 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x401231f8 ic_create_wifi_task + *fill* 0x40123202 0x2 + .text.ic_delete_wifi_task + 0x40123204 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40123204 ic_delete_wifi_task + *fill* 0x4012320e 0x2 + .text.lmacIsIdle + 0x40123210 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x40123214 lmacIsIdle + *fill* 0x4012322f 0x1 + .text.lmacGetTxFrame + 0x40123230 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1e (size before relaxing) + 0x40123230 lmacGetTxFrame + *fill* 0x4012324a 0x2 + .text.lmacIsLongFrame + 0x4012324c 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x40123250 lmacIsLongFrame + *fill* 0x4012326d 0x3 + .text.lmacSetAcParam + 0x40123270 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x51 (size before relaxing) + 0x40123270 lmacSetAcParam + *fill* 0x401232bd 0x3 + .text.lmacInitAc + 0x401232c0 0x3d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x41 (size before relaxing) + 0x401232c0 lmacInitAc + *fill* 0x401232fd 0x3 + .text.lmacInit + 0x40123300 0xa0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xdc (size before relaxing) + 0x40123308 lmacInit + .text.lmacEndRetryAMPDUFail + 0x401233a0 0x73 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x8f (size before relaxing) + 0x401233a4 lmacEndRetryAMPDUFail + *fill* 0x40123413 0x1 + .text.lmacDiscardMSDU + 0x40123414 0xd3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xdb (size before relaxing) + 0x40123420 lmacDiscardMSDU + *fill* 0x401234e7 0x1 + .text.lmacRetryTxFrame + 0x401234e8 0xb8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xc8 (size before relaxing) + 0x401234f8 lmacRetryTxFrame + .text.lmacProcessShortRetryFail + 0x401235a0 0x21b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x256 (size before relaxing) + 0x401235c4 lmacProcessShortRetryFail + *fill* 0x401237bb 0x1 + .text.lmacProcessCtsTimeout + 0x401237bc 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x78 (size before relaxing) + 0x401237c4 lmacProcessCtsTimeout + .text.lmacProcessLongRetryFail + 0x4012381c 0x18f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1bf (size before relaxing) + 0x4012382c lmacProcessLongRetryFail + *fill* 0x401239ab 0x1 + .text.lmacProcessCollision + 0x401239ac 0xc4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xec (size before relaxing) + 0x401239bc lmacProcessCollision + .text.lmacProcessCollisions_task + 0x40123a70 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x60 (size before relaxing) + 0x40123a70 lmacProcessCollisions_task + .text.lmacProcessAckTimeout + 0x40123ab4 0xc4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xec (size before relaxing) + 0x40123ac4 lmacProcessAckTimeout + .text.lmacProcessTxRtsError + 0x40123b78 0xb9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xe1 (size before relaxing) + 0x40123b88 lmacProcessTxRtsError + *fill* 0x40123c31 0x3 + .text.lmacProcessTxseckiderr + 0x40123c34 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x16 (size before relaxing) + 0x40123c34 lmacProcessTxseckiderr + *fill* 0x40123c46 0x2 + .text.lmacProcessTxError + 0x40123c48 0x9c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xc4 (size before relaxing) + 0x40123c50 lmacProcessTxError + .text.lmacRxDone + 0x40123ce4 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x20 (size before relaxing) + 0x40123ce8 lmacRxDone + .text.lmacDisableTransmit + 0x40123d00 0x69 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x9d (size before relaxing) + 0x40123d04 lmacDisableTransmit + *fill* 0x40123d69 0x3 + .text.lmacProcessTxTimeout + 0x40123d6c 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x52 (size before relaxing) + 0x40123d6c lmacProcessTxTimeout + *fill* 0x40123daa 0x2 + .text.lmacStopTransmit + 0x40123dac 0xc6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x106 (size before relaxing) + 0x40123db0 lmacStopTransmit + *fill* 0x40123e72 0x2 + .text.lmac_stop_hw_txq + 0x40123e74 0x44 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x5c (size before relaxing) + 0x40123e7c lmac_stop_hw_txq + .text.hal_pm_unblock_txq + 0x40123eb8 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x23 (size before relaxing) + *fill* 0x40123ed7 0x1 + .text.pm_incr_active_cnt + 0x40123ed8 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + *fill* 0x40123ef9 0x3 + .text.pm_incr_coex_active_cnt + 0x40123efc 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x23 (size before relaxing) + *fill* 0x40123f1b 0x1 + .text.pm_disable_active_timer + 0x40123f1c 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x29 (size before relaxing) + *fill* 0x40123f3d 0x3 + .text.pm_beacon_monitor_tbtt_timeout + 0x40123f40 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40123f4f 0x1 + .text.pm_beacon_monitor_timeout + 0x40123f50 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40123f5f 0x1 + .text.pm_connectionless_wake_window_timeout + 0x40123f60 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40123f6f 0x1 + .text.pm_connectionless_wake_interval_timeout + 0x40123f70 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40123f7f 0x1 + .text.pm_disconnected_sleep_delay_timeout + 0x40123f80 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40123f8f 0x1 + .text.pm_coex_slice_wifi_timeout + 0x40123f90 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40123f9f 0x1 + .text.pm_sleep_delay_timeout + 0x40123fa0 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40123faf 0x1 + .text.pm_active_timeout + 0x40123fb0 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40123fbf 0x1 + .text.pm_dream_timeout + 0x40123fc0 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40123fcf 0x1 + .text.pm_tbtt_timeout + 0x40123fd0 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40123fdf 0x1 + .text.pm_is_sleeping + 0x40123fe0 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x26 (size before relaxing) + 0x40123fe0 pm_is_sleeping + *fill* 0x40124002 0x2 + .text.pm_is_open + 0x40124004 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf (size before relaxing) + 0x40124004 pm_is_open + *fill* 0x4012400f 0x1 + .text.pm_allow_tx + 0x40124010 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x70 (size before relaxing) + 0x40124010 pm_allow_tx + .text.pm_noise_check_disable + 0x40124070 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x40124070 pm_noise_check_disable + *fill* 0x40124083 0x1 + .text.pm_noise_check_enable + 0x40124084 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x40124084 pm_noise_check_enable + *fill* 0x40124097 0x1 + .text.pm_enable_sleep_delay_timer + 0x40124098 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x43 (size before relaxing) + 0x4012409c pm_enable_sleep_delay_timer + *fill* 0x401240d3 0x1 + .text.pm_disable_disconnected_sleep_delay_timer + 0x401240d4 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x30 (size before relaxing) + 0x401240d8 pm_disable_disconnected_sleep_delay_timer + .text.pm_enable_disconnected_sleep_delay_timer + 0x401240fc 0x47 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x57 (size before relaxing) + 0x401240fc pm_enable_disconnected_sleep_delay_timer + *fill* 0x40124143 0x1 + .text.pm_noise_check + 0x40124144 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7a (size before relaxing) + 0x40124144 pm_noise_check + *fill* 0x401241a2 0x2 + .text.pm_register_pm_tx_null_cb + 0x401241a4 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x401241a8 pm_register_pm_tx_null_cb + *fill* 0x401241b7 0x1 + .text.pm_send_nullfunc + 0x401241b8 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x55 (size before relaxing) + 0x401241b8 pm_send_nullfunc + *fill* 0x40124205 0x3 + .text.pm_mac_wakeup + 0x40124208 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4012420c pm_mac_wakeup + *fill* 0x40124217 0x1 + .text.pm_mac_sleep + 0x40124218 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4012421c pm_mac_sleep + *fill* 0x40124227 0x1 + .text.pm_disconnected_wake + 0x40124228 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3d (size before relaxing) + 0x4012422c pm_disconnected_wake + *fill* 0x4012425d 0x3 + .text.pm_disconnected_sleep + 0x40124260 0x86 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x9e (size before relaxing) + 0x40124268 pm_disconnected_sleep + *fill* 0x401242e6 0x2 + .text.pm_wake_up + 0x401242e8 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4d (size before relaxing) + 0x401242f0 pm_wake_up + *fill* 0x40124326 0x2 + .text.pm_send_probe_start + 0x40124328 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x44 (size before relaxing) + 0x40124328 pm_send_probe_start + .text.pm_off_channel + 0x4012435c 0xb9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xd9 (size before relaxing) + 0x4012435c pm_off_channel + *fill* 0x40124415 0x3 + .text.pm_wake_done + 0x40124418 0x4f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x5a (size before relaxing) + 0x4012441c pm_wake_done + *fill* 0x40124467 0x1 + .text.pm_coex_separate_connectionless_window + 0x40124468 0x2af C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2bf (size before relaxing) + 0x40124474 pm_coex_separate_connectionless_window + *fill* 0x40124717 0x1 + .text.pm_go_to_sleep + 0x40124718 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7f (size before relaxing) + 0x40124724 pm_go_to_sleep + *fill* 0x4012477c 0x0 + .text.pm_set_next_tbtt + 0x4012477c 0x188 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x19c (size before relaxing) + 0x40124788 pm_set_next_tbtt + .text.pm_mesh_set_next_tbtt + 0x40124904 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7e (size before relaxing) + 0x40124904 pm_mesh_set_next_tbtt + *fill* 0x40124966 0x2 + .text.pm_beacon_timestamp_statistic + 0x40124968 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x39 (size before relaxing) + 0x40124970 pm_beacon_timestamp_statistic + *fill* 0x4012499d 0x3 + .text.pm_is_in_wifi_slice_threshold + 0x401249a0 0x45 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4d (size before relaxing) + 0x401249a0 pm_is_in_wifi_slice_threshold + *fill* 0x401249e5 0x3 + .text.pm_coex_schm_process + 0x401249e8 0x19d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1d5 (size before relaxing) + 0x401249f0 pm_coex_schm_process + *fill* 0x40124b85 0x3 + .text.pm_coex_schm_process_restart + 0x40124b88 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x14 (size before relaxing) + 0x40124b88 pm_coex_schm_process_restart + .text.pm_coex_slice_timeout_process + 0x40124b98 0xc2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf6 (size before relaxing) + 0x40124b9c pm_coex_slice_timeout_process + *fill* 0x40124c5a 0x2 + .text.pm_dream_timeout_process + 0x40124c5c 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x22 (size before relaxing) + 0x40124c5c pm_dream_timeout_process + *fill* 0x40124c72 0x2 + .text.pm_sleep_delay_timeout_process + 0x40124c74 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x40124c74 pm_sleep_delay_timeout_process + *fill* 0x40124c96 0x2 + .text.pm_disconnected_sleep_delay_timeout_process + 0x40124c98 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x40124c98 pm_disconnected_sleep_delay_timeout_process + *fill* 0x40124cb7 0x1 + .text.pm_tx_data_done_process + 0x40124cb8 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x98 (size before relaxing) + 0x40124cc0 pm_tx_data_done_process + .text.pm_tx_null_data_done_process + 0x40124d28 0x198 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1e0 (size before relaxing) + 0x40124d28 pm_tx_null_data_done_process + .text.pm_go_to_wake + 0x40124ec0 0xe8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x128 (size before relaxing) + 0x40124ec0 pm_go_to_wake + .text.pm_send_probe_stop + 0x40124fa8 0x55 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x71 (size before relaxing) + 0x40124fa8 pm_send_probe_stop + *fill* 0x40124ffd 0x3 + .text.pm_on_channel + 0x40125000 0x8a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xb2 (size before relaxing) + 0x40125000 pm_on_channel + *fill* 0x4012508a 0x2 + .text.pm_update_params + 0x4012508c 0x79 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x89 (size before relaxing) + 0x4012508c pm_update_params + *fill* 0x40125105 0x3 + .text.pm_coex_tbtt_process + 0x40125108 0xec C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x120 (size before relaxing) + 0x40125108 pm_coex_tbtt_process + .text.pm_active_timeout_process + 0x401251f4 0x59 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x79 (size before relaxing) + 0x401251f4 pm_active_timeout_process + *fill* 0x4012524d 0x3 + .text.pm_send_sleep_null_cb + 0x40125250 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x40125250 pm_send_sleep_null_cb + *fill* 0x40125262 0x2 + .text.pm_send_wake_null_cb + 0x40125264 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x40125264 pm_send_wake_null_cb + *fill* 0x40125276 0x2 + .text.pm_on_coex_schm_process_restart + 0x40125278 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf (size before relaxing) + 0x40125278 pm_on_coex_schm_process_restart + *fill* 0x40125280 0x0 + .text.pm_on_coex_schm_status_config + 0x40125280 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x72 (size before relaxing) + 0x40125280 pm_on_coex_schm_status_config + *fill* 0x401252e6 0x2 + .text.pm_on_coex_start + 0x401252e8 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x5b (size before relaxing) + 0x401252ec pm_on_coex_start + *fill* 0x40125323 0x1 + .text.pm_on_probe_resp_rx + 0x40125324 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7f (size before relaxing) + 0x4012532c pm_on_probe_resp_rx + *fill* 0x40125393 0x1 + .text.pm_on_data_tx_done + 0x40125394 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x18 (size before relaxing) + 0x40125394 pm_on_data_tx_done + *fill* 0x401253a5 0x3 + .text.pm_disconnected_start + 0x401253a8 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7a (size before relaxing) + 0x401253a8 pm_disconnected_start + *fill* 0x401253fe 0x2 + .text.pm_disconnected_stop + 0x40125400 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x53 (size before relaxing) + 0x40125400 pm_disconnected_stop + *fill* 0x40125437 0x1 + .text.pm_start + 0x40125438 0x1c7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x21a (size before relaxing) + 0x40125444 pm_start + *fill* 0x401255ff 0x1 + .text.pm_stop 0x40125600 0x1ca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x24a (size before relaxing) + 0x40125614 pm_stop + *fill* 0x401257ca 0x2 + .text.pm_attach + 0x401257cc 0x145 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x191 (size before relaxing) + 0x401257fc pm_attach + *fill* 0x40125911 0x3 + .text.pm_deattach + 0x40125914 0x85 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xb1 (size before relaxing) + 0x40125914 pm_deattach + *fill* 0x40125999 0x3 + .text.pm_enable_sta_disconnected_power_management + 0x4012599c 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x31 (size before relaxing) + 0x4012599c pm_enable_sta_disconnected_power_management + *fill* 0x401259c9 0x3 + .text.pm_coex_reconnect_policy + 0x401259cc 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1a (size before relaxing) + 0x401259cc pm_coex_reconnect_policy + *fill* 0x401259e2 0x2 + .text.pm_coex_set_reconnect_policy + 0x401259e4 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x47 (size before relaxing) + 0x401259e8 pm_coex_set_reconnect_policy + *fill* 0x40125a1b 0x1 + .text.pp_delete_task_manually + 0x40125a1c 0x41 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x45 (size before relaxing) + *fill* 0x40125a5d 0x3 + .text.xswap 0x40125a60 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40125a68 xswap + *fill* 0x40125a82 0x2 + .text.pp_register_net80211_tx_cb + 0x40125a84 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40125a88 pp_register_net80211_tx_cb + *fill* 0x40125a97 0x1 + .text.pp_register_config_cb + 0x40125a98 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40125a9c pp_register_config_cb + *fill* 0x40125aab 0x1 + .text.pp_register_timer_cb + 0x40125aac 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40125ab0 pp_register_timer_cb + *fill* 0x40125abf 0x1 + .text.pp_register_michael_mic_failure_cb + 0x40125ac0 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40125ac4 pp_register_michael_mic_failure_cb + *fill* 0x40125ad3 0x1 + .text.pp_default_event_handler + 0x40125ad4 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2c (size before relaxing) + 0x40125adc pp_default_event_handler + *fill* 0x40125af5 0x3 + .text.ppRegisterRxCallback + 0x40125af8 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x23 (size before relaxing) + 0x40125af8 ppRegisterRxCallback + *fill* 0x40125b17 0x1 + .text.ppRegisterTxCallback + 0x40125b18 0x49 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4d (size before relaxing) + 0x40125b18 ppRegisterTxCallback + *fill* 0x40125b61 0x3 + .text.ppCheckTxQIdle + 0x40125b64 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1f (size before relaxing) + 0x40125b64 ppCheckTxQIdle + *fill* 0x40125b7f 0x1 + .text.ppCheckTxConnTrafficIdle + 0x40125b80 0xb0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xcc (size before relaxing) + 0x40125b80 ppCheckTxConnTrafficIdle + .text.ppAssembleMicHdr + 0x40125c30 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x9c (size before relaxing) + 0x40125c30 ppAssembleMicHdr + .text.ppCalTkipMic + 0x40125cb8 0x104 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x138 (size before relaxing) + 0x40125cbc ppCalTkipMic + .text.ppClearRxFragment + 0x40125dbc 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3a (size before relaxing) + 0x40125dc0 ppClearRxFragment + *fill* 0x40125de6 0x2 + .text.ppDequeueTxQ + 0x40125de8 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x39 (size before relaxing) + 0x40125de8 ppDequeueTxQ + *fill* 0x40125e1d 0x3 + .text.ppFillAMPDUBar + 0x40125e20 0xf6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x116 (size before relaxing) + 0x40125e24 ppFillAMPDUBar + *fill* 0x40125f16 0x2 + .text.ppCheckTxAMPDUlength + 0x40125f18 0x7f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x87 (size before relaxing) + 0x40125f18 ppCheckTxAMPDUlength + *fill* 0x40125f97 0x1 + .text.ppReSendBar + 0x40125f98 0x126 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x162 (size before relaxing) + 0x40125f9c ppReSendBar + *fill* 0x401260be 0x2 + .text.ppRecordBarRRC + 0x401260c0 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x22 (size before relaxing) + 0x401260c0 ppRecordBarRRC + *fill* 0x401260de 0x2 + .text.pp_create_task + 0x401260e0 0x189 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1d1 (size before relaxing) + 0x4012610c pp_create_task + *fill* 0x40126269 0x3 + .text.pp_deattach + 0x4012626c 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x42 (size before relaxing) + 0x4012626c pp_deattach + *fill* 0x401262a2 0x2 + .text.ppInitTxq + 0x401262a4 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x66 (size before relaxing) + 0x401262a4 ppInitTxq + *fill* 0x40126306 0x2 + .text.ppEnableQueue + 0x40126308 0x4f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x53 (size before relaxing) + 0x40126308 ppEnableQueue + *fill* 0x40126357 0x1 + .text.ppTxqEmpty + 0x40126358 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x5e (size before relaxing) + 0x4012635c ppTxqEmpty + *fill* 0x401263b2 0x2 + .text.pp_delete_task + 0x401263b4 0x7b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x96 (size before relaxing) + 0x401263b8 pp_delete_task + *fill* 0x4012642f 0x1 + .text.ppDisableQueue + 0x40126430 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x37 (size before relaxing) + 0x40126430 ppDisableQueue + *fill* 0x4012645f 0x1 + .text.ppCheckTxIdle + 0x40126460 0xb0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xbc (size before relaxing) + 0x40126460 ppCheckTxIdle + .text.ppDiscardMPDU + 0x40126510 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x32 (size before relaxing) + 0x40126510 ppDiscardMPDU + *fill* 0x4012653a 0x2 + .text.ppPrepareBarFrame + 0x4012653c 0xcc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xe8 (size before relaxing) + 0x4012654c ppPrepareBarFrame + .text.pp_attach + 0x40126608 0xd1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x108 (size before relaxing) + 0x40126610 pp_attach + *fill* 0x401266d9 0x3 + .text.ppClearTxq + 0x401266dc 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x53 (size before relaxing) + 0x401266dc ppClearTxq + *fill* 0x4012671c 0x0 + .text.pp_stop_sw_txq + 0x4012671c 0x65 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x83 (size before relaxing) + 0x4012671c pp_stop_sw_txq + *fill* 0x40126781 0x3 + .text.ppGetTaskHdl + 0x40126784 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xe (size before relaxing) + 0x40126784 ppGetTaskHdl + *fill* 0x4012678e 0x2 + .text.dbg_lmac_ps_statis_reset + 0x40126790 0x12 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x1a (size before relaxing) + 0x40126790 dbg_lmac_ps_statis_reset + *fill* 0x401267a2 0x2 + .text.pp_timer_beacon_monitor_tbtt + 0x401267a4 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x401267b7 0x1 + .text.pp_timer_beacon_monitor + 0x401267b8 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x401267cb 0x1 + .text.pp_timer_connectionless_wake_window + 0x401267cc 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x401267db 0x1 + .text.pp_timer_connectionless_wake_interval + 0x401267dc 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x401267eb 0x1 + .text.pp_timer_disconnected_sleep_delay + 0x401267ec 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x401267fb 0x1 + .text.pp_timer_sleep_delay + 0x401267fc 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012680b 0x1 + .text.pp_timer_coex_slice + 0x4012680c 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012681b 0x1 + .text.pp_timer_active + 0x4012681c 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012682b 0x1 + .text.pp_timer_dream + 0x4012682c 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012683b 0x1 + .text.pp_timer_noise_check + 0x4012683c 0xf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012684b 0x1 + .text.pp_timer_register_post_cb + 0x4012684c 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x40126850 pp_timer_register_post_cb + *fill* 0x4012685f 0x1 + .text.pp_timer_process + 0x40126860 0x1a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x1e (size before relaxing) + 0x40126860 pp_timer_process + *fill* 0x4012687a 0x2 + .text.RC_GetDuration + 0x4012687c 0x75 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + *fill* 0x401268f1 0x3 + .text.RC_GetAckTime + 0x401268f4 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x1b (size before relaxing) + 0x401268f4 RC_GetAckTime + *fill* 0x4012690b 0x1 + .text.RC_GetCtsTime + 0x4012690c 0x49 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x4d (size before relaxing) + 0x4012690c RC_GetCtsTime + *fill* 0x40126955 0x3 + .text.RC_GetBlockAckTime + 0x40126958 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x52 (size before relaxing) + 0x40126958 RC_GetBlockAckTime + *fill* 0x4012699e 0x2 + .text.rc11GRate2SchedIdx + 0x401269a0 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc11BRate2SchedIdx + 0x401269bc 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rx11NRate2AMPDULimit + 0x401269d8 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x401269dc rx11NRate2AMPDULimit + *fill* 0x401269f7 0x1 + .text.rcUpdateAMPDUParam + 0x401269f8 0xc2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xc6 (size before relaxing) + 0x40126a08 rcUpdateAMPDUParam + *fill* 0x40126aba 0x2 + .text.rcGet11NHighestRateIdx + 0x40126abc 0x6c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x70 (size before relaxing) + 0x40126ac0 rcGet11NHighestRateIdx + .text.rcGet11GHighestRateIdx + 0x40126b28 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x64 (size before relaxing) + 0x40126b2c rcGet11GHighestRateIdx + .text.rcGet11BHighestRateIdx + 0x40126b88 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40 (size before relaxing) + 0x40126b8c rcGet11BHighestRateIdx + .text.rcGetHighestRateIdx + 0x40126bc4 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x52 (size before relaxing) + 0x40126bc4 rcGetHighestRateIdx + *fill* 0x40126c06 0x2 + .text.rcClearCurSched + 0x40126c08 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40126c0c rcClearCurSched + *fill* 0x40126c39 0x3 + .text.rcClearCurAMPDUSched + 0x40126c3c 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x37 (size before relaxing) + 0x40126c3c rcClearCurAMPDUSched + *fill* 0x40126c6f 0x1 + .text.rcUpdatePhyMode + 0x40126c70 0x2dc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x314 (size before relaxing) + 0x40126cb8 rcUpdatePhyMode + .text.rcLowerSched + 0x40126f4c 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x9a (size before relaxing) + 0x40126f4c rcLowerSched + *fill* 0x40126fc6 0x2 + .text.rcUpSched + 0x40126fc8 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x8e (size before relaxing) + 0x40126fc8 rcUpSched + *fill* 0x40127036 0x2 + .text.rcTxUpdatePer + 0x40127038 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x7e (size before relaxing) + 0x4012703c rcTxUpdatePer + *fill* 0x401270ae 0x2 + .text.trc_onAmpduOp + 0x401270b0 0xe1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xe9 (size before relaxing) + 0x401270b0 trc_onAmpduOp + *fill* 0x40127191 0x3 + .text.trc_set_per_pkt_rate + 0x40127194 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x28 (size before relaxing) + 0x40127194 trc_set_per_pkt_rate + .text.rcGetAmpduSched + 0x401271b4 0x8c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x98 (size before relaxing) + 0x401271c0 rcGetAmpduSched + .text.rssi_margin + 0x40127240 0x140 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40127244 rssi_margin + .text.TRC_PER_IS_GOOD + 0x40127380 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x51 (size before relaxing) + 0x40127380 TRC_PER_IS_GOOD + *fill* 0x401273cd 0x3 + .text.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x401273d0 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x86 (size before relaxing) + 0x401273d4 TRC_AMPDU_PER_DOWN_THRESHOLD + *fill* 0x40127442 0x2 + .text.rcAmpduLowerRate + 0x40127444 0xdb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x126 (size before relaxing) + 0x40127444 rcAmpduLowerRate + *fill* 0x4012751f 0x1 + .text.TRC_AMPDU_PER_UP_THRESHOLD + 0x40127520 0x5d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x69 (size before relaxing) + 0x40127524 TRC_AMPDU_PER_UP_THRESHOLD + *fill* 0x4012757d 0x3 + .text.rcUpdateRate + 0x40127580 0x1fe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x252 (size before relaxing) + 0x4012758c rcUpdateRate + *fill* 0x4012777e 0x2 + .text.rcReachRetryLimit + 0x40127780 0xca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xee (size before relaxing) + 0x4012779c rcReachRetryLimit + *fill* 0x4012784a 0x2 + .text.rcAttach + 0x4012784c 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x92 (size before relaxing) + 0x4012784c rcAttach + *fill* 0x40127892 0x2 + .text.rc_disable_trc + 0x40127894 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x6e (size before relaxing) + 0x4012789c rc_disable_trc + *fill* 0x401278f2 0x2 + .text.rc_disable_trc_by_interface + 0x401278f4 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x22 (size before relaxing) + 0x401278f4 rc_disable_trc_by_interface + *fill* 0x40127912 0x2 + .text.rc_get_trc_by_index + 0x40127914 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x62 (size before relaxing) + 0x40127914 rc_get_trc_by_index + *fill* 0x4012796e 0x2 + .text.trc_init + 0x40127970 0xd8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xf0 (size before relaxing) + 0x40127974 trc_init + .text.trc_update_ifx_phy_mode + 0x40127a48 0x94 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xb4 (size before relaxing) + 0x40127a4c trc_update_ifx_phy_mode + .text.trc_deinit + 0x40127adc 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x30 (size before relaxing) + 0x40127adc trc_deinit + .text.rc_set_per_conn_fix_rate + 0x40127b04 0x7d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x81 (size before relaxing) + 0x40127b0c rc_set_per_conn_fix_rate + *fill* 0x40127b81 0x3 + .text.rc_enable_trc + 0x40127b84 0xd0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xf8 (size before relaxing) + 0x40127b8c rc_enable_trc + .text.wDev_SetCurChannel + 0x40127c54 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x21 (size before relaxing) + 0x40127c54 wDev_SetCurChannel + *fill* 0x40127c71 0x3 + .text.wDev_Set_Beacon_Int + 0x40127c74 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40127c78 wDev_Set_Beacon_Int + *fill* 0x40127c85 0x3 + .text.wDev_Reset_TBTT + 0x40127c88 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x40127c88 wDev_Reset_TBTT + *fill* 0x40127c92 0x2 + .text.wDev_reset_bcnSendTick + 0x40127c94 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40127c98 wDev_reset_bcnSendTick + *fill* 0x40127ca7 0x1 + .text.wDev_Get_Next_TBTT + 0x40127ca8 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x41 (size before relaxing) + 0x40127ca8 wDev_Get_Next_TBTT + *fill* 0x40127cd9 0x3 + .text.wdev_csi_hw_bug_check + 0x40127cdc 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x76 (size before relaxing) + 0x40127ce0 wdev_csi_hw_bug_check + *fill* 0x40127d4a 0x2 + .text.wdev_csi_rx_process + 0x40127d4c 0x10b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x127 (size before relaxing) + 0x40127d5c wdev_csi_rx_process + *fill* 0x40127e57 0x1 + .text.wdev_set_promis_misc_pkt + 0x40127e58 0x7c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x88 (size before relaxing) + 0x40127e64 wdev_set_promis_misc_pkt + .text.wdev_pop_promis_misc_buf + 0x40127ed4 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x76 (size before relaxing) + 0x40127ed8 wdev_pop_promis_misc_buf + *fill* 0x40127f46 0x2 + .text.wdev_process_misc_pkt + 0x40127f48 0x88 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9c (size before relaxing) + 0x40127f48 wdev_process_misc_pkt + .text.wdev_set_promis_misc_buf + 0x40127fd0 0x6d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x81 (size before relaxing) + 0x40127fd4 wdev_set_promis_misc_buf + *fill* 0x4012803d 0x3 + .text.wdev_set_promis_ctrl_pkt + 0x40128040 0x35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3d (size before relaxing) + 0x40128044 wdev_set_promis_ctrl_pkt + *fill* 0x40128075 0x3 + .text.wdev_set_promis + 0x40128078 0x6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xb2 (size before relaxing) + 0x40128080 wdev_set_promis + *fill* 0x401280e6 0x2 + .text.wDev_SnifferRxAmpdu + 0x401280e8 0x72 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x82 (size before relaxing) + 0x401280e8 wDev_SnifferRxAmpdu + *fill* 0x4012815a 0x2 + .text.wDev_SnifferRxData + 0x4012815c 0x264 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2a0 (size before relaxing) + 0x4012815c wDev_SnifferRxData + .text.wDev_IndicateCtrlFrame + 0x401283c0 0x104 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x128 (size before relaxing) + 0x401283c4 wDev_IndicateCtrlFrame + .text.wDev_nan_is_in_dw + 0x401284c4 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x401284c8 wDev_nan_is_in_dw + .text.wDev_Rxbuf_Deinit + 0x401284dc 0x61 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x71 (size before relaxing) + 0x401284e0 wDev_Rxbuf_Deinit + *fill* 0x4012853d 0x3 + .text.wDev_Rxbuf_Init + 0x40128540 0x1f9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x251 (size before relaxing) + 0x40128564 wDev_Rxbuf_Init + *fill* 0x40128739 0x3 + .text.wDev_disable_low_rate + 0x4012873c 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x4012873c wDev_disable_low_rate + *fill* 0x40128744 0x0 + .text.wDev_enable_low_rate + 0x40128744 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x40128744 wDev_enable_low_rate + *fill* 0x4012874c 0x0 + .text.wDev_is_low_rate_enable + 0x4012874c 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40128750 wDev_is_low_rate_enable + *fill* 0x4012875d 0x3 + .text.wDev_Insert_KeyEntry + 0x40128760 0x82 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x96 (size before relaxing) + 0x40128760 wDev_Insert_KeyEntry + *fill* 0x401287e2 0x2 + .text.wDev_remove_KeyEntry + 0x401287e4 0x37 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3f (size before relaxing) + 0x401287e4 wDev_remove_KeyEntry + *fill* 0x4012881b 0x1 + .text.wDev_remove_KeyEntry_all_cnx + 0x4012881c 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x35 (size before relaxing) + 0x4012881c wDev_remove_KeyEntry_all_cnx + *fill* 0x40128846 0x2 + .text.wDev_Crypto_Disable + 0x40128848 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2a (size before relaxing) + 0x40128848 wDev_Crypto_Disable + *fill* 0x4012886a 0x2 + .text.wdev_is_mgmt_hwdecr_enabled + 0x4012886c 0xd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x14 (size before relaxing) + 0x4012886c wdev_is_mgmt_hwdecr_enabled + *fill* 0x40128879 0x3 + .text.config_get_wifi_ampdu_rx_enable + 0x4012887c 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x4012887c config_get_wifi_ampdu_rx_enable + *fill* 0x40128886 0x2 + .text.config_get_wifi_ampdu_tx_enable + 0x40128888 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x40128888 config_get_wifi_ampdu_tx_enable + *fill* 0x40128892 0x2 + .text.config_get_wifi_amsdu_tx_enable + 0x40128894 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x40128894 config_get_wifi_amsdu_tx_enable + *fill* 0x4012889f 0x1 + .text.config_get_wifi_nvs_enable + 0x401288a0 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x401288a0 config_get_wifi_nvs_enable + *fill* 0x401288aa 0x2 + .text.config_get_wifi_rx_baw + 0x401288ac 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x401288ac config_get_wifi_rx_baw + *fill* 0x401288b6 0x2 + .text.config_get_wifi_static_rx_buffer_num + 0x401288b8 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x401288b8 config_get_wifi_static_rx_buffer_num + *fill* 0x401288c2 0x2 + .text.config_get_wifi_dynamic_rx_buffer_num + 0x401288c4 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x401288c4 config_get_wifi_dynamic_rx_buffer_num + *fill* 0x401288ce 0x2 + .text.config_get_wifi_tx_buffer_type + 0x401288d0 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x401288d0 config_get_wifi_tx_buffer_type + *fill* 0x401288da 0x2 + .text.config_get_wifi_static_tx_buffer_num + 0x401288dc 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x401288dc config_get_wifi_static_tx_buffer_num + *fill* 0x401288e6 0x2 + .text.config_get_wifi_dynamic_tx_buffer_num + 0x401288e8 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x401288e8 config_get_wifi_dynamic_tx_buffer_num + *fill* 0x401288f2 0x2 + .text.config_get_wifi_rx_mgmt_buffer_type + 0x401288f4 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x401288f4 config_get_wifi_rx_mgmt_buffer_type + *fill* 0x401288ff 0x1 + .text.config_get_wifi_rx_mgmt_buffer_num + 0x40128900 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x40128900 config_get_wifi_rx_mgmt_buffer_num + *fill* 0x4012890b 0x1 + .text.config_get_wifi_cache_tx_buffer_num + 0x4012890c 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x4012890c config_get_wifi_cache_tx_buffer_num + *fill* 0x40128916 0x2 + .text.config_get_wifi_task_stack_size + 0x40128918 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2d (size before relaxing) + 0x4012891c config_get_wifi_task_stack_size + *fill* 0x4012893d 0x3 + .text.config_get_wifi_task_core_id + 0x40128940 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x40128940 config_get_wifi_task_core_id + *fill* 0x4012894a 0x2 + .text.config_get_wifi_beacon_max_len + 0x4012894c 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x4012894c config_get_wifi_beacon_max_len + *fill* 0x40128956 0x2 + .text.config_get_wifi_mgmt_sbuf_num + 0x40128958 0xa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x40128958 config_get_wifi_mgmt_sbuf_num + *fill* 0x40128962 0x2 + .text.config_get_wifi_feature_capabilities + 0x40128964 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x40128964 config_get_wifi_feature_capabilities + *fill* 0x40128972 0x2 + .text.config_get_wifi_espnow_max_encrypt_num + 0x40128974 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x40128974 config_get_wifi_espnow_max_encrypt_num + *fill* 0x4012897f 0x1 + .text.config_is_cache_tx_buf_enabled + 0x40128980 0xe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x40128980 config_is_cache_tx_buf_enabled + *fill* 0x4012898e 0x2 + .text.config_get_wifi_sta_disconnected_pm + 0x40128990 0xb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x40128990 config_get_wifi_sta_disconnected_pm + *fill* 0x4012899b 0x1 + .text.hal_agreement_add_rx_ba + 0x4012899c 0x115 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x121 (size before relaxing) + 0x401289bc hal_agreement_add_rx_ba + *fill* 0x40128ab1 0x3 + .text.hal_agreement_clr_rx_ba + 0x40128ab4 0x82 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0xa2 (size before relaxing) + 0x40128ab8 hal_agreement_clr_rx_ba + *fill* 0x40128b36 0x2 + .text.hal_agreement_del_rx_ba + 0x40128b38 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x90 (size before relaxing) + 0x40128b3c hal_agreement_del_rx_ba + .text.hal_ba_session_store + 0x40128ba8 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x46 (size before relaxing) + 0x40128ba8 hal_ba_session_store + *fill* 0x40128be6 0x2 + .text.hal_ba_session_restore + 0x40128be8 0x67 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x77 (size before relaxing) + 0x40128be8 hal_ba_session_restore + *fill* 0x40128c4f 0x1 + .text.hal_ba_session_restore_by_hw_index + 0x40128c50 0x81 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x9d (size before relaxing) + 0x40128c50 hal_ba_session_restore_by_hw_index + *fill* 0x40128cd1 0x3 + .text.hal_crypto_clr_key_entry + 0x40128cd4 0xb8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x40128d00 hal_crypto_clr_key_entry + .text.hal_crypto_set_key_entry + 0x40128d8c 0x16e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x19e (size before relaxing) + 0x40128db0 hal_crypto_set_key_entry + *fill* 0x40128efa 0x2 + .text.hal_crypto_is_key_valid + 0x40128efc 0x17 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x1b (size before relaxing) + 0x40128efc hal_crypto_is_key_valid + *fill* 0x40128f13 0x1 + .text.hal_crypto_get_key_entry + 0x40128f14 0xa4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0xbc (size before relaxing) + 0x40128f20 hal_crypto_get_key_entry + .text.hal_crypto_init + 0x40128fb8 0x4d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x40128fd0 hal_crypto_init + *fill* 0x40129005 0x3 + .text.hal_crypto_mgmt_rx_enabled + 0x40129008 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x23 (size before relaxing) + 0x40129008 hal_crypto_mgmt_rx_enabled + *fill* 0x40129023 0x1 + .text.hal_crypto_enable + 0x40129024 0xa5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0xbd (size before relaxing) + 0x40129034 hal_crypto_enable + *fill* 0x401290c9 0x3 + .text.hal_crypto_disable + 0x401290cc 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x4c (size before relaxing) + 0x401290cc hal_crypto_disable + .text.mac_tx_set_plcp0 + 0x40129108 0xbc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xcc (size before relaxing) + 0x40129124 mac_tx_set_plcp0 + .text.mac_tx_set_duration + 0x401291c4 0x3c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x401291c8 mac_tx_set_duration + .text.hal_mac_tx_set_ppdu + 0x40129200 0x22 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x46 (size before relaxing) + 0x40129200 hal_mac_tx_set_ppdu + *fill* 0x40129222 0x2 + .text.hal_mac_set_txq_invalid + 0x40129224 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2c (size before relaxing) + 0x40129224 hal_mac_set_txq_invalid + .text.hal_mac_is_txq_valid + 0x40129248 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x1d (size before relaxing) + 0x40129248 hal_mac_is_txq_valid + *fill* 0x40129261 0x3 + .text.hal_now 0x40129264 0x43 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x5b (size before relaxing) + 0x40129264 hal_now + *fill* 0x401292a7 0x1 + .text.hal_mac_tx_set_cca + 0x401292a8 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2b (size before relaxing) + 0x401292ac hal_mac_tx_set_cca + *fill* 0x401292cf 0x1 + .text.hal_mac_disable_low_rate + 0x401292d0 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x77 (size before relaxing) + 0x401292e8 hal_mac_disable_low_rate + *fill* 0x4012933f 0x1 + .text.hal_mac_enable_low_rate + 0x40129340 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x70 (size before relaxing) + 0x40129344 hal_mac_enable_low_rate + .text.mac_rxbuf_init + 0x40129398 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x86 (size before relaxing) + 0x401293b8 mac_rxbuf_init + *fill* 0x40129416 0x2 + .text.hal_disable_mac + 0x40129418 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x40129428 hal_disable_mac + *fill* 0x40129462 0x2 + .text.hal_enable_mac + 0x40129464 0x2b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x37 (size before relaxing) + 0x40129464 hal_enable_mac + *fill* 0x4012948f 0x1 + .text.mac_txrx_init + 0x40129490 0x296 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2b6 (size before relaxing) + 0x401294f0 mac_txrx_init + *fill* 0x40129726 0x2 + .text.hal_mac_set_rxq_policy + 0x40129728 0x45 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x4012972c hal_mac_set_rxq_policy + *fill* 0x4012976d 0x3 + .text.mac_last_rxbuf_init + 0x40129770 0x75 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x7d (size before relaxing) + 0x40129788 mac_last_rxbuf_init + *fill* 0x401297e5 0x3 + .text.hal_deinit + 0x401297e8 0x65 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x6d (size before relaxing) + 0x401297f4 hal_deinit + *fill* 0x4012984d 0x3 + .text.hal_mac_set_addr + 0x40129850 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x72 (size before relaxing) + 0x40129854 hal_mac_set_addr + *fill* 0x401298ba 0x2 + .text.hal_mac_set_bssid + 0x401298bc 0xa3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xb3 (size before relaxing) + 0x401298cc hal_mac_set_bssid + *fill* 0x4012995f 0x1 + .text.hal_mac_rx_set_policy + 0x40129960 0xc6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xde (size before relaxing) + 0x40129968 hal_mac_rx_set_policy + *fill* 0x40129a26 0x2 + .text.hal_init + 0x40129a28 0xc6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x10e (size before relaxing) + 0x40129a34 hal_init + *fill* 0x40129aee 0x2 + .text.hal_mac_tsf_get_time + 0x40129af0 0xce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xd6 (size before relaxing) + 0x40129b00 hal_mac_tsf_get_time + *fill* 0x40129bbe 0x2 + .text.hal_mac_tsf_reset + 0x40129bc0 0x169 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x179 (size before relaxing) + 0x40129bec hal_mac_tsf_reset + *fill* 0x40129d29 0x3 + .text.mac_tx_set_plcp1 + 0x40129d2c 0x90 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x98 (size before relaxing) + 0x40129d34 mac_tx_set_plcp1 + .text.mac_tx_set_plcp2 + 0x40129dbc 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x92 (size before relaxing) + 0x40129dd0 mac_tx_set_plcp2 + *fill* 0x40129e3a 0x2 + .text.mac_tx_set_htsig + 0x40129e3c 0x135 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x15d (size before relaxing) + 0x40129e44 mac_tx_set_htsig + *fill* 0x40129f71 0x3 + .text.hal_mac_get_txq_state + 0x40129f74 0x45 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x40129f7c hal_mac_get_txq_state + *fill* 0x40129fb9 0x3 + .text.hal_mac_clr_txq_state + 0x40129fbc 0x5f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x40129fc8 hal_mac_clr_txq_state + *fill* 0x4012a01b 0x1 + .text.hal_mac_get_txq_pmd + 0x4012a01c 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x4012a020 hal_mac_get_txq_pmd + .text.hal_attenna_init + 0x4012a070 0x80 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x84 (size before relaxing) + 0x4012a074 hal_attenna_init + .text.hal_mac_rate_autoack_init + 0x4012a0f0 0x79 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x8d (size before relaxing) + 0x4012a110 hal_mac_rate_autoack_init + *fill* 0x4012a169 0x3 + .text.hal_sniffer_enable + 0x4012a16c 0x89 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0x8d (size before relaxing) + 0x4012a170 hal_sniffer_enable + *fill* 0x4012a1f5 0x3 + .text.hal_sniffer_disable + 0x4012a1f8 0x87 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0x8f (size before relaxing) + 0x4012a1f8 hal_sniffer_disable + *fill* 0x4012a27f 0x1 + .text.hal_sniffer_rx_set_promis + 0x4012a280 0xb7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0xc7 (size before relaxing) + 0x4012a284 hal_sniffer_rx_set_promis + *fill* 0x4012a337 0x1 + .text.hal_sniffer_rx_clr_statistics + 0x4012a338 0x2f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0x37 (size before relaxing) + 0x4012a33c hal_sniffer_rx_clr_statistics + *fill* 0x4012a367 0x1 + .text.hal_enable_sta_tsf + 0x4012a368 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0x23 (size before relaxing) + 0x4012a36c hal_enable_sta_tsf + *fill* 0x4012a387 0x1 + .text.hal_disable_sta_tsf + 0x4012a388 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0x23 (size before relaxing) + 0x4012a38c hal_disable_sta_tsf + *fill* 0x4012a3a7 0x1 + .text.hal_disable_softap_tsf + 0x4012a3a8 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0x23 (size before relaxing) + 0x4012a3a8 hal_disable_softap_tsf + *fill* 0x4012a3c3 0x1 + .literal.esp_partition_write_raw + 0x4012a3c4 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_erase_range + 0x4012a3d8 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_mmap + 0x4012a3e0 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x18 (size before relaxing) + .literal.esp_partition_munmap + 0x4012a3e8 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_read + 0x4012a3e8 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x24 (size before relaxing) + .literal.esp_partition_is_flash_region_writable + 0x4012a3f0 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_main_flash_region_safe + 0x4012a3f0 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x8 (size before relaxing) + .literal.load_partitions + 0x4012a3f4 0x3c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x6c (size before relaxing) + .literal.ensure_partitions_loaded + 0x4012a430 0x10 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x24 (size before relaxing) + .literal.iterator_create + 0x4012a440 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x8 (size before relaxing) + .literal.esp_partition_iterator_release + 0x4012a444 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_next + 0x4012a444 0x10 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x28 (size before relaxing) + .literal.esp_partition_find + 0x4012a454 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_get + 0x4012a454 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x10 (size before relaxing) + .literal.esp_ota_get_running_partition + 0x4012a45c 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x38 (size before relaxing) + .literal.clk_hal_lp_slow_get_freq_hz + 0x4012a478 0x18 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x20 (size before relaxing) + .literal.clk_hal_xtal_get_freq_mhz + 0x4012a490 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_apll_get_freq_hz + 0x4012a494 0x8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x1c (size before relaxing) + .literal.clk_hal_soc_root_get_freq_mhz + 0x4012a49c 0x10 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x24 (size before relaxing) + .literal.clk_hal_cpu_get_freq_hz + 0x4012a4ac 0xc esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x30 (size before relaxing) + .literal.clk_hal_ahb_get_freq_hz + 0x4012a4b8 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x10 (size before relaxing) + .literal.clk_hal_apb_get_freq_hz + 0x4012a4bc 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_ll_write_to_mem_block + 0x4012a4bc 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_ll_clear_power_control_bit + 0x4012a4c0 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.mpi_ll_set_power_control_bit + 0x4012a4c4 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.mpi_ll_read_from_mem_block + 0x4012a4c4 0xc esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x18 (size before relaxing) + .literal.mpi_hal_enable_hardware_hw_op + 0x4012a4d0 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0xc (size before relaxing) + .literal.mpi_hal_disable_hardware_hw_op + 0x4012a4d4 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_clear_interrupt + 0x4012a4d4 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_set_mode + 0x4012a4d8 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_write_to_mem_block + 0x4012a4dc 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_write_at_offset + 0x4012a4dc 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_write_m_prime + 0x4012a4dc 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_write_rinv + 0x4012a4e0 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_start_op + 0x4012a4e0 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.mpi_hal_wait_op_complete + 0x4012a4e4 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0xc (size before relaxing) + .literal.mpi_hal_read_result_hw_op + 0x4012a4e4 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.sha_ll_busy + 0x4012a4e4 0x10 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x20 (size before relaxing) + .literal.sha_ll_read_digest + 0x4012a4f4 0x8 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x10 (size before relaxing) + .literal.sha_hal_wait_idle + 0x4012a4fc 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x4 (size before relaxing) + .literal.sha_hal_hash_block + 0x4012a4fc 0xc esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x14 (size before relaxing) + .literal.sha_hal_read_digest + 0x4012a508 0x4 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x10 (size before relaxing) + .literal.aes_ll_write_key + 0x4012a50c 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x8 (size before relaxing) + .literal.aes_hal_wait_idle + 0x4012a510 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x8 (size before relaxing) + .literal.aes_hal_setkey + 0x4012a514 0x4 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x8 (size before relaxing) + .literal.aes_hal_transform_block + 0x4012a518 0x14 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x1c (size before relaxing) + .literal.esp_dport_access_read_buffer + 0x4012a52c 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_fill_random + 0x4012a52c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x18 (size before relaxing) + .literal.get_idx + 0x4012a53c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x14 (size before relaxing) + .literal.generate_mac + 0x4012a548 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x20 (size before relaxing) + .literal.get_efuse_mac_custom + 0x4012a54c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x38 (size before relaxing) + .literal.get_efuse_factory_mac + 0x4012a564 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x40 (size before relaxing) + .literal.get_mac_addr_from_mac_table + 0x4012a584 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x20 (size before relaxing) + .literal.esp_efuse_mac_get_default + 0x4012a588 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x4 (size before relaxing) + .literal.esp_read_mac + 0x4012a588 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x44 (size before relaxing) + .literal.esp_crypto_mpi_lock_acquire + 0x4012a594 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.esp_crypto_mpi_lock_release + 0x4012a598 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.ets_timer_setfn + 0x4012a598 0x1c esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x28 (size before relaxing) + .literal.ets_timer_done + 0x4012a5b4 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_ET_SA_SA_T0_ + 0x4012a5b4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x4012a5b4 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZ9nvs_closeEUlRS1_E_ET_S6_S6_T0_ + 0x4012a5bc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x4012a5bc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_erase_key + 0x4012a5bc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_commit + 0x4012a5bc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_set_blob + 0x4012a5bc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_get_blob + 0x4012a5bc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal.nvs_close + 0x4012a5bc 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x20 (size before relaxing) + .literal.nvs_open_from_partition + 0x4012a5bc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x24 (size before relaxing) + .literal.nvs_open + 0x4012a5c0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal._Z7nvs_setIaEimPKcT_ + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_i8 + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIhEimPKcT_ + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_u8 + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setItEimPKcT_ + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_u16 + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setImEimPKcT_ + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_u32 + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIaEimPKcPT_ + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_i8 + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIhEimPKcPT_ + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_u8 + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getItEimPKcPT_ + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_u16 + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getImEimPKcPT_ + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_u32 + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_EEET_SG_SG_T0_St18input_iterator_tag + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_ET_SC_SC_T0_ + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Item6getKeyEPcj + 0x4012a5c4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x4012a5c4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x4012a5c8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x4012a5cc 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x4012a5d0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x4012a5d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x4012a5d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage14eraseNamespaceEh + 0x4012a5d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE + 0x4012a5d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x4012a5d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x4012a5d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x4012a5d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x4012a5d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x4012a5d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x4012a5d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x4012a5d8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x4012a5d8 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x3c (size before relaxing) + .literal._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x4012a5e4 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x50 (size before relaxing) + .literal._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x4012a5ec 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x24 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple6commitEv + 0x4012a5ec 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD2Ev + 0x4012a5ec 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD0Ev + 0x4012a5f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x4012a5f4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x4012a5f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x4012a5f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x4012a5f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x4012a5f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x4012a5f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x4012a5f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t + 0x4012a5f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x4012a5f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple9erase_allEv + 0x4012a5f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x4012a5f8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs12NVSPartitionD5Ev + 0x4012a5f8 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs12NVSPartition8read_rawEjPvj + 0x4012a600 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition4readEjPvj + 0x4012a600 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x4012a600 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition5writeEjPKvj + 0x4012a600 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition11erase_rangeEjj + 0x4012a600 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManagerD5Ev + 0x4012a600 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKcENKUlRNS_7StorageEE_clES4_ + 0x4012a604 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x4012a604 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_ET_SA_SA_T0_ + 0x4012a604 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7StorageC5EPNS_9PartitionE + 0x4012a604 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x4012a604 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x4012a608 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x4012a608 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x4012a608 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs4LockC2Ev + 0x4012a60c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4LockD2Ev + 0x4012a610 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x4012a610 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList5clearEv + 0x4012a610 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashListD2Ev + 0x4012a610 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList5eraseEj + 0x4012a610 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x4012a610 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x4012a610 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page6Header14calculateCrc32Ev + 0x4012a610 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10initializeEv + 0x4012a614 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZNK3nvs4Page12getSeqNumberERm + 0x4012a614 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page12setSeqNumberEm + 0x4012a614 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page5eraseEv + 0x4012a618 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page11markFreeingEv + 0x4012a618 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page8markFullEv + 0x4012a618 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNK3nvs4Page18getVarDataTailroomEv + 0x4012a618 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x4012a618 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x4012a618 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page9copyItemsERS0_ + 0x4012a618 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x4012a618 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page14writeEntryDataEPKhj + 0x4012a618 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x4012a618 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4c (size before relaxing) + .literal._ZN3nvs4Page17eraseEntryAndSpanEj + 0x4012a61c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x4012a61c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x4012a620 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x4012a620 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x4012a620 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x4012a620 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs11PageManager12activatePageEv + 0x4012a620 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs11PageManager14requestNewPageEv + 0x4012a620 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x4012a620 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNK3nvs4Item14calculateCrc32Ev + 0x4012a620 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x4012a620 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs4Item14calculateCrc32EPKhj + 0x4012a620 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x4012a620 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs21NVSEncryptedPartition4readEjPvj + 0x4012a624 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs21NVSEncryptedPartition5writeEjPKvj + 0x4012a628 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x24 (size before relaxing) + .literal.lib_printf + 0x4012a630 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x10 (size before relaxing) + .literal.phy_printf + 0x4012a634 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.net80211_printf + 0x4012a638 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.phy_update_wifi_mac_time + 0x4012a63c 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.load_cal_data_from_nvs_handle + 0x4012a644 0x24 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x54 (size before relaxing) + .literal.store_cal_data_to_nvs_handle + 0x4012a668 0x14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x6c (size before relaxing) + .literal.esp_phy_disable + 0x4012a67c 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x24 (size before relaxing) + .literal.esp_wifi_bt_power_domain_off + 0x4012a68c 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x20 (size before relaxing) + .literal.esp_phy_get_init_data + 0x4012a69c 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_phy_load_cal_data_from_nvs + 0x4012a6a0 0xc esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x28 (size before relaxing) + .literal.esp_phy_store_cal_data_to_nvs + 0x4012a6ac 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x10 (size before relaxing) + .literal.esp_phy_load_cal_and_init + 0x4012a6ac 0x20 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x94 (size before relaxing) + .literal.esp_phy_enable + 0x4012a6cc 0xc esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x34 (size before relaxing) + .literal.phy_set_modem_flag + 0x4012a6d8 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_clr_modem_flag + 0x4012a6dc 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4 (size before relaxing) + .literal.phy_get_modem_flag + 0x4012a6dc 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4 (size before relaxing) + .literal.add_offer_options + 0x4012a6dc 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x8 (size before relaxing) + .literal.kill_oldest_dhcps_pool + 0x4012a6dc 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x18 (size before relaxing) + .literal.parse_options + 0x4012a6e8 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.create_msg + 0x4012a6e8 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xc (size before relaxing) + .literal.dhcps_response_ip_set + 0x4012a6ec 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.dhcps_poll_set + 0x4012a6ec 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x20 (size before relaxing) + .literal.dhcps_new + 0x4012a6f0 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x8 (size before relaxing) + .literal.dhcps_delete + 0x4012a6f0 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.dhcps_tmr + 0x4012a6f0 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.parse_msg + 0x4012a6f4 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x58 (size before relaxing) + .literal.dhcps_pbuf_alloc + 0x4012a6f4 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.send_offer + 0x4012a6f4 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x28 (size before relaxing) + .literal.send_ack + 0x4012a6f4 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x28 (size before relaxing) + .literal.send_nak + 0x4012a6f4 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x2c (size before relaxing) + .literal.handle_dhcp + 0x4012a6f4 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x20 (size before relaxing) + .literal.dhcps_start + 0x4012a6f4 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x40 (size before relaxing) + .literal.dhcps_stop + 0x4012a704 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_action_start + 0x4012a704 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_stop + 0x4012a704 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_connected + 0x4012a704 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x68 (size before relaxing) + .literal.esp_netif_action_disconnected + 0x4012a720 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_got_ip + 0x4012a720 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x14 (size before relaxing) + .literal.low_level_output + 0x4012a724 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x14 (size before relaxing) + .literal.wlanif_input + 0x4012a724 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x10 (size before relaxing) + .literal.wlanif_init + 0x4012a724 0x1c esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x28 (size before relaxing) + .literal.wlanif_init_sta + 0x4012a740 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4 (size before relaxing) + .literal.esp_pbuf_free + 0x4012a740 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x8 (size before relaxing) + .literal.esp_pbuf_allocate + 0x4012a740 0x4 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x10 (size before relaxing) + .literal.wpa_attach + 0x4012a744 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.wpa_config_done + 0x4012a748 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_get_wpa_ie + 0x4012a748 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_rx_eapol + 0x4012a748 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deattach + 0x4012a748 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.wpa_parse_wpa_ie_wrapper + 0x4012a74c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.hostap_sta_join + 0x4012a74c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x28 (size before relaxing) + .literal.wpa_sta_disconnected_cb + 0x4012a750 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x24 (size before relaxing) + .literal.wpa_sta_connected_cb + 0x4012a758 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_install_key + 0x4012a758 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_key + 0x4012a758 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deauthenticate + 0x4012a758 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_config_profile + 0x4012a758 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x24 (size before relaxing) + .literal.wpa_config_bss + 0x4012a758 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sta_connect + 0x4012a758 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x14 (size before relaxing) + .literal.wpa_config_assoc_ie + 0x4012a758 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x8 (size before relaxing) + .literal.wpa_neg_complete + 0x4012a758 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.esp_supplicant_init + 0x4012a758 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x74 (size before relaxing) + .literal.esp_supplicant_deinit + 0x4012a7ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x14 (size before relaxing) + .literal.ieee80211_handle_rx_frm + 0x4012a7ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_supplicant_unset_all_appie + 0x4012a7ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_supplicant_common_deinit + 0x4012a7ac 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_supplicant_common_init + 0x4012a7b0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_set_assoc_ie + 0x4012a7b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x10 (size before relaxing) + .literal.wpa3_parse_sae_commit + 0x4012a7b8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x28 (size before relaxing) + .literal.wpa3_parse_sae_confirm + 0x4012a7c4 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.wpa3_build_sae_commit + 0x4012a7cc 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x80 (size before relaxing) + .literal.wpa3_build_sae_confirm + 0x4012a7d4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x18 (size before relaxing) + .literal.wpa3_build_sae_msg + 0x4012a7d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.wpa3_process_rx_confirm + 0x4012a7d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x2c (size before relaxing) + .literal.esp_wpa3_free_sae_data + 0x4012a7d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.wpa3_parse_sae_msg + 0x4012a7d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xc (size before relaxing) + .literal.esp_wifi_register_wpa3_cb + 0x4012a7d8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.wpa3_hostap_post_evt + 0x4012a7e0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.wpa3_hostap_handle_auth + 0x4012a7e8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.wpa3_hostap_auth_init + 0x4012a7e8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x1c (size before relaxing) + .literal.wpa3_hostap_auth_deinit + 0x4012a7f4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4 (size before relaxing) + .literal.esp_send_sae_auth_reply + 0x4012a7f4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.wpa3_process_rx_commit + 0x4012a7f4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x28 (size before relaxing) + .literal.esp_wpa3_hostap_task + 0x4012a7f4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.esp_wifi_register_wpa3_ap_cb + 0x4012a7f4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.owe_build_dhie + 0x4012a7f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x8 (size before relaxing) + .literal.owe_deinit + 0x4012a7f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x10 (size before relaxing) + .literal.esp_wifi_register_owe_cb + 0x4012a7f8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .literal.hostapd_get_hapd_data + 0x4012a800 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.hostap_init + 0x4012a804 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x70 (size before relaxing) + .literal.hostapd_cleanup + 0x4012a804 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x1c (size before relaxing) + .literal.hostap_deinit + 0x4012a804 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_build_rsnxe + 0x4012a804 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.esp_send_assoc_resp + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x18 (size before relaxing) + .literal.ecp_opp + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc (size before relaxing) + .literal.crypto_alloc_key + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_deinit + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_init + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_init + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_prime_len + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_order_len + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_prime_len_bits + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_deinit + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_point_to_bin + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc (size before relaxing) + .literal.crypto_ec_point_from_bin + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_add + 0x4012a808 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_mul + 0x4012a808 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_invert + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_compute_y_sqr + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x50 (size before relaxing) + .literal.crypto_ec_point_solve_y_coord + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x30 (size before relaxing) + .literal.crypto_ec_point_is_at_infinity + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_is_on_curve + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x28 (size before relaxing) + .literal.crypto_ec_point_cmp + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_set_pubkey_point + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x38 (size before relaxing) + .literal.crypto_ec_free_key + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_key_group + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ecdh_deinit + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ecdh_init + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x40 (size before relaxing) + .literal.crypto_ecdh_get_pubkey + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ecdh_set_peerkey + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x74 (size before relaxing) + .literal.crypto_ec_key_parse_pub + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_key_deinit + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_key_verify_signature + 0x4012a810 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.timeout_exists + 0x4012a810 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_run_timer + 0x4012a814 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x8 (size before relaxing) + .literal.eloop_remove_timeout + 0x4012a818 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x10 (size before relaxing) + .literal.eloop_init + 0x4012a81c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x18 (size before relaxing) + .literal.eloop_register_timeout + 0x4012a824 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x28 (size before relaxing) + .literal.eloop_cancel_timeout + 0x4012a828 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x8 (size before relaxing) + .literal.eloop_run + 0x4012a828 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x24 (size before relaxing) + .literal.eloop_run_wrapper + 0x4012a828 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4 (size before relaxing) + .literal.eloop_destroy + 0x4012a828 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x1c (size before relaxing) + .literal.hostapd_derive_psk + 0x4012a828 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xc (size before relaxing) + .literal.hostapd_setup_sae_pt + 0x4012a828 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_setup_wpa_psk + 0x4012a828 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x8 (size before relaxing) + .literal.hostapd_get_psk + 0x4012a828 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.hostapd_config_clear_wpa_psk + 0x4012a828 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.hostapd_config_free_bss + 0x4012a828 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_get_sm + 0x4012a828 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_auth_add_sm + 0x4012a830 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_del_sm + 0x4012a830 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_use_aes_cmac + 0x4012a830 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_receive_error_report + 0x4012a834 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_free_sta_sm + 0x4012a834 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_auth_sm_ptk_update + 0x4012a834 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_init_gmk_and_counter + 0x4012a834 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1c (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION_Enter + 0x4012a838 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_gmk_to_gtk + 0x4012a838 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_gtk_update + 0x4012a838 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.wpa_group_gtk_init + 0x4012a840 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_group_setkeys + 0x4012a840 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_set_key + 0x4012a840 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.wpa_group_config_group_keys + 0x4012a840 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_group_setkeysdone + 0x4012a844 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_sm_step + 0x4012a844 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_group_init + 0x4012a844 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.wpa_group_ensure_init + 0x4012a844 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION2_Enter + 0x4012a844 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_rekey_gtk + 0x4012a844 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_replay_counter_valid + 0x4012a848 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_replay_counter_mark_invalid + 0x4012a848 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_derive_ptk + 0x4012a848 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_verify_key_mic + 0x4012a84c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sta_disconnect + 0x4012a84c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_DISCONNECT_Enter + 0x4012a84c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITDONE_Enter + 0x4012a84c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.ieee80211w_kde_add + 0x4012a850 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.resend_eapol_handle + 0x4012a854 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_init + 0x4012a858 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x34 (size before relaxing) + .literal.wpa_auth_sta_init + 0x4012a85c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_sta_deinit + 0x4012a85c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_auth_pmksa_add_sae + 0x4012a860 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_add_sae_pmkid + 0x4012a860 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.__wpa_send_eapol + 0x4012a860 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x80 (size before relaxing) + .literal.wpa_send_eapol + 0x4012a860 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKSTART_Enter + 0x4012a860 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITNEGOTIATING_Enter + 0x4012a864 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x28 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter + 0x4012a868 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_Step + 0x4012a868 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1c (size before relaxing) + .literal.wpa_remove_ptk + 0x4012a868 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_INITIALIZE_Enter + 0x4012a868 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deinit + 0x4012a868 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_ap_remove + 0x4012a868 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_auth_uses_sae + 0x4012a868 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_get_psk + 0x4012a868 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter + 0x4012a868 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x30 (size before relaxing) + .literal.sm_WPA_PTK_INITPSK_Enter + 0x4012a86c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_Step + 0x4012a86c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x78 (size before relaxing) + .literal.wpa_sm_step + 0x4012a86c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_rekey_ptk + 0x4012a86c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_sta_associated + 0x4012a86c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_receive + 0x4012a86c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x88 (size before relaxing) + .literal.hostap_eapol_resend_process + 0x4012a870 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_ap_join + 0x4012a870 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x28 (size before relaxing) + .literal.wpa_parse_generic + 0x4012a870 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x14 (size before relaxing) + .literal.wpa_write_wpa_ie + 0x4012a87c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_write_rsn_ie + 0x4012a87c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x10 (size before relaxing) + .literal.wpa_write_rsnxe + 0x4012a87c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_gen_wpa_ie + 0x4012a87c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x18 (size before relaxing) + .literal.wpa_add_kde + 0x4012a87c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_validate_wpa_ie + 0x4012a87c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x44 (size before relaxing) + .literal.wpa_parse_kde_ies + 0x4012a87c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal._pmksa_cache_free_entry + 0x4012a87c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_set_expiration + 0x4012a87c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_link_entry + 0x4012a880 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_free_entry + 0x4012a880 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_expire + 0x4012a880 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_auth_create_entry + 0x4012a880 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x20 (size before relaxing) + .literal.pmksa_cache_auth_deinit + 0x4012a884 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_auth_get + 0x4012a884 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_auth_add_entry + 0x4012a884 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_auth_add + 0x4012a884 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_auth_init + 0x4012a884 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4 (size before relaxing) + .literal.ap_sta_hash_del + 0x4012a884 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x8 (size before relaxing) + .literal.ap_get_sta + 0x4012a884 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x4 (size before relaxing) + .literal.ap_free_sta + 0x4012a884 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x1c (size before relaxing) + .literal.ap_sta_add + 0x4012a884 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x14 (size before relaxing) + .literal.sae_check_big_sync + 0x4012a884 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x8 (size before relaxing) + .literal.auth_build_sae_commit + 0x4012a888 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x20 (size before relaxing) + .literal.auth_sae_send_commit + 0x4012a888 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.auth_build_sae_confirm + 0x4012a888 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.auth_sae_send_confirm + 0x4012a888 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.sae_accept_sta + 0x4012a888 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xc (size before relaxing) + .literal.sae_sm_step + 0x4012a88c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x54 (size before relaxing) + .literal.handle_auth_sae + 0x4012a894 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x64 (size before relaxing) + .literal.auth_sae_queue + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x18 (size before relaxing) + .literal.wpabuf_put_le16 + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x4 (size before relaxing) + .literal.comeback_token_hash + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x4 (size before relaxing) + .literal.check_comeback_token + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0xc (size before relaxing) + .literal.auth_build_token_req + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x40 (size before relaxing) + .literal.sae_parse_token_container + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_akm_suite_selector + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.hkdf_extract + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_pwd_seed + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_cn_confirm + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_cn_confirm_ffc + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.hkdf_expand + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_derive_commit_element_ffc + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_k_ffc + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.debug_print_bignum + 0x4012a8a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sswu 0x4012a8a8 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1d0 (size before relaxing) + .literal.sae_cn_confirm_ecc + 0x4012a8dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_max_min_addr + 0x4012a8dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_pwd_seed_key + 0x4012a8dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x14 (size before relaxing) + .literal.sae_parse_password_identifier + 0x4012a8dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_test_pwd_seed_ffc + 0x4012a8dc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x34 (size before relaxing) + .literal.sae_derive_pwe_ffc + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_test_pwd_seed_ecc + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x28 (size before relaxing) + .literal.sae_derive_pwe_ecc + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x7c (size before relaxing) + .literal.sae_derive_commit_element_ecc + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_commit + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.wpabuf_put_le16 + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_put_data + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_put_str + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_parse_rejected_groups + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_derive_k_ecc + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_kdf_hash + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_commit_scalar + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x20 (size before relaxing) + .literal.sae_parse_commit_element_ffc + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3c (size before relaxing) + .literal.sae_parse_commit_element_ecc + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.sae_parse_commit_element + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_clear_temp_data + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x40 (size before relaxing) + .literal.sae_clear_data + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_set_group + 0x4012a8e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x34 (size before relaxing) + .literal.sae_derive_pt_ecc + 0x4012a8e0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x64 (size before relaxing) + .literal.sae_derive_pt_ffc + 0x4012a8e8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .literal.sae_derive_keys + 0x4012a8f0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x64 (size before relaxing) + .literal.sae_derive_pwe_from_pt_ecc + 0x4012a8f8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x58 (size before relaxing) + .literal.sae_derive_pwe_from_pt_ffc + 0x4012a8fc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x60 (size before relaxing) + .literal.sae_deinit_pt + 0x4012a900 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_derive_pt_group + 0x4012a900 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_derive_pt + 0x4012a900 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_prepare_commit + 0x4012a900 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_prepare_commit_pt + 0x4012a900 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_process_commit + 0x4012a900 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_write_commit + 0x4012a900 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x68 (size before relaxing) + .literal.sae_group_allowed + 0x4012a900 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_commit + 0x4012a900 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x38 (size before relaxing) + .literal.sae_write_confirm + 0x4012a904 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_check_confirm + 0x4012a904 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.dragonfly_get_rand_1_to_p_1 + 0x4012a904 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x28 (size before relaxing) + .literal.dragonfly_get_rand_2_to_r_1 + 0x4012a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0xc (size before relaxing) + .literal.dragonfly_get_random_qr_qnr + 0x4012a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x1c (size before relaxing) + .literal.dragonfly_is_quadratic_residue_blind + 0x4012a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x34 (size before relaxing) + .literal.dragonfly_generate_scalar + 0x4012a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x18 (size before relaxing) + .literal.dragonfly_sqrt + 0x4012a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x28 (size before relaxing) + .literal.wpa_kck_len + 0x4012a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.wpa_kek_len + 0x4012a908 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.rsn_selector_to_bitfield + 0x4012a908 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.rsn_key_mgmt_to_bitfield + 0x4012a918 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x24 (size before relaxing) + .literal.wpa_selector_to_bitfield + 0x4012a920 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_key_mgmt_to_bitfield + 0x4012a930 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.wpa_mic_len + 0x4012a930 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_cipher_valid_mgmt_group + 0x4012a930 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_parse_wpa_ie_rsnxe + 0x4012a930 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_parse_wpa_ie_rsn + 0x4012a930 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.wpa_parse_wpa_ie_wpa + 0x4012a930 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_use_akm_defined + 0x4012a930 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_use_aes_key_wrap + 0x4012a934 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x10 (size before relaxing) + .literal.wpa_eapol_key_mic + 0x4012a934 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x2c (size before relaxing) + .literal.wpa_akm_to_suite + 0x4012a934 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x28 (size before relaxing) + .literal.wpa_compare_rsn_ie + 0x4012a93c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.rsn_pmkid + 0x4012a93c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.wpa_pmk_to_ptk + 0x4012a944 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x54 (size before relaxing) + .literal.wpa_cipher_to_suite + 0x4012a944 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x2c (size before relaxing) + .literal.hmac_sha256_kdf + 0x4012a944 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0x28 (size before relaxing) + .literal.dh_groups_get + 0x4012a948 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.wpa_supplicant_verify_eapol_key_mic + 0x4012a94c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2c (size before relaxing) + .literal.is_wpa2_enterprise_connection + 0x4012a94c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_derive_ptk + 0x4012a94c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_check_group_cipher + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_decrypt_key_data + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sm_set_seq + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_install_igtk + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.ieee80211w_set_keys + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_get_key + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_gtk_in_use + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sm_pmksa_free_cb + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpabuf_put_le16 + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_put_data + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.cipher_type_map_supp_to_public + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_eapol_key_send + 0x4012a950 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_key_request + 0x4012a950 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x38 (size before relaxing) + .literal.wpa_sm_rekey_ptk + 0x4012a954 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_send_4_of_4 + 0x4012a954 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_supplicant_send_2_of_2 + 0x4012a954 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_supplicant_send_2_of_4 + 0x4012a954 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_rsn + 0x4012a954 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_wpa + 0x4012a954 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_pairwise_gtk + 0x4012a954 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_report_ie_mismatch + 0x4012a954 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_validate_ie + 0x4012a954 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sm_set_state + 0x4012a954 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_key_neg_complete + 0x4012a958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_set_pmk_from_pmksa + 0x4012a958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_get_pmk + 0x4012a958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x30 (size before relaxing) + .literal.wpa_supplicant_process_1_of_4 + 0x4012a958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x48 (size before relaxing) + .literal.wpa_sm_init + 0x4012a958 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sm_notify_assoc + 0x4012a95c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_set_profile + 0x4012a95c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_set_pmk + 0x4012a95c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_set_passphrase + 0x4012a964 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x48 (size before relaxing) + .literal.set_assoc_ie + 0x4012a964 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sm_set_key + 0x4012a964 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_supplicant_install_ptk + 0x4012a964 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_process_3_of_4 + 0x4012a968 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x30 (size before relaxing) + .literal.wpa_supplicant_install_gtk + 0x4012a968 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2 + 0x4012a968 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_sm_rx_eapol + 0x4012a968 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x44 (size before relaxing) + .literal.wpa_supplicant_activate_ptk + 0x4012a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_send_4_of_4_txcallback + 0x4012a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_supplicant_clr_countermeasures + 0x4012a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_stop_countermeasures + 0x4012a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_michael_mic_failure + 0x4012a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x30 (size before relaxing) + .literal.eapol_txcb + 0x4012a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sta_in_4way_handshake + 0x4012a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sta_cur_pmksa_matches_akm + 0x4012a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sta_clear_curr_pmksa + 0x4012a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.get_wpa_sm + 0x4012a974 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_set_ap_rsnxe + 0x4012a974 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sm_set_assoc_rsnxe + 0x4012a978 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_set_bss + 0x4012a978 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x98 (size before relaxing) + .literal.wpa_sm_drop_sa + 0x4012a988 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_sm_deinit + 0x4012a988 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_notify_disassoc + 0x4012a988 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.owe_build_assoc_req + 0x4012a988 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x34 (size before relaxing) + .literal.owe_process_assoc_resp + 0x4012a988 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x6c (size before relaxing) + .literal.wpa_parse_generic + 0x4012a98c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x18 (size before relaxing) + .literal.wpa_gen_wpa_ie_rsn + 0x4012a990 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x3c (size before relaxing) + .literal.wpa_gen_wpa_ie_wpa + 0x4012a99c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xc (size before relaxing) + .literal.wpa_parse_wpa_ie + 0x4012a99c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xc (size before relaxing) + .literal.wpa_gen_wpa_ie + 0x4012a99c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_gen_rsnxe + 0x4012a99c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_parse_ies + 0x4012a99c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_alloc + 0x4012a99c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_free + 0x4012a99c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_put_data + 0x4012a99c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_alloc_copy + 0x4012a99c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_zeropad + 0x4012a99c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x14 (size before relaxing) + .literal.d_permute + 0x4012a99c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .literal.d_check_char + 0x4012a9a0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x14 (size before relaxing) + .literal.wpabuf_put_data + 0x4012a9a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x8 (size before relaxing) + .literal.sae_pk_valid_password + 0x4012a9a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x18 (size before relaxing) + .literal.sae_pk_base32_decode + 0x4012a9a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0xc (size before relaxing) + .literal.sae_pk_set_password + 0x4012a9a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x24 (size before relaxing) + .literal.sae_hash + 0x4012a9a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4 (size before relaxing) + .literal.sae_pk_valid_fingerprint + 0x4012a9a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x20 (size before relaxing) + .literal.sae_pk_hash_sig_data + 0x4012a9a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x3c (size before relaxing) + .literal.sae_check_confirm_pk + 0x4012a9a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x34 (size before relaxing) + .literal.eap_client_get_eap_state + 0x4012a9a8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.disable_wpa_wpa2 + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_alloc_eapol + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xc (size before relaxing) + .literal.wpa_free_eapol + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ether_send + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_send_eapol + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x18 (size before relaxing) + .literal.wpa_supplicant_transition_disable + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x20 (size before relaxing) + .literal.wpa_sm_alloc_eapol + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_free_eapol + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_deauthenticate + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x8 (size before relaxing) + .literal.crypto_rng_wrapper + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_init + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_init_set + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_init_uint + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_deinit + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_to_bin + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_add + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mod + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_exptmod + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_inverse + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_sub + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_div + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mulmod + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_sqrmod + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_rshift + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_cmp + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_zero + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_one + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_odd + 0x4012a9ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_rand + 0x4012a9ac 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_legendre + 0x4012a9b0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x28 (size before relaxing) + .literal.crypto_bignum_addmod + 0x4012a9b0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.pad_block + 0x4012a9b0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x8 (size before relaxing) + .literal.aes_s2v + 0x4012a9b0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x3c (size before relaxing) + .literal.aes_siv_decrypt + 0x4012a9b4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x14 (size before relaxing) + .literal.ieee802_11_parse_extension + 0x4012a9b4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x10 (size before relaxing) + .literal.ieee802_11_parse_vendor_specific + 0x4012a9b4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0xc (size before relaxing) + .literal.ieee802_11_parse_elems + 0x4012a9b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x8 (size before relaxing) + .literal._pmksa_cache_free_entry + 0x4012a9b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_free_entry + 0x4012a9b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_expiration + 0x4012a9b8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_expire + 0x4012a9bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_flush + 0x4012a9bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_add + 0x4012a9bc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x44 (size before relaxing) + .literal.pmksa_cache_clone_entry + 0x4012a9c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_deinit + 0x4012a9c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x14 (size before relaxing) + .literal.pmksa_cache_get + 0x4012a9c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_get_opportunistic + 0x4012a9c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_current + 0x4012a9c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_init + 0x4012a9c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_spin_lock_create_wrapper + 0x4012a9c0 0xc esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x10 (size before relaxing) + .literal.esp_coex_common_timer_done_wrapper + 0x4012a9cc 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_timer_setfn_wrapper + 0x4012a9cc 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_semphr_create_wrapper + 0x4012a9cc 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_common_semphr_delete_wrapper + 0x4012a9d0 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_common_semphr_take_wrapper + 0x4012a9d4 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x8 (size before relaxing) + .literal.esp_coex_common_semphr_give_wrapper + 0x4012a9d8 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.parse_url_char + 0x4012a9dc 0xc esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .literal.http_parse_host_char + 0x4012a9e8 0x4 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x8 (size before relaxing) + .literal.http_parse_host + 0x4012a9ec 0x14 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x1c (size before relaxing) + .literal.http_should_keep_alive + 0x4012aa00 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x4 (size before relaxing) + .literal.http_parser_execute + 0x4012aa00 0x180 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x298 (size before relaxing) + .literal.http_parser_init + 0x4012ab80 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0xc (size before relaxing) + .literal.http_parser_settings_init + 0x4012ab80 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x4 (size before relaxing) + .literal.http_parser_url_init + 0x4012ab80 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x4 (size before relaxing) + .literal.http_parser_parse_url + 0x4012ab80 0x10 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x24 (size before relaxing) + .literal.http_parser_pause + 0x4012ab90 0x10 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_pk_free + 0x4012aba0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_info_from_type + 0x4012aba0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_setup + 0x4012abb0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_ecc_set_group + 0x4012abb8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_pk_ecc_set_pubkey + 0x4012abbc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x8 (size before relaxing) + .literal.rsa_debug + 0x4012abbc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.eckey_debug + 0x4012abc4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_free_wrap + 0x4012abc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_alloc_wrap + 0x4012abc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_check_pair_wrap + 0x4012abc8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.rsa_encrypt_wrap + 0x4012abc8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_decrypt_wrap + 0x4012abcc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_sign_wrap + 0x4012abd0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_verify_wrap + 0x4012abd4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .literal.rsa_get_bitlen + 0x4012abdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.eckey_free_wrap + 0x4012abdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_alloc_wrap + 0x4012abdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_check_pair_wrap + 0x4012abdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_sign_wrap + 0x4012abdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_verify_wrap + 0x4012abdc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.pk_get_pk_alg + 0x4012abe0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x18 (size before relaxing) + .literal.pk_use_ecparams_rfc8410 + 0x4012abe8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x8 (size before relaxing) + .literal.pk_group_from_specified + 0x4012abe8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x64 (size before relaxing) + .literal.pk_group_id_from_group + 0x4012abf8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x38 (size before relaxing) + .literal.pk_ecc_group_id_from_specified + 0x4012abf8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x20 (size before relaxing) + .literal.pk_use_ecparams + 0x4012abf8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_pk_parse_subpubkey + 0x4012abfc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_pk_parse_public_key + 0x4012ac04 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x74 (size before relaxing) + .literal.pem_check_pkcs_padding + 0x4012ac18 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .literal.pem_get_iv + 0x4012ac1c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x8 (size before relaxing) + .literal.pem_pbkdf1 + 0x4012ac20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x44 (size before relaxing) + .literal.pem_aes_decrypt + 0x4012ac20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_pem_init + 0x4012ac20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pem_read_buffer + 0x4012ac20 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x84 (size before relaxing) + .literal.mbedtls_pem_free + 0x4012ac4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_base64_decode + 0x4012ac4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0xc (size before relaxing) + .literal.s_sleep_hook_register + 0x4012ac4c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x20 (size before relaxing) + .literal.esp_deep_sleep_register_phy_hook + 0x4012ac60 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x8 (size before relaxing) + .literal.ethip6_output + 0x4012ac64 0x4 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x14 (size before relaxing) + .literal._ZdaPv + 0x4012ac68 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + 0x4 (size before relaxing) + .literal._ZdaPvj + 0x4012ac68 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + 0x4 (size before relaxing) + .literal._ZSt15get_new_handlerv + 0x4012ac68 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .literal._ZnajRKSt9nothrow_t + 0x4012ac6c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + 0xc (size before relaxing) + .literal._ZdlPv + 0x4012ac6c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + 0x4 (size before relaxing) + .literal.__cxa_begin_catch + 0x4012ac6c 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x10 (size before relaxing) + .literal.__cxa_end_catch + 0x4012ac74 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x14 (size before relaxing) + .literal._ZL15eh_globals_dtorPv + 0x4012ac74 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x8 (size before relaxing) + .literal.__cxa_get_globals_fast + 0x4012ac74 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x10 (size before relaxing) + .literal.__cxa_get_globals + 0x4012ac80 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x1c (size before relaxing) + .literal.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE + 0x4012ac80 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x10 (size before relaxing) + .literal.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x4012ac84 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0xc (size before relaxing) + .literal._ZN10__cxxabiv111__terminateEPFvvE + 0x4012ac84 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0xc (size before relaxing) + .literal._ZSt13get_terminatev + 0x4012ac84 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZSt9terminatev + 0x4012ac88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x8 (size before relaxing) + .literal._Znaj + 0x4012ac88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + 0x4 (size before relaxing) + .literal._Znwj + 0x4012ac88 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x1c (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x4012ac94 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x4012ac98 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x4012ac98 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x4012ac98 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x4012ac98 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x4012ac98 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNSt9type_infoD0Ev + 0x4012ac98 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x4 (size before relaxing) + .literal._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x4012ac98 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x4 (size before relaxing) + .literal._ZNKSt9bad_alloc4whatEv + 0x4012ac98 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .literal._ZNSt9bad_allocD2Ev + 0x4012ac9c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZNSt9bad_allocD0Ev + 0x4012ac9c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD2Ev + 0x4012ac9c 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD0Ev + 0x4012aca0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x4012aca0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x4012aca0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x4012aca0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x4012aca0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZdlPvj + 0x4012aca0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + 0x4 (size before relaxing) + .literal._ZNKSt9exception4whatEv + 0x4012aca0 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNKSt13bad_exception4whatEv + 0x4012aca4 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNSt9exceptionD0Ev + 0x4012aca8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x4 (size before relaxing) + .literal._ZNSt13bad_exceptionD0Ev + 0x4012aca8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x4 (size before relaxing) + .literal._Z12abort_returnIiET_v + 0x4012aca8 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap__Unwind_DeleteException + 0x4012aca8 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap___gxx_personality_v0 + 0x4012aca8 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap___cxa_allocate_exception + 0x4012aca8 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap___cxa_throw + 0x4012aca8 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal 0x4012aca8 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + 0x20 (size before relaxing) + .literal 0x4012acb4 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + 0x14 (size before relaxing) + .literal 0x4012acb4 0x4c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + 0x98 (size before relaxing) + .literal 0x4012ad00 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + 0x90 (size before relaxing) + .literal 0x4012ad30 0x84 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + 0x184 (size before relaxing) + .literal 0x4012adb4 0x38 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + 0x104 (size before relaxing) + .literal 0x4012adec 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + 0xdc (size before relaxing) + .literal 0x4012adfc 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + 0x24 (size before relaxing) + .literal 0x4012ae08 0x1c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + 0x30 (size before relaxing) + .literal 0x4012ae24 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + 0x48 (size before relaxing) + .literal 0x4012ae54 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + 0xc (size before relaxing) + .literal 0x4012ae54 0x1c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + 0x38 (size before relaxing) + .literal 0x4012ae70 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + 0xc (size before relaxing) + .literal 0x4012ae70 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + 0x24 (size before relaxing) + .literal 0x4012ae7c 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + 0x2c (size before relaxing) + .literal 0x4012ae8c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + 0xc (size before relaxing) + .literal 0x4012ae8c 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + 0x14 (size before relaxing) + .literal 0x4012ae90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + 0xc (size before relaxing) + .literal 0x4012ae90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + 0x8 (size before relaxing) + .literal 0x4012ae90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + 0x10 (size before relaxing) + .literal 0x4012ae90 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + 0x5c (size before relaxing) + .literal 0x4012ae98 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + 0x30 (size before relaxing) + .literal 0x4012ae9c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + 0x4 (size before relaxing) + .literal 0x4012ae9c 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + 0x8 (size before relaxing) + .literal 0x4012aea0 0x5c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + 0x170 (size before relaxing) + .literal 0x4012aefc 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + 0x1a8 (size before relaxing) + .literal 0x4012af38 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + 0x9c (size before relaxing) + .literal 0x4012af5c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + 0xc (size before relaxing) + .literal 0x4012af5c 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + 0x8 (size before relaxing) + .literal 0x4012af60 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + 0xc (size before relaxing) + .literal 0x4012af60 0x54 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + 0x1dc (size before relaxing) + .literal 0x4012afb4 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + 0x4 (size before relaxing) + .literal 0x4012afb4 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + 0xa8 (size before relaxing) + .literal 0x4012afcc 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + 0x74 (size before relaxing) + .literal.esp_partition_write + 0x4012aff0 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x1c (size before relaxing) + .literal.esp_event_handler_register + 0x4012aff8 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_handler_instance_register + 0x4012affc 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_handler_unregister + 0x4012affc 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_handler_instance_unregister + 0x4012affc 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_post + 0x4012affc 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_loop_create_default + 0x4012affc 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x10 (size before relaxing) + .literal.handler_instances_add + 0x4012b000 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x24 (size before relaxing) + .literal.base_node_add_handler + 0x4012b008 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x24 (size before relaxing) + .literal.loop_node_add_handler + 0x4012b00c 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x28 (size before relaxing) + .literal.handler_instances_remove + 0x4012b014 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x10 (size before relaxing) + .literal.base_node_remove_handler + 0x4012b014 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xc (size before relaxing) + .literal.loop_node_remove_handler + 0x4012b014 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x10 (size before relaxing) + .literal.esp_event_loop_create + 0x4012b014 0x2c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x70 (size before relaxing) + .literal.esp_event_loop_run + 0x4012b040 0x20 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x40 (size before relaxing) + .literal.esp_event_loop_run_task + 0x4012b060 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x18 (size before relaxing) + .literal.esp_event_handler_register_with_internal + 0x4012b068 0x10 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x50 (size before relaxing) + .literal.esp_event_handler_register_with + 0x4012b078 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_handler_instance_register_with + 0x4012b078 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_handler_unregister_with_internal + 0x4012b078 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x3c (size before relaxing) + .literal.esp_event_handler_unregister_with + 0x4012b084 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_handler_instance_unregister_with + 0x4012b084 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_post_to + 0x4012b084 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x48 (size before relaxing) + .literal.esp_cpu_intr_get_desc + 0x4012b088 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x14 (size before relaxing) + .literal.periph_ll_get_clk_en_mask + 0x4012b098 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x3c (size before relaxing) + .literal.periph_ll_get_rst_en_mask + 0x4012b0d0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x30 (size before relaxing) + .literal.periph_ll_enable_clk_clear_rst + 0x4012b0d0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x28 (size before relaxing) + .literal.periph_ll_disable_clk_set_rst + 0x4012b0e8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x28 (size before relaxing) + .literal.periph_ll_reset + 0x4012b0e8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x18 (size before relaxing) + .literal.periph_ll_wifi_module_enable_clk_clear_rst + 0x4012b0e8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_ll_wifi_module_disable_clk_set_rst + 0x4012b0e8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_rcc_acquire_enter + 0x4012b0e8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_rcc_acquire_exit + 0x4012b0f0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_module_enable + 0x4012b0f4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.periph_module_disable + 0x4012b108 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.rtc_init + 0x4012b10c 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0xe8 (size before relaxing) + .literal.s_sar_power_acquire + 0x4012b1a4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x28 (size before relaxing) + .literal.s_sar_power_release + 0x4012b1b4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x44 (size before relaxing) + .literal.sar_periph_ctrl_init + 0x4012b1c4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.sar_periph_ctrl_pwdet_power_acquire + 0x4012b1c4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x4 (size before relaxing) + .literal.sar_periph_ctrl_pwdet_power_release + 0x4012b1c4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x4 (size before relaxing) + .literal.sar_periph_ctrl_adc_continuous_power_acquire + 0x4012b1c4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x4 (size before relaxing) + .literal.sar_periph_ctrl_adc_continuous_power_release + 0x4012b1c4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x4 (size before relaxing) + .literal.esp_get_free_heap_size + 0x4012b1c4 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x8 (size before relaxing) + .literal.esp_get_free_internal_heap_size + 0x4012b1c8 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x8 (size before relaxing) + .literal.esp_cpu_intr_enable + 0x4012b1cc 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.esp_cpu_intr_disable + 0x4012b1d0 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.queue_create_wrapper + 0x4012b1d4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_delete_wrapper + 0x4012b1d4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.mutex_delete_wrapper + 0x4012b1d4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_thread_semphr_free + 0x4012b1d4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.get_time_wrapper + 0x4012b1d4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_clock_disable_wrapper + 0x4012b1d4 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_clock_enable_wrapper + 0x4012b1d8 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_reset_mac_wrapper + 0x4012b1dc 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.esp_phy_enable_wrapper + 0x4012b1e0 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.esp_phy_disable_wrapper + 0x4012b1e4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_post_wrapper + 0x4012b1e4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.task_create_wrapper + 0x4012b1e4 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.task_create_pinned_to_core_wrapper + 0x4012b1e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.event_group_wait_bits_wrapper + 0x4012b1e8 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.queue_recv_wrapper + 0x4012b1ec 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.queue_send_to_front_wrapper + 0x4012b1ec 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_to_back_wrapper + 0x4012b1ec 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_wrapper + 0x4012b1ec 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.recursive_mutex_create_wrapper + 0x4012b1ec 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.mutex_create_wrapper + 0x4012b1ec 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_thread_semphr_get_wrapper + 0x4012b1ec 0x18 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x1c (size before relaxing) + .literal.set_isr_wrapper + 0x4012b204 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.set_intr_wrapper + 0x4012b204 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_create_queue + 0x4012b208 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .literal.wifi_create_queue_wrapper + 0x4012b208 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_delete_queue + 0x4012b208 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.wifi_delete_queue_wrapper + 0x4012b208 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_ap_receive + 0x4012b208 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.wifi_driver_start + 0x4012b210 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x10 (size before relaxing) + .literal.wifi_free + 0x4012b21c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.wifi_transmit + 0x4012b21c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_create_if_driver + 0x4012b21c 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_get_if_mac + 0x4012b228 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_register_if_rxcb + 0x4012b228 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x3c (size before relaxing) + .literal.other_cpu_startup_idle_hook_cb + 0x4012b23c 0x4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.main_task + 0x4012b240 0x3c esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x60 (size before relaxing) + .literal.esp_startup_start_app + 0x4012b27c 0x28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x38 (size before relaxing) + .literal.esp_startup_start_app_other_cores + 0x4012b2a4 0x8 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_register_impl + 0x4012b2ac 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_info_impl + 0x4012b2bc 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x24 (size before relaxing) + .literal.control_construct + 0x4012b2d0 0x28 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3c (size before relaxing) + .literal.default_walker + 0x4012b2f8 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + .literal.tlsf_walk_pool + 0x4012b304 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x14 (size before relaxing) + .literal.tlsf_fit_size + 0x4012b314 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_add_pool + 0x4012b314 0x1c esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4c (size before relaxing) + .literal.tlsf_create + 0x4012b330 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.tlsf_create_with_pool + 0x4012b334 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.fix_cache_generation_overflow + 0x4012b334 0xc esp-idf/log/liblog.a(log.c.obj) + .literal.heap_swap + 0x4012b340 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x4 (size before relaxing) + .literal.heap_bubble_down + 0x4012b340 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x8 (size before relaxing) + .literal.add_to_cache + 0x4012b340 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x18 (size before relaxing) + .literal.get_uncached_log_level + 0x4012b344 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x8 (size before relaxing) + .literal.get_cached_log_level + 0x4012b348 0xc esp-idf/log/liblog.a(log.c.obj) + 0x28 (size before relaxing) + .literal.s_log_level_get_and_unlock + 0x4012b354 0xc esp-idf/log/liblog.a(log.c.obj) + 0x18 (size before relaxing) + .literal.clear_log_level_list + 0x4012b360 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x14 (size before relaxing) + .literal.esp_log_level_set + 0x4012b360 0xc esp-idf/log/liblog.a(log.c.obj) + 0x50 (size before relaxing) + .literal.esp_log_writev + 0x4012b36c 0x8 esp-idf/log/liblog.a(log.c.obj) + 0xc (size before relaxing) + .literal.xt_int_has_handler + 0x4012b374 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .literal.xt_set_interrupt_handler + 0x4012b37c 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_read_raw + 0x4012b380 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .text.esp_partition_write + 0x4012b384 0x79 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4012b384 esp_partition_write + *fill* 0x4012b3fd 0x3 + .text.esp_partition_read_raw + 0x4012b400 0x41 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4012b400 esp_partition_read_raw + *fill* 0x4012b441 0x3 + .text.esp_partition_write_raw + 0x4012b444 0x4e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4012b444 esp_partition_write_raw + *fill* 0x4012b492 0x2 + .text.esp_partition_erase_range + 0x4012b494 0x69 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4012b494 esp_partition_erase_range + *fill* 0x4012b4fd 0x3 + .text.esp_partition_mmap + 0x4012b500 0x67 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4012b500 esp_partition_mmap + *fill* 0x4012b567 0x1 + .text.esp_partition_munmap + 0x4012b568 0xa esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xe (size before relaxing) + 0x4012b568 esp_partition_munmap + *fill* 0x4012b572 0x2 + .text.esp_partition_read + 0x4012b574 0x82 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x86 (size before relaxing) + 0x4012b574 esp_partition_read + *fill* 0x4012b5f6 0x2 + .text.esp_partition_is_flash_region_writable + 0x4012b5f8 0x50 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x54 (size before relaxing) + 0x4012b5f8 esp_partition_is_flash_region_writable + .text.esp_partition_main_flash_region_safe + 0x4012b648 0x39 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x3d (size before relaxing) + 0x4012b648 esp_partition_main_flash_region_safe + *fill* 0x4012b681 0x3 + .text.load_partitions + 0x4012b684 0x194 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x198 (size before relaxing) + .text.ensure_partitions_loaded + 0x4012b818 0x54 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x58 (size before relaxing) + .text.iterator_create + 0x4012b86c 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_iterator_release + 0x4012b890 0xe esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4012b890 esp_partition_iterator_release + *fill* 0x4012b89e 0x2 + .text.esp_partition_next + 0x4012b8a0 0x8a esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4012b8a0 esp_partition_next + *fill* 0x4012b92a 0x2 + .text.esp_partition_find + 0x4012b92c 0x3c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x44 (size before relaxing) + 0x4012b92c esp_partition_find + .text.esp_partition_get + 0x4012b968 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4012b968 esp_partition_get + .text.esp_ota_get_running_partition + 0x4012b984 0x80 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x8f (size before relaxing) + 0x4012b984 esp_ota_get_running_partition + *fill* 0x4012ba04 0x0 + .text.clk_hal_lp_slow_get_freq_hz + 0x4012ba04 0x3d esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x4012ba04 clk_hal_lp_slow_get_freq_hz + *fill* 0x4012ba41 0x3 + .text.clk_hal_xtal_get_freq_mhz + 0x4012ba44 0x33 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x4012ba44 clk_hal_xtal_get_freq_mhz + *fill* 0x4012ba77 0x1 + .text.clk_hal_apll_get_freq_hz + 0x4012ba78 0x88 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x8c (size before relaxing) + 0x4012ba78 clk_hal_apll_get_freq_hz + .text.clk_hal_soc_root_get_freq_mhz + 0x4012bb00 0x6c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x70 (size before relaxing) + 0x4012bb00 clk_hal_soc_root_get_freq_mhz + .text.clk_hal_cpu_get_freq_hz + 0x4012bb6c 0xc2 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x4012bb6c clk_hal_cpu_get_freq_hz + *fill* 0x4012bc2e 0x2 + .text.clk_hal_ahb_get_freq_hz + 0x4012bc30 0x2d esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x31 (size before relaxing) + 0x4012bc30 clk_hal_ahb_get_freq_hz + *fill* 0x4012bc5d 0x3 + .text.clk_hal_apb_get_freq_hz + 0x4012bc60 0xa esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0xd (size before relaxing) + 0x4012bc60 clk_hal_apb_get_freq_hz + *fill* 0x4012bc6a 0x2 + .text.mpi_ll_write_to_mem_block + 0x4012bc6c 0x3d esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x4012bca9 0x3 + .text.mpi_ll_clear_power_control_bit + 0x4012bcac 0x1a esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x4012bcc6 0x2 + .text.mpi_ll_set_power_control_bit + 0x4012bcc8 0x1a esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x4012bce2 0x2 + .text.mpi_ll_read_from_mem_block + 0x4012bce4 0x3e esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x4012bd22 0x2 + .text.mpi_hal_enable_hardware_hw_op + 0x4012bd24 0x17 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4012bd24 mpi_hal_enable_hardware_hw_op + *fill* 0x4012bd3b 0x1 + .text.mpi_hal_disable_hardware_hw_op + 0x4012bd3c 0x8 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0xb (size before relaxing) + 0x4012bd3c mpi_hal_disable_hardware_hw_op + *fill* 0x4012bd44 0x0 + .text.mpi_hal_clear_interrupt + 0x4012bd44 0xf esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4012bd44 mpi_hal_clear_interrupt + *fill* 0x4012bd53 0x1 + .text.mpi_hal_set_mode + 0x4012bd54 0xd esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4012bd54 mpi_hal_set_mode + *fill* 0x4012bd61 0x3 + .text.mpi_hal_write_to_mem_block + 0x4012bd64 0x12 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x16 (size before relaxing) + 0x4012bd64 mpi_hal_write_to_mem_block + *fill* 0x4012bd76 0x2 + .text.mpi_hal_write_at_offset + 0x4012bd78 0x14 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4012bd78 mpi_hal_write_at_offset + .text.mpi_hal_write_m_prime + 0x4012bd8c 0xd esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4012bd8c mpi_hal_write_m_prime + *fill* 0x4012bd99 0x3 + .text.mpi_hal_write_rinv + 0x4012bd9c 0xf esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4012bd9c mpi_hal_write_rinv + *fill* 0x4012bdab 0x1 + .text.mpi_hal_start_op + 0x4012bdac 0x1a esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4012bdac mpi_hal_start_op + *fill* 0x4012bdc6 0x2 + .text.mpi_hal_wait_op_complete + 0x4012bdc8 0x14 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x17 (size before relaxing) + 0x4012bdc8 mpi_hal_wait_op_complete + *fill* 0x4012bddc 0x0 + .text.mpi_hal_read_result_hw_op + 0x4012bddc 0x13 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x17 (size before relaxing) + 0x4012bddc mpi_hal_read_result_hw_op + *fill* 0x4012bdef 0x1 + .text.sha_ll_busy + 0x4012bdf0 0x48 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_ll_read_digest + 0x4012be38 0x5a esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x5e (size before relaxing) + *fill* 0x4012be92 0x2 + .text.sha_hal_wait_idle + 0x4012be94 0xb esp-idf/hal/libhal.a(sha_hal.c.obj) + 0xe (size before relaxing) + 0x4012be94 sha_hal_wait_idle + *fill* 0x4012be9f 0x1 + .text.sha_hal_hash_block + 0x4012bea0 0x4e esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x4012bea0 sha_hal_hash_block + *fill* 0x4012beee 0x2 + .text.sha_hal_read_digest + 0x4012bef0 0x60 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x64 (size before relaxing) + 0x4012bef0 sha_hal_read_digest + .text.aes_ll_write_key + 0x4012bf50 0x50 esp-idf/hal/libhal.a(aes_hal.c.obj) + .text.aes_hal_wait_idle + 0x4012bfa0 0x11 esp-idf/hal/libhal.a(aes_hal.c.obj) + *fill* 0x4012bfb1 0x3 + .text.aes_hal_setkey + 0x4012bfb4 0x30 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x4012bfb4 aes_hal_setkey + .text.aes_hal_transform_block + 0x4012bfe4 0x46 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x4a (size before relaxing) + 0x4012bfe4 aes_hal_transform_block + *fill* 0x4012c02a 0x2 + .text.esp_dport_access_read_buffer + 0x4012c02c 0x27 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x4012c02c esp_dport_access_read_buffer + *fill* 0x4012c053 0x1 + .text.esp_fill_random + 0x4012c054 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x4012c054 esp_fill_random + *fill* 0x4012c08e 0x2 + .text.get_idx 0x4012c090 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x4012c0ce 0x2 + .text.generate_mac + 0x4012c0d0 0x91 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x4012c161 0x3 + .text.get_efuse_mac_custom + 0x4012c164 0x8b esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x93 (size before relaxing) + *fill* 0x4012c1ef 0x1 + .text.get_efuse_factory_mac + 0x4012c1f0 0xaa esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0xb6 (size before relaxing) + *fill* 0x4012c29a 0x2 + .text.get_mac_addr_from_mac_table + 0x4012c29c 0xaa esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0xae (size before relaxing) + *fill* 0x4012c346 0x2 + .text.esp_efuse_mac_get_default + 0x4012c348 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x10 (size before relaxing) + 0x4012c348 esp_efuse_mac_get_default + .text.esp_read_mac + 0x4012c354 0xc6 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0xd6 (size before relaxing) + 0x4012c354 esp_read_mac + *fill* 0x4012c41a 0x2 + .text.esp_crypto_mpi_lock_acquire + 0x4012c41c 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x4012c41c esp_crypto_mpi_lock_acquire + *fill* 0x4012c42a 0x2 + .text.esp_crypto_mpi_lock_release + 0x4012c42c 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x4012c42c esp_crypto_mpi_lock_release + *fill* 0x4012c43a 0x2 + .text.ets_timer_setfn + 0x4012c43c 0x5a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x4012c43c ets_timer_setfn + 0x4012c43c os_timer_setfn + *fill* 0x4012c496 0x2 + .text.ets_timer_done + 0x4012c498 0x1a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x1e (size before relaxing) + 0x4012c498 os_timer_done + 0x4012c498 ets_timer_done + *fill* 0x4012c4b2 0x2 + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_ET_SA_SA_T0_ + 0x4012c4b4 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .text._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x4012c4c4 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x4012c4e6 0x2 + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZ9nvs_closeEUlRS1_E_ET_S6_S6_T0_ + 0x4012c4e8 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .text._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x4012c4f8 0x67 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x6e (size before relaxing) + *fill* 0x4012c55f 0x1 + .text.nvs_erase_key + 0x4012c560 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + 0x4012c560 nvs_erase_key + *fill* 0x4012c587 0x1 + .text.nvs_commit + 0x4012c588 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x30 (size before relaxing) + 0x4012c588 nvs_commit + *fill* 0x4012c5ad 0x3 + .text.nvs_set_blob + 0x4012c5b0 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x36 (size before relaxing) + 0x4012c5b0 nvs_set_blob + *fill* 0x4012c5db 0x1 + .text.nvs_get_blob + 0x4012c5dc 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + 0x4012c5dc nvs_get_blob + .text.nvs_close + 0x4012c5f0 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x52 (size before relaxing) + 0x4012c5f0 nvs_close + *fill* 0x4012c632 0x2 + .text.nvs_open_from_partition + 0x4012c634 0x6f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x82 (size before relaxing) + 0x4012c634 nvs_open_from_partition + *fill* 0x4012c6a3 0x1 + .text.nvs_open + 0x4012c6a4 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4012c6a4 nvs_open + *fill* 0x4012c6ba 0x2 + .text._Z7nvs_setIaEimPKcT_ + 0x4012c6bc 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x36 (size before relaxing) + *fill* 0x4012c6e7 0x1 + .text.nvs_set_i8 + 0x4012c6e8 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4012c6e8 nvs_set_i8 + .text._Z7nvs_setIhEimPKcT_ + 0x4012c6fc 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4012c723 0x1 + .text.nvs_set_u8 + 0x4012c724 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4012c724 nvs_set_u8 + .text._Z7nvs_setItEimPKcT_ + 0x4012c738 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4012c75f 0x1 + .text.nvs_set_u16 + 0x4012c760 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4012c760 nvs_set_u16 + .text._Z7nvs_setImEimPKcT_ + 0x4012c774 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4012c79b 0x1 + .text.nvs_set_u32 + 0x4012c79c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x4012c79c nvs_set_u32 + .text._Z7nvs_getIaEimPKcPT_ + 0x4012c7ac 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4012c7d3 0x1 + .text.nvs_get_i8 + 0x4012c7d4 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x4012c7d4 nvs_get_i8 + .text._Z7nvs_getIhEimPKcPT_ + 0x4012c7e4 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4012c80b 0x1 + .text.nvs_get_u8 + 0x4012c80c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x4012c80c nvs_get_u8 + .text._Z7nvs_getItEimPKcPT_ + 0x4012c81c 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4012c843 0x1 + .text.nvs_get_u16 + 0x4012c844 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x4012c844 nvs_get_u16 + .text._Z7nvs_getImEimPKcPT_ + 0x4012c854 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + *fill* 0x4012c87b 0x1 + .text.nvs_get_u32 + 0x4012c87c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x4012c87c nvs_get_u32 + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_EEET_SG_SG_T0_St18input_iterator_tag + 0x4012c88c 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x4012c8aa 0x2 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_ET_SC_SC_T0_ + 0x4012c8ac 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x4012c8c1 0x3 + .text._ZN3nvs4Item6getKeyEPcj + 0x4012c8c4 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4012c8c4 nvs::Item::getKey(char*, unsigned int) + *fill* 0x4012c8f1 0x3 + .text._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x4012c8f4 0x47 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4b (size before relaxing) + 0x4012c8f4 nvs::Storage::findItem(unsigned char, nvs::ItemType, char const*, nvs::Page*&, nvs::Item&, unsigned char, nvs::VerOffset) + *fill* 0x4012c93b 0x1 + .text._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x4012c93c 0xc4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xcc (size before relaxing) + 0x4012c93c nvs::Storage::cmpMultiPageBlob(unsigned char, char const*, void const*, unsigned int) + .text._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x4012ca00 0x10c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x120 (size before relaxing) + 0x4012ca00 nvs::Storage::eraseMultiPageBlob(unsigned char, char const*, nvs::VerOffset) + .text._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x4012cb0c 0x110 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4012cb0c nvs::Storage::readMultiPageBlob(unsigned char, char const*, void*, unsigned int) + .text._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x4012cc1c 0x66 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x6e (size before relaxing) + 0x4012cc1c nvs::Storage::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int) + *fill* 0x4012cc82 0x2 + .text._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x4012cc84 0x9a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x9e (size before relaxing) + 0x4012cc84 nvs::Storage::eraseItem(unsigned char, nvs::ItemType, char const*) + *fill* 0x4012cd1e 0x2 + .text._ZN3nvs7Storage14eraseNamespaceEh + 0x4012cd20 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4012cd20 nvs::Storage::eraseNamespace(unsigned char) + *fill* 0x4012cd63 0x1 + .text._ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE + 0x4012cd64 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x3e (size before relaxing) + 0x4012cd64 nvs::Storage::findKey(unsigned char, char const*, nvs::ItemType*) + *fill* 0x4012cd9e 0x2 + .text._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x4012cda0 0x6a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x6e (size before relaxing) + 0x4012cda0 nvs::Storage::getItemDataSize(unsigned char, nvs::ItemType, char const*, unsigned int&) + *fill* 0x4012ce0a 0x2 + .text._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x4012ce0c 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x64 (size before relaxing) + 0x4012ce0c nvs::Storage::calcEntriesInNamespace(unsigned char, unsigned int&) + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x4012ce6c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4012ce6c intrusive_list::clearAndFreeNodes() + *fill* 0x4012ce8d 0x3 + .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x4012ce90 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x3e (size before relaxing) + 0x4012ce90 std::enable_if::value, void>::type std::default_delete::operator()(nvs::Page*) const + *fill* 0x4012ceca 0x2 + .text._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev + 0x4012cecc 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x16 (size before relaxing) + 0x4012cecc std::unique_ptr >::~unique_ptr() + 0x4012cecc std::unique_ptr >::~unique_ptr() + *fill* 0x4012cede 0x2 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x4012cee0 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4012cee0 intrusive_list::clearAndFreeNodes() + *fill* 0x4012cf01 0x3 + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x4012cf04 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4012cf04 intrusive_list::clearAndFreeNodes() + *fill* 0x4012cf25 0x3 + .text._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x4012cf28 0x1dd esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x1e9 (size before relaxing) + 0x4012cf28 nvs::Storage::writeMultiPageBlob(unsigned char, char const*, void const*, unsigned int, nvs::VerOffset) + *fill* 0x4012d105 0x3 + .text._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x4012d108 0x272 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x29a (size before relaxing) + 0x4012d108 nvs::Storage::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int) + *fill* 0x4012d37a 0x2 + .text._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x4012d37c 0xd2 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xde (size before relaxing) + 0x4012d37c nvs::Storage::createOrOpenNamespace(char const*, bool, unsigned char&) + *fill* 0x4012d44e 0x2 + .text._ZN3nvs15NVSHandleSimple6commitEv + 0x4012d450 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4012d450 nvs::NVSHandleSimple::commit() + *fill* 0x4012d462 0x2 + .text._ZN3nvs15NVSHandleSimpleD2Ev + 0x4012d464 0x19 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x1d (size before relaxing) + 0x4012d464 nvs::NVSHandleSimple::~NVSHandleSimple() + 0x4012d464 nvs::NVSHandleSimple::~NVSHandleSimple() + *fill* 0x4012d47d 0x3 + .text._ZN3nvs15NVSHandleSimpleD0Ev + 0x4012d480 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x16 (size before relaxing) + 0x4012d480 nvs::NVSHandleSimple::~NVSHandleSimple() + *fill* 0x4012d492 0x2 + .text._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x4012d494 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4012d494 nvs::NVSHandleSimple::set_typed_item(nvs::ItemType, char const*, void const*, unsigned int) + *fill* 0x4012d4c9 0x3 + .text._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x4012d4cc 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4012d4cc nvs::NVSHandleSimple::set_blob(char const*, void const*, unsigned int) + *fill* 0x4012d4fd 0x3 + .text._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x4012d500 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4012d500 nvs::NVSHandleSimple::get_typed_item(nvs::ItemType, char const*, void*, unsigned int) + *fill* 0x4012d526 0x2 + .text._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x4012d528 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x26 (size before relaxing) + 0x4012d528 nvs::NVSHandleSimple::get_string(char const*, char*, unsigned int) + *fill* 0x4012d54a 0x2 + .text._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x4012d54c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x26 (size before relaxing) + 0x4012d54c nvs::NVSHandleSimple::get_blob(char const*, void*, unsigned int) + *fill* 0x4012d56e 0x2 + .text._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x4012d570 0x3d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4012d570 nvs::NVSHandleSimple::set_string(char const*, char const*) + *fill* 0x4012d5ad 0x3 + .text._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x4012d5b0 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4012d5b0 nvs::NVSHandleSimple::get_item_size(nvs::ItemType, char const*, unsigned int&) + *fill* 0x4012d5d5 0x3 + .text._ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t + 0x4012d5d8 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x49 (size before relaxing) + 0x4012d5d8 nvs::NVSHandleSimple::find_key(char const*, nvs_type_t&) + *fill* 0x4012d61d 0x3 + .text._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x4012d620 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4012d620 nvs::NVSHandleSimple::erase_item(char const*) + *fill* 0x4012d651 0x3 + .text._ZN3nvs15NVSHandleSimple9erase_allEv + 0x4012d654 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4012d654 nvs::NVSHandleSimple::erase_all() + *fill* 0x4012d67d 0x3 + .text._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x4012d680 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4012d680 nvs::NVSHandleSimple::get_used_entry_count(unsigned int&) + *fill* 0x4012d6aa 0x2 + .text._ZN3nvs12NVSPartitionD2Ev + 0x4012d6ac 0xf esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4012d6ac nvs::NVSPartition::~NVSPartition() + 0x4012d6ac nvs::NVSPartition::~NVSPartition() + *fill* 0x4012d6bb 0x1 + .text._ZN3nvs12NVSPartition8read_rawEjPvj + 0x4012d6bc 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4012d6bc nvs::NVSPartition::read_raw(unsigned int, void*, unsigned int) + *fill* 0x4012d6d1 0x3 + .text._ZN3nvs12NVSPartition4readEjPvj + 0x4012d6d4 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4012d6d4 nvs::NVSPartition::read(unsigned int, void*, unsigned int) + *fill* 0x4012d6f5 0x3 + .text._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x4012d6f8 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4012d6f8 nvs::NVSPartition::write_raw(unsigned int, void const*, unsigned int) + *fill* 0x4012d70d 0x3 + .text._ZN3nvs12NVSPartition5writeEjPKvj + 0x4012d710 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4012d710 nvs::NVSPartition::write(unsigned int, void const*, unsigned int) + *fill* 0x4012d731 0x3 + .text._ZN3nvs12NVSPartition11erase_rangeEjj + 0x4012d734 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x14 (size before relaxing) + 0x4012d734 nvs::NVSPartition::erase_range(unsigned int, unsigned int) + .text._ZN3nvs12NVSPartitionD0Ev + 0x4012d744 0x17 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4012d744 nvs::NVSPartition::~NVSPartition() + *fill* 0x4012d75b 0x1 + .text._ZN3nvs19NVSPartitionManagerD2Ev + 0x4012d75c 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4012d75c nvs::NVSPartitionManager::~NVSPartitionManager() + 0x4012d75c nvs::NVSPartitionManager::~NVSPartitionManager() + *fill* 0x4012d766 0x2 + .text._ZN3nvs19NVSPartitionManagerD0Ev + 0x4012d768 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4012d768 nvs::NVSPartitionManager::~NVSPartitionManager() + *fill* 0x4012d77a 0x2 + .text._ZZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKcENKUlRNS_7StorageEE_clES4_ + 0x4012d77c 0x1d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + *fill* 0x4012d799 0x3 + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_EEET_SE_SE_T0_St18input_iterator_tag + 0x4012d79c 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + *fill* 0x4012d7ba 0x2 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_ET_SA_SA_T0_ + 0x4012d7bc 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + *fill* 0x4012d7d1 0x3 + .text._ZN3nvs7StorageC2EPNS_9PartitionE + 0x4012d7d4 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4012d7d4 nvs::Storage::Storage(nvs::Partition*) + 0x4012d7d4 nvs::Storage::Storage(nvs::Partition*) + *fill* 0x4012d802 0x2 + .text._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x4012d804 0x39 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4012d804 nvs::NVSPartitionManager::get_instance() + *fill* 0x4012d83d 0x3 + .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x4012d840 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x14 (size before relaxing) + 0x4012d840 nvs::NVSPartitionManager::lookup_storage_from_name(char const*) + .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x4012d850 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4012d850 nvs::NVSPartitionManager::close_handle(nvs::NVSHandleSimple*) + *fill* 0x4012d875 0x3 + .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x4012d878 0xa6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xb2 (size before relaxing) + 0x4012d878 nvs::NVSPartitionManager::open_handle(char const*, char const*, nvs_open_mode_t, nvs::NVSHandleSimple**) + *fill* 0x4012d91e 0x2 + .text._ZN3nvs4LockC2Ev + 0x4012d920 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x4012d920 nvs::Lock::Lock() + 0x4012d920 nvs::Lock::Lock() + *fill* 0x4012d92e 0x2 + .text._ZN3nvs4LockD2Ev + 0x4012d930 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x4012d930 nvs::Lock::~Lock() + 0x4012d930 nvs::Lock::~Lock() + *fill* 0x4012d93e 0x2 + .text._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x4012d940 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4a (size before relaxing) + 0x4012d940 nvs::HashList::find(unsigned int, nvs::Item const&) + *fill* 0x4012d986 0x2 + .text._ZN3nvs8HashList5clearEv + 0x4012d988 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4012d988 nvs::HashList::clear() + *fill* 0x4012d9ad 0x3 + .text._ZN3nvs8HashListD2Ev + 0x4012d9b0 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0xe (size before relaxing) + 0x4012d9b0 nvs::HashList::~HashList() + 0x4012d9b0 nvs::HashList::~HashList() + *fill* 0x4012d9ba 0x2 + .text._ZN3nvs8HashList5eraseEj + 0x4012d9bc 0x6a esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x6e (size before relaxing) + 0x4012d9bc nvs::HashList::erase(unsigned int) + *fill* 0x4012da26 0x2 + .text._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x4012da28 0x69 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x71 (size before relaxing) + 0x4012da28 nvs::HashList::insert(nvs::Item const&, unsigned int) + *fill* 0x4012da91 0x3 + .text._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x4012da94 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4012da94 nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) + 0x4012da94 nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) + .text._ZN3nvs4Page6Header14calculateCrc32Ev + 0x4012dae4 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4012dae4 nvs::Page::Header::calculateCrc32() + .text._ZN3nvs4Page10initializeEv + 0x4012daf8 0x71 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x75 (size before relaxing) + 0x4012daf8 nvs::Page::initialize() + *fill* 0x4012db69 0x3 + .text._ZNK3nvs4Page12getSeqNumberERm + 0x4012db6c 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4012db6c nvs::Page::getSeqNumber(unsigned long&) const + *fill* 0x4012db99 0x3 + .text._ZN3nvs4Page12setSeqNumberEm + 0x4012db9c 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4012db9c nvs::Page::setSeqNumber(unsigned long) + *fill* 0x4012dbb1 0x3 + .text._ZN3nvs4Page5eraseEv + 0x4012dbb4 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4012dbb4 nvs::Page::erase() + *fill* 0x4012dbef 0x1 + .text._ZN3nvs4Page11markFreeingEv + 0x4012dbf0 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4012dbf0 nvs::Page::markFreeing() + *fill* 0x4012dc1d 0x3 + .text._ZN3nvs4Page8markFullEv + 0x4012dc20 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4012dc20 nvs::Page::markFull() + *fill* 0x4012dc3e 0x2 + .text._ZNK3nvs4Page18getVarDataTailroomEv + 0x4012dc40 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4012dc40 nvs::Page::getVarDataTailroom() const + *fill* 0x4012dc71 0x3 + .text._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x4012dc74 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x50 (size before relaxing) + 0x4012dc74 nvs::Page::alterEntryState(unsigned int, nvs::Page::EntryState) + .text._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x4012dcc0 0x5e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4012dcc0 nvs::Page::writeEntry(nvs::Item const&) + *fill* 0x4012dd1e 0x2 + .text._ZN3nvs4Page9copyItemsERS0_ + 0x4012dd20 0xb0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc0 (size before relaxing) + 0x4012dd20 nvs::Page::copyItems(nvs::Page&) + .text._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x4012ddd0 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4012ddd0 nvs::Page::alterEntryRangeState(unsigned int, unsigned int, nvs::Page::EntryState) + .text._ZN3nvs4Page14writeEntryDataEPKhj + 0x4012de40 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4012de40 nvs::Page::writeEntryData(unsigned char const*, unsigned int) + *fill* 0x4012debe 0x2 + .text._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x4012dec0 0x1c4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1e0 (size before relaxing) + 0x4012dec0 nvs::Page::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char) + .text._ZN3nvs4Page17eraseEntryAndSpanEj + 0x4012e084 0x12a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x13e (size before relaxing) + 0x4012e084 nvs::Page::eraseEntryAndSpan(unsigned int) + *fill* 0x4012e1ae 0x2 + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x4012e1b0 0x277 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x27f (size before relaxing) + 0x4012e1b0 nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned int&, nvs::Item&, unsigned char, nvs::VerOffset) + *fill* 0x4012e427 0x1 + .text._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x4012e428 0xfd esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x101 (size before relaxing) + 0x4012e428 nvs::Page::cmpItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char, nvs::VerOffset) + *fill* 0x4012e525 0x3 + .text._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x4012e528 0xf5 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xfd (size before relaxing) + 0x4012e528 nvs::Page::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int, unsigned char, nvs::VerOffset) + *fill* 0x4012e61d 0x3 + .text._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x4012e620 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x3e (size before relaxing) + 0x4012e620 nvs::Page::eraseItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) + *fill* 0x4012e65a 0x2 + .text._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x4012e65c 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4012e65c intrusive_list::clear() + *fill* 0x4012e671 0x3 + .text._ZN3nvs11PageManager12activatePageEv + 0x4012e674 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4e (size before relaxing) + 0x4012e674 nvs::PageManager::activatePage() + *fill* 0x4012e6b6 0x2 + .text._ZN3nvs11PageManager14requestNewPageEv + 0x4012e6b8 0xaa esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0xbe (size before relaxing) + 0x4012e6b8 nvs::PageManager::requestNewPage() + *fill* 0x4012e762 0x2 + .text._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x4012e764 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x38 (size before relaxing) + 0x4012e764 intrusive_list::insert(intrusive_list::iterator, nvs::Page*) + .text._ZNK3nvs4Item14calculateCrc32Ev + 0x4012e798 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4012e798 nvs::Item::calculateCrc32() const + .text._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x4012e7c4 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4012e7c4 nvs::Item::calculateCrc32WithoutValue() const + .text._ZN3nvs4Item14calculateCrc32EPKhj + 0x4012e7ec 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4012e7ec nvs::Item::calculateCrc32(unsigned char const*, unsigned int) + .text._ZN3nvs21NVSEncryptedPartitionD2Ev + 0x4012e800 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x4012e800 nvs::NVSEncryptedPartition::~NVSEncryptedPartition() + 0x4012e800 nvs::NVSEncryptedPartition::~NVSEncryptedPartition() + .text._ZN3nvs21NVSEncryptedPartition4readEjPvj + 0x4012e814 0x57 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x5b (size before relaxing) + 0x4012e814 nvs::NVSEncryptedPartition::read(unsigned int, void*, unsigned int) + *fill* 0x4012e86b 0x1 + .text._ZN3nvs21NVSEncryptedPartition5writeEjPKvj + 0x4012e86c 0x85 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x99 (size before relaxing) + 0x4012e86c nvs::NVSEncryptedPartition::write(unsigned int, void const*, unsigned int) + *fill* 0x4012e8f1 0x3 + .text._ZN3nvs21NVSEncryptedPartitionD0Ev + 0x4012e8f4 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x4012e8f4 nvs::NVSEncryptedPartition::~NVSEncryptedPartition() + .text.lib_printf + 0x4012e910 0x73 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + *fill* 0x4012e983 0x1 + .text.phy_printf + 0x4012e984 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x4012e984 phy_printf + *fill* 0x4012e9ae 0x2 + .text.net80211_printf + 0x4012e9b0 0x2a esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x4012e9b0 net80211_printf + *fill* 0x4012e9da 0x2 + .text.phy_update_wifi_mac_time + 0x4012e9dc 0x2a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x4012ea06 0x2 + .text.load_cal_data_from_nvs_handle + 0x4012ea08 0x128 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x138 (size before relaxing) + .text.store_cal_data_to_nvs_handle + 0x4012eb30 0xea esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xfa (size before relaxing) + *fill* 0x4012ec1a 0x2 + .text.esp_phy_disable + 0x4012ec1c 0x3e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x46 (size before relaxing) + 0x4012ec1c esp_phy_disable + *fill* 0x4012ec5a 0x2 + .text.esp_wifi_bt_power_domain_off + 0x4012ec5c 0x48 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4012ec5c esp_wifi_bt_power_domain_off + 0x4012ec5c esp_wifi_power_domain_off + .text.esp_phy_get_init_data + 0x4012eca4 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4012eca4 esp_phy_get_init_data + .text.esp_phy_load_cal_data_from_nvs + 0x4012ecac 0x4c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x50 (size before relaxing) + 0x4012ecac esp_phy_load_cal_data_from_nvs + .text.esp_phy_store_cal_data_to_nvs + 0x4012ecf8 0x24 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x2c (size before relaxing) + 0x4012ecf8 esp_phy_store_cal_data_to_nvs + .text.esp_phy_load_cal_and_init + 0x4012ed1c 0x153 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x16b (size before relaxing) + 0x4012ed1c esp_phy_load_cal_and_init + *fill* 0x4012ee6f 0x1 + .text.esp_phy_enable + 0x4012ee70 0x61 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x6f (size before relaxing) + 0x4012ee70 esp_phy_enable + *fill* 0x4012eed1 0x3 + .text.phy_set_modem_flag + 0x4012eed4 0x1d esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4012eed4 phy_set_modem_flag + *fill* 0x4012eef1 0x3 + .text.phy_clr_modem_flag + 0x4012eef4 0x1d esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4012eef4 phy_clr_modem_flag + *fill* 0x4012ef11 0x3 + .text.phy_get_modem_flag + 0x4012ef14 0x11 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4012ef14 phy_get_modem_flag + *fill* 0x4012ef25 0x3 + .text.add_offer_options + 0x4012ef28 0x186 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x18a (size before relaxing) + *fill* 0x4012f0ae 0x2 + .text.kill_oldest_dhcps_pool + 0x4012f0b0 0x6a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x4012f11a 0x2 + .text.parse_options + 0x4012f11c 0x8d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x4012f1a9 0x3 + .text.create_msg + 0x4012f1ac 0x36 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x4012f1e2 0x2 + .text.dhcps_response_ip_set + 0x4012f1e4 0x82 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x86 (size before relaxing) + *fill* 0x4012f266 0x2 + .text.dhcps_poll_set + 0x4012f268 0xdf esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x4012f347 0x1 + .text.dhcps_new + 0x4012f348 0x36 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4012f348 dhcps_new + *fill* 0x4012f37e 0x2 + .text.dhcps_delete + 0x4012f380 0x1e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4012f380 dhcps_delete + *fill* 0x4012f39e 0x2 + .text.dhcps_tmr + 0x4012f3a0 0x76 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x4012f416 0x2 + .text.parse_msg + 0x4012f418 0x1b4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c4 (size before relaxing) + .text.dhcps_pbuf_alloc + 0x4012f5cc 0x1d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4012f5cc dhcps_pbuf_alloc + *fill* 0x4012f5e9 0x3 + .text.send_offer + 0x4012f5ec 0x8f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xa7 (size before relaxing) + *fill* 0x4012f67b 0x1 + .text.send_ack + 0x4012f67c 0xa4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xbb (size before relaxing) + *fill* 0x4012f720 0x0 + .text.send_nak + 0x4012f720 0xb3 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xcb (size before relaxing) + *fill* 0x4012f7d3 0x1 + .text.handle_dhcp + 0x4012f7d4 0xd0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xdf (size before relaxing) + *fill* 0x4012f8a4 0x0 + .text.dhcps_start + 0x4012f8a4 0xc6 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xda (size before relaxing) + 0x4012f8a4 dhcps_start + *fill* 0x4012f96a 0x2 + .text.dhcps_stop + 0x4012f96c 0x79 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x81 (size before relaxing) + 0x4012f96c dhcps_stop + *fill* 0x4012f9e5 0x3 + .text.esp_netif_action_start + 0x4012f9e8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x4012f9e8 esp_netif_action_start + *fill* 0x4012f9f2 0x2 + .text.esp_netif_action_stop + 0x4012f9f4 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x4012f9f4 esp_netif_action_stop + *fill* 0x4012f9fe 0x2 + .text.esp_netif_action_connected + 0x4012fa00 0x11a esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x136 (size before relaxing) + 0x4012fa00 esp_netif_action_connected + *fill* 0x4012fb1a 0x2 + .text.esp_netif_action_disconnected + 0x4012fb1c 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x4012fb1c esp_netif_action_disconnected + *fill* 0x4012fb26 0x2 + .text.esp_netif_action_got_ip + 0x4012fb28 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x66 (size before relaxing) + 0x4012fb28 esp_netif_action_got_ip + *fill* 0x4012fb8a 0x2 + .text.low_level_output + 0x4012fb8c 0x81 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x8d (size before relaxing) + *fill* 0x4012fc0d 0x3 + .text.wlanif_input + 0x4012fc10 0x4f esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x57 (size before relaxing) + 0x4012fc10 wlanif_input + *fill* 0x4012fc5f 0x1 + .text.wlanif_init + 0x4012fc60 0x48 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4c (size before relaxing) + 0x4012fc60 wlanif_init + .text.wlanif_init_sta + 0x4012fca8 0x19 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x1d (size before relaxing) + 0x4012fca8 wlanif_init_sta + *fill* 0x4012fcc1 0x3 + .text.esp_pbuf_free + 0x4012fcc4 0x13 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x17 (size before relaxing) + *fill* 0x4012fcd7 0x1 + .text.esp_pbuf_allocate + 0x4012fcd8 0x38 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x40 (size before relaxing) + 0x4012fcd8 esp_pbuf_allocate + .text.wpa_attach + 0x4012fd10 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x28 (size before relaxing) + 0x4012fd10 wpa_attach + *fill* 0x4012fd31 0x3 + .text.wpa_config_done + 0x4012fd34 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb (size before relaxing) + 0x4012fd34 wpa_config_done + *fill* 0x4012fd3c 0x0 + .text.wpa_ap_get_wpa_ie + 0x4012fd3c 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x32 (size before relaxing) + 0x4012fd3c wpa_ap_get_wpa_ie + *fill* 0x4012fd6a 0x2 + .text.wpa_ap_rx_eapol + 0x4012fd6c 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x2d (size before relaxing) + 0x4012fd6c wpa_ap_rx_eapol + *fill* 0x4012fd95 0x3 + .text.wpa_deattach + 0x4012fd98 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x32 (size before relaxing) + 0x4012fd98 wpa_deattach + *fill* 0x4012fdc6 0x2 + .text.wpa_parse_wpa_ie_wrapper + 0x4012fdc8 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x48 (size before relaxing) + 0x4012fdc8 wpa_parse_wpa_ie_wrapper + .text.hostap_sta_join + 0x4012fe04 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x124 (size before relaxing) + .text.wpa_sta_disconnected_cb + 0x4012ff0c 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x5e (size before relaxing) + *fill* 0x4012ff59 0x3 + .text.wpa_sta_connected_cb + 0x4012ff5c 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xe (size before relaxing) + *fill* 0x4012ff66 0x2 + .text.wpa_install_key + 0x4012ff68 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4012ff68 wpa_install_key + *fill* 0x4012ff8b 0x1 + .text.wpa_get_key + 0x4012ff8c 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4012ff8c wpa_get_key + *fill* 0x4012ffa9 0x3 + .text.wpa_deauthenticate + 0x4012ffac 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xe (size before relaxing) + 0x4012ffac wpa_deauthenticate + *fill* 0x4012ffb7 0x1 + .text.wpa_config_profile + 0x4012ffb8 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x61 (size before relaxing) + 0x4012ffb8 wpa_config_profile + *fill* 0x40130001 0x3 + .text.wpa_config_bss + 0x40130004 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x49 (size before relaxing) + 0x40130004 wpa_config_bss + *fill* 0x40130039 0x3 + .text.wpa_sta_connect + 0x4013003c 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x44 (size before relaxing) + 0x4013003c wpa_sta_connect + .text.wpa_config_assoc_ie + 0x40130078 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x40130078 wpa_config_assoc_ie + *fill* 0x401300a3 0x1 + .text.wpa_neg_complete + 0x401300a4 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb (size before relaxing) + 0x401300a4 wpa_neg_complete + *fill* 0x401300ac 0x0 + .text.esp_supplicant_init + 0x401300ac 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xca (size before relaxing) + 0x401300ac esp_supplicant_init + *fill* 0x40130162 0x2 + .text.esp_supplicant_deinit + 0x40130164 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x26 (size before relaxing) + 0x40130164 esp_supplicant_deinit + *fill* 0x4013017e 0x2 + .text.ieee80211_handle_rx_frm + 0x40130180 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_supplicant_unset_all_appie + 0x401301a0 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x401301a0 esp_supplicant_unset_all_appie + .text.esp_supplicant_common_deinit + 0x401301bc 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x1e (size before relaxing) + 0x401301bc esp_supplicant_common_deinit + *fill* 0x401301d7 0x1 + .text.esp_supplicant_common_init + 0x401301d8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x34 (size before relaxing) + 0x401301d8 esp_supplicant_common_init + .text.esp_set_assoc_ie + 0x40130208 0x4b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x40130208 esp_set_assoc_ie + *fill* 0x40130253 0x1 + .text.wpa3_parse_sae_commit + 0x40130254 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xd6 (size before relaxing) + *fill* 0x40130326 0x2 + .text.wpa3_parse_sae_confirm + 0x40130328 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x41 (size before relaxing) + *fill* 0x40130365 0x3 + .text.wpa3_build_sae_commit + 0x40130368 0x279 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x2ad (size before relaxing) + *fill* 0x401305e1 0x3 + .text.wpa3_build_sae_confirm + 0x401305e4 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x69 (size before relaxing) + *fill* 0x40130641 0x3 + .text.wpa3_build_sae_msg + 0x40130644 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text.wpa3_process_rx_confirm + 0x401306a0 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xc2 (size before relaxing) + *fill* 0x4013074a 0x2 + .text.esp_wpa3_free_sae_data + 0x4013074c 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4e (size before relaxing) + 0x4013074c esp_wpa3_free_sae_data + *fill* 0x40130792 0x2 + .text.wpa3_parse_sae_msg + 0x40130794 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x30 (size before relaxing) + .text.esp_wifi_register_wpa3_cb + 0x401307c0 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x401307c0 esp_wifi_register_wpa3_cb + *fill* 0x401307d1 0x3 + .text.wpa3_hostap_post_evt + 0x401307d4 0xea esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x401307d4 wpa3_hostap_post_evt + *fill* 0x401308be 0x2 + .text.wpa3_hostap_handle_auth + 0x401308c0 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xaa (size before relaxing) + *fill* 0x4013095e 0x2 + .text.wpa3_hostap_auth_init + 0x40130960 0x94 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x40130960 wpa3_hostap_auth_init + .text.wpa3_hostap_auth_deinit + 0x401309f4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x401309f4 wpa3_hostap_auth_deinit + .text.esp_send_sae_auth_reply + 0x40130a0c 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x6d (size before relaxing) + 0x40130a0c esp_send_sae_auth_reply + *fill* 0x40130a75 0x3 + .text.wpa3_process_rx_commit + 0x40130a78 0xe6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xfa (size before relaxing) + *fill* 0x40130b5e 0x2 + .text.esp_wpa3_hostap_task + 0x40130b60 0xc3 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xcb (size before relaxing) + *fill* 0x40130c23 0x1 + .text.esp_wifi_register_wpa3_ap_cb + 0x40130c24 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x40130c24 esp_wifi_register_wpa3_ap_cb + *fill* 0x40130c2f 0x1 + .text.owe_build_dhie + 0x40130c30 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x18 (size before relaxing) + 0x40130c30 owe_build_dhie + .text.owe_deinit + 0x40130c44 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x36 (size before relaxing) + 0x40130c44 owe_deinit + *fill* 0x40130c72 0x2 + .text.esp_wifi_register_owe_cb + 0x40130c74 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x40130c74 esp_wifi_register_owe_cb + *fill* 0x40130c85 0x3 + .text.hostapd_get_hapd_data + 0x40130c88 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x40130c88 hostapd_get_hapd_data + *fill* 0x40130c92 0x2 + .text.hostap_init + 0x40130c94 0x210 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x234 (size before relaxing) + 0x40130c94 hostap_init + .text.hostapd_cleanup + 0x40130ea4 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x7a (size before relaxing) + 0x40130ea4 hostapd_cleanup + *fill* 0x40130f16 0x2 + .text.hostap_deinit + 0x40130f18 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x50 (size before relaxing) + 0x40130f18 hostap_deinit + *fill* 0x40130f5d 0x3 + .text.esp_wifi_build_rsnxe + 0x40130f60 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x40130f60 esp_wifi_build_rsnxe + *fill* 0x40130fb2 0x2 + .text.esp_send_assoc_resp + 0x40130fb4 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x7d (size before relaxing) + 0x40130fb4 esp_send_assoc_resp + *fill* 0x40131025 0x3 + .text.ecp_opp 0x40131028 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3a (size before relaxing) + *fill* 0x4013105e 0x2 + .text.crypto_alloc_key + 0x40131060 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x18 (size before relaxing) + .text.crypto_ec_deinit + 0x40131074 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x40131074 crypto_ec_deinit + *fill* 0x4013108b 0x1 + .text.crypto_ec_init + 0x4013108c 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3c (size before relaxing) + 0x4013108c crypto_ec_init + .text.crypto_ec_point_init + 0x401310c0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1c (size before relaxing) + 0x401310c0 crypto_ec_point_init + .text.crypto_ec_prime_len + 0x401310d8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x401310d8 crypto_ec_prime_len + .text.crypto_ec_order_len + 0x401310e4 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x401310e4 crypto_ec_order_len + *fill* 0x401310f1 0x3 + .text.crypto_ec_prime_len_bits + 0x401310f4 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x401310f4 crypto_ec_prime_len_bits + .text.crypto_ec_point_deinit + 0x40131100 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x40131100 crypto_ec_point_deinit + *fill* 0x40131112 0x2 + .text.crypto_ec_point_to_bin + 0x40131114 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4a (size before relaxing) + 0x40131114 crypto_ec_point_to_bin + *fill* 0x40131156 0x2 + .text.crypto_ec_point_from_bin + 0x40131158 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x64 (size before relaxing) + 0x40131158 crypto_ec_point_from_bin + .text.crypto_ec_point_add + 0x401311ac 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3e (size before relaxing) + 0x401311ac crypto_ec_point_add + *fill* 0x401311e2 0x2 + .text.crypto_ec_point_mul + 0x401311e4 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x66 (size before relaxing) + 0x401311e4 crypto_ec_point_mul + *fill* 0x40131236 0x2 + .text.crypto_ec_point_invert + 0x40131238 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x18 (size before relaxing) + 0x40131238 crypto_ec_point_invert + .text.crypto_ec_point_compute_y_sqr + 0x4013124c 0xd4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x110 (size before relaxing) + 0x4013124c crypto_ec_point_compute_y_sqr + .text.crypto_ec_point_solve_y_coord + 0x40131320 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc2 (size before relaxing) + 0x40131320 crypto_ec_point_solve_y_coord + *fill* 0x401313c2 0x2 + .text.crypto_ec_point_is_at_infinity + 0x401313c4 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x401313c4 crypto_ec_point_is_at_infinity + .text.crypto_ec_point_is_on_curve + 0x401313d0 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xa4 (size before relaxing) + 0x401313d0 crypto_ec_point_is_on_curve + .text.crypto_ec_point_cmp + 0x4013145c 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4013145c crypto_ec_point_cmp + *fill* 0x4013146d 0x3 + .text.crypto_ec_set_pubkey_point + 0x40131470 0xab esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xd6 (size before relaxing) + 0x40131470 crypto_ec_set_pubkey_point + *fill* 0x4013151b 0x1 + .text.crypto_ec_free_key + 0x4013151c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x4013151c crypto_ec_free_key + *fill* 0x4013152e 0x2 + .text.crypto_ec_key_group + 0x40131530 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x2e (size before relaxing) + 0x40131530 crypto_ec_key_group + *fill* 0x4013155a 0x2 + .text.crypto_ecdh_deinit + 0x4013155c 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4013155c crypto_ecdh_deinit + *fill* 0x40131573 0x1 + .text.crypto_ecdh_init + 0x40131574 0x89 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xb1 (size before relaxing) + 0x40131574 crypto_ecdh_init + *fill* 0x401315fd 0x3 + .text.crypto_ecdh_get_pubkey + 0x40131600 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x48 (size before relaxing) + 0x40131600 crypto_ecdh_get_pubkey + .text.crypto_ecdh_set_peerkey + 0x40131644 0x1f9 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x22d (size before relaxing) + 0x40131644 crypto_ecdh_set_peerkey + *fill* 0x4013183d 0x3 + .text.crypto_ec_key_parse_pub + 0x40131840 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x38 (size before relaxing) + 0x40131840 crypto_ec_key_parse_pub + .text.crypto_ec_key_deinit + 0x40131870 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x40131870 crypto_ec_key_deinit + *fill* 0x40131882 0x2 + .text.crypto_ec_key_verify_signature + 0x40131884 0x75 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x81 (size before relaxing) + 0x40131884 crypto_ec_key_verify_signature + *fill* 0x401318f9 0x3 + .text.timeout_exists + 0x401318fc 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_run_timer + 0x40131920 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_remove_timeout + 0x40131938 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4c (size before relaxing) + .text.eloop_init + 0x40131980 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x40131980 eloop_init + .text.eloop_register_timeout + 0x401319d4 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x14c (size before relaxing) + 0x401319d4 eloop_register_timeout + .text.eloop_cancel_timeout + 0x40131b1c 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x40131b1c eloop_cancel_timeout + *fill* 0x40131b56 0x2 + .text.eloop_run + 0x40131b58 0x121 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x12d (size before relaxing) + 0x40131b58 eloop_run + *fill* 0x40131c79 0x3 + .text.eloop_run_wrapper + 0x40131c7c 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0xd (size before relaxing) + *fill* 0x40131c86 0x2 + .text.eloop_destroy + 0x40131c88 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x72 (size before relaxing) + 0x40131c88 eloop_destroy + *fill* 0x40131cf6 0x2 + .text.hostapd_derive_psk + 0x40131cf8 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + *fill* 0x40131d26 0x2 + .text.hostapd_setup_sae_pt + 0x40131d28 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x62 (size before relaxing) + 0x40131d28 hostapd_setup_sae_pt + *fill* 0x40131d86 0x2 + .text.hostapd_setup_wpa_psk + 0x40131d88 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x3e (size before relaxing) + 0x40131d88 hostapd_setup_wpa_psk + *fill* 0x40131dc2 0x2 + .text.hostapd_get_psk + 0x40131dc4 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x40131dc4 hostapd_get_psk + *fill* 0x40131dff 0x1 + .text.hostapd_config_clear_wpa_psk + 0x40131e00 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x40131e00 hostapd_config_clear_wpa_psk + *fill* 0x40131e1d 0x3 + .text.hostapd_config_free_bss + 0x40131e20 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x1f (size before relaxing) + 0x40131e20 hostapd_config_free_bss + *fill* 0x40131e3b 0x1 + .text.wpa_auth_get_sm + 0x40131e3c 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x40131e61 0x3 + .text.wpa_auth_add_sm + 0x40131e64 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x40131ea3 0x1 + .text.wpa_auth_del_sm + 0x40131ea4 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x40131ed2 0x2 + .text.wpa_use_aes_cmac + 0x40131ed4 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x40131ee7 0x1 + .text.wpa_receive_error_report + 0x40131ee8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .text.wpa_free_sta_sm + 0x40131ef4 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x46 (size before relaxing) + *fill* 0x40131f36 0x2 + .text.wpa_auth_sm_ptk_update + 0x40131f38 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x40131f5b 0x1 + .text.wpa_group_init_gmk_and_counter + 0x40131f5c 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x7a (size before relaxing) + *fill* 0x40131fca 0x2 + .text.sm_WPA_PTK_AUTHENTICATION_Enter + 0x40131fcc 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x40132001 0x3 + .text.wpa_gmk_to_gtk + 0x40132004 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x54 (size before relaxing) + .text.wpa_gtk_update + 0x40132054 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x94 (size before relaxing) + .text.wpa_group_gtk_init + 0x401320dc 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_group_setkeys + 0x40132110 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x40132147 0x1 + .text.wpa_auth_set_key + 0x40132148 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x6e (size before relaxing) + *fill* 0x401321b2 0x2 + .text.wpa_group_config_group_keys + 0x401321b4 0x5f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x67 (size before relaxing) + *fill* 0x40132213 0x1 + .text.wpa_group_setkeysdone + 0x40132214 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .text.wpa_group_sm_step + 0x40132234 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_group_init + 0x40132288 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5e (size before relaxing) + *fill* 0x401322de 0x2 + .text.wpa_group_ensure_init + 0x401322e0 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x32 (size before relaxing) + *fill* 0x4013230a 0x2 + .text.sm_WPA_PTK_AUTHENTICATION2_Enter + 0x4013230c 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x42 (size before relaxing) + *fill* 0x4013234a 0x2 + .text.wpa_rekey_gtk + 0x4013234c 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3c (size before relaxing) + .text.wpa_replay_counter_valid + 0x40132384 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x401323b5 0x3 + .text.wpa_replay_counter_mark_invalid + 0x401323b8 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x401323e5 0x3 + .text.wpa_derive_ptk + 0x401323e8 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_verify_key_mic + 0x40132414 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x7c (size before relaxing) + .text.wpa_sta_disconnect + 0x4013248c 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4013249b 0x1 + .text.sm_WPA_PTK_DISCONNECT_Enter + 0x4013249c 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_PTKINITDONE_Enter + 0x401324d0 0x9f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xaf (size before relaxing) + *fill* 0x4013256f 0x1 + .text.ieee80211w_kde_add + 0x40132570 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x74 (size before relaxing) + .text.resend_eapol_handle + 0x401325dc 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x401325dc resend_eapol_handle + .text.wpa_init + 0x401325f4 0x9a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xa2 (size before relaxing) + 0x401325f4 wpa_init + *fill* 0x4013268e 0x2 + .text.wpa_auth_sta_init + 0x40132690 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x40132690 wpa_auth_sta_init + .text.wpa_auth_sta_deinit + 0x401326c0 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x42 (size before relaxing) + 0x401326c0 wpa_auth_sta_deinit + *fill* 0x401326fb 0x1 + .text.wpa_auth_pmksa_add_sae + 0x401326fc 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3d (size before relaxing) + 0x401326fc wpa_auth_pmksa_add_sae + *fill* 0x40132735 0x3 + .text.wpa_auth_add_sae_pmkid + 0x40132738 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x40132738 wpa_auth_add_sae_pmkid + *fill* 0x4013275a 0x2 + .text.__wpa_send_eapol + 0x4013275c 0x35a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x372 (size before relaxing) + 0x4013275c __wpa_send_eapol + *fill* 0x40132ab6 0x2 + .text.wpa_send_eapol + 0x40132ab8 0x6f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x73 (size before relaxing) + *fill* 0x40132b27 0x1 + .text.sm_WPA_PTK_PTKSTART_Enter + 0x40132b28 0x104 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_PTKINITNEGOTIATING_Enter + 0x40132c2c 0x17b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x183 (size before relaxing) + *fill* 0x40132da7 0x1 + .text.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter + 0x40132da8 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xfc (size before relaxing) + .text.sm_WPA_PTK_GROUP_Step + 0x40132e94 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xbb (size before relaxing) + *fill* 0x40132f48 0x0 + .text.wpa_remove_ptk + 0x40132f48 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3a (size before relaxing) + 0x40132f48 wpa_remove_ptk + *fill* 0x40132f7e 0x2 + .text.sm_WPA_PTK_INITIALIZE_Enter + 0x40132f80 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5e (size before relaxing) + *fill* 0x40132fda 0x2 + .text.wpa_deinit + 0x40132fdc 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3b (size before relaxing) + 0x40132fdc wpa_deinit + *fill* 0x40133013 0x1 + .text.wpa_ap_remove + 0x40133014 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5e (size before relaxing) + 0x40133014 wpa_ap_remove + *fill* 0x4013306a 0x2 + .text.wpa_auth_uses_sae + 0x4013306c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4013306c wpa_auth_uses_sae + .text.wpa_auth_get_psk + 0x40133088 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4e (size before relaxing) + *fill* 0x401330d2 0x2 + .text.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter + 0x401330d4 0x13a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x142 (size before relaxing) + *fill* 0x4013320e 0x2 + .text.sm_WPA_PTK_INITPSK_Enter + 0x40133210 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x40133279 0x3 + .text.sm_WPA_PTK_Step + 0x4013327c 0x24c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x280 (size before relaxing) + .text.wpa_sm_step + 0x401334c8 0xad esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xb5 (size before relaxing) + *fill* 0x40133575 0x3 + .text.wpa_rekey_ptk + 0x40133578 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x16 (size before relaxing) + *fill* 0x4013358a 0x2 + .text.wpa_auth_sta_associated + 0x4013358c 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x7e (size before relaxing) + 0x4013358c wpa_auth_sta_associated + *fill* 0x40133606 0x2 + .text.wpa_receive + 0x40133608 0x3f2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x41e (size before relaxing) + 0x40133608 wpa_receive + *fill* 0x401339fa 0x2 + .text.hostap_eapol_resend_process + 0x401339fc 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x2c (size before relaxing) + 0x401339fc hostap_eapol_resend_process + .text.wpa_ap_join + 0x40133a24 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x100 (size before relaxing) + 0x40133a24 wpa_ap_join + .text.wpa_parse_generic + 0x40133b0c 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + *fill* 0x40133c42 0x2 + .text.wpa_write_wpa_ie + 0x40133c44 0xc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0xc6 (size before relaxing) + *fill* 0x40133d06 0x2 + .text.wpa_write_rsn_ie + 0x40133d08 0x1e1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x1e5 (size before relaxing) + 0x40133d08 wpa_write_rsn_ie + *fill* 0x40133ee9 0x3 + .text.wpa_write_rsnxe + 0x40133eec 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x40133eec wpa_write_rsnxe + *fill* 0x40133f26 0x2 + .text.wpa_auth_gen_wpa_ie + 0x40133f28 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x90 (size before relaxing) + 0x40133f28 wpa_auth_gen_wpa_ie + .text.wpa_add_kde + 0x40133fb0 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x40133fb0 wpa_add_kde + .text.wpa_validate_wpa_ie + 0x40133ff8 0x2cd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x2e1 (size before relaxing) + 0x40133ff8 wpa_validate_wpa_ie + *fill* 0x401342c5 0x3 + .text.wpa_parse_kde_ies + 0x401342c8 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x401342c8 wpa_parse_kde_ies + *fill* 0x4013435e 0x2 + .text._pmksa_cache_free_entry + 0x40134360 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x2b (size before relaxing) + *fill* 0x40134387 0x1 + .text.pmksa_cache_set_expiration + 0x40134388 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x40 (size before relaxing) + .text.pmksa_cache_link_entry + 0x401343c4 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + *fill* 0x40134422 0x2 + .text.pmksa_cache_free_entry + 0x40134424 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x40134424 pmksa_cache_free_entry + *fill* 0x40134496 0x2 + .text.pmksa_cache_expire + 0x40134498 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x3a (size before relaxing) + *fill* 0x401344cb 0x1 + .text.pmksa_cache_auth_create_entry + 0x401344cc 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0xd0 (size before relaxing) + 0x401344cc pmksa_cache_auth_create_entry + .text.pmksa_cache_auth_deinit + 0x40134598 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4a (size before relaxing) + 0x40134598 pmksa_cache_auth_deinit + *fill* 0x401345de 0x2 + .text.pmksa_cache_auth_get + 0x401345e0 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x401345e0 pmksa_cache_auth_get + *fill* 0x4013463a 0x2 + .text.pmksa_cache_auth_add_entry + 0x4013463c 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x49 (size before relaxing) + 0x4013463c pmksa_cache_auth_add_entry + *fill* 0x4013467d 0x3 + .text.pmksa_cache_auth_add + 0x40134680 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x3b (size before relaxing) + 0x40134680 pmksa_cache_auth_add + *fill* 0x401346b7 0x1 + .text.pmksa_cache_auth_init + 0x401346b8 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x401346b8 pmksa_cache_auth_init + .text.ap_sta_hash_del + 0x401346d4 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_get_sta + 0x40134720 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x40134720 ap_get_sta + *fill* 0x4013474a 0x2 + .text.ap_free_sta + 0x4013474c 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x60 (size before relaxing) + 0x4013474c ap_free_sta + .text.ap_sta_add + 0x401347a4 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x6c (size before relaxing) + 0x401347a4 ap_sta_add + .text.sae_check_big_sync + 0x40134808 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x40134835 0x3 + .text.auth_build_sae_commit + 0x40134838 0xf3 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x103 (size before relaxing) + *fill* 0x4013492b 0x1 + .text.auth_sae_send_commit + 0x4013492c 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x7e (size before relaxing) + *fill* 0x401349a6 0x2 + .text.auth_build_sae_confirm + 0x401349a8 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x2c (size before relaxing) + .text.auth_sae_send_confirm + 0x401349cc 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x47 (size before relaxing) + *fill* 0x40134a0f 0x1 + .text.sae_accept_sta + 0x40134a10 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x3a (size before relaxing) + 0x40134a10 sae_accept_sta + *fill* 0x40134a46 0x2 + .text.sae_sm_step + 0x40134a48 0x1d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x204 (size before relaxing) + .text.handle_auth_sae + 0x40134c18 0x2a7 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x2d3 (size before relaxing) + 0x40134c18 handle_auth_sae + *fill* 0x40134ebf 0x1 + .text.auth_sae_queue + 0x40134ec0 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x40134ec0 auth_sae_queue + *fill* 0x40134f92 0x2 + .text.wpabuf_put_le16 + 0x40134f94 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .text.comeback_token_hash + 0x40134fac 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x26 (size before relaxing) + 0x40134fac comeback_token_hash + *fill* 0x40134fce 0x2 + .text.check_comeback_token + 0x40134fd0 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x8e (size before relaxing) + 0x40134fd0 check_comeback_token + *fill* 0x40135056 0x2 + .text.auth_build_token_req + 0x40135058 0x112 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x13a (size before relaxing) + 0x40135058 auth_build_token_req + *fill* 0x4013516a 0x2 + .text.sae_parse_token_container + 0x4013516c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_parse_akm_suite_selector + 0x40135188 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x401351ee 0x2 + .text.hkdf_extract + 0x401351f0 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x40135211 0x3 + .text.sae_pwd_seed + 0x40135214 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x40135255 0x3 + .text.sae_cn_confirm + 0x40135258 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x92 (size before relaxing) + *fill* 0x401352e2 0x2 + .text.sae_cn_confirm_ffc + 0x401352e4 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .text.hkdf_expand + 0x40135350 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2d (size before relaxing) + *fill* 0x40135379 0x3 + .text.sae_derive_commit_element_ffc + 0x4013537c 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x56 (size before relaxing) + *fill* 0x401353ca 0x2 + .text.sae_derive_k_ffc + 0x401353cc 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x90 (size before relaxing) + .text.debug_print_bignum + 0x40135444 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2a (size before relaxing) + *fill* 0x4013546a 0x2 + .text.sswu 0x4013546c 0x7e9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x93d (size before relaxing) + *fill* 0x40135c55 0x3 + .text.sae_cn_confirm_ecc + 0x40135c58 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x76 (size before relaxing) + *fill* 0x40135cc2 0x2 + .text.sae_max_min_addr + 0x40135cc4 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_pwd_seed_key + 0x40135ce8 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x40135d32 0x2 + .text.sae_parse_password_identifier + 0x40135d34 0xc9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x40135dfd 0x3 + .text.sae_test_pwd_seed_ffc + 0x40135e00 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x138 (size before relaxing) + .text.sae_derive_pwe_ffc + 0x40135f18 0x142 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x15a (size before relaxing) + *fill* 0x4013605a 0x2 + .text.sae_test_pwd_seed_ecc + 0x4013605c 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc2 (size before relaxing) + *fill* 0x40136102 0x2 + .text.sae_derive_pwe_ecc + 0x40136104 0x35d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3a1 (size before relaxing) + *fill* 0x40136461 0x3 + .text.sae_derive_commit_element_ecc + 0x40136464 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_derive_commit + 0x401364bc 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xb2 (size before relaxing) + *fill* 0x4013655e 0x2 + .text.wpabuf_put_le16 + 0x40136560 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.wpabuf_put_data + 0x40136578 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.wpabuf_put_str + 0x40136594 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1a (size before relaxing) + *fill* 0x401365aa 0x2 + .text.sae_parse_rejected_groups + 0x401365ac 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x70 (size before relaxing) + .text.sae_derive_k_ecc + 0x40136610 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x9c (size before relaxing) + .text.sae_kdf_hash + 0x40136694 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x401366b9 0x3 + .text.sae_parse_commit_scalar + 0x401366bc 0x95 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa5 (size before relaxing) + *fill* 0x40136751 0x3 + .text.sae_parse_commit_element_ffc + 0x40136754 0xfa esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x122 (size before relaxing) + *fill* 0x4013684e 0x2 + .text.sae_parse_commit_element_ecc + 0x40136850 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xaa (size before relaxing) + *fill* 0x401368ee 0x2 + .text.sae_parse_commit_element + 0x401368f0 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x27 (size before relaxing) + *fill* 0x40136914 0x0 + .text.sae_clear_temp_data + 0x40136914 0x8f esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc3 (size before relaxing) + 0x40136914 sae_clear_temp_data + *fill* 0x401369a3 0x1 + .text.sae_clear_data + 0x401369a4 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x33 (size before relaxing) + 0x401369a4 sae_clear_data + *fill* 0x401369cf 0x1 + .text.sae_set_group + 0x401369d0 0xc5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xe5 (size before relaxing) + 0x401369d0 sae_set_group + *fill* 0x40136a95 0x3 + .text.sae_derive_pt_ecc + 0x40136a98 0x17a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1ca (size before relaxing) + *fill* 0x40136c12 0x2 + .text.sae_derive_pt_ffc + 0x40136c14 0x1de esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x22e (size before relaxing) + *fill* 0x40136df2 0x2 + .text.sae_derive_keys + 0x40136df4 0x24e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x27e (size before relaxing) + *fill* 0x40137042 0x2 + .text.sae_derive_pwe_from_pt_ecc + 0x40137044 0x142 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x182 (size before relaxing) + 0x40137044 sae_derive_pwe_from_pt_ecc + *fill* 0x40137186 0x2 + .text.sae_derive_pwe_from_pt_ffc + 0x40137188 0x14a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x186 (size before relaxing) + 0x40137188 sae_derive_pwe_from_pt_ffc + *fill* 0x401372d2 0x2 + .text.sae_deinit_pt + 0x401372d4 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x33 (size before relaxing) + 0x401372d4 sae_deinit_pt + *fill* 0x401372ff 0x1 + .text.sae_derive_pt_group + 0x40137300 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x86 (size before relaxing) + *fill* 0x4013737a 0x2 + .text.sae_derive_pt + 0x4013737c 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4013737c sae_derive_pt + *fill* 0x401373c6 0x2 + .text.sae_prepare_commit + 0x401373c8 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x60 (size before relaxing) + 0x401373c8 sae_prepare_commit + .text.sae_prepare_commit_pt + 0x40137424 0x122 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x146 (size before relaxing) + 0x40137424 sae_prepare_commit_pt + *fill* 0x40137546 0x2 + .text.sae_process_commit + 0x40137548 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x56 (size before relaxing) + 0x40137548 sae_process_commit + *fill* 0x40137596 0x2 + .text.sae_write_commit + 0x40137598 0x1bc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x20c (size before relaxing) + 0x40137598 sae_write_commit + .text.sae_group_allowed + 0x40137754 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x40137754 sae_group_allowed + *fill* 0x401377c5 0x3 + .text.sae_parse_commit + 0x401377c8 0x126 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x146 (size before relaxing) + 0x401377c8 sae_parse_commit + *fill* 0x401378ee 0x2 + .text.sae_write_confirm + 0x401378f0 0xa7 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xb7 (size before relaxing) + 0x401378f0 sae_write_confirm + *fill* 0x40137997 0x1 + .text.sae_check_confirm + 0x40137998 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xca (size before relaxing) + 0x40137998 sae_check_confirm + *fill* 0x40137a5e 0x2 + .text.dragonfly_get_rand_1_to_p_1 + 0x40137a60 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x86 (size before relaxing) + *fill* 0x40137ace 0x2 + .text.dragonfly_get_rand_2_to_r_1 + 0x40137ad0 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x3a (size before relaxing) + *fill* 0x40137b02 0x2 + .text.dragonfly_get_random_qr_qnr + 0x40137b04 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x91 (size before relaxing) + 0x40137b04 dragonfly_get_random_qr_qnr + *fill* 0x40137b85 0x3 + .text.dragonfly_is_quadratic_residue_blind + 0x40137b88 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x110 (size before relaxing) + 0x40137b88 dragonfly_is_quadratic_residue_blind + .text.dragonfly_generate_scalar + 0x40137c78 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x60 (size before relaxing) + 0x40137c78 dragonfly_generate_scalar + .text.dragonfly_sqrt + 0x40137cc8 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0xc8 (size before relaxing) + 0x40137cc8 dragonfly_sqrt + .text.wpa_kck_len + 0x40137d74 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x40137da2 0x2 + .text.wpa_kek_len + 0x40137da4 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x40137de1 0x3 + .text.rsn_selector_to_bitfield + 0x40137de4 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.rsn_key_mgmt_to_bitfield + 0x40137e50 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x40137ecd 0x3 + .text.wpa_selector_to_bitfield + 0x40137ed0 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x40137f31 0x3 + .text.wpa_key_mgmt_to_bitfield + 0x40137f34 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x40137f7a 0x2 + .text.wpa_mic_len + 0x40137f7c 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40137f7c wpa_mic_len + *fill* 0x40137f9a 0x2 + .text.wpa_cipher_valid_mgmt_group + 0x40137f9c 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40137f9c wpa_cipher_valid_mgmt_group + *fill* 0x40137fca 0x2 + .text.wpa_parse_wpa_ie_rsnxe + 0x40137fcc 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x36 (size before relaxing) + 0x40137fcc wpa_parse_wpa_ie_rsnxe + *fill* 0x40137ffe 0x2 + .text.wpa_parse_wpa_ie_rsn + 0x40138000 0x1c4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x1cc (size before relaxing) + 0x40138000 wpa_parse_wpa_ie_rsn + .text.wpa_parse_wpa_ie_wpa + 0x401381c4 0x18f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x193 (size before relaxing) + 0x401381c4 wpa_parse_wpa_ie_wpa + *fill* 0x40138353 0x1 + .text.wpa_use_akm_defined + 0x40138354 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40138354 wpa_use_akm_defined + .text.wpa_use_aes_key_wrap + 0x40138390 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40138390 wpa_use_aes_key_wrap + .text.wpa_eapol_key_mic + 0x401383d0 0xf1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xfd (size before relaxing) + 0x401383d0 wpa_eapol_key_mic + *fill* 0x401384c1 0x3 + .text.wpa_akm_to_suite + 0x401384c4 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x401384c4 wpa_akm_to_suite + *fill* 0x40138535 0x3 + .text.wpa_compare_rsn_ie + 0x40138538 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40138538 wpa_compare_rsn_ie + *fill* 0x4013856e 0x2 + .text.rsn_pmkid + 0x40138570 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40138570 rsn_pmkid + *fill* 0x401385c7 0x1 + .text.wpa_pmk_to_ptk + 0x401385c8 0x18a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x196 (size before relaxing) + 0x401385c8 wpa_pmk_to_ptk + *fill* 0x40138752 0x2 + .text.wpa_cipher_to_suite + 0x40138754 0x75 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40138754 wpa_cipher_to_suite + *fill* 0x401387c9 0x3 + .text.hmac_sha256_kdf + 0x401387cc 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0xe8 (size before relaxing) + 0x401387cc hmac_sha256_kdf + .text.dh_groups_get + 0x401388ac 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x401388ac dh_groups_get + *fill* 0x401388d2 0x2 + .text.wpa_supplicant_verify_eapol_key_mic + 0x401388d4 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xec (size before relaxing) + .text.is_wpa2_enterprise_connection + 0x401389b8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2c (size before relaxing) + .text.wpa_derive_ptk + 0x401389e0 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_supplicant_check_group_cipher + 0x40138a14 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x46 (size before relaxing) + *fill* 0x40138a52 0x2 + .text.wpa_supplicant_decrypt_key_data + 0x40138a54 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xbe (size before relaxing) + *fill* 0x40138b0a 0x2 + .text.wpa_sm_set_seq + 0x40138b0c 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x40138b4b 0x1 + .text.wpa_supplicant_install_igtk + 0x40138b4c 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x68 (size before relaxing) + .text.ieee80211w_set_keys + 0x40138bb0 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x48 (size before relaxing) + .text.wpa_sm_get_key + 0x40138bf0 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x40138c0d 0x3 + .text.wpa_supplicant_gtk_in_use + 0x40138c10 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xb8 (size before relaxing) + .text.wpa_sm_pmksa_free_cb + 0x40138cc4 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpabuf_put_le16 + 0x40138d20 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpabuf_put_data + 0x40138d38 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.cipher_type_map_supp_to_public + 0x40138d54 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40138d54 cipher_type_map_supp_to_public + *fill* 0x40138dd6 0x2 + .text.wpa_eapol_key_send + 0x40138dd8 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8e (size before relaxing) + 0x40138dd8 wpa_eapol_key_send + *fill* 0x40138e62 0x2 + .text.wpa_sm_key_request + 0x40138e64 0x15e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x166 (size before relaxing) + *fill* 0x40138fc2 0x2 + .text.wpa_sm_rekey_ptk + 0x40138fc4 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x12 (size before relaxing) + *fill* 0x40138fd2 0x2 + .text.wpa_supplicant_send_4_of_4 + 0x40138fd4 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xf4 (size before relaxing) + .text.wpa_supplicant_send_2_of_2 + 0x401390c4 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xf4 (size before relaxing) + .text.wpa_supplicant_send_2_of_4 + 0x401391b4 0x11e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x126 (size before relaxing) + 0x401391b4 wpa_supplicant_send_2_of_4 + *fill* 0x401392d2 0x2 + .text.wpa_supplicant_process_1_of_2_rsn + 0x401392d4 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8c (size before relaxing) + .text.wpa_supplicant_process_1_of_2_wpa + 0x40139354 0xf6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x106 (size before relaxing) + *fill* 0x4013944a 0x2 + .text.wpa_supplicant_pairwise_gtk + 0x4013944c 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x6e (size before relaxing) + 0x4013944c wpa_supplicant_pairwise_gtk + *fill* 0x401394b2 0x2 + .text.wpa_report_ie_mismatch + 0x401394b4 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x401394b4 wpa_report_ie_mismatch + *fill* 0x401394c3 0x1 + .text.wpa_supplicant_validate_ie + 0x401394c4 0xf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sm_set_state + 0x401395b8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + 0x401395b8 wpa_sm_set_state + .text.wpa_supplicant_key_neg_complete + 0x401395d8 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x32 (size before relaxing) + 0x401395d8 wpa_supplicant_key_neg_complete + *fill* 0x40139602 0x2 + .text.wpa_sm_set_pmk_from_pmksa + 0x40139604 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40139604 wpa_sm_set_pmk_from_pmksa + *fill* 0x40139633 0x1 + .text.wpa_supplicant_get_pmk + 0x40139634 0x170 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x17c (size before relaxing) + .text.wpa_supplicant_process_1_of_4 + 0x401397a4 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x154 (size before relaxing) + 0x401397a4 wpa_supplicant_process_1_of_4 + .text.wpa_sm_init + 0x401398d4 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x58 (size before relaxing) + 0x401398d4 wpa_sm_init + .text.wpa_sm_notify_assoc + 0x40139924 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40139924 wpa_sm_notify_assoc + *fill* 0x4013999a 0x2 + .text.wpa_set_profile + 0x4013999c 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4013999c wpa_set_profile + *fill* 0x40139a42 0x2 + .text.wpa_set_pmk + 0x40139a44 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x62 (size before relaxing) + 0x40139a44 wpa_set_pmk + *fill* 0x40139aa2 0x2 + .text.wpa_set_passphrase + 0x40139aa4 0xa7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xcb (size before relaxing) + 0x40139aa4 wpa_set_passphrase + *fill* 0x40139b4b 0x1 + .text.set_assoc_ie + 0x40139b4c 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x36 (size before relaxing) + 0x40139b4c set_assoc_ie + *fill* 0x40139b7f 0x1 + .text.wpa_sm_set_key + 0x40139b80 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x70 (size before relaxing) + 0x40139b80 wpa_sm_set_key + .text.wpa_supplicant_install_ptk + 0x40139bec 0x94 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xa8 (size before relaxing) + .text.wpa_supplicant_process_3_of_4 + 0x40139c80 0x10b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x132 (size before relaxing) + *fill* 0x40139d8b 0x1 + .text.wpa_supplicant_install_gtk + 0x40139d8c 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xec (size before relaxing) + .text.wpa_supplicant_process_1_of_2 + 0x40139e74 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xd4 (size before relaxing) + .text.wpa_sm_rx_eapol + 0x40139f2c 0x2a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2b6 (size before relaxing) + 0x40139f2c wpa_sm_rx_eapol + *fill* 0x4013a1d2 0x2 + .text.wpa_supplicant_activate_ptk + 0x4013a1d4 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x55 (size before relaxing) + *fill* 0x4013a221 0x3 + .text.wpa_supplicant_send_4_of_4_txcallback + 0x4013a224 0x8f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x9b (size before relaxing) + *fill* 0x4013a2b3 0x1 + .text.wpa_supplicant_clr_countermeasures + 0x4013a2b4 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4013a2b4 wpa_supplicant_clr_countermeasures + *fill* 0x4013a2c1 0x3 + .text.wpa_supplicant_stop_countermeasures + 0x4013a2c4 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x33 (size before relaxing) + 0x4013a2c4 wpa_supplicant_stop_countermeasures + *fill* 0x4013a2f0 0x0 + .text.wpa_michael_mic_failure + 0x4013a2f0 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xa4 (size before relaxing) + 0x4013a2f0 wpa_michael_mic_failure + .text.eapol_txcb + 0x4013a374 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xb7 (size before relaxing) + 0x4013a374 eapol_txcb + *fill* 0x4013a428 0x0 + .text.wpa_sta_in_4way_handshake + 0x4013a428 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4013a428 wpa_sta_in_4way_handshake + *fill* 0x4013a457 0x1 + .text.wpa_sta_cur_pmksa_matches_akm + 0x4013a458 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x29 (size before relaxing) + 0x4013a458 wpa_sta_cur_pmksa_matches_akm + *fill* 0x4013a47d 0x3 + .text.wpa_sta_clear_curr_pmksa + 0x4013a480 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x23 (size before relaxing) + 0x4013a480 wpa_sta_clear_curr_pmksa + *fill* 0x4013a4a0 0x0 + .text.get_wpa_sm + 0x4013a4a0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4013a4a0 get_wpa_sm + .text.wpa_sm_set_ap_rsnxe + 0x4013a4a8 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x98 (size before relaxing) + 0x4013a4a8 wpa_sm_set_ap_rsnxe + .text.wpa_sm_set_assoc_rsnxe + 0x4013a530 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4013a530 wpa_sm_set_assoc_rsnxe + *fill* 0x4013a57e 0x2 + .text.wpa_set_bss + 0x4013a580 0x214 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x248 (size before relaxing) + 0x4013a580 wpa_set_bss + .text.wpa_sm_drop_sa + 0x4013a794 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4013a794 wpa_sm_drop_sa + *fill* 0x4013a7e2 0x2 + .text.wpa_sm_deinit + 0x4013a7e4 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x33 (size before relaxing) + 0x4013a7e4 wpa_sm_deinit + *fill* 0x4013a813 0x1 + .text.wpa_sm_notify_disassoc + 0x4013a814 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x32 (size before relaxing) + 0x4013a814 wpa_sm_notify_disassoc + *fill* 0x4013a83e 0x2 + .text.owe_build_assoc_req + 0x4013a840 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xcc (size before relaxing) + 0x4013a840 owe_build_assoc_req + .text.owe_process_assoc_resp + 0x4013a8e8 0x1c6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20a (size before relaxing) + 0x4013a8e8 owe_process_assoc_resp + *fill* 0x4013aaae 0x2 + .text.wpa_parse_generic + 0x4013aab0 0x16e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x4013ac1e 0x2 + .text.wpa_gen_wpa_ie_rsn + 0x4013ac20 0x2b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x2b4 (size before relaxing) + .text.wpa_gen_wpa_ie_wpa + 0x4013aed0 0xf2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xfa (size before relaxing) + *fill* 0x4013afc2 0x2 + .text.wpa_parse_wpa_ie + 0x4013afc4 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x49 (size before relaxing) + 0x4013afc4 wpa_parse_wpa_ie + *fill* 0x4013b009 0x3 + .text.wpa_gen_wpa_ie + 0x4013b00c 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x44 (size before relaxing) + 0x4013b00c wpa_gen_wpa_ie + .text.wpa_gen_rsnxe + 0x4013b04c 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x4013b04c wpa_gen_rsnxe + .text.wpa_supplicant_parse_ies + 0x4013b0a8 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x4013b0a8 wpa_supplicant_parse_ies + *fill* 0x4013b13e 0x2 + .text.wpabuf_alloc + 0x4013b140 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x4013b140 wpabuf_alloc + *fill* 0x4013b15e 0x2 + .text.wpabuf_free + 0x4013b160 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x4013b160 wpabuf_free + .text.wpabuf_put_data + 0x4013b17c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_alloc_copy + 0x4013b198 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x1e (size before relaxing) + 0x4013b198 wpabuf_alloc_copy + *fill* 0x4013b1b2 0x2 + .text.wpabuf_zeropad + 0x4013b1b4 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x44 (size before relaxing) + 0x4013b1b4 wpabuf_zeropad + .text.d_permute + 0x4013b1ec 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x4013b202 0x2 + .text.d_check_char + 0x4013b204 0x67 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x6b (size before relaxing) + *fill* 0x4013b26b 0x1 + .text.wpabuf_put_data + 0x4013b26c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.sae_pk_valid_password + 0x4013b288 0xde esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4013b288 sae_pk_valid_password + *fill* 0x4013b366 0x2 + .text.sae_pk_base32_decode + 0x4013b368 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4013b368 sae_pk_base32_decode + .text.sae_pk_set_password + 0x4013b458 0x119 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x121 (size before relaxing) + 0x4013b458 sae_pk_set_password + *fill* 0x4013b571 0x3 + .text.sae_hash + 0x4013b574 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4013b574 sae_hash + *fill* 0x4013b595 0x3 + .text.sae_pk_valid_fingerprint + 0x4013b598 0xd1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0xdd (size before relaxing) + *fill* 0x4013b669 0x3 + .text.sae_pk_hash_sig_data + 0x4013b66c 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x158 (size before relaxing) + .text.sae_check_confirm_pk + 0x4013b7a4 0x162 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x182 (size before relaxing) + 0x4013b7a4 sae_check_confirm_pk + *fill* 0x4013b906 0x2 + .text.eap_client_get_eap_state + 0x4013b908 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + 0x4013b908 eap_client_get_eap_state + .text.disable_wpa_wpa2 + 0x4013b920 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xb (size before relaxing) + *fill* 0x4013b928 0x0 + .text.wpa_alloc_eapol + 0x4013b928 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4013b928 wpa_alloc_eapol + *fill* 0x4013b992 0x2 + .text.wpa_free_eapol + 0x4013b994 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4013b994 wpa_free_eapol + .text.wpa_ether_send + 0x4013b9a4 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x49 (size before relaxing) + 0x4013b9a4 wpa_ether_send + *fill* 0x4013b9e9 0x3 + .text.hostapd_send_eapol + 0x4013b9ec 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x61 (size before relaxing) + 0x4013b9ec hostapd_send_eapol + *fill* 0x4013ba49 0x3 + .text.wpa_supplicant_transition_disable + 0x4013ba4c 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x56 (size before relaxing) + 0x4013ba4c wpa_supplicant_transition_disable + *fill* 0x4013ba9c 0x0 + .text.wpa_sm_alloc_eapol + 0x4013ba9c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1c (size before relaxing) + 0x4013ba9c wpa_sm_alloc_eapol + .text.wpa_sm_free_eapol + 0x4013bab4 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xe (size before relaxing) + 0x4013bab4 wpa_sm_free_eapol + *fill* 0x4013babe 0x2 + .text.wpa_sm_deauthenticate + 0x4013bac0 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1e (size before relaxing) + 0x4013bac0 wpa_sm_deauthenticate + *fill* 0x4013bada 0x2 + .text.crypto_rng_wrapper + 0x4013badc 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + *fill* 0x4013baed 0x3 + .text.crypto_bignum_init + 0x4013baf0 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x1a (size before relaxing) + 0x4013baf0 crypto_bignum_init + *fill* 0x4013bb06 0x2 + .text.crypto_bignum_init_set + 0x4013bb08 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x2c (size before relaxing) + 0x4013bb08 crypto_bignum_init_set + .text.crypto_bignum_init_uint + 0x4013bb30 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x26 (size before relaxing) + 0x4013bb30 crypto_bignum_init_uint + *fill* 0x4013bb52 0x2 + .text.crypto_bignum_deinit + 0x4013bb54 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x16 (size before relaxing) + 0x4013bb54 crypto_bignum_deinit + *fill* 0x4013bb66 0x2 + .text.crypto_bignum_to_bin + 0x4013bb68 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x52 (size before relaxing) + 0x4013bb68 crypto_bignum_to_bin + *fill* 0x4013bbb6 0x2 + .text.crypto_bignum_add + 0x4013bbb8 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x4013bbb8 crypto_bignum_add + .text.crypto_bignum_mod + 0x4013bbcc 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x4013bbcc crypto_bignum_mod + .text.crypto_bignum_exptmod + 0x4013bbe0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x1c (size before relaxing) + 0x4013bbe0 crypto_bignum_exptmod + .text.crypto_bignum_inverse + 0x4013bbf8 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x4013bbf8 crypto_bignum_inverse + .text.crypto_bignum_sub + 0x4013bc0c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x18 (size before relaxing) + 0x4013bc0c crypto_bignum_sub + .text.crypto_bignum_div + 0x4013bc20 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x1a (size before relaxing) + 0x4013bc20 crypto_bignum_div + *fill* 0x4013bc36 0x2 + .text.crypto_bignum_mulmod + 0x4013bc38 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x2e (size before relaxing) + 0x4013bc38 crypto_bignum_mulmod + *fill* 0x4013bc62 0x2 + .text.crypto_bignum_sqrmod + 0x4013bc64 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x3c (size before relaxing) + 0x4013bc64 crypto_bignum_sqrmod + .text.crypto_bignum_rshift + 0x4013bc94 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x26 (size before relaxing) + 0x4013bc94 crypto_bignum_rshift + *fill* 0x4013bcb6 0x2 + .text.crypto_bignum_cmp + 0x4013bcb8 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4013bcb8 crypto_bignum_cmp + *fill* 0x4013bcc9 0x3 + .text.crypto_bignum_is_zero + 0x4013bccc 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4013bccc crypto_bignum_is_zero + *fill* 0x4013bce2 0x2 + .text.crypto_bignum_is_one + 0x4013bce4 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4013bce4 crypto_bignum_is_one + *fill* 0x4013bcfa 0x2 + .text.crypto_bignum_is_odd + 0x4013bcfc 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4013bcfc crypto_bignum_is_odd + .text.crypto_bignum_rand + 0x4013bd14 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4013bd14 crypto_bignum_rand + .text.crypto_bignum_legendre + 0x4013bd30 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x94 (size before relaxing) + 0x4013bd30 crypto_bignum_legendre + .text.crypto_bignum_addmod + 0x4013bda8 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x3f (size before relaxing) + 0x4013bda8 crypto_bignum_addmod + *fill* 0x4013bddf 0x1 + .text.pad_block + 0x4013bde0 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x4013be0b 0x1 + .text.aes_s2v 0x4013be0c 0x109 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x131 (size before relaxing) + *fill* 0x4013bf15 0x3 + .text.aes_siv_decrypt + 0x4013bf18 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0xec (size before relaxing) + 0x4013bf18 aes_siv_decrypt + .text.ieee802_11_parse_extension + 0x4013c000 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + *fill* 0x4013c06d 0x3 + .text.ieee802_11_parse_vendor_specific + 0x4013c070 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + *fill* 0x4013c0cd 0x3 + .text.ieee802_11_parse_elems + 0x4013c0d0 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x4013c0d0 ieee802_11_parse_elems + *fill* 0x4013c13d 0x3 + .text._pmksa_cache_free_entry + 0x4013c140 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10 (size before relaxing) + *fill* 0x4013c14d 0x3 + .text.pmksa_cache_free_entry + 0x4013c150 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x4013c16e 0x2 + .text.pmksa_cache_set_expiration + 0x4013c170 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3f (size before relaxing) + *fill* 0x4013c1ab 0x1 + .text.pmksa_cache_expire + 0x4013c1ac 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3f (size before relaxing) + *fill* 0x4013c1e4 0x0 + .text.pmksa_cache_flush + 0x4013c1e4 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4013c1e4 pmksa_cache_flush + *fill* 0x4013c23b 0x1 + .text.pmksa_cache_add + 0x4013c23c 0x1ca esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4013c23c pmksa_cache_add + *fill* 0x4013c406 0x2 + .text.pmksa_cache_clone_entry + 0x4013c408 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x4013c44b 0x1 + .text.pmksa_cache_deinit + 0x4013c44c 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3b (size before relaxing) + 0x4013c44c pmksa_cache_deinit + *fill* 0x4013c483 0x1 + .text.pmksa_cache_get + 0x4013c484 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4013c484 pmksa_cache_get + *fill* 0x4013c4bd 0x3 + .text.pmksa_cache_get_opportunistic + 0x4013c4c0 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4013c4c0 pmksa_cache_get_opportunistic + *fill* 0x4013c4ee 0x2 + .text.pmksa_cache_set_current + 0x4013c4f0 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x72 (size before relaxing) + 0x4013c4f0 pmksa_cache_set_current + *fill* 0x4013c55a 0x2 + .text.pmksa_cache_init + 0x4013c55c 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4013c55c pmksa_cache_init + *fill* 0x4013c57e 0x2 + .text.esp_coex_common_spin_lock_create_wrapper + 0x4013c580 0x28 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4013c580 esp_coex_common_spin_lock_create_wrapper + .text.esp_coex_common_timer_done_wrapper + 0x4013c5a8 0xa esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xe (size before relaxing) + 0x4013c5a8 esp_coex_common_timer_done_wrapper + *fill* 0x4013c5b2 0x2 + .text.esp_coex_common_timer_setfn_wrapper + 0x4013c5b4 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x12 (size before relaxing) + 0x4013c5b4 esp_coex_common_timer_setfn_wrapper + *fill* 0x4013c5c2 0x2 + .text.esp_coex_common_semphr_create_wrapper + 0x4013c5c4 0x11 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4013c5c4 esp_coex_common_semphr_create_wrapper + *fill* 0x4013c5d5 0x3 + .text.esp_coex_common_semphr_delete_wrapper + 0x4013c5d8 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4013c5d8 esp_coex_common_semphr_delete_wrapper + *fill* 0x4013c5e6 0x2 + .text.esp_coex_common_semphr_take_wrapper + 0x4013c5e8 0x1f esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4013c5e8 esp_coex_common_semphr_take_wrapper + *fill* 0x4013c607 0x1 + .text.esp_coex_common_semphr_give_wrapper + 0x4013c608 0x15 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4013c608 esp_coex_common_semphr_give_wrapper + *fill* 0x4013c61d 0x3 + .text.parse_url_char + 0x4013c620 0x2b2 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + *fill* 0x4013c8d2 0x2 + .text.http_parse_host_char + 0x4013c8d4 0x270 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_parse_host + 0x4013cb44 0x114 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .text.http_should_keep_alive + 0x4013cc58 0x36 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x4013cc58 http_should_keep_alive + *fill* 0x4013cc8e 0x2 + .text.http_parser_execute + 0x4013cc90 0x3109 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x310d (size before relaxing) + 0x4013cc90 http_parser_execute + *fill* 0x4013fd99 0x3 + .text.http_parser_init + 0x4013fd9c 0x4f esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x4013fd9c http_parser_init + *fill* 0x4013fdeb 0x1 + .text.http_parser_settings_init + 0x4013fdec 0x12 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x4013fdec http_parser_settings_init + *fill* 0x4013fdfe 0x2 + .text.http_parser_url_init + 0x4013fe00 0x12 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x4013fe00 http_parser_url_init + *fill* 0x4013fe12 0x2 + .text.http_parser_parse_url + 0x4013fe14 0x14d esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x4013fe14 http_parser_parse_url + *fill* 0x4013ff61 0x3 + .text.http_parser_pause + 0x4013ff64 0x4e esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x4013ff64 http_parser_pause + *fill* 0x4013ffb2 0x2 + .text.mbedtls_pk_free + 0x4013ffb4 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x1e (size before relaxing) + 0x4013ffb4 mbedtls_pk_free + *fill* 0x4013ffcf 0x1 + .text.mbedtls_pk_info_from_type + 0x4013ffd0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4013ffd0 mbedtls_pk_info_from_type + .text.mbedtls_pk_setup + 0x40140008 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x40140008 mbedtls_pk_setup + *fill* 0x40140039 0x3 + .text.mbedtls_pk_ecc_set_group + 0x4014003c 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x81 (size before relaxing) + 0x4014003c mbedtls_pk_ecc_set_group + *fill* 0x401400b9 0x3 + .text.mbedtls_pk_ecc_set_pubkey + 0x401400bc 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x28 (size before relaxing) + 0x401400bc mbedtls_pk_ecc_set_pubkey + .text.rsa_debug + 0x401400e0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.eckey_debug + 0x40140100 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x40140115 0x3 + .text.rsa_free_wrap + 0x40140118 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x4014012a 0x2 + .text.rsa_alloc_wrap + 0x4014012c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x40140142 0x2 + .text.rsa_check_pair_wrap + 0x40140144 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x40140155 0x3 + .text.rsa_encrypt_wrap + 0x40140158 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x2e (size before relaxing) + *fill* 0x40140182 0x2 + .text.rsa_decrypt_wrap + 0x40140184 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x2e (size before relaxing) + *fill* 0x401401ae 0x2 + .text.rsa_sign_wrap + 0x401401b0 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x32 (size before relaxing) + *fill* 0x401401de 0x2 + .text.rsa_verify_wrap + 0x401401e0 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3b (size before relaxing) + *fill* 0x40140217 0x1 + .text.rsa_get_bitlen + 0x40140218 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .text.eckey_free_wrap + 0x40140224 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x40140236 0x2 + .text.eckey_alloc_wrap + 0x40140238 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x4014024e 0x2 + .text.eckey_check_pair_wrap + 0x40140250 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x40140265 0x3 + .text.ecdsa_sign_wrap + 0x40140268 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4014028d 0x3 + .text.ecdsa_verify_wrap + 0x40140290 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x22 (size before relaxing) + *fill* 0x401402ae 0x2 + .text.pk_get_pk_alg + 0x401402b0 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x7f (size before relaxing) + *fill* 0x40140327 0x1 + .text.pk_use_ecparams_rfc8410 + 0x40140328 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + *fill* 0x40140351 0x3 + .text.pk_group_from_specified + 0x40140354 0x1de esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x20a (size before relaxing) + *fill* 0x40140532 0x2 + .text.pk_group_id_from_group + 0x40140534 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xd2 (size before relaxing) + *fill* 0x401405e2 0x2 + .text.pk_ecc_group_id_from_specified + 0x401405e4 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x55 (size before relaxing) + *fill* 0x40140621 0x3 + .text.pk_use_ecparams + 0x40140624 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_subpubkey + 0x4014065c 0x132 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x146 (size before relaxing) + 0x4014065c mbedtls_pk_parse_subpubkey + *fill* 0x4014078e 0x2 + .text.mbedtls_pk_parse_public_key + 0x40140790 0x16e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x1a6 (size before relaxing) + 0x40140790 mbedtls_pk_parse_public_key + *fill* 0x401408fe 0x2 + .text.pem_check_pkcs_padding + 0x40140900 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + *fill* 0x40140935 0x3 + .text.pem_get_iv + 0x40140938 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + *fill* 0x401409a5 0x3 + .text.pem_pbkdf1 + 0x401409a8 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x100 (size before relaxing) + .text.pem_aes_decrypt + 0x40140a80 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x61 (size before relaxing) + *fill* 0x40140acd 0x3 + .text.mbedtls_pem_init + 0x40140ad0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x40140ad0 mbedtls_pem_init + *fill* 0x40140ae2 0x2 + .text.mbedtls_pem_read_buffer + 0x40140ae4 0x2bb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x2d3 (size before relaxing) + 0x40140ae4 mbedtls_pem_read_buffer + *fill* 0x40140d9f 0x1 + .text.mbedtls_pem_free + 0x40140da0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x24 (size before relaxing) + 0x40140da0 mbedtls_pem_free + .text.mbedtls_base64_decode + 0x40140dbc 0x15d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x40140dbc mbedtls_base64_decode + *fill* 0x40140f19 0x3 + .text.misc_nvs_load + 0x40140f1c 0x89 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0xa1 (size before relaxing) + 0x40140f30 misc_nvs_load + *fill* 0x40140fa5 0x3 + .text.misc_nvs_deinit + 0x40140fa8 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x5a (size before relaxing) + 0x40140fac misc_nvs_deinit + *fill* 0x40140ff2 0x2 + .text.misc_nvs_init + 0x40140ff4 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x3c (size before relaxing) + 0x40140ff4 misc_nvs_init + .text.s_sleep_hook_register + 0x40141020 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + *fill* 0x40141079 0x3 + .text.esp_deep_sleep_register_phy_hook + 0x4014107c 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x4014107c esp_deep_sleep_register_phy_hook + *fill* 0x4014108e 0x2 + .text.ethip6_output + 0x40141090 0x7e esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x86 (size before relaxing) + 0x40141090 ethip6_output + *fill* 0x4014110e 0x2 + .text._ZdaPv 0x40141110 0xe C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + 0x40141110 operator delete[](void*) + *fill* 0x4014111e 0x2 + .text._ZdaPvj 0x40141120 0xe C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + 0x40141120 operator delete[](void*, unsigned int) + *fill* 0x4014112e 0x2 + .text._ZSt15get_new_handlerv + 0x40141130 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + 0x40141130 std::get_new_handler() + .text._ZnajRKSt9nothrow_t + 0x40141140 0x23 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + 0x40141140 operator new[](unsigned int, std::nothrow_t const&) + *fill* 0x40141163 0x1 + .text._ZdlPv 0x40141164 0xe C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + 0x40141164 operator delete(void*) + *fill* 0x40141172 0x2 + .text.__cxa_begin_catch + 0x40141174 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x40141174 __cxa_begin_catch + .text.__cxa_end_catch + 0x401411cc 0x66 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x401411cc __cxa_end_catch + *fill* 0x40141232 0x2 + .text._ZL15eh_globals_dtorPv + 0x40141234 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .text.__cxa_get_globals_fast + 0x40141258 0x1e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x40141258 __cxa_get_globals_fast + *fill* 0x40141276 0x2 + .text.__cxa_get_globals + 0x40141278 0x42 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x40141278 __cxa_get_globals + *fill* 0x401412ba 0x2 + .text.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE + 0x401412bc 0x1e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + *fill* 0x401412da 0x2 + .text.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x401412dc 0x1e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + *fill* 0x401412fa 0x2 + .text._ZN10__cxxabiv111__terminateEPFvvE + 0x401412fc 0x1a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x401412fc __cxxabiv1::__terminate(void (*)()) + *fill* 0x40141316 0x2 + .text._ZSt13get_terminatev + 0x40141318 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x40141318 std::get_terminate() + .text._ZSt9terminatev + 0x40141328 0xf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x40141328 std::terminate() + *fill* 0x40141337 0x1 + .text._Znaj 0x40141338 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + 0x40141338 operator new[](unsigned int) + .text._Znwj 0x40141348 0x3f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x40141348 operator new(unsigned int) + *fill* 0x40141387 0x1 + .text._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x40141388 0x12 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x40141388 __cxxabiv1::__si_class_type_info::~__si_class_type_info() + 0x40141388 __cxxabiv1::__si_class_type_info::~__si_class_type_info() + *fill* 0x4014139a 0x2 + .text._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x4014139c 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4014139c __cxxabiv1::__si_class_type_info::~__si_class_type_info() + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x401413b4 0x32 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + *fill* 0x401413e6 0x2 + .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x401413e8 0x7a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x401413e8 __cxxabiv1::__si_class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const + *fill* 0x40141462 0x2 + .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x40141464 0x2c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x40141464 __cxxabiv1::__si_class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const + .text._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x40141490 0x2a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x40141490 __cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const + *fill* 0x401414ba 0x2 + .text._ZNSt9type_infoD0Ev + 0x401414bc 0xf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x401414bc std::type_info::~type_info() + *fill* 0x401414cb 0x1 + .text._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x401414cc 0x32 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x401414cc std::type_info::__do_catch(std::type_info const*, void**, unsigned int) const + *fill* 0x401414fe 0x2 + .text._ZNKSt9bad_alloc4whatEv + 0x40141500 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x40141500 std::bad_alloc::what() const + .text._ZNSt9bad_allocD2Ev + 0x40141508 0x12 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x40141508 std::bad_alloc::~bad_alloc() + 0x40141508 std::bad_alloc::~bad_alloc() + *fill* 0x4014151a 0x2 + .text._ZNSt9bad_allocD0Ev + 0x4014151c 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x4014151c std::bad_alloc::~bad_alloc() + .text._ZN10__cxxabiv117__class_type_infoD2Ev + 0x40141534 0x12 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x40141534 __cxxabiv1::__class_type_info::~__class_type_info() + 0x40141534 __cxxabiv1::__class_type_info::~__class_type_info() + *fill* 0x40141546 0x2 + .text._ZN10__cxxabiv117__class_type_infoD0Ev + 0x40141548 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x40141548 __cxxabiv1::__class_type_info::~__class_type_info() + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x40141560 0x32 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + *fill* 0x40141592 0x2 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x40141594 0x1e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x40141594 __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const + *fill* 0x401415b2 0x2 + .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x401415b4 0x36 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x401415b4 __cxxabiv1::__class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const + *fill* 0x401415ea 0x2 + .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x401415ec 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x401415ec __cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const + .text._ZdlPvj 0x40141614 0xe C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + 0x40141614 operator delete(void*, unsigned int) + *fill* 0x40141622 0x2 + .text._ZNKSt9exception4whatEv + 0x40141624 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x40141624 transaction clone for std::exception::what() const + 0x40141624 std::exception::what() const + .text._ZNKSt13bad_exception4whatEv + 0x4014162c 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x4014162c std::bad_exception::what() const + 0x4014162c transaction clone for std::bad_exception::what() const + .text._ZNSt9exceptionD0Ev + 0x40141634 0xf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x40141634 std::exception::~exception() + *fill* 0x40141643 0x1 + .text._ZNSt13bad_exceptionD0Ev + 0x40141644 0xf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x40141644 std::bad_exception::~bad_exception() + *fill* 0x40141653 0x1 + .text._Z12abort_returnIiET_v + 0x40141654 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + *fill* 0x4014165d 0x3 + .text.__wrap__Unwind_DeleteException + 0x40141660 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x40141660 __wrap__Unwind_DeleteException + *fill* 0x40141669 0x3 + .text.__wrap___gxx_personality_v0 + 0x4014166c 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x4014166c __wrap___gxx_personality_v0 + *fill* 0x40141672 0x2 + .text.__wrap___cxa_allocate_exception + 0x40141674 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x40141674 __wrap___cxa_allocate_exception + *fill* 0x4014167d 0x3 + .text.__wrap___cxa_throw + 0x40141680 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x40141680 __wrap___cxa_throw + *fill* 0x40141689 0x3 + .text.ram_set_pbus_mem + 0x4014168c 0x2ef C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x307 (size before relaxing) + 0x401416d8 ram_set_pbus_mem + *fill* 0x4014197b 0x1 + .text.ram_start_tx_tone + 0x4014197c 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x86 (size before relaxing) + 0x40141984 ram_start_tx_tone + *fill* 0x401419fa 0x2 + .text.ram_bb_tx_ht20_cen + 0x401419fc 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x30 (size before relaxing) + 0x40141a00 ram_bb_tx_ht20_cen + .text.ram_phy_get_noisefloor + 0x40141a24 0x46 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x4e (size before relaxing) + 0x40141a2c ram_phy_get_noisefloor + *fill* 0x40141a6a 0x2 + .text.ram_check_noise_floor + 0x40141a6c 0xfa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x12a (size before relaxing) + 0x40141a7c ram_check_noise_floor + *fill* 0x40141b66 0x2 + .text.ram_bb_bss_bw_40_en + 0x40141b68 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x2a (size before relaxing) + 0x40141b6c ram_bb_bss_bw_40_en + *fill* 0x40141b8e 0x2 + .text.bt_txdc_cal$part$5 + 0x40141b90 0xbd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xc5 (size before relaxing) + *fill* 0x40141c4d 0x3 + .text.bt_txiq_cal$part$6 + 0x40141c50 0xa6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xc6 (size before relaxing) + *fill* 0x40141cf6 0x2 + .text.ram_gen_rx_gain_table + 0x40141cf8 0x167 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x17b (size before relaxing) + 0x40141d04 ram_gen_rx_gain_table + *fill* 0x40141e5f 0x1 + .text.set_rx_gain_cal_iq + 0x40141e60 0x35b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3bb (size before relaxing) + 0x40141e80 set_rx_gain_cal_iq + *fill* 0x401421bb 0x1 + .text.rx_chan_dc_sort + 0x401421bc 0x1c3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x1c7 (size before relaxing) + 0x401421bc rx_chan_dc_sort + *fill* 0x4014237f 0x1 + .text.set_rx_gain_cal_dc + 0x40142380 0x3b2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3fa (size before relaxing) + 0x40142384 set_rx_gain_cal_dc + *fill* 0x40142732 0x2 + .text.wr_rx_gain_mem + 0x40142734 0x1df C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x1f3 (size before relaxing) + 0x4014273c wr_rx_gain_mem + *fill* 0x40142913 0x1 + .text.set_rx_gain_testchip_70 + 0x40142914 0x23c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x28c (size before relaxing) + 0x40142928 set_rx_gain_testchip_70 + .text.bt_index_to_bb + 0x40142b50 0x16 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x1a (size before relaxing) + 0x40142b50 bt_index_to_bb + *fill* 0x40142b66 0x2 + .text.set_tx_gain_table_bt + 0x40142b68 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x4b (size before relaxing) + 0x40142b70 set_tx_gain_table_bt + *fill* 0x40142b9b 0x1 + .text.set_chanfreq_nomac + 0x40142b9c 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x2f (size before relaxing) + 0x40142b9c set_chanfreq_nomac + *fill* 0x40142bc3 0x1 + .text.chip_sleep_prot_en + 0x40142bc4 0x7e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x9e (size before relaxing) + 0x40142bd0 chip_sleep_prot_en + *fill* 0x40142c42 0x2 + .text.chip_sleep_prot_dis + 0x40142c44 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x35 (size before relaxing) + 0x40142c48 chip_sleep_prot_dis + *fill* 0x40142c6d 0x3 + .text.set_rx_sense + 0x40142c70 0x2d4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x32c (size before relaxing) + 0x40142ca4 set_rx_sense + .text.read_hw_noisefloor + 0x40142f44 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x1c (size before relaxing) + 0x40142f44 read_hw_noisefloor + .text.noise_check_loop + 0x40142f58 0x166 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x19a (size before relaxing) + 0x40142f64 noise_check_loop + *fill* 0x401430be 0x2 + .text.chip_v7_set_chan_misc + 0x401430c0 0x93 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xab (size before relaxing) + 0x401430d8 chip_v7_set_chan_misc + *fill* 0x40143153 0x1 + .text.set_rx_gain_table + 0x40143154 0x235 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x2c1 (size before relaxing) + 0x40143178 set_rx_gain_table + *fill* 0x40143389 0x3 + .text.txiq_cal_init + 0x4014338c 0xdc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xf4 (size before relaxing) + 0x40143390 txiq_cal_init + .text.analog_gain_init + 0x40143468 0xc3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xc7 (size before relaxing) + 0x4014346c analog_gain_init + *fill* 0x4014352b 0x1 + .text.bb_init 0x4014352c 0xcc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x134 (size before relaxing) + 0x40143540 bb_init + .text.register_chipv7_phy_init_param + 0x401435f8 0x225 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x229 (size before relaxing) + 0x40143608 register_chipv7_phy_init_param + *fill* 0x4014381d 0x3 + .text.phy_get_romfunc_addr + 0x40143820 0x31d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x321 (size before relaxing) + 0x401438d8 phy_get_romfunc_addr + *fill* 0x40143b3d 0x3 + .text.rf_cal_data_recovery + 0x40143b40 0xa2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xae (size before relaxing) + 0x40143b40 rf_cal_data_recovery + *fill* 0x40143be2 0x2 + .text.rf_cal_data_backup + 0x40143be4 0x186 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x1a2 (size before relaxing) + 0x40143bf4 rf_cal_data_backup + *fill* 0x40143d6a 0x2 + .text.phy_get_rf_cal_version + 0x40143d6c 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x40143d70 phy_get_rf_cal_version + .text.i2cmst_reg_init + 0x40143d78 0x97 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xcf (size before relaxing) + 0x40143d80 i2cmst_reg_init + *fill* 0x40143e0f 0x1 + .text.fe_reg_init + 0x40143e10 0xa5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xd5 (size before relaxing) + 0x40143e24 fe_reg_init + *fill* 0x40143eb5 0x3 + .text.get_phy_version_str + 0x40143eb8 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x3b (size before relaxing) + 0x40143ecc get_phy_version_str + *fill* 0x40143ee8 0x0 + .text.reset_rf_dig + 0x40143ee8 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xa6 (size before relaxing) + 0x40143eec reset_rf_dig + *fill* 0x40143f62 0x2 + .text.register_chipv7_phy + 0x40143f64 0x27c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x308 (size before relaxing) + 0x40143f94 register_chipv7_phy + .text.phy_set_most_tpw + 0x401441e0 0x49 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x55 (size before relaxing) + 0x401441ec phy_set_most_tpw + *fill* 0x40144229 0x3 + .text.chan14_mic_cfg + 0x4014422c 0xf6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x11e (size before relaxing) + 0x4014423c chan14_mic_cfg + *fill* 0x40144322 0x2 + .text.phy_enable_low_rate + 0x40144324 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x76 (size before relaxing) + 0x40144330 phy_enable_low_rate + *fill* 0x40144386 0x2 + .text.phy_disable_low_rate + 0x40144388 0x56 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x76 (size before relaxing) + 0x40144388 phy_disable_low_rate + *fill* 0x401443de 0x2 + .text.phy_init_param_set + 0x401443e0 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x15 (size before relaxing) + 0x401443e0 phy_init_param_set + *fill* 0x401443f1 0x3 + .text.phy_change_channel_nomac + 0x401443f4 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + 0x17 (size before relaxing) + 0x401443f4 phy_change_channel_nomac + *fill* 0x40144404 0x0 + .text.ram_index_to_txbbgain + 0x40144404 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x40144408 ram_index_to_txbbgain + *fill* 0x40144422 0x2 + .text.ram_txdc_cal_v70 + 0x40144424 0x1c3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x1eb (size before relaxing) + 0x40144438 ram_txdc_cal_v70 + *fill* 0x401445e7 0x1 + .text.txcal_debuge_mode + 0x401445e8 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x67 (size before relaxing) + 0x401445e8 txcal_debuge_mode + *fill* 0x40144643 0x1 + .text.ram_txcal_work_mode + 0x40144644 0x2e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x32 (size before relaxing) + 0x40144644 ram_txcal_work_mode + *fill* 0x40144672 0x2 + .text.ram_get_fm_sar_dout + 0x40144674 0xa1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0xb5 (size before relaxing) + 0x40144678 ram_get_fm_sar_dout + *fill* 0x40144715 0x3 + .text.ram_txiq_get_mis_pwr + 0x40144718 0xdc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x100 (size before relaxing) + 0x40144724 ram_txiq_get_mis_pwr + .text.ram_txiq_cover + 0x401447f4 0x187 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x18b (size before relaxing) + 0x401447f4 ram_txiq_cover + *fill* 0x4014497b 0x1 + .text.rfcal_txiq + 0x4014497c 0x1dd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x21d (size before relaxing) + 0x4014497c rfcal_txiq + *fill* 0x40144b59 0x3 + .text.ram_iq_est_enable + 0x40144b5c 0xab C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0xcf (size before relaxing) + 0x40144b70 ram_iq_est_enable + *fill* 0x40144c07 0x1 + .text.ram_iq_est_disable + 0x40144c08 0x34 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x44 (size before relaxing) + 0x40144c08 ram_iq_est_disable + .text.ram_dc_iq_est + 0x40144c3c 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x92 (size before relaxing) + 0x40144c3c ram_dc_iq_est + *fill* 0x40144cb2 0x2 + .text.ram_pbus_rx_dco_cal + 0x40144cb4 0x2ff C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x323 (size before relaxing) + 0x40144cc8 ram_pbus_rx_dco_cal + *fill* 0x40144fb3 0x1 + .text.rxdc_est_min + 0x40144fb4 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x68 (size before relaxing) + 0x40144fb4 rxdc_est_min + .text.pbus_rx_dco_cal_1step + 0x40145018 0x679 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x699 (size before relaxing) + 0x40145018 pbus_rx_dco_cal_1step + *fill* 0x40145691 0x3 + .text.rc_cal 0x40145694 0x2aa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x2ca (size before relaxing) + 0x401456a4 rc_cal + *fill* 0x4014593e 0x2 + .text.ram_rfcal_txcap + 0x40145940 0x1f4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x204 (size before relaxing) + 0x40145948 ram_rfcal_txcap + .text.tx_cap_init + 0x40145b34 0x180 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x1a8 (size before relaxing) + 0x40145b3c tx_cap_init + .text.ram_meas_tone_pwr_db + 0x40145cb4 0x55 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x5d (size before relaxing) + 0x40145cb4 ram_meas_tone_pwr_db + *fill* 0x40145d09 0x3 + .text.ram_rfcal_pwrctrl + 0x40145d0c 0x24e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x25a (size before relaxing) + 0x40145d10 ram_rfcal_pwrctrl + *fill* 0x40145f5a 0x2 + .text.ram_tx_pwr_backoff + 0x40145f5c 0x20d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x225 (size before relaxing) + 0x40145f5c ram_tx_pwr_backoff + *fill* 0x40146169 0x3 + .text.cal_rf_ana_gain + 0x4014616c 0xdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0xff (size before relaxing) + 0x40146178 cal_rf_ana_gain + *fill* 0x4014624b 0x1 + .text.tx_pwctrl_init_cal + 0x4014624c 0x181 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x1c1 (size before relaxing) + 0x40146258 tx_pwctrl_init_cal + *fill* 0x401463cd 0x3 + .text.tx_pwctrl_init + 0x401463d0 0x9c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0xc8 (size before relaxing) + 0x401463d4 tx_pwctrl_init + .text.bt_tx_pwctrl_init + 0x4014646c 0x1d2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x222 (size before relaxing) + 0x4014647c bt_tx_pwctrl_init + *fill* 0x4014663e 0x2 + .text.ram_phy_get_vdd33 + 0x40146640 0x18c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x1dc (size before relaxing) + 0x4014665c ram_phy_get_vdd33 + .text.txpwr_offset + 0x401467cc 0x8c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0xa4 (size before relaxing) + 0x401467d4 txpwr_offset + .text.ram_pbus_force_mode + 0x40146858 0xd2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x116 (size before relaxing) + 0x40146860 ram_pbus_force_mode + *fill* 0x4014692a 0x2 + .text.ram_pbus_xpd_tx_on + 0x4014692c 0xa4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0xa8 (size before relaxing) + 0x40146930 ram_pbus_xpd_tx_on + .text.ram_restart_cal + 0x401469d0 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x62 (size before relaxing) + 0x401469d0 ram_restart_cal + *fill* 0x40146a2e 0x2 + .text.ram_wait_rfpll_cal_end + 0x40146a30 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x4e (size before relaxing) + 0x40146a34 ram_wait_rfpll_cal_end + *fill* 0x40146a72 0x2 + .text.ram_rfpll_set_freq + 0x40146a74 0xb2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0xc5 (size before relaxing) + 0x40146a90 ram_rfpll_set_freq + *fill* 0x40146b26 0x2 + .text.get_lna_vga_dcap_val + 0x40146b28 0x64 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x68 (size before relaxing) + 0x40146b30 get_lna_vga_dcap_val + .text.chip_v7_rxmax_ext_ana + 0x40146b8c 0x9a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0xa6 (size before relaxing) + 0x40146b90 chip_v7_rxmax_ext_ana + *fill* 0x40146c26 0x2 + .text.phy_freq_correct_opt + 0x40146c28 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x6b (size before relaxing) + 0x40146c34 phy_freq_correct_opt + *fill* 0x40146c83 0x1 + .text.i2c_bias_init + 0x40146c84 0x33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x37 (size before relaxing) + 0x40146c88 i2c_bias_init + *fill* 0x40146cb7 0x1 + .text.rfpll_1p2_opt + 0x40146cb8 0x73 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x7b (size before relaxing) + 0x40146cbc rfpll_1p2_opt + *fill* 0x40146d2b 0x1 + .text.get_rf_freq_cap + 0x40146d2c 0xa3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0xaf (size before relaxing) + 0x40146d2c get_rf_freq_cap + *fill* 0x40146dcf 0x1 + .text.correct_rfpll_offset + 0x40146dd0 0x10f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x133 (size before relaxing) + 0x40146dd8 correct_rfpll_offset + *fill* 0x40146edf 0x1 + .text.wr_rf_freq_mem + 0x40146ee0 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x83 (size before relaxing) + 0x40146ee0 wr_rf_freq_mem + *fill* 0x40146f4f 0x1 + .text.write_freq_mem_all + 0x40146f50 0x96 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0xaa (size before relaxing) + 0x40146f50 write_freq_mem_all + *fill* 0x40146fe6 0x2 + .text.get_rfrx_dcap_bt + 0x40146fe8 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x3a (size before relaxing) + 0x40146fe8 get_rfrx_dcap_bt + *fill* 0x4014701e 0x2 + .text.get_rf_freq_init$part$2 + 0x40147020 0x12f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x15f (size before relaxing) + *fill* 0x4014714f 0x1 + .text.bt_i2c_write_set + 0x40147150 0x5d8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x630 (size before relaxing) + 0x401471b8 bt_i2c_write_set + .text.bt_i2c_set_wifi_data + 0x40147728 0xf6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x102 (size before relaxing) + 0x4014773c bt_i2c_set_wifi_data + *fill* 0x4014781e 0x2 + .text.tsens_read_init + 0x40147820 0x61 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x85 (size before relaxing) + 0x40147824 tsens_read_init + *fill* 0x40147881 0x3 + .text.bt_get_i2c_data + 0x40147884 0x4d7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x4db (size before relaxing) + 0x40147888 bt_get_i2c_data + *fill* 0x40147d5b 0x1 + .text.write_wifi_chan_data + 0x40147d5c 0xdc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0xf8 (size before relaxing) + 0x40147d64 write_wifi_chan_data + .text.set_chan_freq_hw_init + 0x40147e38 0xa4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0xdc (size before relaxing) + 0x40147e40 set_chan_freq_hw_init + .text.rf_init 0x40147edc 0x76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0xaa (size before relaxing) + 0x40147edc rf_init + *fill* 0x40147f52 0x2 + .text.set_chan_freq_sw_start + 0x40147f54 0x1af C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x217 (size before relaxing) + 0x40147f60 set_chan_freq_sw_start + *fill* 0x40148103 0x1 + .text.set_channel_rfpll_freq + 0x40148104 0xd5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x109 (size before relaxing) + 0x40148110 set_channel_rfpll_freq + *fill* 0x401481d9 0x3 + .text.chip_v7_set_chan_nomac + 0x401481dc 0xe5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x128 (size before relaxing) + 0x401481ec chip_v7_set_chan_nomac + *fill* 0x401482c1 0x3 + .text.chip_v7_set_chan + 0x401482c4 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x2f (size before relaxing) + 0x401482c4 chip_v7_set_chan + *fill* 0x401482df 0x1 + .text.chip_v7_set_chan_offset + 0x401482e0 0x62 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x8a (size before relaxing) + 0x401482e0 chip_v7_set_chan_offset + *fill* 0x40148342 0x2 + .text.chip_v7_set_chan_ana + 0x40148344 0x1f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x2f (size before relaxing) + 0x40148344 chip_v7_set_chan_ana + *fill* 0x40148363 0x1 + .text 0x40148364 0x7d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + 0x40148364 sin + *fill* 0x401483e1 0x3 + .text 0x401483e4 0x54 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + 0x401483e4 tan + .text 0x40148438 0x182 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + 0x40148438 __kernel_cos + *fill* 0x401485ba 0x2 + .text 0x401485bc 0x16e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + 0x401485bc __kernel_sin + *fill* 0x4014872a 0x2 + .text 0x4014872c 0x422 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + 0x4014872c __kernel_tan + *fill* 0x40148b4e 0x2 + .text 0x40148b50 0x429 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + 0x40148b50 __ieee754_rem_pio2 + *fill* 0x40148f79 0x3 + .text 0x40148f7c 0x74c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + 0x40148f7c __kernel_rem_pio2 + .text 0x401496c8 0x11c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + 0x401496c8 floor + .text 0x401497e4 0xdf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + 0x401497e4 scalbn + *fill* 0x401498c3 0x1 + .text 0x401498c4 0xf0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + 0x401498c4 _fopen_r + 0x401499a0 fopen + .text 0x401499b4 0x31 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + 0x401499b4 _fseek_r + 0x401499cc fseek + *fill* 0x401499e5 0x3 + .text 0x401499e8 0x29f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + 0x401499e8 __sfvwrite_r + *fill* 0x40149c87 0x1 + .text 0x40149c88 0x5e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + 0x40149c88 _printf_r + 0x40149cb4 printf + *fill* 0x40149ce6 0x2 + .text 0x40149ce8 0x9a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + 0x40149ce8 _puts_r + 0x40149d70 puts + *fill* 0x40149d82 0x2 + .text 0x40149d84 0x111 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + 0x40149da4 __srefill_r + *fill* 0x40149e95 0x3 + .text 0x40149e98 0xdf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + 0x40149e98 _snprintf_r + 0x40149f04 snprintf + *fill* 0x40149f77 0x1 + .text 0x40149f78 0xa7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + 0x40149f78 _sprintf_r + 0x40149fc4 sprintf + *fill* 0x4014a01f 0x1 + .text 0x4014a020 0x3d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + 0x4014a020 vprintf + 0x4014a044 _vprintf_r + *fill* 0x4014a05d 0x3 + .text 0x4014a060 0x81 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + 0x4014a060 _vsnprintf_r + 0x4014a0b8 vsnprintf + *fill* 0x4014a0e1 0x3 + .text 0x4014a0e4 0xae C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + 0x4014a0e4 __swsetup_r + *fill* 0x4014a192 0x2 + .text 0x4014a194 0x33e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + 0x4014a194 _fseeko_r + 0x4014a4bc fseeko + *fill* 0x4014a4d2 0x2 + .text 0x4014a4d4 0xc4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + 0x4014a4d4 _reclaim_reent + .text 0x4014a598 0xd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + 0x4014a598 __errno + *fill* 0x4014a5a5 0x3 + .text 0x4014a5a8 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + 0x4014a5a8 gettimeofday + .text 0x4014a5c0 0x32fd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + 0x4014aa98 _svfprintf_r + *fill* 0x4014d8bd 0x3 + .text 0x4014d8c0 0x34b5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + 0x4014dd98 _vfprintf_r + 0x40150cb4 vfprintf + *fill* 0x40150d75 0x3 + .text 0x40150d78 0x2554 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + 0x40151250 __sprint_r + 0x40151274 _vfiprintf_r + 0x4015320c vfiprintf + .text 0x401532cc 0xf7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + 0x401532cc __swhatbuf_r + 0x4015333c __smakebuf_r + *fill* 0x401533c3 0x1 + .text 0x401533c4 0x2b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + 0x401533c4 __localeconv_l + 0x401533d0 _localeconv_r + 0x401533e0 localeconv + *fill* 0x401533ef 0x1 + .text 0x401533f0 0x5f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + 0x401533f0 frexp + *fill* 0x4015344f 0x1 + .text 0x40153450 0xdb1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + 0x40153590 _dtoa_r + *fill* 0x40154201 0x3 + .text 0x40154204 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + 0x40154204 _mbtowc_r + 0x40154220 __ascii_mbtowc + .text 0x40154244 0xa2e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + 0x40154244 _Balloc + 0x401542d4 _Bfree + 0x40154314 __multadd + 0x4015439c __s2b + 0x40154430 __hi0bits + 0x40154480 __lo0bits + 0x401544f0 __i2b + 0x40154518 __multiply + 0x40154688 __pow5mult + 0x40154730 __lshift + 0x40154834 __mcmp + 0x40154870 __mdiff + 0x401549a8 __ulp + 0x401549f8 __b2d + 0x40154a9c __d2b + 0x40154b48 __ratio + 0x40154b9c _mprec_log10 + 0x40154bd4 __copybits + 0x40154c24 __any_on + *fill* 0x40154c72 0x2 + .text 0x40154c74 0x248e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + 0x4015514c __ssprint_r + 0x40155254 _svfiprintf_r + *fill* 0x40157102 0x0 + *fill* 0x40157102 0x2 + .text.pthread_include_pthread_impl + 0x40157104 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x40157104 pthread_include_pthread_impl + *fill* 0x40157109 0x3 + .text.pthread_include_pthread_cond_var_impl + 0x4015710c 0x5 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x4015710c pthread_include_pthread_cond_var_impl + *fill* 0x40157111 0x3 + .text.find_value + 0x40157114 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x40157128 0x0 + *fill* 0x40157128 0x0 + *fill* 0x40157128 0x0 + *fill* 0x40157128 0x0 + *fill* 0x40157128 0x0 + .text.pthread_include_pthread_local_storage_impl + 0x40157128 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x40157128 pthread_include_pthread_local_storage_impl + *fill* 0x4015712d 0x3 + .text.pthread_include_pthread_rwlock_impl + 0x40157130 0x5 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x40157130 pthread_include_pthread_rwlock_impl + *fill* 0x40157135 0x3 + .text.pthread_include_pthread_semaphore_impl + 0x40157138 0x5 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x40157138 pthread_include_pthread_semaphore_impl + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x0 + *fill* 0x4015713d 0x3 + .text.__esp_system_init_fn_init_components0 + 0x40157140 0x7 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x40157147 0x0 + *fill* 0x40157147 0x0 + *fill* 0x40157147 0x0 + *fill* 0x40157147 0x0 + *fill* 0x40157147 0x0 + *fill* 0x40157147 0x0 + *fill* 0x40157147 0x0 + *fill* 0x40157147 0x0 + *fill* 0x40157147 0x0 + *fill* 0x40157147 0x0 + *fill* 0x40157147 0x0 + *fill* 0x40157147 0x1 + .text.panic_get_address + 0x40157148 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x40157148 panic_get_address + *fill* 0x4015714f 0x1 + .text.panic_get_cause + 0x40157150 0x8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x40157150 panic_get_cause + .text.panic_set_address + 0x40157158 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x40157158 panic_set_address + *fill* 0x4015715f 0x0 + *fill* 0x4015715f 0x0 + *fill* 0x4015715f 0x0 + *fill* 0x4015715f 0x0 + *fill* 0x4015715f 0x0 + *fill* 0x4015715f 0x1 + .text.heap_caps_match + 0x40157160 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x40157160 heap_caps_match + *fill* 0x4015718c 0x0 + *fill* 0x4015718c 0x0 + *fill* 0x4015718c 0x0 + *fill* 0x4015718c 0x0 + *fill* 0x4015718c 0x0 + .text.s_compare_reserved_regions + 0x4015718c 0xc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x40157198 0x0 + *fill* 0x40157198 0x0 + *fill* 0x40157198 0x0 + *fill* 0x40157198 0x0 + *fill* 0x40157198 0x0 + *fill* 0x40157198 0x0 + *fill* 0x40157198 0x0 + *fill* 0x40157198 0x0 + *fill* 0x40157198 0x0 + .text.esp_intr_get_cpu + 0x40157198 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40157198 esp_intr_get_cpu + *fill* 0x401571a4 0x0 + *fill* 0x401571a4 0x0 + *fill* 0x401571a4 0x0 + *fill* 0x401571a4 0x0 + *fill* 0x401571a4 0x0 + *fill* 0x401571a4 0x0 + *fill* 0x401571a4 0x0 + *fill* 0x401571a4 0x0 + *fill* 0x401571a4 0x0 + *fill* 0x401571a4 0x0 + *fill* 0x401571a4 0x0 + .text.pthread_setcancelstate + 0x401571a4 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x401571a4 pthread_setcancelstate + *fill* 0x401571ab 0x1 + .text.newlib_include_pthread_impl + 0x401571ac 0x5 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x401571ac newlib_include_pthread_impl + *fill* 0x401571b1 0x0 + *fill* 0x401571b1 0x0 + *fill* 0x401571b1 0x3 + .text.syscall_not_implemented + 0x401571b4 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x401571b4 _kill_r + 0x401571b4 _system_r + 0x401571b4 _isatty_r + 0x401571b4 _getpid_r + *fill* 0x401571bf 0x0 + *fill* 0x401571bf 0x0 + *fill* 0x401571bf 0x1 + .text.newlib_include_syscalls_impl + 0x401571c0 0x5 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x401571c0 newlib_include_syscalls_impl + *fill* 0x401571c5 0x0 + *fill* 0x401571c5 0x0 + *fill* 0x401571c5 0x0 + *fill* 0x401571c5 0x0 + *fill* 0x401571c5 0x0 + *fill* 0x401571c5 0x0 + *fill* 0x401571c5 0x0 + *fill* 0x401571c5 0x0 + *fill* 0x401571c5 0x0 + *fill* 0x401571c5 0x3 + .text.__cxa_guard_dummy + 0x401571c8 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x401571c8 __cxa_guard_dummy + *fill* 0x401571cd 0x0 + *fill* 0x401571cd 0x0 + *fill* 0x401571cd 0x0 + *fill* 0x401571cd 0x0 + *fill* 0x401571cd 0x0 + *fill* 0x401571cd 0x0 + *fill* 0x401571cd 0x0 + *fill* 0x401571cd 0x0 + *fill* 0x401571cd 0x0 + *fill* 0x401571cd 0x0 + *fill* 0x401571cd 0x3 + .text.include_esp_phy_override + 0x401571d0 0x5 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x401571d0 include_esp_phy_override + *fill* 0x401571d5 0x3 + .text.esp_vfs_safe_fd_isset + 0x401571d8 0x42 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x0 + *fill* 0x4015721a 0x2 + .text.vfs_include_syscalls_impl + 0x4015721c 0x5 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4015721c vfs_include_syscalls_impl + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x0 + *fill* 0x40157221 0x3 + .text.nvs_sec_provider_include_impl + 0x40157224 0x5 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x40157224 nvs_sec_provider_include_impl + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x0 + *fill* 0x40157229 0x3 + .text.esp_efuse_get_field_size + 0x4015722c 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x4015722c esp_efuse_get_field_size + *fill* 0x40157250 0x0 + .text.get_mask + 0x40157250 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x4015726e 0x2 + .text.get_reg_num + 0x40157270 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.get_starting_bit_num_in_reg + 0x40157294 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x401572ae 0x2 + .text.get_count_bits_in_reg + 0x401572b0 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x401572de 0x0 + *fill* 0x401572de 0x2 + .text.esp_efuse_utility_get_number_of_items + 0x401572e0 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x401572e0 esp_efuse_utility_get_number_of_items + *fill* 0x401572f6 0x0 + *fill* 0x401572f6 0x0 + *fill* 0x401572f6 0x0 + *fill* 0x401572f6 0x2 + .text.esp_efuse_utility_check_errors + 0x401572f8 0x7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x401572f8 esp_efuse_utility_check_errors + *fill* 0x401572ff 0x1 + .text.s_mem_caps_check + 0x40157300 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x4015731a 0x2 + .text.s_find_available_region + 0x4015731c 0x2a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x40157346 0x2 + .text.s_is_enclosed + 0x40157348 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x40157365 0x3 + .text.s_is_overlapped + 0x40157368 0x36 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x0 + *fill* 0x4015739e 0x2 + .text.uart_hal_get_sclk + 0x401573a0 0x1a esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x401573a0 uart_hal_get_sclk + *fill* 0x401573ba 0x2 + .text.uart_hal_get_baudrate + 0x401573bc 0x32 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x401573bc uart_hal_get_baudrate + *fill* 0x401573ee 0x2 + .text.uart_hal_set_stop_bits + 0x401573f0 0x5d esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x401573f0 uart_hal_set_stop_bits + *fill* 0x4015744d 0x3 + .text.uart_hal_get_stop_bits + 0x40157450 0x2c esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x40157450 uart_hal_get_stop_bits + .text.uart_hal_set_data_bit_num + 0x4015747c 0x1f esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4015747c uart_hal_set_data_bit_num + *fill* 0x4015749b 0x1 + .text.uart_hal_get_data_bit_num + 0x4015749c 0x11 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4015749c uart_hal_get_data_bit_num + *fill* 0x401574ad 0x3 + .text.uart_hal_set_parity + 0x401574b0 0x35 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x401574b0 uart_hal_set_parity + *fill* 0x401574e5 0x3 + .text.uart_hal_get_parity + 0x401574e8 0x25 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x401574e8 uart_hal_get_parity + *fill* 0x4015750d 0x0 + *fill* 0x4015750d 0x0 + *fill* 0x4015750d 0x3 + .text.i2s_ll_tx_select_pdm_slot + 0x40157510 0xa2 esp-idf/hal/libhal.a(i2s_hal.c.obj) + *fill* 0x401575b2 0x2 + .text.i2s_ll_rx_select_pdm_slot + 0x401575b4 0x4e esp-idf/hal/libhal.a(i2s_hal.c.obj) + *fill* 0x40157602 0x2 + .text.i2s_ll_tx_select_std_slot + 0x40157604 0xa5 esp-idf/hal/libhal.a(i2s_hal.c.obj) + *fill* 0x401576a9 0x3 + .text.i2s_ll_rx_select_std_slot + 0x401576ac 0x65 esp-idf/hal/libhal.a(i2s_hal.c.obj) + *fill* 0x40157711 0x0 + *fill* 0x40157711 0x0 + *fill* 0x40157711 0x3 + .text.i2s_hal_std_enable_tx_channel + 0x40157714 0x31 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x40157714 i2s_hal_std_enable_tx_channel + *fill* 0x40157745 0x3 + .text.i2s_hal_std_enable_rx_channel + 0x40157748 0x31 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x40157748 i2s_hal_std_enable_rx_channel + *fill* 0x40157779 0x3 + .text.i2s_hal_pdm_enable_tx_channel + 0x4015777c 0x31 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x4015777c i2s_hal_pdm_enable_tx_channel + *fill* 0x401577ad 0x3 + .text.i2s_hal_pdm_enable_rx_channel + 0x401577b0 0x31 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x401577b0 i2s_hal_pdm_enable_rx_channel + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x0 + *fill* 0x401577e1 0x3 + .text.lwip_poll_should_wake + 0x401577e4 0x46 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x0 + *fill* 0x4015782a 0x2 + .text.lwip_htons + 0x4015782c 0x14 esp-idf/lwip/liblwip.a(def.c.obj) + 0x4015782c lwip_htons + .text.lwip_htonl + 0x40157840 0x26 esp-idf/lwip/liblwip.a(def.c.obj) + 0x40157840 lwip_htonl + *fill* 0x40157866 0x0 + *fill* 0x40157866 0x0 + *fill* 0x40157866 0x2 + .text.mem_init + 0x40157868 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x40157868 mem_init + *fill* 0x4015786d 0x3 + .text.mem_trim + 0x40157870 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x40157870 mem_trim + *fill* 0x40157875 0x0 + *fill* 0x40157875 0x0 + *fill* 0x40157875 0x0 + *fill* 0x40157875 0x3 + .text.memp_init + 0x40157878 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x40157878 memp_init + .text.netif_null_output_ip6 + 0x4015788c 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_null_output_ip4 + 0x40157894 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + *fill* 0x4015789c 0x0 + .text.pbuf_init_alloced_pbuf + 0x4015789c 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x401578bb 0x1 + .text.pbuf_skip_const + 0x401578bc 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x401578db 0x0 + *fill* 0x401578db 0x0 + *fill* 0x401578db 0x0 + *fill* 0x401578db 0x0 + *fill* 0x401578db 0x0 + *fill* 0x401578db 0x0 + *fill* 0x401578db 0x0 + *fill* 0x401578db 0x0 + *fill* 0x401578db 0x1 + .text.pbuf_clen + 0x401578dc 0x16 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x401578dc pbuf_clen + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x0 + *fill* 0x401578f2 0x2 + .text.raw_bind_netif + 0x401578f4 0x17 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x401578f4 raw_bind_netif + *fill* 0x4015790b 0x1 + .text.raw_recv + 0x4015790c 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4015790c raw_recv + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x0 + *fill* 0x40157916 0x2 + .text.tcp_bind_netif + 0x40157918 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x40157918 tcp_bind_netif + *fill* 0x4015792f 0x0 + *fill* 0x4015792f 0x0 + *fill* 0x4015792f 0x0 + *fill* 0x4015792f 0x0 + *fill* 0x4015792f 0x1 + .text.tcp_arg 0x40157930 0xa esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x40157930 tcp_arg + *fill* 0x4015793a 0x0 + *fill* 0x4015793a 0x0 + *fill* 0x4015793a 0x0 + *fill* 0x4015793a 0x2 + .text.tcp_accept + 0x4015793c 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4015793c tcp_accept + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x0 + *fill* 0x4015794b 0x1 + .text.udp_bind_netif + 0x4015794c 0x17 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4015794c udp_bind_netif + *fill* 0x40157963 0x0 + *fill* 0x40157963 0x0 + *fill* 0x40157963 0x1 + .text.udp_recv + 0x40157964 0xe esp-idf/lwip/liblwip.a(udp.c.obj) + 0x40157964 udp_recv + *fill* 0x40157972 0x0 + *fill* 0x40157972 0x2 + .text.dhcp_set_state + 0x40157974 0x18 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + *fill* 0x4015798c 0x0 + .text.dhcp_supplied_address + 0x4015798c 0x38 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4015798c dhcp_supplied_address + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + *fill* 0x401579c4 0x0 + .text.igmp_remove_group + 0x401579c4 0x22 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x401579e6 0x0 + *fill* 0x401579e6 0x0 + *fill* 0x401579e6 0x0 + *fill* 0x401579e6 0x0 + *fill* 0x401579e6 0x0 + *fill* 0x401579e6 0x0 + *fill* 0x401579e6 0x0 + *fill* 0x401579e6 0x0 + *fill* 0x401579e6 0x2 + .text.igmp_lookfor_group + 0x401579e8 0x17 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x401579e8 igmp_lookfor_group + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x0 + *fill* 0x401579ff 0x1 + .text.ip4_addr_isbroadcast_u32 + 0x40157a00 0x46 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x40157a00 ip4_addr_isbroadcast_u32 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x0 + *fill* 0x40157a46 0x2 + .text.mld6_remove_group + 0x40157a48 0x2c esp-idf/lwip/liblwip.a(mld6.c.obj) + *fill* 0x40157a74 0x0 + *fill* 0x40157a74 0x0 + *fill* 0x40157a74 0x0 + *fill* 0x40157a74 0x0 + .text.mld6_lookfor_group + 0x40157a74 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x40157a74 mld6_lookfor_group + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x0 + *fill* 0x40157aa9 0x3 + .text.nd6_restart_netif + 0x40157aac 0xa esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x40157aac nd6_restart_netif + *fill* 0x40157ab6 0x0 + *fill* 0x40157ab6 0x0 + *fill* 0x40157ab6 0x0 + *fill* 0x40157ab6 0x0 + *fill* 0x40157ab6 0x0 + *fill* 0x40157ab6 0x0 + *fill* 0x40157ab6 0x2 + .text.lwip_setsockopt_impl_ext + 0x40157ab8 0xde esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + 0x40157ab8 lwip_setsockopt_impl_ext + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x0 + *fill* 0x40157b96 0x2 + .text.dns_init + 0x40157b98 0x5 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x40157b98 dns_init + *fill* 0x40157b9d 0x0 + *fill* 0x40157b9d 0x3 + .text.lwip_standard_chksum + 0x40157ba0 0x69 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x40157ba0 lwip_standard_chksum + *fill* 0x40157c09 0x0 + *fill* 0x40157c09 0x0 + *fill* 0x40157c09 0x0 + *fill* 0x40157c09 0x0 + *fill* 0x40157c09 0x0 + *fill* 0x40157c09 0x3 + .text.esp_netif_reset_ip_info + 0x40157c0c 0x15 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x0 + *fill* 0x40157c21 0x3 + .text.esp_netif_get_io_driver + 0x40157c24 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40157c24 esp_netif_get_io_driver + *fill* 0x40157c2b 0x0 + *fill* 0x40157c2b 0x0 + *fill* 0x40157c2b 0x0 + *fill* 0x40157c2b 0x0 + *fill* 0x40157c2b 0x0 + *fill* 0x40157c2b 0x0 + *fill* 0x40157c2b 0x1 + .text.esp_netif_free_rx_buffer + 0x40157c2c 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40157c2c esp_netif_free_rx_buffer + *fill* 0x40157c3a 0x2 + .text.esp_netif_transmit_wrap + 0x40157c3c 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40157c3c esp_netif_transmit_wrap + .text.esp_netif_receive + 0x40157c50 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40157c50 esp_netif_receive + .text.esp_netif_dhcpc_get_status + 0x40157c64 0x21 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40157c64 esp_netif_dhcpc_get_status + *fill* 0x40157c85 0x0 + *fill* 0x40157c85 0x3 + .text.esp_netif_is_netif_up + 0x40157c88 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40157c88 esp_netif_is_netif_up + *fill* 0x40157ca4 0x0 + *fill* 0x40157ca4 0x0 + .text.esp_netif_is_valid_static_ip + 0x40157ca4 0x19 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40157ca4 esp_netif_is_valid_static_ip + *fill* 0x40157cbd 0x3 + .text.esp_netif_get_flags + 0x40157cc0 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40157cc0 esp_netif_get_flags + .text.esp_netif_get_ifkey + 0x40157cc8 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40157cc8 esp_netif_get_ifkey + .text.esp_netif_get_desc + 0x40157cd0 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40157cd0 esp_netif_get_desc + .text.esp_netif_get_event_id + 0x40157cd8 0x19 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40157cd8 esp_netif_get_event_id + *fill* 0x40157cf1 0x0 + *fill* 0x40157cf1 0x0 + *fill* 0x40157cf1 0x3 + .text.esp_aes_gmac + 0x40157cf4 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x0 + *fill* 0x40157cfb 0x1 + .text.rc4_skip + 0x40157cfc 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + 0x40157cfc rc4_skip + *fill* 0x40157db5 0x0 + *fill* 0x40157db5 0x0 + *fill* 0x40157db5 0x0 + *fill* 0x40157db5 0x0 + *fill* 0x40157db5 0x0 + *fill* 0x40157db5 0x0 + *fill* 0x40157db5 0x0 + *fill* 0x40157db5 0x0 + *fill* 0x40157db5 0x0 + *fill* 0x40157db5 0x3 + .text.hex2num 0x40157db8 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.inc_byte_array + 0x40157df0 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x40157df0 inc_byte_array + *fill* 0x40157e0e 0x2 + .text.buf_shift_right + 0x40157e10 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x40157e10 buf_shift_right + *fill* 0x40157e4e 0x0 + *fill* 0x40157e4e 0x0 + *fill* 0x40157e4e 0x0 + *fill* 0x40157e4e 0x2 + .text.int_array_len + 0x40157e50 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x40157e50 int_array_len + *fill* 0x40157e68 0x0 + .text.os_reltime_initialized + 0x40157e68 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x40157e68 os_reltime_initialized + *fill* 0x40157e82 0x2 + .text.sha1_xor + 0x40157e84 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + *fill* 0x40157eb6 0x0 + *fill* 0x40157eb6 0x0 + *fill* 0x40157eb6 0x0 + *fill* 0x40157eb6 0x0 + *fill* 0x40157eb6 0x2 + .text.xor_aes_block + 0x40157eb8 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x0 + *fill* 0x40157ee1 0x3 + .text.nan_start + 0x40157ee4 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x40157ee4 nan_start + *fill* 0x40157eeb 0x1 + .text.nan_stop + 0x40157eec 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x40157eec nan_stop + *fill* 0x40157ef3 0x1 + .text.nan_input + 0x40157ef4 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x40157ef4 nan_input + *fill* 0x40157efb 0x1 + .text.nan_sm_handle_event + 0x40157efc 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x40157efc nan_sm_handle_event + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x0 + *fill* 0x40157f01 0x3 + .text.httpd_sess_enum + 0x40157f04 0x36 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x40157f04 httpd_sess_enum + *fill* 0x40157f3a 0x0 + *fill* 0x40157f3a 0x0 + *fill* 0x40157f3a 0x0 + *fill* 0x40157f3a 0x0 + *fill* 0x40157f3a 0x0 + *fill* 0x40157f3a 0x0 + *fill* 0x40157f3a 0x0 + *fill* 0x40157f3a 0x0 + *fill* 0x40157f3a 0x0 + *fill* 0x40157f3a 0x2 + .text.httpd_sess_pending + 0x40157f3c 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x40157f3c httpd_sess_pending + *fill* 0x40157f69 0x0 + *fill* 0x40157f69 0x0 + *fill* 0x40157f69 0x0 + *fill* 0x40157f69 0x3 + .text.httpd_send_all + 0x40157f6c 0x31 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x40157f9d 0x0 + *fill* 0x40157f9d 0x0 + *fill* 0x40157f9d 0x0 + *fill* 0x40157f9d 0x3 + .text.httpd_resp_set_status + 0x40157fa0 0x29 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x40157fa0 httpd_resp_set_status + *fill* 0x40157fc9 0x3 + .text.httpd_resp_set_type + 0x40157fcc 0x29 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x40157fcc httpd_resp_set_type + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x0 + *fill* 0x40157ff5 0x3 + .text.mbedtls_mpi_init + 0x40157ff8 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x40157ff8 mbedtls_mpi_init + *fill* 0x4015800b 0x0 + *fill* 0x4015800b 0x0 + *fill* 0x4015800b 0x0 + *fill* 0x4015800b 0x0 + *fill* 0x4015800b 0x1 + .text.mbedtls_mpi_get_bit + 0x4015800c 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4015800c mbedtls_mpi_get_bit + *fill* 0x40158032 0x2 + .text.mbedtls_mpi_lsb + 0x40158034 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x40158034 mbedtls_mpi_lsb + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + *fill* 0x40158068 0x0 + .text.mbedtls_ct_uint_lt + 0x40158068 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + *fill* 0x401580a5 0x3 + .text.mbedtls_mpi_core_clz + 0x401580a8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x401580a8 mbedtls_mpi_core_clz + *fill* 0x401580b0 0x0 + *fill* 0x401580b0 0x0 + .text.mbedtls_mpi_core_cond_assign + 0x401580b0 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x401580b0 mbedtls_mpi_core_cond_assign + *fill* 0x401580de 0x2 + .text.mbedtls_mpi_core_cond_swap + 0x401580e0 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x401580e0 mbedtls_mpi_core_cond_swap + *fill* 0x4015811f 0x0 + *fill* 0x4015811f 0x0 + *fill* 0x4015811f 0x0 + *fill* 0x4015811f 0x0 + *fill* 0x4015811f 0x1 + .text.mbedtls_mpi_core_add + 0x40158120 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x40158120 mbedtls_mpi_core_add + *fill* 0x4015815a 0x2 + .text.mbedtls_mpi_core_sub + 0x4015815c 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4015815c mbedtls_mpi_core_sub + *fill* 0x40158199 0x3 + .text.mbedtls_mpi_core_mla + 0x4015819c 0x18f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4015819c mbedtls_mpi_core_mla + *fill* 0x4015832b 0x1 + .text.mbedtls_mpi_core_montmul_init + 0x4015832c 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4015832c mbedtls_mpi_core_montmul_init + *fill* 0x40158357 0x0 + *fill* 0x40158357 0x0 + *fill* 0x40158357 0x0 + *fill* 0x40158357 0x0 + *fill* 0x40158357 0x1 + .text.mbedtls_mpi_core_sub_int + 0x40158358 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x40158358 mbedtls_mpi_core_sub_int + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + *fill* 0x40158388 0x0 + .text.mbedtls_ct_uint_lt + 0x40158388 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + *fill* 0x401583c5 0x3 + .text.mbedtls_ct_memcmp + 0x401583c8 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x401583c8 mbedtls_ct_memcmp + *fill* 0x401583fe 0x0 + *fill* 0x401583fe 0x2 + .text.mbedtls_ct_memcpy_if + 0x40158400 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x40158400 mbedtls_ct_memcpy_if + *fill* 0x40158433 0x1 + .text.mbedtls_ct_zeroize_if + 0x40158434 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x40158434 mbedtls_ct_zeroize_if + *fill* 0x40158453 0x1 + .text.cmac_pad + 0x40158454 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + *fill* 0x40158488 0x0 + *fill* 0x40158488 0x0 + *fill* 0x40158488 0x0 + *fill* 0x40158488 0x0 + *fill* 0x40158488 0x0 + *fill* 0x40158488 0x0 + *fill* 0x40158488 0x0 + *fill* 0x40158488 0x0 + *fill* 0x40158488 0x0 + *fill* 0x40158488 0x0 + *fill* 0x40158488 0x0 + .text.mbedtls_md_get_size + 0x40158488 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x40158488 mbedtls_md_get_size + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + *fill* 0x40158498 0x0 + .text.esp_aes_xts_decode_keys + 0x40158498 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + *fill* 0x401584bd 0x3 + .text.esp_gf128mul_x_ble + 0x401584c0 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + *fill* 0x401585c8 0x0 + *fill* 0x401585c8 0x0 + *fill* 0x401585c8 0x0 + *fill* 0x401585c8 0x0 + *fill* 0x401585c8 0x0 + .text.valid_key_length + 0x401585c8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x401585c8 valid_key_length + *fill* 0x401585f0 0x0 + *fill* 0x401585f0 0x0 + *fill* 0x401585f0 0x0 + .text.esp_aes_validate_input + 0x401585f0 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + *fill* 0x4015860d 0x0 + *fill* 0x4015860d 0x0 + *fill* 0x4015860d 0x0 + *fill* 0x4015860d 0x0 + *fill* 0x4015860d 0x0 + *fill* 0x4015860d 0x3 + .text.mbedtls_mpi_msb + 0x40158610 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x40158659 0x0 + *fill* 0x40158659 0x0 + *fill* 0x40158659 0x0 + *fill* 0x40158659 0x0 + *fill* 0x40158659 0x0 + *fill* 0x40158659 0x0 + *fill* 0x40158659 0x0 + *fill* 0x40158659 0x0 + *fill* 0x40158659 0x3 + .text.mbedtls_zeroize + 0x4015865c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + *fill* 0x40158675 0x0 + *fill* 0x40158675 0x0 + *fill* 0x40158675 0x0 + *fill* 0x40158675 0x0 + *fill* 0x40158675 0x0 + *fill* 0x40158675 0x0 + *fill* 0x40158675 0x3 + .text.mbedtls_zeroize + 0x40158678 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + *fill* 0x40158691 0x0 + *fill* 0x40158691 0x0 + *fill* 0x40158691 0x0 + *fill* 0x40158691 0x0 + *fill* 0x40158691 0x3 + .text.mbedtls_zeroize + 0x40158694 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x401586ad 0x0 + *fill* 0x401586ad 0x0 + *fill* 0x401586ad 0x0 + *fill* 0x401586ad 0x0 + *fill* 0x401586ad 0x0 + *fill* 0x401586ad 0x3 + .text.xor_data + 0x401586b0 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x401586d1 0x0 + *fill* 0x401586d1 0x0 + *fill* 0x401586d1 0x0 + *fill* 0x401586d1 0x0 + *fill* 0x401586d1 0x0 + *fill* 0x401586d1 0x0 + *fill* 0x401586d1 0x0 + *fill* 0x401586d1 0x0 + *fill* 0x401586d1 0x0 + *fill* 0x401586d1 0x0 + *fill* 0x401586d1 0x3 + .text.aria_sl 0x401586d4 0xe1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x401587b5 0x0 + *fill* 0x401587b5 0x0 + *fill* 0x401587b5 0x0 + *fill* 0x401587b5 0x0 + *fill* 0x401587b5 0x0 + *fill* 0x401587b5 0x0 + *fill* 0x401587b5 0x0 + *fill* 0x401587b5 0x0 + *fill* 0x401587b5 0x0 + *fill* 0x401587b5 0x0 + *fill* 0x401587b5 0x3 + .text.mbedtls_asn1_get_len + 0x401587b8 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x401587b8 mbedtls_asn1_get_len + *fill* 0x40158849 0x0 + *fill* 0x40158849 0x0 + *fill* 0x40158849 0x0 + *fill* 0x40158849 0x0 + *fill* 0x40158849 0x0 + *fill* 0x40158849 0x3 + .text.mbedtls_asn1_write_len + 0x4015884c 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x4015884c mbedtls_asn1_write_len + *fill* 0x4015889a 0x2 + .text.mbedtls_asn1_write_tag + 0x4015889c 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x4015889c mbedtls_asn1_write_tag + *fill* 0x401588bd 0x0 + *fill* 0x401588bd 0x0 + *fill* 0x401588bd 0x0 + *fill* 0x401588bd 0x0 + *fill* 0x401588bd 0x0 + *fill* 0x401588bd 0x0 + *fill* 0x401588bd 0x3 + .text.mbedtls_ct_uint_lt + 0x401588c0 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + *fill* 0x401588fd 0x0 + *fill* 0x401588fd 0x0 + *fill* 0x401588fd 0x0 + *fill* 0x401588fd 0x0 + *fill* 0x401588fd 0x0 + *fill* 0x401588fd 0x0 + *fill* 0x401588fd 0x0 + *fill* 0x401588fd 0x0 + *fill* 0x401588fd 0x0 + *fill* 0x401588fd 0x0 + *fill* 0x401588fd 0x3 + .text.mbedtls_rsa_get_len + 0x40158900 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x40158900 mbedtls_rsa_get_len + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x0 + *fill* 0x40158907 0x1 + .text.good_nonce_len + 0x40158908 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + *fill* 0x4015891c 0x0 + .text.mbedtls_ecdsa_can_do + 0x4015891c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4015891c mbedtls_ecdsa_can_do + *fill* 0x4015892d 0x0 + *fill* 0x4015892d 0x0 + *fill* 0x4015892d 0x0 + *fill* 0x4015892d 0x0 + *fill* 0x4015892d 0x0 + *fill* 0x4015892d 0x0 + *fill* 0x4015892d 0x0 + *fill* 0x4015892d 0x0 + *fill* 0x4015892d 0x0 + *fill* 0x4015892d 0x3 + .text.ecp_group_is_static_comb_table + 0x40158930 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + *fill* 0x4015894c 0x0 + .text.mbedtls_ecp_get_type + 0x4015894c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4015894c mbedtls_ecp_get_type + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x0 + *fill* 0x40158965 0x3 + .text.add64 0x40158968 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .text.carry64 0x401589a8 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x401589cf 0x1 + .text.mbedtls_ecp_fix_negative + 0x401589d0 0x5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x0 + *fill* 0x40158a2b 0x1 + .text.mbedtls_entropy_add_source + 0x40158a2c 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x40158a2c mbedtls_entropy_add_source + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x0 + *fill* 0x40158a52 0x2 + .text.ieee80211_is_robust_mgmt_frm + 0x40158a54 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x40158a54 ieee80211_is_robust_mgmt_frm + *fill* 0x40158a9e 0x2 + .text.ieee80211_crypto_attach + 0x40158aa0 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x40158aa0 ieee80211_crypto_attach + *fill* 0x40158aa5 0x0 + *fill* 0x40158aa5 0x0 + *fill* 0x40158aa5 0x0 + *fill* 0x40158aa5 0x0 + *fill* 0x40158aa5 0x0 + *fill* 0x40158aa5 0x3 + .text.ieee80211_get_cipher_mic_len + 0x40158aa8 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x40158aa8 ieee80211_get_cipher_mic_len + *fill* 0x40158ad2 0x0 + *fill* 0x40158ad2 0x2 + .text.ieee80211_is_action_category_robust + 0x40158ad4 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x0 + *fill* 0x40158b05 0x3 + .text.addba_get_rap_from_private + 0x40158b08 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + *fill* 0x40158b40 0x0 + .text.addba_timeout_process + 0x40158b40 0x21 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x40158b40 addba_timeout_process + *fill* 0x40158b61 0x3 + .text.ampdu_dispatch_movement + 0x40158b64 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x40158b64 ampdu_dispatch_movement + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x0 + *fill* 0x40158ba2 0x2 + .text.ieee80211_is_support_rate + 0x40158ba4 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x40158ba4 ieee80211_is_support_rate + .text.ieee80211_is_lr_only + 0x40158bec 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x40158bec ieee80211_is_lr_only + *fill* 0x40158c04 0x0 + *fill* 0x40158c04 0x0 + *fill* 0x40158c04 0x0 + *fill* 0x40158c04 0x0 + *fill* 0x40158c04 0x0 + *fill* 0x40158c04 0x0 + *fill* 0x40158c04 0x0 + *fill* 0x40158c04 0x0 + .text.ieee80211_setup_rateset + 0x40158c04 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x40158c04 ieee80211_setup_rateset + *fill* 0x40158c0b 0x0 + *fill* 0x40158c0b 0x0 + *fill* 0x40158c0b 0x0 + *fill* 0x40158c0b 0x0 + *fill* 0x40158c0b 0x1 + .text.wifi_station_get_reconnect_policy + 0x40158c0c 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x40158c0c wifi_station_get_reconnect_policy + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x0 + *fill* 0x40158c13 0x1 + .text.ieee80211_is_bufferable_mmpdu + 0x40158c14 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x40158c14 ieee80211_is_bufferable_mmpdu + *fill* 0x40158c6c 0x0 + .text.ieee80211_gettid + 0x40158c6c 0x36 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x40158c6c ieee80211_gettid + *fill* 0x40158ca2 0x2 + .text.ieee80211_set_shortslottime + 0x40158ca4 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x40158ca4 ieee80211_set_shortslottime + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x0 + *fill* 0x40158cbf 0x1 + .text.scan_check_hidden + 0x40158cc0 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x40158cc0 scan_check_hidden + *fill* 0x40158ce6 0x0 + *fill* 0x40158ce6 0x0 + *fill* 0x40158ce6 0x0 + *fill* 0x40158ce6 0x0 + *fill* 0x40158ce6 0x0 + *fill* 0x40158ce6 0x0 + *fill* 0x40158ce6 0x0 + *fill* 0x40158ce6 0x0 + *fill* 0x40158ce6 0x2 + .text.scan_fill_wps_scan_ie + 0x40158ce8 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x40158ce8 scan_fill_wps_scan_ie + *fill* 0x40158d19 0x0 + *fill* 0x40158d19 0x0 + *fill* 0x40158d19 0x3 + .text.ieee80211_is_action_category_robust + 0x40158d1c 0x31 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x0 + *fill* 0x40158d4d 0x3 + .text.cnx_rc_update_age + 0x40158d50 0x1b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x40158d50 cnx_rc_update_age + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x0 + *fill* 0x40158d6b 0x1 + .text.send_inval + 0x40158d6c 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + *fill* 0x40158d73 0x1 + .text.recv_inval + 0x40158d74 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x0 + *fill* 0x40158d7b 0x1 + .text.wep_decap + 0x40158d7c 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x40158d7c wep_decap + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x0 + *fill* 0x40158da5 0x3 + .text.pm_noise_check_process + 0x40158da8 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x40158da8 pm_noise_check_process + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x0 + *fill* 0x40158dad 0x3 + .text.pm_force_scan_unlock + 0x40158db0 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x40158db0 pm_force_scan_unlock + *fill* 0x40158db5 0x0 + *fill* 0x40158db5 0x0 + *fill* 0x40158db5 0x0 + *fill* 0x40158db5 0x0 + *fill* 0x40158db5 0x3 + .text.getle32 0x40158db8 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40158db8 getle32 + *fill* 0x40158ddb 0x1 + .text.putle32 0x40158ddc 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40158ddc putle32 + *fill* 0x40158dfc 0x0 + *fill* 0x40158dfc 0x0 + *fill* 0x40158dfc 0x0 + *fill* 0x40158dfc 0x0 + *fill* 0x40158dfc 0x0 + *fill* 0x40158dfc 0x0 + *fill* 0x40158dfc 0x0 + *fill* 0x40158dfc 0x0 + .text.ppCheckIsConnTraffic + 0x40158dfc 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40158dfc ppCheckIsConnTraffic + .text.ppSetInterface + 0x40158e4c 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40158e4c ppSetInterface + *fill* 0x40158e51 0x3 + .text.pp_gettid + 0x40158e54 0x2d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40158e54 pp_gettid + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x0 + *fill* 0x40158e81 0x3 + .text.dbg_lmac_init + 0x40158e84 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x40158e84 dbg_lmac_init + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x0 + *fill* 0x40158e89 0x3 + .text.RC_SetBasicRate + 0x40158e8c 0x7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x40158e8c RC_SetBasicRate + *fill* 0x40158e93 0x0 + *fill* 0x40158e93 0x0 + *fill* 0x40158e93 0x0 + *fill* 0x40158e93 0x1 + .text.rc11NRate2SchedIdx + 0x40158e94 0x4c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcLoRaRate2SchedIdx + 0x40158ee0 0x1c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40158ee0 rcLoRaRate2SchedIdx + .text.rcBuildIndex + 0x40158efc 0x1d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x40158f19 0x3 + .text.trc_calc_duration + 0x40158f1c 0x11 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40158f1c trc_calc_duration + *fill* 0x40158f2d 0x0 + *fill* 0x40158f2d 0x3 + .text.trcAmpduSetState + 0x40158f30 0x26 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40158f30 trcAmpduSetState + *fill* 0x40158f56 0x2 + .text.rcSetTxAmpduLimit + 0x40158f58 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40158f58 rcSetTxAmpduLimit + *fill* 0x40158f93 0x0 + *fill* 0x40158f93 0x1 + .text.rcGetDefaultHigestRateIdx + 0x40158f94 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40158f94 rcGetDefaultHigestRateIdx + *fill* 0x40158fac 0x0 + *fill* 0x40158fac 0x0 + *fill* 0x40158fac 0x0 + *fill* 0x40158fac 0x0 + *fill* 0x40158fac 0x0 + .text.rcUpdateAckSnr + 0x40158fac 0x4f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40158fac rcUpdateAckSnr + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x0 + *fill* 0x40158ffb 0x1 + .text.wDev_SetAuthed + 0x40158ffc 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40158ffc wDev_SetAuthed + *fill* 0x40159001 0x0 + *fill* 0x40159001 0x0 + *fill* 0x40159001 0x0 + *fill* 0x40159001 0x0 + *fill* 0x40159001 0x0 + *fill* 0x40159001 0x0 + *fill* 0x40159001 0x0 + *fill* 0x40159001 0x0 + *fill* 0x40159001 0x0 + *fill* 0x40159001 0x0 + *fill* 0x40159001 0x0 + *fill* 0x40159001 0x3 + .text.wDev_RxSecError + 0x40159004 0x2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40159004 wDev_RxSecError + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + *fill* 0x40159030 0x0 + .text.mpu_hal_set_region_access + 0x40159030 0x4c esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x40159030 mpu_hal_set_region_access + *fill* 0x4015907c 0x0 + *fill* 0x4015907c 0x0 + *fill* 0x4015907c 0x0 + *fill* 0x4015907c 0x0 + *fill* 0x4015907c 0x0 + *fill* 0x4015907c 0x0 + *fill* 0x4015907c 0x0 + *fill* 0x4015907c 0x0 + *fill* 0x4015907c 0x0 + .text.mpi_hal_calc_hardware_words + 0x4015907c 0xc esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4015907c mpi_hal_calc_hardware_words + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + *fill* 0x40159088 0x0 + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_EEET_SE_SE_T0_ + 0x40159088 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x4015909a 0x0 + *fill* 0x4015909a 0x2 + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZ9nvs_closeEUlRS1_E_EEET_SA_SA_T0_ + 0x4015909c 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x401590ae 0x0 + *fill* 0x401590ae 0x2 + .text._ZN14NVSHandleEntryD2Ev + 0x401590b0 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x401590b0 NVSHandleEntry::~NVSHandleEntry() + 0x401590b0 NVSHandleEntry::~NVSHandleEntry() + *fill* 0x401590c0 0x0 + *fill* 0x401590c0 0x0 + .text._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x401590c0 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x401590c0 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x401590e2 0x0 + *fill* 0x401590e2 0x2 + .text._ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ + 0x401590e4 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x401590e4 intrusive_list::push_back(NVSHandleEntry*) + *fill* 0x40159105 0x0 + *fill* 0x40159105 0x0 + *fill* 0x40159105 0x3 + .text._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x40159108 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159108 int nvs::NVSHandle::set_item(char const*, signed char) + *fill* 0x40159124 0x0 + .text._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x40159124 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159124 int nvs::NVSHandle::set_item(char const*, unsigned char) + *fill* 0x40159140 0x0 + .text._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x40159140 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159140 int nvs::NVSHandle::set_item(char const*, short) + .text._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x4015915c 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4015915c int nvs::NVSHandle::set_item(char const*, unsigned short) + *fill* 0x40159178 0x0 + .text._ZN3nvs9NVSHandle8set_itemIlEEiPKcT_ + 0x40159178 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159178 int nvs::NVSHandle::set_item(char const*, long) + *fill* 0x40159192 0x2 + .text._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x40159194 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159194 int nvs::NVSHandle::set_item(char const*, unsigned long) + *fill* 0x401591ae 0x0 + *fill* 0x401591ae 0x2 + .text._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x401591b0 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x401591b0 int nvs::NVSHandle::set_item(char const*, long long) + .text._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x401591cc 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x401591cc int nvs::NVSHandle::set_item(char const*, unsigned long long) + .text._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x401591e8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x401591e8 int nvs::NVSHandle::get_item(char const*, signed char&) + *fill* 0x40159200 0x0 + .text._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x40159200 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159200 int nvs::NVSHandle::get_item(char const*, unsigned char&) + *fill* 0x40159218 0x0 + .text._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x40159218 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159218 int nvs::NVSHandle::get_item(char const*, short&) + .text._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x40159230 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159230 int nvs::NVSHandle::get_item(char const*, unsigned short&) + *fill* 0x40159248 0x0 + .text._ZN3nvs9NVSHandle8get_itemIlEEiPKcRT_ + 0x40159248 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159248 int nvs::NVSHandle::get_item(char const*, long&) + .text._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x40159260 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159260 int nvs::NVSHandle::get_item(char const*, unsigned long&) + *fill* 0x40159278 0x0 + .text._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x40159278 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159278 int nvs::NVSHandle::get_item(char const*, long long&) + .text._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x40159290 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40159290 int nvs::NVSHandle::get_item(char const*, unsigned long long&) + *fill* 0x401592a8 0x0 + *fill* 0x401592a8 0x0 + *fill* 0x401592a8 0x0 + *fill* 0x401592a8 0x0 + *fill* 0x401592a8 0x0 + *fill* 0x401592a8 0x0 + *fill* 0x401592a8 0x0 + *fill* 0x401592a8 0x0 + *fill* 0x401592a8 0x0 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ + 0x401592a8 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x401592a8 intrusive_list::push_back(nvs::Storage::BlobIndexNode*) + *fill* 0x401592c9 0x3 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x401592cc 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x401592cc intrusive_list::erase(intrusive_list::iterator) + *fill* 0x401592ee 0x2 + .text._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x401592f0 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x401592f0 CompressedEnumTable::set(unsigned int, bool) + *fill* 0x40159326 0x2 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x40159328 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x40159328 intrusive_list::push_back(nvs::Storage::NamespaceEntry*) + *fill* 0x40159349 0x0 + *fill* 0x40159349 0x3 + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ + 0x4015934c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4015934c intrusive_list::push_back(nvs::Storage::UsedPageNode*) + *fill* 0x4015936d 0x0 + *fill* 0x4015936d 0x0 + *fill* 0x4015936d 0x3 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE + 0x40159370 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x40159370 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x40159392 0x0 + *fill* 0x40159392 0x2 + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE + 0x40159394 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x40159394 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x0 + *fill* 0x401593b6 0x2 + .text._ZN3nvs12NVSPartition18get_partition_nameEv + 0x401593b8 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x401593b8 nvs::NVSPartition::get_partition_name() + *fill* 0x401593c2 0x2 + .text._ZN3nvs12NVSPartition11get_addressEv + 0x401593c4 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x401593c4 nvs::NVSPartition::get_address() + *fill* 0x401593cd 0x3 + .text._ZN3nvs12NVSPartition8get_sizeEv + 0x401593d0 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x401593d0 nvs::NVSPartition::get_size() + *fill* 0x401593d9 0x3 + .text._ZN3nvs12NVSPartition12get_readonlyEv + 0x401593dc 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x401593dc nvs::NVSPartition::get_readonly() + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x0 + *fill* 0x401593e6 0x2 + .text._ZN14intrusive_listIN3nvs12NVSPartitionEE9push_backEPS1_ + 0x401593e8 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x401593e8 intrusive_list::push_back(nvs::NVSPartition*) + *fill* 0x40159409 0x3 + .text._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + 0x4015940c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4015940c intrusive_list::erase(intrusive_list::iterator) + *fill* 0x4015942e 0x2 + .text._ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ + 0x40159430 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x40159430 intrusive_list::push_back(nvs::Storage*) + *fill* 0x40159451 0x3 + .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x40159454 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x40159454 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x40159476 0x0 + *fill* 0x40159476 0x2 + .text._ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE + 0x40159478 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x40159478 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x4015949a 0x2 + .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ + 0x4015949c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4015949c intrusive_list::push_back(nvs::NVSHandleSimple*) + *fill* 0x401594bd 0x0 + *fill* 0x401594bd 0x0 + *fill* 0x401594bd 0x0 + *fill* 0x401594bd 0x3 + .text._ZN3nvs4Lock4initEv + 0x401594c0 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x401594c0 nvs::Lock::init() + *fill* 0x401594c7 0x1 + .text._ZN3nvs8HashList13HashListBlockC2Ev + 0x401594c8 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x401594c8 nvs::HashList::HashListBlock::HashListBlock() + 0x401594c8 nvs::HashList::HashListBlock::HashListBlock() + *fill* 0x401594ed 0x0 + *fill* 0x401594ed 0x3 + .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x401594f0 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x401594f0 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x40159512 0x0 + *fill* 0x40159512 0x0 + *fill* 0x40159512 0x0 + *fill* 0x40159512 0x2 + .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ + 0x40159514 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x40159514 intrusive_list::push_back(nvs::HashList::HashListBlock*) + *fill* 0x40159535 0x0 + *fill* 0x40159535 0x3 + .text._ZN3nvs4Page20updateFirstUsedEntryEjj + 0x40159538 0x55 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x40159538 nvs::Page::updateFirstUsedEntry(unsigned int, unsigned int) + *fill* 0x4015958d 0x0 + *fill* 0x4015958d 0x3 + .text._ZN3nvs4Page14alterPageStateENS0_9PageStateE + 0x40159590 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x40159590 nvs::Page::alterPageState(nvs::Page::PageState) + .text._ZNK3nvs4Page9readEntryEjRNS_4ItemE + 0x401595b8 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x401595b8 nvs::Page::readEntry(unsigned int, nvs::Item&) const + *fill* 0x401595e2 0x0 + *fill* 0x401595e2 0x0 + *fill* 0x401595e2 0x0 + *fill* 0x401595e2 0x0 + *fill* 0x401595e2 0x0 + *fill* 0x401595e2 0x0 + *fill* 0x401595e2 0x2 + .text._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x401595e4 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x401595e4 CompressedEnumTable::set(unsigned int, nvs::Page::EntryState) + *fill* 0x4015961c 0x0 + *fill* 0x4015961c 0x0 + *fill* 0x4015961c 0x0 + *fill* 0x4015961c 0x0 + *fill* 0x4015961c 0x0 + *fill* 0x4015961c 0x0 + *fill* 0x4015961c 0x0 + .text._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x4015961c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4015961c intrusive_list::push_back(nvs::Page*) + *fill* 0x4015963d 0x3 + .text._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x40159640 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x40159640 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x40159661 0x0 + *fill* 0x40159661 0x0 + *fill* 0x40159661 0x0 + *fill* 0x40159661 0x3 + .text._ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ + 0x40159664 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x40159664 intrusive_list::push_front(nvs::Page*) + *fill* 0x40159684 0x0 + *fill* 0x40159684 0x0 + *fill* 0x40159684 0x0 + *fill* 0x40159684 0x0 + *fill* 0x40159684 0x0 + *fill* 0x40159684 0x0 + *fill* 0x40159684 0x0 + *fill* 0x40159684 0x0 + .text.esp_phy_modem_init + 0x40159684 0x5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x40159684 esp_phy_modem_init + *fill* 0x40159689 0x3 + .text.esp_phy_modem_deinit + 0x4015968c 0x5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4015968c esp_phy_modem_deinit + *fill* 0x40159691 0x0 + *fill* 0x40159691 0x0 + *fill* 0x40159691 0x3 + .text.esp_phy_update_country_info + 0x40159694 0x7 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x40159694 esp_phy_update_country_info + *fill* 0x4015969b 0x0 + *fill* 0x4015969b 0x0 + *fill* 0x4015969b 0x0 + *fill* 0x4015969b 0x1 + .text.get_ip_info + 0x4015969c 0x2e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x401596ca 0x2 + .text.node_insert_to_list + 0x401596cc 0x3b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x40159707 0x1 + .text.add_msg_type + 0x40159708 0x14 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x4015971c 0x0 + .text.add_end 0x4015971c 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x40159728 0x0 + *fill* 0x40159728 0x0 + *fill* 0x40159728 0x0 + *fill* 0x40159728 0x0 + *fill* 0x40159728 0x0 + *fill* 0x40159728 0x0 + *fill* 0x40159728 0x0 + .text.dhcps_set_option_info + 0x40159728 0xa8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x40159728 dhcps_set_option_info + .text.node_remove_from_list + 0x401597d0 0x31 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x401597d0 node_remove_from_list + *fill* 0x40159801 0x0 + *fill* 0x40159801 0x0 + *fill* 0x40159801 0x0 + *fill* 0x40159801 0x0 + *fill* 0x40159801 0x0 + *fill* 0x40159801 0x0 + *fill* 0x40159801 0x3 + .text.dhcps_set_new_lease_cb + 0x40159804 0x13 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x40159804 dhcps_set_new_lease_cb + *fill* 0x40159817 0x0 + *fill* 0x40159817 0x0 + *fill* 0x40159817 0x0 + *fill* 0x40159817 0x0 + *fill* 0x40159817 0x0 + *fill* 0x40159817 0x0 + *fill* 0x40159817 0x0 + *fill* 0x40159817 0x1 + .text.low_level_init + 0x40159818 0x20 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + *fill* 0x40159838 0x0 + *fill* 0x40159838 0x0 + *fill* 0x40159838 0x0 + *fill* 0x40159838 0x0 + .text.wpa_ap_get_peer_spp_msg + 0x40159838 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x40159838 wpa_ap_get_peer_spp_msg + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x0 + *fill* 0x4015984e 0x2 + .text.supplicant_sta_conn_handler + 0x40159850 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x40159850 supplicant_sta_conn_handler + *fill* 0x40159855 0x3 + .text.supplicant_sta_disconn_handler + 0x40159858 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x40159858 supplicant_sta_disconn_handler + *fill* 0x4015985d 0x3 + .text.esp_set_scan_ie + 0x40159860 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x40159860 esp_set_scan_ie + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x0 + *fill* 0x40159865 0x3 + .text.crypto_ec_get_prime + 0x40159868 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x40159868 crypto_ec_get_prime + *fill* 0x4015986f 0x1 + .text.crypto_ec_get_order + 0x40159870 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x40159870 crypto_ec_get_order + .text.crypto_ec_get_b + 0x40159878 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x40159878 crypto_ec_get_b + *fill* 0x40159880 0x0 + *fill* 0x40159880 0x0 + *fill* 0x40159880 0x0 + *fill* 0x40159880 0x0 + *fill* 0x40159880 0x0 + *fill* 0x40159880 0x0 + *fill* 0x40159880 0x0 + *fill* 0x40159880 0x0 + .text.crypto_ec_get_mbedtls_to_nist_group_id + 0x40159880 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x40159880 crypto_ec_get_mbedtls_to_nist_group_id + *fill* 0x401598c1 0x0 + *fill* 0x401598c1 0x3 + .text.crypto_mbedtls_get_grp_id + 0x401598c4 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x401598c4 crypto_mbedtls_get_grp_id + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x0 + *fill* 0x401598e9 0x3 + .text.wpa_auth_pmksa_free_cb + 0x401598ec 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x401598f1 0x3 + .text.wpa_request_new_ptk + 0x401598f4 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x40159906 0x2 + .text.sm_WPA_PTK_DISCONNECTED_Enter + 0x40159908 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4015992a 0x2 + .text.sm_WPA_PTK_PTKCALCNEGOTIATING2_Enter + 0x4015992c 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4015994e 0x2 + .text.ieee80211w_kde_len + 0x40159950 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x40159969 0x3 + .text.sm_WPA_PTK_GROUP_IDLE_Enter + 0x4015996c 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4015999a 0x2 + .text.sm_WPA_PTK_GROUP_REKEYESTABLISHED_Enter + 0x4015999c 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x401599d7 0x1 + .text.sm_WPA_PTK_GROUP_KEYERROR_Enter + 0x401599d8 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x0 + *fill* 0x40159a11 0x3 + .text.wpa_auth_uses_mfp + 0x40159a14 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x40159a14 wpa_auth_uses_mfp + *fill* 0x40159a26 0x0 + *fill* 0x40159a26 0x0 + *fill* 0x40159a26 0x0 + *fill* 0x40159a26 0x0 + *fill* 0x40159a26 0x0 + *fill* 0x40159a26 0x0 + *fill* 0x40159a26 0x0 + *fill* 0x40159a26 0x0 + *fill* 0x40159a26 0x2 + .text.ap_sta_list_del + 0x40159a28 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + *fill* 0x40159a4a 0x0 + *fill* 0x40159a4a 0x2 + .text.ap_sta_hash_add + 0x40159a4c 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x40159a4c ap_sta_hash_add + *fill* 0x40159a62 0x2 + .text.sae_set_state + 0x40159a64 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x40159a6d 0x3 + .text.sae_get_password + 0x40159a70 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .text.use_sae_anti_clogging + 0x40159a80 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x40159ad5 0x0 + *fill* 0x40159ad5 0x3 + .text.sae_status_success + 0x40159ad8 0x5d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x40159b35 0x0 + *fill* 0x40159b35 0x0 + *fill* 0x40159b35 0x0 + *fill* 0x40159b35 0x0 + *fill* 0x40159b35 0x0 + *fill* 0x40159b35 0x0 + *fill* 0x40159b35 0x3 + .text.wpa_res_to_status_code + 0x40159b38 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x40159b38 wpa_res_to_status_code + *fill* 0x40159bbe 0x0 + *fill* 0x40159bbe 0x0 + *fill* 0x40159bbe 0x0 + *fill* 0x40159bbe 0x2 + .text.const_time_memcmp + 0x40159bc0 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x40159bf6 0x2 + .text.sswu_curve_param + 0x40159bf8 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x40159c0d 0x3 + .text.sae_is_password_id_elem + 0x40159c10 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x40159c52 0x2 + .text.sae_is_rejected_groups_elem + 0x40159c54 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_is_token_container_elem + 0x40159c98 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x40159cda 0x2 + .text.sae_is_akm_suite_selector_elem + 0x40159cdc 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x40159d21 0x3 + .text.sae_parse_commit_token + 0x40159d24 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x0 + *fill* 0x40159d6e 0x2 + .text.sae_ecc_prime_len_2_hash_len + 0x40159d70 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x40159d70 sae_ecc_prime_len_2_hash_len + *fill* 0x40159d8c 0x0 + .text.sae_ffc_prime_len_2_hash_len + 0x40159d8c 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x40159d8c sae_ffc_prime_len_2_hash_len + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x0 + *fill* 0x40159da9 0x3 + .text.dragonfly_min_pwe_loop_iter + 0x40159dac 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x40159dac dragonfly_min_pwe_loop_iter + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x0 + *fill* 0x40159e01 0x3 + .text.wpa_cipher_key_len + 0x40159e04 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40159e04 wpa_cipher_key_len + *fill* 0x40159e41 0x0 + *fill* 0x40159e41 0x3 + .text.wpa_cipher_to_alg + 0x40159e44 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40159e44 wpa_cipher_to_alg + *fill* 0x40159e72 0x2 + .text.wpa_cipher_valid_pairwise + 0x40159e74 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40159e74 wpa_cipher_valid_pairwise + *fill* 0x40159eb6 0x0 + *fill* 0x40159eb6 0x2 + .text.rsn_cipher_put_suites + 0x40159eb8 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40159eb8 rsn_cipher_put_suites + *fill* 0x40159f16 0x2 + .text.wpa_cipher_put_suites + 0x40159f18 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40159f18 wpa_cipher_put_suites + *fill* 0x40159f72 0x0 + *fill* 0x40159f72 0x0 + *fill* 0x40159f72 0x0 + *fill* 0x40159f72 0x0 + *fill* 0x40159f72 0x0 + *fill* 0x40159f72 0x0 + *fill* 0x40159f72 0x2 + .text.cipher_type_map_public_to_supp + 0x40159f74 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40159f74 cipher_type_map_public_to_supp + *fill* 0x40159fc2 0x0 + *fill* 0x40159fc2 0x0 + *fill* 0x40159fc2 0x0 + *fill* 0x40159fc2 0x0 + *fill* 0x40159fc2 0x2 + .text.wpa_supplicant_gtk_tx_bit_workaround + 0x40159fc4 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40159fc4 wpa_supplicant_gtk_tx_bit_workaround + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x0 + *fill* 0x40159fd7 0x1 + .text.wpabuf_put + 0x40159fd8 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x40159fd8 wpabuf_put + *fill* 0x40159fe7 0x0 + *fill* 0x40159fe7 0x0 + *fill* 0x40159fe7 0x1 + .text.d_invert + 0x40159fe8 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x40159fff 0x1 + .text.sae_pk_buf_shift_left_1 + 0x4015a000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.sae_group_2_hash_len + 0x4015a030 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x4015a056 0x0 + *fill* 0x4015a056 0x0 + *fill* 0x4015a056 0x2 + .text.sae_pk_get_be19 + 0x4015a058 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4015a058 sae_pk_get_be19 + *fill* 0x4015a075 0x3 + .text.sae_pk_buf_shift_left_19 + 0x4015a078 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4015a078 sae_pk_buf_shift_left_19 + *fill* 0x4015a0b2 0x0 + *fill* 0x4015a0b2 0x0 + *fill* 0x4015a0b2 0x0 + *fill* 0x4015a0b2 0x0 + *fill* 0x4015a0b2 0x0 + *fill* 0x4015a0b2 0x0 + *fill* 0x4015a0b2 0x0 + *fill* 0x4015a0b2 0x0 + *fill* 0x4015a0b2 0x0 + *fill* 0x4015a0b2 0x0 + *fill* 0x4015a0b2 0x0 + *fill* 0x4015a0b2 0x2 + .text.wpa_sm_mlme_setprotection + 0x4015a0b4 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4015a0b4 wpa_sm_mlme_setprotection + *fill* 0x4015a0bb 0x1 + .text.wpa_sm_disassociate + 0x4015a0bc 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4015a0bc wpa_sm_disassociate + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x0 + *fill* 0x4015a0c1 0x3 + .text.dbl 0x4015a0c4 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x4015a106 0x2 + .text.xor 0x4015a108 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x4015a129 0x3 + .text.xorend 0x4015a12c 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + *fill* 0x4015a154 0x0 + .text.pmksa_cache_get_current + 0x4015a154 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4015a154 pmksa_cache_get_current + *fill* 0x4015a15e 0x2 + .text.pmksa_cache_clear_current + 0x4015a160 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4015a160 pmksa_cache_clear_current + *fill* 0x4015a16c 0x0 + *fill* 0x4015a16c 0x0 + *fill* 0x4015a16c 0x0 + *fill* 0x4015a16c 0x0 + *fill* 0x4015a16c 0x0 + *fill* 0x4015a16c 0x0 + *fill* 0x4015a16c 0x0 + *fill* 0x4015a16c 0x0 + *fill* 0x4015a16c 0x0 + .text.http_message_needs_eof + 0x4015a16c 0x72 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x4015a16c http_message_needs_eof + *fill* 0x4015a1de 0x0 + *fill* 0x4015a1de 0x0 + *fill* 0x4015a1de 0x0 + *fill* 0x4015a1de 0x0 + *fill* 0x4015a1de 0x0 + *fill* 0x4015a1de 0x0 + *fill* 0x4015a1de 0x0 + *fill* 0x4015a1de 0x2 + .text.mbedtls_pk_init + 0x4015a1e0 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4015a1e0 mbedtls_pk_init + *fill* 0x4015a1eb 0x0 + *fill* 0x4015a1eb 0x0 + *fill* 0x4015a1eb 0x1 + .text.mbedtls_pk_get_type + 0x4015a1ec 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4015a1ec mbedtls_pk_get_type + *fill* 0x4015a204 0x0 + .text.rsa_can_do + 0x4015a204 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4015a21d 0x3 + .text.eckey_can_do + 0x4015a220 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4015a22f 0x1 + .text.eckey_get_bitlen + 0x4015a230 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4015a239 0x0 + *fill* 0x4015a239 0x3 + .text.eckeydh_can_do + 0x4015a23c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4015a24b 0x1 + .text.ecdsa_can_do + 0x4015a24c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x0 + *fill* 0x4015a25b 0x1 + .text.mbedtls_ct_base64_dec_value + 0x4015a25c 0xe6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x0 + *fill* 0x4015a342 0x2 + .text._ZNSt9type_infoD2Ev + 0x4015a344 0x5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x4015a344 std::type_info::~type_info() + 0x4015a344 std::type_info::~type_info() + *fill* 0x4015a349 0x3 + .text._ZNKSt9type_info14__is_pointer_pEv + 0x4015a34c 0x7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x4015a34c std::type_info::__is_function_p() const + 0x4015a34c std::type_info::__is_pointer_p() const + *fill* 0x4015a353 0x1 + .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv + 0x4015a354 0x7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x4015a354 std::type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const + *fill* 0x4015a35b 0x0 + *fill* 0x4015a35b 0x0 + *fill* 0x4015a35b 0x0 + *fill* 0x4015a35b 0x1 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + 0x4015a35c 0x2f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x4015a35c __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const + *fill* 0x4015a38b 0x1 + .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + 0x4015a38c 0xf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x4015a38c __cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const + *fill* 0x4015a39b 0x0 + *fill* 0x4015a39b 0x0 + *fill* 0x4015a39b 0x0 + *fill* 0x4015a39b 0x0 + *fill* 0x4015a39b 0x0 + *fill* 0x4015a39b 0x1 + .text._ZNSt9exceptionD2Ev + 0x4015a39c 0x5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x4015a39c std::exception::~exception() + 0x4015a39c std::exception::~exception() + *fill* 0x4015a3a1 0x3 + .text._ZNSt13bad_exceptionD2Ev + 0x4015a3a4 0x5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x4015a3a4 std::bad_exception::~bad_exception() + 0x4015a3a4 std::bad_exception::~bad_exception() + *fill* 0x4015a3a9 0x0 + *fill* 0x4015a3a9 0x0 + *fill* 0x4015a3a9 0x3 + .text 0x4015a3ac 0x59 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + 0x4015a3ac __divsf3 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x0 + *fill* 0x4015a405 0x3 + .text.spur_cal$part$8 + 0x4015a408 0x4a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x0 + *fill* 0x4015a452 0x2 + .text.phy_byte_to_word + 0x4015a454 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x4015a454 phy_byte_to_word + *fill* 0x4015a477 0x0 + *fill* 0x4015a477 0x0 + *fill* 0x4015a477 0x1 + .text.phy_rfcal_data_check + 0x4015a478 0xca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x4015a478 phy_rfcal_data_check + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x0 + *fill* 0x4015a542 0x2 + .text.ram_rfpll_reset + 0x4015a544 0x5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x4015a544 ram_rfpll_reset + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x0 + *fill* 0x4015a549 0x3 + .text 0x4015a54c 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + 0x4015a54c fabs + *fill* 0x4015a558 0x0 + *fill* 0x4015a558 0x0 + *fill* 0x4015a558 0x0 + .text 0x4015a558 0x37 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + 0x4015a558 _fwalk_sglue + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x0 + *fill* 0x4015a58f 0x1 + .text 0x4015a590 0x80 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + 0x4015a590 __sflags + *fill* 0x4015a610 0x0 + *fill* 0x4015a610 0x0 + *fill* 0x4015a610 0x0 + *fill* 0x4015a610 0x0 + *fill* 0x4015a610 0x0 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram.*) + *(.wifiextrairam .wifiextrairam.*) + .wifiextrairam.6 + 0x4015a610 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x72 (size before relaxing) + 0x4015a614 ieee80211_alloc_tx_buf + *fill* 0x4015a66e 0x2 + .wifiextrairam.18 + 0x4015a670 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x72 (size before relaxing) + 0x4015a678 ieee80211_align_eb + *fill* 0x4015a6da 0x2 + .wifiextrairam.5 + 0x4015a6dc 0x7d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x99 (size before relaxing) + 0x4015a6f0 ieee80211_post_hmac_tx + *fill* 0x4015a759 0x3 + .wifiextrairam.7 + 0x4015a75c 0x180 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1c0 (size before relaxing) + 0x4015a770 ieee80211_output_do + .wifiextrairam.10 + 0x4015a8dc 0x19 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1d (size before relaxing) + 0x4015a8dc esp_wifi_internal_tx + *fill* 0x4015a8f5 0x3 + .wifiextrairam.59 + 0x4015a8f8 0xed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x109 (size before relaxing) + 0x4015a8fc ieee80211_set_tx_desc + *fill* 0x4015a9e5 0x3 + .wifiextrairam.39 + 0x4015a9e8 0x1a8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1c0 (size before relaxing) + 0x4015aa0c sta_rx_eapol + .wifiextrairam.5 + 0x4015ab90 0x1d6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x1f6 (size before relaxing) + 0x4015ab9c esf_buf_alloc_dynamic + *fill* 0x4015ad66 0x2 + .wifiextrairam.5 + 0x4015ad68 0x176 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x18e (size before relaxing) + 0x4015ad84 lmacSetTxFrame + *fill* 0x4015aede 0x2 + .wifiextrairam.20 + 0x4015aee0 0xaf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xce (size before relaxing) + 0x4015aeec lmacDiscardFrameExchangeSequence + *fill* 0x4015af8f 0x1 + .wifiextrairam.15 + 0x4015af90 0xf2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x116 (size before relaxing) + 0x4015af98 lmacProcessTxSuccess + *fill* 0x4015b082 0x2 + .wifiextrairam.35 + 0x4015b084 0x158 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1ac (size before relaxing) + 0x4015b09c lmacProcessTxComplete + .wifiextrairam.44 + 0x4015b1dc 0x1a4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1f8 (size before relaxing) + 0x4015b1e0 pm_tx_data_process + .wifiextrairam.50 + 0x4015b380 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x4015b380 pm_on_data_tx + *fill* 0x4015b390 0x0 + .wifiextrairam.17 + 0x4015b390 0x5f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x6f (size before relaxing) + 0x4015b39c ppRecycleRxPkt + *fill* 0x4015b3ef 0x1 + .wifiextrairam.19 + 0x4015b3f0 0x5b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x5f (size before relaxing) + 0x4015b3f0 pp_coex_tx_release + *fill* 0x4015b44b 0x1 + .wifiextrairam.43 + 0x4015b44c 0x2a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2e (size before relaxing) + 0x4015b44c ppTxqUpdateBitmap + *fill* 0x4015b476 0x2 + .wifiextrairam.47 + 0x4015b478 0x5f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x73 (size before relaxing) + 0x4015b484 ppEnqueueTxDone + *fill* 0x4015b4d7 0x1 + .wifiextrairam.49 + 0x4015b4d8 0x25 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x29 (size before relaxing) + 0x4015b4d8 ppDequeueTxDone_Locked + *fill* 0x4015b4fd 0x3 + .wifiextrairam.21 + 0x4015b500 0x162 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x18e (size before relaxing) + 0x4015b518 ppProcTxDone + *fill* 0x4015b662 0x2 + .wifiextrairam.59 + 0x4015b664 0x8f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x93 (size before relaxing) + 0x4015b66c ppGetTxframe + *fill* 0x4015b6f3 0x1 + .wifiextrairam.63 + 0x4015b6f4 0xf6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x106 (size before relaxing) + 0x4015b6f8 ppMapWaitTxq + *fill* 0x4015b7ea 0x2 + .wifiextrairam.64 + 0x4015b7ec 0x59 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x65 (size before relaxing) + 0x4015b7f0 ppProcessWaitingQueue + *fill* 0x4015b845 0x3 + .wifiextrairam.61 + 0x4015b848 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x9a (size before relaxing) + 0x4015b848 ppSelectNextQueue + *fill* 0x4015b8d6 0x2 + .wifiextrairam.38 + 0x4015b8d8 0x8f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xab (size before relaxing) + 0x4015b8e0 ppAssembleAMPDU + *fill* 0x4015b967 0x1 + .wifiextrairam.40 + 0x4015b968 0xaf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xc3 (size before relaxing) + 0x4015b96c ppAMPDU2Normal + *fill* 0x4015ba17 0x1 + .wifiextrairam.71 + 0x4015ba18 0x51 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x5d (size before relaxing) + 0x4015ba1c ppDirectRecycleAmpdu + *fill* 0x4015ba69 0x3 + .wifiextrairam.72 + 0x4015ba6c 0x70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x88 (size before relaxing) + 0x4015ba6c ppRecycleAmpdu + .wifiextrairam.73 + 0x4015badc 0x7c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x8c (size before relaxing) + 0x4015badc ppRegressAmpdu + .wifiextrairam.13 + 0x4015bb58 0x8f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x9f (size before relaxing) + 0x4015bb64 rcGetRate + *fill* 0x4015bbe7 0x1 + .wifiextrairam.19 + 0x4015bbe8 0x89 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xa1 (size before relaxing) + 0x4015bbe8 trc_onPPTxDone + *fill* 0x4015bc71 0x3 + .wifiextrairam.6 + 0x4015bc74 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2c (size before relaxing) + 0x4015bc74 hal_mac_txq_disable + .wifiextrairam.16 + 0x4015bc98 0x73 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x7b (size before relaxing) + 0x4015bca4 hal_get_tsf_time + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *fill* 0x4015bd0b 0x0 + *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram.*) + *(.wifislpiram .wifislpiram.*) + *fill* 0x4015bd0b 0x1 + .wifislpiram.42 + 0x4015bd0c 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x17 (size before relaxing) + 0x4015bd0c esp_wifi_internal_update_mac_time + *fill* 0x4015bd1f 0x1 + .wifislpiram.5 + 0x4015bd20 0x27 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2b (size before relaxing) + 0x4015bd20 pm_get_connectionless_status + *fill* 0x4015bd47 0x1 + .wifislpiram.19 + 0x4015bd48 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1b (size before relaxing) + 0x4015bd48 pm_disable_dream_timer + *fill* 0x4015bd5b 0x1 + .wifislpiram.20 + 0x4015bd5c 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x34 (size before relaxing) + 0x4015bd5c pm_enable_dream_timer + .wifislpiram.22 + 0x4015bd84 0x123 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x157 (size before relaxing) + 0x4015bd88 pm_update_by_connectionless_status + *fill* 0x4015bea7 0x1 + .wifislpiram.32 + 0x4015bea8 0x57 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x67 (size before relaxing) + 0x4015beb0 pm_handle_tbtt_interval + *fill* 0x4015beff 0x1 + .wifislpiram.34 + 0x4015bf00 0x2ea C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x32e (size before relaxing) + 0x4015bf08 pm_update_next_tbtt + *fill* 0x4015c1ea 0x2 + .wifislpiram.40 + 0x4015c1ec 0x5a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x66 (size before relaxing) + 0x4015c1ec pm_connectionless_wake_interval_timeout_process + *fill* 0x4015c246 0x2 + .wifislpiram.41 + 0x4015c248 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x60 (size before relaxing) + 0x4015c248 pm_connectionless_wake_window_timeout_process + .wifislpiram.3 + 0x4015c290 0x13 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x4015c2a3 0x1 + .wifislpiram.4 + 0x4015c2a4 0x8e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x9e (size before relaxing) + 0x4015c2b0 pp_timer_do_process + *fill* 0x4015c332 0x2 + .wifislpiram.16 + 0x4015c334 0x1e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x4015c338 wdev_csi_len_align + *fill* 0x4015c352 0x2 + .wifislpiram.26 + 0x4015c354 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x28 (size before relaxing) + 0x4015c358 wDev_DiscardFrame + *fill* 0x4015c378 0x0 + *fill* 0x4015c378 0x0 + *fill* 0x4015c378 0x0 + *fill* 0x4015c378 0x0 + *fill* 0x4015c378 0x0 + *fill* 0x4015c378 0x0 + *fill* 0x4015c378 0x0 + *fill* 0x4015c378 0x0 + .wifislpiram.6 + 0x4015c378 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4015c378 pp_hdrsize + *fill* 0x4015c3a1 0x0 + *fill* 0x4015c3a1 0x0 + *fill* 0x4015c3a1 0x0 + *fill* 0x4015c3a1 0x0 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram.*) + *libdriver.a:gptimer.*(.literal.gptimer_acquire_group_handle .literal.gptimer_del_timer .literal.gptimer_destroy .literal.gptimer_disable .literal.gptimer_enable .literal.gptimer_get_captured_count .literal.gptimer_get_raw_count .literal.gptimer_get_resolution .literal.gptimer_new_timer .literal.gptimer_register_event_callbacks .literal.gptimer_register_to_group .literal.gptimer_release_group_handle .literal.gptimer_select_periph_clock .literal.gptimer_set_alarm_action .literal.gptimer_set_raw_count .literal.gptimer_start .literal.gptimer_stop .literal.gptimer_unregister_from_group .literal.timer_ll_enable_bus_clock .literal.timer_ll_set_clock_prescale .text .text.gptimer_acquire_group_handle .text.gptimer_del_timer .text.gptimer_destroy .text.gptimer_disable .text.gptimer_enable .text.gptimer_get_captured_count .text.gptimer_get_raw_count .text.gptimer_get_resolution .text.gptimer_new_timer .text.gptimer_register_event_callbacks .text.gptimer_register_to_group .text.gptimer_release_group_handle .text.gptimer_select_periph_clock .text.gptimer_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop .text.gptimer_unregister_from_group .text.timer_ll_enable_bus_clock .text.timer_ll_set_clock_prescale) + *libesp_event.a:default_event_loop.*(.literal.esp_event_handler_instance_register .literal.esp_event_handler_instance_unregister .literal.esp_event_handler_register .literal.esp_event_handler_unregister .literal.esp_event_loop_create_default .literal.esp_event_loop_delete_default .literal.esp_event_post .text .text.esp_event_handler_instance_register .text.esp_event_handler_instance_unregister .text.esp_event_handler_register .text.esp_event_handler_unregister .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_post) + *fill* 0x4015c3a1 0x3 + .text.esp_event_handler_register + 0x4015c3a4 0x22 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x4015c3a4 esp_event_handler_register + *fill* 0x4015c3c6 0x2 + .text.esp_event_handler_instance_register + 0x4015c3c8 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x4015c3c8 esp_event_handler_instance_register + *fill* 0x4015c3ed 0x3 + .text.esp_event_handler_unregister + 0x4015c3f0 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x4015c3f0 esp_event_handler_unregister + *fill* 0x4015c411 0x3 + .text.esp_event_handler_instance_unregister + 0x4015c414 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x4015c414 esp_event_handler_instance_unregister + *fill* 0x4015c435 0x3 + .text.esp_event_post + 0x4015c438 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x4015c438 esp_event_post + *fill* 0x4015c45d 0x3 + .text.esp_event_loop_create_default + 0x4015c460 0x2a esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x2e (size before relaxing) + 0x4015c460 esp_event_loop_create_default + *fill* 0x4015c48a 0x0 + *fill* 0x4015c48a 0x0 + *fill* 0x4015c48a 0x0 + *fill* 0x4015c48a 0x0 + *fill* 0x4015c48a 0x0 + *libesp_event.a:esp_event.*(.literal.base_node_add_handler .literal.base_node_remove_all_handler .literal.base_node_remove_handler .literal.esp_event_handler_instance_register_with .literal.esp_event_handler_instance_unregister_with .literal.esp_event_handler_register_with .literal.esp_event_handler_register_with_internal .literal.esp_event_handler_unregister_with .literal.esp_event_handler_unregister_with_internal .literal.esp_event_loop_create .literal.esp_event_loop_delete .literal.esp_event_loop_run .literal.esp_event_loop_run_task .literal.esp_event_post_to .literal.handler_instances_add .literal.handler_instances_remove .literal.handler_instances_remove_all .literal.loop_node_add_handler .literal.loop_node_remove_all_handler .literal.loop_node_remove_handler .text .text.base_node_add_handler .text.base_node_remove_all_handler .text.base_node_remove_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.handler_execute .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_node_remove_all_handler .text.loop_node_remove_handler) + *fill* 0x4015c48a 0x2 + .text.handler_instances_add + 0x4015c48c 0xa6 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x4015c532 0x2 + .text.base_node_add_handler + 0x4015c534 0xd2 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x4015c606 0x2 + .text.loop_node_add_handler + 0x4015c608 0xf1 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x4015c6f9 0x3 + .text.handler_instances_remove + 0x4015c6fc 0x85 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x4015c781 0x3 + .text.base_node_remove_handler + 0x4015c784 0x6d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x4015c7f1 0x3 + .text.loop_node_remove_handler + 0x4015c7f4 0x7b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x4015c86f 0x1 + .text.esp_event_loop_create + 0x4015c870 0x148 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4015c870 esp_event_loop_create + .text.esp_event_loop_run + 0x4015c9b8 0x146 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4015c9b8 esp_event_loop_run + *fill* 0x4015cafe 0x2 + .text.esp_event_loop_run_task + 0x4015cb00 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_register_with_internal + 0x4015cb34 0x138 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4015cb34 esp_event_handler_register_with_internal + .text.esp_event_handler_register_with + 0x4015cc6c 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4015cc6c esp_event_handler_register_with + *fill* 0x4015cc89 0x3 + .text.esp_event_handler_instance_register_with + 0x4015cc8c 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4015cc8c esp_event_handler_instance_register_with + *fill* 0x4015cca9 0x3 + .text.esp_event_handler_unregister_with_internal + 0x4015ccac 0xda esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4015ccac esp_event_handler_unregister_with_internal + *fill* 0x4015cd86 0x2 + .text.esp_event_handler_unregister_with + 0x4015cd88 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4015cd88 esp_event_handler_unregister_with + *fill* 0x4015cda5 0x3 + .text.esp_event_handler_instance_unregister_with + 0x4015cda8 0x21 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4015cda8 esp_event_handler_instance_unregister_with + *fill* 0x4015cdc9 0x3 + .text.esp_event_post_to + 0x4015cdcc 0x12e esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4015cdcc esp_event_post_to + *fill* 0x4015cefa 0x2 + .text.handler_execute + 0x4015cefc 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *fill* 0x4015cf2e 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_intr_get_desc .literal.esp_cpu_set_watchpoint .text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_intr_get_desc .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + *fill* 0x4015cf2e 0x2 + .text.esp_cpu_intr_get_desc + 0x4015cf30 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x4015cf30 esp_cpu_intr_get_desc + *fill* 0x4015cf6a 0x0 + *fill* 0x4015cf6a 0x2 + .text.esp_cpu_set_breakpoint + 0x4015cf6c 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x4015cf6c esp_cpu_set_breakpoint + *libesp_hw_support.a:esp_gpio_reserve.*(.text) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_ll_disable_clk_set_rst .literal.periph_ll_enable_clk_clear_rst .literal.periph_ll_get_clk_en_mask .literal.periph_ll_get_rst_en_mask .literal.periph_ll_reset .literal.periph_ll_wifi_module_disable_clk_set_rst .literal.periph_ll_wifi_module_enable_clk_clear_rst .literal.periph_module_disable .literal.periph_module_enable .literal.periph_rcc_acquire_enter .literal.periph_rcc_acquire_exit .literal.periph_rcc_release_enter .literal.periph_rcc_release_exit .text .text.periph_ll_disable_clk_set_rst .text.periph_ll_enable_clk_clear_rst .text.periph_ll_get_clk_en_mask .text.periph_ll_get_rst_en_mask .text.periph_ll_reset .text.periph_ll_wifi_module_disable_clk_set_rst .text.periph_ll_wifi_module_enable_clk_clear_rst .text.periph_module_disable .text.periph_module_enable .text.periph_rcc_acquire_enter .text.periph_rcc_acquire_exit .text.periph_rcc_release_enter .text.periph_rcc_release_exit) + .text.periph_ll_get_clk_en_mask + 0x4015cf90 0x216 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x4015d1a6 0x2 + .text.periph_ll_get_rst_en_mask + 0x4015d1a8 0x1c0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_enable_clk_clear_rst + 0x4015d368 0x111 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x4015d479 0x3 + .text.periph_ll_disable_clk_set_rst + 0x4015d47c 0x10d esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x4015d589 0x3 + .text.periph_ll_reset + 0x4015d58c 0x103 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x4015d68f 0x1 + .text.periph_ll_wifi_module_enable_clk_clear_rst + 0x4015d690 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x4015d6bb 0x1 + .text.periph_ll_wifi_module_disable_clk_set_rst + 0x4015d6bc 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x4015d6e7 0x1 + .text.periph_rcc_acquire_enter + 0x4015d6e8 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4015d6e8 periph_rcc_acquire_enter + *fill* 0x4015d6fb 0x1 + .text.periph_rcc_acquire_exit + 0x4015d6fc 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4015d6fc periph_rcc_acquire_exit + .text.periph_module_enable + 0x4015d714 0x83 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x87 (size before relaxing) + 0x4015d714 periph_module_enable + *fill* 0x4015d797 0x1 + .text.periph_module_disable + 0x4015d798 0x7b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x7f (size before relaxing) + 0x4015d798 periph_module_disable + *fill* 0x4015d813 0x0 + *fill* 0x4015d813 0x0 + *fill* 0x4015d813 0x0 + *fill* 0x4015d813 0x0 + *fill* 0x4015d813 0x0 + *fill* 0x4015d813 0x0 + *fill* 0x4015d813 0x0 + *fill* 0x4015d813 0x0 + *libesp_hw_support.a:rtc_init.*(.literal.rtc_init .text .text.rtc_init) + *fill* 0x4015d813 0x1 + .text.rtc_init + 0x4015d814 0x3cb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x4015d814 rtc_init + *fill* 0x4015dbdf 0x0 + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.s_sar_power_acquire .literal.s_sar_power_release .literal.sar_periph_ctrl_adc_continuous_power_acquire .literal.sar_periph_ctrl_adc_continuous_power_release .literal.sar_periph_ctrl_adc_oneshot_power_acquire .literal.sar_periph_ctrl_adc_oneshot_power_release .literal.sar_periph_ctrl_init .literal.sar_periph_ctrl_power_disable .literal.sar_periph_ctrl_pwdet_power_acquire .literal.sar_periph_ctrl_pwdet_power_release .text .text.s_sar_power_acquire .text.s_sar_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_init .text.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release) + *fill* 0x4015dbdf 0x1 + .text.s_sar_power_acquire + 0x4015dbe0 0x67 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + *fill* 0x4015dc47 0x1 + .text.s_sar_power_release + 0x4015dc48 0x93 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + *fill* 0x4015dcdb 0x1 + .text.sar_periph_ctrl_init + 0x4015dcdc 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x4015dcdc sar_periph_ctrl_init + .text.sar_periph_ctrl_pwdet_power_acquire + 0x4015dcf4 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x4015dcf4 sar_periph_ctrl_pwdet_power_acquire + *fill* 0x4015dcfc 0x0 + .text.sar_periph_ctrl_pwdet_power_release + 0x4015dcfc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x4015dcfc sar_periph_ctrl_pwdet_power_release + *fill* 0x4015dd04 0x0 + .text.sar_periph_ctrl_adc_continuous_power_acquire + 0x4015dd04 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x4015dd04 sar_periph_ctrl_adc_continuous_power_acquire + *fill* 0x4015dd0c 0x0 + .text.sar_periph_ctrl_adc_continuous_power_release + 0x4015dd0c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x4015dd0c sar_periph_ctrl_adc_continuous_power_release + *fill* 0x4015dd14 0x0 + *fill* 0x4015dd14 0x0 + *fill* 0x4015dd14 0x0 + *fill* 0x4015dd14 0x0 + *fill* 0x4015dd14 0x0 + *fill* 0x4015dd14 0x0 + *libesp_system.a:esp_system_chip.*(.literal.esp_get_free_heap_size .literal.esp_get_free_internal_heap_size .literal.esp_get_idf_version .literal.esp_get_minimum_free_heap_size .text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size) + *fill* 0x4015dd14 0x0 + .text.esp_get_free_heap_size + 0x4015dd14 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x4015dd14 esp_get_free_heap_size + .text.esp_get_free_internal_heap_size + 0x4015dd24 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x4015dd24 esp_get_free_internal_heap_size + *fill* 0x4015dd34 0x0 + *libesp_wifi.a:esp_adapter.*(.literal.esp_cpu_intr_disable .literal.esp_cpu_intr_enable .literal.esp_event_post_wrapper .literal.esp_phy_disable_wrapper .literal.esp_phy_enable_wrapper .literal.event_group_wait_bits_wrapper .literal.get_time_wrapper .literal.mutex_create_wrapper .literal.mutex_delete_wrapper .literal.queue_create_wrapper .literal.queue_delete_wrapper .literal.queue_recv_wrapper .literal.queue_send_to_back_wrapper .literal.queue_send_to_front_wrapper .literal.queue_send_wrapper .literal.recursive_mutex_create_wrapper .literal.set_intr_wrapper .literal.set_isr_wrapper .literal.task_create_pinned_to_core_wrapper .literal.task_create_wrapper .literal.wifi_clock_disable_wrapper .literal.wifi_clock_enable_wrapper .literal.wifi_create_queue .literal.wifi_create_queue_wrapper .literal.wifi_delete_queue .literal.wifi_delete_queue_wrapper .literal.wifi_reset_mac_wrapper .literal.wifi_thread_semphr_free .literal.wifi_thread_semphr_get_wrapper .text .text.clear_intr_wrapper .text.coex_deinit_wrapper .text.coex_disable_wrapper .text.coex_enable_wrapper .text.coex_init_wrapper .text.coex_register_start_cb_wrapper .text.coex_schm_curr_period_get_wrapper .text.coex_schm_curr_phase_get_wrapper .text.coex_schm_interval_get_wrapper .text.coex_schm_process_restart_wrapper .text.coex_schm_register_cb_wrapper .text.coex_schm_status_bit_clear_wrapper .text.coex_schm_status_bit_set_wrapper .text.coex_wifi_channel_set_wrapper .text.coex_wifi_request_wrapper .text.esp_cpu_intr_disable .text.esp_cpu_intr_enable .text.esp_event_post_wrapper .text.esp_phy_disable_wrapper .text.esp_phy_enable_wrapper .text.event_group_wait_bits_wrapper .text.get_time_wrapper .text.mutex_create_wrapper .text.mutex_delete_wrapper .text.queue_create_wrapper .text.queue_delete_wrapper .text.queue_recv_wrapper .text.queue_send_to_back_wrapper .text.queue_send_to_front_wrapper .text.queue_send_wrapper .text.recursive_mutex_create_wrapper .text.set_intr_wrapper .text.set_isr_wrapper .text.task_create_pinned_to_core_wrapper .text.task_create_wrapper .text.task_get_max_priority_wrapper .text.wifi_clock_disable_wrapper .text.wifi_clock_enable_wrapper .text.wifi_create_queue .text.wifi_create_queue_wrapper .text.wifi_delete_queue .text.wifi_delete_queue_wrapper .text.wifi_reset_mac_wrapper .text.wifi_thread_semphr_free .text.wifi_thread_semphr_get_wrapper) + .text.esp_cpu_intr_enable + 0x4015dd34 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015dd42 0x2 + .text.esp_cpu_intr_disable + 0x4015dd44 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015dd52 0x2 + .text.queue_create_wrapper + 0x4015dd54 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.queue_delete_wrapper + 0x4015dd68 0xf esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015dd77 0x1 + .text.mutex_delete_wrapper + 0x4015dd78 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015dd86 0x2 + .text.wifi_thread_semphr_free + 0x4015dd88 0xf esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015dd97 0x1 + .text.get_time_wrapper + 0x4015dd98 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .text.wifi_clock_disable_wrapper + 0x4015dda4 0xb esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015ddaf 0x1 + .text.wifi_clock_enable_wrapper + 0x4015ddb0 0xb esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015ddbb 0x1 + .text.wifi_reset_mac_wrapper + 0x4015ddbc 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015ddca 0x2 + .text.esp_phy_enable_wrapper + 0x4015ddcc 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x16 (size before relaxing) + *fill* 0x4015ddde 0x2 + .text.esp_phy_disable_wrapper + 0x4015dde0 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x16 (size before relaxing) + *fill* 0x4015ddf2 0x2 + .text.esp_event_post_wrapper + 0x4015ddf4 0x23 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x26 (size before relaxing) + *fill* 0x4015de17 0x1 + .text.task_create_wrapper + 0x4015de18 0x1e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015de36 0x2 + .text.task_create_pinned_to_core_wrapper + 0x4015de38 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.event_group_wait_bits_wrapper + 0x4015de5c 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015de82 0x2 + .text.queue_recv_wrapper + 0x4015de84 0x21 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015dea5 0x3 + .text.queue_send_to_front_wrapper + 0x4015dea8 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015debd 0x3 + .text.queue_send_to_back_wrapper + 0x4015dec0 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015ded5 0x3 + .text.queue_send_wrapper + 0x4015ded8 0x25 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015defd 0x3 + .text.recursive_mutex_create_wrapper + 0x4015df00 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.mutex_create_wrapper + 0x4015df10 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.wifi_thread_semphr_get_wrapper + 0x4015df20 0x54 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.set_isr_wrapper + 0x4015df74 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x12 (size before relaxing) + *fill* 0x4015df82 0x2 + .text.set_intr_wrapper + 0x4015df84 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015df96 0x2 + .text.wifi_create_queue + 0x4015df98 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4015df98 wifi_create_queue + .text.wifi_create_queue_wrapper + 0x4015dfbc 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015dfcd 0x3 + .text.wifi_delete_queue + 0x4015dfd0 0x17 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4015dfd0 wifi_delete_queue + *fill* 0x4015dfe7 0x1 + .text.wifi_delete_queue_wrapper + 0x4015dfe8 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x4015dff2 0x0 + *fill* 0x4015dff2 0x2 + .text.clear_intr_wrapper + 0x4015dff4 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015dff9 0x3 + .text.task_get_max_priority_wrapper + 0x4015dffc 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e003 0x1 + .text.coex_init_wrapper + 0x4015e004 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e00b 0x1 + .text.coex_deinit_wrapper + 0x4015e00c 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e011 0x3 + .text.coex_enable_wrapper + 0x4015e014 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e01b 0x1 + .text.coex_disable_wrapper + 0x4015e01c 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e021 0x3 + .text.coex_wifi_request_wrapper + 0x4015e024 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e02b 0x1 + .text.coex_wifi_channel_set_wrapper + 0x4015e02c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e033 0x1 + .text.coex_schm_status_bit_clear_wrapper + 0x4015e034 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e039 0x3 + .text.coex_schm_status_bit_set_wrapper + 0x4015e03c 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e041 0x3 + .text.coex_schm_interval_get_wrapper + 0x4015e044 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e04b 0x1 + .text.coex_schm_curr_period_get_wrapper + 0x4015e04c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e053 0x1 + .text.coex_schm_curr_phase_get_wrapper + 0x4015e054 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e05b 0x1 + .text.coex_register_start_cb_wrapper + 0x4015e05c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e063 0x1 + .text.coex_schm_process_restart_wrapper + 0x4015e064 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e06b 0x1 + .text.coex_schm_register_cb_wrapper + 0x4015e06c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *fill* 0x4015e073 0x0 + *libesp_wifi.a:wifi_netif.*(.literal.esp_wifi_create_if_driver .literal.esp_wifi_destroy_if_driver .literal.esp_wifi_get_if_mac .literal.esp_wifi_register_if_rxcb .literal.wifi_ap_receive .literal.wifi_driver_start .literal.wifi_free .literal.wifi_transmit .text .text.esp_wifi_create_if_driver .text.esp_wifi_destroy_if_driver .text.esp_wifi_get_if_mac .text.esp_wifi_is_if_ready_when_started .text.esp_wifi_register_if_rxcb .text.wifi_ap_receive .text.wifi_driver_start .text.wifi_free .text.wifi_transmit) + *fill* 0x4015e073 0x1 + .text.wifi_ap_receive + 0x4015e074 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_driver_start + 0x4015e090 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_free + 0x4015e0b4 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xf (size before relaxing) + *fill* 0x4015e0c0 0x0 + .text.wifi_transmit + 0x4015e0c0 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_create_if_driver + 0x4015e0d4 0x3d esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4015e0d4 esp_wifi_create_if_driver + *fill* 0x4015e111 0x3 + .text.esp_wifi_get_if_mac + 0x4015e114 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4015e114 esp_wifi_get_if_mac + *fill* 0x4015e125 0x3 + .text.esp_wifi_register_if_rxcb + 0x4015e128 0xa2 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xa6 (size before relaxing) + 0x4015e128 esp_wifi_register_if_rxcb + *fill* 0x4015e1ca 0x0 + *fill* 0x4015e1ca 0x0 + *fill* 0x4015e1ca 0x0 + *fill* 0x4015e1ca 0x2 + .text.esp_wifi_is_if_ready_when_started + 0x4015e1cc 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4015e1cc esp_wifi_is_if_ready_when_started + *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) + .text.other_cpu_startup_idle_hook_cb + 0x4015e1dc 0x12 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x4015e1ee 0x2 + .text.main_task + 0x4015e1f0 0xdf esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x4015e2cf 0x1 + .text.esp_startup_start_app + 0x4015e2d0 0x54 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x4015e2d0 esp_startup_start_app + .text.esp_startup_start_app_other_cores + 0x4015e324 0x36 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x4015e324 esp_startup_start_app_other_cores + *fill* 0x4015e35a 0x0 + *fill* 0x4015e35a 0x0 + *fill* 0x4015e35a 0x0 + *libfreertos.a:freertos_compatibility.*(.literal .literal.* .text .text.*) + *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*) + *libfreertos.a:tasks.*(.literal.pxGetTaskListByIndex .text.pxGetTaskListByIndex) + *libfreertos.a:tasks.*(.literal.uxTaskGetSnapshotAll .text.uxTaskGetSnapshotAll) + *libfreertos.a:tasks.*(.literal.xTaskGetNext .text.xTaskGetNext) + *libhal.a:timer_hal.*(.literal.timer_hal_deinit .literal.timer_hal_init .text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) + *libheap.a:multi_heap.*(.literal.multi_heap_check .literal.multi_heap_dump .literal.multi_heap_dump_tlsf .literal.multi_heap_get_info_impl .literal.multi_heap_register_impl .text .text.multi_heap_check .text.multi_heap_dump .text.multi_heap_dump_tlsf .text.multi_heap_free_size_impl .text.multi_heap_get_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl) + *fill* 0x4015e35a 0x2 + .text.multi_heap_register_impl + 0x4015e35c 0x4e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x52 (size before relaxing) + 0x4015e35c multi_heap_register + 0x4015e35c multi_heap_register_impl + *fill* 0x4015e3aa 0x2 + .text.multi_heap_get_info_impl + 0x4015e3ac 0x68 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x70 (size before relaxing) + 0x4015e3ac multi_heap_get_info_impl + 0x4015e3ac multi_heap_get_info + *fill* 0x4015e414 0x0 + .text.multi_heap_get_info_tlsf + 0x4015e414 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x4015e438 0x0 + .text.multi_heap_free_size_impl + 0x4015e438 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4015e438 multi_heap_free_size + 0x4015e438 multi_heap_free_size_impl + *fill* 0x4015e446 0x0 + *libheap.a:tlsf.*(.literal.control_construct .literal.default_walker .literal.integrity_walker .literal.tlsf_add_pool .literal.tlsf_check .literal.tlsf_check_pool .literal.tlsf_create .literal.tlsf_create_with_pool .literal.tlsf_fit_size .literal.tlsf_remove_pool .literal.tlsf_walk_pool .text .text.control_construct .text.default_walker .text.integrity_walker .text.tlsf_add_pool .text.tlsf_check .text.tlsf_check_pool .text.tlsf_create .text.tlsf_create_with_pool .text.tlsf_destroy .text.tlsf_fit_size .text.tlsf_pool_overhead .text.tlsf_remove_pool .text.tlsf_walk_pool) + *fill* 0x4015e446 0x2 + .text.control_construct + 0x4015e448 0x176 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x4015e5be 0x2 + .text.default_walker + 0x4015e5c0 0x1f esp-idf/heap/libheap.a(tlsf.c.obj) + 0x22 (size before relaxing) + *fill* 0x4015e5df 0x1 + .text.tlsf_walk_pool + 0x4015e5e0 0x52 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4015e5e0 tlsf_walk_pool + *fill* 0x4015e632 0x2 + .text.tlsf_fit_size + 0x4015e634 0x34 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4015e634 tlsf_fit_size + .text.tlsf_add_pool + 0x4015e668 0x192 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x19a (size before relaxing) + 0x4015e668 tlsf_add_pool + *fill* 0x4015e7fa 0x2 + .text.tlsf_create + 0x4015e7fc 0x2a esp-idf/heap/libheap.a(tlsf.c.obj) + 0x2e (size before relaxing) + 0x4015e7fc tlsf_create + *fill* 0x4015e826 0x2 + .text.tlsf_create_with_pool + 0x4015e828 0x2b esp-idf/heap/libheap.a(tlsf.c.obj) + 0x2f (size before relaxing) + 0x4015e828 tlsf_create_with_pool + *fill* 0x4015e853 0x0 + *fill* 0x4015e853 0x0 + *fill* 0x4015e853 0x1 + .text.tlsf_pool_overhead + 0x4015e854 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4015e854 tlsf_pool_overhead + *fill* 0x4015e85b 0x0 + *fill* 0x4015e85b 0x0 + *fill* 0x4015e85b 0x0 + *liblog.a:log.*(.literal.add_to_cache .literal.clear_log_level_list .literal.esp_log_level_get .literal.esp_log_level_set .literal.esp_log_set_vprintf .literal.esp_log_writev .literal.fix_cache_generation_overflow .literal.get_cached_log_level .literal.get_uncached_log_level .literal.heap_bubble_down .literal.heap_swap .literal.s_log_level_get_and_unlock .text .text.add_to_cache .text.clear_log_level_list .text.esp_log_level_get .text.esp_log_level_set .text.esp_log_set_vprintf .text.esp_log_writev .text.fix_cache_generation_overflow .text.get_cached_log_level .text.get_uncached_log_level .text.heap_bubble_down .text.heap_swap .text.s_log_level_get_and_unlock) + *fill* 0x4015e85b 0x1 + .text.fix_cache_generation_overflow + 0x4015e85c 0x2c esp-idf/log/liblog.a(log.c.obj) + .text.heap_swap + 0x4015e888 0x22 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x4015e8aa 0x2 + .text.heap_bubble_down + 0x4015e8ac 0x3b esp-idf/log/liblog.a(log.c.obj) + *fill* 0x4015e8e7 0x1 + .text.add_to_cache + 0x4015e8e8 0x7b esp-idf/log/liblog.a(log.c.obj) + 0x7f (size before relaxing) + *fill* 0x4015e963 0x1 + .text.get_uncached_log_level + 0x4015e964 0x2b esp-idf/log/liblog.a(log.c.obj) + *fill* 0x4015e98f 0x1 + .text.get_cached_log_level + 0x4015e990 0xb4 esp-idf/log/liblog.a(log.c.obj) + 0xbc (size before relaxing) + .text.s_log_level_get_and_unlock + 0x4015ea44 0x3b esp-idf/log/liblog.a(log.c.obj) + 0x3f (size before relaxing) + *fill* 0x4015ea7f 0x1 + .text.clear_log_level_list + 0x4015ea80 0x2f esp-idf/log/liblog.a(log.c.obj) + *fill* 0x4015eaaf 0x1 + .text.esp_log_level_set + 0x4015eab0 0x108 esp-idf/log/liblog.a(log.c.obj) + 0x4015eab0 esp_log_level_set + .text.esp_log_writev + 0x4015ebb8 0x2e esp-idf/log/liblog.a(log.c.obj) + 0x32 (size before relaxing) + 0x4015ebb8 esp_log_writev + *fill* 0x4015ebe6 0x0 + *fill* 0x4015ebe6 0x0 + *fill* 0x4015ebe6 0x0 + *fill* 0x4015ebe6 0x0 + *fill* 0x4015ebe6 0x0 + *fill* 0x4015ebe6 0x0 + *fill* 0x4015ebe6 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text .text.esp_log_system_timestamp) + *libphy.a:(.phyiram .phyiram.*) + *fill* 0x4015ebe6 0x2 + .phyiram.0 0x4015ebe8 0x23 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x2b (size before relaxing) + 0x4015ebe8 ram_bb_bss_cbw40_dig + *fill* 0x4015ec0b 0x1 + .phyiram.1 0x4015ec0c 0x6d C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x89 (size before relaxing) + 0x4015ec10 ram_cbw2040_cfg + *fill* 0x4015ec79 0x3 + .phyiram.2 0x4015ec7c 0x1f6 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x23a (size before relaxing) + 0x4015ec98 ram_spur_coef_cfg + *fill* 0x4015ee72 0x2 + .phyiram.3 0x4015ee74 0x9e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xba (size before relaxing) + 0x4015ee80 set_chan_rxcomp + *fill* 0x4015ef12 0x2 + .phyiram.6 0x4015ef14 0xce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xf2 (size before relaxing) + 0x4015ef24 tx_delay_cfg + *fill* 0x4015efe2 0x2 + .phyiram.4 0x4015efe4 0xde C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x116 (size before relaxing) + 0x4015efec bb_bss_cbw40 + *fill* 0x4015f0c2 0x2 + .phyiram.7 0x4015f0c4 0xc8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xfc (size before relaxing) + 0x4015f0e4 tx_paon_set + .phyiram.8 0x4015f18c 0x1f7 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x257 (size before relaxing) + 0x4015f1dc agc_reg_init + *fill* 0x4015f383 0x1 + .phyiram.9 0x4015f384 0x15f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x193 (size before relaxing) + 0x4015f3cc bb_reg_init + *fill* 0x4015f4e3 0x1 + .phyiram.10 0x4015f4e4 0x82 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xa6 (size before relaxing) + 0x4015f4e4 mac_enable_bb + *fill* 0x4015f566 0x2 + .phyiram.13 0x4015f568 0x15c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x1b4 (size before relaxing) + 0x4015f57c rx_11b_opt + .phyiram.15 0x4015f6c4 0x9a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0xca (size before relaxing) + 0x4015f6d4 opt_11b_resart + *fill* 0x4015f75e 0x2 + .phyiram.14 0x4015f760 0xd3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x123 (size before relaxing) + 0x4015f780 phy_reg_init + *fill* 0x4015f833 0x1 + .phyiram.16 0x4015f834 0x1a0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x21b (size before relaxing) + 0x4015f83c set_chan_reg + *fill* 0x4015f9d4 0x0 + .phyiram.18 0x4015f9d4 0x5e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x76 (size before relaxing) + 0x4015f9dc i2c_master_reset + *fill* 0x4015fa32 0x2 + .phyiram.12 0x4015fa34 0x54 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x7c (size before relaxing) + 0x4015fa38 reg_init_begin + .phyiram.17 0x4015fa88 0xbe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x11a (size before relaxing) + 0x4015fa90 phy_wakeup_init + *fill* 0x4015fb46 0x2 + .phyiram.24 0x4015fb48 0x3e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x4e (size before relaxing) + 0x4015fb50 phy_set_bbfreq_init + *fill* 0x4015fb86 0x2 + .phyiram.25 0x4015fb88 0x29 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x31 (size before relaxing) + 0x4015fb8c ram_tx_pwctrl_bg_init + *fill* 0x4015fbb1 0x3 + .phyiram.26 0x4015fbb4 0xdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x123 (size before relaxing) + 0x4015fbc0 pwdet_sar2_init + *fill* 0x4015fc93 0x1 + .phyiram.27 0x4015fc94 0x6f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x9f (size before relaxing) + 0x4015fc94 ram_en_pwdet + *fill* 0x4015fd03 0x1 + .phyiram.22 0x4015fd04 0x59 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x61 (size before relaxing) + 0x4015fd4c i2c_bbpll_init + *fill* 0x4015fd5d 0x3 + .phyiram.20 0x4015fd60 0x106 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x10e (size before relaxing) + 0x4015fd60 bb_bss_cbw40_ana + *fill* 0x4015fe66 0x2 + .phyiram.21 0x4015fe68 0x96 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x9e (size before relaxing) + 0x4015fe68 i2c_bt_filter_set + *fill* 0x4015fefe 0x2 + .phyiram.19 0x4015ff00 0x2cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x30f (size before relaxing) + 0x4015ff04 phy_i2c_init + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *fill* 0x401601cb 0x0 + *libxtensa.a:xt_trax.*(.literal .literal.* .text .text.*) + *libxtensa.a:xtensa_intr.*(.literal .literal.* .text .text.*) + *fill* 0x401601cb 0x1 + .text.xt_int_has_handler + 0x401601cc 0x1d esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x401601cc xt_int_has_handler + *fill* 0x401601e9 0x3 + .text.xt_set_interrupt_handler + 0x401601ec 0x4e esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x401601ec xt_set_interrupt_handler + *fill* 0x4016023a 0x0 + *fill* 0x4016023a 0x0 + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + *(.fini.literal) + *(.fini) + *fill* 0x4016023a 0x2 + .fini 0x4016023c 0x3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + 0x4016023c _fini + *(.gnu.version) + 0x4016024f . = (. + _esp_flash_mmap_prefetch_pad_size) + *fill* 0x4016023f 0x10 + 0x4016024f _text_end = ABSOLUTE (.) + 0x4016024f _instruction_reserved_end = ABSOLUTE (.) + 0x4016024f _etext = . + 0x00000000 _flash_cache_start = ABSOLUTE (0x0) + +.iram0.text_end + 0x40097a9f 0x1 + 0x40097aa0 . = ALIGN (0x4) + *fill* 0x40097a9f 0x1 + 0x40097aa0 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x40097aa0 0x0 + 0x40097aa0 . = ALIGN (0x4) + 0x40097aa0 _iram_data_start = ABSOLUTE (.) + *(.iram.data .iram.data.*) + 0x40097aa0 _coredump_iram_start = ABSOLUTE (.) + *(.iram2.coredump .iram2.coredump.*) + 0x40097aa0 _coredump_iram_end = ABSOLUTE (.) + 0x40097aa0 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x40097aa0 0x0 + 0x40097aa0 . = ALIGN (0x4) + 0x40097aa0 _iram_bss_start = ABSOLUTE (.) + *(.iram.bss .iram.bss.*) + 0x40097aa0 _iram_bss_end = ABSOLUTE (.) + 0x40097aa0 . = ALIGN (0x4) + 0x40097aa0 _iram_end = ABSOLUTE (.) + +.dram0.heap_start + 0x3ffb9a68 0x0 + 0x3ffb9a68 . = ALIGN (0x8) + 0x3ffb9a68 _heap_low_start = ABSOLUTE (.) + +.xt.prop 0x00000000 0x8dd5c + *(.xt.prop .xt.prop.* .gnu.linkonce.prop.*) + .xt.prop 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + 0x24 (size before relaxing) + .xt.prop 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .xt.prop 0x00000030 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + 0x150 (size before relaxing) + .xt.prop 0x0000003c 0x12c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.prop 0x00000168 0xb4 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xf9c (size before relaxing) + .xt.prop 0x0000021c 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x4e0 (size before relaxing) + .xt.prop 0x00000240 0x324 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x00000564 0x24 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x414 (size before relaxing) + .xt.prop 0x00000588 0x24 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x348 (size before relaxing) + .xt.prop 0x000005ac 0x24 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x000005d0 0x2c4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.prop 0x00000894 0xcc esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x00000960 0x204 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x390 (size before relaxing) + .xt.prop 0x00000b64 0x6c esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x00000bd0 0x24 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .xt.prop 0x00000bf4 0x78 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.prop 0x00000c6c 0x168 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x198 (size before relaxing) + .xt.prop 0x00000dd4 0xa8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.prop 0x00000e7c 0xfc esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.prop 0x00000f78 0x36c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x39c (size before relaxing) + .xt.prop 0x000012e4 0x114 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x000013f8 0x288 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x2e8 (size before relaxing) + .xt.prop 0x00001680 0x2b8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x2e8 (size before relaxing) + .xt.prop 0x00001938 0x9c esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x000019d4 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.prop 0x00001a1c 0x2d0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x00001cec 0x2f4 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x00001fe0 0x24 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x30 (size before relaxing) + .xt.prop 0x00002004 0x108 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x114 (size before relaxing) + .xt.prop 0x0000210c 0x21c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x00002328 0x9c esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xt.prop 0x000023c4 0x90 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x00002454 0x9c esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x36c (size before relaxing) + .xt.prop 0x000024f0 0x3b4 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x438 (size before relaxing) + .xt.prop 0x000028a4 0x144 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x000029e8 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.prop 0x00002a18 0x450 esp-idf/log/liblog.a(log.c.obj) + 0x4d4 (size before relaxing) + .xt.prop 0x00002e68 0x168 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x00002fd0 0x6a8 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xd8c (size before relaxing) + .xt.prop 0x00003678 0x210 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x42c (size before relaxing) + .xt.prop 0x00003888 0x360 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x6cc (size before relaxing) + .xt.prop 0x00003be8 0xa2c esp-idf/heap/libheap.a(tlsf.c.obj) + 0xfcc (size before relaxing) + .xt.prop 0x00004614 0x204 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xt.prop 0x00004818 0x30 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x00004848 0x54 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x0000489c 0x1bc esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x360 (size before relaxing) + .xt.prop 0x00004a58 0x1bc esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x288 (size before relaxing) + .xt.prop 0x00004c14 0xcb4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1068 (size before relaxing) + .xt.prop 0x000058c8 0x1158 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x1218 (size before relaxing) + .xt.prop 0x00006a20 0x21c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x2d0 (size before relaxing) + .xt.prop 0x00006c3c 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x354 (size before relaxing) + .xt.prop 0x00006ce4 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x174 (size before relaxing) + .xt.prop 0x00006d08 0xa2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xcf0 (size before relaxing) + .xt.prop 0x00007734 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00007788 0x348 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x3fc (size before relaxing) + .xt.prop 0x00007ad0 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xt.prop 0x00007b3c 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x00007cd4 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x00007e00 0xfc esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.prop 0x00007efc 0xccc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1248 (size before relaxing) + .xt.prop 0x00008bc8 0x1aa0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c1c (size before relaxing) + .xt.prop 0x0000a668 0x474 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x5dc (size before relaxing) + .xt.prop 0x0000aadc 0x180 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.prop 0x0000ac5c 0x3c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x6c (size before relaxing) + .xt.prop 0x0000ac98 0x144 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x0000addc 0xa8 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xt.prop 0x0000ae84 0x6c esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x84 (size before relaxing) + .xt.prop 0x0000aef0 0xf0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xt.prop 0x0000afe0 0x3c esp-idf/newlib/libnewlib.a(abort.c.obj) + .xt.prop 0x0000b01c 0xcc esp-idf/newlib/libnewlib.a(assert.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x0000b0e8 0x174 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x348 (size before relaxing) + .xt.prop 0x0000b25c 0x45c esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x60c (size before relaxing) + .xt.prop 0x0000b6b8 0x48 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x0000b700 0x30 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x0000b730 0x108 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x114 (size before relaxing) + .xt.prop 0x0000b838 0x84 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x0000b8bc 0x2d0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4e0 (size before relaxing) + .xt.prop 0x0000bb8c 0x150 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x1a4 (size before relaxing) + .xt.prop 0x0000bcdc 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x240 (size before relaxing) + .xt.prop 0x0000bd00 0x714 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xb94 (size before relaxing) + .xt.prop 0x0000c414 0x9c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0xc0 (size before relaxing) + .xt.prop 0x0000c4b0 0x3c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x0000c4ec 0x2f4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x45c (size before relaxing) + .xt.prop 0x0000c7e0 0x78 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x1b0 (size before relaxing) + .xt.prop 0x0000c858 0xf78 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x2118 (size before relaxing) + .xt.prop 0x0000d7d0 0x2f4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x390 (size before relaxing) + .xt.prop 0x0000dac4 0x15c0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1848 (size before relaxing) + .xt.prop 0x0000f084 0x24 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x0000f0a8 0x420 esp-idf/main/libmain.a(station_example_main.c.obj) + 0x42c (size before relaxing) + .xt.prop 0x0000f4c8 0x168 esp-idf/main/libmain.a(http_control.c.obj) + 0x234 (size before relaxing) + .xt.prop 0x0000f630 0x234 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x0000f864 0x1ec esp-idf/main/libmain.a(button.c.obj) + .xt.prop 0x0000fa50 0xfc esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xt.prop 0x0000fb4c 0x54 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xt.prop 0x0000fba0 0xfc esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x180 (size before relaxing) + .xt.prop 0x0000fc9c 0x4a4 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x558 (size before relaxing) + .xt.prop 0x00010140 0xfc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x5dc (size before relaxing) + .xt.prop 0x0001023c 0x3fc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x9cc (size before relaxing) + .xt.prop 0x00010638 0x6c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x5f4 (size before relaxing) + .xt.prop 0x000106a4 0x78 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x9d8 (size before relaxing) + .xt.prop 0x0001071c 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x48c (size before relaxing) + .xt.prop 0x0001074c 0xb4c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xef4 (size before relaxing) + .xt.prop 0x00011298 0xc esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .xt.prop 0x000112a4 0x6c esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00011310 0xc30 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x1ddc (size before relaxing) + .xt.prop 0x00011f40 0x42c esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0xad4 (size before relaxing) + .xt.prop 0x0001236c 0x16e0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x1cc8 (size before relaxing) + .xt.prop 0x00013a4c 0x690 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24cc (size before relaxing) + .xt.prop 0x000140dc 0x54 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x00014130 0x60 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + 0xb10 (size before relaxing) + .xt.prop 0x00014190 0x21c esp-idf/driver/libdriver.a(i2s_platform.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x000143ac 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x000143d0 0x15c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x708 (size before relaxing) + .xt.prop 0x0001452c 0x2f4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x654 (size before relaxing) + .xt.prop 0x00014820 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x00014844 0x24 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x00014868 0xc0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00014928 0x390 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x42c (size before relaxing) + .xt.prop 0x00014cb8 0x240 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x534 (size before relaxing) + .xt.prop 0x00014ef8 0x15c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x00015054 0xab0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x11b8 (size before relaxing) + .xt.prop 0x00015b04 0xcc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x390 (size before relaxing) + .xt.prop 0x00015bd0 0x30c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x5a0 (size before relaxing) + .xt.prop 0x00015edc 0x84 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00015f60 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xt.prop 0x00015f78 0xb10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xbb8 (size before relaxing) + .xt.prop 0x00016a88 0xfc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x108 (size before relaxing) + .xt.prop 0x00016b84 0xf0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x00016c74 0x18c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x1a4 (size before relaxing) + .xt.prop 0x00016e00 0x2ac esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x000170ac 0x1f8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x3b4 (size before relaxing) + .xt.prop 0x000172a4 0x60 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00017304 0x18c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x00017490 0x1f8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x00017688 0x774 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd14 (size before relaxing) + .xt.prop 0x00017dfc 0x138 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x00017f34 0x24 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x30 (size before relaxing) + .xt.prop 0x00017f58 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x00017f88 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0xc48 (size before relaxing) + .xt.prop 0x00017f88 0x5e8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x924 (size before relaxing) + .xt.prop 0x00018570 0x1bc esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x0001872c 0x1bc esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x1ec (size before relaxing) + .xt.prop 0x000188e8 0x468 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4ec (size before relaxing) + .xt.prop 0x00018d50 0x1bc esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x1e0 (size before relaxing) + .xt.prop 0x00018f0c 0x18c esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x600 (size before relaxing) + .xt.prop 0x00019098 0x9c esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00019134 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + 0x504 (size before relaxing) + .xt.prop 0x00019134 0x588 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x5ac (size before relaxing) + .xt.prop 0x000196bc 0x144 esp-idf/hal/libhal.a(hal_utils.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x00019800 0xc esp-idf/soc/libsoc.a(interrupts.c.obj) + .xt.prop 0x0001980c 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x00019824 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + 0xc (size before relaxing) + .xt.prop 0x00019824 0x0 esp-idf/soc/libsoc.a(adc_periph.c.obj) + 0xc (size before relaxing) + .xt.prop 0x00019824 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + 0xc (size before relaxing) + .xt.prop 0x00019824 0xc esp-idf/soc/libsoc.a(i2s_periph.c.obj) + .xt.prop 0x00019830 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xt.prop 0x00019848 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x00019878 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.prop 0x000198cc 0x15c esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0x234 (size before relaxing) + .xt.prop 0x00019a28 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x84 (size before relaxing) + .xt.prop 0x00019a64 0x228 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xt.prop 0x00019c8c 0x294 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x00019f20 0x138 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x288 (size before relaxing) + .xt.prop 0x0001a058 0x570 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x588 (size before relaxing) + .xt.prop 0x0001a5c8 0x324 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x5f4 (size before relaxing) + .xt.prop 0x0001a8ec 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0x3a8 (size before relaxing) + .xt.prop 0x0001a8ec 0x4d4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xa5c (size before relaxing) + .xt.prop 0x0001adc0 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + 0xb70 (size before relaxing) + .xt.prop 0x0001adc0 0x78 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0xe4 (size before relaxing) + .xt.prop 0x0001ae38 0x198 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x264 (size before relaxing) + .xt.prop 0x0001afd0 0xb34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xe64 (size before relaxing) + .xt.prop 0x0001bb04 0x25ec esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x38b8 (size before relaxing) + .xt.prop 0x0001e0f0 0x438 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5d0 (size before relaxing) + .xt.prop 0x0001e528 0x48 esp-idf/lwip/liblwip.a(def.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x0001e570 0x30 esp-idf/lwip/liblwip.a(init.c.obj) + .xt.prop 0x0001e5a0 0x6c esp-idf/lwip/liblwip.a(ip.c.obj) + 0x1d4 (size before relaxing) + .xt.prop 0x0001e60c 0x120 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x0001e72c 0x240 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x0001e96c 0xd68 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1104 (size before relaxing) + .xt.prop 0x0001f6d4 0xc84 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x108c (size before relaxing) + .xt.prop 0x00020358 0x99c esp-idf/lwip/liblwip.a(raw.c.obj) + 0xb4c (size before relaxing) + .xt.prop 0x00020cf4 0x1b48 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x2088 (size before relaxing) + .xt.prop 0x0002283c 0x147c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x1488 (size before relaxing) + .xt.prop 0x00023cb8 0x105c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1068 (size before relaxing) + .xt.prop 0x00024d14 0x360 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42c (size before relaxing) + .xt.prop 0x00025074 0x11dc esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1248 (size before relaxing) + .xt.prop 0x00026250 0x1464 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1578 (size before relaxing) + .xt.prop 0x000276b4 0x9a8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xaec (size before relaxing) + .xt.prop 0x0002805c 0x180 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x000281dc 0x7c8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x858 (size before relaxing) + .xt.prop 0x000289a4 0x54c esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x618 (size before relaxing) + .xt.prop 0x00028ef0 0x354 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x4f8 (size before relaxing) + .xt.prop 0x00029244 0xe4 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.prop 0x00029328 0x210 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x324 (size before relaxing) + .xt.prop 0x00029538 0xc90 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0xd44 (size before relaxing) + .xt.prop 0x0002a1c8 0xc esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x54c (size before relaxing) + .xt.prop 0x0002a1d4 0xd8 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.prop 0x0002a2ac 0x6c0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x744 (size before relaxing) + .xt.prop 0x0002a96c 0x1b18 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1bf0 (size before relaxing) + .xt.prop 0x0002c484 0x138 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.prop 0x0002c5bc 0x90 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xt.prop 0x0002c64c 0x114 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x0002c760 0x150 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + 0x294 (size before relaxing) + .xt.prop 0x0002c8b0 0x6e4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8dc (size before relaxing) + .xt.prop 0x0002cf94 0x180 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x0002d114 0xad4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xf90 (size before relaxing) + .xt.prop 0x0002dbe8 0x16b0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1a40 (size before relaxing) + .xt.prop 0x0002f298 0x54 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.prop 0x0002f2ec 0xe4 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x300 (size before relaxing) + .xt.prop 0x0002f3d0 0x84 esp-idf/lwip/liblwip.a(dns.c.obj) + 0xf90 (size before relaxing) + .xt.prop 0x0002f454 0x1c8 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x36c (size before relaxing) + .xt.prop 0x0002f61c 0x264 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x0002f880 0x14ac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2cdc (size before relaxing) + .xt.prop 0x00030d2c 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x00030e1c 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x00030edc 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00030f78 0x57c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xc30 (size before relaxing) + .xt.prop 0x000314f4 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xt.prop 0x00031578 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x78 (size before relaxing) + .xt.prop 0x000315e4 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00031680 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x108 (size before relaxing) + .xt.prop 0x0003174c 0x198 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x39c (size before relaxing) + .xt.prop 0x000318e4 0x654 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0xc48 (size before relaxing) + .xt.prop 0x00031f38 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x228 (size before relaxing) + .xt.prop 0x00032130 0x2d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x330 (size before relaxing) + .xt.prop 0x00032400 0x234 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x00032634 0x390 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x690 (size before relaxing) + .xt.prop 0x000329c4 0x240 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x00032c04 0xb04 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc84 (size before relaxing) + .xt.prop 0x00033708 0x6a8 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x870 (size before relaxing) + .xt.prop 0x00033db0 0x93c esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0xdc8 (size before relaxing) + .xt.prop 0x000346ec 0x774 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0xa08 (size before relaxing) + .xt.prop 0x00034e60 0x6a8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0xbf4 (size before relaxing) + .xt.prop 0x00035508 0x3fc esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x588 (size before relaxing) + .xt.prop 0x00035904 0xa8 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x000359ac 0x12a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x1c80 (size before relaxing) + .xt.prop 0x00036c54 0x900 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc30 (size before relaxing) + .xt.prop 0x00037554 0x450 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xffc (size before relaxing) + .xt.prop 0x000379a4 0x738 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8ac (size before relaxing) + .xt.prop 0x000380dc 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x00038214 0x3c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x8e8 (size before relaxing) + .xt.prop 0x000385d4 0xd14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x11c4 (size before relaxing) + .xt.prop 0x000392e8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x108 (size before relaxing) + .xt.prop 0x00039318 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00039390 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x84 (size before relaxing) + .xt.prop 0x00039408 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + 0x858 (size before relaxing) + .xt.prop 0x00039408 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x138 (size before relaxing) + .xt.prop 0x00039438 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x00039480 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x000394c8 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x6fc (size before relaxing) + .xt.prop 0x0003978c 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xt.prop 0x000397ec 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x00039a2c 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0xe4 (size before relaxing) + .xt.prop 0x00039aec 0x594 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x798 (size before relaxing) + .xt.prop 0x0003a080 0x474 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x510 (size before relaxing) + .xt.prop 0x0003a4f4 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x2a0 (size before relaxing) + .xt.prop 0x0003a698 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x33c (size before relaxing) + .xt.prop 0x0003a95c 0x33c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x3d8 (size before relaxing) + .xt.prop 0x0003ac98 0x708 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x7a4 (size before relaxing) + .xt.prop 0x0003b3a0 0x2d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x60c (size before relaxing) + .xt.prop 0x0003b670 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x15c (size before relaxing) + .xt.prop 0x0003b730 0x4c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x810 (size before relaxing) + .xt.prop 0x0003bbf8 0x324 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x75c (size before relaxing) + .xt.prop 0x0003bf1c 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x6a8 (size before relaxing) + .xt.prop 0x0003c09c 0x288 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x930 (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + 0x753c (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + 0x534 (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + 0x720 (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + 0x6b4 (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + 0x8ac (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + 0xa08 (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + 0x684 (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + 0x6e4 (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + 0x45c (size before relaxing) + .xt.prop 0x0003c324 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + 0x324 (size before relaxing) + .xt.prop 0x0003c324 0x1440 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1e9c (size before relaxing) + .xt.prop 0x0003d764 0x438 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x468 (size before relaxing) + .xt.prop 0x0003db9c 0x294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x2e8 (size before relaxing) + .xt.prop 0x0003de30 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x8b8 (size before relaxing) + .xt.prop 0x0003e250 0x21c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x6cc (size before relaxing) + .xt.prop 0x0003e46c 0x48c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x5e8 (size before relaxing) + .xt.prop 0x0003e8f8 0x1548 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2184 (size before relaxing) + .xt.prop 0x0003fe40 0x2b74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x2bb0 (size before relaxing) + .xt.prop 0x000429b4 0x21c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x5c4 (size before relaxing) + .xt.prop 0x00042bd0 0x294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x6c0 (size before relaxing) + .xt.prop 0x00042e64 0x318 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x10b0 (size before relaxing) + .xt.prop 0x0004317c 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x000431a0 0x1008 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4b90 (size before relaxing) + .xt.prop 0x000441a8 0x72c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x984 (size before relaxing) + .xt.prop 0x000448d4 0x33c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x3c0 (size before relaxing) + .xt.prop 0x00044c10 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0xc0 (size before relaxing) + .xt.prop 0x00044c58 0x18f0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1a4c (size before relaxing) + .xt.prop 0x00046548 0x1b00 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1d70 (size before relaxing) + .xt.prop 0x00048048 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x168 (size before relaxing) + .xt.prop 0x000480a8 0x165c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x1734 (size before relaxing) + .xt.prop 0x00049704 0x1f74 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4974 (size before relaxing) + .xt.prop 0x0004b678 0x90 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x2b8 (size before relaxing) + .xt.prop 0x0004b708 0x18c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x9a8 (size before relaxing) + .xt.prop 0x0004b894 0x3b4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x1e18 (size before relaxing) + .xt.prop 0x0004bc48 0x204 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x1470 (size before relaxing) + .xt.prop 0x0004be4c 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + 0xeac (size before relaxing) + .xt.prop 0x0004be4c 0x930 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xaf8 (size before relaxing) + .xt.prop 0x0004c77c 0x2394 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2a3c (size before relaxing) + .xt.prop 0x0004eb10 0x2a0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x300 (size before relaxing) + .xt.prop 0x0004edb0 0x4b0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x5ac (size before relaxing) + .xt.prop 0x0004f260 0x168 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x258 (size before relaxing) + .xt.prop 0x0004f3c8 0x114 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x1e0 (size before relaxing) + .xt.prop 0x0004f4dc 0x2dc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x414 (size before relaxing) + .xt.prop 0x0004f7b8 0x6c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x138 (size before relaxing) + .xt.prop 0x0004f824 0x19b0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x1cc8 (size before relaxing) + .xt.prop 0x000511d4 0x1d40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1e90 (size before relaxing) + .xt.prop 0x00052f14 0x1380 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1ddc (size before relaxing) + .xt.prop 0x00054294 0x864 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x9e4 (size before relaxing) + .xt.prop 0x00054af8 0x564 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x5e8 (size before relaxing) + .xt.prop 0x0005505c 0x201c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x26ac (size before relaxing) + .xt.prop 0x00057078 0x9c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x27c (size before relaxing) + .xt.prop 0x00057114 0x468 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x4ec (size before relaxing) + .xt.prop 0x0005757c 0x108 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x42c (size before relaxing) + .xt.prop 0x00057684 0x27c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x2ac (size before relaxing) + .xt.prop 0x00057900 0xd8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + 0xf0 (size before relaxing) + .xt.prop 0x000579d8 0xc0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0xcc (size before relaxing) + .xt.prop 0x00057a98 0x78 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .xt.prop 0x00057b10 0x84 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x9c (size before relaxing) + .xt.prop 0x00057b94 0x57c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x654 (size before relaxing) + .xt.prop 0x00058110 0xb28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14dc (size before relaxing) + .xt.prop 0x00058c38 0x13f8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x18c0 (size before relaxing) + .xt.prop 0x0005a030 0x28ec C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3024 (size before relaxing) + .xt.prop 0x0005c91c 0x2640 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2ef8 (size before relaxing) + .xt.prop 0x0005ef5c 0xb4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x3fc (size before relaxing) + .xt.prop 0x0005f010 0x2f4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x360 (size before relaxing) + .xt.prop 0x0005f304 0x120 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x198 (size before relaxing) + .xt.prop 0x0005f424 0x198c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x207c (size before relaxing) + .xt.prop 0x00060db0 0x18c0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x1ddc (size before relaxing) + .xt.prop 0x00062670 0x144 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x168 (size before relaxing) + .xt.prop 0x000627b4 0x270 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x2ac (size before relaxing) + .xt.prop 0x00062a24 0x888 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xb58 (size before relaxing) + .xt.prop 0x000632ac 0xf0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .xt.prop 0x0006339c 0x300 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x30c (size before relaxing) + .xt.prop 0x0006369c 0x114 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .xt.prop 0x000637b0 0x90 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0xf0 (size before relaxing) + .xt.prop 0x00063840 0x444 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18a8 (size before relaxing) + .xt.prop 0x00063c84 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x108 (size before relaxing) + .xt.prop 0x00063c84 0xc esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x8d0 (size before relaxing) + .xt.prop 0x00063c90 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0xff0 (size before relaxing) + .xt.prop 0x00063c90 0x510 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x5d0 (size before relaxing) + .xt.prop 0x000641a0 0x390 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x6fc (size before relaxing) + .xt.prop 0x00064530 0x84 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0xe88 (size before relaxing) + .xt.prop 0x000645b4 0x9c esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xt.prop 0x00064650 0x3a8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x3b4 (size before relaxing) + .xt.prop 0x000649f8 0x324 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x3c0 (size before relaxing) + .xt.prop 0x00064d1c 0x234 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x00064f50 0xfc esp-idf/hal/libhal.a(aes_hal.c.obj) + .xt.prop 0x0006504c 0x3c esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x00065088 0x18 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .xt.prop 0x000650a0 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.prop 0x00065130 0x354 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x540 (size before relaxing) + .xt.prop 0x00065484 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x6c (size before relaxing) + .xt.prop 0x000654e4 0x168 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x0006564c 0x5b8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x1500 (size before relaxing) + .xt.prop._ZN14NVSHandleEntryD2Ev + 0x00065c04 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x00065c28 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ + 0x00065c7c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x00065cb8 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x00065cdc 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x00065d00 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x00065d24 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIlEEiPKcT_ + 0x00065d48 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x00065d6c 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x00065d90 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x00065db4 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x00065dd8 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x00065dfc 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x00065e20 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x00065e44 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIlEEiPKcRT_ + 0x00065e68 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x00065e8c 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x00065eb0 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x00065ed4 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop 0x00065ef8 0xa50 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x1254 (size before relaxing) + .xt.prop._ZN3nvs4Item6getKeyEPcj + 0x00066948 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x48 (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x00066984 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x48 (size before relaxing) + .xt.prop._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x000669c0 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x54 (size before relaxing) + .xt.prop._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x00066a08 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x00066a08 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x48 (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x00066a44 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x48 (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ + 0x00066a80 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x00066abc 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x00066b10 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x00066b4c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ + 0x00066b88 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev + 0x00066bc4 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE + 0x00066bf4 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE + 0x00066c48 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop 0x00066c9c 0x3cc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x5c4 (size before relaxing) + .xt.prop._ZTVN3nvs9NVSHandleE + 0x00067068 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.prop._ZTVN3nvs15NVSHandleSimpleE + 0x00067074 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.prop._ZN3nvs12NVSPartitionD5Ev + 0x00067080 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop 0x0006708c 0x174 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x1e0 (size before relaxing) + .xt.prop._ZN3nvs12NVSPartitionD2Ev + 0x00067200 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZN3nvs12NVSPartitionD0Ev + 0x00067224 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZTVN3nvs9PartitionE + 0x00067248 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZTVN3nvs12NVSPartitionE + 0x00067254 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZN3nvs19NVSPartitionManagerD5Ev + 0x00067260 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop 0x0006726c 0x204 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4bc (size before relaxing) + .xt.prop._ZN3nvs7StorageC5EPNS_9PartitionE + 0x00067470 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .xt.prop._ZN3nvs19NVSPartitionManagerD2Ev + 0x00067470 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN3nvs19NVSPartitionManagerD0Ev + 0x00067494 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN3nvs7StorageC2EPNS_9PartitionE + 0x000674b8 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs12NVSPartitionEE9push_backEPS1_ + 0x000674dc 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + 0x00067518 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ + 0x0006756c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x000675a8 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE + 0x000675fc 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ + 0x00067650 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZTVN3nvs19NVSPartitionManagerE + 0x0006768c 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop 0x00067698 0x84 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0xcc (size before relaxing) + .xt.prop 0x0006771c 0x1ec esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x24c (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x00067908 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ + 0x0006795c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.prop._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x00067998 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc (size before relaxing) + .xt.prop 0x00067998 0xc3c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1560 (size before relaxing) + .xt.prop._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x000685d4 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x00068640 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop 0x0006867c 0xf0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x42c (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x0006876c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x48 (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x000687a8 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x60 (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x000687fc 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x00068838 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ + 0x0006888c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop 0x000688c8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x108 (size before relaxing) + .xt.prop 0x000688c8 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x90 (size before relaxing) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x00068934 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop 0x00068940 0xfc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x198 (size before relaxing) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD2Ev + 0x00068a3c 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD0Ev + 0x00068a60 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZTVN3nvs21NVSEncryptedPartitionE + 0x00068a84 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop 0x00068a90 0xcc esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x2ac (size before relaxing) + .xt.prop 0x00068b5c 0x570 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x69c (size before relaxing) + .xt.prop 0x000690cc 0x84 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x00069150 0xc48 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xf24 (size before relaxing) + .xt.prop 0x00069d98 0x12c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x210 (size before relaxing) + .xt.prop 0x00069ec4 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00069ed0 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x00069ee8 0x1bc esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x240 (size before relaxing) + .xt.prop 0x0006a0a4 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x0006a0a4 0x78 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x84 (size before relaxing) + .xt.prop 0x0006a11c 0x51c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x624 (size before relaxing) + .xt.prop 0x0006a638 0x1c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x0006a800 0xa50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xaec (size before relaxing) + .xt.prop 0x0006b250 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x0006b2e0 0x348 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x0006b628 0x9d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1404 (size before relaxing) + .xt.prop 0x0006c000 0x378 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x648 (size before relaxing) + .xt.prop 0x0006c378 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4b0 (size before relaxing) + .xt.prop 0x0006c570 0x1c50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1f8c (size before relaxing) + .xt.prop 0x0006e1c0 0x804 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x858 (size before relaxing) + .xt.prop 0x0006e9c4 0x42c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x594 (size before relaxing) + .xt.prop 0x0006edf0 0x180 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x0006ef70 0xac8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xb04 (size before relaxing) + .xt.prop 0x0006fa38 0x1a4 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x1d4 (size before relaxing) + .xt.prop 0x0006fbdc 0x2280 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2520 (size before relaxing) + .xt.prop 0x00071e5c 0x3c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x468 (size before relaxing) + .xt.prop 0x0007221c 0x1188 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x1518 (size before relaxing) + .xt.prop 0x000733a4 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xt.prop 0x0007344c 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x1b0 (size before relaxing) + .xt.prop 0x000734dc 0x2064 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x234c (size before relaxing) + .xt.prop 0x00075540 0x5e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x624 (size before relaxing) + .xt.prop 0x00075b28 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x360 (size before relaxing) + .xt.prop 0x00075c48 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x00075c48 0x888 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0xa14 (size before relaxing) + .xt.prop 0x000764d0 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + 0x1218 (size before relaxing) + .xt.prop 0x00076524 0x228 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x0007674c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + 0xb40 (size before relaxing) + .xt.prop 0x0007674c 0x510 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x6cc (size before relaxing) + .xt.prop 0x00076c5c 0x240 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x2f4 (size before relaxing) + .xt.prop 0x00076e9c 0x15c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x558 (size before relaxing) + .xt.prop 0x00076ff8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + 0x102c (size before relaxing) + .xt.prop 0x00076ff8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x00076ff8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + 0x918 (size before relaxing) + .xt.prop 0x00076ff8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + 0xfa8 (size before relaxing) + .xt.prop 0x00076ff8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + 0xa8 (size before relaxing) + .xt.prop 0x00076ff8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x00076ff8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + 0xc18 (size before relaxing) + .xt.prop 0x00076ff8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + 0x1308 (size before relaxing) + .xt.prop 0x00076ff8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + 0x18c (size before relaxing) + .xt.prop 0x00076ff8 0x540 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x66c (size before relaxing) + .xt.prop 0x00077538 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + 0x654 (size before relaxing) + .xt.prop 0x00077538 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x00077538 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00077538 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + 0x3b4 (size before relaxing) + .xt.prop 0x00077538 0x288 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x474 (size before relaxing) + .xt.prop 0x000777c0 0x3738 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x38c4 (size before relaxing) + .xt.prop 0x0007aef8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x1938 (size before relaxing) + .xt.prop 0x0007aef8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3bdc (size before relaxing) + .xt.prop 0x0007aef8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0x15e4 (size before relaxing) + .xt.prop 0x0007aef8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0x18cc (size before relaxing) + .xt.prop 0x0007aef8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + 0x54 (size before relaxing) + .xt.prop 0x0007aef8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x3d8 (size before relaxing) + .xt.prop 0x0007aef8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x774 (size before relaxing) + .xt.prop 0x0007aef8 0x1e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x1164 (size before relaxing) + .xt.prop 0x0007b0d8 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x150 (size before relaxing) + .xt.prop 0x0007b1a4 0x414 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x648 (size before relaxing) + .xt.prop 0x0007b5b8 0x624 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xe28 (size before relaxing) + .xt.prop 0x0007bbdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x510 (size before relaxing) + .xt.prop 0x0007bbdc 0x4e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x5c4 (size before relaxing) + .xt.prop 0x0007c0bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x474 (size before relaxing) + .xt.prop 0x0007c0bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x438 (size before relaxing) + .xt.prop 0x0007c0bc 0x1f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x3d8 (size before relaxing) + .xt.prop 0x0007c2b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x2430 (size before relaxing) + .xt.prop 0x0007c2b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1d7c (size before relaxing) + .xt.prop 0x0007c2b4 0xe4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x144 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x4c14 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x444 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0xaf8 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x375c (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + 0x378 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x744 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x13a4 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + 0x4ec (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x6b64 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x1860 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x30e4 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0x210 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + 0x510 (size before relaxing) + .xt.prop 0x0007c398 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + 0x570 (size before relaxing) + .xt.prop 0x0007c398 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + 0x2dc (size before relaxing) + .xt.prop 0x0007c398 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x354 (size before relaxing) + .xt.prop 0x0007c398 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x27c (size before relaxing) + .xt.prop 0x0007c398 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xbdc (size before relaxing) + .xt.prop 0x0007c398 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x12c (size before relaxing) + .xt.prop 0x0007c398 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x96c (size before relaxing) + .xt.prop 0x0007c398 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x0007c398 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x0007c398 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x1500 (size before relaxing) + .xt.prop 0x0007c44c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + 0x24 (size before relaxing) + .xt.prop 0x0007c44c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + 0x24c (size before relaxing) + .xt.prop 0x0007c44c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x3b4 (size before relaxing) + .xt.prop 0x0007c44c 0x54 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.prop 0x0007c4a0 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + 0x3c (size before relaxing) + .xt.prop 0x0007c4a0 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + 0x600 (size before relaxing) + .xt.prop 0x0007c4a0 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x0007c4a0 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + 0x120 (size before relaxing) + .xt.prop 0x0007c4a0 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + 0xc (size before relaxing) + .xt.prop 0x0007c4a0 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) + 0xd8 (size before relaxing) + .xt.prop 0x0007c4a0 0xe4 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0xf0 (size before relaxing) + .xt.prop 0x0007c584 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .xt.prop 0x0007c5a8 0xc C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .xt.prop 0x0007c5b4 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .xt.prop 0x0007c5d8 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .xt.prop 0x0007c5fc 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + 0x30 (size before relaxing) + .xt.prop 0x0007c620 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + 0x30 (size before relaxing) + .xt.prop 0x0007c644 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + 0x78 (size before relaxing) + .xt.prop 0x0007c680 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + 0x6c (size before relaxing) + .xt.prop 0x0007c6e0 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + 0x30 (size before relaxing) + .xt.prop 0x0007c704 0x114 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x1a4 (size before relaxing) + .xt.prop 0x0007c818 0x120 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x168 (size before relaxing) + .xt.prop 0x0007c938 0x84 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x18c (size before relaxing) + .xt.prop 0x0007c9bc 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + 0xc (size before relaxing) + .xt.prop 0x0007c9bc 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + 0x30 (size before relaxing) + .xt.prop 0x0007c9e0 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .xt.prop 0x0007c9ec 0x54 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .xt.prop._ZTISt9exception + 0x0007ca40 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .xt.prop._ZTISt9bad_alloc + 0x0007ca4c 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .xt.prop 0x0007ca58 0x15c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x198 (size before relaxing) + .xt.prop._ZTVN10__cxxabiv120__si_class_type_infoE + 0x0007cbb4 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .xt.prop 0x0007cbc0 0xb4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0xcc (size before relaxing) + .xt.prop._ZTVSt9type_info + 0x0007cc74 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .xt.prop 0x0007cc80 0x78 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x90 (size before relaxing) + .xt.prop._ZTVSt9bad_alloc + 0x0007ccf8 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .xt.prop 0x0007cd04 0x174 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x1b0 (size before relaxing) + .xt.prop._ZTVN10__cxxabiv117__class_type_infoE + 0x0007ce78 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .xt.prop 0x0007ce84 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + 0x30 (size before relaxing) + .xt.prop 0x0007cea8 0xf0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x1f8 (size before relaxing) + .xt.prop._ZTVSt9exception + 0x0007cf98 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVSt13bad_exception + 0x0007cfa4 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv115__forced_unwindE + 0x0007cfb0 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv119__foreign_exceptionE + 0x0007cfbc 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop 0x0007cfc8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + 0x24 (size before relaxing) + .xt.prop 0x0007cfc8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + 0x24 (size before relaxing) + .xt.prop 0x0007cfc8 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + 0x90 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + 0x420 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + 0x228 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + 0x264 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + 0x288 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + 0x6c (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + 0xa8 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + 0x54 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + 0xb4 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + 0x6c (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + 0x48 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + 0x30 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + 0x180 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + 0x144 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + 0x168 (size before relaxing) + .xt.prop 0x0007cfec 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + 0x108 (size before relaxing) + .xt.prop 0x0007cfec 0x78 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x3cc (size before relaxing) + .xt.prop 0x0007d064 0x2070 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x38dc (size before relaxing) + .xt.prop 0x0007f0d4 0x24 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + 0x90 (size before relaxing) + .xt.prop 0x0007f0f8 0x1e00 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x2160 (size before relaxing) + .xt.prop 0x00080ef8 0x162c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x1c74 (size before relaxing) + .xt.prop 0x00082524 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + 0x3e4 (size before relaxing) + .xt.prop 0x00082554 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + 0x630 (size before relaxing) + .xt.prop 0x00082584 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + 0xc6c (size before relaxing) + .xt.prop 0x00082584 0x9c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .xt.prop 0x00082620 0x48 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + 0x54 (size before relaxing) + .xt.prop 0x00082668 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .xt.prop 0x000826c8 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .xt.prop 0x00082728 0xb4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .xt.prop 0x000827dc 0x144 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + 0x150 (size before relaxing) + .xt.prop 0x00082920 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .xt.prop 0x00082950 0x3b4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .xt.prop 0x00082d04 0xb4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .xt.prop 0x00082db8 0xd8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + 0x48 (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + 0x24 (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + 0x18 (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + 0x78 (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + 0x54 (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + 0x18c (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + 0x180 (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + 0x78 (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + 0x36c (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + 0xcc (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + 0x48 (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + 0x1b0 (size before relaxing) + .xt.prop 0x00082e90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + 0xc0 (size before relaxing) + .xt.prop 0x00082e90 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + 0x210 (size before relaxing) + .xt.prop 0x00082e9c 0x90 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .xt.prop 0x00082f2c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + 0x48 (size before relaxing) + .xt.prop 0x00082f2c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + 0x60 (size before relaxing) + .xt.prop 0x00082f2c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + 0x60 (size before relaxing) + .xt.prop 0x00082f2c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + 0xc0 (size before relaxing) + .xt.prop 0x00082f2c 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + 0x48 (size before relaxing) + .xt.prop 0x00082f68 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + 0x48 (size before relaxing) + .xt.prop 0x00082f68 0x204 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .xt.prop 0x0008316c 0x54 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .xt.prop 0x000831c0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + 0x84 (size before relaxing) + .xt.prop 0x000831c0 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + 0x48 (size before relaxing) + .xt.prop 0x000831fc 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + 0x78 (size before relaxing) + .xt.prop 0x000831fc 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + 0x48 (size before relaxing) + .xt.prop 0x000831fc 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .xt.prop 0x0008325c 0xfc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .xt.prop 0x00083358 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + 0x48 (size before relaxing) + .xt.prop 0x00083358 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + 0x30 (size before relaxing) + .xt.prop 0x00083358 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + 0x30 (size before relaxing) + .xt.prop 0x00083358 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + 0x15c (size before relaxing) + .xt.prop 0x00083358 0xb4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + 0xc0 (size before relaxing) + .xt.prop 0x0008340c 0x48 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .xt.prop 0x00083454 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + 0xcc (size before relaxing) + .xt.prop 0x00083454 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + 0x48 (size before relaxing) + .xt.prop 0x00083490 0x78 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + 0x84 (size before relaxing) + .xt.prop 0x00083508 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + 0x90 (size before relaxing) + .xt.prop 0x00083508 0xa8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + 0xb4 (size before relaxing) + .xt.prop 0x000835b0 0x270 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + 0x108 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + 0x30 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + 0x48 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + 0x90 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + 0x78 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + 0x3c (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + 0x54 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + 0x60 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + 0x30 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + 0x3c (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + 0x3c (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + 0xa8 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + 0x9c (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + 0x48 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + 0x48 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + 0x48 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + 0x6c (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + 0x30 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + 0xfc (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + 0x78 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + 0x30 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + 0xa8 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + 0x204 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + 0x360 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + 0xc (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + 0x48 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + 0x114 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + 0x48 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + 0x48 (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + 0x21c (size before relaxing) + .xt.prop 0x00083820 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + 0xc (size before relaxing) + .xt.prop 0x00083820 0xd8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .xt.prop 0x000838f8 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + 0x18 (size before relaxing) + .xt.prop 0x00083904 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + 0x30 (size before relaxing) + .xt.prop 0x00083928 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + 0x30 (size before relaxing) + .xt.prop 0x00083928 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .xt.prop 0x00083958 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + 0x30 (size before relaxing) + .xt.prop 0x00083958 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + 0x15c (size before relaxing) + .xt.prop 0x00083958 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + 0xd8 (size before relaxing) + .xt.prop 0x00083958 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + 0x120 (size before relaxing) + .xt.prop 0x00083958 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + 0x114 (size before relaxing) + .xt.prop 0x00083958 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + 0xc0 (size before relaxing) + .xt.prop 0x00083958 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + 0x1a4 (size before relaxing) + .xt.prop 0x00083958 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + 0xcc (size before relaxing) + .xt.prop 0x00083958 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + 0x48 (size before relaxing) + .xt.prop 0x00083958 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + 0x1c8c (size before relaxing) + .xt.prop 0x00083958 0x2778 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + 0x27a8 (size before relaxing) + .xt.prop 0x000860d0 0x2838 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + 0x2868 (size before relaxing) + .xt.prop 0x00088908 0x20e8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + 0x2118 (size before relaxing) + .xt.prop 0x0008a9f0 0xb4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .xt.prop 0x0008aaa4 0xd8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + 0xe4 (size before relaxing) + .xt.prop 0x0008ab7c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + 0xd8 (size before relaxing) + .xt.prop 0x0008ab7c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + 0x174 (size before relaxing) + .xt.prop 0x0008ab7c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + 0x828 (size before relaxing) + .xt.prop 0x0008ab7c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + 0x24 (size before relaxing) + .xt.prop 0x0008ab7c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + 0x3c (size before relaxing) + .xt.prop 0x0008ab7c 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + 0x84 (size before relaxing) + .xt.prop 0x0008ab94 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .xt.prop 0x0008abf4 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + 0x48 (size before relaxing) + .xt.prop 0x0008ac30 0x7f8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .xt.prop 0x0008b428 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + 0x48 (size before relaxing) + .xt.prop 0x0008b428 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + 0x6c (size before relaxing) + .xt.prop 0x0008b488 0x7f8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + 0x804 (size before relaxing) + .xt.prop 0x0008bc80 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + 0x6c (size before relaxing) + .xt.prop 0x0008bc80 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + 0x198 (size before relaxing) + .xt.prop 0x0008bc80 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + 0x198 (size before relaxing) + .xt.prop 0x0008bc80 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + 0x60 (size before relaxing) + .xt.prop 0x0008bc80 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + 0x30 (size before relaxing) + .xt.prop 0x0008bc80 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + 0x3c (size before relaxing) + .xt.prop 0x0008bc80 0x20d0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + 0x2100 (size before relaxing) + .xt.prop 0x0008dd50 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + 0x84 (size before relaxing) + .xt.prop 0x0008dd5c 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + 0x30 (size before relaxing) + +.xt.lit 0x00000000 0x4000 + *(.xt.lit .xt.lit.* .gnu.linkonce.p.*) + .xt.lit 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + 0x8 (size before relaxing) + .xt.lit 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + 0x18 (size before relaxing) + .xt.lit 0x00000000 0x18 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.lit 0x00000018 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x00000020 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000020 0x20 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000040 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000040 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000040 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00000040 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.lit 0x00000070 0x18 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000088 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000000a8 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000000b0 0x8 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.lit 0x000000b8 0x18 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000000d0 0x10 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.lit 0x000000e0 0x18 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.lit 0x000000f8 0x38 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000130 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000138 0x28 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000160 0x20 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000180 0x10 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000190 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.lit 0x00000198 0x28 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000001c0 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000001d8 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x8 (size before relaxing) + .xt.lit 0x000001d8 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xt.lit 0x000001e8 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000208 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xt.lit 0x00000210 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000210 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000218 0x10 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000228 0x10 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000238 0x8 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.lit 0x00000240 0x40 esp-idf/log/liblog.a(log.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000280 0x10 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000290 0x68 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x100 (size before relaxing) + .xt.lit 0x000002f8 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000308 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000328 0x40 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00000368 0x20 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xt.lit 0x00000388 0x8 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000390 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000003a8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000003d0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x00000430 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x00000490 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x000004b8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000004c8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000004c8 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x118 (size before relaxing) + .xt.lit 0x00000548 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000550 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000580 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xt.lit 0x00000588 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000598 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x000005b0 0x20 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.lit 0x000005d0 0x90 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x00000660 0x138 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2e8 (size before relaxing) + .xt.lit 0x00000798 0x40 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x000007d8 0x8 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.lit 0x000007e0 0x8 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000007e8 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000007f0 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xt.lit 0x00000800 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000800 0x8 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xt.lit 0x00000808 0x10 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000818 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000820 0x30 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x00000850 0x8 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000858 0x18 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000870 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000870 0x28 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00000898 0x18 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000008b0 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x30 (size before relaxing) + .xt.lit 0x000008b0 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xd0 (size before relaxing) + .xt.lit 0x000008e0 0x10 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xt.lit 0x000008f0 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000008f0 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00000920 0x8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000928 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1b0 (size before relaxing) + .xt.lit 0x00000958 0x18 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x00000970 0x88 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xf8 (size before relaxing) + .xt.lit 0x000009f8 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000009f8 0x50 esp-idf/main/libmain.a(station_example_main.c.obj) + .xt.lit 0x00000a48 0x20 esp-idf/main/libmain.a(http_control.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000a68 0x30 esp-idf/main/libmain.a(butterworthdesign.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000a98 0x20 esp-idf/main/libmain.a(button.c.obj) + .xt.lit 0x00000ab8 0x8 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xt.lit 0x00000ac0 0x18 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000ad8 0x8 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x48 (size before relaxing) + .xt.lit 0x00000ae0 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00000af0 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00000b10 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000b10 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000b10 0x48 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x00000b58 0x8 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000b60 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x220 (size before relaxing) + .xt.lit 0x00000c10 0x58 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x100 (size before relaxing) + .xt.lit 0x00000c68 0x120 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + 0x1a0 (size before relaxing) + .xt.lit 0x00000d88 0x70 esp-idf/driver/libdriver.a(uart.c.obj) + 0x230 (size before relaxing) + .xt.lit 0x00000df8 0x8 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000e00 0x8 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + 0xd0 (size before relaxing) + .xt.lit 0x00000e08 0x18 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000e20 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000e20 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x00000e30 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000e58 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000e58 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000e58 0x10 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000e68 0x28 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00000e90 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000ea0 0x18 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000eb8 0x50 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xe0 (size before relaxing) + .xt.lit 0x00000f08 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000f18 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00000f40 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000f48 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xa0 (size before relaxing) + .xt.lit 0x00000f78 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000f88 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000f88 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000f98 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00000fa0 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00000fb0 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000fc0 0x18 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000fd8 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000ff0 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xc8 (size before relaxing) + .xt.lit 0x00001038 0x8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00001040 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x8 (size before relaxing) + .xt.lit 0x00001040 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00001048 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x00001048 0x38 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00001080 0x8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00001088 0x10 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00001098 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000010b0 0x20 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000010d0 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x000010d0 0x8 esp-idf/hal/libhal.a(gpio_hal.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000010d8 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000010d8 0x30 esp-idf/hal/libhal.a(i2s_hal.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00001108 0x8 esp-idf/hal/libhal.a(hal_utils.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00001110 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xt.lit 0x00001118 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.lit 0x00001120 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00001138 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00001140 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xt.lit 0x00001148 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00001168 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00001178 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000011a0 0x28 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x000011c8 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x000011c8 0x38 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xe0 (size before relaxing) + .xt.lit 0x00001200 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x00001200 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00001208 0x10 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00001218 0x48 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xa8 (size before relaxing) + .xt.lit 0x00001260 0xe8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x230 (size before relaxing) + .xt.lit 0x00001348 0x48 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00001390 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00001390 0x8 esp-idf/lwip/liblwip.a(init.c.obj) + .xt.lit 0x00001398 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00001398 0x10 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000013a8 0x18 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000013c0 0x98 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x00001458 0x78 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x118 (size before relaxing) + .xt.lit 0x000014d0 0x18 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x000014e8 0xe8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x198 (size before relaxing) + .xt.lit 0x000015d0 0x50 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00001620 0xb8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x000016d8 0x30 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00001708 0x30 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00001738 0x90 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x000017c8 0x50 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00001818 0x10 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00001828 0x28 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00001850 0x18 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00001868 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00001870 0x8 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.lit 0x00001878 0x10 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00001888 0x10 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00001898 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00001898 0x8 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.lit 0x000018a0 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x000018a8 0x60 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x00001908 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.lit 0x00001918 0x10 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xt.lit 0x00001928 0x8 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00001930 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00001930 0x60 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xe0 (size before relaxing) + .xt.lit 0x00001990 0x10 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000019a0 0x68 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x108 (size before relaxing) + .xt.lit 0x00001a08 0xa8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x00001ab0 0x8 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.lit 0x00001ab8 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00001ac0 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x00001ac8 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00001ac8 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00001ad8 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x340 (size before relaxing) + .xt.lit 0x00001bc0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00001bc8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00001bc8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00001bc8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x128 (size before relaxing) + .xt.lit 0x00001bd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00001bd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00001bd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00001bd0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00001bd8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00001be8 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00001c00 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00001c00 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00001c20 0x28 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xc0 (size before relaxing) + .xt.lit 0x00001c48 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00001c78 0x60 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x158 (size before relaxing) + .xt.lit 0x00001cd8 0x48 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00001d20 0x60 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0xc8 (size before relaxing) + .xt.lit 0x00001d80 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0xb8 (size before relaxing) + .xt.lit 0x00001da8 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0xa0 (size before relaxing) + .xt.lit 0x00001dd0 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00001de0 0x8 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00001de8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x180 (size before relaxing) + .xt.lit 0x00001df8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x00001df8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xd8 (size before relaxing) + .xt.lit 0x00001e20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0xf0 (size before relaxing) + .xt.lit 0x00001e20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00001e20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00001e20 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00001e30 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00001e30 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00001e40 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00001e48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00001e48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00001e48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00001e48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00001e48 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00001e50 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xt.lit 0x00001e60 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00001e60 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00001e60 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00001e88 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00001e98 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00001ea8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00001ec0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00001ed8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00001ef0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00001f00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00001f00 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + 0x5d0 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00001f18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00001f18 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x190 (size before relaxing) + .xt.lit 0x00001f60 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00001f68 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00001f90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00001f90 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x00001f98 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x00001fc0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x280 (size before relaxing) + .xt.lit 0x00002000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00002040 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00002048 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00002050 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x110 (size before relaxing) + .xt.lit 0x00002070 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00002070 0x108 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x680 (size before relaxing) + .xt.lit 0x00002178 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xe0 (size before relaxing) + .xt.lit 0x000021c0 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .xt.lit 0x000021e8 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0x18 (size before relaxing) + .xt.lit 0x000021f0 0x90 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xd8 (size before relaxing) + .xt.lit 0x00002280 0x120 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x188 (size before relaxing) + .xt.lit 0x000023a0 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x38 (size before relaxing) + .xt.lit 0x000023a8 0x60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x88 (size before relaxing) + .xt.lit 0x00002408 0x130 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4f8 (size before relaxing) + .xt.lit 0x00002538 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x38 (size before relaxing) + .xt.lit 0x00002540 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0xd8 (size before relaxing) + .xt.lit 0x00002560 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x1f0 (size before relaxing) + .xt.lit 0x00002590 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x170 (size before relaxing) + .xt.lit 0x00002590 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + 0xf0 (size before relaxing) + .xt.lit 0x00002590 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xc8 (size before relaxing) + .xt.lit 0x000025c8 0x130 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x248 (size before relaxing) + .xt.lit 0x000026f8 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x30 (size before relaxing) + .xt.lit 0x00002710 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x70 (size before relaxing) + .xt.lit 0x00002718 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x20 (size before relaxing) + .xt.lit 0x00002730 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x18 (size before relaxing) + .xt.lit 0x00002740 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x78 (size before relaxing) + .xt.lit 0x00002750 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x28 (size before relaxing) + .xt.lit 0x00002750 0xb0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x160 (size before relaxing) + .xt.lit 0x00002800 0x98 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xf8 (size before relaxing) + .xt.lit 0x00002898 0xb0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x358 (size before relaxing) + .xt.lit 0x00002948 0xa0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x108 (size before relaxing) + .xt.lit 0x000029e8 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x98 (size before relaxing) + .xt.lit 0x00002a28 0x158 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x250 (size before relaxing) + .xt.lit 0x00002b80 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x38 (size before relaxing) + .xt.lit 0x00002b88 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x30 (size before relaxing) + .xt.lit 0x00002ba8 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x50 (size before relaxing) + .xt.lit 0x00002bc0 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x28 (size before relaxing) + .xt.lit 0x00002bd0 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .xt.lit 0x00002be0 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0x10 (size before relaxing) + .xt.lit 0x00002be8 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x8 (size before relaxing) + .xt.lit 0x00002be8 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x10 (size before relaxing) + .xt.lit 0x00002bf0 0x40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x60 (size before relaxing) + .xt.lit 0x00002c30 0x38 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2f8 (size before relaxing) + .xt.lit 0x00002c68 0xe0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1a0 (size before relaxing) + .xt.lit 0x00002d48 0x150 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3a0 (size before relaxing) + .xt.lit 0x00002e98 0x158 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2e8 (size before relaxing) + .xt.lit 0x00002ff0 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x48 (size before relaxing) + .xt.lit 0x00002ff8 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x70 (size before relaxing) + .xt.lit 0x00003020 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x30 (size before relaxing) + .xt.lit 0x00003028 0xd0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x1b8 (size before relaxing) + .xt.lit 0x000030f8 0xf8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x298 (size before relaxing) + .xt.lit 0x000031f0 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x30 (size before relaxing) + .xt.lit 0x00003208 0x28 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x48 (size before relaxing) + .xt.lit 0x00003230 0xf0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x180 (size before relaxing) + .xt.lit 0x00003320 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x28 (size before relaxing) + .xt.lit 0x00003338 0x48 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .xt.lit 0x00003380 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0x20 (size before relaxing) + .xt.lit 0x00003398 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0x28 (size before relaxing) + .xt.lit 0x000033a8 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x148 (size before relaxing) + .xt.lit 0x000033d0 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000033d0 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000033d0 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + 0x110 (size before relaxing) + .xt.lit 0x000033d0 0x38 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00003408 0x28 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00003430 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0xd8 (size before relaxing) + .xt.lit 0x00003438 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00003468 0x40 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000034a8 0x20 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000034c8 0x20 esp-idf/hal/libhal.a(aes_hal.c.obj) + .xt.lit 0x000034e8 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000034e8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.lit 0x000034f8 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00003528 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00003530 0x20 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00003550 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x258 (size before relaxing) + .xt.lit 0x00003568 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x118 (size before relaxing) + .xt.lit._ZN3nvs4Item6getKeyEPcj + 0x00003598 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x00003598 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00003598 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x00003598 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x00003598 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x00003598 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit 0x00003598 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xa0 (size before relaxing) + .xt.lit._ZN3nvs12NVSPartitionD5Ev + 0x000035a8 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.lit 0x000035b0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x30 (size before relaxing) + .xt.lit._ZN3nvs19NVSPartitionManagerD5Ev + 0x000035b0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.lit 0x000035b8 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x58 (size before relaxing) + .xt.lit._ZN3nvs7StorageC5EPNS_9PartitionE + 0x000035c8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x8 (size before relaxing) + .xt.lit 0x000035c8 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x18 (size before relaxing) + .xt.lit 0x000035d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x28 (size before relaxing) + .xt.lit._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x000035d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .xt.lit 0x000035d0 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xd8 (size before relaxing) + .xt.lit 0x000035f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x38 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x000035f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x000035f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x8 (size before relaxing) + .xt.lit 0x000035f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x10 (size before relaxing) + .xt.lit 0x000035f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x18 (size before relaxing) + .xt.lit._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x000035f0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.lit 0x000035f8 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + 0x20 (size before relaxing) + .xt.lit 0x00003608 0x18 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00003620 0x58 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x00003678 0x8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00003680 0x28 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x000036a8 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000036b8 0x8 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000036c0 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000036c0 0x8 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x000036c8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xa8 (size before relaxing) + .xt.lit 0x000036f0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00003700 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x90 (size before relaxing) + .xt.lit 0x00003740 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00003748 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00003758 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1b0 (size before relaxing) + .xt.lit 0x00003760 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00003788 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00003788 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1d0 (size before relaxing) + .xt.lit 0x00003808 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00003810 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00003820 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00003820 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00003840 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00003840 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x198 (size before relaxing) + .xt.lit 0x00003880 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00003888 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xb0 (size before relaxing) + .xt.lit 0x000038b8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xt.lit 0x000038c0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000038c8 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1f0 (size before relaxing) + .xt.lit 0x00003918 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00003928 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x58 (size before relaxing) + .xt.lit 0x00003928 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00003928 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x60 (size before relaxing) + .xt.lit 0x00003938 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + 0x158 (size before relaxing) + .xt.lit 0x00003940 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x00003940 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + 0xd0 (size before relaxing) + .xt.lit 0x00003940 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc8 (size before relaxing) + .xt.lit 0x00003948 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00003950 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00003958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + 0x118 (size before relaxing) + .xt.lit 0x00003958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00003958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00003958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + 0xc8 (size before relaxing) + .xt.lit 0x00003958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00003958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00003958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + 0xd8 (size before relaxing) + .xt.lit 0x00003958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + 0x120 (size before relaxing) + .xt.lit 0x00003958 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00003958 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00003968 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00003968 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00003968 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00003968 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + 0x50 (size before relaxing) + .xt.lit 0x00003968 0x28 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00003990 0x30 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x000039c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + 0x138 (size before relaxing) + .xt.lit 0x000039c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x328 (size before relaxing) + .xt.lit 0x000039c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + 0xe0 (size before relaxing) + .xt.lit 0x000039c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + 0xd8 (size before relaxing) + .xt.lit 0x000039c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000039c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000039c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x000039c0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0xd0 (size before relaxing) + .xt.lit 0x000039d0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000039d8 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xa0 (size before relaxing) + .xt.lit 0x00003a10 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00003a38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x00003a38 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00003a50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00003a50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00003a50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00003a50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x198 (size before relaxing) + .xt.lit 0x00003a50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xe0 (size before relaxing) + .xt.lit 0x00003a50 0x10 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x20 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x3d8 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x40 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0xc0 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x338 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + 0x30 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x58 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x90 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + 0x28 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x488 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x120 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x190 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0x40 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + 0x38 (size before relaxing) + .xt.lit 0x00003a60 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + 0x40 (size before relaxing) + .xt.lit 0x00003a60 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00003a60 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00003a60 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00003a60 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00003a60 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00003a60 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x00003a60 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00003a60 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00003a60 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x188 (size before relaxing) + .xt.lit 0x00003a70 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00003a70 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x00003a70 0x8 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.lit 0x00003a78 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00003a78 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + 0x98 (size before relaxing) + .xt.lit 0x00003a78 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00003a78 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00003a78 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x8 (size before relaxing) + .xt.lit 0x00003a78 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + 0x8 (size before relaxing) + .xt.lit 0x00003a78 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + 0x8 (size before relaxing) + .xt.lit 0x00003a78 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + 0x10 (size before relaxing) + .xt.lit 0x00003a80 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + 0x8 (size before relaxing) + .xt.lit 0x00003a80 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + 0x8 (size before relaxing) + .xt.lit 0x00003a80 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x20 (size before relaxing) + .xt.lit 0x00003a88 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x28 (size before relaxing) + .xt.lit 0x00003a98 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x40 (size before relaxing) + .xt.lit 0x00003aa0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + 0x8 (size before relaxing) + .xt.lit 0x00003aa0 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .xt.lit 0x00003aa8 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x30 (size before relaxing) + .xt.lit 0x00003ab0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x10 (size before relaxing) + .xt.lit 0x00003ab0 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x18 (size before relaxing) + .xt.lit 0x00003ab8 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x30 (size before relaxing) + .xt.lit 0x00003ac0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ac0 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x30 (size before relaxing) + .xt.lit 0x00003ad0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ad0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ad0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ad0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ad0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ad0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ad0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ad0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ad0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ad0 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0xd8 (size before relaxing) + .xt.lit 0x00003ad0 0x218 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + 0x450 (size before relaxing) + .xt.lit 0x00003ce8 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + 0x18 (size before relaxing) + .xt.lit 0x00003ce8 0x118 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + 0x1a8 (size before relaxing) + .xt.lit 0x00003e00 0x138 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + 0x248 (size before relaxing) + .xt.lit 0x00003f38 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + 0x90 (size before relaxing) + .xt.lit 0x00003f40 0x8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + 0xa8 (size before relaxing) + .xt.lit 0x00003f48 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + 0xc0 (size before relaxing) + .xt.lit 0x00003f48 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .xt.lit 0x00003f50 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f50 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .xt.lit 0x00003f58 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .xt.lit 0x00003f60 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .xt.lit 0x00003f68 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .xt.lit 0x00003f70 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .xt.lit 0x00003f78 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .xt.lit 0x00003f80 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .xt.lit 0x00003f88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f88 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f88 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .xt.lit 0x00003f90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f90 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f90 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .xt.lit 0x00003f98 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f98 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f98 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f98 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + 0x8 (size before relaxing) + .xt.lit 0x00003f98 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .xt.lit 0x00003fa0 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .xt.lit 0x00003fa8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fa8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fa8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fa8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fa8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fa8 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .xt.lit 0x00003fb0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb0 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fb8 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .xt.lit 0x00003fc0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fc0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fc0 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .xt.lit 0x00003fc8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fc8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fc8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fc8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fc8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fc8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fc8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fc8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fc8 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .xt.lit 0x00003fd0 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .xt.lit 0x00003fd8 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .xt.lit 0x00003fe0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fe0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fe0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fe0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fe0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fe0 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .xt.lit 0x00003fe8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + 0x8 (size before relaxing) + .xt.lit 0x00003fe8 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .xt.lit 0x00003ff0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ff0 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ff0 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .xt.lit 0x00003ff8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ff8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ff8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ff8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ff8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ff8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + 0x8 (size before relaxing) + .xt.lit 0x00003ff8 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .xt.lit 0x00004000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + 0x10 (size before relaxing) + +/DISCARD/ + *(.eh_frame_hdr) + *(.eh_frame) + 0x00000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x00000001 ASSERT (((_heap_low_start - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) +OUTPUT(ESPIDFNEW.elf elf32-xtensa-le) + +.xtensa.info 0x00000000 0x38 + .xtensa.info 0x00000000 0x38 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .xtensa.info 0x00000038 0x0 CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj + .xtensa.info 0x00000038 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(station_example_main.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(http_control.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(button.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(hal_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(adc_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(i2s_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .xtensa.info 0x00000038 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .xtensa.info 0x00000038 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + +.comment 0x00000000 0x11d + .comment 0x00000000 0x11d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + 0x30 (size before relaxing) + .comment 0x0000011d 0x30 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .comment 0x0000011d 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .comment 0x0000011d 0x30 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .comment 0x0000011d 0x30 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .comment 0x0000011d 0x30 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .comment 0x0000011d 0x30 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/log/liblog.a(log.c.obj) + .comment 0x0000011d 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(multi_heap.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(tlsf.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(memory_layout.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(dport_access.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(abort.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(assert.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(heap.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(locks.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(time.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .comment 0x0000011d 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .comment 0x0000011d 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) + .comment 0x0000011d 0x30 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .comment 0x0000011d 0x30 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .comment 0x0000011d 0x30 esp-idf/main/libmain.a(station_example_main.c.obj) + .comment 0x0000011d 0x30 esp-idf/main/libmain.a(http_control.c.obj) + .comment 0x0000011d 0x30 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .comment 0x0000011d 0x30 esp-idf/main/libmain.a(button.c.obj) + .comment 0x0000011d 0x30 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .comment 0x0000011d 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x0000011d 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000011d 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .comment 0x0000011d 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x0000011d 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .comment 0x0000011d 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x0000011d 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000011d 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .comment 0x0000011d 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .comment 0x0000011d 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(uart_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(hal_utils.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(interrupts.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(i2s_periph.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(timers.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(def.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(init.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(memp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(netif.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(raw.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(tcp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(udp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(igmp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip4.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip6.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(mld6.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(nd6.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(err.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .comment 0x0000011d 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .comment 0x0000011d 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(sha_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(aes_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .comment 0x0000011d 0x30 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .comment 0x0000011d 0x41 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .comment 0x0000011d 0x30 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .comment 0x0000011d 0x3b C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + .comment 0x0000011d 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + +.debug_frame 0x00000000 0x20fd8 + .debug_frame 0x00000000 0x58 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_frame 0x00000058 0x3e8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_frame 0x00000440 0x160 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_frame 0x000005a0 0xe8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_frame 0x00000688 0x100 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_frame 0x00000788 0xd0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_frame 0x00000858 0x1f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_frame 0x00000a48 0xa0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_frame 0x00000ae8 0xa0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_frame 0x00000b88 0xe8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_frame 0x00000c70 0x40 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_frame 0x00000cb0 0x70 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_frame 0x00000d20 0x40 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_frame 0x00000d60 0x58 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_frame 0x00000db8 0x130 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_frame 0x00000ee8 0x58 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_frame 0x00000f40 0xe8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_frame 0x00001028 0xd0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_frame 0x000010f8 0x58 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_frame 0x00001150 0xe8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_frame 0x00001238 0x88 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_frame 0x000012c0 0x40 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_frame 0x00001300 0x100 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_frame 0x00001400 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_frame 0x00001428 0x88 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x000014b0 0xd0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00001580 0x118 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_frame 0x00001698 0x88 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_frame 0x00001720 0x28 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_frame 0x00001748 0x148 esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x00001890 0xa0 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_frame 0x00001930 0x328 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x00001c58 0xa0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x00001cf8 0x238 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x00001f30 0x268 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_frame 0x00002198 0x88 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_frame 0x00002220 0x40 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_frame 0x00002260 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_frame 0x00002360 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_frame 0x00002460 0x280 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_frame 0x000026e0 0x220 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_frame 0x00002900 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_frame 0x000029d0 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_frame 0x00002a58 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_frame 0x00002b40 0x358 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x00002e98 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x00002ef0 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x00002fd8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_frame 0x00003000 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_frame 0x00003118 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_frame 0x000031e8 0x70 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_frame 0x00003258 0x3e8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x00003640 0x940 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x00003f80 0x1c0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x00004140 0x40 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_frame 0x00004180 0xb8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_frame 0x00004238 0x40 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_frame 0x00004278 0x40 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_frame 0x000042b8 0x88 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x00004340 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_frame 0x00004368 0x70 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_frame 0x000043d8 0x1a8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_frame 0x00004580 0x250 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_frame 0x000047d0 0x70 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_frame 0x00004840 0x40 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_frame 0x00004880 0x70 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_frame 0x000048f0 0xe8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_frame 0x000049d8 0x148 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_frame 0x00004b20 0xb8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_frame 0x00004bd8 0xb8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x00004c90 0x298 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_frame 0x00004f28 0x58 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_frame 0x00004f80 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_frame 0x00004ff0 0x118 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_frame 0x00005108 0xb8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_frame 0x000051c0 0x550 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_frame 0x00005710 0x190 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_frame 0x000058a0 0x2f8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_frame 0x00005b98 0x40 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_frame 0x00005bd8 0x100 esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_frame 0x00005cd8 0xb8 esp-idf/main/libmain.a(http_control.c.obj) + .debug_frame 0x00005d90 0xd0 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .debug_frame 0x00005e60 0x70 esp-idf/main/libmain.a(button.c.obj) + .debug_frame 0x00005ed0 0x70 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_frame 0x00005f40 0x178 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x000060b8 0x268 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00006320 0x160 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00006480 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00006550 0x220 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_frame 0x00006770 0x58 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_frame 0x000067c8 0x670 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_frame 0x00006e38 0x310 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_frame 0x00007148 0x4f0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .debug_frame 0x00007638 0x6b8 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_frame 0x00007cf0 0x88 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .debug_frame 0x00007d78 0x280 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_frame 0x00007ff8 0x88 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .debug_frame 0x00008080 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x000080a8 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x00008280 0x130 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_frame 0x000083b0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_frame 0x000083f0 0xa0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x00008490 0x58 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_frame 0x000084e8 0x130 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x00008618 0x130 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x00008748 0xa0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x000087e8 0x2f8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x00008ae0 0xb8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x00008b98 0x208 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x00008da0 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x00008e28 0x2f8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x00009120 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x00009190 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x000091e8 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x00009288 0xe8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x00009370 0x130 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x000094a0 0x58 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_frame 0x000094f8 0xd0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_frame 0x000095c8 0x88 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_frame 0x00009650 0x268 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_frame 0x000098b8 0xb8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_frame 0x00009970 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_frame 0x000099b0 0x160 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x00009b10 0xa0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_frame 0x00009bb0 0xa0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_frame 0x00009c50 0x1a8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x00009df8 0xe8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x00009ee0 0x280 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_frame 0x0000a160 0x40 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_frame 0x0000a1a0 0x1a8 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .debug_frame 0x0000a348 0x58 esp-idf/hal/libhal.a(hal_utils.c.obj) + .debug_frame 0x0000a3a0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_frame 0x0000a3f8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_frame 0x0000a420 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_frame 0x0000a4c0 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_frame 0x0000a500 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_frame 0x0000a528 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_frame 0x0000a5c8 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_frame 0x0000a680 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .debug_frame 0x0000a738 0x190 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_frame 0x0000a8c8 0x2e0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_frame 0x0000aba8 0x40 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x0000abe8 0xd0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_frame 0x0000acb8 0x238 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_frame 0x0000aef0 0x6b8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_frame 0x0000b5a8 0x1a8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_frame 0x0000b750 0xa0 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_frame 0x0000b7f0 0x28 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_frame 0x0000b818 0x70 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_frame 0x0000b888 0x88 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_frame 0x0000b910 0xd0 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_frame 0x0000b9e0 0x3b8 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_frame 0x0000bd98 0x3a0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_frame 0x0000c138 0x160 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_frame 0x0000c298 0x538 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_frame 0x0000c7d0 0x118 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_frame 0x0000c8e8 0x250 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_frame 0x0000cb38 0x118 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_frame 0x0000cc50 0x1a8 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_frame 0x0000cdf8 0x3b8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_frame 0x0000d1b0 0x1a8 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_frame 0x0000d358 0x58 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_frame 0x0000d3b0 0x1d8 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_frame 0x0000d588 0x100 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_frame 0x0000d688 0xa0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_frame 0x0000d728 0x28 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_frame 0x0000d750 0xe8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_frame 0x0000d838 0xd0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_frame 0x0000d908 0x58 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_frame 0x0000d960 0x28 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_frame 0x0000d988 0x160 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_frame 0x0000dae8 0x2f8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_frame 0x0000dde0 0x40 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_frame 0x0000de20 0x40 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_frame 0x0000de60 0x70 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_frame 0x0000ded0 0x40 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_frame 0x0000df10 0x2c8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_frame 0x0000e1d8 0xb8 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_frame 0x0000e290 0x328 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_frame 0x0000e5b8 0x388 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_frame 0x0000e940 0x28 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_frame 0x0000e968 0xe8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_frame 0x0000ea50 0x238 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_frame 0x0000ec88 0x118 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_frame 0x0000eda0 0xb8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_frame 0x0000ee58 0xbf8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_frame 0x0000fa50 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_frame 0x0000faf0 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_frame 0x0000fb30 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_frame 0x0000fb58 0x3b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_frame 0x0000ff10 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_frame 0x0000ff38 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_frame 0x0000ff60 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_frame 0x0000ff88 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_frame 0x00010010 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_frame 0x000100e0 0x280 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_frame 0x00010360 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_frame 0x00010430 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_frame 0x00010518 0x118 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_frame 0x00010630 0x250 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_frame 0x00010880 0x118 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_frame 0x00010998 0x670 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_frame 0x00011008 0x190 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_frame 0x00011198 0x280 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_frame 0x00011418 0x268 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_frame 0x00011680 0x280 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_frame 0x00011900 0xd0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_frame 0x000119d0 0x70 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_frame 0x00011a40 0x4f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_frame 0x00011f30 0x340 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_frame 0x00012270 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_frame 0x00012568 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_frame 0x00012848 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_frame 0x000128e8 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_frame 0x00012a30 0x220 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_frame 0x00012c50 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_frame 0x00012c90 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_frame 0x00012d18 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_frame 0x00012d58 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_frame 0x00012d98 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_frame 0x00012e08 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_frame 0x00012e78 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_frame 0x00012f90 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_frame 0x00012fd0 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_frame 0x00013088 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_frame 0x000130f8 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_frame 0x00013258 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_frame 0x00013388 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_frame 0x000134a0 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_frame 0x000135a0 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x000136a0 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_frame 0x000137a0 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_frame 0x00013930 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_frame 0x000139e8 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_frame 0x00013b48 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_frame 0x00013d08 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_frame 0x00013f10 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_frame 0x000140e8 0x520 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_frame 0x00014608 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_frame 0x00014690 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x00014778 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_frame 0x00014968 0x268 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_frame 0x00014bd0 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_frame 0x00014d78 0x7f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_frame 0x00015568 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_frame 0x000156f8 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_frame 0x00015870 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_frame 0x00015a00 0x358 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_frame 0x00015d58 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_frame 0x00015d80 0x448 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x000161c8 0x298 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_frame 0x00016460 0x118 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_frame 0x00016578 0x148 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_frame 0x000166c0 0x2c8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x00016988 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_frame 0x000169b0 0xb8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_frame 0x00016a68 0x1a8 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_frame 0x00016c10 0x88 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_frame 0x00016c98 0x70 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_frame 0x00016d08 0x28 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_frame 0x00016d30 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_frame 0x00016d70 0x148 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_frame 0x00016eb8 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_frame 0x00016ef8 0xd0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_frame 0x00016fc8 0x958 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_frame 0x00017920 0x4a8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_frame 0x00017dc8 0x220 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_frame 0x00017fe8 0x130 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_frame 0x00018118 0x208 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_frame 0x00018320 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_frame 0x00018390 0xe8 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_frame 0x00018478 0x328 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_frame 0x000187a0 0x148 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_frame 0x000188e8 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_frame 0x00018940 0xa0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_frame 0x000189e0 0x148 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_frame 0x00018b28 0x220 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_frame 0x00018d48 0xe8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_frame 0x00018e30 0x2b0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_frame 0x000190e0 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_frame 0x000191c8 0xb8 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_frame 0x00019280 0x40 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_frame 0x000192c0 0x220 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_frame 0x000194e0 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_frame 0x000195f8 0x1c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_frame 0x000197b8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_frame 0x00019810 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_frame 0x000198b0 0x5b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_frame 0x00019e60 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_frame 0x00019fa8 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_frame 0x0001a0f0 0x670 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_frame 0x0001a760 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_frame 0x0001a848 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_frame 0x0001a990 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_frame 0x0001aaa8 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_frame 0x0001ac08 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_frame 0x0001ac78 0x5b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_frame 0x0001b228 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_frame 0x0001b2f8 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_frame 0x0001b590 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_frame 0x0001b5b8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_frame 0x0001b610 0x628 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_frame 0x0001bc38 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_frame 0x0001bcf0 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_frame 0x0001be20 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_frame 0x0001bfc8 0x430 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_frame 0x0001c3f8 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_frame 0x0001c528 0x268 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_frame 0x0001c790 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_frame 0x0001c848 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_frame 0x0001c978 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_frame 0x0001caf0 0x208 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_frame 0x0001ccf8 0x190 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_frame 0x0001ce88 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_frame 0x0001d168 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_frame 0x0001d1d8 0x298 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_frame 0x0001d470 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_frame 0x0001d630 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_frame 0x0001d700 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_frame 0x0001d788 0x550 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_frame 0x0001dcd8 0x28 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_frame 0x0001dd00 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_frame 0x0001dd28 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .debug_frame 0x0001dd50 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_frame 0x0001dd90 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_frame 0x0001ddb8 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_frame 0x0001dde0 0x88 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_frame 0x0001de68 0x88 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_frame 0x0001def0 0xd0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_frame 0x0001dfc0 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_frame 0x0001dfe8 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_frame 0x0001e010 0xa0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_frame 0x0001e0b0 0x88 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_frame 0x0001e138 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_frame 0x0001e190 0xd0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_frame 0x0001e260 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_frame 0x0001e288 0x130 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_frame 0x0001e3b8 0x298 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_frame 0x0001e650 0xda8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .debug_frame 0x0001f3f8 0x58 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .debug_frame 0x0001f450 0x550 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .debug_frame 0x0001f9a0 0x718 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .debug_frame 0x000200b8 0x1c0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .debug_frame 0x00020278 0x208 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .debug_frame 0x00020480 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .debug_frame 0x000204a8 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .debug_frame 0x000204d0 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .debug_frame 0x000204f8 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .debug_frame 0x00020520 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .debug_frame 0x00020548 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .debug_frame 0x00020570 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .debug_frame 0x00020598 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .debug_frame 0x000205c0 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .debug_frame 0x000205e8 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .debug_frame 0x00020610 0x130 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_frame 0x00020740 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_frame 0x00020780 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_frame 0x000207c0 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_frame 0x000207e8 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_frame 0x00020810 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .debug_frame 0x00020850 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .debug_frame 0x00020890 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .debug_frame 0x000208d0 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_frame 0x00020910 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_frame 0x00020950 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_frame 0x00020990 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_frame 0x000209d0 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_frame 0x000209f8 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_frame 0x00020a38 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .debug_frame 0x00020a60 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + .debug_frame 0x00020a88 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_frame 0x00020ab0 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_frame 0x00020af0 0x70 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_frame 0x00020b60 0x88 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_frame 0x00020be8 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .debug_frame 0x00020c10 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_frame 0x00020c50 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .debug_frame 0x00020ca8 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_frame 0x00020d00 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_frame 0x00020d28 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_frame 0x00020d68 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_frame 0x00020da8 0x1d8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_frame 0x00020f80 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_info 0x00000000 0x2acd19 + .debug_info 0x00000000 0x360 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_info 0x00000360 0x23dc esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x0000273c 0x120c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_info 0x00003948 0xb52 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x0000449a 0xaa1 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_info 0x00004f3b 0x5ec esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_info 0x00005527 0xe82 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_info 0x000063a9 0x480e esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_info 0x0000abb7 0x337 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_info 0x0000aeee 0xeb6 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_info 0x0000bda4 0x31b esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_info 0x0000c0bf 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_info 0x0000c0e2 0x24 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_info 0x0000c106 0x3e83 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_info 0x0000ff89 0x3f4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_info 0x0001037d 0x3857 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_info 0x00013bd4 0x51e0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_info 0x00018db4 0x351 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_info 0x00019105 0x3d66 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_info 0x0001ce6b 0x3af7 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_info 0x00020962 0x257f esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_info 0x00022ee1 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_info 0x00022f04 0xa53 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_info 0x00023957 0x8b3 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_info 0x0002420a 0x23 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_info 0x0002422d 0x35e6 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_info 0x00027813 0xa5c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_info 0x0002826f 0x1486 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_info 0x000296f5 0x22b1 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x0002b9a6 0x26f1 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x0002e097 0x43a4 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_info 0x0003243b 0x1aca esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_info 0x00033f05 0x20db esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_info 0x00035fe0 0xaaa esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x00036a8a 0x8fd esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_info 0x00037387 0x2018 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x0003939f 0xfad esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x0003a34c 0x164e esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x0003b99a 0x6f44 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_info 0x000428de 0x864 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_info 0x00043142 0x52c esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_info 0x0004366e 0x102 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_info 0x00043770 0xa50 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_info 0x000441c0 0xaa6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_info 0x00044c66 0x31bc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_info 0x00047e22 0x13fb esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_info 0x0004921d 0x27a7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_info 0x0004b9c4 0x197d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_info 0x0004d341 0x3c6 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_info 0x0004d707 0x5342 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x00052a49 0x24ee esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x00054f37 0x2100 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x00057037 0x22e7 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_info 0x0005931e 0x1938 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_info 0x0005ac56 0xc3b esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_info 0x0005b891 0x803 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_info 0x0005c094 0x35e5 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x0005f679 0x8b48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x000681c1 0x24ed esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x0006a6ae 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x0006a6d2 0xe0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_info 0x0006a7b2 0x381 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_info 0x0006ab33 0xd27 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_info 0x0006b85a 0x1fb esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_info 0x0006ba55 0x2fb esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x0006bd50 0x2f9 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_info 0x0006c049 0x4ef esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_info 0x0006c538 0xed6 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_info 0x0006d40e 0x128b esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_info 0x0006e699 0x203 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_info 0x0006e89c 0xa3f esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_info 0x0006f2db 0x166c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_info 0x00070947 0xed4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_info 0x0007181b 0x1388 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_info 0x00072ba3 0x7e9 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_info 0x0007338c 0x16c3 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x00074a4f 0x2245 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_info 0x00076c94 0x27c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_info 0x00076f10 0x402 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_info 0x00077312 0x20f4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_info 0x00079406 0x3e0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_info 0x000797e6 0x588e esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_info 0x0007f074 0x1b79 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_info 0x00080bed 0x48e0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_info 0x000854cd 0x1fc esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_info 0x000856c9 0x486c esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_info 0x00089f35 0xfdf esp-idf/main/libmain.a(http_control.c.obj) + .debug_info 0x0008af14 0x1139 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .debug_info 0x0008c04d 0xd98 esp-idf/main/libmain.a(button.c.obj) + .debug_info 0x0008cde5 0x24 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_info 0x0008ce09 0x3b esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_info 0x0008ce44 0x584 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_info 0x0008d3c8 0x22 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_info 0x0008d3ea 0x1095 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x0008e47f 0x192b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0008fdaa 0x2e85 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x00092c2f 0x15e8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x00094217 0xe75 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0009508c 0x36b1 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_info 0x0009873d 0x1c1 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_info 0x000988fe 0x1af esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_info 0x00098aad 0x68ad esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_info 0x0009f35a 0x2f90 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_info 0x000a22ea 0xa75f esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .debug_info 0x000aca49 0xa319 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_info 0x000b6d62 0x25dd esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .debug_info 0x000b933f 0x674e esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_info 0x000bfa8d 0x26a1 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .debug_info 0x000c212e 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x000c21cd 0x407c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x000c6249 0x12cd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_info 0x000c7516 0x217b esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_info 0x000c9691 0xbc3 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x000ca254 0x16d esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_info 0x000ca3c1 0xe54 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x000cb215 0x15b2 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x000cc7c7 0x3e4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x000ccbab 0x54f7 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x000d20a2 0x4b55 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x000d6bf7 0x12f2 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x000d7ee9 0xad7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x000d89c0 0xc61 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x000d9621 0x27fd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x000dbe1e 0x102e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x000dce4c 0x1123 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x000ddf6f 0x1121 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x000df090 0x14e6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x000e0576 0x39e9 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x000e3f5f 0x376 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_info 0x000e42d5 0x937 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_info 0x000e4c0c 0xd93 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_info 0x000e599f 0x28aa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_info 0x000e8249 0x3ca9 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_info 0x000ebef2 0x23 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_info 0x000ebf15 0x162 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_info 0x000ec077 0x1731 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x000ed7a8 0xa52 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_info 0x000ee1fa 0x33dd esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_info 0x000f15d7 0x407c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_info 0x000f5653 0x429 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x000f5a7c 0x2a70 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_info 0x000f84ec 0xca4 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_info 0x000f9190 0x32d1 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .debug_info 0x000fc461 0x543 esp-idf/hal/libhal.a(hal_utils.c.obj) + .debug_info 0x000fc9a4 0x251 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_info 0x000fcbf5 0x2c3 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x000fceb8 0x479 esp-idf/soc/libsoc.a(i2s_periph.c.obj) + .debug_info 0x000fd331 0x364 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_info 0x000fd695 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_info 0x000fd7d5 0x17b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_info 0x000fd950 0x9b7 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_info 0x000fe307 0x112 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_info 0x000fe419 0x807 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_info 0x000fec20 0x676 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_info 0x000ff296 0x989 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_info 0x000ffc1f 0x1316 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .debug_info 0x00100f35 0x169f esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_info 0x001025d4 0x2b50 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_info 0x00105124 0x571 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x00105695 0x866 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_info 0x00105efb 0x305b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_info 0x00108f56 0x7d5f esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_info 0x00110cb5 0x17c9 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_info 0x0011247e 0x43a esp-idf/lwip/liblwip.a(def.c.obj) + .debug_info 0x001128b8 0x16f esp-idf/lwip/liblwip.a(init.c.obj) + .debug_info 0x00112a27 0xd03 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_info 0x0011372a 0x383 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_info 0x00113aad 0x954 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_info 0x00114401 0x2cff esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_info 0x00117100 0x2a32 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_info 0x00119b32 0x17aa esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_info 0x0011b2dc 0x39af esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_info 0x0011ec8b 0x2e3e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_info 0x00121ac9 0x3468 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_info 0x00124f31 0x1290 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_info 0x001261c1 0x1d04 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_info 0x00127ec5 0x3b58 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_info 0x0012ba1d 0x2059 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_info 0x0012da76 0xfdc esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_info 0x0012ea52 0x168a esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_info 0x001300dc 0x191b esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_info 0x001319f7 0xc35 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_info 0x0013262c 0xaf6 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_info 0x00133122 0x1434 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_info 0x00134556 0x19dc esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_info 0x00135f32 0x77a esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_info 0x001366ac 0xb60 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_info 0x0013720c 0x16b3 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_info 0x001388bf 0x32f5 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_info 0x0013bbb4 0xd76 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_info 0x0013c92a 0x876 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_info 0x0013d1a0 0xb09 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_info 0x0013dca9 0xeeb esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_info 0x0013eb94 0x1766 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_info 0x001402fa 0x16c4 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_info 0x001419be 0x2b88 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_info 0x00144546 0x47c5 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_info 0x00148d0b 0x2af esp-idf/lwip/liblwip.a(err.c.obj) + .debug_info 0x00148fba 0x801 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_info 0x001497bb 0x2082 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_info 0x0014b83d 0xadd esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_info 0x0014c31a 0x4f4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_info 0x0014c80e 0x710d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_info 0x0015391b 0x1003 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_info 0x0015491e 0x533 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_info 0x00154e51 0x36b esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_info 0x001551bc 0x292f esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_info 0x00157aeb 0x22c esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_info 0x00157d17 0x361 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_info 0x00158078 0x34b esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_info 0x001583c3 0x36e esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_info 0x00158731 0x100c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_info 0x0015973d 0x12ca esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_info 0x0015aa07 0xf8a esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_info 0x0015b991 0xcae esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_info 0x0015c63f 0x1fc8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_info 0x0015e607 0x1fd6 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_info 0x001605dd 0xb56 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_info 0x00161133 0x2dde esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_info 0x00163f11 0x2e41 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_info 0x00166d52 0x2d7a esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_info 0x00169acc 0x1e54 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_info 0x0016b920 0x25d5 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_info 0x0016def5 0x15d4 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_info 0x0016f4c9 0x8ac esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_info 0x0016fd75 0x5221 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_info 0x00174f96 0x2a6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_info 0x00177a00 0x3827 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_info 0x0017b227 0x2185 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_info 0x0017d3ac 0xa9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_info 0x0017de48 0x200b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_info 0x0017fe53 0x2371 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_info 0x001821c4 0x4d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_info 0x0018269c 0x245 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_info 0x001828e1 0x198 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_info 0x00182a79 0x62b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_info 0x001830a4 0x7b3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_info 0x00183857 0x7b3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_info 0x0018400a 0x12da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_info 0x001852e4 0x15b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_info 0x0018543f 0x7c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_info 0x00185c07 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_info 0x00185e87 0x1552 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_info 0x001873d9 0x1566 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_info 0x0018893f 0xa0f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_info 0x0018934e 0x86c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_info 0x00189bba 0x886 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x0018a440 0xa35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_info 0x0018ae75 0x16d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_info 0x0018c54e 0x3e1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_info 0x0018c92f 0x1ec6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_info 0x0018e7f5 0xd8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_info 0x0018f583 0x1065 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_info 0x001905e8 0x1c54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_info 0x0019223c 0x72a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_info 0x001994df 0x10ff esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_info 0x0019a5de 0xd1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x0019b2fd 0x2344 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_info 0x0019d641 0x16f7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_info 0x0019ed38 0x2131 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_info 0x001a0e69 0x69a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_info 0x001a780e 0x74e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_info 0x001aecf2 0x1c3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_info 0x001b0930 0x1ddd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_info 0x001b270d 0x1a7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_info 0x001b4187 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_info 0x001b42a1 0x3bf3 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x001b7e94 0x22c9 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_info 0x001ba15d 0x1401 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_info 0x001bb55e 0x1cee esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_info 0x001bd24c 0x2eec esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x001c0138 0x245 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_info 0x001c037d 0xc7f esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_info 0x001c0ffc 0x8c6 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_info 0x001c18c2 0x693 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_info 0x001c1f55 0x4c2 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_info 0x001c2417 0x152 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_info 0x001c2569 0x294 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_info 0x001c27fd 0x336 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_info 0x001c2b33 0xe57 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_info 0x001c398a 0x109 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_info 0x001c3a93 0x7e9 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_info 0x001c427c 0xcc56 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_info 0x001d0ed2 0xd797 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_info 0x001de669 0x7448 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_info 0x001e5ab1 0x1682 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_info 0x001e7133 0x9485 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_info 0x001f05b8 0x9cf esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_info 0x001f0f87 0x3f0b esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_info 0x001f4e92 0x7ba7 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_info 0x001fca39 0x7735 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_info 0x0020416e 0x2cba esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_info 0x00206e28 0x3875 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_info 0x0020a69d 0x787 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_info 0x0020ae24 0x18dd esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_info 0x0020c701 0x726 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_info 0x0020ce27 0x2aee esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_info 0x0020f915 0xeb9 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_info 0x002107ce 0x31e esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_info 0x00210aec 0xa64 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_info 0x00211550 0xb80 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_info 0x002120d0 0x40c esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_info 0x002124dc 0x4b2b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_info 0x00217007 0x17f9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_info 0x00218800 0x44b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_info 0x0021ccb8 0xe27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_info 0x0021dadf 0x31a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_info 0x00220c85 0x46c2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_info 0x00225347 0x1f55 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_info 0x0022729c 0x1111 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_info 0x002283ad 0x70ae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_info 0x0022f45b 0x1ca7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_info 0x00231102 0x103f esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_info 0x00232141 0x24e4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_info 0x00234625 0x27bc esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_info 0x00236de1 0x9ff esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_info 0x002377e0 0x78a2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_info 0x0023f082 0xe12 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_info 0x0023fe94 0x1b49 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_info 0x002419dd 0x3f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_info 0x00241dcd 0x894 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_info 0x00242661 0x6f58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_info 0x002495b9 0x174e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_info 0x0024ad07 0xc46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_info 0x0024b94d 0x1e9e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_info 0x0024d7eb 0x42ef esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_info 0x00251ada 0x104a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_info 0x00252b24 0x11bd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_info 0x00253ce1 0xc52 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_info 0x00254933 0xe6c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_info 0x0025579f 0x17d1 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_info 0x00256f70 0xf02 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_info 0x00257e72 0x1f22 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_info 0x00259d94 0x2c92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_info 0x0025ca26 0x8cb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_info 0x0025d2f1 0x1937 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_info 0x0025ec28 0x3e3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_info 0x00262a64 0x142b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_info 0x00263e8f 0xe8d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_info 0x00264d1c 0x6729 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_info 0x0026b445 0x86f esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_info 0x0026bcb4 0x5d C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_info 0x0026bd11 0x78 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_info 0x0026bd89 0x55 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_info 0x0026bdde 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_info 0x0026be58 0x7a C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_info 0x0026bed2 0x84 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_info 0x0026bf56 0x9d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .debug_info 0x0026bff3 0x142 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_info 0x0026c135 0x122 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_info 0x0026c257 0x5ab C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_info 0x0026c802 0xe0f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_info 0x0026d611 0x1037 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_info 0x0026e648 0xaf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_info 0x0026f13b 0xa8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_info 0x0026f1e3 0x8ae C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_info 0x0026fa91 0x8b7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_info 0x00270348 0xa2f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_info 0x00270d77 0x590 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_info 0x00271307 0x27d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_info 0x00271584 0xa69 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_info 0x00271fed 0x9d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_info 0x0027208a 0x97e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_info 0x00272a08 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_info 0x00272a2c 0x1a90 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_info 0x002744bc 0xb365 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .debug_info 0x0027f821 0x230 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .debug_info 0x0027fa51 0x5682 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .debug_info 0x002850d3 0x65d3 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .debug_info 0x0028b6a6 0x1459 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .debug_info 0x0028caff 0x181c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .debug_info 0x0028e31b 0x231 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .debug_info 0x0028e54c 0x1f2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .debug_info 0x0028e73e 0x33b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .debug_info 0x0028ea79 0x304 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .debug_info 0x0028ed7d 0x620 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .debug_info 0x0028f39d 0x642 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .debug_info 0x0028f9df 0x142 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .debug_info 0x0028fb21 0x5a9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .debug_info 0x002900ca 0x21a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .debug_info 0x002902e4 0x260 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .debug_info 0x00290544 0x10ec C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_info 0x00291630 0xb87 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_info 0x002921b7 0x98f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_info 0x00292b46 0xc60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_info 0x002937a6 0x8be C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_info 0x00294064 0x97a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .debug_info 0x002949de 0xab6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .debug_info 0x00295494 0xa83 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .debug_info 0x00295f17 0x9e1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_info 0x002968f8 0x9b2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_info 0x002972aa 0x952 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_info 0x00297bfc 0x9ab C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_info 0x002985a7 0x8ef C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_info 0x00298e96 0xeff C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_info 0x00299d95 0x981 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .debug_info 0x0029a716 0x840 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_info 0x0029af56 0x834 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + .debug_info 0x0029b78a 0x8e5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_info 0x0029c06f 0x2a39 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_info 0x0029eaa8 0x2d59 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_info 0x002a1801 0x2252 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_info 0x002a3a53 0x882 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .debug_info 0x002a42d5 0xbbe C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_info 0x002a4e93 0xcb4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .debug_info 0x002a5b47 0xbef C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_info 0x002a6736 0x1de C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_info 0x002a6914 0x196b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_info 0x002a827f 0xbe3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_info 0x002a8e62 0x1eba C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_info 0x002aad1c 0x1ffd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_abbrev 0x00000000 0x4fc58 + .debug_abbrev 0x00000000 0x1b8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_abbrev 0x000001b8 0x508 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x000006c0 0x32d esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_abbrev 0x000009ed 0x302 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x00000cef 0x26e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_abbrev 0x00000f5d 0x1cb esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_abbrev 0x00001128 0x2f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_abbrev 0x00001418 0x561 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_abbrev 0x00001979 0x1e2 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_abbrev 0x00001b5b 0x31c esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_abbrev 0x00001e77 0x10c esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_abbrev 0x00001f83 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_abbrev 0x00001f97 0x14 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_abbrev 0x00001fab 0x447 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_abbrev 0x000023f2 0x196 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_abbrev 0x00002588 0x37d esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_abbrev 0x00002905 0x565 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_abbrev 0x00002e6a 0x158 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_abbrev 0x00002fc2 0x441 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_abbrev 0x00003403 0x414 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_abbrev 0x00003817 0x38d esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_abbrev 0x00003ba4 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_abbrev 0x00003bb8 0x2a0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_abbrev 0x00003e58 0x25f esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_abbrev 0x000040b7 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_abbrev 0x000040cb 0x3be esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_abbrev 0x00004489 0x296 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_abbrev 0x0000471f 0x213 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_abbrev 0x00004932 0x223 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00004b55 0x331 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00004e86 0x3cf esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x00005255 0x31d esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_abbrev 0x00005572 0x207 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_abbrev 0x00005779 0x3f4 esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x00005b6d 0x2d5 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_abbrev 0x00005e42 0x47d esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x000062bf 0x3b1 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x00006670 0x3eb esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x00006a5b 0x48d esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_abbrev 0x00006ee8 0x2cd esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_abbrev 0x000071b5 0xed esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_abbrev 0x000072a2 0xa5 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_abbrev 0x00007347 0x296 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_abbrev 0x000075dd 0x2ed esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_abbrev 0x000078ca 0x628 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_abbrev 0x00007ef2 0x2c1 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_abbrev 0x000081b3 0x36f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_abbrev 0x00008522 0x3da esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_abbrev 0x000088fc 0x18e esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_abbrev 0x00008a8a 0x628 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x000090b2 0x27e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x00009330 0x3f2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x00009722 0x25d esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_abbrev 0x0000997f 0x33d esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_abbrev 0x00009cbc 0x275 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x00009f31 0x324 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_abbrev 0x0000a255 0x410 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x0000a665 0x5dd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x0000ac42 0x65d esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x0000b29f 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x0000b2b3 0xa4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_abbrev 0x0000b357 0x17b esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_abbrev 0x0000b4d2 0x214 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_abbrev 0x0000b6e6 0x17a esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_abbrev 0x0000b860 0x106 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x0000b966 0x1ab esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_abbrev 0x0000bb11 0x230 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_abbrev 0x0000bd41 0x2b3 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_abbrev 0x0000bff4 0x3f7 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_abbrev 0x0000c3eb 0x138 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_abbrev 0x0000c523 0x26f esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_abbrev 0x0000c792 0x2f3 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_abbrev 0x0000ca85 0x31f esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_abbrev 0x0000cda4 0x38d esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_abbrev 0x0000d131 0x1e2 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_abbrev 0x0000d313 0x51d esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x0000d830 0x53c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_abbrev 0x0000dd6c 0x189 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_abbrev 0x0000def5 0x178 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_abbrev 0x0000e06d 0x4fc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_abbrev 0x0000e569 0x127 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_abbrev 0x0000e690 0x589 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_abbrev 0x0000ec19 0x2ef esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_abbrev 0x0000ef08 0x642 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_abbrev 0x0000f54a 0x13c esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_abbrev 0x0000f686 0x55a esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_abbrev 0x0000fbe0 0x311 esp-idf/main/libmain.a(http_control.c.obj) + .debug_abbrev 0x0000fef1 0x2f3 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .debug_abbrev 0x000101e4 0x2a6 esp-idf/main/libmain.a(button.c.obj) + .debug_abbrev 0x0001048a 0x14 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_abbrev 0x0001049e 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_abbrev 0x000104c6 0x25a esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_abbrev 0x00010720 0x12 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_abbrev 0x00010732 0x2c9 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x000109fb 0x3a1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00010d9c 0x3af esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x0001114b 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00011251 0x2bd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x0001150e 0x56d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_abbrev 0x00011a7b 0xbd esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_abbrev 0x00011b38 0x14d esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_abbrev 0x00011c85 0x658 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_abbrev 0x000122dd 0x40a esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_abbrev 0x000126e7 0x5c0 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .debug_abbrev 0x00012ca7 0x69a esp-idf/driver/libdriver.a(uart.c.obj) + .debug_abbrev 0x00013341 0x3e5 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .debug_abbrev 0x00013726 0x5ed esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_abbrev 0x00013d13 0x3ff esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .debug_abbrev 0x00014112 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x00014174 0x557 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x000146cb 0x39c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_abbrev 0x00014a67 0x1bd esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_abbrev 0x00014c24 0x207 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x00014e2b 0xe0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_abbrev 0x00014f0b 0x36a esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x00015275 0x41e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x00015693 0x269 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x000158fc 0x593 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x00015e8f 0x551 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x000163e0 0x3f5 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x000167d5 0x281 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x00016a56 0x142 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x00016b98 0x4ab esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x00017043 0x254 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x00017297 0x20e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x000174a5 0x273 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x00017718 0x2a3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x000179bb 0x45b esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x00017e16 0x183 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_abbrev 0x00017f99 0x29b esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_abbrev 0x00018234 0x37e esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_abbrev 0x000185b2 0x4a7 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_abbrev 0x00018a59 0x3b8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_abbrev 0x00018e11 0x14 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_abbrev 0x00018e25 0xcc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_abbrev 0x00018ef1 0x37e esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x0001926f 0x256 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_abbrev 0x000194c5 0x40c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_abbrev 0x000198d1 0x473 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x00019d44 0x23c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x00019f80 0x383 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_abbrev 0x0001a303 0x203 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_abbrev 0x0001a506 0x3f7 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .debug_abbrev 0x0001a8fd 0x1d7 esp-idf/hal/libhal.a(hal_utils.c.obj) + .debug_abbrev 0x0001aad4 0x86 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_abbrev 0x0001ab5a 0x9f esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x0001abf9 0xe4 esp-idf/soc/libsoc.a(i2s_periph.c.obj) + .debug_abbrev 0x0001acdd 0xbd esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0001ad9a 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_abbrev 0x0001ae52 0x10b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_abbrev 0x0001af5d 0x26a esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_abbrev 0x0001b1c7 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_abbrev 0x0001b25d 0x1b5 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_abbrev 0x0001b412 0x23d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_abbrev 0x0001b64f 0x1f9 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_abbrev 0x0001b848 0x30e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .debug_abbrev 0x0001bb56 0x3eb esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_abbrev 0x0001bf41 0x476 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_abbrev 0x0001c3b7 0x1d9 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x0001c590 0x177 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_abbrev 0x0001c707 0x473 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_abbrev 0x0001cb7a 0x405 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_abbrev 0x0001cf7f 0x3f7 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_abbrev 0x0001d376 0x17c esp-idf/lwip/liblwip.a(def.c.obj) + .debug_abbrev 0x0001d4f2 0xbb esp-idf/lwip/liblwip.a(init.c.obj) + .debug_abbrev 0x0001d5ad 0x247 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_abbrev 0x0001d7f4 0x213 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_abbrev 0x0001da07 0x2e1 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_abbrev 0x0001dce8 0x43c esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_abbrev 0x0001e124 0x3ea esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_abbrev 0x0001e50e 0x3b9 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_abbrev 0x0001e8c7 0x439 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_abbrev 0x0001ed00 0x3c4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_abbrev 0x0001f0c4 0x40c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_abbrev 0x0001f4d0 0x38a esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_abbrev 0x0001f85a 0x3fe esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_abbrev 0x0001fc58 0x422 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_abbrev 0x0002007a 0x3a8 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_abbrev 0x00020422 0x313 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_abbrev 0x00020735 0x402 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_abbrev 0x00020b37 0x398 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_abbrev 0x00020ecf 0x308 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_abbrev 0x000211d7 0x260 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_abbrev 0x00021437 0x301 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_abbrev 0x00021738 0x36a esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_abbrev 0x00021aa2 0x221 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_abbrev 0x00021cc3 0x253 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_abbrev 0x00021f16 0x3cf esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_abbrev 0x000222e5 0x41e esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_abbrev 0x00022703 0x2d9 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_abbrev 0x000229dc 0x207 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_abbrev 0x00022be3 0x281 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_abbrev 0x00022e64 0x1c5 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_abbrev 0x00023029 0x37f esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_abbrev 0x000233a8 0x2bf esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_abbrev 0x00023667 0x42d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_abbrev 0x00023a94 0x4a4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_abbrev 0x00023f38 0xaf esp-idf/lwip/liblwip.a(err.c.obj) + .debug_abbrev 0x00023fe7 0x239 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_abbrev 0x00024220 0x3bf esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_abbrev 0x000245df 0x25f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_abbrev 0x0002483e 0x228 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_abbrev 0x00024a66 0x5ea esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_abbrev 0x00025050 0x1c7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_abbrev 0x00025217 0x1d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_abbrev 0x000253ec 0x18d esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_abbrev 0x00025579 0x440 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_abbrev 0x000259b9 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_abbrev 0x00025ac5 0x15f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_abbrev 0x00025c24 0x168 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_abbrev 0x00025d8c 0x1a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_abbrev 0x00025f32 0x303 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_abbrev 0x00026235 0x330 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_abbrev 0x00026565 0x357 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_abbrev 0x000268bc 0x200 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_abbrev 0x00026abc 0x371 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_abbrev 0x00026e2d 0x402 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_abbrev 0x0002722f 0x284 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_abbrev 0x000274b3 0x4ea esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_abbrev 0x0002799d 0x5e6 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_abbrev 0x00027f83 0x46d esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_abbrev 0x000283f0 0x4e0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_abbrev 0x000288d0 0x494 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_abbrev 0x00028d64 0x3e6 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_abbrev 0x0002914a 0x21d esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_abbrev 0x00029367 0x51d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_abbrev 0x00029884 0x417 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_abbrev 0x00029c9b 0x547 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_abbrev 0x0002a1e2 0x390 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_abbrev 0x0002a572 0x296 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_abbrev 0x0002a808 0x514 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_abbrev 0x0002ad1c 0x3dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_abbrev 0x0002b0f8 0x188 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_abbrev 0x0002b280 0x1d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_abbrev 0x0002b452 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_abbrev 0x0002b56c 0x1b5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_abbrev 0x0002b721 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_abbrev 0x0002b903 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_abbrev 0x0002bae5 0x359 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_abbrev 0x0002be3e 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_abbrev 0x0002bf36 0x22f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_abbrev 0x0002c165 0x177 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_abbrev 0x0002c2dc 0x341 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_abbrev 0x0002c61d 0x39a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_abbrev 0x0002c9b7 0x206 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_abbrev 0x0002cbbd 0x2b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_abbrev 0x0002ce75 0x2c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x0002d13e 0x334 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_abbrev 0x0002d472 0x39f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_abbrev 0x0002d811 0x14e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_abbrev 0x0002d95f 0x306 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_abbrev 0x0002dc65 0x30f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_abbrev 0x0002df74 0x27d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_abbrev 0x0002e1f1 0x45c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_abbrev 0x0002e64d 0x487 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_abbrev 0x0002ead4 0x255 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_abbrev 0x0002ed29 0x2d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x0002effd 0x492 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_abbrev 0x0002f48f 0x350 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_abbrev 0x0002f7df 0x3c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_abbrev 0x0002fba3 0x402 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_abbrev 0x0002ffa5 0x315 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_abbrev 0x000302ba 0x3e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_abbrev 0x0003069a 0x428 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_abbrev 0x00030ac2 0x2a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_abbrev 0x00030d66 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_abbrev 0x00030e36 0x40b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x00031241 0x48a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_abbrev 0x000316cb 0x2a3 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_abbrev 0x0003196e 0x35f esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_abbrev 0x00031ccd 0x441 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x0003210e 0x13e esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_abbrev 0x0003224c 0x256 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_abbrev 0x000324a2 0x2be esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_abbrev 0x00032760 0x269 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_abbrev 0x000329c9 0x272 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_abbrev 0x00032c3b 0xdb esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_abbrev 0x00032d16 0x8c esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_abbrev 0x00032da2 0x1e0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_abbrev 0x00032f82 0x331 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_abbrev 0x000332b3 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_abbrev 0x000333a3 0x21c esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_abbrev 0x000335bf 0xfc1 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_abbrev 0x00034580 0xf41 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_abbrev 0x000354c1 0xb96 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_abbrev 0x00036057 0x52c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_abbrev 0x00036583 0xdfa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_abbrev 0x0003737d 0x2e0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_abbrev 0x0003765d 0x836 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_abbrev 0x00037e93 0xc46 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_abbrev 0x00038ad9 0xd5f esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_abbrev 0x00039838 0x60c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_abbrev 0x00039e44 0x79e esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_abbrev 0x0003a5e2 0x1d0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_abbrev 0x0003a7b2 0x456 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_abbrev 0x0003ac08 0x276 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_abbrev 0x0003ae7e 0x451 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_abbrev 0x0003b2cf 0x23f esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_abbrev 0x0003b50e 0xec esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_abbrev 0x0003b5fa 0x1cd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_abbrev 0x0003b7c7 0x2bb esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_abbrev 0x0003ba82 0x1c0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_abbrev 0x0003bc42 0x573 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_abbrev 0x0003c1b5 0x3a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_abbrev 0x0003c55b 0x63b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_abbrev 0x0003cb96 0x276 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_abbrev 0x0003ce0c 0x550 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_abbrev 0x0003d35c 0x465 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_abbrev 0x0003d7c1 0x497 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_abbrev 0x0003dc58 0x399 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_abbrev 0x0003dff1 0x673 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_abbrev 0x0003e664 0x409 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_abbrev 0x0003ea6d 0x3e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_abbrev 0x0003ee50 0x42a esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_abbrev 0x0003f27a 0x4ca esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_abbrev 0x0003f744 0x259 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_abbrev 0x0003f99d 0x4ed esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_abbrev 0x0003fe8a 0x26f esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_abbrev 0x000400f9 0x337 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_abbrev 0x00040430 0x179 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_abbrev 0x000405a9 0x262 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_abbrev 0x0004080b 0x61f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_abbrev 0x00040e2a 0x3ed esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_abbrev 0x00041217 0x34e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_abbrev 0x00041565 0x461 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_abbrev 0x000419c6 0x6e2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_abbrev 0x000420a8 0x300 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_abbrev 0x000423a8 0x2d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_abbrev 0x0004267d 0x22c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_abbrev 0x000428a9 0x368 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_abbrev 0x00042c11 0x47a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_abbrev 0x0004308b 0x367 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_abbrev 0x000433f2 0x315 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_abbrev 0x00043707 0x4eb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_abbrev 0x00043bf2 0x21a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_abbrev 0x00043e0c 0x36f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_abbrev 0x0004417b 0x435 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_abbrev 0x000445b0 0x356 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_abbrev 0x00044906 0x27d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_abbrev 0x00044b83 0x6fc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_abbrev 0x0004527f 0x1f9 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_abbrev 0x00045478 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_abbrev 0x0004548c 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_abbrev 0x000454a0 0x43 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_abbrev 0x000454e3 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_abbrev 0x000454f7 0x14 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_abbrev 0x0004550b 0x8b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_abbrev 0x00045596 0xa5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .debug_abbrev 0x0004563b 0x157 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_abbrev 0x00045792 0x125 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_abbrev 0x000458b7 0x19d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_abbrev 0x00045a54 0x4f6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_abbrev 0x00045f4a 0x5ac C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_abbrev 0x000464f6 0x44e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_abbrev 0x00046944 0xa4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_abbrev 0x000469e8 0x343 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_abbrev 0x00046d2b 0x31b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_abbrev 0x00047046 0x493 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_abbrev 0x000474d9 0x314 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_abbrev 0x000477ed 0x1f6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_abbrev 0x000479e3 0x47e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_abbrev 0x00047e61 0xa5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_abbrev 0x00047f06 0x424 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_abbrev 0x0004832a 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_abbrev 0x0004833e 0x44d esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_abbrev 0x0004878b 0x54c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .debug_abbrev 0x00048cd7 0xd4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .debug_abbrev 0x00048dab 0x4b4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .debug_abbrev 0x0004925f 0x4e2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .debug_abbrev 0x00049741 0x306 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .debug_abbrev 0x00049a47 0x2d4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .debug_abbrev 0x00049d1b 0x16c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .debug_abbrev 0x00049e87 0x16c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .debug_abbrev 0x00049ff3 0x146 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .debug_abbrev 0x0004a139 0x13a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .debug_abbrev 0x0004a273 0x196 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .debug_abbrev 0x0004a409 0x1c0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .debug_abbrev 0x0004a5c9 0xd8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .debug_abbrev 0x0004a6a1 0x184 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .debug_abbrev 0x0004a825 0x135 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .debug_abbrev 0x0004a95a 0x167 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .debug_abbrev 0x0004aac1 0x459 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_abbrev 0x0004af1a 0x2b9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_abbrev 0x0004b1d3 0x258 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_abbrev 0x0004b42b 0x254 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_abbrev 0x0004b67f 0x1c3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_abbrev 0x0004b842 0x254 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .debug_abbrev 0x0004ba96 0x2a6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .debug_abbrev 0x0004bd3c 0x2cd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .debug_abbrev 0x0004c009 0x267 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_abbrev 0x0004c270 0x255 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_abbrev 0x0004c4c5 0x23c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_abbrev 0x0004c701 0x260 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_abbrev 0x0004c961 0x221 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_abbrev 0x0004cb82 0x30d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_abbrev 0x0004ce8f 0x214 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .debug_abbrev 0x0004d0a3 0x174 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_abbrev 0x0004d217 0x196 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + .debug_abbrev 0x0004d3ad 0x1e1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_abbrev 0x0004d58e 0x47d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_abbrev 0x0004da0b 0x4f2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_abbrev 0x0004defd 0x492 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_abbrev 0x0004e38f 0x1d8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .debug_abbrev 0x0004e567 0x271 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_abbrev 0x0004e7d8 0x29a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .debug_abbrev 0x0004ea72 0x26c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_abbrev 0x0004ecde 0x15f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_abbrev 0x0004ee3d 0x336 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_abbrev 0x0004f173 0x25a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_abbrev 0x0004f3cd 0x48e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_abbrev 0x0004f85b 0x3fd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_loc 0x00000000 0xe31b2 + .debug_loc 0x00000000 0x10c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_loc 0x0000010c 0x1412 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x0000151e 0x599 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_loc 0x00001ab7 0x4dc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x00001f93 0x548 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_loc 0x000024db 0x4a6 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_loc 0x00002981 0x19d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_loc 0x00002b1e 0x359 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_loc 0x00002e77 0x4d esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_loc 0x00002ec4 0x329 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_loc 0x000031ed 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_loc 0x00003202 0x1ce esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_loc 0x000033d0 0x5f esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_loc 0x0000342f 0xe1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_loc 0x00003510 0x305 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_loc 0x00003815 0x13a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_loc 0x0000394f 0x131 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_loc 0x00003a80 0x18c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_loc 0x00003c0c 0x6b esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_loc 0x00003c77 0x1b5 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_loc 0x00003e2c 0x56c esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_loc 0x00004398 0xf6 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_loc 0x0000448e 0x443 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_loc 0x000048d1 0x15 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_loc 0x000048e6 0x45 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x0000492b 0x243 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00004b6e 0xba6 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_loc 0x00005714 0x3a1 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_loc 0x00005ab5 0xa9 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_loc 0x00005b5e 0x4d3 esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x00006031 0xdc esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_loc 0x0000610d 0xfae esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x000070bb 0x6f7 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x000077b2 0x6ab esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x00007e5d 0x7f7e esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_loc 0x0000fddb 0x367 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_loc 0x00010142 0x44 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_loc 0x00010186 0x572 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_loc 0x000106f8 0x164 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_loc 0x0001085c 0x18bf esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_loc 0x0001211b 0x1286 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_loc 0x000133a1 0x28f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_loc 0x00013630 0x2cb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_loc 0x000138fb 0x1156 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x00014a51 0x145 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x00014b96 0x49b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x00015031 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_loc 0x00015064 0xca esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_loc 0x0001512e 0x279 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_loc 0x000153a7 0x98 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_loc 0x0001543f 0x2033 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x00017472 0x418d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x0001b5ff 0x89b esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x0001be9a 0x1d7 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_loc 0x0001c071 0x88 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_loc 0x0001c0f9 0x37 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_loc 0x0001c130 0x8c esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x0001c1bc 0x8a esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_loc 0x0001c246 0x1cd esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_loc 0x0001c413 0x2bc esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_loc 0x0001c6cf 0x3bb esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_loc 0x0001ca8a 0x81 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_loc 0x0001cb0b 0x158 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_loc 0x0001cc63 0x2a8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_loc 0x0001cf0b 0x536 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_loc 0x0001d441 0x94 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_loc 0x0001d4d5 0x29f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x0001d774 0xede esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_loc 0x0001e652 0x15 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_loc 0x0001e667 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_loc 0x0001e681 0x453 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_loc 0x0001ead4 0x4544 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_loc 0x00023018 0x36f esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_loc 0x00023387 0x1227 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_loc 0x000245ae 0x4e esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_loc 0x000245fc 0x637 esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_loc 0x00024c33 0x229 esp-idf/main/libmain.a(http_control.c.obj) + .debug_loc 0x00024e5c 0x4c6 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .debug_loc 0x00025322 0x110 esp-idf/main/libmain.a(button.c.obj) + .debug_loc 0x00025432 0x1b6 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_loc 0x000255e8 0x5f0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x00025bd8 0xe5b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00026a33 0x83b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x0002726e 0x5a0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x0002780e 0x21b0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_loc 0x000299be 0x2bbd esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_loc 0x0002c57b 0x98a esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_loc 0x0002cf05 0x29ba esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .debug_loc 0x0002f8bf 0x3e50 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_loc 0x0003370f 0x5d3 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .debug_loc 0x00033ce2 0xfaf esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_loc 0x00034c91 0x2b4 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .debug_loc 0x00034f45 0x903 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x00035848 0x631 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_loc 0x00035e79 0x1d5 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x0003604e 0x269 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x000362b7 0x95c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x00036c13 0x176 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x00036d89 0x14db esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x00038264 0x506 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x0003876a 0x648 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x00038db2 0x12f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x00038ee1 0x1003 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x00039ee4 0x1c9 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x0003a0ad 0x159 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x0003a206 0x2cf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x0003a4d5 0x417 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x0003a8ec 0x44f esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x0003ad3b 0x16 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_loc 0x0003ad51 0x124 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_loc 0x0003ae75 0x1e5 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_loc 0x0003b05a 0xef4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_loc 0x0003bf4e 0x51d esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_loc 0x0003c46b 0x1101 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x0003d56c 0x589 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_loc 0x0003daf5 0x389 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_loc 0x0003de7e 0xe09 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x0003ec87 0xb0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x0003ed37 0xcea esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_loc 0x0003fa21 0x264 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_loc 0x0003fc85 0xbe1 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .debug_loc 0x00040866 0x62e esp-idf/hal/libhal.a(hal_utils.c.obj) + .debug_loc 0x00040e94 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_loc 0x00040f3a 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_loc 0x00040f5d 0x145 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_loc 0x000410a2 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_loc 0x0004111c 0x20a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_loc 0x00041326 0x360 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_loc 0x00041686 0x187 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_loc 0x0004180d 0x5fe esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .debug_loc 0x00041e0b 0x936 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_loc 0x00042741 0x9fa esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_loc 0x0004313b 0xf2 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x0004322d 0x1fe esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_loc 0x0004342b 0x17ac esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_loc 0x00044bd7 0x4c4a esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_loc 0x00049821 0x367 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_loc 0x00049b88 0x3b3 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_loc 0x00049f3b 0x1a4 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_loc 0x0004a0df 0x80 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_loc 0x0004a15f 0x191 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_loc 0x0004a2f0 0xee1 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_loc 0x0004b1d1 0x1a28 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_loc 0x0004cbf9 0xa31 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_loc 0x0004d62a 0x1953 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_loc 0x0004ef7d 0xf6b esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_loc 0x0004fee8 0x18d5 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_loc 0x000517bd 0x270 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_loc 0x00051a2d 0xf15 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_loc 0x00052942 0x1934 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_loc 0x00054276 0x10bb esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_loc 0x00055331 0x180 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_loc 0x000554b1 0x700 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_loc 0x00055bb1 0xa3d esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_loc 0x000565ee 0x68f esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_loc 0x00056c7d 0x35a esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_loc 0x00056fd7 0x2ba esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_loc 0x00057291 0xebc esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_loc 0x0005814d 0x766 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_loc 0x000588b3 0x20a esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_loc 0x00058abd 0x56b esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_loc 0x00059028 0x1c82 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_loc 0x0005acaa 0x128 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_loc 0x0005add2 0xaa esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_loc 0x0005ae7c 0x1cd esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_loc 0x0005b049 0x335 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_loc 0x0005b37e 0x816 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_loc 0x0005bb94 0xc6 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_loc 0x0005bc5a 0x1228 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_loc 0x0005ce82 0x13ca esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_loc 0x0005e24c 0x2b esp-idf/lwip/liblwip.a(err.c.obj) + .debug_loc 0x0005e277 0x1f3 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_loc 0x0005e46a 0x1b04 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_loc 0x0005ff6e 0x90b esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_loc 0x00060879 0x26f esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_loc 0x00060ae8 0x36f1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_loc 0x000641d9 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_loc 0x00064285 0x2fd esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_loc 0x00064582 0x153 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_loc 0x000646d5 0xdf3 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_loc 0x000654c8 0x1f9 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_loc 0x000656c1 0x1bf esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_loc 0x00065880 0x1c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_loc 0x00065a48 0x6b esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_loc 0x00065ab3 0xd22 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_loc 0x000667d5 0x1290 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_loc 0x00067a65 0x609 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_loc 0x0006806e 0x67c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_loc 0x000686ea 0xd4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_loc 0x000687be 0x4af esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_loc 0x00068c6d 0x2c1 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_loc 0x00068f2e 0x6ec esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_loc 0x0006961a 0x1322 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_loc 0x0006a93c 0x17d8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_loc 0x0006c114 0xa77 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_loc 0x0006cb8b 0x1570 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_loc 0x0006e0fb 0x7a6 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_loc 0x0006e8a1 0x33a esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_loc 0x0006ebdb 0x2e42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_loc 0x00071a1d 0x2961 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_loc 0x0007437e 0x285c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_loc 0x00076bda 0x4b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_loc 0x00077090 0x79a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_loc 0x0007782a 0xfc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_loc 0x000787ee 0x13c1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_loc 0x00079baf 0xbb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_loc 0x00079c6a 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_loc 0x00079ce6 0x144 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_loc 0x00079e2a 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_loc 0x0007a032 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_loc 0x0007a23a 0xdd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_loc 0x0007b00c 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_loc 0x0007b037 0x401 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_loc 0x0007b438 0x11e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_loc 0x0007b556 0xda2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_loc 0x0007c2f8 0xa24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_loc 0x0007cd1c 0x1a9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_loc 0x0007cec5 0x20b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_loc 0x0007ef77 0x1195 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x0008010c 0xe04 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_loc 0x00080f10 0x965 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_loc 0x00081875 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_loc 0x00081921 0x119b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_loc 0x00082abc 0x7d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_loc 0x0008328c 0xc30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_loc 0x00083ebc 0xb6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_loc 0x00084a29 0x502a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_loc 0x00089a53 0x678 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_loc 0x0008a0cb 0x1f3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x0008a2be 0xc67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_loc 0x0008af25 0x8ee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_loc 0x0008b813 0xddb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_loc 0x0008c5ee 0x2f8d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_loc 0x0008f57b 0x557d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_loc 0x00094af8 0x7fb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_loc 0x000952f3 0x8a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_loc 0x00095b95 0x1867 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_loc 0x000973fc 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_loc 0x00097427 0x1e9f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x000992c6 0x1750 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_loc 0x0009aa16 0x820 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_loc 0x0009b236 0x80c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_loc 0x0009ba42 0x13fa esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x0009ce3c 0xa9 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_loc 0x0009cee5 0x408 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_loc 0x0009d2ed 0x29a esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_loc 0x0009d587 0x24e esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_loc 0x0009d7d5 0x1c1 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_loc 0x0009d996 0x23 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_loc 0x0009d9b9 0xd9 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_loc 0x0009da92 0x6b9 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_loc 0x0009e14b 0xd9 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_loc 0x0009e224 0x1f63 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_loc 0x000a0187 0x369f esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_loc 0x000a3826 0x63c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_loc 0x000a3e62 0x249 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_loc 0x000a40ab 0xe5e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_loc 0x000a4f09 0x6c5 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_loc 0x000a55ce 0x3475 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_loc 0x000a8a43 0x1289 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_loc 0x000a9ccc 0x177 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_loc 0x000a9e43 0x2da esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_loc 0x000aa11d 0x34c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_loc 0x000aa469 0x3c7 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_loc 0x000aa830 0x126 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_loc 0x000aa956 0x1a29 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_loc 0x000ac37f 0x162 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_loc 0x000ac4e1 0x352 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_loc 0x000ac833 0x8d esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_loc 0x000ac8c0 0x55c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_loc 0x000ace1c 0x211 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_loc 0x000ad02d 0xd79 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_loc 0x000adda6 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_loc 0x000ade09 0x349 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_loc 0x000ae152 0x2125 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_loc 0x000b0277 0xaaa esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_loc 0x000b0d21 0x53f esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_loc 0x000b1260 0x1d9f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_loc 0x000b2fff 0x131f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_loc 0x000b431e 0x691 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_loc 0x000b49af 0x23b esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_loc 0x000b4bea 0x14f2 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_loc 0x000b60dc 0x49a esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_loc 0x000b6576 0x57a3 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_loc 0x000bbd19 0x8cf esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_loc 0x000bc5e8 0x262d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_loc 0x000bec15 0x1c2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_loc 0x000bedd7 0x1ea esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_loc 0x000befc1 0x33dd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_loc 0x000c239e 0xec2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_loc 0x000c3260 0x61e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_loc 0x000c387e 0x18f6 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_loc 0x000c5174 0x12c3 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_loc 0x000c6437 0x278 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_loc 0x000c66af 0x8b3 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_loc 0x000c6f62 0x6f7 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_loc 0x000c7659 0xacb esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_loc 0x000c8124 0x7d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_loc 0x000c88f4 0x277 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_loc 0x000c8b6b 0x3d69 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_loc 0x000cc8d4 0x19a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_loc 0x000ce276 0x1b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_loc 0x000ce42e 0x5a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_loc 0x000ce9d4 0x1ba9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_loc 0x000d057d 0xbec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_loc 0x000d1169 0x149c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_loc 0x000d2605 0x1352 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_loc 0x000d3957 0x5e esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_loc 0x000d39b5 0x6cc9 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .debug_loc 0x000da67e 0x42 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .debug_loc 0x000da6c0 0x38c2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .debug_loc 0x000ddf82 0x4af2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .debug_loc 0x000e2a74 0x12e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .debug_loc 0x000e2ba2 0x610 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + +.debug_aranges 0x00000000 0xcd78 + .debug_aranges + 0x00000000 0x30 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_aranges + 0x00000030 0x160 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_aranges + 0x00000190 0x88 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_aranges + 0x00000218 0x60 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_aranges + 0x00000278 0x68 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_aranges + 0x000002e0 0x58 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_aranges + 0x00000338 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_aranges + 0x000003f0 0x48 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_aranges + 0x00000438 0x48 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_aranges + 0x00000480 0x60 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_aranges + 0x000004e0 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_aranges + 0x00000508 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_aranges + 0x00000528 0x20 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_aranges + 0x00000548 0x38 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_aranges + 0x00000580 0x28 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_aranges + 0x000005a8 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_aranges + 0x000005d8 0x78 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_aranges + 0x00000650 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_aranges + 0x00000680 0x60 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_aranges + 0x000006e0 0x58 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_aranges + 0x00000738 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_aranges + 0x00000768 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_aranges + 0x00000788 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_aranges + 0x000007e8 0x40 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_aranges + 0x00000828 0x20 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_aranges + 0x00000848 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_aranges + 0x00000870 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_aranges + 0x000008d8 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_aranges + 0x000008f8 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000938 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000990 0x70 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x00000a00 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_aranges + 0x00000a40 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_aranges + 0x00000a60 0x80 esp-idf/log/liblog.a(log.c.obj) + .debug_aranges + 0x00000ae0 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_aranges + 0x00000b28 0x120 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x00000c48 0x48 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x00000c90 0xd0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x00000d60 0xe0 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_aranges + 0x00000e40 0x40 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_aranges + 0x00000e80 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_aranges + 0x00000e98 0x28 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_aranges + 0x00000ec0 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_aranges + 0x00000f28 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_aranges + 0x00000f90 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_aranges + 0x00001078 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_aranges + 0x00001140 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_aranges + 0x00001198 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_aranges + 0x000011d8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_aranges + 0x00001238 0x130 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x00001368 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x00001398 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x000013f8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_aranges + 0x00001418 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_aranges + 0x00001488 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x000014e0 0x38 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_aranges + 0x00001518 0x160 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x00001678 0x328 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x000019a0 0xa8 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x00001a48 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x00001a68 0x28 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_aranges + 0x00001a90 0x50 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_aranges + 0x00001ae0 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_aranges + 0x00001b08 0x28 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_aranges + 0x00001b30 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x00001b70 0x20 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_aranges + 0x00001b90 0x38 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_aranges + 0x00001bc8 0xa0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_aranges + 0x00001c68 0xd8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_aranges + 0x00001d40 0x38 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_aranges + 0x00001d78 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_aranges + 0x00001da0 0x38 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_aranges + 0x00001dd8 0x60 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_aranges + 0x00001e38 0x80 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_aranges + 0x00001eb8 0x50 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_aranges + 0x00001f08 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x00001f58 0xf0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_aranges + 0x00002048 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_aranges + 0x00002078 0x38 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_aranges + 0x000020b0 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_aranges + 0x00002120 0x50 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_aranges + 0x00002170 0x1d8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_aranges + 0x00002348 0x98 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_aranges + 0x000023e0 0x110 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_aranges + 0x000024f0 0x28 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_aranges + 0x00002518 0x68 esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_aranges + 0x00002580 0x50 esp-idf/main/libmain.a(http_control.c.obj) + .debug_aranges + 0x000025d0 0x58 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .debug_aranges + 0x00002628 0x38 esp-idf/main/libmain.a(button.c.obj) + .debug_aranges + 0x00002660 0x20 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_aranges + 0x00002680 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_aranges + 0x000026a0 0x38 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_aranges + 0x000026d8 0x70 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_aranges + 0x00002748 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x000027d8 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x000028b8 0x88 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00002940 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x00002958 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x000029b0 0xc8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_aranges + 0x00002a78 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_aranges + 0x00002a90 0x30 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_aranges + 0x00002ac0 0x238 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_aranges + 0x00002cf8 0x118 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_aranges + 0x00002e10 0x1b8 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .debug_aranges + 0x00002fc8 0x250 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_aranges + 0x00003218 0x40 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .debug_aranges + 0x00003258 0xe8 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_aranges + 0x00003340 0x40 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .debug_aranges + 0x00003380 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x000033a0 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x00003450 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_aranges + 0x000034c8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_aranges + 0x000034f0 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x00003538 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_aranges + 0x00003568 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x000035e0 0x78 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x00003658 0x48 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x000036a0 0x110 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x000037b0 0x50 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x00003800 0xc0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x000038c0 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x00003900 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x00003918 0x110 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x00003a28 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x00003a60 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x00003a90 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x00003ad8 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x00003b38 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x00003bb0 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_aranges + 0x00003be0 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_aranges + 0x00003c38 0x40 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_aranges + 0x00003c78 0xe0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_aranges + 0x00003d58 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_aranges + 0x00003da8 0x20 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_aranges + 0x00003dc8 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_aranges + 0x00003df0 0x88 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x00003e78 0x48 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_aranges + 0x00003ec0 0x48 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_aranges + 0x00003f08 0xa0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x00003fa8 0x60 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x00004008 0xe8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_aranges + 0x000040f0 0x28 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_aranges + 0x00004118 0xa0 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .debug_aranges + 0x000041b8 0x30 esp-idf/hal/libhal.a(hal_utils.c.obj) + .debug_aranges + 0x000041e8 0x18 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_aranges + 0x00004200 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_aranges + 0x00004218 0x18 esp-idf/soc/libsoc.a(i2s_periph.c.obj) + .debug_aranges + 0x00004230 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_aranges + 0x00004248 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_aranges + 0x00004278 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_aranges + 0x00004298 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_aranges + 0x000042e0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_aranges + 0x00004308 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_aranges + 0x00004328 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_aranges + 0x00004370 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_aranges + 0x000043c0 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .debug_aranges + 0x00004410 0x98 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_aranges + 0x000044a8 0x108 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_aranges + 0x000045b0 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x000045d8 0x58 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_aranges + 0x00004630 0xd0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_aranges + 0x00004700 0x250 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_aranges + 0x00004950 0xa0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_aranges + 0x000049f0 0x48 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_aranges + 0x00004a38 0x20 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_aranges + 0x00004a58 0x38 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_aranges + 0x00004a90 0x40 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_aranges + 0x00004ad0 0x58 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_aranges + 0x00004b28 0x150 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_aranges + 0x00004c78 0x148 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_aranges + 0x00004dc0 0x88 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_aranges + 0x00004e48 0x1d0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_aranges + 0x00005018 0x70 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_aranges + 0x00005088 0xd8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_aranges + 0x00005160 0x70 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_aranges + 0x000051d0 0xa0 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_aranges + 0x00005270 0x150 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_aranges + 0x000053c0 0xa0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_aranges + 0x00005460 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_aranges + 0x00005490 0xb0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_aranges + 0x00005540 0x68 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_aranges + 0x000055a8 0x48 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_aranges + 0x000055f0 0x20 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_aranges + 0x00005610 0x60 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_aranges + 0x00005670 0x58 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_aranges + 0x000056c8 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_aranges + 0x000056f8 0x20 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_aranges + 0x00005718 0x88 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_aranges + 0x000057a0 0x110 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_aranges + 0x000058b0 0x28 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_aranges + 0x000058d8 0x28 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_aranges + 0x00005900 0x38 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_aranges + 0x00005938 0x28 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_aranges + 0x00005960 0x100 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_aranges + 0x00005a60 0x50 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_aranges + 0x00005ab0 0x120 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_aranges + 0x00005bd0 0x140 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_aranges + 0x00005d10 0x20 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_aranges + 0x00005d30 0x60 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_aranges + 0x00005d90 0xd0 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_aranges + 0x00005e60 0x70 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_aranges + 0x00005ed0 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_aranges + 0x00005f20 0x410 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_aranges + 0x00006330 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_aranges + 0x00006378 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_aranges + 0x000063a0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_aranges + 0x000063c0 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_aranges + 0x00006510 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_aranges + 0x00006530 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_aranges + 0x00006550 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_aranges + 0x00006570 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_aranges + 0x000065b0 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_aranges + 0x00006608 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_aranges + 0x000066f0 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_aranges + 0x00006748 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_aranges + 0x000067a8 0x70 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_aranges + 0x00006818 0xd8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_aranges + 0x000068f0 0x70 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_aranges + 0x00006960 0x238 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_aranges + 0x00006b98 0x98 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_aranges + 0x00006c30 0xe8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_aranges + 0x00006d18 0xe0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_aranges + 0x00006df8 0xe8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_aranges + 0x00006ee0 0x58 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_aranges + 0x00006f38 0x38 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_aranges + 0x00006f70 0x1b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_aranges + 0x00007128 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_aranges + 0x00007250 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_aranges + 0x00007360 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_aranges + 0x00007468 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_aranges + 0x000074b0 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_aranges + 0x00007530 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_aranges + 0x000075f8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_aranges + 0x00007620 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_aranges + 0x00007660 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_aranges + 0x00007688 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_aranges + 0x000076b0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_aranges + 0x000076e8 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_aranges + 0x00007720 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_aranges + 0x00007790 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_aranges + 0x000077b8 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_aranges + 0x00007808 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_aranges + 0x00007840 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_aranges + 0x000078c8 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_aranges + 0x00007940 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_aranges + 0x000079b0 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_aranges + 0x00007a18 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_aranges + 0x00007a80 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_aranges + 0x00007ae8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_aranges + 0x00007b80 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_aranges + 0x00007bd0 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_aranges + 0x00007c58 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_aranges + 0x00007d00 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_aranges + 0x00007dc0 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_aranges + 0x00007e70 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_aranges + 0x00008038 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_aranges + 0x00008078 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_aranges + 0x000080d8 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_aranges + 0x00008190 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_aranges + 0x00008270 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_aranges + 0x00008310 0x2b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_aranges + 0x000085c8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_aranges + 0x00008660 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_aranges + 0x000086f0 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_aranges + 0x00008788 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_aranges + 0x000088b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_aranges + 0x000088d8 0x180 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_aranges + 0x00008a58 0xf0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_aranges + 0x00008b48 0x70 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_aranges + 0x00008bb8 0x80 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_aranges + 0x00008c38 0x100 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x00008d38 0x20 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_aranges + 0x00008d58 0x50 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_aranges + 0x00008da8 0xa0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_aranges + 0x00008e48 0x40 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_aranges + 0x00008e88 0x38 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_aranges + 0x00008ec0 0x20 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_aranges + 0x00008ee0 0x18 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_aranges + 0x00008ef8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_aranges + 0x00008f20 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_aranges + 0x00008fa0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_aranges + 0x00008fc8 0x58 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_aranges + 0x00009020 0x330 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_aranges + 0x00009350 0x1a0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_aranges + 0x000094f0 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_aranges + 0x000095b8 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_aranges + 0x00009630 0xc0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_aranges + 0x000096f0 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_aranges + 0x00009728 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_aranges + 0x00009788 0x120 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_aranges + 0x000098a8 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_aranges + 0x00009928 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_aranges + 0x00009958 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_aranges + 0x000099a0 0x80 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_aranges + 0x00009a20 0xc8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_aranges + 0x00009ae8 0x60 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_aranges + 0x00009b48 0xf8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_aranges + 0x00009c40 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_aranges + 0x00009ca0 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_aranges + 0x00009cb8 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_aranges + 0x00009cd0 0x50 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_aranges + 0x00009d20 0x28 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_aranges + 0x00009d48 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_aranges + 0x00009e10 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_aranges + 0x00009e80 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_aranges + 0x00009f28 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_aranges + 0x00009f58 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_aranges + 0x00009fa0 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_aranges + 0x0000a198 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_aranges + 0x0000a218 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_aranges + 0x0000a298 0x238 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_aranges + 0x0000a4d0 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_aranges + 0x0000a530 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_aranges + 0x0000a5b0 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_aranges + 0x0000a620 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_aranges + 0x0000a6a8 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_aranges + 0x0000a6e0 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_aranges + 0x0000a8d8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_aranges + 0x0000a930 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_aranges + 0x0000aa20 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_aranges + 0x0000aa40 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_aranges + 0x0000aa70 0x220 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_aranges + 0x0000ac90 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_aranges + 0x0000ace0 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_aranges + 0x0000ad58 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_aranges + 0x0000adf8 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_aranges + 0x0000af70 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_aranges + 0x0000afe8 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_aranges + 0x0000b0c8 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_aranges + 0x0000b118 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_aranges + 0x0000b190 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_aranges + 0x0000b220 0xc0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_aranges + 0x0000b2e0 0x98 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_aranges + 0x0000b378 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_aranges + 0x0000b480 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_aranges + 0x0000b4b8 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_aranges + 0x0000b5a8 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_aranges + 0x0000b650 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_aranges + 0x0000b6a8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_aranges + 0x0000b6e8 0x1d8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_aranges + 0x0000b8c0 0x20 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_aranges + 0x0000b8e0 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_aranges + 0x0000b900 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_aranges + 0x0000b920 0x18 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_aranges + 0x0000b938 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_aranges + 0x0000b958 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_aranges + 0x0000b978 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_aranges + 0x0000b998 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .debug_aranges + 0x0000b9b8 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_aranges + 0x0000b9e0 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_aranges + 0x0000ba00 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_aranges + 0x0000ba20 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_aranges + 0x0000ba60 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_aranges + 0x0000baa0 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_aranges + 0x0000baf8 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_aranges + 0x0000bb18 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_aranges + 0x0000bb30 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_aranges + 0x0000bb50 0x48 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_aranges + 0x0000bb98 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_aranges + 0x0000bbd8 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_aranges + 0x0000bc08 0x58 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_aranges + 0x0000bc60 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_aranges + 0x0000bc80 0x78 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_aranges + 0x0000bcf8 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_aranges + 0x0000bd18 0xf0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_aranges + 0x0000be08 0x498 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .debug_aranges + 0x0000c2a0 0x30 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .debug_aranges + 0x0000c2d0 0x1d8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .debug_aranges + 0x0000c4a8 0x270 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .debug_aranges + 0x0000c718 0xa8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .debug_aranges + 0x0000c7c0 0xc0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .debug_aranges + 0x0000c880 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .debug_aranges + 0x0000c8a0 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .debug_aranges + 0x0000c8c0 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .debug_aranges + 0x0000c8e0 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .debug_aranges + 0x0000c900 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .debug_aranges + 0x0000c920 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .debug_aranges + 0x0000c940 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .debug_aranges + 0x0000c960 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .debug_aranges + 0x0000c980 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .debug_aranges + 0x0000c9a0 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .debug_aranges + 0x0000c9c0 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_aranges + 0x0000c9e0 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_aranges + 0x0000ca00 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_aranges + 0x0000ca20 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_aranges + 0x0000ca40 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_aranges + 0x0000ca60 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .debug_aranges + 0x0000ca80 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .debug_aranges + 0x0000caa0 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .debug_aranges + 0x0000cac0 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_aranges + 0x0000cae0 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_aranges + 0x0000cb00 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_aranges + 0x0000cb20 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_aranges + 0x0000cb40 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_aranges + 0x0000cb60 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_aranges + 0x0000cb80 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .debug_aranges + 0x0000cba0 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_aranges + 0x0000cbb8 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + .debug_aranges + 0x0000cbd8 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_aranges + 0x0000cbf8 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_aranges + 0x0000cc18 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_aranges + 0x0000cc38 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_aranges + 0x0000cc58 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .debug_aranges + 0x0000cc78 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_aranges + 0x0000cc98 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .debug_aranges + 0x0000ccb8 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_aranges + 0x0000ccd8 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_aranges + 0x0000ccf8 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_aranges + 0x0000cd18 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_aranges + 0x0000cd38 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_aranges + 0x0000cd58 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_ranges 0x00000000 0xf260 + .debug_ranges 0x00000000 0x20 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_ranges 0x00000020 0x1a0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x000001c0 0x78 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_ranges 0x00000238 0x70 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x000002a8 0x58 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_ranges 0x00000300 0x48 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_ranges 0x00000348 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_ranges 0x000003f0 0x50 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_ranges 0x00000440 0x38 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_ranges 0x00000478 0x50 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_ranges 0x000004c8 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_ranges 0x000004e0 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_ranges 0x00000508 0x18 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_ranges 0x00000520 0x20 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_ranges 0x00000540 0x68 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_ranges 0x000005a8 0x38 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_ranges 0x000005e0 0x50 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_ranges 0x00000630 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_ranges 0x00000678 0x20 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_ranges 0x00000698 0x50 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_ranges 0x000006e8 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_ranges 0x00000718 0x18 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_ranges 0x00000730 0x70 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_ranges 0x000007a0 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_ranges 0x000007b0 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x000007e0 0x48 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00000828 0x60 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_ranges 0x00000888 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_ranges 0x000008b8 0x10 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_ranges 0x000008c8 0x70 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x00000938 0x38 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_ranges 0x00000970 0x1d0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x00000b40 0xb0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x00000bf0 0xc0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x00000cb0 0x1e8 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_ranges 0x00000e98 0x58 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_ranges 0x00000ef0 0x18 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_ranges 0x00000f08 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_ranges 0x00000f78 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_ranges 0x00000fe8 0x180 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_ranges 0x00001168 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_ranges 0x00001220 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_ranges 0x00001268 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_ranges 0x00001298 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_ranges 0x000012e8 0x170 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x00001458 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x00001478 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x000014c8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_ranges 0x000014d8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_ranges 0x00001538 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_ranges 0x00001580 0x28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_ranges 0x000015a8 0x210 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x000017b8 0x468 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x00001c20 0x110 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x00001d30 0x18 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_ranges 0x00001d48 0x40 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_ranges 0x00001d88 0x18 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_ranges 0x00001da0 0x18 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_ranges 0x00001db8 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x00001de8 0x10 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_ranges 0x00001df8 0x40 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_ranges 0x00001e38 0x90 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_ranges 0x00001ec8 0xc8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_ranges 0x00001f90 0x28 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_ranges 0x00001fb8 0x48 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_ranges 0x00002000 0x28 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_ranges 0x00002028 0x50 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_ranges 0x00002078 0x70 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_ranges 0x000020e8 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_ranges 0x00002128 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x00002168 0x158 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_ranges 0x000022c0 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_ranges 0x000022e0 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_ranges 0x00002308 0x90 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_ranges 0x00002398 0x40 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_ranges 0x000023d8 0x228 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_ranges 0x00002600 0x88 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_ranges 0x00002688 0x1d0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_ranges 0x00002858 0x18 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_ranges 0x00002870 0xa0 esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_ranges 0x00002910 0x40 esp-idf/main/libmain.a(http_control.c.obj) + .debug_ranges 0x00002950 0x48 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .debug_ranges 0x00002998 0x28 esp-idf/main/libmain.a(button.c.obj) + .debug_ranges 0x000029c0 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_ranges 0x000029e8 0x68 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_ranges 0x00002a50 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00002ae8 0x130 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00002c18 0xc8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00002ce0 0x120 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00002e00 0x118 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_ranges 0x00002f18 0x20 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_ranges 0x00002f38 0x268 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_ranges 0x000031a0 0x108 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_ranges 0x000032a8 0x230 esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .debug_ranges 0x000034d8 0x258 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_ranges 0x00003730 0x90 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .debug_ranges 0x000037c0 0xf0 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_ranges 0x000038b0 0x30 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .debug_ranges 0x000038e0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x000038f0 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x00003990 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_ranges 0x000039f8 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_ranges 0x00003a10 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x00003a60 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_ranges 0x00003a80 0x68 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x00003ae8 0xc8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x00003bb0 0x50 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x00003c00 0x160 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x00003d60 0x80 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00003de0 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x00003e90 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00003ec0 0x118 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x00003fd8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x00004000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x00004020 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x00004058 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x000040a8 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x00004110 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_ranges 0x00004130 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_ranges 0x00004178 0x60 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_ranges 0x000041d8 0xd0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_ranges 0x000042a8 0x60 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_ranges 0x00004308 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_ranges 0x00004320 0x90 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x000043b0 0x38 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_ranges 0x000043e8 0x38 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_ranges 0x00004420 0x90 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x000044b0 0x50 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x00004500 0x138 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_ranges 0x00004638 0x18 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_ranges 0x00004650 0x90 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .debug_ranges 0x000046e0 0x40 esp-idf/hal/libhal.a(hal_utils.c.obj) + .debug_ranges 0x00004720 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_ranges 0x00004740 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_ranges 0x00004750 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_ranges 0x00004788 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_ranges 0x000047a0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_ranges 0x000047b0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_ranges 0x00004808 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_ranges 0x00004848 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .debug_ranges 0x00004888 0xa0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_ranges 0x00004928 0xf8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_ranges 0x00004a20 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x00004a38 0x48 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_ranges 0x00004a80 0x120 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_ranges 0x00004ba0 0x350 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_ranges 0x00004ef0 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_ranges 0x00004f80 0x98 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_ranges 0x00005018 0x10 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_ranges 0x00005028 0x28 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_ranges 0x00005050 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_ranges 0x00005080 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_ranges 0x000050c8 0x140 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_ranges 0x00005208 0x198 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_ranges 0x000053a0 0x78 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_ranges 0x00005418 0x228 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_ranges 0x00005640 0x78 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_ranges 0x000056b8 0xf8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_ranges 0x000057b0 0x60 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_ranges 0x00005810 0x90 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_ranges 0x000058a0 0x188 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_ranges 0x00005a28 0xd8 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_ranges 0x00005b00 0x20 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_ranges 0x00005b20 0xa0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_ranges 0x00005bc0 0xd0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_ranges 0x00005c90 0x38 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_ranges 0x00005cc8 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_ranges 0x00005cd8 0x50 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_ranges 0x00005d28 0x60 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_ranges 0x00005d88 0x20 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_ranges 0x00005da8 0x10 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_ranges 0x00005db8 0x90 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_ranges 0x00005e48 0x118 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_ranges 0x00005f60 0x18 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_ranges 0x00005f78 0x18 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_ranges 0x00005f90 0x28 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_ranges 0x00005fb8 0x18 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_ranges 0x00005fd0 0xf0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_ranges 0x000060c0 0x40 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_ranges 0x00006100 0x170 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_ranges 0x00006270 0x190 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_ranges 0x00006400 0x10 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_ranges 0x00006410 0x50 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_ranges 0x00006460 0xf0 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_ranges 0x00006550 0x60 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_ranges 0x000065b0 0x58 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_ranges 0x00006608 0x448 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_ranges 0x00006a50 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_ranges 0x00006a88 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_ranges 0x00006aa0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_ranges 0x00006ab0 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_ranges 0x00006bf0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_ranges 0x00006c00 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_ranges 0x00006c10 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_ranges 0x00006c20 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_ranges 0x00006c50 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_ranges 0x00006c98 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_ranges 0x00006dc0 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_ranges 0x00006e08 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_ranges 0x00006e58 0x60 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_ranges 0x00006eb8 0xc8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_ranges 0x00006f80 0x60 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_ranges 0x00006fe0 0x228 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_ranges 0x00007208 0xc0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_ranges 0x000072c8 0x158 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_ranges 0x00007420 0xd0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_ranges 0x000074f0 0x108 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_ranges 0x000075f8 0x60 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_ranges 0x00007658 0x28 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_ranges 0x00007680 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_ranges 0x00007828 0x240 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_ranges 0x00007a68 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_ranges 0x00007b98 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_ranges 0x00007c90 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_ranges 0x00007cc8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_ranges 0x00007d50 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_ranges 0x00007e08 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_ranges 0x00007e20 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_ranges 0x00007e50 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_ranges 0x00007e68 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_ranges 0x00007e80 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_ranges 0x00007ea8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_ranges 0x00007ed0 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_ranges 0x00007f48 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_ranges 0x00007f60 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_ranges 0x00007fc0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_ranges 0x00007fe8 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_ranges 0x00008060 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_ranges 0x000080c8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_ranges 0x00008128 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_ranges 0x00008180 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x000081d8 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_ranges 0x00008230 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_ranges 0x000082b8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_ranges 0x000082f8 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_ranges 0x00008370 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_ranges 0x00008438 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_ranges 0x00008518 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_ranges 0x000085b8 0x200 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_ranges 0x000087b8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_ranges 0x000087e8 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x00008838 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_ranges 0x000088e0 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_ranges 0x000089b0 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_ranges 0x00008a40 0x2a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_ranges 0x00008ce8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_ranges 0x00008d70 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_ranges 0x00008df0 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_ranges 0x00008e90 0x140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_ranges 0x00008fd0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_ranges 0x00008fe0 0x170 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x00009150 0x128 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_ranges 0x00009278 0x78 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_ranges 0x000092f0 0xb0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_ranges 0x000093a0 0x188 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x00009528 0x58 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_ranges 0x00009580 0xe0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_ranges 0x00009660 0x90 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_ranges 0x000096f0 0x30 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_ranges 0x00009720 0x28 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_ranges 0x00009748 0x10 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_ranges 0x00009758 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_ranges 0x00009770 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_ranges 0x000097e0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_ranges 0x000097f8 0x48 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_ranges 0x00009840 0x338 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_ranges 0x00009b78 0x308 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_ranges 0x00009e80 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_ranges 0x00009f38 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_ranges 0x00009fa0 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_ranges 0x0000a068 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_ranges 0x0000a090 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_ranges 0x0000a110 0x468 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_ranges 0x0000a578 0xd8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_ranges 0x0000a650 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_ranges 0x0000a670 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_ranges 0x0000a6a8 0x70 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_ranges 0x0000a718 0xb8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_ranges 0x0000a7d0 0x50 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_ranges 0x0000a820 0xe8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_ranges 0x0000a908 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_ranges 0x0000a958 0x40 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_ranges 0x0000a998 0x18 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_ranges 0x0000a9b0 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_ranges 0x0000aa68 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_ranges 0x0000aac8 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_ranges 0x0000ab78 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_ranges 0x0000ab98 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_ranges 0x0000abd0 0x1e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_ranges 0x0000adb8 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_ranges 0x0000ae28 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_ranges 0x0000ae98 0x240 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_ranges 0x0000b0d8 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_ranges 0x0000b128 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_ranges 0x0000b198 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_ranges 0x0000b1f8 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_ranges 0x0000b2b0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_ranges 0x0000b2d8 0x230 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_ranges 0x0000b508 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_ranges 0x0000b550 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_ranges 0x0000b678 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_ranges 0x0000b688 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_ranges 0x0000b6a8 0x278 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_ranges 0x0000b920 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_ranges 0x0000b960 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_ranges 0x0000b9e0 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_ranges 0x0000ba70 0x198 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_ranges 0x0000bc08 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_ranges 0x0000bc70 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_ranges 0x0000bd40 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_ranges 0x0000bd80 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_ranges 0x0000bde8 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_ranges 0x0000be68 0xb0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_ranges 0x0000bf18 0x140 esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_ranges 0x0000c058 0x140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_ranges 0x0000c198 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_ranges 0x0000c1c0 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_ranges 0x0000c2a0 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_ranges 0x0000c350 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_ranges 0x0000c398 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_ranges 0x0000c3c8 0x240 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_ranges 0x0000c608 0x10 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_ranges 0x0000c618 0xe0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_ranges 0x0000c6f8 0x17a8 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .debug_ranges 0x0000dea0 0x20 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .debug_ranges 0x0000dec0 0x5a0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .debug_ranges 0x0000e460 0xc60 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .debug_ranges 0x0000f0c0 0xf0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .debug_ranges 0x0000f1b0 0xb0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + +.debug_line 0x00000000 0x1fa3b6 + .debug_line 0x00000000 0x4ad esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_line 0x000004ad 0x2595 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x00002a42 0xf68 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_line 0x000039aa 0xc4c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x000045f6 0xd06 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_line 0x000052fc 0x996 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_line 0x00005c92 0x7a2 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_line 0x00006434 0x1524 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_line 0x00007958 0x5c7 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_line 0x00007f1f 0xd9a esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_line 0x00008cb9 0x2fd esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_line 0x00008fb6 0xa1 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_line 0x00009057 0x1b1 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_line 0x00009208 0xa95 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_line 0x00009c9d 0x400 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_line 0x0000a09d 0x81f esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_line 0x0000a8bc 0xee3 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_line 0x0000b79f 0x40c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_line 0x0000bbab 0xf91 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_line 0x0000cb3c 0xbfb esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_line 0x0000d737 0x7dc esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_line 0x0000df13 0x166 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_line 0x0000e079 0xab5 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_line 0x0000eb2e 0xb65 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_line 0x0000f693 0xc2 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_line 0x0000f755 0x8ed esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_line 0x00010042 0xb37 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_line 0x00010b79 0x360 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_line 0x00010ed9 0x404 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x000112dd 0xa29 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x00011d06 0x160b esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_line 0x00013311 0x994 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_line 0x00013ca5 0x3b0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_line 0x00014055 0xc2a esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x00014c7f 0x984 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_line 0x00015603 0x2038 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x0001763b 0x10a3 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x000186de 0x1366 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x00019a44 0x7473 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_line 0x00020eb7 0xa44 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_line 0x000218fb 0x292 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_line 0x00021b8d 0x1dc esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_line 0x00021d69 0xc3a esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_line 0x000229a3 0x91e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_line 0x000232c1 0x314e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_line 0x0002640f 0x1725 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_line 0x00027b34 0xa87 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_line 0x000285bb 0xe6e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_line 0x00029429 0x4ff esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_line 0x00029928 0x3612 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x0002cf3a 0x16bf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x0002e5f9 0x1436 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x0002fa2f 0x578 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_line 0x0002ffa7 0x9f2 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_line 0x00030999 0x960 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_line 0x000312f9 0xa55 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_line 0x00031d4e 0x3351 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x0003509f 0x95bc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x0003e65b 0x1876 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x0003fed1 0x4e0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x000403b1 0x198 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_line 0x00040549 0x5c4 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_line 0x00040b0d 0x538 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_line 0x00041045 0x46e esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_line 0x000414b3 0x644 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x00041af7 0x489 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_line 0x00041f80 0x6c3 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_line 0x00042643 0x774 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_line 0x00042db7 0xd78 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_line 0x00043b2f 0x2bc esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_line 0x00043deb 0x541 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_line 0x0004432c 0x689 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_line 0x000449b5 0x792 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_line 0x00045147 0xf9c esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_line 0x000460e3 0x5eb esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_line 0x000466ce 0xdc5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x00047493 0x1fc1 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_line 0x00049454 0x526 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_line 0x0004997a 0x394 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_line 0x00049d0e 0x13da esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_line 0x0004b0e8 0x407 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_line 0x0004b4ef 0x5725 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_line 0x00050c14 0xa99 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_line 0x000516ad 0x2e21 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_line 0x000544ce 0x316 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_line 0x000547e4 0x1f14 esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_line 0x000566f8 0x8f2 esp-idf/main/libmain.a(http_control.c.obj) + .debug_line 0x00056fea 0xc82 esp-idf/main/libmain.a(butterworthdesign.c.obj) + .debug_line 0x00057c6c 0xa2d esp-idf/main/libmain.a(button.c.obj) + .debug_line 0x00058699 0x369 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_line 0x00058a02 0xe2 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_line 0x00058ae4 0x69c esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_line 0x00059180 0x96e esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_line 0x00059aee 0x124a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x0005ad38 0x1a9b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x0005c7d3 0xec1 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x0005d694 0x21d esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x0005d8b1 0x1282 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x0005eb33 0x38e8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_line 0x0006241b 0x295 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_line 0x000626b0 0x24b esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_line 0x000628fb 0x5dc6 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_line 0x000686c1 0x2571 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_line 0x0006ac32 0x7fbd esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .debug_line 0x00072bef 0x95f6 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_line 0x0007c1e5 0x11df esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .debug_line 0x0007d3c4 0x2848 esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_line 0x0007fc0c 0xbf9 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .debug_line 0x00080805 0xe6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x000808eb 0x1413 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x00081cfe 0x220a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_line 0x00083f08 0x2a6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_line 0x000841ae 0xfc9 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x00085177 0x289 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_line 0x00085400 0xe8e esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x0008628e 0x1171 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x000873ff 0x5ea esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x000879e9 0x387f esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x0008b268 0x133b esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x0008c5a3 0xfed esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x0008d590 0x5af esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x0008db3f 0x377 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x0008deb6 0x24d1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x00090387 0x4a2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x00090829 0x520 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x00090d49 0x646 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x0009138f 0xbbb esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x00091f4a 0xdc3 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x00092d0d 0x427 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_line 0x00093134 0x810 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_line 0x00093944 0x975 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_line 0x000942b9 0x2a3b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_line 0x00096cf4 0xa80 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_line 0x00097774 0x110 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_line 0x00097884 0x203 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_line 0x00097a87 0x16f0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x00099177 0xba3 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_line 0x00099d1a 0x900 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_line 0x0009a61a 0x1979 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_line 0x0009bf93 0x579 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x0009c50c 0x165e esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_line 0x0009db6a 0x465 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_line 0x0009dfcf 0x173a esp-idf/hal/libhal.a(i2s_hal.c.obj) + .debug_line 0x0009f709 0x97f esp-idf/hal/libhal.a(hal_utils.c.obj) + .debug_line 0x000a0088 0xb4 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_line 0x000a013c 0x204 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_line 0x000a0340 0x213 esp-idf/soc/libsoc.a(i2s_periph.c.obj) + .debug_line 0x000a0553 0x208 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_line 0x000a075b 0x22a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_line 0x000a0985 0x1eb esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_line 0x000a0b70 0x8bf esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_line 0x000a142f 0x20f esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_line 0x000a163e 0x7ef esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_line 0x000a1e2d 0x8c4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_line 0x000a26f1 0x8fb esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_line 0x000a2fec 0x1736 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .debug_line 0x000a4722 0x1511 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_line 0x000a5c33 0x1941 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_line 0x000a7574 0x46d esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x000a79e1 0x68c esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_line 0x000a806d 0x2c85 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_line 0x000aacf2 0x9cf1 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_line 0x000b49e3 0xf90 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_line 0x000b5973 0x81b esp-idf/lwip/liblwip.a(def.c.obj) + .debug_line 0x000b618e 0x292 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_line 0x000b6420 0x5d6 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_line 0x000b69f6 0x4ae esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_line 0x000b6ea4 0x752 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_line 0x000b75f6 0x3321 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_line 0x000ba917 0x2854 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_line 0x000bd16b 0x1d63 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_line 0x000beece 0x5102 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_line 0x000c3fd0 0x48c5 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_line 0x000c8895 0x35ed esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_line 0x000cbe82 0xcb7 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_line 0x000ccb39 0x2d1b esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_line 0x000cf854 0x43be esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_line 0x000d3c12 0x1efc esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_line 0x000d5b0e 0xa61 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_line 0x000d656f 0x17c0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_line 0x000d7d2f 0x1622 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_line 0x000d9351 0xcbd esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_line 0x000da00e 0x722 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_line 0x000da730 0x9f9 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_line 0x000db129 0x24f9 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_line 0x000dd622 0xf72 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_line 0x000de594 0x6d4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_line 0x000dec68 0x15e1 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_line 0x000e0249 0x5472 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_line 0x000e56bb 0x7fa esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_line 0x000e5eb5 0x5c8 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_line 0x000e647d 0x824 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_line 0x000e6ca1 0x8e5 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_line 0x000e7586 0x150f esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_line 0x000e8a95 0x79e esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_line 0x000e9233 0x2b22 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_line 0x000ebd55 0x4a6d esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_line 0x000f07c2 0x2bd esp-idf/lwip/liblwip.a(err.c.obj) + .debug_line 0x000f0a7f 0x99a esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_line 0x000f1419 0x2cf6 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_line 0x000f410f 0xf4f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_line 0x000f505e 0x88b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_line 0x000f58e9 0x72fd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_line 0x000fcbe6 0x57b esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_line 0x000fd161 0x656 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_line 0x000fd7b7 0x4d7 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_line 0x000fdc8e 0x18d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_line 0x000ff564 0x4c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_line 0x000ffa2c 0x491 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_line 0x000ffebd 0x4eb esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_line 0x001003a8 0x48d esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_line 0x00100835 0x1392 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_line 0x00101bc7 0x1e0e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_line 0x001039d5 0xb6f esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_line 0x00104544 0xbb7 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_line 0x001050fb 0xe96 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_line 0x00105f91 0x15c2 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_line 0x00107553 0x9f8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_line 0x00107f4b 0x1894 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_line 0x001097df 0x26a4 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_line 0x0010be83 0x3377 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_line 0x0010f1fa 0x1aed esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_line 0x00110ce7 0x21d6 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_line 0x00112ebd 0x1636 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_line 0x001144f3 0x5b1 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_line 0x00114aa4 0x59bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_line 0x0011a460 0x2b91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_line 0x0011cff1 0x34e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_line 0x001204d4 0xa9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_line 0x00120f71 0x9d7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_line 0x00121948 0x198a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_line 0x001232d2 0x1c30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_line 0x00124f02 0x546 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_line 0x00125448 0x2bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_line 0x00125704 0x256 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_line 0x0012595a 0x5cb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_line 0x00125f25 0x727 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_line 0x0012664c 0x727 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_line 0x00126d73 0x1aa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_line 0x0012881a 0x29f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_line 0x00128ab9 0xa59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_line 0x00129512 0x435 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_line 0x00129947 0x19d3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_line 0x0012b31a 0x1313 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_line 0x0012c62d 0x906 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_line 0x0012cf33 0x19ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_line 0x0012e8e1 0x1226 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x0012fb07 0x1732 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_line 0x00131239 0x1828 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_line 0x00132a61 0x468 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_line 0x00132ec9 0x22ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_line 0x00135177 0x1214 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_line 0x0013638b 0x1221 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_line 0x001375ac 0x18dd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_line 0x00138e89 0x6631 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_line 0x0013f4ba 0x10d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_line 0x0014058a 0x97c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x00140f06 0x1824 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_line 0x0014272a 0xeb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_line 0x001435e0 0x13e6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_line 0x001449c6 0x5c2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_line 0x0014a5f5 0x5f4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_line 0x00150542 0x1239 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_line 0x0015177b 0x1290 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_line 0x00152a0b 0x1a2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_line 0x00154439 0x185 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_line 0x001545be 0x3d30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x001582ee 0x20e7 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_line 0x0015a3d5 0xdcf esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_line 0x0015b1a4 0x16fa esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_line 0x0015c89e 0x2ca2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x0015f540 0x33d esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_line 0x0015f87d 0xb2c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_line 0x001603a9 0x91e esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_line 0x00160cc7 0x813 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_line 0x001614da 0x5a8 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_line 0x00161a82 0x279 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_line 0x00161cfb 0x202 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_line 0x00161efd 0x542 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_line 0x0016243f 0x123e esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_line 0x0016367d 0x188 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_line 0x00163805 0x6b6 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_line 0x00163ebb 0x3871 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_line 0x0016772c 0x4b9a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_line 0x0016c2c6 0x1267 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_line 0x0016d52d 0x9aa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_line 0x0016ded7 0x1d1f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_line 0x0016fbf6 0x50b esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_line 0x00170101 0x11c4 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_line 0x001712c5 0x4936 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_line 0x00175bfb 0x20f7 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_line 0x00177cf2 0x9a5 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_line 0x00178697 0xe62 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_line 0x001794f9 0x8d3 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_line 0x00179dcc 0x1963 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_line 0x0017b72f 0x64a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_line 0x0017bd79 0x2ff4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_line 0x0017ed6d 0xaa2 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_line 0x0017f80f 0x1ef esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_line 0x0017f9fe 0x40c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_line 0x0017fe0a 0x919 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_line 0x00180723 0x405 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_line 0x00180b28 0x1500 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_line 0x00182028 0x9ee esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_line 0x00182a16 0x21f6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_line 0x00184c0c 0x587 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_line 0x00185193 0x1366 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_line 0x001864f9 0x3172 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_line 0x0018966b 0x1629 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_line 0x0018ac94 0xe85 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_line 0x0018bb19 0x5b7b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_line 0x00191694 0x25de esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_line 0x00193c72 0x1191 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_line 0x00194e03 0xbfd esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_line 0x00195a00 0x1e91 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_line 0x00197891 0xa3f esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_line 0x001982d0 0x7a77 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_line 0x0019fd47 0xcff esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_line 0x001a0a46 0x2e71 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_line 0x001a38b7 0x585 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_line 0x001a3e3c 0x8f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_line 0x001a4734 0x63f2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_line 0x001aab26 0x1f4b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_line 0x001aca71 0xd20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_line 0x001ad791 0x2149 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_line 0x001af8da 0x3099 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_line 0x001b2973 0xa62 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_line 0x001b33d5 0xde4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_line 0x001b41b9 0xc42 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_line 0x001b4dfb 0x1291 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_line 0x001b608c 0x15d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_line 0x001b7660 0xaee esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_line 0x001b814e 0x62eb esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_line 0x001be439 0x25db esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_line 0x001c0a14 0x560 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_line 0x001c0f74 0xcf3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_line 0x001c1c67 0x2ce2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_line 0x001c4949 0x13a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_line 0x001c5ceb 0x15cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_line 0x001c72b7 0x403b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_line 0x001cb2f2 0x56b esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_line 0x001cb85d 0x2ef C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_line 0x001cbb4c 0x6a C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_line 0x001cbbb6 0x50 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_line 0x001cbc06 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_line 0x001cbc6c 0x66 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_line 0x001cbcd2 0x83 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_line 0x001cbd55 0x83 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .debug_line 0x001cbdd8 0xdc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_line 0x001cbeb4 0xb7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_line 0x001cbf6b 0x99 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_line 0x001cc004 0x496 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_line 0x001cc49a 0x408 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_line 0x001cc8a2 0x2c9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_line 0x001ccb6b 0x89 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_line 0x001ccbf4 0x8a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_line 0x001ccc7e 0x161 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_line 0x001ccddf 0x3ca C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_line 0x001cd1a9 0x1e9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_line 0x001cd392 0xec C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_line 0x001cd47e 0x481 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_line 0x001cd8ff 0x83 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_line 0x001cd982 0x285 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_line 0x001cdc07 0xf9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_line 0x001cdd00 0x850 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_line 0x001ce550 0x4ebe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .debug_line 0x001d340e 0xb1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .debug_line 0x001d34bf 0x2b35 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .debug_line 0x001d5ff4 0x26ef C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .debug_line 0x001d86e3 0x822 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .debug_line 0x001d8f05 0xdba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .debug_line 0x001d9cbf 0x1b7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .debug_line 0x001d9e76 0x14f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .debug_line 0x001d9fc5 0x28c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .debug_line 0x001da251 0x23c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .debug_line 0x001da48d 0x70d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .debug_line 0x001dab9a 0x983 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .debug_line 0x001db51d 0xda C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .debug_line 0x001db5f7 0x10cc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .debug_line 0x001dc6c3 0x371 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .debug_line 0x001dca34 0x31d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .debug_line 0x001dcd51 0x817 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_line 0x001dd568 0x2d2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_line 0x001dd83a 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_line 0x001dd92f 0x8f3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_line 0x001de222 0x14e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_line 0x001de370 0x19e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .debug_line 0x001de50e 0x27d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .debug_line 0x001de78b 0x410 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .debug_line 0x001deb9b 0x363 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_line 0x001deefe 0x23e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_line 0x001df13c 0x10a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_line 0x001df246 0x21d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_line 0x001df463 0x28c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_line 0x001df6ef 0x95f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_line 0x001e004e 0x2c6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .debug_line 0x001e0314 0x51 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_line 0x001e0365 0x86 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + .debug_line 0x001e03eb 0xb5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_line 0x001e04a0 0x5f5e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_line 0x001e63fe 0x628e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_line 0x001ec68c 0x4510 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_line 0x001f0b9c 0x1c3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .debug_line 0x001f0d5f 0x36b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_line 0x001f10ca 0x191 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .debug_line 0x001f125b 0x180 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_line 0x001f13db 0x1d7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_line 0x001f15b2 0x2318 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_line 0x001f38ca 0x1a9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_line 0x001f3a73 0x2469 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_line 0x001f5edc 0x44da C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_str 0x00000000 0x609cd + .debug_str 0x00000000 0x609cd esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x35e (size before relaxing) + .debug_str 0x000609cd 0x1407 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_str 0x000609cd 0xf5e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_str 0x000609cd 0xbf2 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_str 0x000609cd 0x64f esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_str 0x000609cd 0x466 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_str 0x000609cd 0x73b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_str 0x000609cd 0x3005 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_str 0x000609cd 0x42b esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_str 0x000609cd 0xce4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_str 0x000609cd 0x961 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_str 0x000609cd 0x9c esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_str 0x000609cd 0x91 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_str 0x000609cd 0x32db esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_str 0x000609cd 0x9a3 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_str 0x000609cd 0x2bc7 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_str 0x000609cd 0x31e8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_str 0x000609cd 0x950 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_str 0x000609cd 0x2c15 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_str 0x000609cd 0x2a6d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_str 0x000609cd 0x1fe3 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_str 0x000609cd 0x9b esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_str 0x000609cd 0x57b esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_str 0x000609cd 0x459 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_str 0x000609cd 0x99 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_str 0x000609cd 0x2139 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_str 0x000609cd 0xb86 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_str 0x000609cd 0x930 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_str 0x000609cd 0x17c9 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x000609cd 0x191b esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x000609cd 0x244d esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_str 0x000609cd 0xa63 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_str 0x000609cd 0x1683 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_str 0x000609cd 0x617 esp-idf/log/liblog.a(log.c.obj) + .debug_str 0x000609cd 0xbf1 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_str 0x000609cd 0x106b esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_str 0x000609cd 0xd91 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_str 0x000609cd 0x951 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_str 0x000609cd 0x9e4 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_str 0x000609cd 0xb9b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_str 0x000609cd 0xbc3 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_str 0x000609cd 0x28a esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_str 0x000609cd 0xc3f esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_str 0x000609cd 0x107b esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_str 0x000609cd 0x15fd esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_str 0x000609cd 0xf49 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_str 0x000609cd 0x1f0c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_str 0x000609cd 0x16ca esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_str 0x000609cd 0x595 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_str 0x000609cd 0x31d9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_str 0x000609cd 0x1826 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_str 0x000609cd 0x1e2f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_str 0x000609cd 0x17aa esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_str 0x000609cd 0x1719 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_str 0x000609cd 0xbc1 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_str 0x000609cd 0x5f7 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_str 0x000609cd 0xea8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_str 0x000609cd 0x2910 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_str 0x000609cd 0x1678 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_str 0x000609cd 0x9c esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_str 0x000609cd 0x2a7 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_str 0x000609cd 0x39a esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_str 0x000609cd 0x857 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_str 0x000609cd 0x35b esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_str 0x000609cd 0x3a3 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_str 0x000609cd 0x2cf esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_str 0x000609cd 0x36f esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_str 0x000609cd 0x809 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_str 0x000609cd 0xfb7 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_str 0x000609cd 0x312 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_str 0x000609cd 0x68a esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_str 0x000609cd 0xab9 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_str 0x000609cd 0x8df esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_str 0x000609cd 0x111d esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_str 0x000609cd 0xf3f esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_str 0x000609cd 0x1221 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_str 0x000609cd 0x14d1 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_str 0x000609cd 0x411 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_str 0x000609cd 0x9fc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_str 0x000609cd 0x1a21 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_str 0x000609cd 0xa60 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_str 0x000609cd 0x13cf esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_str 0x000609cd 0x10d6 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_str 0x000609cd 0x1fbb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_str 0x000609cd 0x34a esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_str 0x000609cd 0x3928 esp-idf/main/libmain.a(station_example_main.c.obj) + .debug_str 0x000609cd 0x116e esp-idf/main/libmain.a(http_control.c.obj) + .debug_str 0x000609cd 0xe2f esp-idf/main/libmain.a(butterworthdesign.c.obj) + .debug_str 0x000609cd 0xfc7 esp-idf/main/libmain.a(button.c.obj) + .debug_str 0x000609cd 0x81 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_str 0x000609cd 0x99 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_str 0x000609cd 0x3db esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_str 0x000609cd 0x81 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_str 0x000609cd 0xe6a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x000609cd 0x10f9 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x000609cd 0x233e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x000609cd 0x159e esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x000609cd 0xe35 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x000609cd 0x168d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_str 0x000609cd 0x3a3 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_str 0x000609cd 0x311 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_str 0x000609cd 0x2247 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_str 0x000609cd 0x17d0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_str 0x000609cd 0x4e9d esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + .debug_str 0x000609cd 0x37b6 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_str 0x000609cd 0x1ee2 esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + .debug_str 0x000609cd 0x3c6b esp-idf/driver/libdriver.a(adc_legacy.c.obj) + .debug_str 0x000609cd 0x1b92 esp-idf/driver/libdriver.a(i2s_platform.c.obj) + .debug_str 0x000609cd 0x28a esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_str 0x000609cd 0x2bdd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_str 0x000609cd 0x13e1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_str 0x000609cd 0x16b6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_str 0x000609cd 0xe50 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_str 0x000609cd 0x341 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_str 0x000609cd 0x866 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_str 0x000609cd 0xb5a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_str 0x000609cd 0x5e2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_str 0x000609cd 0x2f0d esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_str 0x000609cd 0x3287 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_str 0x000609cd 0xc77 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_str 0x000609cd 0x7e5 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_str 0x000609cd 0x990 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_str 0x000609cd 0x1b38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_str 0x000609cd 0xcdf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_str 0x000609cd 0x138e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_str 0x000609cd 0xd2d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_str 0x000609cd 0xdbc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_str 0x000609cd 0x29ae esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_str 0x000609cd 0x343 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_str 0x000609cd 0xb65 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_str 0x000609cd 0xda5 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_str 0x000609cd 0x13bd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_str 0x000609cd 0x2d17 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_str 0x000609cd 0x99 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_str 0x000609cd 0x2ee esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_str 0x000609cd 0x688 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_str 0x000609cd 0xb75 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_str 0x000609cd 0x266d esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_str 0x000609cd 0x20f7 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_str 0x000609cd 0x49b esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_str 0x000609cd 0x13cc esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_str 0x000609cd 0x5c4 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_str 0x000609cd 0x1897 esp-idf/hal/libhal.a(i2s_hal.c.obj) + .debug_str 0x000609cd 0x3fb esp-idf/hal/libhal.a(hal_utils.c.obj) + .debug_str 0x000609cd 0x8a9 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_str 0x000609cd 0x906 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_str 0x000609cd 0xc6a esp-idf/soc/libsoc.a(i2s_periph.c.obj) + .debug_str 0x000609cd 0x933 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_str 0x000609cd 0x2ab esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_str 0x000609cd 0x310 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_str 0x000609cd 0xd75 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_str 0x000609cd 0x2c3 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_str 0x000609cd 0x101f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_str 0x000609cd 0x686 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_str 0x000609cd 0xf29 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + .debug_str 0x000609cd 0x1210 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + .debug_str 0x000609cd 0x988 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_str 0x000609cd 0x1810 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_str 0x000609cd 0xbaf esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_str 0x000609cd 0xc2d esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_str 0x000609cd 0x16ed esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_str 0x000609cd 0x25e1 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_str 0x000609cd 0x12f7 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_str 0x000609cd 0x331 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_str 0x000609cd 0x2c5 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_str 0x000609cd 0xfe8 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_str 0x000609cd 0x31f esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_str 0x000609cd 0xce8 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_str 0x000609cd 0x165a esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_str 0x000609cd 0x155c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_str 0x000609cd 0x134b esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_str 0x000609cd 0x1978 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_str 0x000609cd 0x1799 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_str 0x000609cd 0xf71 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_str 0x000609cd 0x110b esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_str 0x000609cd 0x14e4 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_str 0x000609cd 0x1b52 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_str 0x000609cd 0x1424 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_str 0x000609cd 0x914 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_str 0x000609cd 0x113a esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_str 0x000609cd 0x145f esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_str 0x000609cd 0xe51 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_str 0x000609cd 0x730 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_str 0x000609cd 0xbaa esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_str 0x000609cd 0xbc3 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_str 0x000609cd 0xabc esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_str 0x000609cd 0x784 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_str 0x000609cd 0x13cd esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_str 0x000609cd 0x1aa0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_str 0x000609cd 0xfdc esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_str 0x000609cd 0xc6e esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_str 0x000609cd 0x914 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_str 0x000609cd 0xa2b esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_str 0x000609cd 0x1104 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_str 0x000609cd 0x9b6 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_str 0x000609cd 0x12fe esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_str 0x000609cd 0x1f83 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_str 0x000609cd 0x8e9 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_str 0x000609cd 0x657 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_str 0x000609cd 0x12e9 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_str 0x000609cd 0x4d0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_str 0x000609cd 0x464 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_str 0x000609cd 0x39f4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_str 0x000609cd 0xdd4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_str 0x000609cd 0x33e esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_str 0x000609cd 0x2ea esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_str 0x000609cd 0x178a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_str 0x000609cd 0x2a5 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_str 0x000609cd 0x2ca esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_str 0x000609cd 0x2c7 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_str 0x000609cd 0x36c esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_str 0x000609cd 0x410 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_str 0x000609cd 0x5a9 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_str 0x000609cd 0x540 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_str 0x000609cd 0x3bc esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_str 0x000609cd 0x1bb2 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_str 0x000609cd 0x19f3 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_str 0x000609cd 0xd0c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_str 0x000609cd 0x2086 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_str 0x000609cd 0x1406 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_str 0x000609cd 0x1b58 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_str 0x000609cd 0x1945 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_str 0x000609cd 0x18c0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_str 0x000609cd 0x151f esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_str 0x000609cd 0x4ce esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_str 0x000609cd 0xfd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_str 0x000609cd 0x9ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_str 0x000609cd 0x1a1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_str 0x000609cd 0x1bcf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_str 0x000609cd 0x46b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_str 0x000609cd 0x12fd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_str 0x000609cd 0x10a7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_str 0x000609cd 0x393 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_str 0x000609cd 0x354 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_str 0x000609cd 0x2ab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_str 0x000609cd 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_str 0x000609cd 0x4c3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_str 0x000609cd 0x4c3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_str 0x000609cd 0x5ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_str 0x000609cd 0x2ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_str 0x000609cd 0x42c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_str 0x000609cd 0x2ee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_str 0x000609cd 0xefd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_str 0x000609cd 0x661 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_str 0x000609cd 0x661 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_str 0x000609cd 0x507 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_str 0x000609cd 0x534 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_str 0x000609cd 0x53d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_str 0x000609cd 0xd76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_str 0x000609cd 0x385 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_str 0x000609cd 0x580 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_str 0x000609cd 0x5a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_str 0x000609cd 0x629 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_str 0x000609cd 0x9ea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_str 0x000609cd 0x1370 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_str 0x000609cd 0x4e6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_str 0x000609cd 0xf40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_str 0x000609cd 0xb5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_str 0x000609cd 0xa2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_str 0x000609cd 0xc14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_str 0x000609cd 0x1263 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_str 0x000609cd 0x2dd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_str 0x000609cd 0xb7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_str 0x000609cd 0xbad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_str 0x000609cd 0x15be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_str 0x000609cd 0x284 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_str 0x000609cd 0xee5 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_str 0x000609cd 0x1225 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_str 0x000609cd 0xf41 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_str 0x000609cd 0x170e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_str 0x000609cd 0x1ec7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_str 0x000609cd 0x327 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_str 0x000609cd 0x1180 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_str 0x000609cd 0x634 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_str 0x000609cd 0x480 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_str 0x000609cd 0x419 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_str 0x000609cd 0x2af esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_str 0x000609cd 0x8e0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_str 0x000609cd 0x35b esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_str 0x000609cd 0x72b esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_str 0x000609cd 0x254 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_str 0x000609cd 0x4fc esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_str 0x000609cd 0x8f43 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_str 0x000609cd 0x8751 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_str 0x000609cd 0x6fbb esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_str 0x000609cd 0x1118 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_str 0x000609cd 0x844e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_str 0x000609cd 0x51c esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_str 0x000609cd 0x24c6 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_str 0x000609cd 0x35cc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_str 0x000609cd 0x5534 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_str 0x000609cd 0x16af esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_str 0x000609cd 0x22d2 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_str 0x000609cd 0x3d1 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_str 0x000609cd 0xd03 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_str 0x000609cd 0x60e esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_str 0x000609cd 0x1d31 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_str 0x000609cd 0xf53 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_str 0x000609cd 0x5a3 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_str 0x000609cd 0xfa7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_str 0x000609cd 0x770 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_str 0x000609cd 0x437 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_str 0x000609cd 0x4161 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_str 0x000609cd 0x185f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_str 0x000609cd 0x3036 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_str 0x000609cd 0xb2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_str 0x000609cd 0x2c73 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_str 0x000609cd 0x1836 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_str 0x000609cd 0x160e esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_str 0x000609cd 0xcae esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_str 0x000609cd 0x31be esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_str 0x000609cd 0xef6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_str 0x000609cd 0x683 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_str 0x000609cd 0x1b07 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_str 0x000609cd 0x156e esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_str 0x000609cd 0x486 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_str 0x000609cd 0x130d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_str 0x000609cd 0x5dd esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_str 0x000609cd 0x89c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_str 0x000609cd 0x2f3 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_str 0x000609cd 0xa94 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_str 0x000609cd 0x2cec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_str 0x000609cd 0xb2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_str 0x000609cd 0x40f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_str 0x000609cd 0x129d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_str 0x000609cd 0x3218 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_str 0x000609cd 0xbc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_str 0x000609cd 0x71a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_str 0x000609cd 0xa1a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_str 0x000609cd 0x70d esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_str 0x000609cd 0xc0a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_str 0x000609cd 0x103a esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_str 0x000609cd 0x134e esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + .debug_str 0x000609cd 0x11fb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_str 0x000609cd 0x694 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_str 0x000609cd 0xbef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_str 0x000609cd 0x1afc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_str 0x000609cd 0x10ab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_str 0x000609cd 0x3eb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_str 0x000609cd 0x4929 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_str 0x000609cd 0x701 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_str 0x000609cd 0x82 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_str 0x000609cd 0x100 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_str 0x000609cd 0xf9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .debug_str 0x000609cd 0x187 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_str 0x000609cd 0x159 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_str 0x000609cd 0x2a9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_str 0x000609cd 0xb10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_str 0x000609cd 0xcd4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_str 0x000609cd 0x915 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_str 0x000609cd 0x116 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_str 0x000609cd 0x77b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_str 0x000609cd 0x433 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_str 0x000609cd 0x965 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_str 0x000609cd 0x4a1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_str 0x000609cd 0x212 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_str 0x000609cd 0x8e0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_str 0x000609cd 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_str 0x000609cd 0x98f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_str 0x000609cd 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_str 0x000609cd 0x1077 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_str 0x000609cd 0x2a6e C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + .debug_str 0x000609cd 0x24f C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + .debug_str 0x000609cd 0x1d04 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + .debug_str 0x000609cd 0x1a76 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + .debug_str 0x000609cd 0xabe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + .debug_str 0x000609cd 0xb67 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + .debug_str 0x000609cd 0x18a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .debug_str 0x000609cd 0x17d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .debug_str 0x000609cd 0x18b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .debug_str 0x000609cd 0x18b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .debug_str 0x000609cd 0x1b6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .debug_str 0x000609cd 0x225 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .debug_str 0x000609cd 0x159 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .debug_str 0x000609cd 0x1bb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .debug_str 0x000609cd 0x175 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .debug_str 0x000609cd 0x1a4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .debug_str 0x000609cd 0x775 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_str 0x000609cd 0x5fc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_str 0x000609cd 0x4fd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_str 0x000609cd 0x582 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_str 0x000609cd 0x4dd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_str 0x000609cd 0x533 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .debug_str 0x000609cd 0x5c2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .debug_str 0x000609cd 0x558 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .debug_str 0x000609cd 0x544 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_str 0x000609cd 0x536 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_str 0x000609cd 0x53b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_str 0x000609cd 0x546 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_str 0x000609cd 0x50f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_str 0x000609cd 0x727 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_str 0x000609cd 0x4ff C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .debug_str 0x000609cd 0x4df C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_str 0x000609cd 0x4d9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + .debug_str 0x000609cd 0x549 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_str 0x000609cd 0xc7c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_str 0x000609cd 0xd80 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_str 0x000609cd 0xc77 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_str 0x000609cd 0x4d9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .debug_str 0x000609cd 0x671 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_str 0x000609cd 0x778 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .debug_str 0x000609cd 0x724 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_str 0x000609cd 0x178 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_str 0x000609cd 0x899 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_str 0x000609cd 0x706 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_str 0x000609cd 0x7f4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_str 0x000609cd 0xb98 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_rnglists + 0x00000000 0x617 + .debug_rnglists + 0x00000000 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_rnglists + 0x00000013 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .debug_rnglists + 0x00000026 0x19 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_rnglists + 0x0000003f 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_rnglists + 0x00000052 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_rnglists + 0x00000065 0x46 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_rnglists + 0x000000ab 0x4f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_rnglists + 0x000000fa 0x3d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_rnglists + 0x00000137 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_rnglists + 0x0000014a 0x1f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_rnglists + 0x00000169 0x3d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_rnglists + 0x000001a6 0x2b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_rnglists + 0x000001d1 0x1f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_rnglists + 0x000001f0 0x4c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_rnglists + 0x0000023c 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_rnglists + 0x0000024f 0x55 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_rnglists + 0x000002a4 0x47 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .debug_rnglists + 0x000002eb 0x27 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .debug_rnglists + 0x00000312 0x19 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .debug_rnglists + 0x0000032b 0x2a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .debug_rnglists + 0x00000355 0x42 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_rnglists + 0x00000397 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_rnglists + 0x000003aa 0x1c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_rnglists + 0x000003c6 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .debug_rnglists + 0x000003d9 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_rnglists + 0x00000401 0x5a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_rnglists + 0x0000045b 0x7a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_rnglists + 0x000004d5 0x70 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_rnglists + 0x00000545 0x13 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_rnglists + 0x00000558 0x1c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_rnglists + 0x00000574 0x43 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_rnglists + 0x000005b7 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_line_str + 0x00000000 0x25ef + .debug_line_str + 0x00000000 0x25ef C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + 0x2cb (size before relaxing) + .debug_line_str + 0x000025ef 0x2ce C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + .debug_line_str + 0x000025ef 0x2d7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_line_str + 0x000025ef 0x2d1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_line_str + 0x000025ef 0x455 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_line_str + 0x000025ef 0x548 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_line_str + 0x000025ef 0x67d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_line_str + 0x000025ef 0x554 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_line_str + 0x000025ef 0x2cb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_line_str + 0x000025ef 0x55d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_line_str + 0x000025ef 0x4fc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_line_str + 0x000025ef 0x41d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_line_str + 0x000025ef 0x3f6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_line_str + 0x000025ef 0x374 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_line_str + 0x000025ef 0x414 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_line_str + 0x000025ef 0x2cb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_line_str + 0x000025ef 0x457 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_line_str + 0x000025ef 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_line_str + 0x000025ef 0x2fc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .debug_line_str + 0x000025ef 0x2fc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .debug_line_str + 0x000025ef 0x2a9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .debug_line_str + 0x000025ef 0x2a9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .debug_line_str + 0x000025ef 0x2fc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .debug_line_str + 0x000025ef 0x30b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .debug_line_str + 0x000025ef 0x2ff C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .debug_line_str + 0x000025ef 0x29d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .debug_line_str + 0x000025ef 0x302 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .debug_line_str + 0x000025ef 0x2a4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .debug_line_str + 0x000025ef 0x33c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_line_str + 0x000025ef 0x32f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_line_str + 0x000025ef 0x315 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_line_str + 0x000025ef 0x337 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_line_str + 0x000025ef 0x315 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_line_str + 0x000025ef 0x32c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .debug_line_str + 0x000025ef 0x337 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .debug_line_str + 0x000025ef 0x329 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .debug_line_str + 0x000025ef 0x33a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_line_str + 0x000025ef 0x337 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_line_str + 0x000025ef 0x32f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_line_str + 0x000025ef 0x33d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_line_str + 0x000025ef 0x329 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_line_str + 0x000025ef 0x3cf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_line_str + 0x000025ef 0x316 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .debug_line_str + 0x000025ef 0x2bb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_line_str + 0x000025ef 0x2c9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + .debug_line_str + 0x000025ef 0x39e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_line_str + 0x000025ef 0x476 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_line_str + 0x000025ef 0x47e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_line_str + 0x000025ef 0x46e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_line_str + 0x000025ef 0x2c1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .debug_line_str + 0x000025ef 0x3b7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_line_str + 0x000025ef 0x3c0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .debug_line_str + 0x000025ef 0x33b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_line_str + 0x000025ef 0x302 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_line_str + 0x000025ef 0x420 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_line_str + 0x000025ef 0x3ad C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_line_str + 0x000025ef 0x423 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_line_str + 0x000025ef 0x466 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + +.debug_loclists + 0x00000000 0xe425 + .debug_loclists + 0x00000000 0x36 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_loclists + 0x00000036 0x40 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_loclists + 0x00000076 0x1b9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_loclists + 0x0000022f 0x117 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_loclists + 0x00000346 0x60 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_loclists + 0x000003a6 0x29 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_loclists + 0x000003cf 0x5e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_loclists + 0x0000042d 0xd4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_loclists + 0x00000501 0x96 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_loclists + 0x00000597 0x29 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_loclists + 0x000005c0 0x116 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_loclists + 0x000006d6 0x88 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_loclists + 0x0000075e 0x7b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + .debug_loclists + 0x000007d9 0x56 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + .debug_loclists + 0x0000082f 0xf1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + .debug_loclists + 0x00000920 0x9e C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + .debug_loclists + 0x000009be 0x463 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + .debug_loclists + 0x00000e21 0x256 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + .debug_loclists + 0x00001077 0x19 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + .debug_loclists + 0x00001090 0x624 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + .debug_loclists + 0x000016b4 0xe3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + .debug_loclists + 0x00001797 0xef C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + .debug_loclists + 0x00001886 0x13c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + .debug_loclists + 0x000019c2 0x61 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + .debug_loclists + 0x00001a23 0x5c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + .debug_loclists + 0x00001a7f 0x34b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + .debug_loclists + 0x00001dca 0x4a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + .debug_loclists + 0x00001e14 0x54 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + .debug_loclists + 0x00001e68 0x7c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + .debug_loclists + 0x00001ee4 0xe1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + .debug_loclists + 0x00001fc5 0x7b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + .debug_loclists + 0x00002040 0x51 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + .debug_loclists + 0x00002091 0x44 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + .debug_loclists + 0x000020d5 0x4a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + .debug_loclists + 0x0000211f 0x2f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + .debug_loclists + 0x0000214e 0x1bd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + .debug_loclists + 0x0000230b 0x2a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + .debug_loclists + 0x00002335 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + .debug_loclists + 0x00002359 0x2ecf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + .debug_loclists + 0x00005228 0x2f33 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + .debug_loclists + 0x0000815b 0x1d01 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + .debug_loclists + 0x00009e5c 0xa6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + .debug_loclists + 0x00009f02 0x82 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + .debug_loclists + 0x00009f84 0x3c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + .debug_loclists + 0x00009fc0 0x48 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + .debug_loclists + 0x0000a008 0x86 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + .debug_loclists + 0x0000a08e 0x1289 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + .debug_loclists + 0x0000b317 0x82 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + .debug_loclists + 0x0000b399 0x10ed C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + .debug_loclists + 0x0000c486 0x1f9f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + +Cross Reference Table + +Symbol File +APRecvBcnStartTick C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ApFreqCalTimer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +BAROFDMSched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +BT_init_rx_filters C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +BT_tx_8m_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +BT_tx_if_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +BasicOFDMSched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +BcnInterval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +BcnSendTick C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +Cache_Flush_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Read_Disable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Read_Enable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +CanDoFreqCal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +CompressedEnumTable::set(unsigned int, bool) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +CompressedEnumTable::set(unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +CurFreeSigIdx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +CurSigIdxToBeUse C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +DefFreqCalTimer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +DefFreqCalTimerCB C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +EFUSE esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +ESP_EFUSE_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_RATED esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_PACKAGE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_CHIP_PACKAGE_4BIT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +ESP_EFUSE_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_SDIO_HOST esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +ESP_EFUSE_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +ESP_EFUSE_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +ESP_EFUSE_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_HD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_HTTP_SERVER_EVENT esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +FreeRTOS_openocd_params esp-idf/freertos/libfreertos.a(tasks.c.obj) +GPIO esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +GPIO_HOLD_MASK esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +GPIO_PIN_MUX_REG esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +GPIO_PIN_MUX_REG_OFFSET esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +GetAccess C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +HighestFreqOffsetInOneChk C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +I2S0 esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_platform.c.obj) +I2S1 esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_platform.c.obj) +IP_EVENT esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +LowestFreqOffsetInOneChk C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +MESH_EVENT esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) +MPI_LL_BLOCK_BASES esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) +MPI_LL_OPERATIONS esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) +NAN_ACTION_OUI C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +NAN_NETWORK_ID C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +NAN_STANDARD_BSSID C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +NAN_STANDARD_OUI C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +NVSHandleEntry::s_nvs_next_handle esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +NVSHandleEntry::~NVSHandleEntry() esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +NVSHandleEntry::~NVSHandleEntry() esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +NoiseTimerInterval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetAckRate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) +RC_GetAckTime C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetBlockAckTime C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetCtsTime C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetRtsRate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) +RC_SetBasicRate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +RFChannelSel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) +RTCCNTL esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +RTCIO esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +RxNodeNum C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SENS esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +SPI0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SPI1 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SPI2 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +SPI3 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +SYSCON esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) +SigInMacISR C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SigSpaceFree C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SigSpaceMalloc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +TIMERG0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +TIMERG1 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +TRC_AMPDU_PER_DOWN_THRESHOLD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +TRC_AMPDU_PER_UP_THRESHOLD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +TRC_PER_IS_GOOD C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +TmpSTAAPCloseAP C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +TxNodeNum C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +TxRxCxt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +UART0 esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +UART1 esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) +UART2 esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) +WIFI_EVENT esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +WIFI_MESH_EVENT C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +Xthal_intlevel C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_Balloc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +_Bfree C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +_DebugExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_DoubleExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_ITM_deregisterTMCloneTable C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +_ITM_registerTMCloneTable C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +_KernelExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level2Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level3Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level4Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level5Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_NMIExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_PathLocale C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) +_UserExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow12 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow4 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow8 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow12 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow4 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow8 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +__DTOR_END__ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +__TMC_END__ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +__action_table C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) +__adddf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__any_on C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) +__ascii_mbtowc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) +__ascii_wctomb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) +__assert esp-idf/newlib/libnewlib.a(assert.c.obj) +__assert_func esp-idf/newlib/libnewlib.a(assert.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/hal/libhal.a(hal_utils.c.obj) + esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +__b2d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) +__bswapdi2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +__bswapsi2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +__chclass C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) +__copybits C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) +__cxa_begin_catch C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) +__cxa_end_catch C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) +__cxa_get_exception_ptr C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +__cxa_get_globals C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +__cxa_get_globals_fast C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +__cxa_guard_abort esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_acquire esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_dummy esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_release esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_pure_virtual C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +__cxx_eh_arena_size_get esp-idf/esp_system/libesp_system.a(startup.c.obj) +__cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__si_class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__terminate(void (*)()) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__terminate_handler C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__unexpected(void (*)()) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__unexpected_handler C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +__d2b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +__default_global_locale C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) +__divdf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__divdi3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__divsf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__eh_globals_init::_S_init C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) +__env_lock C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) +__env_lock_object esp-idf/newlib/libnewlib.a(locks.c.obj) +__env_unlock C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) +__eqdf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) +__errno C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +__extendsfdf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__ffsdi2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ffsdi2.o) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +__fixdfsi C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fixunsdfsi C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatdisf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) +__floatsidf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatundisf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatdisf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +__floatunsidf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fp_lock_all C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) +__fp_unlock_all C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) +__frame_state_for(void*, frame_state*) esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__gedf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) +__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-errno.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +__gettzinfo C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gettzinfo.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) +__global_locale_ptr C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +__gtdf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +__hi0bits C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +__hide_aliasing_typecast esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +__i2b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +__ieee754_rem_pio2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) +__init_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +__init_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +__itoa C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) +__kernel_cos C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) +__kernel_rem_pio2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) +__kernel_sin C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) +__kernel_tan C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) +__ledf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) +__lo0bits C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) +__locale_mb_cur_max C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +__localeconv_l C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) +__lock___arc4random_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___at_quick_exit_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___atexit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___dd_hash_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___env_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) +__lock___malloc_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___sfp_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) +__lock___sinit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___tz_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) +__lshift C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +__ltdf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) +__mcmp C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +__mdiff C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +__moddi3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__month_lengths C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-month_lengths.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) +__mprec_bigtens C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +__mprec_tens C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +__mprec_tinytens C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) +__muldf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__multadd C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +__multiply C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +__nedf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) +__popcountsi2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__pow5mult C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) +__ratio C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) +__retarget_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) +__retarget_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) +__retarget_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) +__retarget_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) +__retarget_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) +__retarget_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) +__retarget_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) +__retarget_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-envlock.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) +__retarget_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) +__retarget_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) +__s2b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) +__sccl C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sccl.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +__sclose C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) +__seofread C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) +__sf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) +__sflags C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-flags.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) +__sflush_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) +__sfp C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) +__sfp_lock esp-idf/newlib/libnewlib.a(locks.c.obj) +__sfp_lock_acquire C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) +__sfp_lock_release C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) +__sfvwrite_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) +__sglue C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) +__sinit C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__sinit_lock esp-idf/newlib/libnewlib.a(locks.c.obj) +__smakebuf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) +__sprint_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) +__sread C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) +__srefill_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) +__sseek C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) +__ssprint_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) +__ssrefill_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +__ssvfiscanf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) +__state_table C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) +__stdio_exit_handler C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) +__strtok_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) +__subdf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_sin.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_cos.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + esp-idf/main/libmain.a(butterworthdesign.c.obj) +__submore C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +__swbuf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) +__swbuf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) +__swhatbuf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) +__swrite C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) +__swsetup_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__truncdfsf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + esp-idf/main/libmain.a(butterworthdesign.c.obj) +__tz_lock C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) +__tz_lock_object esp-idf/newlib/libnewlib.a(locks.c.obj) +__tz_unlock C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzlock.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) +__tzcalc_limits C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzcalc_limits.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) +__ubsan_handle_add_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_builtin_unreachable esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_divrem_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_invalid_builtin esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_load_invalid_value esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_missing_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_mul_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_negate_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_nonnull_arg esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_nonnull_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_pointer_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_shift_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_sub_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_type_mismatch esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_type_mismatch_v1 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_vla_bound_not_positive esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_include esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__udivdi3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/hal/libhal.a(hal_utils.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +__ulp C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) +__umoddi3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +__unorddf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) +__utoa C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) +__wpa_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +__wrap__Unwind_Backtrace esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_DeleteException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +__wrap__Unwind_FindEnclosingFunction esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_Find_FDE esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_ForcedUnwind esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetCFA esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetDataRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetGR esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetIP esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetIPInfo esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetLanguageSpecificData esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetRegionStart esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetTextRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_RaiseException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_Resume esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_Resume_or_Rethrow esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_SetEnableExceptionFdeSorting esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_SetGR esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_SetIP esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___cxa_allocate_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +__wrap___cxa_call_unexpected esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___cxa_throw esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +__wrap___deregister_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___deregister_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +__wrap___deregister_frame_info_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___gxx_personality_v0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) +__wrap___register_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +__wrap___register_frame_info_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_info_table esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_info_table_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_table esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +_atoi_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) +_binary_x509_crt_bundle_end esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +_binary_x509_crt_bundle_start esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_calloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_cnx_start_connect_without_scan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +_ctype_ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ctype_.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) +_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_daylight C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) +_do_wifi_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +_do_wifi_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +_dtoa_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) +_esp_error_check_failed esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +_esp_error_check_failed_without_abort esp-idf/esp_system/libesp_system.a(esp_err.c.obj) +_esp_system_init_fn_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +_esp_system_init_fn_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +_exit esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fclose_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fflush_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) +_fgets_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) +_findenv_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) +_fini C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o +_flash_rodata_align esp-idf/freertos/libfreertos.a(port.c.obj) +_flash_rodata_start esp-idf/freertos/libfreertos.a(port.c.obj) +_fopen_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) +_fprintf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) +_fputc_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) +_fputs_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) +_fread_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) +_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wsetup.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_frxt_coproc_exc_hook esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_dispatch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_int_enter esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_setup_switch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_frxt_task_coproc_state esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_frxt_tick_timer_init esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_frxt_timer_int esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_fseek_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) +_fseeko_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) +_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_ftell_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) +_ftello_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) +_fwalk_sglue C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwalk.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) +_fwrite_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) +_g_esp_netif_inherent_ap_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_inherent_eth_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) +_g_esp_netif_inherent_sta_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_netstack_default_eth esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +_g_esp_netif_netstack_default_wifi_ap esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_netstack_default_wifi_nan esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +_g_esp_netif_netstack_default_wifi_sta esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_soft_ap_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) +_getenv_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) +_getpid_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_gettimeofday_r esp-idf/newlib/libnewlib.a(time.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_global_impure_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_i2s_hal_set_rx_clock esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +_i2s_hal_set_tx_clock esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +_impure_data C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-refill.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_impure_ptr C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) +_init C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o +_instruction_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_instruction_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_invalid_pc_placeholder esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +_iram_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_iram_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_isatty_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) +_kill_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_link_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_localeconv_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) +_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_malloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-makebuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_mbrtowc_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +_mbtowc_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbtowc_r.o) +_mesh_check_roots_gone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_check_window_close_expire C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_check_window_open_expire C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_find_root_competitor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +_mesh_remove_gone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_reset_window_open_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_num_reach_max C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_announce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_conflict_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_fixed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_gone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_yield C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_set_flag_roots_found C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_announce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_conflict_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_fixed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_gone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_yield C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mprec_log10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) +_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_print_roots_count C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_printf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) +_putc_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) +_putchar_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) +_puts_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) +_raise_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_read_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_read_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_realloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_reclaim_reent C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_remove_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) +_rename_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_rodata_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_rodata_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_rtc_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_fast_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_fast_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_reserved_length esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +_rtc_slow_length esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +_rtc_slow_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_slow_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_sbrk_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_setlocale_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) +_sfread_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +_siscanf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) +_snprintf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) +_sprintf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) +_start C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o +_stat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_strdup_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) +_strerror_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) +_strtol_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) +_strtoll_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +_strtoul_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +_strtoull_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +_sungetc_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +_svfiprintf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) +_svfprintf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) +_system_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_thread_local_end esp-idf/freertos/libfreertos.a(port.c.obj) +_thread_local_start esp-idf/freertos/libfreertos.a(port.c.obj) +_times_r esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_timezone C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) +_tzname C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzvars.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) +_tzset_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) +_tzset_unlocked C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) +_tzset_unlocked_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) +_ungetc_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) +_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_user_strerror C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-u_strerr.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) +_vector_table esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_vfiprintf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) +_vfprintf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) +_vprintf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) +_vsnprintf_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) +_wctomb_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-wctomb_r.o) +_wifi_vnd_ext_mesh_roots_free C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_wifi_vnd_ext_mesh_roots_malloc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_write_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_write_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_xt_alloca_exc esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_context_restore esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +_xt_context_save esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +_xt_coproc_init esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_owner_sa esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_owner_sa_lock esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_release esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_restorecs esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_coproc_sa_offset esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_savecs esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_exception_table esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_xt_interrupt_table esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_xt_medint2_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_medint3_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_panic esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_tick_divisor esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_tick_divisor_init esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_xt_user_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xtos_set_intlevel esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +abort esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +abort_expect_void esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +abort_expect_void_and_return esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +access esp-idf/vfs/libvfs.a(vfs.c.obj) +action_q C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +adc1_amp_read C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +adc1_amp_read_full C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +adc1_config_channel_atten esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc1_config_width esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc1_dma_mode_acquire esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +adc1_get_raw esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc1_get_voltage esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc1_lock_release esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +adc1_pad_get_io_num esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc1_pad_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +adc1_read C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +adc1_read_test C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +adc1_rtc_mode_acquire esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc1_ulp_enable esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc2_config_channel_atten esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc2_get_raw esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc2_pad_get_io_num esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc2_pad_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +adc2_read C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +adc2_read_test C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +adc2_wifi_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc2_wifi_release esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_ana_conf_org C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +adc_apb_periph_claim esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_apb_periph_free esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_channel_io_map esp-idf/soc/libsoc.a(adc_periph.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc_common_gpio_init esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) +adc_i2s_mode_init esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +adc_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +adc_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc_lock_try_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc_oneshot_new_unit esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc_pad_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +adc_pad_int C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +adc_set_clk_div esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc_set_data_inv esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc_set_data_width esp-idf/driver/libdriver.a(adc_legacy.c.obj) +adc_set_i2s_data_source esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +adc_vref_to_gpio esp-idf/driver/libdriver.a(adc_legacy.c.obj) +add_mic_ie_bip C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +addba_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +adjtime esp-idf/newlib/libnewlib.a(time.c.obj) +aes_128_cbc_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_128_cbc_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_128_ctr_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +aes_ccm_ad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +aes_ccm_ae esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +aes_ctr_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) +aes_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_decrypt_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_decrypt_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_encrypt_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_encrypt_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_hal_setkey esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +aes_hal_transform_block esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +aes_siv_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +aes_siv_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) +aes_unwrap esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_wrap esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +agc_reg_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +aligned_alloc esp-idf/newlib/libnewlib.a(heap.c.obj) +ampdu_alloc_rx_ba_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_all C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_as_many_as_possible C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_movement C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_upto C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_free_rx_ba_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_process_multicast_address_qos_frame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +analog_gain_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ant_btrx_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ant_bttx_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ant_dft_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ant_rx_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ant_tx_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ant_wifirx_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ant_wifitx_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ap_for_each_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +ap_free_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +ap_get_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +ap_no_lr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ap_rx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ap_rxcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ap_sa_query_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ap_sta_add esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +ap_sta_delayed_1x_auth_fail_disconnect esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +ap_sta_hash_add esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +ap_sta_pending_delayed_1x_auth_fail_disconnect esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +ap_try_sa_query_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +app_elf_sha256_str esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +app_main esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +assoc_ie_buf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +atoi C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) +auth_build_token_req esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +auth_sae_queue esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +bars C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +bb_bss_cbw40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bb_bss_cbw40_ana C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bb_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bb_intr_handl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +bb_reg_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bb_wdg_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bb_wdt_get_status C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +bb_wdt_int_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +bb_wdt_rst_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bb_wdt_timeout_clear C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +bin_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +block_absorb_post_hook esp-idf/heap/libheap.a(tlsf.c.obj) +bootloader_ana_clock_glitch_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_clock_get_rated_freq_mhz esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_common_check_long_hold_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_check_long_hold_gpio_level esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_erase_part_type_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_get_chip_ver_pkg esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_read_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_get_spi_mode esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_get_wp_pin esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +bootloader_flash_gpio_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +brownout_hal_config esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +bt_bb_init_cmplx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +bt_bb_init_cmplx_reg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +bt_bb_to_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bt_cmplx_hq_re C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +bt_cmplx_hq_wr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +bt_cmplx_lq_re C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +bt_cmplx_lq_wr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +bt_correct_bbgain C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bt_dgmixer_fstep_250k C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +bt_dig_gain_force C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bt_get_i2c_data C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_i2c_read_mem C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_i2c_read_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_i2c_set_wifi_data C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_i2c_write_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_index_to_bb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +bt_mode_wifibb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bt_opt_write_mem C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bt_pwr_cap_sum C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_pwr_cap_sum_old C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_pwr_freq_old C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_pwr_track_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_rfoffset_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +bt_rx_spur_opt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bt_rxfilt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +bt_track_pll_cap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_track_tx_power C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_tx_gain_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bt_tx_gain_cal_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +bt_tx_pa_gain C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +bt_tx_pwctrl_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bt_txdc_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bt_txfilt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +bt_txiq_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bt_txpwr_backoff C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +bt_wifi_chan_data C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +btpwr_atten_offset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +btpwr_backoff C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +btpwr_pll_track C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +btpwr_tsen_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +btpwr_tsen_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +btpwr_tsen_old C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +btpwr_tsens_track C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +buf_shift_right esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +buttonCallback esp-idf/main/libmain.a(station_example_main.c.obj) +bzero C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +cache_flash_mmu_set_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +cache_hal_resume esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +cache_hal_suspend esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +cache_register_writeback esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) +cache_sync esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +cal_rf_ana_gain C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +call_start_cpu0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +call_start_cpu1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +call_user_start esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +calloc esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +candidate_monitor_timer_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +candidate_monitor_timer_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +cannel_scan_connect_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ccmp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ccmp_256_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +ccmp_256_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +ccmp_decap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) +ccmp_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +ccmp_encap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) +ccmp_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +ccmp_encrypt_pv1 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +ccmp_get_pn esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +ccwcallback esp-idf/main/libmain.a(station_example_main.c.obj) +cfg_sdio_volt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +cfree esp-idf/newlib/libnewlib.a(heap.c.obj) +challenge_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) +challenge_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) +chan14_mic_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +chan14_mic_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +chan14_mic_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +chan14_mic_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +chan14_mic_most_power C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +chan_to_freq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +channel1_volume_get esp-idf/main/libmain.a(http_control.c.obj) +chap_md5 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) +check_bss_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +check_comeback_token esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +check_rfpll_write_i2c C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +chip7_phy_api_ctrl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +chip7_phy_init_ctrl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +chip7_sleep_params C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +chip_disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_post_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_sleep_prot_dis C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +chip_sleep_prot_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +chip_v7_adc_wr_dly C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +chip_v7_rxmax_ext C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +chip_v7_rxmax_ext_ana C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +chip_v7_rxmax_ext_dig C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +chip_v7_set_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +chip_v7_set_chan_ana C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +chip_v7_set_chan_misc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +chip_v7_set_chan_nomac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +chip_v7_set_chan_offset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +chm_acquire_lock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_cancel_op C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_end_op C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +chm_end_op_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +chm_get_chan_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +chm_get_current_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +chm_get_home_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_is_at_home_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_mhz2num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +chm_release_lock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +chm_return_home_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_set_current_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_set_home_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_start_op C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cipher_map_net80211_to_public_cipher C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cipher_type_map_public_to_supp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +cipher_type_map_supp_to_public esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +cleanup_peer_list C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +clear_bss_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +clk_hal_ahb_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_apb_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_apll_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_cpu_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_lp_slow_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) +clk_hal_soc_root_get_freq_mhz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_xtal_get_freq_mhz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clock_getres esp-idf/newlib/libnewlib.a(time.c.obj) +clock_gettime esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +clock_settime esp-idf/newlib/libnewlib.a(time.c.obj) +close C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysclose.o) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +closedir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +cnx_add_rc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_add_to_blacklist C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_auth_done C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_auth_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +cnx_auth_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_beacon_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_bss_alloc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_bss_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_can_do_obss_scan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_check_bssid_in_blacklist C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_clear_blacklist C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +cnx_connect_next_ap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_connect_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_connect_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_csa_fn C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_csa_fn_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_do_handoff_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +cnx_get_authtype_strength C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_handshake_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_handshake_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_is_any_node_connecting C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_node_alloc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_is_existing C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_join C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_leave C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +cnx_node_remove C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_node_search C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_obss_scan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_obss_scan_done_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_obss_scan_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_rc_search C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_rc_update_age C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_rc_update_rssi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_rc_update_state_metric C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_remove_all_rc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +cnx_remove_from_blacklist C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_remove_rc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_remove_rc_except C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_sta_associated C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_sta_connect_cmd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_sta_connect_led_timer_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_sta_leave C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_sta_pm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_sta_scan_cmd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_start_handoff_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_start_obss_scan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_stop_obss_scan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_update_bss C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_update_bss_more C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_validate_owe_bss C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +coex_bt_high_prio C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +coexist_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +comeback_token_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +config_get_wifi_ampdu_rx_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_ampdu_tx_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_amsdu_tx_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_beacon_max_len C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +config_get_wifi_cache_tx_buffer_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_coexist_task_stack_size C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_csi_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +config_get_wifi_dynamic_rx_buffer_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_dynamic_tx_buffer_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +config_get_wifi_espnow_max_encrypt_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +config_get_wifi_feature_capabilities C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +config_get_wifi_mgmt_sbuf_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_nvs_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +config_get_wifi_pm_task_stack_size C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_rx_baw C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_rx_mgmt_buffer_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_rx_mgmt_buffer_type C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_sta_disconnected_pm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +config_get_wifi_static_rx_buffer_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_static_tx_buffer_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_task_core_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +config_get_wifi_task_stack_size C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +config_get_wifi_timer_task_stack_size C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_tx_buffer_type C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_wpa2_task_stack_size C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_wps_task_stack_size C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_is_cache_tx_buf_enabled C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +configure_i2s esp-idf/main/libmain.a(station_example_main.c.obj) +connect_scan_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +console_access esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_close esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_end_select esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_fcntl esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_fstat esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_fsync esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_open esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_read esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_tcdrain esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_tcflush esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_tcgetattr esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_tcsetattr esp-idf/vfs/libvfs.a(vfs_console.c.obj) +console_write esp-idf/vfs/libvfs.a(vfs_console.c.obj) +core_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +corr_cca_thr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +correct_rf_ana_gain_new C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +correct_rfpll_offset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +country_info_24ghz C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) +crc32_le C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +createFilter esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +crypto_bignum_add esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_addmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +crypto_bignum_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_bignum_div esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_exptmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_init_set esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_bignum_init_uint esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_inverse esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_is_odd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +crypto_bignum_is_one esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_is_zero esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_legendre esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +crypto_bignum_mod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_mulmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_rand esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +crypto_bignum_rshift esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_sqrmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_sub esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_to_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_bignum_to_string esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +crypto_debug_print_ec_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_debug_print_point esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_dh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_ec_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_free_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_gen_keypair esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_affine_coordinates esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_b esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_get_curve_id esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_group_byname esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_group_from_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_mbedtls_to_nist_group_id esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_order esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_get_prime esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_get_priv_key_der esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_private_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_public_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_get_publickey_buf esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_key_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_key_group esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_key_parse_pub esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_key_verify_signature esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_order_len esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_parse_subpub_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_point_add esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_compute_y_sqr esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_from_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_invert esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_is_at_infinity esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_is_on_curve esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_mul esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_solve_y_coord esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_point_to_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_prime_len esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_prime_len_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_set_pubkey_point esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_write_pub_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ecdh esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ecdh_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +crypto_ecdh_get_pubkey esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +crypto_ecdh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +crypto_ecdh_set_peerkey esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +crypto_ecdsa_get_sign esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_edcsa_sign_verify esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_free_buffer esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +crypto_get_order esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_global_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_global_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_hash_finish esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_hash_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_hash_update esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_is_ec_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_key_compare esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_mbedtls_get_grp_id esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_mod_exp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) +crypto_pk_write_formatted_pubkey_der esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_write_pubkey_der esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +cs_create_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +cs_free_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +cs_recv_from_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) +cs_send_to_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +ctx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) +current_task_is_wifi_task C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +cwcallback esp-idf/main/libmain.a(station_example_main.c.obj) +dacSettings esp-idf/main/libmain.a(station_example_main.c.obj) +dac_out C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +dac_pad_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +dbg_cnt_lmac_drop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +dbg_ebuf_loc_show C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_eb_show C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_event_show C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_int_show C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_rx_show C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_tx_show C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_hmac_rxtx_statis_dump C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_hmac_statis_dump C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +dbg_lmac_diag_statis_dump C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_get_acs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +dbg_lmac_hw_statis_dump C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +dbg_lmac_ps_statis_dump C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_ps_statis_reset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +dbg_lmac_rxtx_statis_dump C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_statis_dump C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +dbg_perf_path_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_perf_path_show C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_perf_throughput_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_rx_all_count C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +dbg_rx_bcn_count C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +default_router_list esp-idf/lwip/liblwip.a(nd6.c.obj) +des3_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des3_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des3_key_setup esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des_block_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des_block_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) +des_key_setup esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +dh_derive_shared esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) +dh_groups_get esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) +dhcp_append_extra_opts esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_arp_reply esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +dhcp_cleanup esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_coarse_tmr esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +dhcp_fine_timeout_cb esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_fine_tmr esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_inform esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_network_changed esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +dhcp_parse_extra_opts esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_release esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_release_and_stop esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_renew esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_rx_options_given esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_rx_options_val esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_search_ip_on_mac esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_set_struct esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_start esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_stop esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_supplied_address esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcps_delete esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_dns_getserver esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_dns_setserver esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_new esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_option_info esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_pbuf_alloc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +dhcps_set_new_lease_cb esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_set_option_info esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_start esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_stop esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +disable_wifi_agc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +discnx_reason_id2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +div C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-div.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +dns_clear_cache esp-idf/lwip/liblwip.a(dns.c.obj) +dns_gethostbyname esp-idf/lwip/liblwip.a(dns.c.obj) +dns_gethostbyname_addrtype esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +dns_getserver esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dns_init esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +dns_mquery_v4group esp-idf/lwip/liblwip.a(dns.c.obj) +dns_mquery_v6group esp-idf/lwip/liblwip.a(dns.c.obj) +dns_setserver esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +dns_tmr esp-idf/lwip/liblwip.a(dns.c.obj) +do_multicore_settings esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +dpd_scale_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +dragonfly_generate_scalar esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_get_random_qr_qnr esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_is_quadratic_residue_blind esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_min_pwe_loop_iter esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_sqrt esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_suitable_group esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +dreg_1p2_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +dup_binstr esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +dutytype2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) +eap_allowed_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_client_get_eap_state esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +eap_deinit_prev_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_get_config esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_blob esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +eap_get_config_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_password2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_id esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_phase2_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +eap_get_phase2_types esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +eap_get_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_hdr_len_valid esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) +eap_hdr_validate esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_mbedtls_x509_crt_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +eap_msg_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_blob_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_blob_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_config_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_config_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_get_eap_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_get_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_get_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_method_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_peer_method_free esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_peer_method_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_peer_mschapv2_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_peap_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_register_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_select_phase2_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_build_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_derive_key esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_derive_session_id esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_phase2_nak esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_process_helper esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_process_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_reauth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_tls_reset_input esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_reset_output esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +eap_peer_tls_ssl_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_ssl_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_status esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_ttls_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_unregister_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_set_config_blob esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_sm_abort esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_allowMethod esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_buildIdentity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) +eap_sm_build_identity_resp esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_build_nak esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_get_method_name esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_sm_process_request esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_request_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_sm_request_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_sm_request_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_sm_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_update_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eapol_sm_notify_eap_success esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +eapol_txcb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eb_space C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +eb_txdesc_space C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +efuse_hal_blk_version esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +efuse_hal_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_flash_encryption_enabled esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +efuse_hal_get_disable_wafer_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_rated_freq_mhz esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +eloop_cancel_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +eloop_cancel_timeout_one esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_deplete_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_destroy esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eloop_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eloop_is_timeout_registered esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +eloop_register_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +eloop_replenish_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_run esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +emul_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +enable_wifi_agc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +encrypt_pw_block_with_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +environ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-environ.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +err_to_errno esp-idf/lwip/liblwip.a(err.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +errno C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-reent.o) +esf_buf_alloc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esf_buf_alloc_default_handler C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_alloc_dynamic C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_alloc_dynamic_default_handler C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_free_static C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_recycle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +esf_buf_recycle_default_handler C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_setdown C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +esf_buf_setup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +esf_buf_setup_for_mesh C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esf_buf_setup_static C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_statis_dump C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +esp_aes_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_crypt_cbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_crypt_cfb128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_crypt_cfb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_crypt_ctr esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_crypt_ecb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_crypt_ofb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_crypt_xts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_gcm_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_crypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_gcm_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_gcm_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_gcm_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_gcm_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +esp_aes_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_aes_xts_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_xts_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_xts_setkey_dec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_xts_setkey_enc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_app_desc esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_app_format_init_elf_sha256 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_app_get_description esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_app_get_elf_sha256 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_backtrace_get_next_frame esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +esp_backtrace_get_start esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +esp_backtrace_print esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_backtrace_print_from_frame esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_base_mac_addr_get esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_base_mac_addr_set esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_brownout_disable esp-idf/esp_system/libesp_system.a(brownout.c.obj) +esp_brownout_init esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_cache_err_get_cpuid esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_cache_err_int_init esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_chip_info esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_clk_apb_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_clk_cpu_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_clk_init esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_clk_private_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_clk_private_unlock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_clk_rtc_time esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +esp_clk_slowclk_cal_get esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_clk_slowclk_cal_set esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +esp_clk_tree_lp_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_lp_slow_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_rc_fast_d256_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_rc_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +esp_clk_tree_src_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +esp_clk_tree_xtal32k_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +esp_clock_output_start esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +esp_clock_output_stop esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +esp_coex_common_env_is_chip_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_int_disable_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_int_restore_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_malloc_internal_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_create_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_delete_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_give_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_take_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_spin_lock_create_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_task_yield_from_isr_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_arm_us_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_disarm_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_done_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_setfn_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_cpu_clear_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_clear_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_compare_and_set esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) +esp_cpu_intr_get_desc esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_cpu_reset esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_set_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_cpu_set_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_cpu_stall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_cpu_wait_for_intr esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_crosscore_int_init esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_crosscore_int_send_freq_switch esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_gdb_call esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_print_backtrace esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_crosscore_int_send_twdt_abort esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_crosscore_int_send_yield esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +esp_crt_bundle_attach esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_crt_bundle_attach_fn esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_crt_bundle_detach esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +esp_crt_bundle_set esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +esp_crt_verify_callback esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +esp_crypto_mpi_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_crypto_mpi_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_deregister_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_deregister_phy_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_disable_rom_logging esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_register_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_register_phy_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_try esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_try_to_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_wakeup_io_reset esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_default_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deregister_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_deregister_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_deregister_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_deregister_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_derive_local_mac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_dport_access_read_buffer esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) +esp_dport_access_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/driver/libdriver.a(i2s_platform.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_dport_access_sequence_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) + esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) +esp_eap_client_clear_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_certificate_and_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_username esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_get_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_certificate_and_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_fast_params esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_pac_file esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_suiteb_192bit_certification esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_ttls_phase2_method esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_username esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_use_default_cert_bundle esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_efuse_disable_basic_rom_console esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_mac_get_custom esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_efuse_mac_get_default esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_utility_apply_34_encoding esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_pending esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_single_block esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_err_to_name esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) +esp_err_to_name_r esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +esp_event_dump esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_handler_instance_register esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_event_handler_instance_register_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_instance_unregister esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_event_handler_instance_unregister_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_register esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_event_handler_register_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_register_with_internal esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_handler_unregister esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_event_handler_unregister_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_unregister_with_internal esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_isr_post esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_isr_post_to esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_create esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_create_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_event_loop_delete esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_delete_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_run esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_post esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_event_post_to esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_fill_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_flash_app_disable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_disable_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_enable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_init esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_flash_chip_driver_initialized esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_chip_gd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_generic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_issi esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_mxic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_winbond esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_deinit_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_encryption_cfg_verify_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_encryption_enabled esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_encryption_init_checks esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_erase_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_erase_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_get_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_physical_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protectable_regions esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_init_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_flash_init_main esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_init_main_bus_lock esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_flash_init_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_noos_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_read_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_read_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_unique_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_registered_chips esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_suspend_cmd_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_get_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_get_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_get_free_internal_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_get_idf_version esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_get_minimum_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_gpio_is_pin_reserved esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +esp_gpio_reserve_pins esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_http_server_dispatch_event esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +esp_iface_mac_addr_set esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_image_get_flash_size esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_get_metadata esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_int_wdt_cpu_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_int_wdt_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_internal_aes_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_internal_aes_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_intr_alloc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) +esp_intr_alloc_intrstatus esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_disable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) +esp_intr_dump esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_enable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) +esp_intr_free esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_get_cpu esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) +esp_intr_get_intno esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_mark_shared esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_intr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_intr_reserve esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_set_in_iram esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_ip4addr_aton esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_ip4addr_ntoa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_ipc_call esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_ipc_call_blocking esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_ipc_func esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_func_arg esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_call esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_call_blocking esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_end_fl esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_handler esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +esp_ipc_isr_init esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +esp_ipc_isr_port_init esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_port_int_trigger esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_release_other_cpu esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_ipc_isr_stall_abort esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_ipc_isr_stall_other_cpu esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_ipc_isr_stall_pause esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_stall_resume esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_start_fl esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_waiting_for_finish_cmd esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_isr_names esp-idf/soc/libsoc.a(interrupts.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_light_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_log_default_level esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_log_early_timestamp esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_log_impl_lock esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_impl_lock_timeout esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_impl_unlock esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_level_get esp-idf/log/liblog.a(log.c.obj) +esp_log_level_set esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_log_set_vprintf esp-idf/log/liblog.a(log.c.obj) +esp_log_system_timestamp esp-idf/log/liblog.a(log_freertos.c.obj) +esp_log_timestamp esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(i2s_platform.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_log_write esp-idf/log/liblog.a(log.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/driver/libdriver.a(i2s_platform.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_log_writev esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_mac_addr_len_get esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_mbedtls_mem_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +esp_mbedtls_mem_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +esp_md5_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) +esp_md5_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_md5_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +esp_mesh_add_conflict_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_allow_root_conflicts C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_ap_enqueue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_expire C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_invalid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) +esp_mesh_ap_list_find C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_expire C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_invalid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_update_invalid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_appie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_available_txupQ_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_best_effort_tx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_channel_enable_jp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_check_multi_redundant_ack C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_check_nonassociated_children C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_check_vnd_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_clear_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_clear_parent_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_combine_multi_redundant_ack C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_compute_my_votes C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_compute_votes C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_conn_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_conn_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_connect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_copy_mgmt_announce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_create_context C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_create_mbox C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_decrypt_vnd_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_group_addr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_group_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_sub_children C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_delivery_toDS C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_delivery_toSelf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_disable_ps C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_discard_context C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_disconnect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_enable_ps C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_encrypt_vnd_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_find_conflict_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_fix_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_flush_scan_result C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_mesh_flush_tcpip_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_flush_upstream_packets C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_force_txupQ_pending C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_forward_check_active C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_forward_packet C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_free_context C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_free_mbox C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_active_duty_cycle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_announce_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_ap_assoc_expire C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_ap_authmode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_ap_connections C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_attempts C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_beacon_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_capacity_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_child_idx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_child_idx_lock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_get_child_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_conflict_root_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_group_list C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_group_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_ie_crypto_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_layer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_max_layer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_network_duty_cycle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_non_mesh_connections C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_optlen C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_parent_bssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_parent_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_get_parent_monitor_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_get_passive_scan_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_root_addr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_root_healing_delay C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_router C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_router_bssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_routing_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_routing_table_size C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_rssi_threshold C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_rssi_threshold_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_running_active_duty_cycle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +esp_mesh_get_rx_pending C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_self_organized C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_storage C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_sub_capacity C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_subnet_nodes_list C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_subnet_nodes_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_switch_parent_paras C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_topology C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_total_children_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_total_node_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_tsf_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +esp_mesh_get_tx_pending C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_get_type C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_vnd_ext_assoc_len C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_roots_len C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_ssid_len C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vote_percentage C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_xon_qsize C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_ie_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_ie_monitor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_capacity C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_rssi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_insert_child C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_insert_group_addr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_io_sem_signal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_io_sem_wait C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_is_device_active C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_my_group C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_is_my_ie_encrypted C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_is_nwk_inited C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_nwk_running C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_ps_enabled C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_root_conflicts_allowed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_is_root_fixed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_roots_found C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_is_rt_change_debug C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_is_same_router C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_mesh_is_scan_allowed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_is_start_pm_now C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_is_switch_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_look_for_network C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_lookup_route C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_lookup_sub_route C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_map_change_beacon_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_deauth C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_mesh_map_probe_response C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_reject_connection C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_stop_beacon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_match_self C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_mcast_cover_node C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_monitor_nonassociated_children C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_monitor_parent_candidate_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_monitor_parent_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_monitor_vote_candidate_rssi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_nvs_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nvs_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nvs_operate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) +esp_mesh_nvs_set_assoc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_nvs_set_layer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_nwk_redundant_route C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_nwk_task_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nwk_task_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_operation_rxseqno C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_pack_multi_routing_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_pack_rmv_announcement C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parent_reselect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parent_select C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parse_beacon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_assoc_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_roots_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_ext_assoc_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_ps_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_go_to_sleep C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_go_to_wake C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_rx_beacon_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_tbtt_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_tx_data_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_tx_null_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_post_toDS_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_print_route_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_print_rxQ_waiting C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_print_scan_result C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_print_txQ_waiting C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_process_bcast C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_mcast C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_options C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_ps_awake C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_process_ps_type C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_process_redundant_subchildren C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_process_txupQ_pending C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_process_ucast C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_ps_control_check_awake C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_ps_duty C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_ps_duty_cycle_get_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_cycle_set_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_ext_get_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_signaling C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_ps_get_duties C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_ps_get_ext_duty C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_push_to_ack_state_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_myself_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_push_to_nwk_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_push_to_ps_tx_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_push_to_rx_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_push_to_tcpip_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_push_to_tx_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_push_to_wnd_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_xmit_state_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_quick_funcs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_quick_funcs_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_quick_funcs_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_recv C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_recv_release C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_recv_toDS C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_recv_xon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_refresh_routing_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_child C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_children C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_conflict_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_remove_nonassociated_children C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_revote_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_root_process_duty_duration_expire C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_route_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_route_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_rt_change_debug C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_rx_task_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_rx_task_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_scan_done C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_get_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_vote C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_get_ap_ie_len C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_scan_get_ap_record C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_send C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_add_announcement C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_block_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_block_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_send_block_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_block_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_send_block_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_send_event_internal esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_mgmt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_rmv_announcement C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_root_switch C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_send_rtable_ack C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_send_rtable_request C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_send_sem_signal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_send_sem_wait C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_stop_vote C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_xon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_set_6m_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esp_mesh_set_active_duty_cycle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_announce_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ap_assoc_expire C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_set_ap_authmode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ap_connections C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ap_password C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_attempts C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_beacon_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_capacity_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_group_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_ie_crypto_funcs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_funcs_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_max_layer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_network_duty_cycle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_network_duty_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_set_non_mesh_connections C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_parent_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_candidate_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_monitor_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_passive_scan_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_root_healing_delay C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_router C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_router_bssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_set_rssi_threshold C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_rssi_threshold_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_self_organized C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_switch_parent_paras C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_topology C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_type C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_vote_percentage C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_xon_qsize C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_sta_connect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_sta_disassoc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_sta_disconnect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_sta_monitor_rssi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_stop_parent_reconnection C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_switch_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_switch_channel_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_sync_interface_tsf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +esp_mesh_tx_task_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_tx_task_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_tx_tid_flush C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_txupQ_pending C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_txupQ_pending_clear_xonseq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_txupQ_pending_delete_child C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_cidx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_xonseq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_insert_child C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_update_conflict_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_waive_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_wifi_recv_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mmu_map esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_dump_mapped_blocks esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_dump_mapped_blocks_private esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +esp_mmu_map_get_max_consecutive_free_block_size esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_init esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_mmu_map_reserve_block_with_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +esp_mmu_paddr_find_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_paddr_to_vaddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_unmap esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_vaddr_to_paddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mont_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_disable_hardware_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_enable_hardware_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_hardware_words esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_mpi_interrupt_clear esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_mpi_interrupt_enable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_mpi_mul_mpi_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_mul_mpi_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_mul_mpi_mod_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_mult_mpi_failover_mod_mult_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mspi_get_io esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_mspi_pin_init esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_nan_internal_datapath_end C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_datapath_req C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_datapath_resp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_publish_service C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_send_followup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_subscribe_service C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_netif_action_add_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_connected esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_disconnected esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_got_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_join_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_leave_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_remove_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_start esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_add_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_add_to_list_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_attach esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_attach_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_attach_wifi_station esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_mesh_netifs esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_sta esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_netif_create_ip6_linklocal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_create_wifi esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_deinit esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_destroy esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_destroy_default_wifi esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_dhcpc_get_status esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_dhcpc_option esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcpc_option_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcpc_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_dhcpc_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_dhcps_get_clients_by_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_get_status esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_option esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_option_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_down esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_find_if esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_free_rx_buffer esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_netif_get_all_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_desc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_dns_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_event_id esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_flags esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_handle_from_ifkey esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_handle_from_ifkey_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_handle_from_netif_impl esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) +esp_netif_get_hostname esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_netif_get_ifkey esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +esp_netif_get_io_driver esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_get_ip6_global esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_ip6_linklocal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl_index esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl_name esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl_name_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_nr_of_ifs esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_old_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_route_prio esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_init esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_netif_ip6_get_addr_type esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_is_netif_listed esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_is_netif_up esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_is_valid_static_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_join_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_leave_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_napt_disable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_napt_enable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_netstack_buf_free esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_netstack_buf_ref esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_new esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_next esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_netif_next_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_ppp_set_auth esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_ppp_set_auth_internal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_receive esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_remove_from_list_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_remove_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_set_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_dns_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_driver_config esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_set_hostname esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_netif_set_ip4_addr esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_link_speed esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_set_mac_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_old_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_str_to_ip4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_str_to_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_tcpip_exec esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_transmit esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) +esp_netif_transmit_wrap esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_netif_up esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_newlib_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_newlib_init_global_stdio esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_newlib_locks_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_newlib_time_init esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_ota_abort esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_begin esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_check_rollback_is_possible esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_end esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_erase_last_boot_app_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_app_partition_count esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_bootloader_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_last_invalid_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_next_update_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_partition_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_running_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_mark_app_invalid_rollback_and_reboot esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_mark_app_valid_cancel_rollback esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_set_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_write esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_write_with_offset esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_panic_handler esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_panic_handler_reconfigure_wdts esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_partition_check_identity esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_deregister_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_erase_range esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_find esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_find_first esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_get esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_get_sha256 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_is_flash_region_writable esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_partition_iterator_release esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_main_flash_region_safe esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_partition_mmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_munmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_next esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_read esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_read_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_register_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_partition_unload_all esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_verify esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_write esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_write_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_pbuf_allocate esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_perip_clk_init esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_phy_apply_phy_init_data C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_phy_common_clock_disable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_phy_common_clock_enable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_phy_disable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_phy_enable esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_phy_erase_cal_data_in_nvs esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_get_init_data esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_load_cal_and_init esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_load_cal_data_from_nvs esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_modem_deinit esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_phy_modem_init esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_phy_release_init_data esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_rf_get_on_ts esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_store_cal_data_to_nvs esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_phy_update_country_info esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_pm_register_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_register_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_unregister_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_unregister_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pthread_get_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_get_default_config esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_init esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_pthread_set_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_ptr_byte_accessible esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +esp_ptr_dma_ext_capable esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) +esp_ptr_external_ram esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) +esp_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +esp_read_mac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_reent_cleanup esp-idf/newlib/libnewlib.a(reent_init.c.obj) +esp_reent_init esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +esp_register_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_register_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +esp_register_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_reset_reason_get_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_reset_reason_set_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +esp_restart esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_restart_noos esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_restart_noos_dig esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +esp_rom_delay_us esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_efuse_get_flash_gpio_info esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_efuse_mac_address_crc8 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_rom_get_reset_reason esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_gpio_connect_in_signal esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +esp_rom_gpio_connect_out_signal esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +esp_rom_gpio_pad_pullup_only esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_rom_gpio_pad_select_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_install_channel_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_install_uart_printf esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_md5_final esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) +esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) +esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) +esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_regi2c_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_read_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_write_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_route_intr_matrix esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_set_cpu_ticks_per_us esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_software_reset_cpu esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_rom_software_reset_system esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_rom_spiflash_clear_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_readmode esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_area esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_block esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_sector esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_lock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_prepare_encrypted_data esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_statushigh esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_user_cmd esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_set_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_unlock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_wait_idle esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted_enable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_uart_flush_tx esp-idf/newlib/libnewlib.a(syscalls.c.obj) +esp_rom_uart_rx_one_char esp-idf/newlib/libnewlib.a(syscalls.c.obj) +esp_rom_uart_set_as_console esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_uart_tx_one_char esp-idf/newlib/libnewlib.a(syscalls.c.obj) +esp_rom_uart_tx_wait_idle esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rrm_send_neighbor_rep_request esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_rtc_get_time_us esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_send_assoc_resp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_send_sae_auth_reply esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +esp_set_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_set_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_set_scan_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_set_time_from_rtc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_setup_newlib_syscalls esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_sha_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +esp_sha_lock_engine esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_lock_memory_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_read_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +esp_sha_try_lock_engine esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +esp_sha_unlock_engine esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +esp_sha_unlock_memory_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sleep_config_gpio_isolate esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_disable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_ext1_wakeup_io esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wakeup_source esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_adc_tsens_monitor esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext0_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext1_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext1_wakeup_io esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_gpio_switch esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_enable_gpio_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_timer_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_touchpad_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_uart_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ulp_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_execute_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_ext1_wakeup_status esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_touchpad_wakeup_status esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_wakeup_cause esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_is_valid_wakeup_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_isolate_digital_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_pd_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_periph_use_8m esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_startup_start_app esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_startup_start_app_other_cores esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_supplicant_common_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_supplicant_common_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_supplicant_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_supplicant_disable_pmk_caching esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_supplicant_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_supplicant_str_to_mac esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_supplicant_unset_all_appie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_sync_timekeeping_timers esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_system_abort esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +esp_system_get_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +esp_system_get_time_resolution esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_system_reset_modules_on_exit esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_task_wdt_add esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_add_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_deinit esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_delete esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_delete_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timeout_triggered esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_allocate esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_feed esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_free esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_restart esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_stop esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_init esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_task_wdt_isr_user_handler esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_print_triggered_tasks esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_restart esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_status esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_stop esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_time_impl_get_boot_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_time_impl_get_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_time_impl_get_time_since_boot esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_time_impl_init esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_time_impl_set_boot_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_timer_create esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_delete esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_dump esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/main/libmain.a(button.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_timer_get_expiry_time esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_next_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_next_alarm_for_wake_up esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_period esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/main/libmain.a(button.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +esp_timer_impl_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_get_alarm_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_init_system_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_set_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_set_alarm_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_init esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_is_active esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_private_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_private_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_restart esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_start_once esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_start_periodic esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_tx_state_out C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +esp_unregister_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_vApplicationIdleHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +esp_vApplicationTickHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +esp_vfs_access esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_close esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_closedir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_console_register esp-idf/vfs/libvfs.a(vfs_console.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_vfs_dev_console_register esp-idf/vfs/libvfs.a(vfs_console.c.obj) +esp_vfs_dev_uart_port_set_rx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_port_set_tx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_register esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_set_rx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_set_tx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_use_driver esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_use_nonblocking esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_fstat esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_fsync esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_link esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_lseek esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_lwip_sockets_register esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) +esp_vfs_mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_open esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_opendir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_pread esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_read esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_readdir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) +esp_vfs_register_common esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) +esp_vfs_register_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fd_range esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +esp_vfs_register_fd_with_local_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_rename esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_select esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_select_triggered esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_select_triggered_isr esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_set_readonly_flag esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_stat esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_telldir esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_truncate esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_uart_get_vfs esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) +esp_vfs_unlink esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_utime esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_write esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_wifi_80211_tx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +esp_wifi_action_tx_req C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_ap_deauth_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_ap_get_max_sta_conn C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_ap_ssid_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_authmode_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_pairwise_cipher_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_password_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_pmk_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +esp_wifi_ap_get_sta_aid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_ap_get_sta_aid_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ap_get_sta_list C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_ap_is_sta_sae_reauth_node C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_ap_notify_node_sae_auth_done C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_auth_done_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_beacon_monitor_configure C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_bt_power_domain_off esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_wifi_bt_power_domain_on esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_wifi_build_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_clear_ap_list C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_clear_default_wifi_driver_and_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_clear_fast_connect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_config_11b_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_config_80211_tx_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_config_espnow_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_connect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_wifi_connectionless_module_set_wake_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_create_if_driver esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_deauth_sta C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_deauthenticate_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_deinit esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_deinit_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_del_key_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_destroy_if_driver esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_disable_pmf_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_disarm_sta_connection_timer_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_disconnect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_eb_tx_status_success_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_enable_sae_pk_only_mode_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +esp_wifi_enable_sta_privacy_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_force_wakeup_acquire C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_force_wakeup_release C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_end_session C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_end_session_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_get_report C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_get_report_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_initiate_session C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_resp_set_offset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_resp_set_offset_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ant C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ant_gpio C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_appie_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_assoc_bssid_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_get_auto_connect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_bandwidth C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_beacon_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_wifi_get_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_get_config_channel_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_config_sae_pwe_h2e_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_get_country C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_country_code C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_event_mask C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +esp_wifi_get_hostap_private_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_if_mac esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_get_inactive_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_inactive_time_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_key_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_mac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_get_macaddr_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_max_tx_power C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_get_negotiated_bw_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_negotiated_channel_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_pmf_config_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_get_promiscuous C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_ctrl_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_protocol C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ps C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_get_spp_attrubute_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_get_sta_key_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_tsf_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_user_init_flag_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_get_wps_status_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_get_wps_type_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_improve_contention_ability C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_init esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_wifi_init_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_configure_wake_window C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_crypto_funcs_md5_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_esp_wifi_he_md5_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_esp_wifi_md5_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_free_rx_buffer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_internal_get_config_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_fix_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_log C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_mib C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_internal_get_negotiated_bandwidth C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_negotiated_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_rts C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_internal_ioctl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_issue_disconnect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_internal_on_coex_schm_phase C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esp_wifi_internal_on_coex_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esp_wifi_internal_osi_funcs_md5_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_reg_netstack_buf_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_internal_reg_netstack_buf_cb_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_reg_rxcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_set_baw C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_internal_set_fix_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_log_level C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_set_log_mod C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_msdu_lifetime C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_retry_counter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_rts C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_internal_set_spp_amsdu C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_sta_ip C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_internal_supplicant_header_md5_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_internal_tx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_internal_tx_by_ref C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +esp_wifi_internal_tx_is_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +esp_wifi_internal_update_light_sleep_default_params C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_update_mac_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_wifi_he_type_md5_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_wifi_type_md5_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ipc_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_is_btm_enabled_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_ft_enabled_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_if_ready_when_started esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_is_mbo_enabled_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_rm_enabled_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_mesh_reg_rxcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_wifi_mesh_tx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_wifi_power_domain_off esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_power_domain_on esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_promiscuous_scan_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_register_eapol_txdonecb_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_if_rxcb esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_register_mgmt_frame_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wifi_register_owe_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_tx_cb_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_register_wpa2_cb_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_register_wpa3_ap_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_wpa3_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_wpa_cb_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_remain_on_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_restart C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_restore C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_ap_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_get_ap_record C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_ap_records C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_cur_ap_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_wifi_scan_get_cur_ap_record C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_wifi_scan_sort_ap_records C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_record C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_send_deauth_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_send_mgmt_frm_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_set_11b_tx_plcp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_set_ant C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ant_gpio C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ap_key_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wifi_set_appie_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_set_auto_connect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_bandwidth C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_beacon_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_wifi_set_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_wifi_set_country C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_wifi_set_country_code C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_rx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_default_wifi_ap_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_set_default_wifi_nan_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_set_default_wifi_sta_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_set_dynamic_cs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_event_mask C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_home_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_igtk_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wifi_set_inactive_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_inactive_time_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_keep_alive_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_key_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_mac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_max_tx_power C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_wifi_set_non_mesh_connections C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_set_promiscuous C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_ctrl_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_rx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_protocol C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ps C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_set_rssi_threshold C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_sleep_delay_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_sta_key_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_set_sta_rx_probe_req C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_storage C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_tx_done_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_vendor_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_vendor_ie_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_wpa2_ent_state_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_set_wps_cb_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_wps_start_flag_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_wps_status_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +esp_wifi_set_wps_type_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_skip_supp_pmkcaching C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_connect_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_disable_owe_trans_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +esp_wifi_sta_disable_sae_pk_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_disable_wpa2_authmode_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +esp_wifi_sta_enterprise_disable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_sta_enterprise_enable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_sta_get_aid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_aid_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_ap_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_ap_info_prof_pmk_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_get_config_sae_pk_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_sta_get_group_cipher_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_mgmt_group_cipher C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_get_negotiated_phymode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_negotiated_phymode_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_pairwise_cipher_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_prof_authmode_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_prof_password_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_prof_pmk_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_get_prof_ssid_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_reset_param_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_get_rsnxe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_sta_get_rssi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_sae_identifier_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_sta_is_ap_notify_completed_rsne_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_is_running_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_pmf_enabled C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_prof_is_rsn_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_prof_is_wapi_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_prof_is_wpa2_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_prof_is_wpa_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_set_reset_param_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_update_ap_info_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_wpa2_ent_disable_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_sta_wpa2_ent_enable_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/main/libmain.a(station_example_main.c.obj) +esp_wifi_statis_dump C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_unregister_wpa2_cb_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_unregister_wpa3_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_unregister_wpa_cb_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_unset_appie_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wifi_update_listen_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_vnd_lora_disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_lora_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_mesh_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_get C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_roots_get C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_vnd_roots_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_wpa_ptk_init_done_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wnm_send_bss_transition_mgmt_query esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wpa3_free_sae_data esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +etharp_add_static_entry esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +etharp_cleanup_netif esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +etharp_find_addr esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_get_entry esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_input esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) +etharp_output esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +etharp_query esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +etharp_remove_static_entry esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +etharp_request esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +etharp_tmr esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +ethbroadcast esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ethernet_input esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +ethernet_output esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ethernetif_init esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +ethernetif_input esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +ethip6_output esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +ethzero esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ets_delay_us C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ets_get_detected_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +ets_install_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_install_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_isr_mask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_isr_unmask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_set_appcpu_boot_addr esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +ets_timer_arm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +ets_timer_arm_us esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +ets_timer_deinit esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +ets_timer_disarm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +ets_timer_done esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +ets_timer_init esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +ets_timer_setfn esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +ets_update_cpu_frequency_rom esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +fabs C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_fabs.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-e_rem_pio2.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_tan.o) +fastpbkdf2_hmac_sha1 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +fclose C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +fcntl esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +fe_reg_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ferror C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +fflush C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) +fgets C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +filter_HTML_String esp-idf/main/libmain.a(butterworthdesign.c.obj) +filter_registerHTTPHandlers esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +floor C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_floor.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) +fopen C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +force_bt_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +force_bttx_gain C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +force_hw_set_freq_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +force_tx_gain_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +force_txrx_off C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +force_txrxoff C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +force_wifi_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +force_wifi_mode_on C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +forced_memzero esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) +forward_abort_uw_ctx esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +fprintf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fprintf.o) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fputc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fputs C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +fread C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +free esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +freeFilter esp-idf/main/libmain.a(butterworthdesign.c.obj) +free_bss_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +freq_i2c_addr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +freq_offset_get_pwr_1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +freq_write_wifi_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +frexp C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libm_a-s_frexp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) +fseek C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseek.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) +fseeko C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) +fsync esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +ftell C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +ftello C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) +ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) +fwrite C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +gChmCxt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +gNanSm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +gScanStruct C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +gWpaSm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +g_allowed_groups esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +g_authmode_incompatible C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +g_authmode_threshold_failure C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +g_beacon_eb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +g_beacon_idx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +g_chm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +g_cnxMgr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_cnx_probe_rc_list_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +g_coex_adapter_funcs esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +g_def_2g_channels C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +g_dynamic_cs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +g_eb_list_desc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +g_esp_wifi_he_md5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_esp_wifi_md5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_exc_frames esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +g_flash_guard_default_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +g_flash_guard_no_os_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +g_hmac_cnt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_i2s esp-idf/driver/libdriver.a(i2s_platform.c.obj) +g_ic C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_in_blacklist_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +g_intr_lock_mux C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_is_mesh_started C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +g_is_root_fixed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +g_is_standalone_sta C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_is_wifi_connected C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_is_wifi_connecting C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_is_wifi_disconnecting C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_lmac_cnt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +g_log_level C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_log_mod C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mac_deinit_count C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +g_mac_deinit_rxing C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +g_mac_deinit_txing C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +g_mac_sleep_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_mesh_ann_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_cfg_attemps C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_cfg_switch_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +g_mesh_cfg_vote_percent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_chain C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_conn C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +g_mesh_current_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_dfs_compensation_ms C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +g_mesh_ext_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_mesh_ext_vote_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_mesh_init_ps_type C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_mesh_is_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mesh_is_started C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_mesh_manual_nwk C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_mesh_max_layer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +g_mesh_monitor_parent_beacon_count C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_nvs_settings C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_packet_lifetime C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +g_mesh_passive_scan_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_rmv_opt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +g_mesh_root_conflicts_allowed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mesh_root_healing_delay C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_rt_capacity C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +g_mesh_self_map_addr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_self_organized C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +g_mesh_self_sta_addr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +g_mesh_stop_event_group C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_stop_reconnection C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_topology C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mesh_xon_cfg_qsize C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +g_misc_nvs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_mmu_mem_regions esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +g_osi_funcs_p C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +g_panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +g_panic_abort_details esp-idf/esp_system/libesp_system.a(panic.c.obj) +g_phyFuns C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +g_phy_cap_rx_stbc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +g_pm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +g_pm_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +g_pm_cnt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +g_pp_timer_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +g_pp_tx_pkt_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +g_rom_flashchip esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +g_rom_spiflash_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +g_rom_spiflash_dummy_len_plus esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +g_rssi_threshold_failure C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +g_scan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +g_spi_lock_main_flash_dev esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +g_sta_connected_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +g_startup_fn esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +g_startup_time esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +g_ticks_per_us_app esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +g_ticks_per_us_pro esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +g_timer_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +g_twdt_isr esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +g_wdev_csi_rx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wdev_csi_rx_ctx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wdev_last_desc_reset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_wdev_nan_is_in_dw_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wifi_crypto_funcs_md5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_default_mesh_crypto_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +g_wifi_default_wpa_crypto_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +g_wifi_event_mask C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_wifi_global_lock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_he_type_md5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_improve_contention_ability C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_mac_time_delta C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_wifi_menuconfig C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wifi_nvs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_osi_funcs esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +g_wifi_osi_funcs_md5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_supplicant_funcs_md5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +g_wifi_type_md5 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wpa3_hostap_auth_api_lock esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +g_wpa_anonymous_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_anonymous_identity_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_ca_cert_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_client_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_client_cert_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_default_cert_bundle esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_new_password_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_pac_file esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_pac_file_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_password_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_phase1_options esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_pmk_caching_disabled esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +g_wpa_private_key esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_private_key_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_private_key_passwd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_private_key_passwd_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_suiteb_certification esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +g_wpa_supp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +g_wpa_ttls_phase2_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_username esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_username_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +generate_authenticator_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +generate_authenticator_response_pwhash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) +generate_nt_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +generate_nt_response_pwhash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) +getFilterJson esp-idf/main/libmain.a(butterworthdesign.c.obj) +getVolumeLevel esp-idf/main/libmain.a(http_control.c.obj) +get_asymetric_start_key esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +get_bbgain_db C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +get_chan_pwr_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +get_handler esp-idf/main/libmain.a(http_control.c.obj) +get_i2c_read_mask C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +get_i2c_write_data C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +get_iav_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +get_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +get_iq_est_snr_1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +get_lna_vga_dcap_val C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +get_master_key esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +get_operating_class esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +get_param esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +get_phy_target_power C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +get_phy_version_str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +get_rate_fcc_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +get_rate_pwctrl_offset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +get_rate_target_power C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +get_rf_freq_cap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +get_rf_freq_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +get_rfrx_dcap_bt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +get_spur4m_pwr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +get_target_power_offset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +get_temp_buffer_not_supported esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +get_temp_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +get_total_scan_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +get_vdd33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +get_vendor_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +get_vfs_for_index esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) +get_vfs_for_path esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) +get_wifi_internal_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +get_wpa_sm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +getle32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +gettimeofday C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysgettod.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +global_hapd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +gmtime C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +gmtime_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) +gpio_config esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/main/libmain.a(button.c.obj) +gpio_deep_sleep_hold_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_deep_sleep_hold_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_dump_io_configuration esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_get_drive_capability esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_get_level esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hal_intr_disable esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hal_intr_enable_on_core esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hold_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hold_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_install_isr_service esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/main/libmain.a(button.c.obj) +gpio_intr_disable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_intr_enable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_iomux_in esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +gpio_iomux_out esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +gpio_isr_handler_add esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/main/libmain.a(button.c.obj) +gpio_isr_handler_remove esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_isr_register esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_pulldown_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_pulldown_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_pullup_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_pullup_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_reset_pin esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gpio_set_direction esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +gpio_set_drive_capability esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_set_intr_type esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/main/libmain.a(button.c.obj) +gpio_set_level esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +gpio_set_pull_mode esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +gpio_sleep_sel_dis esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_sel_en esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_set_direction esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_set_pull_mode esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_uninstall_isr_service esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_wakeup_disable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_wakeup_enable esp-idf/driver/libdriver.a(gpio.c.obj) +hal_agreement_add_rx_ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_agreement_clr_rx_ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_agreement_del_rx_ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_attenna_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_ba_session_restore C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_ba_session_restore_by_hw_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +hal_ba_session_store C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_clr_key_entry C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +hal_crypto_get_key_entry C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_crypto_get_using_key_idx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) +hal_crypto_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_crypto_is_key_valid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_crypto_mgmt_rx_enabled C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_set_key_entry C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_disable_mac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_disable_nan_tsf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_disable_softap_tsf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hal_disable_sta_tsf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +hal_enable_mac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_enable_nan_tsf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_enable_sta_tsf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +hal_get_tsf_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hal_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_clr_bssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_clr_txq_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_disable_low_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_enable_low_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_get_txq_pmd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_get_txq_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_interrupt_clr_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_interrupt_clr_watchdog C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_interrupt_get_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_is_low_rate_enabled C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +hal_mac_is_txq_enabled C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_is_txq_valid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_rate_autoack_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_rx_disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_rx_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_rx_get_end_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_get_end_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_get_last_dscr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_is_dscr_reload C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_read_rxdscrlast C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_rx_read_rxdscrnext C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_set_base C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_set_dscr_reload C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_set_policy C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_addr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_bssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_csi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_rxq_policy C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_txq_invalid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tsf_get_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_mac_tsf_reset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_mac_tsf_set_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_mac_tx_config_edca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_config_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_get_blockack C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_is_cbw40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_set_cca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_set_ppdu C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_txq_disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_txq_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_now C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hal_random C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_rx_disable_bssid_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_rx_enable_bssid_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_sniffer_disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_sniffer_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_sniffer_rx_clr_statistics C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_sniffer_rx_set_promis C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_utils_calc_clk_div_frac_accurate esp-idf/hal/libhal.a(hal_utils.c.obj) + esp-idf/hal/libhal.a(i2s_hal.c.obj) +hal_utils_calc_clk_div_frac_fast esp-idf/hal/libhal.a(hal_utils.c.obj) +hal_utils_calc_clk_div_integer esp-idf/hal/libhal.a(hal_utils.c.obj) +hall_sens_amp_read C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +hall_sens_amp_read_full C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +hall_sens_read C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +hall_sens_read_full C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +handle_auth_sae esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +has_ctrl_char esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +hash_nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +heap_caps_add_region esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_add_region_with_caps esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_aligned_alloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_free esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_add_region_allowed esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_check_integrity esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_addr esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_enable_nonos_stack_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +heap_caps_free esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +heap_caps_get_allocated_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +heap_caps_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_largest_free_block esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +heap_caps_get_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +heap_caps_get_total_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_init esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_malloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_malloc_extmem_enable esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_malloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_match esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_print_heap_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_realloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +heap_caps_realloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_realloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_register_failed_alloc_callback esp-idf/heap/libheap.a(heap_caps.c.obj) +hex2byte esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +hexstr2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +hmac_md5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_sha1 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_sha1_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_sha256 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +hmac_sha256_kdf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +hmac_sha256_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_sha384 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +hmac_sha384_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +hostap_auth_open C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +hostap_delete_ptk C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_deliver_data C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_eapol_resend_process esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +hostap_handle_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_handle_timer_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +hostap_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +hostap_input C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +hostap_recv_ctl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_recv_mgmt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostapd_cleanup esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +hostapd_config_clear_wpa_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_config_defaults esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_config_defaults_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_config_free_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +hostapd_free_stas esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +hostapd_get_hapd_data esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +hostapd_get_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +hostapd_mac_comp esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_mac_comp_empty esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_maclist_found esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_rate_found esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +hostapd_setup_sae_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_setup_wpa_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +hostapd_wep_key_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +ht_action_output C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +http_body_is_final esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_errno_description esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_errno_name esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_filter esp-idf/main/libmain.a(butterworthdesign.c.obj) +http_filter_submit esp-idf/main/libmain.a(butterworthdesign.c.obj) +http_getFilter esp-idf/main/libmain.a(butterworthdesign.c.obj) +http_message_needs_eof esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_method_str esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_parser_execute esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_init esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_parse_url esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_pause esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_settings_init esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_url_init esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_version esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +http_should_keep_alive esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +httpd_default_recv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_default_send esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_get_client_list esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_get_global_transport_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_get_global_user_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_is_sess_available esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_query_key_value esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) +httpd_queue_work esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_recv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_recv_with_opt esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_register_err_handler esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_register_uri_handler esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) +httpd_req_async_handler_begin esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_req_async_handler_complete esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_req_delete esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_req_get_cookie_val esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_req_get_hdr_value_len esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_req_get_hdr_value_str esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_req_get_url_query_len esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_req_get_url_query_str esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) +httpd_req_handle_err esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_req_new esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_req_recv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) +httpd_req_to_sockfd esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_resp_send esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) +httpd_resp_send_chunk esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_resp_send_err esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) +httpd_resp_set_hdr esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_resp_set_status esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_resp_set_type esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_send esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_sess_clear_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_sess_close_all esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_close_lru esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_delete esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_delete_invalid esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_enum esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_free_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_sess_get esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_sess_get_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_sess_get_free esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_sess_get_transport_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_sess_init esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_new esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_pending esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_process esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_set_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_sess_set_descriptors esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_set_pending_override esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_sess_set_recv_override esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_sess_set_send_override esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_sess_set_transport_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_sess_trigger_close esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_sess_trigger_close_ esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_sess_update_lru_counter esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_socket_recv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_socket_send esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_start esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) +httpd_stop esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) +httpd_unrecv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_unregister_all_uri_handlers esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_unregister_uri esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) +httpd_unregister_uri_handler esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) +httpd_uri esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_uri_match_wildcard esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) +httpd_validate_req_ptr esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +hwaddr_aton2 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +i2c_bbpll_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +i2c_bbtop_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +i2c_bias_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +i2c_bt_filter_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +i2c_master_reset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +i2c_rfpll_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +i2c_rftx_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +i2c_write_master C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +i2c_xtal_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +i2cmst_reg_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +i2s_adc_disable esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_adc_enable esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_config esp-idf/main/libmain.a(station_example_main.c.obj) +i2s_del_channel esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_driver_install esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +i2s_driver_uninstall esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +i2s_get_clk esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_hal_calc_mclk_precise_division esp-idf/hal/libhal.a(i2s_hal.c.obj) +i2s_hal_init esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_hal_pdm_enable_rx_channel esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_hal_pdm_enable_tx_channel esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_hal_pdm_set_rx_slot esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_hal_pdm_set_tx_slot esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_hal_std_enable_rx_channel esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_hal_std_enable_tx_channel esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_hal_std_set_rx_slot esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_hal_std_set_tx_slot esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_num esp-idf/main/libmain.a(station_example_main.c.obj) +i2s_periph_signal esp-idf/soc/libsoc.a(i2s_periph.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_platform_acquire_occupation esp-idf/driver/libdriver.a(i2s_platform.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_platform_get_dma_buffer_offset esp-idf/driver/libdriver.a(i2s_platform.c.obj) +i2s_platform_release_occupation esp-idf/driver/libdriver.a(i2s_platform.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_read esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_running esp-idf/main/libmain.a(station_example_main.c.obj) +i2s_set_adc_mode esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_set_clk esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +i2s_set_dac_mode esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_set_pdm_rx_down_sample esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_set_pdm_tx_up_sample esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_set_pin esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +i2s_set_sample_rates esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_start esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_stop esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +i2s_write esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +i2s_write_expand esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +i2s_zero_dma_buffer esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +ic_add_rx_ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_ampdu_op C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_bb_check_noise_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_beacon_monitor_configure C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_clear_interrupt_handler C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_connectionless_module_set_wake_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_create_wifi_task C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_csi_set_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_del_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_del_key_all C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_del_rx_ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_delete_wifi_task C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_disable_crypto C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_disable_rx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_disable_sniffer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_ebuf_alloc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_ebuf_recycle_rx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_ebuf_recycle_tx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_enable_rx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_enable_sniffer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_get_80211_tx_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_get_G6M_sched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ic_get_addr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_get_default_sched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_get_espnow_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ic_get_fix_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_get_next_tbtt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_get_pp_hdl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_get_promis_ctrl_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_promis_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_ptk_alg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ic_get_random C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ic_get_rssi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_get_trc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_interface_enabled C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_is_mgmt_hwdecr_enabled C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_is_pure_sta C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_mac_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_mac_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_obtain_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ic_pp_post C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_register_config_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_csi_rx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_register_ftm_callbacks C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_register_michael_mic_failure_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_register_nan_callbacks C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ic_register_net80211_tx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_register_pm_tx_null_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_pp_tx_done_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_register_promis_rx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_register_rx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_register_timer_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_timer_post_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_tx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_reset_rx_ba C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_reset_tbtt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_rx_disable_bssid_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_rx_enable_bssid_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_set_80211_tx_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_ac_param C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ic_set_bar_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_beacon_int C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_set_bssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_csi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_current_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +ic_set_espnow_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_fix_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_interface C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_set_interrupt_handler C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_keep_alive_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_mac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_promis_ctrl_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_promis_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_rx_policy C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_rx_policy_ubssid_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_sleep_delay_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_sta C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ic_set_sta_auth_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_trc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ic_set_vif C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_stop_hw_txq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_stop_sw_txq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_trc_set_per_pkt_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_trc_update_def_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_trc_update_ifx_phy_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ic_tx_is_idle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_tx_pkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_txq_empty C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_update_light_sleep_default_params C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_update_listen_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +icmp6_dest_unreach esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +icmp6_input esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +icmp6_packet_too_big esp-idf/lwip/liblwip.a(icmp6.c.obj) +icmp6_param_problem esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +icmp6_time_exceeded esp-idf/lwip/liblwip.a(icmp6.c.obj) +icmp6_time_exceeded_with_addrs esp-idf/lwip/liblwip.a(icmp6.c.obj) +icmp_dest_unreach esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +icmp_input esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +ieee80211_action_vendor_spec_attach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_add_action_vendor_spec_esp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_assoc_req_ies C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_assoc_resp_ies C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_beacon_app_ies C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_countryie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_csa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_dsparams C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_extcap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htcap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ieee80211_add_htcap_vendor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo_body C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_add_htinfo_vendor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_esp_mesh_head C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_ie_vendor_esp_freq_annon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_head C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_add_ie_vendor_esp_manufacturer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_vendor_esp_mesh_group C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_now C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_ie_vendor_esp_simple_pair C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_ssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_mesh_assoc_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_duty_signaling C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ext_assoc_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ps_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_roots_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ssid_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_probe_req_ies C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_probe_resp_app_ies C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_rates C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ieee80211_add_wme_param C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_xrates C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_adjust_2nd_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_align_eb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_action_vendor_spec C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_alloc_challenge C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_alloc_deauth C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_proberesp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_tx_buf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_ampdu_age_all C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ieee80211_ampdu_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_reorder C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ampdu_request C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_start_age_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_ampdu_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_amsdu_adjust_head C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_adjust_last_length C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_encap_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_length_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_negotiate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_amsdu_send_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ap_sa_query_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ieee80211_ap_try_sa_query C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ieee80211_assoc_req_construct C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_assoc_resp_construct C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_auth_construct C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_beacon_alloc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_beacon_construct C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_better_rsn_pairwise_cipher C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_cal_tx_pps C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_ccmp_decrypt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ccmp_encrypt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_classify C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_cnx_attach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_copy_eb_header C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_crypto_aes_128_cmac_decrypt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_crypto_aes_128_cmac_encrypt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_crypto_attach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_crypto_available C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211_crypto_decap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_crypto_encap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_crypto_gmac_decrypt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_crypto_setkey C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211_deauth_construct C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_decap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_decap1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_decap_amsdu C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_decrypt_espnow_pkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_deliver_data C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_disassoc_construct C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_empty_txq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_encap_amsdu C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_encap_esfbuf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_encap_null_data C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_espnow_get_init_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_espnow_set_init_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_ethbroadcast C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_find_elem C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_elem_match C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_ext_elem C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_ext_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_find_ie_match C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_free_beacon_eb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_freedom_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_freedom_inside_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_ftm_attach esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +ieee80211_get_chan_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_get_cipher_mic_len C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_get_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_get_mac_addr_from_frame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_ptk C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_robustmgtframe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_get_spp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_sta_gtk_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_getbcnframe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_getcapinfo C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_getmgtframe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_gettid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_gpsq_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_has_ht40_bss C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_hostap_attach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_hostap_send_beacon_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ieee80211_hostapd_beacon_txcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ieee80211_hostapd_data_txcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_hostapd_ps_txcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_attach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_ht_deattach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_ht_node_cleanup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_node_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updatehtcap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updateparams C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_ifattach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_ifdetach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_init_mesh_assoc_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_ioctl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_is_11b_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_is_40mhz_valid_bw C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_is_bufferable_mmpdu C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_is_ht_cipher C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_is_lr_only C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_is_mesh_roots_announce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_announce_used C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_fixed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_gone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_valid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield_used C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_robust_mgmt_frm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_is_support_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_is_tx_allowed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_iserp_rateset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_mesh_quick_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_get C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_mesh_quick_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_mgmt_output C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_mlme_connect_bss C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_mt_key_clear_mask C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_is_mask C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_is_mask_zero C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_set_mask C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_node_pwrsave C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_nvs_set_default_ssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +ieee80211_opcap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_output C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_output_do C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_output_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_output_pending_eb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_output_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_output_raw_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_parse_action C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_parse_beacon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_parse_htcap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_parse_obss_scan_param C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_parse_rsn C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_parse_wapi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_parse_wmeparams C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_parse_wpa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_phy_2nd_chan_is_valid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_phy_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_phy_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_phy_mode_show C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_phy_type_get C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ieee80211_pm_tx_null_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_post_hmac_tx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) +ieee80211_proto_attach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_psq_cleanup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_drop_one_pkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_find_max_bss C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_psq_is_buff_pkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_send_one_pkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_head C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_tail C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_public_action_recv_mesh_awake C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_public_action_send_mesh_awake C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_pwrsave C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_pwrsave_node_cleanup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_pwrsave_txcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_rate_ref_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_raw_frame_sanity_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_recv_action C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_recv_action_register C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_recv_action_unregister C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) +ieee80211_recv_action_vendor_spec C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_recv_bar C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_recv_mesh_duty_signaling C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_recycle_cache_eb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_reg_encap_amsdu_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_reg_netstack_buf_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_ap_max_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_ap_min_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_chan_in_range C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_regdomain_chan_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_get_country C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_regdomain_is_active_scan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_regdomain_max_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_max_tx_power C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_min_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_policy C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_update C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_update_in_connect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_regdomain_update_in_scan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_register_hostap_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_register_wapi_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_rfid_locp_recv C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_rfid_locp_recv_close C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_open C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_reset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_rsn_cipher_priority C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_scan_attach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_scan_deattach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_search_node C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_send_action C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_send_action_register C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_send_action_unregister C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) +ieee80211_send_action_vendor_spec C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_send_deauth C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_mgmt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_send_nulldata C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_probereq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_send_proberesp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_setup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_set_appie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_gtk C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_hmac_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_max_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_set_phy_2nd_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_phy_bw C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_set_phy_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_shortslottime C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_set_sta_gtk_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_tim C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_set_tx_desc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_set_user_sup_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_basic_htrates C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_setup_htrates C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ieee80211_setup_lr_rates C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_phy_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_pmf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_setup_rates C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_rateset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_setup_ratetable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_robust_mgmtframe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_sta_connect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_disconnect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_is_connected C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_sta_new_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_scan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_do_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_tx_mgt_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_unregister_wapi_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_update_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_update_phy_country C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_user_ie_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_vnd_ie_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_ie_size C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_size C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_mesh_fully_associated C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_vnd_mesh_quick_get C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_quick_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_get C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_update_beacon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_wapi_alloc_tx_buf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_wme_initparams C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_wme_standard_ac_to_esp_ac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_wme_updateparams C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211w_get_active_igtk_key_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211w_get_igtk_from_keyidx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee802_11_ext_capab esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +ieee802_11_ie_count esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +ieee802_11_parse_candidate_list esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +ieee802_11_parse_elems esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +ieee802_11_vendor_ie_concat esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +if_ctrl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +igmp_init esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +igmp_input esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +igmp_joingroup esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +igmp_joingroup_netif esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +igmp_leavegroup esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +igmp_leavegroup_netif esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +igmp_lookfor_group esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +igmp_report_groups esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +igmp_start esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +igmp_stop esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +igmp_tmr esp-idf/lwip/liblwip.a(igmp.c.obj) +in_rssi_adjust C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +inc_byte_array esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +include_esp_phy_override esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +index_get esp-idf/main/libmain.a(http_control.c.obj) +index_handler esp-idf/main/libmain.a(http_control.c.obj) +inet_chksum esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) +inet_chksum_pbuf esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) +inet_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +inet_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +init_wifi_disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +int nvs::NVSHandle::get_item(char const*, long long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, short&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, signed char&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, unsigned char&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, unsigned long long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, unsigned long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, unsigned short&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, long long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, short) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, signed char) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, unsigned long long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, unsigned short) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int_array_len esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +int_wdt_cpu1_ticked esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +intrusive_list::push_back(NVSHandleEntry*) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +intrusive_list::push_back(nvs::HashList::HashListBlock*) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +intrusive_list::push_back(nvs::NVSHandleSimple*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +intrusive_list::push_back(nvs::NVSPartition*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +intrusive_list::clear() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +intrusive_list::insert(intrusive_list::iterator, nvs::Page*) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +intrusive_list::push_back(nvs::Page*) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +intrusive_list::push_front(nvs::Page*) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +intrusive_list::clearAndFreeNodes() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::push_back(nvs::Storage::BlobIndexNode*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::clearAndFreeNodes() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::push_back(nvs::Storage::NamespaceEntry*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::clearAndFreeNodes() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::push_back(nvs::Storage::UsedPageNode*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +intrusive_list::push_back(nvs::Storage*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +io_cfg2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) +ip4_addr_isbroadcast_u32 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_addr_netmask_valid esp-idf/lwip/liblwip.a(ip4_addr.c.obj) +ip4_frag esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_input esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip4_netif_exist esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) +ip4_output esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_output_if esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_output_if_opt esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) +ip4_output_if_opt_src esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_output_if_src esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip4_route esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ip4_route_src esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_route_src_hook esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_set_default_multicast_netif esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4addr_aton esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +ip4addr_ntoa esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip4addr_ntoa_r esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +ip6_addr_any esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +ip6_frag esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_input esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip6_options_add_hbh_ra esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) +ip6_output esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_output_if esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_output_if_src esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip6_route esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_select_source_address esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6addr_aton esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +ip6addr_ntoa esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip6addr_ntoa_r esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +ip_addr_any esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +ip_addr_any_type esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip_addr_broadcast esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +ip_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +ip_data esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip_input esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +ipaddr_addr esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +ipaddr_aton esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +ipaddr_ntoa esp-idf/lwip/liblwip.a(ip.c.obj) +ipaddr_ntoa_r esp-idf/lwip/liblwip.a(ip.c.obj) +is_esp_mesh_assoc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +is_esp_mesh_duty_signaling C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +is_esp_mesh_ext_assoc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +is_esp_mesh_ps C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +is_lmac_idle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +is_mesh_child C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +is_mesh_last_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +is_my_ie_encrypted C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +is_off_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +is_self_mac_greater C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +is_wapi_alloc_tx_buf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +iswspace C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) +iswspace_l C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace_l.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-iswspace.o) +itoa C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-itoa.o) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) +ld_include_highint_hdl esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +libcore_reversion_git C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +libmesh_reversion_git C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +libnet80211_reversion_git C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +libnet80211_reversion_remote C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +libpp_reversion_git C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacAdjustTimestamp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacConfMib C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacDisableTransmit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacDiscardAgedMSDU C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacDiscardFrameExchangeSequence C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacDiscardMSDU C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacEndFrameExchangeSequence C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacEndRetryAMPDUFail C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacGetTxFrame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacInit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacInitAc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacIsIdle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacIsLongFrame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacMSDUAged C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacPostTxComplete C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessAckTimeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessAllTxTimeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessCollision C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessCollisions C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessCollisions_task C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessCtsTimeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessLongFrameSuccess C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessLongRetryFail C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessRxSucData C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessShortFrameSuccess C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessShortRetryFail C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTBSuccess C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxComplete C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessTxError C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxRtsError C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxSuccess C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxTimeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessTxopSuccess C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxseckiderr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacReachLongLimit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacReachShortLimit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacRecycleMPDU C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacRetryTxFrame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacRxDone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacSetAcParam C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacSetTxFrame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacStopTransmit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacTxDone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacTxFrame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmac_record_txtime C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmac_stop_hw_txq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmac_update_tx_statistic C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +localeconv C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-localeconv.o) +localtime_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) +lr_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +lwip_accept esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +lwip_bind esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +lwip_close esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_connect esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_cyclic_timers esp-idf/lwip/liblwip.a(timeouts.c.obj) +lwip_fcntl esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_getpeername esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_getsockname esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_getsockopt esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_getsockopt_impl_ext esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_hook_tcp_isn esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +lwip_htonl esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +lwip_htons esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_inet_ntop esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_inet_pton esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +lwip_init esp-idf/lwip/liblwip.a(init.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +lwip_init_tcp_isn esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +lwip_ioctl esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_itoa esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +lwip_listen esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +lwip_netconn_do_accepted esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_bind esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_bind_if esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_close esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_connect esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_delconn esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_disconnect esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_getaddr esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_gethostbyname esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_join_leave_group esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_join_leave_group_netif esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_listen esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_newconn esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_recv esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_send esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_write esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_is_deallocated_msg esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_is_err_msg esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_num_cyclic_timers esp-idf/lwip/liblwip.a(timeouts.c.obj) +lwip_poll esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_read esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_readv esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_recv esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +lwip_recvfrom esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +lwip_recvmsg esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_select esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_send esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +lwip_sendmsg esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_sendto esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) +lwip_setsockopt esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +lwip_setsockopt_impl_ext esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_shutdown esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +lwip_socket esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +lwip_socket_dbg_get_socket esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_socket_thread_cleanup esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_socket_thread_init esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_standard_chksum esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +lwip_stricmp esp-idf/lwip/liblwip.a(def.c.obj) +lwip_strnicmp esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +lwip_strnstr esp-idf/lwip/liblwip.a(def.c.obj) +lwip_write esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_writev esp-idf/lwip/liblwip.a(sockets.c.obj) +mac_enable_bb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +mac_last_rxbuf_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +mac_last_rxbuf_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +mac_rxbuf_disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_rxbuf_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_duration C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_htsig C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_plcp0 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_plcp1 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_plcp2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_txrx_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +main C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o +mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-gmtime.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +malloc_stats esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc_trim esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc_usable_size esp-idf/newlib/libnewlib.a(heap.c.obj) +mallopt esp-idf/newlib/libnewlib.a(heap.c.obj) +map_assoc_expire C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +mbedtls_aes_cmac_prf_128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_aria_crypt_cbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_crypt_cfb128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_crypt_ctr esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_crypt_ecb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) +mbedtls_aria_setkey_dec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_aria_setkey_enc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_asn1_find_named_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_free_named_data_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_free_named_data_list_shallow esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_asn1_get_alg_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_asn1_get_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_asn1_get_bitstring_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_asn1_get_bool esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_enum esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_get_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_asn1_get_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_asn1_get_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_asn1_get_sequence_of esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_asn1_sequence_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_store_named_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_traverse_sequence_of esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_write_algorithm_identifier esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_asn1_write_algorithm_identifier_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_bool esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_enum esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_ia5_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_asn1_write_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_asn1_write_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_asn1_write_named_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_octet_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_oid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_asn1_write_printable_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_raw_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_asn1_write_tagged_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_utf8_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_base64_decode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) +mbedtls_base64_encode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) +mbedtls_base64_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) +mbedtls_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_ccm_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_encrypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) +mbedtls_ccm_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_ccm_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_ccm_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_ccm_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_ccm_star_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_ccm_star_encrypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_ccm_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) +mbedtls_cipher_auth_decrypt_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_cipher_auth_encrypt_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_cipher_base_lookup_table esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_check_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_cmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_cmac_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_cmac_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_cmac_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_cmac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_crypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_cipher_definitions esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_info_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +mbedtls_cipher_info_from_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_info_from_values esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_cipher_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_set_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_supported esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_values_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) +mbedtls_cipher_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cmac_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_ct_memcmp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ct_memcpy_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_ct_memcpy_offset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ct_memmove_left esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_ct_zeroize_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_ctr_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ctr_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ctr_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ctr_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ctr_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_nonce_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ecc_group_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ecc_group_to_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_calc_secret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_compute_shared esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_gen_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdh_get_grp_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_get_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_make_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ecdh_make_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ecdh_read_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ecdh_read_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ecdh_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ecdsa_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_der_to_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_ecdsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_from_keypair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_genkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_ecdsa_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_raw_to_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_ecdsa_read_signature esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_read_signature_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_sign_det_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_sign_det_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_sign_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_write_signature esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_write_signature_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_eckey_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_eckeydh_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_ecp_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecp_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_curve_info_from_grp_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_curve_info_from_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_curve_info_from_tls_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_curve_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_export esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_gen_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_gen_keypair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_gen_keypair_base esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_gen_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_group_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_group_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_group_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ecp_group_load esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ecp_grp_id_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_ecp_is_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_keypair_calc_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_keypair_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_keypair_get_group_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_keypair_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_mul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_mul_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_muladd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_muladd_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_point_cmp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecp_point_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_point_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_point_read_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_point_read_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_point_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_read_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_set_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_set_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_tls_read_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_tls_read_group_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_read_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_write_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_write_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_write_key_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_write_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_entropy_add_source esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_entropy_func esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_entropy_gather esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_entropy_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_source_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_update_manual esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_hardware_poll esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_hmac_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed_buf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_internal_sha1_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) +mbedtls_internal_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_internal_sha512_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +mbedtls_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_md5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md5_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) +mbedtls_md_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_md_error_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_get_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_get_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_md_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_hmac_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_md_hmac_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_info_from_ctx esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_info_from_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_add_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_mpi_add_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_mpi_add_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mbedtls_mpi_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mbedtls_mpi_cmp_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_cmp_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mbedtls_mpi_cmp_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mbedtls_mpi_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mbedtls_mpi_core_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_add_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_bigendian_to_host esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_check_zero_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_clz esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_exp_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_exp_mod_working_limbs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_fill_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_from_mont_rep esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_get_mont_r2_unsafe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_lt_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_mla esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_mpi_core_montmul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_montmul_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_mul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_read_be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_read_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_shift_l esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_shift_r esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_sub esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_sub_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_to_mont_rep esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_uint_le_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_write_be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_write_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_div_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_mpi_div_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_exp_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_fill_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_gcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_gen_prime esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_get_bit esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mbedtls_mpi_grow esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mbedtls_mpi_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_inv_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_is_prime_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_lsb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_lset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_lt_mpi_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_mpi_mod_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_mod_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_mul_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_mul_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_read_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_read_binary_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_read_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_read_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_safe_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_safe_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_set_bit esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mbedtls_mpi_shift_l esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_shift_r esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_shrink esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_mpi_sub_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_sub_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_mpi_sub_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mbedtls_mpi_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_write_binary_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_mpi_write_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_write_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +mbedtls_ms_time esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_oid_from_numeric_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_attr_short_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_certificate_policies esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_oid_get_cipher_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_oid_get_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_ec_grp_algid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_extended_key_usage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_oid_get_md_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_md_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_oid_get_numeric_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_oid_by_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_oid_get_oid_by_ec_grp_algid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_oid_get_oid_by_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_oid_get_oid_by_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_oid_get_oid_by_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_pkcs12_pbe_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_sig_alg_desc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_x509_ext_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pem_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pem_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pem_read_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pem_write_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pk_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_check_pair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_copy_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_copy_public_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_debug esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_pk_ecc_set_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_ecc_set_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_ecc_set_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_ecc_set_pubkey_from_prv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_pk_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_get_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_pk_get_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pk_get_psa_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_import_into_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_load_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pk_parse_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_parse_keyfile esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pk_parse_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_parse_public_keyfile esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pk_parse_subpubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_setup_rsa_alt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_pk_sign_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_sign_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_pk_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_pk_verify_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_pk_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_pk_write_key_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_key_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pk_write_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_formatted esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pkcs12_derivation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_pkcs12_pbe_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs5_pbes2_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs5_pbkdf2_hmac_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_pkcs5_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_platform_set_calloc_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_teardown esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_zeroize esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) +mbedtls_psa_aead_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_crypto_configure_entropy_sources esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_crypto_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecdsa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecdsa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_ecp_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_load_public_part esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_ecp_load_representation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_get_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_get_stats esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +mbedtls_psa_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_key_agreement_ecdh esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_psa_rsa_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_load_representation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_psa_rsa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_rsa_alt_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_primes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_private_exponent esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_export esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_export_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_export_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_gen_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_get_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_get_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_get_md_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_get_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_import esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_import_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_parse_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_parse_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_private esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_oaep_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsaes_oaep_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign_no_mode_check esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_rsassa_pss_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_verify_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_set_padding esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_validate_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_validate_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_write_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_write_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_sha1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) +mbedtls_sha1_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) +mbedtls_sha1_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) +mbedtls_sha1_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) +mbedtls_sha1_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) +mbedtls_sha224_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) +mbedtls_sha256 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) +mbedtls_sha256_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha384_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) +mbedtls_sha3_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha3_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha3_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha3_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha3_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) +mbedtls_sha3_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha3_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) +mbedtls_sha512_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_ssl_add_hs_hdr_to_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) +mbedtls_ssl_add_hs_msg_to_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_check_cert_usage esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_check_curve esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_check_curve_tls_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_check_pending esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_check_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_check_timer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_ciphersuite_from_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_ciphersuite_from_string esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) +mbedtls_ssl_ciphersuite_get_cipher_key_bitlen esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) +mbedtls_ssl_ciphersuite_uses_ec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_close_notify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_conf_alpn_protocols esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_authmode esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_conf_ca_chain esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_conf_cert_profile esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_conf_cert_req_ca_list esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_ciphersuites esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_conf_dbg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_dtls_badmac_limit esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_encrypt_then_mac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_endpoint esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_extended_master_secret esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_groups esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_legacy_renegotiation esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_max_frag_len esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_own_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_conf_preference_order esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_conf_read_timeout esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_renegotiation esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_renegotiation_enforced esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_renegotiation_period esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_rng esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_conf_session_cache esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_session_tickets esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_session_tickets_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_sig_algs esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_conf_sni esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_transport esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_verify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +mbedtls_ssl_config_defaults esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_config_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_config_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_decrypt_buf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_derive_keys esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_encrypt_buf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_fetch_input esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_finish_handshake_msg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) +mbedtls_ssl_flush_output esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_get_alpn_protocol esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_bytes_avail esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_get_ciphersuite esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_get_ciphersuite_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) +mbedtls_ssl_get_ciphersuite_id_from_ssl esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_ciphersuite_name esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_ciphersuite_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_get_ciphersuite_sig_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_get_ecp_group_id_from_tls_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_get_extension_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_extension_mask esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_handshake_transcript esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_hs_sni esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_input_max_frag_len esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_key_exchange_md_tls1_2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_get_max_in_record_payload esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_max_out_record_payload esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_get_mode_from_ciphersuite esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_get_mode_from_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_get_output_max_frag_len esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_peer_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_psa_curve_info_from_tls_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_record_expansion esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_get_session esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_tls_id_from_ecp_group_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_get_verify_result esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_handle_message_type esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_handle_pending_alert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_handshake_client_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake_server_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_handshake_wrapup esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_handshake_wrapup_free_hs_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_hash_from_md_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_list_ciphersuites esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_md_alg_from_hash esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_optimize_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_parse_alpn_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_parse_certificate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_parse_change_cipher_spec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_parse_finished esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_parse_server_name_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_parse_sig_alg_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_pend_fatal_alert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_pk_alg_from_sig esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_prepare_handshake_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_read esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_read_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_read_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_renegotiate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_reset_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_reset_in_out_pointers esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_send_alert_message esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_send_fatal_handshake_failure esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_session_copy esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_session_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_session_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_session_load esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_session_reset esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_session_reset_int esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_session_reset_msg_layer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_session_save esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_bio esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_set_calc_verify_md esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_set_export_keys_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_set_hostname esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_hs_authmode esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_hs_ca_chain esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_hs_dn_hints esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_hs_own_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_inbound_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_set_outbound_transform esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_set_session esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_timer esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_timer_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_verify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_setup esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_sig_from_pk esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_sig_from_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_start_handshake_msg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) +mbedtls_ssl_start_renegotiation esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_tls12_write_client_hello_exts esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) +mbedtls_ssl_tls_prf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_transform_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_transform_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_update_handshake_status esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_update_in_pointers esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_update_out_pointers esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_validate_ciphersuite esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_write esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_ssl_write_alpn_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ssl_write_certificate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_write_change_cipher_spec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_write_client_hello esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_write_finished esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ssl_write_handshake_msg_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_write_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ssl_write_sig_alg_ext esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) +mbedtls_ssl_write_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_to_psa_error esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) +mbedtls_x509_crt_check_extended_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_check_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_free esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_x509_crt_get_ca_istrue esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_info esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_init esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_x509_crt_is_revoked esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +mbedtls_x509_crt_parse_cn_inet_pton esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_parse_der_nocopy esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_der_with_ext_cb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_file esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_path esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_profile_default esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_profile_next esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_profile_none esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_profile_suiteb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_verify esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_verify_info esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_verify_with_profile esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_dn_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_free_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_get_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_alg_null esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_get_ext esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_ns_cert_type esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_rsassa_pss_params esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_get_serial esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_sig esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_subject_alt_name_ext esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_time esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_info_cert_type esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_info_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_info_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_key_size_helper esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_parse_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_serial_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_sig_alg_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_time_cmp esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_time_is_future esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_time_is_past esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_zeroize_and_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbo_add_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +mbrtowc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mbrtowc.o) +md4_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) +md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +mem_calloc esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +mem_free esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +mem_free_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) +mem_init esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +mem_malloc esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) +mem_trim esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +memchr C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memchr.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +memcmp C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +memcpy C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mprec.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-dtoa.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +memmove C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memmove.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fvwrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) +memp_ARP_QUEUE esp-idf/lwip/liblwip.a(memp.c.obj) +memp_FRAG_PBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_IGMP_GROUP esp-idf/lwip/liblwip.a(memp.c.obj) +memp_MLD6_GROUP esp-idf/lwip/liblwip.a(memp.c.obj) +memp_ND6_QUEUE esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETCONN esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETDB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_PBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_PBUF_POOL esp-idf/lwip/liblwip.a(memp.c.obj) +memp_RAW_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_SYS_TIMEOUT esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCPIP_MSG_API esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCPIP_MSG_INPKT esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_PCB_LISTEN esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_SEG esp-idf/lwip/liblwip.a(memp.c.obj) +memp_UDP_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_free esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +memp_free_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_init esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +memp_init_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_malloc esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +memp_malloc_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_pools esp-idf/lwip/liblwip.a(memp.c.obj) +memset C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/hal/libhal.a(i2s_hal.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/main/libmain.a(button.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +memspi_host_erase_block esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_erase_chip esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_erase_sector esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_flush_cache esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_init_pointers esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +memspi_host_program_page esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_id_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_status_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_set_write_protect esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_write_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +mesh_add_invalid_rc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_add_option C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_adjust_passive_scan_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_bcn_change_timer_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_chain_header_add_ttl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_check_conflict_beacon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_check_last_rcandidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_check_rc_expire C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_check_tid_mbox_full C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_child_clr_ps_duty C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_child_set_ps_duty C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_clear_parent_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_coding_ie_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_conn_leave C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_conn_mutex C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_connect_to_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_connect_to_router C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_construct_rmv_announcement C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_create_task C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) +mesh_csa_set_bssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_deinit_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_disable_parent_switch_monitor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_encrypt_ie_plain_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_fill_rmv_sub_child C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_find_root_competitor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_flush_txQ C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_flush_upstream_packets C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_free C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_get_parent_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_parent_monitor_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_rssi_threshold C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_sub_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_get_subnet_nodes_list C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_get_subnet_nodes_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_get_tx_pending C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_get_vnd_roots_len C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_ie_monitor_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ie_monitor_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_ie_type2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_init_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_init_rcandidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ioctl_sem C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_is_better_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_is_ie_ignored C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_last_rc_existing C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_is_new_found_conflict_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_new_root_found C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_new_root_invalid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_yield_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_look_for_network C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_malloc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_malloc_rmv_announcement C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_multi_recv_ack C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_multi_send_ack C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_mutex_lock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_mutex_unlock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_myself_mbox C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_node_process_cycle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_node_process_disconnect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_node_process_healing C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_add_conflict_roots C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_change_layer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_conflict_roots C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_layer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_no_parent_found C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +mesh_nwk_delete_timers C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_duty_check_allowed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_check_duration_expire C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_clr_master_identity C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_clr_remaining C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_master_is_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_post_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_process_remaining C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_set_master_identity C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_set_remaining C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_find_conflict_roots C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_io_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_manual_networking C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_nwk_process_allow_switch C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_child_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_conflict_discnx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_disconnected C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_ie_change C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_leaf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_look_for_network C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_no_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_nvs_settings C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_reselect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_rootless C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_done C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_request C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_vote_done C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_announce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_monitor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_remove_conflict_roots C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_task_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_task_main C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_pack_rmv_announcement C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_parent_check_root_conflict C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parent_insert_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parent_select_done C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parse_conflict_roots_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_parse_option C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_parse_ps_entire_rule C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_parse_ps_uplink_rule C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_pm_set_null C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +mesh_pm_tbtt_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +mesh_post_parent_assoc_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_post_parent_switch_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_post_parent_weak_rssi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_print_txQ_waiting C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_process_child_macconnected C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_process_mcast_cover_node C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_announce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_switch C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_waive C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_routing_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_parent_organized C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +mesh_process_root_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_process_roots_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_process_roots_ie_ttl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_process_same_root_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_get_min_duty C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_set_awake C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_set_sleep C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_ps_get_duties C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_ps_keep_cnx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +mesh_ps_set_new_duty C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_ps_tx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_recv C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_recv_add_option C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_recv_process_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_register_timer_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_remove_myself_from_forwarding C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_root_connect_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_connect_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_root_connect_timer_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_connect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_disconnect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_roots_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_route_announce_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_rt_change_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_rt_change_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_rt_change_timer_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_rx_task_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +mesh_rx_task_main C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +mesh_rxcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +mesh_scan_done_process_weak C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_is_better_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_compute_rank C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_limit_layer2_cap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_try_layer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_try_rssi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_router C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_set_ignore C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_self_xonseq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_block_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_send_block_main C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_send_process_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_send_process_topo C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_send_roots_fixed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_roots_gone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_roots_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_stop_vote C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_default_rssi_threshold C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_ie_crypto_funcs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_io_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_parent_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_parent_monitor_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_root_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_set_root_candidate_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_set_router C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_rssi_threshold C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_self_organized C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_type C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_sta_auth_expire_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_stop_recv C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_switch_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_tcpip_mbox C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_timer_bcn_change C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_candidate_monitor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_do_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_timer_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_mie_monitor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_ps_control C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_root_connect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_route_announce C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_rt_change C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_topo_get_ttl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_tx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_tx_task_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_tx_task_main C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_tx_tid_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_update_current_parent C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_ie_rssi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_rcandidate_rssi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_route_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_vote_root_candidate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_waive_root C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_wifi_event_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_wifi_event_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_wifi_event_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_xmit_state_mbox C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_xon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_deliver_packet C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_flush_packets C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_process_disconnected C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_process_expired C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_process_no_wnd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_task_main C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mgd_probe_send_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +misc_nvs_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +misc_nvs_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +misc_nvs_load C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +misc_nvs_restore C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) +mktime C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-mktime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +mld6_input esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) +mld6_joingroup esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +mld6_joingroup_netif esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +mld6_leavegroup esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +mld6_leavegroup_netif esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +mld6_lookfor_group esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +mld6_report_groups esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +mld6_stop esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +mld6_tmr esp-idf/lwip/liblwip.a(mld6.c.obj) +mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_check_valid_ext_vaddr_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_paddr_to_vaddr esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_unmap_all esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +mmu_hal_unmap_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_vaddr_to_paddr esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +modem_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +mpi_hal_calc_hardware_words esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mpi_hal_clear_interrupt esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_disable_hardware_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_enable_hardware_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_interrupt_enable esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_read_result_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mpi_hal_set_mode esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_start_op esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_wait_op_complete esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_write_at_offset esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_write_m_prime esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_write_rinv esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_write_to_mem_block esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpu_hal_set_region_access esp-idf/hal/libhal.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) +mschapv2_derive_response esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +mschapv2_remove_domain esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +mschapv2_verify_auth_response esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +mspi_timing_change_speed_mode_cache_safe esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +mspi_timing_enter_high_speed_mode esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_enter_low_speed_mode esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_flash_tuning esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_psram_tuning esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_set_pin_drive_strength esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +multi_heap_aligned_alloc esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_impl_offs esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_offs esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_aligned_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_check esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_dump esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_allocated_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_allocated_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_first_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_info esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_info_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_next_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_lock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_is_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_malloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_malloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_minimum_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_minimum_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_realloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_realloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_register esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_register_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_set_lock esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +nan_action_frames_queued C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_all_wildcard_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_alloc_action C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_alloc_beacon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_alloc_sdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_am_event_hdlr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_cancel_service C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_compute_service_hash C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_followup_sdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_ndp_confirm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_ndp_req C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_ndp_resp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_ndp_terminate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_publish_sdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_sdea C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_subscribe_sdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_datapath_end C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_datapath_send_req C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_datapath_send_resp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_disc_disable_rx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_disc_enable_rx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_alloc_ndl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_alloc_ndp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_alloc_node C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_chan_from_bitmap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_confirm_peer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_construct_device_caps C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_dp_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_dp_delete_peer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_get_attr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_get_peer_ndl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_get_peer_ndp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_indicate_faw_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_indicate_ndc_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_dp_node_available C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_node_exists C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_availability C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_dev_caps C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_elem_container C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_ndca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_ndla C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_ndpa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_time_bitmap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_post_tx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +nan_dp_remove_node C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_schedule_ndc_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_schedule_next_faw C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_search_node C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +nan_dp_send_confirm_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_send_indication_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_send_terminated_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_setup_peer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dw_end_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_dw_start_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_faw_end_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_faw_start_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_flush_action_q C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_get_clust_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_get_peer_svc_record C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_get_random_byte C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_get_random_word C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_get_service_by_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_get_service_by_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_get_service_idx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_get_tsf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_in_transit_event_hdlr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_input esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +nan_insert_peer_svc_record C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_is_in_dw C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_master_event_hdlr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_match_filters C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_mgmt_txcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_naf_txcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_ndc_start_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_ndp_resp_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_nmns_event_hdlr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_nms_event_hdlr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_parse_ndp_confirm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_parse_ndp_req C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_parse_ndp_resp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_parse_ndp_terminate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_post_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_rx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +nan_rx_naf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_rx_sdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_scan_event_hdlr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_scan_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_sched_add_entry C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_alloc_conditional C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_alloc_time_slots C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_allocate_crbs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_avail_entries_len C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sched_construct_availability C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sched_get_chan_bitmap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_in_ndc_slot C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_init_availability C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_is_peer_available C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_parse_avail_entries C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sched_reset_avail_flags_sdf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_schedule_disc_bcn C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sd_parse_availability C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sd_parse_dev_caps C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sd_parse_sdea C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sd_receive_ctrl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sdf_txcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_send_action_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_send_disc_bcn_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_send_discovery_result C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_send_followup_msg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_send_ndp_confirm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_ndp_req C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_ndp_resp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_ndp_terminate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_receive_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_send_replied_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_send_solicited_publish C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_send_started_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_send_static_sdfs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_send_sync_bcn_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_service_type_diff C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_services_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_services_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_set_config_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_set_trc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_set_update_sdf_pending C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sm_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sm_handle_event esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sm_handle_event_internal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_sm_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sm_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sm_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_start esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_start_publish_service C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_start_subscribe_service C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_state_str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_static_sdfs_present C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_stop esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_tolower C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_transmit_action C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_transmit_bcn C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_tx_action_frame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_tx_queued_action_frames C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_update_static_sdfs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_update_tsf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_warmup_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nd6_adjust_mld_membership esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_cleanup_netif esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_clear_destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +nd6_find_route esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +nd6_get_destination_mtu esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +nd6_get_next_hop_addr_or_queue esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ethip6.c.obj) +nd6_input esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) +nd6_reachability_hint esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +nd6_restart_netif esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_tmr esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +ndp_rxcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +neighbor_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +net80211_funcs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +net80211_funcs_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +net80211_funcs_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +net80211_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +net80211_softap_funcs_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +netbuf_alloc esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netbuf_chain esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_data esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_delete esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netbuf_first esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_free esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netbuf_new esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_next esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_ref esp-idf/lwip/liblwip.a(netbuf.c.obj) +netconn_aborted esp-idf/lwip/liblwip.a(api_msg.c.obj) +netconn_accept esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_alloc esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_bind esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_bind_if esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_close esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_closed esp-idf/lwip/liblwip.a(api_msg.c.obj) +netconn_connect esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_delete esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_deleted esp-idf/lwip/liblwip.a(api_msg.c.obj) +netconn_disconnect esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_err esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_free esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_getaddr esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_gethostbyname_addrtype esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_join_leave_group esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_join_leave_group_netif esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_listen_with_backlog esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_new_with_proto_and_callback esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_prepare_delete esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_recv esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_recv_tcp_pbuf esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_recv_tcp_pbuf_flags esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_recv_udp_raw_netbuf esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_recv_udp_raw_netbuf_flags esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_reset esp-idf/lwip/liblwip.a(api_msg.c.obj) +netconn_send esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_sendto esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_shutdown esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_tcp_recvd esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_thread_cleanup esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_thread_init esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_write_partly esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_write_vectors_partly esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netif_add esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_add_ext_callback esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_add_ip6_address esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_add_noaddr esp-idf/lwip/liblwip.a(netif.c.obj) +netif_create_ip6_linklocal_address esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_default esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +netif_find esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netif_get_by_index esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netif_get_ip6_addr_match esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +netif_index_to_name esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_init esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +netif_input esp-idf/lwip/liblwip.a(netif.c.obj) +netif_invoke_ext_callback esp-idf/lwip/liblwip.a(netif.c.obj) +netif_ip6_addr_set esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_ip6_addr_set_parts esp-idf/lwip/liblwip.a(netif.c.obj) +netif_ip6_addr_set_state esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +netif_list esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +netif_loop_output esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +netif_name_to_index esp-idf/lwip/liblwip.a(netif.c.obj) +netif_poll esp-idf/lwip/liblwip.a(netif.c.obj) +netif_remove esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_remove_ext_callback esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_addr esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +netif_set_default esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_down esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_gw esp-idf/lwip/liblwip.a(netif.c.obj) +netif_set_ipaddr esp-idf/lwip/liblwip.a(netif.c.obj) +netif_set_link_down esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_link_up esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_netmask esp-idf/lwip/liblwip.a(netif.c.obj) +netif_set_up esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +new_password_encrypted_with_old_nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +newlib_include_assert_impl esp-idf/newlib/libnewlib.a(assert.c.obj) +newlib_include_heap_impl esp-idf/newlib/libnewlib.a(heap.c.obj) +newlib_include_pthread_impl esp-idf/newlib/libnewlib.a(pthread.c.obj) +newlib_include_syscalls_impl esp-idf/newlib/libnewlib.a(syscalls.c.obj) +node_remove_from_list esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +noise_array C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +noise_check_loop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +noise_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +noise_timeout_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +nt_challenge_response esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) +nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +nt_password_hash_encrypted_with_block esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +nvs::HashList::HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +nvs::HashList::HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::HashList::HashListBlock::HashListBlock() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +nvs::HashList::HashListBlock::HashListBlock() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +nvs::HashList::clear() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::HashList::erase(unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::HashList::find(unsigned int, nvs::Item const&) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::HashList::insert(nvs::Item const&, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::HashList::~HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +nvs::HashList::~HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Item::calculateCrc32() const esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Item::calculateCrc32(unsigned char const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Item::calculateCrc32WithoutValue() const esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +nvs::Item::getKey(char*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Lock::Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +nvs::Lock::Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Lock::init() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Lock::mSemaphore esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +nvs::Lock::uninit() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +nvs::Lock::~Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Lock::~Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) +nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSEncryptedPartition::init(nvs_sec_cfg_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) +nvs::NVSEncryptedPartition::read(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSEncryptedPartition::write(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSHandleSimple::calcEntriesInNamespace(unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::commit() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::debugDump() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::erase_all() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::erase_item(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::findEntry(nvs_opaque_iterator_t*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::findEntryNs(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSHandleSimple::find_key(char const*, nvs_type_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::get_blob(char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::get_item_size(nvs::ItemType, char const*, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::get_partition_name() const esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSHandleSimple::get_storage() const esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSHandleSimple::get_string(char const*, char*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::get_typed_item(nvs::ItemType, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::get_used_entry_count(unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::nextEntry(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::set_blob(char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::set_string(char const*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::set_typed_item(nvs::ItemType, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSPartition::NVSPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::NVSPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartition::erase_range(unsigned int, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::get_address() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::get_partition_name() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::get_readonly() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::get_size() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::read(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +nvs::NVSPartition::read_raw(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::write(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +nvs::NVSPartition::write_raw(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +nvs::NVSPartitionManager::close_handle(nvs::NVSHandleSimple*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSPartitionManager::deinit_partition(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::get_instance() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::init_custom(nvs::Partition*, unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::init_partition(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::instance esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::NVSPartitionManager::lookup_storage_from_name(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::open_handle(char const*, char const*, nvs_open_mode_t, nvs::NVSHandleSimple**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::open_handles_size() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::NVSPartitionManager::secure_init_partition(char const*, nvs_sec_cfg_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Page::Header::calculateCrc32() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::Page() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::Page() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::alterEntryRangeState(unsigned int, unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::alterEntryState(unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::alterPageState(nvs::Page::PageState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::calcEntries(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::cmpItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::copyItems(nvs::Page&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::debugDump() const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::erase() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::eraseEntryAndSpan(unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::eraseItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned int&, nvs::Item&, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::getSeqNumber(unsigned long&) const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::getVarDataTailroom() const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::initialize() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::load(nvs::Partition*, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::mLoadEntryTable() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::markFreeing() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::markFull() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::pageStateToName(nvs::Page::PageState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::readEntry(unsigned int, nvs::Item&) const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::setSeqNumber(unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::setVersion(unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::updateFirstUsedEntry(unsigned int, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::writeEntry(nvs::Item const&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::writeEntryData(unsigned char const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::PageManager::activatePage() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::PageManager::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::PageManager::load(nvs::Partition*, unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::PageManager::requestNewPage() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::Storage(nvs::Partition*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Storage::Storage(nvs::Partition*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Storage::calcEntriesInNamespace(unsigned char, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::clearNamespaces() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::cmpMultiPageBlob(unsigned char, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::createOrOpenNamespace(char const*, bool, unsigned char&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Storage::debugDump() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Storage::eraseItem(unsigned char, nvs::ItemType, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::eraseMismatchedBlobIndexes(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::eraseMultiPageBlob(unsigned char, char const*, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::eraseNamespace(unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::eraseOrphanDataBlobs(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::fillEntryInfo(nvs::Item&, nvs_entry_info_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Storage::findEntry(nvs_opaque_iterator_t*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Storage::findEntryNs(nvs_opaque_iterator_t*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::findItem(unsigned char, nvs::ItemType, char const*, nvs::Page*&, nvs::Item&, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::findKey(unsigned char, char const*, nvs::ItemType*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::getItemDataSize(unsigned char, nvs::ItemType, char const*, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::init(unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Storage::isValid() const esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Storage::nextEntry(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Storage::populateBlobIndices(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::readMultiPageBlob(unsigned char, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::writeMultiPageBlob(unsigned char, char const*, void const*, unsigned int, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::~Storage() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::~Storage() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::partition_lookup::lookup_nvs_encrypted_partition(char const*, nvs_sec_cfg_t*, nvs::NVSPartition**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::NVSPartition**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs_close esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_commit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_dump esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_find esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_find_in_handle esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_info esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_next esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_erase_all esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +nvs_erase_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_find_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_deinit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_deinit_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_erase esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_erase_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_erase_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_generate_keys esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_generate_keys_v2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_get_default_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_read_security_cfg esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_read_security_cfg_v2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_register_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_secure_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_secure_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_get_i16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_i32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_i64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_i8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_get_stats esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_str esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_u16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_get_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +nvs_get_u64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_u8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_get_used_entry_count esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_op2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) +nvs_open esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_open_from_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_release_iterator esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_sec_provider_deregister esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +nvs_sec_provider_include_impl esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +nvs_set_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_set_i16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_i32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_i64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_i8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_set_str esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_u16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_set_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +nvs_set_u64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_u8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nwk_event_id2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +offchan_in_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +offchan_recv_action C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +offchan_send_action_tx_status C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +offchan_txop_end C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +offchan_txop_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +offset_cpsa esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +offset_pxEndOfStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +offset_xCoreID esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +old_nt_password_hash_encrypted_with_new_nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +omac1_aes_128 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +omac1_aes_128_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +omac1_aes_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) +opendir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +operator delete(void*) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) +operator delete(void*, unsigned int) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +operator delete[](void*) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +operator delete[](void*, unsigned int) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opvs.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +operator new(unsigned int) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) +operator new[](unsigned int) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) +operator new[](unsigned int, std::nothrow_t const&) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +opt_11b_resart C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +opt_type2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +optype2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +os_get_random esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +os_get_time esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +os_gmtime esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +os_memdup esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +os_mktime esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +os_random esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +os_reltime_expired esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +os_reltime_initialized esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +os_sleep esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +os_timer_arm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_arm_us esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_disarm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_done esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_setfn esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +owe_build_assoc_req esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +owe_build_dhie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +owe_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +owe_process_assoc_resp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +pTxRx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +panicHandler esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +panic_arch_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_get_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_get_cause esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_print_backtrace esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_print_char esp-idf/esp_system/libesp_system.a(panic.c.obj) +panic_print_dec esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +panic_print_hex esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +panic_print_registers esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_print_str esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_restart esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +panic_set_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_soc_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +pbkdf2_sha1 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +pbuf_add_header esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_add_header_force esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +pbuf_alloc esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +pbuf_alloc_reference esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_alloced_custom esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) +pbuf_cat esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +pbuf_chain esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_clen esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +pbuf_clone esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +pbuf_coalesce esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_copy esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +pbuf_copy_partial esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +pbuf_copy_partial_pbuf esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_dechain esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_free esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +pbuf_free_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) +pbuf_free_header esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +pbuf_free_ooseq_pending esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_get_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +pbuf_get_contiguous esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_header esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_header_force esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +pbuf_memcmp esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_memfind esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_put_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_realloc esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +pbuf_ref esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +pbuf_remove_header esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_skip esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_strstr esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_take esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_take_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) +pbuf_try_get_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +pbus_print C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +pbus_rx_dco_cal_1step C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +pcTaskGetName esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pcTimerGetName esp-idf/freertos/libfreertos.a(timers.c.obj) +peap_prfplus esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +pend_flag_periodic_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +periph_inform_out_light_sleep_overhead esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +periph_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +periph_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +periph_module_reset esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) +periph_rcc_acquire_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +periph_rcc_acquire_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +periph_rcc_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/driver/libdriver.a(i2s_platform.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +periph_rcc_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/driver/libdriver.a(i2s_platform.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +periph_rcc_release_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +periph_rcc_release_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +periph_rtc_apll_acquire esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +periph_rtc_apll_freq_set esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +periph_rtc_apll_release esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +periph_rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +periph_rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +periph_rtc_dig_clk8m_get_freq esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +phy_ant_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_bt_ifs_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_bt_pll_track C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_bt_pll_track_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_bt_power_track C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_bt_power_track_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_bttx_low_power C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_byte_to_word C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_cal_print C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_chan_dump_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +phy_chan_filt_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +phy_chan_gain_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_chan_pwr_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +phy_chan_target_power C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +phy_change_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) +phy_change_channel_nomac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +phy_close_pa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_close_rf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_clr_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_dac_org C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_dcur_org C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_dig_reg_backup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_dis_hw_set_freq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_dis_pwdet_one C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_disable_low_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +phy_en_hw_set_freq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_enable_low_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +phy_enabled_modem_contains esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_force_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_force_wifi_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +phy_force_wifi_chan_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_freq_correct_opt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_freq_offset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_freq_wifi_only C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_get_adc_rand C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_get_bb_freqoffset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +phy_get_fetx_delay C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +phy_get_lock esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_get_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_get_most_tpw C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +phy_get_rf_cal_version C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_get_romfunc_addr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_get_romfuncs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_get_rx_freq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_get_tsens_value esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_get_tx_pwr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_get_tx_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_get_txpwr_param C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_hw_set_freq_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_i2c_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_i2c_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_i2c_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_i2c_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_in_most_power C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_in_most_power_bk C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_in_vdd33_offset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_init_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_init_param_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_init_pwr_print C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_meas_noise_floor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_param_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_param_track_tot esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_pwdet_always_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +phy_pwdet_onetime_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +phy_pwdet_onetime_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +phy_reg_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_reg_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_rfcal_data_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_rx11blr_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_rx_sense_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_rxbb_dc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_rxrf_dc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_set_bbfreq_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_set_bt_dig_gain C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +phy_set_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_set_most_tpw C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +phy_set_most_tpw_disbg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +phy_set_most_tpw_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_set_most_tpw_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +phy_set_pwdet_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_set_rfrx_dcap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_set_tsens_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_set_wifi_mode_only C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_sw_set_chan_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_track_pll esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_track_pll_deinit esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_track_pll_init esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_tx_power_out C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +phy_tx_pwr_error C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_tx_pwr_track_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_unforce_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_unforce_wifi_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +phy_version_print C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_version_str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +phy_wakeup_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_wifi_enable_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +phy_wifi_pll_track C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_wifi_pll_track_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +phy_wifitx_low_power C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +pll_correct_dcap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +pm_active_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_allow_tx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_attach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_beacon_misc_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_configure C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_beacon_monitor_tbtt_allowed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_tbtt_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_tbtt_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_tbtt_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_beacon_monitor_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_beacon_timestamp_statistic C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_check_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_coex_reconnect_policy C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_coex_schm_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_coex_schm_process_restart C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_coex_separate_connectionless_window C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_coex_set_reconnect_policy C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_coex_slice_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_coex_tbtt_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_connectionless_module_set_wake_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_connectionless_wake_interval_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_connectionless_wake_window_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_deattach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_disable_beacon_monitor_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disable_disconnected_sleep_delay_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disable_dream_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disable_sleep_delay_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disconnected_sleep C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disconnected_sleep_delay_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_disconnected_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_disconnected_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_disconnected_wake C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_dream C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_dream_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_enable_active_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_beacon_monitor_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_disconnected_sleep_delay_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_dream_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_sleep_delay_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_sta_disconnected_power_management C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_force_scan_unlock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_get_connectionless_status C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_get_idle_wait_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_get_null_max_tx_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_get_sleep_type C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +pm_go_to_sleep C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_go_to_wake C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_handle_tbtt_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_hmac_rx_data_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_is_dream C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_is_in_wifi_slice_threshold C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_is_open C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +pm_is_sleeping C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +pm_is_waked C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_keep_alive C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_mac_sleep C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_mac_sleep_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_mac_sleep_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_mac_wakeup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_mesh_set_next_tbtt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_noise_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_noise_check_disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_off_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_on_beacon_rx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_coex_schm_process_restart C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_coex_schm_status_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_coex_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_on_data_rx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_data_tx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_data_tx_done C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_probe_resp_rx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_parse_beacon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_pend_noise_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_process_tim C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_register_connectionless_wake_window C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_register_pm_tx_null_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_rx_beacon_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_rx_data_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_scale_listen_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_scan_lock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_scan_unlock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_send_nullfunc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_send_probe_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_send_probe_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_send_sleep_null_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_send_wake_null_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_set_keep_alive_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_set_next_tbtt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_set_sleep_delay_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_set_sleep_type C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_sleep C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_sleep_delay_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_sleep_for C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_tbtt_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_try_scan_unlock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_data_done_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_data_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_null_data_done_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_unregister_connectionless_wake_window C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_update_by_connectionless_status C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_update_light_sleep_default_params C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_update_next_tbtt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_update_params C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_wake_done C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_wake_up C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pmksa_cache_add esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_auth_add esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_add_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_auth_create_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_auth_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_flush esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_auth_get esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_list esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_clear_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_flush esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_free_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_get esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_get_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_get_opportunistic esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +pmksa_cache_init esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_list esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +pmksa_cache_set_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +port_IntStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_interruptNesting esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_start_app_hook esp-idf/freertos/libfreertos.a(app_startup.c.obj) +port_switch_flag esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_uxCriticalNesting esp-idf/freertos/libfreertos.a(port.c.obj) +port_uxOldInterruptState esp-idf/freertos/libfreertos.a(port.c.obj) +port_xSchedulerRunning esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +posix_memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +post_handler esp-idf/main/libmain.a(http_control.c.obj) +ppAMPDU2Normal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAdd2AMPDUTail C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAddTimCount C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAssembleAMPDU C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAssembleMicHdr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCalFrameTimes C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppCalSubFrameLength C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCalTkipMic C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCalTxAMPDULength C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCheckIsConnTraffic C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCheckTxAMPDUlength C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCheckTxConnTrafficIdle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ppCheckTxIdle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ppCheckTxQIdle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ppClearRxFragment C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ppClearTxq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueRxq_Locked C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueTxDone_Locked C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueTxQ C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppDirectRecycleAmpdu C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppDisableQueue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDiscardMPDU C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppEmptyDelimiterLength C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppEnableQueue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppEnqueueRxq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppEnqueueTxDone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppFetchTxQFirstAvail C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppFillAMPDUBar C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppGetTaskHdl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppGetTxQFirstAvail_Locked C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppGetTxframe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppInitTxq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppInstallKey C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ppMapTxQueue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppMapWaitTxq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppMessageInQ C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppPauseTxAMPDU C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppPrepareBarFrame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcTxCallback C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppProcTxDone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcTxSecFrame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessLifeTime C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppProcessRxPktHdr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessTxQ C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppProcessWaitQ C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessWaitingQueue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ppReSendBar C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecordBarRRC C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecycleAmpdu C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecycleRxPkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRecycleTxBuf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRegisterPromisRxCallback C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterRxCallback C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterTxCallback C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterTxDoneUserActionCallback C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegressAmpdu C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppResortTxAMPDU C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppResumeTxAMPDU C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRollBackTxQ C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRxFragmentProc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRxPkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRxProtoProc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSearchTxQueue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSearchTxframe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSelectNextQueue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSetBarRate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppSetInterface C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppSubFromAMPDU C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppTask C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppTxPkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ppTxProtoProc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppTxqEmpty C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppTxqUpdateBitmap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppUnregisterTxCallback C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_allow_cut_sevt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_attach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_can_cut_evt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_can_cut_sevt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_coex_tx_release C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_coex_tx_request C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_create_task C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_deattach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_default_event_handler C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_delete_task C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_gettid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_hdrsize C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_need_cut_rx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_post C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pp_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +pp_process_hmac_waiting_txq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_register_config_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_michael_mic_failure_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_net80211_tx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_timer_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_tx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +pp_set_cut_evt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_set_cut_rx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_sig_cnt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_stop_sw_txq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_timer_do_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_timer_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pp_timer_register_post_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_unregister_tx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +pread esp-idf/vfs/libvfs.a(vfs.c.obj) +prefix_list esp-idf/lwip/liblwip.a(nd6.c.obj) +print_rc_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +print_roots_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +print_sta_pmk C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +print_txupQ_pending C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +printf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-printf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +printf_decode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +printf_encode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +prvReleaseKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +prvTakeKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +prvTaskPriorityRaise esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +prvTaskPriorityRestore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +psa_aead_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_generate_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_allocate_buffer_to_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_can_do_cipher esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_can_do_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_generate_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_close_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_copy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_copy_key_material_into_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_crypto_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_input_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_input_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_output_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_output_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_destroy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_destroy_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_get_builtin_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) +psa_driver_wrapper_get_key_buffer_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_export_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_export_public_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) +psa_format_key_data_for_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_free_persistent_key_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generate_key_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generate_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generate_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_generic_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +psa_get_and_lock_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_get_key_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_hash_compare esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_import_key_into_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_initialize_key_slots esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_interruptible_get_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_is_key_present_in_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_is_valid_key_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_its_get esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_get_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_remove esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_set esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_key_agreement_raw_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_get_capacity esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_bytes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_integer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_bytes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_key_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_set_capacity esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_production_parameters_are_default esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_load_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_open_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_parse_key_data_from_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_pk_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_purge_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_raw_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_remove_key_data_from_memory esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_reserve_free_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_reset_key_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_save_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_message_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +psa_to_lms_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_to_md_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +psa_to_pk_rsa_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_unregister_read esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_unregister_read_under_mutex esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_key_location esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_key_persistence esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_unstructured_key_bit_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_message_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_wipe_all_key_slots esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_wipe_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +pthread_attr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cancel esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cond_broadcast esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_signal esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_cond_timedwait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_cond_wait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_condattr_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_getclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_getpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_setclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_setpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_create esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_detach esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_equal esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_exit esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_getspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_cond_var_impl esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_include_pthread_impl esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_local_storage_impl esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pthread_include_pthread_rwlock_impl esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_include_pthread_semaphore_impl esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +pthread_internal_local_storage_destructor_callback esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_join esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_create esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_lazy_init_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutexattr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_gettype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_settype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_once esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_rwlock_destroy esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_init esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_rdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_tryrdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_trywrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_unlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_wrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_self esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setcancelstate esp-idf/newlib/libnewlib.a(pthread.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ftello.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fseeko.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fwrite.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fread.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fopen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-findfp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fgets.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fflush.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ferror.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fclose.o) +pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_sigmask esp-idf/newlib/libnewlib.a(pthread.c.obj) +putc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putc.o) +putchar C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-putchar.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +putle32 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +puts C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +pvPortMalloc esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +pvTaskGetCurrentTCBForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) +pvTaskGetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pvTaskIncrementMutexHeldCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +pvTimerGetTimerID esp-idf/freertos/libfreertos.a(timers.c.obj) +pvalloc esp-idf/newlib/libnewlib.a(heap.c.obj) +pwdet_sar2_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +pwrdet_offset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) +pwrsave_flushq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +pxCurrentTCBs esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +pxPortInitialiseStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +pxTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) +qsort C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +raise esp-idf/newlib/libnewlib.a(syscalls.c.obj) +ram_bb_bss_bw_40_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_bb_bss_cbw40_dig C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_bb_tx_ht20_cen C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_cbw2040_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_check_noise_floor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_chip_i2c_readReg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_chip_i2c_writeReg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_dc_iq_est C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_disable_agc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_en_pwdet C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_enable_agc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_gen_rx_gain_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_get_fm_sar_dout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_get_rf_gain_qdb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_index_to_txbbgain C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_iq_est_disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_iq_est_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_meas_tone_pwr_db C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_pbus_debugmode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_pbus_force_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_pbus_force_test C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_pbus_rx_dco_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_pbus_xpd_tx_on C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_phy_get_noisefloor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_phy_get_vdd33 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_read_sar_dout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_restart_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_rfcal_pwrctrl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_rfcal_txcap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_rfpll_reset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_rfpll_set_freq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_set_chan_cal_interp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_set_noise_floor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_set_pbus_mem C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_set_rxclk_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_set_txcap_reg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_set_txclk_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_spur_coef_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_start_tx_tone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_tx_pwctrl_bg_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_tx_pwr_backoff C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +ram_txbbgain_to_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_txcal_work_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_txdc_cal_v70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_txiq_cover C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +ram_txiq_get_mis_pwr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_wait_rfpll_cal_end C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +ram_write_gain_mem C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rand C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +raw_bind esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_bind_netif esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +raw_connect esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_disconnect esp-idf/lwip/liblwip.a(raw.c.obj) +raw_input esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +raw_netif_ip_addr_changed esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +raw_new esp-idf/lwip/liblwip.a(raw.c.obj) +raw_new_ip_type esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_recv esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_remove esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_send esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_sendto esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_sendto_if_src esp-idf/lwip/liblwip.a(raw.c.obj) +rc11BSchedTbl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc11GSchedTbl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc11NSchedTbl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc4_skip esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +rcAmpduLowerRate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcAttach C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcClearCurAMPDUSched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcClearCurSched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcClearCurStat C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGet11BHighestRateIdx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGet11GHighestRateIdx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGet11NHighestRateIdx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetAmpduSched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcGetDefaultHigestRateIdx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetHighestRateIdx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetRate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcGetSched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcLoRaRate2SchedIdx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcLoRaSchedTbl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcLowerSched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcP2P11GSchedTbl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcP2P11NSchedTbl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcReachRetryLimit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcSetBarRate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcSetTxAmpduLimit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcTxUpdatePer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpSched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpdateAMPDUParam C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rcUpdateAckSnr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpdatePhyMode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rcUpdateRate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpdateRxDone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcUpdateTxDone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcUpdateTxDoneAmpdu2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rc_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rc_disable_trc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_disable_trc_by_interface C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_enable_trc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_G6M_sched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_default_sched C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_fix_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_mask C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_get_sta_trc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_get_trc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_trc_by_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_trc_default C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_only_sta_trc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_set_fix_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_set_per_conn_fix_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +re_entry C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +reachable_time esp-idf/lwip/liblwip.a(nd6.c.obj) +read_hw_noisefloor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +readdir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) +realloc esp-idf/newlib/libnewlib.a(heap.c.obj) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiscanf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +reconnect_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +reconnect_type2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +reg_init_begin C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +regi2c_ctrl_read_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_ctrl_read_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_ctrl_write_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_ctrl_write_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_enter_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +regi2c_exit_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +regi2c_saradc_disable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_saradc_enable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +registerInterrupt esp-idf/main/libmain.a(button.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +register_chipv7_phy C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +register_chipv7_phy_init_param C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +register_ieee80211_action_vendor_get_key_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +register_ieee80211_action_vendor_spec_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +register_ieee80211_rfid_locp_recv_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +registered_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +remove C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-remove.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) +rename C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rename.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) +resend_eapol_handle esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +reset_cs_thres C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +reset_rf_dig C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +retrans_timer esp-idf/lwip/liblwip.a(nd6.c.obj) +rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) +rf_cal_data_backup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rf_cal_data_recovery C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rf_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rfcal_bb_atten_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +rfcal_txiq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rfpll_1p2_opt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +rfpll_offset_delta C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +rfrx_dcap_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rfrx_vga_lna_dcap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) +roc_op_end C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +roc_op_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +rom_flash_chip_dummy esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +rom_flash_chip_dummy_hpm esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +rom_spiflash_api_funcs esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +roots_type2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +rotl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rotr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +roundup2 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +route_announce_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +route_announce_timer_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +route_announce_timer_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +routetype2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +rsn_cipher_put_suites esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +rsn_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +rssi_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +rssi_margin C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rssi_saved C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +rssi_to_rcpi esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +rtc_apbbridge_sel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_coeff_calc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +rtc_clk_apll_coeff_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +rtc_clk_apll_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cal_ratio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_clk_cpu_freq_to_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_set_to_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_freq_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) +rtc_clk_select_rtc_slow_clk esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_wait_for_slow_cycle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_cmd_ext_wakeup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_cmd_wakeup_conf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +rtc_get_st C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rtc_gpio_deinit esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_force_hold_dis_all esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_force_hold_en_all esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_get_drive_capability esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_get_level esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_hold_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_hold_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_init esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) +rtc_gpio_iomux_func_sel esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_is_valid_gpio esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_isolate esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_pulldown_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pulldown_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pullup_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pullup_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_set_direction esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) +rtc_gpio_set_direction_in_sleep esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_drive_capability esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_set_level esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_wakeup_disable esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_wakeup_enable esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_init_clk C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_init_full C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_io_desc esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +rtc_io_num_map esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +rtc_io_number_get esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_is_st_idle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_isr_deregister esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +rtc_isr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +rtc_isr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +rtc_isr_register esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +rtc_pad_ext_wakeup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_pad_gpio_wakeup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_pads_funie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +rtc_pads_funsel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_pads_hold C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_pads_muxsel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +rtc_pads_pd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +rtc_pads_pu C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +rtc_pads_slpie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +rtc_pads_slpoe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +rtc_pads_slpsel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_powerdown_rf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_powerup_rf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +rtc_sdreg_off C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_sleep_enable_ultra_low esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_get_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_low_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_slp_prep C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_slp_prep_lite_12M C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_soc_clk_ck12m C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtc_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +rtc_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +rtc_time_slowclk_to_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_time_us_to_slowclk esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_vddsdio_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtc_vddsdio_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtc_wifi_force_pd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc.o) +rtcio_hal_isolate esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtcio_hal_set_direction esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtcio_hal_set_direction_in_sleep esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +runFilter esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +rw_coex_on C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +rx11NRate2AMPDULimit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rx_11b_opt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rx_blocking_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rx_chan_dc_sort C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rx_gain_level C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rx_spur_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +rxdc_est_min C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +rxmax_ext_level C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +s_avail_seq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_dp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_eapol_txdone_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +s_fix_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +s_fix_rate_mask C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +s_fragment C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +s_head esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +s_ioctl_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +s_is_6m C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +s_map C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +s_mesh_beacon_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +s_mesh_running_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +s_mesh_send_mutex C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +s_mesh_stop_mutex C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +s_microseconds_offset esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +s_ndp_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_netstack_free C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +s_netstack_ref C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +s_ni C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +s_register_config_driver esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +s_sd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +s_spinlock esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +s_time_update_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +s_tx_cacheq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +s_wifi_api_lock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +s_wifi_mac_time_update_cb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +s_wifi_nvs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +s_wifi_queue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +s_wifi_task_hdl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +sae_accept_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +sae_check_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_check_confirm_pk esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_clear_data esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_clear_temp_data esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +sae_deinit_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_derive_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_derive_pwe_from_pt_ecc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_derive_pwe_from_pt_ffc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_ecc_prime_len_2_hash_len esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_ffc_prime_len_2_hash_len esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_group_allowed esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +sae_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_parse_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_pk_base32_decode esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_base32_encode esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_buf_shift_left_19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_get_be19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_set_password esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_pk_valid_password esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_prepare_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_prepare_commit_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_process_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_set_group esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_state_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_write_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_write_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sar_periph_ctrl_adc_continuous_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +sar_periph_ctrl_adc_continuous_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +sar_periph_ctrl_adc_oneshot_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) +sar_periph_ctrl_adc_oneshot_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) +sar_periph_ctrl_init esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +sar_periph_ctrl_power_disable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sar_periph_ctrl_power_enable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sar_periph_ctrl_pwdet_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +sar_periph_ctrl_pwdet_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +sc_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +scalbn C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_scalbn.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-k_rem_pio2.o) +scan_add_bssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_add_probe_ssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_build_chan_list C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_cancel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +scan_check_hidden C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_connect_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_enter_oper_channel_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +scan_fill_wps_scan_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_flush_all_tx_buf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +scan_get_apnum C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_get_owe_channel_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_get_scan_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_get_type C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_hidden_ssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_inter_channel_timeout_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +scan_parse_beacon C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +scan_parse_ht2040_coex C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_pm_channel_op_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_prefer_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_profile_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_remove_bssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_remove_probe_ssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_reset_cipher_and_akm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_result_print C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +scan_set_act_duration C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_desChan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_home_chan_dwell_time C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_pas_duration C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_scan_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_status2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +scan_update_scan_history C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_validate_owe_scenarios C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scannum C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +sched_yield esp-idf/pthread/libpthread.a(pthread.c.obj) +seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) +select esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +sem_destroy esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_getvalue esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_init esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_post esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_timedwait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_trywait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_wait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +send_ap_probe C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +set_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +set_bt_chan_cal_interp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +set_cca C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_chan_dig_gain C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_chan_freq_hw_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +set_chan_freq_sw_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_chan_reg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_chan_rxcomp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_chanfreq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) +set_chanfreq_nomac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy.o) +set_channel_rfpll_freq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +set_most_pwr_reg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_most_tpw C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_rtc_memory_crc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +set_rx_gain_cal_dc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_rx_gain_cal_iq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_rx_gain_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_rx_gain_testchip_70 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_rx_sense C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +set_tx_dig_gain C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_tx_gain_table C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +set_tx_gain_table_bt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +set_xpd_sar esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +setbuf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +setlocale C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) +settimeofday esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +setvbuf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setvbuf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-setbuf.o) +sha1_prf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +sha1_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +sha256_prf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +sha256_prf_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sha256_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +sha384_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +sha512_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +sha_hal_hash_block esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_read_digest esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_wait_idle esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sigfillset esp-idf/newlib/libnewlib.a(pthread.c.obj) +sin C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_sin.o) + esp-idf/main/libmain.a(butterworthdesign.c.obj) +siscanf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) +sleep esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) +sleep_modem_configure esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_modem_reject_triggers esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sleep_modem_wifi_modem_state_skip_light_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sms4 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +snprintf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-snprintf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +soc_get_available_memory_region_max_count esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_get_available_memory_regions esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_region_count esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_regions esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_type_count esp-idf/heap/libheap.a(memory_layout.c.obj) +soc_memory_types esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_reserved_memory_region_end esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +soc_reserved_memory_region_start esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +spi_bus_add_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_deinit_lock esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_free esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_get_attr esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_init_lock esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_initialize esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_lock_acquire_end esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_bus_lock_acquire_start esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_bus_lock_bg_check_dev_acq esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_check_dev_req esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_clear_req esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_entry esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_exit esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_req_exist esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_request esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_get_acquiring_dev esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_get_by_id esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_get_dev_id esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_register_dev esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_set_bg_control esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_lock_touch esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_bus_lock_unregister_dev esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_wait_bg_done esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +spi_bus_main_set_lock esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_register_destroy_func esp-idf/driver/libdriver.a(spi_common.c.obj) +spi_bus_remove_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_brownout_need_reset esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +spi_flash_cache2phys esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +spi_flash_cache_enabled esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +spi_flash_check_and_flush_cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_chip_gd_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_generic_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_reg esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_unique_id esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_unique_id_none esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_timeout esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_yield esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_issi_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_winbond_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_winbond_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_winbond_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_read_status_16b_rdsr_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_read_status_8b_rdsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_read_status_8b_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_16b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_write_status_8b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_8b_wrsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_disable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_enable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +spi_flash_enable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +spi_flash_enable_interrupts_caches_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_encryption_hal_check esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_destroy esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_disable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_done esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_enable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_prepare esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_guard_get esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_guard_set esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_check_status esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_common_command esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_device_config esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_erase_block esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_erase_chip esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_erase_sector esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_init esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_program_page esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_read esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_resume esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_set_write_protect esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_setup_read_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_init_chip_state esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +spi_flash_init_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_mmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_mmap_dump esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_mmap_get_free_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_mmap_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_munmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_needs_reset_check esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +spi_flash_op_block_func esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_op_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_op_unlock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_phys2cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_restore_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_set_erasing_flag esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_flash_set_rom_required_regs esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_periph_signal esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_timing_get_flash_timing_param esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +spi_timing_is_tuned esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +spicommon_bus_free_io_cfg esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_bus_initialize_io esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_bus_using_iomux esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spicommon_cs_free_io esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_cs_initialize esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dma_chan_alloc esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dma_chan_free esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dmaworkaround_idle esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dmaworkaround_req_reset esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dmaworkaround_reset_in_progress esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dmaworkaround_transfer_active esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_irqdma_source_for_host esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_irqsource_for_host esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_periph_claim esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_periph_free esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_periph_in_use esp-idf/driver/libdriver.a(spi_common.c.obj) +sprintf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sprintf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +spur_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +srand C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-rand.o) +sta_auth_ft C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_auth_open C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_auth_sae C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_auth_shared C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_bip_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_con_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +sta_csa_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +sta_eapol_txdone_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_get_beacon_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +sta_get_owe_data C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +sta_input C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +sta_is_wpa3_enabled C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +sta_michael_mic_failure C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +sta_recv_assoc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_recv_ctl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_recv_mgmt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_reset_beacon_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +sta_retry_assoc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +sta_rx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +sta_rx_csa C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +sta_rx_eapol C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_rxcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +sta_sa_query_process_timeout C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +sta_try_sa_query_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +start_cpu0 esp-idf/esp_system/libesp_system.a(startup.c.obj) +start_cpu_other_cores esp-idf/esp_system/libesp_system.a(startup.c.obj) +start_webserver esp-idf/main/libmain.a(http_control.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +start_write_addr esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +startup_resume_other_cores esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +stat C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-sysstat.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +std::bad_alloc::what() const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +std::bad_alloc::~bad_alloc() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_exception::what() const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::enable_if::value, void>::type std::default_delete::operator()(nvs::Page*) const esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +std::exception::what() const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::exception::~exception() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) +std::exception::~exception() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::exception::~exception() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::get_new_handler() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +std::get_terminate() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +std::get_unexpected() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +std::nothrow C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +std::set_new_handler(void (*)()) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) +std::set_terminate(void (*)()) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +std::set_unexpected(void (*)()) C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +std::terminate() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +std::type_info::__do_catch(std::type_info const*, void**, unsigned int) const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) +std::type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) +std::type_info::__is_function_p() const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +std::type_info::__is_pointer_p() const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +std::type_info::~type_info() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) +std::type_info::~type_info() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) +std::type_info::~type_info() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) +std::uncaught_exception() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +std::uncaught_exceptions() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +std::unexpected() C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +std::unique_ptr >::~unique_ptr() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +std::unique_ptr >::~unique_ptr() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +stop_webserver esp-idf/main/libmain.a(http_control.c.obj) +str_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strcat C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcat.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +strchr C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strchr.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strcmp C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcmp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-locale.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/log/liblog.a(log.c.obj) +strcpy C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcpy.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +strcspn C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strdup C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +strerror C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) +strerror_l C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror.o) +strerror_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlcat C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +strlcpy C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcpy.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlen C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-siscanf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlcat.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strerror_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strdup_r.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-puts.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-fputs.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/main/libmain.a(butterworthdesign.c.obj) + esp-idf/main/libmain.a(http_control.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +strncasecmp C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncasecmp.o) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +strncmp C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncmp.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-getenv_r.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strncpy C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-svfprintf.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +strnlen C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strnlen.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +strrchr C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strstr C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +strtok C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +strtok_r C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtok_r.o) +strtol C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-atoi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +strtol_l C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtol.o) +strtoll C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) +strtoll_l C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoll.o) +strtoul C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset_r.o) + esp-idf/http_parser/libhttp_parser.a(http_parser.c.obj) +strtoul_l C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoul.o) +strtoull C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) +strtoull_l C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strtoull.o) +supplicant_sta_conn_handler esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +supplicant_sta_disconn_handler esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +sw_scan_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +sys_arch_mbox_fetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_arch_mbox_tryfetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_arch_protect esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_arch_sem_wait esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_arch_unprotect esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_check_timeouts esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_delay_ms esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_init esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +sys_jiffies esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mbox_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_mbox_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mbox_post esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mbox_set_owner esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mbox_trypost esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mbox_trypost_fromisr esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mutex_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mutex_lock esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mutex_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mutex_unlock esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_now esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +sys_restart_timeouts esp-idf/lwip/liblwip.a(timeouts.c.obj) +sys_sem_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +sys_sem_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +sys_sem_signal esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_sem_signal_isr esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +sys_thread_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_thread_sem_deinit esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_thread_sem_get esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_thread_sem_init esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_thread_tcpip esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_timeout esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +sys_timeouts_deinit esp-idf/lwip/liblwip.a(timeouts.c.obj) +sys_timeouts_init esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +sys_timeouts_sleeptime esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_untimeout esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +syscall_table_ptr_app esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +syscall_table_ptr_pro esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +system esp-idf/newlib/libnewlib.a(syscalls.c.obj) +tan C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libm.a(libm_a-s_tan.o) + esp-idf/main/libmain.a(butterworthdesign.c.obj) +target_power_backoff C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +target_power_backoff_qdb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +task_wdt_timeout_abort esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +tcdrain esp-idf/vfs/libvfs.a(vfs.c.obj) +tcflow esp-idf/vfs/libvfs.a(vfs.c.obj) +tcflush esp-idf/vfs/libvfs.a(vfs.c.obj) +tcgetattr esp-idf/vfs/libvfs.a(vfs.c.obj) +tcgetsid esp-idf/vfs/libvfs.a(vfs.c.obj) +tcp_abandon esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_abort esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_accept esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_active_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +tcp_active_pcbs_changed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_alloc esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_arg esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_backlog_accepted esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_backlog_delayed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_bind esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_bind_netif esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +tcp_bound_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_close esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_close_ext esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_connect esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_debug_state_str esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_eff_send_mss_netif esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_enqueue_flags esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_err esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_fasttmr esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_free_ooseq esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +tcp_init esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +tcp_input esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +tcp_input_pcb esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_keepalive esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_listen_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_listen_with_backlog esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_listen_with_backlog_and_err esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_netif_ip_addr_changed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +tcp_new esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_new_ip_type esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_next_iss esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_output esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_pcb_lists esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_pcb_purge esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_pcb_remove esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_poll esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_process_refused_data esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_recv esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_recv_null esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_recved esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_rexmit esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_fast esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_rto esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_rto_commit esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_rexmit_rto_prepare esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_rst esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_seg_copy esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_seg_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_segs_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_send_empty_ack esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_send_fin esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_sent esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_setprio esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_shutdown esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_slowtmr esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_split_unsent_seg esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tcp_get_tcp_addrinfo esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_ticks esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_timer_needed esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tmr esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +tcp_trigger_input_pcb_close esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tw_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_txnow esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_update_rcv_ann_wnd esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_write esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_zero_window_probe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcpip_api_call esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcpip_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +tcpip_callbackmsg_delete esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_callbackmsg_new esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_callbackmsg_trycallback esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_callbackmsg_trycallback_fromisr esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_init esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +tcpip_inpkt esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_input esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +tcpip_send_msg_wait_sem esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +tcpip_try_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +tcsendbreak esp-idf/vfs/libvfs.a(vfs.c.obj) +tcsetattr esp-idf/vfs/libvfs.a(vfs.c.obj) +telldir esp-idf/vfs/libvfs.a(vfs.c.obj) +temp_sensor_get_raw_value esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +temperature_sensor_power_acquire esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +temperature_sensor_power_release esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +temprature_sens_read C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +time C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-time.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +timestamp_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +tkip C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +tkip_decap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) +tkip_encap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) +tls_connection_client_hello_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_enable_workaround esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_established esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +tls_connection_export_key esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_get_eap_fast_key esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_get_failed esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_get_random esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_get_read_alerts esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_get_write_alerts esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_init esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_resumed esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +tls_connection_server_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_set_cipher_list esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_set_params esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_set_session_ticket_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_set_verify esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_shutdown esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +tls_get_cipher esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_get_errors esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_get_version esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_global_set_params esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_global_set_verify esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_init esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +tls_instance_count esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tlsf_add_pool esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_align_size esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_alloc_overhead esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_block_size esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_block_size_max esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_block_size_min esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_check esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_check_hook esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_check_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_create esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_create_with_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_destroy esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_fit_size esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_free esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_get_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_malloc esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_memalign esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_memalign_offs esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_pool_overhead esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_realloc esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_remove_pool esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_size esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_walk_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +touch_hal_config esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) +touch_hal_deinit esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) +touch_hal_get_meas_mode esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_get_voltage esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_get_wakeup_status esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_init esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) +touch_hal_set_meas_mode esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_set_voltage esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +touch_pad_clear_status esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_fsm_start esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_fsm_stop esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_cnt_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_fsm_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_status esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_thresh esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_voltage esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_wakeup_status esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +touch_pad_io_init esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_isr_deregister esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_cnt_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_fsm_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_thresh esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_voltage esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_sw_start esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_read C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +touch_sensor_channel_io_map esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +transaction clone for std::bad_exception::what() const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::bad_exception::~bad_exception() const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::exception::what() const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::exception::~exception() const C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +trcAmpduSetState C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_NeedRTS C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_SetTxAmpduState C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_calc_duration C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_ctl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_get_80211_tx_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_get_espnow_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_isAmpduOn C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_isTxAmpduOperational C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +trc_onAmpduOp C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_onDisconnect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_onPPTxDone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +trc_onScanDone C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_onScanStart C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_set_80211_tx_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_set_espnow_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_set_per_pkt_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_tid_isTxAmpduOperational C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +trc_update_def_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_update_ifx_phy_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +truncate esp-idf/vfs/libvfs.a(vfs.c.obj) +tsens_code_read C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +tsens_read_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +tx_cap_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +tx_cont_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +tx_cont_dis C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +tx_cont_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +tx_delay_cfg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +tx_gain_table_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +tx_msg_id2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +tx_paon_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +tx_pwctrl_background C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +tx_pwctrl_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +tx_pwctrl_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +tx_pwctrl_init_cal C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +tx_pwctrl_track_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +tx_rf_ana_gain C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +tx_state_id2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +tx_task_main C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +tx_wifi_err2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) +txcal_debuge_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +txiq_cal_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +txopstart_index C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +txpwr_offset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +txq_opr2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +typeinfo for std::bad_alloc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +typeinfo for std::exception C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +typeinfo name for std::bad_alloc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +typeinfo name for std::exception C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +tzset C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-tzset.o) +uart_clear_intr_status esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_intr_mask esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_pattern_det_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_rx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_tx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_driver_delete esp-idf/driver/libdriver.a(uart.c.obj) +uart_driver_install esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_intr_mask esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_pattern_det_baud_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_rx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_tx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_flush esp-idf/driver/libdriver.a(uart.c.obj) +uart_flush_input esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_baudrate esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_buffered_data_len esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_collision_flag esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_hw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_parity esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_sclk_freq esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_selectlock esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_stop_bits esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_tx_buffer_free_size esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_wakeup_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_word_length esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_hal_get_baudrate esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_max_rx_timeout_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_parity esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_sclk esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_symb_len esp-idf/hal/libhal.a(uart_hal.c.obj) +uart_hal_get_wakeup_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_init esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_inverse_signal esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_is_hw_rts_en esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_read_rxfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_rxfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_at_cmd_char esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_dtr esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_loop_back esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_mode esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_parity esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_rx_timeout esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_rxfifo_full_thr esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_sw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_tx_idle_num esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_txfifo_empty_thr esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_wakeup_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_tx_break esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_txfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_write_txfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +uart_intr_config esp-idf/driver/libdriver.a(uart.c.obj) +uart_is_driver_installed esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_param_config esp-idf/driver/libdriver.a(uart.c.obj) +uart_pattern_get_pos esp-idf/driver/libdriver.a(uart.c.obj) +uart_pattern_pop_pos esp-idf/driver/libdriver.a(uart.c.obj) +uart_pattern_queue_reset esp-idf/driver/libdriver.a(uart.c.obj) +uart_periph_signal esp-idf/soc/libsoc.a(uart_periph.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_read_bytes esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_always_rx_timeout esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_baudrate esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_dtr esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_hw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_line_inverse esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_loop_back esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_mode esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_parity esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_pin esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_rts esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_rx_full_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_rx_timeout esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_select_notif_callback esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_stop_bits esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_sw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_tx_empty_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_tx_idle_num esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_wakeup_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_word_length esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_tx_chars esp-idf/driver/libdriver.a(uart.c.obj) +uart_wait_idle C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +uart_wait_tx_done esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_wait_tx_idle_polling esp-idf/driver/libdriver.a(uart.c.obj) +uart_write_bytes esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_write_bytes_with_break esp-idf/driver/libdriver.a(uart.c.obj) +ucQueueGetQueueType esp-idf/freertos/libfreertos.a(queue.c.obj) +ucStreamBufferGetStreamBufferType esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +udp_bind esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_bind_netif esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +udp_connect esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_disconnect esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +udp_init esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +udp_input esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +udp_netif_ip_addr_changed esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +udp_new esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_new_ip_type esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +udp_pcbs esp-idf/lwip/liblwip.a(udp.c.obj) +udp_recv esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_remove esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_send esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +udp_sendto esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +udp_sendto_if esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_sendto_if_src esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +ulTaskGenericNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +ulTaskGenericNotifyValueClear esp-idf/freertos/libfreertos.a(tasks.c.obj) +ulTaskGetIdleRunTimeCounter esp-idf/freertos/libfreertos.a(tasks.c.obj) +ulTaskGetIdleRunTimeCounterForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) +ulTaskGetIdleRunTimePercent esp-idf/freertos/libfreertos.a(tasks.c.obj) +ulTaskGetIdleRunTimePercentForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) +unforce_wifi_mode C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(bt_bb.o) +ungetc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-ungetc.o) +unregister_ieee80211_action_vendor_get_key_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +unregister_ieee80211_action_vendor_spec_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +unregister_ieee80211_rfid_locp_recv_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +uri_filter esp-idf/main/libmain.a(butterworthdesign.c.obj) +uri_filter_get esp-idf/main/libmain.a(butterworthdesign.c.obj) +uri_filter_submit esp-idf/main/libmain.a(butterworthdesign.c.obj) +uri_get esp-idf/main/libmain.a(http_control.c.obj) +uri_post esp-idf/main/libmain.a(http_control.c.obj) +usleep esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) +utime esp-idf/vfs/libvfs.a(vfs.c.obj) +utoa C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-utoa.o) +uxEventGroupGetNumber esp-idf/freertos/libfreertos.a(event_groups.c.obj) +uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxQueueGetQueueNumber esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueSpacesAvailable esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uxStreamBufferGetStreamBufferNumber esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +uxTaskGetNumberOfTasks esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetSnapshotAll esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetStackHighWaterMark esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetStackHighWaterMark2 esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetSystemState esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetTaskNumber esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskPriorityGet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +uxTaskPriorityGetFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskResetEventItemValue esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +uxTimerGetReloadMode esp-idf/freertos/libfreertos.a(timers.c.obj) +uxTimerGetTimerNumber esp-idf/freertos/libfreertos.a(timers.c.obj) +uxTopUsedPriority esp-idf/freertos/libfreertos.a(tasks.c.obj) +vApplicationGetIdleTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vApplicationGetTimerTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) +vApplicationStackOverflowHook esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vEventGroupClearBitsCallback esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vEventGroupDelete esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +vEventGroupDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vEventGroupSetBitsCallback esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vEventGroupSetNumber esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vListInitialise esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vListInitialiseItem esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsert esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsertEnd esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortAssertIfInISR esp-idf/freertos/libfreertos.a(port.c.obj) +vPortEndScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortExitCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(i2s_platform.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vPortExitCriticalCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +vPortFree esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vPortSetStackWatchpoint esp-idf/freertos/libfreertos.a(port.c.obj) +vPortSetupTimer esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +vPortTCBPreDeleteHook esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortYield esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldFromInt esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vQueueDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vQueueSetQueueNumber esp-idf/freertos/libfreertos.a(queue.c.obj) +vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) +vRingbufferDelete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +vRingbufferDeleteWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vRingbufferGetInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +vRingbufferReturnItem esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vRingbufferReturnItemFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vSemaphoreDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vStreamBufferDelete esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vStreamBufferGenericDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vStreamBufferSetStreamBufferNumber esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/main/libmain.a(button.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskDelete esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskGenericNotifyGiveFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +vTaskGetInfo esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskGetRunTimeStats esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskGetSnapshot esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +vTaskInternalSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskList esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskPlaceOnEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnEventListRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vTaskPriorityDisinheritAfterTimeout esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPrioritySet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +vTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vTaskResume esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetTaskNumber esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointerAndDelCallback esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +vTaskSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +vTaskStartScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +vTaskSuspend esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskSuspendAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +vTaskSwitchContext esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +vTimerSetReloadMode esp-idf/freertos/libfreertos.a(timers.c.obj) +vTimerSetTimerID esp-idf/freertos/libfreertos.a(timers.c.obj) +vTimerSetTimerNumber esp-idf/freertos/libfreertos.a(timers.c.obj) +valid_key_length esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +valloc esp-idf/newlib/libnewlib.a(heap.c.obj) +vdd33_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\librtc.a(rtc_analog.o) +vfiprintf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfiprintf.o) +vfprintf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vfprintf.o) +vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) +volume esp-idf/main/libmain.a(station_example_main.c.obj) +volumeChangeCB esp-idf/main/libmain.a(http_control.c.obj) +volumeChangeGet esp-idf/main/libmain.a(http_control.c.obj) +volume_HTML_String esp-idf/main/libmain.a(http_control.c.obj) +vote_done2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +vote_start2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +vprintf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) +vsnprintf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-vsnprintf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +vtable for __cxxabiv1::__class_type_info C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +vtable for __cxxabiv1::__forced_unwind C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for __cxxabiv1::__foreign_exception C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for __cxxabiv1::__si_class_type_info C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +vtable for nvs::NVSEncryptedPartition esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +vtable for nvs::NVSHandle esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +vtable for nvs::NVSHandleSimple esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +vtable for nvs::NVSPartition esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +vtable for nvs::NVSPartitionManager esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +vtable for nvs::Partition esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +vtable for std::bad_alloc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +vtable for std::bad_exception C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for std::exception C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for std::type_info C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) +wDevCheckBlockError C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDevCtrl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDevMacSleep C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_AppendRxBlocks C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDev_Crypto_Disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_DiscardFrame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_FetchFirstDesc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_GetNoiseFloor C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Get_Next_TBTT C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_IndicateAmpdu C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_IndicateCtrlFrame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_IndicateFrame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Insert_KeyEntry C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Mesh_Disable_Tsf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +wDev_Mesh_Enable_Tsf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +wDev_Mesh_Set_TBTT C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +wDev_ProcessFiq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_ProcessRxSucData C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Reset_TBTT C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_RxSecError C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Rxbuf_Deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Rxbuf_Init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_SetAuthed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_SetCurChannel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Set_Beacon_Int C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wDev_SnifferRxAmpdu C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_SnifferRxData C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_disable_low_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +wDev_enable_low_rate C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +wDev_is_low_rate_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +wDev_nan_is_in_dw C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDev_record_ftm_data C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_remove_KeyEntry C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_remove_KeyEntry_all_cnx C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_reset_bcnSendTick C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +wapi_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wdevProcessRxSucDataAll C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wdev_bank_load C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_bank_store C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_csi_hw_bug_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_csi_len_align C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_csi_rx_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_get_promis_ctrl_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_get_promis_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_is_data_in_rxlist C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_is_mgmt_hwdecr_enabled C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_mac_reg_load C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_reg_store C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_sleep C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_mac_sleep_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_mac_sleep_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_mac_special_reg_load C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_special_reg_store C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_wakeup C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_nan_set_callbacks C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_pop_promis_misc_buf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_process_misc_pkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wdev_process_panic_watchdog C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_push_promis_misc_buf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_csi_rx_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_pkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_promis_filter C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_misc_buf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_promis_misc_pkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdt_hal_config_stage esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_deinit esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) +wdt_hal_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +wdt_hal_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +wdt_hal_feed esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_handle_intr esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +wdt_hal_init esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +wdt_hal_is_enabled esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +wdt_hal_set_flashboot_en esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +wdt_hal_write_protect_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_write_protect_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wep C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wep_decap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) +wep_encap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) +wifi_11g_rate_chg C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +wifi_action_tx_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_ant_config_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_to_ant_type C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_update C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ap_pmf_enabled C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_ap_reg_rxcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ap_remove_sta_node_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_ap_sta_sae_auth_done_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_apb80m_release C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_apb80m_request C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_api_lock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_api_unlock C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_bbgain_max C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +wifi_bt_common_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +wifi_bt_common_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +wifi_calloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_check_chan_param C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_clear_ap_list_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_configure_wake_window_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_connect_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_copy_ap_record C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_create_nan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_create_queue esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_create_softap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_create_sta C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_crypto_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_crypto_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_csi_set_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_deauth_sta_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_deinit_in_caller_task C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_deinit_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_delete_queue esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_destroy_nan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_destroy_softap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_destroy_sta C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_disable_pmf_config_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_disconnect_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_event_id2str C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +wifi_event_post C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_force_wakeup_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ftm_start_initiator_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wifi_get_ap_info_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_ap_list_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_ap_record_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_bw_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_channel_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_country C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_init_state C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_get_macaddr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_protocol_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_rand_macaddr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_get_rand_macaddr_keep_oui C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_get_sta_list_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_tsf_time_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_user_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_gpio_debug C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_hmac_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hmac_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_init_completed C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_init_in_caller_task C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_init_key C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_init_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_init_sta esp-idf/main/libmain.a(station_example_main.c.obj) +wifi_internal_ioctl_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ioctl_ht2040_get C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ioctl_ht2040_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ipc_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_is_started C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +wifi_is_stop_in_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_log C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_malloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_menuconfig_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_act_duty_signaling_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_assoc_expire_set_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_event_post C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_mesh_ie_crypto_funcs_set_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_crypto_key_set_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_deinit_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_get_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_init_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_set_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_is_roots_found_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_map_deauth_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_clear_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_get_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_set_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_monitor_get_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_monitor_set_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_cycle_get_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_cycle_set_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_ext_get_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_root_conflicts_set_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_roots_ie_get_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_roots_ie_set_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_router_bssid_get_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_router_bssid_set_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_rssi_threshold_get_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_rssi_threshold_set_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_set_beacon_interval_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_sta_disassoc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_sta_disassoc_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_switch_channel_progress C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mode_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_nan_followup_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nan_publish_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nan_reg_rxcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nan_set_config_local C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nan_subscribe_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ndp_end_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ndp_req_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ndp_resp_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nvs_ap_restore C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_item_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_commit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_compare_cfg_diff C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_deinit C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_get C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nvs_get_sta_listen_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_nvs_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_reset_current_ap_info C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +wifi_nvs_restore C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_set C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_set_sta_listen_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wifi_nvs_sta_restore C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_chan C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_password C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_ssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_country C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_listen_interval C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_password C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_on_coex_schm_phase_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_on_coex_start_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_osi_funcs_register C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_osi_ready C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_realloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_recycle_rx_pkt C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_register_mgmt_frame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_register_user_ie_manufacturer_recv_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_reset_mac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_restart_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_restore_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_rf_phy_disable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_rf_phy_enable C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_rifs_mode_en C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +wifi_roc_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_scan_start_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_scan_stop_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_send_mgmt_frame C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_ant C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_ant_gpio C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_appie_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_auto_connect_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_bw_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_chan_range C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_channel_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_config_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_country C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_csi C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_default_ssid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_dynamic_cs_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_event_mask C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_fix_rate_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_gpio_debug_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +wifi_set_home_channel_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_log_mod_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_mac_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_max_tpw C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_mode_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_phy_2nd_chan_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_promis_ctrl_filter_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_promis_filter_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_promis_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_protocol_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_ps_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_rssi_threshold C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_rx_policy C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_rxcb_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_user_ie C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_vnd_ie_cb_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_vnd_ie_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_wps_cb_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_start_flag C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_status_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_type_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_softap_cacl_mac C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_cur_max_ap_bss_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_softap_deauth C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_softap_get_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_get_station_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_max_support_num C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_set_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_staconnected_event_policy C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_softap_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_toomany_deny C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_sta_connect_internal_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_sta_disconnect C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_get_enterprise_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +wifi_sta_get_prof_password C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +wifi_sta_reg_eapol_txdone_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_sta_reg_rxcb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_rx_probe_req C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wifi_sta_set_ap_num_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_start_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_ap_check C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_config C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_config_default C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_current_ap_id C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_reconnect_policy C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +wifi_station_save_ap_channel C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_station_start C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_station_stop C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_stop_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_stop_sw_txq C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_track_pll_cap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +wifi_txband C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +wifi_txband_ht40 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +wifi_txq_empty C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_unregister_user_ie_manufacturer_recv_cb C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_update_listen_interval_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_wpa2_ent_disable_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_wpa2_ent_enable_process C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_wpa2_is_started C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_wps_is_started C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wl_clear_ap_no_lr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +wl_is_ap_no_lr C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +wlanif_init esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +wlanif_init_ap esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wlanif_init_nan esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wlanif_init_sta esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wlanif_input esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wpa2_post esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +wpa2_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wpa2_task esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +wpa3_hostap_auth_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa3_hostap_auth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa3_hostap_post_evt esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +wpa_add_kde esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_akm_to_suite esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +wpa_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +wpa_ap_get_peer_spp_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_get_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_join esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_remove esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_attach esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_auth_add_sae_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_for_each_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_gen_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_pmksa_add_sae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +wpa_auth_pmksa_remove esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sm_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sta_associated esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sta_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +wpa_auth_sta_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sta_no_wpa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_uses_mfp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_uses_sae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpa_cipher_key_len esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_cipher_put_suites esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_cipher_rsc_len esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) +wpa_cipher_to_alg esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_cipher_to_suite esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_cipher_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) +wpa_cipher_valid_mgmt_group esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_cipher_valid_pairwise esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_compare_rsn_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_config_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_config_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_done esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_parse_string esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_crypto_funcs C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wpa_crypto_funcs_init C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wpa_deattach esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_deauthenticate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +wpa_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_eapol_key_mic esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_eapol_key_send esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_ether_send esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +wpa_gen_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_gen_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_get_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_get_ntp_timestamp esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_insert_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) +wpa_install_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_is_hex esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +wpa_merge_byte_arrays esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +wpa_mic_len esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_michael_mic_failure esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_neg_complete esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_parse_kde_ies esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_parse_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_parse_wpa_ie_rsn esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_parse_wpa_ie_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) +wpa_parse_wpa_ie_wpa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_parse_wpa_ie_wrapper esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_pmk_to_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wpa_receive esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_remove_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_report_ie_mismatch esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_res_to_status_code esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_sendto_wrapper esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_set_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_set_passphrase esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_set_pmk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpa_set_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_deauthenticate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_disassociate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_drop_sa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_get_beacon_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +wpa_sm_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_mlme_setprotection esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_notify_assoc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +wpa_sm_notify_disassoc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_set_ap_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_set_assoc_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_key esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_pmk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_pmk_from_pmksa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_state esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_snprintf_hex esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +wpa_snprintf_hex_uppercase esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) +wpa_ssid_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +wpa_sta_clear_curr_pmksa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sta_connect esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sta_cur_pmksa_matches_akm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpa_sta_in_4way_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sta_is_cur_pmksa_set esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_clr_countermeasures esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_gtk_tx_bit_workaround esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_key_neg_complete esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_pairwise_gtk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_parse_ies esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_process_1_of_4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_send_2_of_4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_stop_countermeasures esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_transition_disable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_use_aes_key_wrap esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_use_akm_defined esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_validate_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_write_rsn_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_write_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpabuf_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpabuf_alloc_copy esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpabuf_alloc_ext_data esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +wpabuf_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_concat esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_dup esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +wpabuf_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpabuf_printf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_put esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +wpabuf_resize esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +wpabuf_zeropad esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wps_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wr_bt_tx_atten C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +wr_bt_tx_gain_mem C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +wr_rf_freq_mem C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +wr_rx_gain_mem C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +write_freq_mem_all C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +write_txrate_power_offset C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) + C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7.o) +write_wifi_chan_data C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_ana.o) +write_wifi_dig_gain C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32\libphy.a(phy_chip_v7_cal.o) +x509_crt_bundle esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) +x509_crt_bundle_length esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) +xEventGroupClearBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +xEventGroupClearBitsFromISR esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupCreate esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +xEventGroupCreateStatic esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xEventGroupCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xEventGroupGetBitsFromISR esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupGetStaticBuffer esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xEventGroupSetBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +xEventGroupSetBitsFromISR esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupSync esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupWaitBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) +xPortCheckValidListMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortCheckValidTCBMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortEnterCriticalTimeout esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clock_output.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(i2s_platform.c.obj) + esp-idf/driver/libdriver.a(adc_legacy.c.obj) + esp-idf/driver/libdriver.a(adc_i2s_deprecated.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xPortEnterCriticalTimeoutCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +xPortGetFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +xPortGetMinimumEverFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) +xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +xPortInterruptedFromISRContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +xPortStartScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +xPortSysTickHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +xPortcheckValidStackMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xQueueAddToSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueCreateCountingSemaphore esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +xQueueCreateCountingSemaphoreStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueCreateMutexStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(button.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +xQueueGenericCreateStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueGenericGetStaticBuffers esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueGenericSendFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(button.c.obj) +xQueueGetMutexHolder esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueGetMutexHolderFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueIsQueueEmptyFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueIsQueueFullFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) +xQueuePeek esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueuePeekFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueReceive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/main/libmain.a(button.c.obj) +xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueRemoveFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSelectFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSelectFromSetFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSemaphoreTake esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(i2s_legacy.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueTakeMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreateNoSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreateStatic esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreateWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferGetCurFreeSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferGetMaxItemSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferGetStaticBuffer esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferPrintInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceive esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferReceiveFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferReceiveSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveSplitFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveUpTo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferReceiveUpToFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferRemoveFromQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSend esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferSendAcquire esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSendComplete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSendFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xSemaphoreCreateGenericWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xStreamBufferBytesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferGenericCreate esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferGenericCreateStatic esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferGenericCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferGetStaticBuffers esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferIsEmpty esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferIsFull esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferNextMessageLengthBytes esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceive esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceiveCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceiveFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReset esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSend esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSendCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSendFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSetTriggerLevel esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSpacesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskAbortDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCatchUpTicks esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCheckForTimeOut esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/main/libmain.a(button.c.obj) + esp-idf/main/libmain.a(station_example_main.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskCreatePinnedToCoreWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskCreateStaticPinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGenericNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGenericNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskGenericNotifyStateClear esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskGenericNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGetCoreID esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGetCurrentTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetNext esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +xTaskGetStaticBuffers esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskGetTickCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +xTaskGetTickCountFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +xTaskIncrementTick esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +xTaskIncrementTickOtherCores esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskResumeAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerCreate esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerCreateStatic esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerGenericCommand esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerGetExpiryTime esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerGetPeriod esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerGetReloadMode esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerGetStaticBuffer esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerGetTimerDaemonTaskHandle esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerIsTimerActive esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerPendFunctionCall esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerPendFunctionCallFromISR esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xon_task_main C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +xphyQueue C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +xswap C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +xt_clock_freq esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) +xt_debugexception esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_highint4 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +xt_highint5 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_int_has_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_ints_off esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +xt_ints_on esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_nmi esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_set_exception_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +xt_set_interrupt_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_unhandled_exception esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) +xt_unhandled_interrupt esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) +xthal_get_ccompare C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) +xthal_get_ccount C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xthal_restore_extra_nw C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +xthal_save_extra_nw C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +xthal_set_ccompare C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(clock.o) +xthal_set_intclear C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xthal_spill_registers_into_stack_nw C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) +xthal_window_spill C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) +xthal_window_spill_nw C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) diff --git a/ESPIDFNEW/build/app-flash_args b/ESPIDFNEW/build/app-flash_args new file mode 100644 index 0000000..c9215f6 --- /dev/null +++ b/ESPIDFNEW/build/app-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size detect +0x10000 ESPIDFNEW.bin diff --git a/ESPIDFNEW/build/bootloader-flash_args b/ESPIDFNEW/build/bootloader-flash_args new file mode 100644 index 0000000..f56a6c7 --- /dev/null +++ b/ESPIDFNEW/build/bootloader-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size detect +0x1000 bootloader/bootloader.bin diff --git a/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure b/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-done b/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-done new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-download b/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-download new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-install b/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-install new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir b/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch b/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt b/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt new file mode 100644 index 0000000..b01c400 --- /dev/null +++ b/ESPIDFNEW/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=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject +work_dir= + diff --git a/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-update b/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-update new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt b/ESPIDFNEW/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt new file mode 100644 index 0000000..567cc23 --- /dev/null +++ b/ESPIDFNEW/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt @@ -0,0 +1 @@ +cmd='C:/Users/Job/.espressif/tools/cmake/3.24.0/bin/cmake.exe;-DSDKCONFIG=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig;-DIDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf;-DIDF_TARGET=esp32;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;-DEXTRA_COMPONENT_DIRS=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW;-DIGNORE_EXTRA_COMPONENT=;-GNinja;' diff --git a/ESPIDFNEW/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake b/ESPIDFNEW/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake new file mode 100644 index 0000000..f96f5d2 --- /dev/null +++ b/ESPIDFNEW/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake @@ -0,0 +1,22 @@ +# 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) + +file(MAKE_DIRECTORY + "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject" + "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader" + "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix" + "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/tmp" + "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp" + "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src" + "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/ESPIDFNEW/build/bootloader/.bin_timestamp b/ESPIDFNEW/build/bootloader/.bin_timestamp new file mode 100644 index 0000000..e4c549c --- /dev/null +++ b/ESPIDFNEW/build/bootloader/.bin_timestamp @@ -0,0 +1 @@ +838ae93d771019b067b0e94ece3f04dd C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.bin diff --git a/ESPIDFNEW/build/bootloader/.ninja_deps b/ESPIDFNEW/build/bootloader/.ninja_deps new file mode 100644 index 0000000..82e495a Binary files /dev/null and b/ESPIDFNEW/build/bootloader/.ninja_deps differ diff --git a/ESPIDFNEW/build/bootloader/.ninja_log b/ESPIDFNEW/build/bootloader/.ninja_log new file mode 100644 index 0000000..19dbbd3 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/.ninja_log @@ -0,0 +1,127 @@ +# ninja log v5 +352 783 7414723613277771 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj daece07434e5dd2a +46 328 7414723610227322 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj b7ae51bf40750921 +6 107 7413941816572540 project_elf_src_esp32.c 1bb394e4f9fdd622 +6 107 7413941816572540 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/project_elf_src_esp32.c 1bb394e4f9fdd622 +62 295 7414723610041940 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj fefb7f77e91b5291 +26 355 7414723610718804 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj 84efe461f5a03299 +23 389 7414723610774202 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj a6927dfd0844ac77 +11 111 7413941816895004 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 6522c086481bcda7 +18 359 7414723610678793 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj dce5b2c65552d7e0 +79 366 7414723610302431 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj a85c0704bd7951fa +234 785 7414723614551618 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 3f1d317965012e6 +16 115 7413941816884698 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 857e0c660b582b96 +177 468 7414723611978741 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj c285d2d7ae6d1e17 +328 784 7414723613949761 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj bd6e10d7f562d366 +17 118 7413941816869639 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 797342cff0f5d5ee +103 486 7414723612109167 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj d2e210b7df3c9645 +13 1443 7413941820139047 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj 119d77d9cf425a51 +218 809 7414723615293704 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj a926f5a3a449e804 +887 1609 7413941831247564 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj 3022edae0a00f736 +34 363 7414723610994789 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj 4b08a4266ef10fd5 +157 490 7414723612024056 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj fa7785ebb79141bf +36 222 7414723609820972 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj 7a82f5e09d1eca15 +109 500 7414723612460465 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 9347f0dcba4df1a8 +142 483 7414723612109167 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj c270c3d396c1f1d2 +41 217 7414723609695864 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj 4516f385265d1719 +56 234 7414723609906322 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj dde6159f5ffb08d4 +153 584 7414723612289589 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 886d72282215c8a3 +52 370 7414723610839258 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj e222d4ada2d15cc4 +14 1436 7413941819682993 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 9219a41bb723e01f +59 311 7414723609961454 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj 374717cebfbf6554 +70 253 7414723609971446 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj 9f95d6dee75f5ee +72 545 7414723612269588 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj cad9fc2096bdb6b8 +65 629 7413941817757568 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj 8a6a1d55b93085d +82 392 7414723611391216 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj 3a75e508b250d3b6 +93 588 7414723612154408 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj d04055bb81f9c25b +132 588 7414723612620666 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj ed9f54c65de4cbb9 +77 640 7413941818896133 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj 14f76e0facd55701 +74 1609 7413941823744364 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj 51386325b09d8ccd +84 645 7413941818514874 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 37ddca394310c398 +99 588 7414723612039116 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 3e542d465fc0ee8a +148 403 7414723611512209 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 61ed3d92c7105036 +106 508 7414723612309582 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj 2d2b442f3dae19da +108 887 7413941818209048 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj 11469f07614c12f3 +126 532 7414723612395350 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj 8ea9d433c442137d +188 1266 7413941820810639 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 7e24c1bba57f12e +173 778 7414723612896582 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 7cc85c41cccadd25 +130 542 7414723612470465 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj e0871eecab181634 +136 519 7414723612355324 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 2b84440b16cd340b +118 897 7413941820414704 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj db3ce4d745432da9 +508 809 7414723615659802 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj e4c154b01f5e9a62 +139 589 7414723612936581 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 37984905deda18ad +359 783 7414723613257781 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj ab8ef17be41ae209 +170 494 7414723612249540 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj 794257466c0a75a8 +629 1585 7413941824908359 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj fc44ad8b46f3ae5 +21 352 7414723610242379 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj cda7202226c97297 +23 1439 7413941820184106 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj 7af9731a9095ffaf +36 1532 7413941820474702 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj 95f47b37df0fcb5e +30 374 7414723610708792 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj 418378e86e7bfdd5 +222 786 7414723615022927 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 40a18cf3c17c22a8 +253 808 7414723615263702 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj c6f3646965ab761 +295 779 7414723613087058 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj f967447aad8c5532 +311 779 7414723613182234 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj c8e6665c26348cae +880 1609 7413941828910876 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj 2994938c7558ad9a +370 784 7414723613644085 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj a944593cf8e0582f +890 1610 7413941828710136 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj 47eec90c314b65d8 +389 818 7414723615689808 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj 394a2d94a1c4edf +1399 1870 7413941832932580 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 96a39c4b5a821aea +392 785 7414723614752319 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 7722fd7665489136 +468 934 7414723617069629 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj 2dee9e3c5a0822c7 +403 783 7414723613523713 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b9cbd5ef6903e0fc +1418 1871 7413941832711792 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj a9ca58f1070b6d1a +483 795 7414723615564698 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj eab297d790b623ac +487 807 7414723615519419 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj baa5b716aa0b2df7 +490 928 7414723616989028 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj 1ce4e48579da2e0f +494 883 7414723616411713 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj 5a8a8c0a3f372351 +500 785 7414723614647188 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj 9792caff27584056 +1532 1968 7413941832982578 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 1545e94302c3a1e4 +1543 2009 7413941833198408 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 25fa2c1d553525f9 +519 808 7414723615659802 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 6d22d411449d6b67 +542 779 7414723614541596 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj eb29cbca64edf681 +1585 2010 7413941833469112 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 9d41153ec24aefab +1588 2010 7413941835090223 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 2e02b6a69b1760cf +1350 1437 7414723622216312 esp-idf/efuse/libefuse.a c1039c320b56a26d +570 812 7414723615709813 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 4b22c015b751c1d7 +1595 2011 7413941835410891 esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj 22351565fd399a05 +584 830 7414723616055977 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj e5c840ca27719884 +366 784 7414723614155580 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj ace188c127e5ccec +363 784 7414723614280732 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj 790515b64d5b7da4 +355 786 7414723615188428 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj a45a62240982a70 +374 792 7414723615303703 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj e8d9e485bace40e3 +532 880 7414723616411713 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 1ac98381f56b2b81 +812 980 7414723617620997 esp-idf/log/liblog.a 136cf558711162d7 +980 1136 7414723619126299 esp-idf/esp_rom/libesp_rom.a 7cb37579ac0210dc +1136 1207 7414723619923556 esp-idf/esp_common/libesp_common.a c6f344abf8ac9243 +1207 1350 7414723621321739 esp-idf/esp_hw_support/libesp_hw_support.a c73e04cf4692859a +2624 2749 7413941843796491 esp-idf/esp_system/libesp_system.a 57a0bce1dfcfa6f9 +1437 1634 7414723623740773 esp-idf/bootloader_support/libbootloader_support.a b873f223a4bc3d35 +3014 3081 7413941847107236 esp-idf/esp_bootloader_format/libesp_bootloader_format.a dd19745f71ed0590 +1634 1720 7414723625084775 esp-idf/spi_flash/libspi_flash.a fc1094b3de588ca1 +1720 1865 7414723626310636 esp-idf/hal/libhal.a ae46a8c0785943e9 +3229 3304 7413941849354621 esp-idf/micro-ecc/libmicro-ecc.a 6037db58c0779fc6 +1865 2139 7414723628938445 esp-idf/soc/libsoc.a 990fe0ebc2339369 +3376 3457 7413941850882920 esp-idf/xtensa/libxtensa.a cac4b174a47e06be +2139 2261 7414723630408372 esp-idf/main/libmain.a 4203d41891a7b1ff +2262 2536 7414723632504199 bootloader.elf 145831192637fc9c +2536 3217 7414723639721205 .bin_timestamp 92c81ae58e1ff826 +2536 3217 7414723639721205 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/.bin_timestamp 92c81ae58e1ff826 +15 62 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +15 62 0 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +31 4911 7466595336964593 build.ninja 549c06dfb3fb5800 +23 82 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +23 82 0 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +11 64 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +11 64 0 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +12 63 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +12 63 0 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +13 63 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +13 63 0 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +12 64 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +12 64 0 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +12 61 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +12 61 0 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +12 62 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +12 62 0 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +11 63 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db +11 63 0 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7bf3717a154709db diff --git a/ESPIDFNEW/build/bootloader/CMakeCache.txt b/ESPIDFNEW/build/bootloader/CMakeCache.txt new file mode 100644 index 0000000..1884e60 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeCache.txt @@ -0,0 +1,449 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader +# It was generated by CMake: C:/Users/Job/.espressif/tools/cmake/3.24.0/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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING=-mlongcalls -Wno-frame-address -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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING=-mlongcalls -Wno-frame-address -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 + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/Job/.espressif/tools/ninja/1.11.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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-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=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-strip.exe + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/toolchain-esp32.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=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader + +//Git command line client +GIT_EXECUTABLE:FILEPATH=C:/Users/Job/.espressif/tools/idf-git/2.39.2/cmd/git.exe + +//No help, variable specified on the command line. +IDF_PATH:UNINITIALIZED=C:/Users/Job/esp/v5.2.2/esp-idf + +//IDF Build Target +IDF_TARGET:STRING=esp32 + +//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=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW + +//No help, variable specified on the command line. +PYTHON:UNINITIALIZED=C:/Users/Job/.espressif/python_env/idf5.2_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=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig + +//Value Computed by CMake +bootloader_BINARY_DIR:STATIC=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader + +//Value Computed by CMake +bootloader_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +bootloader_SOURCE_DIR:STATIC=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject + +//Value Computed by CMake +esp-idf_BINARY_DIR:STATIC=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf + +//Value Computed by CMake +esp-idf_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +esp-idf_SOURCE_DIR:STATIC=C:/Users/Job/esp/v5.2.2/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=c:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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=24 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/Job/.espressif/tools/cmake/3.24.0/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/Job/.espressif/tools/cmake/3.24.0/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/Job/.espressif/tools/cmake/3.24.0/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=C:/Users/Job/.espressif/tools/cmake/3.24.0/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=C:/Users/Job/esp/v5.2.2/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=23 +//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=C:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24 +//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_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Users/Job/.espressif/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 +//Have include stddef.h +HAVE_STDDEF_H:INTERNAL=1 +//Have include stdint.h +HAVE_STDINT_H:INTERNAL=1 +//Have include sys/types.h +HAVE_SYS_TYPES_H:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_TIME_T_SIZE:INTERNAL=TRUE +//CHECK_TYPE_SIZE: sizeof(time_t) +TIME_T_SIZE:INTERNAL=8 + diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeASMCompiler.cmake b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeASMCompiler.cmake new file mode 100644 index 0000000..6ae9a30 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeASMCompiler.cmake @@ -0,0 +1,20 @@ +set(CMAKE_ASM_COMPILER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_MT "") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + + + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) + + diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeCCompiler.cmake b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeCCompiler.cmake new file mode 100644 index 0000000..95b0d47 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "13.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_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 "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_MT "") +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) + +# 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 "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..a3073d6 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "13.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_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") +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_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_MT "") +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) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "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 "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/backward;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/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 "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..b52c371 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_C.bin differ diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..b217e71 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeSystem.cmake b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeSystem.cmake new file mode 100644 index 0000000..af7df6e --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22631") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22631") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/toolchain-esp32.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/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..2b43aa6 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,838 @@ +#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(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# 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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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(__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" + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# 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/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/a.out b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/a.out new file mode 100644 index 0000000..e93db1e Binary files /dev/null and b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/a.out differ diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..486becd --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,826 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__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(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# 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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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(__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" + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +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]; +#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/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/a.out b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/a.out new file mode 100644 index 0000000..750a442 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/a.out differ diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/CMakeOutput.log b/ESPIDFNEW/build/bootloader/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..cbc6171 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/CMakeOutput.log @@ -0,0 +1,428 @@ +The target system is: Generic - - +The host system is: Windows - 10.0.22631 - AMD64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe +Build flags: -mlongcalls;-Wno-frame-address;;-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 "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe +Build flags: -mlongcalls;-Wno-frame-address;;-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 "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/a.out" + +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +xtensa-esp-elf-gcc.exe (crosstool-NG esp-13.2.0_20230928) 13.2.0 +Copyright (C) 2023 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. + +Detecting C compiler ABI info compiled with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_b7221 && [1/2] Building C object CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj +Using built-in specs. +COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-gcc.exe +Target: xtensa-esp-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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 +gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7221.dir/' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/ C:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_b7221.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\Users\Job\AppData\Local\Temp\ccTdrBlG.s +GNU C17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include" +#include "..." search starts here: +#include <...> search starts here: + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include +End of search list. +Compiler executable checksum: a7185c8b5363aeb8f378896e00d5f636 +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7221.dir/' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj C:\Users\Job\AppData\Local\Temp\ccTdrBlG.s +COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ +LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/ +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.' +[2/2] Linking C executable cmTC_b7221 +Using built-in specs. +COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-gcc.exe +COLLECT_LTO_WRAPPER=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe +Target: xtensa-esp-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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 +gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) +COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ +LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/ +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_b7221' '-dumpdir' 'cmTC_b7221.' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe -plugin C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\cc3yOTBH.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 --dynconfig=xtensa_esp32.so -o cmTC_b7221 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_b7221' '-dumpdir' 'cmTC_b7221.' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_b7221 && [1/2] Building C object CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-gcc.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7221.dir/'] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/ C:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_b7221.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\Users\Job\AppData\Local\Temp\ccTdrBlG.s] + ignore line: [GNU C17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: a7185c8b5363aeb8f378896e00d5f636] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7221.dir/'] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj C:\Users\Job\AppData\Local\Temp\ccTdrBlG.s] + ignore line: [COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.'] + ignore line: [[2/2] Linking C executable cmTC_b7221] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_b7221' '-dumpdir' 'cmTC_b7221.'] + link line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe -plugin C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\cc3yOTBH.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 --dynconfig=xtensa_esp32.so -o cmTC_b7221 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib CMakeFiles/cmTC_b7221.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o ] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\cc3yOTBH.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 [--dynconfig=xtensa_esp32.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_b7221] ==> ignore + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] + arg [CMakeFiles/cmTC_b7221.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] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + implicit dirs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_196ed && [1/2] Building CXX object CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj +Using built-in specs. +COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-g++.exe +Target: xtensa-esp-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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 +gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_196ed.dir/' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/ C:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_196ed.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\Users\Job\AppData\Local\Temp\cc3amlrS.s +GNU C++17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include" +ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include" +#include "..." search starts here: +#include <...> search starts here: + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0 + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32 + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include +End of search list. +Compiler executable checksum: 7accc3f4dea0b1ef90bd5b8fb39b4353 +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_196ed.dir/' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\Job\AppData\Local\Temp\cc3amlrS.s +COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ +LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/ +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.' +[2/2] Linking CXX executable cmTC_196ed +Using built-in specs. +COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-g++.exe +COLLECT_LTO_WRAPPER=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe +Target: xtensa-esp-elf +Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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 +gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) +COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/ +LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/ +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_196ed' '-dumpdir' 'cmTC_196ed.' + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe -plugin C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\cclC0MUU.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 --dynconfig=xtensa_esp32.so -o cmTC_196ed C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o +COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_196ed' '-dumpdir' 'cmTC_196ed.' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] + add: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/backward] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include] + collapse include dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include/c++/13.2.0/backward;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/include-fixed;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/sys-include;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_196ed && [1/2] Building CXX object CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-g++.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_196ed.dir/'] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/ C:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_196ed.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\Users\Job\AppData\Local\Temp\cc3amlrS.s] + ignore line: [GNU C++17 (crosstool-NG esp-13.2.0_20230928) version 13.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include"] + ignore line: [ignoring duplicate directory "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include/c++/13.2.0/backward] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/include-fixed] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/sys-include] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 7accc3f4dea0b1ef90bd5b8fb39b4353] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_196ed.dir/'] + ignore line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\Job\AppData\Local\Temp\cc3amlrS.s] + ignore line: [COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [[2/2] Linking CXX executable cmTC_196ed] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-13.2.0_20230928' --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/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/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] + ignore line: [gcc version 13.2.0 (crosstool-NG esp-13.2.0_20230928) ] + ignore line: [COMPILER_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-mlongcalls' '-Wno-frame-address' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'cmTC_196ed' '-dumpdir' 'cmTC_196ed.'] + link line: [ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe -plugin C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\cclC0MUU.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 --dynconfig=xtensa_esp32.so -o cmTC_196ed C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0 -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc -LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib CMakeFiles/cmTC_196ed.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/13.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\Job\AppData\Local\Temp\cclC0MUU.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 [--dynconfig=xtensa_esp32.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_196ed] ==> ignore + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] + arg [CMakeFiles/cmTC_196ed.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] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] + arg [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] ==> obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o] + collapse obj [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit objs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crti.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtbegin.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtend.o;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32/crtn.o] + implicit dirs: [C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/13.2.0;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/lib/gcc;C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/xtensa-esp-elf/lib] + implicit fwks: [] + + +Determining if the include file sys/types.h exists passed with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_f4e30 && [1/2] Building C object CMakeFiles/cmTC_f4e30.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_f4e30 + + + +Determining if the include file stdint.h exists passed with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_1fdc7 && [1/2] Building C object CMakeFiles/cmTC_1fdc7.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_1fdc7 + + + +Determining if the include file stddef.h exists passed with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_ae6a2 && [1/2] Building C object CMakeFiles/cmTC_ae6a2.dir/CheckIncludeFile.c.obj +[2/2] Linking C executable cmTC_ae6a2 + + + +Determining size of time_t passed with the following output: +Change Dir: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/Users/Job/.espressif/tools/ninja/1.11.1/ninja.exe cmTC_11fcc && [1/2] Building C object CMakeFiles/cmTC_11fcc.dir/TIME_T_SIZE.c.obj +[2/2] Linking C executable cmTC_11fcc + + + diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin b/ESPIDFNEW/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin new file mode 100644 index 0000000..720bf9f Binary files /dev/null and b/ESPIDFNEW/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.bin differ diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c b/ESPIDFNEW/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c new file mode 100644 index 0000000..4ce0740 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/CheckTypeSize/TIME_T_SIZE.c @@ -0,0 +1,50 @@ +#include +#include +#include + + +#undef KEY +#if defined(__i386) +# define KEY '_','_','i','3','8','6' +#elif defined(__x86_64) +# define KEY '_','_','x','8','6','_','6','4' +#elif defined(__PPC64__) +# define KEY '_','_','P','P','C','6','4','_','_' +#elif defined(__ppc64__) +# define KEY '_','_','p','p','c','6','4','_','_' +#elif defined(__PPC__) +# define KEY '_','_','P','P','C','_','_' +#elif defined(__ppc__) +# define KEY '_','_','p','p','c','_','_' +#elif defined(__aarch64__) +# define KEY '_','_','a','a','r','c','h','6','4','_','_' +#elif defined(__ARM_ARCH_7A__) +# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' +#elif defined(__ARM_ARCH_7S__) +# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' +#endif + +#define SIZE (sizeof(time_t)) +static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', + ('0' + ((SIZE / 10000)%10)), + ('0' + ((SIZE / 1000)%10)), + ('0' + ((SIZE / 100)%10)), + ('0' + ((SIZE / 10)%10)), + ('0' + (SIZE % 10)), + ']', +#ifdef KEY + ' ','k','e','y','[', KEY, ']', +#endif + '\0'}; + +#ifdef __CLASSIC_C__ +int main(argc, argv) int argc; char *argv[]; +#else +int main(int argc, char *argv[]) +#endif +{ + int require = 0; + require += info_size[argc]; + (void)argv; + return require; +} diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/TargetDirectories.txt b/ESPIDFNEW/build/bootloader/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..9f4d8fb --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,82 @@ +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/menuconfig.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/confserver.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/save-defconfig.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/gen_project_binary.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/app.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/erase_flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/uf2.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/uf2-app.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/monitor.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/_project_elf_src.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/bootloader.elf.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/size.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/size-files.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/size-components.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj b/ESPIDFNEW/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj new file mode 100644 index 0000000..534e39a Binary files /dev/null and b/ESPIDFNEW/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/clean_additional.cmake b/ESPIDFNEW/build/bootloader/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..d0cd175 --- /dev/null +++ b/ESPIDFNEW/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_esp32.c" + ) +endif() diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/cmake.check_cache b/ESPIDFNEW/build/bootloader/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/ESPIDFNEW/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/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/HEAD b/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..7c066d5 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +3b8741b172dc951e18509698dee938304bcf1523 diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/grabRef.cmake b/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..1fc66a1 --- /dev/null +++ b/ESPIDFNEW/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 "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "C:/Users/Job/esp/v5.2.2/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}" "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/head-ref b/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/head-ref new file mode 100644 index 0000000..7c066d5 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +3b8741b172dc951e18509698dee938304bcf1523 diff --git a/ESPIDFNEW/build/bootloader/CMakeFiles/rules.ninja b/ESPIDFNEW/build/bootloader/CMakeFiles/rules.ninja new file mode 100644 index 0000000..79a8c2c --- /dev/null +++ b/ESPIDFNEW/build/bootloader/CMakeFiles/rules.ninja @@ -0,0 +1,348 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.24 + +# 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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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_ + depfile = $DEP_FILE + deps = gcc + command = C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = cmd.exe /C "$PRE_LINK && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Job\.espressif\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32-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 = C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Users\Job\.espressif\tools\ninja\1.11.1\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\Users\Job\.espressif\tools\ninja\1.11.1\ninja.exe -t targets + description = All primary targets available: + diff --git a/ESPIDFNEW/build/bootloader/bootloader.bin b/ESPIDFNEW/build/bootloader/bootloader.bin new file mode 100644 index 0000000..ccab59b Binary files /dev/null and b/ESPIDFNEW/build/bootloader/bootloader.bin differ diff --git a/ESPIDFNEW/build/bootloader/bootloader.elf b/ESPIDFNEW/build/bootloader/bootloader.elf new file mode 100644 index 0000000..40021cc Binary files /dev/null and b/ESPIDFNEW/build/bootloader/bootloader.elf differ diff --git a/ESPIDFNEW/build/bootloader/bootloader.map b/ESPIDFNEW/build/bootloader/bootloader.map new file mode 100644 index 0000000..a9864c1 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/bootloader.map @@ -0,0 +1,6319 @@ +Archive member included to satisfy reference by file (symbol) + +esp-idf/soc/libsoc.a(dport_access.c.obj) + (esp_dport_access_reg_read) +esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + (esp_bootloader_desc) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + (__assert_func) +esp-idf/main/libmain.a(bootloader_start.c.obj) + (call_start_cpu0) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_utility_load_partition_table) +esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_load_image) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_console_deinit) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_sha256_start) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_ana_clock_glitch_reset_config) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_init) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_common_vddsdio_configure) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_common_ota_select_crc) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_clock_configure) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_init_mem) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (bootloader_fill_random) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_clock_get_rated_freq_mhz) +esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (esp_flash_encryption_enabled) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_mmap_get_free_pages) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_flash_update_id) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_clear_bss_section) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_console_init) +esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (ESP_EFUSE_DISABLE_DL_CACHE) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_disable_rom_download_mode) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_read_field_blob) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_fill_buff) +esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_get_coding_scheme) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_utility_clear_program_registers) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (esp_cpu_configure_region_protection) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) (rtc_clk_slow_src_get) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) (rtc_clk_init) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (rtc_vddsdio_get_config) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) (rtc_clk_cal_ratio) +esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (esp_rom_set_cpu_ticks_per_us) +esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) (esp_rom_uart_tx_wait_idle) +esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_rom_spiflash_wait_idle) +esp-idf/log/liblog.a(log_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_log_early_timestamp) +esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (GPIO_PIN_MUX_REG) +esp-idf/hal/libhal.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) (mpu_hal_set_region_access) +esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) (efuse_hal_chip_revision) +esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) (efuse_hal_get_major_chip_version) +esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (wdt_hal_init) +esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (mmu_hal_unmap_all) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_clk_apb_freq) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__ashldi3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__lshrdi3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (__bswapsi2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divsf3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__adddf3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__muldf3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divdf3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixdfsi) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixunsdfsi) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__floatunsidf) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__extendsfdf2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (__divdi3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (__udivdi3) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bzero) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) (memcmp) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) (_impure_data) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (memcpy) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (memset) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strlen) +C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strncpy) + +Discarded input sections + + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .text 0x00000000 0x6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_line 0x00000000 0x50 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_line_str + 0x00000000 0xe7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_info 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_str 0x00000000 0xf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .literal 0x00000000 0x44 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .fini.literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .init.literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .text 0x00000000 0xa2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .bss 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .eh_frame 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .tm_clone_table + 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .fini 0x00000000 0x6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .init 0x00000000 0x6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .text 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj + .data 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj + .bss 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj + .comment 0x00000000 0x30 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .iram1.1 0x00000000 0xa esp-idf/soc/libsoc.a(dport_access.c.obj) + .text 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .literal.__getreent + 0x00000000 0x4 esp-idf/main/libmain.a(bootloader_start.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .text.__getreent + 0x00000000 0x8 esp-idf/main/libmain.a(bootloader_start.c.obj) + .literal.bootloader_common_get_partition_description + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_atexit + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha256_flash_contents + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_get_partition_description + 0x00000000 0x79 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_atexit + 0x00000000 0xb esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x00000000 0x5e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x00000000 0x82 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .literal.bootloader_load_image_no_verify + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_metadata + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_metadata + 0x00000000 0x72 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x00000000 0x4e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .literal.bootloader_common_check_long_hold_gpio_level + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x00000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio_level + 0x00000000 0xc5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_label_search.str1.1 + 0x00000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_label_search + 0x00000000 0xab esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.1 + 0x00000000 0x10e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x00000000 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x00000000 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0xe4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x00000000 0xe esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x00000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.1 + 0x00000000 0xd4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x00000000 0xc2 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.1 + 0x00000000 0x3c6 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x1bf esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal.bootloader_flash_erase_range + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.13.literal + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x00000000 0x5b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x00000000 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.13 0x00000000 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.14 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_update_size + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.7.literal + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_flash_get_wp_pin + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_configure_spi_pins + 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.7 0x00000000 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_flash_get_wp_pin + 0x00000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_configure_spi_pins + 0x00000000 0x17a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CUSTOM + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_SDIO_HOST + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_RATED + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE_4BIT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_SDIO_HOST + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_RATED + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE_4BIT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x00000000 0x15e8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00000000 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x00000000 0x21d esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x00000000 0x15be esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_basic_rom_console + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_disable_basic_rom_console.str1.1 + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_basic_rom_console + 0x00000000 0x2f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x587 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x1b5 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x2b esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0x5b2 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0xc90 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_read_field_blob + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_bit + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_check_errors + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_blob + 0x00000000 0x56 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_read_field_bit.str1.1 + 0x00000000 0x39 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x00000000 0x35 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0x62 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.1 + 0x00000000 0x57 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x00000000 0x8b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_get_field_size + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.1 + 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.1 + 0x00000000 0x75 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x00000000 0x4c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.1 + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x00000000 0x61 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_check_errors + 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$1 + 0x00000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x00000000 0x178 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x00000000 0xfdd esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x00000000 0x358 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x00000000 0x5d5 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x00000000 0x107d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x00000000 0xe08 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.write_reg + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_process + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_pending + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_read_reg + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_fill_buff + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_count_once + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.write_reg.str1.1 + 0x00000000 0xb3 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.1 + 0x00000000 0x66 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x00000000 0x17e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x00000000 0x5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.1 + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x00000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.1 + 0x00000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x63 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.1 + 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_number_of_items + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_read_reg + 0x00000000 0x41 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_fill_buff + 0x00000000 0xb4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_count_once + 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_cnt.str1.1 + 0x00000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x00000000 0x7d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.1 + 0x00000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x00000000 0x9b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_get_read_register_address.str1.1 + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.1 + 0x00000000 0xd8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x00000000 0x83 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$2 + 0x00000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3 + 0x00000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$4 + 0x00000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.s_burn_counter + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x1c0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x1874 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x45e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0x11f8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0x2e0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0x199f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0x10f9 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_get_coding_scheme$part$0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_coding_scheme + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_block_is_empty + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme$part$0 + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.1 + 0x00000000 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x7 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0x86 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.1 + 0x00000000 0x9f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0xc7 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00000000 0x178 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x00000000 0x300d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00000000 0x47a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x00000000 0x724 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00000000 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000 0xe63 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x00000000 0x234f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_34_encoding + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x00000000 0xa4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x00000000 0xb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_check_errors + 0x00000000 0x7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_34_encoding + 0x00000000 0x8a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip.str1.1 + 0x00000000 0x1a7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x00000000 0x1fb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.1 + 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0xdb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.start_write_addr + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0xd79 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x32a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0x6e1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0x1e8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0xfc2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0xe2f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .literal.rtc_clk_32k_enable_external + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_enable + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_set + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_calc + 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_set_to_default_config + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_enable + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_disable + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable_external + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x00000000 0x1f3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_enable + 0x00000000 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_set + 0x00000000 0xe0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_calc + 0x00000000 0x225 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_set_to_default_config + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .literal.rtc_init + 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_init + 0x00000000 0x3b9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_clk_cal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_time_us_to_slowclk + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_time_get + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_freq_cal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal + 0x00000000 0xc9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_us_to_slowclk.str1.1 + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_us_to_slowclk + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_get.str1.1 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_get + 0x00000000 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_freq_cal + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$0 + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$1 + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .iram1.0.literal + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .iram1.0 0x00000000 0x21 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .literal.esp_rom_spiflash_read_statushigh + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_status + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_clear_bp + 0x00000000 0x2c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_set_bp + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_config_readmode + 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_chip + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_block + 0x00000000 0x24 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_area + 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_disable + 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_statushigh + 0x00000000 0x21 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_status + 0x00000000 0x35 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_clear_bp + 0x00000000 0xd1 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_set_bp + 0x00000000 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_config_readmode + 0x00000000 0x2cf esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_chip + 0x00000000 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_block + 0x00000000 0x8b esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_area + 0x00000000 0x94 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_disable + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_log_impl_lock + 0x00000000 0x14 esp-idf/log/liblog.a(log_noos.c.obj) + .literal.esp_log_impl_lock_timeout + 0x00000000 0x4 esp-idf/log/liblog.a(log_noos.c.obj) + .literal.esp_log_impl_unlock + 0x00000000 0x14 esp-idf/log/liblog.a(log_noos.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.esp_log_impl_lock.str1.1 + 0x00000000 0x2c esp-idf/log/liblog.a(log_noos.c.obj) + .text.esp_log_impl_lock + 0x00000000 0x22 esp-idf/log/liblog.a(log_noos.c.obj) + .text.esp_log_impl_lock_timeout + 0x00000000 0xd esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.esp_log_impl_unlock.str1.1 + 0x00000000 0xc esp-idf/log/liblog.a(log_noos.c.obj) + .text.esp_log_impl_unlock + 0x00000000 0x22 esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.__func__$1 + 0x00000000 0x14 esp-idf/log/liblog.a(log_noos.c.obj) + .rodata.__func__$0 + 0x00000000 0x12 esp-idf/log/liblog.a(log_noos.c.obj) + .bss.s_lock 0x00000000 0x4 esp-idf/log/liblog.a(log_noos.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x00000000 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .dram1.0 0x00000000 0x28 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_PIN_MUX_REG + 0x00000000 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x00000000 0x2c3 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x00000000 0x9f esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_line 0x00000000 0x204 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_str 0x00000000 0x926 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .literal.efuse_hal_get_mac + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x00000000 0x17 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.1 0x00000000 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_set_timing + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x00000000 0x7c esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x00000000 0x69 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x3d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0xff esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x42 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x38 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.wdt_hal_deinit + 0x00000000 0x4 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text.wdt_hal_deinit + 0x00000000 0xb0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text.wdt_hal_disable + 0x00000000 0x30 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text.wdt_hal_handle_intr + 0x00000000 0x4c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text.wdt_hal_feed + 0x00000000 0x2b esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text.wdt_hal_is_enabled + 0x00000000 0x1d esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .literal.mmu_hal_init + 0x00000000 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_paddr_to_vaddr + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x00000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_map_region + 0x00000000 0x18 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_region + 0x00000000 0x18 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_vaddr_to_paddr + 0x00000000 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x00000000 0xb esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_pages_to_bytes + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_paddr_to_vaddr + 0x00000000 0xef esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_check_valid_ext_vaddr_region + 0x00000000 0x9a esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_map_region + 0x00000000 0x105 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_region + 0x00000000 0xdb esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_vaddr_to_paddr + 0x00000000 0xc5 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.esp_clk_apb_freq + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .text.esp_clk_apb_freq + 0x00000000 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_info 0x00000000 0xbf esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_abbrev 0x00000000 0x75 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_line 0x00000000 0x1f5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_str 0x00000000 0x2b5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .text 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_line 0x00000000 0x7b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_line_str + 0x00000000 0xf4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_info 0x00000000 0x31 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_str 0x00000000 0x10a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .text 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line 0x00000000 0x7b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line_str + 0x00000000 0xf4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_info 0x00000000 0x31 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_str 0x00000000 0x10a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .text 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line 0x00000000 0x6f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line_str + 0x00000000 0xf4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_info 0x00000000 0x31 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_str 0x00000000 0x10b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .text 0x00000000 0x59 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_line 0x00000000 0xf9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_info 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .literal 0x00000000 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .text 0x00000000 0x312 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line 0x00000000 0x6b1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_info 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .text 0x00000000 0x1ff C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_line 0x00000000 0x478 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_info 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .literal 0x00000000 0x10 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .text 0x00000000 0x213 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_line 0x00000000 0x4a1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_info 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .text 0x00000000 0x4c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line 0x00000000 0xe7 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_info 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x5d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_line 0x00000000 0x117 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_info 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x3d C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_line 0x00000000 0xc9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_info 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .literal 0x00000000 0x8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x62 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line 0x00000000 0x117 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line_str + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_info 0x00000000 0x24 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_abbrev 0x00000000 0x14 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_str 0x00000000 0x101 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x37 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_info 0x00000000 0xce C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_abbrev 0x00000000 0x68 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_loclists + 0x00000000 0xf5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line 0x00000000 0xef C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_str 0x00000000 0x160 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line_str + 0x00000000 0x1dc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x24a C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_info 0x00000000 0x693 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_abbrev 0x00000000 0x1b4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_loclists + 0x00000000 0x4f1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_rnglists + 0x00000000 0x4c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_line 0x00000000 0x9ae C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_str 0x00000000 0x1d5 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_line_str + 0x00000000 0x1dc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .text 0x00000000 0x20c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .eh_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_info 0x00000000 0x64c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000 0x196 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_loclists + 0x00000000 0x4a6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_rnglists + 0x00000000 0x4f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line 0x00000000 0x8e9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_str 0x00000000 0x1d6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line_str + 0x00000000 0x1dc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .text 0x00000000 0x12 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_info 0x00000000 0xf1 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_abbrev 0x00000000 0xab C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_line 0x00000000 0x8c C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_str 0x00000000 0x125 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .debug_line_str + 0x00000000 0x2ba C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .literal 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .text 0x00000000 0x4f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_info 0x00000000 0x12b C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_abbrev 0x00000000 0x90 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_loclists + 0x00000000 0x150 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line 0x00000000 0x17f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_str 0x00000000 0x118 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .debug_line_str + 0x00000000 0x2b3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .text 0x00000000 0x25 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_info 0x00000000 0xe9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_abbrev 0x00000000 0x9f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_loclists + 0x00000000 0x42 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_line 0x00000000 0xf9 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_str 0x00000000 0x119 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .debug_line_str + 0x00000000 0x2b6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .text 0x00000000 0x36 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_frame 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_info 0x00000000 0xef C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_abbrev 0x00000000 0x9f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_loclists + 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_line 0x00000000 0x134 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_str 0x00000000 0x118 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .debug_line_str + 0x00000000 0x2b3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .data 0x00000000 0xf4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_info 0x00000000 0x840 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_abbrev 0x00000000 0x174 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_aranges + 0x00000000 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_line 0x00000000 0x51 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_str 0x00000000 0x4df C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .debug_line_str + 0x00000000 0x2bb C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .comment 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .literal 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .text 0x00000000 0x135 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line 0x00000000 0x30f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_line_str + 0x00000000 0xf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_info 0x00000000 0x33 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .debug_str 0x00000000 0x105 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .literal 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .text 0x00000000 0x74 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_line 0x00000000 0x146 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_line_str + 0x00000000 0xf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_info 0x00000000 0x31 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .debug_str 0x00000000 0x105 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .text 0x00000000 0x63 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_line 0x00000000 0x122 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_line_str + 0x00000000 0xf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_info 0x00000000 0x31 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .debug_str 0x00000000 0x105 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .literal 0x00000000 0xc C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .text 0x00000000 0x113 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_line 0x00000000 0x2a8 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_line_str + 0x00000000 0xf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_info 0x00000000 0x33 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_abbrev 0x00000000 0x28 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_aranges + 0x00000000 0x20 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .debug_str 0x00000000 0x107 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .init.literal 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .text 0x00000000 0x16 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .eh_frame 0x00000000 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .tm_clone_table + 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .init 0x00000000 0x6 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .text 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .data 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .bss 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .init 0x00000000 0x2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .fini 0x00000000 0x2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + +Memory Configuration + +Name Origin Length Attributes +iram_loader_seg 0x40078000 0x00008000 xrw +iram_seg 0x40080400 0x0000fc00 xrw +dram_seg 0x3fff0000 0x00006000 rw +*default* 0x00000000 0xffffffff + +Linker script and memory map + +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + 0x00000000 IDF_TARGET_ESP32 = 0x0 +LOAD CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libnosys.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o +LOAD C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + [!provide] PROVIDE (Add2SelfBigHex256 = 0x40015b7c) + [!provide] PROVIDE (AddBigHex256 = 0x40015b28) + [!provide] PROVIDE (AddBigHexModP256 = 0x40015c98) + [!provide] PROVIDE (AddP256 = 0x40015c74) + [!provide] PROVIDE (AddPdiv2_256 = 0x40015ce0) + [!provide] PROVIDE (app_gpio_arg = 0x3ffe003c) + [!provide] PROVIDE (app_gpio_handler = 0x3ffe0040) + [!provide] PROVIDE (BasePoint_x_256 = 0x3ff97488) + [!provide] PROVIDE (BasePoint_y_256 = 0x3ff97468) + [!provide] PROVIDE (bigHexInversion256 = 0x400168f0) + [!provide] PROVIDE (bigHexP256 = 0x3ff973bc) + [!provide] PROVIDE (btdm_r_ble_bt_handler_tab_p_get = 0x40019b0c) + [!provide] PROVIDE (btdm_r_btdm_option_data_p_get = 0x40010004) + [!provide] PROVIDE (btdm_r_btdm_rom_version_get = 0x40010078) + [!provide] PROVIDE (btdm_r_data_init = 0x4001002c) + [!provide] PROVIDE (btdm_r_import_rf_phy_func_p_get = 0x40054298) + [!provide] PROVIDE (btdm_r_ip_func_p_get = 0x40019af0) + [!provide] PROVIDE (btdm_r_ip_func_p_set = 0x40019afc) + [!provide] PROVIDE (btdm_r_modules_func_p_get = 0x4005427c) + [!provide] PROVIDE (btdm_r_modules_func_p_set = 0x40054270) + [!provide] PROVIDE (btdm_r_plf_func_p_set = 0x40054288) + [!provide] PROVIDE (bt_util_buf_env = 0x3ffb8bd4) + 0x400095e0 PROVIDE (cache_flash_mmu_set_rom = 0x400095e0) + 0x40009a14 PROVIDE (Cache_Flush_rom = 0x40009a14) + 0x40009ab8 PROVIDE (Cache_Read_Disable_rom = 0x40009ab8) + 0x40009a84 PROVIDE (Cache_Read_Enable_rom = 0x40009a84) + [!provide] PROVIDE (Cache_Read_Init_rom = 0x40009950) + [!provide] PROVIDE (cache_sram_mmu_set_rom = 0x400097f4) + [!provide] PROVIDE (calc_rtc_memory_crc = 0x40008170) + [!provide] PROVIDE (__clear_cache = 0x40063860) + [!provide] PROVIDE (co_default_bdaddr = 0x3ffae704) + [!provide] PROVIDE (co_null_bdaddr = 0x3ffb80e0) + [!provide] PROVIDE (co_sca2ppm = 0x3ff971e8) + [!provide] PROVIDE (crc16_be = 0x4005d09c) + [!provide] PROVIDE (crc16_le = 0x4005d05c) + [!provide] PROVIDE (crc32_be = 0x4005d024) + 0x4005cfec PROVIDE (crc32_le = 0x4005cfec) + [!provide] PROVIDE (crc8_be = 0x4005d114) + [!provide] PROVIDE (crc8_le = 0x4005d0e0) + [!provide] PROVIDE (_data_end_rom = 0x4000d5c8) + [!provide] PROVIDE (_data_end_btdm_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_btdm_rom = 0x4000d4f4) + [!provide] PROVIDE (_data_start_btdm = 0x3ffae6e0) + [!provide] PROVIDE (_data_end_btdm = 0x3ffaff10) + [!provide] PROVIDE (_bss_start_btdm = 0x3ffb8000) + [!provide] PROVIDE (_bss_end_btdm = 0x3ffbff70) + [!provide] PROVIDE (dbg_default_handler = 0x3ff97218) + [!provide] PROVIDE (dbg_default_state = 0x3ff97220) + [!provide] PROVIDE (dbg_state = 0x3ffb8d5d) + [!provide] PROVIDE (DebugE256PublicKey_x = 0x3ff97428) + [!provide] PROVIDE (DebugE256PublicKey_y = 0x3ff97408) + [!provide] PROVIDE (DebugE256SecretKey = 0x3ff973e8) + [!provide] PROVIDE (debug_timer = 0x3ffe042c) + [!provide] PROVIDE (debug_timerfn = 0x3ffe0430) + [!provide] PROVIDE (dh_group14_generator = 0x3ff9ac60) + [!provide] PROVIDE (dh_group14_prime = 0x3ff9ab60) + [!provide] PROVIDE (dh_group15_generator = 0x3ff9ab5f) + [!provide] PROVIDE (dh_group15_prime = 0x3ff9a9df) + [!provide] PROVIDE (dh_group16_generator = 0x3ff9a9de) + [!provide] PROVIDE (dh_group16_prime = 0x3ff9a7de) + [!provide] PROVIDE (dh_group17_generator = 0x3ff9a7dd) + [!provide] PROVIDE (dh_group17_prime = 0x3ff9a4dd) + [!provide] PROVIDE (dh_group18_generator = 0x3ff9a4dc) + [!provide] PROVIDE (dh_group18_prime = 0x3ff9a0dc) + [!provide] PROVIDE (dh_group1_generator = 0x3ff9ae03) + [!provide] PROVIDE (dh_group1_prime = 0x3ff9ada3) + [!provide] PROVIDE (dh_group2_generator = 0x3ff9ada2) + [!provide] PROVIDE (dh_group2_prime = 0x3ff9ad22) + [!provide] PROVIDE (dh_group5_generator = 0x3ff9ad21) + [!provide] PROVIDE (dh_group5_prime = 0x3ff9ac61) + 0x3ffae290 PROVIDE (g_rom_spiflash_dummy_len_plus = 0x3ffae290) + [!provide] PROVIDE (ecc_env = 0x3ffb8d60) + [!provide] PROVIDE (ecc_Jacobian_InfinityPoint256 = 0x3ff972e8) + [!provide] PROVIDE (em_buf_env = 0x3ffb8d74) + [!provide] PROVIDE (esp_crc8 = 0x4005d144) + [!provide] PROVIDE (_etext = 0x4000d66c) + [!provide] PROVIDE (ets_readySet_ = 0x3ffe01f0) + [!provide] PROVIDE (ets_startup_callback = 0x3ffe0404) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (exc_cause_table = 0x3ff991d0) + [!provide] PROVIDE (GF_Jacobian_Point_Addition256 = 0x400163a4) + [!provide] PROVIDE (GF_Jacobian_Point_Double256 = 0x40016260) + [!provide] PROVIDE (GF_Point_Jacobian_To_Affine256 = 0x40016b0c) + [!provide] PROVIDE (g_phyFuns_instance = 0x3ffae0c4) + 0x3ffae270 PROVIDE (g_rom_flashchip = 0x3ffae270) + [!provide] PROVIDE (gTxMsg = 0x3ffe0050) + [!provide] PROVIDE (hci_cmd_desc_root_tab = 0x3ff976d4) + [!provide] PROVIDE (hci_cmd_desc_tab_ctrl_bb = 0x3ff97b70) + [!provide] PROVIDE (hci_cmd_desc_tab_info_par = 0x3ff97b1c) + [!provide] PROVIDE (hci_cmd_desc_tab_le = 0x3ff97870) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_ctrl = 0x3ff97fc0) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_pol = 0x3ff97f3c) + [!provide] PROVIDE (hci_cmd_desc_tab_stat_par = 0x3ff97ac8) + [!provide] PROVIDE (hci_cmd_desc_tab_testing = 0x3ff97a98) + [!provide] PROVIDE (hci_cmd_desc_tab_vs = 0x3ff97714) + [!provide] PROVIDE (hci_command_handler = 0x4004c928) + [!provide] PROVIDE (hci_env = 0x3ffb9350) + [!provide] PROVIDE (rwip_env = 0x3ffb8bcc) + [!provide] PROVIDE (hci_evt_dbg_desc_tab = 0x3ff9750c) + [!provide] PROVIDE (hci_evt_desc_tab = 0x3ff9751c) + [!provide] PROVIDE (hci_evt_le_desc_tab = 0x3ff974b4) + [!provide] PROVIDE (hci_fc_env = 0x3ffb9340) + [!provide] PROVIDE (jd_decomp = 0x400613e8) + [!provide] PROVIDE (jd_prepare = 0x40060fa8) + [!provide] PROVIDE (ke_env = 0x3ffb93cc) + [!provide] PROVIDE (ke_handler_search = 0x4001a430) + [!provide] PROVIDE (ke_task_env = 0x3ffb81d4) + [!provide] PROVIDE (ke_event_env = 0x3ffb81a4) + [!provide] PROVIDE (lb_default_handler = 0x3ff982b8) + [!provide] PROVIDE (lb_default_state_tab_p_get = 0x4001c198) + [!provide] PROVIDE (lb_env = 0x3ffb9424) + [!provide] PROVIDE (lb_hci_cmd_handler_tab_p_get = 0x4001c18c) + [!provide] PROVIDE (lb_state = 0x3ffb94e8) + [!provide] PROVIDE (lc_default_handler = 0x3ff98648) + [!provide] PROVIDE (lc_default_state_tab_p_get = 0x4002f494) + [!provide] PROVIDE (lc_env = 0x3ffb94ec) + [!provide] PROVIDE (lc_hci_cmd_handler_tab_p_get = 0x4002f488) + [!provide] PROVIDE (lc_state = 0x3ffb9508) + [!provide] PROVIDE (ld_acl_br_sizes = 0x3ff98a2a) + [!provide] PROVIDE (ld_acl_br_types = 0x3ff98a36) + [!provide] PROVIDE (ld_acl_edr_sizes = 0x3ff98a14) + [!provide] PROVIDE (ld_acl_edr_types = 0x3ff98a22) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_pcm_settings_dft = 0x3ff98a0c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sync_train_channels = 0x3ff98a3c) + [!provide] PROVIDE (llc_default_handler = 0x3ff98b3c) + [!provide] PROVIDE (llc_default_state_tab_p_get = 0x40046058) + [!provide] PROVIDE (llc_env = 0x3ffb96d0) + [!provide] PROVIDE (llc_hci_acl_data_tx_handler = 0x40042398) + [!provide] PROVIDE (llc_hci_cmd_handler_tab_p_get = 0x40042358) + [!provide] PROVIDE (llc_hci_command_handler = 0x40042360) + [!provide] PROVIDE (llcp_pdu_handler_tab_p_get = 0x40043f64) + [!provide] PROVIDE (llc_state = 0x3ffb96f8) + [!provide] PROVIDE (lldesc_build_chain = 0x4000a850) + [!provide] PROVIDE (lldesc_num2link = 0x4000a948) + [!provide] PROVIDE (lldesc_set_owner = 0x4000a974) + [!provide] PROVIDE (lld_evt_deferred_elt_push = 0x400466b4) + [!provide] PROVIDE (lld_evt_deferred_elt_pop = 0x400466dc) + [!provide] PROVIDE (lld_evt_winsize_change = 0x40046730) + [!provide] PROVIDE (lld_evt_rxwin_compute = 0x400467c8) + [!provide] PROVIDE (lld_evt_slave_time_compute = 0x40046818) + [!provide] PROVIDE (lld_evt_env = 0x3ffb9704) + [!provide] PROVIDE (lld_evt_elt_wait_get = 0x400468e4) + [!provide] PROVIDE (lld_evt_get_next_free_slot = 0x4004692c) + [!provide] PROVIDE (lld_pdu_adv_pk_desc_tab = 0x3ff98c70) + [!provide] PROVIDE (lld_pdu_llcp_pk_desc_tab = 0x3ff98b68) + [!provide] PROVIDE (lld_pdu_tx_flush_list = 0x4004a760) + [!provide] PROVIDE (lld_pdu_pack = 0x4004ab14) + [!provide] PROVIDE (LLM_AA_CT1 = 0x3ff98d8a) + [!provide] PROVIDE (LLM_AA_CT2 = 0x3ff98d88) + [!provide] PROVIDE (llm_default_handler = 0x3ff98d80) + [!provide] PROVIDE (llm_default_state_tab_p_get = 0x4004e718) + [!provide] PROVIDE (llm_hci_cmd_handler_tab_p_get = 0x4004c920) + [!provide] PROVIDE (llm_le_env = 0x3ffb976c) + [!provide] PROVIDE (llm_local_cmds = 0x3ff98d38) + [!provide] PROVIDE (llm_local_data_len_values = 0x3ff98d1c) + [!provide] PROVIDE (llm_local_le_feats = 0x3ff98d30) + [!provide] PROVIDE (llm_local_le_states = 0x3ff98d28) + [!provide] PROVIDE (llm_state = 0x3ffb985c) + [!provide] PROVIDE (lm_default_handler = 0x3ff990e0) + [!provide] PROVIDE (lm_default_state_tab_p_get = 0x40054268) + [!provide] PROVIDE (lm_env = 0x3ffb9860) + [!provide] PROVIDE (lm_hci_cmd_handler_tab_p_get = 0x4005425c) + [!provide] PROVIDE (lm_local_supp_feats = 0x3ff990ee) + [!provide] PROVIDE (lm_n_page_tab = 0x3ff990e8) + [!provide] PROVIDE (lmp_desc_tab = 0x3ff96e6c) + [!provide] PROVIDE (lmp_ext_desc_tab = 0x3ff96d9c) + [!provide] PROVIDE (lm_state = 0x3ffb9a1c) + [!provide] PROVIDE (maxSecretKey_256 = 0x3ff97448) + 0x400095a4 PROVIDE (mmu_init = 0x400095a4) + [!provide] PROVIDE (MultiplyBigHexByUint32_256 = 0x40016214) + [!provide] PROVIDE (MultiplyBigHexModP256 = 0x400160b8) + [!provide] PROVIDE (MultiplyByU32ModP256 = 0x40015fdc) + [!provide] PROVIDE (multofup = 0x4000ab8c) + [!provide] PROVIDE (mz_adler32 = 0x4005edbc) + [!provide] PROVIDE (mz_crc32 = 0x4005ee88) + [!provide] PROVIDE (mz_free = 0x4005eed4) + [!provide] PROVIDE (notEqual256 = 0x40015b04) + [!provide] PROVIDE (one_bits = 0x3ff971f8) + [!provide] PROVIDE (phy_get_romfuncs = 0x40004100) + [!provide] PROVIDE (_Pri_4_HandlerAddress = 0x3ffe0648) + [!provide] PROVIDE (_Pri_5_HandlerAddress = 0x3ffe064c) + [!provide] PROVIDE (r_btdm_option_data = 0x3ffae6e0) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_alloc = 0x40010218) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_free = 0x40010234) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_alloc = 0x40010268) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_free = 0x40010280) + [!provide] PROVIDE (r_bt_util_buf_init = 0x400100e4) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_alloc = 0x400101d0) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_free = 0x400101ec) + [!provide] PROVIDE (r_bt_util_buf_sync_clear = 0x400103c8) + [!provide] PROVIDE (r_bt_util_buf_sync_init = 0x400102c4) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_alloc = 0x40010468) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_free = 0x4001049c) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_alloc = 0x400103ec) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_free = 0x40010428) + [!provide] PROVIDE (r_co_bdaddr_compare = 0x40014324) + [!provide] PROVIDE (r_co_bytes_to_string = 0x400142e4) + [!provide] PROVIDE (r_co_list_check_size_available = 0x400142c4) + [!provide] PROVIDE (r_co_list_extract = 0x4001404c) + [!provide] PROVIDE (r_co_list_extract_after = 0x40014118) + [!provide] PROVIDE (r_co_list_find = 0x4001419c) + [!provide] PROVIDE (r_co_list_init = 0x40013f14) + [!provide] PROVIDE (r_co_list_insert_after = 0x40014254) + [!provide] PROVIDE (r_co_list_insert_before = 0x40014200) + [!provide] PROVIDE (r_co_list_merge = 0x400141bc) + [!provide] PROVIDE (r_co_list_pool_init = 0x40013f30) + [!provide] PROVIDE (r_co_list_pop_front = 0x40014028) + [!provide] PROVIDE (r_co_list_push_back = 0x40013fb8) + [!provide] PROVIDE (r_co_list_push_front = 0x40013ff4) + [!provide] PROVIDE (r_co_list_size = 0x400142ac) + [!provide] PROVIDE (r_co_nb_good_channels = 0x40014360) + [!provide] PROVIDE (r_co_slot_to_duration = 0x40014348) + [!provide] PROVIDE (r_dbg_init = 0x40014394) + [!provide] PROVIDE (r_dbg_platform_reset_complete = 0x400143d0) + [!provide] PROVIDE (r_dbg_swdiag_init = 0x40014470) + [!provide] PROVIDE (r_dbg_swdiag_read = 0x400144a4) + [!provide] PROVIDE (r_dbg_swdiag_write = 0x400144d0) + [!provide] PROVIDE (r_E1 = 0x400108e8) + [!provide] PROVIDE (r_E21 = 0x40010968) + [!provide] PROVIDE (r_E22 = 0x400109b4) + [!provide] PROVIDE (r_E3 = 0x40010a58) + [!provide] PROVIDE (lm_n192_mod_mul = 0x40011dc0) + [!provide] PROVIDE (lm_n192_mod_add = 0x40011e9c) + [!provide] PROVIDE (lm_n192_mod_sub = 0x40011eec) + [!provide] PROVIDE (r_ea_alarm_clear = 0x40015ab4) + [!provide] PROVIDE (r_ea_alarm_set = 0x40015a10) + [!provide] PROVIDE (r_ea_elt_cancel = 0x400150d0) + [!provide] PROVIDE (r_ea_elt_create = 0x40015264) + [!provide] PROVIDE (r_ea_elt_insert = 0x400152a8) + [!provide] PROVIDE (r_ea_elt_remove = 0x400154f0) + [!provide] PROVIDE (r_ea_finetimer_isr = 0x400155d4) + [!provide] PROVIDE (r_ea_init = 0x40015228) + [!provide] PROVIDE (r_ea_interval_create = 0x4001555c) + [!provide] PROVIDE (r_ea_interval_delete = 0x400155a8) + [!provide] PROVIDE (r_ea_interval_duration_req = 0x4001597c) + [!provide] PROVIDE (r_ea_interval_insert = 0x4001557c) + [!provide] PROVIDE (r_ea_interval_remove = 0x40015590) + [!provide] PROVIDE (ea_conflict_check = 0x40014e9c) + [!provide] PROVIDE (ea_prog_timer = 0x40014f88) + [!provide] PROVIDE (r_ea_offset_req = 0x40015748) + [!provide] PROVIDE (r_ea_sleep_check = 0x40015928) + [!provide] PROVIDE (r_ea_sw_isr = 0x40015724) + [!provide] PROVIDE (r_ea_time_get_halfslot_rounded = 0x40015894) + [!provide] PROVIDE (r_ea_time_get_slot_rounded = 0x400158d4) + [!provide] PROVIDE (r_ecc_abort_key256_generation = 0x40017070) + [!provide] PROVIDE (r_ecc_generate_key256 = 0x40016e00) + [!provide] PROVIDE (r_ecc_gen_new_public_key = 0x400170c0) + [!provide] PROVIDE (r_ecc_gen_new_secret_key = 0x400170e4) + [!provide] PROVIDE (r_ecc_get_debug_Keys = 0x40017224) + [!provide] PROVIDE (r_ecc_init = 0x40016dbc) + [!provide] PROVIDE (ecc_point_multiplication_uint8_256 = 0x40016804) + [!provide] PROVIDE (RecvBuff = 0x3ffe009c) + [!provide] PROVIDE (r_em_buf_init = 0x4001729c) + [!provide] PROVIDE (r_em_buf_rx_buff_addr_get = 0x400173e8) + [!provide] PROVIDE (r_em_buf_rx_free = 0x400173c4) + [!provide] PROVIDE (r_em_buf_tx_buff_addr_get = 0x40017404) + [!provide] PROVIDE (r_em_buf_tx_free = 0x4001741c) + [!provide] PROVIDE (r_F1_256 = 0x400133e4) + [!provide] PROVIDE (r_F2_256 = 0x40013568) + [!provide] PROVIDE (r_F3_256 = 0x40013664) + [!provide] PROVIDE (RFPLL_ICP_TABLE = 0x3ffb8b7c) + [!provide] PROVIDE (r_G_256 = 0x40013470) + [!provide] PROVIDE (r_H3 = 0x40013760) + [!provide] PROVIDE (r_H4 = 0x40013830) + [!provide] PROVIDE (r_h4tl_init = 0x40017878) + [!provide] PROVIDE (r_h4tl_start = 0x40017924) + [!provide] PROVIDE (r_h4tl_stop = 0x40017934) + [!provide] PROVIDE (r_h4tl_write = 0x400178d0) + [!provide] PROVIDE (r_H5 = 0x400138dc) + [!provide] PROVIDE (r_hashConcat = 0x40013a38) + [!provide] PROVIDE (r_hci_acl_tx_data_alloc = 0x4001951c) + [!provide] PROVIDE (r_hci_acl_tx_data_received = 0x40019654) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_register = 0x40018900) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_unregister = 0x400189ac) + [!provide] PROVIDE (r_hci_bt_acl_conhdl_register = 0x4001895c) + [!provide] PROVIDE (r_hci_cmd_get_max_param_size = 0x400192d0) + [!provide] PROVIDE (r_hci_cmd_received = 0x400192f8) + [!provide] PROVIDE (r_hci_evt_filter_add = 0x40018a64) + [!provide] PROVIDE (r_hci_evt_mask_set = 0x400189e4) + [!provide] PROVIDE (r_hci_fc_acl_buf_size_set = 0x40017988) + [!provide] PROVIDE (r_hci_fc_acl_en = 0x400179d8) + [!provide] PROVIDE (r_hci_fc_acl_packet_sent = 0x40017a3c) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_acl_packets = 0x40017aa4) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_sync_packets = 0x40017ac8) + [!provide] PROVIDE (r_hci_fc_host_nb_acl_pkts_complete = 0x40017a6c) + [!provide] PROVIDE (r_hci_fc_host_nb_sync_pkts_complete = 0x40017a88) + [!provide] PROVIDE (r_hci_fc_init = 0x40017974) + [!provide] PROVIDE (r_hci_fc_sync_buf_size_set = 0x400179b0) + [!provide] PROVIDE (r_hci_fc_sync_en = 0x40017a30) + [!provide] PROVIDE (r_hci_fc_sync_packet_sent = 0x40017a54) + [!provide] PROVIDE (r_hci_init = 0x40018538) + [!provide] PROVIDE (r_hci_look_for_cmd_desc = 0x40018454) + [!provide] PROVIDE (r_hci_look_for_dbg_evt_desc = 0x400184c4) + [!provide] PROVIDE (r_hci_look_for_evt_desc = 0x400184a0) + [!provide] PROVIDE (r_hci_look_for_le_evt_desc = 0x400184e0) + [!provide] PROVIDE (r_hci_reset = 0x4001856c) + [!provide] PROVIDE (r_hci_send_2_host = 0x400185bc) + [!provide] PROVIDE (r_hci_sync_tx_data_alloc = 0x40019754) + [!provide] PROVIDE (r_hci_sync_tx_data_received = 0x400197c0) + [!provide] PROVIDE (r_hci_tl_init = 0x40019290) + [!provide] PROVIDE (r_hci_tl_send = 0x40019228) + [!provide] PROVIDE (r_hci_util_pack = 0x40019874) + [!provide] PROVIDE (r_hci_util_unpack = 0x40019998) + [!provide] PROVIDE (r_hci_voice_settings_get = 0x40018bdc) + [!provide] PROVIDE (r_hci_voice_settings_set = 0x40018be8) + [!provide] PROVIDE (r_HMAC = 0x40013968) + [!provide] PROVIDE (r_import_rf_phy_func = 0x3ffb8354) + [!provide] PROVIDE (r_import_rf_phy_func_p = 0x3ffafd64) + [!provide] PROVIDE (r_ip_funcs = 0x3ffae710) + [!provide] PROVIDE (r_ip_funcs_p = 0x3ffae70c) + [!provide] PROVIDE (r_ke_check_malloc = 0x40019de0) + [!provide] PROVIDE (r_ke_event_callback_set = 0x40019ba8) + [!provide] PROVIDE (r_ke_event_clear = 0x40019c2c) + [!provide] PROVIDE (r_ke_event_flush = 0x40019ccc) + [!provide] PROVIDE (r_ke_event_get = 0x40019c78) + [!provide] PROVIDE (r_ke_event_get_all = 0x40019cc0) + [!provide] PROVIDE (r_ke_event_init = 0x40019b90) + [!provide] PROVIDE (r_ke_event_schedule = 0x40019cdc) + [!provide] PROVIDE (r_ke_event_set = 0x40019be0) + [!provide] PROVIDE (r_ke_flush = 0x4001a374) + [!provide] PROVIDE (r_ke_free = 0x4001a014) + [!provide] PROVIDE (r_ke_get_max_mem_usage = 0x4001a1c8) + [!provide] PROVIDE (r_ke_get_mem_usage = 0x4001a1a0) + [!provide] PROVIDE (r_ke_init = 0x4001a318) + [!provide] PROVIDE (r_ke_is_free = 0x4001a184) + [!provide] PROVIDE (r_ke_malloc = 0x40019eb4) + [!provide] PROVIDE (r_ke_mem_init = 0x40019d3c) + [!provide] PROVIDE (r_ke_mem_is_empty = 0x40019d8c) + [!provide] PROVIDE (r_ke_msg_alloc = 0x4001a1e0) + [!provide] PROVIDE (r_ke_msg_dest_id_get = 0x4001a2e0) + [!provide] PROVIDE (r_ke_msg_discard = 0x4001a850) + [!provide] PROVIDE (r_ke_msg_forward = 0x4001a290) + [!provide] PROVIDE (r_ke_msg_forward_new_id = 0x4001a2ac) + [!provide] PROVIDE (r_ke_msg_free = 0x4001a2cc) + [!provide] PROVIDE (r_ke_msg_in_queue = 0x4001a2f8) + [!provide] PROVIDE (r_ke_msg_save = 0x4001a858) + [!provide] PROVIDE (r_ke_msg_send = 0x4001a234) + [!provide] PROVIDE (r_ke_msg_send_basic = 0x4001a26c) + [!provide] PROVIDE (r_ke_msg_src_id_get = 0x4001a2ec) + [!provide] PROVIDE (r_ke_queue_extract = 0x40055fd0) + [!provide] PROVIDE (r_ke_queue_insert = 0x40056020) + [!provide] PROVIDE (r_ke_sleep_check = 0x4001a3d8) + [!provide] PROVIDE (r_ke_state_get = 0x4001a7d8) + [!provide] PROVIDE (r_ke_state_set = 0x4001a6fc) + [!provide] PROVIDE (r_ke_stats_get = 0x4001a3f0) + [!provide] PROVIDE (r_ke_task_check = 0x4001a8a4) + [!provide] PROVIDE (r_ke_task_create = 0x4001a674) + [!provide] PROVIDE (r_ke_task_delete = 0x4001a6c0) + [!provide] PROVIDE (r_ke_task_init = 0x4001a650) + [!provide] PROVIDE (r_ke_task_msg_flush = 0x4001a860) + [!provide] PROVIDE (r_ke_timer_active = 0x4001ac08) + [!provide] PROVIDE (r_ke_timer_adjust_all = 0x4001ac30) + [!provide] PROVIDE (r_ke_timer_clear = 0x4001ab90) + [!provide] PROVIDE (r_ke_timer_init = 0x4001aa9c) + [!provide] PROVIDE (r_ke_timer_set = 0x4001aac0) + [!provide] PROVIDE (r_ke_timer_sleep_check = 0x4001ac50) + [!provide] PROVIDE (r_KPrimC = 0x40010ad4) + [!provide] PROVIDE (r_lb_clk_adj_activate = 0x4001ae70) + [!provide] PROVIDE (r_lb_clk_adj_id_get = 0x4001af14) + [!provide] PROVIDE (r_lb_clk_adj_period_update = 0x4001af20) + [!provide] PROVIDE (r_lb_init = 0x4001acd4) + [!provide] PROVIDE (r_lb_mst_key = 0x4001afc0) + [!provide] PROVIDE (r_lb_mst_key_cmp = 0x4001af74) + [!provide] PROVIDE (r_lb_mst_key_restart_enc = 0x4001b0d4) + [!provide] PROVIDE (r_lb_mst_start_act_bcst_enc = 0x4001b198) + [!provide] PROVIDE (r_lb_mst_stop_act_bcst_enc = 0x4001b24c) + [!provide] PROVIDE (r_lb_reset = 0x4001ad38) + [!provide] PROVIDE (r_lb_send_lmp = 0x4001adbc) + [!provide] PROVIDE (r_lb_send_pdu_clk_adj = 0x4001af3c) + [!provide] PROVIDE (r_lb_util_get_csb_mode = 0x4001ada4) + [!provide] PROVIDE (r_lb_util_get_nb_broadcast = 0x4001ad80) + [!provide] PROVIDE (r_lb_util_get_res_lt_addr = 0x4001ad98) + [!provide] PROVIDE (r_lb_util_set_nb_broadcast = 0x4001ad8c) + [!provide] PROVIDE (r_lc_afh_set = 0x4001cc74) + [!provide] PROVIDE (r_lc_afh_start = 0x4001d240) + [!provide] PROVIDE (r_lc_auth_cmp = 0x4001cd54) + [!provide] PROVIDE (r_lc_calc_link_key = 0x4001ce7c) + [!provide] PROVIDE (r_lc_chg_pkt_type_cmp = 0x4001d038) + [!provide] PROVIDE (r_lc_chg_pkt_type_cont = 0x4001cfbc) + [!provide] PROVIDE (r_lc_chg_pkt_type_retry = 0x4001d0ac) + [!provide] PROVIDE (r_lc_chk_to = 0x4001d2a8) + [!provide] PROVIDE (r_lc_cmd_stat_send = 0x4001c914) + [!provide] PROVIDE (r_lc_comb_key_svr = 0x4001d30c) + [!provide] PROVIDE (r_lc_con_cmp = 0x4001d44c) + [!provide] PROVIDE (r_lc_con_cmp_evt_send = 0x4001d4fc) + [!provide] PROVIDE (r_lc_conn_seq_done = 0x40021334) + [!provide] PROVIDE (r_lc_detach = 0x4002037c) + [!provide] PROVIDE (r_lc_dhkey = 0x4001d564) + [!provide] PROVIDE (r_lc_enc_cmp = 0x4001d8bc) + [!provide] PROVIDE (r_lc_enc_key_refresh = 0x4001d720) + [!provide] PROVIDE (r_lc_end_chk_colli = 0x4001d858) + [!provide] PROVIDE (r_lc_end_of_sniff_nego = 0x4001d9a4) + [!provide] PROVIDE (r_lc_enter_sniff_mode = 0x4001ddb8) + [!provide] PROVIDE (r_lc_epr_change_lk = 0x4001db38) + [!provide] PROVIDE (r_lc_epr_cmp = 0x4001da88) + [!provide] PROVIDE (r_lc_epr_resp = 0x4001e0b4) + [!provide] PROVIDE (r_lc_epr_rsw_cmp = 0x4001dd40) + [!provide] PROVIDE (r_lc_ext_feat = 0x40020d6c) + [!provide] PROVIDE (r_lc_feat = 0x40020984) + [!provide] PROVIDE (r_lc_hl_connect = 0x400209e8) + [!provide] PROVIDE (r_lc_init = 0x4001c948) + [!provide] PROVIDE (r_lc_init_calc_f3 = 0x4001deb0) + [!provide] PROVIDE (r_lc_initiator_epr = 0x4001e064) + [!provide] PROVIDE (r_lc_init_passkey_loop = 0x4001dfc0) + [!provide] PROVIDE (r_lc_init_start_mutual_auth = 0x4001df60) + [!provide] PROVIDE (r_lc_key_exch_end = 0x4001e140) + [!provide] PROVIDE (r_lc_legacy_pair = 0x4001e1c0) + [!provide] PROVIDE (r_lc_local_switch = 0x4001e22c) + [!provide] PROVIDE (r_lc_local_trans_mode = 0x4001e2e4) + [!provide] PROVIDE (r_lc_local_untrans_mode = 0x4001e3a0) + [!provide] PROVIDE (r_lc_loc_auth = 0x40020ecc) + [!provide] PROVIDE (r_lc_locepr_lkref = 0x4001d648) + [!provide] PROVIDE (r_lc_locepr_rsw = 0x4001d5d0) + [!provide] PROVIDE (r_lc_loc_sniff = 0x40020a6c) + [!provide] PROVIDE (r_lc_max_slot_mgt = 0x4001e410) + [!provide] PROVIDE (r_lc_mst_key = 0x4001e7c0) + [!provide] PROVIDE (r_lc_mst_qos_done = 0x4001ea80) + [!provide] PROVIDE (r_lc_mst_send_mst_key = 0x4001e8f4) + [!provide] PROVIDE (r_lc_mutual_auth_end = 0x4001e670) + [!provide] PROVIDE (r_lc_mutual_auth_end2 = 0x4001e4f4) + [!provide] PROVIDE (r_lc_packet_type = 0x40021038) + [!provide] PROVIDE (r_lc_pair = 0x40020ddc) + [!provide] PROVIDE (r_lc_pairing_cont = 0x4001eafc) + [!provide] PROVIDE (r_lc_passkey_comm = 0x4001ed20) + [!provide] PROVIDE (r_lc_prepare_all_links_for_clk_adj = 0x40021430) + [!provide] PROVIDE (r_lc_proc_rcv_dhkey = 0x4001edec) + [!provide] PROVIDE (r_lc_ptt = 0x4001ee2c) + [!provide] PROVIDE (r_lc_ptt_cmp = 0x4001eeec) + [!provide] PROVIDE (r_lc_qos_setup = 0x4001ef50) + [!provide] PROVIDE (r_lc_rd_rem_name = 0x4001efd0) + [!provide] PROVIDE (r_lc_release = 0x4001f8a8) + [!provide] PROVIDE (r_lc_rem_enc = 0x4001f124) + [!provide] PROVIDE (r_lc_rem_name_cont = 0x4001f290) + [!provide] PROVIDE (r_lc_rem_nego_trans_mode = 0x4001f1b4) + [!provide] PROVIDE (r_lc_rem_sniff = 0x40020ca4) + [!provide] PROVIDE (r_lc_rem_sniff_sub_rate = 0x40020b10) + [!provide] PROVIDE (r_lc_rem_switch = 0x4001f070) + [!provide] PROVIDE (r_lc_rem_trans_mode = 0x4001f314) + [!provide] PROVIDE (r_lc_rem_unsniff = 0x400207a0) + [!provide] PROVIDE (r_lc_rem_untrans_mode = 0x4001f36c) + [!provide] PROVIDE (r_lc_reset = 0x4001c99c) + [!provide] PROVIDE (r_lc_resp_auth = 0x4001f518) + [!provide] PROVIDE (r_lc_resp_calc_f3 = 0x4001f710) + [!provide] PROVIDE (r_lc_resp_num_comp = 0x40020074) + [!provide] PROVIDE (r_lc_resp_oob_nonce = 0x4001f694) + [!provide] PROVIDE (r_lc_resp_oob_wait_nonce = 0x4001f66c) + [!provide] PROVIDE (r_lc_resp_pair = 0x400208a4) + [!provide] PROVIDE (r_lc_resp_sec_auth = 0x4001f4a0) + [!provide] PROVIDE (r_lc_resp_wait_dhkey_cont = 0x4001f86c) + [!provide] PROVIDE (r_lc_restart_enc = 0x4001f8ec) + [!provide] PROVIDE (r_lc_restart_enc_cont = 0x4001f940) + [!provide] PROVIDE (r_lc_restore_afh_reporting = 0x4001f028) + [!provide] PROVIDE (r_lc_restore_to = 0x4001f9e0) + [!provide] PROVIDE (r_lc_ret_sniff_max_slot_chg = 0x4001fa30) + [!provide] PROVIDE (r_lc_rsw_clean_up = 0x4001dc70) + [!provide] PROVIDE (r_lc_rsw_done = 0x4001db94) + [!provide] PROVIDE (r_lc_sco_baseband_ack = 0x40022b00) + [!provide] PROVIDE (r_lc_sco_detach = 0x40021e40) + [!provide] PROVIDE (r_lc_sco_host_accept = 0x40022118) + [!provide] PROVIDE (r_lc_sco_host_reject = 0x400222b8) + [!provide] PROVIDE (r_lc_sco_host_request = 0x40021f4c) + [!provide] PROVIDE (r_lc_sco_host_request_disc = 0x4002235c) + [!provide] PROVIDE (r_lc_sco_init = 0x40021dc8) + [!provide] PROVIDE (r_lc_sco_peer_accept = 0x40022780) + [!provide] PROVIDE (r_lc_sco_peer_accept_disc = 0x40022a08) + [!provide] PROVIDE (r_lc_sco_peer_reject = 0x40022824) + [!provide] PROVIDE (r_lc_sco_peer_reject_disc = 0x40022a8c) + [!provide] PROVIDE (r_lc_sco_peer_request = 0x4002240c) + [!provide] PROVIDE (r_lc_sco_peer_request_disc = 0x400228ec) + [!provide] PROVIDE (r_lc_sco_release = 0x40021eec) + [!provide] PROVIDE (r_lc_sco_reset = 0x40021dfc) + [!provide] PROVIDE (r_lc_sco_timeout = 0x40022bd4) + [!provide] PROVIDE (r_lc_sec_auth_compute_sres = 0x4001f3ec) + [!provide] PROVIDE (r_lc_semi_key_cmp = 0x40020294) + [!provide] PROVIDE (r_lc_send_enc_chg_evt = 0x4002134c) + [!provide] PROVIDE (r_lc_send_enc_mode = 0x40020220) + [!provide] PROVIDE (r_lc_send_lmp = 0x4001c1a8) + [!provide] PROVIDE (r_lc_send_pdu_acc = 0x4001c21c) + [!provide] PROVIDE (r_lc_send_pdu_acc_ext4 = 0x4001c240) + [!provide] PROVIDE (r_lc_send_pdu_au_rand = 0x4001c308) + [!provide] PROVIDE (r_lc_send_pdu_auto_rate = 0x4001c5d0) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_ack = 0x4001c46c) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_req = 0x4001c494) + [!provide] PROVIDE (r_lc_send_pdu_comb_key = 0x4001c368) + [!provide] PROVIDE (r_lc_send_pdu_dhkey_chk = 0x4001c8e8) + [!provide] PROVIDE (r_lc_send_pdu_encaps_head = 0x4001c440) + [!provide] PROVIDE (r_lc_send_pdu_encaps_payl = 0x4001c410) + [!provide] PROVIDE (r_lc_send_pdu_enc_key_sz_req = 0x4001c670) + [!provide] PROVIDE (r_lc_send_pdu_esco_lk_rem_req = 0x4001c5a8) + [!provide] PROVIDE (r_lc_send_pdu_feats_ext_req = 0x4001c6ec) + [!provide] PROVIDE (r_lc_send_pdu_feats_res = 0x4001c694) + [!provide] PROVIDE (r_lc_send_pdu_in_rand = 0x4001c338) + [!provide] PROVIDE (r_lc_send_pdu_io_cap_res = 0x4001c72c) + [!provide] PROVIDE (r_lc_send_pdu_lsto = 0x4001c64c) + [!provide] PROVIDE (r_lc_send_pdu_max_slot = 0x4001c3c8) + [!provide] PROVIDE (r_lc_send_pdu_max_slot_req = 0x4001c3ec) + [!provide] PROVIDE (r_lc_send_pdu_not_acc = 0x4001c26c) + [!provide] PROVIDE (r_lc_send_pdu_not_acc_ext4 = 0x4001c294) + [!provide] PROVIDE (r_lc_send_pdu_num_comp_fail = 0x4001c770) + [!provide] PROVIDE (r_lc_send_pdu_pause_enc_aes_req = 0x4001c794) + [!provide] PROVIDE (r_lc_send_pdu_paus_enc_req = 0x4001c7c0) + [!provide] PROVIDE (r_lc_send_pdu_ptt_req = 0x4001c4c0) + [!provide] PROVIDE (r_lc_send_pdu_qos_req = 0x4001c82c) + [!provide] PROVIDE (r_lc_send_pdu_resu_enc_req = 0x4001c7e4) + [!provide] PROVIDE (r_lc_send_pdu_sco_lk_rem_req = 0x4001c580) + [!provide] PROVIDE (r_lc_send_pdu_set_afh = 0x4001c2c8) + [!provide] PROVIDE (r_lc_send_pdu_setup_cmp = 0x4001c808) + [!provide] PROVIDE (r_lc_send_pdu_slot_off = 0x4001c854) + [!provide] PROVIDE (r_lc_send_pdu_sniff_req = 0x4001c5f0) + [!provide] PROVIDE (r_lc_send_pdu_sp_cfm = 0x4001c518) + [!provide] PROVIDE (r_lc_send_pdu_sp_nb = 0x4001c4e8) + [!provide] PROVIDE (r_lc_send_pdu_sres = 0x4001c548) + [!provide] PROVIDE (r_lc_send_pdu_tim_acc = 0x4001c6cc) + [!provide] PROVIDE (r_lc_send_pdu_unit_key = 0x4001c398) + [!provide] PROVIDE (r_lc_send_pdu_unsniff_req = 0x4001c894) + [!provide] PROVIDE (r_lc_send_pdu_vers_req = 0x4001c8b4) + [!provide] PROVIDE (r_lc_skip_hl_oob_req = 0x400201bc) + [!provide] PROVIDE (r_lc_sniff_init = 0x40022cac) + [!provide] PROVIDE (r_lc_sniff_max_slot_chg = 0x40020590) + [!provide] PROVIDE (r_lc_sniff_reset = 0x40022cc8) + [!provide] PROVIDE (r_lc_sniff_slot_unchange = 0x40021100) + [!provide] PROVIDE (r_lc_sniff_sub_mode = 0x400204fc) + [!provide] PROVIDE (r_lc_sp_end = 0x400213a8) + [!provide] PROVIDE (r_lc_sp_fail = 0x40020470) + [!provide] PROVIDE (r_lc_sp_oob_tid_fail = 0x400204cc) + [!provide] PROVIDE (r_lc_ssr_nego = 0x4002125c) + [!provide] PROVIDE (r_lc_start = 0x4001ca28) + [!provide] PROVIDE (r_lc_start_enc = 0x4001fb28) + [!provide] PROVIDE (r_lc_start_enc_key_size = 0x4001fd9c) + [!provide] PROVIDE (r_lc_start_key_exch = 0x4001fe10) + [!provide] PROVIDE (r_lc_start_lmp_to = 0x4001fae8) + [!provide] PROVIDE (r_lc_start_oob = 0x4001fffc) + [!provide] PROVIDE (r_lc_start_passkey = 0x4001feac) + [!provide] PROVIDE (r_lc_start_passkey_loop = 0x4001ff88) + [!provide] PROVIDE (r_lc_stop_afh_report = 0x40020184) + [!provide] PROVIDE (r_lc_stop_enc = 0x40020110) + [!provide] PROVIDE (r_lc_switch_cmp = 0x40020448) + [!provide] PROVIDE (r_lc_unit_key_svr = 0x400206d8) + [!provide] PROVIDE (r_lc_unsniff = 0x40020c50) + [!provide] PROVIDE (r_lc_unsniff_cmp = 0x40020810) + [!provide] PROVIDE (r_lc_unsniff_cont = 0x40020750) + [!provide] PROVIDE (r_lc_upd_to = 0x4002065c) + [!provide] PROVIDE (r_lc_util_convert_pref_rate_to_packet_type = 0x4002f9b0) + [!provide] PROVIDE (r_lc_util_get_max_packet_size = 0x4002f4ac) + [!provide] PROVIDE (r_lc_util_get_offset_clke = 0x4002f538) + [!provide] PROVIDE (r_lc_util_get_offset_clkn = 0x4002f51c) + [!provide] PROVIDE (r_lc_util_set_loc_trans_coll = 0x4002f500) + [!provide] PROVIDE (r_lc_version = 0x40020a30) + [!provide] PROVIDE (lc_set_encap_pdu_data_p192 = 0x4002e4c8) + [!provide] PROVIDE (lc_set_encap_pdu_data_p256 = 0x4002e454) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lmp_clk_adj_req_handler = 0x4002751c) + [!provide] PROVIDE (lmp_feats_res_ext_handler = 0x4002cac4) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (lmp_pkt_type_tbl_req_handler = 0x40027574) + [!provide] PROVIDE (lmp_esco_link_req_handler = 0x40027610) + [!provide] PROVIDE (lmp_rmv_esco_link_req_handler = 0x400276e8) + [!provide] PROVIDE (lmp_ch_class_req_handler = 0x40027730) + [!provide] PROVIDE (lmp_ch_class_handler = 0x4002ca18) + [!provide] PROVIDE (lmp_ssr_req_handler = 0x4002780c) + [!provide] PROVIDE (lmp_ssr_res_handler = 0x40027900) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_pause_enc_req_handler = 0x4002df90) + [!provide] PROVIDE (lmp_resume_enc_req_handler = 0x4002e084) + [!provide] PROVIDE (lmp_num_comparison_fail_handler = 0x40027a74) + [!provide] PROVIDE (lmp_passkey_fail_handler = 0x40027aec) + [!provide] PROVIDE (lmp_keypress_notif_handler = 0x4002c5c8) + [!provide] PROVIDE (lmp_pwr_ctrl_req_handler = 0x400263bc) + [!provide] PROVIDE (lmp_pwr_ctrl_res_handler = 0x40026480) + [!provide] PROVIDE (lmp_auto_rate_handler = 0x40026548) + [!provide] PROVIDE (lmp_pref_rate_handler = 0x4002657c) + [!provide] PROVIDE (lmp_name_req_handler = 0x40025050) + [!provide] PROVIDE (lmp_name_res_handler = 0x400250bc) + [!provide] PROVIDE (lmp_not_accepted_handler = 0x400251d0) + [!provide] PROVIDE (lmp_accepted_handler = 0x4002e894) + [!provide] PROVIDE (lmp_clk_off_req_handler = 0x40025a44) + [!provide] PROVIDE (lmp_clk_off_res_handler = 0x40025ab8) + [!provide] PROVIDE (lmp_detach_handler = 0x40025b74) + [!provide] PROVIDE (lmp_tempkey_handler = 0x4002b6b0) + [!provide] PROVIDE (lmp_temprand_handler = 0x4002b74c) + [!provide] PROVIDE (lmp_sres_handler = 0x4002b840) + [!provide] PROVIDE (lmp_aurand_handler = 0x4002bda0) + [!provide] PROVIDE (lmp_unitkey_handler = 0x4002c13c) + [!provide] PROVIDE (lmp_combkey_handler = 0x4002c234) + [!provide] PROVIDE (lmp_inrand_handler = 0x4002c414) + [!provide] PROVIDE (lmp_oob_fail_handler = 0x40027b84) + [!provide] PROVIDE (lmp_ping_req_handler = 0x40027c08) + [!provide] PROVIDE (lmp_ping_res_handler = 0x40027c5c) + [!provide] PROVIDE (lmp_enc_mode_req_handler = 0x40025c60) + [!provide] PROVIDE (lmp_enc_key_size_req_handler = 0x40025e54) + [!provide] PROVIDE (lmp_switch_req_handler = 0x40025f84) + [!provide] PROVIDE (lmp_start_enc_req_handler = 0x4002e124) + [!provide] PROVIDE (lmp_stop_enc_req_handler = 0x4002de30) + [!provide] PROVIDE (lmp_sniff_req_handler = 0x400260c8) + [!provide] PROVIDE (lmp_unsniff_req_handler = 0x400261e0) + [!provide] PROVIDE (lmp_incr_pwr_req_handler = 0x4002629c) + [!provide] PROVIDE (lmp_decr_pwr_req_handler = 0x400262f8) + [!provide] PROVIDE (lmp_max_pwr_handler = 0x40026354) + [!provide] PROVIDE (lmp_min_pwr_handler = 0x40026388) + [!provide] PROVIDE (lmp_ver_req_handler = 0x400265f0) + [!provide] PROVIDE (lmp_ver_res_handler = 0x40026670) + [!provide] PROVIDE (lmp_qos_handler = 0x40026790) + [!provide] PROVIDE (lmp_qos_req_handler = 0x40026844) + [!provide] PROVIDE (lmp_sco_link_req_handler = 0x40026930) + [!provide] PROVIDE (lmp_rmv_sco_link_req_handler = 0x40026a10) + [!provide] PROVIDE (lmp_max_slot_handler = 0x40026a54) + [!provide] PROVIDE (lmp_max_slot_req_handler = 0x40026aac) + [!provide] PROVIDE (lmp_timing_accu_req_handler = 0x40026b54) + [!provide] PROVIDE (lmp_timing_accu_res_handler = 0x40026bcc) + [!provide] PROVIDE (lmp_setup_cmp_handler = 0x40026c84) + [!provide] PROVIDE (lmp_feats_res_handler = 0x4002b548) + [!provide] PROVIDE (lmp_feats_req_handler = 0x4002b620) + [!provide] PROVIDE (lmp_host_con_req_handler = 0x4002b3d8) + [!provide] PROVIDE (lmp_use_semi_perm_key_handler = 0x4002b4c4) + [!provide] PROVIDE (lmp_slot_off_handler = 0x40026cc8) + [!provide] PROVIDE (lmp_page_mode_req_handler = 0x40026d0c) + [!provide] PROVIDE (lmp_page_scan_mode_req_handler = 0x40026d4c) + [!provide] PROVIDE (lmp_supv_to_handler = 0x40026d94) + [!provide] PROVIDE (lmp_test_activate_handler = 0x40026e7c) + [!provide] PROVIDE (lmp_test_ctrl_handler = 0x40026ee4) + [!provide] PROVIDE (lmp_enc_key_size_mask_req_handler = 0x40027038) + [!provide] PROVIDE (lmp_enc_key_size_mask_res_handler = 0x400270a4) + [!provide] PROVIDE (lmp_set_afh_handler = 0x4002b2e4) + [!provide] PROVIDE (lmp_encaps_hdr_handler = 0x40027120) + [!provide] PROVIDE (lmp_encaps_payl_handler = 0x4002e590) + [!provide] PROVIDE (lmp_sp_nb_handler = 0x4002acf0) + [!provide] PROVIDE (lmp_sp_cfm_handler = 0x4002b170) + [!provide] PROVIDE (lmp_dhkey_chk_handler = 0x4002ab48) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_io_cap_res_handler = 0x4002c670) + [!provide] PROVIDE (lmp_io_cap_req_handler = 0x4002c7a4) + [!provide] PROVIDE (lc_cmd_cmp_bd_addr_send = 0x4002cec4) + [!provide] PROVIDE (ld_acl_tx_packet_type_select = 0x4002fb40) + [!provide] PROVIDE (ld_acl_sched = 0x40033268) + [!provide] PROVIDE (ld_acl_sniff_sched = 0x4003340c) + [!provide] PROVIDE (ld_acl_sniff_exit = 0x400312b4) + [!provide] PROVIDE (ld_acl_rx = 0x4003274c) + [!provide] PROVIDE (ld_acl_tx = 0x4002ffdc) + [!provide] PROVIDE (ld_acl_rx_sync = 0x4002fbec) + [!provide] PROVIDE (ld_acl_rx_sync2 = 0x4002fd8c) + [!provide] PROVIDE (ld_acl_rx_no_sync = 0x4002fe78) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_rsw_frm_cbk = 0x40033bb0) + [!provide] PROVIDE (ld_sco_modify = 0x40031778) + [!provide] PROVIDE (lm_cmd_cmp_send = 0x40051838) + [!provide] PROVIDE (ld_sco_frm_cbk = 0x400349dc) + [!provide] PROVIDE (ld_acl_sco_rsvd_check = 0x4002fa94) + [!provide] PROVIDE (ld_acl_sniff_frm_cbk = 0x4003482c) + [!provide] PROVIDE (ld_inq_end = 0x4003ab48) + [!provide] PROVIDE (ld_inq_sched = 0x4003aba4) + [!provide] PROVIDE (ld_inq_frm_cbk = 0x4003ae4c) + [!provide] PROVIDE (ld_pscan_frm_cbk = 0x4003ebe4) + [!provide] PROVIDE (r_ld_acl_active_hop_types_get = 0x40036e10) + [!provide] PROVIDE (r_ld_acl_afh_confirm = 0x40036d40) + [!provide] PROVIDE (r_ld_acl_afh_prepare = 0x40036c84) + [!provide] PROVIDE (r_ld_acl_afh_set = 0x40036b60) + [!provide] PROVIDE (r_ld_acl_allowed_tx_packet_types_set = 0x40036810) + [!provide] PROVIDE (r_ld_acl_bcst_rx_dec = 0x40036394) + [!provide] PROVIDE (r_ld_acl_bit_off_get = 0x40036b18) + [!provide] PROVIDE (r_ld_acl_clk_adj_set = 0x40036a00) + [!provide] PROVIDE (r_ld_acl_clk_off_get = 0x40036b00) + [!provide] PROVIDE (r_ld_acl_clk_set = 0x40036950) + [!provide] PROVIDE (r_ld_acl_clock_offset_get = 0x400364c0) + [!provide] PROVIDE (r_ld_acl_current_tx_power_get = 0x400368f0) + [!provide] PROVIDE (r_ld_acl_data_flush = 0x400357bc) + [!provide] PROVIDE (r_ld_acl_data_tx = 0x4003544c) + [!provide] PROVIDE (r_ld_acl_edr_set = 0x4003678c) + [!provide] PROVIDE (r_ld_acl_enc_key_load = 0x40036404) + [!provide] PROVIDE (r_ld_acl_flow_off = 0x40035400) + [!provide] PROVIDE (r_ld_acl_flow_on = 0x4003541c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_get = 0x40035f9c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_set = 0x40035fe0) + [!provide] PROVIDE (r_ld_acl_init = 0x40034d08) + [!provide] PROVIDE (r_ld_acl_lmp_flush = 0x40035d80) + [!provide] PROVIDE (r_ld_acl_lmp_tx = 0x40035b34) + [!provide] PROVIDE (r_ld_acl_lsto_get = 0x400366b4) + [!provide] PROVIDE (r_ld_acl_lsto_set = 0x400366f8) + [!provide] PROVIDE (r_ld_acl_reset = 0x40034d24) + [!provide] PROVIDE (r_ld_acl_role_get = 0x40036b30) + [!provide] PROVIDE (r_ld_acl_rssi_delta_get = 0x40037028) + [!provide] PROVIDE (r_ld_acl_rsw_req = 0x40035e74) + [!provide] PROVIDE (r_ld_acl_rx_enc = 0x40036344) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_get = 0x40036e58) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_set = 0x40036ea0) + [!provide] PROVIDE (r_ld_acl_slot_offset_get = 0x4003653c) + [!provide] PROVIDE (r_ld_acl_slot_offset_set = 0x40036658) + [!provide] PROVIDE (r_ld_acl_sniff = 0x4003617c) + [!provide] PROVIDE (r_ld_acl_sniff_trans = 0x400360a8) + [!provide] PROVIDE (r_ld_acl_ssr_set = 0x40036274) + [!provide] PROVIDE (r_ld_acl_start = 0x40034ddc) + [!provide] PROVIDE (r_ld_acl_stop = 0x4003532c) + [!provide] PROVIDE (r_ld_acl_test_mode_set = 0x40036f24) + [!provide] PROVIDE (r_ld_acl_timing_accuracy_set = 0x4003673c) + [!provide] PROVIDE (r_ld_acl_t_poll_get = 0x40036024) + [!provide] PROVIDE (r_ld_acl_t_poll_set = 0x40036068) + [!provide] PROVIDE (r_ld_acl_tx_enc = 0x400362f8) + [!provide] PROVIDE (ld_acl_frm_cbk = 0x40034414) + [!provide] PROVIDE (ld_acl_rsw_end = 0x40032bc0) + [!provide] PROVIDE (ld_acl_end = 0x40033140) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (r_ld_acl_unsniff = 0x400361e0) + [!provide] PROVIDE (r_ld_active_check = 0x4003cac4) + [!provide] PROVIDE (r_ld_afh_ch_assess_data_get = 0x4003caec) + [!provide] PROVIDE (r_ld_bcst_acl_data_tx = 0x40038d3c) + [!provide] PROVIDE (r_ld_bcst_acl_init = 0x40038bd0) + [!provide] PROVIDE (r_ld_bcst_acl_reset = 0x40038bdc) + [!provide] PROVIDE (r_ld_bcst_acl_start = 0x4003882c) + [!provide] PROVIDE (r_ld_bcst_afh_update = 0x40038f3c) + [!provide] PROVIDE (r_ld_bcst_enc_key_load = 0x4003906c) + [!provide] PROVIDE (r_ld_bcst_lmp_tx = 0x40038bf8) + [!provide] PROVIDE (r_ld_bcst_tx_enc = 0x40038ff8) + [!provide] PROVIDE (r_ld_bd_addr_get = 0x4003ca20) + [!provide] PROVIDE (r_ld_channel_assess = 0x4003c184) + [!provide] PROVIDE (r_ld_class_of_dev_get = 0x4003ca34) + [!provide] PROVIDE (r_ld_class_of_dev_set = 0x4003ca50) + [!provide] PROVIDE (r_ld_csb_rx_afh_update = 0x40039af4) + [!provide] PROVIDE (r_ld_csb_rx_init = 0x40039690) + [!provide] PROVIDE (r_ld_csb_rx_reset = 0x4003969c) + [!provide] PROVIDE (r_ld_csb_rx_start = 0x4003972c) + [!provide] PROVIDE (r_ld_csb_rx_stop = 0x40039bb8) + [!provide] PROVIDE (r_ld_csb_tx_afh_update = 0x4003a5fc) + [!provide] PROVIDE (r_ld_csb_tx_clr_data = 0x4003a71c) + [!provide] PROVIDE (r_ld_csb_tx_dis = 0x4003a5e8) + [!provide] PROVIDE (r_ld_csb_tx_en = 0x4003a1c0) + [!provide] PROVIDE (r_ld_csb_tx_init = 0x4003a0e8) + [!provide] PROVIDE (r_ld_csb_tx_reset = 0x4003a0f8) + [!provide] PROVIDE (r_ld_csb_tx_set_data = 0x4003a6c0) + [!provide] PROVIDE (r_ld_fm_clk_isr = 0x4003a7a8) + [!provide] PROVIDE (r_ld_fm_frame_isr = 0x4003a82c) + [!provide] PROVIDE (r_ld_fm_init = 0x4003a760) + [!provide] PROVIDE (r_ld_fm_prog_check = 0x4003ab28) + [!provide] PROVIDE (r_ld_fm_prog_disable = 0x4003a984) + [!provide] PROVIDE (r_ld_fm_prog_enable = 0x4003a944) + [!provide] PROVIDE (r_ld_fm_prog_push = 0x4003a9d4) + [!provide] PROVIDE (r_ld_fm_reset = 0x4003a794) + [!provide] PROVIDE (r_ld_fm_rx_isr = 0x4003a7f4) + [!provide] PROVIDE (r_ld_fm_sket_isr = 0x4003a8a4) + [!provide] PROVIDE (r_ld_init = 0x4003c294) + [!provide] PROVIDE (r_ld_inq_init = 0x4003b15c) + [!provide] PROVIDE (r_ld_inq_reset = 0x4003b168) + [!provide] PROVIDE (r_ld_inq_start = 0x4003b1f0) + [!provide] PROVIDE (r_ld_inq_stop = 0x4003b4f0) + [!provide] PROVIDE (r_ld_iscan_eir_get = 0x4003c118) + [!provide] PROVIDE (r_ld_iscan_eir_set = 0x4003bfa0) + [!provide] PROVIDE (r_ld_iscan_init = 0x4003b9f0) + [!provide] PROVIDE (r_ld_iscan_reset = 0x4003ba14) + [!provide] PROVIDE (r_ld_iscan_restart = 0x4003ba44) + [!provide] PROVIDE (r_ld_iscan_start = 0x4003bb28) + [!provide] PROVIDE (r_ld_iscan_stop = 0x4003bf1c) + [!provide] PROVIDE (r_ld_iscan_tx_pwr_get = 0x4003c138) + [!provide] PROVIDE (r_ld_page_init = 0x4003d808) + [!provide] PROVIDE (r_ld_page_reset = 0x4003d814) + [!provide] PROVIDE (r_ld_page_start = 0x4003d848) + [!provide] PROVIDE (r_ld_page_stop = 0x4003da54) + [!provide] PROVIDE (r_ld_pca_coarse_clock_adjust = 0x4003e324) + [!provide] PROVIDE (r_ld_pca_init = 0x4003deb4) + [!provide] PROVIDE (r_ld_pca_initiate_clock_dragging = 0x4003e4ac) + [!provide] PROVIDE (r_ld_pca_local_config = 0x4003df6c) + [!provide] PROVIDE (r_ld_pca_mws_frame_sync = 0x4003e104) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_gt = 0x4003e278) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_lt = 0x4003e280) + [!provide] PROVIDE (r_ld_pca_reporting_enable = 0x4003e018) + [!provide] PROVIDE (r_ld_pca_reset = 0x4003df0c) + [!provide] PROVIDE (r_ld_pca_update_target_offset = 0x4003e050) + [!provide] PROVIDE (r_ld_pscan_evt_handler = 0x4003f238) + [!provide] PROVIDE (r_ld_pscan_init = 0x4003f474) + [!provide] PROVIDE (r_ld_pscan_reset = 0x4003f498) + [!provide] PROVIDE (r_ld_pscan_restart = 0x4003f4b8) + [!provide] PROVIDE (r_ld_pscan_start = 0x4003f514) + [!provide] PROVIDE (r_ld_pscan_stop = 0x4003f618) + [!provide] PROVIDE (r_ld_read_clock = 0x4003c9e4) + [!provide] PROVIDE (r_ld_reset = 0x4003c714) + [!provide] PROVIDE (r_ld_sched_acl_add = 0x4003f978) + [!provide] PROVIDE (r_ld_sched_acl_remove = 0x4003f99c) + [!provide] PROVIDE (r_ld_sched_compute = 0x4003f6f8) + [!provide] PROVIDE (r_ld_sched_init = 0x4003f7ac) + [!provide] PROVIDE (r_ld_sched_inq_add = 0x4003f8a8) + [!provide] PROVIDE (r_ld_sched_inq_remove = 0x4003f8d0) + [!provide] PROVIDE (r_ld_sched_iscan_add = 0x4003f7e8) + [!provide] PROVIDE (r_ld_sched_iscan_remove = 0x4003f808) + [!provide] PROVIDE (r_ld_sched_page_add = 0x4003f910) + [!provide] PROVIDE (r_ld_sched_page_remove = 0x4003f938) + [!provide] PROVIDE (r_ld_sched_pscan_add = 0x4003f828) + [!provide] PROVIDE (r_ld_sched_pscan_remove = 0x4003f848) + [!provide] PROVIDE (r_ld_sched_reset = 0x4003f7d4) + [!provide] PROVIDE (r_ld_sched_sco_add = 0x4003fa4c) + [!provide] PROVIDE (r_ld_sched_sco_remove = 0x4003fa9c) + [!provide] PROVIDE (r_ld_sched_sniff_add = 0x4003f9c4) + [!provide] PROVIDE (r_ld_sched_sniff_remove = 0x4003fa0c) + [!provide] PROVIDE (r_ld_sched_sscan_add = 0x4003f868) + [!provide] PROVIDE (r_ld_sched_sscan_remove = 0x4003f888) + [!provide] PROVIDE (r_ld_sco_audio_isr = 0x40037cc8) + [!provide] PROVIDE (r_ld_sco_data_tx = 0x40037ee8) + [!provide] PROVIDE (r_ld_sco_start = 0x40037110) + [!provide] PROVIDE (r_ld_sco_stop = 0x40037c40) + [!provide] PROVIDE (r_ld_sco_update = 0x40037a74) + [!provide] PROVIDE (r_ld_sscan_activated = 0x4004031c) + [!provide] PROVIDE (r_ld_sscan_init = 0x400402f0) + [!provide] PROVIDE (r_ld_sscan_reset = 0x400402fc) + [!provide] PROVIDE (r_ld_sscan_start = 0x40040384) + [!provide] PROVIDE (r_ld_strain_init = 0x400409f4) + [!provide] PROVIDE (r_ld_strain_reset = 0x40040a00) + [!provide] PROVIDE (r_ld_strain_start = 0x40040a8c) + [!provide] PROVIDE (r_ld_strain_stop = 0x40040df0) + [!provide] PROVIDE (r_ld_timing_accuracy_get = 0x4003caac) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_get = 0x4004131c) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_set = 0x40041308) + [!provide] PROVIDE (r_ld_util_bch_create = 0x40040fcc) + [!provide] PROVIDE (r_ld_util_fhs_pk = 0x400411c8) + [!provide] PROVIDE (r_ld_util_fhs_unpk = 0x40040e54) + [!provide] PROVIDE (r_ld_util_stp_pk = 0x400413f4) + [!provide] PROVIDE (r_ld_util_stp_unpk = 0x40041324) + [!provide] PROVIDE (r_ld_version_get = 0x4003ca6c) + [!provide] PROVIDE (r_ld_wlcoex_set = 0x4003caf8) + [!provide] PROVIDE (r_llc_ch_assess_get_current_ch_map = 0x40041574) + [!provide] PROVIDE (r_llc_ch_assess_get_local_ch_map = 0x4004150c) + [!provide] PROVIDE (r_llc_ch_assess_local = 0x40041494) + [!provide] PROVIDE (r_llc_ch_assess_merge_ch = 0x40041588) + [!provide] PROVIDE (r_llc_ch_assess_reass_ch = 0x400415c0) + [!provide] PROVIDE (r_llc_common_cmd_complete_send = 0x40044eac) + [!provide] PROVIDE (r_llc_common_cmd_status_send = 0x40044ee0) + [!provide] PROVIDE (r_llc_common_enc_change_evt_send = 0x40044f6c) + [!provide] PROVIDE (r_llc_common_enc_key_ref_comp_evt_send = 0x40044f38) + [!provide] PROVIDE (r_llc_common_flush_occurred_send = 0x40044f0c) + [!provide] PROVIDE (r_llc_common_nb_of_pkt_comp_evt_send = 0x40045000) + [!provide] PROVIDE (r_llc_con_update_complete_send = 0x40044d68) + [!provide] PROVIDE (r_llc_con_update_finished = 0x4004518c) + [!provide] PROVIDE (r_llc_con_update_ind = 0x40045038) + [!provide] PROVIDE (r_llc_discon_event_complete_send = 0x40044a30) + [!provide] PROVIDE (r_llc_end_evt_defer = 0x40046330) + [!provide] PROVIDE (r_llc_feats_rd_event_send = 0x40044e0c) + [!provide] PROVIDE (r_llc_init = 0x40044778) + [!provide] PROVIDE (r_llc_le_con_cmp_evt_send = 0x40044a78) + [!provide] PROVIDE (r_llc_llcp_ch_map_update_pdu_send = 0x40043f94) + [!provide] PROVIDE (r_llc_llcp_con_param_req_pdu_send = 0x400442fc) + [!provide] PROVIDE (r_llc_llcp_con_param_rsp_pdu_send = 0x40044358) + [!provide] PROVIDE (r_llc_llcp_con_update_pdu_send = 0x400442c4) + [!provide] PROVIDE (r_llc_llcp_enc_req_pdu_send = 0x40044064) + [!provide] PROVIDE (r_llc_llcp_enc_rsp_pdu_send = 0x40044160) + [!provide] PROVIDE (r_llc_llcp_feats_req_pdu_send = 0x400443b4) + [!provide] PROVIDE (r_llc_llcp_feats_rsp_pdu_send = 0x400443f0) + [!provide] PROVIDE (r_llc_llcp_get_autorize = 0x4004475c) + [!provide] PROVIDE (r_llc_llcp_length_req_pdu_send = 0x40044574) + [!provide] PROVIDE (r_llc_llcp_length_rsp_pdu_send = 0x400445ac) + [!provide] PROVIDE (r_llc_llcp_pause_enc_req_pdu_send = 0x40043fd8) + [!provide] PROVIDE (r_llc_llcp_pause_enc_rsp_pdu_send = 0x40044010) + [!provide] PROVIDE (r_llc_llcp_ping_req_pdu_send = 0x4004454c) + [!provide] PROVIDE (r_llc_llcp_ping_rsp_pdu_send = 0x40044560) + [!provide] PROVIDE (r_llc_llcp_recv_handler = 0x40044678) + [!provide] PROVIDE (r_llc_llcp_reject_ind_pdu_send = 0x4004425c) + [!provide] PROVIDE (r_llc_llcp_start_enc_req_pdu_send = 0x4004441c) + [!provide] PROVIDE (r_llc_llcp_start_enc_rsp_pdu_send = 0x400441f8) + [!provide] PROVIDE (r_llc_llcp_terminate_ind_pdu_send = 0x400444b0) + [!provide] PROVIDE (r_llc_llcp_tester_send = 0x400445e4) + [!provide] PROVIDE (r_llc_llcp_unknown_rsp_send_pdu = 0x40044534) + [!provide] PROVIDE (r_llc_llcp_version_ind_pdu_send = 0x40043f6c) + [!provide] PROVIDE (r_llc_lsto_con_update = 0x40045098) + [!provide] PROVIDE (r_llc_ltk_req_send = 0x40044dc0) + [!provide] PROVIDE (r_llc_map_update_finished = 0x40045260) + [!provide] PROVIDE (r_llc_map_update_ind = 0x400450f0) + [!provide] PROVIDE (r_llc_pdu_acl_tx_ack_defer = 0x400464dc) + [!provide] PROVIDE (r_llc_pdu_defer = 0x40046528) + [!provide] PROVIDE (r_llc_pdu_llcp_tx_ack_defer = 0x400463ac) + [!provide] PROVIDE (r_llc_reset = 0x400447b8) + [!provide] PROVIDE (r_llc_start = 0x400447f4) + [!provide] PROVIDE (r_llc_stop = 0x400449ac) + [!provide] PROVIDE (r_llc_util_bw_mgt = 0x4004629c) + [!provide] PROVIDE (r_llc_util_clear_operation_ptr = 0x40046234) + [!provide] PROVIDE (r_llc_util_dicon_procedure = 0x40046130) + [!provide] PROVIDE (r_llc_util_get_free_conhdl = 0x400460c8) + [!provide] PROVIDE (r_llc_util_get_nb_active_link = 0x40046100) + [!provide] PROVIDE (r_llc_util_set_auth_payl_to_margin = 0x400461f4) + [!provide] PROVIDE (r_llc_util_set_llcp_discard_enable = 0x400461c8) + [!provide] PROVIDE (r_llc_util_update_channel_map = 0x400461ac) + [!provide] PROVIDE (r_llc_version_rd_event_send = 0x40044e60) + [!provide] PROVIDE (r_lld_adv_start = 0x40048b38) + [!provide] PROVIDE (r_lld_adv_stop = 0x40048ea0) + [!provide] PROVIDE (r_lld_ch_map_ind = 0x4004a2f4) + [!provide] PROVIDE (r_lld_con_param_req = 0x40049f0c) + [!provide] PROVIDE (r_lld_con_param_rsp = 0x40049e00) + [!provide] PROVIDE (r_lld_con_start = 0x400491f8) + [!provide] PROVIDE (r_lld_con_stop = 0x40049fdc) + [!provide] PROVIDE (r_lld_con_update_after_param_req = 0x40049bcc) + [!provide] PROVIDE (r_lld_con_update_ind = 0x4004a30c) + [!provide] PROVIDE (r_lld_con_update_req = 0x40049b60) + [!provide] PROVIDE (r_lld_core_reset = 0x40048a9c) + [!provide] PROVIDE (r_lld_crypt_isr = 0x4004a324) + [!provide] PROVIDE (r_lld_evt_adv_create = 0x400481f4) + [!provide] PROVIDE (r_lld_evt_canceled = 0x400485c8) + [!provide] PROVIDE (r_lld_evt_channel_next = 0x40046aac) + [!provide] PROVIDE (r_lld_evt_deffered_elt_handler = 0x400482bc) + [!provide] PROVIDE (r_lld_evt_delete_elt_handler = 0x40046974) + [!provide] PROVIDE (r_lld_evt_delete_elt_push = 0x40046a3c) + [!provide] PROVIDE (r_lld_evt_drift_compute = 0x40047670) + [!provide] PROVIDE (r_lld_evt_elt_delete = 0x40047538) + [!provide] PROVIDE (r_lld_evt_elt_insert = 0x400474c8) + [!provide] PROVIDE (r_lld_evt_end = 0x400483e8) + [!provide] PROVIDE (r_lld_evt_end_isr = 0x4004862c) + [!provide] PROVIDE (r_lld_evt_init = 0x40046b3c) + [!provide] PROVIDE (r_lld_evt_init_evt = 0x40046cd0) + [!provide] PROVIDE (r_lld_evt_move_to_master = 0x40047ba0) + [!provide] PROVIDE (r_lld_evt_move_to_slave = 0x40047e18) + [!provide] PROVIDE (r_lld_evt_prevent_stop = 0x40047adc) + [!provide] PROVIDE (r_lld_evt_restart = 0x40046d50) + [!provide] PROVIDE (r_lld_evt_rx = 0x40048578) + [!provide] PROVIDE (r_lld_evt_rx_isr = 0x40048678) + [!provide] PROVIDE (r_lld_evt_scan_create = 0x40047ae8) + [!provide] PROVIDE (r_lld_evt_schedule = 0x40047908) + [!provide] PROVIDE (r_lld_evt_schedule_next = 0x400477dc) + [!provide] PROVIDE (r_lld_evt_schedule_next_instant = 0x400476a8) + [!provide] PROVIDE (r_lld_evt_slave_update = 0x40048138) + [!provide] PROVIDE (r_lld_evt_update_create = 0x40047cd8) + [!provide] PROVIDE (r_lld_get_mode = 0x40049ff8) + [!provide] PROVIDE (r_lld_init = 0x4004873c) + [!provide] PROVIDE (r_lld_move_to_master = 0x400499e0) + [!provide] PROVIDE (r_lld_move_to_slave = 0x4004a024) + [!provide] PROVIDE (r_lld_pdu_adv_pack = 0x4004b488) + [!provide] PROVIDE (r_lld_pdu_check = 0x4004ac34) + [!provide] PROVIDE (r_lld_pdu_data_send = 0x4004b018) + [!provide] PROVIDE (r_lld_pdu_data_tx_push = 0x4004aecc) + [!provide] PROVIDE (r_lld_pdu_rx_handler = 0x4004b4d4) + [!provide] PROVIDE (r_lld_pdu_send_packet = 0x4004b774) + [!provide] PROVIDE (r_lld_pdu_tx_flush = 0x4004b414) + [!provide] PROVIDE (r_lld_pdu_tx_loop = 0x4004ae40) + [!provide] PROVIDE (r_lld_pdu_tx_prog = 0x4004b120) + [!provide] PROVIDE (r_lld_pdu_tx_push = 0x4004b080) + [!provide] PROVIDE (r_lld_ral_renew_req = 0x4004a73c) + [!provide] PROVIDE (r_lld_scan_start = 0x40048ee0) + [!provide] PROVIDE (r_lld_scan_stop = 0x40049190) + [!provide] PROVIDE (r_lld_test_mode_rx = 0x4004a540) + [!provide] PROVIDE (r_lld_test_mode_tx = 0x4004a350) + [!provide] PROVIDE (r_lld_test_stop = 0x4004a710) + [!provide] PROVIDE (r_lld_util_anchor_point_move = 0x4004bacc) + [!provide] PROVIDE (r_lld_util_compute_ce_max = 0x4004bc0c) + [!provide] PROVIDE (r_lld_util_connection_param_set = 0x4004ba40) + [!provide] PROVIDE (r_lld_util_dle_set_cs_fields = 0x4004ba90) + [!provide] PROVIDE (r_lld_util_eff_tx_time_set = 0x4004bd88) + [!provide] PROVIDE (r_lld_util_elt_programmed = 0x4004bce0) + [!provide] PROVIDE (r_lld_util_flush_list = 0x4004bbd8) + [!provide] PROVIDE (r_lld_util_freq2chnl = 0x4004b9e4) + [!provide] PROVIDE (r_lld_util_get_bd_address = 0x4004b8ac) + [!provide] PROVIDE (r_lld_util_get_local_offset = 0x4004ba10) + [!provide] PROVIDE (r_lld_util_get_peer_offset = 0x4004ba24) + [!provide] PROVIDE (r_lld_util_get_tx_pkt_cnt = 0x4004bd80) + [!provide] PROVIDE (r_lld_util_instant_get = 0x4004b890) + [!provide] PROVIDE (r_lld_util_instant_ongoing = 0x4004bbfc) + [!provide] PROVIDE (r_lld_util_priority_set = 0x4004bd10) + [!provide] PROVIDE (r_lld_util_priority_update = 0x4004bd78) + [!provide] PROVIDE (r_lld_util_ral_force_rpa_renew = 0x4004b980) + [!provide] PROVIDE (r_lld_util_set_bd_address = 0x4004b8f8) + [!provide] PROVIDE (r_lld_wlcoex_set = 0x4004bd98) + [!provide] PROVIDE (r_llm_ble_ready = 0x4004cc34) + [!provide] PROVIDE (r_llm_common_cmd_complete_send = 0x4004d288) + [!provide] PROVIDE (r_llm_common_cmd_status_send = 0x4004d2b4) + [!provide] PROVIDE (r_llm_con_req_ind = 0x4004cc54) + [!provide] PROVIDE (r_llm_con_req_tx_cfm = 0x4004d158) + [!provide] PROVIDE (r_llm_create_con = 0x4004de78) + [!provide] PROVIDE (r_llm_encryption_done = 0x4004dff8) + [!provide] PROVIDE (r_llm_encryption_start = 0x4004e128) + [!provide] PROVIDE (r_llm_end_evt_defer = 0x4004eb6c) + [!provide] PROVIDE (r_llm_init = 0x4004c9f8) + [!provide] PROVIDE (r_llm_le_adv_report_ind = 0x4004cdf4) + [!provide] PROVIDE (r_llm_pdu_defer = 0x4004ec48) + [!provide] PROVIDE (r_llm_ral_clear = 0x4004e1fc) + [!provide] PROVIDE (r_llm_ral_dev_add = 0x4004e23c) + [!provide] PROVIDE (r_llm_ral_dev_rm = 0x4004e3bc) + [!provide] PROVIDE (r_llm_ral_get_rpa = 0x4004e400) + [!provide] PROVIDE (r_llm_ral_set_timeout = 0x4004e4a0) + [!provide] PROVIDE (r_llm_ral_update = 0x4004e4f8) + [!provide] PROVIDE (r_llm_set_adv_data = 0x4004d960) + [!provide] PROVIDE (r_llm_set_adv_en = 0x4004d7ec) + [!provide] PROVIDE (r_llm_set_adv_param = 0x4004d5f4) + [!provide] PROVIDE (r_llm_set_scan_en = 0x4004db64) + [!provide] PROVIDE (r_llm_set_scan_param = 0x4004dac8) + [!provide] PROVIDE (r_llm_set_scan_rsp_data = 0x4004da14) + [!provide] PROVIDE (r_llm_test_mode_start_rx = 0x4004d534) + [!provide] PROVIDE (r_llm_test_mode_start_tx = 0x4004d2fc) + [!provide] PROVIDE (r_llm_util_adv_data_update = 0x4004e8fc) + [!provide] PROVIDE (r_llm_util_apply_bd_addr = 0x4004e868) + [!provide] PROVIDE (r_llm_util_bd_addr_in_ral = 0x4004eb08) + [!provide] PROVIDE (r_llm_util_bd_addr_in_wl = 0x4004e788) + [!provide] PROVIDE (r_llm_util_bd_addr_wl_position = 0x4004e720) + [!provide] PROVIDE (r_llm_util_bl_add = 0x4004e9ac) + [!provide] PROVIDE (r_llm_util_bl_check = 0x4004e930) + [!provide] PROVIDE (r_llm_util_bl_rem = 0x4004ea70) + [!provide] PROVIDE (r_llm_util_check_address_validity = 0x4004e7e4) + [!provide] PROVIDE (r_llm_util_check_evt_mask = 0x4004e8b0) + [!provide] PROVIDE (r_llm_util_check_map_validity = 0x4004e800) + [!provide] PROVIDE (r_llm_util_get_channel_map = 0x4004e8d4) + [!provide] PROVIDE (r_llm_util_get_supp_features = 0x4004e8e8) + [!provide] PROVIDE (r_llm_util_set_public_addr = 0x4004e89c) + [!provide] PROVIDE (r_llm_wl_clr = 0x4004dc54) + [!provide] PROVIDE (r_llm_wl_dev_add = 0x4004dcc0) + [!provide] PROVIDE (r_llm_wl_dev_add_hdl = 0x4004dd38) + [!provide] PROVIDE (r_llm_wl_dev_rem = 0x4004dcfc) + [!provide] PROVIDE (r_llm_wl_dev_rem_hdl = 0x4004dde0) + [!provide] PROVIDE (r_lm_acl_disc = 0x4004f148) + [!provide] PROVIDE (r_LM_AddSniff = 0x40022d20) + [!provide] PROVIDE (r_lm_add_sync = 0x40051358) + [!provide] PROVIDE (r_lm_afh_activate_timer = 0x4004f444) + [!provide] PROVIDE (r_lm_afh_ch_ass_en_get = 0x4004f3f8) + [!provide] PROVIDE (r_lm_afh_host_ch_class_get = 0x4004f410) + [!provide] PROVIDE (r_lm_afh_master_ch_map_get = 0x4004f43c) + [!provide] PROVIDE (r_lm_afh_peer_ch_class_set = 0x4004f418) + [!provide] PROVIDE (r_lm_check_active_sync = 0x40051334) + [!provide] PROVIDE (r_LM_CheckEdrFeatureRequest = 0x4002f90c) + [!provide] PROVIDE (r_LM_CheckSwitchInstant = 0x4002f8c0) + [!provide] PROVIDE (r_lm_check_sync_hl_rsp = 0x4005169c) + [!provide] PROVIDE (r_lm_clk_adj_ack_pending_clear = 0x4004f514) + [!provide] PROVIDE (r_lm_clk_adj_instant_pending_set = 0x4004f4d8) + [!provide] PROVIDE (r_LM_ComputePacketType = 0x4002f554) + [!provide] PROVIDE (r_LM_ComputeSniffSubRate = 0x400233ac) + [!provide] PROVIDE (r_lm_debug_key_compare_192 = 0x4004f3a8) + [!provide] PROVIDE (r_lm_debug_key_compare_256 = 0x4004f3d0) + [!provide] PROVIDE (r_lm_dhkey_calc_init = 0x40013234) + [!provide] PROVIDE (r_lm_dhkey_compare = 0x400132d8) + [!provide] PROVIDE (r_lm_dut_mode_en_get = 0x4004f3ec) + [!provide] PROVIDE (r_LM_ExtractMaxEncKeySize = 0x4001aca4) + [!provide] PROVIDE (r_lm_f1 = 0x40012bb8) + [!provide] PROVIDE (r_lm_f2 = 0x40012cfc) + [!provide] PROVIDE (r_lm_f3 = 0x40013050) + [!provide] PROVIDE (r_lm_g = 0x40012f90) + [!provide] PROVIDE (r_LM_GetAFHSwitchInstant = 0x4002f86c) + [!provide] PROVIDE (r_lm_get_auth_en = 0x4004f1ac) + [!provide] PROVIDE (r_lm_get_common_pkt_types = 0x4002fa1c) + [!provide] PROVIDE (r_LM_GetConnectionAcceptTimeout = 0x4004f1f4) + [!provide] PROVIDE (r_LM_GetFeature = 0x4002f924) + [!provide] PROVIDE (r_LM_GetLinkTimeout = 0x400233ec) + [!provide] PROVIDE (r_LM_GetLocalNameSeg = 0x4004f200) + [!provide] PROVIDE (r_lm_get_loopback_mode = 0x4004f248) + [!provide] PROVIDE (r_LM_GetMasterEncKeySize = 0x4001b29c) + [!provide] PROVIDE (r_LM_GetMasterEncRand = 0x4001b288) + [!provide] PROVIDE (r_LM_GetMasterKey = 0x4001b260) + [!provide] PROVIDE (r_LM_GetMasterKeyRand = 0x4001b274) + [!provide] PROVIDE (r_lm_get_min_sync_intv = 0x400517a8) + [!provide] PROVIDE (r_lm_get_nb_acl = 0x4004ef9c) + [!provide] PROVIDE (r_lm_get_nb_sync_link = 0x4005179c) + [!provide] PROVIDE (r_lm_get_nonce = 0x400131c4) + [!provide] PROVIDE (r_lm_get_oob_local_commit = 0x4004f374) + [!provide] PROVIDE (r_lm_get_oob_local_data_192 = 0x4004f2d4) + [!provide] PROVIDE (r_lm_get_oob_local_data_256 = 0x4004f318) + [!provide] PROVIDE (r_LM_GetPINType = 0x4004f1e8) + [!provide] PROVIDE (r_lm_get_priv_key_192 = 0x4004f278) + [!provide] PROVIDE (r_lm_get_priv_key_256 = 0x4004f2b8) + [!provide] PROVIDE (r_lm_get_pub_key_192 = 0x4004f258) + [!provide] PROVIDE (r_lm_get_pub_key_256 = 0x4004f298) + [!provide] PROVIDE (r_LM_GetQoSParam = 0x4002f6e0) + [!provide] PROVIDE (r_lm_get_sec_con_host_supp = 0x4004f1d4) + [!provide] PROVIDE (r_LM_GetSniffSubratingParam = 0x4002325c) + [!provide] PROVIDE (r_lm_get_sp_en = 0x4004f1c0) + [!provide] PROVIDE (r_LM_GetSwitchInstant = 0x4002f7f8) + [!provide] PROVIDE (r_lm_get_synchdl = 0x4005175c) + [!provide] PROVIDE (r_lm_get_sync_param = 0x400503b4) + [!provide] PROVIDE (r_lm_init = 0x4004ed34) + [!provide] PROVIDE (r_lm_init_sync = 0x400512d8) + [!provide] PROVIDE (r_lm_is_acl_con = 0x4004f47c) + [!provide] PROVIDE (r_lm_is_acl_con_role = 0x4004f49c) + [!provide] PROVIDE (r_lm_is_clk_adj_ack_pending = 0x4004f4e8) + [!provide] PROVIDE (r_lm_is_clk_adj_instant_pending = 0x4004f4c8) + [!provide] PROVIDE (r_lm_local_ext_fr_configured = 0x4004f540) + [!provide] PROVIDE (r_lm_look_for_stored_link_key = 0x4002f948) + [!provide] PROVIDE (r_lm_look_for_sync = 0x40051774) + [!provide] PROVIDE (r_lm_lt_addr_alloc = 0x4004ef1c) + [!provide] PROVIDE (r_lm_lt_addr_free = 0x4004ef74) + [!provide] PROVIDE (r_lm_lt_addr_reserve = 0x4004ef48) + [!provide] PROVIDE (r_LM_MakeCof = 0x4002f84c) + [!provide] PROVIDE (r_LM_MakeRandVec = 0x400112d8) + [!provide] PROVIDE (r_lm_master_clk_adj_req_handler = 0x40054180) + [!provide] PROVIDE (r_LM_MaxSlot = 0x4002f694) + [!provide] PROVIDE (r_lm_modif_sync = 0x40051578) + [!provide] PROVIDE (r_lm_n_is_zero = 0x40012170) + [!provide] PROVIDE (r_lm_num_clk_adj_ack_pending_set = 0x4004f500) + [!provide] PROVIDE (r_lm_oob_f1 = 0x40012e54) + [!provide] PROVIDE (r_lm_pca_sscan_link_get = 0x4004f560) + [!provide] PROVIDE (r_lm_pca_sscan_link_set = 0x4004f550) + [!provide] PROVIDE (nvds_null_read = 0x400542a0) + [!provide] PROVIDE (nvds_null_write = 0x400542a8) + [!provide] PROVIDE (nvds_null_erase = 0x400542b0) + [!provide] PROVIDE (nvds_read = 0x400542c4) + [!provide] PROVIDE (nvds_write = 0x400542fc) + [!provide] PROVIDE (nvds_erase = 0x40054334) + [!provide] PROVIDE (nvds_init_memory = 0x40054358) + [!provide] PROVIDE (r_lmp_pack = 0x4001135c) + [!provide] PROVIDE (r_lmp_unpack = 0x4001149c) + [!provide] PROVIDE (r_lm_read_features = 0x4004f0d8) + [!provide] PROVIDE (r_LM_RemoveSniff = 0x40023124) + [!provide] PROVIDE (r_LM_RemoveSniffSubrating = 0x400233c4) + [!provide] PROVIDE (r_lm_remove_sync = 0x400517c8) + [!provide] PROVIDE (r_lm_reset_sync = 0x40051304) + [!provide] PROVIDE (r_lm_role_switch_finished = 0x4004f028) + [!provide] PROVIDE (r_lm_role_switch_start = 0x4004efe0) + [!provide] PROVIDE (r_lm_sco_nego_end = 0x40051828) + [!provide] PROVIDE (r_LM_SniffSubrateNegoRequired = 0x40023334) + [!provide] PROVIDE (r_LM_SniffSubratingHlReq = 0x40023154) + [!provide] PROVIDE (r_LM_SniffSubratingPeerReq = 0x400231dc) + [!provide] PROVIDE (r_lm_sp_debug_mode_get = 0x4004f398) + [!provide] PROVIDE (r_lm_sp_n192_convert_wnaf = 0x400123c0) + [!provide] PROVIDE (r_lm_sp_n_one = 0x400123a4) + [!provide] PROVIDE (r_lm_sp_p192_add = 0x40012828) + [!provide] PROVIDE (r_lm_sp_p192_dbl = 0x4001268c) + [!provide] PROVIDE (r_lm_sp_p192_invert = 0x40012b6c) + [!provide] PROVIDE (r_lm_sp_p192_point_jacobian_to_affine = 0x40012468) + [!provide] PROVIDE (r_lm_sp_p192_points_jacobian_to_affine = 0x400124e4) + [!provide] PROVIDE (r_lm_sp_p192_point_to_inf = 0x40012458) + [!provide] PROVIDE (r_lm_sp_pre_compute_points = 0x40012640) + [!provide] PROVIDE (r_lm_sp_sha256_calculate = 0x400121a0) + [!provide] PROVIDE (r_LM_SuppressAclPacket = 0x4002f658) + [!provide] PROVIDE (r_lm_sync_flow_ctrl_en_get = 0x4004f404) + [!provide] PROVIDE (r_LM_UpdateAclEdrPacketType = 0x4002f5d8) + [!provide] PROVIDE (r_LM_UpdateAclPacketType = 0x4002f584) + [!provide] PROVIDE (r_modules_funcs = 0x3ffafd6c) + [!provide] PROVIDE (r_modules_funcs_p = 0x3ffafd68) + [!provide] PROVIDE (r_nvds_del = 0x400544c4) + [!provide] PROVIDE (r_nvds_get = 0x40054488) + [!provide] PROVIDE (r_nvds_init = 0x40054410) + [!provide] PROVIDE (r_nvds_lock = 0x400544fc) + [!provide] PROVIDE (r_nvds_put = 0x40054534) + [!provide] PROVIDE (rom_abs_temp = 0x400054f0) + [!provide] PROVIDE (rom_bb_bss_bw_40_en = 0x4000401c) + [!provide] PROVIDE (rom_bb_bss_cbw40_dig = 0x40003bac) + [!provide] PROVIDE (rom_bb_rx_ht20_cen_bcov_en = 0x40003734) + [!provide] PROVIDE (rom_bb_tx_ht20_cen = 0x40003760) + [!provide] PROVIDE (rom_bb_wdg_test_en = 0x40003b70) + [!provide] PROVIDE (rom_cbw2040_cfg = 0x400040b0) + [!provide] PROVIDE (rom_check_noise_floor = 0x40003c78) + [!provide] PROVIDE (rom_chip_i2c_readReg = 0x40004110) + [!provide] PROVIDE (rom_chip_i2c_writeReg = 0x40004168) + [!provide] PROVIDE (rom_chip_v7_bt_init = 0x40004d8c) + [!provide] PROVIDE (rom_chip_v7_rx_init = 0x40004cec) + [!provide] PROVIDE (rom_chip_v7_rx_rifs_en = 0x40003d90) + [!provide] PROVIDE (rom_chip_v7_tx_init = 0x40004d18) + [!provide] PROVIDE (rom_clk_force_on_vit = 0x40003710) + [!provide] PROVIDE (rom_correct_rf_ana_gain = 0x400062a8) + [!provide] PROVIDE (rom_dc_iq_est = 0x400055c8) + [!provide] PROVIDE (rom_disable_agc = 0x40002fa4) + [!provide] PROVIDE (rom_enable_agc = 0x40002fcc) + [!provide] PROVIDE (rom_en_pwdet = 0x4000506c) + [!provide] PROVIDE (rom_gen_rx_gain_table = 0x40003e3c) + [!provide] PROVIDE (rom_get_data_sat = 0x4000312c) + [!provide] PROVIDE (rom_get_fm_sar_dout = 0x40005204) + [!provide] PROVIDE (rom_get_power_db = 0x40005fc8) + [!provide] PROVIDE (rom_get_pwctrl_correct = 0x400065d4) + [!provide] PROVIDE (rom_get_rfcal_rxiq_data = 0x40005bbc) + [!provide] PROVIDE (rom_get_rf_gain_qdb = 0x40006290) + [!provide] PROVIDE (rom_get_sar_dout = 0x40006564) + [!provide] PROVIDE (rom_i2c_readReg = 0x40004148) + 0x400041c0 PROVIDE (rom_i2c_readReg_Mask = 0x400041c0) + 0x400041a4 PROVIDE (rom_i2c_writeReg = 0x400041a4) + 0x400041fc PROVIDE (rom_i2c_writeReg_Mask = 0x400041fc) + [!provide] PROVIDE (rom_index_to_txbbgain = 0x40004df8) + [!provide] PROVIDE (rom_iq_est_disable = 0x40005590) + [!provide] PROVIDE (rom_iq_est_enable = 0x40005514) + [!provide] PROVIDE (rom_linear_to_db = 0x40005f64) + [!provide] PROVIDE (rom_loopback_mode_en = 0x400030f8) + [!provide] PROVIDE (rom_meas_tone_pwr_db = 0x40006004) + [!provide] PROVIDE (rom_mhz2ieee = 0x4000404c) + [!provide] PROVIDE (rom_noise_floor_auto_set = 0x40003bdc) + [!provide] PROVIDE (rom_pbus_debugmode = 0x40004458) + [!provide] PROVIDE (rom_pbus_force_mode = 0x40004270) + [!provide] PROVIDE (rom_pbus_force_test = 0x400043c0) + [!provide] PROVIDE (rom_pbus_rd = 0x40004414) + [!provide] PROVIDE (rom_pbus_rd_addr = 0x40004334) + [!provide] PROVIDE (rom_pbus_rd_shift = 0x40004374) + [!provide] PROVIDE (rom_pbus_rx_dco_cal = 0x40005620) + [!provide] PROVIDE (rom_pbus_set_dco = 0x40004638) + [!provide] PROVIDE (rom_pbus_set_rxgain = 0x40004480) + [!provide] PROVIDE (rom_pbus_workmode = 0x4000446c) + [!provide] PROVIDE (rom_pbus_xpd_rx_off = 0x40004508) + [!provide] PROVIDE (rom_pbus_xpd_rx_on = 0x4000453c) + [!provide] PROVIDE (rom_pbus_xpd_tx_off = 0x40004590) + [!provide] PROVIDE (rom_pbus_xpd_tx_on = 0x400045e0) + [!provide] PROVIDE (rom_phy_disable_agc = 0x40002f6c) + [!provide] PROVIDE (rom_phy_disable_cca = 0x40003000) + [!provide] PROVIDE (rom_phy_enable_agc = 0x40002f88) + [!provide] PROVIDE (rom_phy_enable_cca = 0x4000302c) + [!provide] PROVIDE (rom_phy_freq_correct = 0x40004b44) + [!provide] PROVIDE (rom_phyFuns = 0x3ffae0c0) + [!provide] PROVIDE (rom_phy_get_noisefloor = 0x40003c2c) + [!provide] PROVIDE (rom_phy_get_vdd33 = 0x4000642c) + [!provide] PROVIDE (rom_pow_usr = 0x40003044) + [!provide] PROVIDE (rom_read_sar_dout = 0x400051c0) + [!provide] PROVIDE (rom_restart_cal = 0x400046e0) + [!provide] PROVIDE (rom_rfcal_pwrctrl = 0x40006058) + [!provide] PROVIDE (rom_rfcal_rxiq = 0x40005b4c) + [!provide] PROVIDE (rom_rfcal_txcap = 0x40005dec) + [!provide] PROVIDE (rom_rfpll_reset = 0x40004680) + [!provide] PROVIDE (rom_rfpll_set_freq = 0x400047f8) + [!provide] PROVIDE (rom_rtc_mem_backup = 0x40003db4) + [!provide] PROVIDE (rom_rtc_mem_recovery = 0x40003df4) + [!provide] PROVIDE (rom_rx_gain_force = 0x4000351c) + [!provide] PROVIDE (rom_rxiq_cover_mg_mp = 0x40005a68) + [!provide] PROVIDE (rom_rxiq_get_mis = 0x400058e4) + [!provide] PROVIDE (rom_rxiq_set_reg = 0x40005a00) + [!provide] PROVIDE (rom_set_cal_rxdc = 0x400030b8) + [!provide] PROVIDE (rom_set_chan_cal_interp = 0x40005ce0) + [!provide] PROVIDE (rom_set_channel_freq = 0x40004880) + [!provide] PROVIDE (rom_set_loopback_gain = 0x40003060) + [!provide] PROVIDE (rom_set_noise_floor = 0x40003d48) + [!provide] PROVIDE (rom_set_pbus_mem = 0x400031a4) + [!provide] PROVIDE (rom_set_rf_freq_offset = 0x40004ca8) + [!provide] PROVIDE (rom_set_rxclk_en = 0x40003594) + [!provide] PROVIDE (rom_set_txcap_reg = 0x40005d50) + [!provide] PROVIDE (rom_set_txclk_en = 0x40003564) + [!provide] PROVIDE (rom_spur_coef_cfg = 0x40003ac8) + [!provide] PROVIDE (rom_spur_reg_write_one_tone = 0x400037f0) + [!provide] PROVIDE (rom_start_tx_tone = 0x400036b4) + [!provide] PROVIDE (rom_start_tx_tone_step = 0x400035d0) + [!provide] PROVIDE (rom_stop_tx_tone = 0x40003f98) + [!provide] PROVIDE (_rom_store = 0x4000d66c) + [!provide] PROVIDE (_rom_store_table = 0x4000d4f8) + [!provide] PROVIDE (rom_target_power_add_backoff = 0x40006268) + [!provide] PROVIDE (rom_tx_atten_set_interp = 0x400061cc) + [!provide] PROVIDE (rom_txbbgain_to_index = 0x40004dc0) + [!provide] PROVIDE (rom_txcal_work_mode = 0x4000510c) + [!provide] PROVIDE (rom_txdc_cal_init = 0x40004e10) + [!provide] PROVIDE (rom_txdc_cal_v70 = 0x40004ea4) + [!provide] PROVIDE (rom_txiq_cover = 0x4000538c) + [!provide] PROVIDE (rom_txiq_get_mis_pwr = 0x400052dc) + [!provide] PROVIDE (rom_txiq_set_reg = 0x40005154) + [!provide] PROVIDE (rom_tx_pwctrl_bg_init = 0x4000662c) + [!provide] PROVIDE (rom_txtone_linear_pwr = 0x40005290) + [!provide] PROVIDE (rom_wait_rfpll_cal_end = 0x400047a8) + [!provide] PROVIDE (rom_write_gain_mem = 0x4000348c) + [!provide] PROVIDE (rom_write_rfpll_sdm = 0x40004740) + [!provide] PROVIDE (roundup2 = 0x4000ab7c) + [!provide] PROVIDE (r_plf_funcs_p = 0x3ffb8360) + [!provide] PROVIDE (r_rf_rw_bt_init = 0x40054868) + [!provide] PROVIDE (r_rf_rw_init = 0x40054b0c) + [!provide] PROVIDE (r_rf_rw_le_init = 0x400549d0) + [!provide] PROVIDE (r_rwble_activity_ongoing_check = 0x40054d8c) + [!provide] PROVIDE (r_rwble_init = 0x40054bf4) + [!provide] PROVIDE (r_rwble_isr = 0x40054e08) + [!provide] PROVIDE (r_rwble_reset = 0x40054ce8) + [!provide] PROVIDE (r_rwble_sleep_check = 0x40054d78) + [!provide] PROVIDE (r_rwble_version = 0x40054dac) + [!provide] PROVIDE (r_rwbt_init = 0x40055160) + [!provide] PROVIDE (r_rwbt_isr = 0x40055248) + [!provide] PROVIDE (r_rwbt_reset = 0x400551bc) + [!provide] PROVIDE (r_rwbt_sleep_check = 0x4005577c) + [!provide] PROVIDE (r_rwbt_sleep_enter = 0x400557a4) + [!provide] PROVIDE (r_rwbt_sleep_wakeup = 0x400557fc) + [!provide] PROVIDE (r_rwbt_sleep_wakeup_end = 0x400558cc) + [!provide] PROVIDE (r_rwbt_version = 0x4005520c) + [!provide] PROVIDE (r_rwip_assert_err = 0x40055f88) + [!provide] PROVIDE (r_rwip_check_wakeup_boundary = 0x400558fc) + [!provide] PROVIDE (r_rwip_ext_wakeup_enable = 0x40055f3c) + [!provide] PROVIDE (r_rwip_init = 0x4005595c) + [!provide] PROVIDE (r_rwip_pca_clock_dragging_only = 0x40055f48) + [!provide] PROVIDE (r_rwip_prevent_sleep_clear = 0x40055ec8) + [!provide] PROVIDE (r_rwip_prevent_sleep_set = 0x40055e64) + [!provide] PROVIDE (r_rwip_reset = 0x40055ab8) + [!provide] PROVIDE (r_rwip_schedule = 0x40055b38) + [!provide] PROVIDE (r_rwip_sleep = 0x40055b5c) + [!provide] PROVIDE (r_rwip_sleep_enable = 0x40055f30) + [!provide] PROVIDE (r_rwip_version = 0x40055b20) + [!provide] PROVIDE (r_rwip_wakeup = 0x40055dc4) + [!provide] PROVIDE (r_rwip_wakeup_delay_set = 0x40055e4c) + [!provide] PROVIDE (r_rwip_wakeup_end = 0x40055e18) + [!provide] PROVIDE (r_rwip_wlcoex_set = 0x40055f60) + [!provide] PROVIDE (r_SHA_256 = 0x40013a90) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (rwip_rf = 0x3ffbdb28) + [!provide] PROVIDE (rwip_rf_p_get = 0x400558f4) + [!provide] PROVIDE (r_XorKey = 0x400112c0) + [!provide] PROVIDE (sha_blk_bits = 0x3ff99290) + [!provide] PROVIDE (sha_blk_bits_bytes = 0x3ff99288) + [!provide] PROVIDE (sha_blk_hash_bytes = 0x3ff9928c) + [!provide] PROVIDE (sig_matrix = 0x3ffae293) + [!provide] PROVIDE (sip_after_tx_complete = 0x4000b358) + [!provide] PROVIDE (sip_alloc_to_host_evt = 0x4000ab9c) + [!provide] PROVIDE (sip_get_ptr = 0x4000b34c) + [!provide] PROVIDE (sip_get_state = 0x4000ae2c) + [!provide] PROVIDE (sip_init_attach = 0x4000ae58) + [!provide] PROVIDE (sip_install_rx_ctrl_cb = 0x4000ae10) + [!provide] PROVIDE (sip_install_rx_data_cb = 0x4000ae20) + [!provide] PROVIDE (sip_is_active = 0x4000b3c0) + [!provide] PROVIDE (sip_post_init = 0x4000aed8) + [!provide] PROVIDE (sip_reclaim_from_host_cmd = 0x4000adbc) + [!provide] PROVIDE (sip_reclaim_tx_data_pkt = 0x4000ad5c) + [!provide] PROVIDE (sip_send = 0x4000af54) + [!provide] PROVIDE (sip_to_host_chain_append = 0x4000aef8) + [!provide] PROVIDE (sip_to_host_evt_send_done = 0x4000ac04) + [!provide] PROVIDE (slc_add_credits = 0x4000baf4) + [!provide] PROVIDE (slc_enable = 0x4000b64c) + [!provide] PROVIDE (slc_from_host_chain_fetch = 0x4000b7e8) + [!provide] PROVIDE (slc_from_host_chain_recycle = 0x4000bb10) + [!provide] PROVIDE (slc_has_pkt_to_host = 0x4000b5fc) + [!provide] PROVIDE (slc_init_attach = 0x4000b918) + [!provide] PROVIDE (slc_init_credit = 0x4000badc) + [!provide] PROVIDE (slc_reattach = 0x4000b62c) + [!provide] PROVIDE (slc_send_to_host_chain = 0x4000b6a0) + [!provide] PROVIDE (slc_set_host_io_max_window = 0x4000b89c) + [!provide] PROVIDE (slc_to_host_chain_recycle = 0x4000b758) + [!provide] PROVIDE (specialModP256 = 0x4001600c) + [!provide] PROVIDE (__stack = 0x3ffe3f20) + [!provide] PROVIDE (__stack_app = 0x3ffe7e30) + [!provide] PROVIDE (_stack_sentry = 0x3ffe1320) + [!provide] PROVIDE (_stack_sentry_app = 0x3ffe5230) + [!provide] PROVIDE (_start = 0x40000704) + [!provide] PROVIDE (start_tb_console = 0x4005a980) + [!provide] PROVIDE (_stat_r = 0x4000bcb4) + [!provide] PROVIDE (_stext = 0x40000560) + [!provide] PROVIDE (SubtractBigHex256 = 0x40015bcc) + [!provide] PROVIDE (SubtractBigHexMod256 = 0x40015e8c) + [!provide] PROVIDE (SubtractBigHexUint32_256 = 0x40015f8c) + [!provide] PROVIDE (SubtractFromSelfBigHex256 = 0x40015c20) + [!provide] PROVIDE (SubtractFromSelfBigHexSign256 = 0x40015dc8) + [!provide] PROVIDE (sw_to_hw = 0x3ffb8d40) + [!provide] PROVIDE (syscall_table_ptr_app = 0x3ffae020) + [!provide] PROVIDE (syscall_table_ptr_pro = 0x3ffae024) + [!provide] PROVIDE (tdefl_compress = 0x400600bc) + [!provide] PROVIDE (tdefl_compress_buffer = 0x400607f4) + [!provide] PROVIDE (tdefl_compress_mem_to_mem = 0x40060900) + [!provide] PROVIDE (tdefl_compress_mem_to_output = 0x400608e0) + [!provide] PROVIDE (tdefl_get_adler32 = 0x400608d8) + [!provide] PROVIDE (tdefl_get_prev_return_status = 0x400608d0) + [!provide] PROVIDE (tdefl_init = 0x40060810) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory = 0x4006091c) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory_ex = 0x40060910) + [!provide] PROVIDE (tinfl_decompress = 0x4005ef30) + [!provide] PROVIDE (tinfl_decompress_mem_to_callback = 0x40060090) + [!provide] PROVIDE (tinfl_decompress_mem_to_mem = 0x40060050) + [!provide] PROVIDE (UartDev = 0x3ffe019c) + [!provide] PROVIDE (user_code_start = 0x3ffe0400) + [!provide] PROVIDE (veryBigHexP256 = 0x3ff9736c) + [!provide] PROVIDE (xthal_bcopy = 0x4000c098) + [!provide] PROVIDE (xthal_copy123 = 0x4000c124) + [!provide] PROVIDE (xthal_get_ccompare = 0x4000c078) + [!provide] PROVIDE (xthal_get_ccount = 0x4000c050) + [!provide] PROVIDE (xthal_get_interrupt = 0x4000c1e4) + [!provide] PROVIDE (xthal_get_intread = 0x4000c1e4) + [!provide] PROVIDE (Xthal_intlevel = 0x3ff9c2b4) + [!provide] PROVIDE (xthal_memcpy = 0x4000c0bc) + [!provide] PROVIDE (xthal_set_ccompare = 0x4000c058) + [!provide] PROVIDE (xthal_set_intclear = 0x4000c1ec) + [!provide] PROVIDE (_xtos_set_intlevel = 0x4000bfdc) + 0x3ffe01e0 PROVIDE (g_ticks_per_us_pro = 0x3ffe01e0) + 0x3ffe40f0 PROVIDE (g_ticks_per_us_app = 0x3ffe40f0) + 0x40063238 PROVIDE (esp_rom_spiflash_config_param = 0x40063238) + 0x400621b0 PROVIDE (esp_rom_spiflash_read_user_cmd = 0x400621b0) + 0x40062e60 PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40062e60) + 0x40062df4 PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40062df4) + 0x40062e1c PROVIDE (esp_rom_spiflash_prepare_encrypted_data = 0x40062e1c) + [!provide] PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40061ddc) + [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40062a6c) + 0x40062bc8 PROVIDE (esp_rom_spiflash_config_clk = 0x40062bc8) + 0x3ffae270 PROVIDE (g_rom_spiflash_chip = 0x3ffae270) + [!provide] PROVIDE (SPI_write_enable = 0x40062320) + [!provide] PROVIDE (hci_le_rd_rem_used_feats_cmd_handler = 0x400417b4) + [!provide] PROVIDE (llcp_length_req_handler = 0x40043808) + [!provide] PROVIDE (llcp_unknown_rsp_handler = 0x40043ba8) + [!provide] PROVIDE (llcp_channel_map_req_handler = 0x4004291c) + [!provide] PROVIDE (llcp_con_up_req_handler = 0x400426f0) + [!provide] PROVIDE (FilePacketSendDeflatedReqMsgProc = 0x40008b24) + [!provide] PROVIDE (FilePacketSendReqMsgProc = 0x40008860) + [!provide] PROVIDE (FlashDwnLdDeflatedStartMsgProc = 0x40008ad8) + [!provide] PROVIDE (FlashDwnLdParamCfgMsgProc = 0x4000891c) + [!provide] PROVIDE (FlashDwnLdStartMsgProc = 0x40008820) + [!provide] PROVIDE (FlashDwnLdStopDeflatedReqMsgProc = 0x40008c18) + [!provide] PROVIDE (FlashDwnLdStopReqMsgProc = 0x400088ec) + [!provide] PROVIDE (MemDwnLdStartMsgProc = 0x40008948) + [!provide] PROVIDE (MemDwnLdStopReqMsgProc = 0x400089dc) + [!provide] PROVIDE (MemPacketSendReqMsgProc = 0x40008978) + [!provide] PROVIDE (uart_baudrate_detect = 0x40009034) + [!provide] PROVIDE (uart_buff_switch = 0x400093c0) + [!provide] PROVIDE (UartConnCheck = 0x40008738) + [!provide] PROVIDE (UartConnectProc = 0x40008a04) + [!provide] PROVIDE (UartDwnLdProc = 0x40008ce8) + [!provide] PROVIDE (UartRegReadProc = 0x40008a58) + [!provide] PROVIDE (UartRegWriteProc = 0x40008a14) + [!provide] PROVIDE (UartSetBaudProc = 0x40008aac) + [!provide] PROVIDE (UartSpiAttachProc = 0x40008a6c) + [!provide] PROVIDE (UartSpiReadProc = 0x40008a80) + [!provide] PROVIDE (VerifyFlashMd5Proc = 0x40008c44) + [!provide] PROVIDE (GetUartDevice = 0x40009598) + [!provide] PROVIDE (RcvMsg = 0x4000954c) + [!provide] PROVIDE (SendMsg = 0x40009384) + [!provide] PROVIDE (UartGetCmdLn = 0x40009564) + [!provide] PROVIDE (UartRxString = 0x400092fc) + [!provide] PROVIDE (Uart_Init = 0x40009120) + [!provide] PROVIDE (recv_packet = 0x40009424) + [!provide] PROVIDE (send_packet = 0x40009340) + [!provide] PROVIDE (uartAttach = 0x40008fd0) + [!provide] PROVIDE (uart_div_modify = 0x400090cc) + [!provide] PROVIDE (uart_rx_intr_handler = 0x40008f4c) + [!provide] PROVIDE (uart_rx_one_char = 0x400092d0) + [!provide] PROVIDE (uart_rx_one_char_block = 0x400092a4) + [!provide] PROVIDE (uart_rx_readbuff = 0x40009394) + 0x40009258 PROVIDE (uart_tx_flush = 0x40009258) + [!provide] PROVIDE (uart_tx_one_char = 0x40009200) + [!provide] PROVIDE (uart_tx_one_char2 = 0x4000922c) + [!provide] PROVIDE (uart_tx_switch = 0x40009028) + [!provide] PROVIDE (gpio_output_set = 0x40009b24) + [!provide] PROVIDE (gpio_output_set_high = 0x40009b5c) + [!provide] PROVIDE (gpio_input_get = 0x40009b88) + [!provide] PROVIDE (gpio_input_get_high = 0x40009b9c) + 0x40009edc PROVIDE (gpio_matrix_in = 0x40009edc) + 0x40009f0c PROVIDE (gpio_matrix_out = 0x40009f0c) + 0x40009fdc PROVIDE (gpio_pad_select_gpio = 0x40009fdc) + [!provide] PROVIDE (gpio_pad_set_drv = 0x4000a11c) + [!provide] PROVIDE (gpio_pad_pulldown = 0x4000a348) + 0x4000a22c PROVIDE (gpio_pad_pullup = 0x4000a22c) + [!provide] PROVIDE (gpio_pad_hold = 0x4000a734) + [!provide] PROVIDE (gpio_pad_unhold = 0x4000a484) + [!provide] PROVIDE (ets_aes_crypt = 0x4005c9b8) + [!provide] PROVIDE (ets_aes_disable = 0x4005c8f8) + [!provide] PROVIDE (ets_aes_enable = 0x4005c8cc) + [!provide] PROVIDE (ets_aes_set_endian = 0x4005c928) + [!provide] PROVIDE (ets_aes_setkey_dec = 0x4005c994) + [!provide] PROVIDE (ets_aes_setkey_enc = 0x4005c97c) + [!provide] PROVIDE (ets_bigint_disable = 0x4005c4e0) + [!provide] PROVIDE (ets_bigint_enable = 0x4005c498) + [!provide] PROVIDE (ets_bigint_mod_mult_getz = 0x4005c818) + [!provide] PROVIDE (ets_bigint_mod_mult_prepare = 0x4005c7b4) + [!provide] PROVIDE (ets_bigint_mod_power_getz = 0x4005c614) + [!provide] PROVIDE (ets_bigint_mod_power_prepare = 0x4005c54c) + [!provide] PROVIDE (ets_bigint_montgomery_mult_getz = 0x4005c7a4) + [!provide] PROVIDE (ets_bigint_montgomery_mult_prepare = 0x4005c6fc) + [!provide] PROVIDE (ets_bigint_mult_getz = 0x4005c6e8) + [!provide] PROVIDE (ets_bigint_mult_prepare = 0x4005c630) + [!provide] PROVIDE (ets_bigint_wait_finish = 0x4005c520) + [!provide] PROVIDE (ets_post = 0x4000673c) + [!provide] PROVIDE (ets_run = 0x400066bc) + [!provide] PROVIDE (ets_set_idle_cb = 0x40006674) + [!provide] PROVIDE (ets_task = 0x40006688) + [!provide] PROVIDE (ets_efuse_get_8M_clock = 0x40008710) + 0x40008658 PROVIDE (ets_efuse_get_spiconfig = 0x40008658) + [!provide] PROVIDE (ets_efuse_program_op = 0x40008628) + [!provide] PROVIDE (ets_efuse_read_op = 0x40008600) + [!provide] PROVIDE (ets_intr_lock = 0x400067b0) + [!provide] PROVIDE (ets_intr_unlock = 0x400067c4) + [!provide] PROVIDE (ets_isr_attach = 0x400067ec) + [!provide] PROVIDE (ets_waiti0 = 0x400067d8) + [!provide] PROVIDE (intr_matrix_set = 0x4000681c) + [!provide] PROVIDE (check_pos = 0x400068b8) + [!provide] PROVIDE (ets_set_appcpu_boot_addr = 0x4000689c) + [!provide] PROVIDE (ets_set_startup_callback = 0x4000688c) + [!provide] PROVIDE (ets_set_user_start = 0x4000687c) + [!provide] PROVIDE (ets_unpack_flash_code = 0x40007018) + [!provide] PROVIDE (ets_unpack_flash_code_legacy = 0x4000694c) + [!provide] PROVIDE (rom_main = 0x400076c4) + [!provide] PROVIDE (ets_write_char_uart = 0x40007cf8) + 0x40007d18 PROVIDE (ets_install_putc1 = 0x40007d18) + 0x40007d38 PROVIDE (ets_install_putc2 = 0x40007d38) + 0x40007d28 PROVIDE (ets_install_uart_printf = 0x40007d28) + 0x40007d54 PROVIDE (ets_printf = 0x40007d54) + [!provide] PROVIDE (rtc_boot_control = 0x4000821c) + 0x400081d4 PROVIDE (rtc_get_reset_reason = 0x400081d4) + [!provide] PROVIDE (rtc_get_wakeup_cause = 0x400081f4) + [!provide] PROVIDE (rtc_select_apb_bridge = 0x40008288) + [!provide] PROVIDE (set_rtc_memory_crc = 0x40008208) + 0x4000824c PROVIDE (software_reset = 0x4000824c) + [!provide] PROVIDE (software_reset_cpu = 0x40008264) + [!provide] PROVIDE (ets_secure_boot_check = 0x4005cb40) + [!provide] PROVIDE (ets_secure_boot_check_finish = 0x4005cc04) + [!provide] PROVIDE (ets_secure_boot_check_start = 0x4005cbcc) + [!provide] PROVIDE (ets_secure_boot_finish = 0x4005ca84) + [!provide] PROVIDE (ets_secure_boot_hash = 0x4005cad4) + [!provide] PROVIDE (ets_secure_boot_obtain = 0x4005cb14) + [!provide] PROVIDE (ets_secure_boot_rd_abstract = 0x4005cba8) + [!provide] PROVIDE (ets_secure_boot_rd_iv = 0x4005cb84) + [!provide] PROVIDE (ets_secure_boot_start = 0x4005ca34) + [!provide] PROVIDE (ets_sha_disable = 0x4005c0a8) + 0x4005c07c PROVIDE (ets_sha_enable = 0x4005c07c) + [!provide] PROVIDE (ets_sha_finish = 0x4005c104) + [!provide] PROVIDE (ets_sha_init = 0x4005c0d4) + [!provide] PROVIDE (ets_sha_update = 0x4005c2a0) + 0x40008534 PROVIDE (ets_delay_us = 0x40008534) + 0x4000855c PROVIDE (ets_get_cpu_frequency = 0x4000855c) + [!provide] PROVIDE (ets_get_detected_xtal_freq = 0x40008588) + [!provide] PROVIDE (ets_get_xtal_scale = 0x4000856c) + [!provide] PROVIDE (ets_update_cpu_frequency_rom = 0x40008550) + [!provide] PROVIDE (hci_tl_env = 0x3ffb8154) + [!provide] PROVIDE (ld_acl_env = 0x3ffb8258) + [!provide] PROVIDE (ea_env = 0x3ffb80ec) + [!provide] PROVIDE (lc_sco_data_path_config = 0x3ffb81f8) + [!provide] PROVIDE (lc_sco_env = 0x3ffb81fc) + [!provide] PROVIDE (ld_active_ch_map = 0x3ffb8334) + [!provide] PROVIDE (ld_bcst_acl_env = 0x3ffb8274) + [!provide] PROVIDE (ld_csb_rx_env = 0x3ffb8278) + [!provide] PROVIDE (ld_csb_tx_env = 0x3ffb827c) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_fm_env = 0x3ffb8284) + [!provide] PROVIDE (ld_inq_env = 0x3ffb82e4) + [!provide] PROVIDE (ld_iscan_env = 0x3ffb82e8) + [!provide] PROVIDE (ld_page_env = 0x3ffb82f0) + [!provide] PROVIDE (ld_pca_env = 0x3ffb82f4) + [!provide] PROVIDE (ld_pscan_env = 0x3ffb8308) + [!provide] PROVIDE (ld_sched_env = 0x3ffb830c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sco_env = 0x3ffb824c) + [!provide] PROVIDE (ld_sscan_env = 0x3ffb832c) + [!provide] PROVIDE (ld_strain_env = 0x3ffb8330) + [!provide] PROVIDE (LM_Sniff = 0x3ffb8230) + [!provide] PROVIDE (LM_SniffSubRate = 0x3ffb8214) + [!provide] PROVIDE (prbs_64bytes = 0x3ff98992) + [!provide] PROVIDE (nvds_env = 0x3ffb8364) + [!provide] PROVIDE (nvds_magic_number = 0x3ff9912a) + [!provide] PROVIDE (TASK_DESC_LLD = 0x3ff98b58) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_evt_canceled_cbk = 0x40033944) + [!provide] PROVIDE (ld_acl_evt_stop_cbk = 0x40033870) + [!provide] PROVIDE (ld_acl_evt_start_cbk = 0x40030ab0) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_rx_isr = 0x40033aa8) + [!provide] PROVIDE (lc_acl_disc_ind_handler = 0x4002f270) + [!provide] PROVIDE (lc_pca_sscan_start_req_handler = 0x40029b34) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (ld_pscan_em_init = 0x4003e5e8) + [!provide] PROVIDE (ld_acl_rsw_start = 0x40032e90) + [!provide] PROVIDE (ld_acl_sniff_enter = 0x40031244) + [!provide] PROVIDE (ld_acl_sniff_trans_sched = 0x40033734) + [!provide] PROVIDE (lc_pwr_decr_ind_handler = 0x4002859c) + [!provide] PROVIDE (lc_pwr_incr_ind_handler = 0x400284a8) + [!provide] PROVIDE (lc_pwr_max_ind_handler = 0x40028690) + [!provide] PROVIDE (lm_sync_conf = 0x3ffb8348) + [!provide] PROVIDE (lm_nb_sync_active = 0x3ffb8346) + [!provide] PROVIDE (lm_sync_nego = 0x3ffb8345) + [!provide] PROVIDE (lm_nego_cnt = 0x3ffb8344) + [!provide] PROVIDE (lm_nego_cntl = 0x3ffb8342) + [!provide] PROVIDE (lm_nego_max_cnt = 0x3ffb8343) + [!provide] PROVIDE (lm_nego_pkt_used = 0x3ffb8340) + 0x4005cfec PROVIDE (esp_rom_crc32_le = crc32_le) + [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) + [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) + [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) + [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) + [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) + 0x40009fdc PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) + 0x4000a22c PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) + [!provide] PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) + 0x40009edc PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) + 0x40009f0c PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x40008658 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + 0x40009258 PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + [!provide] PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_uart_switch_buffer = uart_buff_switch) + 0x4005da7c PROVIDE (esp_rom_md5_init = 0x4005da7c) + 0x4005da9c PROVIDE (esp_rom_md5_update = 0x4005da9c) + 0x4005db1c PROVIDE (esp_rom_md5_final = 0x4005db1c) + 0x4000824c PROVIDE (esp_rom_software_reset_system = software_reset) + [!provide] PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x40007d54 PROVIDE (esp_rom_printf = ets_printf) + 0x40008534 PROVIDE (esp_rom_delay_us = ets_delay_us) + 0x40007d28 PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x400081d4 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + [!provide] PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x4000855c PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_set_bp = esp_rom_spiflash_lock) + [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + [!provide] PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x400041c0 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x400041a4 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x400041fc PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x4006387c __absvdi2 = 0x4006387c + 0x40063868 __absvsi2 = 0x40063868 + 0x40002590 __adddf3 = 0x40002590 + 0x400020e8 __addsf3 = 0x400020e8 + 0x40002cbc __addvdi3 = 0x40002cbc + 0x40002c98 __addvsi3 = 0x40002c98 + 0x4000c818 __ashldi3 = 0x4000c818 + 0x4000c830 __ashrdi3 = 0x4000c830 + 0x40064b08 __bswapdi2 = 0x40064b08 + 0x40064ae0 __bswapsi2 = 0x40064ae0 + 0x40064b7c __clrsbdi2 = 0x40064b7c + 0x40064b64 __clrsbsi2 = 0x40064b64 + 0x4000ca50 __clzdi2 = 0x4000ca50 + 0x4000c7e8 __clzsi2 = 0x4000c7e8 + 0x40063820 __cmpdi2 = 0x40063820 + 0x4000ca64 __ctzdi2 = 0x4000ca64 + 0x4000c7f0 __ctzsi2 = 0x4000c7f0 + 0x400645a4 __divdc3 = 0x400645a4 + 0x40002954 __divdf3 = 0x40002954 + 0x4000ca84 __divdi3 = 0x4000ca84 + 0x4000c7b8 __divsi3 = 0x4000c7b8 + 0x400636a8 __eqdf2 = 0x400636a8 + 0x40063374 __eqsf2 = 0x40063374 + 0x40002c34 __extendsfdf2 = 0x40002c34 + 0x4000ca2c __ffsdi2 = 0x4000ca2c + 0x4000c804 __ffssi2 = 0x4000c804 + 0x40002ac4 __fixdfdi = 0x40002ac4 + 0x40002a78 __fixdfsi = 0x40002a78 + 0x4000244c __fixsfdi = 0x4000244c + 0x4000240c __fixsfsi = 0x4000240c + 0x40002b30 __fixunsdfsi = 0x40002b30 + 0x40002504 __fixunssfdi = 0x40002504 + 0x400024ac __fixunssfsi = 0x400024ac + 0x4000c988 __floatdidf = 0x4000c988 + 0x4000c8c0 __floatdisf = 0x4000c8c0 + 0x4000c944 __floatsidf = 0x4000c944 + 0x4000c870 __floatsisf = 0x4000c870 + 0x4000c978 __floatundidf = 0x4000c978 + 0x4000c8b0 __floatundisf = 0x4000c8b0 + 0x4000c938 __floatunsidf = 0x4000c938 + 0x4000c864 __floatunsisf = 0x4000c864 + 0x40064a70 __gcc_bcmp = 0x40064a70 + 0x40063768 __gedf2 = 0x40063768 + 0x4006340c __gesf2 = 0x4006340c + 0x400636dc __gtdf2 = 0x400636dc + 0x400633a0 __gtsf2 = 0x400633a0 + 0x40063704 __ledf2 = 0x40063704 + 0x400633c0 __lesf2 = 0x400633c0 + 0x4000c84c __lshrdi3 = 0x4000c84c + 0x40063790 __ltdf2 = 0x40063790 + 0x4006342c __ltsf2 = 0x4006342c + 0x4000cd4c __moddi3 = 0x4000cd4c + 0x4000c7c0 __modsi3 = 0x4000c7c0 + 0x40063c90 __muldc3 = 0x40063c90 + 0x4006358c __muldf3 = 0x4006358c + 0x4000c9fc __muldi3 = 0x4000c9fc + 0x400632c8 __mulsf3 = 0x400632c8 + 0x4000c7b0 __mulsi3 = 0x4000c7b0 + 0x40002d78 __mulvdi3 = 0x40002d78 + 0x40002d60 __mulvsi3 = 0x40002d60 + 0x400636a8 __nedf2 = 0x400636a8 + 0x400634a0 __negdf2 = 0x400634a0 + 0x4000ca14 __negdi2 = 0x4000ca14 + 0x400020c0 __negsf2 = 0x400020c0 + 0x40002e98 __negvdi2 = 0x40002e98 + 0x40002e78 __negvsi2 = 0x40002e78 + 0x40063374 __nesf2 = 0x40063374 + 0x3ff96544 __nsau_data = 0x3ff96544 + 0x40002f3c __paritysi2 = 0x40002f3c + 0x3ff96544 __popcount_tab = 0x3ff96544 + 0x40002ef8 __popcountdi2 = 0x40002ef8 + 0x40002ed0 __popcountsi2 = 0x40002ed0 + 0x400638e4 __powidf2 = 0x400638e4 + 0x400026e4 __subdf3 = 0x400026e4 + 0x400021d0 __subsf3 = 0x400021d0 + 0x40002d20 __subvdi3 = 0x40002d20 + 0x40002cf8 __subvsi3 = 0x40002cf8 + 0x40002b90 __truncdfsf2 = 0x40002b90 + 0x40063840 __ucmpdi2 = 0x40063840 + 0x40064bec __udiv_w_sdiv = 0x40064bec + 0x4000cff8 __udivdi3 = 0x4000cff8 + 0x40064bf4 __udivmoddi4 = 0x40064bf4 + 0x4000c7c8 __udivsi3 = 0x4000c7c8 + 0x4000d280 __umoddi3 = 0x4000d280 + 0x4000c7d0 __umodsi3 = 0x4000c7d0 + 0x4000c7d8 __umulsidi3 = 0x4000c7d8 + 0x400637f4 __unorddf2 = 0x400637f4 + 0x40063478 __unordsf2 = 0x40063478 + 0x40056340 abs = 0x40056340 + 0x40058ef0 __ascii_wctomb = 0x40058ef0 + 0x400566c4 atoi = 0x400566c4 + 0x400566d4 _atoi_r = 0x400566d4 + 0x400566ec atol = 0x400566ec + 0x400566fc _atol_r = 0x400566fc + 0x4000c1f4 bzero = 0x4000c1f4 + 0x40001df8 _cleanup = 0x40001df8 + 0x40001d48 _cleanup_r = 0x40001d48 + 0x40000e8c creat = 0x40000e8c + 0x40056348 div = 0x40056348 + 0x4000c728 __dummy_lock = 0x4000c728 + 0x4000c730 __dummy_lock_try = 0x4000c730 + 0x40001fd4 __env_lock = 0x40001fd4 + 0x40001fe0 __env_unlock = 0x40001fe0 + 0x400020ac fclose = 0x400020ac + 0x40001fec _fclose_r = 0x40001fec + 0x40059394 fflush = 0x40059394 + 0x40059320 _fflush_r = 0x40059320 + 0x40001f44 _findenv_r = 0x40001f44 + 0x40001f1c __fp_lock_all = 0x40001f1c + 0x40001f30 __fp_unlock_all = 0x40001f30 + 0x40058da0 __fputwc = 0x40058da0 + 0x40058ea8 fputwc = 0x40058ea8 + 0x40058e4c _fputwc_r = 0x40058e4c + 0x4000c738 _fwalk = 0x4000c738 + 0x4000c770 _fwalk_reent = 0x4000c770 + 0x40001fbc _getenv_r = 0x40001fbc + 0x40000f04 isalnum = 0x40000f04 + 0x40000f18 isalpha = 0x40000f18 + 0x4000c20c isascii = 0x4000c20c + 0x40000f2c isblank = 0x40000f2c + 0x40000f50 iscntrl = 0x40000f50 + 0x40000f64 isdigit = 0x40000f64 + 0x40000f94 isgraph = 0x40000f94 + 0x40000f78 islower = 0x40000f78 + 0x40000fa8 isprint = 0x40000fa8 + 0x40000fc0 ispunct = 0x40000fc0 + 0x40000fd4 isspace = 0x40000fd4 + 0x40000fe8 isupper = 0x40000fe8 + 0x40056678 __itoa = 0x40056678 + 0x400566b4 itoa = 0x400566b4 + 0x40056370 labs = 0x40056370 + 0x40056378 ldiv = 0x40056378 + 0x400562cc longjmp = 0x400562cc + 0x4000c220 memccpy = 0x4000c220 + 0x4000c244 memchr = 0x4000c244 + 0x4000c260 memcmp = 0x4000c260 + 0x4000c2c8 memcpy = 0x4000c2c8 + 0x4000c3c0 memmove = 0x4000c3c0 + 0x4000c400 memrchr = 0x4000c400 + 0x4000c44c memset = 0x4000c44c + 0x40056424 qsort = 0x40056424 + 0x40001058 rand = 0x40001058 + 0x400010d4 rand_r = 0x400010d4 + 0x4000c498 __sccl = 0x4000c498 + 0x400011b8 __sclose = 0x400011b8 + 0x40001148 __seofread = 0x40001148 + 0x40056268 setjmp = 0x40056268 + 0x400591e0 __sflush_r = 0x400591e0 + 0x40001dc8 __sfmoreglue = 0x40001dc8 + 0x40001e90 __sfp = 0x40001e90 + 0x40001e08 __sfp_lock_acquire = 0x40001e08 + 0x40001e14 __sfp_lock_release = 0x40001e14 + 0x40001e38 __sinit = 0x40001e38 + 0x40001e20 __sinit_lock_acquire = 0x40001e20 + 0x40001e2c __sinit_lock_release = 0x40001e2c + 0x40001004 srand = 0x40001004 + 0x40001118 __sread = 0x40001118 + 0x40001184 __sseek = 0x40001184 + 0x400011cc strcasecmp = 0x400011cc + 0x40001210 strcasestr = 0x40001210 + 0x4000c518 strcat = 0x4000c518 + 0x4000c53c strchr = 0x4000c53c + 0x40001274 strcmp = 0x40001274 + 0x40001398 strcoll = 0x40001398 + 0x400013ac strcpy = 0x400013ac + 0x4000c558 strcspn = 0x4000c558 + 0x4000143c strdup = 0x4000143c + 0x40001450 _strdup_r = 0x40001450 + 0x40001470 strlcat = 0x40001470 + 0x4000c584 strlcpy = 0x4000c584 + 0x400014c0 strlen = 0x400014c0 + 0x40001524 strlwr = 0x40001524 + 0x40001550 strncasecmp = 0x40001550 + 0x4000c5c4 strncat = 0x4000c5c4 + 0x4000c5f4 strncmp = 0x4000c5f4 + 0x400015d4 strncpy = 0x400015d4 + 0x400016b0 strndup = 0x400016b0 + 0x400016c4 _strndup_r = 0x400016c4 + 0x4000c628 strnlen = 0x4000c628 + 0x40001708 strrchr = 0x40001708 + 0x40001734 strsep = 0x40001734 + 0x4000c648 strspn = 0x4000c648 + 0x4000c674 strstr = 0x4000c674 + 0x4000c6a8 __strtok_r = 0x4000c6a8 + 0x4000c70c strtok_r = 0x4000c70c + 0x4005681c strtol = 0x4005681c + 0x40056714 _strtol_r = 0x40056714 + 0x4005692c strtoul = 0x4005692c + 0x40056834 _strtoul_r = 0x40056834 + 0x4000174c strupr = 0x4000174c + 0x40058f3c __submore = 0x40058f3c + 0x40058cb4 __swbuf = 0x40058cb4 + 0x40058bec __swbuf_r = 0x40058bec + 0x40001150 __swrite = 0x40001150 + 0x4000c720 toascii = 0x4000c720 + 0x40001868 tolower = 0x40001868 + 0x40001884 toupper = 0x40001884 + 0x400590f4 ungetc = 0x400590f4 + 0x40058fa0 _ungetc_r = 0x40058fa0 + 0x400561f0 __utoa = 0x400561f0 + 0x40056258 utoa = 0x40056258 + 0x40058920 wcrtomb = 0x40058920 + 0x400588d8 _wcrtomb_r = 0x400588d8 + 0x40058f14 _wctomb_r = 0x40058f14 + 0x3ff40000 PROVIDE (UART0 = 0x3ff40000) + 0x3ff42000 PROVIDE (SPI1 = 0x3ff42000) + 0x3ff43000 PROVIDE (SPI0 = 0x3ff43000) + 0x3ff44000 PROVIDE (GPIO = 0x3ff44000) + [!provide] PROVIDE (SDM = 0x3ff44f00) + 0x3ff48000 PROVIDE (RTCCNTL = 0x3ff48000) + [!provide] PROVIDE (RTCIO = 0x3ff48400) + [!provide] PROVIDE (SENS = 0x3ff48800) + [!provide] PROVIDE (HINF = 0x3ff4b000) + [!provide] PROVIDE (UHCI1 = 0x3ff4c000) + [!provide] PROVIDE (I2S0 = 0x3ff4f000) + 0x3ff50000 PROVIDE (UART1 = 0x3ff50000) + [!provide] PROVIDE (I2C0 = 0x3ff53000) + [!provide] PROVIDE (UHCI0 = 0x3ff54000) + [!provide] PROVIDE (HOST = 0x3ff55000) + [!provide] PROVIDE (RMT = 0x3ff56000) + [!provide] PROVIDE (RMTMEM = 0x3ff56800) + [!provide] PROVIDE (PCNT = 0x3ff57000) + [!provide] PROVIDE (SLC = 0x3ff58000) + [!provide] PROVIDE (LEDC = 0x3ff59000) + 0x3ff5a000 PROVIDE (EFUSE = 0x3ff5a000) + [!provide] PROVIDE (MCPWM0 = 0x3ff5e000) + 0x3ff5f000 PROVIDE (TIMERG0 = 0x3ff5f000) + 0x3ff60000 PROVIDE (TIMERG1 = 0x3ff60000) + [!provide] PROVIDE (SPI2 = 0x3ff64000) + [!provide] PROVIDE (SPI3 = 0x3ff65000) + [!provide] PROVIDE (SYSCON = 0x3ff66000) + [!provide] PROVIDE (I2C1 = 0x3ff67000) + [!provide] PROVIDE (SDMMC = 0x3ff68000) + [!provide] PROVIDE (EMAC_DMA = 0x3ff69000) + [!provide] PROVIDE (EMAC_EXT = 0x3ff69800) + [!provide] PROVIDE (EMAC_MAC = 0x3ff6a000) + [!provide] PROVIDE (TWAI = 0x3ff6b000) + [!provide] PROVIDE (MCPWM1 = 0x3ff6c000) + [!provide] PROVIDE (I2S1 = 0x3ff6d000) + 0x3ff6e000 PROVIDE (UART2 = 0x3ff6e000) + +.iram_loader.text + 0x40078000 0x3cb3 + 0x40078000 . = ALIGN (0x10) + 0x40078000 _loader_text_start = ABSOLUTE (.) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.iram1 .iram1.*) + .iram1.0.literal + 0x40078000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .iram1.0.literal + 0x40078004 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40078004 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2c (size before relaxing) + .iram1.8.literal + 0x4007802c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x4007802c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x3c (size before relaxing) + .iram1.9.literal + 0x40078030 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x14 (size before relaxing) + .iram1.10.literal + 0x40078038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.12.literal + 0x40078038 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x48 (size before relaxing) + .iram1.6.literal + 0x4007804c 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.8.literal + 0x4007805c 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x4c (size before relaxing) + .iram1.9.literal + 0x40078084 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x4007808c 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .iram1.2.literal + 0x40078094 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .iram1.0.literal + 0x400780a0 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x400780a0 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x400780a0 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x400780a4 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_early_timestamp + 0x400780a4 0x4 esp-idf/log/liblog.a(log_noos.c.obj) + .literal.bootloader_common_ota_select_crc + 0x400780a8 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_valid + 0x400780ac 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_common_check_chip_validity + 0x400780ac 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x38 (size before relaxing) + .literal.bootloader_common_get_active_otadata + 0x400780c4 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0xc (size before relaxing) + .literal.bootloader_mmap + 0x400780c4 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x48 (size before relaxing) + .literal.bootloader_munmap + 0x400780e8 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_flash_read + 0x400780f0 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x5c (size before relaxing) + .literal.bootloader_flash_erase_sector + 0x40078108 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_flash_write + 0x40078108 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_enable_wp + 0x40078114 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_flash_get_spi_mode + 0x40078114 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_fill_random + 0x40078114 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_random_disable + 0x40078124 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x44 (size before relaxing) + .literal.bootloader_clock_get_rated_freq_mhz + 0x4007815c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x4 (size before relaxing) + .literal.log_invalid_app_partition + 0x4007815c 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x28 (size before relaxing) + .literal.cache_ll_l1_get_bus + 0x40078170 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x20 (size before relaxing) + .literal.try_load_partition + 0x4007818c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x14 (size before relaxing) + .literal.cache_ll_l1_enable_bus$part$0 + 0x40078190 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.cache_ll_l1_enable_bus$constprop$0 + 0x40078194 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.load_image + 0x40078198 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x80 (size before relaxing) + .literal.set_actual_ota_seq + 0x400781b0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_common_read_otadata + 0x400781c0 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x28 (size before relaxing) + .literal.bootloader_utility_load_partition_table + 0x400781cc 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x84 (size before relaxing) + .literal.bootloader_utility_get_selected_boot_partition + 0x40078210 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x48 (size before relaxing) + .literal.bootloader_reset + 0x40078220 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xc (size before relaxing) + .literal.bootloader_utility_load_boot_image + 0x40078224 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x58 (size before relaxing) + .literal.bootloader_sha256_start + 0x40078234 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x4007823c 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_sha256_finish + 0x40078260 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x44 (size before relaxing) + .literal.bootloader_console_deinit + 0x4007827c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .literal.__assert_func + 0x40078280 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x8 (size before relaxing) + .literal.unlikely.abort + 0x40078284 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x10 (size before relaxing) + .literal.process_checksum + 0x40078290 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x18 (size before relaxing) + .literal.process_image_header + 0x40078298 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x30 (size before relaxing) + .literal.bootloader_util_regions_overlap + 0x400782a0 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + .literal.verify_load_addresses + 0x400782b0 0x80 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0xa4 (size before relaxing) + .literal.process_appended_hash_and_sig$isra$0 + 0x40078330 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + .literal.should_load + 0x40078334 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x10 (size before relaxing) + .literal.process_segments + 0x40078338 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x8c (size before relaxing) + .literal.image_load + 0x40078360 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x5c (size before relaxing) + .literal.bootloader_load_image + 0x40078374 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_table_verify + 0x40078374 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x50 (size before relaxing) + .literal.wdt_hal_init + 0x4007839c 0x40 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x44 (size before relaxing) + .literal.wdt_hal_config_stage + 0x400783dc 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x24 (size before relaxing) + .literal.wdt_hal_write_protect_disable + 0x400783dc 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.mmu_hal_unmap_all + 0x400783dc 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.efuse_hal_get_rated_freq_mhz + 0x400783e4 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_32k_enable_common + 0x400783e4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x400783f0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_bbpll_disable + 0x40078408 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enable + 0x40078414 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x4007841c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_8m_enabled + 0x40078420 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_8md256_enabled + 0x40078420 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x40078420 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x40078420 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x40078420 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x40078424 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_src_get + 0x40078424 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x40078424 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x40078428 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_get_config + 0x40078428 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x24 (size before relaxing) + .literal.rtc_clk_xtal_freq_update + 0x40078434 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x40078438 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_xtal + 0x40078438 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x24 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x40078440 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x84 (size before relaxing) + .literal.rtc_clk_apb_freq_get + 0x4007844c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_cal_internal + 0x40078454 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cal_ratio + 0x40078478 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_wait_for_slow_cycle + 0x40078480 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x28 (size before relaxing) + .literal.startup.enable_timer_group0_for_calibration + 0x40078488 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xc (size before relaxing) + .literal.esp_rom_spiflash_read_status + 0x40078488 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x10 (size before relaxing) + .literal.esp_rom_spiflash_wait_idle + 0x40078494 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0xc (size before relaxing) + .literal.esp_rom_spiflash_enable_write$constprop$0 + 0x4007849c 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x10 (size before relaxing) + .literal.esp_rom_spiflash_program_page_internal$constprop$0 + 0x400784a0 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x1c (size before relaxing) + .literal.esp_rom_spiflash_erase_sector + 0x400784a8 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x24 (size before relaxing) + .literal.esp_rom_spiflash_write + 0x400784ac 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x1c (size before relaxing) + .literal.esp_rom_spiflash_write_encrypted + 0x400784ac 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x10 (size before relaxing) + .literal.esp_rom_spiflash_read + 0x400784b8 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x50 (size before relaxing) + .iram1.0 0x400784e0 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x400784e0 bootloader_common_get_chip_ver_pkg + *fill* 0x400784fe 0x2 + .iram1.0 0x40078500 0xa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xd (size before relaxing) + 0x40078500 esp_flash_encryption_enabled + *fill* 0x4007850a 0x2 + .iram1.7 0x4007850c 0x1e7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4007850c bootloader_flash_execute_command_common + *fill* 0x400786f3 0x1 + .iram1.8 0x400786f4 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x400786f4 bootloader_execute_flash_command + .iram1.6 0x40078714 0x120 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x150 (size before relaxing) + 0x40078714 bootloader_flash_unlock + .iram1.9 0x40078834 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x36 (size before relaxing) + 0x40078834 bootloader_flash_read_sfdp + *fill* 0x40078866 0x2 + .iram1.10 0x40078868 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2e (size before relaxing) + 0x40078868 bootloader_read_flash_id + *fill* 0x40078892 0x2 + .iram1.12 0x40078894 0x95 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xb5 (size before relaxing) + 0x40078894 bootloader_flash_xmc_startup + *fill* 0x40078929 0x3 + .iram1.6 0x4007892c 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x4007892c bootloader_flash_cs_timing_config + *fill* 0x4007899a 0x2 + .iram1.8 0x4007899c 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x1dc (size before relaxing) + 0x4007899c bootloader_flash_gpio_config + .iram1.9 0x40078b74 0x92 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x40078b74 bootloader_flash_dummy_config + *fill* 0x40078c06 0x2 + .iram1.1 0x40078c08 0xf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x40078c08 esp_rom_set_cpu_ticks_per_us + *fill* 0x40078c17 0x1 + .iram1.2 0x40078c18 0x3e esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0x40078c18 esp_rom_uart_tx_wait_idle + *fill* 0x40078c56 0x2 + .iram1.0 0x40078c58 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x40078c58 efuse_hal_chip_revision + .iram1.3 0x40078c70 0x27 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40078c70 efuse_hal_flash_encryption_enabled + *fill* 0x40078c97 0x1 + .iram1.0 0x40078c98 0x42 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40078c98 efuse_hal_get_major_chip_version + *fill* 0x40078cda 0x2 + .iram1.1 0x40078cdc 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40078cdc efuse_hal_get_minor_chip_version + .iram1.0 0x40078cec 0xa esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x40078cec esp_dport_access_reg_read + *fill* 0x40078cf6 0x0 + *fill* 0x40078cf6 0x0 + *fill* 0x40078cf6 0x2 + .iram1.11 0x40078cf8 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x40078d3e 0x0 + *fill* 0x40078d3e 0x0 + *fill* 0x40078d3e 0x0 + *fill* 0x40078d3e 0x0 + *fill* 0x40078d3e 0x0 + *fill* 0x40078d3e 0x0 + *fill* 0x40078d3e 0x0 + *fill* 0x40078d3e 0x0 + *fill* 0x40078d3e 0x2 + .iram1.2 0x40078d40 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40078d40 efuse_hal_get_disable_wafer_version_major + *fill* 0x40078d47 0x0 + *fill* 0x40078d47 0x0 + *fill* 0x40078d47 0x0 + *liblog.a:(.literal .text .literal.* .text.*) + *fill* 0x40078d47 0x1 + .text.esp_log_early_timestamp + 0x40078d48 0x1d esp-idf/log/liblog.a(log_noos.c.obj) + 0x40078d48 esp_log_early_timestamp + 0x40078d48 esp_log_timestamp + *libgcc.a:(.literal .text .literal.* .text.*) + *libclang_rt.builtins.a:(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_common_loader.*(.literal .text .literal.* .text.*) + *fill* 0x40078d65 0x3 + .text.bootloader_common_ota_select_crc + 0x40078d68 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x40078d68 bootloader_common_ota_select_crc + .text.bootloader_common_ota_select_valid + 0x40078d7c 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x26 (size before relaxing) + 0x40078d7c bootloader_common_ota_select_valid + *fill* 0x40078d9e 0x2 + .text.bootloader_common_check_chip_validity + 0x40078da0 0xf0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0xfc (size before relaxing) + 0x40078da0 bootloader_common_check_chip_validity + .text.bootloader_common_get_active_otadata + 0x40078e90 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x30 (size before relaxing) + 0x40078e90 bootloader_common_get_active_otadata + *fill* 0x40078eb8 0x0 + .text.bootloader_common_ota_select_invalid + 0x40078eb8 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x40078eb8 bootloader_common_ota_select_invalid + *fill* 0x40078ed1 0x0 + *fill* 0x40078ed1 0x3 + .text.bootloader_common_select_otadata + 0x40078ed4 0x49 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x40078ed4 bootloader_common_select_otadata + *fill* 0x40078f1d 0x0 + *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*) + *fill* 0x40078f1d 0x3 + .text.bootloader_mmap + 0x40078f20 0xd7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xdb (size before relaxing) + 0x40078f20 bootloader_mmap + *fill* 0x40078ff7 0x1 + .text.bootloader_munmap + 0x40078ff8 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x40078ff8 bootloader_munmap + *fill* 0x4007902a 0x2 + .text.bootloader_flash_read + 0x4007902c 0xfb esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x103 (size before relaxing) + 0x4007902c bootloader_flash_read + *fill* 0x40079127 0x1 + .text.bootloader_flash_erase_sector + 0x40079128 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x16 (size before relaxing) + 0x40079128 bootloader_flash_erase_sector + *fill* 0x4007913a 0x2 + .text.bootloader_flash_write + 0x4007913c 0x8f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x9a (size before relaxing) + 0x4007913c bootloader_flash_write + *fill* 0x400791cb 0x1 + .text.bootloader_enable_wp + 0x400791cc 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x400791cc bootloader_enable_wp + *fill* 0x400791df 0x1 + .text.bootloader_flash_get_spi_mode + 0x400791e0 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x400791e0 bootloader_flash_get_spi_mode + *fill* 0x4007920e 0x2 + .text.spi_to_esp_err + 0x40079210 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x40079232 0x2 + .text.bootloader_mmap_get_free_pages + 0x40079234 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x40079234 bootloader_mmap_get_free_pages + *fill* 0x4007923b 0x0 + *fill* 0x4007923b 0x0 + *fill* 0x4007923b 0x0 + *fill* 0x4007923b 0x0 + *fill* 0x4007923b 0x0 + *fill* 0x4007923b 0x0 + *fill* 0x4007923b 0x0 + *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*) + *fill* 0x4007923b 0x1 + .text.bootloader_fill_random + 0x4007923c 0x55 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x4007923c bootloader_fill_random + *fill* 0x40079291 0x0 + *libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_random_disable) + *fill* 0x40079291 0x3 + .text.bootloader_random_disable + 0x40079294 0x13c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x40079294 bootloader_random_disable + *fill* 0x400793d0 0x0 + *libesp_common.a:fpga_overrides.*(.literal.bootloader_fill_random .text.bootloader_fill_random) + *libbootloader_support.a:bootloader_efuse.*(.literal .text .literal.* .text.*) + .text.bootloader_clock_get_rated_freq_mhz + 0x400793d0 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0xd (size before relaxing) + 0x400793d0 bootloader_clock_get_rated_freq_mhz + *libbootloader_support.a:bootloader_utility.*(.literal .text .literal.* .text.*) + *fill* 0x400793da 0x2 + .text.log_invalid_app_partition + 0x400793dc 0x53 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x5b (size before relaxing) + *fill* 0x4007942f 0x1 + .text.cache_ll_l1_get_bus + 0x40079430 0x79 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x7d (size before relaxing) + *fill* 0x400794a9 0x3 + .text.try_load_partition + 0x400794ac 0x2f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x33 (size before relaxing) + *fill* 0x400794db 0x1 + .text.cache_ll_l1_enable_bus$part$0 + 0x400794dc 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.cache_ll_l1_enable_bus$constprop$0 + 0x4007950c 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x4007953c 0x18e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x1c6 (size before relaxing) + *fill* 0x400796ca 0x2 + .text.set_actual_ota_seq + 0x400796cc 0x77 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x8b (size before relaxing) + *fill* 0x40079743 0x1 + .text.bootloader_common_read_otadata + 0x40079744 0x77 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x7f (size before relaxing) + 0x40079744 bootloader_common_read_otadata + *fill* 0x400797bb 0x1 + .text.bootloader_utility_load_partition_table + 0x400797bc 0x15e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x176 (size before relaxing) + 0x400797bc bootloader_utility_load_partition_table + *fill* 0x4007991a 0x2 + .text.bootloader_utility_get_selected_boot_partition + 0x4007991c 0xde esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xf2 (size before relaxing) + 0x4007991c bootloader_utility_get_selected_boot_partition + *fill* 0x400799fa 0x2 + .text.bootloader_reset + 0x400799fc 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x1b (size before relaxing) + 0x400799fc bootloader_reset + *fill* 0x40079a14 0x0 + .text.bootloader_utility_load_boot_image + 0x40079a14 0xf3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x113 (size before relaxing) + 0x40079a14 bootloader_utility_load_boot_image + *fill* 0x40079b07 0x0 + *fill* 0x40079b07 0x0 + *fill* 0x40079b07 0x1 + .text.index_to_partition + 0x40079b08 0x39 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x40079b41 0x0 + *fill* 0x40079b41 0x0 + *fill* 0x40079b41 0x0 + *fill* 0x40079b41 0x0 + *fill* 0x40079b41 0x0 + *fill* 0x40079b41 0x0 + *fill* 0x40079b41 0x0 + *fill* 0x40079b41 0x0 + *fill* 0x40079b41 0x3 + .text.bootloader_debug_buffer + 0x40079b44 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x40079b44 bootloader_debug_buffer + *libbootloader_support.a:bootloader_sha.*(.literal .text .literal.* .text.*) + *fill* 0x40079b49 0x3 + .text.bootloader_sha256_start + 0x40079b4c 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x40079b4c bootloader_sha256_start + *fill* 0x40079b5e 0x2 + .text.bootloader_sha256_data + 0x40079b60 0x95 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x99 (size before relaxing) + 0x40079b60 bootloader_sha256_data + *fill* 0x40079bf5 0x3 + .text.bootloader_sha256_finish + 0x40079bf8 0xbe esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0xc2 (size before relaxing) + 0x40079bf8 bootloader_sha256_finish + *fill* 0x40079cb6 0x0 + *fill* 0x40079cb6 0x0 + *fill* 0x40079cb6 0x0 + *libbootloader_support.a:bootloader_console_loader.*(.literal .text .literal.* .text.*) + *fill* 0x40079cb6 0x2 + .text.bootloader_console_deinit + 0x40079cb8 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + 0x40079cb8 bootloader_console_deinit + *fill* 0x40079cc6 0x0 + *libbootloader_support.a:bootloader_panic.*(.literal .text .literal.* .text.*) + *fill* 0x40079cc6 0x2 + .text.__assert_func + 0x40079cc8 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x40079cc8 __assert_func + *fill* 0x40079cdf 0x1 + .text.unlikely.abort + 0x40079ce0 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x40079ce0 abort + *fill* 0x40079d0d 0x0 + *fill* 0x40079d0d 0x0 + *libbootloader_support.a:bootloader_soc.*(.literal .text .literal.* .text.*) + *fill* 0x40079d0d 0x3 + .text.bootloader_ana_clock_glitch_reset_config + 0x40079d10 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x40079d10 bootloader_ana_clock_glitch_reset_config + *libbootloader_support.a:esp_image_format.*(.literal .text .literal.* .text.*) + *fill* 0x40079d15 0x3 + .text.process_checksum + 0x40079d18 0xa9 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x40079dc1 0x3 + .text.process_image_header + 0x40079dc4 0xbb esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0xcf (size before relaxing) + *fill* 0x40079e7f 0x1 + .text.bootloader_util_regions_overlap + 0x40079e80 0x38 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x3c (size before relaxing) + .text.verify_load_addresses + 0x40079eb8 0x1b7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x1cb (size before relaxing) + *fill* 0x4007a06f 0x1 + .text.process_appended_hash_and_sig$isra$0 + 0x4007a070 0x5f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x4007a0cf 0x1 + .text.should_load + 0x4007a0d0 0x81 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x4007a151 0x3 + .text.process_segments + 0x4007a154 0x2a2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x2c2 (size before relaxing) + *fill* 0x4007a3f6 0x2 + .text.image_load + 0x4007a3f8 0x1e2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x206 (size before relaxing) + *fill* 0x4007a5da 0x2 + .text.bootloader_load_image + 0x4007a5dc 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + 0x4007a5dc bootloader_load_image + *fill* 0x4007a5ec 0x0 + *fill* 0x4007a5ec 0x0 + *fill* 0x4007a5ec 0x0 + *fill* 0x4007a5ec 0x0 + *fill* 0x4007a5ec 0x0 + *fill* 0x4007a5ec 0x0 + *fill* 0x4007a5ec 0x0 + *fill* 0x4007a5ec 0x0 + *libbootloader_support.a:flash_encrypt.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:flash_encryption_secure_features.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:flash_partitions.*(.literal .text .literal.* .text.*) + .text.esp_partition_table_verify + 0x4007a5ec 0x108 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x113 (size before relaxing) + 0x4007a5ec esp_partition_table_verify + *libbootloader_support.a:secure_boot.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:secure_boot_secure_features.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:secure_boot_signatures_bootloader.*(.literal .text .literal.* .text.*) + *libmicro-ecc.a:*.*(.literal .text .literal.* .text.*) + *libspi_flash.a:*.*(.literal .text .literal.* .text.*) + *libhal.a:wdt_hal_iram.*(.literal .text .literal.* .text.*) + *fill* 0x4007a6f4 0x0 + .text.wdt_hal_init + 0x4007a6f4 0x262 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4007a6f4 wdt_hal_init + *fill* 0x4007a956 0x2 + .text.wdt_hal_config_stage + 0x4007a958 0x13a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x13e (size before relaxing) + 0x4007a958 wdt_hal_config_stage + *fill* 0x4007aa92 0x2 + .text.wdt_hal_write_protect_disable + 0x4007aa94 0x1d esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4007aa94 wdt_hal_write_protect_disable + *fill* 0x4007aab1 0x0 + *fill* 0x4007aab1 0x0 + *fill* 0x4007aab1 0x0 + *fill* 0x4007aab1 0x3 + .text.wdt_hal_write_protect_enable + 0x4007aab4 0x1c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4007aab4 wdt_hal_write_protect_enable + .text.wdt_hal_enable + 0x4007aad0 0x48 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4007aad0 wdt_hal_enable + .text.wdt_hal_set_flashboot_en + 0x4007ab18 0x45 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4007ab18 wdt_hal_set_flashboot_en + *libhal.a:mmu_hal.*(.literal .text .literal.* .text.*) + *fill* 0x4007ab5d 0x3 + .text.mmu_hal_unmap_all + 0x4007ab60 0x2d esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4007ab60 mmu_hal_unmap_all + *fill* 0x4007ab8d 0x0 + *libhal.a:efuse_hal.*(.literal .text .literal.* .text.*) + *fill* 0x4007ab8d 0x3 + .text.efuse_hal_get_rated_freq_mhz + 0x4007ab90 0x22 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4007ab90 efuse_hal_get_rated_freq_mhz + *fill* 0x4007abb2 0x0 + *libesp_hw_support.a:rtc_clk.*(.literal .text .literal.* .text.*) + *fill* 0x4007abb2 0x2 + .text.rtc_clk_32k_enable_common + 0x4007abb4 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x4007ac3c 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xa5 (size before relaxing) + *fill* 0x4007acd9 0x3 + .text.rtc_clk_bbpll_disable + 0x4007acdc 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable + 0x4007ad18 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007ad18 rtc_clk_32k_enable + *fill* 0x4007ad52 0x2 + .text.rtc_clk_8m_enable + 0x4007ad54 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007ad54 rtc_clk_8m_enable + *fill* 0x4007adda 0x2 + .text.rtc_clk_8m_enabled + 0x4007addc 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007addc rtc_clk_8m_enabled + *fill* 0x4007adf1 0x3 + .text.rtc_clk_8md256_enabled + 0x4007adf4 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007adf4 rtc_clk_8md256_enabled + *fill* 0x4007ae09 0x3 + .text.rtc_clk_slow_src_set + 0x4007ae0c 0x83 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x86 (size before relaxing) + 0x4007ae0c rtc_clk_slow_src_set + *fill* 0x4007ae8f 0x1 + .text.rtc_clk_slow_src_get + 0x4007ae90 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007ae90 rtc_clk_slow_src_get + *fill* 0x4007aeab 0x1 + .text.rtc_clk_slow_freq_get_hz + 0x4007aeac 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x26 (size before relaxing) + 0x4007aeac rtc_clk_slow_freq_get_hz + *fill* 0x4007aece 0x2 + .text.rtc_clk_fast_src_set + 0x4007aed0 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007aed0 rtc_clk_fast_src_set + .text.rtc_clk_fast_src_get + 0x4007af0c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007af0c rtc_clk_fast_src_get + .text.rtc_clk_xtal_freq_get + 0x4007af1c 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007af1c rtc_clk_xtal_freq_get + 0x4007af1c rtc_get_xtal + .text.rtc_clk_cpu_freq_mhz_to_config + 0x4007af40 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007af40 rtc_clk_cpu_freq_mhz_to_config + *fill* 0x4007af9b 0x1 + .text.rtc_clk_cpu_freq_get_config + 0x4007af9c 0x89 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8d (size before relaxing) + 0x4007af9c rtc_clk_cpu_freq_get_config + *fill* 0x4007b025 0x3 + .text.rtc_clk_xtal_freq_update + 0x4007b028 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007b028 rtc_clk_xtal_freq_update + .text.rtc_clk_apb_freq_update + 0x4007b050 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007b050 rtc_clk_apb_freq_update + *fill* 0x4007b069 0x3 + .text.rtc_clk_cpu_freq_to_xtal + 0x4007b06c 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x7d (size before relaxing) + 0x4007b06c rtc_clk_cpu_freq_to_xtal + *fill* 0x4007b0de 0x2 + .text.rtc_clk_cpu_freq_set_config + 0x4007b0e0 0x2b9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2d5 (size before relaxing) + 0x4007b0e0 rtc_clk_cpu_freq_set_config + *fill* 0x4007b399 0x3 + .text.rtc_clk_apb_freq_get + 0x4007b39c 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007b39c rtc_clk_apb_freq_get + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *fill* 0x4007b3c6 0x0 + *libesp_hw_support.a:rtc_time.*(.literal .text .literal.* .text.*) + *fill* 0x4007b3c6 0x2 + .text.rtc_clk_cal_internal + 0x4007b3c8 0x1b3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x1c7 (size before relaxing) + *fill* 0x4007b57b 0x1 + .text.rtc_clk_cal_ratio + 0x4007b57c 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x4007b57c rtc_clk_cal_ratio + .text.rtc_clk_wait_for_slow_cycle + 0x4007b5b4 0xa9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x4007b5b4 rtc_clk_wait_for_slow_cycle + *fill* 0x4007b65d 0x3 + .text.startup.enable_timer_group0_for_calibration + 0x4007b660 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *fill* 0x4007b6a8 0x0 + *fill* 0x4007b6a8 0x0 + *fill* 0x4007b6a8 0x0 + *libefuse.a:*.*(.literal .text .literal.* .text.*) + *libesp_rom.a:*.*(.literal .text .literal.* .text.*) + .text.esp_rom_spiflash_read_status + 0x4007b6a8 0x62 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x4007b6a8 esp_rom_spiflash_read_status + *fill* 0x4007b70a 0x2 + .text.esp_rom_spiflash_wait_idle + 0x4007b70c 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x4007b70c esp_rom_spiflash_wait_idle + .text.esp_rom_spiflash_enable_write$constprop$0 + 0x4007b73c 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x3f (size before relaxing) + *fill* 0x4007b778 0x0 + .text.esp_rom_spiflash_program_page_internal$constprop$0 + 0x4007b778 0xd3 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + *fill* 0x4007b84b 0x1 + .text.esp_rom_spiflash_erase_sector + 0x4007b84c 0x88 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x8f (size before relaxing) + 0x4007b84c esp_rom_spiflash_erase_sector + *fill* 0x4007b8d4 0x0 + .text.esp_rom_spiflash_write + 0x4007b8d4 0x9b esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x4007b8d4 esp_rom_spiflash_write + *fill* 0x4007b96f 0x1 + .text.esp_rom_spiflash_write_encrypted + 0x4007b970 0x54 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x4007b970 esp_rom_spiflash_write_encrypted + .text.esp_rom_spiflash_read + 0x4007b9c4 0x2eb esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x4007b9c4 esp_rom_spiflash_read + *fill* 0x4007bcaf 0x0 + *fill* 0x4007bcaf 0x0 + *fill* 0x4007bcaf 0x0 + *fill* 0x4007bcaf 0x0 + *fill* 0x4007bcaf 0x0 + *(.fini.literal) + *(.fini) + *fill* 0x4007bcaf 0x1 + .fini 0x4007bcb0 0x3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + 0x4007bcb0 _fini + *(.gnu.version) + 0x4007bcb3 _loader_text_end = ABSOLUTE (.) + +.iram.text 0x40080400 0x3 + 0x40080400 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + .init 0x40080400 0x3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + 0x40080400 _init + +.dram0.bss 0x3fff0000 0x30 + 0x3fff0000 . = ALIGN (0x8) + 0x3fff0000 _dram_start = ABSOLUTE (.) + 0x3fff0000 _bss_start = ABSOLUTE (.) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.bss) + *(.bss.*) + .bss.ota_has_initial_contents + 0x3fff0000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x3fff0001 0x3 + .bss.ram_obfs_value + 0x3fff0004 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss.words_hashed + 0x3fff000c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss.mapped 0x3fff0010 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x3fff0011 0x3 + .bss.bootloader_image_hdr + 0x3fff0014 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x3fff0014 bootloader_image_hdr + .bss.s_cur_pll_freq + 0x3fff002c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *(.gnu.linkonce.b.*) + *(COMMON) + 0x3fff0030 . = ALIGN (0x8) + 0x3fff0030 _bss_end = ABSOLUTE (.) + +.dram0.bootdesc + 0x3fff0030 0x50 + 0x3fff0030 _data_start = ABSOLUTE (.) + *(.data_bootloader_desc .data_bootloader_desc.*) + .data_bootloader_desc + 0x3fff0030 0x50 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x3fff0030 esp_bootloader_desc + +.dram0.data 0x3fff0080 0x4 + *(.data) + *(.data.*) + .data.current_read_mapping + 0x3fff0080 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + 0x3fff0084 _data_end = ABSOLUTE (.) + +.dram0.rodata 0x3fff0084 0x1bb0 + 0x3fff0084 _rodata_start = ABSOLUTE (.) + *(.rodata) + .rodata 0x3fff0084 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .rodata 0x3fff008c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata 0x3fff0094 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + *(.rodata.*) + .rodata.__assert_func.str1.1 + 0x3fff00a8 0x1a1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x22 (size before relaxing) + .rodata.abort.str1.1 + 0x3fff1ac5 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .rodata.call_start_cpu0.str1.1 + 0x3fff1ac5 0x39 esp-idf/main/libmain.a(bootloader_start.c.obj) + .rodata.log_invalid_app_partition.str1.1 + 0x3fff1ac5 0xaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.try_load_partition.str1.1 + 0x3fff1ac5 0x41 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.1 + 0x3fff1ac5 0xa7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.1 + 0x3fff1ac5 0x82 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_common_read_otadata.str1.1 + 0x3fff1ac5 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.1 + 0x3fff1ac5 0x1c5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.1 + 0x3fff1ac5 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.1 + 0x3fff1ac5 0xe0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.esp_partition_table_verify.str1.1 + 0x3fff1ac5 0x164 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.process_checksum.str1.1 + 0x3fff1ac5 0x4d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_image_header.str1.1 + 0x3fff1ac5 0x9d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.bootloader_util_regions_overlap.str1.1 + 0x3fff1ac5 0x5a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_load_addresses.str1.1 + 0x3fff1ac5 0xec esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash_and_sig$isra$0.str1.1 + 0x3fff1ac5 0x4d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.1 + 0x3fff1ac5 0x192 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.1 + 0x3fff1ac5 0xa2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.__func__$0 + 0x3fff1ac5 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.__func__$1 + 0x3fff1ae5 0x16 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.bootloader_sha256_data.str1.1 + 0x3fff1afb 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_finish.str1.1 + 0x3fff1afb 0x45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.padding$0 + 0x3fff1afb 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$1 + 0x3fff1b3b 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$2 + 0x3fff1b54 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.wdt_reset_info_dump.str1.1 + 0x3fff1b6b 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .rodata.bootloader_init.str1.1 + 0x3fff1b6b 0x1c1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .rodata.__func__$0 + 0x3fff1b6b 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.1 + 0x3fff1b7b 0xe6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_fill_random.str1.1 + 0x3fff1b7b 0x4b esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .rodata.__func__$0 + 0x3fff1b7b 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .rodata.bootloader_mmap.str1.1 + 0x3fff1b92 0xdf esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_flash_read.str1.1 + 0x3fff1b92 0x138 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.str1.1 + 0x3fff1b92 0x8f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_flash_write.str1.1 + 0x3fff1b92 0xea esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$0 + 0x3fff1b92 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$1 + 0x3fff1bad 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$2 + 0x3fff1bd5 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_init_spi_flash.str1.1 + 0x3fff1bf9 0xe4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .rodata.bootloader_read_bootloader_header.str1.1 + 0x3fff1bf9 0x45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_check_bootloader_validity.str1.1 + 0x3fff1bf9 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_enable_random.str1.1 + 0x3fff1bf9 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.bootloader_print_banner.str1.1 + 0x3fff1bf9 0x8d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata.rtc_clk_apll_coeff_calc.str1.1 + 0x3fff1bf9 0xc7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.1 + 0x3fff1bf9 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_xtal_freq_estimate.str1.1 + 0x3fff1bf9 0xe9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .rodata.rtc_clk_init.str1.1 + 0x3fff1bf9 0xd6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .rodata.rtc_clk_cal_internal.str1.1 + 0x3fff1bf9 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_clk_cal_ratio.str1.1 + 0x3fff1bf9 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_clk_wait_for_slow_cycle.str1.1 + 0x3fff1bf9 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$2 + 0x3fff1bf9 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$3 + 0x3fff1c0e 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *(.gnu.linkonce.r.*) + *(.rodata1) + *(.sdata2 .sdata2.*) + 0x3fff1c20 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + *(.eh_frame) + 0x3fff1d2c . = ((. + 0x3) & 0xfffffffffffffffc) + 0x3fff1c20 __init_array_start = ABSOLUTE (.) + *crtbegin.*(.ctors) + .ctors 0x3fff1c20 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .ctors) + .ctors 0x3fff1c24 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *(SORT_BY_NAME(.ctors.*)) + *(.ctors) + .ctors 0x3fff1c28 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + 0x3fff1c2c __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + .dtors 0x3fff1c2c 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .dtors) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + .dtors 0x3fff1c30 0x4 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + 0x3fff1c30 __DTOR_END__ + 0x3fff1c34 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x3fff1c34 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x3fff1c34 _rodata_end = ABSOLUTE (.) + 0x3fff1c34 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x3fff1c34 _lit4_end = ABSOLUTE (.) + 0x3fff1d2c . = ALIGN (0x4) + 0x3fff1c34 _dram_end = ABSOLUTE (.) + +.iram.text 0x40080404 0xf3f + 0x40080404 _stext = . + 0x40080404 _text_start = ABSOLUTE (.) + *(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + .literal.esp_bootloader_get_description + 0x40080404 0x4 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .literal.call_start_cpu0 + 0x40080408 0x18 esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x38 (size before relaxing) + .literal.wdt_reset_info_dump + 0x40080420 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x68 (size before relaxing) + .literal.bootloader_init + 0x4008047c 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0xcc (size before relaxing) + .literal.bootloader_common_vddsdio_configure + 0x400804cc 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0xc (size before relaxing) + .literal.bootloader_clock_configure + 0x400804d0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0x3c (size before relaxing) + .literal.bootloader_init_mem + 0x400804f0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_random_enable + 0x400804f0 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal.bootloader_flash_update_id + 0x4008053c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_init_spi_flash + 0x40080540 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x94 (size before relaxing) + .literal.bootloader_clear_bss_section + 0x40080598 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0xc (size before relaxing) + .literal.bootloader_read_bootloader_header + 0x4008059c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x18 (size before relaxing) + .literal.bootloader_check_bootloader_validity + 0x400805a4 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x20 (size before relaxing) + .literal.bootloader_config_wdt + 0x400805ac 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x3c (size before relaxing) + .literal.bootloader_enable_random + 0x400805b8 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_print_banner + 0x400805bc 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_console_init + 0x400805c8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + 0x18 (size before relaxing) + .literal.esp_cpu_configure_region_protection + 0x400805d8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_xtal_freq_estimate + 0x400805e0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x48 (size before relaxing) + .literal.rtc_clk_init + 0x400805f8 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x90 (size before relaxing) + .literal.rtc_vddsdio_get_config + 0x4008062c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x40080638 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x4 (size before relaxing) + .text.esp_bootloader_get_description + 0x40080638 0x8 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x40080638 esp_bootloader_get_description + .text.call_start_cpu0 + 0x40080640 0x6c esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x7c (size before relaxing) + 0x40080640 call_start_cpu0 + .text.wdt_reset_info_dump + 0x400806ac 0xdd esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0xe1 (size before relaxing) + *fill* 0x40080789 0x3 + .text.bootloader_init + 0x4008078c 0x1e2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x212 (size before relaxing) + 0x4008078c bootloader_init + *fill* 0x4008096e 0x2 + .text.bootloader_common_vddsdio_configure + 0x40080970 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x37 (size before relaxing) + 0x40080970 bootloader_common_vddsdio_configure + *fill* 0x400809a4 0x0 + .text.bootloader_clock_configure + 0x400809a4 0xeb esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0xfa (size before relaxing) + 0x400809a4 bootloader_clock_configure + *fill* 0x40080a8f 0x1 + .text.bootloader_init_mem + 0x40080a90 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0xb (size before relaxing) + 0x40080a90 bootloader_init_mem + *fill* 0x40080a98 0x0 + .text.bootloader_random_enable + 0x40080a98 0x1ea esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x40080a98 bootloader_random_enable + *fill* 0x40080c82 0x2 + .text.bootloader_flash_update_id + 0x40080c84 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x10 (size before relaxing) + 0x40080c84 bootloader_flash_update_id + *fill* 0x40080c91 0x3 + .text.bootloader_init_spi_flash + 0x40080c94 0x136 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x152 (size before relaxing) + 0x40080c94 bootloader_init_spi_flash + *fill* 0x40080dca 0x2 + .text.bootloader_clear_bss_section + 0x40080dcc 0x16 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x40080dcc bootloader_clear_bss_section + *fill* 0x40080de2 0x2 + .text.bootloader_read_bootloader_header + 0x40080de4 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x32 (size before relaxing) + 0x40080de4 bootloader_read_bootloader_header + *fill* 0x40080e12 0x2 + .text.bootloader_check_bootloader_validity + 0x40080e14 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x4c (size before relaxing) + 0x40080e14 bootloader_check_bootloader_validity + .text.bootloader_config_wdt + 0x40080e58 0x7c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0xa0 (size before relaxing) + 0x40080e58 bootloader_config_wdt + .text.bootloader_enable_random + 0x40080ed4 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x20 (size before relaxing) + 0x40080ed4 bootloader_enable_random + *fill* 0x40080eed 0x3 + .text.bootloader_print_banner + 0x40080ef0 0x42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x52 (size before relaxing) + 0x40080ef0 bootloader_print_banner + *fill* 0x40080f32 0x2 + .text.bootloader_console_init + 0x40080f34 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + 0x54 (size before relaxing) + 0x40080f34 bootloader_console_init + .text.esp_cpu_configure_region_protection + 0x40080f84 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x32 (size before relaxing) + 0x40080f84 esp_cpu_configure_region_protection + *fill* 0x40080fb2 0x2 + .text.rtc_clk_xtal_freq_estimate + 0x40080fb4 0xaf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0xc3 (size before relaxing) + *fill* 0x40081063 0x1 + .text.rtc_clk_init + 0x40081064 0x1ba esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x1f2 (size before relaxing) + 0x40081064 rtc_clk_init + *fill* 0x4008121e 0x2 + .text.rtc_vddsdio_get_config + 0x40081220 0x97 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x40081220 rtc_vddsdio_get_config + *fill* 0x400812b7 0x1 + .text.rtc_vddsdio_set_config + 0x400812b8 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x400812b8 rtc_vddsdio_set_config + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + *fill* 0x40081300 0x0 + .text.mpu_hal_set_region_access + 0x40081300 0x33 esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x40081300 mpu_hal_set_region_access + *(.iram .iram.*) + *(.fini.literal) + *(.fini) + *(.gnu.version) + 0x40081343 . = (. + 0x10) + *fill* 0x40081333 0x10 + 0x40081343 _text_end = ABSOLUTE (.) + 0x40081343 _etext = . + +.xt.prop 0x00000000 0x3150 + *(.xt.prop .gnu.linkonce.prop.*) + .xt.prop 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + 0x24 (size before relaxing) + .xt.prop 0x00000000 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .xt.prop 0x00000030 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + 0x150 (size before relaxing) + .xt.prop 0x00000048 0x24 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x0000006c 0x3c esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .xt.prop 0x000000a8 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .xt.prop 0x00000108 0x6c esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x9c (size before relaxing) + .xt.prop 0x00000174 0x654 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x7b0 (size before relaxing) + .xt.prop 0x000007c8 0xf0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.prop 0x000008b8 0x6d8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x864 (size before relaxing) + .xt.prop 0x00000f90 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .xt.prop 0x00000fc0 0x15c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.prop 0x0000111c 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .xt.prop 0x00001140 0x150 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .xt.prop 0x00001290 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x000012cc 0x15c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x174 (size before relaxing) + .xt.prop 0x00001428 0x6c esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .xt.prop 0x00001494 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x000014b8 0x6c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.prop 0x00001524 0x54 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x00001578 0x24 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x0000159c 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xt.prop 0x000015fc 0x570 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x6a8 (size before relaxing) + .xt.prop 0x00001b6c 0x1d4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x30c (size before relaxing) + .xt.prop 0x00001d40 0x144 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .xt.prop 0x00001e84 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .xt.prop 0x00001eb4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x9d8 (size before relaxing) + .xt.prop 0x00001eb4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00001eb4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x4b0 (size before relaxing) + .xt.prop 0x00001eb4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x5f4 (size before relaxing) + .xt.prop 0x00001eb4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x42c (size before relaxing) + .xt.prop 0x00001eb4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x2b8 (size before relaxing) + .xt.prop 0x00001eb4 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.prop 0x00001efc 0x60c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x990 (size before relaxing) + .xt.prop 0x00002508 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .xt.prop 0x00002634 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x000026c4 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x33c (size before relaxing) + .xt.prop 0x0000285c 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x90 (size before relaxing) + .xt.prop 0x0000288c 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xt.prop 0x000028c8 0x450 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x804 (size before relaxing) + .xt.prop 0x00002d18 0x30 esp-idf/log/liblog.a(log_noos.c.obj) + 0xd8 (size before relaxing) + .xt.prop 0x00002d48 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x18 (size before relaxing) + .xt.prop 0x00002d48 0x60 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xt.prop 0x00002da8 0x90 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0xfc (size before relaxing) + .xt.prop 0x00002e38 0x90 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x00002ec8 0x234 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x384 (size before relaxing) + .xt.prop 0x000030fc 0x3c esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x45c (size before relaxing) + .xt.prop 0x00003138 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + 0x3c (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + 0x3c (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + 0x24 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + 0x24 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + 0x420 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + 0x228 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + 0x264 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + 0x6c (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + 0xa8 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + 0x54 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + 0x6c (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + 0x30 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + 0x180 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + 0x168 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + 0x30 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + 0x90 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + 0x60 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + 0x78 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + 0x18 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + 0x15c (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + 0xd8 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + 0xc0 (size before relaxing) + .xt.prop 0x00003138 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + 0x1a4 (size before relaxing) + .xt.prop 0x00003138 0x18 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + 0x84 (size before relaxing) + .xt.prop 0x00003150 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + 0x30 (size before relaxing) + +.xt.lit 0x00000000 0x2d8 + *(.xt.lit .gnu.linkonce.p.*) + .xt.lit 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + 0x8 (size before relaxing) + .xt.lit 0x00000000 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + 0x18 (size before relaxing) + .xt.lit 0x00000000 0x8 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .xt.lit 0x00000008 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .xt.lit 0x00000018 0x8 esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000020 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00000080 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.lit 0x00000088 0x40 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000000c8 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .xt.lit 0x000000d0 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.lit 0x000000e8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .xt.lit 0x000000f8 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000100 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000110 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .xt.lit 0x00000118 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000118 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.lit 0x00000120 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000128 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000128 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xt.lit 0x00000138 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x00000178 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000001a0 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .xt.lit 0x000001d0 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .xt.lit 0x000001d8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000001d8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x70 (size before relaxing) + .xt.lit 0x000001d8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000001d8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x000001d8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000001d8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.lit 0x000001e0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x100 (size before relaxing) + .xt.lit 0x00000240 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .xt.lit 0x00000250 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000258 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000270 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000278 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xt.lit 0x00000280 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x000002b8 0x8 esp-idf/log/liblog.a(log_noos.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000002c0 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000002c0 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x000002c8 0x8 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000002d0 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000002d8 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x000002d8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x000002d8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + 0x8 (size before relaxing) + .xt.lit 0x000002d8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x000002d8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + 0x8 (size before relaxing) + .xt.lit 0x000002d8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + 0x8 (size before relaxing) + .xt.lit 0x000002d8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + 0x8 (size before relaxing) + .xt.lit 0x000002d8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + 0x8 (size before relaxing) + .xt.lit 0x000002d8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + 0x8 (size before relaxing) + .xt.lit 0x000002d8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + 0x8 (size before relaxing) + .xt.lit 0x000002d8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + 0x8 (size before relaxing) + .xt.lit 0x000002d8 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + 0x10 (size before relaxing) +OUTPUT(bootloader.elf elf32-xtensa-le) + +.xtensa.info 0x00000000 0x38 + .xtensa.info 0x00000000 0x38 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .xtensa.info 0x00000038 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_noos.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .xtensa.info 0x00000038 0x0 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + +.comment 0x00000000 0x2f + .comment 0x00000000 0x2f C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + 0x30 (size before relaxing) + .comment 0x0000002f 0x30 esp-idf/soc/libsoc.a(dport_access.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .comment 0x0000002f 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .comment 0x0000002f 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .comment 0x0000002f 0x30 esp-idf/log/liblog.a(log_noos.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .comment 0x0000002f 0x30 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + +.debug_frame 0x00000000 0x1648 + .debug_frame 0x00000000 0x40 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_frame 0x00000040 0x28 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_frame 0x00000068 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_frame 0x000000a8 0x40 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_frame 0x000000e8 0x1c0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x000002a8 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x000002d0 0x178 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x00000448 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_frame 0x00000470 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x000004c8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_frame 0x000004f0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_frame 0x00000530 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x000005d0 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x00000670 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_frame 0x00000698 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x000006c0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_frame 0x000006e8 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_frame 0x00000728 0x88 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x000007b0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_frame 0x000007f0 0x1f0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x000009e0 0xe8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_frame 0x00000ac8 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_frame 0x00000b68 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_frame 0x00000b90 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_frame 0x00000bb8 0x310 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x00000ec8 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_frame 0x00000f08 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x00000f60 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x00001048 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_frame 0x00001088 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_frame 0x000010b0 0x1a8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_frame 0x00001258 0x70 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_frame 0x000012c8 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_frame 0x000012f0 0x88 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00001378 0xd0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00001448 0x118 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_frame 0x00001560 0xe8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + +.debug_info 0x00000000 0x2ced7 + .debug_info 0x00000000 0xde esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_info 0x000000de 0x181 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_info 0x0000025f 0x235 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_info 0x00000494 0xdfd esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_info 0x00001291 0x23c5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x00003656 0x56c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x00003bc2 0x264f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x00006211 0xc6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_info 0x000062d7 0x596 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x0000686d 0x52 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_info 0x000068bf 0xa60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_info 0x0000731f 0x199b esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x00008cba 0xa12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x000096cc 0x39a esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_info 0x00009a66 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x00009b05 0x283 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_info 0x00009d88 0x217b esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_info 0x0000bf03 0xa99 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x0000c99c 0xb6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_info 0x0000ca52 0x4162 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x00010bb4 0x11b9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_info 0x00011d6d 0x3a2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_info 0x00015799 0x14fc esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_info 0x00016c95 0x17b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_info 0x00016e10 0x4f9d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x0001bdad 0xe5d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_info 0x0001cc0a 0x23bb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x0001efc5 0x1e08 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x00020dcd 0x162 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_info 0x00020f2f 0x1486 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_info 0x000223b5 0xd31 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_info 0x000230e6 0x28a esp-idf/log/liblog.a(log_noos.c.obj) + .debug_info 0x00023370 0x233 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_info 0x000235a3 0x22ad esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x00025850 0x259f esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x00027def 0x41eb esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_info 0x0002bfda 0xefd esp-idf/hal/libhal.a(mmu_hal.c.obj) + +.debug_abbrev 0x00000000 0x5c66 + .debug_abbrev 0x00000000 0x87 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_abbrev 0x00000087 0xaa esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_abbrev 0x00000131 0x163 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_abbrev 0x00000294 0x307 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_abbrev 0x0000059b 0x56c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x00000b07 0x1e8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x00000cef 0x51e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x0000120d 0x86 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_abbrev 0x00001293 0x1e2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x00001475 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_abbrev 0x000014c1 0x2f1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_abbrev 0x000017b2 0x42b esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x00001bdd 0x2b0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x00001e8d 0x184 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_abbrev 0x00002011 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x00002073 0x172 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_abbrev 0x000021e5 0x1bd esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_abbrev 0x000023a2 0x2a3 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x00002645 0x53 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_abbrev 0x00002698 0x5db esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x00002c73 0x389 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_abbrev 0x00002ffc 0x30d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_abbrev 0x00003309 0x2af esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_abbrev 0x000035b8 0x10b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_abbrev 0x000036c3 0x673 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x00003d36 0x390 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_abbrev 0x000040c6 0x22e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x000042f4 0x3ff esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x000046f3 0xcc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_abbrev 0x000047bf 0x213 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_abbrev 0x000049d2 0x3c9 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_abbrev 0x00004d9b 0x19f esp-idf/log/liblog.a(log_noos.c.obj) + .debug_abbrev 0x00004f3a 0x140 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_abbrev 0x0000507a 0x237 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x000052b1 0x2e7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00005598 0x3c5 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x0000595d 0x309 esp-idf/hal/libhal.a(mmu_hal.c.obj) + +.debug_loc 0x00000000 0x9bb7 + .debug_loc 0x00000000 0x56 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_loc 0x00000056 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_loc 0x00000079 0xd0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_loc 0x00000149 0x1260 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x000013a9 0x1bd esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x00001566 0x19d2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x00002f38 0x230 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x00003168 0x2ef esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_loc 0x00003457 0x523 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x0000397a 0x2a7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x00003c21 0x12b esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_loc 0x00003d4c 0xad esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_loc 0x00003df9 0x159 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x00003f52 0x101b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x00004f6d 0x513 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_loc 0x00005480 0x93 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_loc 0x00005513 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_loc 0x0000556f 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_loc 0x000055ae 0x1122 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x000066d0 0x342 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_loc 0x00006a12 0x3e2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x00006df4 0x52d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x00007321 0x15 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_loc 0x00007336 0xa8f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_loc 0x00007dc5 0x15 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_loc 0x00007dda 0x7f esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_loc 0x00007e59 0x45 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00007e9e 0x3bd esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x0000825b 0x8d1 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_loc 0x00008b2c 0x108b esp-idf/hal/libhal.a(mmu_hal.c.obj) + +.debug_aranges 0x00000000 0xa20 + .debug_aranges + 0x00000000 0x28 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_aranges + 0x00000028 0x20 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_aranges + 0x00000048 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_aranges + 0x00000070 0x28 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_aranges + 0x00000098 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x00000140 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x00000160 0x90 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x000001f0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_aranges + 0x00000210 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x00000240 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_aranges + 0x00000260 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_aranges + 0x00000288 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x000002d0 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x00000318 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_aranges + 0x00000338 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x00000358 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_aranges + 0x00000378 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_aranges + 0x000003a0 0x40 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x000003e0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_aranges + 0x00000408 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x000004c0 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_aranges + 0x00000520 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_aranges + 0x00000568 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_aranges + 0x00000588 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_aranges + 0x000005a8 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x000006c0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_aranges + 0x000006e8 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x00000718 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x00000778 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_aranges + 0x000007a0 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_aranges + 0x000007c0 0xa0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_aranges + 0x00000860 0x38 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_aranges + 0x00000898 0x20 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_aranges + 0x000008b8 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x000008f8 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000950 0x70 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x000009c0 0x60 esp-idf/hal/libhal.a(mmu_hal.c.obj) + +.debug_ranges 0x00000000 0x1990 + .debug_ranges 0x00000000 0x18 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_ranges 0x00000018 0x10 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_ranges 0x00000028 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_ranges 0x00000040 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_ranges 0x00000070 0x148 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x000001b8 0x60 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x00000218 0x398 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x000005b0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_ranges 0x000005c0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x00000600 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_ranges 0x00000610 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_ranges 0x00000640 0x118 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x00000758 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x000007c0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_ranges 0x000007e8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x000007f8 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_ranges 0x00000828 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_ranges 0x00000840 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x00000888 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_ranges 0x000008a0 0x150 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x000009f0 0x180 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_ranges 0x00000b70 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_ranges 0x00000ba8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_ranges 0x00000bb8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_ranges 0x00000bc8 0x4c0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x00001088 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_ranges 0x00001118 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x000011b0 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x000012c8 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_ranges 0x000012e0 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_ranges 0x000012f0 0xf8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_ranges 0x000013e8 0x28 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_ranges 0x00001410 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_ranges 0x00001438 0x50 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00001488 0xe8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00001570 0x1e8 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_ranges 0x00001758 0x238 esp-idf/hal/libhal.a(mmu_hal.c.obj) + +.debug_line 0x00000000 0x1b2c0 + .debug_line 0x00000000 0x1ce esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_line 0x000001ce 0x200 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_line 0x000003ce 0x3f1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_line 0x000007bf 0x643 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_line 0x00000e02 0x2378 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x0000317a 0x6f1 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x0000386b 0x262e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x00005e99 0x1f3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_line 0x0000608c 0x77d esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x00006809 0xa5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_line 0x000068ae 0xda5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_line 0x00007653 0xed4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x00008527 0x821 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x00008d48 0x4f8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_line 0x00009240 0xe6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x00009326 0x4db esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_line 0x00009801 0x2b6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_line 0x00009ab7 0xcb4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x0000a76b 0x8e5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_line 0x0000b050 0x1e0a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x0000ce5a 0x1553 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_line 0x0000e3ad 0x981 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_line 0x0000ed2e 0x386 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_line 0x0000f0b4 0x1f3 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_line 0x0000f2a7 0x2d40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x00011fe7 0xb9e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_line 0x00012b85 0xd9f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x00013924 0x101a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x0001493e 0x21d esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_line 0x00014b5b 0x354 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_line 0x00014eaf 0x219f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_line 0x0001704e 0x3e6 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_line 0x00017434 0x2d9 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_line 0x0001770d 0x42c esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x00017b39 0xe0e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x00018947 0x15b4 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_line 0x00019efb 0x13c5 esp-idf/hal/libhal.a(mmu_hal.c.obj) + +.debug_str 0x00000000 0xb1ca + .debug_str 0x00000000 0xb1ca esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x2a3 (size before relaxing) + .debug_str 0x0000b1ca 0x31d esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_str 0x0000b1ca 0x333 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_str 0x0000b1ca 0x107d esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_str 0x0000b1ca 0x167b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x0000b1ca 0x4c5 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x0000b1ca 0x1729 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x0000b1ca 0x2bf esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_str 0x0000b1ca 0xa54 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x0000b1ca 0x219 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_str 0x0000b1ca 0xf52 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_str 0x0000b1ca 0x138d esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x0000b1ca 0xe91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x0000b1ca 0x70f esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_str 0x0000b1ca 0x2aa esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_str 0x0000b1ca 0x346 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_str 0x0000b1ca 0x16d6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_str 0x0000b1ca 0xe40 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_str 0x0000b1ca 0x2c2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_str 0x0000b1ca 0x29b5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_str 0x0000b1ca 0x138a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_str 0x0000b1ca 0x2bb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_str 0x0000b1ca 0x9c8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_str 0x0000b1ca 0x330 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_str 0x0000b1ca 0x319f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_str 0x0000b1ca 0x1496 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_str 0x0000b1ca 0x180e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_str 0x0000b1ca 0x1aeb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_str 0x0000b1ca 0x30e esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_str 0x0000b1ca 0x950 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_str 0x0000b1ca 0x9ab esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_str 0x0000b1ca 0x354 esp-idf/log/liblog.a(log_noos.c.obj) + .debug_str 0x0000b1ca 0x347 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_str 0x0000b1ca 0x17e9 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x0000b1ca 0x1924 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x0000b1ca 0x2456 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_str 0x0000b1ca 0x667 esp-idf/hal/libhal.a(mmu_hal.c.obj) + +Cross Reference Table + +Symbol File +Cache_Flush_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +Cache_Read_Disable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +Cache_Read_Enable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +EFUSE esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +ESP_EFUSE_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_RATED esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_PACKAGE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_CHIP_PACKAGE_4BIT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_SDIO_HOST esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_RD_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_HD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +GPIO esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +GPIO_HOLD_MASK esp-idf/soc/libsoc.a(gpio_periph.c.obj) +GPIO_PIN_MUX_REG esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +GPIO_PIN_MUX_REG_OFFSET esp-idf/soc/libsoc.a(gpio_periph.c.obj) +RTCCNTL esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +SPI0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SPI1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +TIMERG0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +TIMERG1 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) +UART0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) +UART1 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) +UART2 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) +_ITM_deregisterTMCloneTable C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +_ITM_registerTMCloneTable C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +__DTOR_END__ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +__TMC_END__ C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +__adddf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__ashldi3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__assert_func esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + esp-idf/log/liblog.a(log_noos.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +__bswapsi2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +__deregister_frame_info C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +__divdf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__divdi3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +__divsf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__extendsfdf2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fixdfsi C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fixunsdfsi C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatsidf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatunsidf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__getreent esp-idf/main/libmain.a(bootloader_start.c.obj) +__lshrdi3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__muldf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__popcountsi2 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__register_frame_info C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +__sf C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) +__subdf3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) +__udivdi3 C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +_bss_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +_bss_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +_data_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +_data_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +_dram_end esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_dram_start esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_fini C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o +_impure_data C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) +_impure_ptr C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-impure.o) +_init C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o +_loader_text_end esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_loader_text_start esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_start C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o +abort esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_after_init esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_ana_clock_glitch_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_before_init esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_check_bootloader_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_clear_bss_section esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_clock_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_clock_get_rated_freq_mhz esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_common_check_long_hold_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_check_long_hold_gpio_level esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_erase_part_type_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_chip_ver_pkg esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +bootloader_common_read_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_config_wdt esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_console_deinit esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_console_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_enable_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_fill_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_get_spi_mode esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_get_wp_pin esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_gpio_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_print_banner esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +bootloader_read_bootloader_header esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bzero C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +cache_flash_mmu_set_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +call_start_cpu0 esp-idf/main/libmain.a(bootloader_start.c.obj) +efuse_hal_blk_version esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +efuse_hal_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_flash_encryption_enabled esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +efuse_hal_get_disable_wafer_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_rated_freq_mhz esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_bootloader_desc esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) +esp_bootloader_get_description esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +esp_clk_apb_freq esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) +esp_dport_access_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) +esp_dport_access_sequence_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) +esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_disable_basic_rom_console esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_utility_apply_34_encoding esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_pending esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_single_block esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_flash_encryption_cfg_verify_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_encryption_enabled esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_image_get_flash_size esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_get_metadata esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_log_early_timestamp esp-idf/log/liblog.a(log_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_log_impl_lock esp-idf/log/liblog.a(log_noos.c.obj) +esp_log_impl_lock_timeout esp-idf/log/liblog.a(log_noos.c.obj) +esp_log_impl_unlock esp-idf/log/liblog.a(log_noos.c.obj) +esp_log_timestamp esp-idf/log/liblog.a(log_noos.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +esp_rom_delay_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +esp_rom_efuse_get_flash_gpio_info esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_get_cpu_ticks_per_us esp-idf/log/liblog.a(log_noos.c.obj) +esp_rom_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +esp_rom_gpio_connect_in_signal esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_gpio_connect_out_signal esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_gpio_pad_pullup_only esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_rom_gpio_pad_select_gpio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_rom_install_channel_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_install_uart_printf esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) +esp_rom_md5_final esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) +esp_rom_regi2c_read_mask esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_regi2c_write esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_regi2c_write_mask esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_set_cpu_ticks_per_us esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_software_reset_system esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +esp_rom_spiflash_clear_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_readmode esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_area esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_block esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_erase_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_sector esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_lock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_prepare_encrypted_data esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_read_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_statushigh esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_user_cmd esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_set_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_unlock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_wait_idle esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write_encrypted_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted_enable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_uart_flush_tx esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) +esp_rom_uart_tx_wait_idle esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) +ets_install_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_install_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_sha_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +g_rom_flashchip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +g_rom_spiflash_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +g_rom_spiflash_dummy_len_plus esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +g_ticks_per_us_app esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +g_ticks_per_us_pro esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +main C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o +memcmp C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcmp.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +memcpy C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memcpy.o) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +memset C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-memset.o) + C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-bzero.o) + esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_check_valid_ext_vaddr_region esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_paddr_to_vaddr esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_unmap_all esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +mmu_hal_unmap_region esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_vaddr_to_paddr esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +mpu_hal_set_region_access esp-idf/hal/libhal.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) +range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) +rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_apll_coeff_calc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_coeff_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_cal_ratio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_to_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_cpu_set_to_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) +rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_freq_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) +rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +rtc_clk_slow_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) +rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_wait_for_slow_cycle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +rtc_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_time_slowclk_to_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_time_us_to_slowclk esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_vddsdio_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtc_vddsdio_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +start_write_addr esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +strcspn C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strlen C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strlen.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strncpy C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strncpy.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strstr C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +wdt_hal_config_stage esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_deinit esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) +wdt_hal_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) +wdt_hal_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_feed esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) +wdt_hal_handle_intr esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) +wdt_hal_init esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_is_enabled esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) +wdt_hal_set_flashboot_en esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_write_protect_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_write_protect_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) diff --git a/ESPIDFNEW/build/bootloader/build.ninja b/ESPIDFNEW/build/bootloader/build.ninja new file mode 100644 index 0000000..c7b1bb7 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/build.ninja @@ -0,0 +1,2353 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.24 + +# 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 = C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 uf2 + +build uf2: phony CMakeFiles/uf2 + + +############################################# +# Utility command for uf2-app + +build uf2-app: phony CMakeFiles/uf2-app + + +############################################# +# 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_esp32.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_esp32.c + +build CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj: C_COMPILER__bootloader.2eelf_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/project_elf_src_esp32.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_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always + INCLUDES = -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include + OBJECT_DIR = CMakeFiles\bootloader.elf.dir + OBJECT_FILE_DIR = CMakeFiles\bootloader.elf.dir + + +# ============================================================================= +# 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_esp32.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 C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/ld/esp32.peripherals.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.api.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libgcc.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-funcs.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/main/ld/esp32/bootloader.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/main/ld/esp32/bootloader.rom.ld || _project_elf_src esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + LINK_FLAGS = -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32=0 -Wl,--Map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.map -Wl,--no-warn-rwx-segments -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T esp32.rom.ld -T esp32.rom.api.ld -T esp32.rom.libgcc.ld -T esp32.rom.newlib-funcs.ld -T esp32.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 C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a -u esp_dport_access_reg_read -u __assert_func -u esp_bootloader_desc -u abort -u __ubsan_include -u bootloader_hooks_include + LINK_PATH = -LC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld -LC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/ld -LC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/main/ld/esp32 + OBJECT_DIR = CMakeFiles\bootloader.elf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = bootloader.elf + TARGET_PDB = bootloader.elf.dbg + + +############################################# +# 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 edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config.env && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Job/esp/v5.2.2/esp-idf/Kconfig --sdkconfig-rename C:/Users/Job/esp/v5.2.2/esp-idf/sdkconfig.rename --config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config.env --env IDF_TARGET=esp32 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.2.2 --dont-write-deprecated --output config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/check_term.py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/kconfigs_projbuild.in KCONFIG_CONFIG=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig IDF_TARGET=esp32 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.2.2 C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/menuconfig_wrapper.py C:/Users/Job/esp/v5.2.2/esp-idf/Kconfig && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Job/esp/v5.2.2/esp-idf/Kconfig --sdkconfig-rename C:/Users/Job/esp/v5.2.2/esp-idf/sdkconfig.rename --config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config.env --env IDF_TARGET=esp32 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.2.2 --output config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\confserver + +build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config.env && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe -m kconfserver --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config.env --kconfig C:/Users/Job/esp/v5.2.2/esp-idf/Kconfig --sdkconfig-rename C:/Users/Job/esp/v5.2.2/esp-idf/sdkconfig.rename --config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\save-defconfig + +build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config.env && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Job/esp/v5.2.2/esp-idf/Kconfig --sdkconfig-rename C:/Users/Job/esp/v5.2.2/esp-idf/sdkconfig.rename --config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config.env --dont-write-deprecated --output savedefconfig C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 elf2image --flash_mode dio --flash_freq 40m --flash_size 2MB --dont-append-digest --min-rev-full 0 --max-rev-full 399 --dont-append-digest -o C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.bin C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.elf && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Generated C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.bin" && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E md5sum C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.bin > C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32 -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2 + +build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;C:/Users/Job/esp/v5.2.2/esp-idf/tools/mkuf2.py;write;--chip;esp32 -D SERIAL_TOOL_ARGS=--json;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/flasher_args.json;-o;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/uf2.bin -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2-app + +build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;C:/Users/Job/esp/v5.2.2/esp-idf/tools/mkuf2.py;write;--chip;esp32 -D SERIAL_TOOL_ARGS=--json;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/flasher_args.json;-o;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/uf2-app.bin;--bin;app -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 = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--target;esp32;--revision;0;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.elf -D WORKING_DIRECTORY=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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_esp32.c + + +############################################# +# Custom command for project_elf_src_esp32.c + +build project_elf_src_esp32.c | ${cmake_ninja_workdir}project_elf_src_esp32.c: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/project_elf_src_esp32.c" + DESC = Generating project_elf_src_esp32.c + restat = 1 + + +############################################# +# Custom command for CMakeFiles\size + +build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND bootloader.map + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____idf_xtensa_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\xtensa\libxtensa.a + TARGET_PDB = xtensa.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\xtensa && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\xtensa && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\newlib && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\newlib && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\interrupts.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\gpio_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/uart_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\uart_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/dport_access.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\dport_access.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/adc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\adc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/spi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\spi_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/ledc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\ledc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/pcnt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\pcnt_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/rmt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\rmt_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\sdm_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/i2s_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\i2s_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/i2c_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\i2c_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/timer_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\timer_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/lcd_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\lcd_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\mcpwm_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/mpi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\mpi_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\sdmmc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/touch_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\touch_sensor_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/twai_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\twai_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/dac_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\dac_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\rtc_io_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdio_slave_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\sdio_slave_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + + +# ============================================================================= +# 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/esp32/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj || esp-idf/micro-ecc/libmicro-ecc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\soc\libsoc.a + TARGET_PDB = soc.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\soc && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\soc && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include + OBJECT_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + OBJECT_FILE_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\micro-ecc\libmicro-ecc.a + TARGET_PDB = micro-ecc.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/micro-ecc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\micro-ecc && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\micro-ecc && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mpu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\efuse_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32 + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/wdt_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\wdt_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/cache_hal_esp32.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\cache_hal_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32 + + +# ============================================================================= +# 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/esp32/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj || esp-idf/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\hal\libhal.a + TARGET_PDB = hal.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\hal && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\hal && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/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 + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\spi_flash\libspi_flash.a + TARGET_PDB = spi_flash.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\spi_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\spi_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/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 + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\esp_bootloader_format\libesp_bootloader_format.a + TARGET_PDB = esp_bootloader_format.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_bootloader_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_bootloader_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_app_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_app_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_random_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/esp32/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\bootloader_sha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/esp32/bootloader_soc.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\bootloader_soc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/esp32/bootloader_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\bootloader_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + + +# ============================================================================= +# 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_esp32.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_esp32.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_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/esp32/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.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 -Wno-frame-address -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_FILE = esp-idf\bootloader_support\libbootloader_support.a + TARGET_PDB = bootloader_support.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\bootloader_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\bootloader_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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/esp32/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\esp_efuse_table.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\without_key_purposes\three_key_blocks\esp_efuse_api_key.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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\without_key_purposes\three_key_blocks + + +# ============================================================================= +# 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/esp32/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/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/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj || esp-idf/esp_system/libesp_system.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\efuse\libefuse.a + TARGET_PDB = efuse.a.dbg + + +############################################# +# 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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\efuse && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192" + + +############################################# +# 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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\efuse && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192 --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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\efuse && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32 --max_blk_len 192" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/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 + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\esp_system\libesp_system.a + TARGET_PDB = esp_system.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_system && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_system && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\cpu_region_protect.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\rtc_clk.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\rtc_clk_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\rtc_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\rtc_sleep.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\rtc_time.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\esp32\chip_info.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_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\esp32 + + +# ============================================================================= +# 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/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj || esp-idf/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_hw_support\libesp_hw_support.a + TARGET_PDB = esp_hw_support.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_hw_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_hw_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_hw_support\port\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/edit_cache: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_hw_support\port\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\esp_common\libesp_common.a + TARGET_PDB = esp_common.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_common && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_common && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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_crc.c.obj: C_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj: ASM_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + + +# ============================================================================= +# 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_crc.c.obj 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_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_longjmp.S.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_rom\libesp_rom.a + TARGET_PDB = esp_rom.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_rom && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esp_rom && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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 || esp-idf/log/CMakeFiles/__idf_log.dir + +build esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj: C_COMPILER____idf_log_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/log/log.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\log.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + +build esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj: C_COMPILER____idf_log_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/log/log_buffers.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\log_buffers.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + +build esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj: C_COMPILER____idf_log_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/log/log_noos.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=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\log_noos.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + + +# ============================================================================= +# 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/log.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\log\liblog.a + TARGET_PDB = log.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\log && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\log && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\esptool_py && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x1000 C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\freertos && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\freertos && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/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 + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\main\libmain.a + TARGET_PDB = main.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\main && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader\esp-idf\main && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader\subproject -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader + +build all: phony app bootloader.elf esp-idf/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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_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: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_app_format + +build esp-idf/esp_app_format/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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/esp32/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/port/esp32 + +build esp-idf/esp_hw_support/port/esp32/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_system + +build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/freertos + +build esp-idf/freertos/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc + +build esp-idf/micro-ecc/all: phony esp-idf/micro-ecc/libmicro-ecc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/newlib + +build esp-idf/newlib/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 | C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/.git/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/main/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/sources.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/log/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/openthread/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/build.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/component.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/dfu.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/idf.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/project.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/project_description.json.in C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/targets.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/toolchain-esp32.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/utilities.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/version.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/config.env.in C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/.git/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/main/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/sources.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/log/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/openthread/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/build.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/component.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/dfu.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/idf.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/project.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/project_description.json.in C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/targets.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/toolchain-esp32.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/utilities.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/version.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/config.env.in C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake 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/ESPIDFNEW/build/bootloader/cmake_install.cmake b/ESPIDFNEW/build/bootloader/cmake_install.cmake new file mode 100644 index 0000000..6175375 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/ESPIDFNEW/build/bootloader/compile_commands.json b/ESPIDFNEW/build/bootloader/compile_commands.json new file mode 100644 index 0000000..580616b --- /dev/null +++ b/ESPIDFNEW/build/bootloader/compile_commands.json @@ -0,0 +1,442 @@ +[ +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -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_esp32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\build\\bootloader\\project_elf_src_esp32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\build\\bootloader\\project_elf_src_esp32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\eri.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\eri.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xt_trax.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xt_trax.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\lldesc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\lldesc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\dport_access_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\dport_access_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\interrupts.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\interrupts.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\interrupts.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\gpio_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\gpio_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\gpio_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\uart_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\uart_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\uart_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\dport_access.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\dport_access.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\dport_access.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\adc_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\adc_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\adc_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\spi_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\spi_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\spi_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\ledc_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\ledc_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\ledc_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\pcnt_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\pcnt_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\pcnt_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rmt_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\rmt_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\rmt_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\sdm_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdm_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdm_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\i2s_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\i2s_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\i2s_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\i2c_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\i2c_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\i2c_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\timer_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\timer_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\timer_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\lcd_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\lcd_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\lcd_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\mcpwm_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\mcpwm_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\mcpwm_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\mpi_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\mpi_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\mpi_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\sdmmc_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdmmc_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdmmc_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\touch_sensor_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\touch_sensor_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\touch_sensor_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\twai_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\twai_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\twai_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\dac_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\dac_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\dac_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_io_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\rtc_io_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\rtc_io_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\sdio_slave_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdio_slave_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdio_slave_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\hal_utils.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\hal_utils.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mpu_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mpu_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\efuse_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\efuse_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\efuse_hal.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\efuse_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\efuse_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\wdt_hal_iram.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\wdt_hal_iram.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\wdt_hal_iram.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mmu_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mmu_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\cache_hal_esp32.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\cache_hal_esp32.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\cache_hal_esp32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_esp32.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_esp32.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\bootloader_sha.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_sha.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_sha.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\bootloader_soc.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_soc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_soc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\bootloader_esp32.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_esp32.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_esp32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\esp_efuse_table.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_table.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_table.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\esp_efuse_fields.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_fields.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_fields.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\esp_efuse_utility.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_utility.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_utility.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\esp_err.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\esp_err.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\cpu.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\cpu.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\cpu_region_protect.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cpu_region_protect.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cpu_region_protect.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_clk.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_clk_init.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_init.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_sleep.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_sleep.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_sleep.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_time.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_time.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_time.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\chip_info.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\chip_info.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\chip_info.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\log.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\log_buffers.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log_buffers.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log_buffers.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\log_noos.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log_noos.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log_noos.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c" +} +] \ No newline at end of file diff --git a/ESPIDFNEW/build/bootloader/config.env b/ESPIDFNEW/build/bootloader/config.env new file mode 100644 index 0000000..5bde2aa --- /dev/null +++ b/ESPIDFNEW/build/bootloader/config.env @@ -0,0 +1,12 @@ +{ + "COMPONENT_KCONFIGS": "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/log/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/sdkconfig.rename.esp32;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/sdkconfig.rename.esp32;C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/sdkconfig.rename", + "IDF_TARGET": "esp32", + "IDF_TOOLCHAIN": "gcc", + "IDF_VERSION": "5.2.2", + "IDF_ENV_FPGA": "", + "IDF_PATH": "C:/Users/Job/esp/v5.2.2/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/kconfigs_projbuild.in" +} diff --git a/ESPIDFNEW/build/bootloader/config/kconfig_menus.json b/ESPIDFNEW/build/bootloader/config/kconfig_menus.json new file mode 100644 index 0000000..76e59df --- /dev/null +++ b/ESPIDFNEW/build/bootloader/config/kconfig_menus.json @@ -0,0 +1,8865 @@ +[ + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BROWNOUT_RESET_SUPPORTED", + "name": "SOC_BROWNOUT_RESET_SUPPORTED", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_DIV_SUPPORTED", + "name": "SOC_TWAI_BRP_DIV_SUPPORTED", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DPORT_WORKAROUND", + "name": "SOC_DPORT_WORKAROUND", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CAPS_ECO_VER_MAX", + "name": "SOC_CAPS_ECO_VER_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "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_DAC_SUPPORTED", + "name": "SOC_DAC_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_MCPWM_SUPPORTED", + "name": "SOC_MCPWM_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_SDMMC_HOST_SUPPORTED", + "name": "SOC_SDMMC_HOST_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_PCNT_SUPPORTED", + "name": "SOC_PCNT_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_SDIO_SLAVE_SUPPORTED", + "name": "SOC_SDIO_SLAVE_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_EFUSE_SUPPORTED", + "name": "SOC_EFUSE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EMAC_SUPPORTED", + "name": "SOC_EMAC_SUPPORTED", + "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_CCOMP_TIMER_SUPPORTED", + "name": "SOC_CCOMP_TIMER_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_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_SUPPORT_COEXISTENCE", + "name": "SOC_SUPPORT_COEXISTENCE", + "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_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_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_ULP_FSM_SUPPORTED", + "name": "SOC_ULP_FSM_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_DPORT_WORKAROUND_DIS_INTERRUPT_LVL", + "name": "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XTAL_SUPPORT_26M", + "name": "SOC_XTAL_SUPPORT_26M", + "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_XTAL_SUPPORT_AUTO_DETECT", + "name": "SOC_XTAL_SUPPORT_AUTO_DETECT", + "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_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_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_SHARED_POWER", + "name": "SOC_ADC_SHARED_POWER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHARED_IDCACHE_SUPPORTED", + "name": "SOC_SHARED_IDCACHE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_IDCACHE_PER_CORE", + "name": "SOC_IDCACHE_PER_CORE", + "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": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_CHAN_NUM", + "name": "SOC_DAC_CHAN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_RESOLUTION", + "name": "SOC_DAC_RESOLUTION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_DMA_16BIT_ALIGN", + "name": "SOC_DAC_DMA_16BIT_ALIGN", + "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_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_I2C_NUM", + "name": "SOC_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_APB", + "name": "SOC_I2C_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_STOP_INDEPENDENT", + "name": "SOC_I2C_STOP_INDEPENDENT", + "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_1", + "name": "SOC_I2S_HW_VERSION_1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_APLL", + "name": "SOC_I2S_SUPPORTS_APLL", + "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_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_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_SUPPORTS_PDM_RX", + "name": "SOC_I2S_SUPPORTS_PDM_RX", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_ADC_DAC", + "name": "SOC_I2S_SUPPORTS_ADC_DAC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_ADC", + "name": "SOC_I2S_SUPPORTS_ADC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_DAC", + "name": "SOC_I2S_SUPPORTS_DAC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_LCD_CAMERA", + "name": "SOC_I2S_SUPPORTS_LCD_CAMERA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_TRANS_SIZE_ALIGN_WORD", + "name": "SOC_I2S_TRANS_SIZE_ALIGN_WORD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_LCD_I80_VARIANT", + "name": "SOC_I2S_LCD_I80_VARIANT", + "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_I80_BUSES", + "name": "SOC_LCD_I80_BUSES", + "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_LEDC_HAS_TIMER_SPECIFIC_MUX", + "name": "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX", + "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_REF_TICK", + "name": "SOC_LEDC_SUPPORT_REF_TICK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_HS_MODE", + "name": "SOC_LEDC_SUPPORT_HS_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_MMU_PERIPH_NUM", + "name": "SOC_MMU_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "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_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_REF_TICK", + "name": "SOC_RMT_SUPPORT_REF_TICK", + "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_CHANNEL_CLK_INDEPENDENT", + "name": "SOC_RMT_CHANNEL_CLK_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_HD_BOTH_INOUT_SUPPORTED", + "name": "SOC_SPI_HD_BOTH_INOUT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_AS_CS_SUPPORTED", + "name": "SOC_SPI_AS_CS_SUPPORTED", + "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_DMA_CHAN_NUM", + "name": "SOC_SPI_DMA_CHAN_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_SUPPORT_CLK_APB", + "name": "SOC_SPI_SUPPORT_CLK_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_MAX_PRE_DIVIDER", + "name": "SOC_SPI_MAX_PRE_DIVIDER", + "range": null, + "title": null, + "type": "int" + }, + { + "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_26M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_26M_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_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_TOTAL_TIMERS", + "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "range": null, + "title": null, + "type": "int" + }, + { + "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_TOUCH_VERSION_1", + "name": "SOC_TOUCH_VERSION_1", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_PAD_MEASURE_WAIT_MAX", + "name": "SOC_TOUCH_PAD_MEASURE_WAIT_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PAD_THRESHOLD_MAX", + "name": "SOC_TOUCH_PAD_THRESHOLD_MAX", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_BRP_MIN", + "name": "SOC_TWAI_BRP_MIN", + "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_SUPPORT_MULTI_ADDRESS_LAYOUT", + "name": "SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT", + "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_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_REF_TICK", + "name": "SOC_UART_SUPPORT_REF_TICK", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_SPIRAM_SUPPORTED", + "name": "SOC_SPIRAM_SUPPORTED", + "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_SHA_SUPPORT_PARALLEL_ENG", + "name": "SOC_SHA_SUPPORT_PARALLEL_ENG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_ENDIANNESS_BE", + "name": "SOC_SHA_ENDIANNESS_BE", + "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_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_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": "bool" + }, + { + "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_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_192", + "name": "SOC_AES_SUPPORT_AES_192", + "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_SECURE_BOOT_V1", + "name": "SOC_SECURE_BOOT_V1", + "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": "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_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_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_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_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_RTC_FAST_MEM_PD", + "name": "SOC_PM_SUPPORT_RTC_FAST_MEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD", + "name": "SOC_PM_SUPPORT_RTC_SLOW_MEM_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_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_CLK_APLL_SUPPORTED", + "name": "SOC_CLK_APLL_SUPPORTED", + "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_SDMMC_USE_IOMUX", + "name": "SOC_SDMMC_USE_IOMUX", + "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_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_NAN_SUPPORT", + "name": "SOC_WIFI_NAN_SUPPORT", + "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_BT_CLASSIC_SUPPORTED", + "name": "SOC_BT_CLASSIC_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": "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_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_LINUX", + "name": "IDF_TARGET_LINUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_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": [], + "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)", + "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 -0s 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": [], + "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-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": "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": "!IDF_ENV_BRINGUP", + "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": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT && IDF_TARGET_ESP32S3 && 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 (note that on some SoCs.\nnot all pins have an internal pull-up, consult the hardware datasheet for details.) To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.", + "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]).\nNote that GPIO34-39 do not have an internal pullup and an external one must be provided.", + "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.", + "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 rtc_wdt_feed() for resetting counter of rtc_wdt.\nUse function rtc_wdt_disable() for disabling rtc_wdt.", + "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": [ + { + "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 implemention 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" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED && ((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 calculcation.\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 bootoloader 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) && ", + "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" + } + ], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "help": "Select the ECDSA key size. Two key sizes are supported\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n\nThe advantage of using 256 bit key 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 && SECURE_BOOT_BUILD_SIGNED_BINARIES", + "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 seperately 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 && 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 public key digest, causing an\nimmediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\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", + "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "range": null, + "title": "Allow additional read protecting of efuses", + "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.", + "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: DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD, SPI_DOWNLOAD_MSPI_DIS,\nDIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\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, 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 (default), 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": [], + "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 (includes revisions till ECO3).", + "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_HAS_UART_BUF_SWITCH", + "name": "ESP_ROM_HAS_UART_BUF_SWITCH", + "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_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_SW_FLOAT", + "name": "ESP_ROM_HAS_SW_FLOAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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": [ + { + "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": "IDF_TARGET_ESP32S3 && !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": "IDF_TARGET_ESP32S3 && !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": "SOC_MEMSPI_SRC_FREQ_120M && (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": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_64M", + "name": "ESPTOOLPY_FLASHFREQ_64M", + "range": null, + "title": "64 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_60M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_60M", + "name": "ESPTOOLPY_FLASHFREQ_60M", + "range": null, + "title": "60 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_48M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_48M", + "name": "ESPTOOLPY_FLASHFREQ_48M", + "range": null, + "title": "48 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_32M", + "name": "ESPTOOLPY_FLASHFREQ_32M", + "range": null, + "title": "32 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_30M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_30M", + "name": "ESPTOOLPY_FLASHFREQ_30M", + "range": null, + "title": "30 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_26M", + "name": "ESPTOOLPY_FLASHFREQ_26M", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_24M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_24M", + "name": "ESPTOOLPY_FLASHFREQ_24M", + "range": null, + "title": "24 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_16M", + "name": "ESPTOOLPY_FLASHFREQ_16M", + "range": null, + "title": "16 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_15M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_15M", + "name": "ESPTOOLPY_FLASHFREQ_15M", + "range": null, + "title": "15 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": "This is an invisible item, used to define the targets that defaults to use 80MHz Flash SPI speed.", + "id": "ESPTOOLPY_FLASHFREQ_80M_DEFAULT", + "name": "ESPTOOLPY_FLASHFREQ_80M_DEFAULT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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": "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" + } + ], + "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. This path is evaluated\nrelative to the project root directory.", + "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)", + "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 -0g flag to CFLAGS.\n- The \"Size\" setting will add the -0s flag to CFLAGS.\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": [ + { + "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": 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 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": "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" + } + ], + "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", + "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": "ESP32_REV_MIN_0", + "name": "ESP32_REV_MIN_0", + "range": null, + "title": "Rev v0.0 (ECO0)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_1", + "name": "ESP32_REV_MIN_1", + "range": null, + "title": "Rev v1.0 (ECO1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_1_1", + "name": "ESP32_REV_MIN_1_1", + "range": null, + "title": "Rev v1.1 (ECO1.1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_2", + "name": "ESP32_REV_MIN_2", + "range": null, + "title": "Rev v2.0 (ECO2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_3", + "name": "ESP32_REV_MIN_3", + "range": null, + "title": "Rev v3.0 (ECO3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_3_1", + "name": "ESP32_REV_MIN_3_1", + "range": null, + "title": "Rev v3.1 (ECO4)", + "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-revision", + "name": "ESP32_REV_MIN", + "title": "Minimum Supported ESP32 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MIN", + "name": "ESP32_REV_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MIN_FULL", + "name": "ESP32_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": "ESP32_REV_MAX_FULL", + "name": "ESP32_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": "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": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32_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": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32_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", + "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", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP && !ESP_SLEEP_POWER_DOWN_FLASH", + "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_POWER_DOWN_FLASH && (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, 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 activeare) 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": [], + "depends_on": "IDF_TARGET_ESP32C3", + "help": "Its not able to stall ESP32C3 systimer in sleep.\nTo fix related RTOS TICK issue, select it to disable related systimer during sleep.\nTODO: IDF-7036", + "id": "ESP_SLEEP_SYSTIMER_STALL_WORKAROUND", + "name": "ESP_SLEEP_SYSTIMER_STALL_WORKAROUND", + "range": null, + "title": "ESP32C3 SYSTIMER Stall Issue Workaround", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-esp_sleep_workaround", + "title": "ESP_SLEEP_WORKAROUND", + "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 150 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 32kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32kHz oscillator at 32K_XN pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_8MD256", + "name": "RTC_CLK_SRC_INT_8MD256", + "range": null, + "title": "Internal 8.5MHz oscillator, divided by 256 (~33kHz)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.\n\n- \"Internal 150kHz oscillator\" option provides lowest deep sleep current\n consumption, and does not require extra external components. However\n frequency stability with respect to temperature is poor, so time may\n drift in deep/light sleep modes.\n- \"External 32kHz crystal\" provides better frequency stability, at the\n expense of slightly higher (1uA) deep sleep current consumption.\n- \"External 32kHz oscillator\" allows using 32kHz clock generated by an\n external circuit. In this case, external clock signal must be connected\n to 32K_XN pin. Amplitude should be <1.2V in case of sine wave signal,\n and <1V in case of square wave signal. Common mode voltage should be\n 0.1 < Vcm < 0.5Vamp, where Vamp is the signal amplitude.\n Additionally, 1nF capacitor must be connected between 32K_XP pin and\n ground. 32K_XP pin can not be used as a GPIO in this case.\n- \"Internal 8.5MHz oscillator divided by 256\" option results in higher\n deep sleep current (by 5uA) but has better frequency stability than\n the internal 150kHz oscillator. It does not require external components.", + "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", + "name": "RTC_CLK_SRC", + "title": "RTC clock source", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT_NONE", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT", + "range": null, + "title": "Method 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT_V2", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_V2", + "range": null, + "title": "Method 2", + "type": "bool" + } + ], + "depends_on": "RTC_CLK_SRC_EXT_CRYS && ESP32_REV_MIN_FULL < 200", + "help": "With some 32kHz crystal configurations, the X32N and X32P pins may not have enough\ndrive strength to keep the crystal oscillating. Choose the method to provide\nadditional current from touchpad 9 to the external 32kHz crystal. Note that\nthe deep sleep current is slightly high (4-5uA) and the touchpad and the\nwakeup sources of both touchpad and ULP are not available in method 1 and method 2.\n\nThis problem is fixed in ESP32 ECO 3, so this workaround is not needed. Setting the\nproject configuration to minimum revision ECO3 will disable this option, , allow\nall wakeup sources, and save some code size.\n\n- \"None\" option will not provide additional current to external crystal\n- \"Method 1\" option can't ensure 100% to solve the external 32k crystal start failed\n issue, but the touchpad can work in this method.\n- \"Method 2\" option can solve the external 32k issue, but the touchpad can't work\n in this method.", + "id": "component-config-hardware-settings-rtc-clock-config-additional-current-for-external-32khz-crystal", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_METHOD", + "title": "Additional current for external 32kHz crystal", + "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" + }, + { + "children": [], + "depends_on": "RTC_CLK_SRC_EXT_CRYS", + "help": "Number of attempts to repeat 32k XTAL calibration\nbefore giving up and switching to the internal RC.\nIncrease this option if the 32k crystal oscillator\ndoes not start and switches to internal RC.", + "id": "RTC_XTAL_CAL_RETRY", + "name": "RTC_XTAL_CAL_RETRY", + "range": null, + "title": "Number of attempts to repeat 32k XTAL 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": "PERIPH_CTRL_FUNC_IN_IRAM", + "name": "PERIPH_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place peripheral 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": "Wether 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.\nEnabling this option can improve driver performance as well.", + "id": "GDMA_CTRL_FUNC_IN_IRAM", + "name": "GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GDMA control functions into IRAM", + "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).", + "id": "GDMA_ISR_IRAM_SAFE", + "name": "GDMA_ISR_IRAM_SAFE", + "range": null, + "title": "GDMA ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "Wether to enable the debug log message for GDMA driver.\nNote that, this option only controls the GDMA driver log, won't affect other drivers.", + "id": "GDMA_ENABLE_DEBUG_LOG", + "name": "GDMA_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-gdma-configuration", + "title": "GDMA Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_24M && ", + "help": null, + "id": "XTAL_FREQ_24", + "name": "XTAL_FREQ_24", + "range": null, + "title": "24 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_26M && ", + "help": null, + "id": "XTAL_FREQ_26", + "name": "XTAL_FREQ_26", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_32M && ", + "help": null, + "id": "XTAL_FREQ_32", + "name": "XTAL_FREQ_32", + "range": null, + "title": "32 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_40M && ", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_AUTO_DETECT && ", + "help": null, + "id": "XTAL_FREQ_AUTO", + "name": "XTAL_FREQ_AUTO", + "range": null, + "title": "Autodetect", + "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.\n\nNote: The XTAL_FREQ_AUTO option allows the ESP target to automatically estimating XTAL clock's\noperating frequency. However, this feature is only supported on the ESP32. The ESP32 uses the\ninternal 8MHZ as a reference when estimating. Due to the internal oscillator's frequency being\ntemperature dependent, usage of the XTAL_FREQ_AUTO is not recommended in applications that operate\nin high ambient temperatures or use high-temperature qualified chips and modules.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", + "name": "XTAL_FREQ_SEL", + "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": [], + "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-hardware-settings-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 the\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-hardware-settings-crypto-dpa-protection", + "title": "Crypto DPA Protection", + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings", + "title": "Hardware Settings", + "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": [], + "depends_on": "FREERTOS_UNICORE", + "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.\nThis option depends on the CONFIG_FREERTOS_UNICORE option because RTC fast memory\ncan be accessed only by PRO_CPU core.", + "id": "ESP32_RTCDATA_IN_FAST_MEM", + "name": "ESP32_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": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "help": "RAM size dedicated for static variables (.data & .bss sections).\nPlease note that the actual length will be reduced by BTDM_RESERVE_DRAM if Bluetooth\ncontroller is enabled.", + "id": "ESP32_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_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 ESP32_FIXED_STATIC_RAM_SIZE", + "id": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Use fixed static RAM size", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_UNICORE", + "help": "If enabled, application can use IRAM as byte accessible region for storing data\n(Note: IRAM region cannot be used as task stack)\n\nThis is possible due to handling of exceptions `LoadStoreError (3)` and `LoadStoreAlignmentError (9)`\nEach unaligned read/write access will incur a penalty of maximum of 167 CPU cycles.", + "id": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY", + "name": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY", + "range": null, + "title": "Enable IRAM as 8 bit accessible memory", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP32_TRAX", + "help": "Reserve parts of SRAM1 for app IRAM which was previously reserved for bootloader DRAM.\nIf booting an app on an older bootloader from before this option was introduced, the app will fail\nto boot due to not recognizing the new IRAM memory area.\n\nIf this is the case please test carefully before pushing out any OTA updates.", + "id": "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM", + "name": "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM", + "range": null, + "title": "Reserve parts of SRAM1 for app IRAM (WARNING, read help before enabling)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory-non-backward-compatible-options", + "title": "Non-backward compatible options", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory", + "title": "Memory", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM", + "name": "ESP32_MEMMAP_TRACEMEM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "name": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_TRAX && !FREERTOS_UNICORE", + "help": "The ESP32 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.\n\n# Memory to reverse for trace, used in linker script", + "id": "ESP32_TRAX_TWOBANKS", + "name": "ESP32_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 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": "ESP32_TRAX", + "name": "ESP32_TRAX", + "range": null, + "title": "Use TRAX tracing feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_TRACEMEM_RESERVE_DRAM", + "name": "ESP32_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": [ + { + "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. This memory will be consumed first per\nheap initialization order by early startup services and scheduler related code. Speed\nwise RTC fast memory operates on APB 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": [], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "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 unwinding\nand generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary size (20% to\n100% larger). The main purpose of this option is to be able to have a backtrace parsed and printed by\nthe program itself, regardless of the serial monitor used.\nThis option shall NOT 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": [ + { + "children": [], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP", + "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": [ + { + "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": "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).\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 UART RX input in the ESP-IDF Bootloader and the app (including\ndefault default standard input of the app).\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 miliseconds. 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": "!IDF_TARGET_ESP32 && (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": null, + "help": "The FreeRTOS panic and unhandled exception handers 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": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_0", + "name": "ESP_BROWNOUT_DET_LVL_SEL_0", + "range": null, + "title": "2.43V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_1", + "name": "ESP_BROWNOUT_DET_LVL_SEL_1", + "range": null, + "title": "2.48V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "2.58V +/- 0.05", + "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.62V +/- 0.05", + "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.67V +/- 0.05", + "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.70V +/- 0.05", + "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.77V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_7", + "name": "ESP_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.80V +/- 0.05", + "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 ESP 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-esp-system-settings-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 ESP 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" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-brownout-detector", + "title": "Brownout Detector", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "If set, the first time the app boots it will disable the BASIC ROM Console\npermanently (by burning an eFuse).\n\nOtherwise, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\n(Enabling secure boot also disables the BASIC ROM Console by default.)", + "id": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "name": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "range": null, + "title": "Permanently disable BASIC ROM Console", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && SPIRAM", + "help": null, + "id": "ESP32_ECO3_CACHE_LOCK_FIX", + "name": "ESP32_ECO3_CACHE_LOCK_FIX", + "range": null, + "title": null, + "type": "bool" + }, + { + "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.\nTwo occasions need to restart the chip with interrupt so far.\n(1). For ESP32 version 1, brown-out reset function doesn't work (see ESP32 errata 3.4).\n So that we must restart from interrupt.\n(2). For special workflow, the chip needs do more things instead of restarting directly. This part\n needs to be done in callback function of interrupt.", + "id": "ESP_SYSTEM_BROWNOUT_INTR", + "name": "ESP_SYSTEM_BROWNOUT_INTR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", + "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" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "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": "!FREERTOS_UNICORE", + "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 vApplicationMinimalIdleHook( void );``\n- ``vApplicationMinimalIdleHook()`` is called from FreeRTOS minimal idle task(s)", + "id": "FREERTOS_USE_MINIMAL_IDLE_HOOK", + "name": "FREERTOS_USE_MINIMAL_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": [], + "depends_on": null, + "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": [], + "depends_on": null, + "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": null, + "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": null, + "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" + }, + { + "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": [ + { + "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" + } + ], + "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": [ + { + "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": "IDF_TARGET_ESP32", + "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": [], + "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": [], + "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" + } + ], + "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": "SPI_MASTER_ISR_IN_IRAM", + "help": "Enable this option to place SPI master hal layer functions into IRAM.", + "id": "HAL_SPI_MASTER_FUNC_IN_IRAM", + "name": "HAL_SPI_MASTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_SLAVE_ISR_IN_IRAM", + "help": "Enable this option to place SPI slave hal layer functions into IRAM.", + "id": "HAL_SPI_SLAVE_FUNC_IN_IRAM", + "name": "HAL_SPI_SLAVE_FUNC_IN_IRAM", + "range": null, + "title": null, + "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": "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.\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-output-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-output-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": [], + "depends_on": null, + "help": "Enables an additional global \"master\" log level check that occurs\nbefore a log tag cache lookup. This is useful if you want to\ncompile in a lot of logs that are selectable at runtime, but avoid the\nperformance hit during periods where you don't want log output. Examples\ninclude remote log forwarding, or disabling logs during a time-critical\nor CPU-intensive section and re-enabling them later. Results in\nlarger program size depending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master().\nThis 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": "Enable ANSI terminal color codes in bootloader output.\n\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Use ANSI terminal colors in log output", + "type": "bool" + }, + { + "children": [ + { + "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", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- Milliseconds since boot is calulated 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 is taken from POSIX time functions which use the chip's\n RTC and high resoultion 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- 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-output-log-timestamps", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Log Timestamps", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-output", + "title": "Log output", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_CRLF", + "name": "NEWLIB_STDOUT_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_LF", + "name": "NEWLIB_STDOUT_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_CR", + "name": "NEWLIB_STDOUT_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option allows configuring the desired line endings sent to UART\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 occurence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-newlib-line-ending-for-uart-output", + "name": "NEWLIB_STDOUT_LINE_ENDING", + "title": "Line ending for UART output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_CRLF", + "name": "NEWLIB_STDIN_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_LF", + "name": "NEWLIB_STDIN_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_CR", + "name": "NEWLIB_STDIN_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option allows configuring which input sequence on UART 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 occurence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-newlib-line-ending-for-uart-input", + "name": "NEWLIB_STDIN_LINE_ENDING", + "title": "Line ending for UART input", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "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/newlib/README\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": "NEWLIB_NANO_FORMAT", + "name": "NEWLIB_NANO_FORMAT", + "range": null, + "title": "Enable 'nano' formatting options for printf/scanf family", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", + "name": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", + "range": null, + "title": "RTC and high-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_RTC", + "name": "NEWLIB_TIME_SYSCALL_USE_RTC", + "range": null, + "title": "RTC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_HRT", + "name": "NEWLIB_TIME_SYSCALL_USE_HRT", + "range": null, + "title": "High-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_NONE", + "name": "NEWLIB_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.\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-newlib-timers-used-for-gettimeofday-function", + "name": "NEWLIB_TIME_SYSCALL", + "title": "Timers used for gettimeofday function", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-newlib", + "title": "Newlib", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "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 && !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 versionn, 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": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config. Invisible for users.", + "id": "SPI_FLASH_SUSPEND_QVL_SUPPORTED", + "name": "SPI_FLASH_SUSPEND_QVL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_SUSPEND_QVL_SUPPORTED && !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" + } + ], + "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.", + "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 && !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 documenation\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_SUPPORTED", + "name": "SPI_FLASH_VENDOR_XMC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_GD_SUPPORTED", + "name": "SPI_FLASH_VENDOR_GD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_ISSI_SUPPORTED", + "name": "SPI_FLASH_VENDOR_ISSI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_MXIC_SUPPORTED", + "name": "SPI_FLASH_VENDOR_MXIC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_WINBOND_SUPPORTED", + "name": "SPI_FLASH_VENDOR_WINBOND_SUPPORTED", + "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_MBEDTLS_USE_CRYPTO_ROM_IMPL", + "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/ESPIDFNEW/build/bootloader/config/sdkconfig.cmake b/ESPIDFNEW/build/bootloader/config/sdkconfig.cmake new file mode 100644 index 0000000..7b07124 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/config/sdkconfig.cmake @@ -0,0 +1,685 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file +# +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "Not determined") +set(CONFIG_SOC_TWAI_BRP_DIV_SUPPORTED "Not determined") +set(CONFIG_SOC_DPORT_WORKAROUND "Not determined") +set(CONFIG_SOC_CAPS_ECO_VER_MAX "301") +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_DAC_SUPPORTED "y") +set(CONFIG_SOC_UART_SUPPORTED "y") +set(CONFIG_SOC_MCPWM_SUPPORTED "y") +set(CONFIG_SOC_GPTIMER_SUPPORTED "y") +set(CONFIG_SOC_SDMMC_HOST_SUPPORTED "y") +set(CONFIG_SOC_BT_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_SDIO_SLAVE_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_EFUSE_SUPPORTED "y") +set(CONFIG_SOC_EMAC_SUPPORTED "y") +set(CONFIG_SOC_ULP_SUPPORTED "y") +set(CONFIG_SOC_CCOMP_TIMER_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_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_SUPPORT_COEXISTENCE "y") +set(CONFIG_SOC_AES_SUPPORTED "y") +set(CONFIG_SOC_MPI_SUPPORTED "y") +set(CONFIG_SOC_SHA_SUPPORTED "y") +set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") +set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_BOD_SUPPORTED "y") +set(CONFIG_SOC_ULP_FSM_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_DPORT_WORKAROUND_DIS_INTERRUPT_LVL "5") +set(CONFIG_SOC_XTAL_SUPPORT_26M "y") +set(CONFIG_SOC_XTAL_SUPPORT_40M "y") +set(CONFIG_SOC_XTAL_SUPPORT_AUTO_DETECT "y") +set(CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_CTRL_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 "16") +set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "9") +set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "2") +set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") +set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "0") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "2") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "20") +set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "9") +set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_SHARED_POWER "y") +set(CONFIG_SOC_SHARED_IDCACHE_SUPPORTED "y") +set(CONFIG_SOC_IDCACHE_PER_CORE "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 "64") +set(CONFIG_SOC_DAC_CHAN_NUM "2") +set(CONFIG_SOC_DAC_RESOLUTION "8") +set(CONFIG_SOC_DAC_DMA_16BIT_ALIGN "y") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "40") +set(CONFIG_SOC_GPIO_VALID_GPIO_MASK "0xffffffffff") +set(CONFIG_SOC_GPIO_IN_RANGE_MAX "39") +set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "33") +set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0xef0fea") +set(CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX "y") +set(CONFIG_SOC_I2C_NUM "2") +set(CONFIG_SOC_I2C_FIFO_LEN "32") +set(CONFIG_SOC_I2C_CMD_REG_NUM "16") +set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") +set(CONFIG_SOC_I2C_SUPPORT_APB "y") +set(CONFIG_SOC_I2C_STOP_INDEPENDENT "y") +set(CONFIG_SOC_I2S_NUM "2") +set(CONFIG_SOC_I2S_HW_VERSION_1 "y") +set(CONFIG_SOC_I2S_SUPPORTS_APLL "y") +set(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") +set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "1") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_RX "y") +set(CONFIG_SOC_I2S_PDM_MAX_RX_LINES "1") +set(CONFIG_SOC_I2S_SUPPORTS_ADC_DAC "y") +set(CONFIG_SOC_I2S_SUPPORTS_ADC "y") +set(CONFIG_SOC_I2S_SUPPORTS_DAC "y") +set(CONFIG_SOC_I2S_SUPPORTS_LCD_CAMERA "y") +set(CONFIG_SOC_I2S_TRANS_SIZE_ALIGN_WORD "y") +set(CONFIG_SOC_I2S_LCD_I80_VARIANT "y") +set(CONFIG_SOC_LCD_I80_SUPPORTED "y") +set(CONFIG_SOC_LCD_I80_BUSES "2") +set(CONFIG_SOC_LCD_I80_BUS_WIDTH "24") +set(CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX "y") +set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_REF_TICK "y") +set(CONFIG_SOC_LEDC_SUPPORT_HS_MODE "y") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "8") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "20") +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_MMU_PERIPH_NUM "2") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "3") +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 "8") +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 "8") +set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "8") +set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "64") +set(CONFIG_SOC_RMT_SUPPORT_REF_TICK "y") +set(CONFIG_SOC_RMT_SUPPORT_APB "y") +set(CONFIG_SOC_RMT_CHANNEL_CLK_INDEPENDENT "y") +set(CONFIG_SOC_RTCIO_PIN_COUNT "18") +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_SDM_GROUPS "1") +set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_SDM_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED "y") +set(CONFIG_SOC_SPI_AS_CS_SUPPORTED "y") +set(CONFIG_SOC_SPI_PERIPH_NUM "3") +set(CONFIG_SOC_SPI_DMA_CHAN_NUM "2") +set(CONFIG_SOC_SPI_MAX_CS_NUM "3") +set(CONFIG_SOC_SPI_SUPPORT_CLK_APB "y") +set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") +set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "8192") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") +set(CONFIG_SOC_TIMER_GROUPS "2") +set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "2") +set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "64") +set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "4") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_APB "y") +set(CONFIG_SOC_TOUCH_VERSION_1 "y") +set(CONFIG_SOC_TOUCH_SENSOR_NUM "10") +set(CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX "0xff") +set(CONFIG_SOC_TWAI_CONTROLLER_NUM "1") +set(CONFIG_SOC_TWAI_BRP_MIN "2") +set(CONFIG_SOC_TWAI_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT "y") +set(CONFIG_SOC_UART_NUM "3") +set(CONFIG_SOC_UART_HP_NUM "3") +set(CONFIG_SOC_UART_SUPPORT_APB_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_REF_TICK "y") +set(CONFIG_SOC_UART_FIFO_LEN "128") +set(CONFIG_SOC_UART_BITRATE_MAX "5000000") +set(CONFIG_SOC_SPIRAM_SUPPORTED "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") +set(CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG "y") +set(CONFIG_SOC_SHA_ENDIANNESS_BE "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA1 "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_MPI_MEM_BLOCKS_NUM "4") +set(CONFIG_SOC_MPI_OPERATIONS_NUM "y") +set(CONFIG_SOC_RSA_MAX_BIT_LEN "4096") +set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_192 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") +set(CONFIG_SOC_SECURE_BOOT_V1 "y") +set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "y") +set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "32") +set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") +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_TOUCH_SENSOR_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") +set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") +set(CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED "y") +set(CONFIG_SOC_CLK_APLL_SUPPORTED "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_SDMMC_USE_IOMUX "y") +set(CONFIG_SOC_SDMMC_NUM_SLOTS "2") +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_NAN_SUPPORT "y") +set(CONFIG_SOC_BLE_SUPPORTED "y") +set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") +set(CONFIG_SOC_BT_CLASSIC_SUPPORTED "y") +set(CONFIG_SOC_BLUFI_SUPPORTED "y") +set(CONFIG_SOC_ULP_HAS_ADC "y") +set(CONFIG_SOC_PHY_COMBO_MODULE "y") +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TOOLCHAIN "gcc") +set(CONFIG_IDF_TARGET_ARCH_XTENSA "y") +set(CONFIG_IDF_TARGET_ARCH "xtensa") +set(CONFIG_IDF_TARGET "esp32") +set(CONFIG_IDF_INIT_VERSION "5.2.2") +set(CONFIG_IDF_TARGET_ESP32 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x0") +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_APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS "") +set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") +set(CONFIG_BOOTLOADER_PROJECT_VER "1") +set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x1000") +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_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_FLASH_DC_AWARE "") +set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V "") +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_APP_ROLLBACK_ENABLE "") +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_V1_SUPPORTED "y") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +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_HAS_UART_BUF_SWITCH "y") +set(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT "y") +set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") +set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "-1") +set(CONFIG_ESPTOOLPY_NO_STUB "") +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_80M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_26M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "40m") +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 "y") +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_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_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_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") +set(CONFIG_COMPILER_DUMP_RTL_FILES "") +set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") +set(CONFIG_COMPILER_RT_LIB_NAME "gcc") +set(CONFIG_EFUSE_CUSTOM_TABLE "") +set(CONFIG_EFUSE_VIRTUAL "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 "y") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT "") +set(CONFIG_EFUSE_MAX_BLK_LEN "192") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_ESP32_REV_MIN_0 "y") +set(CONFIG_ESP32_REV_MIN_1 "") +set(CONFIG_ESP32_REV_MIN_1_1 "") +set(CONFIG_ESP32_REV_MIN_2 "") +set(CONFIG_ESP32_REV_MIN_3 "") +set(CONFIG_ESP32_REV_MIN_3_1 "") +set(CONFIG_ESP32_REV_MIN "0") +set(CONFIG_ESP32_REV_MIN_FULL "0") +set(CONFIG_ESP_REV_MIN_FULL "0") +set(CONFIG_ESP32_REV_MAX_FULL "399") +set(CONFIG_ESP_REV_MAX_FULL "399") +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_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR "") +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 "") +set(CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "") +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_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_XTAL_FREQ_26 "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ_AUTO "") +set(CONFIG_XTAL_FREQ "40") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 "y") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "240") +set(CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE "") +set(CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM "") +set(CONFIG_ESP32_TRAX "") +set(CONFIG_ESP32_TRACEMEM_RESERVE_DRAM "0x0") +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_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_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_UART "y") +set(CONFIG_ESP_CONSOLE_UART_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_5 "") +set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") +set(CONFIG_ESP_BROWNOUT_DET "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") +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_TIMER_SERVICE_TASK_NAME "Tmr Svc") +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 "y") +set(CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS "y") +set(CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID "y") +set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "y") +set(CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U32 "y") +set(CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U64 "") +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_CORETIMER "y") +set(CONFIG_FREERTOS_CORETIMER_0 "y") +set(CONFIG_FREERTOS_CORETIMER_1 "") +set(CONFIG_FREERTOS_SYSTICK_USES_CCOUNT "y") +set(CONFIG_FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER "y") +set(CONFIG_FREERTOS_RUN_TIME_STATS_USING_CPU_CLK "") +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_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_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_COLORS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF "y") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF "") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_LF "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CR "y") +set(CONFIG_NEWLIB_NANO_FORMAT "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") +set(CONFIG_NEWLIB_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_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") +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_SHARE_SPI1_BUS "") +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_SUPPORTED "y") +set(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED "y") +set(CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED "y") +set(CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED "y") +set(CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED "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 "") +set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "") +set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") +set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") +set(CONFIGS_LIST CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_TWAI_BRP_DIV_SUPPORTED;CONFIG_SOC_DPORT_WORKAROUND;CONFIG_SOC_CAPS_ECO_VER_MAX;CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_DAC_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_SDIO_SLAVE_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_EMAC_SUPPORTED;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_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_SUPPORT_COEXISTENCE;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_TOUCH_SENSOR_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_ULP_FSM_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_MPU_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL;CONFIG_SOC_XTAL_SUPPORT_26M;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_XTAL_SUPPORT_AUTO_DETECT;CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_CTRL_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_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_SHARED_POWER;CONFIG_SOC_SHARED_IDCACHE_SUPPORTED;CONFIG_SOC_IDCACHE_PER_CORE;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_DAC_CHAN_NUM;CONFIG_SOC_DAC_RESOLUTION;CONFIG_SOC_DAC_DMA_16BIT_ALIGN;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;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_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_APB;CONFIG_SOC_I2C_STOP_INDEPENDENT;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_1;CONFIG_SOC_I2S_SUPPORTS_APLL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_PDM_MAX_RX_LINES;CONFIG_SOC_I2S_SUPPORTS_ADC_DAC;CONFIG_SOC_I2S_SUPPORTS_ADC;CONFIG_SOC_I2S_SUPPORTS_DAC;CONFIG_SOC_I2S_SUPPORTS_LCD_CAMERA;CONFIG_SOC_I2S_TRANS_SIZE_ALIGN_WORD;CONFIG_SOC_I2S_LCD_I80_VARIANT;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_LCD_I80_BUSES;CONFIG_SOC_LCD_I80_BUS_WIDTH;CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_REF_TICK;CONFIG_SOC_LEDC_SUPPORT_HS_MODE;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;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_MMU_PERIPH_NUM;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_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_REF_TICK;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_CHANNEL_CLK_INDEPENDENT;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_APB;CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED;CONFIG_SOC_SPI_AS_CS_SUPPORTED;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_DMA_CHAN_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TOUCH_VERSION_1;CONFIG_SOC_TOUCH_SENSOR_NUM;CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_CLK_SUPPORT_APB;CONFIG_SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_REF_TICK;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG;CONFIG_SOC_SHA_ENDIANNESS_BE;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_192;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_SECURE_BOOT_V1;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP;CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD;CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED;CONFIG_SOC_CLK_APLL_SUPPORTED;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_SDMMC_USE_IOMUX;CONFIG_SOC_SDMMC_NUM_SLOTS;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_NAN_SUPPORT;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BT_CLASSIC_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_ULP_HAS_ADC;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TARGET_ARCH_XTENSA;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32;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_ESP32_NO_BLOBS;CONFIG_APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS;CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;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_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_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V;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_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;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_V1_SUPPORTED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_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_HAS_UART_BUF_SWITCH;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESPTOOLPY_NO_STUB;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_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_26M;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_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_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_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE;CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4;CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP32_REV_MIN_0;CONFIG_ESP32_REV_MIN_1;CONFIG_ESP32_REV_MIN_1_1;CONFIG_ESP32_REV_MIN_2;CONFIG_ESP32_REV_MIN_3;CONFIG_ESP32_REV_MIN_3_1;CONFIG_ESP32_REV_MIN;CONFIG_ESP32_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32_REV_MAX_FULL;CONFIG_ESP_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_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_TWO_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES;CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR;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_ESP32_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_ESP32_RTC_CLK_SRC_INT_RC;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32_RTC_CLK_CAL_CYCLES;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_XTAL_FREQ_26;CONFIG_ESP32_XTAL_FREQ_26;CONFIG_XTAL_FREQ_40;CONFIG_ESP32_XTAL_FREQ_40;CONFIG_XTAL_FREQ_AUTO;CONFIG_ESP32_XTAL_FREQ_AUTO;CONFIG_XTAL_FREQ;CONFIG_ESP32_XTAL_FREQ;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM;CONFIG_ESP32_TRAX;CONFIG_ESP32_TRACEMEM_RESERVE_DRAM;CONFIG_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP32_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP32_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP32_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;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_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_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_ESP32_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0;CONFIG_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32_BROWNOUT_DET_LVL;CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE;CONFIG_DISABLE_BASIC_ROM_CONSOLE;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;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_TIMER_SERVICE_TASK_NAME;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_STATS_FORMATTING_FUNCTIONS;CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U32;CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U64;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_CORETIMER;CONFIG_FREERTOS_CORETIMER_0;CONFIG_FREERTOS_CORETIMER_1;CONFIG_FREERTOS_SYSTICK_USES_CCOUNT;CONFIG_FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER;CONFIG_FREERTOS_RUN_TIME_STATS_USING_CPU_CLK;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_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_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_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32_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_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;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_SHARE_SPI1_BUS;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_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED;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_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_ESP32_NO_BLOBS "") +set(CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS "") +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_APP_ROLLBACK_ENABLE "") +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_TWO_UNIVERSAL_MAC_ADDRESS "") +set(CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS "y") +set(CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS "4") +set(CONFIG_ESP_SYSTEM_PD_FLASH "") +set(CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC "y") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL "") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC "") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 "") +set(CONFIG_ESP32_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_ESP32_XTAL_FREQ_26 "") +set(CONFIG_ESP32_XTAL_FREQ_40 "y") +set(CONFIG_ESP32_XTAL_FREQ_AUTO "") +set(CONFIG_ESP32_XTAL_FREQ "40") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_80 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_160 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_240 "y") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ "240") +set(CONFIG_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_ESP32_PANIC_PRINT_HALT "") +set(CONFIG_ESP32_PANIC_PRINT_REBOOT "y") +set(CONFIG_ESP32_PANIC_SILENT_REBOOT "") +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_ESP32_DEBUG_OCDAWARE "y") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_ESP32_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP32_BROWNOUT_DET_LVL "0") +set(CONFIG_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_IPC_TASK_STACK_SIZE "1024") +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_ESP32_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_HRT "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 "") +set(CONFIG_ESP32_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/ESPIDFNEW/build/bootloader/config/sdkconfig.h b/ESPIDFNEW/build/bootloader/config/sdkconfig.h new file mode 100644 index 0000000..99bb5f3 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/config/sdkconfig.h @@ -0,0 +1,463 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) 5.2.2 Configuration Header + */ +#pragma once +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "Not determined" +#define CONFIG_SOC_TWAI_BRP_DIV_SUPPORTED "Not determined" +#define CONFIG_SOC_DPORT_WORKAROUND "Not determined" +#define CONFIG_SOC_CAPS_ECO_VER_MAX 301 +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_DAC_SUPPORTED 1 +#define CONFIG_SOC_UART_SUPPORTED 1 +#define CONFIG_SOC_MCPWM_SUPPORTED 1 +#define CONFIG_SOC_GPTIMER_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_HOST_SUPPORTED 1 +#define CONFIG_SOC_BT_SUPPORTED 1 +#define CONFIG_SOC_PCNT_SUPPORTED 1 +#define CONFIG_SOC_WIFI_SUPPORTED 1 +#define CONFIG_SOC_SDIO_SLAVE_SUPPORTED 1 +#define CONFIG_SOC_TWAI_SUPPORTED 1 +#define CONFIG_SOC_EFUSE_SUPPORTED 1 +#define CONFIG_SOC_EMAC_SUPPORTED 1 +#define CONFIG_SOC_ULP_SUPPORTED 1 +#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1 +#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_MEM_SUPPORTED 1 +#define CONFIG_SOC_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_SUPPORT_COEXISTENCE 1 +#define CONFIG_SOC_AES_SUPPORTED 1 +#define CONFIG_SOC_MPI_SUPPORTED 1 +#define CONFIG_SOC_SHA_SUPPORTED 1 +#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 +#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 +#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_BOD_SUPPORTED 1 +#define CONFIG_SOC_ULP_FSM_SUPPORTED 1 +#define CONFIG_SOC_CLK_TREE_SUPPORTED 1 +#define CONFIG_SOC_MPU_SUPPORTED 1 +#define CONFIG_SOC_WDT_SUPPORTED 1 +#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1 +#define CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL 5 +#define CONFIG_SOC_XTAL_SUPPORT_26M 1 +#define CONFIG_SOC_XTAL_SUPPORT_40M 1 +#define CONFIG_SOC_XTAL_SUPPORT_AUTO_DETECT 1 +#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DMA_SUPPORTED 1 +#define CONFIG_SOC_ADC_PERIPH_NUM 2 +#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 10 +#define CONFIG_SOC_ADC_ATTEN_NUM 4 +#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 2 +#define CONFIG_SOC_ADC_PATT_LEN_MAX 16 +#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 9 +#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 2 +#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 +#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 0 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 2 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 20 +#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 9 +#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_SHARED_POWER 1 +#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1 +#define CONFIG_SOC_IDCACHE_PER_CORE 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 64 +#define CONFIG_SOC_DAC_CHAN_NUM 2 +#define CONFIG_SOC_DAC_RESOLUTION 8 +#define CONFIG_SOC_DAC_DMA_16BIT_ALIGN 1 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 40 +#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0xFFFFFFFFFF +#define CONFIG_SOC_GPIO_IN_RANGE_MAX 39 +#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 33 +#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0xEF0FEA +#define CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX 1 +#define CONFIG_SOC_I2C_NUM 2 +#define CONFIG_SOC_I2C_FIFO_LEN 32 +#define CONFIG_SOC_I2C_CMD_REG_NUM 16 +#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 +#define CONFIG_SOC_I2C_SUPPORT_APB 1 +#define CONFIG_SOC_I2C_STOP_INDEPENDENT 1 +#define CONFIG_SOC_I2S_NUM 2 +#define CONFIG_SOC_I2S_HW_VERSION_1 1 +#define CONFIG_SOC_I2S_SUPPORTS_APLL 1 +#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1 +#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1 +#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 1 +#define CONFIG_SOC_I2S_SUPPORTS_ADC_DAC 1 +#define CONFIG_SOC_I2S_SUPPORTS_ADC 1 +#define CONFIG_SOC_I2S_SUPPORTS_DAC 1 +#define CONFIG_SOC_I2S_SUPPORTS_LCD_CAMERA 1 +#define CONFIG_SOC_I2S_TRANS_SIZE_ALIGN_WORD 1 +#define CONFIG_SOC_I2S_LCD_I80_VARIANT 1 +#define CONFIG_SOC_LCD_I80_SUPPORTED 1 +#define CONFIG_SOC_LCD_I80_BUSES 2 +#define CONFIG_SOC_LCD_I80_BUS_WIDTH 24 +#define CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX 1 +#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_REF_TICK 1 +#define CONFIG_SOC_LEDC_SUPPORT_HS_MODE 1 +#define CONFIG_SOC_LEDC_CHANNEL_NUM 8 +#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 20 +#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_MMU_PERIPH_NUM 2 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 3 +#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 8 +#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 8 +#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 8 +#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 64 +#define CONFIG_SOC_RMT_SUPPORT_REF_TICK 1 +#define CONFIG_SOC_RMT_SUPPORT_APB 1 +#define CONFIG_SOC_RMT_CHANNEL_CLK_INDEPENDENT 1 +#define CONFIG_SOC_RTCIO_PIN_COUNT 18 +#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_SDM_GROUPS 1 +#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED 1 +#define CONFIG_SOC_SPI_AS_CS_SUPPORTED 1 +#define CONFIG_SOC_SPI_PERIPH_NUM 3 +#define CONFIG_SOC_SPI_DMA_CHAN_NUM 2 +#define CONFIG_SOC_SPI_MAX_CS_NUM 3 +#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1 +#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 +#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 8192 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 +#define CONFIG_SOC_TIMER_GROUPS 2 +#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 2 +#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 64 +#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 4 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1 +#define CONFIG_SOC_TOUCH_VERSION_1 1 +#define CONFIG_SOC_TOUCH_SENSOR_NUM 10 +#define CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX 0xFF +#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1 +#define CONFIG_SOC_TWAI_BRP_MIN 2 +#define CONFIG_SOC_TWAI_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT 1 +#define CONFIG_SOC_UART_NUM 3 +#define CONFIG_SOC_UART_HP_NUM 3 +#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_REF_TICK 1 +#define CONFIG_SOC_UART_FIFO_LEN 128 +#define CONFIG_SOC_UART_BITRATE_MAX 5000000 +#define CONFIG_SOC_SPIRAM_SUPPORTED 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 +#define CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG 1 +#define CONFIG_SOC_SHA_ENDIANNESS_BE 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA256 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA384 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512 1 +#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 +#define CONFIG_SOC_MPI_OPERATIONS_NUM 1 +#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096 +#define CONFIG_SOC_AES_SUPPORT_AES_128 1 +#define CONFIG_SOC_AES_SUPPORT_AES_192 1 +#define CONFIG_SOC_AES_SUPPORT_AES_256 1 +#define CONFIG_SOC_SECURE_BOOT_V1 1 +#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 1 +#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 32 +#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 +#define CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 +#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 +#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1 +#define CONFIG_SOC_CLK_APLL_SUPPORTED 1 +#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1 +#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1 +#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1 +#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_USE_IOMUX 1 +#define CONFIG_SOC_SDMMC_NUM_SLOTS 2 +#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_NAN_SUPPORT 1 +#define CONFIG_SOC_BLE_SUPPORTED 1 +#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 +#define CONFIG_SOC_BT_CLASSIC_SUPPORTED 1 +#define CONFIG_SOC_BLUFI_SUPPORTED 1 +#define CONFIG_SOC_ULP_HAS_ADC 1 +#define CONFIG_SOC_PHY_COMBO_MODULE 1 +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TOOLCHAIN "gcc" +#define CONFIG_IDF_TARGET_ARCH_XTENSA 1 +#define CONFIG_IDF_TARGET_ARCH "xtensa" +#define CONFIG_IDF_TARGET "esp32" +#define CONFIG_IDF_INIT_VERSION "5.2.2" +#define CONFIG_IDF_TARGET_ESP32 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0000 +#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 0x1000 +#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 3 +#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_V1_SUPPORTED 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_HAS_UART_BUF_SWITCH 1 +#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1 +#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 +#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM -1 +#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 +#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 +#define CONFIG_ESPTOOLPY_FLASHMODE "dio" +#define CONFIG_ESPTOOLPY_FLASHFREQ_40M 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ "40m" +#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB" +#define CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE 1 +#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_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_RT_LIB_GCCLIB 1 +#define CONFIG_COMPILER_RT_LIB_NAME "gcc" +#define CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 1 +#define CONFIG_EFUSE_MAX_BLK_LEN 192 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 +#define CONFIG_ESP32_REV_MIN_0 1 +#define CONFIG_ESP32_REV_MIN 0 +#define CONFIG_ESP32_REV_MIN_FULL 0 +#define CONFIG_ESP_REV_MIN_FULL 0 +#define CONFIG_ESP32_REV_MAX_FULL 399 +#define CONFIG_ESP_REV_MAX_FULL 399 +#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_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_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_PERIPH_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_XTAL_FREQ_40 1 +#define CONFIG_XTAL_FREQ 40 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 240 +#define CONFIG_ESP32_TRACEMEM_RESERVE_DRAM 0x0 +#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1 +#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0 +#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_UART 1 +#define CONFIG_ESP_CONSOLE_UART_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_BROWNOUT_DET 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 0 +#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 1 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 +#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_TIMER_SERVICE_TASK_NAME "Tmr Svc" +#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_USE_TRACE_FACILITY 1 +#define CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS 1 +#define CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID 1 +#define CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS 1 +#define CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U32 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_CORETIMER 1 +#define CONFIG_FREERTOS_CORETIMER_0 1 +#define CONFIG_FREERTOS_SYSTICK_USES_CCOUNT 1 +#define CONFIG_FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER 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_HAL_ASSERTION_EQUALS_SYSTEM 1 +#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 +#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_COLORS 1 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF 1 +#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR 1 +#define CONFIG_NEWLIB_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_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_SUPPORTED 1 +#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED 1 +#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED 1 +#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED 1 +#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED 1 +#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1 +#define CONFIG_SPI_FLASH_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_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 +#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_ESP32_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_ESP32_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 +#define CONFIG_ESP32_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE +#define CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_240 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ +#define CONFIG_ESP32_PANIC_PRINT_REBOOT CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT +#define CONFIG_ESP32_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES +#define CONFIG_ESP32_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32_XTAL_FREQ CONFIG_XTAL_FREQ +#define CONFIG_ESP32_XTAL_FREQ_40 CONFIG_XTAL_FREQ_40 +#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#define CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR +#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_NUMBER_OF_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES +#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_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_TRACEMEM_RESERVE_DRAM CONFIG_ESP32_TRACEMEM_RESERVE_DRAM diff --git a/ESPIDFNEW/build/bootloader/config/sdkconfig.json b/ESPIDFNEW/build/bootloader/config/sdkconfig.json new file mode 100644 index 0000000..e89559e --- /dev/null +++ b/ESPIDFNEW/build/bootloader/config/sdkconfig.json @@ -0,0 +1,563 @@ +{ + "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_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false, + "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS": false, + "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_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_OFFSET_IN_FLASH": 4096, + "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_8V": false, + "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "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_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_WARN_WRITE_STRINGS": false, + "EFUSE_CODE_SCHEME_COMPAT_3_4": true, + "EFUSE_CODE_SCHEME_COMPAT_NONE": false, + "EFUSE_CODE_SCHEME_COMPAT_REPEAT": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 192, + "EFUSE_VIRTUAL": false, + "ESP32_DISABLE_BASIC_ROM_CONSOLE": false, + "ESP32_REV_MAX_FULL": 399, + "ESP32_REV_MIN": 0, + "ESP32_REV_MIN_0": true, + "ESP32_REV_MIN_1": false, + "ESP32_REV_MIN_1_1": false, + "ESP32_REV_MIN_2": false, + "ESP32_REV_MIN_3": false, + "ESP32_REV_MIN_3_1": false, + "ESP32_REV_MIN_FULL": 0, + "ESP32_TRACEMEM_RESERVE_DRAM": 0, + "ESP32_TRAX": false, + "ESP32_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32_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": "40m", + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_26M": false, + "ESPTOOLPY_FLASHFREQ_40M": true, + "ESPTOOLPY_FLASHFREQ_80M": false, + "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_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": true, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 0, + "ESP_BROWNOUT_DET_LVL_SEL_0": true, + "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": false, + "ESP_CONSOLE_NONE": false, + "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_DEBUG_OCDAWARE": true, + "ESP_DEBUG_STUBS_ENABLE": false, + "ESP_DEFAULT_CPU_FREQ_MHZ": 240, + "ESP_DEFAULT_CPU_FREQ_MHZ_160": false, + "ESP_DEFAULT_CPU_FREQ_MHZ_240": true, + "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, + "ESP_ERR_TO_NAME_LOOKUP": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_ISR_ENABLE": true, + "ESP_IPC_TASK_STACK_SIZE": 1024, + "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_IGNORE_MAC_CRC_ERROR": false, + "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_REV_MAX_FULL": 399, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_MZ_CRC32": true, + "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_UART_BUF_SWITCH": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": -1, + "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": false, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, + "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000, + "ESP_SYSTEM_BROWNOUT_INTR": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_5": false, + "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM": false, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "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_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_0": true, + "FREERTOS_CORETIMER_1": 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": true, + "FREERTOS_HZ": 100, + "FREERTOS_IDLE_TASK_STACKSIZE": 1536, + "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_ISR_STACKSIZE": 1536, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, + "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_RUN_TIME_COUNTER_TYPE_U32": true, + "FREERTOS_RUN_TIME_COUNTER_TYPE_U64": false, + "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK": false, + "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER": true, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_CCOUNT": 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_CORETIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", + "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_STATS_FORMATTING_FUNCTIONS": true, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TRACE_FACILITY": true, + "FREERTOS_VTASKLIST_INCLUDE_COREID": true, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "HAL_ASSERTION_DISABLE": false, + "HAL_ASSERTION_ENABLE": false, + "HAL_ASSERTION_EQUALS_SYSTEM": true, + "HAL_ASSERTION_SILENT": false, + "HAL_DEFAULT_ASSERTION_LEVEL": 2, + "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, + "IDF_FIRMWARE_CHIP_ID": 0, + "IDF_INIT_VERSION": "5.2.2", + "IDF_TARGET": "esp32", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32": true, + "IDF_TOOLCHAIN": "gcc", + "LOG_COLORS": true, + "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_MASTER_LEVEL": false, + "LOG_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "MMU_PAGE_MODE": "64KB", + "MMU_PAGE_SIZE": 65536, + "MMU_PAGE_SIZE_64KB": true, + "NEWLIB_NANO_FORMAT": false, + "NEWLIB_STDIN_LINE_ENDING_CR": true, + "NEWLIB_STDIN_LINE_ENDING_CRLF": false, + "NEWLIB_STDIN_LINE_ENDING_LF": false, + "NEWLIB_STDOUT_LINE_ENDING_CR": false, + "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, + "NEWLIB_STDOUT_LINE_ENDING_LF": false, + "NEWLIB_TIME_SYSCALL_USE_HRT": false, + "NEWLIB_TIME_SYSCALL_USE_NONE": false, + "NEWLIB_TIME_SYSCALL_USE_RTC": false, + "NEWLIB_TIME_SYSCALL_USE_RTC_HRT": 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, + "PERIPH_CTRL_FUNC_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, + "SECURE_BOOT": false, + "SECURE_BOOT_V1_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_DIGI_CONTROLLER_NUM": 2, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 9, + "SOC_ADC_DIGI_MONITOR_NUM": 0, + "SOC_ADC_DIGI_RESULT_BYTES": 2, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 10, + "SOC_ADC_PATT_LEN_MAX": 16, + "SOC_ADC_PERIPH_NUM": 2, + "SOC_ADC_RTC_CTRL_SUPPORTED": true, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 9, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 2, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 20, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_192": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": "Not determined", + "SOC_BT_CLASSIC_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CAPS_ECO_VER_MAX": 301, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_CLK_APLL_SUPPORTED": 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_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_DAC_CHAN_NUM": 2, + "SOC_DAC_DMA_16BIT_ALIGN": true, + "SOC_DAC_RESOLUTION": 8, + "SOC_DAC_SUPPORTED": true, + "SOC_DPORT_WORKAROUND": "Not determined", + "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL": 5, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": true, + "SOC_EFUSE_SUPPORTED": true, + "SOC_EMAC_SUPPORTED": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GPIO_CLOCKOUT_BY_IO_MUX": true, + "SOC_GPIO_IN_RANGE_MAX": 39, + "SOC_GPIO_OUT_RANGE_MAX": 33, + "SOC_GPIO_PIN_COUNT": 40, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 15667178, + "SOC_GPIO_VALID_GPIO_MASK": 1099511627775, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HP_CPU_HAS_MULTIPLE_CORES": true, + "SOC_I2C_CMD_REG_NUM": 16, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "SOC_I2C_STOP_INDEPENDENT": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_APB": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2S_HW_VERSION_1": true, + "SOC_I2S_LCD_I80_VARIANT": true, + "SOC_I2S_NUM": 2, + "SOC_I2S_PDM_MAX_RX_LINES": 1, + "SOC_I2S_PDM_MAX_TX_LINES": 1, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_ADC": true, + "SOC_I2S_SUPPORTS_ADC_DAC": true, + "SOC_I2S_SUPPORTS_APLL": true, + "SOC_I2S_SUPPORTS_DAC": true, + "SOC_I2S_SUPPORTS_LCD_CAMERA": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM_RX": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_I2S_SUPPORTS_PLL_F160M": true, + "SOC_I2S_TRANS_SIZE_ALIGN_WORD": true, + "SOC_IDCACHE_PER_CORE": true, + "SOC_LCD_I80_BUSES": 2, + "SOC_LCD_I80_BUS_WIDTH": 24, + "SOC_LCD_I80_SUPPORTED": true, + "SOC_LEDC_CHANNEL_NUM": 8, + "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX": true, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_HS_MODE": true, + "SOC_LEDC_SUPPORT_REF_TICK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 20, + "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_TIMERS_PER_GROUP": 3, + "SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 3, + "SOC_MMU_PERIPH_NUM": 2, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": true, + "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": 8, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PM_SUPPORT_EXT0_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_FAST_MEM_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD": true, + "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_RMT_CHANNELS_PER_GROUP": 8, + "SOC_RMT_CHANNEL_CLK_INDEPENDENT": true, + "SOC_RMT_GROUPS": 1, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 64, + "SOC_RMT_RX_CANDIDATES_PER_GROUP": 8, + "SOC_RMT_SUPPORTED": true, + "SOC_RMT_SUPPORT_APB": true, + "SOC_RMT_SUPPORT_REF_TICK": true, + "SOC_RMT_TX_CANDIDATES_PER_GROUP": 8, + "SOC_RSA_MAX_BIT_LEN": 4096, + "SOC_RTCIO_HOLD_SUPPORTED": true, + "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true, + "SOC_RTCIO_PIN_COUNT": 18, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "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_SDIO_SLAVE_SUPPORTED": true, + "SOC_SDMMC_HOST_SUPPORTED": true, + "SOC_SDMMC_NUM_SLOTS": 2, + "SOC_SDMMC_USE_IOMUX": 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_V1": true, + "SOC_SHARED_IDCACHE_SUPPORTED": true, + "SOC_SHA_ENDIANNESS_BE": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_PARALLEL_ENG": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SHA_SUPPORT_SHA384": true, + "SOC_SHA_SUPPORT_SHA512": true, + "SOC_SPIRAM_SUPPORTED": true, + "SOC_SPI_AS_CS_SUPPORTED": true, + "SOC_SPI_DMA_CHAN_NUM": 2, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_HD_BOTH_INOUT_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MAX_CS_NUM": 3, + "SOC_SPI_MAX_PRE_DIVIDER": 8192, + "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SPI_SUPPORT_CLK_APB": true, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_TIMER_GROUPS": 2, + "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 64, + "SOC_TIMER_GROUP_SUPPORT_APB": true, + "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 2, + "SOC_TIMER_GROUP_TOTAL_TIMERS": 4, + "SOC_TOUCH_PAD_MEASURE_WAIT_MAX": 255, + "SOC_TOUCH_SENSOR_NUM": 10, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_VERSION_1": true, + "SOC_TWAI_BRP_DIV_SUPPORTED": "Not determined", + "SOC_TWAI_BRP_MIN": 2, + "SOC_TWAI_CLK_SUPPORT_APB": true, + "SOC_TWAI_CONTROLLER_NUM": 1, + "SOC_TWAI_SUPPORTED": true, + "SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT": 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_REF_TICK": true, + "SOC_ULP_FSM_SUPPORTED": true, + "SOC_ULP_HAS_ADC": true, + "SOC_ULP_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_NAN_SUPPORT": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_26M": true, + "SOC_XTAL_SUPPORT_40M": true, + "SOC_XTAL_SUPPORT_AUTO_DETECT": true, + "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_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_SHARE_SPI1_BUS": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": false, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_CHIP": true, + "SPI_FLASH_SUPPORT_TH_CHIP": false, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, + "SPI_FLASH_VENDOR_GD_SUPPORTED": true, + "SPI_FLASH_VENDOR_ISSI_SUPPORTED": true, + "SPI_FLASH_VENDOR_MXIC_SUPPORTED": true, + "SPI_FLASH_VENDOR_WINBOND_SUPPORTED": true, + "SPI_FLASH_VENDOR_XMC_SUPPORTED": true, + "SPI_FLASH_VERIFY_WRITE": false, + "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, + "SPI_FLASH_YIELD_DURING_ERASE": true, + "XTAL_FREQ": 40, + "XTAL_FREQ_26": false, + "XTAL_FREQ_40": true, + "XTAL_FREQ_AUTO": false +} \ No newline at end of file diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/bootloader/cmake_install.cmake new file mode 100644 index 0000000..ae9c605 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj new file mode 100644 index 0000000..04f84df Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj new file mode 100644 index 0000000..4c8e14f Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj new file mode 100644 index 0000000..123f310 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj new file mode 100644 index 0000000..0dd3e61 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj new file mode 100644 index 0000000..ac23b46 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj new file mode 100644 index 0000000..7efd276 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj new file mode 100644 index 0000000..51a1d57 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj new file mode 100644 index 0000000..a5757a3 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj new file mode 100644 index 0000000..8dcee15 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj new file mode 100644 index 0000000..8dcf939 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj new file mode 100644 index 0000000..4c10922 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj new file mode 100644 index 0000000..7db586f Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj new file mode 100644 index 0000000..f46a4a0 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj new file mode 100644 index 0000000..2687c2d Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj new file mode 100644 index 0000000..2004e4e Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj new file mode 100644 index 0000000..482a271 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj new file mode 100644 index 0000000..f619c23 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj new file mode 100644 index 0000000..3df8a7c Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj new file mode 100644 index 0000000..9059d47 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj new file mode 100644 index 0000000..3618532 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj new file mode 100644 index 0000000..dda751c Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj new file mode 100644 index 0000000..63c7251 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj new file mode 100644 index 0000000..376c36c Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake new file mode 100644 index 0000000..a29d3ca --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a new file mode 100644 index 0000000..3b417f9 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/cmake_install.cmake new file mode 100644 index 0000000..13658e9 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/cmake_install.cmake @@ -0,0 +1,139 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/newlib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/hal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_system/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/log/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/partition_table/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/freertos/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/main/cmake_install.cmake") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj new file mode 100644 index 0000000..820a2cb Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj new file mode 100644 index 0000000..933253f Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj new file mode 100644 index 0000000..ae070d0 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj new file mode 100644 index 0000000..2befe41 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj new file mode 100644 index 0000000..c9d1103 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj new file mode 100644 index 0000000..40888ad Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj new file mode 100644 index 0000000..f698707 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/efuse/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/efuse/cmake_install.cmake new file mode 100644 index 0000000..af8eb13 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/efuse/libefuse.a b/ESPIDFNEW/build/bootloader/esp-idf/efuse/libefuse.a new file mode 100644 index 0000000..ea98a94 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/efuse/libefuse.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake new file mode 100644 index 0000000..727a24c --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj new file mode 100644 index 0000000..f3fadb8 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake new file mode 100644 index 0000000..a97c6df --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a b/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a new file mode 100644 index 0000000..b05e199 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj new file mode 100644 index 0000000..1b0b3d7 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_common/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/esp_common/cmake_install.cmake new file mode 100644 index 0000000..1f1d745 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_common/libesp_common.a b/ESPIDFNEW/build/bootloader/esp-idf/esp_common/libesp_common.a new file mode 100644 index 0000000..14c4b5a Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_common/libesp_common.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj new file mode 100644 index 0000000..cc16ec3 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj new file mode 100644 index 0000000..25250da Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj new file mode 100644 index 0000000..99d47e9 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj new file mode 100644 index 0000000..d31b69c Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj new file mode 100644 index 0000000..e48034b Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj new file mode 100644 index 0000000..2cad3bd Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj new file mode 100644 index 0000000..e168515 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj new file mode 100644 index 0000000..8ba0f8c Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj new file mode 100644 index 0000000..4628464 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake new file mode 100644 index 0000000..d2bb918 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a new file mode 100644 index 0000000..6a426c9 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake new file mode 100644 index 0000000..5381596 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32 + +# 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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj new file mode 100644 index 0000000..e903104 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj new file mode 100644 index 0000000..4c6fce2 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj new file mode 100644 index 0000000..7756427 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj new file mode 100644 index 0000000..f2e857f Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj new file mode 100644 index 0000000..231e547 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj new file mode 100644 index 0000000..1d1bd0b Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..4e9d376 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/libesp_rom.a b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/libesp_rom.a new file mode 100644 index 0000000..ac1226a Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/libesp_rom.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj new file mode 100644 index 0000000..533b58e Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_system/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/esp_system/cmake_install.cmake new file mode 100644 index 0000000..e44979c --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esp_system/libesp_system.a b/ESPIDFNEW/build/bootloader/esp-idf/esp_system/libesp_system.a new file mode 100644 index 0000000..f8a45f2 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/esp_system/libesp_system.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/cmake_install.cmake new file mode 100644 index 0000000..8a25c82 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/freertos/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/freertos/cmake_install.cmake new file mode 100644 index 0000000..a114c68 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj new file mode 100644 index 0000000..6d1a3e4 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj new file mode 100644 index 0000000..ee65b97 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj new file mode 100644 index 0000000..90e54eb Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj new file mode 100644 index 0000000..79cb448 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj new file mode 100644 index 0000000..d2ef1a9 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj new file mode 100644 index 0000000..a6315cb Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj new file mode 100644 index 0000000..39ee53e Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/hal/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/hal/cmake_install.cmake new file mode 100644 index 0000000..e73b657 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/hal/libhal.a b/ESPIDFNEW/build/bootloader/esp-idf/hal/libhal.a new file mode 100644 index 0000000..34a7cae Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/hal/libhal.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj new file mode 100644 index 0000000..5f247e3 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj new file mode 100644 index 0000000..3064679 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj new file mode 100644 index 0000000..c9085a2 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/log/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/log/cmake_install.cmake new file mode 100644 index 0000000..39b8bbe --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/log/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/log/liblog.a b/ESPIDFNEW/build/bootloader/esp-idf/log/liblog.a new file mode 100644 index 0000000..af0e641 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/log/liblog.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj new file mode 100644 index 0000000..651c73a Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/main/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/main/cmake_install.cmake new file mode 100644 index 0000000..29f7517 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/main/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/main/libmain.a b/ESPIDFNEW/build/bootloader/esp-idf/main/libmain.a new file mode 100644 index 0000000..3741f3a Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/main/libmain.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj new file mode 100644 index 0000000..f881ea2 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake new file mode 100644 index 0000000..1299294 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a b/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a new file mode 100644 index 0000000..15ffc2d Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/newlib/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/newlib/cmake_install.cmake new file mode 100644 index 0000000..1b79758 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/newlib/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/partition_table/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/partition_table/cmake_install.cmake new file mode 100644 index 0000000..7e868f3 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj new file mode 100644 index 0000000..79c9f89 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj new file mode 100644 index 0000000..9ecb9d5 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj new file mode 100644 index 0000000..7a67e53 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj new file mode 100644 index 0000000..15e477c Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj new file mode 100644 index 0000000..357132c Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj new file mode 100644 index 0000000..a1fb997 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj new file mode 100644 index 0000000..29520b7 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj new file mode 100644 index 0000000..b6d326c Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj new file mode 100644 index 0000000..a6d1e98 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj new file mode 100644 index 0000000..45da590 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj new file mode 100644 index 0000000..8f078b3 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj new file mode 100644 index 0000000..7051e22 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj new file mode 100644 index 0000000..1e09e94 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj new file mode 100644 index 0000000..33c4007 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj new file mode 100644 index 0000000..2fefde1 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj new file mode 100644 index 0000000..e44dfc3 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj new file mode 100644 index 0000000..f33d1f0 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj new file mode 100644 index 0000000..d056047 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj new file mode 100644 index 0000000..443efaa Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj new file mode 100644 index 0000000..280e669 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj new file mode 100644 index 0000000..09dcbbe Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj new file mode 100644 index 0000000..2abc423 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj new file mode 100644 index 0000000..fd8dffa Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj new file mode 100644 index 0000000..65a7bee Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/soc/cmake_install.cmake new file mode 100644 index 0000000..c8a5ae3 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/soc/libsoc.a b/ESPIDFNEW/build/bootloader/esp-idf/soc/libsoc.a new file mode 100644 index 0000000..5c54d6e Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/soc/libsoc.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj new file mode 100644 index 0000000..d112e59 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/cmake_install.cmake new file mode 100644 index 0000000..fc3413f --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/libspi_flash.a b/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/libspi_flash.a new file mode 100644 index 0000000..6253577 Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/libspi_flash.a differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj new file mode 100644 index 0000000..bd849ea Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj b/ESPIDFNEW/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj new file mode 100644 index 0000000..9010edb Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj differ diff --git a/ESPIDFNEW/build/bootloader/esp-idf/xtensa/cmake_install.cmake b/ESPIDFNEW/build/bootloader/esp-idf/xtensa/cmake_install.cmake new file mode 100644 index 0000000..2bf6e0b --- /dev/null +++ b/ESPIDFNEW/build/bootloader/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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 default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/bootloader/esp-idf/xtensa/libxtensa.a b/ESPIDFNEW/build/bootloader/esp-idf/xtensa/libxtensa.a new file mode 100644 index 0000000..37fd40a Binary files /dev/null and b/ESPIDFNEW/build/bootloader/esp-idf/xtensa/libxtensa.a differ diff --git a/ESPIDFNEW/build/bootloader/kconfigs.in b/ESPIDFNEW/build/bootloader/kconfigs.in new file mode 100644 index 0000000..f25f03c --- /dev/null +++ b/ESPIDFNEW/build/bootloader/kconfigs.in @@ -0,0 +1,10 @@ +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/log/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/Kconfig" \ No newline at end of file diff --git a/ESPIDFNEW/build/bootloader/kconfigs_projbuild.in b/ESPIDFNEW/build/bootloader/kconfigs_projbuild.in new file mode 100644 index 0000000..18a1664 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/kconfigs_projbuild.in @@ -0,0 +1,5 @@ +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/Kconfig.projbuild" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/Kconfig.projbuild" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/Kconfig.projbuild" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/Kconfig.projbuild" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/Kconfig.projbuild" \ No newline at end of file diff --git a/ESPIDFNEW/build/bootloader/project_description.json b/ESPIDFNEW/build/bootloader/project_description.json new file mode 100644 index 0000000..d4bd1f8 --- /dev/null +++ b/ESPIDFNEW/build/bootloader/project_description.json @@ -0,0 +1,1295 @@ +{ + "version": "1.1", + "project_name": "bootloader", + "project_version": "v5.2.2", + "project_path": "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject", + "idf_path": "C:/Users/Job/esp/v5.2.2/esp-idf", + "build_dir": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", + "config_file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig", + "config_defaults": "", + "bootloader_elf": "", + "app_elf": "bootloader.elf", + "app_bin": "bootloader.bin", + "build_type": "flash_app", + "git_revision": "v5.2.2", + "target": "esp32", + "rev": "0", + "min_rev": "0", + "max_rev": "399", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32-elf-", + "c_compiler": "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/log/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/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_system", "esptool_py", "freertos", "hal", "log", "main", "micro-ecc", "newlib", "partition_table", "soc", "spi_flash", "xtensa", "" ], + "build_component_paths" : [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal", "C:/Users/Job/esp/v5.2.2/esp-idf/components/log", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/main", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib", "C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash", "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa", "" ], + "build_component_info" : { + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_mem.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_random.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/flash_encrypt.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/secure_boot.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_random_esp32.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_utility.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/flash_partitions.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/esp_image_format.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_console.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_console_loader.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/esp32/bootloader_sha.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/esp32/bootloader_soc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/esp32/bootloader_esp32.c", "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse", + "type": "LIBRARY", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/efuse/libefuse.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_table.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_fields.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_utility.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/esp_efuse_api.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/esp_efuse_fields.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/esp_efuse_utility.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format", + "type": "LIBRARY", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_common/libesp_common.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/cpu.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/esp_memory_utils.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/cpu_region_protect.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_clk.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_clk_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_sleep.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_time.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/chip_info.c" ], + "include_dirs": [ "include", "include/soc", "include/soc/esp32" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S" ], + "include_dirs": [ "include", "include/esp32", "esp32" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [ "spi_flash" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/esp_system/libesp_system.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/esp_err.c" ], + "include_dirs": [] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/hal/libhal.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/hal_utils.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mpu_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/efuse_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/efuse_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/wdt_hal_iram.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mmu_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/cache_hal_esp32.c" ], + "include_dirs": [ "platform_port/include", "esp32/include", "include" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/log", + "type": "LIBRARY", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "soc", "hal", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/log/liblog.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/log/log.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/log/log_buffers.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/log/log_noos.c" ], + "include_dirs": [ "include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/main", + "type": "LIBRARY", + "lib": "__idf_main", + "reqs": [ "bootloader", "bootloader_support" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/main/libmain.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/main/bootloader_start.c" ], + "include_dirs": [] + }, + "micro-ecc": { + "alias": "idf::micro-ecc", + "target": "___idf_micro-ecc", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc", + "type": "LIBRARY", + "lib": "__idf_micro-ecc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/soc/libsoc.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/lldesc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/dport_access_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/interrupts.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/gpio_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/uart_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/dport_access.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/adc_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/spi_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/ledc_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/pcnt_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/rmt_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdm_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/i2s_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/i2c_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/timer_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/lcd_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/mcpwm_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/mpi_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdmmc_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/touch_sensor_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/twai_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/dac_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/rtc_io_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdio_slave_periph.c" ], + "include_dirs": [ "include", "esp32", "esp32/include" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash", + "type": "LIBRARY", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/spi_flash/libspi_flash.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_wrap.c" ], + "include_dirs": [ "include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa", + "type": "LIBRARY", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/esp-idf/xtensa/libxtensa.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/eri.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xt_trax.c" ], + "include_dirs": [ "esp32/include", "include", "deprecated_include" ] + } + }, + "all_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "soc", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/bt", + "lib": "__idf_bt", + "reqs": [ "esp_timer", "esp_wifi" ], + "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "driver", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/console", + "lib": "__idf_console", + "reqs": [ "vfs" ], + "priv_reqs": [ "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/cxx", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "pthread" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": [ "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "driver", "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "esp32/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex", + "lib": "__idf_esp_coex", + "reqs": [], + "priv_reqs": [ "esp_timer", "driver", "esp_event" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "driver", "log", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota", + "lib": "__idf_esp_https_ota", + "reqs": [ "esp_http_client", "bootloader_support", "esp_app_format", "esp_event" ], + "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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_server", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/soc", "include/soc/esp32" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd", + "lib": "__idf_esp_lcd", + "reqs": [ "driver" ], + "priv_reqs": [ "esp_mm", "esp_psram" ], + "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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl", + "lib": "__idf_esp_local_ctrl", + "reqs": [ "protocomm", "esp_https_server" ], + "priv_reqs": [ "protobuf-c" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_mm": { + "alias": "idf::esp_mm", + "target": "___idf_esp_mm", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition", + "lib": "__idf_esp_partition", + "reqs": [], + "priv_reqs": [ "esp_system", "bootloader_support", "spi_flash", "app_update", "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_phy": { + "alias": "idf::esp_phy", + "target": "___idf_esp_phy", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "driver", "efuse", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "driver", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm", "bootloader_support", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32", "esp32" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system", + "lib": "__idf_esp_system", + "reqs": [ "spi_flash" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer", + "lib": "__idf_esp_timer", + "reqs": [ "esp_common" ], + "priv_reqs": [ "soc", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "driver", "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "wifi_apps/include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc" ], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_port/include", "esp32/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/heap", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154", + "lib": "__idf_ieee802154", + "reqs": [], + "priv_reqs": [ "esp_phy", "driver", "esp_timer", "esp_coex", "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "json": { + "alias": "idf::json", + "target": "___idf_json", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/log", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "soc", "hal", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "lwip": { + "alias": "idf::lwip", + "target": "___idf_lwip", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls", + "lib": "__idf_mbedtls", + "reqs": [], + "priv_reqs": [ "soc", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library" ] + }, + "mqtt": { + "alias": "idf::mqtt", + "target": "___idf_mqtt", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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", "../spi_flash/include" ] + }, + "nvs_sec_provider": { + "alias": "idf::nvs_sec_provider", + "target": "___idf_nvs_sec_provider", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/openthread", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "driver" ], + "priv_reqs": [ "console", "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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm", + "lib": "__idf_protocomm", + "reqs": [ "bt" ], + "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "driver" ], + "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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/riscv", + "lib": "__idf_riscv", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc", + "lib": "__idf_sdmmc", + "reqs": [ "driver" ], + "priv_reqs": [ "soc", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32", "esp32/include" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/touch_element", + "lib": "__idf_touch_element", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/usb", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "driver", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32/include", "include", "deprecated_include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "" +} diff --git a/ESPIDFNEW/build/bootloader/project_elf_src_esp32.c b/ESPIDFNEW/build/bootloader/project_elf_src_esp32.c new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/build.ninja b/ESPIDFNEW/build/build.ninja new file mode 100644 index 0000000..0615e6b --- /dev/null +++ b/ESPIDFNEW/build/build.ninja @@ -0,0 +1,17713 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.24 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: ESPIDFNEW +# 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 = C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 ESPIDFNEW.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 uf2 + +build uf2: phony CMakeFiles/uf2 + + +############################################# +# Utility command for uf2-app + +build uf2-app: phony CMakeFiles/uf2-app + + +############################################# +# Utility command for monitor + +build monitor: phony CMakeFiles/monitor ESPIDFNEW.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_esp32.c + +# ============================================================================= +# Object build statements for EXECUTABLE target ESPIDFNEW.elf + + +############################################# +# Order-only phony target for ESPIDFNEW.elf + +build cmake_object_order_depends_target_ESPIDFNEW.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_app_trace cmake_object_order_depends_target___idf_cmock cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_hid cmake_object_order_depends_target___idf_esp_lcd cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_espcoredump cmake_object_order_depends_target___idf_espressif__esp-dsp cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_nvs_sec_provider cmake_object_order_depends_target___idf_perfmon cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa esp-idf/esp_system/__ldgen_output_sections.ld project_elf_src_esp32.c + +build CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj: C_COMPILER__ESPIDFNEW.2eelf_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/project_elf_src_esp32.c || cmake_object_order_depends_target_ESPIDFNEW.elf + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = CMakeFiles\ESPIDFNEW.elf.dir\project_elf_src_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always + INCLUDES = -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter + OBJECT_DIR = CMakeFiles\ESPIDFNEW.elf.dir + OBJECT_FILE_DIR = CMakeFiles\ESPIDFNEW.elf.dir + + +# ============================================================================= +# Link build statements for EXECUTABLE target ESPIDFNEW.elf + + +############################################# +# Link the executable ESPIDFNEW.elf + +build ESPIDFNEW.elf: CXX_EXECUTABLE_LINKER__ESPIDFNEW.2eelf_ CMakeFiles/ESPIDFNEW.elf.dir/project_elf_src_esp32.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/main/libmain.a esp-idf/app_trace/libapp_trace.a esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/json/libjson.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.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 C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.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 C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.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 C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.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 C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.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 C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_system/ld/memory.ld esp-idf/esp_system/ld/sections.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.api.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libgcc.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-data.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.syscalls.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-funcs.ld C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/ld/esp32.peripherals.ld || _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_system/__ldgen_output_sections.ld esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/main/libmain.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + LINK_FLAGS = -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32=0 -Wl,--Map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ESPIDFNEW.map -Wl,--no-warn-rwx-segments -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T esp32.peripherals.ld -T esp32.rom.ld -T esp32.rom.api.ld -T esp32.rom.libgcc.ld -T esp32.rom.newlib-data.ld -T esp32.rom.syscalls.ld -T esp32.rom.newlib-funcs.ld -T memory.ld -T sections.ld + LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/main/libmain.a esp-idf/app_trace/libapp_trace.a esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a -u nvs_sec_provider_include_impl esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/json/libjson.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.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 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.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 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.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 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.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 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.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 C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libcore.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libpp.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32/libwapi.a C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/libxt_hal.a -u esp_app_desc -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 -u ld_include_highint_hdl -u start_app -u start_app_other_cores -u __ubsan_include -Wl,--wrap=longjmp -u __assert_func -u esp_dport_access_reg_read -Wl,--undefined=FreeRTOS_openocd_params -u app_main -lc -lm -u newlib_include_heap_impl -u newlib_include_syscalls_impl -u newlib_include_pthread_impl -u newlib_include_assert_impl -Wl,--wrap=_Unwind_SetEnableExceptionFdeSorting -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 -u __cxa_guard_dummy -lstdc++ esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a -lgcc esp-idf/cxx/libcxx.a -u __cxx_fatal_exception -u include_esp_phy_override -lphy -lrtc esp-idf/esp_phy/libesp_phy.a -lphy -lrtc esp-idf/esp_phy/libesp_phy.a -lphy -lrtc -u vfs_include_syscalls_impl + LINK_PATH = -LC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/ld -LC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld -LC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld -LC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/esp32 -LC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/esp32 + OBJECT_DIR = CMakeFiles\ESPIDFNEW.elf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = ESPIDFNEW.elf + TARGET_PDB = ESPIDFNEW.elf.dbg + RSP_FILE = CMakeFiles\ESPIDFNEW.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 edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config.env && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Job/esp/v5.2.2/esp-idf/Kconfig --sdkconfig-rename C:/Users/Job/esp/v5.2.2/esp-idf/sdkconfig.rename --config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config.env --env IDF_TARGET=esp32 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.2.2 --dont-write-deprecated --output config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/check_term.py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/kconfigs_projbuild.in KCONFIG_CONFIG=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig IDF_TARGET=esp32 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.2.2 C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/menuconfig_wrapper.py C:/Users/Job/esp/v5.2.2/esp-idf/Kconfig && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Job/esp/v5.2.2/esp-idf/Kconfig --sdkconfig-rename C:/Users/Job/esp/v5.2.2/esp-idf/sdkconfig.rename --config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config.env --env IDF_TARGET=esp32 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.2.2 --output config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\confserver + +build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config.env && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe -m kconfserver --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config.env --kconfig C:/Users/Job/esp/v5.2.2/esp-idf/Kconfig --sdkconfig-rename C:/Users/Job/esp/v5.2.2/esp-idf/sdkconfig.rename --config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\save-defconfig + +build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config.env && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Job/esp/v5.2.2/esp-idf/Kconfig --sdkconfig-rename C:/Users/Job/esp/v5.2.2/esp-idf/sdkconfig.rename --config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config.env --dont-write-deprecated --output savedefconfig C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E make_directory C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/CMakeFiles/bootloader-complete && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DSDKCONFIG=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig -DIDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -DIDF_TARGET=esp32 -DPYTHON_DEPS_CHECKED=1 -DPYTHON=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe -DEXTRA_COMPONENT_DIRS=C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader -DPROJECT_SOURCE_DIR=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW -DIGNORE_EXTRA_COMPONENT= -GNinja C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo_append && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo_append && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/src/bootloader-stamp/bootloader-install" + DESC = No install step for 'bootloader' + restat = 1 + + +############################################# +# 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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -Dcfgdir= -P C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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-update || esp-idf/partition_table/partition_table_bin + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo_append && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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-download || esp-idf/partition_table/partition_table_bin + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo_append && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 || ESPIDFNEW.elf _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.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_system/__ldgen_output_sections.ld 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/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.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/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + + +############################################# +# Custom command for .bin_timestamp + +build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND ESPIDFNEW.elf || ESPIDFNEW.elf _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.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_system/__ldgen_output_sections.ld 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/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.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/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 elf2image --flash_mode dio --flash_freq 40m --flash_size 2MB --elf-sha256-offset 0xb0 --dont-append-digest --min-rev-full 0 --max-rev-full 399 --dont-append-digest -o C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ESPIDFNEW.bin C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ESPIDFNEW.elf && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Generated C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ESPIDFNEW.bin" && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E md5sum C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ESPIDFNEW.bin > C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 || ESPIDFNEW.elf _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.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_system/__ldgen_output_sections.ld 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/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.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/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.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 = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32 -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2 + +build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;C:/Users/Job/esp/v5.2.2/esp-idf/tools/mkuf2.py;write;--chip;esp32 -D SERIAL_TOOL_ARGS=--json;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/flasher_args.json;-o;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/uf2.bin -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2-app + +build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;C:/Users/Job/esp/v5.2.2/esp-idf/tools/mkuf2.py;write;--chip;esp32 -D SERIAL_TOOL_ARGS=--json;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/flasher_args.json;-o;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/uf2-app.bin;--bin;app -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\monitor + +build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || ESPIDFNEW.elf _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.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_system/__ldgen_output_sections.ld 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/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.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/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--target;esp32;--revision;0;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ESPIDFNEW.elf -D WORKING_DIRECTORY=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\flash + +build CMakeFiles/flash | ${cmake_ninja_workdir}CMakeFiles/flash: CUSTOM_COMMAND || ESPIDFNEW.elf _project_elf_src app bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.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_system/__ldgen_output_sections.ld 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/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.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/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build -P C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Error: The target encrypted-flash requires" && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Job/.espressif/tools/cmake/3.24.0/bin/cmake.exe -P C:/Users/Job/esp/v5.2.2/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_esp32.c + + +############################################# +# Custom command for project_elf_src_esp32.c + +build project_elf_src_esp32.c | ${cmake_ninja_workdir}project_elf_src_esp32.c: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E touch C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/project_elf_src_esp32.c" + DESC = Generating project_elf_src_esp32.c + restat = 1 + + +############################################# +# Custom command for CMakeFiles\size + +build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND ESPIDFNEW.map + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ESPIDFNEW.map -D OUTPUT_JSON= -P C:/Users/Job/esp/v5.2.2/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 ESPIDFNEW.map + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ESPIDFNEW.map -D OUTPUT_JSON= -P C:/Users/Job/esp/v5.2.2/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 ESPIDFNEW.map + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ESPIDFNEW.map -D OUTPUT_JSON= -P C:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_ringbuf + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: C_COMPILER____idf_xtensa_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____idf_xtensa_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj: ASM_COMPILER____idf_xtensa_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xtensa_context.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj: ASM_COMPILER____idf_xtensa_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xtensa_intr_asm.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj: C_COMPILER____idf_xtensa_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xtensa_intr.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj: ASM_COMPILER____idf_xtensa_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xtensa_vectors.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + + +# ============================================================================= +# 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_ringbuf/libesp_ringbuf.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\xtensa\libxtensa.a + TARGET_PDB = xtensa.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\xtensa && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\xtensa && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\xtensa && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\xtensa && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\xtensa && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_efuse + +build esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj: C_COMPILER____idf_esp_ringbuf_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/ringbuf.c || cmake_object_order_depends_target___idf_esp_ringbuf + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + OBJECT_FILE_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + + +# ============================================================================= +# 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/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_ringbuf\libesp_ringbuf.a + TARGET_PDB = esp_ringbuf.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_ringbuf && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_ringbuf && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_ringbuf && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_ringbuf && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_ringbuf && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_mm + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\esp_efuse_table.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\without_key_purposes\three_key_blocks\esp_efuse_api_key.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\without_key_purposes\three_key_blocks + + +# ============================================================================= +# 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/esp32/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/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/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj || esp-idf/esp_mm/libesp_mm.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\efuse\libefuse.a + TARGET_PDB = efuse.a.dbg + + +############################################# +# 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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\efuse && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192" + + +############################################# +# 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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\efuse && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192 --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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\efuse && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\efuse && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32 --max_blk_len 192" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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_driver + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj: C_COMPILER____idf_esp_mm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/esp_mmu_map.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj: C_COMPILER____idf_esp_mm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/port/esp32/ext_mem_layout.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\ext_mem_layout.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj: C_COMPILER____idf_esp_mm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/esp_cache.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj: C_COMPILER____idf_esp_mm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/cache_esp32.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\cache_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + + +# ============================================================================= +# 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/esp32/ext_mem_layout.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj || esp-idf/driver/libdriver.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_mm\libesp_mm.a + TARGET_PDB = esp_mm.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_mm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_mm && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_mm && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_mm && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_mm && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_mm && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_pm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/gpio.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\gpio\gpio.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\gpio + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_glitch_filter_ops.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/gpio_glitch_filter_ops.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\gpio\gpio_glitch_filter_ops.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\gpio + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/rtc_io.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\gpio\rtc_io.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\gpio + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/spi_bus_lock.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/spi_bus_lock.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\spi\spi_bus_lock.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\spi + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/adc_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/adc_dma_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_oneshot.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/dac_oneshot.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\dac\dac_oneshot.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\dac + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_cosine.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/dac_cosine.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\dac\dac_cosine.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\dac + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_continuous.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/dac_continuous.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\dac\dac_continuous.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\dac + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_common.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/dac_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\dac\dac_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\dac + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/esp32/dac_dma.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/esp32/dac_dma.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\dac\esp32\dac_dma.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\dac\esp32 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/dac_common_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/dac_common_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\dac_common_legacy.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/esp32/dac_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/esp32/dac_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\dac_legacy.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/gptimer.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\gptimer\gptimer.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\gptimer + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer_priv.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/gptimer_priv.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\gptimer\gptimer_priv.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\gptimer + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/timer_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/i2c.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_master.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/i2c_master.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_master.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_common.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/i2c_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_slave.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/i2c_slave.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_slave.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/i2s_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\i2s\i2s_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\i2s + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_platform.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/i2s_platform.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\i2s\i2s_platform.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\i2s + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/i2s_std.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\i2s\i2s_std.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\i2s + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/i2s_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/i2s_pdm.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\i2s\i2s_pdm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\i2s + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc/ledc.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/ledc.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\ledc\ledc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\ledc + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_cap.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\mcpwm\mcpwm_cap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_cmpr.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\mcpwm\mcpwm_cmpr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_com.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\mcpwm\mcpwm_com.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_fault.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\mcpwm\mcpwm_fault.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_gen.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\mcpwm\mcpwm_gen.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_oper.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\mcpwm\mcpwm_oper.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_sync.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\mcpwm\mcpwm_sync.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_timer.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\mcpwm\mcpwm_timer.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\mcpwm + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/mcpwm_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt/pulse_cnt.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/pulse_cnt.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\pcnt\pulse_cnt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\pcnt + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/pcnt_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/rmt_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\rmt\rmt_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\rmt + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/rmt_encoder.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\rmt\rmt_encoder.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\rmt + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/rmt_rx.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\rmt\rmt_rx.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\rmt + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/rmt_tx.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\rmt\rmt_tx.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\rmt + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/rmt_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave/sdio_slave.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/sdio_slave.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\sdio_slave\sdio_slave.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\sdio_slave + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_transaction.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/sdmmc_transaction.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\sdmmc\sdmmc_transaction.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\sdmmc + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_host.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/sdmmc_host.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\sdmmc\sdmmc_host.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\sdmmc + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sigma_delta/sdm.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/sdm.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\sigma_delta\sdm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\sigma_delta + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/sigma_delta_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_common.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/gpspi/spi_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\spi\gpspi\spi_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\spi\gpspi + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_master.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/gpspi/spi_master.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\spi\gpspi\spi_master.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\spi\gpspi + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/gpspi/spi_slave.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\spi\gpspi\spi_slave.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\spi\gpspi + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_crc.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/sdspi/sdspi_crc.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\spi\sdspi\sdspi_crc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\spi\sdspi + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_host.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/sdspi/sdspi_host.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\spi\sdspi\sdspi_host.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\spi\sdspi + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_transaction.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/sdspi/sdspi_transaction.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\spi\sdspi\sdspi_transaction.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\spi\sdspi + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/touch_sensor_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/touch_sensor.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\touch_sensor.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/twai.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/uart/uart.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/uart.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\uart\uart.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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\uart + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_i2s_deprecated.c.obj: C_COMPILER____idf_driver_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/adc_i2s_deprecated.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_i2s_deprecated.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + + +# ============================================================================= +# 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/gpio/gpio.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_glitch_filter_ops.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/spi_bus_lock.c.obj 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/dac/dac_oneshot.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_cosine.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_continuous.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/esp32/dac_dma.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/dac_common_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/esp32/dac_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer_priv.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/i2c/i2c_master.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_slave.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_platform.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc/ledc.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt/pulse_cnt.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave/sdio_slave.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_transaction.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_host.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sigma_delta/sdm.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_master.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_crc.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_host.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_transaction.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/esp32/touch_sensor.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/uart/uart.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_i2s_deprecated.c.obj || esp-idf/esp_pm/libesp_pm.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\driver\libdriver.a + TARGET_PDB = driver.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/driver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\driver && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\driver && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\driver && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\driver && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\driver && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/pm_locks.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj: C_COMPILER____idf_esp_pm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/pm_trace.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj: C_COMPILER____idf_esp_pm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/pm_impl.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\esp_pm\libesp_pm.a + TARGET_PDB = esp_pm.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_pm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_pm && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_pm && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_pm && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_pm && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_pm && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj: ASM_COMPILER____idf_mbedtls_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/x509_crt_bundle.S || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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\__\__ + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\mbedtls\libmbedtls.a + TARGET_PDB = mbedtls.a.dbg + + +############################################# +# 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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 C$:/Users/Job/esp/v5.2.2/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/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_rom/libesp_rom.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/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D DATA_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/x509_crt_bundle -D SOURCE_FILE=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/x509_crt_bundle.S -D FILE_TYPE=BINARY -P C:/Users/Job/esp/v5.2.2/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/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_rom/libesp_rom.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/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/gen_crt_bundle.py --input C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_all.pem C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_local.pem -q" + DESC = Generating x509_crt_bundle + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\mbedtls\doxygen && doxygen mbedtls.doxyfile" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj: C_COMPILER__everest_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj: C_COMPILER__everest_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.a + TARGET_PDB = everest.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + 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 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj: C_COMPILER__p256m_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + 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 + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.a + TARGET_PDB = p256m.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/aesni.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/aesce.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/aria.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/asn1write.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/base64.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/bignum_core.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/bignum_mod.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/bignum_mod_raw.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/block_cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/camellia.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ccm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/chacha20.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/constant_time.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/cmac.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/des.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/dhm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ecdh.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ecp.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ecp_curves_new.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/entropy.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/error.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/gcm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/hkdf.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/lmots.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/lms.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/md.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/md5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/oid.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/padlock.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/pem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/pk.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/pk_ecc.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/pkparse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/platform.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/platform_util.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/poly1305.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_aead.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_client.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ecp.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_hash.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_mac.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_pake.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_rsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_se.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_storage.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_its_file.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/psa_util.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/rsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/rsa_alt_helpers.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/sha3.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/threading.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/version.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/version_features.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_hardware.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_hardware.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\esp_hardware.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_mem.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_mem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\esp_mem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_timing.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\esp_timing.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\aes\esp_aes_xts.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\aes + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_common.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\aes\esp_aes_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\aes + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/block/esp_aes.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/block/esp_aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\aes\block\esp_aes.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\aes\block + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/esp_sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\sha\esp_sha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\sha + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\sha\parallel_engine\sha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\sha\parallel_engine + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/esp_bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\bignum\esp_bignum.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\bignum + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/bignum_alt.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\bignum\bignum_alt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\bignum + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\sha\parallel_engine\esp_sha1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\sha\parallel_engine + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\sha\parallel_engine\esp_sha256.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\sha\parallel_engine + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\sha\parallel_engine\esp_sha512.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\sha\parallel_engine + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\aes\esp_aes_gcm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\aes + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/md/esp_md.c.obj: C_COMPILER__mbedcrypto_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/md/esp_md.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\md\esp_md.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\md + + +# ============================================================================= +# 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/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_hardware.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_mem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/block/esp_aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/md/esp_md.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedx509.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.a + TARGET_PDB = mbedcrypto.a.dbg + 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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/pkcs7.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj: C_COMPILER__mbedx509_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/x509.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj: C_COMPILER__mbedx509_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/x509_create.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj: C_COMPILER__mbedx509_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj: C_COMPILER__mbedx509_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj: C_COMPILER__mbedx509_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj: C_COMPILER__mbedx509_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/x509write.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj: C_COMPILER__mbedx509_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj: C_COMPILER__mbedx509_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + + +# ============================================================================= +# 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 -Wno-frame-address -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_FILE = esp-idf\mbedtls\mbedtls\library\libmbedx509.a + TARGET_PDB = mbedx509.a.dbg + +# ============================================================================= +# 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_bootloader_format + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/mbedtls_debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\mbedtls_debug.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_platform_time.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_platform_time.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\esp_platform_time.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/net_sockets.c.obj: C_COMPILER__mbedtls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/net_sockets.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port\net_sockets.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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\C_\Users\Job\esp\v5.2.2\esp-idf\components\mbedtls\port + + +# ============================================================================= +# 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/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_platform_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/net_sockets.c.obj || esp-idf/esp_bootloader_format/libesp_bootloader_format.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\mbedtls\mbedtls\library\libmbedtls.a + TARGET_PDB = mbedtls.a.dbg + + +############################################# +# 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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.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_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/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/nvs_flash/libnvs_flash.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_esp_app_format + +build esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj: C_COMPILER____idf_esp_bootloader_format_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + 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 + + +# ============================================================================= +# 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/esp_app_format/libesp_app_format.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_bootloader_format\libesp_bootloader_format.a + TARGET_PDB = esp_bootloader_format.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_bootloader_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_bootloader_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_bootloader_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_bootloader_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_bootloader_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_bootloader_support + +build esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj: C_COMPILER____idf_esp_app_format_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_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=\"ESPIDFNEW\" -DPROJECT_VER=\"1\" + DEP_FILE = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\esp_app_desc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + 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 + + +# ============================================================================= +# 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/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_app_format\libesp_app_format.a + TARGET_PDB = esp_app_format.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_app_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_app_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_app_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_app_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_app_format && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_partition + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_random_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\idf\bootloader_sha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/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\idf + + +# ============================================================================= +# 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_esp32.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_esp32.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/idf/bootloader_sha.c.obj || esp-idf/esp_partition/libesp_partition.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\bootloader_support\libbootloader_support.a + TARGET_PDB = bootloader_support.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bootloader_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bootloader_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bootloader_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bootloader_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bootloader_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@bootloader-flash_args -D WORKING_DIRECTORY=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build -P C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bootloader && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Error: The target encrypted-bootloader-flash requires" && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Job/.espressif/tools/cmake/3.24.0/bin/cmake.exe -P C:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/scripts/fail.cmake" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 || ESPIDFNEW.elf _project_elf_src app esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.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_system/__ldgen_output_sections.ld 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/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/esptool_py/app_check_size esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.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/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@app-flash_args -D WORKING_DIRECTORY=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build -P C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esptool_py && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Error: The target encrypted-app-flash requires" && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Job/.espressif/tools/cmake/3.24.0/bin/cmake.exe -P C:/Users/Job/esp/v5.2.2/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 || ESPIDFNEW.elf _project_elf_src esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.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_system/__ldgen_output_sections.ld 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/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/partition_table/partition_table_bin esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.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/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esptool_py && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/partition_table/partition-table.bin C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ESPIDFNEW.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/partitions_singleapp.csv C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/gen_esp32part.py + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\partition_table && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/partitions_singleapp.csv C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/partition_table/partition-table.bin && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo ******************************************************************************* && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/partition_table/partition-table.bin && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo ******************************************************************************* && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 2MB -- C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/partition_table/partition-table.bin && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\esp\v5.2.2\esp-idf\components\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=C:/Users/Job/esp/v5.2.2/esp-idf -D SERIAL_TOOL=C:/Users/Job/.espressif/python_env/idf5.2_py3.11_env/Scripts/python.exe;;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@partition-table-flash_args -D WORKING_DIRECTORY=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build -P C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "Error: The target encrypted-partition-table-flash requires" && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Job/.espressif/tools/cmake/3.24.0/bin/cmake.exe -P C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\partition_table && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_app_update + +build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj: C_COMPILER____idf_esp_partition_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/partition.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj: C_COMPILER____idf_esp_partition_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/partition_target.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/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 + + +# ============================================================================= +# 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/app_update/libapp_update.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_partition\libesp_partition.a + TARGET_PDB = esp_partition.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_partition/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_partition && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_partition && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_partition && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_partition && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_partition && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_spi_flash + +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj: C_COMPILER____idf_app_update_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/esp_ota_ops.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj: C_COMPILER____idf_app_update_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/esp_ota_app_desc.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/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 + + +# ============================================================================= +# 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/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\app_update\libapp_update.a + TARGET_PDB = app_update.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/app_update/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\app_update && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\app_update && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\app_update && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\app_update && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\app_update && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_pthread + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/flash_brownout_hook.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_mxic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_winbond.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_boya.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_th.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/cache_utils.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/flash_ops.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj: C_COMPILER____idf_spi_flash_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + + +# ============================================================================= +# 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/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/pthread/libpthread.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\spi_flash\libspi_flash.a + TARGET_PDB = spi_flash.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\spi_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\spi_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\spi_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\spi_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\spi_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_esp_system + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj: C_COMPILER____idf_pthread_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/pthread.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj: C_COMPILER____idf_pthread_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/pthread_cond_var.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj: C_COMPILER____idf_pthread_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/pthread_local_storage.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj: C_COMPILER____idf_pthread_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/pthread_rwlock.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj: C_COMPILER____idf_pthread_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/pthread_semaphore.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + + +# ============================================================================= +# 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/esp_system/libesp_system.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\pthread\libpthread.a + TARGET_PDB = pthread.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/pthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\pthread && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\pthread && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\pthread && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\pthread && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\pthread && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_rom + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/crosscore_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/esp_ipc.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/freertos_hooks.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/int_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/panic.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/esp_system.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/startup.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/system_time.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/stack_check.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/ubsan.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/xt_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\debug_stubs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/task_wdt/task_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/cpu_start.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/panic_handler.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/esp_system_chip.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/brownout.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\brownout.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/esp_ipc_isr.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/trax.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj: ASM_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/highint_hdl.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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\esp32 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/clk.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\clk.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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\esp32 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/reset_reason.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\reset_reason.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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\esp32 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/system_internal.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\system_internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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\esp32 + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj: C_COMPILER____idf_esp_system_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/cache_err_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\cache_err_int.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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\esp32 + + +# ============================================================================= +# 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/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/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/debug_stubs.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/brownout.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/esp32/highint_hdl.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj || esp-idf/esp_rom/libesp_rom.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_system\libesp_system.a + TARGET_PDB = esp_system.a.dbg + + +############################################# +# 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 __ldgen_output_sections.ld + +build esp-idf/esp_system/__ldgen_output_sections.ld: phony esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld esp-idf/esp_system/ld/sections.ld esp-idf/esp_system/ld/sections.ld.in esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/main/libmain.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/ld/esp32/memory.ld.in config/sdkconfig.h + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCC=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe -DSOURCE=C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/ld/esp32/memory.ld.in -DTARGET=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/memory.ld -DCONFIG_DIR=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -DLD_DIR=C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/ld -P C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/linker_script_generator.cmake" + DESC = Generating C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/ld/esp32/sections.ld.in config/sdkconfig.h + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCC=C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe -DSOURCE=C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/ld/esp32/sections.ld.in -DTARGET=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld.in -DCONFIG_DIR=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -DLD_DIR=C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/ld -P C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/linker_script_generator.cmake" + DESC = Generating C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld.in linker script... + restat = 1 + + +############################################# +# Phony custom command for esp-idf\esp_system\CMakeFiles\__ldgen_output_sections.ld + +build esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld: phony esp-idf/esp_system/ld/sections.ld || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.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_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/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.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/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.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 C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/app.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/log/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/dma/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/linker_common.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/newlib.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/system_libs.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/common.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/soc.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/linker.lf C$:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/linker.lf esp-idf/xtensa/libxtensa.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/efuse/libefuse.a esp-idf/esp_mm/libesp_mm.a esp-idf/driver/libdriver.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/pthread/libpthread.a esp-idf/esp_system/libesp_system.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/cxx/libcxx.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/app_trace/libapp_trace.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/sdmmc/libsdmmc.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/spiffs/libspiffs.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/main/libmain.a C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.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_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/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/fatfs/libfatfs.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/http_parser/libhttp_parser.a esp-idf/json/libjson.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.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/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.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/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/ldgen/ldgen.py --config C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig --fragments-list C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/app.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/log/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/heap/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/dma/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/linker_common.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/newlib.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/system_libs.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/common.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/soc.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/linker.lf;C:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/linker.lf --input C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld.in --output C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld --kconfig C:/Users/Job/esp/v5.2.2/esp-idf/Kconfig --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config.env --libraries-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/ldgen_libraries --objdump C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe" + DESC = Generating ld/sections.ld + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system\port && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system\port && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system\port && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system\port && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system\port && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/port/soc/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system\port\soc\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32/edit_cache: phony esp-idf/esp_system/port/soc/esp32/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/port/soc/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system\port\soc\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32/rebuild_cache: phony esp-idf/esp_system/port/soc/esp32/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_system/port/soc/esp32/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_system/port/soc/esp32/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system\port\soc\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32/install: phony esp-idf/esp_system/port/soc/esp32/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system\port\soc\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/esp32/install/local: phony esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system\port\soc\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/esp32/install/strip: phony esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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_crc.c.obj: C_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj: ASM_COMPILER____idf_esp_rom_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + + +# ============================================================================= +# 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_crc.c.obj 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_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_longjmp.S.obj || esp-idf/hal/libhal.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_rom\libesp_rom.a + TARGET_PDB = esp_rom.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_rom && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_rom && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_rom && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_rom && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_rom && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mpu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\efuse_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32 + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/wdt_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\wdt_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/cache_hal_esp32.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\cache_hal_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32 + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_flash_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/clk_tree_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/clk_tree_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\clk_tree_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32 + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/uart_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/uart_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/gpio_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/rtc_io_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/timer_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/ledc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/ledc_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/i2c_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/i2c_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/rmt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/pcnt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mcpwm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/twai_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/twai_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/i2s_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/sdm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/sdmmc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/emac_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\emac_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/adc_hal_common.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/adc_oneshot_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/adc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mpi_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/sha_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/aes_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/brownout_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_slave_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/sdio_slave_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\sdio_slave_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\touch_sensor_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32 + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj: C_COMPILER____idf_hal_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/gpio_hal_workaround.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\gpio_hal_workaround.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32 + + +# ============================================================================= +# 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/esp32/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.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/esp32/clk_tree_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/twai_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.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/emac_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/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/sdio_slave_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\hal\libhal.a + TARGET_PDB = hal.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\hal && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\hal && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\hal && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\hal && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\hal && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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/log.c.obj: C_COMPILER____idf_log_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/log/log.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\log.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + +build esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj: C_COMPILER____idf_log_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/log/log_buffers.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\log_buffers.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + +build esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj: C_COMPILER____idf_log_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/log/log_freertos.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\log_freertos.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + + +# ============================================================================= +# 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/log.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj || esp-idf/heap/libheap.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\log\liblog.a + TARGET_PDB = log.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\log && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\log && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\log && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\log && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\log && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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.c.obj: C_COMPILER____idf_heap_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/heap_caps.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj: C_COMPILER____idf_heap_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/heap_caps_init.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj: C_COMPILER____idf_heap_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/multi_heap.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj: C_COMPILER____idf_heap_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf/tlsf.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\tlsf + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj: C_COMPILER____idf_heap_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/port/memory_layout_utils.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\port + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj: C_COMPILER____idf_heap_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/port/esp32/memory_layout.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\memory_layout.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\esp32 + + +# ============================================================================= +# 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.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/esp32/memory_layout.c.obj || esp-idf/soc/libsoc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\heap\libheap.a + TARGET_PDB = heap.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\heap && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\heap && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\heap && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\heap && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\heap && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_hw_support + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\interrupts.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\gpio_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/uart_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\uart_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/dport_access.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\dport_access.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/adc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\adc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/spi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\spi_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/ledc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\ledc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/pcnt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\pcnt_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/rmt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\rmt_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\sdm_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/i2s_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\i2s_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/i2c_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\i2c_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/timer_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\timer_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/lcd_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\lcd_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\mcpwm_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/mpi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\mpi_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\sdmmc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/touch_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\touch_sensor_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/twai_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\twai_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/dac_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\dac_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\rtc_io_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj: C_COMPILER____idf_soc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdio_slave_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\sdio_slave_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + + +# ============================================================================= +# 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/esp32/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\soc\libsoc.a + TARGET_PDB = soc.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\soc && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\soc && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\soc && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\soc && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\soc && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\cpu_region_protect.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/esp_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/hw_random.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/intr_alloc.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/mac_addr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/revision.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/rtc_module.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sleep_modes.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sleep_console.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sleep_gpio.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sleep_event.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sleep_modem.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/regi2c_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/io_mux.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\io_mux.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/esp_clk_tree.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\esp_clk_tree.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +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_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/rtc_wdt.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_wdt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/mspi_timing_tuning.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_config.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/mspi_timing_config.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_config.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\rtc_clk.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\rtc_clk_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\rtc_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\rtc_sleep.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\rtc_time.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\chip_info.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/cache_sram_mmu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\cache_sram_mmu.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_crypto_lock.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/esp_crypto_lock.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\esp_crypto_lock.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/sar_periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\sar_periph_ctrl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/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\esp32 + + +# ============================================================================= +# 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/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/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/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_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/sleep_modem.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/esp32/io_mux.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.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/dma/esp_dma_utils.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/rtc_wdt.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_config.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/port/esp32/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_crypto_lock.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj || esp-idf/freertos/libfreertos.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_hw_support\libesp_hw_support.a + TARGET_PDB = esp_hw_support.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hw_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hw_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hw_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hw_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hw_support && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hw_support\port\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/edit_cache: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hw_support\port\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/port/esp32/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hw_support\port\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/install: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hw_support\port\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/esp32/install/local: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hw_support\port\esp32 && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/esp32/install/strip: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/heap_idf.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/app_startup.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/port_common.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/port_systick.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/list.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj: ASM_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/freertos_compatibility.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj: C_COMPILER____idf_freertos_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/idf_additions.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions + + +# ============================================================================= +# 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.c.obj || esp-idf/newlib/libnewlib.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\freertos\libfreertos.a + TARGET_PDB = freertos.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\freertos && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\freertos && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\freertos && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\freertos && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\freertos && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_cxx + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/abort.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\abort.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/assert.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\assert.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/heap.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\heap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-builtin + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/locks.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\locks.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/poll.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\poll.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/pthread.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\pthread.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/random.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\random.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/getentropy.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\getentropy.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/reent_init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\reent_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/newlib_init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\newlib_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/syscalls.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\syscalls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/termios.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\termios.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/stdatomic.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\stdatomic.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/time.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\time.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/sysconf.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\sysconf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/realpath.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\realpath.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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 + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj: C_COMPILER____idf_newlib_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/port/esp_time_impl.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\port\esp_time_impl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/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\port + + +# ============================================================================= +# 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/abort.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj || esp-idf/cxx/libcxx.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\newlib\libnewlib.a + TARGET_PDB = newlib.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\newlib && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\newlib && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\newlib && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\newlib && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\newlib && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\newlib\port && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/newlib/port/edit_cache: phony esp-idf/newlib/port/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/newlib/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\newlib\port && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/newlib/port/rebuild_cache: phony esp-idf/newlib/port/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/newlib/port/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/newlib/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/port/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\newlib\port && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/newlib/port/install: phony esp-idf/newlib/port/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/newlib/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/port/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\newlib\port && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/port/install/local: phony esp-idf/newlib/port/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/newlib/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/port/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\newlib\port && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/port/install/strip: phony esp-idf/newlib/port/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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 || cmake_object_order_depends_target___idf_esp_common + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj: CXX_COMPILER____idf_cxx_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/cxx/cxx_exception_stubs.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj: CXX_COMPILER____idf_cxx_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/cxx/cxx_guards.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + + +# ============================================================================= +# 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/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\cxx\libcxx.a + TARGET_PDB = cxx.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/cxx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\cxx && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\cxx && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\cxx && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\cxx && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\cxx && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_timer + +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/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 + + +# ============================================================================= +# 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_timer/libesp_timer.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_common\libesp_common.a + TARGET_PDB = esp_common.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_common && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_common && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_common && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_common && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_common && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/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_event + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj: C_COMPILER____idf_esp_timer_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/src/esp_timer.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/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 + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj: C_COMPILER____idf_esp_timer_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/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 + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj: C_COMPILER____idf_esp_timer_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/src/system_time.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/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 + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj: C_COMPILER____idf_esp_timer_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/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 + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj: C_COMPILER____idf_esp_timer_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/src/esp_timer_impl_lac.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_lac.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/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 + + +# ============================================================================= +# 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/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_lac.c.obj || esp-idf/esp_event/libesp_event.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_timer\libesp_timer.a + TARGET_PDB = esp_timer.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_timer && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_timer && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_timer && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_timer && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_timer && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_app_trace + + +############################################# +# Order-only phony target for __idf_app_trace + +build cmake_object_order_depends_target___idf_app_trace: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj: C_COMPILER____idf_app_trace_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/app_trace.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_trace\CMakeFiles\__idf_app_trace.dir\app_trace.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj: C_COMPILER____idf_app_trace_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/app_trace_util.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_trace\CMakeFiles\__idf_app_trace.dir\app_trace_util.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj: C_COMPILER____idf_app_trace_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/host_file_io.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_trace\CMakeFiles\__idf_app_trace.dir\host_file_io.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj: C_COMPILER____idf_app_trace_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/port/port_uart.c || cmake_object_order_depends_target___idf_app_trace + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_trace\CMakeFiles\__idf_app_trace.dir\port\port_uart.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir\port + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_app_trace + + +############################################# +# Link the static library esp-idf\app_trace\libapp_trace.a + +build esp-idf/app_trace/libapp_trace.a: C_STATIC_LIBRARY_LINKER____idf_app_trace_ esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\app_trace\CMakeFiles\__idf_app_trace.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\app_trace\libapp_trace.a + TARGET_PDB = app_trace.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/app_trace/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\app_trace && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/app_trace/edit_cache: phony esp-idf/app_trace/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/app_trace/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\app_trace && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/app_trace/rebuild_cache: phony esp-idf/app_trace/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/app_trace/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/app_trace/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_trace/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\app_trace && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/app_trace/install: phony esp-idf/app_trace/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/app_trace/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_trace/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\app_trace && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_trace/install/local: phony esp-idf/app_trace/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/app_trace/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_trace/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\app_trace && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_trace/install/strip: phony esp-idf/app_trace/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_event + + +############################################# +# Order-only phony target for __idf_esp_event + +build cmake_object_order_depends_target___idf_esp_event: phony || cmake_object_order_depends_target___idf_nvs_flash + +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj: C_COMPILER____idf_esp_event_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/default_event_loop.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_event\CMakeFiles\__idf_esp_event.dir\default_event_loop.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj: C_COMPILER____idf_esp_event_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/esp_event.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_event\CMakeFiles\__idf_esp_event.dir\esp_event.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj: C_COMPILER____idf_esp_event_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/esp_event_private.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_event\CMakeFiles\__idf_esp_event.dir\esp_event_private.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_event + + +############################################# +# Link the static library esp-idf\esp_event\libesp_event.a + +build esp-idf/esp_event/libesp_event.a: C_STATIC_LIBRARY_LINKER____idf_esp_event_ esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj || esp-idf/nvs_flash/libnvs_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_event\libesp_event.a + TARGET_PDB = esp_event.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_event/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_event && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_event/edit_cache: phony esp-idf/esp_event/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_event/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_event && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_event/rebuild_cache: phony esp-idf/esp_event/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_event/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_event/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_event/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_event && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_event/install: phony esp-idf/esp_event/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_event/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_event/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_event && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_event/install/local: phony esp-idf/esp_event/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_event/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_event/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_event && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_event/install/strip: phony esp-idf/esp_event/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_nvs_flash + + +############################################# +# Order-only phony target for __idf_nvs_flash + +build cmake_object_order_depends_target___idf_nvs_flash: phony || cmake_object_order_depends_target___idf_esp_phy + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_api.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_cxx_api.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_item_hash_list.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_page.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_page.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_pagemanager.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_storage.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_storage.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_handle_simple.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_handle_locked.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition_lookup.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition_manager.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_types.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_types.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_platform.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_platform.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_encrypted_partition.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_nvs_flash + + +############################################# +# Link the static library esp-idf\nvs_flash\libnvs_flash.a + +build esp-idf/nvs_flash/libnvs_flash.a: C_STATIC_LIBRARY_LINKER____idf_nvs_flash_ esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj || esp-idf/esp_phy/libesp_phy.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\nvs_flash\libnvs_flash.a + TARGET_PDB = nvs_flash.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/nvs_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\nvs_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/nvs_flash/edit_cache: phony esp-idf/nvs_flash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\nvs_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/nvs_flash/rebuild_cache: phony esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/nvs_flash/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/nvs_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/nvs_flash/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\nvs_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/nvs_flash/install: phony esp-idf/nvs_flash/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/nvs_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/nvs_flash/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\nvs_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/nvs_flash/install/local: phony esp-idf/nvs_flash/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/nvs_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/nvs_flash/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\nvs_flash && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/nvs_flash/install/strip: phony esp-idf/nvs_flash/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_phy + + +############################################# +# Order-only phony target for __idf_esp_phy + +build cmake_object_order_depends_target___idf_esp_phy: phony || cmake_object_order_depends_target___idf_vfs + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj: C_COMPILER____idf_esp_phy_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/src/phy_override.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_override.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_phy_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_phy\CMakeFiles\__idf_esp_phy.dir\src\lib_printf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj: C_COMPILER____idf_esp_phy_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/src/phy_common.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj: C_COMPILER____idf_esp_phy_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/src/phy_init.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj: C_COMPILER____idf_esp_phy_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/src/btbb_init.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_phy\CMakeFiles\__idf_esp_phy.dir\src\btbb_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_phy + + +############################################# +# Link the static library esp-idf\esp_phy\libesp_phy.a + +build esp-idf/esp_phy/libesp_phy.a: C_STATIC_LIBRARY_LINKER____idf_esp_phy_ esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj || esp-idf/vfs/libvfs.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_phy\libesp_phy.a + TARGET_PDB = esp_phy.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_phy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_phy && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_phy/edit_cache: phony esp-idf/esp_phy/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_phy/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_phy && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_phy/rebuild_cache: phony esp-idf/esp_phy/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_phy/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_phy/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_phy/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_phy && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_phy/install: phony esp-idf/esp_phy/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_phy/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_phy/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_phy && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_phy/install/local: phony esp-idf/esp_phy/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_phy/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_phy/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_phy && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_phy/install/strip: phony esp-idf/esp_phy/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_vfs + + +############################################# +# Order-only phony target for __idf_vfs + +build cmake_object_order_depends_target___idf_vfs: phony || cmake_object_order_depends_target___idf_lwip + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj: C_COMPILER____idf_vfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/vfs.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj: C_COMPILER____idf_vfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/vfs_eventfd.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_eventfd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj: C_COMPILER____idf_vfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/vfs_uart.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_uart.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj: C_COMPILER____idf_vfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/vfs_semihost.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_semihost.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj: C_COMPILER____idf_vfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/vfs_console.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_console.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_vfs + + +############################################# +# Link the static library esp-idf\vfs\libvfs.a + +build esp-idf/vfs/libvfs.a: C_STATIC_LIBRARY_LINKER____idf_vfs_ esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj || esp-idf/lwip/liblwip.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\vfs\libvfs.a + TARGET_PDB = vfs.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/vfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\vfs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/vfs/edit_cache: phony esp-idf/vfs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/vfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\vfs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/vfs/rebuild_cache: phony esp-idf/vfs/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/vfs/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/vfs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/vfs/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\vfs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/vfs/install: phony esp-idf/vfs/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/vfs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/vfs/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\vfs && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/vfs/install/local: phony esp-idf/vfs/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/vfs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/vfs/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\vfs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/vfs/install/strip: phony esp-idf/vfs/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lwip + + +############################################# +# Order-only phony target for __idf_lwip + +build cmake_object_order_depends_target___idf_lwip: phony || cmake_object_order_depends_target___idf_esp_netif + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\sntp\sntp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\sntp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/api_lib.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\api_lib.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/api_msg.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\api_msg.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/err.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\err.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/if_api.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\if_api.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/netbuf.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netbuf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/netdb.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netdb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/netifapi.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netifapi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/sockets.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\sockets.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/tcpip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\tcpip.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\sntp\sntp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\sntp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\netbiosns\netbiosns.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\netbiosns + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/def.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\def.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/dns.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\dns.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/inet_chksum.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\inet_chksum.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/init.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ip.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/mem.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\mem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/memp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\memp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/netif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\netif.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/pbuf.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\pbuf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/raw.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\raw.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/stats.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\stats.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/sys.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\sys.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/tcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/tcp_in.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp_in.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/tcp_out.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp_out.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/timeouts.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\timeouts.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/udp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\udp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\autoip.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\dhcp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\etharp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\icmp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\igmp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_napt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_addr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_frag.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\dhcp6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ethip6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\icmp6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\inet6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6_addr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6_frag.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\mld6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\nd6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ethernet.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ethernet.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/bridgeif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\bridgeif.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\bridgeif_fdb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/slipif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\slipif.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\auth.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ccp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap-md5.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap-new.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap_ms.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-array-parameter + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\demand.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\eap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ecp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\eui64.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\fsm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ipcp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ipv6cp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\lcp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\magic.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\mppe.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\multilink.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ppp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppapi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppcrypt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppoe.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppol2tp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppos.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\upap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\vj.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/hooks/tcp_isn_default.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks\tcp_isn_default.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks\lwip_default_hooks.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/debug/lwip_debug.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\debug\lwip_debug.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\debug + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/sockets_ext.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\sockets_ext.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/sys_arch.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\freertos\sys_arch.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\freertos + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32xx\vfs_lwip.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32xx + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/apps/ping/esp_ping.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\esp_ping.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/apps/ping/ping.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\ping.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/apps/ping/ping_sock.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\ping_sock.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj: C_COMPILER____idf_lwip_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\dhcpserver\dhcpserver.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\dhcpserver + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lwip + + +############################################# +# Link the static library esp-idf\lwip\liblwip.a + +build esp-idf/lwip/liblwip.a: C_STATIC_LIBRARY_LINKER____idf_lwip_ esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj || esp-idf/esp_netif/libesp_netif.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\lwip\liblwip.a + TARGET_PDB = lwip.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/lwip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\lwip && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/lwip/edit_cache: phony esp-idf/lwip/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lwip/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\lwip && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/lwip/rebuild_cache: phony esp-idf/lwip/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/lwip/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/lwip/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lwip/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\lwip && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/lwip/install: phony esp-idf/lwip/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/lwip/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lwip/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\lwip && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/lwip/install/local: phony esp-idf/lwip/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/lwip/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lwip/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\lwip && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/lwip/install/strip: phony esp-idf/lwip/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_netif_stack/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_netif_stack && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_netif_stack/edit_cache: phony esp-idf/esp_netif_stack/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_netif_stack && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_netif_stack/rebuild_cache: phony esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_netif_stack/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_netif_stack/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_netif_stack && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_netif_stack/install: phony esp-idf/esp_netif_stack/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_netif_stack/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_netif_stack && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_netif_stack/install/local: phony esp-idf/esp_netif_stack/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_netif_stack/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_netif_stack && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_netif_stack/install/strip: phony esp-idf/esp_netif_stack/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_netif + + +############################################# +# Order-only phony target for __idf_esp_netif + +build cmake_object_order_depends_target___idf_esp_netif: phony || cmake_object_order_depends_target___idf_wpa_supplicant + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj: C_COMPILER____idf_esp_netif_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/esp_netif_handlers.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_handlers.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj: C_COMPILER____idf_esp_netif_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/esp_netif_objects.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_objects.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj: C_COMPILER____idf_esp_netif_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/esp_netif_defaults.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_defaults.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj: C_COMPILER____idf_esp_netif_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_lwip.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj: C_COMPILER____idf_esp_netif_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_sntp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj: C_COMPILER____idf_esp_netif_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_lwip_defaults.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj: C_COMPILER____idf_esp_netif_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/netif/wlanif.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\wlanif.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj: C_COMPILER____idf_esp_netif_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/netif/ethernetif.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\ethernetif.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj: C_COMPILER____idf_esp_netif_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/netif/esp_pbuf_ref.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\esp_pbuf_ref.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_netif + + +############################################# +# Link the static library esp-idf\esp_netif\libesp_netif.a + +build esp-idf/esp_netif/libesp_netif.a: C_STATIC_LIBRARY_LINKER____idf_esp_netif_ esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj || esp-idf/wpa_supplicant/libwpa_supplicant.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_netif\libesp_netif.a + TARGET_PDB = esp_netif.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_netif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_netif && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_netif/edit_cache: phony esp-idf/esp_netif/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_netif/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_netif && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_netif/rebuild_cache: phony esp-idf/esp_netif/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_netif/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_netif/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_netif/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_netif && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_netif/install: phony esp-idf/esp_netif/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_netif/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_netif/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_netif && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_netif/install/local: phony esp-idf/esp_netif/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_netif/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_netif/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_netif && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_netif/install/strip: phony esp-idf/esp_netif/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_wpa_supplicant + + +############################################# +# Order-only phony target for __idf_wpa_supplicant + +build cmake_object_order_depends_target___idf_wpa_supplicant: phony || cmake_object_order_depends_target___idf_esp_coex + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/os_xtensa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\port\os_xtensa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\port + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/eloop.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\port\eloop.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\port + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/ap_config.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\ap_config.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\ieee802_1x.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\wpa_auth.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\wpa_auth_ie.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/pmksa_cache_auth.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\pmksa_cache_auth.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/sta_info.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\sta_info.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/ieee802_11.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\ieee802_11.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/comeback_token.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\comeback_token.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/common/sae.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\sae.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/common/dragonfly.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\dragonfly.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/common/wpa_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\wpa_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/bitfield.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\bitfield.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/aes-siv.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-siv.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha256-kdf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha256-kdf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\ccmp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/aes-gcm.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-gcm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\crypto_ops.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\dh_group5.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\dh_groups.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\ms_funcs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha1-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha1-tlsprf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha256-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha256-tlsprf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha384-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha384-tlsprf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha256-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha256-prf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha1-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha1-prf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha384-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha384-prf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\md4-internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha1-tprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha1-tprf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_common/eap_wsc_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_common\eap_wsc_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_common + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/common/ieee802_11_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\ieee802_11_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\chap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_mschapv2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_peap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_peap_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_tls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_tls_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_ttls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\mschapv2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_fast.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_fast_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_fast_pac.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp\pmksa_cache.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp\wpa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp\wpa_ie.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/base64.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\base64.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/ext_password.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\ext_password.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/uuid.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\uuid.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\wpabuf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\wpa_debug.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/json.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\json.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_attr_build.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_attr_parse.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_attr_process.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_dev_attr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_enrollee.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/common/sae_pk.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\sae_pk.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_eap_client.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpa2_api_port.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpa_main.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpas_glue.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wps.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wps.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpa3.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_owe.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_owe.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_hostap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\tls_mbedtls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\fastpbkdf2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\crypto_mbedtls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\crypto_mbedtls-bignum.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\crypto_mbedtls-rsa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\crypto_mbedtls-ec.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/rc4.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\rc4.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\des-internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-wrap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-unwrap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj: C_COMPILER____idf_wpa_supplicant_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\"v5.2.2\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-ccm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_wpa_supplicant + + +############################################# +# Link the static library esp-idf\wpa_supplicant\libwpa_supplicant.a + +build esp-idf/wpa_supplicant/libwpa_supplicant.a: C_STATIC_LIBRARY_LINKER____idf_wpa_supplicant_ esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj || esp-idf/esp_coex/libesp_coex.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\wpa_supplicant\libwpa_supplicant.a + TARGET_PDB = wpa_supplicant.a.dbg + RSP_FILE = CMakeFiles\__idf_wpa_supplicant.rsp + + +############################################# +# Utility command for edit_cache + +build esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wpa_supplicant && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/wpa_supplicant/edit_cache: phony esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wpa_supplicant && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/wpa_supplicant/rebuild_cache: phony esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/wpa_supplicant/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/wpa_supplicant/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wpa_supplicant && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/wpa_supplicant/install: phony esp-idf/wpa_supplicant/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/wpa_supplicant/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wpa_supplicant && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/wpa_supplicant/install/local: phony esp-idf/wpa_supplicant/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/wpa_supplicant/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wpa_supplicant && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/wpa_supplicant/install/strip: phony esp-idf/wpa_supplicant/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_coex + + +############################################# +# Order-only phony target for __idf_esp_coex + +build cmake_object_order_depends_target___idf_esp_coex: phony || cmake_object_order_depends_target___idf_esp_wifi + +build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj: C_COMPILER____idf_esp_coex_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/esp32/esp_coex_adapter.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_coex\CMakeFiles\__idf_esp_coex.dir\esp32\esp_coex_adapter.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir + OBJECT_FILE_DIR = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\esp32 + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_coex + + +############################################# +# Link the static library esp-idf\esp_coex\libesp_coex.a + +build esp-idf/esp_coex/libesp_coex.a: C_STATIC_LIBRARY_LINKER____idf_esp_coex_ esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj || esp-idf/esp_wifi/libesp_wifi.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_coex\libesp_coex.a + TARGET_PDB = esp_coex.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_coex/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_coex && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_coex/edit_cache: phony esp-idf/esp_coex/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_coex/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_coex && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_coex/rebuild_cache: phony esp-idf/esp_coex/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_coex/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_coex/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_coex/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_coex && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_coex/install: phony esp-idf/esp_coex/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_coex/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_coex/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_coex && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_coex/install/local: phony esp-idf/esp_coex/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_coex/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_coex/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_coex && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_coex/install/strip: phony esp-idf/esp_coex/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_wifi + + +############################################# +# Order-only phony target for __idf_esp_wifi + +build cmake_object_order_depends_target___idf_esp_wifi: phony || cmake_object_order_depends_target___idf_http_parser + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/mesh_event.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_wifi\CMakeFiles\__idf_esp_wifi.dir\src\mesh_event.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/smartconfig.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_wifi\CMakeFiles\__idf_esp_wifi.dir\src\smartconfig.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/wifi_init.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/wifi_default.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_default.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/wifi_netif.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_netif.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/wifi_default_ap.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_default_ap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/esp32/esp_adapter.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_wifi\CMakeFiles\__idf_esp_wifi.dir\esp32\esp_adapter.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\esp32 + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj: C_COMPILER____idf_esp_wifi_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/smartconfig_ack.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_wifi\CMakeFiles\__idf_esp_wifi.dir\src\smartconfig_ack.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_wifi + + +############################################# +# Link the static library esp-idf\esp_wifi\libesp_wifi.a + +build esp-idf/esp_wifi/libesp_wifi.a: C_STATIC_LIBRARY_LINKER____idf_esp_wifi_ esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj || esp-idf/http_parser/libhttp_parser.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_wifi\libesp_wifi.a + TARGET_PDB = esp_wifi.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_wifi && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_wifi/edit_cache: phony esp-idf/esp_wifi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_wifi && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_wifi/rebuild_cache: phony esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_wifi/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_wifi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_wifi/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_wifi && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_wifi/install: phony esp-idf/esp_wifi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_wifi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_wifi/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_wifi && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_wifi/install/local: phony esp-idf/esp_wifi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_wifi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_wifi/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_wifi && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_wifi/install/strip: phony esp-idf/esp_wifi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/bt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bt && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bt/edit_cache: phony esp-idf/bt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bt && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bt/rebuild_cache: phony esp-idf/bt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/bt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/bt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bt/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bt && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/bt/install: phony esp-idf/bt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/bt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bt/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bt && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/bt/install/local: phony esp-idf/bt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/bt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bt/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\bt && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/bt/install/strip: phony esp-idf/bt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_unity + + +############################################# +# Order-only phony target for __idf_unity + +build cmake_object_order_depends_target___idf_unity: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj: C_COMPILER____idf_unity_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src/unity.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity\src\unity.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity\src + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj: C_COMPILER____idf_unity_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity_runner.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_runner.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj: C_COMPILER____idf_unity_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity_utils_freertos.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_utils_freertos.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj: C_COMPILER____idf_unity_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity_utils_cache.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_utils_cache.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj: C_COMPILER____idf_unity_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity_utils_memory.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_utils_memory.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj: C_COMPILER____idf_unity_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity_port_esp32.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_port_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj: C_COMPILER____idf_unity_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\port\esp\unity_utils_memory_esp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir\port\esp + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_unity + + +############################################# +# Link the static library esp-idf\unity\libunity.a + +build esp-idf/unity/libunity.a: C_STATIC_LIBRARY_LINKER____idf_unity_ esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\unity\libunity.a + TARGET_PDB = unity.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/unity/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\unity && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/unity/edit_cache: phony esp-idf/unity/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/unity/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\unity && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/unity/rebuild_cache: phony esp-idf/unity/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/unity/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/unity/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/unity/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\unity && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/unity/install: phony esp-idf/unity/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/unity/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/unity/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\unity && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/unity/install/local: phony esp-idf/unity/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/unity/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/unity/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\unity && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/unity/install/strip: phony esp-idf/unity/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_cmock + + +############################################# +# Order-only phony target for __idf_cmock + +build cmake_object_order_depends_target___idf_cmock: phony || cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_xtensa + +build esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj: C_COMPILER____idf_cmock_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src/cmock.c || cmake_object_order_depends_target___idf_cmock + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cmock\CMakeFiles\__idf_cmock.dir\CMock\src\cmock.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src + OBJECT_DIR = esp-idf\cmock\CMakeFiles\__idf_cmock.dir + OBJECT_FILE_DIR = esp-idf\cmock\CMakeFiles\__idf_cmock.dir\CMock\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_cmock + + +############################################# +# Link the static library esp-idf\cmock\libcmock.a + +build esp-idf/cmock/libcmock.a: C_STATIC_LIBRARY_LINKER____idf_cmock_ esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj || esp-idf/unity/libunity.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\cmock\CMakeFiles\__idf_cmock.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\cmock\libcmock.a + TARGET_PDB = cmock.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/cmock/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\cmock && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/cmock/edit_cache: phony esp-idf/cmock/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/cmock/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\cmock && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/cmock/rebuild_cache: phony esp-idf/cmock/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/cmock/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/cmock/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cmock/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\cmock && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/cmock/install: phony esp-idf/cmock/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/cmock/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cmock/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\cmock && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/cmock/install/local: phony esp-idf/cmock/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/cmock/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cmock/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\cmock && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/cmock/install/strip: phony esp-idf/cmock/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_console + + +############################################# +# Order-only phony target for __idf_console + +build cmake_object_order_depends_target___idf_console: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/commands.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\commands.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + +build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/esp_console_repl.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\esp_console_repl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + +build esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/split_argv.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\split_argv.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + +build esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/linenoise/linenoise.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\linenoise\linenoise.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\linenoise + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_cmd.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_cmd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_date.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_date.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_dbl.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_dbl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_dstr.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_dstr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_end.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_end.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_file.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_file.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_hashtable.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_hashtable.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_int.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_int.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_lit.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_lit.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_rem.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_rem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_rex.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_rex.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_str.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_str.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_utils.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj: C_COMPILER____idf_console_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/argtable3.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\argtable3.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_console + + +############################################# +# Link the static library esp-idf\console\libconsole.a + +build esp-idf/console/libconsole.a: C_STATIC_LIBRARY_LINKER____idf_console_ esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\console\libconsole.a + TARGET_PDB = console.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\console && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/console/edit_cache: phony esp-idf/console/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\console && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/console/rebuild_cache: phony esp-idf/console/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/console/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/console/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/console/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\console && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/console/install: phony esp-idf/console/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/console/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/console/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\console && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/console/install/local: phony esp-idf/console/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/console/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/console/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\console && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/console/install/strip: phony esp-idf/console/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_http_parser + + +############################################# +# Order-only phony target for __idf_http_parser + +build cmake_object_order_depends_target___idf_http_parser: phony || cmake_object_order_depends_target___idf_esp-tls + +build esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj: C_COMPILER____idf_http_parser_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser/http_parser.c || cmake_object_order_depends_target___idf_http_parser + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir\http_parser.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir + OBJECT_FILE_DIR = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_http_parser + + +############################################# +# Link the static library esp-idf\http_parser\libhttp_parser.a + +build esp-idf/http_parser/libhttp_parser.a: C_STATIC_LIBRARY_LINKER____idf_http_parser_ esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj || esp-idf/esp-tls/libesp-tls.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\http_parser\libhttp_parser.a + TARGET_PDB = http_parser.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/http_parser/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\http_parser && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/http_parser/edit_cache: phony esp-idf/http_parser/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/http_parser/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\http_parser && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/http_parser/rebuild_cache: phony esp-idf/http_parser/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/http_parser/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/http_parser/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/http_parser/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\http_parser && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/http_parser/install: phony esp-idf/http_parser/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/http_parser/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/http_parser/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\http_parser && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/http_parser/install/local: phony esp-idf/http_parser/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/http_parser/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/http_parser/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\http_parser && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/http_parser/install/strip: phony esp-idf/http_parser/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp-tls + + +############################################# +# Order-only phony target for __idf_esp-tls + +build cmake_object_order_depends_target___idf_esp-tls: phony || cmake_object_order_depends_target___idf_esp_adc + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj: C_COMPILER____idf_esp-tls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp_tls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-tls\CMakeFiles\__idf_esp-tls.dir\esp_tls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj: C_COMPILER____idf_esp-tls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-tls\CMakeFiles\__idf_esp-tls.dir\esp-tls-crypto\esp_tls_crypto.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\esp-tls-crypto + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj: C_COMPILER____idf_esp-tls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp_tls_error_capture.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-tls\CMakeFiles\__idf_esp-tls.dir\esp_tls_error_capture.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj: C_COMPILER____idf_esp-tls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp_tls_platform_port.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-tls\CMakeFiles\__idf_esp-tls.dir\esp_tls_platform_port.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj: C_COMPILER____idf_esp-tls_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp_tls_mbedtls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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-tls\CMakeFiles\__idf_esp-tls.dir\esp_tls_mbedtls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp-tls + + +############################################# +# Link the static library esp-idf\esp-tls\libesp-tls.a + +build esp-idf/esp-tls/libesp-tls.a: C_STATIC_LIBRARY_LINKER____idf_esp-tls_ esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj || esp-idf/esp_adc/libesp_adc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp-tls\libesp-tls.a + TARGET_PDB = esp-tls.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp-tls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp-tls && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp-tls/edit_cache: phony esp-idf/esp-tls/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp-tls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp-tls && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp-tls/rebuild_cache: phony esp-idf/esp-tls/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp-tls/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp-tls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp-tls/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp-tls && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp-tls/install: phony esp-idf/esp-tls/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp-tls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp-tls/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp-tls && C:\Users\Job\.espressif\tools\cmake\3.24.0\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-tls/install/local: phony esp-idf/esp-tls/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp-tls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp-tls/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp-tls && C:\Users\Job\.espressif\tools\cmake\3.24.0\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-tls/install/strip: phony esp-idf/esp-tls/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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_esp_eth + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj: C_COMPILER____idf_esp_adc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/adc_cali.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj: C_COMPILER____idf_esp_adc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/adc_cali_curve_fitting.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj: C_COMPILER____idf_esp_adc_ C$:/Users/Job/esp/v5.2.2/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.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/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 + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj: C_COMPILER____idf_esp_adc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/adc_oneshot.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj: C_COMPILER____idf_esp_adc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/adc_common.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj: C_COMPILER____idf_esp_adc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/adc_continuous.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj: C_COMPILER____idf_esp_adc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/adc_cali_line_fitting.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\adc_cali_line_fitting.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\esp32 + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32/esp_adc_cal_legacy.c.obj: C_COMPILER____idf_esp_adc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/esp32/esp_adc_cal_legacy.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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\esp32\esp_adc_cal_legacy.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/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\esp32 + + +# ============================================================================= +# 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_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_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_continuous.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32/esp_adc_cal_legacy.c.obj || esp-idf/esp_eth/libesp_eth.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\esp_adc\libesp_adc.a + TARGET_PDB = esp_adc.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_adc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_adc && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_adc && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_adc && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_adc && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_adc && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_eth + + +############################################# +# Order-only phony target for __idf_esp_eth + +build cmake_object_order_depends_target___idf_esp_eth: phony || cmake_object_order_depends_target___idf_esp_gdbstub + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj: C_COMPILER____idf_esp_eth_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj: C_COMPILER____idf_esp_eth_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_802_3.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth_phy_802_3.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj: C_COMPILER____idf_esp_eth_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth_netif_glue.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj: C_COMPILER____idf_esp_eth_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_mac_esp.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth_mac_esp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj: C_COMPILER____idf_esp_eth_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_dp83848.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth_phy_dp83848.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj: C_COMPILER____idf_esp_eth_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_ip101.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth_phy_ip101.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj: C_COMPILER____idf_esp_eth_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_ksz80xx.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth_phy_ksz80xx.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj: C_COMPILER____idf_esp_eth_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_lan87xx.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth_phy_lan87xx.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj: C_COMPILER____idf_esp_eth_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_rtl8201.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth_phy_rtl8201.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_eth + + +############################################# +# Link the static library esp-idf\esp_eth\libesp_eth.a + +build esp-idf/esp_eth/libesp_eth.a: C_STATIC_LIBRARY_LINKER____idf_esp_eth_ esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj || esp-idf/esp_gdbstub/libesp_gdbstub.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_eth\libesp_eth.a + TARGET_PDB = esp_eth.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_eth/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_eth && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_eth/edit_cache: phony esp-idf/esp_eth/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_eth/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_eth && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_eth/rebuild_cache: phony esp-idf/esp_eth/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_eth/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_eth/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_eth/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_eth && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_eth/install: phony esp-idf/esp_eth/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_eth/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_eth/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_eth && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_eth/install/local: phony esp-idf/esp_eth/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_eth/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_eth/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_eth && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_eth/install/strip: phony esp-idf/esp_eth/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_gdbstub + + +############################################# +# Order-only phony target for __idf_esp_gdbstub + +build cmake_object_order_depends_target___idf_esp_gdbstub: phony || cmake_object_order_depends_target___idf_tcp_transport + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj: C_COMPILER____idf_esp_gdbstub_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/gdbstub.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\gdbstub.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj: C_COMPILER____idf_esp_gdbstub_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\gdbstub_transport.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj: C_COMPILER____idf_esp_gdbstub_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/packet.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\packet.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj: C_COMPILER____idf_esp_gdbstub_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub_xtensa.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa\gdbstub_xtensa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj: ASM_COMPILER____idf_esp_gdbstub_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub-entry.S || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa\gdbstub-entry.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj: ASM_COMPILER____idf_esp_gdbstub_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/xt_debugexception.S || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa\xt_debugexception.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_gdbstub + + +############################################# +# Link the static library esp-idf\esp_gdbstub\libesp_gdbstub.a + +build esp-idf/esp_gdbstub/libesp_gdbstub.a: C_STATIC_LIBRARY_LINKER____idf_esp_gdbstub_ esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj || esp-idf/tcp_transport/libtcp_transport.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_gdbstub\libesp_gdbstub.a + TARGET_PDB = esp_gdbstub.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_gdbstub && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_gdbstub/edit_cache: phony esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_gdbstub && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_gdbstub/rebuild_cache: phony esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_gdbstub/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_gdbstub/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_gdbstub && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_gdbstub/install: phony esp-idf/esp_gdbstub/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_gdbstub/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_gdbstub && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_gdbstub/install/local: phony esp-idf/esp_gdbstub/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_gdbstub/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_gdbstub && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_gdbstub/install/strip: phony esp-idf/esp_gdbstub/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hid + + +############################################# +# Order-only phony target for __idf_esp_hid + +build cmake_object_order_depends_target___idf_esp_hid: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj: C_COMPILER____idf_esp_hid_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/src/esp_hidd.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hidd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir + OBJECT_FILE_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src + +build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj: C_COMPILER____idf_esp_hid_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/src/esp_hidh.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hidh.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir + OBJECT_FILE_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src + +build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj: C_COMPILER____idf_esp_hid_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/src/esp_hid_common.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hid_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir + OBJECT_FILE_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hid + + +############################################# +# Link the static library esp-idf\esp_hid\libesp_hid.a + +build esp-idf/esp_hid/libesp_hid.a: C_STATIC_LIBRARY_LINKER____idf_esp_hid_ esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_hid\libesp_hid.a + TARGET_PDB = esp_hid.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hid/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hid && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hid/edit_cache: phony esp-idf/esp_hid/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hid/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hid && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hid/rebuild_cache: phony esp-idf/esp_hid/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hid/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hid/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hid/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hid && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hid/install: phony esp-idf/esp_hid/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hid/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hid/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hid && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_hid/install/local: phony esp-idf/esp_hid/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hid/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hid/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_hid && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_hid/install/strip: phony esp-idf/esp_hid/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_tcp_transport + + +############################################# +# Order-only phony target for __idf_tcp_transport + +build cmake_object_order_depends_target___idf_tcp_transport: phony || cmake_object_order_depends_target___idf_esp_http_client + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj: C_COMPILER____idf_tcp_transport_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/transport.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj: C_COMPILER____idf_tcp_transport_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/transport_ssl.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport_ssl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj: C_COMPILER____idf_tcp_transport_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/transport_internal.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport_internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj: C_COMPILER____idf_tcp_transport_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/transport_socks_proxy.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport_socks_proxy.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj: C_COMPILER____idf_tcp_transport_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/transport_ws.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport_ws.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_tcp_transport + + +############################################# +# Link the static library esp-idf\tcp_transport\libtcp_transport.a + +build esp-idf/tcp_transport/libtcp_transport.a: C_STATIC_LIBRARY_LINKER____idf_tcp_transport_ esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj || esp-idf/esp_http_client/libesp_http_client.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\tcp_transport\libtcp_transport.a + TARGET_PDB = tcp_transport.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/tcp_transport/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\tcp_transport && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/tcp_transport/edit_cache: phony esp-idf/tcp_transport/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/tcp_transport/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\tcp_transport && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/tcp_transport/rebuild_cache: phony esp-idf/tcp_transport/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/tcp_transport/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/tcp_transport/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/tcp_transport/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\tcp_transport && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/tcp_transport/install: phony esp-idf/tcp_transport/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/tcp_transport/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/tcp_transport/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\tcp_transport && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/tcp_transport/install/local: phony esp-idf/tcp_transport/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/tcp_transport/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/tcp_transport/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\tcp_transport && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/tcp_transport/install/strip: phony esp-idf/tcp_transport/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_http_client + + +############################################# +# Order-only phony target for __idf_esp_http_client + +build cmake_object_order_depends_target___idf_esp_http_client: phony || cmake_object_order_depends_target___idf_esp_http_server + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj: C_COMPILER____idf_esp_http_client_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/esp_http_client.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_http_client\CMakeFiles\__idf_esp_http_client.dir\esp_http_client.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj: C_COMPILER____idf_esp_http_client_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/http_auth.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_http_client\CMakeFiles\__idf_esp_http_client.dir\lib\http_auth.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj: C_COMPILER____idf_esp_http_client_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/http_header.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_http_client\CMakeFiles\__idf_esp_http_client.dir\lib\http_header.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj: C_COMPILER____idf_esp_http_client_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/http_utils.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_http_client\CMakeFiles\__idf_esp_http_client.dir\lib\http_utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_http_client + + +############################################# +# Link the static library esp-idf\esp_http_client\libesp_http_client.a + +build esp-idf/esp_http_client/libesp_http_client.a: C_STATIC_LIBRARY_LINKER____idf_esp_http_client_ esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj || esp-idf/esp_http_server/libesp_http_server.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_http_client\libesp_http_client.a + TARGET_PDB = esp_http_client.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_http_client/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_http_client && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_http_client/edit_cache: phony esp-idf/esp_http_client/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_http_client/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_http_client && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_http_client/rebuild_cache: phony esp-idf/esp_http_client/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_http_client/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_http_client/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_http_client/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_http_client && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_http_client/install: phony esp-idf/esp_http_client/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_http_client/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_http_client/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_http_client && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_http_client/install/local: phony esp-idf/esp_http_client/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_http_client/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_http_client/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_http_client && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_http_client/install/strip: phony esp-idf/esp_http_client/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_http_server + + +############################################# +# Order-only phony target for __idf_esp_http_server + +build cmake_object_order_depends_target___idf_esp_http_server: phony || cmake_object_order_depends_target___idf_esp_https_ota + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_main.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_main.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_parse.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_parse.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_sess.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_sess.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_txrx.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_txrx.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_uri.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_uri.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_ws.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_ws.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj: C_COMPILER____idf_esp_http_server_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util/ctrl_sock.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_http_server\CMakeFiles\__idf_esp_http_server.dir\src\util\ctrl_sock.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\util + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_http_server + + +############################################# +# Link the static library esp-idf\esp_http_server\libesp_http_server.a + +build esp-idf/esp_http_server/libesp_http_server.a: C_STATIC_LIBRARY_LINKER____idf_esp_http_server_ esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj || esp-idf/esp_https_ota/libesp_https_ota.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_http_server\libesp_http_server.a + TARGET_PDB = esp_http_server.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_http_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_http_server && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_http_server/edit_cache: phony esp-idf/esp_http_server/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_http_server/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_http_server && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_http_server/rebuild_cache: phony esp-idf/esp_http_server/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_http_server/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_http_server/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_http_server/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_http_server && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_http_server/install: phony esp-idf/esp_http_server/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_http_server/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_http_server/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_http_server && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_http_server/install/local: phony esp-idf/esp_http_server/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_http_server/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_http_server/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_http_server && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_http_server/install/strip: phony esp-idf/esp_http_server/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_https_ota + + +############################################# +# Order-only phony target for __idf_esp_https_ota + +build cmake_object_order_depends_target___idf_esp_https_ota: phony || esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/mbedtls/custom_bundle + +build esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj: C_COMPILER____idf_esp_https_ota_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/src/esp_https_ota.c || cmake_object_order_depends_target___idf_esp_https_ota + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_https_ota\CMakeFiles\__idf_esp_https_ota.dir\src\esp_https_ota.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include + OBJECT_DIR = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir + OBJECT_FILE_DIR = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_https_ota + + +############################################# +# Link the static library esp-idf\esp_https_ota\libesp_https_ota.a + +build esp-idf/esp_https_ota/libesp_https_ota.a: C_STATIC_LIBRARY_LINKER____idf_esp_https_ota_ esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj || esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/mbedtls/custom_bundle + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_https_ota\libesp_https_ota.a + TARGET_PDB = esp_https_ota.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_https_ota/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_https_ota && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_https_ota/edit_cache: phony esp-idf/esp_https_ota/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_https_ota && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_https_ota/rebuild_cache: phony esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_https_ota/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_https_ota/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_https_ota && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_https_ota/install: phony esp-idf/esp_https_ota/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_https_ota/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_https_ota && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_https_ota/install/local: phony esp-idf/esp_https_ota/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_https_ota/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_https_ota && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_https_ota/install/strip: phony esp-idf/esp_https_ota/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_https_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_https_server && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_https_server/edit_cache: phony esp-idf/esp_https_server/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_https_server/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_https_server && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_https_server/rebuild_cache: phony esp-idf/esp_https_server/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_https_server/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_https_server/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_https_server/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_https_server && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_https_server/install: phony esp-idf/esp_https_server/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_https_server/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_https_server/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_https_server && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_https_server/install/local: phony esp-idf/esp_https_server/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_https_server/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_https_server/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_https_server && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_https_server/install/strip: phony esp-idf/esp_https_server/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_psram/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_psram && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_psram/edit_cache: phony esp-idf/esp_psram/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_psram/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_psram && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_psram/rebuild_cache: phony esp-idf/esp_psram/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_psram/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_psram/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_psram/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_psram && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_psram/install: phony esp-idf/esp_psram/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_psram/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_psram/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_psram && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_psram/install/local: phony esp-idf/esp_psram/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_psram/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_psram/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_psram && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_psram/install/strip: phony esp-idf/esp_psram/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_lcd + + +############################################# +# Order-only phony target for __idf_esp_lcd + +build cmake_object_order_depends_target___idf_esp_lcd: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_common.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_io.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v1.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_io_i2c_v1.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_io_i2c_v1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v2.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_io_i2c_v2.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_io_i2c_v2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_io_spi.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_io_spi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_nt35510.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_nt35510.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_ssd1306.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_st7789.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_ops.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj: C_COMPILER____idf_esp_lcd_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_io_i2s.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_io_i2s.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_lcd + + +############################################# +# Link the static library esp-idf\esp_lcd\libesp_lcd.a + +build esp-idf/esp_lcd/libesp_lcd.a: C_STATIC_LIBRARY_LINKER____idf_esp_lcd_ esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v1.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v2.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_lcd\libesp_lcd.a + TARGET_PDB = esp_lcd.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_lcd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_lcd && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_lcd/edit_cache: phony esp-idf/esp_lcd/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_lcd/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_lcd && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_lcd/rebuild_cache: phony esp-idf/esp_lcd/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_lcd/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_lcd/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_lcd/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_lcd && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_lcd/install: phony esp-idf/esp_lcd/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_lcd/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_lcd/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_lcd && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_lcd/install/local: phony esp-idf/esp_lcd/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_lcd/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_lcd/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_lcd && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_lcd/install/strip: phony esp-idf/esp_lcd/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_protobuf-c + + +############################################# +# Order-only phony target for __idf_protobuf-c + +build cmake_object_order_depends_target___idf_protobuf-c: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj: C_COMPILER____idf_protobuf-c_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c || cmake_object_order_depends_target___idf_protobuf-c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir\protobuf-c\protobuf-c\protobuf-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir + OBJECT_FILE_DIR = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir\protobuf-c\protobuf-c + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_protobuf-c + + +############################################# +# Link the static library esp-idf\protobuf-c\libprotobuf-c.a + +build esp-idf/protobuf-c/libprotobuf-c.a: C_STATIC_LIBRARY_LINKER____idf_protobuf-c_ esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\protobuf-c\libprotobuf-c.a + TARGET_PDB = protobuf-c.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/protobuf-c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\protobuf-c && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/protobuf-c/edit_cache: phony esp-idf/protobuf-c/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/protobuf-c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\protobuf-c && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/protobuf-c/rebuild_cache: phony esp-idf/protobuf-c/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/protobuf-c/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/protobuf-c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/protobuf-c/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\protobuf-c && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/protobuf-c/install: phony esp-idf/protobuf-c/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/protobuf-c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/protobuf-c/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\protobuf-c && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/protobuf-c/install/local: phony esp-idf/protobuf-c/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/protobuf-c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/protobuf-c/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\protobuf-c && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/protobuf-c/install/strip: phony esp-idf/protobuf-c/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_protocomm + + +############################################# +# Order-only phony target for __idf_protocomm + +build cmake_object_order_depends_target___idf_protocomm: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_xtensa + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common/protocomm.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\common\protocomm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\common + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c/constants.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\constants.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c/sec0.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\sec0.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c/sec1.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\sec1.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c/sec2.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\sec2.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c/session.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\session.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/transports/protocomm_console.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports\protocomm_console.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/transports/protocomm_httpd.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports\protocomm_httpd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/security/security0.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security\security0.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/security/security1.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security\security1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/security/security2.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security\security2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a\esp_srp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj: C_COMPILER____idf_protocomm_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a\esp_srp_mpi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_protocomm + + +############################################# +# Link the static library esp-idf\protocomm\libprotocomm.a + +build esp-idf/protocomm/libprotocomm.a: C_STATIC_LIBRARY_LINKER____idf_protocomm_ esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj || esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\protocomm\libprotocomm.a + TARGET_PDB = protocomm.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/protocomm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\protocomm && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/protocomm/edit_cache: phony esp-idf/protocomm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/protocomm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\protocomm && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/protocomm/rebuild_cache: phony esp-idf/protocomm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/protocomm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/protocomm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/protocomm/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\protocomm && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/protocomm/install: phony esp-idf/protocomm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/protocomm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/protocomm/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\protocomm && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/protocomm/install/local: phony esp-idf/protocomm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/protocomm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/protocomm/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\protocomm && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/protocomm/install/strip: phony esp-idf/protocomm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_local_ctrl + + +############################################# +# Order-only phony target for __idf_esp_local_ctrl + +build cmake_object_order_depends_target___idf_esp_local_ctrl: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj: C_COMPILER____idf_esp_local_ctrl_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src\esp_local_ctrl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src + +build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj: C_COMPILER____idf_esp_local_ctrl_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src\esp_local_ctrl_handler.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src + +build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj: C_COMPILER____idf_esp_local_ctrl_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\proto-c\esp_local_ctrl.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\proto-c + +build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj: C_COMPILER____idf_esp_local_ctrl_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src\esp_local_ctrl_transport_httpd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_local_ctrl + + +############################################# +# Link the static library esp-idf\esp_local_ctrl\libesp_local_ctrl.a + +build esp-idf/esp_local_ctrl/libesp_local_ctrl.a: C_STATIC_LIBRARY_LINKER____idf_esp_local_ctrl_ esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj || esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\esp_local_ctrl\libesp_local_ctrl.a + TARGET_PDB = esp_local_ctrl.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_local_ctrl && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_local_ctrl/edit_cache: phony esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_local_ctrl && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_local_ctrl/rebuild_cache: phony esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_local_ctrl/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_local_ctrl/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_local_ctrl && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_local_ctrl/install: phony esp-idf/esp_local_ctrl/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_local_ctrl/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_local_ctrl && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_local_ctrl/install/local: phony esp-idf/esp_local_ctrl/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_local_ctrl/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_local_ctrl && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_local_ctrl/install/strip: phony esp-idf/esp_local_ctrl/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_espcoredump + + +############################################# +# Order-only phony target for __idf_espcoredump + +build cmake_object_order_depends_target___idf_espcoredump: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj: C_COMPILER____idf_espcoredump_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_common.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj: C_COMPILER____idf_espcoredump_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_flash.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_flash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj: C_COMPILER____idf_espcoredump_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_uart.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_uart.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj: C_COMPILER____idf_espcoredump_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_elf.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_elf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj: C_COMPILER____idf_espcoredump_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_binary.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_binary.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj: C_COMPILER____idf_espcoredump_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_sha.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_sha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj: C_COMPILER____idf_espcoredump_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_crc.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\core_dump_crc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src + +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj: C_COMPILER____idf_espcoredump_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/port/xtensa/core_dump_port.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\port\xtensa\core_dump_port.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir\src\port\xtensa + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_espcoredump + + +############################################# +# Link the static library esp-idf\espcoredump\libespcoredump.a + +build esp-idf/espcoredump/libespcoredump.a: C_STATIC_LIBRARY_LINKER____idf_espcoredump_ esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\espcoredump\CMakeFiles\__idf_espcoredump.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\espcoredump\libespcoredump.a + TARGET_PDB = espcoredump.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/espcoredump/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\espcoredump && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/espcoredump/edit_cache: phony esp-idf/espcoredump/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/espcoredump/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\espcoredump && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/espcoredump/rebuild_cache: phony esp-idf/espcoredump/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/espcoredump/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/espcoredump/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espcoredump/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\espcoredump && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/espcoredump/install: phony esp-idf/espcoredump/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/espcoredump/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espcoredump/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\espcoredump && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/espcoredump/install/local: phony esp-idf/espcoredump/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/espcoredump/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espcoredump/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\espcoredump && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/espcoredump/install/strip: phony esp-idf/espcoredump/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_wear_levelling + + +############################################# +# Order-only phony target for __idf_wear_levelling + +build cmake_object_order_depends_target___idf_wear_levelling: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/Partition.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\Partition.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/SPI_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\SPI_Flash.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Ext_Perf.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Ext_Safe.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/WL_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Flash.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/crc32.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\crc32.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj: CXX_COMPILER____idf_wear_levelling_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/wear_levelling.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\wear_levelling.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_wear_levelling + + +############################################# +# Link the static library esp-idf\wear_levelling\libwear_levelling.a + +build esp-idf/wear_levelling/libwear_levelling.a: C_STATIC_LIBRARY_LINKER____idf_wear_levelling_ esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\wear_levelling\libwear_levelling.a + TARGET_PDB = wear_levelling.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/wear_levelling/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wear_levelling && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/wear_levelling/edit_cache: phony esp-idf/wear_levelling/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/wear_levelling/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wear_levelling && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/wear_levelling/rebuild_cache: phony esp-idf/wear_levelling/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/wear_levelling/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/wear_levelling/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wear_levelling/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wear_levelling && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/wear_levelling/install: phony esp-idf/wear_levelling/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/wear_levelling/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wear_levelling/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wear_levelling && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/wear_levelling/install/local: phony esp-idf/wear_levelling/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/wear_levelling/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wear_levelling/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wear_levelling && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/wear_levelling/install/strip: phony esp-idf/wear_levelling/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_cmd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj: C_COMPILER____idf_sdmmc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_common.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj: C_COMPILER____idf_sdmmc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_init.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj: C_COMPILER____idf_sdmmc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_io.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj: C_COMPILER____idf_sdmmc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_mmc.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj: C_COMPILER____idf_sdmmc_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_sd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_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 -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + + +# ============================================================================= +# 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/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\sdmmc\libsdmmc.a + TARGET_PDB = sdmmc.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\sdmmc && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\sdmmc && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\sdmmc && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\sdmmc && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\sdmmc && C:\Users\Job\.espressif\tools\cmake\3.24.0\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: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_fatfs + + +############################################# +# Order-only phony target for __idf_fatfs + +build cmake_object_order_depends_target___idf_fatfs: phony || cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_xtensa + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj: C_COMPILER____idf_fatfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio/diskio.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj: C_COMPILER____idf_fatfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio/diskio_rawflash.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_rawflash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj: C_COMPILER____idf_fatfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio/diskio_wl.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_wl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj: C_COMPILER____idf_fatfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src/ff.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src\ff.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj: C_COMPILER____idf_fatfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src/ffunicode.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src\ffunicode.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj: C_COMPILER____idf_fatfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/port/freertos/ffsystem.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\port\freertos\ffsystem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\port\freertos + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj: C_COMPILER____idf_fatfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio/diskio_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_sdmmc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj: C_COMPILER____idf_fatfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs/vfs_fat.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj: C_COMPILER____idf_fatfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat_sdmmc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj: C_COMPILER____idf_fatfs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat_spiflash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_fatfs + + +############################################# +# Link the static library esp-idf\fatfs\libfatfs.a + +build esp-idf/fatfs/libfatfs.a: C_STATIC_LIBRARY_LINKER____idf_fatfs_ esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj || esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\fatfs\libfatfs.a + TARGET_PDB = fatfs.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/fatfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\fatfs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/fatfs/edit_cache: phony esp-idf/fatfs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/fatfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\fatfs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/fatfs/rebuild_cache: phony esp-idf/fatfs/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/fatfs/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/fatfs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/fatfs/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\fatfs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/fatfs/install: phony esp-idf/fatfs/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/fatfs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/fatfs/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\fatfs && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/fatfs/install/local: phony esp-idf/fatfs/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/fatfs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/fatfs/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\fatfs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/fatfs/install/strip: phony esp-idf/fatfs/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/idf_test/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\idf_test && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/idf_test/edit_cache: phony esp-idf/idf_test/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/idf_test/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\idf_test && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/idf_test/rebuild_cache: phony esp-idf/idf_test/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/idf_test/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/idf_test/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/idf_test/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\idf_test && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/idf_test/install: phony esp-idf/idf_test/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/idf_test/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/idf_test/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\idf_test && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/idf_test/install/local: phony esp-idf/idf_test/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/idf_test/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/idf_test/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\idf_test && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/idf_test/install/strip: phony esp-idf/idf_test/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/ieee802154/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\ieee802154 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/ieee802154/edit_cache: phony esp-idf/ieee802154/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/ieee802154/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\ieee802154 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/ieee802154/rebuild_cache: phony esp-idf/ieee802154/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/ieee802154/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/ieee802154/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ieee802154/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\ieee802154 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/ieee802154/install: phony esp-idf/ieee802154/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/ieee802154/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ieee802154/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\ieee802154 && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/ieee802154/install/local: phony esp-idf/ieee802154/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/ieee802154/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ieee802154/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\ieee802154 && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/ieee802154/install/strip: phony esp-idf/ieee802154/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_json + + +############################################# +# Order-only phony target for __idf_json + +build cmake_object_order_depends_target___idf_json: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj: C_COMPILER____idf_json_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON/cJSON.c || cmake_object_order_depends_target___idf_json + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON\cJSON.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\json\CMakeFiles\__idf_json.dir + OBJECT_FILE_DIR = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON + +build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj: C_COMPILER____idf_json_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON/cJSON_Utils.c || cmake_object_order_depends_target___idf_json + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON\cJSON_Utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\json\CMakeFiles\__idf_json.dir + OBJECT_FILE_DIR = esp-idf\json\CMakeFiles\__idf_json.dir\cJSON + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_json + + +############################################# +# Link the static library esp-idf\json\libjson.a + +build esp-idf/json/libjson.a: C_STATIC_LIBRARY_LINKER____idf_json_ esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\json\CMakeFiles\__idf_json.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\json\libjson.a + TARGET_PDB = json.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/json/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\json && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/json/edit_cache: phony esp-idf/json/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/json/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\json && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/json/rebuild_cache: phony esp-idf/json/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/json/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/json/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/json/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\json && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/json/install: phony esp-idf/json/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/json/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/json/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\json && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/json/install/local: phony esp-idf/json/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/json/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/json/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\json && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/json/install/strip: phony esp-idf/json/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_mqtt + + +############################################# +# Order-only phony target for __idf_mqtt + +build cmake_object_order_depends_target___idf_mqtt: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj: C_COMPILER____idf_mqtt_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\mqtt_client.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj: C_COMPILER____idf_mqtt_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib\mqtt_msg.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj: C_COMPILER____idf_mqtt_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib\mqtt_outbox.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib + +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj: C_COMPILER____idf_mqtt_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib\platform_esp32_idf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir\esp-mqtt\lib + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_mqtt + + +############################################# +# Link the static library esp-idf\mqtt\libmqtt.a + +build esp-idf/mqtt/libmqtt.a: C_STATIC_LIBRARY_LINKER____idf_mqtt_ esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mqtt\CMakeFiles\__idf_mqtt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\mqtt\libmqtt.a + TARGET_PDB = mqtt.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/mqtt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mqtt && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mqtt/edit_cache: phony esp-idf/mqtt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mqtt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mqtt && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mqtt/rebuild_cache: phony esp-idf/mqtt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mqtt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mqtt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mqtt/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mqtt && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mqtt/install: phony esp-idf/mqtt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mqtt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mqtt/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mqtt && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/mqtt/install/local: phony esp-idf/mqtt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mqtt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mqtt/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\mqtt && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mqtt/install/strip: phony esp-idf/mqtt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_nvs_sec_provider + + +############################################# +# Order-only phony target for __idf_nvs_sec_provider + +build cmake_object_order_depends_target___idf_nvs_sec_provider: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj: C_COMPILER____idf_nvs_sec_provider_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/nvs_sec_provider.c || cmake_object_order_depends_target___idf_nvs_sec_provider + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir\nvs_sec_provider.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir + OBJECT_FILE_DIR = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_nvs_sec_provider + + +############################################# +# Link the static library esp-idf\nvs_sec_provider\libnvs_sec_provider.a + +build esp-idf/nvs_sec_provider/libnvs_sec_provider.a: C_STATIC_LIBRARY_LINKER____idf_nvs_sec_provider_ esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\nvs_sec_provider\libnvs_sec_provider.a + TARGET_PDB = nvs_sec_provider.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\nvs_sec_provider && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/nvs_sec_provider/edit_cache: phony esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\nvs_sec_provider && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/nvs_sec_provider/rebuild_cache: phony esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/nvs_sec_provider/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/nvs_sec_provider/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/nvs_sec_provider/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\nvs_sec_provider && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/nvs_sec_provider/install: phony esp-idf/nvs_sec_provider/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/nvs_sec_provider/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/nvs_sec_provider/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\nvs_sec_provider && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/nvs_sec_provider/install/local: phony esp-idf/nvs_sec_provider/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/nvs_sec_provider/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/nvs_sec_provider/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\nvs_sec_provider && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/nvs_sec_provider/install/strip: phony esp-idf/nvs_sec_provider/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/openthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\openthread && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/openthread/edit_cache: phony esp-idf/openthread/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/openthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\openthread && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/openthread/rebuild_cache: phony esp-idf/openthread/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/openthread/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/openthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/openthread/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\openthread && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/openthread/install: phony esp-idf/openthread/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/openthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/openthread/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\openthread && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/openthread/install/local: phony esp-idf/openthread/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/openthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/openthread/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\openthread && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/openthread/install/strip: phony esp-idf/openthread/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_perfmon + + +############################################# +# Order-only phony target for __idf_perfmon + +build cmake_object_order_depends_target___idf_perfmon: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj: C_COMPILER____idf_perfmon_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/xtensa_perfmon_access.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_access.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + +build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj: C_COMPILER____idf_perfmon_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/xtensa_perfmon_apis.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_apis.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + +build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj: C_COMPILER____idf_perfmon_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/xtensa_perfmon_masks.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_masks.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_perfmon + + +############################################# +# Link the static library esp-idf\perfmon\libperfmon.a + +build esp-idf/perfmon/libperfmon.a: C_STATIC_LIBRARY_LINKER____idf_perfmon_ esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\perfmon\libperfmon.a + TARGET_PDB = perfmon.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/perfmon/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\perfmon && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/perfmon/edit_cache: phony esp-idf/perfmon/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/perfmon/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\perfmon && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/perfmon/rebuild_cache: phony esp-idf/perfmon/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/perfmon/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/perfmon/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/perfmon/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\perfmon && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/perfmon/install: phony esp-idf/perfmon/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/perfmon/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/perfmon/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\perfmon && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/perfmon/install/local: phony esp-idf/perfmon/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/perfmon/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/perfmon/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\perfmon && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/perfmon/install/strip: phony esp-idf/perfmon/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_spiffs + + +############################################# +# Order-only phony target for __idf_spiffs + +build cmake_object_order_depends_target___idf_spiffs: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj: C_COMPILER____idf_spiffs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs_api.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs_api.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj: C_COMPILER____idf_spiffs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_cache.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj: C_COMPILER____idf_spiffs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src/spiffs_check.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_check.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj: C_COMPILER____idf_spiffs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_gc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj: C_COMPILER____idf_spiffs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_hydrogen.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj: C_COMPILER____idf_spiffs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_nucleus.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj: C_COMPILER____idf_spiffs_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/esp_spiffs.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\esp_spiffs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_spiffs + + +############################################# +# Link the static library esp-idf\spiffs\libspiffs.a + +build esp-idf/spiffs/libspiffs.a: C_STATIC_LIBRARY_LINKER____idf_spiffs_ esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\spiffs\libspiffs.a + TARGET_PDB = spiffs.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/spiffs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\spiffs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/spiffs/edit_cache: phony esp-idf/spiffs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/spiffs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\spiffs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/spiffs/rebuild_cache: phony esp-idf/spiffs/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/spiffs/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/spiffs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spiffs/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\spiffs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/spiffs/install: phony esp-idf/spiffs/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/spiffs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spiffs/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\spiffs && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/spiffs/install/local: phony esp-idf/spiffs/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/spiffs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spiffs/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\spiffs && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/spiffs/install/strip: phony esp-idf/spiffs/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/ulp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\ulp && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/ulp/edit_cache: phony esp-idf/ulp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/ulp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\ulp && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/ulp/rebuild_cache: phony esp-idf/ulp/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/ulp/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/ulp/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ulp/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\ulp && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/ulp/install: phony esp-idf/ulp/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/ulp/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ulp/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\ulp && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/ulp/install/local: phony esp-idf/ulp/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/ulp/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ulp/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\ulp && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/ulp/install/strip: phony esp-idf/ulp/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\usb && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/usb/edit_cache: phony esp-idf/usb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\usb && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/usb/rebuild_cache: phony esp-idf/usb/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/usb/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/usb/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/usb/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\usb && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/usb/install: phony esp-idf/usb/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/usb/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/usb/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\usb && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/usb/install/local: phony esp-idf/usb/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/usb/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/usb/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\usb && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/usb/install/strip: phony esp-idf/usb/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_wifi_provisioning + + +############################################# +# Order-only phony target for __idf_wifi_provisioning + +build cmake_object_order_depends_target___idf_wifi_provisioning: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_xtensa + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/wifi_config.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\wifi_config.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/wifi_scan.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\wifi_scan.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/wifi_ctrl.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\wifi_ctrl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/manager.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\manager.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/handlers.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\handlers.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/scheme_console.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\scheme_console.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c\wifi_config.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c\wifi_scan.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c\wifi_ctrl.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c\wifi_constants.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\proto-c + +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj: C_COMPILER____idf_wifi_provisioning_ C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/scheme_softap.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src\scheme_softap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_wifi_provisioning + + +############################################# +# Link the static library esp-idf\wifi_provisioning\libwifi_provisioning.a + +build esp-idf/wifi_provisioning/libwifi_provisioning.a: C_STATIC_LIBRARY_LINKER____idf_wifi_provisioning_ esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj || esp-idf/console/libconsole.a esp-idf/json/libjson.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\wifi_provisioning\CMakeFiles\__idf_wifi_provisioning.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\wifi_provisioning\libwifi_provisioning.a + TARGET_PDB = wifi_provisioning.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wifi_provisioning && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/wifi_provisioning/edit_cache: phony esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wifi_provisioning && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/wifi_provisioning/rebuild_cache: phony esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/wifi_provisioning/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/wifi_provisioning/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wifi_provisioning && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/wifi_provisioning/install: phony esp-idf/wifi_provisioning/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/wifi_provisioning/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wifi_provisioning && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/wifi_provisioning/install/local: phony esp-idf/wifi_provisioning/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/wifi_provisioning/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\wifi_provisioning && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/wifi_provisioning/install/strip: phony esp-idf/wifi_provisioning/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_espressif__esp-dsp + + +############################################# +# Order-only phony target for __idf_espressif__esp-dsp + +build cmake_object_order_depends_target___idf_espressif__esp-dsp: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/dsps_pwroftwo.cpp.obj: CXX_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/misc/dsps_pwroftwo.cpp || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\common\misc\dsps_pwroftwo.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\common\misc + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/aes3_tie_log.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/misc/aes3_tie_log.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\common\misc\aes3_tie_log.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\common\misc + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float\dsps_dotprod_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_m_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_m_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float\dsps_dotprod_f32_m_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float\dsps_dotprode_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_m_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_m_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float\dsps_dotprode_f32_m_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float\dsps_dotprod_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float\dsps_dotprode_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float\dsps_dotprod_f32_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dsps_dotprod_s16_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dsps_dotprod_s16_m_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dsps_dotprod_s16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dspi_dotprod_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float\dspi_dotprod_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_off_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dspi_dotprod_off_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float\dspi_dotprod_off_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_s16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_u16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s8_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_s8_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u8_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_u8_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_off_s16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_off_u16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_off_s8_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_off_u8_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s16_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_s16_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u16_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_u16_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_off_s16_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_off_u16_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s8_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_s8_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u8_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_u8_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_off_u8_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed\dspi_dotprod_off_s8_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dotprod\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float\dspm_mult_3x3x1_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float\dspm_mult_3x3x3_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float\dspm_mult_4x4x1_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float\dspm_mult_4x4x4_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float\dspm_mult_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float\dspm_mult_f32_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float\dspm_mult_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float\dspm_mult_ex_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float\dspm_mult_ex_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float\dspm_mult_ex_f32_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\fixed\dspm_mult_s16_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\fixed\dspm_mult_s16_m_ae32_vector.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\fixed\dspm_mult_s16_m_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\fixed\dspm_mult_s16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\fixed\dspm_mult_s16_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mul\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/float/dspm_add_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\add\float\dspm_add_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\add\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/float/dspm_add_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\add\float\dspm_add_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\add\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/float/dspm_addc_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\addc\float\dspm_addc_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\addc\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/float/dspm_addc_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\addc\float\dspm_addc_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\addc\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/float/dspm_mulc_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mulc\float\dspm_mulc_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mulc\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/float/dspm_mulc_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mulc\float\dspm_mulc_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mulc\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/float/dspm_sub_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\sub\float\dspm_sub_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\sub\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/float/dspm_sub_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\sub\float\dspm_sub_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\sub\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mat/mat.cpp.obj: CXX_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mat/mat.cpp || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mat\mat.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\matrix\mat + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/float/dsps_mulc_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mulc\float\dsps_mulc_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mulc\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/float/dsps_addc_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\addc\float\dsps_addc_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\addc\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/fixed/dsps_mulc_s16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mulc\fixed\dsps_mulc_s16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mulc\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/fixed/dsps_mulc_s16_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mulc\fixed\dsps_mulc_s16_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mulc\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/float/dsps_add_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\float\dsps_add_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\fixed\dsps_add_s16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\fixed\dsps_add_s16_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\fixed\dsps_add_s16_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s8_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\fixed\dsps_add_s8_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s8_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\fixed\dsps_add_s8_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/float/dsps_sub_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\float\dsps_sub_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\fixed\dsps_sub_s16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\fixed\dsps_sub_s16_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\fixed\dsps_sub_s16_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s8_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\fixed\dsps_sub_s8_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s8_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\fixed\dsps_sub_s8_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/float/dsps_mul_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\float\dsps_mul_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\fixed\dsps_mul_s16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\fixed\dsps_mul_s16_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\fixed\dsps_mul_s16_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s8_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\fixed\dsps_mul_s8_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s8_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\fixed\dsps_mul_s8_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/float/dsps_mulc_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mulc\float\dsps_mulc_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mulc\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/float/dsps_addc_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\addc\float\dsps_addc_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\addc\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/float/dsps_add_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\float\dsps_add_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\add\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/float/dsps_sub_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\float\dsps_sub_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sub\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/float/dsps_mul_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\float\dsps_mul_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\mul\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sqrt/float/dsps_sqrt_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/float/dsps_sqrt_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sqrt\float\dsps_sqrt_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\math\sqrt\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32_.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ae32_.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float\dsps_fft2r_fc32_ae32_.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_aes3_.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_aes3_.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float\dsps_fft2r_fc32_aes3_.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float\dsps_fft2r_fc32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ae32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float\dsps_fft2r_fc32_ae32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float\dsps_bit_rev_lookup_fc32_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_fc32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float\dsps_fft4r_fc32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ae32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_fc32_ae32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float\dsps_fft4r_fc32_ae32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float\dsps_fft2r_bitrev_tables_fc32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float\dsps_fft4r_bitrev_tables_fc32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\fixed\dsps_fft2r_sc16_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\fixed\dsps_fft2r_sc16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\fixed\dsps_fft2r_sc16_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fft\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dct/float/dsps_dct_f32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/float/dsps_dct_f32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dct\float\dsps_dct_f32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\dct\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/snr/float/dsps_snr_f32.cpp.obj: CXX_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/snr/float/dsps_snr_f32.cpp || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\snr\float\dsps_snr_f32.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\snr\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/sfdr/float/dsps_sfdr_f32.cpp.obj: CXX_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/sfdr/float/dsps_sfdr_f32.cpp || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\sfdr\float\dsps_sfdr_f32.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\sfdr\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_d_gen.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_d_gen.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\misc\dsps_d_gen.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\misc + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_h_gen.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_h_gen.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\misc\dsps_h_gen.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\misc + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_tone_gen.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_tone_gen.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\misc\dsps_tone_gen.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\misc + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\cplx_gen\dsps_cplx_gen.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\cplx_gen + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\cplx_gen\dsps_cplx_gen.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\cplx_gen + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen_init.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen_init.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\cplx_gen\dsps_cplx_gen_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\cplx_gen + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memset_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/esp32s3/dsps_memset_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\mem\esp32s3\dsps_memset_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\mem\esp32s3 + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memcpy_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/esp32s3/dsps_memcpy_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\mem\esp32s3\dsps_memcpy_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\mem\esp32s3 + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/view/dsps_view.cpp.obj: CXX_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/view/dsps_view.cpp || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\view\dsps_view.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\support\view + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/hann/float/dsps_wind_hann_f32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/float/dsps_wind_hann_f32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\hann\float\dsps_wind_hann_f32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\hann\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman/float/dsps_wind_blackman_f32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/float/dsps_wind_blackman_f32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\blackman\float\dsps_wind_blackman_f32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\blackman\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\blackman_harris\float\dsps_wind_blackman_harris_f32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\blackman_harris\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\blackman_nuttall\float\dsps_wind_blackman_nuttall_f32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\blackman_nuttall\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/nuttall/float/dsps_wind_nuttall_f32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/float/dsps_wind_nuttall_f32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\nuttall\float\dsps_wind_nuttall_f32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\nuttall\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/flat_top/float/dsps_wind_flat_top_f32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/float/dsps_wind_flat_top_f32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\flat_top\float\dsps_wind_flat_top_f32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\windows\flat_top\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float\dsps_conv_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float\dsps_conv_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_corr_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float\dsps_corr_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_corr_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float\dsps_corr_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_ccorr_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float\dsps_ccorr_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_ccorr_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float\dsps_ccorr_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\conv\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\iir\biquad\dsps_biquad_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\iir\biquad + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\iir\biquad\dsps_biquad_f32_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\iir\biquad + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\iir\biquad\dsps_biquad_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\iir\biquad + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_gen_f32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_gen_f32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\iir\biquad\dsps_biquad_gen_f32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\iir\biquad + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float\dsps_fir_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float\dsps_fir_f32_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float\dsps_fird_f32_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float\dsps_fird_f32_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float\dsps_fir_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_init_f32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_init_f32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float\dsps_fir_init_f32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float\dsps_fird_f32_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_init_f32.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_init_f32.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float\dsps_fird_init_f32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\float + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_init_s16.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_init_s16.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\fixed\dsps_fird_init_s16.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ansi.c.obj: C_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_ansi.c || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\fixed\dsps_fird_s16_ansi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\fixed\dsps_fird_s16_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fir_s16_m_ae32.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fir_s16_m_ae32.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\fixed\dsps_fir_s16_m_ae32.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_aes3.S.obj: ASM_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_aes3.S || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\fixed\dsps_fird_s16_aes3.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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\fir\fixed + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf/common/ekf.cpp.obj: CXX_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/common/ekf.cpp || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\kalman\ekf\common\ekf.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\kalman\ekf\common + +build esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf_imu13states/ekf_imu13states.cpp.obj: CXX_COMPILER____idf_espressif__esp-dsp_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/ekf_imu13states.cpp || cmake_object_order_depends_target___idf_espressif__esp-dsp + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\kalman\ekf_imu13states\ekf_imu13states.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + OBJECT_FILE_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir\modules\kalman\ekf_imu13states + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_espressif__esp-dsp + + +############################################# +# Link the static library esp-idf\espressif__esp-dsp\libespressif__esp-dsp.a + +build esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a: C_STATIC_LIBRARY_LINKER____idf_espressif__esp-dsp_ esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/dsps_pwroftwo.cpp.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/aes3_tie_log.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_m_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_m_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_off_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mat/mat.cpp.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sqrt/float/dsps_sqrt_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32_.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_aes3_.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ae32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dct/float/dsps_dct_f32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/snr/float/dsps_snr_f32.cpp.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/sfdr/float/dsps_sfdr_f32.cpp.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_d_gen.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_h_gen.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_tone_gen.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen_init.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memset_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memcpy_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/view/dsps_view.cpp.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/hann/float/dsps_wind_hann_f32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman/float/dsps_wind_blackman_f32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/nuttall/float/dsps_wind_nuttall_f32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/flat_top/float/dsps_wind_flat_top_f32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_gen_f32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_init_f32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_init_f32.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_init_s16.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ansi.c.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fir_s16_m_ae32.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_aes3.S.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf/common/ekf.cpp.obj esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf_imu13states/ekf_imu13states.cpp.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\espressif__esp-dsp\CMakeFiles\__idf_espressif__esp-dsp.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = esp-idf\espressif__esp-dsp\libespressif__esp-dsp.a + TARGET_PDB = espressif__esp-dsp.a.dbg + RSP_FILE = CMakeFiles\__idf_espressif__esp-dsp.rsp + + +############################################# +# Utility command for edit_cache + +build esp-idf/espressif__esp-dsp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\espressif__esp-dsp && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/espressif__esp-dsp/edit_cache: phony esp-idf/espressif__esp-dsp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/espressif__esp-dsp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\espressif__esp-dsp && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/espressif__esp-dsp/rebuild_cache: phony esp-idf/espressif__esp-dsp/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/espressif__esp-dsp/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/espressif__esp-dsp/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espressif__esp-dsp/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\espressif__esp-dsp && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/espressif__esp-dsp/install: phony esp-idf/espressif__esp-dsp/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/espressif__esp-dsp/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espressif__esp-dsp/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\espressif__esp-dsp && C:\Users\Job\.espressif\tools\cmake\3.24.0\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/espressif__esp-dsp/install/local: phony esp-idf/espressif__esp-dsp/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/espressif__esp-dsp/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espressif__esp-dsp/all + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\espressif__esp-dsp && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/espressif__esp-dsp/install/strip: phony esp-idf/espressif__esp-dsp/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Job/esp/v5.2.2/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_app_trace cmake_object_order_depends_target___idf_cmock cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_hid cmake_object_order_depends_target___idf_esp_lcd cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_espcoredump cmake_object_order_depends_target___idf_espressif__esp-dsp cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_nvs_sec_provider cmake_object_order_depends_target___idf_perfmon cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa + +build esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj: C_COMPILER____idf_main_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/station_example_main.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -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\station_example_main.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + +build esp-idf/main/CMakeFiles/__idf_main.dir/http_control.c.obj: C_COMPILER____idf_main_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/http_control.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -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\http_control.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + +build esp-idf/main/CMakeFiles/__idf_main.dir/filter/butterworthdesign.c.obj: C_COMPILER____idf_main_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter/butterworthdesign.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -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\filter\butterworthdesign.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir\filter + +build esp-idf/main/CMakeFiles/__idf_main.dir/filter/signalpath.c.obj: C_COMPILER____idf_main_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter/signalpath.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -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\filter\signalpath.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir\filter + +build esp-idf/main/CMakeFiles/__idf_main.dir/button.c.obj: C_COMPILER____idf_main_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/button.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -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\button.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + +build esp-idf/main/CMakeFiles/__idf_main.dir/power/husb238.c.obj: C_COMPILER____idf_main_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/power/husb238.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -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\power\husb238.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir\power + +build esp-idf/main/CMakeFiles/__idf_main.dir/flash.c.obj: C_COMPILER____idf_main_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/flash.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -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\flash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + +build esp-idf/main/CMakeFiles/__idf_main.dir/ssd1306/ssd1306.c.obj: C_COMPILER____idf_main_ C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/ssd1306/ssd1306.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.2.2\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -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\ssd1306\ssd1306.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir\ssd1306 + + +# ============================================================================= +# 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/station_example_main.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/http_control.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/filter/butterworthdesign.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/filter/signalpath.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/button.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/power/husb238.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/flash.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/ssd1306/ssd1306.c.obj || esp-idf/app_trace/libapp_trace.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/espcoredump/libespcoredump.a esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a esp-idf/fatfs/libfatfs.a esp-idf/json/libjson.a esp-idf/mqtt/libmqtt.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address -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_FILE = esp-idf\main\libmain.a + TARGET_PDB = main.a.dbg + + +############################################# +# Utility command for edit_cache + +build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\main && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake-gui.exe -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\main && C:\Users\Job\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW -BC:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\main && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\main && C:\Users\Job\.espressif\tools\cmake\3.24.0\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 = cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\main && C:\Users\Job\.espressif\tools\cmake\3.24.0\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_trace: phony esp-idf/app_trace/libapp_trace.a + +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_cmock: phony esp-idf/cmock/libcmock.a + +build __idf_console: phony esp-idf/console/libconsole.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-tls: phony esp-idf/esp-tls/libesp-tls.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_coex: phony esp-idf/esp_coex/libesp_coex.a + +build __idf_esp_common: phony esp-idf/esp_common/libesp_common.a + +build __idf_esp_eth: phony esp-idf/esp_eth/libesp_eth.a + +build __idf_esp_event: phony esp-idf/esp_event/libesp_event.a + +build __idf_esp_gdbstub: phony esp-idf/esp_gdbstub/libesp_gdbstub.a + +build __idf_esp_hid: phony esp-idf/esp_hid/libesp_hid.a + +build __idf_esp_http_client: phony esp-idf/esp_http_client/libesp_http_client.a + +build __idf_esp_http_server: phony esp-idf/esp_http_server/libesp_http_server.a + +build __idf_esp_https_ota: phony esp-idf/esp_https_ota/libesp_https_ota.a + +build __idf_esp_hw_support: phony esp-idf/esp_hw_support/libesp_hw_support.a + +build __idf_esp_lcd: phony esp-idf/esp_lcd/libesp_lcd.a + +build __idf_esp_local_ctrl: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a + +build __idf_esp_mm: phony esp-idf/esp_mm/libesp_mm.a + +build __idf_esp_netif: phony esp-idf/esp_netif/libesp_netif.a + +build __idf_esp_partition: phony esp-idf/esp_partition/libesp_partition.a + +build __idf_esp_phy: phony esp-idf/esp_phy/libesp_phy.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_system: phony esp-idf/esp_system/libesp_system.a + +build __idf_esp_timer: phony esp-idf/esp_timer/libesp_timer.a + +build __idf_esp_wifi: phony esp-idf/esp_wifi/libesp_wifi.a + +build __idf_espcoredump: phony esp-idf/espcoredump/libespcoredump.a + +build __idf_espressif__esp-dsp: phony esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a + +build __idf_fatfs: phony esp-idf/fatfs/libfatfs.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_http_parser: phony esp-idf/http_parser/libhttp_parser.a + +build __idf_json: phony esp-idf/json/libjson.a + +build __idf_log: phony esp-idf/log/liblog.a + +build __idf_lwip: phony esp-idf/lwip/liblwip.a + +build __idf_main: phony esp-idf/main/libmain.a + +build __idf_mbedtls: phony esp-idf/mbedtls/libmbedtls.a + +build __idf_mqtt: phony esp-idf/mqtt/libmqtt.a + +build __idf_newlib: phony esp-idf/newlib/libnewlib.a + +build __idf_nvs_flash: phony esp-idf/nvs_flash/libnvs_flash.a + +build __idf_nvs_sec_provider: phony esp-idf/nvs_sec_provider/libnvs_sec_provider.a + +build __idf_perfmon: phony esp-idf/perfmon/libperfmon.a + +build __idf_protobuf-c: phony esp-idf/protobuf-c/libprotobuf-c.a + +build __idf_protocomm: phony esp-idf/protocomm/libprotocomm.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_spiffs: phony esp-idf/spiffs/libspiffs.a + +build __idf_tcp_transport: phony esp-idf/tcp_transport/libtcp_transport.a + +build __idf_unity: phony esp-idf/unity/libunity.a + +build __idf_vfs: phony esp-idf/vfs/libvfs.a + +build __idf_wear_levelling: phony esp-idf/wear_levelling/libwear_levelling.a + +build __idf_wifi_provisioning: phony esp-idf/wifi_provisioning/libwifi_provisioning.a + +build __idf_wpa_supplicant: phony esp-idf/wpa_supplicant/libwpa_supplicant.a + +build __idf_xtensa: phony esp-idf/xtensa/libxtensa.a + +build __ldgen_output_sections.ld: phony esp-idf/esp_system/__ldgen_output_sections.ld + +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_trace.a: phony esp-idf/app_trace/libapp_trace.a + +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 libcmock.a: phony esp-idf/cmock/libcmock.a + +build libconsole.a: phony esp-idf/console/libconsole.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-tls.a: phony esp-idf/esp-tls/libesp-tls.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_coex.a: phony esp-idf/esp_coex/libesp_coex.a + +build libesp_common.a: phony esp-idf/esp_common/libesp_common.a + +build libesp_eth.a: phony esp-idf/esp_eth/libesp_eth.a + +build libesp_event.a: phony esp-idf/esp_event/libesp_event.a + +build libesp_gdbstub.a: phony esp-idf/esp_gdbstub/libesp_gdbstub.a + +build libesp_hid.a: phony esp-idf/esp_hid/libesp_hid.a + +build libesp_http_client.a: phony esp-idf/esp_http_client/libesp_http_client.a + +build libesp_http_server.a: phony esp-idf/esp_http_server/libesp_http_server.a + +build libesp_https_ota.a: phony esp-idf/esp_https_ota/libesp_https_ota.a + +build libesp_hw_support.a: phony esp-idf/esp_hw_support/libesp_hw_support.a + +build libesp_lcd.a: phony esp-idf/esp_lcd/libesp_lcd.a + +build libesp_local_ctrl.a: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a + +build libesp_mm.a: phony esp-idf/esp_mm/libesp_mm.a + +build libesp_netif.a: phony esp-idf/esp_netif/libesp_netif.a + +build libesp_partition.a: phony esp-idf/esp_partition/libesp_partition.a + +build libesp_phy.a: phony esp-idf/esp_phy/libesp_phy.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_system.a: phony esp-idf/esp_system/libesp_system.a + +build libesp_timer.a: phony esp-idf/esp_timer/libesp_timer.a + +build libesp_wifi.a: phony esp-idf/esp_wifi/libesp_wifi.a + +build libespcoredump.a: phony esp-idf/espcoredump/libespcoredump.a + +build libespressif__esp-dsp.a: phony esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a + +build libeverest.a: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a + +build libfatfs.a: phony esp-idf/fatfs/libfatfs.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 libhttp_parser.a: phony esp-idf/http_parser/libhttp_parser.a + +build libjson.a: phony esp-idf/json/libjson.a + +build liblog.a: phony esp-idf/log/liblog.a + +build liblwip.a: phony esp-idf/lwip/liblwip.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 libmqtt.a: phony esp-idf/mqtt/libmqtt.a + +build libnewlib.a: phony esp-idf/newlib/libnewlib.a + +build libnvs_flash.a: phony esp-idf/nvs_flash/libnvs_flash.a + +build libnvs_sec_provider.a: phony esp-idf/nvs_sec_provider/libnvs_sec_provider.a + +build libp256m.a: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a + +build libperfmon.a: phony esp-idf/perfmon/libperfmon.a + +build libprotobuf-c.a: phony esp-idf/protobuf-c/libprotobuf-c.a + +build libprotocomm.a: phony esp-idf/protocomm/libprotocomm.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 libspiffs.a: phony esp-idf/spiffs/libspiffs.a + +build libtcp_transport.a: phony esp-idf/tcp_transport/libtcp_transport.a + +build libunity.a: phony esp-idf/unity/libunity.a + +build libvfs.a: phony esp-idf/vfs/libvfs.a + +build libwear_levelling.a: phony esp-idf/wear_levelling/libwear_levelling.a + +build libwifi_provisioning.a: phony esp-idf/wifi_provisioning/libwifi_provisioning.a + +build libwpa_supplicant.a: phony esp-idf/wpa_supplicant/libwpa_supplicant.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: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build + +build all: phony bootloader app ESPIDFNEW.elf esp-idf/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf + +build esp-idf/all: phony esp-idf/xtensa/all esp-idf/esp_ringbuf/all esp-idf/efuse/all esp-idf/esp_mm/all esp-idf/driver/all esp-idf/esp_pm/all esp-idf/mbedtls/all esp-idf/esp_bootloader_format/all esp-idf/esp_app_format/all esp-idf/bootloader_support/all esp-idf/bootloader/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/esp_partition/all esp-idf/app_update/all esp-idf/spi_flash/all esp-idf/pthread/all esp-idf/esp_system/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_hw_support/all esp-idf/freertos/all esp-idf/newlib/all esp-idf/cxx/all esp-idf/esp_common/all esp-idf/esp_timer/all esp-idf/app_trace/all esp-idf/esp_event/all esp-idf/nvs_flash/all esp-idf/esp_phy/all esp-idf/vfs/all esp-idf/lwip/all esp-idf/esp_netif_stack/all esp-idf/esp_netif/all esp-idf/wpa_supplicant/all esp-idf/esp_coex/all esp-idf/esp_wifi/all esp-idf/bt/all esp-idf/unity/all esp-idf/cmock/all esp-idf/console/all esp-idf/http_parser/all esp-idf/esp-tls/all esp-idf/esp_adc/all esp-idf/esp_eth/all esp-idf/esp_gdbstub/all esp-idf/esp_hid/all esp-idf/tcp_transport/all esp-idf/esp_http_client/all esp-idf/esp_http_server/all esp-idf/esp_https_ota/all esp-idf/esp_https_server/all esp-idf/esp_psram/all esp-idf/esp_lcd/all esp-idf/protobuf-c/all esp-idf/protocomm/all esp-idf/esp_local_ctrl/all esp-idf/espcoredump/all esp-idf/wear_levelling/all esp-idf/sdmmc/all esp-idf/fatfs/all esp-idf/idf_test/all esp-idf/ieee802154/all esp-idf/json/all esp-idf/mqtt/all esp-idf/nvs_sec_provider/all esp-idf/openthread/all esp-idf/perfmon/all esp-idf/spiffs/all esp-idf/ulp/all esp-idf/usb/all esp-idf/wifi_provisioning/all esp-idf/espressif__esp-dsp/all esp-idf/main/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_trace + +build esp-idf/app_trace/all: phony esp-idf/app_trace/libapp_trace.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_update + +build esp-idf/app_update/all: phony esp-idf/app_update/libapp_update.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bt + +build esp-idf/bt/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmock + +build esp-idf/cmock/all: phony esp-idf/cmock/libcmock.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/console + +build esp-idf/console/all: phony esp-idf/console/libconsole.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cxx + +build esp-idf/cxx/all: phony esp-idf/cxx/libcxx.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/driver + +build esp-idf/driver/all: phony esp-idf/driver/libdriver.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp-tls + +build esp-idf/esp-tls/all: phony esp-idf/esp-tls/libesp-tls.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_adc + +build esp-idf/esp_adc/all: phony esp-idf/esp_adc/libesp_adc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_app_format + +build esp-idf/esp_app_format/all: phony esp-idf/esp_app_format/libesp_app_format.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_bootloader_format + +build esp-idf/esp_bootloader_format/all: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_coex + +build esp-idf/esp_coex/all: phony esp-idf/esp_coex/libesp_coex.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_eth + +build esp-idf/esp_eth/all: phony esp-idf/esp_eth/libesp_eth.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_event + +build esp-idf/esp_event/all: phony esp-idf/esp_event/libesp_event.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_gdbstub + +build esp-idf/esp_gdbstub/all: phony esp-idf/esp_gdbstub/libesp_gdbstub.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hid + +build esp-idf/esp_hid/all: phony esp-idf/esp_hid/libesp_hid.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_client + +build esp-idf/esp_http_client/all: phony esp-idf/esp_http_client/libesp_http_client.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_server + +build esp-idf/esp_http_server/all: phony esp-idf/esp_http_server/libesp_http_server.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_ota + +build esp-idf/esp_https_ota/all: phony esp-idf/esp_https_ota/libesp_https_ota.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_server + +build esp-idf/esp_https_server/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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/esp32/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/port/esp32 + +build esp-idf/esp_hw_support/port/esp32/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_lcd + +build esp-idf/esp_lcd/all: phony esp-idf/esp_lcd/libesp_lcd.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_local_ctrl + +build esp-idf/esp_local_ctrl/all: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_mm + +build esp-idf/esp_mm/all: phony esp-idf/esp_mm/libesp_mm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif + +build esp-idf/esp_netif/all: phony esp-idf/esp_netif/libesp_netif.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif_stack + +build esp-idf/esp_netif_stack/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_partition + +build esp-idf/esp_partition/all: phony esp-idf/esp_partition/libesp_partition.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_phy + +build esp-idf/esp_phy/all: phony esp-idf/esp_phy/libesp_phy.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_pm + +build esp-idf/esp_pm/all: phony esp-idf/esp_pm/libesp_pm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_psram + +build esp-idf/esp_psram/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_ringbuf + +build esp-idf/esp_ringbuf/all: phony esp-idf/esp_ringbuf/libesp_ringbuf.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port + +build esp-idf/esp_system/port/all: phony esp-idf/esp_system/port/soc/esp32/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/soc/esp32 + +build esp-idf/esp_system/port/soc/esp32/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_timer + +build esp-idf/esp_timer/all: phony esp-idf/esp_timer/libesp_timer.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_wifi + +build esp-idf/esp_wifi/all: phony esp-idf/esp_wifi/libesp_wifi.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espcoredump + +build esp-idf/espcoredump/all: phony esp-idf/espcoredump/libespcoredump.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espressif__esp-dsp + +build esp-idf/espressif__esp-dsp/all: phony esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/fatfs + +build esp-idf/fatfs/all: phony esp-idf/fatfs/libfatfs.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/freertos + +build esp-idf/freertos/all: phony esp-idf/freertos/libfreertos.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/heap + +build esp-idf/heap/all: phony esp-idf/heap/libheap.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/http_parser + +build esp-idf/http_parser/all: phony esp-idf/http_parser/libhttp_parser.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/idf_test + +build esp-idf/idf_test/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ieee802154 + +build esp-idf/ieee802154/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/json + +build esp-idf/json/all: phony esp-idf/json/libjson.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/lwip + +build esp-idf/lwip/all: phony esp-idf/lwip/liblwip.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls + +build esp-idf/mbedtls/all: phony esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/include + +build esp-idf/mbedtls/mbedtls/include/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/pkgconfig + +build esp-idf/mbedtls/mbedtls/pkgconfig/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mqtt + +build esp-idf/mqtt/all: phony esp-idf/mqtt/libmqtt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib + +build esp-idf/newlib/all: phony esp-idf/newlib/libnewlib.a esp-idf/newlib/port/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/port + +build esp-idf/newlib/port/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_flash + +build esp-idf/nvs_flash/all: phony esp-idf/nvs_flash/libnvs_flash.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_sec_provider + +build esp-idf/nvs_sec_provider/all: phony esp-idf/nvs_sec_provider/libnvs_sec_provider.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/openthread + +build esp-idf/openthread/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/perfmon + +build esp-idf/perfmon/all: phony esp-idf/perfmon/libperfmon.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protobuf-c + +build esp-idf/protobuf-c/all: phony esp-idf/protobuf-c/libprotobuf-c.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protocomm + +build esp-idf/protocomm/all: phony esp-idf/protocomm/libprotocomm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/pthread + +build esp-idf/pthread/all: phony esp-idf/pthread/libpthread.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/sdmmc + +build esp-idf/sdmmc/all: phony esp-idf/sdmmc/libsdmmc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spiffs + +build esp-idf/spiffs/all: phony esp-idf/spiffs/libspiffs.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/tcp_transport + +build esp-idf/tcp_transport/all: phony esp-idf/tcp_transport/libtcp_transport.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ulp + +build esp-idf/ulp/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/unity + +build esp-idf/unity/all: phony esp-idf/unity/libunity.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/usb + +build esp-idf/usb/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/vfs + +build esp-idf/vfs/all: phony esp-idf/vfs/libvfs.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wear_levelling + +build esp-idf/wear_levelling/all: phony esp-idf/wear_levelling/libwear_levelling.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wifi_provisioning + +build esp-idf/wifi_provisioning/all: phony esp-idf/wifi_provisioning/libwifi_provisioning.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wpa_supplicant + +build esp-idf/wpa_supplicant/all: phony esp-idf/wpa_supplicant/libwpa_supplicant.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 | C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakePackageConfigHelpers.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckLibraryExists.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/cfgcmd.txt.in C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/mkdirs.cmake.in C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython3.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython/Support.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindThreads.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/GNUInstallDirs.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/.git/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/cxx/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/sources.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_server/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif_stack/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/ld/ld.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/json/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/log/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/port/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/openthread/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/partitions_singleapp.csv C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/ulp/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/ulp/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/usb/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/build.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/component.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/dfu.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/idf.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/project.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/project_description.json.in C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/targets.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/toolchain-esp32.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/utilities.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/version.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/config.env.in C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/CMakeLists.txt C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/CMakeLists.txt C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/idf_component.yml C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/project_include.cmake C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/CMakeLists.txt C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/idf_component.yml C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake 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 C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeASMInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeGenericSystem.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakePackageConfigHelpers.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFile.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckIncludeFileCXX.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckLibraryExists.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CheckTypeSize.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-ASM.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-C.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Compiler/GNU.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/cfgcmd.txt.in C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/ExternalProject/mkdirs.cmake.in C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindGit.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPackageMessage.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython3.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindPython/Support.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/FindThreads.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/GNUInstallDirs.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/Platform/Generic.cmake C$:/Users/Job/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/.git/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Job/esp/v5.2.2/esp-idf/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/console/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/cxx/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/driver/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/sources.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_server/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif_stack/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/ld/ld.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/hal/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/json/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/log/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/port/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/lib/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/openthread/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/partitions_singleapp.csv C$:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/soc/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/ulp/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/ulp/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/.git C$:/Users/Job/esp/v5.2.2/esp-idf/components/usb/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/CMakeLists.txt C$:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/project_include.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/build.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/component.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/dfu.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/idf.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/project.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/project_description.json.in C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/targets.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/toolchain-esp32.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/utilities.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/cmake/version.cmake C$:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/config.env.in C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/CMakeLists.txt C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/CMakeLists.txt C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/idf_component.yml C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/project_include.cmake C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/CMakeLists.txt C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/idf_component.yml C$:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig CMakeCache.txt CMakeFiles/3.24.0/CMakeASMCompiler.cmake CMakeFiles/3.24.0/CMakeCCompiler.cmake CMakeFiles/3.24.0/CMakeCXXCompiler.cmake CMakeFiles/3.24.0/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake 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/ESPIDFNEW/build/cmake_install.cmake b/ESPIDFNEW/build/cmake_install.cmake new file mode 100644 index 0000000..0385e53 --- /dev/null +++ b/ESPIDFNEW/build/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/ESPIDFNEW/build/compile_commands.json b/ESPIDFNEW/build/compile_commands.json new file mode 100644 index 0000000..00cbdbe --- /dev/null +++ b/ESPIDFNEW/build/compile_commands.json @@ -0,0 +1,4907 @@ +[ +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-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 -DUNITY_INCLUDE_CONFIG_H -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -o CMakeFiles\\ESPIDFNEW.elf.dir\\project_elf_src_esp32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\build\\project_elf_src_esp32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\build\\project_elf_src_esp32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\eri.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\eri.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xt_trax.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xt_trax.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xtensa_context.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xtensa_context.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xtensa_intr_asm.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xtensa_intr_asm.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xtensa_intr.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xtensa_intr.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xtensa_vectors.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\xtensa\\xtensa_vectors.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_ringbuf\\ringbuf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_ringbuf\\ringbuf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\esp_efuse_table.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_table.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_table.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\esp_efuse_fields.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_fields.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_fields.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\esp_efuse_utility.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_utility.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\esp32\\esp_efuse_utility.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_mm\\esp_mmu_map.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_mm\\esp_mmu_map.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\ext_mem_layout.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_mm\\port\\esp32\\ext_mem_layout.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_mm\\port\\esp32\\ext_mem_layout.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_mm\\esp_cache.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_mm\\esp_cache.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\cache_esp32.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_mm\\cache_esp32.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_mm\\cache_esp32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\gpio\\gpio.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\gpio\\gpio.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\gpio\\gpio.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\gpio\\gpio_glitch_filter_ops.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\gpio\\gpio_glitch_filter_ops.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\gpio\\gpio_glitch_filter_ops.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\gpio\\rtc_io.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\gpio\\rtc_io.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\gpio\\rtc_io.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\spi\\spi_bus_lock.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\spi_bus_lock.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\spi_bus_lock.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\adc_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\adc_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\adc_dma_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\adc_dma_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\dac\\dac_oneshot.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\dac\\dac_oneshot.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\dac\\dac_oneshot.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\dac\\dac_cosine.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\dac\\dac_cosine.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\dac\\dac_cosine.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\dac\\dac_continuous.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\dac\\dac_continuous.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\dac\\dac_continuous.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\dac\\dac_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\dac\\dac_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\dac\\dac_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\dac\\esp32\\dac_dma.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\dac\\esp32\\dac_dma.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\dac\\esp32\\dac_dma.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\dac_common_legacy.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\dac_common_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\dac_common_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\dac_legacy.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\esp32\\dac_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\esp32\\dac_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\gptimer\\gptimer.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\gptimer\\gptimer.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\gptimer\\gptimer.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\gptimer\\gptimer_priv.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\gptimer\\gptimer_priv.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\gptimer\\gptimer_priv.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\timer_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\timer_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2c\\i2c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2c\\i2c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_master.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2c\\i2c_master.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2c\\i2c_master.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2c\\i2c_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2c\\i2c_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_slave.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2c\\i2c_slave.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2c\\i2c_slave.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\i2s\\i2s_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2s\\i2s_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2s\\i2s_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\i2s\\i2s_platform.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2s\\i2s_platform.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2s\\i2s_platform.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\i2s\\i2s_std.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2s\\i2s_std.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2s\\i2s_std.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\i2s_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\i2s_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\i2s\\i2s_pdm.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2s\\i2s_pdm.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\i2s\\i2s_pdm.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\ledc\\ledc.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\ledc\\ledc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\ledc\\ledc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\mcpwm\\mcpwm_cap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_cap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_cap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\mcpwm\\mcpwm_cmpr.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_cmpr.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_cmpr.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\mcpwm\\mcpwm_com.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_com.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_com.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\mcpwm\\mcpwm_fault.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_fault.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_fault.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\mcpwm\\mcpwm_gen.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_gen.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_gen.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\mcpwm\\mcpwm_oper.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_oper.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_oper.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\mcpwm\\mcpwm_sync.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_sync.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_sync.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\mcpwm\\mcpwm_timer.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_timer.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\mcpwm\\mcpwm_timer.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\mcpwm_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\mcpwm_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\pcnt\\pulse_cnt.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\pcnt\\pulse_cnt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\pcnt\\pulse_cnt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\pcnt_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\pcnt_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\rmt\\rmt_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\rmt\\rmt_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\rmt\\rmt_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\rmt\\rmt_encoder.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\rmt\\rmt_encoder.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\rmt\\rmt_encoder.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\rmt\\rmt_rx.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\rmt\\rmt_rx.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\rmt\\rmt_rx.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\rmt\\rmt_tx.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\rmt\\rmt_tx.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\rmt\\rmt_tx.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\rmt_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\rmt_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\sdio_slave\\sdio_slave.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\sdio_slave\\sdio_slave.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\sdio_slave\\sdio_slave.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\sdmmc\\sdmmc_transaction.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\sdmmc\\sdmmc_transaction.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\sdmmc\\sdmmc_transaction.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\sdmmc\\sdmmc_host.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\sdmmc\\sdmmc_host.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\sdmmc\\sdmmc_host.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\sigma_delta\\sdm.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\sigma_delta\\sdm.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\sigma_delta\\sdm.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\sigma_delta_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\sigma_delta_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\spi\\gpspi\\spi_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\gpspi\\spi_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\gpspi\\spi_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\spi\\gpspi\\spi_master.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\gpspi\\spi_master.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\gpspi\\spi_master.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\spi\\gpspi\\spi_slave.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\gpspi\\spi_slave.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\gpspi\\spi_slave.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\spi\\sdspi\\sdspi_crc.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\sdspi\\sdspi_crc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\sdspi\\sdspi_crc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\spi\\sdspi\\sdspi_host.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\sdspi\\sdspi_host.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\sdspi\\sdspi_host.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\spi\\sdspi\\sdspi_transaction.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\sdspi\\sdspi_transaction.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\spi\\sdspi\\sdspi_transaction.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\touch_sensor\\touch_sensor_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\touch_sensor\\touch_sensor_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\touch_sensor.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\touch_sensor\\esp32\\touch_sensor.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\touch_sensor\\esp32\\touch_sensor.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\twai\\twai.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\twai\\twai.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\uart\\uart.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\uart\\uart.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\uart\\uart.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_i2s_deprecated.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\adc_i2s_deprecated.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\driver\\deprecated\\adc_i2s_deprecated.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_pm\\pm_locks.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_pm\\pm_locks.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_pm\\pm_trace.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_pm\\pm_trace.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_pm\\pm_impl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_pm\\pm_impl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\build\\x509_crt_bundle.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\build\\x509_crt_bundle.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\everest.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\everest.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\x25519.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\x25519.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\Hacl_Curve25519_joined.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\Hacl_Curve25519_joined.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m_driver_entrypoints.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m_driver_entrypoints.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m\\p256-m.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m\\p256-m.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aes.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aes.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesni.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesni.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesce.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesce.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aria.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aria.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1parse.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1parse.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1write.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1write.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\base64.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\base64.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_core.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_core.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\block_cipher.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\block_cipher.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\camellia.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\camellia.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ccm.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ccm.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chacha20.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chacha20.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chachapoly.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chachapoly.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\constant_time.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\constant_time.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cmac.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cmac.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\des.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\des.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\dhm.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\dhm.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdh.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdh.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdsa.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdsa.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecjpake.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecjpake.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves_new.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves_new.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\gcm.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\gcm.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hkdf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hkdf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lmots.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lmots.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lms.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lms.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md5.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md5.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\nist_kw.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\nist_kw.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\oid.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\oid.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\padlock.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\padlock.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pem.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pem.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_ecc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_ecc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs12.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs12.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs5.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs5.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkparse.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkparse.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkwrite.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkwrite.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform_util.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform_util.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\poly1305.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\poly1305.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers_no_static.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers_no_static.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ffdh.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ffdh.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_util.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_util.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ripemd160.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ripemd160.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha1.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha1.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha256.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha256.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha512.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha512.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha3.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha3.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\threading.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\threading.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_mem.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_mem.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_mem.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_timing.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_timing.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_timing.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\block\\esp_aes.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\block\\esp_aes.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\block\\esp_aes.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\sha.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\sha.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\sha.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\esp_sha1.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\esp_sha1.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\esp_sha1.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\esp_sha256.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\esp_sha256.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\esp_sha256.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\esp_sha512.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\esp_sha512.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\esp_sha512.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -Wmissing-prototypes -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\C_\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\net_sockets.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\net_sockets.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mbedtls\\port\\net_sockets.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_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=\\\"ESPIDFNEW\\\" -DPROJECT_VER=\\\"1\\\" -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_app_format\\esp_app_desc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_app_format\\esp_app_desc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_esp32.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_esp32.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\idf\\bootloader_sha.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\idf\\bootloader_sha.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\bootloader_support\\src\\idf\\bootloader_sha.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_partition\\partition.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_partition\\partition.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_partition\\partition_target.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_partition\\partition_target.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_update\\esp_ota_ops.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_update\\esp_ota_ops.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_update\\esp_ota_app_desc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_update\\esp_ota_app_desc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\flash_brownout_hook.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\flash_brownout_hook.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_drivers.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_drivers.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_generic.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_generic.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_issi.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_issi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_gd.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_gd.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_winbond.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_winbond.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_boya.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_boya.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic_opi.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic_opi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_th.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_chip_th.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\memspi_host_driver.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\memspi_host_driver.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\cache_utils.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\cache_utils.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\flash_mmap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\flash_mmap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\flash_ops.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\flash_ops.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\esp_flash_api.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\esp_flash_api.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\esp_flash_spi_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\esp_flash_spi_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_os_func_app.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_os_func_app.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_os_func_noos.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spi_flash\\spi_flash_os_func_noos.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\pthread\\pthread.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\pthread\\pthread.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\pthread\\pthread_cond_var.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\pthread\\pthread_cond_var.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\pthread\\pthread_local_storage.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\pthread\\pthread_local_storage.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\pthread\\pthread_rwlock.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\pthread\\pthread_rwlock.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\pthread\\pthread_semaphore.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\pthread\\pthread_semaphore.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\esp_err.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\esp_err.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\crosscore_int.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\crosscore_int.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\esp_ipc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\esp_ipc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\freertos_hooks.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\freertos_hooks.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\int_wdt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\int_wdt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\panic.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\panic.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\esp_system.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\esp_system.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\startup.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\startup.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\system_time.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\system_time.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\stack_check.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\stack_check.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\ubsan.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\ubsan.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\xt_wdt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\xt_wdt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\debug_stubs.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\debug_stubs.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\debug_stubs.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\cpu_start.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\cpu_start.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\cpu_start.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\panic_handler.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\panic_handler.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\esp_system_chip.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\esp_system_chip.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\brownout.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\brownout.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\brownout.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\esp_ipc_isr.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\esp_ipc_isr.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_port.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_port.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_handler.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_handler.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_routines.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_routines.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_arch.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_arch.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_handler_asm.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_handler_asm.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack_asm.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack_asm.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers_asm.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers_asm.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_stubs.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_stubs.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\trax.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\trax.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\highint_hdl.S.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\highint_hdl.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\highint_hdl.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\clk.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\clk.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\clk.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\reset_reason.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\reset_reason.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\reset_reason.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\system_internal.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\system_internal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\system_internal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\cache_err_int.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\cache_err_int.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\cache_err_int.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\hal_utils.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\hal_utils.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mpu_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mpu_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\efuse_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\efuse_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\efuse_hal.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\efuse_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\efuse_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\wdt_hal_iram.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\wdt_hal_iram.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\wdt_hal_iram.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mmu_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mmu_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\cache_hal_esp32.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\cache_hal_esp32.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\cache_hal_esp32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_flash_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_flash_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_flash_hal_iram.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_flash_hal_iram.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_flash_encrypt_hal_iram.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_flash_encrypt_hal_iram.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\clk_tree_hal.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\clk_tree_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\clk_tree_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\uart_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\uart_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\uart_hal_iram.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\uart_hal_iram.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\gpio_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\gpio_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\rtc_io_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\rtc_io_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\timer_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\timer_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\ledc_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\ledc_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\ledc_hal_iram.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\ledc_hal_iram.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\i2c_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\i2c_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\i2c_hal_iram.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\i2c_hal_iram.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\rmt_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\rmt_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\pcnt_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\pcnt_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mcpwm_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mcpwm_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\twai_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\twai_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_iram.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\twai_hal_iram.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\twai_hal_iram.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\i2s_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\i2s_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\sdm_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\sdm_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\sdmmc_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\sdmmc_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\emac_hal.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\emac_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\emac_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\adc_hal_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\adc_hal_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\adc_oneshot_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\adc_oneshot_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\adc_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\adc_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mpi_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\mpi_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\sha_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\sha_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\aes_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\aes_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\brownout_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\brownout_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_hal_iram.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_hal_iram.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_slave_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_slave_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_slave_hal_iram.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\spi_slave_hal_iram.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\sdio_slave_hal.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\sdio_slave_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\sdio_slave_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\touch_sensor_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\touch_sensor_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\touch_sensor_hal.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\touch_sensor_hal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\touch_sensor_hal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\gpio_hal_workaround.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\gpio_hal_workaround.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\hal\\esp32\\gpio_hal_workaround.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\log.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\log_buffers.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log_buffers.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log_buffers.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\log_freertos.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log_freertos.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\log\\log_freertos.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\heap_caps.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\heap_caps.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\heap_caps_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\heap_caps_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\multi_heap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\multi_heap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\tlsf\\tlsf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\tlsf\\tlsf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\port\\memory_layout_utils.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\port\\memory_layout_utils.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\memory_layout.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\port\\esp32\\memory_layout.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\heap\\port\\esp32\\memory_layout.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\lldesc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\lldesc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\dport_access_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\dport_access_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\interrupts.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\interrupts.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\interrupts.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\gpio_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\gpio_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\gpio_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\uart_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\uart_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\uart_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\dport_access.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\dport_access.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\dport_access.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\adc_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\adc_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\adc_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\spi_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\spi_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\spi_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\ledc_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\ledc_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\ledc_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\pcnt_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\pcnt_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\pcnt_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rmt_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\rmt_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\rmt_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\sdm_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdm_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdm_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\i2s_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\i2s_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\i2s_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\i2c_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\i2c_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\i2c_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\timer_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\timer_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\timer_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\lcd_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\lcd_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\lcd_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\mcpwm_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\mcpwm_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\mcpwm_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\mpi_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\mpi_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\mpi_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\sdmmc_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdmmc_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdmmc_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\touch_sensor_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\touch_sensor_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\touch_sensor_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\twai_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\twai_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\twai_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\dac_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\dac_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\dac_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_io_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\rtc_io_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\rtc_io_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\sdio_slave_periph.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdio_slave_periph.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\soc\\esp32\\sdio_slave_periph.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\cpu.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\cpu.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\cpu_region_protect.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cpu_region_protect.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cpu_region_protect.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\esp_clk.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\esp_clk.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\clk_ctrl_os.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\clk_ctrl_os.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\hw_random.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\hw_random.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\intr_alloc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\intr_alloc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\mac_addr.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\mac_addr.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\periph_ctrl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\periph_ctrl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\revision.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\revision.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\rtc_module.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\rtc_module.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_modes.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_modes.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_console.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_console.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_gpio.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_gpio.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_event.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_event.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_modem.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_modem.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\regi2c_ctrl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\regi2c_ctrl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\esp_gpio_reserve.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\esp_gpio_reserve.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sar_periph_ctrl_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sar_periph_ctrl_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\io_mux.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\io_mux.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\io_mux.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\esp_clk_tree.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\esp_clk_tree.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\esp_clk_tree.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp_clk_tree_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp_clk_tree_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\dma\\esp_dma_utils.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\dma\\esp_dma_utils.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\adc_share_hw_ctrl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\adc_share_hw_ctrl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_wdt.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\rtc_wdt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\rtc_wdt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_config.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\mspi_timing_config.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\mspi_timing_config.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_wake_stub.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\sleep_wake_stub.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\esp_clock_output.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\esp_clock_output.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_clk.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_clk_init.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_init.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_sleep.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_sleep.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_sleep.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\rtc_time.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_time.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_time.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\chip_info.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\chip_info.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\chip_info.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\cache_sram_mmu.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cache_sram_mmu.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cache_sram_mmu.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\esp_crypto_lock.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\esp_crypto_lock.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\esp_crypto_lock.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\sar_periph_ctrl.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\sar_periph_ctrl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hw_support\\port\\esp32\\sar_periph_ctrl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\heap_idf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\heap_idf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\app_startup.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\app_startup.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\port_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\port_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\port_systick.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\port_systick.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\port.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\port.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\esp_additions\\freertos_compatibility.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\esp_additions\\freertos_compatibility.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\abort.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\abort.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\abort.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\assert.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\assert.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\assert.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-builtin -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\heap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\heap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\heap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\locks.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\locks.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\locks.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\poll.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\poll.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\poll.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\pthread.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\pthread.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\pthread.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\random.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\random.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\random.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\getentropy.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\getentropy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\getentropy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\reent_init.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\reent_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\reent_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\newlib_init.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\newlib_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\newlib_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\syscalls.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\syscalls.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\syscalls.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\termios.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\termios.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\termios.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\stdatomic.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\stdatomic.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\stdatomic.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\time.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\time.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\time.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\sysconf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\sysconf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\sysconf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\realpath.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\realpath.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\realpath.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/priv_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\port\\esp_time_impl.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\port\\esp_time_impl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\newlib\\port\\esp_time_impl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\cxx\\cxx_guards.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\cxx\\cxx_guards.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_timer\\src\\esp_timer.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_timer\\src\\esp_timer.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_timer\\src\\ets_timer_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_timer\\src\\ets_timer_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_timer\\src\\system_time.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_timer\\src\\system_time.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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_lac.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_lac.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_lac.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_trace\\app_trace.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_trace\\app_trace.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\app_trace_util.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_trace\\app_trace_util.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_trace\\app_trace_util.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\host_file_io.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_trace\\host_file_io.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_trace\\host_file_io.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_trace\\CMakeFiles\\__idf_app_trace.dir\\port\\port_uart.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_trace\\port\\port_uart.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\app_trace\\port\\port_uart.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\default_event_loop.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_event\\default_event_loop.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_event\\default_event_loop.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_event\\esp_event.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_event\\esp_event.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event_private.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_event\\esp_event_private.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_event\\esp_event_private.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_api.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_api.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_api.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_cxx_api.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_cxx_api.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_cxx_api.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_item_hash_list.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_item_hash_list.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_item_hash_list.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_page.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_page.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_page.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_pagemanager.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_pagemanager.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_pagemanager.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_storage.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_storage.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_storage.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_simple.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_simple.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_simple.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_locked.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_locked.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_locked.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_partition.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_partition.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_lookup.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_lookup.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_lookup.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_manager.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_manager.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_manager.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_types.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_types.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_types.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_platform.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_platform.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_platform.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_encrypted_partition.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_encrypted_partition.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_flash\\src\\nvs_encrypted_partition.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_override.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_phy\\src\\phy_override.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_phy\\src\\phy_override.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\lib_printf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_phy\\src\\lib_printf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_phy\\src\\lib_printf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_phy\\src\\phy_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_phy\\src\\phy_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_init.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_phy\\src\\phy_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_phy\\src\\phy_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\btbb_init.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_phy\\src\\btbb_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_phy\\src\\btbb_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\vfs\\vfs.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\vfs\\vfs.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_eventfd.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\vfs\\vfs_eventfd.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\vfs\\vfs_eventfd.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_uart.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\vfs\\vfs_uart.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\vfs\\vfs_uart.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_semihost.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\vfs\\vfs_semihost.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\vfs\\vfs_semihost.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_console.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\vfs\\vfs_console.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\vfs\\vfs_console.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\sntp\\sntp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\apps\\sntp\\sntp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\apps\\sntp\\sntp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_lib.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_lib.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_lib.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_msg.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_msg.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_msg.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\err.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\err.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\err.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\if_api.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\if_api.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\if_api.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netbuf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\netbuf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\netbuf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netdb.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\netdb.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\netdb.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netifapi.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\netifapi.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\netifapi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\sockets.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\sockets.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\sockets.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\tcpip.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\tcpip.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\api\\tcpip.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\sntp\\sntp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\apps\\sntp\\sntp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\apps\\sntp\\sntp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\netbiosns\\netbiosns.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\apps\\netbiosns\\netbiosns.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\apps\\netbiosns\\netbiosns.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\def.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\def.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\def.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\dns.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\dns.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\dns.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\inet_chksum.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\inet_chksum.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\inet_chksum.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\init.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ip.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ip.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ip.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\mem.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\mem.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\mem.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\memp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\memp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\memp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\netif.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\netif.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\netif.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\pbuf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\pbuf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\pbuf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\raw.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\raw.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\raw.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\stats.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\stats.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\stats.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\sys.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\sys.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\sys.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_in.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_in.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_in.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_out.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_out.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_out.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\timeouts.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\timeouts.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\timeouts.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\udp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\udp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\udp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\autoip.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\autoip.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\autoip.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\dhcp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\dhcp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\dhcp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\etharp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\etharp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\etharp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\icmp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\icmp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\icmp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\igmp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\igmp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\igmp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_napt.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_napt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_napt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_addr.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_addr.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_addr.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_frag.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_frag.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_frag.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\dhcp6.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\dhcp6.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\dhcp6.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ethip6.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ethip6.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ethip6.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\icmp6.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\icmp6.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\icmp6.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\inet6.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\inet6.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\inet6.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_addr.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_addr.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_addr.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_frag.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_frag.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_frag.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\mld6.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\mld6.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\mld6.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\nd6.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\nd6.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\nd6.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ethernet.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ethernet.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ethernet.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif_fdb.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif_fdb.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif_fdb.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\slipif.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\slipif.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\slipif.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\auth.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\auth.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\auth.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ccp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ccp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ccp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-md5.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-md5.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-md5.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-new.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-new.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-new.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-array-parameter -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap_ms.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap_ms.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap_ms.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\demand.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\demand.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\demand.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ecp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ecp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ecp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eui64.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eui64.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eui64.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\fsm.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\fsm.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\fsm.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipcp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipcp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipcp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipv6cp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipv6cp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipv6cp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\lcp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\lcp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\lcp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\magic.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\magic.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\magic.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\mppe.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\mppe.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\mppe.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\multilink.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\multilink.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\multilink.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ppp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ppp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ppp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppapi.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppapi.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppapi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppcrypt.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppcrypt.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppcrypt.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppoe.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppoe.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppoe.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppol2tp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppol2tp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppol2tp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppos.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppos.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppos.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\upap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\upap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\upap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\utils.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\utils.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\utils.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\vj.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\vj.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\vj.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\tcp_isn_default.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\hooks\\tcp_isn_default.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\hooks\\tcp_isn_default.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\lwip_default_hooks.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\hooks\\lwip_default_hooks.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\hooks\\lwip_default_hooks.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\debug\\lwip_debug.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\debug\\lwip_debug.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\debug\\lwip_debug.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\sockets_ext.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\sockets_ext.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\sockets_ext.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\freertos\\sys_arch.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\freertos\\sys_arch.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\freertos\\sys_arch.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32xx\\vfs_lwip.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\esp32xx\\vfs_lwip.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\port\\esp32xx\\vfs_lwip.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\esp_ping.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\apps\\ping\\esp_ping.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\apps\\ping\\esp_ping.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\apps\\ping\\ping.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\apps\\ping\\ping.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping_sock.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\apps\\ping\\ping_sock.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\apps\\ping\\ping_sock.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\dhcpserver\\dhcpserver.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_handlers.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\esp_netif_handlers.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\esp_netif_handlers.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_objects.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\esp_netif_objects.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\esp_netif_objects.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_defaults.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\esp_netif_defaults.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\esp_netif_defaults.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_sntp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_sntp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_sntp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip_defaults.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip_defaults.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip_defaults.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\wlanif.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\netif\\wlanif.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\netif\\wlanif.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\ethernetif.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\netif\\ethernetif.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\netif\\ethernetif.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\esp_pbuf_ref.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\netif\\esp_pbuf_ref.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_netif\\lwip\\netif\\esp_pbuf_ref.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\os_xtensa.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\port\\os_xtensa.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\port\\os_xtensa.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\eloop.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\port\\eloop.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\port\\eloop.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ap_config.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ap_config.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ap_config.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_1x.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_1x.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_1x.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth_ie.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth_ie.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth_ie.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\pmksa_cache_auth.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\pmksa_cache_auth.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\pmksa_cache_auth.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\sta_info.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\sta_info.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\sta_info.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_11.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_11.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_11.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\comeback_token.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\comeback_token.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\ap\\comeback_token.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\dragonfly.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\common\\dragonfly.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\common\\dragonfly.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\wpa_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\common\\wpa_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\common\\wpa_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\bitfield.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\bitfield.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\bitfield.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-siv.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-siv.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-siv.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-kdf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-kdf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-kdf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ccmp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ccmp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ccmp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-gcm.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-gcm.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-gcm.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\crypto_ops.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\crypto_ops.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\crypto_ops.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_group5.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_group5.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_group5.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_groups.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_groups.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_groups.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ms_funcs.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ms_funcs.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ms_funcs.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tlsprf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tlsprf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tlsprf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-tlsprf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-tlsprf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-tlsprf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-tlsprf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-tlsprf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-tlsprf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-prf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-prf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-prf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-prf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-prf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-prf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-prf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-prf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-prf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\md4-internal.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\md4-internal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\md4-internal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tprf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tprf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tprf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_common\\eap_wsc_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_common\\eap_wsc_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_common\\eap_wsc_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\ieee802_11_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\common\\ieee802_11_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\common\\ieee802_11_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\chap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\chap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\chap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_mschapv2.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_mschapv2.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_mschapv2.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_ttls.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_ttls.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_ttls.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\mschapv2.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\mschapv2.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\mschapv2.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_pac.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_pac.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_pac.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\pmksa_cache.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\pmksa_cache.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\pmksa_cache.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa_ie.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa_ie.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa_ie.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\base64.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\base64.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\base64.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\ext_password.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\ext_password.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\ext_password.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\uuid.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\uuid.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\uuid.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpabuf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpabuf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpabuf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpa_debug.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpa_debug.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpa_debug.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\json.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\json.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\utils\\json.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_build.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_build.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_build.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_parse.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_parse.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_parse.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_process.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_process.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_process.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_dev_attr.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_dev_attr.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_dev_attr.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_enrollee.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_enrollee.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_enrollee.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae_pk.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae_pk.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae_pk.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_eap_client.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_eap_client.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_eap_client.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa2_api_port.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa2_api_port.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa2_api_port.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa_main.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa_main.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa_main.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpas_glue.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpas_glue.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpas_glue.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wps.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wps.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wps.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa3.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa3.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa3.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_owe.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_owe.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_owe.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_hostap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_hostap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_hostap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\tls_mbedtls.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\tls_mbedtls.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\tls_mbedtls.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\fastpbkdf2.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\fastpbkdf2.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\fastpbkdf2.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\rc4.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\rc4.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\rc4.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\des-internal.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\des-internal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\des-internal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-wrap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-wrap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-wrap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-unwrap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-unwrap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-unwrap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_SUPPLICANT -DIDF_VER=\\\"v5.2.2\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUSE_WPA2_TASK -DUSE_WPS_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-strict-aliasing -Wno-write-strings -Werror -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-ccm.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-ccm.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-ccm.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\esp32\\esp_coex_adapter.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_coex\\esp32\\esp_coex_adapter.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_coex\\esp32\\esp_coex_adapter.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\mesh_event.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\mesh_event.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\mesh_event.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\smartconfig.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\smartconfig.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_init.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\wifi_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\wifi_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\wifi_default.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\wifi_default.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_netif.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\wifi_netif.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\wifi_netif.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default_ap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\wifi_default_ap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\wifi_default_ap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\esp32\\esp_adapter.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\esp32\\esp_adapter.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\esp32\\esp_adapter.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig_ack.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\smartconfig_ack.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_wifi\\src\\smartconfig_ack.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity\\src\\unity.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity\\src\\unity.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity\\src\\unity.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_runner.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity_runner.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity_runner.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_freertos.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity_utils_freertos.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity_utils_freertos.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_cache.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity_utils_cache.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity_utils_cache.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_memory.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity_utils_memory.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity_utils_memory.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_port_esp32.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity_port_esp32.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\unity_port_esp32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\port\\esp\\unity_utils_memory_esp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\port\\esp\\unity_utils_memory_esp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\unity\\port\\esp\\unity_utils_memory_esp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\\CMock\\src\\cmock.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\cmock\\CMock\\src\\cmock.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\cmock\\CMock\\src\\cmock.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\commands.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\commands.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\commands.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\esp_console_repl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\esp_console_repl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\split_argv.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\split_argv.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\split_argv.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\linenoise\\linenoise.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\linenoise\\linenoise.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\linenoise\\linenoise.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_cmd.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_cmd.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_cmd.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_date.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_date.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_date.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dbl.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_dbl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_dbl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dstr.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_dstr.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_dstr.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_end.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_end.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_end.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_file.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_file.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_file.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_hashtable.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_hashtable.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_hashtable.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_int.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_int.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_int.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_lit.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_lit.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_lit.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rem.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_rem.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_rem.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rex.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_rex.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_rex.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_str.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_str.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_str.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_utils.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_utils.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\arg_utils.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\argtable3.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\argtable3.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\console\\argtable3\\argtable3.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\\http_parser.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\http_parser\\http_parser.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\http_parser\\http_parser.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp-tls\\esp_tls.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp-tls\\esp_tls.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp-tls-crypto\\esp_tls_crypto.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp-tls\\esp-tls-crypto\\esp_tls_crypto.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp-tls\\esp-tls-crypto\\esp_tls_crypto.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_error_capture.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp-tls\\esp_tls_error_capture.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp-tls\\esp_tls_error_capture.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_platform_port.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp-tls\\esp_tls_platform_port.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp-tls\\esp_tls_platform_port.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_mbedtls.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp-tls\\esp_tls_mbedtls.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp-tls\\esp_tls_mbedtls.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\adc_cali.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\adc_cali.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\adc_cali_curve_fitting.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\adc_cali_curve_fitting.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\deprecated\\esp_adc_cal_common_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\deprecated\\esp_adc_cal_common_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\adc_oneshot.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\adc_oneshot.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\adc_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\adc_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\adc_continuous.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\adc_continuous.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\adc_cali_line_fitting.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\esp32\\adc_cali_line_fitting.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\esp32\\adc_cali_line_fitting.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\esp32\\esp_adc_cal_legacy.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\deprecated\\esp32\\esp_adc_cal_legacy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_adc\\deprecated\\esp32\\esp_adc_cal_legacy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_phy_802_3.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_802_3.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_802_3.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_netif_glue.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_netif_glue.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_netif_glue.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_mac_esp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_mac_esp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_mac_esp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_phy_dp83848.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_dp83848.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_dp83848.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_phy_ip101.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_ip101.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_ip101.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_phy_ksz80xx.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_ksz80xx.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_ksz80xx.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_phy_lan87xx.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_lan87xx.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_lan87xx.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_phy_rtl8201.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_rtl8201.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_eth\\src\\esp_eth_phy_rtl8201.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub_transport.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub_transport.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub_transport.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\packet.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\packet.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\packet.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\gdbstub_xtensa.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\gdbstub_xtensa.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\gdbstub_xtensa.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\gdbstub-entry.S.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\gdbstub-entry.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\gdbstub-entry.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\xt_debugexception.S.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\xt_debugexception.S", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\xt_debugexception.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidd.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hid\\src\\esp_hidd.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hid\\src\\esp_hidd.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidh.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hid\\src\\esp_hidh.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hid\\src\\esp_hidh.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hid_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hid\\src\\esp_hid_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_hid\\src\\esp_hid_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\tcp_transport\\transport.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\tcp_transport\\transport.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ssl.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\tcp_transport\\transport_ssl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\tcp_transport\\transport_ssl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_internal.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\tcp_transport\\transport_internal.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\tcp_transport\\transport_internal.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_socks_proxy.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\tcp_transport\\transport_socks_proxy.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\tcp_transport\\transport_socks_proxy.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ws.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\tcp_transport\\transport_ws.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\tcp_transport\\transport_ws.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\esp_http_client.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_client\\esp_http_client.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_client\\esp_http_client.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_auth.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_client\\lib\\http_auth.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_client\\lib\\http_auth.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_header.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_client\\lib\\http_header.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_client\\lib\\http_header.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_utils.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_client\\lib\\http_utils.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_client\\lib\\http_utils.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_main.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_main.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_main.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_parse.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_parse.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_parse.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_sess.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_sess.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_sess.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_txrx.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_txrx.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_txrx.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_uri.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_uri.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_uri.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_ws.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_ws.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\httpd_ws.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/port/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\util\\ctrl_sock.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\util\\ctrl_sock.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_http_server\\src\\util\\ctrl_sock.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\\src\\esp_https_ota.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_https_ota\\src\\esp_https_ota.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_https_ota\\src\\esp_https_ota.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io_i2c_v1.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io_i2c_v1.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io_i2c_v1.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io_i2c_v2.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io_i2c_v2.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io_i2c_v2.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io_spi.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io_spi.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io_spi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_nt35510.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_nt35510.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_nt35510.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ssd1306.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ssd1306.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ssd1306.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_st7789.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_st7789.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_st7789.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ops.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ops.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ops.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io_i2s.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io_i2s.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io_i2s.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\\protobuf-c\\protobuf-c\\protobuf-c.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protobuf-c\\protobuf-c\\protobuf-c\\protobuf-c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protobuf-c\\protobuf-c\\protobuf-c\\protobuf-c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\common\\protocomm.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\common\\protocomm.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\common\\protocomm.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\constants.pb-c.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\proto-c\\constants.pb-c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\proto-c\\constants.pb-c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec0.pb-c.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\proto-c\\sec0.pb-c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\proto-c\\sec0.pb-c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec1.pb-c.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\proto-c\\sec1.pb-c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\proto-c\\sec1.pb-c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec2.pb-c.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\proto-c\\sec2.pb-c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\proto-c\\sec2.pb-c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\session.pb-c.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\proto-c\\session.pb-c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\proto-c\\session.pb-c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_console.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_console.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_console.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_httpd.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_httpd.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_httpd.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security0.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\security\\security0.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\security\\security0.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security1.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\security\\security1.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\security\\security1.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security2.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\security\\security2.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\security\\security2.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp_mpi.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp_mpi.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp_mpi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_handler.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_handler.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_handler.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\proto-c\\esp_local_ctrl.pb-c.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_local_ctrl\\proto-c\\esp_local_ctrl.pb-c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_local_ctrl\\proto-c\\esp_local_ctrl.pb-c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_transport_httpd.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_transport_httpd.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_transport_httpd.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_common.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_flash.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_flash.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_flash.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_uart.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_uart.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_uart.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_elf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_elf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_elf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_binary.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_binary.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_binary.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_sha.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_sha.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_sha.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\core_dump_crc.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_crc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\core_dump_crc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include_core_dump/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espcoredump\\CMakeFiles\\__idf_espcoredump.dir\\src\\port\\xtensa\\core_dump_port.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\port\\xtensa\\core_dump_port.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\espcoredump\\src\\port\\xtensa\\core_dump_port.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\Partition.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\Partition.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\Partition.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\SPI_Flash.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\SPI_Flash.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\SPI_Flash.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Perf.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\WL_Ext_Perf.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\WL_Ext_Perf.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Safe.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\WL_Ext_Safe.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\WL_Ext_Safe.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Flash.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\WL_Flash.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\WL_Flash.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\crc32.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\crc32.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\crc32.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/private_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\wear_levelling.cpp.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\wear_levelling.cpp", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wear_levelling\\wear_levelling.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_common.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_common.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_init.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_io.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_io.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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 C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_sd.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\sdmmc\\sdmmc_sd.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\diskio\\diskio.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\diskio\\diskio.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_rawflash.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\diskio\\diskio_rawflash.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\diskio\\diskio_rawflash.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_wl.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\diskio\\diskio_wl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\diskio\\diskio_wl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ff.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\src\\ff.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\src\\ff.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ffunicode.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\src\\ffunicode.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\src\\ffunicode.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\port\\freertos\\ffsystem.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\port\\freertos\\ffsystem.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\port\\freertos\\ffsystem.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_sdmmc.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\diskio\\diskio_sdmmc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\diskio\\diskio_sdmmc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\vfs\\vfs_fat.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\vfs\\vfs_fat.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_sdmmc.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_sdmmc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_sdmmc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_spiflash.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_spiflash.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_spiflash.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\json\\cJSON\\cJSON.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\json\\cJSON\\cJSON.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\json\\CMakeFiles\\__idf_json.dir\\cJSON\\cJSON_Utils.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\json\\cJSON\\cJSON_Utils.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\json\\cJSON\\cJSON_Utils.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\mqtt_client.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mqtt\\esp-mqtt\\mqtt_client.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mqtt\\esp-mqtt\\mqtt_client.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_msg.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_msg.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_msg.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\mqtt_outbox.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_outbox.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\mqtt_outbox.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mqtt\\CMakeFiles\\__idf_mqtt.dir\\esp-mqtt\\lib\\platform_esp32_idf.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\platform_esp32_idf.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\mqtt\\esp-mqtt\\lib\\platform_esp32_idf.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\nvs_sec_provider\\CMakeFiles\\__idf_nvs_sec_provider.dir\\nvs_sec_provider.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_sec_provider\\nvs_sec_provider.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\nvs_sec_provider\\nvs_sec_provider.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_access.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\perfmon\\xtensa_perfmon_access.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\perfmon\\xtensa_perfmon_access.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_apis.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\perfmon\\xtensa_perfmon_apis.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\perfmon\\xtensa_perfmon_apis.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_masks.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\perfmon\\xtensa_perfmon_masks.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\perfmon\\xtensa_perfmon_masks.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs_api.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs_api.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs_api.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_cache.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_cache.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_cache.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_check.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_check.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_check.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_gc.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_gc.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_gc.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_hydrogen.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_hydrogen.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_hydrogen.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_nucleus.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_nucleus.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_nucleus.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\esp_spiffs.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\esp_spiffs.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\spiffs\\esp_spiffs.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_config.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\wifi_config.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\wifi_config.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_scan.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\wifi_scan.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\wifi_scan.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\wifi_ctrl.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\wifi_ctrl.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\wifi_ctrl.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\manager.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\manager.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\manager.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\handlers.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\handlers.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\handlers.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_console.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\scheme_console.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\scheme_console.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_config.pb-c.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_config.pb-c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_config.pb-c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_scan.pb-c.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_scan.pb-c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_scan.pb-c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_ctrl.pb-c.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_ctrl.pb-c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_ctrl.pb-c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\proto-c\\wifi_constants.pb-c.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_constants.pb-c.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\proto-c\\wifi_constants.pb-c.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\wifi_provisioning\\CMakeFiles\\__idf_wifi_provisioning.dir\\src\\scheme_softap.c.obj -c C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\scheme_softap.c", + "file": "C:\\Users\\Job\\esp\\v5.2.2\\esp-idf\\components\\wifi_provisioning\\src\\scheme_softap.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\common\\misc\\dsps_pwroftwo.cpp.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\common\\misc\\dsps_pwroftwo.cpp", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\common\\misc\\dsps_pwroftwo.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\common\\misc\\aes3_tie_log.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\common\\misc\\aes3_tie_log.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\common\\misc\\aes3_tie_log.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\float\\dsps_dotprod_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprod_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprod_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\float\\dsps_dotprod_f32_m_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprod_f32_m_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprod_f32_m_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\float\\dsps_dotprode_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprode_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprode_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\float\\dsps_dotprode_f32_m_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprode_f32_m_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprode_f32_m_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\float\\dsps_dotprod_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprod_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprod_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\float\\dsps_dotprode_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprode_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprode_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\float\\dsps_dotprod_f32_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprod_f32_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dsps_dotprod_f32_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dsps_dotprod_s16_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dsps_dotprod_s16_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dsps_dotprod_s16_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dsps_dotprod_s16_m_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dsps_dotprod_s16_m_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dsps_dotprod_s16_m_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dsps_dotprod_s16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dsps_dotprod_s16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dsps_dotprod_s16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\float\\dspi_dotprod_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dspi_dotprod_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dspi_dotprod_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\float\\dspi_dotprod_off_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dspi_dotprod_off_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\float\\dspi_dotprod_off_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_s16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_s16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_s16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_u16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_u16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_u16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_s8_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_s8_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_s8_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_u8_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_u8_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_u8_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_off_s16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_s16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_s16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_off_u16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_u16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_u16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_off_s8_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_s8_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_s8_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_off_u8_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_u8_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_u8_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_s16_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_s16_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_s16_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_u16_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_u16_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_u16_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_off_s16_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_s16_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_s16_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_off_u16_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_u16_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_u16_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_s8_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_s8_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_s8_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_u8_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_u8_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_u8_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_off_u8_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_u8_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_u8_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dotprod\\fixed\\dspi_dotprod_off_s8_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_s8_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dotprod\\fixed\\dspi_dotprod_off_s8_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\float\\dspm_mult_3x3x1_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_3x3x1_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_3x3x1_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\float\\dspm_mult_3x3x3_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_3x3x3_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_3x3x3_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\float\\dspm_mult_4x4x1_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_4x4x1_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_4x4x1_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\float\\dspm_mult_4x4x4_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_4x4x4_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_4x4x4_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\float\\dspm_mult_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\float\\dspm_mult_f32_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_f32_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_f32_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\float\\dspm_mult_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\float\\dspm_mult_ex_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_ex_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_ex_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\float\\dspm_mult_ex_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_ex_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_ex_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\float\\dspm_mult_ex_f32_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_ex_f32_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\float\\dspm_mult_ex_f32_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_m_ae32_vector.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_m_ae32_vector.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_m_ae32_vector.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_m_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_m_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_m_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mul\\fixed\\dspm_mult_s16_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\add\\float\\dspm_add_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\add\\float\\dspm_add_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\add\\float\\dspm_add_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\add\\float\\dspm_add_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\add\\float\\dspm_add_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\add\\float\\dspm_add_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\addc\\float\\dspm_addc_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\addc\\float\\dspm_addc_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\addc\\float\\dspm_addc_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\addc\\float\\dspm_addc_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\addc\\float\\dspm_addc_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\addc\\float\\dspm_addc_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mulc\\float\\dspm_mulc_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mulc\\float\\dspm_mulc_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mulc\\float\\dspm_mulc_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mulc\\float\\dspm_mulc_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mulc\\float\\dspm_mulc_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mulc\\float\\dspm_mulc_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\sub\\float\\dspm_sub_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\sub\\float\\dspm_sub_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\sub\\float\\dspm_sub_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\sub\\float\\dspm_sub_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\sub\\float\\dspm_sub_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\sub\\float\\dspm_sub_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\matrix\\mat\\mat.cpp.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mat\\mat.cpp", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\matrix\\mat\\mat.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\mulc\\float\\dsps_mulc_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mulc\\float\\dsps_mulc_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mulc\\float\\dsps_mulc_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\addc\\float\\dsps_addc_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\addc\\float\\dsps_addc_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\addc\\float\\dsps_addc_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\mulc\\fixed\\dsps_mulc_s16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mulc\\fixed\\dsps_mulc_s16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mulc\\fixed\\dsps_mulc_s16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\mulc\\fixed\\dsps_mulc_s16_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mulc\\fixed\\dsps_mulc_s16_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mulc\\fixed\\dsps_mulc_s16_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\add\\float\\dsps_add_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\float\\dsps_add_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\float\\dsps_add_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\add\\fixed\\dsps_add_s16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\fixed\\dsps_add_s16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\fixed\\dsps_add_s16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\add\\fixed\\dsps_add_s16_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\fixed\\dsps_add_s16_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\fixed\\dsps_add_s16_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\add\\fixed\\dsps_add_s16_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\fixed\\dsps_add_s16_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\fixed\\dsps_add_s16_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\add\\fixed\\dsps_add_s8_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\fixed\\dsps_add_s8_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\fixed\\dsps_add_s8_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\add\\fixed\\dsps_add_s8_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\fixed\\dsps_add_s8_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\fixed\\dsps_add_s8_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\sub\\float\\dsps_sub_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\float\\dsps_sub_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\float\\dsps_sub_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\sub\\fixed\\dsps_sub_s16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\fixed\\dsps_sub_s16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\fixed\\dsps_sub_s16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\sub\\fixed\\dsps_sub_s16_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\fixed\\dsps_sub_s16_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\fixed\\dsps_sub_s16_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\sub\\fixed\\dsps_sub_s16_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\fixed\\dsps_sub_s16_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\fixed\\dsps_sub_s16_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\sub\\fixed\\dsps_sub_s8_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\fixed\\dsps_sub_s8_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\fixed\\dsps_sub_s8_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\sub\\fixed\\dsps_sub_s8_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\fixed\\dsps_sub_s8_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\fixed\\dsps_sub_s8_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\mul\\float\\dsps_mul_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\float\\dsps_mul_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\float\\dsps_mul_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\mul\\fixed\\dsps_mul_s16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\fixed\\dsps_mul_s16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\fixed\\dsps_mul_s16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\mul\\fixed\\dsps_mul_s16_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\fixed\\dsps_mul_s16_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\fixed\\dsps_mul_s16_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\mul\\fixed\\dsps_mul_s16_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\fixed\\dsps_mul_s16_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\fixed\\dsps_mul_s16_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\mul\\fixed\\dsps_mul_s8_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\fixed\\dsps_mul_s8_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\fixed\\dsps_mul_s8_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\mul\\fixed\\dsps_mul_s8_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\fixed\\dsps_mul_s8_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\fixed\\dsps_mul_s8_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\mulc\\float\\dsps_mulc_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mulc\\float\\dsps_mulc_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mulc\\float\\dsps_mulc_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\addc\\float\\dsps_addc_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\addc\\float\\dsps_addc_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\addc\\float\\dsps_addc_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\add\\float\\dsps_add_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\float\\dsps_add_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\add\\float\\dsps_add_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\sub\\float\\dsps_sub_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\float\\dsps_sub_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sub\\float\\dsps_sub_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\mul\\float\\dsps_mul_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\float\\dsps_mul_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\mul\\float\\dsps_mul_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\math\\sqrt\\float\\dsps_sqrt_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sqrt\\float\\dsps_sqrt_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\math\\sqrt\\float\\dsps_sqrt_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\float\\dsps_fft2r_fc32_ae32_.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft2r_fc32_ae32_.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft2r_fc32_ae32_.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\float\\dsps_fft2r_fc32_aes3_.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft2r_fc32_aes3_.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft2r_fc32_aes3_.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\float\\dsps_fft2r_fc32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft2r_fc32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft2r_fc32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\float\\dsps_fft2r_fc32_ae32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft2r_fc32_ae32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft2r_fc32_ae32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\float\\dsps_bit_rev_lookup_fc32_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_bit_rev_lookup_fc32_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_bit_rev_lookup_fc32_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\float\\dsps_fft4r_fc32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft4r_fc32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft4r_fc32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\float\\dsps_fft4r_fc32_ae32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft4r_fc32_ae32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft4r_fc32_ae32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\float\\dsps_fft2r_bitrev_tables_fc32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft2r_bitrev_tables_fc32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft2r_bitrev_tables_fc32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\float\\dsps_fft4r_bitrev_tables_fc32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft4r_bitrev_tables_fc32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\float\\dsps_fft4r_bitrev_tables_fc32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\fixed\\dsps_fft2r_sc16_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\fixed\\dsps_fft2r_sc16_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\fixed\\dsps_fft2r_sc16_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\fixed\\dsps_fft2r_sc16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\fixed\\dsps_fft2r_sc16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\fixed\\dsps_fft2r_sc16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fft\\fixed\\dsps_fft2r_sc16_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\fixed\\dsps_fft2r_sc16_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fft\\fixed\\dsps_fft2r_sc16_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\dct\\float\\dsps_dct_f32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dct\\float\\dsps_dct_f32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\dct\\float\\dsps_dct_f32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\support\\snr\\float\\dsps_snr_f32.cpp.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\snr\\float\\dsps_snr_f32.cpp", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\snr\\float\\dsps_snr_f32.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\support\\sfdr\\float\\dsps_sfdr_f32.cpp.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\sfdr\\float\\dsps_sfdr_f32.cpp", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\sfdr\\float\\dsps_sfdr_f32.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\support\\misc\\dsps_d_gen.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\misc\\dsps_d_gen.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\misc\\dsps_d_gen.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\support\\misc\\dsps_h_gen.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\misc\\dsps_h_gen.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\misc\\dsps_h_gen.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\support\\misc\\dsps_tone_gen.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\misc\\dsps_tone_gen.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\misc\\dsps_tone_gen.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\support\\cplx_gen\\dsps_cplx_gen.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\cplx_gen\\dsps_cplx_gen.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\cplx_gen\\dsps_cplx_gen.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\support\\cplx_gen\\dsps_cplx_gen.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\cplx_gen\\dsps_cplx_gen.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\cplx_gen\\dsps_cplx_gen.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\support\\cplx_gen\\dsps_cplx_gen_init.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\cplx_gen\\dsps_cplx_gen_init.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\cplx_gen\\dsps_cplx_gen_init.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\support\\mem\\esp32s3\\dsps_memset_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\mem\\esp32s3\\dsps_memset_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\mem\\esp32s3\\dsps_memset_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\support\\mem\\esp32s3\\dsps_memcpy_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\mem\\esp32s3\\dsps_memcpy_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\mem\\esp32s3\\dsps_memcpy_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\support\\view\\dsps_view.cpp.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\view\\dsps_view.cpp", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\support\\view\\dsps_view.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\windows\\hann\\float\\dsps_wind_hann_f32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\hann\\float\\dsps_wind_hann_f32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\hann\\float\\dsps_wind_hann_f32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\windows\\blackman\\float\\dsps_wind_blackman_f32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\blackman\\float\\dsps_wind_blackman_f32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\blackman\\float\\dsps_wind_blackman_f32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\windows\\blackman_harris\\float\\dsps_wind_blackman_harris_f32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\blackman_harris\\float\\dsps_wind_blackman_harris_f32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\blackman_harris\\float\\dsps_wind_blackman_harris_f32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\windows\\blackman_nuttall\\float\\dsps_wind_blackman_nuttall_f32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\blackman_nuttall\\float\\dsps_wind_blackman_nuttall_f32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\blackman_nuttall\\float\\dsps_wind_blackman_nuttall_f32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\windows\\nuttall\\float\\dsps_wind_nuttall_f32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\nuttall\\float\\dsps_wind_nuttall_f32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\nuttall\\float\\dsps_wind_nuttall_f32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\windows\\flat_top\\float\\dsps_wind_flat_top_f32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\flat_top\\float\\dsps_wind_flat_top_f32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\windows\\flat_top\\float\\dsps_wind_flat_top_f32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\conv\\float\\dsps_conv_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_conv_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_conv_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\conv\\float\\dsps_conv_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_conv_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_conv_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\conv\\float\\dsps_corr_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_corr_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_corr_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\conv\\float\\dsps_corr_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_corr_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_corr_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\conv\\float\\dsps_ccorr_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_ccorr_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_ccorr_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\conv\\float\\dsps_ccorr_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_ccorr_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\conv\\float\\dsps_ccorr_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\iir\\biquad\\dsps_biquad_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\iir\\biquad\\dsps_biquad_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\iir\\biquad\\dsps_biquad_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\iir\\biquad\\dsps_biquad_f32_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\iir\\biquad\\dsps_biquad_f32_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\iir\\biquad\\dsps_biquad_f32_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\iir\\biquad\\dsps_biquad_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\iir\\biquad\\dsps_biquad_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\iir\\biquad\\dsps_biquad_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\iir\\biquad\\dsps_biquad_gen_f32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\iir\\biquad\\dsps_biquad_gen_f32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\iir\\biquad\\dsps_biquad_gen_f32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\float\\dsps_fir_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fir_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fir_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\float\\dsps_fir_f32_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fir_f32_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fir_f32_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\float\\dsps_fird_f32_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fird_f32_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fird_f32_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\float\\dsps_fird_f32_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fird_f32_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fird_f32_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\float\\dsps_fir_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fir_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fir_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\float\\dsps_fir_init_f32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fir_init_f32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fir_init_f32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\float\\dsps_fird_f32_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fird_f32_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fird_f32_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\float\\dsps_fird_init_f32.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fird_init_f32.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\float\\dsps_fird_init_f32.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\fixed\\dsps_fird_init_s16.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\fixed\\dsps_fird_init_s16.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\fixed\\dsps_fird_init_s16.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\fixed\\dsps_fird_s16_ansi.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\fixed\\dsps_fird_s16_ansi.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\fixed\\dsps_fird_s16_ansi.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\fixed\\dsps_fird_s16_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\fixed\\dsps_fird_s16_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\fixed\\dsps_fird_s16_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\fixed\\dsps_fir_s16_m_ae32.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\fixed\\dsps_fir_s16_m_ae32.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\fixed\\dsps_fir_s16_m_ae32.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -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-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\fir\\fixed\\dsps_fird_s16_aes3.S.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\fixed\\dsps_fird_s16_aes3.S", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\fir\\fixed\\dsps_fird_s16_aes3.S" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\kalman\\ekf\\common\\ekf.cpp.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\kalman\\ekf\\common\\ekf.cpp", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\kalman\\ekf\\common\\ekf.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -o esp-idf\\espressif__esp-dsp\\CMakeFiles\\__idf_espressif__esp-dsp.dir\\modules\\kalman\\ekf_imu13states\\ekf_imu13states.cpp.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\kalman\\ekf_imu13states\\ekf_imu13states.cpp", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\managed_components\\espressif__esp-dsp\\modules\\kalman\\ekf_imu13states\\ekf_imu13states.cpp" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\station_example_main.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\station_example_main.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\station_example_main.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\http_control.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\http_control.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\http_control.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\filter\\butterworthdesign.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\filter\\butterworthdesign.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\filter\\butterworthdesign.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\filter\\signalpath.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\filter\\signalpath.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\filter\\signalpath.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\button.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\button.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\button.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\power\\husb238.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\power\\husb238.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\power\\husb238.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\flash.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\flash.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\flash.c" +}, +{ + "directory": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "command": "C:\\Users\\Job\\.espressif\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.2.2\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/html -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter -IC:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/platform_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/config/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/Job/esp/v5.2.2/esp-idf/components/heap/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/log/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/platform_port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/hal/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/include/private -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/deprecated_include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include -IC:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/analog_comparator/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/parlio/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/temperature_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/usb_serial_jtag/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/wifi_apps/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/console -IC:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/interface -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/common -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/security -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/transports -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/include/crypto/srp6a -IC:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c -IC:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/include/port/xtensa -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src -IC:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test/include/esp32 -IC:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON -IC:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/include -IC:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/include -mlongcalls -Wno-frame-address -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Wno-format-nonliteral -Wno-format-security -Wformat=0 -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW=. -fmacro-prefix-map=C:/Users/Job/esp/v5.2.2/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\\ssd1306\\ssd1306.c.obj -c C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\ssd1306\\ssd1306.c", + "file": "C:\\Users\\Job\\source\\repos\\ESPVBAN\\ESPIDFNEW\\main\\ssd1306\\ssd1306.c" +} +] \ No newline at end of file diff --git a/ESPIDFNEW/build/config.env b/ESPIDFNEW/build/config.env new file mode 100644 index 0000000..999f841 --- /dev/null +++ b/ESPIDFNEW/build/config.env @@ -0,0 +1,12 @@ +{ + "COMPONENT_KCONFIGS": "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/bt/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_server/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/heap/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/log/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/ulp/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/unity/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/usb/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/Kconfig;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/bt/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/sdkconfig.rename.esp32;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/sdkconfig.rename.esp32;C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/sdkconfig.rename;C:/Users/Job/esp/v5.2.2/esp-idf/components/ulp/sdkconfig.rename.esp32;C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/sdkconfig.rename", + "IDF_TARGET": "esp32", + "IDF_TOOLCHAIN": "gcc", + "IDF_VERSION": "5.2.2", + "IDF_ENV_FPGA": "", + "IDF_PATH": "C:/Users/Job/esp/v5.2.2/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/kconfigs_projbuild.in" +} diff --git a/ESPIDFNEW/build/config/kconfig_menus.json b/ESPIDFNEW/build/config/kconfig_menus.json new file mode 100644 index 0000000..511755b --- /dev/null +++ b/ESPIDFNEW/build/config/kconfig_menus.json @@ -0,0 +1,26850 @@ +[ + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BROWNOUT_RESET_SUPPORTED", + "name": "SOC_BROWNOUT_RESET_SUPPORTED", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_DIV_SUPPORTED", + "name": "SOC_TWAI_BRP_DIV_SUPPORTED", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DPORT_WORKAROUND", + "name": "SOC_DPORT_WORKAROUND", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CAPS_ECO_VER_MAX", + "name": "SOC_CAPS_ECO_VER_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "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_DAC_SUPPORTED", + "name": "SOC_DAC_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_MCPWM_SUPPORTED", + "name": "SOC_MCPWM_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_SDMMC_HOST_SUPPORTED", + "name": "SOC_SDMMC_HOST_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_PCNT_SUPPORTED", + "name": "SOC_PCNT_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_SDIO_SLAVE_SUPPORTED", + "name": "SOC_SDIO_SLAVE_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_EFUSE_SUPPORTED", + "name": "SOC_EFUSE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EMAC_SUPPORTED", + "name": "SOC_EMAC_SUPPORTED", + "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_CCOMP_TIMER_SUPPORTED", + "name": "SOC_CCOMP_TIMER_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_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_SUPPORT_COEXISTENCE", + "name": "SOC_SUPPORT_COEXISTENCE", + "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_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_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_ULP_FSM_SUPPORTED", + "name": "SOC_ULP_FSM_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_DPORT_WORKAROUND_DIS_INTERRUPT_LVL", + "name": "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XTAL_SUPPORT_26M", + "name": "SOC_XTAL_SUPPORT_26M", + "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_XTAL_SUPPORT_AUTO_DETECT", + "name": "SOC_XTAL_SUPPORT_AUTO_DETECT", + "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_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_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_SHARED_POWER", + "name": "SOC_ADC_SHARED_POWER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHARED_IDCACHE_SUPPORTED", + "name": "SOC_SHARED_IDCACHE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_IDCACHE_PER_CORE", + "name": "SOC_IDCACHE_PER_CORE", + "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": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_CHAN_NUM", + "name": "SOC_DAC_CHAN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_RESOLUTION", + "name": "SOC_DAC_RESOLUTION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_DMA_16BIT_ALIGN", + "name": "SOC_DAC_DMA_16BIT_ALIGN", + "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_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_I2C_NUM", + "name": "SOC_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_APB", + "name": "SOC_I2C_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_STOP_INDEPENDENT", + "name": "SOC_I2C_STOP_INDEPENDENT", + "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_1", + "name": "SOC_I2S_HW_VERSION_1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_APLL", + "name": "SOC_I2S_SUPPORTS_APLL", + "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_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_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_SUPPORTS_PDM_RX", + "name": "SOC_I2S_SUPPORTS_PDM_RX", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_ADC_DAC", + "name": "SOC_I2S_SUPPORTS_ADC_DAC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_ADC", + "name": "SOC_I2S_SUPPORTS_ADC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_DAC", + "name": "SOC_I2S_SUPPORTS_DAC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_LCD_CAMERA", + "name": "SOC_I2S_SUPPORTS_LCD_CAMERA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_TRANS_SIZE_ALIGN_WORD", + "name": "SOC_I2S_TRANS_SIZE_ALIGN_WORD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_LCD_I80_VARIANT", + "name": "SOC_I2S_LCD_I80_VARIANT", + "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_I80_BUSES", + "name": "SOC_LCD_I80_BUSES", + "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_LEDC_HAS_TIMER_SPECIFIC_MUX", + "name": "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX", + "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_REF_TICK", + "name": "SOC_LEDC_SUPPORT_REF_TICK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_HS_MODE", + "name": "SOC_LEDC_SUPPORT_HS_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_MMU_PERIPH_NUM", + "name": "SOC_MMU_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "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_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_REF_TICK", + "name": "SOC_RMT_SUPPORT_REF_TICK", + "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_CHANNEL_CLK_INDEPENDENT", + "name": "SOC_RMT_CHANNEL_CLK_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_HD_BOTH_INOUT_SUPPORTED", + "name": "SOC_SPI_HD_BOTH_INOUT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_AS_CS_SUPPORTED", + "name": "SOC_SPI_AS_CS_SUPPORTED", + "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_DMA_CHAN_NUM", + "name": "SOC_SPI_DMA_CHAN_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_SUPPORT_CLK_APB", + "name": "SOC_SPI_SUPPORT_CLK_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_MAX_PRE_DIVIDER", + "name": "SOC_SPI_MAX_PRE_DIVIDER", + "range": null, + "title": null, + "type": "int" + }, + { + "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_26M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_26M_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_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_TOTAL_TIMERS", + "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "range": null, + "title": null, + "type": "int" + }, + { + "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_TOUCH_VERSION_1", + "name": "SOC_TOUCH_VERSION_1", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_PAD_MEASURE_WAIT_MAX", + "name": "SOC_TOUCH_PAD_MEASURE_WAIT_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PAD_THRESHOLD_MAX", + "name": "SOC_TOUCH_PAD_THRESHOLD_MAX", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_BRP_MIN", + "name": "SOC_TWAI_BRP_MIN", + "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_SUPPORT_MULTI_ADDRESS_LAYOUT", + "name": "SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT", + "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_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_REF_TICK", + "name": "SOC_UART_SUPPORT_REF_TICK", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_SPIRAM_SUPPORTED", + "name": "SOC_SPIRAM_SUPPORTED", + "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_SHA_SUPPORT_PARALLEL_ENG", + "name": "SOC_SHA_SUPPORT_PARALLEL_ENG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_ENDIANNESS_BE", + "name": "SOC_SHA_ENDIANNESS_BE", + "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_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_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": "bool" + }, + { + "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_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_192", + "name": "SOC_AES_SUPPORT_AES_192", + "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_SECURE_BOOT_V1", + "name": "SOC_SECURE_BOOT_V1", + "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": "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_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_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_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_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_RTC_FAST_MEM_PD", + "name": "SOC_PM_SUPPORT_RTC_FAST_MEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD", + "name": "SOC_PM_SUPPORT_RTC_SLOW_MEM_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_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_CLK_APLL_SUPPORTED", + "name": "SOC_CLK_APLL_SUPPORTED", + "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_SDMMC_USE_IOMUX", + "name": "SOC_SDMMC_USE_IOMUX", + "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_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_NAN_SUPPORT", + "name": "SOC_WIFI_NAN_SUPPORT", + "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_BT_CLASSIC_SUPPORTED", + "name": "SOC_BT_CLASSIC_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": "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_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_LINUX", + "name": "IDF_TARGET_LINUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "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_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_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": [], + "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)", + "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 -0s 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": [], + "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-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": "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": "!IDF_ENV_BRINGUP", + "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": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT && IDF_TARGET_ESP32S3 && 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 (note that on some SoCs.\nnot all pins have an internal pull-up, consult the hardware datasheet for details.) To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.", + "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]).\nNote that GPIO34-39 do not have an internal pullup and an external one must be provided.", + "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.", + "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 rtc_wdt_feed() for resetting counter of rtc_wdt.\nUse function rtc_wdt_disable() for disabling rtc_wdt.", + "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": [ + { + "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 implemention 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" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED && ((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 calculcation.\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 bootoloader 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) && ", + "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" + } + ], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "help": "Select the ECDSA key size. Two key sizes are supported\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n\nThe advantage of using 256 bit key 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 && SECURE_BOOT_BUILD_SIGNED_BINARIES", + "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 seperately 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 && 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 public key digest, causing an\nimmediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\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", + "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "range": null, + "title": "Allow additional read protecting of efuses", + "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.", + "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: DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD, SPI_DOWNLOAD_MSPI_DIS,\nDIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\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, 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 (default), 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": [], + "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 (includes revisions till ECO3).", + "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_HAS_UART_BUF_SWITCH", + "name": "ESP_ROM_HAS_UART_BUF_SWITCH", + "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_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_SW_FLOAT", + "name": "ESP_ROM_HAS_SW_FLOAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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": [ + { + "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": "IDF_TARGET_ESP32S3 && !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": "IDF_TARGET_ESP32S3 && !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": "SOC_MEMSPI_SRC_FREQ_120M && (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": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_64M", + "name": "ESPTOOLPY_FLASHFREQ_64M", + "range": null, + "title": "64 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_60M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_60M", + "name": "ESPTOOLPY_FLASHFREQ_60M", + "range": null, + "title": "60 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_48M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_48M", + "name": "ESPTOOLPY_FLASHFREQ_48M", + "range": null, + "title": "48 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_32M", + "name": "ESPTOOLPY_FLASHFREQ_32M", + "range": null, + "title": "32 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_30M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_30M", + "name": "ESPTOOLPY_FLASHFREQ_30M", + "range": null, + "title": "30 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_26M", + "name": "ESPTOOLPY_FLASHFREQ_26M", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_24M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_24M", + "name": "ESPTOOLPY_FLASHFREQ_24M", + "range": null, + "title": "24 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_16M", + "name": "ESPTOOLPY_FLASHFREQ_16M", + "range": null, + "title": "16 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MEMSPI_SRC_FREQ_15M_SUPPORTED && ", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_15M", + "name": "ESPTOOLPY_FLASHFREQ_15M", + "range": null, + "title": "15 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": "This is an invisible item, used to define the targets that defaults to use 80MHz Flash SPI speed.", + "id": "ESPTOOLPY_FLASHFREQ_80M_DEFAULT", + "name": "ESPTOOLPY_FLASHFREQ_80M_DEFAULT", + "range": null, + "title": null, + "type": "bool" + }, + { + "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": "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" + } + ], + "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. This path is evaluated\nrelative to the project root directory.", + "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)", + "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 -0g flag to CFLAGS.\n- The \"Size\" setting will add the -0s flag to CFLAGS.\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": [ + { + "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": 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 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": "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" + } + ], + "depends_on": null, + "id": "compiler-options", + "title": "Compiler options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "APPTRACE_DEST_JTAG", + "name": "APPTRACE_DEST_JTAG", + "range": null, + "title": "JTAG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APPTRACE_DEST_NONE", + "name": "APPTRACE_DEST_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select destination for application trace: JTAG or none (to disable).", + "id": "component-config-application-level-tracing-data-destination-1", + "name": "APPTRACE_DESTINATION1", + "title": "Data Destination 1", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APPTRACE_DEST_UART", + "name": "APPTRACE_DEST_UART", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APPTRACE_DEST_UART_NOUSB", + "name": "APPTRACE_DEST_UART_NOUSB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_NUM != 0 && ", + "help": null, + "id": "APPTRACE_DEST_UART0", + "name": "APPTRACE_DEST_UART0", + "range": null, + "title": "UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_NUM != 1 && ", + "help": null, + "id": "APPTRACE_DEST_UART1", + "name": "APPTRACE_DEST_UART1", + "range": null, + "title": "UART1", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_NUM != 2 && SOC_UART_NUM > 2 && ", + "help": null, + "id": "APPTRACE_DEST_UART2", + "name": "APPTRACE_DEST_UART2", + "range": null, + "title": "UART2", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_CONSOLE_USB_CDC && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3) && !USB_ENABLED && ", + "help": null, + "id": "APPTRACE_DEST_USB_CDC", + "name": "APPTRACE_DEST_USB_CDC", + "range": null, + "title": "USB_CDC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APPTRACE_DEST_UART_NONE", + "name": "APPTRACE_DEST_UART_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select destination for application trace: UART(XX) or none (to disable).", + "id": "component-config-application-level-tracing-data-destination-2", + "name": "APPTRACE_DESTINATION2", + "title": "Data Destination 2", + "type": "choice" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART_NOUSB", + "help": "This GPIO is used for UART TX pin.", + "id": "APPTRACE_UART_TX_GPIO", + "name": "APPTRACE_UART_TX_GPIO", + "range": null, + "title": "UART TX on GPIO#", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART_NOUSB", + "help": "This GPIO is used for UART RX pin.", + "id": "APPTRACE_UART_RX_GPIO", + "name": "APPTRACE_UART_RX_GPIO", + "range": null, + "title": "UART RX on GPIO#", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART", + "help": "This baud rate is used for UART.\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.", + "id": "APPTRACE_UART_BAUDRATE", + "name": "APPTRACE_UART_BAUDRATE", + "range": null, + "title": "UART baud rate", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART", + "help": "Size of the UART input ring buffer.\nThis size related to the baudrate, system tick frequency and amount of data to transfer.\nThe data placed to this buffer before sent out to the interface.", + "id": "APPTRACE_UART_RX_BUFF_SIZE", + "name": "APPTRACE_UART_RX_BUFF_SIZE", + "range": null, + "title": "UART RX ring buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART", + "help": "Size of the UART output ring buffer.\nThis size related to the baudrate, system tick frequency and amount of data to transfer.", + "id": "APPTRACE_UART_TX_BUFF_SIZE", + "name": "APPTRACE_UART_TX_BUFF_SIZE", + "range": null, + "title": "UART TX ring buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART", + "help": "Maximum size of the single message to transfer.", + "id": "APPTRACE_UART_TX_MSG_SIZE", + "name": "APPTRACE_UART_TX_MSG_SIZE", + "range": null, + "title": "UART TX message size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "UART task priority. In case of high events rate,\nthis parameter could be changed up to (configMAX_PRIORITIES-1).", + "id": "APPTRACE_UART_TASK_PRIO", + "name": "APPTRACE_UART_TASK_PRIO", + "range": [ + 1, + 32 + ], + "title": "UART Task Priority", + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_XTENSA && !ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", + "help": "Enables/disable TRAX tracing HW.", + "id": "APPTRACE_DEST_TRAX", + "name": "APPTRACE_DEST_TRAX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disable swapping memory buffers tracing protocol.", + "id": "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE", + "name": "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disable application tracing module.", + "id": "APPTRACE_ENABLE", + "name": "APPTRACE_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disable application tracing module internal sync lock.", + "id": "APPTRACE_LOCK_ENABLE", + "name": "APPTRACE_LOCK_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_ENABLE", + "help": "Timeout for flushing last trace data to host in case of panic. In ms.\nUse -1 to disable timeout and wait forever.", + "id": "APPTRACE_ONPANIC_HOST_FLUSH_TMO", + "name": "APPTRACE_ONPANIC_HOST_FLUSH_TMO", + "range": null, + "title": "Timeout for flushing last trace data to host on panic", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_ENABLE", + "help": "Threshold for flushing last trace data to host on panic in post-mortem mode.\nThis is minimal amount of data needed to perform flush. In bytes.", + "id": "APPTRACE_POSTMORTEM_FLUSH_THRESH", + "name": "APPTRACE_POSTMORTEM_FLUSH_THRESH", + "range": null, + "title": "Threshold for flushing last trace data to host on panic", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE && !APPTRACE_DEST_TRAX", + "help": "Size of the memory buffer for trace data in bytes.", + "id": "APPTRACE_BUF_SIZE", + "name": "APPTRACE_BUF_SIZE", + "range": null, + "title": "Size of the apptrace buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE", + "help": "Size of the buffer for events in bytes. It is useful for buffering events from\nthe time critical code (scheduler, ISRs etc). If this parameter is 0 then\nevents will be discarded when main HW buffer is full.", + "id": "APPTRACE_PENDING_DATA_SIZE_MAX", + "name": "APPTRACE_PENDING_DATA_SIZE_MAX", + "range": null, + "title": "Size of the pending data buffer", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!PM_ENABLE && !APPTRACE_DEST_NONE && ", + "help": "Send SEGGER SystemView events through JTAG interface.", + "id": "APPTRACE_SV_DEST_JTAG", + "name": "APPTRACE_SV_DEST_JTAG", + "range": null, + "title": "Data destination JTAG", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART && ", + "help": "Send SEGGER SystemView events through UART interface.", + "id": "APPTRACE_SV_DEST_UART", + "name": "APPTRACE_SV_DEST_UART", + "range": null, + "title": "Data destination UART", + "type": "bool" + } + ], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "SystemView witt transfer data trough defined interface.", + "id": "component-config-application-level-tracing-freertos-systemview-tracing-systemview-tracing-enable-systemview-destination", + "name": "APPTRACE_SV_DEST", + "title": "SystemView destination", + "type": "choice" + } + ], + "depends_on": "APPTRACE_ENABLE && APPTRACE_ENABLE", + "help": "Enables supporrt for SEGGER SystemView tracing functionality.", + "id": "APPTRACE_SV_ENABLE", + "name": "APPTRACE_SV_ENABLE", + "range": null, + "title": "SystemView Tracing Enable", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Send SEGGER SystemView events for Pro CPU.", + "id": "APPTRACE_SV_DEST_CPU_0", + "name": "APPTRACE_SV_DEST_CPU_0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Send SEGGER SystemView events for App CPU.", + "id": "APPTRACE_SV_DEST_CPU_1", + "name": "APPTRACE_SV_DEST_CPU_1", + "range": null, + "title": "CPU1", + "type": "bool" + } + ], + "depends_on": "APPTRACE_SV_DEST_UART && !FREERTOS_UNICORE && APPTRACE_ENABLE", + "help": "Define the CPU to trace by SystemView.", + "id": "component-config-application-level-tracing-freertos-systemview-tracing-cpu-to-trace", + "name": "APPTRACE_SV_CPU", + "title": "CPU to trace", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_UNICORE && !PM_ENABLE && !IDF_TARGET_ESP32C3 && ", + "help": null, + "id": "APPTRACE_SV_TS_SOURCE_CCOUNT", + "name": "APPTRACE_SV_TS_SOURCE_CCOUNT", + "range": null, + "title": "CPU cycle counter (CCOUNT)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!PM_ENABLE && !IDF_TARGET_ESP32C3 && ", + "help": null, + "id": "APPTRACE_SV_TS_SOURCE_GPTIMER", + "name": "APPTRACE_SV_TS_SOURCE_GPTIMER", + "range": null, + "title": "General Purpose Timer (Timer Group)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APPTRACE_SV_TS_SOURCE_ESP_TIMER", + "name": "APPTRACE_SV_TS_SOURCE_ESP_TIMER", + "range": null, + "title": "esp_timer high resolution timer", + "type": "bool" + } + ], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "SystemView needs to use a hardware timer as the source of timestamps\nwhen tracing. This option selects the timer for it.", + "id": "component-config-application-level-tracing-freertos-systemview-tracing-timer-to-use-as-timestamp-source", + "name": "APPTRACE_SV_TS_SOURCE", + "title": "Timer to use as timestamp source", + "type": "choice" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Configures maximum supported tasks in sysview debug", + "id": "APPTRACE_SV_MAX_TASKS", + "name": "APPTRACE_SV_MAX_TASKS", + "range": null, + "title": "Maximum supported tasks", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Configures timeout (in us) to wait for free space in trace buffer.\nSet to -1 to wait forever and avoid lost events.", + "id": "APPTRACE_SV_BUF_WAIT_TMO", + "name": "APPTRACE_SV_BUF_WAIT_TMO", + "range": null, + "title": "Trace buffer wait timeout", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Trace Buffer Overflow\" event.", + "id": "APPTRACE_SV_EVT_OVERFLOW_ENABLE", + "name": "APPTRACE_SV_EVT_OVERFLOW_ENABLE", + "range": null, + "title": "Trace Buffer Overflow Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"ISR Enter\" event.", + "id": "APPTRACE_SV_EVT_ISR_ENTER_ENABLE", + "name": "APPTRACE_SV_EVT_ISR_ENTER_ENABLE", + "range": null, + "title": "ISR Enter Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"ISR Exit\" event.", + "id": "APPTRACE_SV_EVT_ISR_EXIT_ENABLE", + "name": "APPTRACE_SV_EVT_ISR_EXIT_ENABLE", + "range": null, + "title": "ISR Exit Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"ISR to Scheduler\" event.", + "id": "APPTRACE_SV_EVT_ISR_TO_SCHED_ENABLE", + "name": "APPTRACE_SV_EVT_ISR_TO_SCHED_ENABLE", + "range": null, + "title": "ISR Exit to Scheduler Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Start Execution\" event.", + "id": "APPTRACE_SV_EVT_TASK_START_EXEC_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_START_EXEC_ENABLE", + "range": null, + "title": "Task Start Execution Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Stop Execution\" event.", + "id": "APPTRACE_SV_EVT_TASK_STOP_EXEC_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_STOP_EXEC_ENABLE", + "range": null, + "title": "Task Stop Execution Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Start Ready State\" event.", + "id": "APPTRACE_SV_EVT_TASK_START_READY_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_START_READY_ENABLE", + "range": null, + "title": "Task Start Ready State Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Stop Ready State\" event.", + "id": "APPTRACE_SV_EVT_TASK_STOP_READY_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_STOP_READY_ENABLE", + "range": null, + "title": "Task Stop Ready State Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Create\" event.", + "id": "APPTRACE_SV_EVT_TASK_CREATE_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_CREATE_ENABLE", + "range": null, + "title": "Task Create Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Terminate\" event.", + "id": "APPTRACE_SV_EVT_TASK_TERMINATE_ENABLE", + "name": "APPTRACE_SV_EVT_TASK_TERMINATE_ENABLE", + "range": null, + "title": "Task Terminate Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"System Idle\" event.", + "id": "APPTRACE_SV_EVT_IDLE_ENABLE", + "name": "APPTRACE_SV_EVT_IDLE_ENABLE", + "range": null, + "title": "System Idle Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Timer Enter\" event.", + "id": "APPTRACE_SV_EVT_TIMER_ENTER_ENABLE", + "name": "APPTRACE_SV_EVT_TIMER_ENTER_ENABLE", + "range": null, + "title": "Timer Enter Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_SV_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Timer Exit\" event.", + "id": "APPTRACE_SV_EVT_TIMER_EXIT_ENABLE", + "name": "APPTRACE_SV_EVT_TIMER_EXIT_ENABLE", + "range": null, + "title": "Timer Exit Event", + "type": "bool" + } + ], + "depends_on": "APPTRACE_ENABLE", + "id": "component-config-application-level-tracing-freertos-systemview-tracing", + "title": "FreeRTOS SystemView Tracing", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "APPTRACE_GCOV_ENABLE", + "help": "Configures stack size of Gcov dump task", + "id": "APPTRACE_GCOV_DUMP_TASK_STACK_SIZE", + "name": "APPTRACE_GCOV_DUMP_TASK_STACK_SIZE", + "range": null, + "title": "Gcov dump task stack size", + "type": "int" + } + ], + "depends_on": "APPTRACE_ENABLE && !APPTRACE_SV_ENABLE", + "help": "Enables support for GCOV data transfer to host.", + "id": "APPTRACE_GCOV_ENABLE", + "name": "APPTRACE_GCOV_ENABLE", + "range": null, + "title": "GCOV to Host Enable", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-application-level-tracing", + "title": "Application Level Tracing", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option is recommended for classic Bluetooth or for dual-mode\nusecases", + "id": "BT_BLUEDROID_ENABLED", + "name": "BT_BLUEDROID_ENABLED", + "range": null, + "title": "Bluedroid - Dual-mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option is recommended for BLE only usecases to save on memory", + "id": "BT_NIMBLE_ENABLED", + "name": "BT_NIMBLE_ENABLED", + "range": null, + "title": "NimBLE - BLE only", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_BT_SUPPORTED && ", + "help": "This option is recommended when you want to communicate directly with the\ncontroller (without any host) or when you are using any other host stack\nnot supported by Espressif (not mentioned here).", + "id": "BT_CONTROLLER_ONLY", + "name": "BT_CONTROLLER_ONLY", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED", + "help": "This helps to choose Bluetooth host stack", + "id": "component-config-bluetooth-bluetooth-host", + "name": "BT_HOST", + "title": "Host", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_BT_SUPPORTED && ", + "help": "This option is recommended for Bluetooth controller usecases", + "id": "BT_CONTROLLER_ENABLED", + "name": "BT_CONTROLLER_ENABLED", + "range": null, + "title": "Enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option is recommended for Bluetooth Host only usecases", + "id": "BT_CONTROLLER_DISABLED", + "name": "BT_CONTROLLER_DISABLED", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED", + "help": "This helps to choose Bluetooth controller stack", + "id": "component-config-bluetooth-bluetooth-controller", + "name": "BT_CONTROLLER", + "title": "Controller", + "type": "choice" + } + ], + "depends_on": "!APP_NO_BLOBS", + "help": "Select this option to enable Bluetooth and show the submenu with Bluetooth configuration choices.", + "id": "BT_ENABLED", + "name": "BT_ENABLED", + "range": null, + "title": "Bluetooth", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This select btc task stack size", + "id": "BT_BTC_TASK_STACK_SIZE", + "name": "BT_BTC_TASK_STACK_SIZE", + "range": null, + "title": "Bluetooth event (callback to application) task stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_BLUEDROID_PINNED_TO_CORE_0", + "name": "BT_BLUEDROID_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0 (PRO CPU)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "BT_BLUEDROID_PINNED_TO_CORE_1", + "name": "BT_BLUEDROID_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1 (APP CPU)", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !FREERTOS_UNICORE && BT_BLUEDROID_ENABLED", + "help": "Which the cpu core to run Bluedroid. Can choose core0 and core1.\nCan not specify no-affinity.", + "id": "component-config-bluetooth-bluedroid-options-the-cpu-core-which-bluedroid-run", + "name": "BT_BLUEDROID_PINNED_TO_CORE_CHOICE", + "title": "The cpu core which Bluedroid run", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_BLUEDROID_PINNED_TO_CORE", + "name": "BT_BLUEDROID_PINNED_TO_CORE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This select btu task stack size", + "id": "BT_BTU_TASK_STACK_SIZE", + "name": "BT_BTU_TASK_STACK_SIZE", + "range": null, + "title": "Bluetooth Bluedroid Host Stack task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Bluedroid memory debug", + "id": "BT_BLUEDROID_MEM_DEBUG", + "name": "BT_BLUEDROID_MEM_DEBUG", + "range": null, + "title": "Bluedroid memory debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Enable Espressif Vendor-specific HCI commands for coexist status configuration", + "id": "BT_BLUEDROID_ESP_COEX_VSC", + "name": "BT_BLUEDROID_ESP_COEX_VSC", + "range": null, + "title": "Enable Espressif Vendor-specific HCI commands for coexist status configuration", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables functionalities of Host qualification for Classic Bluetooth.", + "id": "BT_CLASSIC_BQB_ENABLED", + "name": "BT_CLASSIC_BQB_ENABLED", + "range": null, + "title": "Host Qualitifcation support for Classic Bluetooth", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Advanced Audio Distrubution Profile", + "id": "BT_A2DP_ENABLE", + "name": "BT_A2DP_ENABLE", + "range": null, + "title": "A2DP", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the Serial Port Profile", + "id": "BT_SPP_ENABLED", + "name": "BT_SPP_ENABLED", + "range": null, + "title": "SPP", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the Logical Link Control and Adaptation Layer Protocol.\nOnly supported classic bluetooth.", + "id": "BT_L2CAP_ENABLED", + "name": "BT_L2CAP_ENABLED", + "range": null, + "title": "BT L2CAP", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_HFP_ENABLE && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_HFP_CLIENT_ENABLE", + "name": "BT_HFP_CLIENT_ENABLE", + "range": null, + "title": "Hands Free Unit", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_HFP_ENABLE && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_HFP_AG_ENABLE", + "name": "BT_HFP_AG_ENABLE", + "range": null, + "title": "Audio Gateway", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_HFP_AUDIO_DATA_PATH_PCM", + "name": "BT_HFP_AUDIO_DATA_PATH_PCM", + "range": null, + "title": "PCM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_HFP_AUDIO_DATA_PATH_HCI", + "name": "BT_HFP_AUDIO_DATA_PATH_HCI", + "range": null, + "title": "HCI", + "type": "bool" + } + ], + "depends_on": "BT_HFP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "SCO data path, i.e. HCI or PCM. This option is set using API\n\"esp_bredr_sco_datapath_set\" in Bluetooth host. Default SCO data\npath can also be set in Bluetooth Controller.", + "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-hands-free-handset-profile-audio-sco-data-path", + "name": "BT_HFP_AUDIO_DATA_PATH", + "title": "audio(SCO) data path", + "type": "choice" + } + ], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Hands Free Unit and Audio Gateway can be included simultaneously\nbut they cannot run simultaneously due to internal limitations.", + "id": "BT_HFP_ENABLE", + "is_menuconfig": true, + "name": "BT_HFP_ENABLE", + "range": null, + "title": "Hands Free/Handset Profile", + "type": "menu" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && ((BT_CONTROLLER_ENABLED && SOC_BT_CLASSIC_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "For now this option needs \"SMP_ENABLE\" to be set to yes", + "id": "BT_CLASSIC_ENABLED", + "name": "BT_CLASSIC_ENABLED", + "range": null, + "title": "Classic Bluetooth", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_HFP_AUDIO_DATA_PATH_HCI && BT_BLUEDROID_ENABLED", + "help": "This enables Wide Band Speech. Should disable it when SCO data path is PCM.\nOtherwise there will be no data transmited via GPIOs.", + "id": "BT_HFP_WBS_ENABLE", + "name": "BT_HFP_WBS_ENABLE", + "range": null, + "title": "Wide Band Speech", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_HID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the BT HID Host", + "id": "BT_HID_HOST_ENABLED", + "name": "BT_HID_HOST_ENABLED", + "range": null, + "title": "Classic BT HID Host", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_HID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the BT HID Device", + "id": "BT_HID_DEVICE_ENABLED", + "name": "BT_HID_DEVICE_ENABLED", + "range": null, + "title": "Classic BT HID Device", + "type": "bool" + } + ], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the BT HID Host", + "id": "BT_HID_ENABLED", + "is_menuconfig": true, + "name": "BT_HID_ENABLED", + "range": null, + "title": "Classic BT HID", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "This enables \"Peripheral Preferred Connection Parameters\" characteristic (UUID: 0x2A04) in GAP service that has\nconnection parameters like min/max connection interval, slave latency and supervision timeout multiplier", + "id": "BT_GATTS_PPCP_CHAR_GAP", + "name": "BT_GATTS_PPCP_CHAR_GAP", + "range": null, + "title": "Enable Peripheral Preferred Connection Parameters characteristic in GAP service", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "This option can be close when the app does not require blufi function.", + "id": "BT_BLE_BLUFI_ENABLE", + "name": "BT_BLE_BLUFI_ENABLE", + "range": null, + "title": "Include blufi function", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Maximum GATT Server Profiles Count", + "id": "BT_GATT_MAX_SR_PROFILES", + "name": "BT_GATT_MAX_SR_PROFILES", + "range": null, + "title": "Max GATT Server Profiles", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Maximum GATT Service Attributes Count", + "id": "BT_GATT_MAX_SR_ATTRIBUTES", + "name": "BT_GATT_MAX_SR_ATTRIBUTES", + "range": null, + "title": "Max GATT Service Attributes", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Manually send service change indication through API esp_ble_gatts_send_service_change_indication()", + "id": "BT_GATTS_SEND_SERVICE_CHANGE_MANUAL", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_MANUAL", + "range": null, + "title": "GATTS manually send service change indication", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Let Bluedroid handle the service change indication internally", + "id": "BT_GATTS_SEND_SERVICE_CHANGE_AUTO", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_AUTO", + "range": null, + "title": "GATTS automatically send service change indication", + "type": "bool" + } + ], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Service change indication mode for GATT Server.", + "id": "component-config-bluetooth-bluedroid-options-bluetooth-low-energy-include-gatt-server-module-gatts--gatts-service-change-mode", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", + "title": "GATTS Service Change Mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "This option enables the GATT robust caching feature on the server.\nif turned on, the Client Supported Features characteristic, Database Hash characteristic,\nand Server Supported Features characteristic will be included in the GAP SERVICE.", + "id": "BT_GATTS_ROBUST_CACHING_ENABLED", + "name": "BT_GATTS_ROBUST_CACHING_ENABLED", + "range": null, + "title": "Enable Robust Caching on Server Side", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Enabling this option allows remote GATT clients to write device name", + "id": "BT_GATTS_DEVICE_NAME_WRITABLE", + "name": "BT_GATTS_DEVICE_NAME_WRITABLE", + "range": null, + "title": "Allow to write device name by GATT clients", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Enabling this option allows remote GATT clients to write appearance", + "id": "BT_GATTS_APPEARANCE_WRITABLE", + "name": "BT_GATTS_APPEARANCE_WRITABLE", + "range": null, + "title": "Allow to write appearance by GATT clients", + "type": "bool" + } + ], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This option can be disabled when the app work only on gatt client mode", + "id": "BT_GATTS_ENABLE", + "name": "BT_GATTS_ENABLE", + "range": null, + "title": "Include GATT server module(GATTS)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Maximum GATTC cache characteristic count", + "id": "BT_GATTC_MAX_CACHE_CHAR", + "name": "BT_GATTC_MAX_CACHE_CHAR", + "range": null, + "title": "Max gattc cache characteristic for discover", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Maximum GATTC notify(indication) register number", + "id": "BT_GATTC_NOTIF_REG_MAX", + "name": "BT_GATTC_NOTIF_REG_MAX", + "range": null, + "title": "Max gattc notify(indication) register number", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", + "help": "This select can save gattc cache data to nvs flash", + "id": "BT_GATTC_CACHE_NVS_FLASH", + "name": "BT_GATTC_CACHE_NVS_FLASH", + "range": null, + "title": "Save gattc cache data to nvs flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", + "help": "The number of attempts to reconnect if the connection establishment failed", + "id": "BT_GATTC_CONNECT_RETRY_COUNT", + "name": "BT_GATTC_CONNECT_RETRY_COUNT", + "range": null, + "title": "The number of attempts to reconnect if the connection establishment failed", + "type": "int" + } + ], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This option can be close when the app work only on gatt server mode", + "id": "BT_GATTC_ENABLE", + "name": "BT_GATTC_ENABLE", + "range": null, + "title": "Include GATT client module(GATTC)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_SMP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "In order to reduce the pairing time, slave actively initiates connection parameters\nupdate during pairing.", + "id": "BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE", + "name": "BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE", + "range": null, + "title": "Slave enable connection parameters update during pairing", + "type": "bool" + } + ], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This option can be close when the app not used the ble security connect.", + "id": "BT_BLE_SMP_ENABLE", + "name": "BT_BLE_SMP_ENABLE", + "range": null, + "title": "Include BLE security module(SMP)", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables Bluetooth Low Energy", + "id": "BT_BLE_ENABLED", + "name": "BT_BLE_ENABLED", + "range": null, + "title": "Bluetooth Low Energy", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This select can save the rodata code size", + "id": "BT_STACK_NO_LOG", + "name": "BT_STACK_NO_LOG", + "range": null, + "title": "Disable BT debug logs (minimize bin size)", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_NONE", + "name": "BT_LOG_HCI_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_ERROR", + "name": "BT_LOG_HCI_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_WARNING", + "name": "BT_LOG_HCI_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_API", + "name": "BT_LOG_HCI_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_EVENT", + "name": "BT_LOG_HCI_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_HCI_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_HCI_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for HCI layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hci-layer", + "name": "BT_LOG_HCI_TRACE_LEVEL", + "title": "HCI layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL", + "name": "BT_LOG_HCI_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_NONE", + "name": "BT_LOG_BTM_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BTM_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BTM_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_API", + "name": "BT_LOG_BTM_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BTM_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BTM_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BTM_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for BTM layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btm-layer", + "name": "BT_LOG_BTM_TRACE_LEVEL", + "title": "BTM layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL", + "name": "BT_LOG_BTM_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_NONE", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_API", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for L2CAP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-l2cap-layer", + "name": "BT_LOG_L2CAP_TRACE_LEVEL", + "title": "L2CAP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL", + "name": "BT_LOG_L2CAP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_NONE", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_ERROR", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_WARNING", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_API", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_EVENT", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for RFCOMM layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-rfcomm-layer", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL", + "title": "RFCOMM layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_NONE", + "name": "BT_LOG_SDP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_SDP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_SDP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_API", + "name": "BT_LOG_SDP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_SDP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_SDP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_SDP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for SDP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-sdp-layer", + "name": "BT_LOG_SDP_TRACE_LEVEL", + "title": "SDP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL", + "name": "BT_LOG_SDP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_NONE", + "name": "BT_LOG_GAP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_GAP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_GAP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_API", + "name": "BT_LOG_GAP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_GAP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_GAP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_GAP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for GAP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gap-layer", + "name": "BT_LOG_GAP_TRACE_LEVEL", + "title": "GAP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL", + "name": "BT_LOG_GAP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_NONE", + "name": "BT_LOG_BNEP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BNEP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BNEP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_API", + "name": "BT_LOG_BNEP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BNEP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BNEP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BNEP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for BNEP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-bnep-layer", + "name": "BT_LOG_BNEP_TRACE_LEVEL", + "title": "BNEP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL", + "name": "BT_LOG_BNEP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_NONE", + "name": "BT_LOG_PAN_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_ERROR", + "name": "BT_LOG_PAN_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_WARNING", + "name": "BT_LOG_PAN_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_API", + "name": "BT_LOG_PAN_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_EVENT", + "name": "BT_LOG_PAN_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_PAN_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_PAN_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for PAN layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-pan-layer", + "name": "BT_LOG_PAN_TRACE_LEVEL", + "title": "PAN layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL", + "name": "BT_LOG_PAN_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_NONE", + "name": "BT_LOG_A2D_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_ERROR", + "name": "BT_LOG_A2D_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_WARNING", + "name": "BT_LOG_A2D_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_API", + "name": "BT_LOG_A2D_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_EVENT", + "name": "BT_LOG_A2D_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_A2D_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_A2D_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for A2D layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-a2d-layer", + "name": "BT_LOG_A2D_TRACE_LEVEL", + "title": "A2D layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL", + "name": "BT_LOG_A2D_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_NONE", + "name": "BT_LOG_AVDT_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_ERROR", + "name": "BT_LOG_AVDT_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_WARNING", + "name": "BT_LOG_AVDT_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_API", + "name": "BT_LOG_AVDT_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_EVENT", + "name": "BT_LOG_AVDT_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_AVDT_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_AVDT_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for AVDT layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avdt-layer", + "name": "BT_LOG_AVDT_TRACE_LEVEL", + "title": "AVDT layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL", + "name": "BT_LOG_AVDT_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_NONE", + "name": "BT_LOG_AVCT_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_ERROR", + "name": "BT_LOG_AVCT_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_WARNING", + "name": "BT_LOG_AVCT_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_API", + "name": "BT_LOG_AVCT_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_EVENT", + "name": "BT_LOG_AVCT_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_AVCT_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_AVCT_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for AVCT layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avct-layer", + "name": "BT_LOG_AVCT_TRACE_LEVEL", + "title": "AVCT layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL", + "name": "BT_LOG_AVCT_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_NONE", + "name": "BT_LOG_AVRC_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_ERROR", + "name": "BT_LOG_AVRC_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_WARNING", + "name": "BT_LOG_AVRC_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_API", + "name": "BT_LOG_AVRC_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_EVENT", + "name": "BT_LOG_AVRC_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_AVRC_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_AVRC_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for AVRC layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avrc-layer", + "name": "BT_LOG_AVRC_TRACE_LEVEL", + "title": "AVRC layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL", + "name": "BT_LOG_AVRC_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_NONE", + "name": "BT_LOG_MCA_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_ERROR", + "name": "BT_LOG_MCA_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_WARNING", + "name": "BT_LOG_MCA_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_API", + "name": "BT_LOG_MCA_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_EVENT", + "name": "BT_LOG_MCA_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_MCA_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_MCA_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for MCA layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-mca-layer", + "name": "BT_LOG_MCA_TRACE_LEVEL", + "title": "MCA layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL", + "name": "BT_LOG_MCA_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_NONE", + "name": "BT_LOG_HID_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_ERROR", + "name": "BT_LOG_HID_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_WARNING", + "name": "BT_LOG_HID_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_API", + "name": "BT_LOG_HID_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_EVENT", + "name": "BT_LOG_HID_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_HID_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_HID_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for HID layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hid-layer", + "name": "BT_LOG_HID_TRACE_LEVEL", + "title": "HID layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL", + "name": "BT_LOG_HID_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_NONE", + "name": "BT_LOG_APPL_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_ERROR", + "name": "BT_LOG_APPL_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_WARNING", + "name": "BT_LOG_APPL_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_API", + "name": "BT_LOG_APPL_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_EVENT", + "name": "BT_LOG_APPL_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_APPL_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_APPL_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for APPL layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-appl-layer", + "name": "BT_LOG_APPL_TRACE_LEVEL", + "title": "APPL layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL", + "name": "BT_LOG_APPL_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_NONE", + "name": "BT_LOG_GATT_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_ERROR", + "name": "BT_LOG_GATT_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_WARNING", + "name": "BT_LOG_GATT_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_API", + "name": "BT_LOG_GATT_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_EVENT", + "name": "BT_LOG_GATT_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_GATT_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_GATT_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for GATT layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gatt-layer", + "name": "BT_LOG_GATT_TRACE_LEVEL", + "title": "GATT layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL", + "name": "BT_LOG_GATT_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_NONE", + "name": "BT_LOG_SMP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_SMP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_SMP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_API", + "name": "BT_LOG_SMP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_SMP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_SMP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_SMP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for SMP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-smp-layer", + "name": "BT_LOG_SMP_TRACE_LEVEL", + "title": "SMP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL", + "name": "BT_LOG_SMP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_NONE", + "name": "BT_LOG_BTIF_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BTIF_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BTIF_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_API", + "name": "BT_LOG_BTIF_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BTIF_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BTIF_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BTIF_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for BTIF layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btif-layer", + "name": "BT_LOG_BTIF_TRACE_LEVEL", + "title": "BTIF layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL", + "name": "BT_LOG_BTIF_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_NONE", + "name": "BT_LOG_BTC_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BTC_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BTC_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_API", + "name": "BT_LOG_BTC_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BTC_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BTC_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BTC_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for BTC layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btc-layer", + "name": "BT_LOG_BTC_TRACE_LEVEL", + "title": "BTC layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL", + "name": "BT_LOG_BTC_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_NONE", + "name": "BT_LOG_OSI_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_ERROR", + "name": "BT_LOG_OSI_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_WARNING", + "name": "BT_LOG_OSI_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_API", + "name": "BT_LOG_OSI_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_EVENT", + "name": "BT_LOG_OSI_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_OSI_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_OSI_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for OSI layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-osi-layer", + "name": "BT_LOG_OSI_TRACE_LEVEL", + "title": "OSI layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL", + "name": "BT_LOG_OSI_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_NONE", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_API", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for BLUFI layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-blufi-layer", + "name": "BT_LOG_BLUFI_TRACE_LEVEL", + "title": "BLUFI layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL", + "name": "BT_LOG_BLUFI_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level", + "title": "BT DEBUG LOG LEVEL", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Maximum BT/BLE connection count. The ESP32-C3/S3 chip supports a maximum of 10 instances,\nincluding ADV, SCAN and connections. The ESP32-C3/S3 chip can connect up to 9 devices if\nADV or SCAN uses only one. If ADV and SCAN are both used, The ESP32-C3/S3 chip is connected\nto a maximum of 8 devices. Because Bluetooth cannot reclaim used instances once ADV or SCAN\nis used.", + "id": "BT_ACL_CONNECTIONS", + "name": "BT_ACL_CONNECTIONS", + "range": null, + "title": "BT/BLE MAX ACL CONNECTIONS(1~9)", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Enable this option if there are multiple connections", + "id": "BT_MULTI_CONNECTION_ENBALE", + "name": "BT_MULTI_CONNECTION_ENBALE", + "range": null, + "title": "Enable BLE multi-conections", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This select can save the internal RAM if there have the PSRAM", + "id": "BT_ALLOCATION_FROM_SPIRAM_FIRST", + "name": "BT_ALLOCATION_FROM_SPIRAM_FIRST", + "range": null, + "title": "BT/BLE will first malloc the memory from the PSRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This select can make the allocation of memory will become more flexible", + "id": "BT_BLE_DYNAMIC_ENV_MEMORY", + "name": "BT_BLE_DYNAMIC_ENV_MEMORY", + "range": null, + "title": "Use dynamic memory allocation in BT/BLE stack", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "When scanning and scan duplicate is not enabled, if there are a lot of adv packets around\nor application layer handling adv packets is slow, it will cause the controller memory\nto run out. if enabled, adv packets will be lost when host queue is congested.", + "id": "BT_BLE_HOST_QUEUE_CONG_CHECK", + "name": "BT_BLE_HOST_QUEUE_CONG_CHECK", + "range": null, + "title": "BLE queue congestion check", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_SMP_ENABLE", + "name": "BT_SMP_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_SMP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "The number of security records for peer devices.", + "id": "BT_SMP_MAX_BONDS", + "name": "BT_SMP_MAX_BONDS", + "range": null, + "title": "BT/BLE maximum bond device count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Originally, when doing BLE active scan, Bluedroid will not report adv to application layer\nuntil receive scan response. This option is used to disable the behavior. When enable this option,\nBluedroid will report adv data or scan response to application layer immediately.\n\n# Memory reserved at start of DRAM for Bluetooth stack", + "id": "BT_BLE_ACT_SCAN_REP_ADV_SCAN", + "name": "BT_BLE_ACT_SCAN_REP_ADV_SCAN", + "range": null, + "title": "Report adv data and scan response individually when BLE active scan", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Bluetooth Connection establishment maximum time, if connection time exceeds this value, the connection\nestablishment fails, ESP_GATTC_OPEN_EVT or ESP_GATTS_OPEN_EVT is triggered.", + "id": "BT_BLE_ESTAB_LINK_CONN_TOUT", + "name": "BT_BLE_ESTAB_LINK_CONN_TOUT", + "range": null, + "title": "Timeout of BLE connection establishment", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Bluetooth Device name length shall be no larger than 248 octets, If the broadcast data cannot contain\nthe complete device name, then only the shortname will be displayed, the rest parts that can't fit in\nwill be truncated.", + "id": "BT_MAX_DEVICE_NAME_LEN", + "name": "BT_MAX_DEVICE_NAME_LEN", + "range": null, + "title": "length of bluetooth device name", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && ((BT_CONTROLLER_ENABLED && !SOC_BLE_DEVICE_PRIVACY_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "This enables controller RPA list function.\nFor ESP32, ESP32 only support network privacy mode. If this option is enabled, ESP32 will only accept\nadvertising packets from peer devices that contain private address, HW will not receive the advertising\npackets contain identity address after IRK changed. If this option is disabled, address resolution will\nbe performed in the host, so the functions that require controller to resolve address in the white list\ncannot be used. This option is disabled by default on ESP32, please enable or disable this option according\nto your own needs.\n\nFor other BLE chips, devices support network privacy mode and device privacy mode,\nusers can switch the two modes according to their own needs. So this option is enabled by default.", + "id": "BT_BLE_RPA_SUPPORTED", + "name": "BT_BLE_RPA_SUPPORTED", + "range": null, + "title": "Update RPA to Controller", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This set RPA timeout of Controller and Host.\nDefault is 900 s (15 minutes). Range is 1 s to 1 hour (3600 s).", + "id": "BT_BLE_RPA_TIMEOUT", + "name": "BT_BLE_RPA_TIMEOUT", + "range": null, + "title": "Timeout of resolvable private address", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_ENABLED && ((BT_CONTROLLER_ENABLED && SOC_BLE_50_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enabling this option activates BLE 5.0 features.\nThis option is universally supported in chips that support BLE, except for ESP32.", + "id": "BT_BLE_50_FEATURES_SUPPORTED", + "name": "BT_BLE_50_FEATURES_SUPPORTED", + "range": null, + "title": "Enable BLE 5.0 features", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_ENABLED && ((BT_CONTROLLER_ENABLED && SOC_BLE_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "This enables BLE 4.2 features.", + "id": "BT_BLE_42_FEATURES_SUPPORTED", + "name": "BT_BLE_42_FEATURES_SUPPORTED", + "range": null, + "title": "Enable BLE 4.2 features", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_ESP_NIMBLE_CONTROLLER) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "This enables BLE periodic advertising sync transfer feature", + "id": "BT_BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER", + "name": "BT_BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER", + "range": null, + "title": "Enable BLE periodic advertising sync transfer feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_ESP_NIMBLE_CONTROLLER) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enable the periodic advertising enhancements", + "id": "BT_BLE_FEAT_PERIODIC_ADV_ENH", + "name": "BT_BLE_FEAT_PERIODIC_ADV_ENH", + "range": null, + "title": "Enable periodic adv enhancements(adi support)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_ESP_NIMBLE_CONTROLLER) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enable the create sync enhancements", + "id": "BT_BLE_FEAT_CREATE_SYNC_ENH", + "name": "BT_BLE_FEAT_CREATE_SYNC_ENH", + "range": null, + "title": "Enable create sync enhancements(reporting disable and duplicate filtering enable support)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enable BLE high duty advertising interval feature", + "id": "BT_BLE_HIGH_DUTY_ADV_INTERVAL", + "name": "BT_BLE_HIGH_DUTY_ADV_INTERVAL", + "range": null, + "title": "Enable BLE high duty advertising interval feature", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED", + "id": "component-config-bluetooth-bluedroid-options", + "title": "Bluedroid Options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL", + "name": "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL", + "range": null, + "title": "Internal memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", + "help": null, + "id": "BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL", + "name": "BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL", + "range": null, + "title": "External SPIRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT", + "name": "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT", + "range": null, + "title": "Default 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\nEvery unaligned (8bit or 16bit) access will result in an exception\nand incur penalty of certain clock cycles per unaligned read/write.", + "id": "BT_NIMBLE_MEM_ALLOC_MODE_IRAM_8BIT", + "name": "BT_NIMBLE_MEM_ALLOC_MODE_IRAM_8BIT", + "range": null, + "title": "Internal IRAM", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Allocation strategy for NimBLE host stack, 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- Internal IRAM memory wherever applicable else internal DRAM", + "id": "component-config-bluetooth-nimble-options-memory-allocation-strategy", + "name": "BT_NIMBLE_MEM_ALLOC_MODE", + "title": "Memory allocation strategy", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL_NONE", + "name": "BT_NIMBLE_LOG_LEVEL_NONE", + "range": null, + "title": "No logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL_ERROR", + "name": "BT_NIMBLE_LOG_LEVEL_ERROR", + "range": null, + "title": "Error logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL_WARNING", + "name": "BT_NIMBLE_LOG_LEVEL_WARNING", + "range": null, + "title": "Warning logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL_INFO", + "name": "BT_NIMBLE_LOG_LEVEL_INFO", + "range": null, + "title": "Info logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL_DEBUG", + "name": "BT_NIMBLE_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug logs", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Select NimBLE log level. Please make a note that the selected NimBLE log\nverbosity can not exceed the level set in \"Component config --> Log output\n--> Default log verbosity\".", + "id": "component-config-bluetooth-nimble-options-nimble-host-log-verbosity", + "name": "BT_NIMBLE_LOG_LEVEL", + "title": "NimBLE Host log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL", + "name": "BT_NIMBLE_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of concurrent BLE connections. For ESP32, user\nis expected to configure BTDM_CTRL_BLE_MAX_CONN from controller menu\nalong with this option. Similarly for ESP32-C3 or ESP32-S3, user is expected to\nconfigure BT_CTRL_BLE_MAX_ACT from controller menu.\nFor ESP32C2, ESP32C6 and ESP32H2, each connection will take about 1k DRAM.", + "id": "BT_NIMBLE_MAX_CONNECTIONS", + "name": "BT_NIMBLE_MAX_CONNECTIONS", + "range": null, + "title": "Maximum number of concurrent connections", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of bonds to save for peer security and our security", + "id": "BT_NIMBLE_MAX_BONDS", + "name": "BT_NIMBLE_MAX_BONDS", + "range": null, + "title": "Maximum number of bonds to save across reboots", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of CCC descriptors to save", + "id": "BT_NIMBLE_MAX_CCCDS", + "name": "BT_NIMBLE_MAX_CCCDS", + "range": null, + "title": "Maximum number of CCC descriptors to save across reboots", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of BLE Connection Oriented Channels. When set to (0), BLE COC is not compiled in", + "id": "BT_NIMBLE_L2CAP_COC_MAX_NUM", + "name": "BT_NIMBLE_L2CAP_COC_MAX_NUM", + "range": null, + "title": "Maximum number of connection oriented channels", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_PINNED_TO_CORE_0", + "name": "BT_NIMBLE_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0 (PRO CPU)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "BT_NIMBLE_PINNED_TO_CORE_1", + "name": "BT_NIMBLE_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1 (APP CPU)", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && !FREERTOS_UNICORE && BT_NIMBLE_ENABLED", + "help": "The CPU core on which NimBLE host will run. You can choose Core 0 or Core 1.\nCannot specify no-affinity", + "id": "component-config-bluetooth-nimble-options-the-cpu-core-on-which-nimble-host-will-run", + "name": "BT_NIMBLE_PINNED_TO_CORE_CHOICE", + "title": "The CPU core on which NimBLE host will run", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_PINNED_TO_CORE", + "name": "BT_NIMBLE_PINNED_TO_CORE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This configures stack size of NimBLE host task", + "id": "BT_NIMBLE_HOST_TASK_STACK_SIZE", + "name": "BT_NIMBLE_HOST_TASK_STACK_SIZE", + "range": null, + "title": "NimBLE Host task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enables central role", + "id": "BT_NIMBLE_ROLE_CENTRAL", + "name": "BT_NIMBLE_ROLE_CENTRAL", + "range": null, + "title": "Enable BLE Central role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable peripheral role", + "id": "BT_NIMBLE_ROLE_PERIPHERAL", + "name": "BT_NIMBLE_ROLE_PERIPHERAL", + "range": null, + "title": "Enable BLE Peripheral role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enables broadcaster role", + "id": "BT_NIMBLE_ROLE_BROADCASTER", + "name": "BT_NIMBLE_ROLE_BROADCASTER", + "range": null, + "title": "Enable BLE Broadcaster role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enables observer role", + "id": "BT_NIMBLE_ROLE_OBSERVER", + "name": "BT_NIMBLE_ROLE_OBSERVER", + "range": null, + "title": "Enable BLE Observer role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable this flag to make bonding persistent across device reboots", + "id": "BT_NIMBLE_NVS_PERSIST", + "name": "BT_NIMBLE_NVS_PERSIST", + "range": null, + "title": "Persist the BLE Bonding keys in NVS", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "Enable security manager legacy pairing", + "id": "BT_NIMBLE_SM_LEGACY", + "name": "BT_NIMBLE_SM_LEGACY", + "range": null, + "title": "Security manager legacy pairing", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_SM_SC && BT_NIMBLE_ENABLED", + "help": "If this option is enabled, SM uses predefined DH key pair as described\nin Core Specification, Vol. 3, Part H, 2.3.5.6.1. This allows to\ndecrypt air traffic easily and thus should only be used for debugging.", + "id": "BT_NIMBLE_SM_SC_DEBUG_KEYS", + "name": "BT_NIMBLE_SM_SC_DEBUG_KEYS", + "range": null, + "title": "Use predefined public-private key pair", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "Enable security manager secure connections", + "id": "BT_NIMBLE_SM_SC", + "name": "BT_NIMBLE_SM_SC", + "range": null, + "title": "Security manager secure connections (4.2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable encryption connection", + "id": "BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION", + "name": "BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION", + "range": null, + "title": "Enable LE encryption", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "LE Security Mode 1 Levels:\n1. No Security\n2. Unauthenticated pairing with encryption\n3. Authenticated pairing with encryption\n4. Authenticated LE Secure Connections pairing with encryption using a 128-bit strength encryption key.", + "id": "BT_NIMBLE_SM_SC_LVL", + "name": "BT_NIMBLE_SM_SC_LVL", + "range": null, + "title": "Security level", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable BLE sm feature", + "id": "BT_NIMBLE_SECURITY_ENABLE", + "is_menuconfig": true, + "name": "BT_NIMBLE_SECURITY_ENABLE", + "range": null, + "title": "Enable BLE SM feature", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This enables extra runtime asserts and host debugging", + "id": "BT_NIMBLE_DEBUG", + "name": "BT_NIMBLE_DEBUG", + "range": null, + "title": "Enable extra runtime asserts and host debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This enables user to add/remove Gatt services at runtime", + "id": "BT_NIMBLE_DYNAMIC_SERVICE", + "name": "BT_NIMBLE_DYNAMIC_SERVICE", + "range": null, + "title": "Enable dynamic services", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "The Device Name characteristic shall contain the name of the device as an UTF-8 string.\nThis name can be changed by using API ble_svc_gap_device_name_set()", + "id": "BT_NIMBLE_SVC_GAP_DEVICE_NAME", + "name": "BT_NIMBLE_SVC_GAP_DEVICE_NAME", + "range": null, + "title": "BLE GAP default device name", + "type": "string" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Device Name characteristic value shall be 0 to 248 octets in length", + "id": "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN", + "name": "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN", + "range": null, + "title": "Maximum length of BLE device name in octets", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This is the default value of ATT MTU indicated by the device during an ATT MTU exchange.\nThis value can be changed using API ble_att_set_preferred_mtu()", + "id": "BT_NIMBLE_ATT_PREFERRED_MTU", + "name": "BT_NIMBLE_ATT_PREFERRED_MTU", + "range": null, + "title": "Preferred MTU size in octets", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Standard BLE GAP Appearance value in HEX format e.g. 0x02C0", + "id": "BT_NIMBLE_SVC_GAP_APPEARANCE", + "name": "BT_NIMBLE_SVC_GAP_APPEARANCE", + "range": null, + "title": "External appearance of the device", + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "MSYS is a system level mbuf registry. For prepare write & prepare\nresponses MBUFs are allocated out of msys_1 pool. For NIMBLE_MESH\nenabled cases, this block count is increased by 8 than user defined\ncount.", + "id": "BT_NIMBLE_MSYS_1_BLOCK_COUNT", + "name": "BT_NIMBLE_MSYS_1_BLOCK_COUNT", + "range": null, + "title": "MSYS_1 Block Count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Dynamic memory size of block 1", + "id": "BT_NIMBLE_MSYS_1_BLOCK_SIZE", + "name": "BT_NIMBLE_MSYS_1_BLOCK_SIZE", + "range": null, + "title": "MSYS_1 Block Size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Dynamic memory count", + "id": "BT_NIMBLE_MSYS_2_BLOCK_COUNT", + "name": "BT_NIMBLE_MSYS_2_BLOCK_COUNT", + "range": null, + "title": "MSYS_2 Block Count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Dynamic memory size of block 2", + "id": "BT_NIMBLE_MSYS_2_BLOCK_SIZE", + "name": "BT_NIMBLE_MSYS_2_BLOCK_SIZE", + "range": null, + "title": "MSYS_2 Block Size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_MSYS_INIT_IN_CONTROLLER && BT_NIMBLE_ENABLED", + "help": "This option sets the source of the shared msys mbuf memory between\nthe Host and the Controller. Allocate the memory from the heap if\nthis option is sets, from the mempool otherwise.", + "id": "BT_NIMBLE_MSYS_BUF_FROM_HEAP", + "name": "BT_NIMBLE_MSYS_BUF_FROM_HEAP", + "range": null, + "title": "Get Msys Mbuf from heap", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "The number of ACL data buffers allocated for host.", + "id": "BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT", + "name": "BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT", + "range": null, + "title": "ACL Buffer count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This is the maximum size of the data portion of HCI ACL data packets.\nIt does not include the HCI data header (of 4 bytes)", + "id": "BT_NIMBLE_TRANSPORT_ACL_SIZE", + "name": "BT_NIMBLE_TRANSPORT_ACL_SIZE", + "range": null, + "title": "Transport ACL Buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This is the size of each HCI event buffer in bytes. In case of\nextended advertising, packets can be fragmented. 257 bytes is the\nmaximum size of a packet.", + "id": "BT_NIMBLE_TRANSPORT_EVT_SIZE", + "name": "BT_NIMBLE_TRANSPORT_EVT_SIZE", + "range": null, + "title": "Transport Event Buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This is the high priority HCI events' buffer size. High-priority\nevent buffers are for everything except advertising reports. If there\nare no free high-priority event buffers then host will try to allocate a\nlow-priority buffer instead", + "id": "BT_NIMBLE_TRANSPORT_EVT_COUNT", + "name": "BT_NIMBLE_TRANSPORT_EVT_COUNT", + "range": null, + "title": "Transport Event Buffer count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This is the low priority HCI events' buffer size. Low-priority event\nbuffers are only used for advertising reports. If there are no free\nlow-priority event buffers, then an incoming advertising report will\nget dropped", + "id": "BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT", + "name": "BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT", + "range": null, + "title": "Discardable Transport Event Buffer count", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-memory-settings", + "title": "Memory Settings", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Maximum number of GATT client procedures that can be executed.", + "id": "BT_NIMBLE_GATT_MAX_PROCS", + "name": "BT_NIMBLE_GATT_MAX_PROCS", + "range": null, + "title": "Maximum number of GATT client procedures", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED", + "help": "Host flow control interval in msecs", + "id": "BT_NIMBLE_HS_FLOW_CTRL_ITVL", + "name": "BT_NIMBLE_HS_FLOW_CTRL_ITVL", + "range": null, + "title": "Host Flow control interval", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED", + "help": "Host flow control threshold, if the number of free buffers are at or\nbelow this threshold, send an immediate number-of-completed-packets\nevent", + "id": "BT_NIMBLE_HS_FLOW_CTRL_THRESH", + "name": "BT_NIMBLE_HS_FLOW_CTRL_THRESH", + "range": null, + "title": "Host Flow control threshold", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED", + "help": "Enable this option to send number-of-completed-packets event to\ncontroller after disconnection", + "id": "BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT", + "name": "BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT", + "range": null, + "title": "Host Flow control on disconnect", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable Host Flow control", + "id": "BT_NIMBLE_HS_FLOW_CTRL", + "name": "BT_NIMBLE_HS_FLOW_CTRL", + "range": null, + "title": "Enable Host Flow control", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Time interval between RPA address change.", + "id": "BT_NIMBLE_RPA_TIMEOUT", + "name": "BT_NIMBLE_RPA_TIMEOUT", + "range": null, + "title": "RPA timeout in seconds", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Enable proxy. This is automatically set whenever NIMBLE_MESH_PB_GATT or\nNIMBLE_MESH_GATT_PROXY is set", + "id": "BT_NIMBLE_MESH_PROXY", + "name": "BT_NIMBLE_MESH_PROXY", + "range": null, + "title": "Enable mesh proxy functionality", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_MESH_PROV && BT_NIMBLE_ENABLED", + "help": "Enable this option to allow the device to be provisioned over\nthe advertising bearer", + "id": "BT_NIMBLE_MESH_PB_ADV", + "name": "BT_NIMBLE_MESH_PB_ADV", + "range": null, + "title": "Enable mesh provisioning over advertising bearer", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH_PROV && BT_NIMBLE_ENABLED", + "help": "Enable this option to allow the device to be provisioned over the GATT\nbearer", + "id": "BT_NIMBLE_MESH_PB_GATT", + "name": "BT_NIMBLE_MESH_PB_GATT", + "range": null, + "title": "Enable mesh provisioning over GATT bearer", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Enable mesh provisioning", + "id": "BT_NIMBLE_MESH_PROV", + "name": "BT_NIMBLE_MESH_PROV", + "range": null, + "title": "Enable BLE mesh provisioning", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "This option enables support for the Mesh GATT Proxy Service,\ni.e. the ability to act as a proxy between a Mesh GATT Client\nand a Mesh network", + "id": "BT_NIMBLE_MESH_GATT_PROXY", + "name": "BT_NIMBLE_MESH_GATT_PROXY", + "range": null, + "title": "Enable GATT Proxy functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Support for acting as a Mesh Relay Node", + "id": "BT_NIMBLE_MESH_RELAY", + "name": "BT_NIMBLE_MESH_RELAY", + "range": null, + "title": "Enable mesh relay functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Enable this option to be able to act as a Low Power Node", + "id": "BT_NIMBLE_MESH_LOW_POWER", + "name": "BT_NIMBLE_MESH_LOW_POWER", + "range": null, + "title": "Enable mesh low power mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Enable this option to be able to act as a Friend Node", + "id": "BT_NIMBLE_MESH_FRIEND", + "name": "BT_NIMBLE_MESH_FRIEND", + "range": null, + "title": "Enable mesh friend functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "This value defines Bluetooth Mesh device/node name", + "id": "BT_NIMBLE_MESH_DEVICE_NAME", + "name": "BT_NIMBLE_MESH_DEVICE_NAME", + "range": null, + "title": "Set mesh device name", + "type": "string" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Defines mesh node count.", + "id": "BT_NIMBLE_MESH_NODE_COUNT", + "name": "BT_NIMBLE_MESH_NODE_COUNT", + "range": null, + "title": "Set mesh node count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Enable mesh provisioner.", + "id": "BT_NIMBLE_MESH_PROVISIONER", + "name": "BT_NIMBLE_MESH_PROVISIONER", + "range": null, + "title": "Enable BLE mesh provisioner", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable BLE Mesh example present in upstream mynewt-nimble and not maintained by Espressif.\n\nIDF maintains ESP-BLE-MESH as the official Mesh solution. Please refer to ESP-BLE-MESH guide at:\n`https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/esp-ble-mesh/ble-mesh-index.html`", + "id": "BT_NIMBLE_MESH", + "is_menuconfig": true, + "name": "BT_NIMBLE_MESH", + "range": null, + "title": "Enable BLE mesh functionality", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable this option to choose mbedTLS instead of TinyCrypt for crypto\ncomputations.", + "id": "BT_NIMBLE_CRYPTO_STACK_MBEDTLS", + "name": "BT_NIMBLE_CRYPTO_STACK_MBEDTLS", + "range": null, + "title": "Override TinyCrypt with mbedTLS for crypto computations", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "BLE Host stop procedure timeout in milliseconds.", + "id": "BT_NIMBLE_HS_STOP_TIMEOUT_MS", + "name": "BT_NIMBLE_HS_STOP_TIMEOUT_MS", + "range": null, + "title": "BLE host stop timeout in msec", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && IDF_TARGET_ESP32 && BT_NIMBLE_ENABLED", + "help": "Use this option to do host based Random Private Address resolution.\nIf this option is disabled then controller based privacy is used.", + "id": "BT_NIMBLE_HOST_BASED_PRIVACY", + "name": "BT_NIMBLE_HOST_BASED_PRIVACY", + "range": null, + "title": "Enable host based privacy for random address.", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLE_CONN_REATTEMPT && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of connection reattempts.", + "id": "BT_NIMBLE_MAX_CONN_REATTEMPT", + "name": "BT_NIMBLE_MAX_CONN_REATTEMPT", + "range": null, + "title": "Maximum number connection reattempts", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable to make the NimBLE host to reattempt GAP connection on connection\nestablishment failure.", + "id": "BT_NIMBLE_ENABLE_CONN_REATTEMPT", + "name": "BT_NIMBLE_ENABLE_CONN_REATTEMPT", + "range": null, + "title": "Enable connection reattempts on connection establishment error", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable 2M-PHY", + "id": "BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY", + "name": "BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY", + "range": null, + "title": "Enable 2M Phy", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable coded-PHY", + "id": "BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY", + "name": "BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY", + "range": null, + "title": "Enable coded Phy", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_ENABLED", + "help": "Change this option to set maximum number of extended advertising\ninstances. Minimum there is always one instance of\nadvertising. Enter how many more advertising instances you\nwant.\nFor ESP32C2, ESP32C6 and ESP32H2, each extended advertising instance\nwill take about 0.5k DRAM.", + "id": "BT_NIMBLE_MAX_EXT_ADV_INSTANCES", + "name": "BT_NIMBLE_MAX_EXT_ADV_INSTANCES", + "range": null, + "title": "Maximum number of extended advertising instances.", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_ENABLED", + "help": "Defines the length of the extended adv data. The value should not\nexceed 1650.", + "id": "BT_NIMBLE_EXT_ADV_MAX_SIZE", + "name": "BT_NIMBLE_EXT_ADV_MAX_SIZE", + "range": null, + "title": "Maximum length of the advertising data.", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_ENABLED", + "help": "This enables controller transfer periodic sync events to host", + "id": "BT_NIMBLE_PERIODIC_ADV_SYNC_TRANSFER", + "name": "BT_NIMBLE_PERIODIC_ADV_SYNC_TRANSFER", + "range": null, + "title": "Enable Transer Sync Events", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_ENABLED", + "help": "Enable this option to start periodic advertisement.", + "id": "BT_NIMBLE_ENABLE_PERIODIC_ADV", + "name": "BT_NIMBLE_ENABLE_PERIODIC_ADV", + "range": null, + "title": "Enable periodic advertisement.", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable this option to do extended advertising. Extended advertising\nwill be supported from BLE 5.0 onwards.", + "id": "BT_NIMBLE_EXT_ADV", + "name": "BT_NIMBLE_EXT_ADV", + "range": null, + "title": "Enable extended advertising", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit for number of periodic sync\nconnections. This should be less than maximum connections allowed by\ncontroller.", + "id": "BT_NIMBLE_MAX_PERIODIC_SYNCS", + "name": "BT_NIMBLE_MAX_PERIODIC_SYNCS", + "range": null, + "title": "Maximum number of periodic advertising syncs", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && SOC_ESP_NIMBLE_CONTROLLER && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit for number of periodic advertiser list.", + "id": "BT_NIMBLE_MAX_PERIODIC_ADVERTISER_LIST", + "name": "BT_NIMBLE_MAX_PERIODIC_ADVERTISER_LIST", + "range": null, + "title": "Maximum number of periodic advertiser list", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && SOC_BLE_POWER_CONTROL_SUPPORTED && BT_NIMBLE_ENABLED", + "help": "Set this option to enable the Power Control feature", + "id": "BT_NIMBLE_BLE_POWER_CONTROL", + "name": "BT_NIMBLE_BLE_POWER_CONTROL", + "range": null, + "title": "Enable support for BLE Power Control", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED && BT_NIMBLE_ENABLED", + "help": "Enable the periodic advertising enhancements", + "id": "BT_NIMBLE_PERIODIC_ADV_ENH", + "name": "BT_NIMBLE_PERIODIC_ADV_ENH", + "range": null, + "title": "Periodic adv enhancements(adi support)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit on number of connections to be cached.", + "id": "BT_NIMBLE_GATT_CACHING_MAX_CONNS", + "name": "BT_NIMBLE_GATT_CACHING_MAX_CONNS", + "range": null, + "title": "Maximum connections to be cached", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit on number of services per connection to be cached.", + "id": "BT_NIMBLE_GATT_CACHING_MAX_SVCS", + "name": "BT_NIMBLE_GATT_CACHING_MAX_SVCS", + "range": null, + "title": "Maximum number of services per connection", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit on number of characteristics per connection to be cached.", + "id": "BT_NIMBLE_GATT_CACHING_MAX_CHRS", + "name": "BT_NIMBLE_GATT_CACHING_MAX_CHRS", + "range": null, + "title": "Maximum number of characteristics per connection", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit on number of discriptors per connection to be cached.", + "id": "BT_NIMBLE_GATT_CACHING_MAX_DSCS", + "name": "BT_NIMBLE_GATT_CACHING_MAX_DSCS", + "range": null, + "title": "Maximum number of descriptors per connection", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable GATT caching", + "id": "BT_NIMBLE_GATT_CACHING", + "is_menuconfig": true, + "name": "BT_NIMBLE_GATT_CACHING", + "range": null, + "title": "Enable GATT caching", + "type": "menu" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && (SOC_BLE_50_SUPPORTED || !BT_CONTROLLER_ENABLED) && BT_NIMBLE_ENABLED", + "help": "Enable BLE 5 feature", + "id": "BT_NIMBLE_50_FEATURE_SUPPORT", + "is_menuconfig": true, + "name": "BT_NIMBLE_50_FEATURE_SUPPORT", + "range": null, + "title": "Enable BLE 5 feature", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "BLE list size", + "id": "BT_NIMBLE_WHITELIST_SIZE", + "name": "BT_NIMBLE_WHITELIST_SIZE", + "range": null, + "title": "BLE white list size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable the throughput test mode", + "id": "BT_NIMBLE_TEST_THROUGHPUT_TEST", + "name": "BT_NIMBLE_TEST_THROUGHPUT_TEST", + "range": null, + "title": "Throughput Test Mode enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Set this option to enable blufi functionality.", + "id": "BT_NIMBLE_BLUFI_ENABLE", + "name": "BT_NIMBLE_BLUFI_ENABLE", + "range": null, + "title": "Enable blufi functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Set this option to use Esp Timer which has higher priority timer instead of FreeRTOS timer", + "id": "BT_NIMBLE_USE_ESP_TIMER", + "name": "BT_NIMBLE_USE_ESP_TIMER", + "range": null, + "title": "Enable Esp Timer for Nimble", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This option is used to distinguish whether a previous version of VHCI is being used", + "id": "BT_NIMBLE_LEGACY_VHCI_ENABLE", + "name": "BT_NIMBLE_LEGACY_VHCI_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This option is used when data to be sent is more than 512 bytes. For peripheral role,\nBT_NIMBLE_MSYS_1_BLOCK_COUNT needs to be increased according to the need.", + "id": "BT_NIMBLE_BLE_GATT_BLOB_TRANSFER", + "name": "BT_NIMBLE_BLE_GATT_BLOB_TRANSFER", + "range": null, + "title": "Blob transfer", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE && BT_NIMBLE_ENABLED", + "help": "Enable write with encryption permission (BLE_GATT_CHR_F_WRITE_ENC)", + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_ENC", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_ENC", + "range": null, + "title": "Write with encryption", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE && BT_NIMBLE_ENABLED", + "help": "Enable write with authentication permission (BLE_GATT_CHR_F_WRITE_AUTHEN)", + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHEN", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHEN", + "range": null, + "title": "Write with authentication", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE && BT_NIMBLE_ENABLED", + "help": "Enable write with authorisation permission (BLE_GATT_CHR_F_WRITE_AUTHOR)", + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHOR", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHOR", + "range": null, + "title": "Write with authorisation", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable write permission (BLE_GATT_CHR_F_WRITE)", + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE", + "range": null, + "title": "Write", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-gap-service-gap-appearance-write-permissions", + "title": "GAP Appearance write permissions", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP", + "name": "BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP", + "range": null, + "title": "Characteristic not supported", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP", + "name": "BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP", + "range": null, + "title": "Central Address Resolution not supported", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_CAR_SUPP", + "name": "BT_NIMBLE_SVC_GAP_CAR_SUPP", + "range": null, + "title": "Central Address Resolution supported", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Weather or not Central Address Resolution characteristic is supported on\nthe device, and if supported, weather or not Central Address Resolution\nis supported.\n\n- Central Address Resolution characteristic not supported\n- Central Address Resolution not supported\n- Central Address Resolution supported", + "id": "component-config-bluetooth-nimble-options-gap-service-gap-characteristic-central-address-resolution", + "name": "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION", + "title": "GAP Characteristic - Central Address Resolution", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION", + "name": "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_NAME_WRITE && BT_NIMBLE_ENABLED", + "help": "Enable write with encryption permission (BLE_GATT_CHR_F_WRITE_ENC)", + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_ENC", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_ENC", + "range": null, + "title": "Write with encryption", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_NAME_WRITE && BT_NIMBLE_ENABLED", + "help": "Enable write with authentication permission (BLE_GATT_CHR_F_WRITE_AUTHEN)", + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHEN", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHEN", + "range": null, + "title": "Write with authentication", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_NAME_WRITE && BT_NIMBLE_ENABLED", + "help": "Enable write with authorisation permission (BLE_GATT_CHR_F_WRITE_AUTHOR)", + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHOR", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHOR", + "range": null, + "title": "Write with authorisation", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable write permission (BLE_GATT_CHR_F_WRITE)", + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE", + "range": null, + "title": "Write", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-gap-service-gap-device-name-write-permissions", + "title": "GAP device name write permissions", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ROLE_PERIPHERAL && BT_NIMBLE_ENABLED", + "help": "Peripheral Preferred Connection Parameter: Connection Interval maximum value\nInterval Max = value * 1.25 ms", + "id": "BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL", + "name": "BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL", + "range": null, + "title": "PPCP Connection Interval Max (Unit: 1.25 ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ROLE_PERIPHERAL && BT_NIMBLE_ENABLED", + "help": "Peripheral Preferred Connection Parameter: Connection Interval minimum value\nInterval Min = value * 1.25 ms", + "id": "BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL", + "name": "BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL", + "range": null, + "title": "PPCP Connection Interval Min (Unit: 1.25 ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Peripheral Preferred Connection Parameter: Slave Latency", + "id": "BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY", + "name": "BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY", + "range": null, + "title": "PPCP Slave Latency", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Peripheral Preferred Connection Parameter: Supervision Timeout\nTimeout = Value * 10 ms", + "id": "BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO", + "name": "BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO", + "range": null, + "title": "PPCP Supervision Timeout (Uint: 10 ms)", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-gap-service", + "title": "GAP Service", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_HID_SERVICE && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of HID service instances", + "id": "BT_NIMBLE_SVC_HID_MAX_INSTANCES", + "name": "BT_NIMBLE_SVC_HID_MAX_INSTANCES", + "range": null, + "title": "Maximum HID service instances", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_HID_SERVICE && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of report characteristics per service instance", + "id": "BT_NIMBLE_SVC_HID_MAX_RPTS", + "name": "BT_NIMBLE_SVC_HID_MAX_RPTS", + "range": null, + "title": "Maximum HID Report characteristics per service instance", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable HID service support", + "id": "BT_NIMBLE_HID_SERVICE", + "is_menuconfig": true, + "name": "BT_NIMBLE_HID_SERVICE", + "range": null, + "title": "HID service", + "type": "menu" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-ble-services", + "title": "BLE Services", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This option is used to enable support for sending Vendor Specific HCI commands and handling\nVendor Specific HCI Events.", + "id": "BT_NIMBLE_VS_SUPPORT", + "name": "BT_NIMBLE_VS_SUPPORT", + "range": null, + "title": "Enable support for VSC and VSE", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_BLE_MULTI_CONN_OPTIMIZATION && BT_NIMBLE_ENABLED", + "help": "This option enables the use of vendor-specific APIs for multi-connections, which can\ngreatly enhance the stability of coexistence between numerous central and peripheral\ndevices. It will prohibit the usage of standard APIs.", + "id": "BT_NIMBLE_OPTIMIZE_MULTI_CONN", + "name": "BT_NIMBLE_OPTIMIZE_MULTI_CONN", + "range": null, + "title": "Enable the optimization of multi-connection", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENC_ADV_DATA && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of encrypted advertising data key material to save", + "id": "BT_NIMBLE_MAX_EADS", + "name": "BT_NIMBLE_MAX_EADS", + "range": null, + "title": "Maximum number of EAD devices to save across reboots", + "type": "int" + } + ], + "depends_on": "SOC_ESP_NIMBLE_CONTROLLER && BT_NIMBLE_ENABLED", + "help": "This option is used to enable encrypted advertising data.", + "id": "BT_NIMBLE_ENC_ADV_DATA", + "name": "BT_NIMBLE_ENC_ADV_DATA", + "range": null, + "title": "Encrypted Advertising Data", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This enable BLE high duty advertising interval feature", + "id": "BT_NIMBLE_HIGH_DUTY_ADV_ITVL", + "name": "BT_NIMBLE_HIGH_DUTY_ADV_ITVL", + "range": null, + "title": "Enable BLE high duty advertising interval feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "When scanning and scan duplicate is not enabled, if there are a lot of adv packets around\nor application layer handling adv packets is slow, it will cause the controller memory\nto run out. if enabled, adv packets will be lost when host queue is congested.", + "id": "BT_NIMBLE_HOST_QUEUE_CONG_CHECK", + "name": "BT_NIMBLE_HOST_QUEUE_CONG_CHECK", + "range": null, + "title": "BLE queue congestion check", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": "Uart port", + "id": "BT_NIMBLE_TRANSPORT_UART_PORT", + "name": "BT_NIMBLE_TRANSPORT_UART_PORT", + "range": null, + "title": "Uart port", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_BAUDRATE_115200", + "name": "UART_BAUDRATE_115200", + "range": null, + "title": "115200", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_BAUDRATE_230400", + "name": "UART_BAUDRATE_230400", + "range": null, + "title": "230400", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_BAUDRATE_460800", + "name": "UART_BAUDRATE_460800", + "range": null, + "title": "460800", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_BAUDRATE_921600", + "name": "UART_BAUDRATE_921600", + "range": null, + "title": "921600", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": "Uart Baud Rate", + "id": "component-config-bluetooth-nimble-options-host-controller-transport-enable-uart-transport-uart-hci-baud-rate", + "name": "BT_NIMBLE_HCI_USE_UART_BAUDRATE", + "title": "Uart Hci Baud Rate", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_HCI_UART_BAUDRATE", + "name": "BT_NIMBLE_HCI_UART_BAUDRATE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_PARITY_NONE", + "name": "UART_PARITY_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_PARITY_ODD", + "name": "UART_PARITY_ODD", + "range": null, + "title": "Odd", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_PARITY_EVEN", + "name": "UART_PARITY_EVEN", + "range": null, + "title": "Even", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": "Uart Parity", + "id": "component-config-bluetooth-nimble-options-host-controller-transport-enable-uart-transport-uart-parity", + "name": "BT_NIMBLE_USE_HCI_UART_PARITY", + "title": "Uart PARITY", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_TRANSPORT_UART_PARITY_NONE", + "name": "BT_NIMBLE_TRANSPORT_UART_PARITY_NONE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_TRANSPORT_UART_PARITY_ODD", + "name": "BT_NIMBLE_TRANSPORT_UART_PARITY_ODD", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_TRANSPORT_UART_PARITY_EVEN", + "name": "BT_NIMBLE_TRANSPORT_UART_PARITY_EVEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": "Rx pin for Nimble Transport", + "id": "BT_NIMBLE_UART_RX_PIN", + "name": "BT_NIMBLE_UART_RX_PIN", + "range": null, + "title": "UART Rx pin", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": "Tx pin for Nimble Transport", + "id": "BT_NIMBLE_UART_TX_PIN", + "name": "BT_NIMBLE_UART_TX_PIN", + "range": null, + "title": "UART Tx pin", + "type": "int" + } + ], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_ENABLED", + "help": "Use UART transport", + "id": "BT_NIMBLE_TRANSPORT_UART", + "name": "BT_NIMBLE_TRANSPORT_UART", + "range": null, + "title": "Enable Uart Transport", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_HW_FLOWCTRL_DISABLE", + "name": "UART_HW_FLOWCTRL_DISABLE", + "range": null, + "title": "Disable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_HW_FLOWCTRL_CTS_RTS", + "name": "UART_HW_FLOWCTRL_CTS_RTS", + "range": null, + "title": "Enable hardware flow control", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Uart Flow Control", + "id": "component-config-bluetooth-nimble-options-host-controller-transport-uart-flow-control", + "name": "BT_NIMBLE_USE_HCI_UART_FLOW_CTRL", + "title": "Uart Flow Control", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_HCI_UART_FLOW_CTRL", + "name": "BT_NIMBLE_HCI_UART_FLOW_CTRL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "UART HCI RTS pin", + "id": "BT_NIMBLE_HCI_UART_RTS_PIN", + "name": "BT_NIMBLE_HCI_UART_RTS_PIN", + "range": null, + "title": "UART Rts Pin", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "UART HCI CTS pin", + "id": "BT_NIMBLE_HCI_UART_CTS_PIN", + "name": "BT_NIMBLE_HCI_UART_CTS_PIN", + "range": null, + "title": "UART Cts Pin", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-host-controller-transport", + "title": "Host-controller Transport", + "type": "menu" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options", + "title": "NimBLE Options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_MODE_BLE_ONLY", + "name": "BTDM_CTRL_MODE_BLE_ONLY", + "range": null, + "title": "BLE Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_MODE_BR_EDR_ONLY", + "name": "BTDM_CTRL_MODE_BR_EDR_ONLY", + "range": null, + "title": "BR/EDR Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_MODE_BTDM", + "name": "BTDM_CTRL_MODE_BTDM", + "range": null, + "title": "Bluetooth Dual Mode", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Specify the bluetooth controller mode (BR/EDR, BLE or dual mode).", + "id": "component-config-bluetooth-controller-options-bluetooth-controller-mode-br-edr-ble-dualmode-", + "name": "BTDM_CTRL_MODE", + "title": "Bluetooth controller mode (BR/EDR/BLE/DUALMODE)", + "type": "choice" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "BLE maximum connections of bluetooth controller.\nEach connection uses 1KB static DRAM whenever the BT controller is enabled.", + "id": "BTDM_CTRL_BLE_MAX_CONN", + "name": "BTDM_CTRL_BLE_MAX_CONN", + "range": null, + "title": "BLE Max Connections", + "type": "int" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "BR/EDR ACL maximum connections of bluetooth controller.\nEach connection uses 1.2 KB DRAM whenever the BT controller is enabled.", + "id": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN", + "name": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN", + "range": null, + "title": "BR/EDR ACL Max Connections", + "type": "int" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "BR/EDR Synchronize maximum connections of bluetooth controller.\nEach connection uses 2 KB DRAM whenever the BT controller is enabled.", + "id": "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN", + "name": "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN", + "range": null, + "title": "BR/EDR Sync(SCO/eSCO) Max Connections", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_HCI", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_HCI", + "range": null, + "title": "HCI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_PCM", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_PCM", + "range": null, + "title": "PCM", + "type": "bool" + } + ], + "depends_on": "(BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "SCO data path, i.e. HCI or PCM.\nSCO data can be sent/received through HCI synchronous packets, or the data\ncan be routed to on-chip PCM module on ESP32. PCM input/output signals can\nbe \"matrixed\" to GPIOs. The default data path can also be set using API\n\"esp_bredr_sco_datapath_set\"", + "id": "component-config-bluetooth-controller-options-br-edr-sync-sco-esco-default-data-path", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH", + "title": "BR/EDR Sync(SCO/eSCO) default data path", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_PCM_ROLE_MASTER", + "name": "BTDM_CTRL_PCM_ROLE_MASTER", + "range": null, + "title": "PCM Master", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_PCM_ROLE_SLAVE", + "name": "BTDM_CTRL_PCM_ROLE_SLAVE", + "range": null, + "title": "PCM Slave", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_PCM_ROLE_EDGE_CONFIG && BT_CONTROLLER_ENABLED", + "help": "PCM role can be configured as PCM master or PCM slave", + "id": "component-config-bluetooth-controller-options-pcm-signal-config-role-and-polar--pcm-role", + "name": "BTDM_CTRL_PCM_ROLE", + "title": "PCM Role", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_PCM_POLAR_FALLING_EDGE", + "name": "BTDM_CTRL_PCM_POLAR_FALLING_EDGE", + "range": null, + "title": "Falling Edge", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_PCM_POLAR_RISING_EDGE", + "name": "BTDM_CTRL_PCM_POLAR_RISING_EDGE", + "range": null, + "title": "Rising Edge", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_PCM_ROLE_EDGE_CONFIG && BT_CONTROLLER_ENABLED", + "help": "PCM polarity can be configured as Falling Edge or Rising Edge", + "id": "component-config-bluetooth-controller-options-pcm-signal-config-role-and-polar--pcm-polar", + "name": "BTDM_CTRL_PCM_POLAR", + "title": "PCM Polar", + "type": "choice" + } + ], + "depends_on": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_PCM && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_PCM_ROLE_EDGE_CONFIG", + "is_menuconfig": true, + "name": "BTDM_CTRL_PCM_ROLE_EDGE_CONFIG", + "range": null, + "title": "PCM Signal Config (Role and Polar)", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_PCM_ROLE_EFF", + "name": "BTDM_CTRL_PCM_ROLE_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_PCM_POLAR_EFF", + "name": "BTDM_CTRL_PCM_POLAR_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_MODE_BTDM && BT_CONTROLLER_ENABLED", + "help": "BLE auto latency, used to enhance classic BT performance\nwhile classic BT and BLE are enabled at the same time.", + "id": "BTDM_CTRL_AUTO_LATENCY", + "name": "BTDM_CTRL_AUTO_LATENCY", + "range": null, + "title": "Auto latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_AUTO_LATENCY_EFF", + "name": "BTDM_CTRL_AUTO_LATENCY_EFF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "To protect from BIAS attack during Legacy authentication,\nLegacy authentication Vendor specific event should be enabled", + "id": "BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT", + "name": "BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT", + "range": null, + "title": "Legacy Authentication Vendor Specific Event Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT_EFF", + "name": "BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT_EFF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_BLE_MAX_CONN_EFF", + "name": "BTDM_CTRL_BLE_MAX_CONN_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF", + "name": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF", + "name": "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_PINNED_TO_CORE_0", + "name": "BTDM_CTRL_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0 (PRO CPU)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "BTDM_CTRL_PINNED_TO_CORE_1", + "name": "BTDM_CTRL_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1 (APP CPU)", + "type": "bool" + } + ], + "depends_on": "!FREERTOS_UNICORE && BT_CONTROLLER_ENABLED", + "help": "Specify the cpu core to run bluetooth controller.\nCan not specify no-affinity.", + "id": "component-config-bluetooth-controller-options-the-cpu-core-which-bluetooth-controller-run", + "name": "BTDM_CTRL_PINNED_TO_CORE_CHOICE", + "title": "The cpu core which bluetooth controller run", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_PINNED_TO_CORE", + "name": "BTDM_CTRL_PINNED_TO_CORE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Normal option. Mostly, choose this VHCI when bluetooth host run on ESP32, too.", + "id": "BTDM_CTRL_HCI_MODE_VHCI", + "name": "BTDM_CTRL_HCI_MODE_VHCI", + "range": null, + "title": "VHCI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If use external bluetooth host which run on other hardware and use UART as the HCI interface,\nchoose this option.", + "id": "BTDM_CTRL_HCI_MODE_UART_H4", + "name": "BTDM_CTRL_HCI_MODE_UART_H4", + "range": null, + "title": "UART(H4)", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Specify HCI mode as VHCI or UART(H4)", + "id": "component-config-bluetooth-controller-options-hci-mode", + "name": "BTDM_CTRL_HCI_MODE_CHOICE", + "title": "HCI mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_CTRL_HCI_MODE_UART_H4 && BT_CONTROLLER_ENABLED", + "help": "Uart number for HCI. The available uart is UART1 and UART2.", + "id": "BTDM_CTRL_HCI_UART_NO", + "name": "BTDM_CTRL_HCI_UART_NO", + "range": null, + "title": "UART Number for HCI", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_HCI_MODE_UART_H4 && BT_CONTROLLER_ENABLED", + "help": "UART Baudrate for HCI. Please use standard baudrate.", + "id": "BTDM_CTRL_HCI_UART_BAUDRATE", + "name": "BTDM_CTRL_HCI_UART_BAUDRATE", + "range": null, + "title": "UART Baudrate for HCI", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_HCI_MODE_UART_H4 && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_HCI_UART_FLOW_CTRL_EN", + "name": "BTDM_CTRL_HCI_UART_FLOW_CTRL_EN", + "range": null, + "title": "Enable UART flow control", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options-hci-uart-h4-options", + "title": "HCI UART(H4) Options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "ORIG mode is a bluetooth sleep mode that can be used for dual mode controller. In this mode,\nbluetooth controller sleeps between BR/EDR frames and BLE events. A low power clock is used to\nmaintain bluetooth reference clock.", + "id": "BTDM_CTRL_MODEM_SLEEP_MODE_ORIG", + "name": "BTDM_CTRL_MODEM_SLEEP_MODE_ORIG", + "range": null, + "title": "ORIG Mode(sleep with low power clock)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "EVED mode is for BLE only and is only for internal test. Do not use it for production. this\nmode is not compatible with DFS nor light sleep", + "id": "BTDM_CTRL_MODEM_SLEEP_MODE_EVED", + "name": "BTDM_CTRL_MODEM_SLEEP_MODE_EVED", + "range": null, + "title": "EVED Mode(For internal test only)", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_MODEM_SLEEP && BT_CONTROLLER_ENABLED", + "help": "To select which strategy to use for modem sleep", + "id": "component-config-bluetooth-controller-options-modem-sleep-options-bluetooth-modem-sleep-bluetooth-modem-sleep-mode", + "name": "BTDM_CTRL_MODEM_SLEEP_MODE", + "title": "Bluetooth Modem sleep mode", + "type": "choice" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Enable/disable bluetooth controller low power mode.", + "id": "BTDM_CTRL_MODEM_SLEEP", + "name": "BTDM_CTRL_MODEM_SLEEP", + "range": null, + "title": "Bluetooth modem sleep", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Main crystal can be used as low power clock for bluetooth modem sleep. If this option is\nselected, bluetooth modem sleep can work under Dynamic Frequency Scaling(DFS) enabled, but\ncannot work when light sleep is enabled. Main crystal has a good performance in accuracy as\nthe bluetooth low power clock source.", + "id": "BTDM_CTRL_LPCLK_SEL_MAIN_XTAL", + "name": "BTDM_CTRL_LPCLK_SEL_MAIN_XTAL", + "range": null, + "title": "Main crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "RTC_CLK_SRC_EXT_CRYS && ", + "help": "External 32kHz crystal has a nominal frequency of 32.768kHz and provides good frequency\nstability. If used as Bluetooth low power clock, External 32kHz can support Bluetooth\nmodem sleep to be used with both DFS and light sleep.", + "id": "BTDM_CTRL_LPCLK_SEL_EXT_32K_XTAL", + "name": "BTDM_CTRL_LPCLK_SEL_EXT_32K_XTAL", + "range": null, + "title": "External 32kHz crystal", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_MODEM_SLEEP_MODE_ORIG && BT_CONTROLLER_ENABLED", + "help": "Select the low power clock source for bluetooth controller. Bluetooth low power clock is\nthe clock source to maintain time in sleep mode.\n\n- \"Main crystal\" option provides good accuracy and can support Dynamic Frequency Scaling\n to be used with Bluetooth modem sleep. Light sleep is not supported.\n- \"External 32kHz crystal\" option allows user to use a 32.768kHz crystal as Bluetooth low\n power clock. This option is allowed as long as External 32kHz crystal is configured as\n the system RTC clock source. This option provides good accuracy and supports Bluetooth\n modem sleep to be used alongside Dynamic Frequency Scaling or light sleep.", + "id": "component-config-bluetooth-controller-options-modem-sleep-options-bluetooth-low-power-clock", + "name": "BTDM_CTRL_LOW_POWER_CLOCK", + "title": "Bluetooth low power clock", + "type": "choice" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options-modem-sleep-options", + "title": "MODEM SLEEP Options", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_CTRL_LPCLK_SEL_EXT_32K_XTAL && BTDM_CTRL_MODE_BLE_ONLY && ", + "help": null, + "id": "BTDM_BLE_DEFAULT_SCA_500PPM", + "name": "BTDM_BLE_DEFAULT_SCA_500PPM", + "range": null, + "title": "251ppm to 500ppm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_BLE_DEFAULT_SCA_250PPM", + "name": "BTDM_BLE_DEFAULT_SCA_250PPM", + "range": null, + "title": "151ppm to 250ppm", + "type": "bool" + } + ], + "depends_on": "(BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "BLE Sleep Clock Accuracy(SCA) for the local device is used to estimate window widening in BLE\nconnection events. With a lower level of clock accuracy(e.g. 500ppm over 250ppm), the slave\nneeds a larger RX window to synchronize with master in each anchor point, thus resulting in an\nincrease of power consumption but a higher level of robustness in keeping connected. According\nto the requirements of Bluetooth Core specification 4.2, the worst-case accuracy of Classic\nBluetooth low power oscialltor(LPO) is +/-250ppm in STANDBY and in low power modes such as\nsniff. For BLE the worst-case SCA is +/-500ppm.\n\n- \"151ppm to 250ppm\" option is the default value for Bluetooth Dual mode\n- \"251ppm to 500ppm\" option can be used in BLE only mode when using external 32kHz crystal as\n low power clock. This option is provided in case that BLE sleep clock has a lower level of\n accuracy, or other error sources contribute to the inaccurate timing during sleep.", + "id": "component-config-bluetooth-controller-options-ble-sleep-clock-accuracy", + "name": "BTDM_BLE_SLEEP_CLOCK_ACCURACY", + "title": "BLE Sleep Clock Accuracy", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF", + "name": "BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This way is to use advertiser address filtering. The adv packet of the same address is only\nallowed to be reported once", + "id": "BTDM_SCAN_DUPL_TYPE_DEVICE", + "name": "BTDM_SCAN_DUPL_TYPE_DEVICE", + "range": null, + "title": "Scan Duplicate By Device Address", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This way is to use advertising data filtering. All same advertising data only allow to be reported\nonce even though they are from different devices.", + "id": "BTDM_SCAN_DUPL_TYPE_DATA", + "name": "BTDM_SCAN_DUPL_TYPE_DATA", + "range": null, + "title": "Scan Duplicate By Advertising Data", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This way is to use advertising data and device address filtering. All different adv packets with\nthe same address are allowed to be reported.", + "id": "BTDM_SCAN_DUPL_TYPE_DATA_DEVICE", + "name": "BTDM_SCAN_DUPL_TYPE_DATA_DEVICE", + "range": null, + "title": "Scan Duplicate By Device Address And Advertising Data", + "type": "bool" + } + ], + "depends_on": "BTDM_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "help": "Scan duplicate have three ways. one is \"Scan Duplicate By Device Address\", This way is to use\nadvertiser address filtering. The adv packet of the same address is only allowed to be reported once.\nAnother way is \"Scan Duplicate By Device Address And Advertising Data\". This way is to use advertising\ndata and device address filtering. All different adv packets with the same address are allowed to be\nreported. The last way is \"Scan Duplicate By Advertising Data\". This way is to use advertising data\nfiltering. All same advertising data only allow to be reported once even though they are from\ndifferent devices.", + "id": "component-config-bluetooth-controller-options-ble-scan-duplicate-options-scan-duplicate-type", + "name": "BTDM_SCAN_DUPL_TYPE", + "title": "Scan Duplicate Type", + "type": "choice" + }, + { + "children": [], + "depends_on": "BTDM_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_SCAN_DUPL_TYPE", + "name": "BTDM_SCAN_DUPL_TYPE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "help": "Maximum number of devices which can be recorded in scan duplicate filter.\nWhen the maximum amount of device in the filter is reached, the oldest device will be refreshed.", + "id": "BTDM_SCAN_DUPL_CACHE_SIZE", + "name": "BTDM_SCAN_DUPL_CACHE_SIZE", + "range": null, + "title": "Maximum number of devices in scan duplicate filter", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "help": "If the period value is non-zero, the controller will periodically clear the device information\nstored in the scan duuplicate filter. If it is 0, the scan duuplicate filter will not be cleared\nuntil the scanning is disabled. Duplicate advertisements for this period should not be sent to the\nHost in advertising report events.\nThere are two scenarios where the ADV packet will be repeatedly reported:\n1. The duplicate scan cache is full, the controller will delete the oldest device information and\nadd new device information.\n2. When the refresh period is up, the controller will clear all device information and start filtering\nagain.", + "id": "BTDM_SCAN_DUPL_CACHE_REFRESH_PERIOD", + "name": "BTDM_SCAN_DUPL_CACHE_REFRESH_PERIOD", + "range": null, + "title": "Duplicate scan list refresh period (seconds)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_BLE_MESH_SCAN_DUPL_EN && BT_CONTROLLER_ENABLED", + "help": "Maximum number of adv packets which can be recorded in duplicate scan cache for BLE Mesh.\nWhen the maximum amount of device in the filter is reached, the cache will be refreshed.", + "id": "BTDM_MESH_DUPL_SCAN_CACHE_SIZE", + "name": "BTDM_MESH_DUPL_SCAN_CACHE_SIZE", + "range": null, + "title": "Maximum number of Mesh adv packets in scan duplicate filter", + "type": "int" + } + ], + "depends_on": "BTDM_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "help": "This enables the BLE scan duplicate for special BLE Mesh scan.", + "id": "BTDM_BLE_MESH_SCAN_DUPL_EN", + "name": "BTDM_BLE_MESH_SCAN_DUPL_EN", + "range": null, + "title": "Special duplicate scan mechanism for BLE Mesh scan", + "type": "bool" + } + ], + "depends_on": "(BTDM_CTRL_MODE_BTDM || BTDM_CTRL_MODE_BLE_ONLY) && BT_CONTROLLER_ENABLED", + "help": "This select enables parameters setting of BLE scan duplicate.", + "id": "BTDM_BLE_SCAN_DUPL", + "name": "BTDM_BLE_SCAN_DUPL", + "range": null, + "title": "BLE Scan Duplicate Options", + "type": "bool" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "The full scan function is mainly used to provide BLE scan performance.\nThis is required for scenes with high scan performance requirements, such as BLE Mesh scenes.", + "id": "BTDM_CTRL_FULL_SCAN_SUPPORTED", + "name": "BTDM_CTRL_FULL_SCAN_SUPPORTED", + "range": null, + "title": "BLE full scan feature supported", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Disable active scan backoff. The bluetooth spec requires that scanners should run a backoff procedure to\nminimize collision of scan request PDUs from nultiple scanners. If scan backoff is disabled, in active\nscanning, scan request PDU will be sent every time when HW receives scannable ADV PDU.", + "id": "BTDM_CTRL_SCAN_BACKOFF_UPPERLIMITMAX", + "name": "BTDM_CTRL_SCAN_BACKOFF_UPPERLIMITMAX", + "range": null, + "title": "Disable active scan backoff", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP && BT_CONTROLLER_ENABLED", + "help": "The number of unprocessed advertising report that Bluedroid can save.If you set\n`BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a small value, this may cause adv packets lost.\nIf you set `BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a large value, Bluedroid may cache a\nlot of adv packets and this may cause system memory run out. For example, if you set\nit to 50, the maximum memory consumed by host is 35 * 50 bytes. Please set\n`BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM` according to your system free memory and handle adv\npackets as fast as possible, otherwise it will cause adv packets lost.", + "id": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM", + "name": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM", + "range": null, + "title": "BLE adv report flow control number", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP && BT_CONTROLLER_ENABLED", + "help": "When adv report flow control is enabled, The ADV lost event will be generated when the number\nof ADV packets lost in the controller reaches this threshold. It is better to set a larger value.\nIf you set `BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD` to a small value or printf every adv lost event, it\nmay cause adv packets lost more.", + "id": "BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD", + "name": "BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD", + "range": null, + "title": "BLE adv lost event threshold value", + "type": "int" + } + ], + "depends_on": "(BTDM_CTRL_MODE_BTDM || BTDM_CTRL_MODE_BLE_ONLY) && BT_CONTROLLER_ENABLED", + "help": "The function is mainly used to enable flow control for advertising reports. When it is enabled,\nadvertising reports will be discarded by the controller if the number of unprocessed advertising\nreports exceeds the size of BLE adv report flow control.", + "id": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "name": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "range": null, + "title": "BLE adv report flow control supported", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_RESERVE_DRAM", + "name": "BTDM_RESERVE_DRAM", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": "BT_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Using Level 4 interrupt for Bluetooth.", + "id": "BTDM_CTRL_HLI", + "name": "BTDM_CTRL_HLI", + "range": null, + "title": "High level interrupt", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options", + "title": "Controller Options", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_ENABLED && BT_LE_RELEASE_IRAM_SUPPORTED", + "help": "This option release Bluetooth text section and merge Bluetooth data, bss & text into\na large free heap region when esp_bt_mem_release is called, total saving ~21kB or more of IRAM.\nESP32-C2 only 3 configurable PMP entries available, rest of them are hard-coded.\nWe cannot split the memory into 3 different regions (IRAM, BLE-IRAM, DRAM).\nSo this option will disable the PMP (ESP_SYSTEM_PMP_IDRAM_SPLIT)", + "id": "BT_RELEASE_IRAM", + "name": "BT_RELEASE_IRAM", + "range": null, + "title": "Release Bluetooth text (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_HCI_LOG_DEBUG_EN", + "help": "This option is to configure the buffer size of the hci data steam cache in hci debug mode.\nThis is a ring buffer, the new data will overwrite the oldest data if the buffer is full.", + "id": "BT_HCI_LOG_DATA_BUFFER_SIZE", + "name": "BT_HCI_LOG_DATA_BUFFER_SIZE", + "range": null, + "title": "Size of the cache used for HCI data in Bluetooth HCI debug mode (N*1024 bytes)", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_HCI_LOG_DEBUG_EN", + "help": "This option is to configure the buffer size of the hci adv report cache in hci debug mode.\nThis is a ring buffer, the new data will overwrite the oldest data if the buffer is full.", + "id": "BT_HCI_LOG_ADV_BUFFER_SIZE", + "name": "BT_HCI_LOG_ADV_BUFFER_SIZE", + "range": null, + "title": "Size of the cache used for adv report in Bluetooth HCI debug mode (N*1024 bytes)", + "type": "int" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED || BT_NIMBLE_ENABLED", + "help": "This option is used to enable bluetooth debug mode, which saves the hci layer data stream.", + "id": "BT_HCI_LOG_DEBUG_EN", + "name": "BT_HCI_LOG_DEBUG_EN", + "range": null, + "title": "Enable Bluetooth HCI debug mode", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This option decides the maximum number of alarms which\ncould be used by Bluetooth host.", + "id": "BT_ALARM_MAX_NUM", + "name": "BT_ALARM_MAX_NUM", + "range": null, + "title": "Maximum number of Bluetooth alarms", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-bluetooth-common-options", + "title": "Common Options", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-bluetooth", + "title": "Bluetooth", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "It is a temporary solution and needs further modifications.", + "id": "BLE_MESH_HCI_5_0", + "name": "BLE_MESH_HCI_5_0", + "range": null, + "title": "Support sending 20ms non-connectable adv packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to allow using random advertising interval\nfor mesh packets. And this could help avoid collision of\nadvertising packets.", + "id": "BLE_MESH_RANDOM_ADV_INTERVAL", + "name": "BLE_MESH_RANDOM_ADV_INTERVAL", + "range": null, + "title": "Support using random adv interval for mesh packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to allow using specific duplicate scan filter\nin BLE Mesh, and Scan Duplicate Type must be set by choosing the\noption in the Bluetooth Controller section in menuconfig, which is\n\"Scan Duplicate By Device Address and Advertising Data\".", + "id": "BLE_MESH_USE_DUPLICATE_SCAN", + "name": "BLE_MESH_USE_DUPLICATE_SCAN", + "range": null, + "title": "Support Duplicate Scan in BLE Mesh", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to allow using BLE Active Scan for BLE Mesh.", + "id": "BLE_MESH_ACTIVE_SCAN", + "name": "BLE_MESH_ACTIVE_SCAN", + "range": null, + "title": "Support Active Scan in BLE Mesh", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_MEM_ALLOC_MODE_INTERNAL", + "name": "BLE_MESH_MEM_ALLOC_MODE_INTERNAL", + "range": null, + "title": "Internal DRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", + "help": null, + "id": "BLE_MESH_MEM_ALLOC_MODE_EXTERNAL", + "name": "BLE_MESH_MEM_ALLOC_MODE_EXTERNAL", + "range": null, + "title": "External SPIRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable this option to use the default memory allocation strategy when\nexternal SPIRAM is enabled. See the SPIRAM options for more details.", + "id": "BLE_MESH_MEM_ALLOC_MODE_DEFAULT", + "name": "BLE_MESH_MEM_ALLOC_MODE_DEFAULT", + "range": null, + "title": "Default alloc mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", + "help": "Allows to use IRAM memory region as 8bit accessible region. Every\nunaligned (8bit or 16bit) access will result in an exception and\nincur penalty of certain clock cycles per unaligned read/write.", + "id": "BLE_MESH_MEM_ALLOC_MODE_IRAM_8BIT", + "name": "BLE_MESH_MEM_ALLOC_MODE_IRAM_8BIT", + "range": null, + "title": "Internal IRAM", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "Allocation strategy for BLE Mesh stack, 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- 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-esp-ble-mesh-support-memory-allocation-strategy", + "name": "BLE_MESH_MEM_ALLOC_MODE", + "title": "Memory allocation strategy", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && SPIRAM && ", + "help": "If enabled, BLE Mesh allocates dynamic memory from external SPIRAM for\nFreeRTOS objects, i.e. mutex, queue, and task stack. External SPIRAM\ncan only be used for task stack when SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY\nis enabled. See the SPIRAM options for more details.", + "id": "BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL", + "name": "BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL", + "range": null, + "title": "External SPIRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", + "help": "If enabled, BLE Mesh allocates dynamic memory from internal IRAM for\nFreeRTOS objects, i.e. mutex, queue. Note: IRAM region cannot be used\nas task stack.", + "id": "BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT", + "name": "BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT", + "range": null, + "title": "Internal IRAM", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_FREERTOS_STATIC_ALLOC && BLE_MESH", + "help": "Choose the memory to be used for FreeRTOS objects.", + "id": "component-config-esp-ble-mesh-support-enable-freertos-static-allocation-memory-allocation-for-freertos-objects", + "name": "BLE_MESH_FREERTOS_STATIC_ALLOC_MODE", + "title": "Memory allocation for FreeRTOS objects", + "type": "choice" + } + ], + "depends_on": "FREERTOS_SUPPORT_STATIC_ALLOCATION && ((IDF_TARGET_ESP32 && SPIRAM) || ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY) && BLE_MESH", + "help": "Enable this option to use FreeRTOS static allocation APIs for BLE Mesh,\nwhich provides the ability to use different dynamic memory (i.e. SPIRAM\nor IRAM) for FreeRTOS objects.\nIf this option is disabled, the FreeRTOS static allocation APIs will not\nbe used, and internal DRAM will be allocated for FreeRTOS objects.", + "id": "BLE_MESH_FREERTOS_STATIC_ALLOC", + "name": "BLE_MESH_FREERTOS_STATIC_ALLOC", + "range": null, + "title": "Enable FreeRTOS static allocation", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "If enabled, users can use the function esp_ble_mesh_deinit() to de-initialize\nthe whole BLE Mesh stack.", + "id": "BLE_MESH_DEINIT", + "name": "BLE_MESH_DEINIT", + "range": null, + "title": "Support de-initialize BLE Mesh stack", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_SUPPORT_BLE_ADV && BLE_MESH", + "help": "Number of advertising buffers for BLE packets available.", + "id": "BLE_MESH_BLE_ADV_BUF_COUNT", + "name": "BLE_MESH_BLE_ADV_BUF_COUNT", + "range": null, + "title": "Number of advertising buffers for BLE advertising packets", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "help": "When selected, users can send normal BLE advertising packets\nwith specific API.", + "id": "BLE_MESH_SUPPORT_BLE_ADV", + "name": "BLE_MESH_SUPPORT_BLE_ADV", + "range": null, + "title": "Support sending normal BLE advertising packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "When selected, users can register a callback and receive normal BLE\nadvertising packets in the application layer.", + "id": "BLE_MESH_SUPPORT_BLE_SCAN", + "name": "BLE_MESH_SUPPORT_BLE_SCAN", + "range": null, + "title": "Support scanning normal BLE advertising packets", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-ble-mesh-and-ble-coexistence-support", + "title": "BLE Mesh and BLE coexistence support", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to allow BLE Mesh fast provisioning solution to be used.\nWhen there are multiple unprovisioned devices around, fast provisioning can\ngreatly reduce the time consumption of the whole provisioning process.\nWhen this option is enabled, and after an unprovisioned device is provisioned\ninto a node successfully, it can be changed to a temporary Provisioner.", + "id": "BLE_MESH_FAST_PROV", + "name": "BLE_MESH_FAST_PROV", + "range": null, + "title": "Enable BLE Mesh Fast Provisioning", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable the device to be provisioned into a node. This option should be\nenabled when an unprovisioned device is going to be provisioned into a\nnode and communicate with other nodes in the BLE Mesh network.", + "id": "BLE_MESH_NODE", + "name": "BLE_MESH_NODE", + "range": null, + "title": "Support for BLE Mesh Node", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many unprovisioned devices can be added to device\nqueue for provisioning. Users can use this option to define the size of the\nqueue in the bottom layer which is used to store unprovisioned device\ninformation (e.g. Device UUID, address).", + "id": "BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM", + "name": "BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM", + "range": null, + "title": "Maximum number of unprovisioned devices that can be added to device queue", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many devices can be provisioned by a Provisioner.\nThis value indicates the maximum number of unprovisioned devices which can be\nprovisioned by a Provisioner. For instance, if the value is 6, it means the\nProvisioner can provision up to 6 unprovisioned devices.\nTheoretically a Provisioner without the limitation of its memory can provision\nup to 32766 unprovisioned devices, here we limit the maximum number to 100\njust to limit the memory used by a Provisioner. The bigger the value is, the\nmore memory it will cost by a Provisioner to store the information of nodes.", + "id": "BLE_MESH_MAX_PROV_NODES", + "name": "BLE_MESH_MAX_PROV_NODES", + "range": null, + "title": "Maximum number of devices that can be provisioned by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PB_ADV && BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many devices can be provisioned at the same time\nusing PB-ADV. For examples, if the value is 2, it means a Provisioner can\nprovision two unprovisioned devices with PB-ADV at the same time.", + "id": "BLE_MESH_PBA_SAME_TIME", + "name": "BLE_MESH_PBA_SAME_TIME", + "range": null, + "title": "Maximum number of PB-ADV running at the same time by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PB_GATT && BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many devices can be provisioned at the same\ntime using PB-GATT. For example, if the value is 2, it means a Provisioner\ncan provision two unprovisioned devices with PB-GATT at the same time.", + "id": "BLE_MESH_PBG_SAME_TIME", + "name": "BLE_MESH_PBG_SAME_TIME", + "range": null, + "title": "Maximum number of PB-GATT running at the same time by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many subnets per network a Provisioner can create.\nIndeed, this value decides the number of network keys which can be added by a Provisioner.", + "id": "BLE_MESH_PROVISIONER_SUBNET_COUNT", + "name": "BLE_MESH_PROVISIONER_SUBNET_COUNT", + "range": null, + "title": "Maximum number of mesh subnets that can be created by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many application keys the Provisioner can have.\nIndeed, this value decides the number of the application keys which can be added by a Provisioner.", + "id": "BLE_MESH_PROVISIONER_APP_KEY_COUNT", + "name": "BLE_MESH_PROVISIONER_APP_KEY_COUNT", + "range": null, + "title": "Maximum number of application keys that can be owned by Provisioner", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER_RECV_HB && BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many heartbeat filter entries Provisioner supports.\nThe heartbeat filter (acceptlist or rejectlist) entries are used to store a\nlist of SRC and DST which can be used to decide if a heartbeat message will\nbe processed and notified to the application layer by Provisioner.\nNote: The filter is an empty rejectlist by default.", + "id": "BLE_MESH_PROVISIONER_RECV_HB_FILTER_SIZE", + "name": "BLE_MESH_PROVISIONER_RECV_HB_FILTER_SIZE", + "range": null, + "title": "Maximum number of filter entries for receiving Heartbeat messages", + "type": "int" + } + ], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "help": "When this option is enabled, Provisioner can call specific functions to enable\nor disable receiving Heartbeat messages and notify them to the application layer.", + "id": "BLE_MESH_PROVISIONER_RECV_HB", + "name": "BLE_MESH_PROVISIONER_RECV_HB", + "range": null, + "title": "Support receiving Heartbeat messages", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable the device to be a Provisioner. The option should be enabled when\na device is going to act as a Provisioner and provision unprovisioned\ndevices into the BLE Mesh network.", + "id": "BLE_MESH_PROVISIONER", + "name": "BLE_MESH_PROVISIONER", + "range": null, + "title": "Support for BLE Mesh Provisioner", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROV && BLE_MESH", + "help": "Enable this option to support BLE Mesh enhanced provisioning authentication\nfunctionality. This option can increase the security level of provisioning.\nIt is recommended to enable this option.", + "id": "BLE_MESH_PROV_EPA", + "name": "BLE_MESH_PROV_EPA", + "range": null, + "title": "BLE Mesh enhanced provisioning authentication", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_CERT_BASED_PROV && BLE_MESH", + "help": "This option sets the maximum size of the provisioning record fragment that the\nProvisioner can receive. The range depends on provisioning bearer.", + "id": "BLE_MESH_RECORD_FRAG_MAX_SIZE", + "name": "BLE_MESH_RECORD_FRAG_MAX_SIZE", + "range": null, + "title": "Maximum size of the provisioning record fragment that Provisioner can receive", + "type": "int" + } + ], + "depends_on": "BLE_MESH_PROV && BLE_MESH", + "help": "Enable this option to support BLE Mesh Certificate-Based Provisioning.", + "id": "BLE_MESH_CERT_BASED_PROV", + "name": "BLE_MESH_CERT_BASED_PROV", + "range": null, + "title": "Support Certificate-based provisioning", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable this option to support BLE Mesh Provisioning functionality. For\nBLE Mesh, this option should be always enabled.", + "id": "BLE_MESH_PROV", + "name": "BLE_MESH_PROV", + "range": null, + "title": "BLE Mesh Provisioning support", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_NODE && BLE_MESH_PB_ADV && BLE_MESH", + "help": "This option specifies the interval of sending two consecutive unprovisioned\ndevice beacon, users can use this option to change the frequency of sending\nunprovisioned device beacon. For example, if the value is 5, it means the\nunprovisioned device beacon will send every 5 seconds. When the option of\nBLE_MESH_FAST_PROV is selected, the value is better to be 3 seconds, or less.", + "id": "BLE_MESH_UNPROVISIONED_BEACON_INTERVAL", + "name": "BLE_MESH_UNPROVISIONED_BEACON_INTERVAL", + "range": null, + "title": "Interval between two consecutive Unprovisioned Device Beacon", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable this option to allow the device to be provisioned over the\nadvertising bearer. This option should be enabled if PB-ADV is\ngoing to be used during provisioning procedure.", + "id": "BLE_MESH_PB_ADV", + "name": "BLE_MESH_PB_ADV", + "range": null, + "title": "Provisioning support using the advertising bearer (PB-ADV)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to allow the device to be provisioned over GATT.\nThis option should be enabled if PB-GATT is going to be used during\nprovisioning procedure.\n\n# Virtual option enabled whenever any Proxy protocol is needed", + "id": "BLE_MESH_PB_GATT", + "name": "BLE_MESH_PB_GATT", + "range": null, + "title": "Provisioning support using GATT (PB-GATT)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to support BLE Mesh Proxy protocol used by PB-GATT\nand other proxy pdu transmission.", + "id": "BLE_MESH_PROXY", + "name": "BLE_MESH_PROXY", + "range": null, + "title": "BLE Mesh Proxy protocol support", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH", + "help": "This option determines for how long the local node advertises using\nNode Identity. The given value is in seconds. The specification limits\nthis to 60 seconds and lists it as the recommended value as well.\nSo leaving the default value is the safest option.\nWhen an unprovisioned device is provisioned successfully and becomes a\nnode, it will start to advertise using Node Identity during the time\nset by this option. And after that, Network ID will be advertised.", + "id": "BLE_MESH_NODE_ID_TIMEOUT", + "name": "BLE_MESH_NODE_ID_TIMEOUT", + "range": null, + "title": "Node Identity advertising timeout", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH", + "help": "This option specifies how many Proxy Filter entries the local node supports.\nThe entries of Proxy filter (whitelist or blacklist) are used to store a\nlist of addresses which can be used to decide which messages will be forwarded\nto the Proxy Client by the Proxy Server.", + "id": "BLE_MESH_PROXY_FILTER_SIZE", + "name": "BLE_MESH_PROXY_FILTER_SIZE", + "range": null, + "title": "Maximum number of filter entries per Proxy Client", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PRB_SRV && BLE_MESH_GATT_PROXY_SERVER && BLE_MESH", + "help": "The Proxy Privacy parameter controls the privacy of the Proxy Server\nover the connection. The value of the Proxy Privacy parameter is\ncontrolled by the type of proxy connection, which is dependent on the\nbearer used by the proxy connection.", + "id": "BLE_MESH_PROXY_PRIVACY", + "name": "BLE_MESH_PROXY_PRIVACY", + "range": null, + "title": "Support Proxy Privacy", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_RX && BLE_MESH", + "help": "This option specifies the maximum capacity of the solicitation replay\nprotection list. The solicitation replay protection list is used to\nreject Solicitation PDUs that were already processed by a node, which\nwill store the solicitation src and solicitation sequence number of\nthe received Solicitation PDU message.", + "id": "BLE_MESH_PROXY_SOLIC_RX_CRPL", + "name": "BLE_MESH_PROXY_SOLIC_RX_CRPL", + "range": null, + "title": "Maximum capacity of solicitation replay protection list", + "type": "int" + } + ], + "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH", + "help": "Enable this option to support receiving Proxy Solicitation PDU.", + "id": "BLE_MESH_PROXY_SOLIC_PDU_RX", + "name": "BLE_MESH_PROXY_SOLIC_PDU_RX", + "range": null, + "title": "Support receiving Proxy Solicitation PDU", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_NODE && BLE_MESH", + "help": "This option enables support for Mesh GATT Proxy Service, i.e. the\nability to act as a proxy between a Mesh GATT Client and a Mesh network.\nThis option should be enabled if a node is going to be a Proxy Server.", + "id": "BLE_MESH_GATT_PROXY_SERVER", + "name": "BLE_MESH_GATT_PROXY_SERVER", + "range": null, + "title": "BLE Mesh GATT Proxy Server", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_TX && BLE_MESH", + "help": "This option specifies the maximum number of Solicitation Source (SSRC)\nthat can be used by Proxy Client for sending a Solicitation PDU.\nA Proxy Client may use the primary address or any of the secondary\naddresses as the SSRC for a Solicitation PDU.\nSo for a Proxy Client, it's better to choose the value based on its\nown element count.", + "id": "BLE_MESH_PROXY_SOLIC_TX_SRC_COUNT", + "name": "BLE_MESH_PROXY_SOLIC_TX_SRC_COUNT", + "range": null, + "title": "Maximum number of SSRC that can be used by Proxy Client", + "type": "int" + } + ], + "depends_on": "BLE_MESH_GATT_PROXY_CLIENT && BLE_MESH", + "help": "Enable this option to support sending Proxy Solicitation PDU.", + "id": "BLE_MESH_PROXY_SOLIC_PDU_TX", + "name": "BLE_MESH_PROXY_SOLIC_PDU_TX", + "range": null, + "title": "Support sending Proxy Solicitation PDU", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "This option enables support for Mesh GATT Proxy Client. The Proxy Client\ncan use the GATT bearer to send mesh messages to a node that supports the\nadvertising bearer.", + "id": "BLE_MESH_GATT_PROXY_CLIENT", + "name": "BLE_MESH_GATT_PROXY_CLIENT", + "range": null, + "title": "BLE Mesh GATT Proxy Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable BLE Mesh net buffer pool tracking. This option is used to introduce another\nvariable in the bottom layer to record the usage of advertising buffers of BLE Mesh\ndevices. Recommend to enable this option as default.", + "id": "BLE_MESH_NET_BUF_POOL_USAGE", + "name": "BLE_MESH_NET_BUF_POOL_USAGE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", + "help": "This value defines in seconds how soon any pending changes are actually\nwritten into persistent storage (flash) after a change occurs.\nThe option allows nodes to delay a certain period of time to save proper\ninformation to flash. The default value is 0, which means information\nwill be stored immediately once there are updates.", + "id": "BLE_MESH_STORE_TIMEOUT", + "name": "BLE_MESH_STORE_TIMEOUT", + "range": null, + "title": "Delay (in seconds) before storing anything persistently", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", + "help": "This value defines how often the local sequence number gets updated in\npersistent storage (i.e. flash). e.g. a value of 100 means that the\nsequence number will be stored to flash on every 100th increment.\nIf the node sends messages very frequently a higher value makes more\nsense, whereas if the node sends infrequently a value as low as 0\n(update storage for every increment) can make sense. When the stack\ngets initialized it will add sequence number to the last stored one,\nso that it starts off with a value that's guaranteed to be larger than\nthe last one used before power off.", + "id": "BLE_MESH_SEQ_STORE_RATE", + "name": "BLE_MESH_SEQ_STORE_RATE", + "range": null, + "title": "How often the sequence number gets updated in storage", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", + "help": "This value defines in seconds how soon the RPL (Replay Protection List)\ngets written to persistent storage after a change occurs. If the node\nreceives messages frequently, then a large value is recommended. If the\nnode receives messages rarely, then the value can be as low as 0 (which\nmeans the RPL is written into the storage immediately).\nNote that if the node operates in a security-sensitive case, and there is\na risk of sudden power-off, then a value of 0 is strongly recommended.\nOtherwise, a power loss before RPL being written into the storage may\nintroduce message replay attacks and system security will be in a\nvulnerable state.", + "id": "BLE_MESH_RPL_STORE_TIMEOUT", + "name": "BLE_MESH_RPL_STORE_TIMEOUT", + "range": null, + "title": "Minimum frequency that the RPL gets updated in storage", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_NODE && BLE_MESH_SETTINGS && BLE_MESH", + "help": "This option is created to solve the issue of failure in recovering\nnode information after mesh stack updates. In the old version mesh\nstack, there is no key of \"mesh/role\" in nvs. In the new version\nmesh stack, key of \"mesh/role\" is added in nvs, recovering node\ninformation needs to check \"mesh/role\" key in nvs and implements\nselective recovery of mesh node information. Therefore, there may\nbe failure in recovering node information during node restarting\nafter OTA.\n\nThe new version mesh stack adds the option of \"mesh/role\" because\nwe have added the support of storing Provisioner information, while\nthe old version only supports storing node information.\n\nIf users are updating their nodes from old version to new version,\nwe recommend enabling this option, so that system could set the flag\nin advance before recovering node information and make sure the node\ninformation recovering could work as expected.", + "id": "BLE_MESH_SETTINGS_BACKWARD_COMPATIBILITY", + "name": "BLE_MESH_SETTINGS_BACKWARD_COMPATIBILITY", + "range": null, + "title": "A specific option for settings backward compatibility", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_SPECIFIC_PARTITION && BLE_MESH_SETTINGS && BLE_MESH", + "help": "This value defines the name of the specified NVS partition used by the\nmesh stack.", + "id": "BLE_MESH_PARTITION_NAME", + "name": "BLE_MESH_PARTITION_NAME", + "range": null, + "title": "Name of the NVS partition for BLE Mesh", + "type": "string" + } + ], + "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", + "help": "When selected, the mesh stack will use a specified NVS partition instead of\ndefault NVS partition. Note that the specified partition must be registered\nwith NVS using nvs_flash_init_partition() API, and the partition must exists\nin the csv file.\nWhen Provisioner needs to store a large amount of nodes' information in the\nflash (e.g. more than 20), this option is recommended to be enabled.", + "id": "BLE_MESH_SPECIFIC_PARTITION", + "name": "BLE_MESH_SPECIFIC_PARTITION", + "range": null, + "title": "Use a specific NVS partition for BLE Mesh", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_USE_MULTIPLE_NAMESPACE && BLE_MESH_SETTINGS && BLE_MESH", + "help": "This option specifies the maximum NVS namespaces supported by Provisioner.", + "id": "BLE_MESH_MAX_NVS_NAMESPACE", + "name": "BLE_MESH_MAX_NVS_NAMESPACE", + "range": null, + "title": "Maximum number of NVS namespaces", + "type": "int" + } + ], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH_SETTINGS && BLE_MESH", + "help": "When selected, Provisioner can use different NVS namespaces to store\ndifferent instances of mesh information.\nFor example, if in the first room, Provisioner uses NetKey A, AppKey\nA and provisions three devices, these information will be treated as\nmesh information instance A. When the Provisioner moves to the second\nroom, it uses NetKey B, AppKey B and provisions two devices, then the\ninformation will be treated as mesh information instance B.\nHere instance A and instance B will be stored in different namespaces.\nWith this option enabled, Provisioner needs to use specific functions\nto open the corresponding NVS namespace, restore the mesh information,\nrelease the mesh information or erase the mesh information.", + "id": "BLE_MESH_USE_MULTIPLE_NAMESPACE", + "name": "BLE_MESH_USE_MULTIPLE_NAMESPACE", + "range": null, + "title": "Support using multiple NVS namespaces by Provisioner", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "When selected, the BLE Mesh stack will take care of storing/restoring the BLE\nMesh configuration persistently in flash.\nIf the device is a BLE Mesh node, when this option is enabled, the configuration\nof the device will be stored persistently, including unicast address, NetKey,\nAppKey, etc.\nAnd if the device is a BLE Mesh Provisioner, the information of the device will\nbe stored persistently, including the information of provisioned nodes, NetKey,\nAppKey, etc.", + "id": "BLE_MESH_SETTINGS", + "name": "BLE_MESH_SETTINGS", + "range": null, + "title": "Store BLE Mesh configuration persistently", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies how many subnets a Mesh network can have at the same time.\nIndeed, this value decides the number of the network keys which can be owned by a node.", + "id": "BLE_MESH_SUBNET_COUNT", + "name": "BLE_MESH_SUBNET_COUNT", + "range": null, + "title": "Maximum number of mesh subnets per network", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies how many application keys the device can store per network.\nIndeed, this value decides the number of the application keys which can be owned by a node.", + "id": "BLE_MESH_APP_KEY_COUNT", + "name": "BLE_MESH_APP_KEY_COUNT", + "range": null, + "title": "Maximum number of application keys per network", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies the maximum number of application keys to which each model\ncan be bound.", + "id": "BLE_MESH_MODEL_KEY_COUNT", + "name": "BLE_MESH_MODEL_KEY_COUNT", + "range": null, + "title": "Maximum number of application keys per model", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies the maximum number of addresses to which each model can\nbe subscribed.", + "id": "BLE_MESH_MODEL_GROUP_COUNT", + "name": "BLE_MESH_MODEL_GROUP_COUNT", + "range": null, + "title": "Maximum number of group address subscriptions per model", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies how many Label UUIDs can be stored.\nIndeed, this value decides the number of the Virtual Addresses can be supported by a node.", + "id": "BLE_MESH_LABEL_COUNT", + "name": "BLE_MESH_LABEL_COUNT", + "range": null, + "title": "Maximum number of Label UUIDs used for Virtual Addresses", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies the maximum capacity of the replay protection list.\nIt is similar to Network message cache size, but has a different purpose.\nThe replay protection list is used to prevent a node from replay attack,\nwhich will store the source address and sequence number of the received\nmesh messages.\nFor Provisioner, the replay protection list size should not be smaller than\nthe maximum number of nodes whose information can be stored. And the element\nnumber of each node should also be taken into consideration. For example, if\nProvisioner can provision up to 20 nodes and each node contains two elements,\nthen the replay protection list size of Provisioner should be at least 40.", + "id": "BLE_MESH_CRPL", + "name": "BLE_MESH_CRPL", + "range": null, + "title": "Maximum capacity of the replay protection list", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_EXPERIMENTAL && BLE_MESH", + "help": "There may be many expired messages in a complex mesh network that would be\nconsidered replayed messages.\nEnable this option will refuse to relay such messages, which could help to\nreduce invalid packets in the mesh network.\nHowever, it should be noted that enabling this option may result in packet\nloss in certain environments.\nTherefore, users need to decide whether to enable this option according to\nthe actual usage situation.", + "id": "BLE_MESH_NOT_RELAY_REPLAY_MSG", + "name": "BLE_MESH_NOT_RELAY_REPLAY_MSG", + "range": null, + "title": "Not relay replayed messages in a mesh network", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Number of messages that are cached for the network. This helps prevent\nunnecessary decryption operations and unnecessary relays. This option\nis similar to Replay protection list, but has a different purpose.\nA node is not required to cache the entire Network PDU and may cache\nonly part of it for tracking, such as values for SRC/SEQ or others.", + "id": "BLE_MESH_MSG_CACHE_SIZE", + "name": "BLE_MESH_MSG_CACHE_SIZE", + "range": null, + "title": "Network message cache size", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Number of advertising buffers available. The transport layer reserves\nADV_BUF_COUNT - 3 buffers for outgoing segments. The maximum outgoing\nSDU size is 12 times this value (out of which 4 or 8 bytes are used\nfor the Transport Layer MIC). For example, 5 segments means the maximum\nSDU size is 60 bytes, which leaves 56 bytes for application layer data\nusing a 4-byte MIC, or 52 bytes using an 8-byte MIC.", + "id": "BLE_MESH_ADV_BUF_COUNT", + "name": "BLE_MESH_ADV_BUF_COUNT", + "range": null, + "title": "Number of advertising buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "When the IV Update state enters Normal operation or IV Update\nin Progress, we need to keep track of how many hours has passed\nin the state, since the specification requires us to remain in\nthe state at least for 96 hours (Update in Progress has an\nadditional upper limit of 144 hours).\n\nIn order to fulfill the above requirement, even if the node might\nbe powered off once in a while, we need to store persistently\nhow many hours the node has been in the state. This doesn't\nnecessarily need to happen every hour (thanks to the flexible\nduration range). The exact cadence will depend a lot on the\nways that the node will be used and what kind of power source it\nhas.\n\nSince there is no single optimal answer, this configuration\noption allows specifying a divider, i.e. how many intervals\nthe 96 hour minimum gets split into. After each interval the\nduration that the node has been in the current state gets\nstored to flash. E.g. the default value of 4 means that the\nstate is saved every 24 hours (96 / 4).", + "id": "BLE_MESH_IVU_DIVIDER", + "name": "BLE_MESH_IVU_DIVIDER", + "range": null, + "title": "Divider for IV Update state refresh timer", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "According to Section 3.10.5 of Mesh Specification v1.0.1.\nIf a node in Normal Operation receives a Secure Network beacon with an IV index\nequal to the last known IV index+1 and the IV Update Flag set to 0, the node may\nupdate its IV without going to the IV Update in Progress state, or it may initiate\nan IV Index Recovery procedure (Section 3.10.6), or it may ignore the Secure\nNetwork beacon. The node makes the choice depending on the time since last IV\nupdate and the likelihood that the node has missed the Secure Network beacons\nwith the IV update Flag.\nWhen the above situation is encountered, this option can be used to decide whether\nto perform the IV index recovery procedure.", + "id": "BLE_MESH_IVU_RECOVERY_IVI", + "name": "BLE_MESH_IVU_RECOVERY_IVI", + "range": null, + "title": "Recovery the IV index when the latest whole IV update procedure is missed", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to use the enhanced segmentation and reassembly\nmechanism introduced in Bluetooth Mesh Protocol 1.1.", + "id": "BLE_MESH_SAR_ENHANCEMENT", + "name": "BLE_MESH_SAR_ENHANCEMENT", + "range": null, + "title": "Segmentation and reassembly enhancement", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Maximum number of simultaneous outgoing multi-segment and/or reliable messages.\nThe default value is 1, which means the device can only send one segmented\nmessage at a time. And if another segmented message is going to be sent, it\nshould wait for the completion of the previous one.\nIf users are going to send multiple segmented messages at the same time, this\nvalue should be configured properly.", + "id": "BLE_MESH_TX_SEG_MSG_COUNT", + "name": "BLE_MESH_TX_SEG_MSG_COUNT", + "range": null, + "title": "Maximum number of simultaneous outgoing segmented messages", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Maximum number of simultaneous incoming multi-segment and/or reliable messages.\nThe default value is 1, which means the device can only receive one segmented\nmessage at a time. And if another segmented message is going to be received,\nit should wait for the completion of the previous one.\nIf users are going to receive multiple segmented messages at the same time, this\nvalue should be configured properly.", + "id": "BLE_MESH_RX_SEG_MSG_COUNT", + "name": "BLE_MESH_RX_SEG_MSG_COUNT", + "range": null, + "title": "Maximum number of simultaneous incoming segmented messages", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Maximum incoming Upper Transport Access PDU length. Leave this to the default\nvalue, unless you really need to optimize memory usage.", + "id": "BLE_MESH_RX_SDU_MAX", + "name": "BLE_MESH_RX_SDU_MAX", + "range": null, + "title": "Maximum incoming Upper Transport Access PDU length", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Maximum number of segments supported for outgoing messages.\nThis value should typically be fine-tuned based on what\nmodels the local node supports, i.e. what's the largest\nmessage payload that the node needs to be able to send.\nThis value affects memory and call stack consumption, which\nis why the default is lower than the maximum that the\nspecification would allow (32 segments).\n\nThe maximum outgoing SDU size is 12 times this number (out of\nwhich 4 or 8 bytes is used for the Transport Layer MIC). For\nexample, 5 segments means the maximum SDU size is 60 bytes,\nwhich leaves 56 bytes for application layer data using a\n4-byte MIC and 52 bytes using an 8-byte MIC.\n\nBe sure to specify a sufficient number of advertising buffers\nwhen setting this option to a higher value. There must be at\nleast three more advertising buffers (BLE_MESH_ADV_BUF_COUNT)\nas there are outgoing segments.", + "id": "BLE_MESH_TX_SEG_MAX", + "name": "BLE_MESH_TX_SEG_MAX", + "range": null, + "title": "Maximum number of segments in outgoing messages", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_RELAY_ADV_BUF && BLE_MESH_RELAY && BLE_MESH", + "help": "Number of advertising buffers for relay packets available.", + "id": "BLE_MESH_RELAY_ADV_BUF_COUNT", + "name": "BLE_MESH_RELAY_ADV_BUF_COUNT", + "range": null, + "title": "Number of advertising buffers for relay packets", + "type": "int" + } + ], + "depends_on": "BLE_MESH_RELAY && BLE_MESH", + "help": "When selected, self-send packets will be put in a high-priority\nqueue and relay packets will be put in a low-priority queue.", + "id": "BLE_MESH_RELAY_ADV_BUF", + "name": "BLE_MESH_RELAY_ADV_BUF", + "range": null, + "title": "Use separate advertising buffers for relay packets", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_NODE && BLE_MESH", + "help": "Support for acting as a Mesh Relay Node. Enabling this option will allow\na node to support the Relay feature, and the Relay feature can still\nbe enabled or disabled by proper configuration messages. Disabling this\noption will let a node not support the Relay feature.", + "id": "BLE_MESH_RELAY", + "name": "BLE_MESH_RELAY", + "range": null, + "title": "Relay support", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Perform the Friendship establishment using low power with the help of a\nreduced scan duty cycle. The downside of this is that the node may miss\nout on messages intended for it until it has successfully set up Friendship\nwith a Friend node.\nWhen this option is enabled, the node will stop scanning for a period of\ntime after a Friend Request or Friend Poll is sent, so as to reduce more\npower consumption.", + "id": "BLE_MESH_LPN_ESTABLISHMENT", + "name": "BLE_MESH_LPN_ESTABLISHMENT", + "range": null, + "title": "Perform Friendship establishment using low power", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_LPN_AUTO && BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Time in seconds from the last received message, that the node waits out\nbefore starting to look for Friend nodes.", + "id": "BLE_MESH_LPN_AUTO_TIMEOUT", + "name": "BLE_MESH_LPN_AUTO_TIMEOUT", + "range": null, + "title": "Time from last received message before going to LPN mode", + "type": "int" + } + ], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Once provisioned, automatically enable LPN functionality and start looking\nfor Friend nodes. If this option is disabled LPN mode needs to be manually\nenabled by calling bt_mesh_lpn_set(true).\nWhen an unprovisioned device is provisioned successfully and becomes a node,\nenabling this option will trigger the node starts to send Friend Request at\na certain period until it finds a proper Friend node.", + "id": "BLE_MESH_LPN_AUTO", + "name": "BLE_MESH_LPN_AUTO", + "range": null, + "title": "Automatically start looking for Friend nodes once provisioned", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Time in seconds between Friend Requests, if a previous Friend Request did\nnot yield any acceptable Friend Offers.", + "id": "BLE_MESH_LPN_RETRY_TIMEOUT", + "name": "BLE_MESH_LPN_RETRY_TIMEOUT", + "range": null, + "title": "Retry timeout for Friend requests", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "The contribution of the RSSI, measured by the Friend node, used in Friend\nOffer Delay calculations. 0 = 1, 1 = 1.5, 2 = 2, 3 = 2.5.\nRSSIFactor, one of the parameters carried by Friend Request sent by Low Power\nnode, which is used to calculate the Friend Offer Delay.", + "id": "BLE_MESH_LPN_RSSI_FACTOR", + "name": "BLE_MESH_LPN_RSSI_FACTOR", + "range": null, + "title": "RSSIFactor, used in Friend Offer Delay calculation", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "The contribution of the supported Receive Window used in Friend Offer\nDelay calculations. 0 = 1, 1 = 1.5, 2 = 2, 3 = 2.5.\nReceiveWindowFactor, one of the parameters carried by Friend Request sent by\nLow Power node, which is used to calculate the Friend Offer Delay.", + "id": "BLE_MESH_LPN_RECV_WIN_FACTOR", + "name": "BLE_MESH_LPN_RECV_WIN_FACTOR", + "range": null, + "title": "ReceiveWindowFactor, used in Friend Offer Delay calculation", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "The MinQueueSizeLog field is defined as log_2(N), where N is the minimum\nnumber of maximum size Lower Transport PDUs that the Friend node can store\nin its Friend Queue. As an example, MinQueueSizeLog value 1 gives N = 2,\nand value 7 gives N = 128.", + "id": "BLE_MESH_LPN_MIN_QUEUE_SIZE", + "name": "BLE_MESH_LPN_MIN_QUEUE_SIZE", + "range": null, + "title": "Minimum size of the acceptable friend queue (MinQueueSizeLog)", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "The ReceiveDelay is the time between the Low Power node sending a\nrequest and listening for a response. This delay allows the Friend\nnode time to prepare the response. The value is in units of milliseconds.", + "id": "BLE_MESH_LPN_RECV_DELAY", + "name": "BLE_MESH_LPN_RECV_DELAY", + "range": null, + "title": "Receive delay requested by the local node", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "PollTimeout timer is used to measure time between two consecutive\nrequests sent by a Low Power node. If no requests are received\nthe Friend node before the PollTimeout timer expires, then the\nfriendship is considered terminated. The value is in units of 100\nmilliseconds, so e.g. a value of 300 means 30 seconds.\nThe smaller the value, the faster the Low Power node tries to get\nmessages from corresponding Friend node and vice versa.", + "id": "BLE_MESH_LPN_POLL_TIMEOUT", + "name": "BLE_MESH_LPN_POLL_TIMEOUT", + "range": null, + "title": "The value of the PollTimeout timer", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "The initial value of the PollTimeout timer when Friendship is to be\nestablished for the first time. After this, the timeout gradually\ngrows toward the actual PollTimeout, doubling in value for each iteration.\nThe value is in units of 100 milliseconds, so e.g. a value of 300 means\n30 seconds.", + "id": "BLE_MESH_LPN_INIT_POLL_TIMEOUT", + "name": "BLE_MESH_LPN_INIT_POLL_TIMEOUT", + "range": null, + "title": "The starting value of the PollTimeout timer", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Latency (in milliseconds) is the time it takes to enable scanning. In\npractice, it means how much time in advance of the Receive Window, the\nrequest to enable scanning is made.", + "id": "BLE_MESH_LPN_SCAN_LATENCY", + "name": "BLE_MESH_LPN_SCAN_LATENCY", + "range": null, + "title": "Latency for enabling scanning", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Maximum number of groups to which the LPN can subscribe.", + "id": "BLE_MESH_LPN_GROUPS", + "name": "BLE_MESH_LPN_GROUPS", + "range": null, + "title": "Number of groups the LPN can subscribe to", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Automatically subscribe all nodes address when friendship\nestablished.", + "id": "BLE_MESH_LPN_SUB_ALL_NODES_ADDR", + "name": "BLE_MESH_LPN_SUB_ALL_NODES_ADDR", + "range": null, + "title": "Automatically subscribe all nodes address", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_NODE && BLE_MESH", + "help": "Enable this option to operate as a Low Power Node. If low power consumption\nis required by a node, this option should be enabled. And once the node\nenters the mesh network, it will try to find a Friend node and establish a\nfriendship.", + "id": "BLE_MESH_LOW_POWER", + "name": "BLE_MESH_LOW_POWER", + "range": null, + "title": "Support for Low Power features", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "help": "Receive Window in milliseconds supported by the Friend node.", + "id": "BLE_MESH_FRIEND_RECV_WIN", + "name": "BLE_MESH_FRIEND_RECV_WIN", + "range": null, + "title": "Friend Receive Window", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "help": "Minimum number of buffers available to be stored for each local Friend Queue.\nThis option decides the size of each buffer which can be used by a Friend node\nto store messages for each Low Power node.", + "id": "BLE_MESH_FRIEND_QUEUE_SIZE", + "name": "BLE_MESH_FRIEND_QUEUE_SIZE", + "range": null, + "title": "Minimum number of buffers supported per Friend Queue", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "help": "Size of the Subscription List that can be supported by a Friend node for a\nLow Power node. And Low Power node can send Friend Subscription List Add or\nFriend Subscription List Remove messages to the Friend node to add or remove\nsubscription addresses.", + "id": "BLE_MESH_FRIEND_SUB_LIST_SIZE", + "name": "BLE_MESH_FRIEND_SUB_LIST_SIZE", + "range": null, + "title": "Friend Subscription List Size", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "help": "Number of Low Power Nodes with which a Friend can have Friendship simultaneously.\nA Friend node can have friendship with multiple Low Power nodes at the same time,\nwhile a Low Power node can only establish friendship with only one Friend node at\nthe same time.", + "id": "BLE_MESH_FRIEND_LPN_COUNT", + "name": "BLE_MESH_FRIEND_LPN_COUNT", + "range": null, + "title": "Number of supported LPN nodes", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "help": "Number of incomplete segment lists tracked for each Friends' LPN.\nIn other words, this determines from how many elements can segmented\nmessages destined for the Friend queue be received simultaneously.", + "id": "BLE_MESH_FRIEND_SEG_RX", + "name": "BLE_MESH_FRIEND_SEG_RX", + "range": null, + "title": "Number of incomplete segment lists per LPN", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable this option to be able to act as a Friend Node.", + "id": "BLE_MESH_FRIEND", + "name": "BLE_MESH_FRIEND", + "range": null, + "title": "Support for Friend feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH && BLE_MESH", + "help": "Select this to save the BLE Mesh related rodata code size. Enabling this option\nwill disable the output of BLE Mesh debug log.", + "id": "BLE_MESH_NO_LOG", + "name": "BLE_MESH_NO_LOG", + "range": null, + "title": "Disable BLE Mesh debug logs (minimize bin size)", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_NONE", + "name": "BLE_MESH_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_ERROR", + "name": "BLE_MESH_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_WARNING", + "name": "BLE_MESH_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_INFO", + "name": "BLE_MESH_TRACE_LEVEL_INFO", + "range": null, + "title": "INFO", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_DEBUG", + "name": "BLE_MESH_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_VERBOSE", + "name": "BLE_MESH_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": "Define BLE Mesh trace level for BLE Mesh stack.", + "id": "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level-ble_mesh_stack", + "name": "BLE_MESH_STACK_TRACE_LEVEL", + "title": "BLE_MESH_STACK", + "type": "choice" + }, + { + "children": [], + "depends_on": "BLE_MESH && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": null, + "id": "BLE_MESH_STACK_TRACE_LEVEL", + "name": "BLE_MESH_STACK_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "id": "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level", + "title": "BLE Mesh STACK DEBUG LOG LEVEL", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_NONE", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_INFO", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_INFO", + "range": null, + "title": "INFO", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": "Define BLE Mesh trace level for BLE Mesh net buffer.", + "id": "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level-ble_mesh_net_buf", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL", + "title": "BLE_MESH_NET_BUF", + "type": "choice" + }, + { + "children": [], + "depends_on": "BLE_MESH && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "id": "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level", + "title": "BLE Mesh NET BUF DEBUG LOG LEVEL", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Timeout value used by the node to get response of the acknowledged\nmessage which is sent by the client model.\nThis value indicates the maximum time that a client model waits for\nthe response of the sent acknowledged messages. If a client model\nuses 0 as the timeout value when sending acknowledged messages, then\nthe default value will be used which is four seconds.", + "id": "BLE_MESH_CLIENT_MSG_TIMEOUT", + "name": "BLE_MESH_CLIENT_MSG_TIMEOUT", + "range": null, + "title": "Timeout(ms) for client message response", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Configuration Client model.", + "id": "BLE_MESH_CFG_CLI", + "name": "BLE_MESH_CFG_CLI", + "range": null, + "title": "Configuration Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Health Client model.", + "id": "BLE_MESH_HEALTH_CLI", + "name": "BLE_MESH_HEALTH_CLI", + "range": null, + "title": "Health Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Health Server model.", + "id": "BLE_MESH_HEALTH_SRV", + "name": "BLE_MESH_HEALTH_SRV", + "range": null, + "title": "Health Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Bridge Configuration Client model.", + "id": "BLE_MESH_BRC_CLI", + "name": "BLE_MESH_BRC_CLI", + "range": null, + "title": "Bridge Configuration Client model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_BRC_SRV && BLE_MESH", + "help": "Maximum number of Bridging Table entries that the Bridge Configuration Server can support.", + "id": "BLE_MESH_MAX_BRIDGING_TABLE_ENTRY_COUNT", + "name": "BLE_MESH_MAX_BRIDGING_TABLE_ENTRY_COUNT", + "range": null, + "title": "Maximum number of Bridging Table entries", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_BRC_SRV && BLE_MESH", + "help": "This option specifies the maximum capacity of the bridge replay\nprotection list. The bridge replay protection list is used to\nprevent a bridged subnet from replay attack, which will store the\nsource address and sequence number of the received bridge messages.", + "id": "BLE_MESH_BRIDGE_CRPL", + "name": "BLE_MESH_BRIDGE_CRPL", + "range": null, + "title": "Maximum capacity of bridge replay protection list", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable support for Bridge Configuration Server model.", + "id": "BLE_MESH_BRC_SRV", + "name": "BLE_MESH_BRC_SRV", + "range": null, + "title": "Bridge Configuration Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Mesh Private Beacon Client model.", + "id": "BLE_MESH_PRB_CLI", + "name": "BLE_MESH_PRB_CLI", + "range": null, + "title": "Mesh Private Beacon Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Mesh Private Beacon Server model.", + "id": "BLE_MESH_PRB_SRV", + "name": "BLE_MESH_PRB_SRV", + "range": null, + "title": "Mesh Private Beacon Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for On-Demand Private Proxy Client model.", + "id": "BLE_MESH_ODP_CLI", + "name": "BLE_MESH_ODP_CLI", + "range": null, + "title": "On-Demand Private Proxy Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_RX && BLE_MESH", + "help": "Enable support for On-Demand Private Proxy Server model.", + "id": "BLE_MESH_ODP_SRV", + "name": "BLE_MESH_ODP_SRV", + "range": null, + "title": "On-Demand Private Proxy Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Solicitation PDU RPL Configuration Client model.", + "id": "BLE_MESH_SRPL_CLI", + "name": "BLE_MESH_SRPL_CLI", + "range": null, + "title": "Solicitation PDU RPL Configuration Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_RX && BLE_MESH", + "help": "Enable support for Solicitation PDU RPL Configuration Server model.\nNote:\nThis option depends on the functionality of receiving Solicitation\nPDU. If the device doesn't support receiving Solicitation PDU, then\nthere is no need to enable this server model.", + "id": "BLE_MESH_SRPL_SRV", + "name": "BLE_MESH_SRPL_SRV", + "range": null, + "title": "Solicitation PDU RPL Configuration Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Opcodes Aggregator Client model.", + "id": "BLE_MESH_AGG_CLI", + "name": "BLE_MESH_AGG_CLI", + "range": null, + "title": "Opcodes Aggregator Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Opcodes Aggregator Server model.", + "id": "BLE_MESH_AGG_SRV", + "name": "BLE_MESH_AGG_SRV", + "range": null, + "title": "Opcodes Aggregator Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for SAR Configuration Client model.", + "id": "BLE_MESH_SAR_CLI", + "name": "BLE_MESH_SAR_CLI", + "range": null, + "title": "SAR Configuration Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for SAR Configuration Server model.", + "id": "BLE_MESH_SAR_SRV", + "name": "BLE_MESH_SAR_SRV", + "range": null, + "title": "SAR Configuration Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Composition Data Page 1 contains information about the relationships\namong models.\nEach model either can be a root model or can extend other models.", + "id": "BLE_MESH_COMP_DATA_1", + "name": "BLE_MESH_COMP_DATA_1", + "range": null, + "title": "Support Composition Data Page 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Composition Data Page 128 is used to indicate the structure of\nelements, features, and models of a node after the successful\nexecution of the Node Address Refresh procedure or the Node\nComposition Refresh procedure, or after the execution of the\nNode Removal procedure followed by the provisioning process.\nComposition Data Page 128 shall be present if the node supports\nthe Remote Provisioning Server model; otherwise it is optional.", + "id": "BLE_MESH_COMP_DATA_128", + "name": "BLE_MESH_COMP_DATA_128", + "range": null, + "title": "Support Composition Data Page 128", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_MODELS_METADATA_0 && BLE_MESH", + "help": "The Models Metadata state contains metadata of a node\u2019s models.\nThe Models Metadata state is composed of a number of pages of\ninformation.\nModels Metadata Page 128 contains metadata for the node\u2019s models\nafter the successful execution of the Node Address Refresh\nprocedure or the Node Composition Refresh procedure, or after\nthe execution of the Node Removal procedure followed by the\nprovisioning process.\nModels Metadata Page 128 shall be present if the node supports\nthe Remote Provisioning Server model and the node supports the\nLarge Composition Data Server model.", + "id": "BLE_MESH_MODELS_METADATA_128", + "name": "BLE_MESH_MODELS_METADATA_128", + "range": null, + "title": "Support Models Metadata Page 128", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "The Models Metadata state contains metadata of a node\u2019s models.\nThe Models Metadata state is composed of a number of pages of\ninformation.\nModels Metadata Page 0 shall be present if the node supports\nthe Large Composition Data Server model.", + "id": "BLE_MESH_MODELS_METADATA_0", + "name": "BLE_MESH_MODELS_METADATA_0", + "range": null, + "title": "Support Models Metadata Page 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Large Composition Data Client model.", + "id": "BLE_MESH_LCD_CLI", + "name": "BLE_MESH_LCD_CLI", + "range": null, + "title": "Large Composition Data Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Large Composition Data Server model.", + "id": "BLE_MESH_LCD_SRV", + "name": "BLE_MESH_LCD_SRV", + "range": null, + "title": "Large Composition Data Server model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_RPR_CLI && BLE_MESH", + "help": "This option specifies how many devices can be provisioned at the same time\nusing PB-REMOTE. For example, if the value is 2, it means a Provisioner can\nprovision two unprovisioned devices with PB-REMOTE at the same time.", + "id": "BLE_MESH_RPR_CLI_PROV_SAME_TIME", + "name": "BLE_MESH_RPR_CLI_PROV_SAME_TIME", + "range": null, + "title": "Maximum number of PB-Remote running at the same time by Provisioner", + "type": "int" + } + ], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "help": "Enable support for Remote Provisioning Client model", + "id": "BLE_MESH_RPR_CLI", + "name": "BLE_MESH_RPR_CLI", + "range": null, + "title": "Remote Provisioning Client model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_RPR_SRV && BLE_MESH", + "help": "This option specifies how many device information can a Remote\nProvisioning Server store each time while scanning.", + "id": "BLE_MESH_RPR_SRV_MAX_SCANNED_ITEMS", + "name": "BLE_MESH_RPR_SRV_MAX_SCANNED_ITEMS", + "range": null, + "title": "Maximum number of device information can be scanned", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_RPR_SRV && BLE_MESH", + "help": "Enable this option to support Active Scan for remote provisioning.", + "id": "BLE_MESH_RPR_SRV_ACTIVE_SCAN", + "name": "BLE_MESH_RPR_SRV_ACTIVE_SCAN", + "range": null, + "title": "Support Active Scan for remote provisioning", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_RPR_SRV && BLE_MESH", + "help": "This option specifies how many extended scan procedures can be\nstarted by the Remote Provisioning Server.", + "id": "BLE_MESH_RPR_SRV_MAX_EXT_SCAN", + "name": "BLE_MESH_RPR_SRV_MAX_EXT_SCAN", + "range": null, + "title": "Maximum number of extended scan procedures", + "type": "int" + } + ], + "depends_on": "BLE_MESH_NODE && BLE_MESH", + "help": "Enable support for Remote Provisioning Server model", + "id": "BLE_MESH_RPR_SRV", + "name": "BLE_MESH_RPR_SRV", + "range": null, + "title": "Remote Provisioning Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Directed Forwarding Configuration Client model.", + "id": "BLE_MESH_DF_CLI", + "name": "BLE_MESH_DF_CLI", + "range": null, + "title": "Directed Forwarding Configuration Client model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_DF_SRV && BLE_MESH", + "help": "Maximum number of Discovery Table entries supported by the node in a given subnet.", + "id": "BLE_MESH_MAX_DISC_TABLE_ENTRY_COUNT", + "name": "BLE_MESH_MAX_DISC_TABLE_ENTRY_COUNT", + "range": null, + "title": "Maximum number of discovery table entries in a given subnet", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_DF_SRV && BLE_MESH", + "help": "Maximum number of Forward Table entries supported by the node in a given subnet.", + "id": "BLE_MESH_MAX_FORWARD_TABLE_ENTRY_COUNT", + "name": "BLE_MESH_MAX_FORWARD_TABLE_ENTRY_COUNT", + "range": null, + "title": "Maximum number of forward table entries in a given subnet", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_DF_SRV && BLE_MESH", + "help": "Maximum size of dependent nodes list supported by each forward table entry.", + "id": "BLE_MESH_MAX_DEPS_NODES_PER_PATH", + "name": "BLE_MESH_MAX_DEPS_NODES_PER_PATH", + "range": null, + "title": "Maximum number of dependent nodes per path", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_DF_SRV && BLE_MESH", + "help": "The option only removes the Path Use timer; all other behavior of the\ndevice is not changed.\nIf Path Monitoring test mode is going to be used, this option should\nbe enabled.", + "id": "BLE_MESH_PATH_MONITOR_TEST", + "name": "BLE_MESH_PATH_MONITOR_TEST", + "range": null, + "title": "Enable Path Monitoring test mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH_DF_SRV && BLE_MESH", + "help": "Support Directed Proxy functionality.", + "id": "BLE_MESH_SUPPORT_DIRECTED_PROXY", + "name": "BLE_MESH_SUPPORT_DIRECTED_PROXY", + "range": null, + "title": "Enable Directed Proxy functionality", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable support for Directed Forwarding Configuration Server model.", + "id": "BLE_MESH_DF_SRV", + "name": "BLE_MESH_DF_SRV", + "range": null, + "title": "Directed Forwarding Configuration Server model", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-foundation-models", + "title": "Support for BLE Mesh Foundation models", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic OnOff Client model.", + "id": "BLE_MESH_GENERIC_ONOFF_CLI", + "name": "BLE_MESH_GENERIC_ONOFF_CLI", + "range": null, + "title": "Generic OnOff Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Level Client model.", + "id": "BLE_MESH_GENERIC_LEVEL_CLI", + "name": "BLE_MESH_GENERIC_LEVEL_CLI", + "range": null, + "title": "Generic Level Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Default Transition Time Client model.", + "id": "BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI", + "name": "BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI", + "range": null, + "title": "Generic Default Transition Time Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Power OnOff Client model.", + "id": "BLE_MESH_GENERIC_POWER_ONOFF_CLI", + "name": "BLE_MESH_GENERIC_POWER_ONOFF_CLI", + "range": null, + "title": "Generic Power OnOff Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Power Level Client model.", + "id": "BLE_MESH_GENERIC_POWER_LEVEL_CLI", + "name": "BLE_MESH_GENERIC_POWER_LEVEL_CLI", + "range": null, + "title": "Generic Power Level Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Battery Client model.", + "id": "BLE_MESH_GENERIC_BATTERY_CLI", + "name": "BLE_MESH_GENERIC_BATTERY_CLI", + "range": null, + "title": "Generic Battery Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Location Client model.", + "id": "BLE_MESH_GENERIC_LOCATION_CLI", + "name": "BLE_MESH_GENERIC_LOCATION_CLI", + "range": null, + "title": "Generic Location Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Property Client model.", + "id": "BLE_MESH_GENERIC_PROPERTY_CLI", + "name": "BLE_MESH_GENERIC_PROPERTY_CLI", + "range": null, + "title": "Generic Property Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Sensor Client model.", + "id": "BLE_MESH_SENSOR_CLI", + "name": "BLE_MESH_SENSOR_CLI", + "range": null, + "title": "Sensor Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Time Client model.", + "id": "BLE_MESH_TIME_CLI", + "name": "BLE_MESH_TIME_CLI", + "range": null, + "title": "Time Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Scene Client model.", + "id": "BLE_MESH_SCENE_CLI", + "name": "BLE_MESH_SCENE_CLI", + "range": null, + "title": "Scene Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Scheduler Client model.", + "id": "BLE_MESH_SCHEDULER_CLI", + "name": "BLE_MESH_SCHEDULER_CLI", + "range": null, + "title": "Scheduler Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light Lightness Client model.", + "id": "BLE_MESH_LIGHT_LIGHTNESS_CLI", + "name": "BLE_MESH_LIGHT_LIGHTNESS_CLI", + "range": null, + "title": "Light Lightness Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light CTL Client model.", + "id": "BLE_MESH_LIGHT_CTL_CLI", + "name": "BLE_MESH_LIGHT_CTL_CLI", + "range": null, + "title": "Light CTL Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light HSL Client model.", + "id": "BLE_MESH_LIGHT_HSL_CLI", + "name": "BLE_MESH_LIGHT_HSL_CLI", + "range": null, + "title": "Light HSL Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light XYL Client model.", + "id": "BLE_MESH_LIGHT_XYL_CLI", + "name": "BLE_MESH_LIGHT_XYL_CLI", + "range": null, + "title": "Light XYL Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light LC Client model.", + "id": "BLE_MESH_LIGHT_LC_CLI", + "name": "BLE_MESH_LIGHT_LC_CLI", + "range": null, + "title": "Light LC Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic server models.", + "id": "BLE_MESH_GENERIC_SERVER", + "name": "BLE_MESH_GENERIC_SERVER", + "range": null, + "title": "Generic server models", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Sensor server models.", + "id": "BLE_MESH_SENSOR_SERVER", + "name": "BLE_MESH_SENSOR_SERVER", + "range": null, + "title": "Sensor server models", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Time and Scenes server models.", + "id": "BLE_MESH_TIME_SCENE_SERVER", + "name": "BLE_MESH_TIME_SCENE_SERVER", + "range": null, + "title": "Time and Scenes server models", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Lighting server models.", + "id": "BLE_MESH_LIGHTING_SERVER", + "name": "BLE_MESH_LIGHTING_SERVER", + "range": null, + "title": "Lighting server models", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_MBT_CLI && BLE_MESH", + "help": "Maximum number of BLOB Transfer Server models that can participating\nin the BLOB transfer with a BLOB Transfer Client model.", + "id": "BLE_MESH_MAX_BLOB_RECEIVERS", + "name": "BLE_MESH_MAX_BLOB_RECEIVERS", + "range": null, + "title": "Maximum number of simultaneous blob receivers", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable support for BLOB Transfer Client model.", + "id": "BLE_MESH_MBT_CLI", + "name": "BLE_MESH_MBT_CLI", + "range": null, + "title": "BLOB Transfer Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for BLOB Transfer Server model.", + "id": "BLE_MESH_MBT_SRV", + "name": "BLE_MESH_MBT_SRV", + "range": null, + "title": "BLOB Transfer Server model", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-client-server-models", + "title": "Support for BLE Mesh Client/Server models", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option removes the 96 hour limit of the IV Update Procedure and\nlets the state to be changed at any time.\nIf IV Update test mode is going to be used, this option should be enabled.", + "id": "BLE_MESH_IV_UPDATE_TEST", + "name": "BLE_MESH_IV_UPDATE_TEST", + "range": null, + "title": "Test the IV Update Procedure", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option is used to decide whether discarding the old SeqAuth when\nreceiving a segmented message.", + "id": "BLE_MESH_DISCARD_OLD_SEQ_AUTH", + "name": "BLE_MESH_DISCARD_OLD_SEQ_AUTH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option adds extra self-tests which are run every time BLE Mesh\nnetworking is initialized.", + "id": "BLE_MESH_SELF_TEST", + "name": "BLE_MESH_SELF_TEST", + "range": null, + "title": "Perform BLE Mesh self-tests", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_BQB_TEST && BLE_MESH", + "help": "This option is used to enable the log of auto-pts test.", + "id": "BLE_MESH_BQB_TEST_LOG", + "name": "BLE_MESH_BQB_TEST_LOG", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "This option is used to enable some internal functions for auto-pts test.", + "id": "BLE_MESH_BQB_TEST", + "name": "BLE_MESH_BQB_TEST", + "range": null, + "title": "Enable BLE Mesh specific internal test", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_SELF_TEST && BLE_MESH", + "help": "With this option enabled, an unprovisioned device can automatically\nenters mesh network using a specific test function without the pro-\nvisioning procedure. And on the Provisioner side, a test function\nneeds to be invoked to add the node information into the mesh stack.", + "id": "BLE_MESH_TEST_AUTO_ENTER_NETWORK", + "name": "BLE_MESH_TEST_AUTO_ENTER_NETWORK", + "range": null, + "title": "Unprovisioned device enters mesh network automatically", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_SELF_TEST && BLE_MESH", + "help": "With this option enabled, users can use white list to filter mesh\nadvertising packets while scanning.", + "id": "BLE_MESH_TEST_USE_WHITE_LIST", + "name": "BLE_MESH_TEST_USE_WHITE_LIST", + "range": null, + "title": "Use white list to filter mesh advertising packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Activate shell module that provides BLE Mesh commands to the console.", + "id": "BLE_MESH_SHELL", + "name": "BLE_MESH_SHELL", + "range": null, + "title": "Enable BLE Mesh shell", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Network layer debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_NET", + "name": "BLE_MESH_DEBUG_NET", + "range": null, + "title": "Network layer debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Transport layer debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_TRANS", + "name": "BLE_MESH_DEBUG_TRANS", + "range": null, + "title": "Transport layer debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Beacon-related debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_BEACON", + "name": "BLE_MESH_DEBUG_BEACON", + "range": null, + "title": "Beacon debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable cryptographic debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_CRYPTO", + "name": "BLE_MESH_DEBUG_CRYPTO", + "range": null, + "title": "Crypto debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Provisioning debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_PROV", + "name": "BLE_MESH_DEBUG_PROV", + "range": null, + "title": "Provisioning debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Access layer debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_ACCESS", + "name": "BLE_MESH_DEBUG_ACCESS", + "range": null, + "title": "Access layer debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Foundation Models debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_MODEL", + "name": "BLE_MESH_DEBUG_MODEL", + "range": null, + "title": "Foundation model debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable advertising debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_ADV", + "name": "BLE_MESH_DEBUG_ADV", + "range": null, + "title": "Advertising debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Low Power debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_LOW_POWER", + "name": "BLE_MESH_DEBUG_LOW_POWER", + "range": null, + "title": "Low Power debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Friend debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_FRIEND", + "name": "BLE_MESH_DEBUG_FRIEND", + "range": null, + "title": "Friend debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROXY && BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Proxy protocol debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_PROXY", + "name": "BLE_MESH_DEBUG_PROXY", + "range": null, + "title": "Proxy debug", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG", + "name": "BLE_MESH_DEBUG", + "range": null, + "title": "Enable BLE Mesh debug logs", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-ble-mesh-specific-test-option", + "title": "BLE Mesh specific test option", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Make BLE Mesh Experimental features visible.\nExperimental features list:\n- CONFIG_BLE_MESH_NOT_RELAY_REPLAY_MSG", + "id": "BLE_MESH_EXPERIMENTAL", + "name": "BLE_MESH_EXPERIMENTAL", + "range": null, + "title": "Make BLE Mesh experimental features visible", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED", + "help": "This option enables ESP BLE Mesh support. The specific features that are\navailable may depend on other features that have been enabled in the\nstack, such as Bluetooth Support, Bluedroid Support & GATT support.", + "id": "BLE_MESH", + "is_menuconfig": true, + "name": "BLE_MESH", + "range": null, + "title": "ESP BLE Mesh Support", + "type": "menu" + }, + { + "children": [ + { + "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": "Wether 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": [ + { + "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": "Wether 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-configuration-legacy-adc-calibration-configuration", + "title": "Legacy ADC Calibration Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-legacy-adc-configuration", + "title": "Legacy ADC Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "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", + "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": null, + "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": null, + "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": null, + "id": "component-config-driver-configurations-spi-configuration", + "title": "SPI Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "Place the TWAI ISR in to IRAM. This will allow the ISR to avoid\ncache misses, and also be able to run whilst the cache is disabled\n(such as when writing to SPI Flash).\nNote that if this option is enabled:\n- Users should also set the ESP_INTR_FLAG_IRAM in the driver\nconfiguration structure when installing the driver (see docs for\nspecifics).\n- Alert logging (i.e., setting of the TWAI_ALERT_AND_LOG flag)\nwill have no effect.", + "id": "TWAI_ISR_IN_IRAM", + "name": "TWAI_ISR_IN_IRAM", + "range": null, + "title": "Place TWAI ISR function into IRAM", + "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-twai-configuration", + "title": "TWAI Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "help": "Wether 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": "Wether 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-driver-configurations-temperature-sensor-configuration", + "title": "Temperature sensor Configuration", + "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-driver-configurations-uart-configuration", + "title": "UART Configuration", + "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-driver-configurations-gpio-configuration", + "title": "GPIO Configuration", + "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": "Wether to suppress the deprecation warnings when using legacy sigma delta driver.\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": "Wether 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-driver-configurations-sigma-delta-modulator-configuration", + "title": "Sigma Delta Modulator Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "help": "Ensure the Analog Comparator interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "ANA_CMPR_ISR_IRAM_SAFE", + "name": "ANA_CMPR_ISR_IRAM_SAFE", + "range": null, + "title": "Analog comparator ISR IRAM-Safe", + "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": "Wether to enable the debug log message for Analog Comparator driver.\nNote that, this option only controls the Analog Comparator driver log, won't affect other drivers.", + "id": "ANA_CMPR_ENABLE_DEBUG_LOG", + "name": "ANA_CMPR_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "id": "component-config-driver-configurations-analog-comparator-configuration", + "title": "Analog Comparator Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Place GPTimer ISR handler into IRAM for better performance and fewer cache misses.", + "id": "GPTIMER_ISR_HANDLER_IN_IRAM", + "name": "GPTIMER_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place GPTimer ISR handler into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Place GPTimer 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": "GPTIMER_CTRL_FUNC_IN_IRAM", + "name": "GPTIMER_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GPTimer control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Ensure the GPTimer interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "GPTIMER_ISR_IRAM_SAFE", + "name": "GPTIMER_ISR_IRAM_SAFE", + "range": null, + "title": "GPTimer ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Wether 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": "Wether to enable the debug log message for GPTimer driver.\nNote that, this option only controls the GPTimer driver log, won't affect other drivers.", + "id": "GPTIMER_ENABLE_DEBUG_LOG", + "name": "GPTIMER_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "id": "component-config-driver-configurations-gptimer-configuration", + "title": "GPTimer Configuration", + "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": "Wether 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": "Wether 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-driver-configurations-pcnt-configuration", + "title": "PCNT Configuration", + "type": "menu" + }, + { + "children": [ + { + "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", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Place RMT receive function into IRAM,\nso that the receive function can be IRAM-safe and able to be called when the flash cache is disabled.\nEnabling this option can improve driver performance as well.", + "id": "RMT_RECV_FUNC_IN_IRAM", + "name": "RMT_RECV_FUNC_IN_IRAM", + "range": null, + "title": "Place RMT receive function into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Wether 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": "Wether to enable the debug log message for RMT driver.\nNote that, this option only controls the RMT driver log, won't affect other drivers.", + "id": "RMT_ENABLE_DEBUG_LOG", + "name": "RMT_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_RMT_SUPPORTED", + "id": "component-config-driver-configurations-rmt-configuration", + "title": "RMT Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "This will ensure the MCPWM interrupt handle 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": "MCPWM_ISR_IRAM_SAFE", + "name": "MCPWM_ISR_IRAM_SAFE", + "range": null, + "title": "Place MCPWM ISR function into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Place MCPWM control functions (like set_compare_value) 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": "MCPWM_CTRL_FUNC_IN_IRAM", + "name": "MCPWM_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place MCPWM control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Wether 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": "Wether to enable the debug log message for MCPWM driver.\nNote that, this option only controls the MCPWM driver log, won't affect other drivers.", + "id": "MCPWM_ENABLE_DEBUG_LOG", + "name": "MCPWM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_MCPWM_SUPPORTED", + "id": "component-config-driver-configurations-mcpwm-configuration", + "title": "MCPWM Configuration", + "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": "Enable this option will suppress the deprecation warnings of using APIs in legacy I2S driver.", + "id": "I2S_SUPPRESS_DEPRECATE_WARN", + "name": "I2S_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress leagcy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "Wether 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-driver-configurations-i2s-configuration", + "title": "I2S Configuration", + "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": "Wether 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": "Wether 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-driver-configurations-dac-configuration", + "title": "DAC Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "PM_ENABLE && ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED && !SOC_USB_SERIAL_JTAG_SUPPORT_LIGHT_SLEEP && 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", + "id": "component-config-driver-configurations-usb-serial-jtag-configuration", + "title": "USB Serial/JTAG Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "Wether to enable the debug log message for parallel IO driver.\nNote that, this option only controls the parallel IO driver log, won't affect other drivers.", + "id": "PARLIO_ENABLE_DEBUG_LOG", + "name": "PARLIO_ENABLE_DEBUG_LOG", + "range": null, + "title": "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", + "type": "bool" + } + ], + "depends_on": "SOC_PARLIO_SUPPORTED", + "id": "component-config-driver-configurations-parallel-io-configuration", + "title": "Parallel IO Configuration", + "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-driver-configurations-ledc-configuration", + "title": "LEDC Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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": null, + "help": "Wether 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" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-i2c-configuration", + "title": "I2C Configuration", + "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", + "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": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TLS_USING_MBEDTLS", + "name": "ESP_TLS_USING_MBEDTLS", + "range": null, + "title": "mbedTLS", + "type": "bool" + }, + { + "children": [], + "depends_on": "TLS_STACK_WOLFSSL && ", + "help": null, + "id": "ESP_TLS_USING_WOLFSSL", + "name": "ESP_TLS_USING_WOLFSSL", + "range": null, + "title": "wolfSSL (License info in wolfSSL directory README)", + "type": "bool" + } + ], + "depends_on": null, + "help": "The ESP-TLS APIs support multiple backend TLS libraries. Currently mbedTLS and WolfSSL are\nsupported. Different TLS libraries may support different features and have different resource\nusage. Consult the ESP-TLS documentation in ESP-IDF Programming guide for more details.", + "id": "component-config-esp-tls-choose-ssl-tls-library-for-esp-tls-see-help-for-more-info-", + "name": "ESP_TLS_LIBRARY_CHOOSE", + "title": "Choose SSL/TLS library for ESP-TLS (See help for more Info)", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && ESP_TLS_USING_MBEDTLS", + "help": "Enable use of Secure Element for ESP-TLS, this enables internal support for\nATECC608A peripheral on ESPWROOM32SE, which can be used for TLS connection.", + "id": "ESP_TLS_USE_SECURE_ELEMENT", + "name": "ESP_TLS_USE_SECURE_ELEMENT", + "range": null, + "title": "Use Secure Element (ATECC608A) with ESP-TLS", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS && SOC_DIG_SIGN_SUPPORTED", + "help": "Enable use of the Digital Signature Peripheral for ESP-TLS.The DS peripheral\ncan only be used when it is appropriately configured for TLS.\nConsult the ESP-TLS documentation in ESP-IDF Programming Guide for more details.", + "id": "ESP_TLS_USE_DS_PERIPHERAL", + "name": "ESP_TLS_USE_DS_PERIPHERAL", + "range": null, + "title": "Use Digital Signature (DS) Peripheral with ESP-TLS", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS && MBEDTLS_CLIENT_SSL_SESSION_TICKETS", + "help": "Enable session ticket support as specified in RFC5077.", + "id": "ESP_TLS_CLIENT_SESSION_TICKETS", + "name": "ESP_TLS_CLIENT_SESSION_TICKETS", + "range": null, + "title": "Enable client session tickets", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "ESP_TLS_SERVER_SESSION_TICKETS", + "help": "Sets the session ticket timeout used in the tls server.", + "id": "ESP_TLS_SERVER_SESSION_TICKET_TIMEOUT", + "name": "ESP_TLS_SERVER_SESSION_TICKET_TIMEOUT", + "range": null, + "title": "Server session ticket timeout in seconds", + "type": "int" + } + ], + "depends_on": "ESP_TLS_SERVER && ESP_TLS_USING_MBEDTLS && MBEDTLS_SERVER_SSL_SESSION_TICKETS", + "help": "Enable session ticket support as specified in RFC5077", + "id": "ESP_TLS_SERVER_SESSION_TICKETS", + "name": "ESP_TLS_SERVER_SESSION_TICKETS", + "range": null, + "title": "Enable server session tickets", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS && ESP_TLS_SERVER", + "help": "Ability to configure and use a certificate selection callback during server handshake,\nto select a certificate to present to the client based on the TLS extensions supplied in\nthe client hello (alpn, sni, etc).", + "id": "ESP_TLS_SERVER_CERT_SELECT_HOOK", + "name": "ESP_TLS_SERVER_CERT_SELECT_HOOK", + "range": null, + "title": "Certificate selection hook", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_SERVER && ESP_TLS_USING_MBEDTLS", + "help": "When this option is enabled, the peer (here, the client) certificate is checked by the server,\nhowever the handshake continues even if verification failed. By default, the\npeer certificate is not checked and ignored by the server.\n\nmbedtls_ssl_get_verify_result() can be called after the handshake is complete to\nretrieve status of verification.", + "id": "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL", + "name": "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL", + "range": null, + "title": "ESP-TLS Server: Set minimum Certificate Verification mode to Optional", + "type": "bool" + } + ], + "depends_on": "(ESP_TLS_USING_MBEDTLS && MBEDTLS_TLS_SERVER) || ESP_TLS_USING_WOLFSSL", + "help": "Enable support for creating server side SSL/TLS session, available for mbedTLS\nas well as wolfSSL TLS library.", + "id": "ESP_TLS_SERVER", + "name": "ESP_TLS_SERVER", + "range": null, + "title": "Enable ESP-TLS Server", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support for pre shared key ciphers, supported for both mbedTLS as well as\nwolfSSL TLS library.", + "id": "ESP_TLS_PSK_VERIFICATION", + "name": "ESP_TLS_PSK_VERIFICATION", + "range": null, + "title": "Enable PSK verification", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TLS_INSECURE", + "help": "After enabling this option the esp-tls client will skip the server certificate verification\nby default. Note that this option will only modify the default behaviour of esp-tls client\nregarding server cert verification. The default behaviour should only be applicable when\nno other option regarding the server cert verification is opted in the esp-tls config\n(e.g. crt_bundle_attach, use_global_ca_store etc.).\nWARNING : Enabling this option comes with a potential risk of establishing a TLS connection\nwith a server which has a fake identity, provided that the server certificate\nis not provided either through API or other mechanism like ca_store etc.", + "id": "ESP_TLS_SKIP_SERVER_CERT_VERIFY", + "name": "ESP_TLS_SKIP_SERVER_CERT_VERIFY", + "range": null, + "title": "Skip server certificate verification by default (WARNING: ONLY FOR TESTING PURPOSE, READ HELP)", + "type": "bool" + } + ], + "depends_on": null, + "help": "You can enable some potentially insecure options. These options should only be used for testing pusposes.\nOnly enable these options if you are very sure.", + "id": "ESP_TLS_INSECURE", + "name": "ESP_TLS_INSECURE", + "range": null, + "title": "Allow potentially insecure options", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_WOLFSSL", + "help": "Enables server verification with Intermediate CA cert, does not authenticate full chain\nof trust upto the root CA cert (After Enabling this option client only needs to have Intermediate\nCA certificate of the server to authenticate server, root CA cert is not necessary).", + "id": "ESP_WOLFSSL_SMALL_CERT_VERIFY", + "name": "ESP_WOLFSSL_SMALL_CERT_VERIFY", + "range": null, + "title": "Enable SMALL_CERT_VERIFY", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_WOLFSSL", + "help": "Enable detailed debug prints for wolfSSL SSL library.", + "id": "ESP_DEBUG_WOLFSSL", + "name": "ESP_DEBUG_WOLFSSL", + "range": null, + "title": "Enable debug logs for wolfSSL", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-tls", + "title": "ESP-TLS", + "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 continumous 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" + } + ], + "depends_on": null, + "id": "component-config-adc-and-adc-calibration", + "title": "ADC and ADC Calibration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "(ESP_WIFI_ENABLED && BT_ENABLED) || (ESP_WIFI_ENABLED && IEEE802154_ENABLED) || (IEEE802154_ENABLED && BT_ENABLED)", + "help": "If enabled, WiFi & Bluetooth coexistence is controlled by software rather than hardware.\nRecommended for heavy traffic scenarios. Both coexistence configuration options are\nautomatically managed, no user intervention is required.\nIf only Bluetooth is used, it is recommended to disable this option to reduce binary file\nsize.", + "id": "ESP_COEX_SW_COEXIST_ENABLE", + "name": "ESP_COEX_SW_COEXIST_ENABLE", + "range": null, + "title": "Software controls WiFi/Bluetooth coexistence", + "type": "bool" + }, + { + "children": [], + "depends_on": "!(BT_ENABLED || NIMBLE_ENABLED) && !IDF_TARGET_ESP32", + "help": "If enabled, HW External coexistence arbitration is managed by GPIO pins.\nIt can support three types of wired combinations so far which are 1-wired/2-wired/3-wired.\nUser can select GPIO pins in application code with configure interfaces.\n\nThis function depends on BT-off\nbecause currently we do not support external coex and internal coex simultaneously.", + "id": "ESP_COEX_EXTERNAL_COEXIST_ENABLE", + "name": "ESP_COEX_EXTERNAL_COEXIST_ENABLE", + "range": null, + "title": "External Coexistence", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-wireless-coexistence", + "title": "Wireless Coexistence", + "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": null, + "help": null, + "id": "ETH_ENABLED", + "name": "ETH_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ETH_PHY_INTERFACE_RMII", + "name": "ETH_PHY_INTERFACE_RMII", + "range": null, + "title": "Reduced Media Independent Interface (RMII)", + "type": "bool" + } + ], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Select the communication interface between MAC and PHY chip.", + "id": "component-config-ethernet-support-esp32-internal-emac-controller-phy-interface", + "name": "ETH_PHY_INTERFACE", + "title": "PHY interface", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "MAC will get RMII clock from outside.\nNote that ESP32 only supports GPIO0 to input the RMII clock.", + "id": "ETH_RMII_CLK_INPUT", + "name": "ETH_RMII_CLK_INPUT", + "range": null, + "title": "Input RMII clock from external", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "ESP32 can generate RMII clock by internal APLL.\nThis clock can be routed to the external PHY device.\nESP32 supports to route the RMII clock to GPIO0/16/17.", + "id": "ETH_RMII_CLK_OUTPUT", + "name": "ETH_RMII_CLK_OUTPUT", + "range": null, + "title": "Output RMII clock from internal", + "type": "bool" + } + ], + "depends_on": "ETH_PHY_INTERFACE_RMII && ETH_USE_ESP32_EMAC", + "help": "Select external or internal RMII clock.", + "id": "component-config-ethernet-support-esp32-internal-emac-controller-rmii-clock-mode", + "name": "ETH_RMII_CLK_MODE", + "title": "RMII clock mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "ETH_RMII_CLK_INPUT && ETH_USE_ESP32_EMAC", + "help": "ESP32 only supports GPIO0 to input the RMII clock.", + "id": "ETH_RMII_CLK_IN_GPIO", + "name": "ETH_RMII_CLK_IN_GPIO", + "range": [ + 0, + 0 + ], + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", + "help": "GPIO0 can be set to output a pre-divided PLL clock (test only!).\nEnabling this option will configure GPIO0 to output a 50MHz clock.\nIn fact this clock doesn't have directly relationship with EMAC peripheral.\nSometimes this clock won't work well with your PHY chip. You might need to\nadd some extra devices after GPIO0 (e.g. inverter).\nNote that outputting RMII clock on GPIO0 is an experimental practice.\nIf you want the Ethernet to work with WiFi, don't select GPIO0 output mode for stability.", + "id": "ETH_RMII_CLK_OUTPUT_GPIO0", + "name": "ETH_RMII_CLK_OUTPUT_GPIO0", + "range": null, + "title": "Output RMII clock from GPIO0 (Experimental!)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ETH_RMII_CLK_OUTPUT_GPIO0 && ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", + "help": "Set the GPIO number to output RMII Clock.", + "id": "ETH_RMII_CLK_OUT_GPIO", + "name": "ETH_RMII_CLK_OUT_GPIO", + "range": null, + "title": "RMII clock GPIO number", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Set the size of each buffer used by Ethernet MAC DMA.", + "id": "ETH_DMA_BUFFER_SIZE", + "name": "ETH_DMA_BUFFER_SIZE", + "range": [ + 256, + 1600 + ], + "title": "Ethernet DMA buffer size (Byte)", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Number of DMA receive buffers. Each buffer's size is ETH_DMA_BUFFER_SIZE.\nLarger number of buffers could increase throughput somehow.", + "id": "ETH_DMA_RX_BUFFER_NUM", + "name": "ETH_DMA_RX_BUFFER_NUM", + "range": [ + 3, + 30 + ], + "title": "Amount of Ethernet DMA Rx buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Number of DMA transmit buffers. Each buffer's size is ETH_DMA_BUFFER_SIZE.\nLarger number of buffers could increase throughput somehow.", + "id": "ETH_DMA_TX_BUFFER_NUM", + "name": "ETH_DMA_TX_BUFFER_NUM", + "range": [ + 3, + 30 + ], + "title": "Amount of Ethernet DMA Tx buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_DMA_RX_BUFFER_NUM > 15 && ETH_USE_ESP32_EMAC", + "help": "Ethernet MAC engine on ESP32 doesn't feature a flow control logic.\nThe MAC driver can perform a software flow control if you enable this option.\nNote that, if the RX buffer number is small, enabling software flow control will\ncause obvious performance loss.", + "id": "ETH_SOFT_FLOW_CONTROL", + "name": "ETH_SOFT_FLOW_CONTROL", + "range": null, + "title": "Enable software flow control", + "type": "bool" + }, + { + "children": [], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "If enabled, functions related to RX/TX are placed into IRAM. It can improve Ethernet throughput.\nIf disabled, all functions are placed into FLASH.", + "id": "ETH_IRAM_OPTIMIZATION", + "name": "ETH_IRAM_OPTIMIZATION", + "range": null, + "title": "Enable IRAM optimization", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "help": "ESP32 integrates a 10/100M Ethernet MAC controller.", + "id": "ETH_USE_ESP32_EMAC", + "is_menuconfig": true, + "name": "ETH_USE_ESP32_EMAC", + "range": null, + "title": "Support ESP32 internal EMAC controller", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ETH_USE_SPI_ETHERNET", + "help": "DM9051 is a fast Ethernet controller with an SPI interface.\nIt's also integrated with a 10/100M PHY and MAC.\nSelect this to enable DM9051 driver.", + "id": "ETH_SPI_ETHERNET_DM9051", + "name": "ETH_SPI_ETHERNET_DM9051", + "range": null, + "title": "Use DM9051", + "type": "bool" + }, + { + "children": [], + "depends_on": "ETH_USE_SPI_ETHERNET", + "help": "W5500 is a HW TCP/IP embedded Ethernet controller.\nTCP/IP stack, 10/100 Ethernet MAC and PHY are embedded in a single chip.\nHowever the driver in ESP-IDF only enables the RAW MAC mode,\nmaking it compatible with the software TCP/IP stack.\nSay yes to enable W5500 driver.", + "id": "ETH_SPI_ETHERNET_W5500", + "name": "ETH_SPI_ETHERNET_W5500", + "range": null, + "title": "Use W5500 (MAC RAW)", + "type": "bool" + }, + { + "children": [], + "depends_on": "ETH_USE_SPI_ETHERNET", + "help": "The KSZ8851SNL is a single-chip Fast Ethernet controller consisting of\na 10/100 physical layer transceiver (PHY), a MAC, and a Serial Peripheral Interface (SPI).\nSelect this to enable KSZ8851SNL driver.", + "id": "ETH_SPI_ETHERNET_KSZ8851SNL", + "name": "ETH_SPI_ETHERNET_KSZ8851SNL", + "range": null, + "title": "Use KSZ8851SNL", + "type": "bool" + } + ], + "depends_on": null, + "help": "ESP-IDF can also support some SPI-Ethernet modules.", + "id": "ETH_USE_SPI_ETHERNET", + "is_menuconfig": true, + "name": "ETH_USE_SPI_ETHERNET", + "range": null, + "title": "Support SPI to Ethernet Module", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ETH_USE_OPENETH", + "help": "Number of DMA receive buffers, each buffer is 1600 bytes.", + "id": "ETH_OPENETH_DMA_RX_BUFFER_NUM", + "name": "ETH_OPENETH_DMA_RX_BUFFER_NUM", + "range": null, + "title": "Number of Ethernet DMA Rx buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_USE_OPENETH", + "help": "Number of DMA transmit buffers, each buffer is 1600 bytes.", + "id": "ETH_OPENETH_DMA_TX_BUFFER_NUM", + "name": "ETH_OPENETH_DMA_TX_BUFFER_NUM", + "range": null, + "title": "Number of Ethernet DMA Tx buffers", + "type": "int" + } + ], + "depends_on": null, + "help": "OpenCores Ethernet MAC driver can be used when an ESP-IDF application\nis executed in QEMU. This driver is not supported when running on a\nreal chip.", + "id": "ETH_USE_OPENETH", + "is_menuconfig": true, + "name": "ETH_USE_OPENETH", + "range": null, + "title": "Support OpenCores Ethernet MAC (for use with QEMU)", + "type": "menu" + }, + { + "children": [], + "depends_on": "ETH_ENABLED", + "help": "Prevents multiple accesses when Ethernet interface is used as shared resource and multiple\nfunctionalities might try to access it at a time.", + "id": "ETH_TRANSMIT_MUTEX", + "name": "ETH_TRANSMIT_MUTEX", + "range": null, + "title": "Enable Transmit Mutex", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-ethernet", + "title": "Ethernet", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enables collections of statistics in the event loop library such as the number of events posted\nto/recieved by an event loop, number of callbacks involved, number of events dropped to to a full event\nloop queue, run time of event handlers, and number of times/run time of each event handler.", + "id": "ESP_EVENT_LOOP_PROFILING", + "name": "ESP_EVENT_LOOP_PROFILING", + "range": null, + "title": "Enable event loop profiling", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_EVENT_POST_FROM_ISR", + "help": "Enable posting events from interrupt handlers placed in IRAM. Enabling this option places API functions\nesp_event_post and esp_event_post_to in IRAM.", + "id": "ESP_EVENT_POST_FROM_IRAM_ISR", + "name": "ESP_EVENT_POST_FROM_IRAM_ISR", + "range": null, + "title": "Support posting events from ISRs placed in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable posting events from interrupt handlers.", + "id": "ESP_EVENT_POST_FROM_ISR", + "name": "ESP_EVENT_POST_FROM_ISR", + "range": null, + "title": "Support posting events from ISRs", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-event-loop-library", + "title": "Event Loop Library", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_GDBSTUB_ENABLED", + "name": "ESP_GDBSTUB_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable builtin GDBStub.\nThis allows to debug the target device using serial port:\n- Run 'idf.py monitor'.\n- Wait for the device to initialize.\n- Press Ctrl+C to interrupt the execution and enter GDB attached to your device for debugging.\nNOTE: all UART input will be handled by GDBStub.", + "id": "ESP_SYSTEM_GDBSTUB_RUNTIME", + "name": "ESP_SYSTEM_GDBSTUB_RUNTIME", + "range": null, + "title": "GDBStub at runtime", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_GDBSTUB_SUPPORT_TASKS", + "help": "Set the number of tasks which GDB Stub will support.", + "id": "ESP_GDBSTUB_MAX_TASKS", + "name": "ESP_GDBSTUB_MAX_TASKS", + "range": null, + "title": "Maximum number of tasks supported by GDB Stub", + "type": "int" + } + ], + "depends_on": "ESP_GDBSTUB_ENABLED", + "help": "If enabled, GDBStub can supply the list of FreeRTOS tasks to GDB.\nThread list can be queried from GDB using 'info threads' command.\nNote that if GDB task lists were corrupted, this feature may not work.\nIf GDBStub fails, try disabling this feature.", + "id": "ESP_GDBSTUB_SUPPORT_TASKS", + "name": "ESP_GDBSTUB_SUPPORT_TASKS", + "range": null, + "title": "Enable listing FreeRTOS tasks through GDB Stub", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-gdb-stub", + "title": "GDB Stub", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This option will enable https protocol by linking esp-tls library and initializing SSL transport", + "id": "ESP_HTTP_CLIENT_ENABLE_HTTPS", + "name": "ESP_HTTP_CLIENT_ENABLE_HTTPS", + "range": null, + "title": "Enable https", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option will enable HTTP Basic Authentication. It is disabled by default as Basic\nauth uses unencrypted encoding, so it introduces a vulnerability when not using TLS", + "id": "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH", + "name": "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH", + "range": null, + "title": "Enable HTTP Basic Authentication", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option will enable HTTP Digest Authentication. It is enabled by default, but use of this\nconfiguration is not recommended as the password can be derived from the exchange, so it introduces\na vulnerability when not using TLS", + "id": "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH", + "name": "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH", + "range": null, + "title": "Enable HTTP Digest Authentication", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-http-client", + "title": "ESP HTTP client", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This sets the maximum supported size of headers section in HTTP request packet to be processed by the\nserver", + "id": "HTTPD_MAX_REQ_HDR_LEN", + "name": "HTTPD_MAX_REQ_HDR_LEN", + "range": null, + "title": "Max HTTP Request Header Length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This sets the maximum supported size of HTTP request URI to be processed by the server", + "id": "HTTPD_MAX_URI_LEN", + "name": "HTTPD_MAX_URI_LEN", + "range": null, + "title": "Max HTTP URI Length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Using TCP_NODEALY socket option ensures that HTTP error response reaches the client before the\nunderlying socket is closed. Please note that turning this off may cause multiple test failures", + "id": "HTTPD_ERR_RESP_NO_DELAY", + "name": "HTTPD_ERR_RESP_NO_DELAY", + "range": null, + "title": "Use TCP_NODELAY socket option when sending HTTP error responses", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This sets the size of the temporary buffer used to receive and discard any remaining data that is\nreceived from the HTTP client in the request, but not processed as part of the server HTTP request\nhandler.\n\nIf the remaining data is larger than the available buffer size, the buffer will be filled in multiple\niterations. The buffer should be small enough to fit on the stack, but large enough to avoid excessive\niterations.", + "id": "HTTPD_PURGE_BUF_LEN", + "name": "HTTPD_PURGE_BUF_LEN", + "range": null, + "title": "Length of temporary buffer for purging data", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this will log discarded binary HTTP request data at Debug level.\nFor large content data this may not be desirable as it will clutter the log.", + "id": "HTTPD_LOG_PURGE_DATA", + "name": "HTTPD_LOG_PURGE_DATA", + "range": null, + "title": "Log purged content data at Debug level", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This sets the WebSocket server support.", + "id": "HTTPD_WS_SUPPORT", + "name": "HTTPD_WS_SUPPORT", + "range": null, + "title": "WebSocket server support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This makes httpd_queue_work() API to wait until a message space is available on UDP control socket.\nIt internally uses a counting semaphore with count set to `LWIP_UDP_RECVMBOX_SIZE` to achieve this.\nThis config will slightly change API behavior to block until message gets delivered on control socket.", + "id": "HTTPD_QUEUE_WORK_BLOCKING", + "name": "HTTPD_QUEUE_WORK_BLOCKING", + "range": null, + "title": "httpd_queue_work as blocking API", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-http-server", + "title": "HTTP Server", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Exposes an additional callback whereby firmware data could be decrypted\nbefore being processed by OTA update component. This can help to integrate\nexternal encryption related format and removal of such encapsulation layer\nfrom firmware image.", + "id": "ESP_HTTPS_OTA_DECRYPT_CB", + "name": "ESP_HTTPS_OTA_DECRYPT_CB", + "range": null, + "title": "Provide decryption callback", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "It is highly recommended to keep HTTPS (along with server certificate validation) enabled.\nEnabling this option comes with potential risk of:\n- Non-encrypted communication channel with server\n- Accepting firmware upgrade image from server with fake identity", + "id": "ESP_HTTPS_OTA_ALLOW_HTTP", + "name": "ESP_HTTPS_OTA_ALLOW_HTTP", + "range": null, + "title": "Allow HTTP for OTA (WARNING: ONLY FOR TESTING PURPOSE, READ HELP)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-https-ota", + "title": "ESP HTTPS OTA", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS && MBEDTLS_TLS_SERVER", + "help": "Enable ESP HTTPS server component", + "id": "ESP_HTTPS_SERVER_ENABLE", + "name": "ESP_HTTPS_SERVER_ENABLE", + "range": null, + "title": "Enable ESP_HTTPS_SERVER component", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-https-server", + "title": "ESP HTTPS server", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_0", + "name": "ESP32_REV_MIN_0", + "range": null, + "title": "Rev v0.0 (ECO0)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_1", + "name": "ESP32_REV_MIN_1", + "range": null, + "title": "Rev v1.0 (ECO1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_1_1", + "name": "ESP32_REV_MIN_1_1", + "range": null, + "title": "Rev v1.1 (ECO1.1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_2", + "name": "ESP32_REV_MIN_2", + "range": null, + "title": "Rev v2.0 (ECO2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_3", + "name": "ESP32_REV_MIN_3", + "range": null, + "title": "Rev v3.0 (ECO3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_3_1", + "name": "ESP32_REV_MIN_3_1", + "range": null, + "title": "Rev v3.1 (ECO4)", + "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-revision", + "name": "ESP32_REV_MIN", + "title": "Minimum Supported ESP32 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MIN", + "name": "ESP32_REV_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MIN_FULL", + "name": "ESP32_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": "ESP32_REV_MAX_FULL", + "name": "ESP32_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": "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": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32_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": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32_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", + "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", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP && !ESP_SLEEP_POWER_DOWN_FLASH", + "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_POWER_DOWN_FLASH && (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, 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 activeare) 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": [], + "depends_on": "IDF_TARGET_ESP32C3", + "help": "Its not able to stall ESP32C3 systimer in sleep.\nTo fix related RTOS TICK issue, select it to disable related systimer during sleep.\nTODO: IDF-7036", + "id": "ESP_SLEEP_SYSTIMER_STALL_WORKAROUND", + "name": "ESP_SLEEP_SYSTIMER_STALL_WORKAROUND", + "range": null, + "title": "ESP32C3 SYSTIMER Stall Issue Workaround", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-esp_sleep_workaround", + "title": "ESP_SLEEP_WORKAROUND", + "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 150 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 32kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32kHz oscillator at 32K_XN pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_8MD256", + "name": "RTC_CLK_SRC_INT_8MD256", + "range": null, + "title": "Internal 8.5MHz oscillator, divided by 256 (~33kHz)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.\n\n- \"Internal 150kHz oscillator\" option provides lowest deep sleep current\n consumption, and does not require extra external components. However\n frequency stability with respect to temperature is poor, so time may\n drift in deep/light sleep modes.\n- \"External 32kHz crystal\" provides better frequency stability, at the\n expense of slightly higher (1uA) deep sleep current consumption.\n- \"External 32kHz oscillator\" allows using 32kHz clock generated by an\n external circuit. In this case, external clock signal must be connected\n to 32K_XN pin. Amplitude should be <1.2V in case of sine wave signal,\n and <1V in case of square wave signal. Common mode voltage should be\n 0.1 < Vcm < 0.5Vamp, where Vamp is the signal amplitude.\n Additionally, 1nF capacitor must be connected between 32K_XP pin and\n ground. 32K_XP pin can not be used as a GPIO in this case.\n- \"Internal 8.5MHz oscillator divided by 256\" option results in higher\n deep sleep current (by 5uA) but has better frequency stability than\n the internal 150kHz oscillator. It does not require external components.", + "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", + "name": "RTC_CLK_SRC", + "title": "RTC clock source", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT_NONE", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT", + "range": null, + "title": "Method 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT_V2", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_V2", + "range": null, + "title": "Method 2", + "type": "bool" + } + ], + "depends_on": "RTC_CLK_SRC_EXT_CRYS && ESP32_REV_MIN_FULL < 200", + "help": "With some 32kHz crystal configurations, the X32N and X32P pins may not have enough\ndrive strength to keep the crystal oscillating. Choose the method to provide\nadditional current from touchpad 9 to the external 32kHz crystal. Note that\nthe deep sleep current is slightly high (4-5uA) and the touchpad and the\nwakeup sources of both touchpad and ULP are not available in method 1 and method 2.\n\nThis problem is fixed in ESP32 ECO 3, so this workaround is not needed. Setting the\nproject configuration to minimum revision ECO3 will disable this option, , allow\nall wakeup sources, and save some code size.\n\n- \"None\" option will not provide additional current to external crystal\n- \"Method 1\" option can't ensure 100% to solve the external 32k crystal start failed\n issue, but the touchpad can work in this method.\n- \"Method 2\" option can solve the external 32k issue, but the touchpad can't work\n in this method.", + "id": "component-config-hardware-settings-rtc-clock-config-additional-current-for-external-32khz-crystal", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_METHOD", + "title": "Additional current for external 32kHz crystal", + "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" + }, + { + "children": [], + "depends_on": "RTC_CLK_SRC_EXT_CRYS", + "help": "Number of attempts to repeat 32k XTAL calibration\nbefore giving up and switching to the internal RC.\nIncrease this option if the 32k crystal oscillator\ndoes not start and switches to internal RC.", + "id": "RTC_XTAL_CAL_RETRY", + "name": "RTC_XTAL_CAL_RETRY", + "range": null, + "title": "Number of attempts to repeat 32k XTAL 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": "PERIPH_CTRL_FUNC_IN_IRAM", + "name": "PERIPH_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place peripheral 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": "Wether 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.\nEnabling this option can improve driver performance as well.", + "id": "GDMA_CTRL_FUNC_IN_IRAM", + "name": "GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GDMA control functions into IRAM", + "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).", + "id": "GDMA_ISR_IRAM_SAFE", + "name": "GDMA_ISR_IRAM_SAFE", + "range": null, + "title": "GDMA ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "Wether to enable the debug log message for GDMA driver.\nNote that, this option only controls the GDMA driver log, won't affect other drivers.", + "id": "GDMA_ENABLE_DEBUG_LOG", + "name": "GDMA_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-gdma-configuration", + "title": "GDMA Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_24M && ", + "help": null, + "id": "XTAL_FREQ_24", + "name": "XTAL_FREQ_24", + "range": null, + "title": "24 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_26M && ", + "help": null, + "id": "XTAL_FREQ_26", + "name": "XTAL_FREQ_26", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_32M && ", + "help": null, + "id": "XTAL_FREQ_32", + "name": "XTAL_FREQ_32", + "range": null, + "title": "32 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_40M && ", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_XTAL_SUPPORT_AUTO_DETECT && ", + "help": null, + "id": "XTAL_FREQ_AUTO", + "name": "XTAL_FREQ_AUTO", + "range": null, + "title": "Autodetect", + "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.\n\nNote: The XTAL_FREQ_AUTO option allows the ESP target to automatically estimating XTAL clock's\noperating frequency. However, this feature is only supported on the ESP32. The ESP32 uses the\ninternal 8MHZ as a reference when estimating. Due to the internal oscillator's frequency being\ntemperature dependent, usage of the XTAL_FREQ_AUTO is not recommended in applications that operate\nin high ambient temperatures or use high-temperature qualified chips and modules.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", + "name": "XTAL_FREQ_SEL", + "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": [], + "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-hardware-settings-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 the\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-hardware-settings-crypto-dpa-protection", + "title": "Crypto DPA Protection", + "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" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings", + "title": "Hardware Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "LCD driver allocates an internal buffer to transform the data into a proper format, because of\nthe endian order mismatch. This option is to set the size of the buffer, in bytes.", + "id": "LCD_PANEL_IO_FORMAT_BUF_SIZE", + "name": "LCD_PANEL_IO_FORMAT_BUF_SIZE", + "range": null, + "title": "LCD panel io format buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Wether to enable the debug log message for LCD driver.\nNote that, this option only controls the LCD driver log, won't affect other drivers.", + "id": "LCD_ENABLE_DEBUG_LOG", + "name": "LCD_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_LCD_RGB_SUPPORTED", + "help": "Ensure the LCD interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).\nIf you want the LCD driver to keep flushing the screen even when cache ops disabled,\nyou can enable this option. Note, this will also increase the IRAM usage.", + "id": "LCD_RGB_ISR_IRAM_SAFE", + "name": "LCD_RGB_ISR_IRAM_SAFE", + "range": null, + "title": "RGB LCD ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_LCD_RGB_SUPPORTED", + "help": "Reset the GDMA channel every VBlank to stop permanent desyncs from happening.\nOnly need to enable it when in your application, the DMA can't deliver data\nas fast as the LCD consumes it.", + "id": "LCD_RGB_RESTART_IN_VSYNC", + "name": "LCD_RGB_RESTART_IN_VSYNC", + "range": null, + "title": "Restart transmission in VSYNC", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lcd-and-touch-panel-lcd-peripheral-configuration", + "title": "LCD Peripheral Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-lcd-and-touch-panel", + "title": "LCD and Touch Panel", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The value of 0 indicates the IP lost timer is disabled, otherwise the timer is enabled.\n\nThe IP address may be lost because of some reasons, e.g. when the station disconnects\nfrom soft-AP, or when DHCP IP renew fails etc. If the IP lost timer is enabled, it will\nbe started everytime the IP is lost. Event SYSTEM_EVENT_STA_LOST_IP will be raised if\nthe timer expires. The IP lost timer is stopped if the station get the IP again before\nthe timer expires.", + "id": "ESP_NETIF_IP_LOST_TIMER_INTERVAL", + "name": "ESP_NETIF_IP_LOST_TIMER_INTERVAL", + "range": [ + 0, + 65535 + ], + "title": "IP Address lost timer interval (seconds)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_ENABLE && ", + "help": "lwIP is a small independent implementation of the TCP/IP protocol suite.", + "id": "ESP_NETIF_TCPIP_LWIP", + "name": "ESP_NETIF_TCPIP_LWIP", + "range": null, + "title": "LwIP", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Dummy implementation of esp-netif functionality which connects driver transmit\nto receive function. This option is for testing purpose only", + "id": "ESP_NETIF_LOOPBACK", + "name": "ESP_NETIF_LOOPBACK", + "range": null, + "title": "Loopback", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose the TCP/IP Stack to work, for example, LwIP, uIP, etc.", + "id": "component-config-esp-netif-adapter-tcp-ip-stack-library", + "name": "ESP_NETIF_USE_TCPIP_STACK_LIB", + "title": "TCP/IP Stack Library", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_NETIF_USES_TCPIP_WITH_BSD_API", + "name": "ESP_NETIF_USES_TCPIP_WITH_BSD_API", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable if esp_netif_receive() should return error code. This is useful to inform upper layers\nthat packet input to TCP/IP stack failed, so the upper layers could implement flow control.\nThis option is disabled by default due to backward compatibility and will be enabled in v6.0 (IDF-7194)", + "id": "ESP_NETIF_RECEIVE_REPORT_ERRORS", + "name": "ESP_NETIF_RECEIVE_REPORT_ERRORS", + "range": null, + "title": "Use esp_err_t to report errors from esp_netif_receive", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_NETIF_L2_TAP", + "help": "Maximum number of opened File descriptors (FD's) associated with ESP TAP device. ESP TAP FD's take up\na certain amount of memory, and allowing fewer FD's to be opened at the same time conserves memory.", + "id": "ESP_NETIF_L2_TAP_MAX_FDS", + "name": "ESP_NETIF_L2_TAP_MAX_FDS", + "range": null, + "title": "Maximum number of opened L2 TAP File descriptors", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_NETIF_L2_TAP", + "help": "Maximum number of frames queued in opened File descriptor. Once the queue is full, the newly arriving\nframes are dropped until the queue has enough room to accept incoming traffic (Tail Drop queue\nmanagement).", + "id": "ESP_NETIF_L2_TAP_RX_QUEUE_SIZE", + "name": "ESP_NETIF_L2_TAP_RX_QUEUE_SIZE", + "range": null, + "title": "Size of L2 TAP Rx queue", + "type": "int" + } + ], + "depends_on": null, + "help": "A user program can read/write link layer (L2) frames from/to ESP TAP device.\nThe ESP TAP device can be currently associated only with Ethernet physical interfaces.", + "id": "ESP_NETIF_L2_TAP", + "name": "ESP_NETIF_L2_TAP", + "range": null, + "title": "Enable netif L2 TAP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_NETIF_TCPIP_LWIP", + "help": "Enable LwIP IEEE 802.1D bridge support in ESP-NETIF. Note that \"Number of clients store data in netif\"\n(LWIP_NUM_NETIF_CLIENT_DATA) option needs to be properly configured to be LwIP bridge avaiable!", + "id": "ESP_NETIF_BRIDGE_EN", + "name": "ESP_NETIF_BRIDGE_EN", + "range": null, + "title": "Enable LwIP IEEE 802.1D bridge", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-netif-adapter", + "title": "ESP NETIF Adapter", + "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" + } + ], + "depends_on": null, + "id": "component-config-partition-api-configuration", + "title": "Partition API Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If this option is enabled, NVS will be initialized and calibration data will be loaded from there.\nPHY calibration will be skipped on deep sleep wakeup. If calibration data is not found, full calibration\nwill be performed and stored in NVS. Normally, only partial calibration will be performed.\nIf this option is disabled, full calibration will be performed.\n\nIf it's easy that your board calibrate bad data, choose 'n'.\nTwo cases for example, you should choose 'n':\n1.If your board is easy to be booted up with antenna disconnected.\n2.Because of your board design, each time when you do calibration, the result are too unstable.\nIf unsure, choose 'y'.", + "id": "ESP_PHY_CALIBRATION_AND_DATA_STORAGE", + "name": "ESP_PHY_CALIBRATION_AND_DATA_STORAGE", + "range": null, + "title": "Store phy calibration data in NVS", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_PHY_INIT_DATA_IN_PARTITION", + "help": "If enabled, PHY init data will be restored to default if\nit cannot be verified successfully to avoid endless bootloops.\n\nIf unsure, choose 'n'.", + "id": "ESP_PHY_DEFAULT_INIT_IF_INVALID", + "name": "ESP_PHY_DEFAULT_INIT_IF_INVALID", + "range": null, + "title": "Reset default PHY init data if invalid", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_PHY_MULTIPLE_INIT_DATA_BIN && ESP_PHY_INIT_DATA_IN_PARTITION", + "help": "If enabled, multiple phy init data bin will embedded into app bin\nIf not enabled, multiple phy init data bin will still leave alone, and need to be flashed by users.", + "id": "ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED", + "name": "ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED", + "range": null, + "title": "Support embedded multiple phy init data bin to app bin", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PHY_MULTIPLE_INIT_DATA_BIN && ESP_PHY_INIT_DATA_IN_PARTITION", + "help": "If enabled, when an error occurs while the PHY init data is updated,\nthe program will terminate and restart.\nIf not enabled, the PHY init data will not be updated when an error occurs.", + "id": "ESP_PHY_INIT_DATA_ERROR", + "name": "ESP_PHY_INIT_DATA_ERROR", + "range": null, + "title": "Terminate operation when PHY init data error", + "type": "bool" + } + ], + "depends_on": "ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_INIT_DATA_IN_PARTITION", + "help": "If enabled, the corresponding PHY init data type can be automatically switched\naccording to the country code. China's PHY init data bin is used by default.\nCan be modified by country information in API esp_wifi_set_country().\nThe priority of switching the PHY init data type is:\n1. Country configured by API esp_wifi_set_country()\nand the parameter policy is WIFI_COUNTRY_POLICY_MANUAL.\n2. Country notified by the connected AP.\n3. Country configured by API esp_wifi_set_country()\nand the parameter policy is WIFI_COUNTRY_POLICY_AUTO.", + "id": "ESP_PHY_MULTIPLE_INIT_DATA_BIN", + "name": "ESP_PHY_MULTIPLE_INIT_DATA_BIN", + "range": null, + "title": "Support multiple PHY init data bin", + "type": "bool" + } + ], + "depends_on": "SOC_WIFI_SUPPORTED", + "help": "If enabled, PHY init data will be loaded from a partition.\nWhen using a custom partition table, make sure that PHY data\npartition is included (type: 'data', subtype: 'phy').\nWith default partition tables, this is done automatically.\nIf PHY init data is stored in a partition, it has to be flashed there,\notherwise runtime error will occur.\n\nIf this option is not enabled, PHY init data will be embedded\ninto the application binary.\n\nIf unsure, choose 'n'.", + "id": "ESP_PHY_INIT_DATA_IN_PARTITION", + "is_menuconfig": true, + "name": "ESP_PHY_INIT_DATA_IN_PARTITION", + "range": null, + "title": "Use a partition to store PHY init data", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum transmit power for WiFi radio. Actual transmit power for high\ndata rates may be lower than this setting.", + "id": "ESP_PHY_MAX_WIFI_TX_POWER", + "name": "ESP_PHY_MAX_WIFI_TX_POWER", + "range": [ + 10, + 20 + ], + "title": "Max WiFi TX power (dBm)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_PHY_MAX_TX_POWER", + "name": "ESP_PHY_MAX_TX_POWER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_PM_SUPPORT_MAC_BB_PD && FREERTOS_USE_TICKLESS_IDLE", + "help": "If enabled, the MAC and baseband of Wi-Fi and Bluetooth will be powered\ndown when PHY is disabled. Enabling this setting reduces power consumption\nby a small amount but increases RAM use by approximately 4 KB(Wi-Fi only),\n2 KB(Bluetooth only) or 5.3 KB(Wi-Fi + Bluetooth).", + "id": "ESP_PHY_MAC_BB_PD", + "name": "ESP_PHY_MAC_BB_PD", + "range": null, + "title": "Power down MAC and baseband of Wi-Fi and Bluetooth when PHY is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_BROWNOUT_DET", + "help": "When brownout reset occurs, reduce PHY TX power to keep the code running.", + "id": "ESP_PHY_REDUCE_TX_POWER", + "name": "ESP_PHY_REDUCE_TX_POWER", + "range": null, + "title": "Reduce PHY TX power when brownout reset", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", + "help": "On some ESP targets, the USB PHY can interfere with WiFi thus lowering WiFi performance. As a result, on\nthose affected ESP targets, the ESP PHY library's initialization will automatically disable the USB PHY to\nget best WiFi performance. This option controls whether or not the ESP PHY library will keep the USB PHY\nenabled on initialization.\n\nNote: This option can be disabled to increase WiFi performance. However, disabling this option will also\nmean that the USB PHY cannot be used while WiFi is enabled.", + "id": "ESP_PHY_ENABLE_USB", + "name": "ESP_PHY_ENABLE_USB", + "range": null, + "title": "Keep the USB PHY enabled when initializing WiFi", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3", + "help": "If enabled, you can use RF certification test APIs.", + "id": "ESP_PHY_ENABLE_CERT_TEST", + "name": "ESP_PHY_ENABLE_CERT_TEST", + "range": null, + "title": "Enable RF certification test functions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_PHY_RF_CAL_PARTIAL", + "name": "ESP_PHY_RF_CAL_PARTIAL", + "range": null, + "title": "Calibration partial", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_PHY_RF_CAL_NONE", + "name": "ESP_PHY_RF_CAL_NONE", + "range": null, + "title": "Calibration none", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_PHY_RF_CAL_FULL", + "name": "ESP_PHY_RF_CAL_FULL", + "range": null, + "title": "Calibration full", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select PHY calibration mode. During RF initialization, the partial calibration\nmethod is used by default for RF calibration. Full calibration takes about 100ms\nmore than partial calibration. If boot duration is not critical, it is suggested\nto use the full calibration method. No calibration method is only used when the\ndevice wakes up from deep sleep.", + "id": "component-config-phy-calibration-mode", + "name": "ESP_PHY_CALIBRATION_MODE", + "title": "Calibration mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_PHY_CALIBRATION_MODE", + "name": "ESP_PHY_CALIBRATION_MODE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_PHY_IMPROVE_RX_11B", + "help": "This is a workaround to improve Wi-Fi receive 11b pkts for some modules using AC-DC power supply with\nhigh interference, enable this option will sacrifice Wi-Fi OFDM receive performance.\nBut to guarantee 11b receive performance serves as a bottom line in this case.", + "id": "ESP_PHY_IMPROVE_RX_11B", + "name": "ESP_PHY_IMPROVE_RX_11B", + "range": null, + "title": "Improve Wi-Fi receive 11b pkts", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, there will be some logs while pll tracking", + "id": "ESP_PHY_PLL_TRACK_DEBUG", + "name": "ESP_PHY_PLL_TRACK_DEBUG", + "range": null, + "title": "Enable pll track logging", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-phy", + "title": "PHY", + "type": "menu" + }, + { + "children": [ + { + "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 && !IDF_TARGET_ESP32P4) || __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": "FREERTOS_USE_TICKLESS_IDLE", + "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.\nWaring: 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", + "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_PAU_SUPPORTED", + "help": "If enabled, digital peripherals will be powered down in light sleep, it will reduce sleep\ncurrent consumption by about 100 uA. Chip will save/restore register context at sleep/wake\ntime to keep the system running. Enabling this option will increase static RAM and heap usage,\nthe actual cost depends on the peripherals you have initialized. In order to save/restore the\ncontext of the necessary hardware for FreeRTOS to run, it will need at least 4.55 KB free heap\nat 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.", + "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": [ + { + "children": [], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPIRAM_MODE_QUAD", + "name": "SPIRAM_MODE_QUAD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_AUTO", + "name": "SPIRAM_TYPE_AUTO", + "range": null, + "title": "Auto-detect", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_ESPPSRAM16", + "name": "SPIRAM_TYPE_ESPPSRAM16", + "range": null, + "title": "ESP-PSRAM16 or APS1604", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_ESPPSRAM32", + "name": "SPIRAM_TYPE_ESPPSRAM32", + "range": null, + "title": "ESP-PSRAM32", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_ESPPSRAM64", + "name": "SPIRAM_TYPE_ESPPSRAM64", + "range": null, + "title": "ESP-PSRAM64 or LY68L6400", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-type-of-spi-ram-chip-in-use", + "name": "SPIRAM_TYPE", + "title": "Type of SPI RAM chip in use", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_SPEED_40M", + "name": "SPIRAM_SPEED_40M", + "range": null, + "title": "40MHz clock speed", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "SPIRAM_SPEED_80M", + "name": "SPIRAM_SPEED_80M", + "range": null, + "title": "80MHz clock speed", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Select the speed for the SPI RAM chip.\nIf SPI RAM is enabled, we only support three combinations of SPI speed mode we supported now:\n\n1. Flash SPI running at 40Mhz and RAM SPI running at 40Mhz\n2. Flash SPI running at 80Mhz and RAM SPI running at 40Mhz\n3. Flash SPI running at 80Mhz and RAM SPI running at 80Mhz\n\nNote: If the third mode(80Mhz+80Mhz) is enabled for SPI RAM of type 32MBit, one of the HSPI/VSPI host\nwill be occupied by the system. Which SPI host to use can be selected by the config item\nSPIRAM_OCCUPY_SPI_HOST. Application code should never touch HSPI/VSPI hardware in this case. The\noption to select 80MHz will only be visible if the flash SPI speed is also 80MHz.\n(ESPTOOLPY_FLASHFREQ_80M is true)", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-set-ram-clock-speed", + "name": "SPIRAM_SPEED", + "title": "Set RAM clock speed", + "type": "choice" + }, + { + "children": [], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPIRAM_SPEED", + "name": "SPIRAM_SPEED", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_BOOT_INIT && !SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY && !SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Normally, if psram initialization is enabled during compile time but not found at runtime, it\nis seen as an error making the CPU panic. If this is enabled, booting will complete\nbut no PSRAM will be available. If PSRAM failed to initialize, the following configs may be affected\nand may need to be corrected manually. SPIRAM_TRY_ALLOCATE_WIFI_LWIP will affect some LWIP and WiFi buffer\ndefault values and range values. Enable SPIRAM_TRY_ALLOCATE_WIFI_LWIP, ESP_WIFI_AMSDU_TX_ENABLED,\nESP_WIFI_CACHE_TX_BUFFER_NUM and use static WiFi Tx buffer may cause potential memory exhaustion issues.\nSuggest disable SPIRAM_TRY_ALLOCATE_WIFI_LWIP.\nSuggest disable ESP_WIFI_AMSDU_TX_ENABLED.\nSuggest disable ESP_WIFI_CACHE_TX_BUFFER_NUM, need clear CONFIG_FEATURE_CACHE_TX_BUF_BIT of config->feature_caps.\nSuggest change ESP_WIFI_TX_BUFFER from static to dynamic. Also suggest to adjust some buffer numbers to the\nvalues used without PSRAM case. Such as, ESP_WIFI_STATIC_TX_BUFFER_NUM, ESP_WIFI_DYNAMIC_TX_BUFFER_NUM.", + "id": "SPIRAM_IGNORE_NOTFOUND", + "name": "SPIRAM_IGNORE_NOTFOUND", + "range": null, + "title": "Ignore PSRAM when not found", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this is enabled, the SPI RAM will be enabled during initial boot. Unless you\nhave specific requirements, you'll want to leave this enabled so memory allocated\nduring boot-up can also be placed in SPI RAM.", + "id": "SPIRAM_BOOT_INIT", + "name": "SPIRAM_BOOT_INIT", + "range": null, + "title": "Initialize SPI RAM during startup", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_MEMMAP", + "name": "SPIRAM_USE_MEMMAP", + "range": null, + "title": "Integrate RAM into memory map", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_CAPS_ALLOC", + "name": "SPIRAM_USE_CAPS_ALLOC", + "range": null, + "title": "Make RAM allocatable using heap_caps_malloc(..., MALLOC_CAP_SPIRAM)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_MALLOC", + "name": "SPIRAM_USE_MALLOC", + "range": null, + "title": "Make RAM allocatable using malloc() as well", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The SPI RAM can be accessed in multiple methods: by just having it available as an unmanaged\nmemory region in the CPU's memory map, by integrating it in the heap as 'special' memory\nneeding heap_caps_malloc to allocate, or by fully integrating it making malloc() also able to\nreturn SPI RAM pointers.", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spi-ram-access-method", + "name": "SPIRAM_USE", + "title": "SPI RAM access method", + "type": "choice" + }, + { + "children": [], + "depends_on": "SPIRAM_BOOT_INIT && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Runs a rudimentary memory test on initialization. Aborts when memory test fails. Disable this for\nslightly faster startup.", + "id": "SPIRAM_MEMTEST", + "name": "SPIRAM_MEMTEST", + "range": null, + "title": "Run memory test on SPI RAM initialization", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_MALLOC && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If malloc() is capable of also allocating SPI-connected ram, its allocation strategy will prefer to\nallocate chunks less than this size in internal memory, while allocations larger than this will be\ndone from external RAM. If allocation from the preferred region fails, an attempt is made to allocate\nfrom the non-preferred region instead, so malloc() will not suddenly fail when either internal or\nexternal memory is full.", + "id": "SPIRAM_MALLOC_ALWAYSINTERNAL", + "name": "SPIRAM_MALLOC_ALWAYSINTERNAL", + "range": null, + "title": "Maximum malloc() size, in bytes, to always put in internal memory", + "type": "int" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Try to allocate memories of WiFi and LWIP in SPIRAM firstly. If failed, try to allocate internal\nmemory then.", + "id": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP", + "name": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP", + "range": null, + "title": "Try to allocate memories of WiFi and LWIP in SPIRAM firstly. If failed, allocate internal memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_MALLOC && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Because the external/internal RAM allocation strategy is not always perfect, it sometimes may happen\nthat the internal memory is entirely filled up. This causes allocations that are specifically done in\ninternal memory, for example the stack for new tasks or memory to service DMA or have memory that's\nalso available when SPI cache is down, to fail. This option reserves a pool specifically for requests\nlike that; the memory in this pool is not given out when a normal malloc() is called.\n\nSet this to 0 to disable this feature.\n\nNote that because FreeRTOS stacks are forced to internal memory, they will also use this memory pool;\nbe sure to keep this in mind when adjusting this value.\n\nNote also that the DMA reserved pool may not be one single contiguous memory region, depending on the\nconfigured size and the static memory usage of the app.", + "id": "SPIRAM_MALLOC_RESERVE_INTERNAL", + "name": "SPIRAM_MALLOC_RESERVE_INTERNAL", + "range": null, + "title": "Reserve this amount of bytes for data that specifically needs to be in DMA or internal memory", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If enabled, variables with EXT_RAM_BSS_ATTR attribute will be placed in SPIRAM instead of internal DRAM.\nBSS section of `lwip`, `net80211`, `pp`, `bt` libraries will be automatically placed\nin SPIRAM. BSS sections from other object files and libraries can also be placed in SPIRAM through\nlinker fragment scheme `extram_bss`.\n\nNote that the variables placed in SPIRAM using EXT_RAM_BSS_ATTR will be zero initialized.", + "id": "SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "name": "SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "range": null, + "title": "Allow .bss segment placed in external memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM && IDF_TARGET_ESP32 && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If enabled, noinit variables can be placed in PSRAM using EXT_RAM_NOINIT_ATTR.\n\nNote the values placed into this section will not be initialized at startup and should keep its value\nafter software restart.", + "id": "SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY", + "name": "SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY", + "range": null, + "title": "Allow .noinit segment placed in external memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_MEMMAP || SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ESP32_REV_MIN_FULL < 300 && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Revision 1 of the ESP32 has a bug that can cause a write to PSRAM not to take place in some situations\nwhen the cache line needs to be fetched from external RAM and an interrupt occurs. This enables a\nfix in the compiler (-mfix-esp32-psram-cache-issue) that makes sure the specific code that is\nvulnerable to this will not be emitted.\n\nThis will also not use any bits of newlib that are located in ROM, opting for a version that is\ncompiled with the workaround and located in flash instead.\n\nThe workaround is not required for ESP32 revision 3 and above.", + "id": "SPIRAM_CACHE_WORKAROUND", + "name": "SPIRAM_CACHE_WORKAROUND", + "range": null, + "title": "Enable workaround for bug in SPI RAM cache for Rev1 ESP32s", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_CACHE_WORKAROUND_STRATEGY_MEMW", + "name": "SPIRAM_CACHE_WORKAROUND_STRATEGY_MEMW", + "range": null, + "title": "Insert memw after vulnerable instructions (default)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST", + "name": "SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST", + "range": null, + "title": "Duplicate LD/ST for 32-bit, memw for 8/16 bit", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_CACHE_WORKAROUND_STRATEGY_NOPS", + "name": "SPIRAM_CACHE_WORKAROUND_STRATEGY_NOPS", + "range": null, + "title": "Insert nops between vulnerable loads/stores (old strategy, obsolete)", + "type": "bool" + } + ], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Select the workaround strategy. Note that the strategy for precompiled\nlibraries (libgcc, newlib, bt, wifi) is not affected by this selection.\n\nUnless you know you need a different strategy, it's suggested you stay\nwith the default MEMW strategy. Note that DUPLDST can interfere with hardware\nencryption and this will be automatically disabled if this workaround is selected.\n'Insert nops' is the workaround that was used in older esp-idf versions. This workaround\nstill can cause faulty data transfers from/to SPI RAM in some situation.", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spiram-cache-workaround-debugging-workaround-strategy", + "name": "SPIRAM_CACHE_WORKAROUND_STRATEGY", + "title": "Workaround strategy", + "type": "choice" + }, + { + "children": [], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPIRAM_WORKAROUND_NEED_VOLATILE_SPINLOCK", + "name": "SPIRAM_WORKAROUND_NEED_VOLATILE_SPINLOCK", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spiram-cache-workaround-debugging", + "title": "SPIRAM cache workaround debugging", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: longjmp and setjmp.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBJMP_IN_IRAM", + "name": "SPIRAM_CACHE_LIBJMP_IN_IRAM", + "range": null, + "title": "Put libc's jump related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: abs, div, labs, ldiv, quorem, fpclassify,\nand nan.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBMATH_IN_IRAM", + "name": "SPIRAM_CACHE_LIBMATH_IN_IRAM", + "range": null, + "title": "Put libc's math related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: utoa, itoa, atoi, atol, strtol, and strtoul.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBNUMPARSER_IN_IRAM", + "name": "SPIRAM_CACHE_LIBNUMPARSER_IN_IRAM", + "range": null, + "title": "Put libc's number parsing related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: wcrtomb, fvwrite, wbuf, wsetup, fputwc, wctomb_r,\nungetc, makebuf, fflush, refill, and sccl.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBIO_IN_IRAM", + "name": "SPIRAM_CACHE_LIBIO_IN_IRAM", + "range": null, + "title": "Put libc's I/O related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: asctime, asctime_r, ctime, ctime_r, lcltime, lcltime_r,\ngmtime, gmtime_r, strftime, mktime, tzset_r, tzset, time, gettzinfo, systimes, month_lengths,\ntimelocal, tzvars, tzlock, tzcalc_limits, and strptime.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBTIME_IN_IRAM", + "name": "SPIRAM_CACHE_LIBTIME_IN_IRAM", + "range": null, + "title": "Put libc's time related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: ctype_, toupper, tolower, toascii, strupr, bzero,\nisalnum, isalpha, isascii, isblank, iscntrl, isdigit, isgraph, islower, isprint, ispunct,\nisspace, and isupper.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBCHAR_IN_IRAM", + "name": "SPIRAM_CACHE_LIBCHAR_IN_IRAM", + "range": null, + "title": "Put libc's characters related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: memccpy, memchr memmove, and memrchr.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBMEM_IN_IRAM", + "name": "SPIRAM_CACHE_LIBMEM_IN_IRAM", + "range": null, + "title": "Put libc's memory related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: strcasecmp, strcasestr, strchr, strcoll,\nstrcpy, strcspn, strdup, strdup_r, strlcat, strlcpy, strlen, strlwr, strncasecmp,\nstrncat, strncmp, strncpy, strndup, strndup_r, strrchr, strsep, strspn, strstr,\nstrtok_r, and strupr.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBSTR_IN_IRAM", + "name": "SPIRAM_CACHE_LIBSTR_IN_IRAM", + "range": null, + "title": "Put libc's string related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: srand, rand, and rand_r.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBRAND_IN_IRAM", + "name": "SPIRAM_CACHE_LIBRAND_IN_IRAM", + "range": null, + "title": "Put libc's random related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: environ, envlock, and getenv_r.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBENV_IN_IRAM", + "name": "SPIRAM_CACHE_LIBENV_IN_IRAM", + "range": null, + "title": "Put libc's environment related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: lock, isatty, fclose, open, close, creat, read,\nrshift, sbrk, stdio, syssbrk, sysclose, sysopen, creat, sysread, syswrite, impure, fwalk,\nand findfp.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBFILE_IN_IRAM", + "name": "SPIRAM_CACHE_LIBFILE_IN_IRAM", + "range": null, + "title": "Put libc's file related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: raise and system\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBMISC_IN_IRAM", + "name": "SPIRAM_CACHE_LIBMISC_IN_IRAM", + "range": null, + "title": "Put libc's miscellaneous functions in IRAM, see help", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spiram-workaround-libraries-placement", + "title": "SPIRAM workaround libraries placement", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_BANKSWITCH_ENABLE && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Select the amount of banks reserved for bank switching. Note that the amount of RAM allocatable with\nmalloc/esp_heap_alloc_caps will decrease by 32K for each page reserved here.\n\nNote that this reservation is only actually done if your program actually uses the himem API. Without\nany himem calls, the reservation is not done and the original amount of memory will be available\nto malloc/esp_heap_alloc_caps.", + "id": "SPIRAM_BANKSWITCH_RESERVE", + "name": "SPIRAM_BANKSWITCH_RESERVE", + "range": null, + "title": "Amount of 32K pages to reserve for bank switching", + "type": "int" + } + ], + "depends_on": "(SPIRAM_USE_MEMMAP || SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The ESP32 only supports 4MiB of external RAM in its address space. The hardware does support larger\nmemories, but these have to be bank-switched in and out of this address space. Enabling this allows you\nto reserve some MMU pages for this, which allows the use of the esp_himem api to manage these banks.\n\n#Note that this is limited to 62 banks, as esp_psram_extram_writeback_cache needs some kind of mapping of\n#some banks below that mark to work. We cannot at this moment guarantee this to exist when himem is\n#enabled.\n\nIf spiram 2T mode is enabled, the size of 64Mbit psram will be changed as 32Mbit, so himem will be\nunusable.", + "id": "SPIRAM_BANKSWITCH_ENABLE", + "name": "SPIRAM_BANKSWITCH_ENABLE", + "range": null, + "title": "Enable bank switching for >4MiB external RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_MALLOC && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Because 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 creaton functions) always allocate stack in internal memory and\nxTaskCreateStatic will check if the memory passed to it is in internal memory. If you have a task that\nneeds a large amount of stack and does not call on ROM code in any way (no direct calls, but also no\nBluetooth/WiFi), you can try enable this to cause xTaskCreateStatic to allow tasks stack in external\nmemory.", + "id": "SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY", + "name": "SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY", + "range": null, + "title": "Allow external memory as an argument to xTaskCreateStatic", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_HSPI_HOST", + "name": "SPIRAM_OCCUPY_HSPI_HOST", + "range": null, + "title": "HSPI host (SPI2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_VSPI_HOST", + "name": "SPIRAM_OCCUPY_VSPI_HOST", + "range": null, + "title": "VSPI host (SPI3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_NO_HOST", + "name": "SPIRAM_OCCUPY_NO_HOST", + "range": null, + "title": "Will not try to use any host, will abort if not able to use the PSRAM", + "type": "bool" + } + ], + "depends_on": "SPIRAM_SPEED_80M && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When both flash and PSRAM is working under 80MHz, and the PSRAM is of type 32MBit, one of the HSPI/VSPI\nhost will be used to output the clock. Select which one to use here.", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spi-host-to-use-for-32mbit-psram", + "name": "SPIRAM_OCCUPY_SPI_HOST", + "title": "SPI host to use for 32MBit PSRAM", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The PSRAM CLOCK IO can be any unused GPIO, user can config it based on hardware design. If user use\n1.8V flash and 1.8V psram, this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.\n\nIf configured to the same pin as Flash, PSRAM shouldn't be rev0. Contact Espressif for more\ninformation.", + "id": "D0WD_PSRAM_CLK_IO", + "name": "D0WD_PSRAM_CLK_IO", + "range": null, + "title": "PSRAM CLK IO number", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The PSRAM CS IO can be any unused GPIO, user can config it based on hardware design. If user use\n1.8V flash and 1.8V psram, this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D0WD_PSRAM_CS_IO", + "name": "D0WD_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-dowd", + "title": "PSRAM clock and cs IO for ESP32-DOWD", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "User can config it based on hardware design. For ESP32-D2WD chip, the psram can only be 1.8V psram,\nso this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.\n\nIf configured to the same pin (GPIO6) as Flash, PSRAM shouldn't be rev0. Contact Espressif for more\ninformation.", + "id": "D2WD_PSRAM_CLK_IO", + "name": "D2WD_PSRAM_CLK_IO", + "range": null, + "title": "PSRAM CLK IO number", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "User can config it based on hardware design. For ESP32-D2WD chip, the psram can only be 1.8V psram,\nso this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D2WD_PSRAM_CS_IO", + "name": "D2WD_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-d2wd", + "title": "PSRAM clock and cs IO for ESP32-D2WD", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The PSRAM CS IO can be any unused GPIO, user can config it based on hardware design.\n\nFor ESP32-PICO chip, the psram share clock with flash, so user do not need to configure the clock\nIO.\nFor the reference hardware design, please refer to\nhttps://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf", + "id": "PICO_PSRAM_CS_IO", + "name": "PICO_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-pico-d4", + "title": "PSRAM clock and cs IO for ESP32-PICO-D4", + "type": "menu" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_DIO || ESPTOOLPY_FLASHMODE_DOUT) && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "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 DIO or DOUT.\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 psram only has QPI\nmode, so a WP pin setting is necessary.\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\nto Y and specify the GPIO number connected to the WP pin.\n\nWhen flash mode is set to QIO or QOUT, the PSRAM WP pin will be set the same as the SPI Flash WP pin\nconfigured in the bootloader.", + "id": "SPIRAM_CUSTOM_SPIWP_SD3_PIN", + "name": "SPIRAM_CUSTOM_SPIWP_SD3_PIN", + "range": null, + "title": "Use custom SPI PSRAM WP(SD3) Pin when flash pins set in eFuse (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_DIO || ESPTOOLPY_FLASHMODE_DOUT) && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The option \"Use custom SPI PSRAM WP(SD3) pin\" must be set or this value is ignored\n\nIf burning a customized set of SPI flash pins in eFuse and using DIO or DOUT mode for flash, set this\nvalue to the GPIO number of the SPIRAM WP pin.", + "id": "SPIRAM_SPIWP_SD3_PIN", + "name": "SPIRAM_SPIWP_SD3_PIN", + "range": null, + "title": "Custom SPI PSRAM WP(SD3) Pin", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this option to fix single bit errors inside 64Mbit PSRAM.\n\nSome 64Mbit PSRAM chips have a hardware issue in the RAM which causes bit errors at multiple\nfixed bit positions.\n\nNote: If this option is enabled, the 64Mbit PSRAM chip will appear to be 32Mbit in size.\nApplications will not be affected unless the use the esp_himem APIs, which are not supported\nin 2T mode.", + "id": "SPIRAM_2T_MODE", + "name": "SPIRAM_2T_MODE", + "range": null, + "title": "Enable SPI PSRAM 2T mode", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config", + "title": "SPI RAM config", + "type": "menu" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This enables support for an external SPI RAM chip, connected in parallel with the\nmain SPI flash chip.", + "id": "SPIRAM", + "name": "SPIRAM", + "range": null, + "title": "Support for external, SPI-connected RAM", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram", + "title": "ESP PSRAM", + "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": [ + { + "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": [], + "depends_on": "FREERTOS_UNICORE", + "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.\nThis option depends on the CONFIG_FREERTOS_UNICORE option because RTC fast memory\ncan be accessed only by PRO_CPU core.", + "id": "ESP32_RTCDATA_IN_FAST_MEM", + "name": "ESP32_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": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "help": "RAM size dedicated for static variables (.data & .bss sections).\nPlease note that the actual length will be reduced by BTDM_RESERVE_DRAM if Bluetooth\ncontroller is enabled.", + "id": "ESP32_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_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 ESP32_FIXED_STATIC_RAM_SIZE", + "id": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Use fixed static RAM size", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_UNICORE", + "help": "If enabled, application can use IRAM as byte accessible region for storing data\n(Note: IRAM region cannot be used as task stack)\n\nThis is possible due to handling of exceptions `LoadStoreError (3)` and `LoadStoreAlignmentError (9)`\nEach unaligned read/write access will incur a penalty of maximum of 167 CPU cycles.", + "id": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY", + "name": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY", + "range": null, + "title": "Enable IRAM as 8 bit accessible memory", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP32_TRAX", + "help": "Reserve parts of SRAM1 for app IRAM which was previously reserved for bootloader DRAM.\nIf booting an app on an older bootloader from before this option was introduced, the app will fail\nto boot due to not recognizing the new IRAM memory area.\n\nIf this is the case please test carefully before pushing out any OTA updates.", + "id": "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM", + "name": "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM", + "range": null, + "title": "Reserve parts of SRAM1 for app IRAM (WARNING, read help before enabling)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory-non-backward-compatible-options", + "title": "Non-backward compatible options", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory", + "title": "Memory", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM", + "name": "ESP32_MEMMAP_TRACEMEM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "name": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_TRAX && !FREERTOS_UNICORE", + "help": "The ESP32 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.\n\n# Memory to reverse for trace, used in linker script", + "id": "ESP32_TRAX_TWOBANKS", + "name": "ESP32_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 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": "ESP32_TRAX", + "name": "ESP32_TRAX", + "range": null, + "title": "Use TRAX tracing feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_TRACEMEM_RESERVE_DRAM", + "name": "ESP32_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": [ + { + "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. This memory will be consumed first per\nheap initialization order by early startup services and scheduler related code. Speed\nwise RTC fast memory operates on APB 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": [], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "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 unwinding\nand generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary size (20% to\n100% larger). The main purpose of this option is to be able to have a backtrace parsed and printed by\nthe program itself, regardless of the serial monitor used.\nThis option shall NOT 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": [ + { + "children": [], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP", + "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": [ + { + "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": "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).\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 UART RX input in the ESP-IDF Bootloader and the app (including\ndefault default standard input of the app).\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 miliseconds. 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": "!IDF_TARGET_ESP32 && (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": null, + "help": "The FreeRTOS panic and unhandled exception handers 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": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_0", + "name": "ESP_BROWNOUT_DET_LVL_SEL_0", + "range": null, + "title": "2.43V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_1", + "name": "ESP_BROWNOUT_DET_LVL_SEL_1", + "range": null, + "title": "2.48V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "2.58V +/- 0.05", + "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.62V +/- 0.05", + "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.67V +/- 0.05", + "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.70V +/- 0.05", + "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.77V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_7", + "name": "ESP_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.80V +/- 0.05", + "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 ESP 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-esp-system-settings-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 ESP 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" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-brownout-detector", + "title": "Brownout Detector", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "If set, the first time the app boots it will disable the BASIC ROM Console\npermanently (by burning an eFuse).\n\nOtherwise, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\n(Enabling secure boot also disables the BASIC ROM Console by default.)", + "id": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "name": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "range": null, + "title": "Permanently disable BASIC ROM Console", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && SPIRAM", + "help": null, + "id": "ESP32_ECO3_CACHE_LOCK_FIX", + "name": "ESP32_ECO3_CACHE_LOCK_FIX", + "range": null, + "title": null, + "type": "bool" + }, + { + "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.\nTwo occasions need to restart the chip with interrupt so far.\n(1). For ESP32 version 1, brown-out reset function doesn't work (see ESP32 errata 3.4).\n So that we must restart from interrupt.\n(2). For special workflow, the chip needs do more things instead of restarting directly. This part\n needs to be done in callback function of interrupt.", + "id": "ESP_SYSTEM_BROWNOUT_INTR", + "name": "ESP_SYSTEM_BROWNOUT_INTR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", + "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" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "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": "!FREERTOS_UNICORE", + "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": "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 seing 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": "It sets the interrupt level for esp_timer ISR in range 1..3.\nA higher level (3) helps to decrease the ISR esp_timer latency.", + "id": "ESP_TIMER_INTERRUPT_LEVEL", + "name": "ESP_TIMER_INTERRUPT_LEVEL", + "range": [ + 1, + 3 + ], + "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-high-resolution-timer-esp_timer--esp_timer-task-core-affinity", + "name": "ESP_TIMER_TASK_AFFINITY", + "title": "esp_timer task core affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIMER_ISR_AFFINITY", + "name": "ESP_TIMER_ISR_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "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-high-resolution-timer-esp_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 avalible).\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-high-resolution-timer-esp_timer-", + "title": "High resolution timer (esp_timer)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_WIFI_ENABLED", + "name": "ESP_WIFI_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set the number of WiFi static RX buffers. Each buffer takes approximately 1.6KB of RAM.\nThe static rx buffers are allocated when esp_wifi_init is called, they are not freed\nuntil esp_wifi_deinit is called.\n\nWiFi hardware use these buffers to receive all 802.11 frames.\nA higher number may allow higher throughput but increases memory use. If ESP_WIFI_AMPDU_RX_ENABLED\nis enabled, this value is recommended to set equal or bigger than ESP_WIFI_RX_BA_WIN in order to\nachieve better throughput and compatibility with both stations and APs.", + "id": "ESP_WIFI_STATIC_RX_BUFFER_NUM", + "name": "ESP_WIFI_STATIC_RX_BUFFER_NUM", + "range": [ + 2, + 25 + ], + "title": "Max number of WiFi static RX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set the number of WiFi dynamic RX buffers, 0 means unlimited RX buffers will be allocated\n(provided sufficient free RAM). The size of each dynamic RX buffer depends on the size of\nthe received data frame.\n\nFor each received data frame, the WiFi driver makes a copy to an RX buffer and then delivers\nit to the high layer TCP/IP stack. The dynamic RX buffer is freed after the higher layer has\nsuccessfully received the data frame.\n\nFor some applications, WiFi data frames may be received faster than the application can\nprocess them. In these cases we may run out of memory if RX buffer number is unlimited (0).\n\nIf a dynamic RX buffer limit is set, it should be at least the number of static RX buffers.", + "id": "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM", + "name": "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM", + "range": [ + 0, + 128 + ], + "title": "Max number of WiFi dynamic RX buffers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_STATIC_TX_BUFFER", + "name": "ESP_WIFI_STATIC_TX_BUFFER", + "range": null, + "title": "Static", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SPIRAM_USE_MALLOC && ", + "help": null, + "id": "ESP_WIFI_DYNAMIC_TX_BUFFER", + "name": "ESP_WIFI_DYNAMIC_TX_BUFFER", + "range": null, + "title": "Dynamic", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select type of WiFi TX buffers:\n\nIf \"Static\" is selected, WiFi TX buffers are allocated when WiFi is initialized and released\nwhen WiFi is de-initialized. The size of each static TX buffer is fixed to about 1.6KB.\n\nIf \"Dynamic\" is selected, each WiFi TX buffer is allocated as needed when a data frame is\ndelivered to the Wifi driver from the TCP/IP stack. The buffer is freed after the data frame\nhas been sent by the WiFi driver. The size of each dynamic TX buffer depends on the length\nof each data frame sent by the TCP/IP layer.\n\nIf PSRAM is enabled, \"Static\" should be selected to guarantee enough WiFi TX buffers.\nIf PSRAM is disabled, \"Dynamic\" should be selected to improve the utilization of RAM.", + "id": "component-config-wi-fi-type-of-wifi-tx-buffers", + "name": "ESP_WIFI_TX_BUFFER", + "title": "Type of WiFi TX buffers", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_WIFI_TX_BUFFER_TYPE", + "name": "ESP_WIFI_TX_BUFFER_TYPE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_STATIC_TX_BUFFER", + "help": "Set the number of WiFi static TX buffers. Each buffer takes approximately 1.6KB of RAM.\nThe static RX buffers are allocated when esp_wifi_init() is called, they are not released\nuntil esp_wifi_deinit() is called.\n\nFor each transmitted data frame from the higher layer TCP/IP stack, the WiFi driver makes a\ncopy of it in a TX buffer. For some applications especially UDP applications, the upper\nlayer can deliver frames faster than WiFi layer can transmit. In these cases, we may run out\nof TX buffers.", + "id": "ESP_WIFI_STATIC_TX_BUFFER_NUM", + "name": "ESP_WIFI_STATIC_TX_BUFFER_NUM", + "range": null, + "title": "Max number of WiFi static TX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM", + "help": "Set the number of WiFi cache TX buffer number.\n\nFor each TX packet from uplayer, such as LWIP etc, WiFi driver needs to allocate a static TX\nbuffer and makes a copy of uplayer packet. If WiFi driver fails to allocate the static TX buffer,\nit caches the uplayer packets to a dedicated buffer queue, this option is used to configure the\nsize of the cached TX queue.", + "id": "ESP_WIFI_CACHE_TX_BUFFER_NUM", + "name": "ESP_WIFI_CACHE_TX_BUFFER_NUM", + "range": null, + "title": "Max number of WiFi cache TX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_DYNAMIC_TX_BUFFER", + "help": "Set the number of WiFi dynamic TX buffers. The size of each dynamic TX buffer is not fixed,\nit depends on the size of each transmitted data frame.\n\nFor each transmitted frame from the higher layer TCP/IP stack, the WiFi driver makes a copy\nof it in a TX buffer. For some applications, especially UDP applications, the upper layer\ncan deliver frames faster than WiFi layer can transmit. In these cases, we may run out of TX\nbuffers.", + "id": "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM", + "name": "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM", + "range": [ + 1, + 128 + ], + "title": "Max number of WiFi dynamic TX buffers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_STATIC_RX_MGMT_BUFFER", + "name": "ESP_WIFI_STATIC_RX_MGMT_BUFFER", + "range": null, + "title": "Static", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER", + "name": "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER", + "range": null, + "title": "Dynamic", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select type of WiFi RX MGMT buffers:\n\nIf \"Static\" is selected, WiFi RX MGMT buffers are allocated when WiFi is initialized and released\nwhen WiFi is de-initialized. The size of each static RX MGMT buffer is fixed to about 500 Bytes.\n\nIf \"Dynamic\" is selected, each WiFi RX MGMT buffer is allocated as needed when a MGMT data frame is\nreceived. The MGMT buffer is freed after the MGMT data frame has been processed by the WiFi driver.", + "id": "component-config-wi-fi-type-of-wifi-rx-mgmt-buffers", + "name": "ESP_WIFI_MGMT_RX_BUFFER", + "title": "Type of WiFi RX MGMT buffers", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_WIFI_DYNAMIC_RX_MGMT_BUF", + "name": "ESP_WIFI_DYNAMIC_RX_MGMT_BUF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set the number of WiFi RX_MGMT buffers.\n\nFor Management buffers, the number of dynamic and static management buffers is the same.\nIn order to prevent memory fragmentation, the management buffer type should be set to static first.", + "id": "ESP_WIFI_RX_MGMT_BUF_NUM_DEF", + "name": "ESP_WIFI_RX_MGMT_BUF_NUM_DEF", + "range": [ + 1, + 10 + ], + "title": "Max number of WiFi RX MGMT buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_WIFI_CSI_SUPPORT", + "help": "Select this option to enable CSI(Channel State Information) feature. CSI takes about\nCONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM KB of RAM. If CSI is not used, it is better to disable\nthis feature in order to save memory.", + "id": "ESP_WIFI_CSI_ENABLED", + "name": "ESP_WIFI_CSI_ENABLED", + "range": null, + "title": "WiFi CSI(Channel State Information)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_AMPDU_TX_ENABLED", + "help": "Set the size of WiFi Block Ack TX window. Generally a bigger value means higher throughput but\nmore memory. Most of time we should NOT change the default value unless special reason, e.g.\ntest the maximum UDP TX throughput with iperf etc. For iperf test in shieldbox, the recommended\nvalue is 9~12.", + "id": "ESP_WIFI_TX_BA_WIN", + "name": "ESP_WIFI_TX_BA_WIN", + "range": [ + 2, + 32 + ], + "title": "WiFi AMPDU TX BA window size", + "type": "int" + } + ], + "depends_on": null, + "help": "Select this option to enable AMPDU TX feature", + "id": "ESP_WIFI_AMPDU_TX_ENABLED", + "name": "ESP_WIFI_AMPDU_TX_ENABLED", + "range": null, + "title": "WiFi AMPDU TX", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_AMPDU_RX_ENABLED", + "help": "Set the size of WiFi Block Ack RX window. Generally a bigger value means higher throughput and better\ncompatibility but more memory. Most of time we should NOT change the default value unless special\nreason, e.g. test the maximum UDP RX throughput with iperf etc. For iperf test in shieldbox, the\nrecommended value is 9~12. If PSRAM is used and WiFi memory is prefered to allocat in PSRAM first,\nthe default and minimum value should be 16 to achieve better throughput and compatibility with both\nstations and APs.", + "id": "ESP_WIFI_RX_BA_WIN", + "name": "ESP_WIFI_RX_BA_WIN", + "range": [ + 2, + 32 + ], + "title": "WiFi AMPDU RX BA window size", + "type": "int" + } + ], + "depends_on": null, + "help": "Select this option to enable AMPDU RX feature", + "id": "ESP_WIFI_AMPDU_RX_ENABLED", + "name": "ESP_WIFI_AMPDU_RX_ENABLED", + "range": null, + "title": "WiFi AMPDU RX", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM", + "help": "Select this option to enable AMSDU TX feature", + "id": "ESP_WIFI_AMSDU_TX_ENABLED", + "name": "ESP_WIFI_AMSDU_TX_ENABLED", + "range": null, + "title": "WiFi AMSDU TX", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable WiFi NVS flash", + "id": "ESP_WIFI_NVS_ENABLED", + "name": "ESP_WIFI_NVS_ENABLED", + "range": null, + "title": "WiFi NVS flash", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_TASK_PINNED_TO_CORE_0", + "name": "ESP_WIFI_TASK_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_TASK_PINNED_TO_CORE_1", + "name": "ESP_WIFI_TASK_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1", + "type": "bool" + } + ], + "depends_on": "!FREERTOS_UNICORE", + "help": "Pinned WiFi task to core 0 or core 1.", + "id": "component-config-wi-fi-wifi-task-core-id", + "name": "ESP_WIFI_TASK_CORE_ID", + "title": "WiFi Task Core ID", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "ESP-MESH utilizes beacon frames to detect and resolve root node conflicts (see documentation). However the\ndefault length of a beacon frame can simultaneously hold only five root node identifier structures,\nmeaning that a root node conflict of up to five nodes can be detected at one time. In the occurence of\nmore root nodes conflict involving more than five root nodes, the conflict resolution process will detect\nfive of the root nodes, resolve the conflict, and re-detect more root nodes. This process will repeat\nuntil all root node conflicts are resolved. However this process can generally take a very long time.\n\nTo counter this situation, the beacon frame length can be increased such that more root nodes can be\ndetected simultaneously. Each additional root node will require 36 bytes and should be added ontop of the\ndefault beacon frame length of\n752 bytes. For example, if you want to detect 10 root nodes simultaneously, you need to set the beacon\nframe length as\n932 (752+36*5).\n\nSetting a longer beacon length also assists with debugging as the conflicting root nodes can be identified\nmore quickly.", + "id": "ESP_WIFI_SOFTAP_BEACON_MAX_LEN", + "name": "ESP_WIFI_SOFTAP_BEACON_MAX_LEN", + "range": [ + 752, + 1256 + ], + "title": "Max length of WiFi SoftAP Beacon", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set the number of WiFi management short buffer.", + "id": "ESP_WIFI_MGMT_SBUF_NUM", + "name": "ESP_WIFI_MGMT_SBUF_NUM", + "range": [ + 6, + 32 + ], + "title": "WiFi mgmt short buffer number", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to place frequently called Wi-Fi library functions in IRAM.\nWhen this option is disabled, more than 10Kbytes of IRAM memory will be saved\nbut Wi-Fi throughput will be reduced.", + "id": "ESP_WIFI_IRAM_OPT", + "name": "ESP_WIFI_IRAM_OPT", + "range": null, + "title": "WiFi IRAM speed optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to place additional frequently called Wi-Fi library functions\nin IRAM. When this option is disabled, more than 5Kbytes of IRAM memory will be saved\nbut Wi-Fi throughput will be reduced.", + "id": "ESP_WIFI_EXTRA_IRAM_OPT", + "name": "ESP_WIFI_EXTRA_IRAM_OPT", + "range": null, + "title": "WiFi EXTRA IRAM speed optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to place frequently called Wi-Fi library RX functions in IRAM.\nWhen this option is disabled, more than 17Kbytes of IRAM memory will be saved\nbut Wi-Fi performance will be reduced.", + "id": "ESP_WIFI_RX_IRAM_OPT", + "name": "ESP_WIFI_RX_IRAM_OPT", + "range": null, + "title": "WiFi RX IRAM speed optimization", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_WPA3_SAE", + "help": "Select this option to enable SAE-PK", + "id": "ESP_WIFI_ENABLE_SAE_PK", + "name": "ESP_WIFI_ENABLE_SAE_PK", + "range": null, + "title": "Enable SAE-PK", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_WPA3_SAE && ESP_WIFI_SOFTAP_SUPPORT", + "help": "Select this option to enable SAE support in softAP mode.", + "id": "ESP_WIFI_SOFTAP_SAE_SUPPORT", + "name": "ESP_WIFI_SOFTAP_SAE_SUPPORT", + "range": null, + "title": "Enable WPA3 Personal(SAE) SoftAP", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select this option to allow the device to establish a WPA3-Personal connection with eligible AP's.\nPMF (Protected Management Frames) is a prerequisite feature for a WPA3 connection, it needs to be\nexplicitly configured before attempting connection. Please refer to the Wi-Fi Driver API Guide for details.", + "id": "ESP_WIFI_ENABLE_WPA3_SAE", + "name": "ESP_WIFI_ENABLE_WPA3_SAE", + "range": null, + "title": "Enable WPA3-Personal", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to allow the device to establish OWE connection with eligible AP's.\nPMF (Protected Management Frames) is a prerequisite feature for a WPA3 connection, it needs to be\nexplicitly configured before attempting connection. Please refer to the Wi-Fi Driver API Guide for details.", + "id": "ESP_WIFI_ENABLE_WPA3_OWE_STA", + "name": "ESP_WIFI_ENABLE_WPA3_OWE_STA", + "range": null, + "title": "Enable OWE STA", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_SLP_IRAM_OPT", + "help": "The minimum timeout for waiting to receive data, unit: milliseconds.", + "id": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", + "name": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", + "range": null, + "title": "Minimum active time", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_IRAM_OPT", + "help": "The maximum time that wifi keep alive, unit: seconds.", + "id": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", + "name": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", + "range": null, + "title": "Maximum keep alive time", + "type": "int" + } + ], + "depends_on": null, + "help": "Select this option to place called Wi-Fi library TBTT process and receive beacon functions in IRAM.\nSome functions can be put in IRAM either by ESP_WIFI_IRAM_OPT and ESP_WIFI_RX_IRAM_OPT, or this one.\nIf already enabled ESP_WIFI_IRAM_OPT, the other 7.3KB IRAM memory would be taken by this option.\nIf already enabled ESP_WIFI_RX_IRAM_OPT, the other 1.3KB IRAM memory would be taken by this option.\nIf neither of them are enabled, the other 7.4KB IRAM memory would be taken by this option.\nWi-Fi power-save mode average current would be reduced if this option is enabled.", + "id": "ESP_WIFI_SLP_IRAM_OPT", + "name": "ESP_WIFI_SLP_IRAM_OPT", + "range": null, + "title": "WiFi SLP IRAM speed optimization", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_FTM_ENABLE", + "help": null, + "id": "ESP_WIFI_FTM_INITIATOR_SUPPORT", + "name": "ESP_WIFI_FTM_INITIATOR_SUPPORT", + "range": null, + "title": "FTM Initiator support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_FTM_ENABLE", + "help": null, + "id": "ESP_WIFI_FTM_RESPONDER_SUPPORT", + "name": "ESP_WIFI_FTM_RESPONDER_SUPPORT", + "range": null, + "title": "FTM Responder support", + "type": "bool" + } + ], + "depends_on": "SOC_WIFI_FTM_SUPPORT", + "help": "Enable feature Fine Timing Measurement for calculating WiFi Round-Trip-Time (RTT).", + "id": "ESP_WIFI_FTM_ENABLE", + "name": "ESP_WIFI_FTM_ENABLE", + "range": null, + "title": "WiFi FTM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable power_management for station when disconnected.\nChip will do modem-sleep when rf module is not in use any more.", + "id": "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE", + "name": "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE", + "range": null, + "title": "Power Management for station at disconnected", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_GCMP_SUPPORT", + "help": "Select this option to enable GCMP support. GCMP support is compulsory for WiFi Suite-B support.", + "id": "ESP_WIFI_GCMP_SUPPORT", + "name": "ESP_WIFI_GCMP_SUPPORT", + "range": null, + "title": "WiFi GCMP Support(GCMP128 and GCMP256)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable GMAC support. GMAC support is compulsory for WiFi 192 bit certification.", + "id": "ESP_WIFI_GMAC_SUPPORT", + "name": "ESP_WIFI_GMAC_SUPPORT", + "range": null, + "title": "WiFi GMAC Support(GMAC128 and GMAC256)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "WiFi module can be compiled without SoftAP to save code size.", + "id": "ESP_WIFI_SOFTAP_SUPPORT", + "name": "ESP_WIFI_SOFTAP_SUPPORT", + "range": null, + "title": "WiFi SoftAP Support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PHY_MAC_BB_PD && SOC_PM_SUPPORT_BEACON_WAKEUP", + "help": "The wifi modem automatically receives the beacon frame during light sleep.", + "id": "ESP_WIFI_ENHANCED_LIGHT_SLEEP", + "name": "ESP_WIFI_ENHANCED_LIGHT_SLEEP", + "range": null, + "title": "WiFi modem automatically receives the beacon", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT", + "help": "Timeout time for close rf phy when beacon loss occurs, Unit: 1024 microsecond.", + "id": "ESP_WIFI_SLP_BEACON_LOST_TIMEOUT", + "name": "ESP_WIFI_SLP_BEACON_LOST_TIMEOUT", + "range": null, + "title": "Beacon loss timeout", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT", + "help": "Maximum number of consecutive lost beacons allowed, WiFi keeps Rx state when\nthe number of consecutive beacons lost is greater than the given threshold.", + "id": "ESP_WIFI_SLP_BEACON_LOST_THRESHOLD", + "name": "ESP_WIFI_SLP_BEACON_LOST_THRESHOLD", + "range": null, + "title": "Maximum number of consecutive lost beacons allowed", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", + "help": "Delta early time for rf phy on, When the beacon is lost, the next rf phy on will\nbe earlier the time specified by the configuration item, Unit: 32 microsecond.", + "id": "ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME", + "name": "ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME", + "range": null, + "title": "Delta early time for RF PHY on", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", + "help": "Delta timeout time for rf phy off, When the beacon is lost, the next rf phy off will\nbe delayed for the time specified by the configuration item. Unit: 1024 microsecond.", + "id": "ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME", + "name": "ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME", + "range": null, + "title": "Delta timeout time for RF PHY off", + "type": "int" + } + ], + "depends_on": null, + "help": "Enable wifi sleep optimization when beacon loss occurs and immediately enter\nsleep mode when the WiFi module detects beacon loss.", + "id": "ESP_WIFI_SLP_BEACON_LOST_OPT", + "name": "ESP_WIFI_SLP_BEACON_LOST_OPT", + "range": null, + "title": "Wifi sleep optimize when beacon lost", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Maximum number of encrypted peers supported by espnow.\nThe number of hardware keys for encryption is fixed. And the espnow and SoftAP share the same\nhardware keys. So this configuration will affect the maximum connection number of SoftAP.\nMaximum espnow encrypted peers number + maximum number of connections of SoftAP = Max hardware keys number.\nWhen using ESP mesh, this value should be set to a maximum of 6.", + "id": "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM", + "name": "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM", + "range": [ + 0, + 17 + ], + "title": "Maximum espnow encrypt peers number", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_WIFI_NAN_SUPPORT", + "help": "Enable WiFi Aware (NAN) feature.", + "id": "ESP_WIFI_NAN_ENABLE", + "name": "ESP_WIFI_NAN_ENABLE", + "range": null, + "title": "WiFi Aware", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_HE_SUPPORT", + "help": "Enable Wi-Fi transmission statistics. Total support 4 access category. Each access category\nwill use 346 bytes memory.", + "id": "ESP_WIFI_ENABLE_WIFI_TX_STATS", + "name": "ESP_WIFI_ENABLE_WIFI_TX_STATS", + "range": null, + "title": "Enable Wi-Fi transmission statistics", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENTERPRISE_SUPPORT && ESP_WIFI_MBEDTLS_CRYPTO", + "help": "Select this option to use MbedTLS TLS client for WPA2 enterprise connection.\nPlease note that from MbedTLS-3.0 onwards, MbedTLS does not support SSL-3.0\nTLS-v1.0, TLS-v1.1 versions. Incase your server is using one of these version,\nit is advisable to update your server.\nPlease disable this option for compatibilty with older TLS versions.", + "id": "ESP_WIFI_MBEDTLS_TLS_CLIENT", + "name": "ESP_WIFI_MBEDTLS_TLS_CLIENT", + "range": null, + "title": "Use MbedTLS TLS client for WiFi Enterprise connection", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select this option to enable the use of MbedTLS crypto APIs.\nThe internal crypto support within the supplicant is limited\nand may not suffice for all new security features, including WPA3.\n\nIt is recommended to always keep this option enabled. Additionally,\nnote that MbedTLS can leverage hardware acceleration if available,\nresulting in significantly faster cryptographic operations.", + "id": "ESP_WIFI_MBEDTLS_CRYPTO", + "name": "ESP_WIFI_MBEDTLS_CRYPTO", + "range": null, + "title": "Use MbedTLS crypto APIs", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_WAPI_SUPPORT", + "help": "Select this option to enable WAPI-PSK\nwhich is a Chinese National Standard Encryption for Wireless LANs (GB 15629.11-2003).", + "id": "ESP_WIFI_WAPI_PSK", + "name": "ESP_WIFI_WAPI_PSK", + "range": null, + "title": "Enable WAPI PSK support", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_GCMP_SUPPORT", + "help": "Select this option to enable 192 bit NSA suite-B.\nThis is necessary to support WPA3 192 bit security.", + "id": "ESP_WIFI_SUITE_B_192", + "name": "ESP_WIFI_SUITE_B_192", + "range": null, + "title": "Enable NSA suite B support with 192 bit key", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_11KV_SUPPORT", + "help": "Keep scan results in cache, if not enabled, those\nwill be flushed immediately.", + "id": "ESP_WIFI_SCAN_CACHE", + "name": "ESP_WIFI_SCAN_CACHE", + "range": null, + "title": "Keep scan results in cache", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select this option to enable 802.11k 802.11v APIs(RRM and BTM support).\nOnly APIs which are helpful for network assisted roaming\nare supported for now.\nEnable this option with BTM and RRM enabled in sta config\nto make device ready for network assisted roaming.\nBTM: BSS transition management enables an AP to request a station to transition\nto a specific AP, or to indicate to a station a set of preferred APs.\nRRM: Radio measurements enable STAs to understand the radio environment,\nit enables STAs to observe and gather data on radio link performance\nand on the radio environment. Current implementation adds beacon report,\nlink measurement, neighbor report.", + "id": "ESP_WIFI_11KV_SUPPORT", + "name": "ESP_WIFI_11KV_SUPPORT", + "range": null, + "title": "Enable 802.11k, 802.11v APIs Support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable WiFi Multiband operation certification support.", + "id": "ESP_WIFI_MBO_SUPPORT", + "name": "ESP_WIFI_MBO_SUPPORT", + "range": null, + "title": "Enable Multi Band Operation Certification Support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable WiFi Easy Connect Support.", + "id": "ESP_WIFI_DPP_SUPPORT", + "name": "ESP_WIFI_DPP_SUPPORT", + "range": null, + "title": "Enable DPP support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable WiFi Fast Transition Support.", + "id": "ESP_WIFI_11R_SUPPORT", + "name": "ESP_WIFI_11R_SUPPORT", + "range": null, + "title": "Enable 802.11R (Fast Transition) Support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SOFTAP_SUPPORT", + "help": "Select this option to enable WPS registrar support in softAP mode.", + "id": "ESP_WIFI_WPS_SOFTAP_REGISTRAR", + "name": "ESP_WIFI_WPS_SOFTAP_REGISTRAR", + "range": null, + "title": "Add WPS Registrar support in SoftAP mode", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_WIFI_RX_STATS", + "help": "Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics. Will use 10932 bytes memory.", + "id": "ESP_WIFI_ENABLE_WIFI_RX_MU_STATS", + "name": "ESP_WIFI_ENABLE_WIFI_RX_MU_STATS", + "range": null, + "title": "Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics", + "type": "bool" + } + ], + "depends_on": "SOC_WIFI_HE_SUPPORT", + "help": "Enable Wi-Fi reception statistics. Total support 2 access category. Each access category\nwill use 190 bytes memory.", + "id": "ESP_WIFI_ENABLE_WIFI_RX_STATS", + "name": "ESP_WIFI_ENABLE_WIFI_RX_STATS", + "range": null, + "title": "Enable Wi-Fi reception statistics", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Select this option to enable validate each WPS attribute\nrigorously. Disabling this add the workaorunds with various APs.\nEnabling this may cause inter operability issues with some APs.", + "id": "ESP_WIFI_WPS_STRICT", + "name": "ESP_WIFI_WPS_STRICT", + "range": null, + "title": "Strictly validate all WPS attributes", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to get passphrase during WPS configuration.\nThis option fakes the virtual display capabilites to get the\nconfiguration in passphrase mode.\nNot recommanded to be used since WPS credentials should not\nbe shared to other devices, making it in readable format increases\nthat risk, also passphrase requires pbkdf2 to convert in psk.", + "id": "ESP_WIFI_WPS_PASSPHRASE", + "name": "ESP_WIFI_WPS_PASSPHRASE", + "range": null, + "title": "Get WPA2 passphrase in WPS config", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-wi-fi-wps-configuration-options", + "title": "WPS Configuration Options", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to print logging information from WPA supplicant,\nthis includes handshake information and key hex dumps depending\non the project logging level.\n\nEnabling this could increase the build size ~60kb\ndepending on the project logging level.", + "id": "ESP_WIFI_DEBUG_PRINT", + "name": "ESP_WIFI_DEBUG_PRINT", + "range": null, + "title": "Print debug messages from WPA Supplicant", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this to enable unity test for DPP.", + "id": "ESP_WIFI_TESTING_OPTIONS", + "name": "ESP_WIFI_TESTING_OPTIONS", + "range": null, + "title": "Add DPP testing code", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENTERPRISE_SUPPORT", + "help": "Select this configuration to free dynamic buffers during WiFi enterprise connection.\nThis will enable chip to reduce heap consumption during WiFi enterprise connection.", + "id": "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER", + "name": "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER", + "range": null, + "title": "Free dynamic buffers during WiFi enterprise connection", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select this to enable/disable enterprise connection support.\n\ndisabling this will reduce binary size.\ndisabling this will disable the use of any esp_wifi_sta_wpa2_ent_* (as APIs will be meaningless)", + "id": "ESP_WIFI_ENTERPRISE_SUPPORT", + "name": "ESP_WIFI_ENTERPRISE_SUPPORT", + "range": null, + "title": "Enable enterprise option", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-wi-fi", + "title": "Wi-Fi", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_ENABLE_TO_FLASH", + "name": "ESP_COREDUMP_ENABLE_TO_FLASH", + "range": null, + "title": "Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_ENABLE_TO_UART", + "name": "ESP_COREDUMP_ENABLE_TO_UART", + "range": null, + "title": "UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_ENABLE_TO_NONE", + "name": "ESP_COREDUMP_ENABLE_TO_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select place to store core dump: flash, uart or none (to disable core dumps generation).\n\nCore dumps to Flash are not available if PSRAM is used for task stacks.\n\nIf core dump is configured to be stored in flash and custom partition table is used add\ncorresponding entry to your CSV. For examples, please see predefined partition table CSV descriptions\nin the components/partition_table directory.", + "id": "component-config-core-dump-data-destination", + "name": "ESP_COREDUMP_TO_FLASH_OR_UART", + "title": "Data destination", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_DATA_FORMAT_BIN", + "name": "ESP_COREDUMP_DATA_FORMAT_BIN", + "range": null, + "title": "Binary format", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_DATA_FORMAT_ELF", + "name": "ESP_COREDUMP_DATA_FORMAT_ELF", + "range": null, + "title": "ELF format", + "type": "bool" + } + ], + "depends_on": "!ESP_COREDUMP_ENABLE_TO_NONE", + "help": "Select the data format for core dump.", + "id": "component-config-core-dump-core-dump-data-format", + "name": "ESP_COREDUMP_DATA_FORMAT", + "title": "Core dump data format", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_CHECKSUM_CRC32", + "name": "ESP_COREDUMP_CHECKSUM_CRC32", + "range": null, + "title": "Use CRC32 for integrity verification", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_DATA_FORMAT_ELF && ", + "help": null, + "id": "ESP_COREDUMP_CHECKSUM_SHA256", + "name": "ESP_COREDUMP_CHECKSUM_SHA256", + "range": null, + "title": "Use SHA256 for integrity verification", + "type": "bool" + } + ], + "depends_on": "!ESP_COREDUMP_ENABLE_TO_NONE", + "help": "Select the integrity check for the core dump.", + "id": "component-config-core-dump-core-dump-data-integrity-check", + "name": "ESP_COREDUMP_CHECKSUM", + "title": "Core dump data integrity check", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE_TO_FLASH", + "help": "When enabled, if any data are found on the flash core dump partition,\nthey will be checked by calculating their checksum.", + "id": "ESP_COREDUMP_CHECK_BOOT", + "name": "ESP_COREDUMP_CHECK_BOOT", + "range": null, + "title": "Check core dump data integrity on boot", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disable core dump module.", + "id": "ESP_COREDUMP_ENABLE", + "name": "ESP_COREDUMP_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE", + "help": "Enable/disable coredump logs. Logs strings from espcoredump component are\nplaced in DRAM. Disabling these helps to save ~5KB of internal memory.", + "id": "ESP_COREDUMP_LOGS", + "name": "ESP_COREDUMP_LOGS", + "range": null, + "title": "Enable coredump logs for debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE", + "help": "Maximum number of tasks snapshots in core dump.", + "id": "ESP_COREDUMP_MAX_TASKS_NUM", + "name": "ESP_COREDUMP_MAX_TASKS_NUM", + "range": null, + "title": "Maximum number of tasks", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE_TO_UART", + "help": "Config delay (in ms) before printing core dump to UART.\nDelay can be interrupted by pressing Enter key.", + "id": "ESP_COREDUMP_UART_DELAY", + "name": "ESP_COREDUMP_UART_DELAY", + "range": null, + "title": "Delay before print to UART", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Force the use of a custom DRAM stack for coredump when Task stacks can be in PSRAM.", + "id": "ESP_COREDUMP_USE_STACK_SIZE", + "name": "ESP_COREDUMP_USE_STACK_SIZE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE", + "help": "Size of the memory to be reserved for core dump stack. If 0 core dump process will run on\nthe stack of crashed task/ISR, otherwise special stack will be allocated.\nTo ensure that core dump itself will not overflow task/ISR stack set this to the value above 800.\nNOTE: It eats DRAM.", + "id": "ESP_COREDUMP_STACK_SIZE", + "name": "ESP_COREDUMP_STACK_SIZE", + "range": null, + "title": "Reserved stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_DATA_FORMAT_ELF && ESP_COREDUMP_ENABLE_TO_FLASH && IDF_TARGET_ARCH_RISCV", + "help": "Size of the buffer that would be reserved for extracting backtrace info summary.\nThis buffer will contain the stack dump of the crashed task. This dump is useful in generating backtrace", + "id": "ESP_COREDUMP_SUMMARY_STACKDUMP_SIZE", + "name": "ESP_COREDUMP_SUMMARY_STACKDUMP_SIZE", + "range": null, + "title": "Size of the stack dump buffer", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_DECODE_INFO", + "name": "ESP_COREDUMP_DECODE_INFO", + "range": null, + "title": "Decode and show summary (info_corefile)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_DECODE_DISABLE", + "name": "ESP_COREDUMP_DECODE_DISABLE", + "range": null, + "title": "Don't decode", + "type": "bool" + } + ], + "depends_on": "ESP_COREDUMP_ENABLE_TO_UART", + "help": null, + "id": "component-config-core-dump-handling-of-uart-core-dumps-in-idf-monitor", + "name": "ESP_COREDUMP_DECODE", + "title": "Handling of UART core dumps in IDF Monitor", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_COREDUMP_DECODE", + "name": "ESP_COREDUMP_DECODE", + "range": null, + "title": null, + "type": "string" + } + ], + "depends_on": null, + "id": "component-config-core-dump", + "title": "Core dump", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Number of volumes (logical drives) to use.", + "id": "FATFS_VOLUME_COUNT", + "name": "FATFS_VOLUME_COUNT", + "range": [ + 1, + 10 + ], + "title": "Number of volumes", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_LFN_NONE", + "name": "FATFS_LFN_NONE", + "range": null, + "title": "No long filenames", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_LFN_HEAP", + "name": "FATFS_LFN_HEAP", + "range": null, + "title": "Long filename buffer in heap", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_LFN_STACK", + "name": "FATFS_LFN_STACK", + "range": null, + "title": "Long filename buffer on stack", + "type": "bool" + } + ], + "depends_on": null, + "help": "Support long filenames in FAT. Long filename data increases\nmemory usage. FATFS can be configured to store the buffer for\nlong filename data in stack or heap.", + "id": "component-config-fat-filesystem-support-long-filename-support", + "name": "FATFS_LONG_FILENAMES", + "title": "Long filename support", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTOR_512", + "name": "FATFS_SECTOR_512", + "range": null, + "title": "512", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTOR_4096", + "name": "FATFS_SECTOR_4096", + "range": null, + "title": "4096", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify the size of the sector in bytes for FATFS partition generator.", + "id": "component-config-fat-filesystem-support-sector-size", + "name": "FATFS_SECTOR_SIZE", + "title": "Sector size", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_DYNAMIC", + "name": "FATFS_CODEPAGE_DYNAMIC", + "range": null, + "title": "Dynamic (all code pages supported)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_437", + "name": "FATFS_CODEPAGE_437", + "range": null, + "title": "US (CP437)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_720", + "name": "FATFS_CODEPAGE_720", + "range": null, + "title": "Arabic (CP720)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_737", + "name": "FATFS_CODEPAGE_737", + "range": null, + "title": "Greek (CP737)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_771", + "name": "FATFS_CODEPAGE_771", + "range": null, + "title": "KBL (CP771)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_775", + "name": "FATFS_CODEPAGE_775", + "range": null, + "title": "Baltic (CP775)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_850", + "name": "FATFS_CODEPAGE_850", + "range": null, + "title": "Latin 1 (CP850)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_852", + "name": "FATFS_CODEPAGE_852", + "range": null, + "title": "Latin 2 (CP852)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_855", + "name": "FATFS_CODEPAGE_855", + "range": null, + "title": "Cyrillic (CP855)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_857", + "name": "FATFS_CODEPAGE_857", + "range": null, + "title": "Turkish (CP857)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_860", + "name": "FATFS_CODEPAGE_860", + "range": null, + "title": "Portugese (CP860)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_861", + "name": "FATFS_CODEPAGE_861", + "range": null, + "title": "Icelandic (CP861)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_862", + "name": "FATFS_CODEPAGE_862", + "range": null, + "title": "Hebrew (CP862)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_863", + "name": "FATFS_CODEPAGE_863", + "range": null, + "title": "Canadian French (CP863)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_864", + "name": "FATFS_CODEPAGE_864", + "range": null, + "title": "Arabic (CP864)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_865", + "name": "FATFS_CODEPAGE_865", + "range": null, + "title": "Nordic (CP865)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_866", + "name": "FATFS_CODEPAGE_866", + "range": null, + "title": "Russian (CP866)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_869", + "name": "FATFS_CODEPAGE_869", + "range": null, + "title": "Greek 2 (CP869)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_932", + "name": "FATFS_CODEPAGE_932", + "range": null, + "title": "Japanese (DBCS) (CP932)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_936", + "name": "FATFS_CODEPAGE_936", + "range": null, + "title": "Simplified Chinese (DBCS) (CP936)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_949", + "name": "FATFS_CODEPAGE_949", + "range": null, + "title": "Korean (DBCS) (CP949)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_950", + "name": "FATFS_CODEPAGE_950", + "range": null, + "title": "Traditional Chinese (DBCS) (CP950)", + "type": "bool" + } + ], + "depends_on": null, + "help": "OEM code page used for file name encodings.\n\nIf \"Dynamic\" is selected, code page can be chosen at runtime using\nf_setcp function. Note that choosing this option will increase\napplication size by ~480kB.", + "id": "component-config-fat-filesystem-support-oem-code-page", + "name": "FATFS_CHOOSE_CODEPAGE", + "title": "OEM Code Page", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FATFS_CODEPAGE", + "name": "FATFS_CODEPAGE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!FATFS_LFN_NONE", + "help": "Maximum long filename length. Can be reduced to save RAM.", + "id": "FATFS_MAX_LFN", + "name": "FATFS_MAX_LFN", + "range": null, + "title": "Max long filename length", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_API_ENCODING_ANSI_OEM", + "name": "FATFS_API_ENCODING_ANSI_OEM", + "range": null, + "title": "API uses ANSI/OEM encoding", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_API_ENCODING_UTF_8", + "name": "FATFS_API_ENCODING_UTF_8", + "range": null, + "title": "API uses UTF-8 encoding", + "type": "bool" + } + ], + "depends_on": "!FATFS_LFN_NONE", + "help": "Choose encoding for character and string arguments/returns when using\nFATFS APIs. The encoding of arguments will usually depend on text\neditor settings.", + "id": "component-config-fat-filesystem-support-api-character-encoding", + "name": "FATFS_API_ENCODING", + "title": "API character encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "This option sets the FATFS configuration value _FS_LOCK.\nThe option _FS_LOCK switches file lock function to control duplicated file open\nand illegal operation to open objects.\n\n* 0: Disable file lock function. To avoid volume corruption, application\nshould avoid illegal open, remove and rename to the open objects.\n\n* >0: Enable file lock function. The value defines how many files/sub-directories\ncan be opened simultaneously under file lock control.\n\nNote that the file lock control is independent of re-entrancy.", + "id": "FATFS_FS_LOCK", + "name": "FATFS_FS_LOCK", + "range": [ + 0, + 65535 + ], + "title": "Number of simultaneously open files protected by lock function", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This option sets FATFS configuration value _FS_TIMEOUT, scaled to milliseconds.\nSets the number of milliseconds FATFS will wait to acquire a mutex when\noperating on an open file. For example, if one task is performing a lenghty\noperation, another task will wait for the first task to release the lock,\nand time out after amount of time set by this option.", + "id": "FATFS_TIMEOUT_MS", + "name": "FATFS_TIMEOUT_MS", + "range": null, + "title": "Timeout for acquiring a file lock, ms", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This option affects FATFS configuration value _FS_TINY.\n\nIf this option is set, _FS_TINY is 0, and each open file has its own cache,\nsize of the cache is equal to the _MAX_SS variable (512 or 4096 bytes).\nThis option uses more RAM if more than 1 file is open, but needs less reads\nand writes to the storage for some operations.\n\nIf this option is not set, _FS_TINY is 1, and single cache is used for\nall open files, size is also equal to _MAX_SS variable. This reduces the\namount of heap used when multiple files are open, but increases the number\nof read and write operations which FATFS needs to make.", + "id": "FATFS_PER_FILE_CACHE", + "name": "FATFS_PER_FILE_CACHE", + "range": null, + "title": "Use separate cache for each file", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC", + "help": "When the option is enabled, internal buffers used by FATFS will be allocated\nfrom external RAM. If the allocation from external RAM fails, the buffer will\nbe allocated from the internal RAM.\nDisable this option if optimizing for performance. Enable this option if\noptimizing for internal memory size.", + "id": "FATFS_ALLOC_PREFER_EXTRAM", + "name": "FATFS_ALLOC_PREFER_EXTRAM", + "range": null, + "title": "Perfer external RAM when allocating FATFS buffers", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FATFS_USE_FASTSEEK", + "help": "If fast seek algorithm is enabled, this defines the size of\nCLMT buffer used by this algorithm in 32-bit word units.\nThis value should be chosen based on prior knowledge of\nmaximum elements of each file entry would store.", + "id": "FATFS_FAST_SEEK_BUFFER_SIZE", + "name": "FATFS_FAST_SEEK_BUFFER_SIZE", + "range": null, + "title": "Fast seek CLMT buffer size", + "type": "int" + } + ], + "depends_on": null, + "help": "The fast seek feature enables fast backward/long seek operations without\nFAT access by using an in-memory CLMT (cluster link map table).\nPlease note, fast-seek is only allowed for read-mode files, if a\nfile is opened in write-mode, the seek mechanism will automatically fallback\nto the default implementation.", + "id": "FATFS_USE_FASTSEEK", + "name": "FATFS_USE_FASTSEEK", + "range": null, + "title": "Enable fast seek algorithm when using lseek function through VFS FAT", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If set to 0, the 'newlib' library's default size (BLKSIZ) is used (128 B).\nIf set to a non-zero value, the value is used as the block size.\nDefault file buffer size is set to this value\nand the buffer is allocated when first attempt of reading/writing to a file is made.\nIncreasing this value improves fread() speed, however the heap usage is increased as well.\n\nNOTE: The block size value is shared by all the filesystem functions\naccessing target media for given file descriptor!\nSee 'Improving I/O performance' section of 'Maximizing Execution Speed' documentation page\nfor more details.", + "id": "FATFS_VFS_FSTAT_BLKSIZE", + "name": "FATFS_VFS_FSTAT_BLKSIZE", + "range": null, + "title": "Default block size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enables automatic calling of f_sync() to flush recent file changes after each call of vfs_fat_write(),\nvfs_fat_pwrite(), vfs_fat_link(), vfs_fat_truncate() and vfs_fat_ftruncate() functions.\nThis feature improves file-consistency and size reporting accuracy for the FatFS,\nat a price on decreased performance due to frequent disk operations", + "id": "FATFS_IMMEDIATE_FSYNC", + "name": "FATFS_IMMEDIATE_FSYNC", + "range": null, + "title": "Enable automatic f_sync", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-fat-filesystem-support", + "title": "FAT Filesystem support", + "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 vApplicationMinimalIdleHook( void );``\n- ``vApplicationMinimalIdleHook()`` is called from FreeRTOS minimal idle task(s)", + "id": "FREERTOS_USE_MINIMAL_IDLE_HOOK", + "name": "FREERTOS_USE_MINIMAL_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": [], + "depends_on": null, + "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": [], + "depends_on": null, + "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": null, + "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": null, + "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" + }, + { + "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": [ + { + "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" + } + ], + "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": [ + { + "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": "IDF_TARGET_ESP32", + "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": [], + "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": [], + "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" + } + ], + "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": "SPI_MASTER_ISR_IN_IRAM", + "help": "Enable this option to place SPI master hal layer functions into IRAM.", + "id": "HAL_SPI_MASTER_FUNC_IN_IRAM", + "name": "HAL_SPI_MASTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_SLAVE_ISR_IN_IRAM", + "help": "Enable this option to place SPI slave hal layer functions into IRAM.", + "id": "HAL_SPI_SLAVE_FUNC_IN_IRAM", + "name": "HAL_SPI_SLAVE_FUNC_IN_IRAM", + "range": null, + "title": null, + "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": [], + "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": [], + "depends_on": null, + "help": "Enables tracking the task responsible for each heap allocation.\n\nThis function depends on heap poisoning being enabled and adds four more bytes of overhead for each block\nallocated.", + "id": "HEAP_TASK_TRACKING", + "name": "HEAP_TASK_TRACKING", + "range": null, + "title": "Enable heap task tracking", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "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": 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": "!HEAP_TLSF_USE_ROM_IMPL", + "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 ISR.", + "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": "IEEE802154_ENABLED", + "help": "The number of 802.15.4 receive buffers", + "id": "IEEE802154_RX_BUFFER_SIZE", + "name": "IEEE802154_RX_BUFFER_SIZE", + "range": null, + "title": "The number of 802.15.4 receive buffers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "configure the CCA mode to Energy above threshold", + "id": "IEEE802154_CCA_CARRIER", + "name": "IEEE802154_CCA_CARRIER", + "range": null, + "title": "Carrier sense only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configure the CCA mode to Energy above threshold", + "id": "IEEE802154_CCA_ED", + "name": "IEEE802154_CCA_ED", + "range": null, + "title": "Energy above threshold", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configure the CCA mode to Carrier sense OR energy above threshold", + "id": "IEEE802154_CCA_CARRIER_OR_ED", + "name": "IEEE802154_CCA_CARRIER_OR_ED", + "range": null, + "title": "Carrier sense OR energy above threshold", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configure the CCA mode to Carrier sense AND energy above threshold", + "id": "IEEE802154_CCA_CARRIER_AND_ED", + "name": "IEEE802154_CCA_CARRIER_AND_ED", + "range": null, + "title": "Carrier sense AND energy above threshold", + "type": "bool" + } + ], + "depends_on": "IEEE802154_ENABLED", + "help": "configure the CCA mode", + "id": "component-config-ieee-802-15-4-ieee802154-enable-clear-channel-assessment-cca-mode", + "name": "IEEE802154_CCA_MODE", + "title": "Clear Channel Assessment (CCA) mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": null, + "id": "IEEE802154_CCA_MODE", + "name": "IEEE802154_CCA_MODE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": "set the CCA threshold, in dB", + "id": "IEEE802154_CCA_THRESHOLD", + "name": "IEEE802154_CCA_THRESHOLD", + "range": null, + "title": "CCA detection threshold", + "type": "int" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": "set the pending table size", + "id": "IEEE802154_PENDING_TABLE_SIZE", + "name": "IEEE802154_PENDING_TABLE_SIZE", + "range": null, + "title": "Pending table size", + "type": "int" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": "Enable IEEE802154 multi-pan", + "id": "IEEE802154_MULTI_PAN_ENABLE", + "name": "IEEE802154_MULTI_PAN_ENABLE", + "range": null, + "title": "Enable multi-pan feature for frame filter", + "type": "bool" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": "Enabling this option increases throughput by ~5% at the expense of ~2.1k\nIRAM code size increase.", + "id": "IEEE802154_TIMING_OPTIMIZATION", + "name": "IEEE802154_TIMING_OPTIMIZATION", + "range": null, + "title": "Enable throughput optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE && IEEE802154_ENABLED", + "help": "Enabling this option allows the IEEE802.15.4 module to be powered down during automatic light sleep,\nwhich reduces current consumption.", + "id": "IEEE802154_SLEEP_ENABLE", + "name": "IEEE802154_SLEEP_ENABLE", + "range": null, + "title": "Enable IEEE802154 light sleep", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IEEE802154_DEBUG", + "help": "Enabling this option to add some probe codes in the driver, and these informations\nwill be printed when assert.", + "id": "IEEE802154_ASSERT", + "name": "IEEE802154_ASSERT", + "range": null, + "title": "Enrich the assert information with IEEE802154 state and event", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IEEE802154_RECORD_EVENT", + "help": "set the record event table size", + "id": "IEEE802154_RECORD_EVENT_SIZE", + "name": "IEEE802154_RECORD_EVENT_SIZE", + "range": null, + "title": "Record event table size", + "type": "int" + } + ], + "depends_on": "IEEE802154_DEBUG", + "help": "Enabling this option to record event, when assert, the recorded event will be printed.", + "id": "IEEE802154_RECORD_EVENT", + "name": "IEEE802154_RECORD_EVENT", + "range": null, + "title": "Enable record event information for debugging", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IEEE802154_RECORD_STATE", + "help": "set the record state table size", + "id": "IEEE802154_RECORD_STATE_SIZE", + "name": "IEEE802154_RECORD_STATE_SIZE", + "range": null, + "title": "Record state table size", + "type": "int" + } + ], + "depends_on": "IEEE802154_DEBUG", + "help": "Enabling this option to record state, when assert, the recorded state will be printed.", + "id": "IEEE802154_RECORD_STATE", + "name": "IEEE802154_RECORD_STATE", + "range": null, + "title": "Enable record state information for debugging", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IEEE802154_RECORD_CMD", + "help": "set the record command table size", + "id": "IEEE802154_RECORD_CMD_SIZE", + "name": "IEEE802154_RECORD_CMD_SIZE", + "range": null, + "title": "Record command table size", + "type": "int" + } + ], + "depends_on": "IEEE802154_DEBUG", + "help": "Enabling this option to record the command, when assert, the recorded\ncommand will be printed.", + "id": "IEEE802154_RECORD_CMD", + "name": "IEEE802154_RECORD_CMD", + "range": null, + "title": "Enable record command information for debugging", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IEEE802154_RECORD_ABORT", + "help": "set the record abort table size", + "id": "IEEE802154_RECORD_ABORT_SIZE", + "name": "IEEE802154_RECORD_ABORT_SIZE", + "range": null, + "title": "Record abort table size", + "type": "int" + } + ], + "depends_on": "IEEE802154_DEBUG", + "help": "Enabling this option to record the abort, when assert, the recorded\nabort will be printed.", + "id": "IEEE802154_RECORD_ABORT", + "name": "IEEE802154_RECORD_ABORT", + "range": null, + "title": "Enable record abort information for debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "IEEE802154_DEBUG", + "help": "Enabling this option to record the tx and rx", + "id": "IEEE802154_TXRX_STATISTIC", + "name": "IEEE802154_TXRX_STATISTIC", + "range": null, + "title": "Enable record tx/rx packets information for debugging", + "type": "bool" + } + ], + "depends_on": "IEEE802154_ENABLED", + "help": "Enabling this option allows different kinds of IEEE802154 debug output.\nAll IEEE802154 debug features increase the size of the final binary.", + "id": "IEEE802154_DEBUG", + "is_menuconfig": true, + "name": "IEEE802154_DEBUG", + "range": null, + "title": "Enable IEEE802154 Debug", + "type": "menu" + } + ], + "depends_on": null, + "help": null, + "id": "IEEE802154_ENABLED", + "name": "IEEE802154_ENABLED", + "range": null, + "title": "IEEE802154 Enable", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-ieee-802-15-4", + "title": "IEEE 802.15.4", + "type": "menu" + }, + { + "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.\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-output-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-output-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": [], + "depends_on": null, + "help": "Enables an additional global \"master\" log level check that occurs\nbefore a log tag cache lookup. This is useful if you want to\ncompile in a lot of logs that are selectable at runtime, but avoid the\nperformance hit during periods where you don't want log output. Examples\ninclude remote log forwarding, or disabling logs during a time-critical\nor CPU-intensive section and re-enabling them later. Results in\nlarger program size depending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master().\nThis 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": "Enable ANSI terminal color codes in bootloader output.\n\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Use ANSI terminal colors in log output", + "type": "bool" + }, + { + "children": [ + { + "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", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- Milliseconds since boot is calulated 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 is taken from POSIX time functions which use the chip's\n RTC and high resoultion 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- 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-output-log-timestamps", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Log Timestamps", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-output", + "title": "Log output", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Builds normally if selected. Excludes LwIP from build if unselected, even if it is a\ndependency of a component or application.\nSome applications can switch their IP stacks, e.g., when switching between chip\nand Linux targets (LwIP stack vs. Linux IP stack). Since the LwIP dependency cannot\neasily be excluded based on a Kconfig option, it has to be a dependency in all cases.\nThis switch allows the LwIP stack to be built selectively, even if it is a dependency.", + "id": "LWIP_ENABLE", + "name": "LWIP_ENABLE", + "range": null, + "title": "Enable LwIP stack", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The default name this device will report to other devices on the network.\nCould be updated at runtime with esp_netif_set_hostname()", + "id": "LWIP_LOCAL_HOSTNAME", + "name": "LWIP_LOCAL_HOSTNAME", + "range": null, + "title": "Local netif hostname", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "If this feature is enabled, standard POSIX APIs: if_indextoname(), if_nametoindex()\ncould be used to convert network interface index to name\ninstead of IDF specific esp-netif APIs (such as esp_netif_get_netif_impl_name())", + "id": "LWIP_NETIF_API", + "name": "LWIP_NETIF_API", + "range": null, + "title": "Enable usage of standard POSIX APIs in LWIP", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "LWIP tcpip task priority. In case of high throughput, this parameter\ncould be changed up to (configMAX_PRIORITIES-1).", + "id": "LWIP_TCPIP_TASK_PRIO", + "name": "LWIP_TCPIP_TASK_PRIO", + "range": [ + 1, + 24 + ], + "title": "LWIP TCP/IP Task Priority", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_TCPIP_CORE_LOCKING", + "help": "when LWIP_TCPIP_CORE_LOCKING is enabled, this lets tcpip_input() grab the\nmutex for input packets as well, instead of allocating a message and passing\nit to tcpip_thread.", + "id": "LWIP_TCPIP_CORE_LOCKING_INPUT", + "name": "LWIP_TCPIP_CORE_LOCKING_INPUT", + "range": null, + "title": "Enable tcpip core locking input", + "type": "bool" + } + ], + "depends_on": null, + "help": "If Enable tcpip core locking,Creates a global mutex that is held\nduring TCPIP thread operations.Can be locked by client code to perform\nlwIP operations without changing into TCPIP thread using callbacks.\nSee LOCK_TCPIP_CORE() and UNLOCK_TCPIP_CORE().\n\nIf disable tcpip core locking,TCP IP will perform tasks through context switching", + "id": "LWIP_TCPIP_CORE_LOCKING", + "name": "LWIP_TCPIP_CORE_LOCKING", + "range": null, + "title": "Enable tcpip core locking", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable to check that the project does not violate lwip thread safety.\nIf enabled, all lwip functions that require thread awareness run an assertion\nto verify that the TCP/IP core functionality is either locked or accessed\nfrom the correct thread.", + "id": "LWIP_CHECK_THREAD_SAFETY", + "name": "LWIP_CHECK_THREAD_SAFETY", + "range": null, + "title": "Checks that lwip API runs in expected context", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this feature is enabled, standard API such as gethostbyname\nsupport .local addresses by sending one shot multicast mDNS\nquery", + "id": "LWIP_DNS_SUPPORT_MDNS_QUERIES", + "name": "LWIP_DNS_SUPPORT_MDNS_QUERIES", + "range": null, + "title": "Enable mDNS queries in resolving host name", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this feature is enabled, all traffic from layer2(WIFI Driver) will be\ncopied to a new buffer before sending it to layer3(LWIP stack), freeing\nthe layer2 buffer.\nPlease be notified that the total layer2 receiving buffer is fixed and\nESP32 currently supports 25 layer2 receiving buffer, when layer2 buffer\nruns out of memory, then the incoming packets will be dropped in hardware.\nThe layer3 buffer is allocated from the heap, so the total layer3 receiving\nbuffer depends on the available heap size, when heap runs out of memory,\nno copy will be sent to layer3 and packet will be dropped in layer2.\nPlease make sure you fully understand the impact of this feature before\nenabling it.", + "id": "LWIP_L2_TO_L3_COPY", + "name": "LWIP_L2_TO_L3_COPY", + "range": null, + "title": "Enable copy between Layer2 and Layer3 packets", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this feature is enabled, some functions relating to RX/TX in LWIP will be\nput into IRAM, it can improve UDP/TCP throughput by >10% for single core mode,\nit doesn't help too much for dual core mode. On the other hand, it needs about\n10KB IRAM for these optimizations.\n\nIf this feature is disabled, all lwip functions will be put into FLASH.", + "id": "LWIP_IRAM_OPTIMIZATION", + "name": "LWIP_IRAM_OPTIMIZATION", + "range": null, + "title": "Enable LWIP IRAM optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this feature is enabled, some tcp part functions relating to RX/TX in LWIP will be\nput into IRAM, it can improve TCP throughput. On the other hand, it needs about 17KB\nIRAM for these optimizations.", + "id": "LWIP_EXTRA_IRAM_OPTIMIZATION", + "name": "LWIP_EXTRA_IRAM_OPTIMIZATION", + "range": null, + "title": "Enable LWIP IRAM optimization for TCP part", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this feature is enabled, IGMP and MLD6 timers will be activated only\nwhen joining groups or receiving QUERY packets.\n\nThis feature will reduce the power consumption for applications which do not\nuse IGMP and MLD6.", + "id": "LWIP_TIMERS_ONDEMAND", + "name": "LWIP_TIMERS_ONDEMAND", + "range": null, + "title": "Enable LWIP Timers on demand", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_ND6", + "help": "This option is used to set the the router flag for the NA packets.\nWhen enabled, the router flag in NA packet will always set to 1,\notherwise, never set router flag for NA packets.", + "id": "LWIP_FORCE_ROUTER_FORWARDING", + "name": "LWIP_FORCE_ROUTER_FORWARDING", + "range": null, + "title": "LWIP Force Router Forwarding Enable/Disable", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV6", + "help": "This option is used to disable the Network Discovery Protocol (NDP) if it is not required.\nPlease use this option with caution, as the NDP is essential for IPv6 functionality within a local network.", + "id": "LWIP_ND6", + "name": "LWIP_ND6", + "range": null, + "title": "LWIP NDP6 Enable/Disable", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Sockets take up a certain amount of memory, and allowing fewer\nsockets to be open at the same time conserves memory. Specify\nthe maximum amount of sockets here. The valid value is from 1\nto 16.", + "id": "LWIP_MAX_SOCKETS", + "name": "LWIP_MAX_SOCKETS", + "range": [ + 1, + 16 + ], + "title": "Max number of open sockets", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This option is deprecated. Do not use this option, use VFS_SUPPORT_SELECT instead.", + "id": "LWIP_USE_ONLY_LWIP_SELECT", + "name": "LWIP_USE_ONLY_LWIP_SELECT", + "range": null, + "title": "Support LWIP socket select() only (DEPRECATED)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows SO_LINGER processing.\nl_onoff = 1,l_linger can set the timeout.\n\nIf l_linger=0, When a connection is closed, TCP will terminate the connection.\nThis means that TCP will discard any data packets stored in the socket send buffer\nand send an RST to the peer.\n\nIf l_linger!=0,Then closesocket() calls to block the process until\nthe remaining data packets has been sent or timed out.", + "id": "LWIP_SO_LINGER", + "name": "LWIP_SO_LINGER", + "range": null, + "title": "Enable SO_LINGER processing", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_SO_REUSE", + "help": "Enabling this option means that any incoming broadcast or multicast\npacket will be copied to all of the local sockets that it matches\n(may be more than one if SO_REUSEADDR is set on the socket.)\n\nThis increases memory overhead as the packets need to be copied,\nhowever they are only copied per matching socket. You can safely\ndisable it if you don't plan to receive broadcast or multicast\ntraffic on more than one socket at a time.", + "id": "LWIP_SO_REUSE_RXTOALL", + "name": "LWIP_SO_REUSE_RXTOALL", + "range": null, + "title": "SO_REUSEADDR copies broadcast/multicast to all matches", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enabling this option allows binding to a port which remains in\nTIME_WAIT.", + "id": "LWIP_SO_REUSE", + "name": "LWIP_SO_REUSE", + "range": null, + "title": "Enable SO_REUSEADDR option", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows checking for available data on a netconn.", + "id": "LWIP_SO_RCVBUF", + "name": "LWIP_SO_RCVBUF", + "range": null, + "title": "Enable SO_RCVBUF option", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows checking for the destination address\nof a received IPv4 Packet.", + "id": "LWIP_NETBUF_RECVINFO", + "name": "LWIP_NETBUF_RECVINFO", + "range": null, + "title": "Enable IP_PKTINFO option", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set value for Time-To-Live used by transport layers.", + "id": "LWIP_IP_DEFAULT_TTL", + "name": "LWIP_IP_DEFAULT_TTL", + "range": [ + 1, + 255 + ], + "title": "The value for Time-To-Live used by transport layers", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "help": "Enabling this option allows fragmenting outgoing IP4 packets if their size\nexceeds MTU.", + "id": "LWIP_IP4_FRAG", + "name": "LWIP_IP4_FRAG", + "range": null, + "title": "Enable fragment outgoing IP4 packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Enabling this option allows fragmenting outgoing IP6 packets if their size\nexceeds MTU.", + "id": "LWIP_IP6_FRAG", + "name": "LWIP_IP6_FRAG", + "range": null, + "title": "Enable fragment outgoing IP6 packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "help": "Enabling this option allows reassemblying incoming fragmented IP4 packets.", + "id": "LWIP_IP4_REASSEMBLY", + "name": "LWIP_IP4_REASSEMBLY", + "range": null, + "title": "Enable reassembly incoming fragmented IP4 packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Enabling this option allows reassemblying incoming fragmented IP6 packets.", + "id": "LWIP_IP6_REASSEMBLY", + "name": "LWIP_IP6_REASSEMBLY", + "range": null, + "title": "Enable reassembly incoming fragmented IP6 packets", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set the maximum amount of pbufs waiting to be reassembled.", + "id": "LWIP_IP_REASS_MAX_PBUFS", + "name": "LWIP_IP_REASS_MAX_PBUFS", + "range": [ + 10, + 100 + ], + "title": "The maximum amount of pbufs waiting to be reassembled", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "LWIP_IPV4_NAPT", + "help": "Enabling this option allows Port Forwarding or Port mapping.", + "id": "LWIP_IPV4_NAPT_PORTMAP", + "name": "LWIP_IPV4_NAPT_PORTMAP", + "range": null, + "title": "Enable NAT Port Mapping (new/experimental)", + "type": "bool" + } + ], + "depends_on": "LWIP_IP_FORWARD", + "help": "Enabling this option allows Network Address and Port Translation.", + "id": "LWIP_IPV4_NAPT", + "name": "LWIP_IPV4_NAPT", + "range": null, + "title": "Enable NAT (new/experimental)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enabling this option allows packets forwarding across multiple interfaces.", + "id": "LWIP_IP_FORWARD", + "name": "LWIP_IP_FORWARD", + "range": null, + "title": "Enable IP forwarding", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows LWIP statistics", + "id": "LWIP_STATS", + "name": "LWIP_STATS", + "range": null, + "title": "Enable LWIP statistics", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_ESP_GRATUITOUS_ARP", + "help": "Set the timer interval for gratuitous ARP. The default value is 60s", + "id": "LWIP_GARP_TMR_INTERVAL", + "name": "LWIP_GARP_TMR_INTERVAL", + "range": null, + "title": "GARP timer interval(seconds)", + "type": "int" + } + ], + "depends_on": "LWIP_IPV4", + "help": "Enable this option allows to send gratuitous ARP periodically.\n\nThis option solve the compatibility issues.If the ARP table of the AP is old, and the AP\ndoesn't send ARP request to update it's ARP table, this will lead to the STA sending IP packet fail.\nThus we send gratuitous ARP periodically to let AP update it's ARP table.", + "id": "LWIP_ESP_GRATUITOUS_ARP", + "name": "LWIP_ESP_GRATUITOUS_ARP", + "range": null, + "title": "Send gratuitous ARP periodically", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_ESP_MLDV6_REPORT", + "help": "Set the timer interval for mldv6 report. The default value is 30s", + "id": "LWIP_MLDV6_TMR_INTERVAL", + "name": "LWIP_MLDV6_TMR_INTERVAL", + "range": null, + "title": "mldv6 report timer interval(seconds)", + "type": "int" + } + ], + "depends_on": "LWIP_IPV6", + "help": "Enable this option allows to send mldv6 report periodically.\n\nThis option solve the issue that failed to receive multicast data.\nSome routers fail to forward multicast packets.\nTo solve this problem, send multicast mdlv6 report to routers regularly.", + "id": "LWIP_ESP_MLDV6_REPORT", + "name": "LWIP_ESP_MLDV6_REPORT", + "range": null, + "title": "Send mldv6 report periodically", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set TCPIP task receive mail box size. Generally bigger value means higher throughput\nbut more memory. The value should be bigger than UDP/TCP mail box size.", + "id": "LWIP_TCPIP_RECVMBOX_SIZE", + "name": "LWIP_TCPIP_RECVMBOX_SIZE", + "range": [ + 6, + 64 + ], + "title": "TCPIP task receive mail box size", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "help": "Enabling this option performs a check (via ARP request) if the offered IP address\nis not already in use by another host on the network.", + "id": "LWIP_DHCP_DOES_ARP_CHECK", + "name": "LWIP_DHCP_DOES_ARP_CHECK", + "range": null, + "title": "DHCP: Perform ARP check on any offered address", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "help": "This option could be used to disable DHCP client identification with its MAC address.\n(Client id is used by DHCP servers to uniquely identify clients and are included\nin the DHCP packets as an option 61)\nSet this option to \"y\" in order to exclude option 61 from DHCP packets.", + "id": "LWIP_DHCP_DISABLE_CLIENT_ID", + "name": "LWIP_DHCP_DISABLE_CLIENT_ID", + "range": null, + "title": "DHCP: Disable Use of HW address as client identification", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "help": "This option could be used to disable DHCP client vendor class identification.\nSet this option to \"y\" in order to exclude option 60 from DHCP packets.", + "id": "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID", + "name": "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID", + "range": null, + "title": "DHCP: Disable Use of vendor class identification", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "help": "When this option is enabled, DHCP client tries to re-obtain last valid IP address obtained from DHCP\nserver. Last valid DHCP configuration is stored in nvs and restored after reset/power-up. If IP is still\navailable, there is no need for sending discovery message to DHCP server and save some time.", + "id": "LWIP_DHCP_RESTORE_LAST_IP", + "name": "LWIP_DHCP_RESTORE_LAST_IP", + "range": null, + "title": "DHCP: Restore last IP obtained from DHCP server", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "help": "Set total length of outgoing DHCP option msg. Generally bigger value means it can carry more\noptions and values. If your code meets LWIP_ASSERT due to option value is too long.\nPlease increase the LWIP_DHCP_OPTIONS_LEN value.", + "id": "LWIP_DHCP_OPTIONS_LEN", + "name": "LWIP_DHCP_OPTIONS_LEN", + "range": [ + 68, + 255 + ], + "title": "DHCP total option length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Number of clients that may store data in client_data member array of struct netif.", + "id": "LWIP_NUM_NETIF_CLIENT_DATA", + "name": "LWIP_NUM_NETIF_CLIENT_DATA", + "range": [ + 0, + 256 + ], + "title": "Number of clients store data in netif", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set DHCP coarse interval in seconds.\nA higher value will be less precise but cost less power consumption.", + "id": "LWIP_DHCP_COARSE_TIMER_SECS", + "name": "LWIP_DHCP_COARSE_TIMER_SECS", + "range": [ + 1, + 10 + ], + "title": "DHCP coarse timer interval(s)", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "LWIP_DHCPS", + "help": "The DHCP server is calculating lease time multiplying the sent\nand received times by this number of seconds per unit.\nThe default is 60, that equals one minute.", + "id": "LWIP_DHCPS_LEASE_UNIT", + "name": "LWIP_DHCPS_LEASE_UNIT", + "range": [ + 1, + 3600 + ], + "title": "Multiplier for lease time, in seconds", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_DHCPS", + "help": "The maximum number of DHCP clients that are connected to the server.\nAfter this number is exceeded, DHCP server removes of the oldest device\nfrom it's address pool, without notification.", + "id": "LWIP_DHCPS_MAX_STATION_NUM", + "name": "LWIP_DHCPS_MAX_STATION_NUM", + "range": [ + 1, + 64 + ], + "title": "Maximum number of stations", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_DHCPS", + "help": "Enabling this option allows DHCP server to support temporary static ARP entries\nfor DHCP Client. This will help the DHCP server to send the DHCP OFFER and DHCP ACK using IP unicast.", + "id": "LWIP_DHCPS_STATIC_ENTRIES", + "name": "LWIP_DHCPS_STATIC_ENTRIES", + "range": null, + "title": "Enable ARP static entries", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV4", + "help": "Enabling this option allows the device to run the DHCP server\n(to dynamically assign IPv4 addresses to clients).", + "id": "LWIP_DHCPS", + "name": "LWIP_DHCPS", + "range": null, + "title": "DHCPS: Enable IPv4 Dynamic Host Configuration Protocol Server (DHCPS)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-dhcp-server", + "title": "DHCP server", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_AUTOIP", + "help": "DHCP client will send this many probes before self-assigning a\nlink local address.\n\nFrom LWIP help: \"This can be set as low as 1 to get an AutoIP\naddress very quickly, but you should be prepared to handle a\nchanging IP address when DHCP overrides AutoIP.\" (In the case of\nESP-IDF, this means multiple SYSTEM_EVENT_STA_GOT_IP events.)", + "id": "LWIP_AUTOIP_TRIES", + "name": "LWIP_AUTOIP_TRIES", + "range": null, + "title": "DHCP Probes before self-assigning IPv4 LL address", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_AUTOIP", + "help": "If the AUTOIP functionality detects this many IP conflicts while\nself-assigning an address, it will go into a rate limited mode.", + "id": "LWIP_AUTOIP_MAX_CONFLICTS", + "name": "LWIP_AUTOIP_MAX_CONFLICTS", + "range": null, + "title": "Max IP conflicts before rate limiting", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_AUTOIP", + "help": "If rate limiting self-assignment requests, wait this long between\neach request.", + "id": "LWIP_AUTOIP_RATE_LIMIT_INTERVAL", + "name": "LWIP_AUTOIP_RATE_LIMIT_INTERVAL", + "range": null, + "title": "Rate limited interval (seconds)", + "type": "int" + } + ], + "depends_on": "LWIP_IPV4", + "help": "Enabling this option allows the device to self-assign an address\nin the 169.256/16 range if none is assigned statically or via DHCP.\n\nSee RFC 3927.", + "id": "LWIP_AUTOIP", + "is_menuconfig": true, + "name": "LWIP_AUTOIP", + "range": null, + "title": "Enable IPV4 Link-Local Addressing (AUTOIP)", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enable IPv4 stack. If you want to use IPv6 only TCP/IP stack, disable this.", + "id": "LWIP_IPV4", + "name": "LWIP_IPV4", + "range": null, + "title": "Enable IPv4", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Enabling this option allows the devices to IPV6 stateless address autoconfiguration (SLAAC).\n\nSee RFC 4862.", + "id": "LWIP_IPV6_AUTOCONFIG", + "name": "LWIP_IPV6_AUTOCONFIG", + "range": null, + "title": "Enable IPV6 stateless address autoconfiguration (SLAAC)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "The maximum number of IPv6 addresses on each interface. Any additional\naddresses will be discarded.", + "id": "LWIP_IPV6_NUM_ADDRESSES", + "name": "LWIP_IPV6_NUM_ADDRESSES", + "range": null, + "title": "Number of IPv6 addresses on each network interface", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Forwarding IPv6 packets between interfaces is only required when acting as\na router.", + "id": "LWIP_IPV6_FORWARD", + "name": "LWIP_IPV6_FORWARD", + "range": null, + "title": "Enable IPv6 forwarding between interfaces", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable IPv6 function. If not use IPv6 function, set this option to n.\nIf disabling LWIP_IPV6 then some other components (coap and asio) will\nno longer be available.", + "id": "LWIP_IPV6", + "name": "LWIP_IPV6", + "range": null, + "title": "Enable IPv6", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV6_AUTOCONFIG", + "help": "Use IPv6 Router Advertisement Recursive DNS Server Option (as per RFC 6106) to\ncopy a defined maximum number of DNS servers to the DNS module.\nSet this option to a number of desired DNS servers advertised in the RA protocol.\nThis feature is disabled when set to 0.", + "id": "LWIP_IPV6_RDNSS_MAX_DNS_SERVERS", + "name": "LWIP_IPV6_RDNSS_MAX_DNS_SERVERS", + "range": null, + "title": "Use IPv6 Router Advertisement Recursive DNS Server Option", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6_AUTOCONFIG", + "help": "Enable DHCPv6 for IPv6 stateless address autoconfiguration.\nNote that the dhcpv6 client has to be started using dhcp6_enable_stateless(netif);\nNote that the stateful address autoconfiguration is not supported.", + "id": "LWIP_IPV6_DHCP6", + "name": "LWIP_IPV6_DHCP6", + "range": null, + "title": "Enable DHCPv6 stateless address autoconfiguration", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable callbacks when the network interface is up/down and addresses are changed.", + "id": "LWIP_NETIF_STATUS_CALLBACK", + "name": "LWIP_NETIF_STATUS_CALLBACK", + "range": null, + "title": "Enable status callback for network interfaces", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_NETIF_LOOPBACK", + "help": "Configure the maximum number of packets which can be queued for\nloopback on a given interface. Reducing this number may cause packets\nto be dropped, but will avoid filling memory with queued packet data.", + "id": "LWIP_LOOPBACK_MAX_PBUFS", + "name": "LWIP_LOOPBACK_MAX_PBUFS", + "range": [ + 0, + 16 + ], + "title": "Max queued loopback packets per interface", + "type": "int" + } + ], + "depends_on": null, + "help": "Enabling this option means that if a packet is sent with a destination\naddress equal to the interface's own IP address, it will \"loop back\" and\nbe received by this interface.\nDisabling this option disables support of loopback interface in lwIP", + "id": "LWIP_NETIF_LOOPBACK", + "is_menuconfig": true, + "name": "LWIP_NETIF_LOOPBACK", + "range": null, + "title": "Support per-interface loopback", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The maximum number of simultaneously active TCP\nconnections. The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nChanging this value by itself does not substantially\nchange the memory usage of LWIP, except for preventing\nnew TCP connections after the limit is reached.", + "id": "LWIP_MAX_ACTIVE_TCP", + "name": "LWIP_MAX_ACTIVE_TCP", + "range": [ + 1, + 1024 + ], + "title": "Maximum active TCP Connections", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "The maximum number of simultaneously listening TCP\nconnections. The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nChanging this value by itself does not substantially\nchange the memory usage of LWIP, except for preventing\nnew listening TCP connections after the limit is reached.", + "id": "LWIP_MAX_LISTENING_TCP", + "name": "LWIP_MAX_LISTENING_TCP", + "range": [ + 1, + 1024 + ], + "title": "Maximum listening TCP Connections", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Speed up the TCP retransmission interval. If disabled,\nit is recommended to change the number of SYN retransmissions to 6,\nand TCP initial rto time to 3000.", + "id": "LWIP_TCP_HIGH_SPEED_RETRANSMISSION", + "name": "LWIP_TCP_HIGH_SPEED_RETRANSMISSION", + "range": null, + "title": "TCP high speed retransmissions", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum number of retransmissions of data segments.", + "id": "LWIP_TCP_MAXRTX", + "name": "LWIP_TCP_MAXRTX", + "range": [ + 3, + 12 + ], + "title": "Maximum number of retransmissions of data segments", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum number of retransmissions of SYN segments.", + "id": "LWIP_TCP_SYNMAXRTX", + "name": "LWIP_TCP_SYNMAXRTX", + "range": [ + 3, + 12 + ], + "title": "Maximum number of retransmissions of SYN segments", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum segment size for TCP transmission.\n\nCan be set lower to save RAM, the default value 1460(ipv4)/1440(ipv6) will give best throughput.\nIPv4 TCP_MSS Range: 576 <= TCP_MSS <= 1460\nIPv6 TCP_MSS Range: 1220<= TCP_MSS <= 1440", + "id": "LWIP_TCP_MSS", + "name": "LWIP_TCP_MSS", + "range": [ + 536, + 1460 + ], + "title": "Maximum Segment Size (MSS)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set TCP timer interval in milliseconds.\n\nCan be used to speed connections on bad networks.\nA lower value will redeliver unacked packets faster.", + "id": "LWIP_TCP_TMR_INTERVAL", + "name": "LWIP_TCP_TMR_INTERVAL", + "range": null, + "title": "TCP timer interval(ms)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum segment lifetime in milliseconds.", + "id": "LWIP_TCP_MSL", + "name": "LWIP_TCP_MSL", + "range": null, + "title": "Maximum segment lifetime (MSL)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum segment lifetime in milliseconds.", + "id": "LWIP_TCP_FIN_WAIT_TIMEOUT", + "name": "LWIP_TCP_FIN_WAIT_TIMEOUT", + "range": null, + "title": "Maximum FIN segment lifetime", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set default send buffer size for new TCP sockets.\n\nPer-socket send buffer size can be changed at runtime\nwith lwip_setsockopt(s, TCP_SNDBUF, ...).\n\nThis value must be at least 2x the MSS size, and the default\nis 4x the default MSS size.\n\nSetting a smaller default SNDBUF size can save some RAM, but\nwill decrease performance.", + "id": "LWIP_TCP_SND_BUF_DEFAULT", + "name": "LWIP_TCP_SND_BUF_DEFAULT", + "range": [ + 2440, + 65535 + ], + "title": "Default send buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set default TCP receive window size for new TCP sockets.\n\nPer-socket receive window size can be changed at runtime\nwith lwip_setsockopt(s, TCP_WINDOW, ...).\n\nSetting a smaller default receive window size can save some RAM,\nbut will significantly decrease performance.", + "id": "LWIP_TCP_WND_DEFAULT", + "name": "LWIP_TCP_WND_DEFAULT", + "range": [ + 2440, + 65535 + ], + "title": "Default receive window size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set TCP receive mail box size. Generally bigger value means higher throughput\nbut more memory. The recommended value is: LWIP_TCP_WND_DEFAULT/TCP_MSS + 2, e.g. if\nLWIP_TCP_WND_DEFAULT=14360, TCP_MSS=1436, then the recommended receive mail box size is\n(14360/1436 + 2) = 12.\n\nTCP receive mail box is a per socket mail box, when the application receives packets\nfrom TCP socket, LWIP core firstly posts the packets to TCP receive mail box and the\napplication then fetches the packets from mail box. It means LWIP can caches maximum\nLWIP_TCP_RECCVMBOX_SIZE packets for each TCP socket, so the maximum possible cached TCP packets\nfor all TCP sockets is LWIP_TCP_RECCVMBOX_SIZE multiples the maximum TCP socket number. In other\nwords, the bigger LWIP_TCP_RECVMBOX_SIZE means more memory.\nOn the other hand, if the receiv mail box is too small, the mail box may be full. If the\nmail box is full, the LWIP drops the packets. So generally we need to make sure the TCP\nreceive mail box is big enough to avoid packet drop between LWIP core and application.", + "id": "LWIP_TCP_RECVMBOX_SIZE", + "name": "LWIP_TCP_RECVMBOX_SIZE", + "range": [ + 6, + 64 + ], + "title": "Default TCP receive mail box size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_TCP_QUEUE_OOSEQ", + "help": "The timeout value is TCP_OOSEQ_TIMEOUT * RTO.", + "id": "LWIP_TCP_OOSEQ_TIMEOUT", + "name": "LWIP_TCP_OOSEQ_TIMEOUT", + "range": [ + 1, + 30 + ], + "title": "Timeout for each pbuf queued in TCP OOSEQ, in RTOs.", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_TCP_QUEUE_OOSEQ", + "help": "If LWIP_TCP_OOSEQ_MAX_PBUFS = 0, TCP will not control the number of OOSEQ pbufs.\n\nIn a poor network environment, many out-of-order tcp pbufs will be received.\nThese out-of-order pbufs will be cached in the TCP out-of-order queue which will\ncause Wi-Fi/Ethernet fail to release RX buffer in time.\nIt is possible that all RX buffers for MAC layer are used by OOSEQ.\n\nControl the number of out-of-order pbufs to ensure\nthat the MAC layer has enough RX buffer to receive packets.\n\nIn the Wi-Fi scenario, recommended OOSEQ PBUFS Range:\n0 <= TCP_OOSEQ_MAX_PBUFS <= CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM/(MAX_TCP_NUMBER + 1)\n\nIn the Ethernet scenario,recommended Ethernet OOSEQ PBUFS Range:\n0 <= TCP_OOSEQ_MAX_PBUFS <= CONFIG_ETH_DMA_RX_BUFFER_NUM/(MAX_TCP_NUMBER + 1)\n\nWithin the recommended value range, the larger the value, the better the performance.\n\nMAX_TCP_NUMBER represent Maximum number of TCP connections in Wi-Fi(STA+SoftAP) and Ethernet scenario.", + "id": "LWIP_TCP_OOSEQ_MAX_PBUFS", + "name": "LWIP_TCP_OOSEQ_MAX_PBUFS", + "range": [ + 0, + 12 + ], + "title": "The maximum number of pbufs queued on OOSEQ per pcb", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_TCP_QUEUE_OOSEQ", + "help": "TCP will support sending selective acknowledgements (SACKs).", + "id": "LWIP_TCP_SACK_OUT", + "name": "LWIP_TCP_SACK_OUT", + "range": null, + "title": "Support sending selective acknowledgements", + "type": "bool" + } + ], + "depends_on": null, + "help": "Queue incoming out-of-order segments for later use.\n\nDisable this option to save some RAM during TCP sessions, at the expense\nof increased retransmissions if segments arrive out of order.", + "id": "LWIP_TCP_QUEUE_OOSEQ", + "name": "LWIP_TCP_QUEUE_OOSEQ", + "range": null, + "title": "Queue incoming out-of-order segments", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCP_OVERSIZE_MSS", + "name": "LWIP_TCP_OVERSIZE_MSS", + "range": null, + "title": "MSS", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCP_OVERSIZE_QUARTER_MSS", + "name": "LWIP_TCP_OVERSIZE_QUARTER_MSS", + "range": null, + "title": "25% MSS", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCP_OVERSIZE_DISABLE", + "name": "LWIP_TCP_OVERSIZE_DISABLE", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": null, + "help": "Allows enabling \"oversize\" allocation of TCP transmission pbufs ahead of time,\nwhich can reduce the length of pbuf chains used for transmission.\n\nThis will not make a difference to sockets where Nagle's algorithm\nis disabled.\n\nDefault value of MSS is fine for most applications, 25% MSS may save\nsome RAM when only transmitting small amounts of data. Disabled will\nhave worst performance and fragmentation characteristics, but uses\nleast RAM overall.", + "id": "component-config-lwip-tcp-pre-allocate-transmit-pbuf-size", + "name": "LWIP_TCP_OVERSIZE", + "title": "Pre-allocate transmit PBUF size", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_WND_SCALE", + "help": "Enable this feature to support TCP window scaling.", + "id": "LWIP_TCP_RCV_SCALE", + "name": "LWIP_TCP_RCV_SCALE", + "range": null, + "title": "Set TCP receiving window scaling factor", + "type": "int" + } + ], + "depends_on": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP", + "help": "Enable this feature to support TCP window scaling.", + "id": "LWIP_WND_SCALE", + "name": "LWIP_WND_SCALE", + "range": null, + "title": "Support TCP window scale", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set default TCP rto time for a reasonable initial rto.\nIn bad network environment, recommend set value of rto time to 1500.", + "id": "LWIP_TCP_RTO_TIME", + "name": "LWIP_TCP_RTO_TIME", + "range": null, + "title": "Default TCP rto time", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-lwip-tcp", + "title": "TCP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The maximum number of active UDP \"connections\" (ie\nUDP sockets sending/receiving data).\nThe practical maximum limit is determined by available\nheap memory at runtime.", + "id": "LWIP_MAX_UDP_PCBS", + "name": "LWIP_MAX_UDP_PCBS", + "range": [ + 1, + 1024 + ], + "title": "Maximum active UDP control blocks", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set UDP receive mail box size. The recommended value is 6.\n\nUDP receive mail box is a per socket mail box, when the application receives packets\nfrom UDP socket, LWIP core firstly posts the packets to UDP receive mail box and the\napplication then fetches the packets from mail box. It means LWIP can caches maximum\nUDP_RECCVMBOX_SIZE packets for each UDP socket, so the maximum possible cached UDP packets\nfor all UDP sockets is UDP_RECCVMBOX_SIZE multiples the maximum UDP socket number. In other\nwords, the bigger UDP_RECVMBOX_SIZE means more memory.\nOn the other hand, if the receiv mail box is too small, the mail box may be full. If the\nmail box is full, the LWIP drops the packets. So generally we need to make sure the UDP\nreceive mail box is big enough to avoid packet drop between LWIP core and application.", + "id": "LWIP_UDP_RECVMBOX_SIZE", + "name": "LWIP_UDP_RECVMBOX_SIZE", + "range": [ + 6, + 64 + ], + "title": "Default UDP receive mail box size", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-lwip-udp", + "title": "UDP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable checksum checking for received IP messages", + "id": "LWIP_CHECKSUM_CHECK_IP", + "name": "LWIP_CHECKSUM_CHECK_IP", + "range": null, + "title": "Enable LWIP IP checksums", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable checksum checking for received UDP messages", + "id": "LWIP_CHECKSUM_CHECK_UDP", + "name": "LWIP_CHECKSUM_CHECK_UDP", + "range": null, + "title": "Enable LWIP UDP checksums", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable checksum checking for received ICMP messages", + "id": "LWIP_CHECKSUM_CHECK_ICMP", + "name": "LWIP_CHECKSUM_CHECK_ICMP", + "range": null, + "title": "Enable LWIP ICMP checksums", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-checksums", + "title": "Checksums", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Configure TCP/IP task stack size, used by LWIP to process multi-threaded TCP/IP operations.\nSetting this stack too small will result in stack overflow crashes.", + "id": "LWIP_TCPIP_TASK_STACK_SIZE", + "name": "LWIP_TCPIP_TASK_STACK_SIZE", + "range": [ + 2048, + 65536 + ], + "title": "TCP/IP Task Stack Size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY", + "name": "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY_CPU0", + "name": "LWIP_TCPIP_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY_CPU1", + "name": "LWIP_TCPIP_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + } + ], + "depends_on": null, + "help": "Allows setting LwIP tasks affinity, i.e. whether the task is pinned to\nCPU0, pinned to CPU1, or allowed to run on any CPU.\nCurrently this applies to \"TCP/IP\" task and \"Ping\" task.", + "id": "component-config-lwip-tcp-ip-task-affinity", + "name": "LWIP_TCPIP_TASK_AFFINITY", + "title": "TCP/IP task affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY", + "name": "LWIP_TCPIP_TASK_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT && LWIP_IPV6", + "help": "Enable IPV6 support in PPP for the local link between the DTE (processor) and DCE (modem).\nThere are some modems which do not support the IPV6 addressing in the local link.\nIf they are requested for IPV6CP negotiation, they may time out.\nThis would in turn fail the configuration for the whole link.\nIf your modem is not responding correctly to PPP Phase Network, try to disable IPV6 support.", + "id": "LWIP_PPP_ENABLE_IPV6", + "name": "LWIP_PPP_ENABLE_IPV6", + "range": null, + "title": "Enable IPV6 support for PPP connections (IPV6CP)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable PPP stack. Now only PPP over serial is possible.", + "id": "LWIP_PPP_SUPPORT", + "is_menuconfig": true, + "name": "LWIP_PPP_SUPPORT", + "range": null, + "title": "Enable PPP support", + "type": "menu" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Config max number of IPv6 packets to queue during MAC resolution.", + "id": "LWIP_IPV6_MEMP_NUM_ND6_QUEUE", + "name": "LWIP_IPV6_MEMP_NUM_ND6_QUEUE", + "range": [ + 3, + 20 + ], + "title": "Max number of IPv6 packets to queue during MAC resolution", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Config max number of entries in IPv6 neighbor cache", + "id": "LWIP_IPV6_ND6_NUM_NEIGHBORS", + "name": "LWIP_IPV6_ND6_NUM_NEIGHBORS", + "range": [ + 3, + 10 + ], + "title": "Max number of entries in IPv6 neighbor cache", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable to set a callback which is called on change of the internal PPP state machine.", + "id": "LWIP_PPP_NOTIFY_PHASE_SUPPORT", + "name": "LWIP_PPP_NOTIFY_PHASE_SUPPORT", + "range": null, + "title": "Enable Notify Phase Callback", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Password Authentication Protocol (PAP) support", + "id": "LWIP_PPP_PAP_SUPPORT", + "name": "LWIP_PPP_PAP_SUPPORT", + "range": null, + "title": "Enable PAP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Challenge Handshake Authentication Protocol (CHAP) support", + "id": "LWIP_PPP_CHAP_SUPPORT", + "name": "LWIP_PPP_CHAP_SUPPORT", + "range": null, + "title": "Enable CHAP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Microsoft version of the Challenge-Handshake Authentication Protocol (MSCHAP) support", + "id": "LWIP_PPP_MSCHAP_SUPPORT", + "name": "LWIP_PPP_MSCHAP_SUPPORT", + "range": null, + "title": "Enable MSCHAP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Microsoft Point-to-Point Encryption (MPPE) support", + "id": "LWIP_PPP_MPPE_SUPPORT", + "name": "LWIP_PPP_MPPE_SUPPORT", + "range": null, + "title": "Enable MPPE support", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_ENABLE_LCP_ECHO", + "help": "Interval in seconds between keepalive LCP echo requests, 0 to disable.", + "id": "LWIP_LCP_ECHOINTERVAL", + "name": "LWIP_LCP_ECHOINTERVAL", + "range": null, + "title": "Echo interval (s)", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_ENABLE_LCP_ECHO", + "help": "Number of consecutive unanswered echo requests before failure is indicated.", + "id": "LWIP_LCP_MAXECHOFAILS", + "name": "LWIP_LCP_MAXECHOFAILS", + "range": null, + "title": "Maximum echo failures", + "type": "int" + } + ], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable LCP echo keepalive requests", + "id": "LWIP_ENABLE_LCP_ECHO", + "name": "LWIP_ENABLE_LCP_ECHO", + "range": null, + "title": "Enable LCP ECHO", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable PPP debug log output", + "id": "LWIP_PPP_DEBUG_ON", + "name": "LWIP_PPP_DEBUG_ON", + "range": null, + "title": "Enable PPP debug log output", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_SLIP_SUPPORT", + "help": "Enable SLIP debug log output", + "id": "LWIP_SLIP_DEBUG_ON", + "name": "LWIP_SLIP_DEBUG_ON", + "range": null, + "title": "Enable SLIP debug log output", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable SLIP stack. Now only SLIP over serial is possible.\n\nSLIP over serial support is experimental and unsupported.", + "id": "LWIP_SLIP_SUPPORT", + "is_menuconfig": true, + "name": "LWIP_SLIP_SUPPORT", + "range": null, + "title": "Enable SLIP support (new/experimental)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ICMP module for check network stability", + "id": "LWIP_ICMP", + "name": "LWIP_ICMP", + "range": null, + "title": "ICMP: Enable ICMP", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_ICMP6 || LWIP_ICMP", + "help": null, + "id": "LWIP_MULTICAST_PING", + "name": "LWIP_MULTICAST_PING", + "range": null, + "title": "Respond to multicast pings", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_ICMP", + "help": null, + "id": "LWIP_BROADCAST_PING", + "name": "LWIP_BROADCAST_PING", + "range": null, + "title": "Respond to broadcast pings", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-icmp", + "title": "ICMP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The maximum number of simultaneously active LWIP\nRAW protocol control blocks. The practical maximum\nlimit is determined by available heap memory at runtime.", + "id": "LWIP_MAX_RAW_PCBS", + "name": "LWIP_MAX_RAW_PCBS", + "range": [ + 1, + 1024 + ], + "title": "Maximum LWIP RAW PCBs", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-lwip-lwip-raw-api", + "title": "LWIP RAW API", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Set maximum number of NTP servers used by LwIP SNTP module.\nFirst argument of sntp_setserver/sntp_setservername functions\nis limited to this value.", + "id": "LWIP_SNTP_MAX_SERVERS", + "name": "LWIP_SNTP_MAX_SERVERS", + "range": [ + 1, + 16 + ], + "title": "Maximum number of NTP servers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_DHCP_GET_NTP_SRV", + "help": "Set maximum number of NTP servers aquired via DHCP-offer.\nShould be less or equal to \"Maximum number of NTP servers\", any extra servers would be just ignored.", + "id": "LWIP_DHCP_MAX_NTP_SERVERS", + "name": "LWIP_DHCP_MAX_NTP_SERVERS", + "range": null, + "title": "Maximum number of NTP servers aquired via DHCP", + "type": "int" + } + ], + "depends_on": null, + "help": "If enabled, LWIP will add 'NTP' to Parameter-Request Option sent via DHCP-request.\nDHCP server might reply with an NTP server address in option 42.\nSNTP callback for such replies should be set accordingly (see sntp_servermode_dhcp() func.)", + "id": "LWIP_DHCP_GET_NTP_SRV", + "name": "LWIP_DHCP_GET_NTP_SRV", + "range": null, + "title": "Request NTP servers from DHCP", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option allows you to set the time update period via SNTP.\nDefault is 1 hour. Must not be below 15 seconds by specification.\n(SNTPv4 RFC 4330 enforces a minimum update time of 15 seconds).", + "id": "LWIP_SNTP_UPDATE_DELAY", + "name": "LWIP_SNTP_UPDATE_DELAY", + "range": [ + 15000, + 4294967295 + ], + "title": "Request interval to update time (ms)", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-lwip-sntp", + "title": "SNTP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Set maximum number of DNS servers.\nIf fallback DNS servers are supported,\nthe number of DNS servers needs to be greater than or equal to 3.", + "id": "LWIP_DNS_MAX_SERVERS", + "name": "LWIP_DNS_MAX_SERVERS", + "range": [ + 1, + 4 + ], + "title": "Maximum number of DNS servers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", + "help": "This option allows you to config dns fallback server address.", + "id": "LWIP_FALLBACK_DNS_SERVER_ADDRESS", + "name": "LWIP_FALLBACK_DNS_SERVER_ADDRESS", + "range": null, + "title": "DNS fallback server address", + "type": "string" + } + ], + "depends_on": "LWIP_DNS_MAX_SERVERS >= 3", + "help": "Enable this feature to support DNS fallback server.", + "id": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", + "name": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", + "range": null, + "title": "Enable DNS fallback server support", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-dns", + "title": "DNS", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum number of ports a bridge can consists of.", + "id": "LWIP_BRIDGEIF_MAX_PORTS", + "name": "LWIP_BRIDGEIF_MAX_PORTS", + "range": [ + 1, + 63 + ], + "title": "Maximum number of bridge ports", + "type": "int" + }, + { + "children": [], + "depends_on": "!COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "help": "Enable this option keeps LWIP assertion checks enabled.\nIt is recommended to keep this option enabled.\n\nIf asserts are disabled for the entire project, they are also disabled\nfor LWIP and this option is ignored.", + "id": "LWIP_ESP_LWIP_ASSERT", + "name": "LWIP_ESP_LWIP_ASSERT", + "range": null, + "title": "Enable LWIP ASSERT checks", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_TCP_ISN_NONE", + "name": "LWIP_HOOK_TCP_ISN_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_TCP_ISN_DEFAULT", + "name": "LWIP_HOOK_TCP_ISN_DEFAULT", + "range": null, + "title": "Default implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_TCP_ISN_CUSTOM", + "name": "LWIP_HOOK_TCP_ISN_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables to define a TCP ISN hook to randomize initial sequence\nnumber in TCP connection.\nThe default TCP ISN algorithm used in IDF (standardized in RFC 6528)\nproduces ISN by combining an MD5 of the new TCP id and a stable\nsecret with the current time.\nThis is because the lwIP implementation (`tcp_next_iss`) is not\nvery strong, as it does not take into consideration any platform\nspecific entropy source.\n\nSet to LWIP_HOOK_TCP_ISN_CUSTOM to provide custom implementation.\nSet to LWIP_HOOK_TCP_ISN_NONE to use lwIP implementation.", + "id": "component-config-lwip-hooks-tcp-isn-hook", + "name": "LWIP_HOOK_TCP_ISN", + "title": "TCP ISN Hook", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_ROUTE_NONE", + "name": "LWIP_HOOK_IP6_ROUTE_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_ROUTE_DEFAULT", + "name": "LWIP_HOOK_IP6_ROUTE_DEFAULT", + "range": null, + "title": "Default (weak) implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_ROUTE_CUSTOM", + "name": "LWIP_HOOK_IP6_ROUTE_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV6", + "help": "Enables custom IPv6 route hook.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", + "id": "component-config-lwip-hooks-ipv6-route-hook", + "name": "LWIP_HOOK_IP6_ROUTE", + "title": "IPv6 route Hook", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_ND6_GET_GW_NONE", + "name": "LWIP_HOOK_ND6_GET_GW_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_ND6_GET_GW_DEFAULT", + "name": "LWIP_HOOK_ND6_GET_GW_DEFAULT", + "range": null, + "title": "Default (weak) implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_ND6_GET_GW_CUSTOM", + "name": "LWIP_HOOK_ND6_GET_GW_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV6", + "help": "Enables custom IPv6 route hook.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", + "id": "component-config-lwip-hooks-ipv6-get-gateway-hook", + "name": "LWIP_HOOK_ND6_GET_GW", + "title": "IPv6 get gateway Hook", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE", + "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT", + "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT", + "range": null, + "title": "Default (weak) implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM", + "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV6", + "help": "Enables custom IPv6 source address selection.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", + "id": "component-config-lwip-hooks-ipv6-source-address-selection-hook", + "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR", + "title": "IPv6 source address selection Hook", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE", + "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT", + "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT", + "range": null, + "title": "Default (weak) implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM", + "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables custom DNS resolve hook.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", + "id": "component-config-lwip-hooks-netconn-external-resolve-hook", + "name": "LWIP_HOOK_NETCONN_EXTERNAL_RESOLVE", + "title": "Netconn external resolve Hook", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_INPUT_NONE", + "name": "LWIP_HOOK_IP6_INPUT_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_INPUT_DEFAULT", + "name": "LWIP_HOOK_IP6_INPUT_DEFAULT", + "range": null, + "title": "Default (weak) implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_INPUT_CUSTOM", + "name": "LWIP_HOOK_IP6_INPUT_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV6", + "help": "Enables custom IPv6 packet input.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", + "id": "component-config-lwip-hooks-ipv6-packet-input", + "name": "LWIP_HOOK_IP6_INPUT", + "title": "IPv6 packet input", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-lwip-hooks", + "title": "Hooks", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": "Enabling this option routes all enabled LWIP debugs through ESP_LOGD.", + "id": "LWIP_DEBUG_ESP_LOG", + "name": "LWIP_DEBUG_ESP_LOG", + "range": null, + "title": "Route LWIP debugs through ESP_LOG interface", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_NETIF_DEBUG", + "name": "LWIP_NETIF_DEBUG", + "range": null, + "title": "Enable netif debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_PBUF_DEBUG", + "name": "LWIP_PBUF_DEBUG", + "range": null, + "title": "Enable pbuf debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_ETHARP_DEBUG", + "name": "LWIP_ETHARP_DEBUG", + "range": null, + "title": "Enable etharp debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_API_LIB_DEBUG", + "name": "LWIP_API_LIB_DEBUG", + "range": null, + "title": "Enable api lib debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_SOCKETS_DEBUG", + "name": "LWIP_SOCKETS_DEBUG", + "range": null, + "title": "Enable socket debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_IP_DEBUG", + "name": "LWIP_IP_DEBUG", + "range": null, + "title": "Enable IP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG && LWIP_ICMP", + "help": null, + "id": "LWIP_ICMP_DEBUG", + "name": "LWIP_ICMP_DEBUG", + "range": null, + "title": "Enable ICMP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_DHCP_STATE_DEBUG", + "name": "LWIP_DHCP_STATE_DEBUG", + "range": null, + "title": "Enable DHCP state tracking", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_DHCP_DEBUG", + "name": "LWIP_DHCP_DEBUG", + "range": null, + "title": "Enable DHCP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_IP6_DEBUG", + "name": "LWIP_IP6_DEBUG", + "range": null, + "title": "Enable IP6 debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_ICMP6_DEBUG", + "name": "LWIP_ICMP6_DEBUG", + "range": null, + "title": "Enable ICMP6 debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_TCP_DEBUG", + "name": "LWIP_TCP_DEBUG", + "range": null, + "title": "Enable TCP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_UDP_DEBUG", + "name": "LWIP_UDP_DEBUG", + "range": null, + "title": "Enable UDP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_SNTP_DEBUG", + "name": "LWIP_SNTP_DEBUG", + "range": null, + "title": "Enable SNTP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_DNS_DEBUG", + "name": "LWIP_DNS_DEBUG", + "range": null, + "title": "Enable DNS debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG && LWIP_IPV4_NAPT", + "help": null, + "id": "LWIP_NAPT_DEBUG", + "name": "LWIP_NAPT_DEBUG", + "range": null, + "title": "Enable NAPT debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_BRIDGEIF_DEBUG", + "name": "LWIP_BRIDGEIF_DEBUG", + "range": null, + "title": "Enable bridge generic debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_BRIDGEIF_FDB_DEBUG", + "name": "LWIP_BRIDGEIF_FDB_DEBUG", + "range": null, + "title": "Enable bridge FDB debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_BRIDGEIF_FW_DEBUG", + "name": "LWIP_BRIDGEIF_FW_DEBUG", + "range": null, + "title": "Enable bridge forwarding debug messages", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enabling this option allows different kinds of lwIP debug output.\n\nAll lwIP debug features increase the size of the final binary.", + "id": "LWIP_DEBUG", + "is_menuconfig": true, + "name": "LWIP_DEBUG", + "range": null, + "title": "Enable LWIP Debug", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-lwip", + "title": "LWIP", + "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 && !MBEDTLS_DYNAMIC_BUFFER", + "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_X509_CRL_PARSE_C", + "help": "Enable PKCS #7 core for using PKCS #7-formatted signatures.", + "id": "MBEDTLS_PKCS7_C", + "name": "MBEDTLS_PKCS7_C", + "range": null, + "title": "Enable PKCS #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", + "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": null, + "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" + }, + { + "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", + "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" + } + ], + "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": [], + "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": null, + "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": "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 (integrated with ESP32-WROOM-32SE)", + "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 (integrated with ESP32-WROOM-32SE)", + "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 timekeeeping\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": "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": [ + { + "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-RSA-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-ECDHE-RSA-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-ECDHE-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", + "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": [], + "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.\nDisabling this configuration option saves flash footprint (about 29KB if all Elliptic Curve selected)\nin 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 && IDF_EXPERIMENTAL_FEATURES", + "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 is v2.16.12.\nWe have done the security analysis of the mbedtls revision in ROM (v2.16.12)\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 (v2.16.12) 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" + } + ], + "depends_on": null, + "id": "component-config-mbedtls", + "title": "mbedTLS", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If not, this library will use MQTT protocol 3.1", + "id": "MQTT_PROTOCOL_311", + "name": "MQTT_PROTOCOL_311", + "range": null, + "title": "Enable MQTT protocol 3.1.1", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If not, this library will not support MQTT 5.0", + "id": "MQTT_PROTOCOL_5", + "name": "MQTT_PROTOCOL_5", + "range": null, + "title": "Enable MQTT protocol 5.0", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable MQTT transport over SSL with mbedtls", + "id": "MQTT_TRANSPORT_SSL", + "name": "MQTT_TRANSPORT_SSL", + "range": null, + "title": "Enable MQTT over SSL", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MQTT_TRANSPORT_WEBSOCKET && MQTT_TRANSPORT_SSL", + "help": "Enable MQTT transport over Websocket Secure.", + "id": "MQTT_TRANSPORT_WEBSOCKET_SECURE", + "name": "MQTT_TRANSPORT_WEBSOCKET_SECURE", + "range": null, + "title": "Enable MQTT over Websocket Secure", + "type": "bool" + } + ], + "depends_on": "WS_TRANSPORT", + "help": "Enable MQTT transport over Websocket.", + "id": "MQTT_TRANSPORT_WEBSOCKET", + "name": "MQTT_TRANSPORT_WEBSOCKET", + "range": null, + "title": "Enable MQTT over Websocket", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set this to true for the message id (2.3.1 Packet Identifier) to be generated\nas an incremental number rather then a random value (used by default)", + "id": "MQTT_MSG_ID_INCREMENTAL", + "name": "MQTT_MSG_ID_INCREMENTAL", + "range": null, + "title": "Use Incremental Message Id", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set this to true to avoid publishing (enqueueing messages) if the client is disconnected.\nThe MQTT client tries to publish all messages by default, even in the disconnected state\n(where the qos1 and qos2 packets are stored in the internal outbox to be published later)\nThe MQTT_SKIP_PUBLISH_IF_DISCONNECTED option allows applications to override this behaviour\nand not enqueue publish packets in the disconnected state.", + "id": "MQTT_SKIP_PUBLISH_IF_DISCONNECTED", + "name": "MQTT_SKIP_PUBLISH_IF_DISCONNECTED", + "range": null, + "title": "Skip publish if disconnected", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set this to true to post events for all messages which were deleted from the outbox\nbefore being correctly sent and confirmed.", + "id": "MQTT_REPORT_DELETED_MESSAGES", + "name": "MQTT_REPORT_DELETED_MESSAGES", + "range": null, + "title": "Report deleted messages", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Default MQTT over TCP port", + "id": "MQTT_TCP_DEFAULT_PORT", + "name": "MQTT_TCP_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over TCP port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_SSL", + "help": "Default MQTT over SSL port", + "id": "MQTT_SSL_DEFAULT_PORT", + "name": "MQTT_SSL_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over SSL port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_WEBSOCKET", + "help": "Default MQTT over Websocket port", + "id": "MQTT_WS_DEFAULT_PORT", + "name": "MQTT_WS_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over Websocket port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_WEBSOCKET && MQTT_TRANSPORT_WEBSOCKET_SECURE", + "help": "Default MQTT over Websocket Secure port", + "id": "MQTT_WSS_DEFAULT_PORT", + "name": "MQTT_WSS_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over Websocket Secure port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "This buffer size using for both transmit and receive", + "id": "MQTT_BUFFER_SIZE", + "name": "MQTT_BUFFER_SIZE", + "range": null, + "title": "Default MQTT Buffer Size", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "MQTT task stack size", + "id": "MQTT_TASK_STACK_SIZE", + "name": "MQTT_TASK_STACK_SIZE", + "range": null, + "title": "MQTT task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Default config employs API locks to protect internal structures. It is possible to disable\nthese locks if the user code doesn't access MQTT API from multiple concurrent tasks", + "id": "MQTT_DISABLE_API_LOCKS", + "name": "MQTT_DISABLE_API_LOCKS", + "range": null, + "title": "Disable API locks", + "type": "bool" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "MQTT task priority. Higher number denotes higher priority.", + "id": "MQTT_TASK_PRIORITY", + "name": "MQTT_TASK_PRIORITY", + "range": null, + "title": "MQTT task priority", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Timeout when polling underlying transport for read.", + "id": "MQTT_POLL_READ_TIMEOUT_MS", + "name": "MQTT_POLL_READ_TIMEOUT_MS", + "range": null, + "title": "MQTT transport poll read timeut", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "A value higher than 1 enables multiple queued events.", + "id": "MQTT_EVENT_QUEUE_SIZE", + "name": "MQTT_EVENT_QUEUE_SIZE", + "range": null, + "title": "Number of queued events.", + "type": "int" + } + ], + "depends_on": null, + "help": "Custom MQTT configurations.", + "id": "MQTT_USE_CUSTOM_CONFIG", + "name": "MQTT_USE_CUSTOM_CONFIG", + "range": null, + "title": "MQTT Using custom configurations", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MQTT_USE_CORE_0", + "name": "MQTT_USE_CORE_0", + "range": null, + "title": "Core 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MQTT_USE_CORE_1", + "name": "MQTT_USE_CORE_1", + "range": null, + "title": "Core 1", + "type": "bool" + } + ], + "depends_on": "MQTT_TASK_CORE_SELECTION_ENABLED", + "help": null, + "id": "component-config-esp-mqtt-configurations-enable-mqtt-task-core-selection-core-to-use-", + "name": "MQTT_TASK_CORE_SELECTION", + "title": "Core to use ?", + "type": "choice" + } + ], + "depends_on": null, + "help": "This will enable core selection", + "id": "MQTT_TASK_CORE_SELECTION_ENABLED", + "name": "MQTT_TASK_CORE_SELECTION_ENABLED", + "range": null, + "title": "Enable MQTT task core selection", + "type": "bool" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Set to true to use external memory for outbox data.", + "id": "MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY", + "name": "MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY", + "range": null, + "title": "Use external memory for outbox data", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set to true if a specific implementation of message outbox is needed (e.g. persistent outbox in NVM or\nsimilar).\nNote: Implementation of the custom outbox must be added to the mqtt component. These CMake commands\ncould be used to append the custom implementation to lib-mqtt sources:\nidf_component_get_property(mqtt mqtt COMPONENT_LIB)\nset_property(TARGET ${mqtt} PROPERTY SOURCES ${PROJECT_DIR}/custom_outbox.c APPEND)", + "id": "MQTT_CUSTOM_OUTBOX", + "name": "MQTT_CUSTOM_OUTBOX", + "range": null, + "title": "Enable custom outbox implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Messages which stays in the outbox longer than this value before being published will be discarded.", + "id": "MQTT_OUTBOX_EXPIRED_TIMEOUT_MS", + "name": "MQTT_OUTBOX_EXPIRED_TIMEOUT_MS", + "range": null, + "title": "Outbox message expired timeout[ms]", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-esp-mqtt-configurations", + "title": "ESP-MQTT Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_CRLF", + "name": "NEWLIB_STDOUT_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_LF", + "name": "NEWLIB_STDOUT_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_CR", + "name": "NEWLIB_STDOUT_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option allows configuring the desired line endings sent to UART\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 occurence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-newlib-line-ending-for-uart-output", + "name": "NEWLIB_STDOUT_LINE_ENDING", + "title": "Line ending for UART output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_CRLF", + "name": "NEWLIB_STDIN_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_LF", + "name": "NEWLIB_STDIN_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_CR", + "name": "NEWLIB_STDIN_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option allows configuring which input sequence on UART 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 occurence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-newlib-line-ending-for-uart-input", + "name": "NEWLIB_STDIN_LINE_ENDING", + "title": "Line ending for UART input", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "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/newlib/README\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": "NEWLIB_NANO_FORMAT", + "name": "NEWLIB_NANO_FORMAT", + "range": null, + "title": "Enable 'nano' formatting options for printf/scanf family", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", + "name": "NEWLIB_TIME_SYSCALL_USE_RTC_HRT", + "range": null, + "title": "RTC and high-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_RTC", + "name": "NEWLIB_TIME_SYSCALL_USE_RTC", + "range": null, + "title": "RTC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_HRT", + "name": "NEWLIB_TIME_SYSCALL_USE_HRT", + "range": null, + "title": "High-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_TIME_SYSCALL_USE_NONE", + "name": "NEWLIB_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.\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-newlib-timers-used-for-gettimeofday-function", + "name": "NEWLIB_TIME_SYSCALL", + "title": "Timers used for gettimeofday function", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-newlib", + "title": "Newlib", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED || SOC_HMAC_SUPPORTED", + "help": "This option enables encryption for NVS. When enabled, XTS-AES is used to encrypt\nthe complete NVS data, except the page headers. It requires XTS encryption keys\nto be stored in an encrypted partition (enabling flash encryption is mandatory here)\nor to be derived from an HMAC key burnt in eFuse.", + "id": "NVS_ENCRYPTION", + "name": "NVS_ENCRYPTION", + "range": null, + "title": "Enable NVS encryption", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "Enabling this will ignore \"encrypted\" flag for NVS partitions. NVS encryption\nscheme is different than hardware flash encryption and hence it is not recommended\nto have \"encrypted\" flag for NVS partitions. This was not being checked in pre v4.3\nIDF. Hence, if you have any devices where this flag is kept enabled in partition\ntable then enabling this config will allow to have same behavior as pre v4.3 IDF.", + "id": "NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG", + "name": "NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG", + "range": null, + "title": "NVS partition encrypted flag compatible with ESP-IDF before v4.3", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option switches error checking type between assertions (y) or return codes (n).", + "id": "NVS_ASSERT_ERROR_CHECK", + "name": "NVS_ASSERT_ERROR_CHECK", + "range": null, + "title": "Use assertions for error checking", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option will switch the nvs_set() family of functions to the legacy mode:\nwhen called repeatedly with the same key but different data type, the existing value\nin the NVS remains active and the new value is just stored, actually not accessible through\ncorresponding nvs_get() call for the key given. Use this option only when your application\nrelies on such NVS API behaviour.", + "id": "NVS_LEGACY_DUP_KEYS_COMPATIBILITY", + "name": "NVS_LEGACY_DUP_KEYS_COMPATIBILITY", + "range": null, + "title": "Enable legacy nvs_set function behavior when same key is reused with different data types", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-nvs", + "title": "NVS", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED && ", + "help": "Protect the NVS Encryption Keys using Flash Encryption\nRequires a separate 'nvs_keys' partition (which will be encrypted by flash encryption)\nfor storing the NVS encryption keys", + "id": "NVS_SEC_KEY_PROTECT_USING_FLASH_ENC", + "name": "NVS_SEC_KEY_PROTECT_USING_FLASH_ENC", + "range": null, + "title": "Using Flash Encryption", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_HMAC_SUPPORTED && ", + "help": "Derive and protect the NVS Encryption Keys using the HMAC peripheral\nRequires the specified eFuse block (NVS_SEC_HMAC_EFUSE_KEY_ID or the v2 API argument)\nto be empty or pre-written with a key with the purpose ESP_EFUSE_KEY_PURPOSE_HMAC_UP", + "id": "NVS_SEC_KEY_PROTECT_USING_HMAC", + "name": "NVS_SEC_KEY_PROTECT_USING_HMAC", + "range": null, + "title": "Using HMAC peripheral", + "type": "bool" + } + ], + "depends_on": "NVS_ENCRYPTION", + "help": "This choice defines the default NVS encryption keys protection scheme;\nwhich will be used for the default NVS partition.\nUsers can use the corresponding scheme registration APIs to register other\nschemes for the default as well as other NVS partitions.", + "id": "component-config-nvs-security-provider-nvs-encryption-key-protection-scheme", + "name": "NVS_SEC_KEY_PROTECTION_SCHEME", + "title": "NVS Encryption: Key Protection Scheme", + "type": "choice" + }, + { + "children": [], + "depends_on": "NVS_SEC_KEY_PROTECT_USING_HMAC", + "help": "eFuse block key ID storing the HMAC key for deriving the NVS encryption keys\n\nNote: The eFuse block key ID required by the HMAC scheme\n(CONFIG_NVS_SEC_KEY_PROTECT_USING_HMAC) is set using this config when the default\nNVS partition is initialized with nvs_flash_init(). The eFuse block key ID can\nalso be set at runtime by passing the appropriate value to the NVS security scheme\nregistration APIs.", + "id": "NVS_SEC_HMAC_EFUSE_KEY_ID", + "name": "NVS_SEC_HMAC_EFUSE_KEY_ID", + "range": null, + "title": "eFuse key ID storing the HMAC key", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-nvs-security-provider", + "title": "NVS Security Provider", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable dynamic log level control for OpenThread", + "id": "OPENTHREAD_LOG_LEVEL_DYNAMIC", + "name": "OPENTHREAD_LOG_LEVEL_DYNAMIC", + "range": null, + "title": "Enable dynamic log level control", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "(ESP_CONSOLE_UART_DEFAULT || ESP_CONSOLE_UART_CUSTOM) && ", + "help": null, + "id": "OPENTHREAD_CONSOLE_TYPE_UART", + "name": "OPENTHREAD_CONSOLE_TYPE_UART", + "range": null, + "title": "OpenThread console type UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "(ESP_CONSOLE_USB_SERIAL_JTAG || ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG) && ", + "help": null, + "id": "OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG", + "name": "OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG", + "range": null, + "title": "OpenThread console type USB Serial/JTAG Controller", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select OpenThread console type", + "id": "component-config-openthread-openthread-openthread-console-type", + "name": "OPENTHREAD_CONSOLE_TYPE", + "title": "OpenThread console type", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_NONE", + "name": "OPENTHREAD_LOG_LEVEL_NONE", + "range": null, + "title": "No logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_CRIT", + "name": "OPENTHREAD_LOG_LEVEL_CRIT", + "range": null, + "title": "Error logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_WARN", + "name": "OPENTHREAD_LOG_LEVEL_WARN", + "range": null, + "title": "Warning logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_NOTE", + "name": "OPENTHREAD_LOG_LEVEL_NOTE", + "range": null, + "title": "Notice logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_INFO", + "name": "OPENTHREAD_LOG_LEVEL_INFO", + "range": null, + "title": "Info logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_DEBG", + "name": "OPENTHREAD_LOG_LEVEL_DEBG", + "range": null, + "title": "Debug logs", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_ENABLED && !OPENTHREAD_LOG_LEVEL_DYNAMIC", + "help": "Select OpenThread log level.", + "id": "component-config-openthread-openthread-openthread-log-verbosity", + "name": "OPENTHREAD_LOG_LEVEL", + "title": "OpenThread log verbosity", + "type": "choice" + } + ], + "depends_on": null, + "help": "Select this option to enable OpenThread and show the submenu with OpenThread configuration choices.", + "id": "OPENTHREAD_ENABLED", + "name": "OPENTHREAD_ENABLED", + "range": null, + "title": "OpenThread", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "OPENTHREAD_NETWORK_NAME", + "name": "OPENTHREAD_NETWORK_NAME", + "range": null, + "title": "OpenThread network name", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "A string in the format \"
/\", where `
` is an IPv6\naddress and `` is a prefix length. For example \"fd00:db8:a0:0::/64\"", + "id": "OPENTHREAD_MESH_LOCAL_PREFIX", + "name": "OPENTHREAD_MESH_LOCAL_PREFIX", + "range": null, + "title": "OpenThread mesh local prefix, format
/", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "OPENTHREAD_NETWORK_CHANNEL", + "name": "OPENTHREAD_NETWORK_CHANNEL", + "range": [ + 11, + 26 + ], + "title": "OpenThread network channel", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "OPENTHREAD_NETWORK_PANID", + "name": "OPENTHREAD_NETWORK_PANID", + "range": [ + 0, + 65534 + ], + "title": "OpenThread network pan id", + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": "The OpenThread network extended pan id in hex string format", + "id": "OPENTHREAD_NETWORK_EXTPANID", + "name": "OPENTHREAD_NETWORK_EXTPANID", + "range": null, + "title": "OpenThread extended pan id", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "The OpenThread network network key in hex string format", + "id": "OPENTHREAD_NETWORK_MASTERKEY", + "name": "OPENTHREAD_NETWORK_MASTERKEY", + "range": null, + "title": "OpenThread network key", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "The OpenThread pre-shared commissioner key in hex string format", + "id": "OPENTHREAD_NETWORK_PSKC", + "name": "OPENTHREAD_NETWORK_PSKC", + "range": null, + "title": "OpenThread pre-shared commissioner key", + "type": "string" + } + ], + "depends_on": null, + "id": "component-config-openthread-thread-operational-dataset", + "title": "Thread Operational Dataset", + "type": "menu" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED && !OPENTHREAD_LOG_LEVEL_DYNAMIC", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL", + "name": "OPENTHREAD_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Select this to use the native 15.4 radio.", + "id": "OPENTHREAD_RADIO_NATIVE", + "name": "OPENTHREAD_RADIO_NATIVE", + "range": null, + "title": "Native 15.4 radio", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this to connect to a Radio Co-Processor via UART.", + "id": "OPENTHREAD_RADIO_SPINEL_UART", + "name": "OPENTHREAD_RADIO_SPINEL_UART", + "range": null, + "title": "Connect via UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this to connect to a Radio Co-Processor via SPI.", + "id": "OPENTHREAD_RADIO_SPINEL_SPI", + "name": "OPENTHREAD_RADIO_SPINEL_SPI", + "range": null, + "title": "Connect via SPI", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Configure how OpenThread connects to the 15.4 radio", + "id": "component-config-openthread-config-the-thread-radio-type", + "name": "OPENTHREAD_RADIO_TYPE", + "title": "Config the Thread radio type", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Select this to enable Full Thread Device which can act as router and leader in a Thread network.", + "id": "OPENTHREAD_FTD", + "name": "OPENTHREAD_FTD", + "range": null, + "title": "Full Thread Device", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this to enable Minimal Thread Device which can only act as end device in a Thread network.\nThis will reduce the code size of the OpenThread stack.", + "id": "OPENTHREAD_MTD", + "name": "OPENTHREAD_MTD", + "range": null, + "title": "Minimal Thread Device", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this to enable Radio Only Device which can only forward 15.4 packets to the host.\nThe OpenThread stack will be run on the host and OpenThread will have minimal footprint on the\nradio only device.", + "id": "OPENTHREAD_RADIO", + "name": "OPENTHREAD_RADIO", + "range": null, + "title": "Radio Only Device", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "OpenThread can be configured to different device types (FTD, MTD, Radio)", + "id": "component-config-openthread-config-the-thread-device-type", + "name": "OPENTHREAD_DEVICE_TYPE", + "title": "Config the Thread device type", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Select this to enable UART connection to host.", + "id": "OPENTHREAD_RCP_UART", + "name": "OPENTHREAD_RCP_UART", + "range": null, + "title": "UART RCP", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this to enable SPI connection to host.", + "id": "OPENTHREAD_RCP_SPI", + "name": "OPENTHREAD_RCP_SPI", + "range": null, + "title": "SPI RCP", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_RADIO", + "help": null, + "id": "component-config-openthread-the-rcp-transport-type", + "name": "OPENTHREAD_RCP_TRANSPORT", + "title": "The RCP transport type", + "type": "choice" + }, + { + "children": [], + "depends_on": "OPENTHREAD_RADIO", + "help": "Select this to enable OpenThread NCP vendor commands.", + "id": "OPENTHREAD_NCP_VENDOR_HOOK", + "name": "OPENTHREAD_NCP_VENDOR_HOOK", + "range": null, + "title": "Enable vendor command for RCP", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable Command-Line Interface in OpenThread.", + "id": "OPENTHREAD_CLI", + "name": "OPENTHREAD_CLI", + "range": null, + "title": "Enable Openthread Command-Line Interface", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable Diag in OpenThread. This will enable diag mode and a series of diag commands\nin the OpenThread command line. These commands allow users to manipulate low-level features of the storage\nand 15.4 radio.", + "id": "OPENTHREAD_DIAG", + "name": "OPENTHREAD_DIAG", + "range": null, + "title": "Enable diag", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_COMMISSIONER", + "help": null, + "id": "OPENTHREAD_COMM_MAX_JOINER_ENTRIES", + "name": "OPENTHREAD_COMM_MAX_JOINER_ENTRIES", + "range": null, + "title": "The size of max commissioning joiner entries", + "type": "int" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable commissioner in OpenThread. This will enable the device to act as a\ncommissioner in the Thread network. A commissioner checks the pre-shared key from a joining device with\nthe Thread commissioning protocol and shares the network parameter with the joining device upon success.", + "id": "OPENTHREAD_COMMISSIONER", + "name": "OPENTHREAD_COMMISSIONER", + "range": null, + "title": "Enable Commissioner", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable Joiner in OpenThread. This allows a device to join the Thread network with a\npre-shared key using the Thread commissioning protocol.", + "id": "OPENTHREAD_JOINER", + "name": "OPENTHREAD_JOINER", + "range": null, + "title": "Enable Joiner", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_SRP_CLIENT", + "help": "Set the max buffer size of service entries in the SRP client service pool.", + "id": "OPENTHREAD_SRP_CLIENT_MAX_SERVICES", + "name": "OPENTHREAD_SRP_CLIENT_MAX_SERVICES", + "range": null, + "title": "Specifies number of service entries in the SRP client service pool", + "type": "int" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable SRP Client in OpenThread. This allows a device to register SRP services to SRP\nServer.", + "id": "OPENTHREAD_SRP_CLIENT", + "name": "OPENTHREAD_SRP_CLIENT", + "range": null, + "title": "Enable SRP Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable DNS Client in OpenThread.", + "id": "OPENTHREAD_DNS_CLIENT", + "name": "OPENTHREAD_DNS_CLIENT", + "range": null, + "title": "Enable DNS Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable border router features in OpenThread.", + "id": "OPENTHREAD_BORDER_ROUTER", + "name": "OPENTHREAD_BORDER_ROUTER", + "range": null, + "title": "Enable Border Router", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED && (SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC)", + "help": "If enabled, the message pool is managed by platform defined logic.", + "id": "OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT", + "name": "OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT", + "range": null, + "title": "Allocate message pool buffer from PSRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_NUM_MESSAGE_BUFFERS", + "name": "OPENTHREAD_NUM_MESSAGE_BUFFERS", + "range": null, + "title": "The number of openthread message buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED || OPENTHREAD_SPINEL_ONLY", + "help": null, + "id": "OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE", + "name": "OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE", + "range": null, + "title": "The size of openthread spinel rx frame buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED || OPENTHREAD_SPINEL_ONLY", + "help": "The maximum number of backoffs the CSMA-CA algorithm will attempt before declaring a channel access\nfailure.", + "id": "OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT", + "name": "OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT", + "range": null, + "title": "Maximum backoffs times before declaring a channel access failure.", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_MLE_MAX_CHILDREN", + "name": "OPENTHREAD_MLE_MAX_CHILDREN", + "range": null, + "title": "The size of max MLE children entries", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_TMF_ADDR_CACHE_ENTRIES", + "name": "OPENTHREAD_TMF_ADDR_CACHE_ENTRIES", + "range": null, + "title": "The size of max TMF address cache entries", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_DNS64_CLIENT", + "help": "Set the DNS server IPv4 address.", + "id": "OPENTHREAD_DNS_SERVER_ADDR", + "name": "OPENTHREAD_DNS_SERVER_ADDR", + "range": null, + "title": "DNS server address (IPv4)", + "type": "string" + } + ], + "depends_on": "OPENTHREAD_ENABLED && LWIP_IPV4", + "help": "Select this option to acquire NAT64 address from dns servers.", + "id": "OPENTHREAD_DNS64_CLIENT", + "name": "OPENTHREAD_DNS64_CLIENT", + "range": null, + "title": "Use dns64 client", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Set the OpenThread UART buffer size.", + "id": "OPENTHREAD_UART_BUFFER_SIZE", + "name": "OPENTHREAD_UART_BUFFER_SIZE", + "range": null, + "title": "The uart received buffer size of openthread", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable link metrics feature", + "id": "OPENTHREAD_LINK_METRICS", + "name": "OPENTHREAD_LINK_METRICS", + "range": null, + "title": "Enable link metrics feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable mac filter feature", + "id": "OPENTHREAD_MACFILTER_ENABLE", + "name": "OPENTHREAD_MACFILTER_ENABLE", + "range": null, + "title": "Enable mac filter feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable CSL feature", + "id": "OPENTHREAD_CSL_ENABLE", + "name": "OPENTHREAD_CSL_ENABLE", + "range": null, + "title": "Enable CSL feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The device's XTAL accuracy, in ppm.", + "id": "OPENTHREAD_XTAL_ACCURACY", + "name": "OPENTHREAD_XTAL_ACCURACY", + "range": null, + "title": "The accuracy of the XTAL", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_CSL_ENABLE", + "help": "The current accuracy of the clock used for scheduling CSL operations", + "id": "OPENTHREAD_CSL_ACCURACY", + "name": "OPENTHREAD_CSL_ACCURACY", + "range": null, + "title": "The current CSL rx/tx scheduling drift, in units of \u00b1 ppm", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_CSL_ENABLE", + "help": "The fixed uncertainty of the Device for scheduling CSL Transmissions in units of 10 microseconds.", + "id": "OPENTHREAD_CSL_UNCERTAIN", + "name": "OPENTHREAD_CSL_UNCERTAIN", + "range": null, + "title": "The CSL Uncertainty in units of 10 us.", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_CSL_ENABLE", + "help": "Select this option to set rx on when sleep in CSL feature, only for debug", + "id": "OPENTHREAD_CSL_DEBUG_ENABLE", + "name": "OPENTHREAD_CSL_DEBUG_ENABLE", + "range": null, + "title": "Enable CSL debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Only used for Thread1.2 certification", + "id": "OPENTHREAD_DUA_ENABLE", + "name": "OPENTHREAD_DUA_ENABLE", + "range": null, + "title": "Enable Domain Unicast Address feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable time synchronization feature, the devices in the same Thread network could\nsync to the same network time.", + "id": "OPENTHREAD_TIME_SYNC", + "name": "OPENTHREAD_TIME_SYNC", + "range": null, + "title": "Enable the time synchronization service feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_FTD || OPENTHREAD_MTD", + "help": "Select this option to enable the radio statistics feature, you can use radio command to print some radio\nStatistics information.", + "id": "OPENTHREAD_RADIO_STATS_ENABLE", + "name": "OPENTHREAD_RADIO_STATS_ENABLE", + "range": null, + "title": "Enable Radio Statistics feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable the OpenThread Radio Spinel for external protocol stack, such as Zigbee.", + "id": "OPENTHREAD_SPINEL_ONLY", + "name": "OPENTHREAD_SPINEL_ONLY", + "range": null, + "title": "Enable OpenThread External Radio Spinel feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable OpenThread radio capability rx on when idle. Do not support this feature when\nSW coexistence is enabled.", + "id": "OPENTHREAD_RX_ON_WHEN_IDLE", + "name": "OPENTHREAD_RX_ON_WHEN_IDLE", + "range": null, + "title": "Enable OpenThread radio capability rx on when idle", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_FTD || OPENTHREAD_MTD", + "help": null, + "id": "OPENTHREAD_ADDRESS_QUERY_TIMEOUT", + "name": "OPENTHREAD_ADDRESS_QUERY_TIMEOUT", + "range": null, + "title": "Timeout value (in seconds) for a address notification response after sending an address query.", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_FTD || OPENTHREAD_MTD", + "help": null, + "id": "OPENTHREAD_ADDRESS_QUERY_RETRY_DELAY", + "name": "OPENTHREAD_ADDRESS_QUERY_RETRY_DELAY", + "range": null, + "title": "Initial retry delay for address query (in seconds).", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_FTD || OPENTHREAD_MTD", + "help": null, + "id": "OPENTHREAD_ADDRESS_QUERY_MAX_RETRY_DELAY", + "name": "OPENTHREAD_ADDRESS_QUERY_MAX_RETRY_DELAY", + "range": null, + "title": "Maximum retry delay for address query (in seconds).", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-openthread-thread-address-query-config", + "title": "Thread Address Query Config", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-openthread", + "title": "OpenThread", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable support of security version 0.\nDisabling this option saves some code size.\nConsult the Enabling protocomm security version section of the\nProtocomm documentation in ESP-IDF Programming guide for more details.", + "id": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0", + "name": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0", + "range": null, + "title": "Support protocomm security version 0 (no security)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support of security version 1.\nDisabling this option saves some code size.\nConsult the Enabling protocomm security version section of the\nProtocomm documentation in ESP-IDF Programming guide for more details.", + "id": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1", + "name": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1", + "range": null, + "title": "Support protocomm security version 1 (Curve25519 key exchange + AES-CTR encryption/decryption)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support of security version 2.\nDisabling this option saves some code size.\nConsult the Enabling protocomm security version section of the\nProtocomm documentation in ESP-IDF Programming guide for more details.", + "id": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2", + "name": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2", + "range": null, + "title": "Support protocomm security version 2 (SRP6a-based key exchange + AES-GCM encryption/decryption)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_ENABLED", + "help": "Keep BT on after calling protocomm_ble_stop", + "id": "ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP", + "name": "ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP", + "help": "Terminate connection after calling protocomm_ble_stop", + "id": "ESP_PROTOCOMM_DISCONNECT_AFTER_BLE_STOP", + "name": "ESP_PROTOCOMM_DISCONNECT_AFTER_BLE_STOP", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-protocomm", + "title": "Protocomm", + "type": "menu" + }, + { + "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": 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 && !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 versionn, 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": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config. Invisible for users.", + "id": "SPI_FLASH_SUSPEND_QVL_SUPPORTED", + "name": "SPI_FLASH_SUSPEND_QVL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_SUSPEND_QVL_SUPPORTED && !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" + } + ], + "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.", + "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 && !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 documenation\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_SUPPORTED", + "name": "SPI_FLASH_VENDOR_XMC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_GD_SUPPORTED", + "name": "SPI_FLASH_VENDOR_GD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_ISSI_SUPPORTED", + "name": "SPI_FLASH_VENDOR_ISSI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_MXIC_SUPPORTED", + "name": "SPI_FLASH_VENDOR_MXIC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_WINBOND_SUPPORTED", + "name": "SPI_FLASH_VENDOR_WINBOND_SUPPORTED", + "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" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Define maximum number of partitions that can be mounted.", + "id": "SPIFFS_MAX_PARTITIONS", + "name": "SPIFFS_MAX_PARTITIONS", + "range": [ + 1, + 10 + ], + "title": "Maximum Number of Partitions", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SPIFFS_CACHE", + "help": "Enables memory write caching for file descriptors in hydrogen.", + "id": "SPIFFS_CACHE_WR", + "name": "SPIFFS_CACHE_WR", + "range": null, + "title": "Enable SPIFFS Write Caching", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIFFS_CACHE", + "help": "Enable/disable statistics on caching. Debug/test purpose only.", + "id": "SPIFFS_CACHE_STATS", + "name": "SPIFFS_CACHE_STATS", + "range": null, + "title": "Enable SPIFFS Cache Statistics", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables/disable memory read caching of nucleus file system\noperations.", + "id": "SPIFFS_CACHE", + "name": "SPIFFS_CACHE", + "range": null, + "title": "Enable SPIFFS Cache", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-spiffs-configuration-spiffs-cache-configuration", + "title": "SPIFFS Cache Configuration", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Always check header of each accessed page to ensure consistent state.\nIf enabled it will increase number of reads from flash, especially\nif cache is disabled.", + "id": "SPIFFS_PAGE_CHECK", + "name": "SPIFFS_PAGE_CHECK", + "range": null, + "title": "Enable SPIFFS Page Check", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Define maximum number of GC runs to perform to reach desired free pages.", + "id": "SPIFFS_GC_MAX_RUNS", + "name": "SPIFFS_GC_MAX_RUNS", + "range": [ + 1, + 10000 + ], + "title": "Set Maximum GC Runs", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enable/disable statistics on gc. Debug/test purpose only.", + "id": "SPIFFS_GC_STATS", + "name": "SPIFFS_GC_STATS", + "range": null, + "title": "Enable SPIFFS GC Statistics", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Logical page size of SPIFFS partition, in bytes. Must be multiple\nof flash page size (which is usually 256 bytes).\nLarger page sizes reduce overhead when storing large files, and\nimprove filesystem performance when reading large files.\nSmaller page sizes reduce overhead when storing small (< page size)\nfiles.", + "id": "SPIFFS_PAGE_SIZE", + "name": "SPIFFS_PAGE_SIZE", + "range": [ + 256, + 1024 + ], + "title": "SPIFFS logical page size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Object name maximum length. Note that this length include the\nzero-termination character, meaning maximum string of characters\ncan at most be SPIFFS_OBJ_NAME_LEN - 1.\n\nSPIFFS_OBJ_NAME_LEN + SPIFFS_META_LENGTH should not exceed\nSPIFFS_PAGE_SIZE - 64.", + "id": "SPIFFS_OBJ_NAME_LEN", + "name": "SPIFFS_OBJ_NAME_LEN", + "range": [ + 1, + 256 + ], + "title": "Set SPIFFS Maximum Name Length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is enabled, symbolic links are taken into account\nduring partition image creation.", + "id": "SPIFFS_FOLLOW_SYMLINKS", + "name": "SPIFFS_FOLLOW_SYMLINKS", + "range": null, + "title": "Enable symbolic links for image creation", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIFFS_USE_MAGIC", + "help": "If this option is enabled, the magic will also be dependent\non the length of the filesystem. For example, a filesystem\nconfigured and formatted for 4 megabytes will not be accepted\nfor mounting with a configuration defining the filesystem as 2 megabytes.", + "id": "SPIFFS_USE_MAGIC_LENGTH", + "name": "SPIFFS_USE_MAGIC_LENGTH", + "range": null, + "title": "Enable SPIFFS Filesystem Length Magic", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable this to have an identifiable spiffs filesystem.\nThis will look for a magic in all sectors to determine if this\nis a valid spiffs system or not at mount time.", + "id": "SPIFFS_USE_MAGIC", + "name": "SPIFFS_USE_MAGIC", + "range": null, + "title": "Enable SPIFFS Filesystem Magic", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option sets the number of extra bytes stored in the file header.\nThese bytes can be used in an application-specific manner.\nSet this to at least 4 bytes to enable support for saving file\nmodification time.\n\nSPIFFS_OBJ_NAME_LEN + SPIFFS_META_LENGTH should not exceed\nSPIFFS_PAGE_SIZE - 64.", + "id": "SPIFFS_META_LENGTH", + "name": "SPIFFS_META_LENGTH", + "range": null, + "title": "Size of per-file metadata field", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIFFS_META_LENGTH >= 4", + "help": "If enabled, then the first 4 bytes of per-file metadata will be used\nto store file modification time (mtime), accessible through\nstat/fstat functions.\nModification time is updated when the file is opened.", + "id": "SPIFFS_USE_MTIME", + "name": "SPIFFS_USE_MTIME", + "range": null, + "title": "Save file modification time", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIFFS_META_LENGTH >= 8", + "help": "If this option is not set, the time field is 32 bits (up to 2106 year),\notherwise it is 64 bits and make sure it matches SPIFFS_META_LENGTH.\nIf the chip already has the spiffs image with the time field = 32 bits\nthen this option cannot be applied in this case.\nErase it first before using this option.\nTo resolve the Y2K38 problem for the spiffs, use a toolchain with\n64-bit time_t support.", + "id": "SPIFFS_MTIME_WIDE_64_BITS", + "name": "SPIFFS_MTIME_WIDE_64_BITS", + "range": null, + "title": "The time field occupies 64 bits in the image instead of 32 bits", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print general debug mesages to the console.", + "id": "SPIFFS_DBG", + "name": "SPIFFS_DBG", + "range": null, + "title": "Enable general SPIFFS debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print API debug mesages to the console.", + "id": "SPIFFS_API_DBG", + "name": "SPIFFS_API_DBG", + "range": null, + "title": "Enable SPIFFS API debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print GC debug mesages to the console.", + "id": "SPIFFS_GC_DBG", + "name": "SPIFFS_GC_DBG", + "range": null, + "title": "Enable SPIFFS Garbage Cleaner debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIFFS_CACHE", + "help": "Enabling this option will print cache debug mesages to the console.", + "id": "SPIFFS_CACHE_DBG", + "name": "SPIFFS_CACHE_DBG", + "range": null, + "title": "Enable SPIFFS Cache debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print Filesystem Check debug mesages\nto the console.", + "id": "SPIFFS_CHECK_DBG", + "name": "SPIFFS_CHECK_DBG", + "range": null, + "title": "Enable SPIFFS Filesystem Check debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to enable SPIFFS_vis function in the API.", + "id": "SPIFFS_TEST_VISUALISATION", + "name": "SPIFFS_TEST_VISUALISATION", + "range": null, + "title": "Enable SPIFFS Filesystem Visualization", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-spiffs-configuration-debug-configuration", + "title": "Debug Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-spiffs-configuration", + "title": "SPIFFS Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "WS_TRANSPORT", + "help": "Size of the buffer used for constructing the HTTP Upgrade request during connect", + "id": "WS_BUFFER_SIZE", + "name": "WS_BUFFER_SIZE", + "range": null, + "title": "Websocket transport buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "WS_TRANSPORT", + "help": "If enable this option, websocket transport buffer will be freed after connection\nsucceed to save more heap.", + "id": "WS_DYNAMIC_BUFFER", + "name": "WS_DYNAMIC_BUFFER", + "range": null, + "title": "Using dynamic websocket transport buffer", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable support for creating websocket transport.", + "id": "WS_TRANSPORT", + "name": "WS_TRANSPORT", + "range": null, + "title": "Enable Websocket Transport", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-tcp-transport-websocket", + "title": "Websocket", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-tcp-transport", + "title": "TCP Transport", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_ULP_FSM_SUPPORTED && ", + "help": null, + "id": "ULP_COPROC_TYPE_FSM", + "name": "ULP_COPROC_TYPE_FSM", + "range": null, + "title": "ULP FSM (Finite State Machine)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RISCV_COPROC_SUPPORTED && ", + "help": null, + "id": "ULP_COPROC_TYPE_RISCV", + "name": "ULP_COPROC_TYPE_RISCV", + "range": null, + "title": "ULP RISC-V", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_LP_CORE_SUPPORTED && ", + "help": null, + "id": "ULP_COPROC_TYPE_LP_CORE", + "name": "ULP_COPROC_TYPE_LP_CORE", + "range": null, + "title": "LP core RISC-V", + "type": "bool" + } + ], + "depends_on": "ULP_COPROC_ENABLED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Choose the ULP Coprocessor type: ULP FSM (Finite State Machine) or ULP RISC-V.", + "id": "component-config-ultra-low-power-ulp-co-processor-enable-ultra-low-power-ulp-co-processor-ulp-co-processor-type", + "name": "ULP_COPROC_TYPE", + "title": "ULP Co-processor type", + "type": "choice" + }, + { + "children": [], + "depends_on": "ULP_COPROC_ENABLED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Bytes of memory to reserve for ULP Co-processor firmware & data.\nData is reserved at the beginning of RTC slow memory.", + "id": "ULP_COPROC_RESERVE_MEM", + "name": "ULP_COPROC_RESERVE_MEM", + "range": null, + "title": "RTC slow memory reserved for coprocessor", + "type": "int" + } + ], + "depends_on": "SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED", + "help": "Enable this feature if you plan to use the ULP Co-processor.\nOnce this option is enabled, further ULP co-processor configuration will appear in the menu.", + "id": "ULP_COPROC_ENABLED", + "name": "ULP_COPROC_ENABLED", + "range": null, + "title": "Enable Ultra Low Power (ULP) Co-processor", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "The accuracy of the bitbanged UART driver is limited, it is not\nrecommend to increase the value above 19200.", + "id": "ULP_RISCV_UART_BAUDRATE", + "name": "ULP_RISCV_UART_BAUDRATE", + "range": null, + "title": "Baudrate used by the bitbanged ULP RISC-V UART driver", + "type": "int" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Set the ULP RISC-V I2C read/write timeout. Set this value to -1\nif the ULP RISC-V I2C read and write APIs should wait forever.\nPlease note that the tick rate of the ULP co-processor would be\ndifferent than the OS tick rate of the main core and therefore\ncan have different timeout value depending on which core the API\nis invoked on.", + "id": "ULP_RISCV_I2C_RW_TIMEOUT", + "name": "ULP_RISCV_I2C_RW_TIMEOUT", + "range": null, + "title": "Set timeout for ULP RISC-V I2C transaction timeout in ticks.", + "type": "int" + } + ], + "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "id": "component-config-ultra-low-power-ulp-co-processor-ulp-risc-v-settings", + "title": "ULP RISC-V Settings", + "type": "menu" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_LP_CORE && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Size of the shared memory defined in ulp_lp_core_memory_shared.c.\nSize should be kept in-sync with the size of the struct defined there.", + "id": "ULP_SHARED_MEM", + "name": "ULP_SHARED_MEM", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": "SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED", + "id": "component-config-ultra-low-power-ulp-co-processor", + "title": "Ultra Low Power (ULP) Co-processor", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If not set, assertions on float arguments will not be available.", + "id": "UNITY_ENABLE_FLOAT", + "name": "UNITY_ENABLE_FLOAT", + "range": null, + "title": "Support for float type", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If not set, assertions on double arguments will not be available.", + "id": "UNITY_ENABLE_DOUBLE", + "name": "UNITY_ENABLE_DOUBLE", + "range": null, + "title": "Support for double type", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If not set, assertions on 64-bit integer types will always fail.\nIf this feature is enabled, take care not to pass pointers (which are 32 bit)\nto UNITY_ASSERT_EQUAL, as that will cause pointer-to-int-cast warnings.", + "id": "UNITY_ENABLE_64BIT", + "name": "UNITY_ENABLE_64BIT", + "range": null, + "title": "Support for 64-bit integer types", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If set, Unity will colorize test results using console escape sequences.", + "id": "UNITY_ENABLE_COLOR", + "name": "UNITY_ENABLE_COLOR", + "range": null, + "title": "Colorize test output", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If set, then the following features will be available:\n\n- TEST_CASE macro which performs automatic registration of test functions\n- Functions to run registered test functions: unity_run_all_tests,\n unity_run_tests_with_filter, unity_run_single_test_by_name.\n- Interactive menu which lists test cases and allows choosing the tests to\n be run, available via unity_run_menu function.\n\nDisable if a different test registration mechanism is used.", + "id": "UNITY_ENABLE_IDF_TEST_RUNNER", + "name": "UNITY_ENABLE_IDF_TEST_RUNNER", + "range": null, + "title": "Include ESP-IDF test registration/running helpers", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If set, unity_fixture.h header file and associated source files are part of\nthe build. These provide an optional set of macros and functions to\nimplement test groups.", + "id": "UNITY_ENABLE_FIXTURE", + "name": "UNITY_ENABLE_FIXTURE", + "range": null, + "title": "Include Unity test fixture", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If set, the unity framework will print the backtrace information before\njumping back to the test menu. The jumping is usually occurs in assert\nfunctions such as TEST_ASSERT, TEST_FAIL etc.", + "id": "UNITY_ENABLE_BACKTRACE_ON_FAIL", + "name": "UNITY_ENABLE_BACKTRACE_ON_FAIL", + "range": null, + "title": "Print a backtrace when a unit test fails", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-unity-unit-testing-library", + "title": "Unity unit testing library", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "Each USB device attached is allocated a dedicated buffer for its OUT/IN transfers to/from the device's\ncontrol endpoint. The maximum size of that buffer is determined by this option. The limited size of the\ntransfer buffer have the following implications:\n- The maximum length of control transfers is limited\n- Device's with configuration descriptors larger than this limit cannot be supported", + "id": "USB_HOST_CONTROL_TRANSFER_MAX_SIZE", + "name": "USB_HOST_CONTROL_TRANSFER_MAX_SIZE", + "range": null, + "title": "Largest size (in bytes) of transfers to/from default endpoints", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "USB_HOST_HW_BUFFER_BIAS_BALANCED", + "name": "USB_HOST_HW_BUFFER_BIAS_BALANCED", + "range": null, + "title": "Balanced", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "USB_HOST_HW_BUFFER_BIAS_IN", + "name": "USB_HOST_HW_BUFFER_BIAS_IN", + "range": null, + "title": "Bias IN", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT", + "name": "USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT", + "range": null, + "title": "Periodic OUT", + "type": "bool" + } + ], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "The underlying hardware has size adjustable FIFOs to cache USB packets on reception (IN) or for\ntransmission (OUT). The size of these FIFOs will affect the largest MPS (maximum packet size) and the\nmaximum number of packets that can be cached at any one time. The hardware contains the following\nFIFOS: RX (for all IN packets), Non-periodic TX (for Bulk and Control OUT packets), and Periodic TX\n(for Interrupt and Isochronous OUT packets). This configuration option allows biasing the FIFO sizes\ntowards a particular use case, which may be necessary for devices that have endpoints with large MPS.\nThe MPS limits for each biasing are listed below:\n\nBalanced:\n- IN (all transfer types), 408 bytes\n- OUT non-periodic (Bulk/Control), 192 bytes (i.e., 3 x 64 byte packets)\n- OUT periodic (Interrupt/Isochronous), 192 bytes\n\nBias IN:\n- IN (all transfer types), 600 bytes\n- OUT non-periodic (Bulk/Control), 64 bytes (i.e., 1 x 64 byte packets)\n- OUT periodic (Interrupt/Isochronous), 128 bytes\n\nBias Periodic OUT:\n- IN (all transfer types), 128 bytes\n- OUT non-periodic (Bulk/Control), 64 bytes (i.e., 1 x 64 byte packets)\n- OUT periodic (Interrupt/Isochronous), 600 bytes", + "id": "component-config-usb-otg-hardware-fifo-size-biasing", + "name": "USB_HOST_HW_BUFFER_BIAS", + "title": "Hardware FIFO size biasing", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "On connection of a USB device, the USB 2.0 specification requires a \"debounce interval with a minimum\nduration of 100ms\" to allow the connection to stabilize (see USB 2.0 chapter 7.1.7.3 for more details).\nDuring the debounce interval, no new connection/disconnection events are registered.\n\nThe default value is set to 250 ms to be safe.", + "id": "USB_HOST_DEBOUNCE_DELAY_MS", + "name": "USB_HOST_DEBOUNCE_DELAY_MS", + "range": null, + "title": "Debounce delay in ms", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "The reset signaling can be generated on any Hub or Host Controller port by request from the USB System\nSoftware. The USB 2.0 specification requires that \"the reset signaling must be driven for a minimum of\n10ms\" (see USB 2.0 chapter 7.1.7.5 for more details). After the reset, the hub port will transition to\nthe Enabled state (refer to Section 11.5).\n\nThe default value is set to 30 ms to be safe.", + "id": "USB_HOST_RESET_HOLD_MS", + "name": "USB_HOST_RESET_HOLD_MS", + "range": null, + "title": "Reset hold in ms", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "After a port stops driving the reset signal, the USB 2.0 specification requires that the \"USB System\nSoftware guarantees a minimum of 10 ms for reset recovery\" before the attached device is expected to\nrespond to data transfers (see USB 2.0 chapter 7.1.7.3 for more details). The device may ignore any\ndata transfers during the recovery interval.\n\nThe default value is set to 30 ms to be safe.", + "id": "USB_HOST_RESET_RECOVERY_MS", + "name": "USB_HOST_RESET_RECOVERY_MS", + "range": null, + "title": "Reset recovery delay in ms", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "\"After successful completion of the Status stage, the device is allowed a SetAddress() recovery\ninterval of 2 ms. At the end of this interval, the device must be able to accept Setup packets\naddressed to the new address. Also, at the end of the recovery interval, the device must not respond to\ntokens sent to the old address (unless, of course, the old and new address is the same).\" See USB 2.0\nchapter 9.2.6.3 for more details.\n\nThe default value is set to 10 ms to be safe.", + "id": "USB_HOST_SET_ADDR_RECOVERY_MS", + "name": "USB_HOST_SET_ADDR_RECOVERY_MS", + "range": null, + "title": "SetAddress() recovery time in ms", + "type": "int" + } + ], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "id": "component-config-usb-otg-root-hub-configuration", + "title": "Root Hub configuration", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": null, + "id": "USB_OTG_SUPPORTED", + "name": "USB_OTG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "help": "The enumeration filter callback is called before enumeration of each newly attached device. This callback\nallows users to control whether a device should be enumerated, and what configuration number to use when\nenumerating a device.\n\nIf enabled, the enumeration filter callback can be set via 'usb_host_config_t' when calling\n'usb_host_install()'.", + "id": "USB_HOST_ENABLE_ENUM_FILTER_CALLBACK", + "name": "USB_HOST_ENABLE_ENUM_FILTER_CALLBACK", + "range": null, + "title": "Enable enumeration filter callback", + "type": "bool" + } + ], + "depends_on": "SOC_USB_OTG_SUPPORTED", + "id": "component-config-usb-otg", + "title": "USB-OTG", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "VFS_SUPPORT_IO", + "help": "If enabled, the following functions are provided by the VFS component.\n\nstat, link, unlink, rename, utime, access, truncate, rmdir, mkdir,\nopendir, closedir, readdir, readdir_r, seekdir, telldir, rewinddir\n\nFilesystem drivers can then be registered to handle these functions\nfor specific paths.\n\nDisabling this option can save memory when the support for these functions\nis not required.", + "id": "VFS_SUPPORT_DIR", + "name": "VFS_SUPPORT_DIR", + "range": null, + "title": "Provide directory related functions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "VFS_SUPPORT_SELECT", + "help": "Select() related functions might produce an unconveniently lot of\ndebug outputs when one sets the default log level to DEBUG or higher.\nIt is possible to suppress these debug outputs by enabling this\noption.", + "id": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", + "name": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", + "range": null, + "title": "Suppress select() related debug outputs", + "type": "bool" + }, + { + "children": [], + "depends_on": "VFS_SUPPORT_SELECT", + "help": "If enabled, VFS driver select() callback function will be placed in IRAM.", + "id": "VFS_SELECT_IN_RAM", + "name": "VFS_SELECT_IN_RAM", + "range": null, + "title": "Make VFS driver select() callbacks IRAM-safe", + "type": "bool" + } + ], + "depends_on": "VFS_SUPPORT_IO && !LWIP_USE_ONLY_LWIP_SELECT", + "help": "If enabled, select function is provided by the VFS component, and can be used\non peripheral file descriptors (such as UART) and sockets at the same time.\n\nIf disabled, the default select implementation will be provided by LWIP for\nsockets only.\n\nDisabling this option can reduce code size if support for \"select\" on UART file\ndescriptors is not required.", + "id": "VFS_SUPPORT_SELECT", + "name": "VFS_SUPPORT_SELECT", + "range": null, + "title": "Provide select function", + "type": "bool" + }, + { + "children": [], + "depends_on": "VFS_SUPPORT_IO", + "help": "Disabling this option can save memory when the support for termios.h is not required.", + "id": "VFS_SUPPORT_TERMIOS", + "name": "VFS_SUPPORT_TERMIOS", + "range": null, + "title": "Provide termios.h functions", + "type": "bool" + }, + { + "children": [], + "depends_on": "VFS_SUPPORT_IO", + "help": "Define maximum number of virtual filesystems that can be registered.", + "id": "VFS_MAX_COUNT", + "name": "VFS_MAX_COUNT", + "range": [ + 1, + 20 + ], + "title": "Maximum Number of Virtual Filesystems", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "VFS_SUPPORT_IO", + "help": "Define maximum number of host filesystem mount points.", + "id": "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS", + "name": "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS", + "range": null, + "title": "Host FS: Maximum number of the host filesystem mount points", + "type": "int" + } + ], + "depends_on": "VFS_SUPPORT_IO", + "id": "component-config-virtual-file-system-provide-basic-i-o-functions-host-file-system-i-o-semihosting-", + "title": "Host File System I/O (Semihosting)", + "type": "menu" + } + ], + "depends_on": null, + "help": "If enabled, the following functions are provided by the VFS component.\n\nopen, close, read, write, pread, pwrite, lseek, fstat, fsync, ioctl, fcntl\n\nFilesystem drivers can then be registered to handle these functions\nfor specific paths.\n\nDisabling this option can save memory when the support for these functions\nis not required.\n\nNote that the following functions can still be used with socket file descriptors\nwhen this option is disabled:\n\nclose, read, write, ioctl, fcntl.", + "id": "VFS_SUPPORT_IO", + "name": "VFS_SUPPORT_IO", + "range": null, + "title": "Provide basic I/O functions", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-virtual-file-system", + "title": "Virtual file system", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_SIZE_512", + "name": "WL_SECTOR_SIZE_512", + "range": null, + "title": "512", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_SIZE_4096", + "name": "WL_SECTOR_SIZE_4096", + "range": null, + "title": "4096", + "type": "bool" + } + ], + "depends_on": null, + "help": "Sector size used by wear levelling library.\nYou can set default sector size or size that will\nfit to the flash device sector size.\n\nWith sector size set to 4096 bytes, wear levelling library is more\nefficient. However if FAT filesystem is used on top of wear levelling\nlibrary, it will need more temporary storage: 4096 bytes for each\nmounted filesystem and 4096 bytes for each opened file.\n\nWith sector size set to 512 bytes, wear levelling library will perform\nmore operations with flash memory, but less RAM will be used by FAT\nfilesystem library (512 bytes for the filesystem and 512 bytes for each\nfile opened).", + "id": "component-config-wear-levelling-wear-levelling-library-sector-size", + "name": "WL_SECTOR_SIZE", + "title": "Wear Levelling library sector size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "WL_SECTOR_SIZE", + "name": "WL_SECTOR_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_MODE_PERF", + "name": "WL_SECTOR_MODE_PERF", + "range": null, + "title": "Perfomance", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_MODE_SAFE", + "name": "WL_SECTOR_MODE_SAFE", + "range": null, + "title": "Safety", + "type": "bool" + } + ], + "depends_on": "WL_SECTOR_SIZE_512", + "help": "Specify the mode to store data into flash:\n\n- In Performance mode a data will be stored to the RAM and then\n stored back to the flash. Compared to the Safety mode, this operation is\n faster, but if power will be lost when erase sector operation is in\n progress, then the data from complete flash device sector will be lost.\n\n- In Safety mode data from complete flash device sector will be read from\n flash, modified, and then stored back to flash.\n Compared to the Performance mode, this operation is slower, but if\n power is lost during erase sector operation, then the data from full\n flash device sector will not be lost.", + "id": "component-config-wear-levelling-sector-store-mode", + "name": "WL_SECTOR_MODE", + "title": "Sector store mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "WL_SECTOR_MODE", + "name": "WL_SECTOR_MODE", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-wear-levelling", + "title": "Wear Levelling", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This sets the maximum number of entries of Wi-Fi scan results that will be kept by the provisioning manager", + "id": "WIFI_PROV_SCAN_MAX_ENTRIES", + "name": "WIFI_PROV_SCAN_MAX_ENTRIES", + "range": [ + 1, + 255 + ], + "title": "Max Wi-Fi Scan Result Entries", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Time (in seconds) after which the Wi-Fi provisioning manager will auto-stop after connecting to\na Wi-Fi network successfully.", + "id": "WIFI_PROV_AUTOSTOP_TIMEOUT", + "name": "WIFI_PROV_AUTOSTOP_TIMEOUT", + "range": [ + 5, + 600 + ], + "title": "Provisioning auto-stop timeout", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_ENABLED", + "help": "This option is applicable only when provisioning transport is BLE.", + "id": "WIFI_PROV_BLE_BONDING", + "name": "WIFI_PROV_BLE_BONDING", + "range": null, + "title": "Enable BLE bonding", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Used to enable Secure connection support when provisioning transport is BLE.", + "id": "WIFI_PROV_BLE_SEC_CONN", + "name": "WIFI_PROV_BLE_SEC_CONN", + "range": null, + "title": "Enable BLE Secure connection flag", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Used to enforce link encryption when attempting to read / write characteristic", + "id": "WIFI_PROV_BLE_FORCE_ENCRYPTION", + "name": "WIFI_PROV_BLE_FORCE_ENCRYPTION", + "range": null, + "title": "Force Link Encryption during characteristic Read / Write", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV", + "help": null, + "id": "WIFI_PROV_DISCONNECT_AFTER_PROV", + "name": "WIFI_PROV_DISCONNECT_AFTER_PROV", + "range": null, + "title": "Terminate connection after provisioning is done", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED", + "help": null, + "id": "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV", + "name": "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV", + "range": null, + "title": "Keep BT on after provisioning is done", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Scan will end after scanning the entire channel. This option is useful in Mesh WiFi Systems.", + "id": "WIFI_PROV_STA_ALL_CHANNEL_SCAN", + "name": "WIFI_PROV_STA_ALL_CHANNEL_SCAN", + "range": null, + "title": "All Channel Scan", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Scan will end after an AP matching with the SSID has been detected.", + "id": "WIFI_PROV_STA_FAST_SCAN", + "name": "WIFI_PROV_STA_FAST_SCAN", + "range": null, + "title": "Fast Scan", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-wi-fi-provisioning-manager-wifi-provisioning-scan-method", + "name": "WIFI_PROV_STA_SCAN_METHOD", + "title": "Wifi Provisioning Scan Method", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-wi-fi-provisioning-manager", + "title": "Wi-Fi Provisioning Manager", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3", + "help": null, + "id": "DSP_OPTIMIZATIONS_SUPPORTED", + "name": "DSP_OPTIMIZATIONS_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "DSP_ANSI", + "name": "DSP_ANSI", + "range": null, + "title": "ANSI C", + "type": "bool" + }, + { + "children": [], + "depends_on": "DSP_OPTIMIZATIONS_SUPPORTED && ", + "help": null, + "id": "DSP_OPTIMIZED", + "name": "DSP_OPTIMIZED", + "range": null, + "title": "Optimized", + "type": "bool" + } + ], + "depends_on": null, + "help": "An ANSI C version could be used for verification and debug purpose,\nor for chips where an optimized version is not available.", + "id": "component-config-dsp-library-dsp-optimization", + "name": "DSP_OPTIMIZATION", + "title": "DSP Optimization", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "DSP_OPTIMIZATION", + "name": "DSP_OPTIMIZATION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "DSP_MAX_FFT_SIZE_512", + "name": "DSP_MAX_FFT_SIZE_512", + "range": null, + "title": "512", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "DSP_MAX_FFT_SIZE_1024", + "name": "DSP_MAX_FFT_SIZE_1024", + "range": null, + "title": "1024", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "DSP_MAX_FFT_SIZE_2048", + "name": "DSP_MAX_FFT_SIZE_2048", + "range": null, + "title": "2048", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "DSP_MAX_FFT_SIZE_4096", + "name": "DSP_MAX_FFT_SIZE_4096", + "range": null, + "title": "4096", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "DSP_MAX_FFT_SIZE_8192", + "name": "DSP_MAX_FFT_SIZE_8192", + "range": null, + "title": "8192", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "DSP_MAX_FFT_SIZE_16384", + "name": "DSP_MAX_FFT_SIZE_16384", + "range": null, + "title": "16384", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "DSP_MAX_FFT_SIZE_32768", + "name": "DSP_MAX_FFT_SIZE_32768", + "range": null, + "title": "32768", + "type": "bool" + } + ], + "depends_on": null, + "help": "This is default FFT size for internal usage.", + "id": "component-config-dsp-library-maximum-fft-length", + "name": "DSP_MAX_FFT_SIZE", + "title": "Maximum FFT length", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "DSP_MAX_FFT_SIZE", + "name": "DSP_MAX_FFT_SIZE", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-dsp-library", + "title": "DSP Library", + "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_MBEDTLS_USE_CRYPTO_ROM_IMPL", + "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/ESPIDFNEW/build/config/sdkconfig.cmake b/ESPIDFNEW/build/config/sdkconfig.cmake new file mode 100644 index 0000000..d3e5754 --- /dev/null +++ b/ESPIDFNEW/build/config/sdkconfig.cmake @@ -0,0 +1,1322 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file +# +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "Not determined") +set(CONFIG_SOC_TWAI_BRP_DIV_SUPPORTED "Not determined") +set(CONFIG_SOC_DPORT_WORKAROUND "Not determined") +set(CONFIG_SOC_CAPS_ECO_VER_MAX "301") +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_DAC_SUPPORTED "y") +set(CONFIG_SOC_UART_SUPPORTED "y") +set(CONFIG_SOC_MCPWM_SUPPORTED "y") +set(CONFIG_SOC_GPTIMER_SUPPORTED "y") +set(CONFIG_SOC_SDMMC_HOST_SUPPORTED "y") +set(CONFIG_SOC_BT_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_SDIO_SLAVE_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_EFUSE_SUPPORTED "y") +set(CONFIG_SOC_EMAC_SUPPORTED "y") +set(CONFIG_SOC_ULP_SUPPORTED "y") +set(CONFIG_SOC_CCOMP_TIMER_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_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_SUPPORT_COEXISTENCE "y") +set(CONFIG_SOC_AES_SUPPORTED "y") +set(CONFIG_SOC_MPI_SUPPORTED "y") +set(CONFIG_SOC_SHA_SUPPORTED "y") +set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") +set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_BOD_SUPPORTED "y") +set(CONFIG_SOC_ULP_FSM_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_DPORT_WORKAROUND_DIS_INTERRUPT_LVL "5") +set(CONFIG_SOC_XTAL_SUPPORT_26M "y") +set(CONFIG_SOC_XTAL_SUPPORT_40M "y") +set(CONFIG_SOC_XTAL_SUPPORT_AUTO_DETECT "y") +set(CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_CTRL_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 "16") +set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "9") +set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "2") +set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") +set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "0") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "2") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "20") +set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "9") +set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_SHARED_POWER "y") +set(CONFIG_SOC_SHARED_IDCACHE_SUPPORTED "y") +set(CONFIG_SOC_IDCACHE_PER_CORE "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 "64") +set(CONFIG_SOC_DAC_CHAN_NUM "2") +set(CONFIG_SOC_DAC_RESOLUTION "8") +set(CONFIG_SOC_DAC_DMA_16BIT_ALIGN "y") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "40") +set(CONFIG_SOC_GPIO_VALID_GPIO_MASK "0xffffffffff") +set(CONFIG_SOC_GPIO_IN_RANGE_MAX "39") +set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "33") +set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0xef0fea") +set(CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX "y") +set(CONFIG_SOC_I2C_NUM "2") +set(CONFIG_SOC_I2C_FIFO_LEN "32") +set(CONFIG_SOC_I2C_CMD_REG_NUM "16") +set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") +set(CONFIG_SOC_I2C_SUPPORT_APB "y") +set(CONFIG_SOC_I2C_STOP_INDEPENDENT "y") +set(CONFIG_SOC_I2S_NUM "2") +set(CONFIG_SOC_I2S_HW_VERSION_1 "y") +set(CONFIG_SOC_I2S_SUPPORTS_APLL "y") +set(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") +set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "1") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_RX "y") +set(CONFIG_SOC_I2S_PDM_MAX_RX_LINES "1") +set(CONFIG_SOC_I2S_SUPPORTS_ADC_DAC "y") +set(CONFIG_SOC_I2S_SUPPORTS_ADC "y") +set(CONFIG_SOC_I2S_SUPPORTS_DAC "y") +set(CONFIG_SOC_I2S_SUPPORTS_LCD_CAMERA "y") +set(CONFIG_SOC_I2S_TRANS_SIZE_ALIGN_WORD "y") +set(CONFIG_SOC_I2S_LCD_I80_VARIANT "y") +set(CONFIG_SOC_LCD_I80_SUPPORTED "y") +set(CONFIG_SOC_LCD_I80_BUSES "2") +set(CONFIG_SOC_LCD_I80_BUS_WIDTH "24") +set(CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX "y") +set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_REF_TICK "y") +set(CONFIG_SOC_LEDC_SUPPORT_HS_MODE "y") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "8") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "20") +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_MMU_PERIPH_NUM "2") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "3") +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 "8") +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 "8") +set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "8") +set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "64") +set(CONFIG_SOC_RMT_SUPPORT_REF_TICK "y") +set(CONFIG_SOC_RMT_SUPPORT_APB "y") +set(CONFIG_SOC_RMT_CHANNEL_CLK_INDEPENDENT "y") +set(CONFIG_SOC_RTCIO_PIN_COUNT "18") +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_SDM_GROUPS "1") +set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_SDM_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED "y") +set(CONFIG_SOC_SPI_AS_CS_SUPPORTED "y") +set(CONFIG_SOC_SPI_PERIPH_NUM "3") +set(CONFIG_SOC_SPI_DMA_CHAN_NUM "2") +set(CONFIG_SOC_SPI_MAX_CS_NUM "3") +set(CONFIG_SOC_SPI_SUPPORT_CLK_APB "y") +set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") +set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "8192") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") +set(CONFIG_SOC_TIMER_GROUPS "2") +set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "2") +set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "64") +set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "4") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_APB "y") +set(CONFIG_SOC_TOUCH_VERSION_1 "y") +set(CONFIG_SOC_TOUCH_SENSOR_NUM "10") +set(CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX "0xff") +set(CONFIG_SOC_TWAI_CONTROLLER_NUM "1") +set(CONFIG_SOC_TWAI_BRP_MIN "2") +set(CONFIG_SOC_TWAI_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT "y") +set(CONFIG_SOC_UART_NUM "3") +set(CONFIG_SOC_UART_HP_NUM "3") +set(CONFIG_SOC_UART_SUPPORT_APB_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_REF_TICK "y") +set(CONFIG_SOC_UART_FIFO_LEN "128") +set(CONFIG_SOC_UART_BITRATE_MAX "5000000") +set(CONFIG_SOC_SPIRAM_SUPPORTED "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") +set(CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG "y") +set(CONFIG_SOC_SHA_ENDIANNESS_BE "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA1 "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_MPI_MEM_BLOCKS_NUM "4") +set(CONFIG_SOC_MPI_OPERATIONS_NUM "y") +set(CONFIG_SOC_RSA_MAX_BIT_LEN "4096") +set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_192 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") +set(CONFIG_SOC_SECURE_BOOT_V1 "y") +set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "y") +set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "32") +set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") +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_TOUCH_SENSOR_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") +set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") +set(CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED "y") +set(CONFIG_SOC_CLK_APLL_SUPPORTED "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_SDMMC_USE_IOMUX "y") +set(CONFIG_SOC_SDMMC_NUM_SLOTS "2") +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_NAN_SUPPORT "y") +set(CONFIG_SOC_BLE_SUPPORTED "y") +set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") +set(CONFIG_SOC_BT_CLASSIC_SUPPORTED "y") +set(CONFIG_SOC_BLUFI_SUPPORTED "y") +set(CONFIG_SOC_ULP_HAS_ADC "y") +set(CONFIG_SOC_PHY_COMBO_MODULE "y") +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TOOLCHAIN "gcc") +set(CONFIG_IDF_TARGET_ARCH_XTENSA "y") +set(CONFIG_IDF_TARGET_ARCH "xtensa") +set(CONFIG_IDF_TARGET "esp32") +set(CONFIG_IDF_INIT_VERSION "5.2.2") +set(CONFIG_IDF_TARGET_ESP32 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x0") +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_APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS "") +set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") +set(CONFIG_BOOTLOADER_PROJECT_VER "1") +set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x1000") +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_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_FLASH_DC_AWARE "") +set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V "") +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_APP_ROLLBACK_ENABLE "") +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_V1_SUPPORTED "y") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +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_HAS_UART_BUF_SWITCH "y") +set(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT "y") +set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") +set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "-1") +set(CONFIG_ESPTOOLPY_NO_STUB "") +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_80M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_26M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "40m") +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 "y") +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_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_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_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") +set(CONFIG_COMPILER_DUMP_RTL_FILES "") +set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") +set(CONFIG_COMPILER_RT_LIB_NAME "gcc") +set(CONFIG_APPTRACE_DEST_JTAG "") +set(CONFIG_APPTRACE_DEST_NONE "y") +set(CONFIG_APPTRACE_DEST_UART1 "") +set(CONFIG_APPTRACE_DEST_UART2 "") +set(CONFIG_APPTRACE_DEST_UART_NONE "y") +set(CONFIG_APPTRACE_UART_TASK_PRIO "1") +set(CONFIG_APPTRACE_LOCK_ENABLE "y") +set(CONFIG_BT_ENABLED "") +set(CONFIG_BT_ALARM_MAX_NUM "50") +set(CONFIG_ADC_DISABLE_DAC "y") +set(CONFIG_ADC_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_ADC_CAL_EFUSE_TP_ENABLE "y") +set(CONFIG_ADC_CAL_EFUSE_VREF_ENABLE "y") +set(CONFIG_ADC_CAL_LUT_ENABLE "y") +set(CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN "") +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_TWAI_ISR_IN_IRAM "") +set(CONFIG_TWAI_ERRATA_FIX_BUS_OFF_REC "y") +set(CONFIG_TWAI_ERRATA_FIX_TX_INTR_LOST "y") +set(CONFIG_TWAI_ERRATA_FIX_RX_FRAME_INVALID "y") +set(CONFIG_TWAI_ERRATA_FIX_RX_FIFO_CORRUPT "y") +set(CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM "y") +set(CONFIG_UART_ISR_IN_IRAM "") +set(CONFIG_GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL "") +set(CONFIG_GPIO_CTRL_FUNC_IN_IRAM "") +set(CONFIG_SDM_CTRL_FUNC_IN_IRAM "") +set(CONFIG_SDM_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_SDM_ENABLE_DEBUG_LOG "") +set(CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GPTIMER_ISR_IRAM_SAFE "") +set(CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_GPTIMER_ENABLE_DEBUG_LOG "") +set(CONFIG_PCNT_CTRL_FUNC_IN_IRAM "") +set(CONFIG_PCNT_ISR_IRAM_SAFE "") +set(CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_PCNT_ENABLE_DEBUG_LOG "") +set(CONFIG_RMT_ISR_IRAM_SAFE "") +set(CONFIG_RMT_RECV_FUNC_IN_IRAM "") +set(CONFIG_RMT_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_RMT_ENABLE_DEBUG_LOG "") +set(CONFIG_MCPWM_ISR_IRAM_SAFE "") +set(CONFIG_MCPWM_CTRL_FUNC_IN_IRAM "") +set(CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_MCPWM_ENABLE_DEBUG_LOG "") +set(CONFIG_I2S_ISR_IRAM_SAFE "") +set(CONFIG_I2S_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_I2S_ENABLE_DEBUG_LOG "") +set(CONFIG_DAC_CTRL_FUNC_IN_IRAM "") +set(CONFIG_DAC_ISR_IRAM_SAFE "") +set(CONFIG_DAC_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_DAC_ENABLE_DEBUG_LOG "") +set(CONFIG_DAC_DMA_AUTO_16BIT_ALIGN "y") +set(CONFIG_LEDC_CTRL_FUNC_IN_IRAM "") +set(CONFIG_I2C_ISR_IRAM_SAFE "") +set(CONFIG_I2C_ENABLE_DEBUG_LOG "") +set(CONFIG_EFUSE_CUSTOM_TABLE "") +set(CONFIG_EFUSE_VIRTUAL "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 "y") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT "") +set(CONFIG_EFUSE_MAX_BLK_LEN "192") +set(CONFIG_ESP_TLS_USING_MBEDTLS "y") +set(CONFIG_ESP_TLS_USE_SECURE_ELEMENT "") +set(CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS "") +set(CONFIG_ESP_TLS_SERVER "") +set(CONFIG_ESP_TLS_PSK_VERIFICATION "") +set(CONFIG_ESP_TLS_INSECURE "") +set(CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM "") +set(CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE "") +set(CONFIG_ADC_CALI_EFUSE_TP_ENABLE "y") +set(CONFIG_ADC_CALI_EFUSE_VREF_ENABLE "y") +set(CONFIG_ADC_CALI_LUT_ENABLE "y") +set(CONFIG_ADC_DISABLE_DAC_OUTPUT "y") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_ETH_ENABLED "y") +set(CONFIG_ETH_USE_ESP32_EMAC "y") +set(CONFIG_ETH_PHY_INTERFACE_RMII "y") +set(CONFIG_ETH_RMII_CLK_INPUT "y") +set(CONFIG_ETH_RMII_CLK_OUTPUT "") +set(CONFIG_ETH_RMII_CLK_IN_GPIO "0") +set(CONFIG_ETH_DMA_BUFFER_SIZE "512") +set(CONFIG_ETH_DMA_RX_BUFFER_NUM "10") +set(CONFIG_ETH_DMA_TX_BUFFER_NUM "10") +set(CONFIG_ETH_IRAM_OPTIMIZATION "") +set(CONFIG_ETH_USE_SPI_ETHERNET "y") +set(CONFIG_ETH_SPI_ETHERNET_DM9051 "") +set(CONFIG_ETH_SPI_ETHERNET_W5500 "") +set(CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL "") +set(CONFIG_ETH_USE_OPENETH "") +set(CONFIG_ETH_TRANSMIT_MUTEX "") +set(CONFIG_ESP_EVENT_LOOP_PROFILING "") +set(CONFIG_ESP_EVENT_POST_FROM_ISR "y") +set(CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR "y") +set(CONFIG_ESP_GDBSTUB_ENABLED "y") +set(CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME "") +set(CONFIG_ESP_GDBSTUB_SUPPORT_TASKS "y") +set(CONFIG_ESP_GDBSTUB_MAX_TASKS "32") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS "y") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH "") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH "") +set(CONFIG_HTTPD_MAX_REQ_HDR_LEN "1024") +set(CONFIG_HTTPD_MAX_URI_LEN "1024") +set(CONFIG_HTTPD_ERR_RESP_NO_DELAY "y") +set(CONFIG_HTTPD_PURGE_BUF_LEN "32") +set(CONFIG_HTTPD_LOG_PURGE_DATA "") +set(CONFIG_HTTPD_WS_SUPPORT "") +set(CONFIG_HTTPD_QUEUE_WORK_BLOCKING "") +set(CONFIG_ESP_HTTPS_OTA_DECRYPT_CB "") +set(CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP "") +set(CONFIG_ESP_HTTPS_SERVER_ENABLE "") +set(CONFIG_ESP32_REV_MIN_0 "y") +set(CONFIG_ESP32_REV_MIN_1 "") +set(CONFIG_ESP32_REV_MIN_1_1 "") +set(CONFIG_ESP32_REV_MIN_2 "") +set(CONFIG_ESP32_REV_MIN_3 "") +set(CONFIG_ESP32_REV_MIN_3_1 "") +set(CONFIG_ESP32_REV_MIN "0") +set(CONFIG_ESP32_REV_MIN_FULL "0") +set(CONFIG_ESP_REV_MIN_FULL "0") +set(CONFIG_ESP32_REV_MAX_FULL "399") +set(CONFIG_ESP_REV_MAX_FULL "399") +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_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR "") +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 "") +set(CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "") +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_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_XTAL_FREQ_26 "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ_AUTO "") +set(CONFIG_XTAL_FREQ "40") +set(CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE "32") +set(CONFIG_LCD_ENABLE_DEBUG_LOG "") +set(CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL "120") +set(CONFIG_ESP_NETIF_TCPIP_LWIP "y") +set(CONFIG_ESP_NETIF_LOOPBACK "") +set(CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API "y") +set(CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS "") +set(CONFIG_ESP_NETIF_L2_TAP "") +set(CONFIG_ESP_NETIF_BRIDGE_EN "") +set(CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE "y") +set(CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION "") +set(CONFIG_ESP_PHY_MAX_WIFI_TX_POWER "20") +set(CONFIG_ESP_PHY_MAX_TX_POWER "20") +set(CONFIG_ESP_PHY_REDUCE_TX_POWER "") +set(CONFIG_ESP_PHY_RF_CAL_PARTIAL "y") +set(CONFIG_ESP_PHY_RF_CAL_NONE "") +set(CONFIG_ESP_PHY_RF_CAL_FULL "") +set(CONFIG_ESP_PHY_CALIBRATION_MODE "0") +set(CONFIG_ESP_PHY_PLL_TRACK_DEBUG "") +set(CONFIG_PM_ENABLE "") +set(CONFIG_SPIRAM "") +set(CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 "y") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "240") +set(CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE "") +set(CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM "") +set(CONFIG_ESP32_TRAX "") +set(CONFIG_ESP32_TRACEMEM_RESERVE_DRAM "0x0") +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_GDBSTUB "") +set(CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS "0") +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_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_UART "y") +set(CONFIG_ESP_CONSOLE_UART_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_5 "") +set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") +set(CONFIG_ESP_BROWNOUT_DET "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_ESP_IPC_USES_CALLERS_PRIORITY "y") +set(CONFIG_ESP_IPC_ISR_ENABLE "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 "0x1") +set(CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 "y") +set(CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD "") +set(CONFIG_ESP_TIMER_IMPL_TG0_LAC "y") +set(CONFIG_ESP_WIFI_ENABLED "y") +set(CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM "10") +set(CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM "32") +set(CONFIG_ESP_WIFI_STATIC_TX_BUFFER "") +set(CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER "y") +set(CONFIG_ESP_WIFI_TX_BUFFER_TYPE "1") +set(CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM "32") +set(CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER "y") +set(CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER "") +set(CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF "0") +set(CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF "5") +set(CONFIG_ESP_WIFI_CSI_ENABLED "") +set(CONFIG_ESP_WIFI_AMPDU_TX_ENABLED "y") +set(CONFIG_ESP_WIFI_TX_BA_WIN "6") +set(CONFIG_ESP_WIFI_AMPDU_RX_ENABLED "y") +set(CONFIG_ESP_WIFI_RX_BA_WIN "6") +set(CONFIG_ESP_WIFI_NVS_ENABLED "y") +set(CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0 "y") +set(CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 "") +set(CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN "752") +set(CONFIG_ESP_WIFI_MGMT_SBUF_NUM "32") +set(CONFIG_ESP_WIFI_IRAM_OPT "y") +set(CONFIG_ESP_WIFI_EXTRA_IRAM_OPT "") +set(CONFIG_ESP_WIFI_RX_IRAM_OPT "y") +set(CONFIG_ESP_WIFI_ENABLE_WPA3_SAE "y") +set(CONFIG_ESP_WIFI_ENABLE_SAE_PK "y") +set(CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT "y") +set(CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA "y") +set(CONFIG_ESP_WIFI_SLP_IRAM_OPT "") +set(CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE "y") +set(CONFIG_ESP_WIFI_GMAC_SUPPORT "") +set(CONFIG_ESP_WIFI_SOFTAP_SUPPORT "y") +set(CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT "") +set(CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM "7") +set(CONFIG_ESP_WIFI_NAN_ENABLE "") +set(CONFIG_ESP_WIFI_MBEDTLS_CRYPTO "y") +set(CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_ESP_WIFI_WAPI_PSK "") +set(CONFIG_ESP_WIFI_11KV_SUPPORT "") +set(CONFIG_ESP_WIFI_MBO_SUPPORT "") +set(CONFIG_ESP_WIFI_DPP_SUPPORT "") +set(CONFIG_ESP_WIFI_11R_SUPPORT "") +set(CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR "") +set(CONFIG_ESP_WIFI_WPS_STRICT "") +set(CONFIG_ESP_WIFI_WPS_PASSPHRASE "") +set(CONFIG_ESP_WIFI_DEBUG_PRINT "") +set(CONFIG_ESP_WIFI_TESTING_OPTIONS "") +set(CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT "y") +set(CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER "") +set(CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH "") +set(CONFIG_ESP_COREDUMP_ENABLE_TO_UART "") +set(CONFIG_ESP_COREDUMP_ENABLE_TO_NONE "y") +set(CONFIG_FATFS_VOLUME_COUNT "2") +set(CONFIG_FATFS_LFN_NONE "y") +set(CONFIG_FATFS_LFN_HEAP "") +set(CONFIG_FATFS_LFN_STACK "") +set(CONFIG_FATFS_SECTOR_512 "") +set(CONFIG_FATFS_SECTOR_4096 "y") +set(CONFIG_FATFS_CODEPAGE_DYNAMIC "") +set(CONFIG_FATFS_CODEPAGE_437 "y") +set(CONFIG_FATFS_CODEPAGE_720 "") +set(CONFIG_FATFS_CODEPAGE_737 "") +set(CONFIG_FATFS_CODEPAGE_771 "") +set(CONFIG_FATFS_CODEPAGE_775 "") +set(CONFIG_FATFS_CODEPAGE_850 "") +set(CONFIG_FATFS_CODEPAGE_852 "") +set(CONFIG_FATFS_CODEPAGE_855 "") +set(CONFIG_FATFS_CODEPAGE_857 "") +set(CONFIG_FATFS_CODEPAGE_860 "") +set(CONFIG_FATFS_CODEPAGE_861 "") +set(CONFIG_FATFS_CODEPAGE_862 "") +set(CONFIG_FATFS_CODEPAGE_863 "") +set(CONFIG_FATFS_CODEPAGE_864 "") +set(CONFIG_FATFS_CODEPAGE_865 "") +set(CONFIG_FATFS_CODEPAGE_866 "") +set(CONFIG_FATFS_CODEPAGE_869 "") +set(CONFIG_FATFS_CODEPAGE_932 "") +set(CONFIG_FATFS_CODEPAGE_936 "") +set(CONFIG_FATFS_CODEPAGE_949 "") +set(CONFIG_FATFS_CODEPAGE_950 "") +set(CONFIG_FATFS_CODEPAGE "437") +set(CONFIG_FATFS_FS_LOCK "0") +set(CONFIG_FATFS_TIMEOUT_MS "10000") +set(CONFIG_FATFS_PER_FILE_CACHE "y") +set(CONFIG_FATFS_USE_FASTSEEK "") +set(CONFIG_FATFS_VFS_FSTAT_BLKSIZE "0") +set(CONFIG_FATFS_IMMEDIATE_FSYNC "") +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_TIMER_SERVICE_TASK_NAME "Tmr Svc") +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 "y") +set(CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS "y") +set(CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID "y") +set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "y") +set(CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U32 "y") +set(CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U64 "") +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_CORETIMER "y") +set(CONFIG_FREERTOS_CORETIMER_0 "y") +set(CONFIG_FREERTOS_CORETIMER_1 "") +set(CONFIG_FREERTOS_SYSTICK_USES_CCOUNT "y") +set(CONFIG_FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER "y") +set(CONFIG_FREERTOS_RUN_TIME_STATS_USING_CPU_CLK "") +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_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_SPI_MASTER_FUNC_IN_IRAM "y") +set(CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM "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_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_COLORS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +set(CONFIG_LWIP_ENABLE "y") +set(CONFIG_LWIP_LOCAL_HOSTNAME "espressif") +set(CONFIG_LWIP_NETIF_API "") +set(CONFIG_LWIP_TCPIP_TASK_PRIO "18") +set(CONFIG_LWIP_TCPIP_CORE_LOCKING "") +set(CONFIG_LWIP_CHECK_THREAD_SAFETY "") +set(CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES "y") +set(CONFIG_LWIP_L2_TO_L3_COPY "") +set(CONFIG_LWIP_IRAM_OPTIMIZATION "") +set(CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION "") +set(CONFIG_LWIP_TIMERS_ONDEMAND "y") +set(CONFIG_LWIP_ND6 "y") +set(CONFIG_LWIP_FORCE_ROUTER_FORWARDING "") +set(CONFIG_LWIP_MAX_SOCKETS "10") +set(CONFIG_LWIP_USE_ONLY_LWIP_SELECT "") +set(CONFIG_LWIP_SO_LINGER "") +set(CONFIG_LWIP_SO_REUSE "y") +set(CONFIG_LWIP_SO_REUSE_RXTOALL "y") +set(CONFIG_LWIP_SO_RCVBUF "") +set(CONFIG_LWIP_NETBUF_RECVINFO "") +set(CONFIG_LWIP_IP_DEFAULT_TTL "64") +set(CONFIG_LWIP_IP4_FRAG "y") +set(CONFIG_LWIP_IP6_FRAG "y") +set(CONFIG_LWIP_IP4_REASSEMBLY "") +set(CONFIG_LWIP_IP6_REASSEMBLY "") +set(CONFIG_LWIP_IP_REASS_MAX_PBUFS "10") +set(CONFIG_LWIP_IP_FORWARD "") +set(CONFIG_LWIP_STATS "") +set(CONFIG_LWIP_ESP_GRATUITOUS_ARP "y") +set(CONFIG_LWIP_GARP_TMR_INTERVAL "60") +set(CONFIG_LWIP_ESP_MLDV6_REPORT "y") +set(CONFIG_LWIP_MLDV6_TMR_INTERVAL "40") +set(CONFIG_LWIP_TCPIP_RECVMBOX_SIZE "32") +set(CONFIG_LWIP_DHCP_DOES_ARP_CHECK "y") +set(CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID "") +set(CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID "y") +set(CONFIG_LWIP_DHCP_RESTORE_LAST_IP "") +set(CONFIG_LWIP_DHCP_OPTIONS_LEN "68") +set(CONFIG_LWIP_NUM_NETIF_CLIENT_DATA "0") +set(CONFIG_LWIP_DHCP_COARSE_TIMER_SECS "1") +set(CONFIG_LWIP_DHCPS "y") +set(CONFIG_LWIP_DHCPS_LEASE_UNIT "60") +set(CONFIG_LWIP_DHCPS_MAX_STATION_NUM "8") +set(CONFIG_LWIP_DHCPS_STATIC_ENTRIES "y") +set(CONFIG_LWIP_AUTOIP "") +set(CONFIG_LWIP_IPV4 "y") +set(CONFIG_LWIP_IPV6 "y") +set(CONFIG_LWIP_IPV6_AUTOCONFIG "") +set(CONFIG_LWIP_IPV6_NUM_ADDRESSES "3") +set(CONFIG_LWIP_IPV6_FORWARD "") +set(CONFIG_LWIP_NETIF_STATUS_CALLBACK "") +set(CONFIG_LWIP_NETIF_LOOPBACK "y") +set(CONFIG_LWIP_LOOPBACK_MAX_PBUFS "8") +set(CONFIG_LWIP_MAX_ACTIVE_TCP "16") +set(CONFIG_LWIP_MAX_LISTENING_TCP "16") +set(CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION "y") +set(CONFIG_LWIP_TCP_MAXRTX "12") +set(CONFIG_LWIP_TCP_SYNMAXRTX "12") +set(CONFIG_LWIP_TCP_MSS "1440") +set(CONFIG_LWIP_TCP_TMR_INTERVAL "250") +set(CONFIG_LWIP_TCP_MSL "60000") +set(CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT "20000") +set(CONFIG_LWIP_TCP_SND_BUF_DEFAULT "5760") +set(CONFIG_LWIP_TCP_WND_DEFAULT "5760") +set(CONFIG_LWIP_TCP_RECVMBOX_SIZE "6") +set(CONFIG_LWIP_TCP_QUEUE_OOSEQ "y") +set(CONFIG_LWIP_TCP_OOSEQ_TIMEOUT "6") +set(CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS "4") +set(CONFIG_LWIP_TCP_SACK_OUT "") +set(CONFIG_LWIP_TCP_OVERSIZE_MSS "y") +set(CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS "") +set(CONFIG_LWIP_TCP_OVERSIZE_DISABLE "") +set(CONFIG_LWIP_TCP_RTO_TIME "1500") +set(CONFIG_LWIP_MAX_UDP_PCBS "16") +set(CONFIG_LWIP_UDP_RECVMBOX_SIZE "6") +set(CONFIG_LWIP_CHECKSUM_CHECK_IP "") +set(CONFIG_LWIP_CHECKSUM_CHECK_UDP "") +set(CONFIG_LWIP_CHECKSUM_CHECK_ICMP "y") +set(CONFIG_LWIP_TCPIP_TASK_STACK_SIZE "3072") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY "y") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 "") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 "") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY "0x7fffffff") +set(CONFIG_LWIP_PPP_SUPPORT "") +set(CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE "3") +set(CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS "5") +set(CONFIG_LWIP_SLIP_SUPPORT "") +set(CONFIG_LWIP_ICMP "y") +set(CONFIG_LWIP_MULTICAST_PING "") +set(CONFIG_LWIP_BROADCAST_PING "") +set(CONFIG_LWIP_MAX_RAW_PCBS "16") +set(CONFIG_LWIP_SNTP_MAX_SERVERS "1") +set(CONFIG_LWIP_DHCP_GET_NTP_SRV "") +set(CONFIG_LWIP_SNTP_UPDATE_DELAY "3600000") +set(CONFIG_LWIP_DNS_MAX_SERVERS "3") +set(CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT "") +set(CONFIG_LWIP_BRIDGEIF_MAX_PORTS "7") +set(CONFIG_LWIP_ESP_LWIP_ASSERT "y") +set(CONFIG_LWIP_HOOK_TCP_ISN_NONE "") +set(CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT "y") +set(CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM "") +set(CONFIG_LWIP_HOOK_IP6_ROUTE_NONE "y") +set(CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT "") +set(CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM "") +set(CONFIG_LWIP_HOOK_ND6_GET_GW_NONE "y") +set(CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT "") +set(CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM "") +set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE "y") +set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT "") +set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM "") +set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE "y") +set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT "") +set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM "") +set(CONFIG_LWIP_HOOK_IP6_INPUT_NONE "y") +set(CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT "") +set(CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM "") +set(CONFIG_LWIP_DEBUG "") +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_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_MAX_CERTS "200") +set(CONFIG_MBEDTLS_ECP_RESTARTABLE "") +set(CONFIG_MBEDTLS_CMAC_C "y") +set(CONFIG_MBEDTLS_HARDWARE_AES "y") +set(CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER "") +set(CONFIG_MBEDTLS_HARDWARE_MPI "y") +set(CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI "") +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_SHA512_C "y") +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_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 "y") +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_MQTT_PROTOCOL_311 "y") +set(CONFIG_MQTT_PROTOCOL_5 "") +set(CONFIG_MQTT_TRANSPORT_SSL "y") +set(CONFIG_MQTT_TRANSPORT_WEBSOCKET "y") +set(CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE "y") +set(CONFIG_MQTT_MSG_ID_INCREMENTAL "") +set(CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED "") +set(CONFIG_MQTT_REPORT_DELETED_MESSAGES "") +set(CONFIG_MQTT_USE_CUSTOM_CONFIG "") +set(CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED "") +set(CONFIG_MQTT_CUSTOM_OUTBOX "") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF "y") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF "") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_LF "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CR "y") +set(CONFIG_NEWLIB_NANO_FORMAT "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") +set(CONFIG_NVS_ASSERT_ERROR_CHECK "") +set(CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY "") +set(CONFIG_OPENTHREAD_ENABLED "") +set(CONFIG_OPENTHREAD_NETWORK_NAME "OpenThread-ESP") +set(CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX "fd00:db8:a0:0::/64") +set(CONFIG_OPENTHREAD_NETWORK_CHANNEL "15") +set(CONFIG_OPENTHREAD_NETWORK_PANID "0x1234") +set(CONFIG_OPENTHREAD_NETWORK_EXTPANID "dead00beef00cafe") +set(CONFIG_OPENTHREAD_NETWORK_MASTERKEY "00112233445566778899aabbccddeeff") +set(CONFIG_OPENTHREAD_NETWORK_PSKC "104810e2315100afd6bc9215a6bfac53") +set(CONFIG_OPENTHREAD_XTAL_ACCURACY "130") +set(CONFIG_OPENTHREAD_SPINEL_ONLY "") +set(CONFIG_OPENTHREAD_RX_ON_WHEN_IDLE "y") +set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0 "y") +set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1 "y") +set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2 "y") +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_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") +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_SHARE_SPI1_BUS "") +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_SUPPORTED "y") +set(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED "y") +set(CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED "y") +set(CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED "y") +set(CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED "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 "") +set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "") +set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") +set(CONFIG_SPIFFS_MAX_PARTITIONS "3") +set(CONFIG_SPIFFS_CACHE "y") +set(CONFIG_SPIFFS_CACHE_WR "y") +set(CONFIG_SPIFFS_CACHE_STATS "") +set(CONFIG_SPIFFS_PAGE_CHECK "y") +set(CONFIG_SPIFFS_GC_MAX_RUNS "10") +set(CONFIG_SPIFFS_GC_STATS "") +set(CONFIG_SPIFFS_PAGE_SIZE "256") +set(CONFIG_SPIFFS_OBJ_NAME_LEN "32") +set(CONFIG_SPIFFS_FOLLOW_SYMLINKS "") +set(CONFIG_SPIFFS_USE_MAGIC "y") +set(CONFIG_SPIFFS_USE_MAGIC_LENGTH "y") +set(CONFIG_SPIFFS_META_LENGTH "4") +set(CONFIG_SPIFFS_USE_MTIME "y") +set(CONFIG_SPIFFS_DBG "") +set(CONFIG_SPIFFS_API_DBG "") +set(CONFIG_SPIFFS_GC_DBG "") +set(CONFIG_SPIFFS_CACHE_DBG "") +set(CONFIG_SPIFFS_CHECK_DBG "") +set(CONFIG_SPIFFS_TEST_VISUALISATION "") +set(CONFIG_WS_TRANSPORT "y") +set(CONFIG_WS_BUFFER_SIZE "1024") +set(CONFIG_WS_DYNAMIC_BUFFER "") +set(CONFIG_ULP_COPROC_ENABLED "") +set(CONFIG_UNITY_ENABLE_FLOAT "y") +set(CONFIG_UNITY_ENABLE_DOUBLE "y") +set(CONFIG_UNITY_ENABLE_64BIT "") +set(CONFIG_UNITY_ENABLE_COLOR "") +set(CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER "y") +set(CONFIG_UNITY_ENABLE_FIXTURE "") +set(CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL "") +set(CONFIG_VFS_SUPPORT_IO "y") +set(CONFIG_VFS_SUPPORT_DIR "y") +set(CONFIG_VFS_SUPPORT_SELECT "y") +set(CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT "y") +set(CONFIG_VFS_SELECT_IN_RAM "") +set(CONFIG_VFS_SUPPORT_TERMIOS "y") +set(CONFIG_VFS_MAX_COUNT "8") +set(CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS "1") +set(CONFIG_WL_SECTOR_SIZE_512 "") +set(CONFIG_WL_SECTOR_SIZE_4096 "y") +set(CONFIG_WL_SECTOR_SIZE "4096") +set(CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES "16") +set(CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT "30") +set(CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION "") +set(CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN "y") +set(CONFIG_WIFI_PROV_STA_FAST_SCAN "") +set(CONFIG_DSP_OPTIMIZATIONS_SUPPORTED "y") +set(CONFIG_DSP_ANSI "") +set(CONFIG_DSP_OPTIMIZED "y") +set(CONFIG_DSP_OPTIMIZATION "1") +set(CONFIG_DSP_MAX_FFT_SIZE_512 "") +set(CONFIG_DSP_MAX_FFT_SIZE_1024 "") +set(CONFIG_DSP_MAX_FFT_SIZE_2048 "") +set(CONFIG_DSP_MAX_FFT_SIZE_4096 "y") +set(CONFIG_DSP_MAX_FFT_SIZE_8192 "") +set(CONFIG_DSP_MAX_FFT_SIZE_16384 "") +set(CONFIG_DSP_MAX_FFT_SIZE_32768 "") +set(CONFIG_DSP_MAX_FFT_SIZE "4096") +set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") +set(CONFIGS_LIST CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_TWAI_BRP_DIV_SUPPORTED;CONFIG_SOC_DPORT_WORKAROUND;CONFIG_SOC_CAPS_ECO_VER_MAX;CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_DAC_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_SDIO_SLAVE_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_EMAC_SUPPORTED;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_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_SUPPORT_COEXISTENCE;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_TOUCH_SENSOR_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_ULP_FSM_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_MPU_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL;CONFIG_SOC_XTAL_SUPPORT_26M;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_XTAL_SUPPORT_AUTO_DETECT;CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_CTRL_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_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_SHARED_POWER;CONFIG_SOC_SHARED_IDCACHE_SUPPORTED;CONFIG_SOC_IDCACHE_PER_CORE;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_DAC_CHAN_NUM;CONFIG_SOC_DAC_RESOLUTION;CONFIG_SOC_DAC_DMA_16BIT_ALIGN;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;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_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_APB;CONFIG_SOC_I2C_STOP_INDEPENDENT;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_1;CONFIG_SOC_I2S_SUPPORTS_APLL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_PDM_MAX_RX_LINES;CONFIG_SOC_I2S_SUPPORTS_ADC_DAC;CONFIG_SOC_I2S_SUPPORTS_ADC;CONFIG_SOC_I2S_SUPPORTS_DAC;CONFIG_SOC_I2S_SUPPORTS_LCD_CAMERA;CONFIG_SOC_I2S_TRANS_SIZE_ALIGN_WORD;CONFIG_SOC_I2S_LCD_I80_VARIANT;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_LCD_I80_BUSES;CONFIG_SOC_LCD_I80_BUS_WIDTH;CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_REF_TICK;CONFIG_SOC_LEDC_SUPPORT_HS_MODE;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;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_MMU_PERIPH_NUM;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_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_REF_TICK;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_CHANNEL_CLK_INDEPENDENT;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_APB;CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED;CONFIG_SOC_SPI_AS_CS_SUPPORTED;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_DMA_CHAN_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TOUCH_VERSION_1;CONFIG_SOC_TOUCH_SENSOR_NUM;CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_CLK_SUPPORT_APB;CONFIG_SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_REF_TICK;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG;CONFIG_SOC_SHA_ENDIANNESS_BE;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_192;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_SECURE_BOOT_V1;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP;CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD;CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED;CONFIG_SOC_CLK_APLL_SUPPORTED;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_SDMMC_USE_IOMUX;CONFIG_SOC_SDMMC_NUM_SLOTS;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_NAN_SUPPORT;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BT_CLASSIC_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_ULP_HAS_ADC;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TARGET_ARCH_XTENSA;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32;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_ESP32_NO_BLOBS;CONFIG_APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS;CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;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_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_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V;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_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;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_V1_SUPPORTED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_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_HAS_UART_BUF_SWITCH;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESPTOOLPY_NO_STUB;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_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_26M;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_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_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_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_APPTRACE_DEST_JTAG;CONFIG_ESP32_APPTRACE_DEST_TRAX;CONFIG_APPTRACE_DEST_NONE;CONFIG_ESP32_APPTRACE_DEST_NONE;CONFIG_APPTRACE_DEST_UART1;CONFIG_APPTRACE_DEST_UART2;CONFIG_APPTRACE_DEST_UART_NONE;CONFIG_APPTRACE_UART_TASK_PRIO;CONFIG_APPTRACE_LOCK_ENABLE;CONFIG_ESP32_APPTRACE_LOCK_ENABLE;CONFIG_BT_ENABLED;CONFIG_BT_ALARM_MAX_NUM;CONFIG_ADC_DISABLE_DAC;CONFIG_ADC2_DISABLE_DAC;CONFIG_ADC_SUPPRESS_DEPRECATE_WARN;CONFIG_ADC_CAL_EFUSE_TP_ENABLE;CONFIG_ADC_CAL_EFUSE_VREF_ENABLE;CONFIG_ADC_CAL_LUT_ENABLE;CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN;CONFIG_SPI_MASTER_IN_IRAM;CONFIG_SPI_MASTER_ISR_IN_IRAM;CONFIG_SPI_SLAVE_IN_IRAM;CONFIG_SPI_SLAVE_ISR_IN_IRAM;CONFIG_TWAI_ISR_IN_IRAM;CONFIG_TWAI_ERRATA_FIX_BUS_OFF_REC;CONFIG_TWAI_ERRATA_FIX_TX_INTR_LOST;CONFIG_TWAI_ERRATA_FIX_RX_FRAME_INVALID;CONFIG_TWAI_ERRATA_FIX_RX_FIFO_CORRUPT;CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM;CONFIG_UART_ISR_IN_IRAM;CONFIG_GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL;CONFIG_GPIO_CTRL_FUNC_IN_IRAM;CONFIG_SDM_CTRL_FUNC_IN_IRAM;CONFIG_SDM_SUPPRESS_DEPRECATE_WARN;CONFIG_SDM_ENABLE_DEBUG_LOG;CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM;CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_IRAM_SAFE;CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN;CONFIG_GPTIMER_ENABLE_DEBUG_LOG;CONFIG_PCNT_CTRL_FUNC_IN_IRAM;CONFIG_PCNT_ISR_IRAM_SAFE;CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN;CONFIG_PCNT_ENABLE_DEBUG_LOG;CONFIG_RMT_ISR_IRAM_SAFE;CONFIG_RMT_RECV_FUNC_IN_IRAM;CONFIG_RMT_SUPPRESS_DEPRECATE_WARN;CONFIG_RMT_ENABLE_DEBUG_LOG;CONFIG_MCPWM_ISR_IRAM_SAFE;CONFIG_MCPWM_ISR_IN_IRAM;CONFIG_MCPWM_CTRL_FUNC_IN_IRAM;CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN;CONFIG_MCPWM_ENABLE_DEBUG_LOG;CONFIG_I2S_ISR_IRAM_SAFE;CONFIG_I2S_SUPPRESS_DEPRECATE_WARN;CONFIG_I2S_ENABLE_DEBUG_LOG;CONFIG_DAC_CTRL_FUNC_IN_IRAM;CONFIG_DAC_ISR_IRAM_SAFE;CONFIG_DAC_SUPPRESS_DEPRECATE_WARN;CONFIG_DAC_ENABLE_DEBUG_LOG;CONFIG_DAC_DMA_AUTO_16BIT_ALIGN;CONFIG_LEDC_CTRL_FUNC_IN_IRAM;CONFIG_I2C_ISR_IRAM_SAFE;CONFIG_I2C_ENABLE_DEBUG_LOG;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE;CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4;CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_TLS_USING_MBEDTLS;CONFIG_ESP_TLS_USE_SECURE_ELEMENT;CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS;CONFIG_ESP_TLS_SERVER;CONFIG_ESP_TLS_PSK_VERIFICATION;CONFIG_ESP_TLS_INSECURE;CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM;CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE;CONFIG_ADC_CALI_EFUSE_TP_ENABLE;CONFIG_ADC_CALI_EFUSE_VREF_ENABLE;CONFIG_ADC_CALI_LUT_ENABLE;CONFIG_ADC_DISABLE_DAC_OUTPUT;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ETH_ENABLED;CONFIG_ETH_USE_ESP32_EMAC;CONFIG_ETH_PHY_INTERFACE_RMII;CONFIG_ETH_RMII_CLK_INPUT;CONFIG_ETH_RMII_CLK_OUTPUT;CONFIG_ETH_RMII_CLK_IN_GPIO;CONFIG_ETH_DMA_BUFFER_SIZE;CONFIG_ETH_DMA_RX_BUFFER_NUM;CONFIG_ETH_DMA_TX_BUFFER_NUM;CONFIG_ETH_IRAM_OPTIMIZATION;CONFIG_ETH_USE_SPI_ETHERNET;CONFIG_ETH_SPI_ETHERNET_DM9051;CONFIG_ETH_SPI_ETHERNET_W5500;CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL;CONFIG_ETH_USE_OPENETH;CONFIG_ETH_TRANSMIT_MUTEX;CONFIG_ESP_EVENT_LOOP_PROFILING;CONFIG_EVENT_LOOP_PROFILING;CONFIG_ESP_EVENT_POST_FROM_ISR;CONFIG_POST_EVENTS_FROM_ISR;CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR;CONFIG_POST_EVENTS_FROM_IRAM_ISR;CONFIG_ESP_GDBSTUB_ENABLED;CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME;CONFIG_ESP_GDBSTUB_SUPPORT_TASKS;CONFIG_GDBSTUB_SUPPORT_TASKS;CONFIG_ESP_GDBSTUB_MAX_TASKS;CONFIG_GDBSTUB_MAX_TASKS;CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS;CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH;CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH;CONFIG_HTTPD_MAX_REQ_HDR_LEN;CONFIG_HTTPD_MAX_URI_LEN;CONFIG_HTTPD_ERR_RESP_NO_DELAY;CONFIG_HTTPD_PURGE_BUF_LEN;CONFIG_HTTPD_LOG_PURGE_DATA;CONFIG_HTTPD_WS_SUPPORT;CONFIG_HTTPD_QUEUE_WORK_BLOCKING;CONFIG_ESP_HTTPS_OTA_DECRYPT_CB;CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP;CONFIG_OTA_ALLOW_HTTP;CONFIG_ESP_HTTPS_SERVER_ENABLE;CONFIG_ESP32_REV_MIN_0;CONFIG_ESP32_REV_MIN_1;CONFIG_ESP32_REV_MIN_1_1;CONFIG_ESP32_REV_MIN_2;CONFIG_ESP32_REV_MIN_3;CONFIG_ESP32_REV_MIN_3_1;CONFIG_ESP32_REV_MIN;CONFIG_ESP32_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32_REV_MAX_FULL;CONFIG_ESP_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_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_TWO_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES;CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR;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_ESP32_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_ESP32_RTC_CLK_SRC_INT_RC;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32_RTC_CLK_CAL_CYCLES;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_XTAL_FREQ_26;CONFIG_ESP32_XTAL_FREQ_26;CONFIG_XTAL_FREQ_40;CONFIG_ESP32_XTAL_FREQ_40;CONFIG_XTAL_FREQ_AUTO;CONFIG_ESP32_XTAL_FREQ_AUTO;CONFIG_XTAL_FREQ;CONFIG_ESP32_XTAL_FREQ;CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE;CONFIG_LCD_ENABLE_DEBUG_LOG;CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL;CONFIG_ESP_NETIF_TCPIP_LWIP;CONFIG_ESP_NETIF_LOOPBACK;CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API;CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS;CONFIG_ESP_NETIF_L2_TAP;CONFIG_ESP_NETIF_BRIDGE_EN;CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION;CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION;CONFIG_ESP_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP_PHY_MAX_TX_POWER;CONFIG_ESP32_PHY_MAX_TX_POWER;CONFIG_ESP_PHY_REDUCE_TX_POWER;CONFIG_REDUCE_PHY_TX_POWER;CONFIG_ESP32_REDUCE_PHY_TX_POWER;CONFIG_ESP_PHY_RF_CAL_PARTIAL;CONFIG_ESP_PHY_RF_CAL_NONE;CONFIG_ESP_PHY_RF_CAL_FULL;CONFIG_ESP_PHY_CALIBRATION_MODE;CONFIG_ESP_PHY_PLL_TRACK_DEBUG;CONFIG_PM_ENABLE;CONFIG_SPIRAM;CONFIG_SPIRAM_SUPPORT;CONFIG_ESP32_SPIRAM_SUPPORT;CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM;CONFIG_ESP32_TRAX;CONFIG_ESP32_TRACEMEM_RESERVE_DRAM;CONFIG_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP32_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP32_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP32_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_GDBSTUB;CONFIG_ESP32_PANIC_GDBSTUB;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;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_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_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_ESP32_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0;CONFIG_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32_BROWNOUT_DET_LVL;CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE;CONFIG_DISABLE_BASIC_ROM_CONSOLE;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;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_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;CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0;CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD;CONFIG_ESP_TIMER_IMPL_TG0_LAC;CONFIG_ESP_WIFI_ENABLED;CONFIG_ESP32_WIFI_ENABLED;CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP_WIFI_STATIC_TX_BUFFER;CONFIG_ESP32_WIFI_STATIC_TX_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP_WIFI_TX_BUFFER_TYPE;CONFIG_ESP32_WIFI_TX_BUFFER_TYPE;CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER;CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF;CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF;CONFIG_ESP_WIFI_CSI_ENABLED;CONFIG_ESP32_WIFI_CSI_ENABLED;CONFIG_ESP_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP_WIFI_TX_BA_WIN;CONFIG_ESP32_WIFI_TX_BA_WIN;CONFIG_ESP_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP_WIFI_RX_BA_WIN;CONFIG_ESP32_WIFI_RX_BA_WIN;CONFIG_ESP32_WIFI_RX_BA_WIN;CONFIG_ESP_WIFI_NVS_ENABLED;CONFIG_ESP32_WIFI_NVS_ENABLED;CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0;CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1;CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN;CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN;CONFIG_ESP_WIFI_MGMT_SBUF_NUM;CONFIG_ESP32_WIFI_MGMT_SBUF_NUM;CONFIG_ESP_WIFI_IRAM_OPT;CONFIG_ESP32_WIFI_IRAM_OPT;CONFIG_ESP_WIFI_EXTRA_IRAM_OPT;CONFIG_ESP_WIFI_RX_IRAM_OPT;CONFIG_ESP32_WIFI_RX_IRAM_OPT;CONFIG_ESP_WIFI_ENABLE_WPA3_SAE;CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE;CONFIG_ESP_WIFI_ENABLE_SAE_PK;CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT;CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA;CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA;CONFIG_ESP_WIFI_SLP_IRAM_OPT;CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE;CONFIG_ESP_WIFI_GMAC_SUPPORT;CONFIG_ESP_WIFI_SOFTAP_SUPPORT;CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT;CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM;CONFIG_ESP_WIFI_NAN_ENABLE;CONFIG_ESP_WIFI_MBEDTLS_CRYPTO;CONFIG_WPA_MBEDTLS_CRYPTO;CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT;CONFIG_WPA_MBEDTLS_TLS_CLIENT;CONFIG_ESP_WIFI_WAPI_PSK;CONFIG_WPA_WAPI_PSK;CONFIG_ESP_WIFI_11KV_SUPPORT;CONFIG_WPA_11KV_SUPPORT;CONFIG_ESP_WIFI_MBO_SUPPORT;CONFIG_WPA_MBO_SUPPORT;CONFIG_ESP_WIFI_DPP_SUPPORT;CONFIG_WPA_DPP_SUPPORT;CONFIG_ESP_WIFI_11R_SUPPORT;CONFIG_WPA_11R_SUPPORT;CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR;CONFIG_WPA_WPS_SOFTAP_REGISTRAR;CONFIG_ESP_WIFI_WPS_STRICT;CONFIG_WPA_WPS_STRICT;CONFIG_ESP_WIFI_WPS_PASSPHRASE;CONFIG_ESP_WIFI_DEBUG_PRINT;CONFIG_WPA_DEBUG_PRINT;CONFIG_ESP_WIFI_TESTING_OPTIONS;CONFIG_WPA_TESTING_OPTIONS;CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT;CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER;CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH;CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH;CONFIG_ESP_COREDUMP_ENABLE_TO_UART;CONFIG_ESP32_ENABLE_COREDUMP_TO_UART;CONFIG_ESP_COREDUMP_ENABLE_TO_NONE;CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE;CONFIG_FATFS_VOLUME_COUNT;CONFIG_FATFS_LFN_NONE;CONFIG_FATFS_LFN_HEAP;CONFIG_FATFS_LFN_STACK;CONFIG_FATFS_SECTOR_512;CONFIG_FATFS_SECTOR_4096;CONFIG_FATFS_CODEPAGE_DYNAMIC;CONFIG_FATFS_CODEPAGE_437;CONFIG_FATFS_CODEPAGE_720;CONFIG_FATFS_CODEPAGE_737;CONFIG_FATFS_CODEPAGE_771;CONFIG_FATFS_CODEPAGE_775;CONFIG_FATFS_CODEPAGE_850;CONFIG_FATFS_CODEPAGE_852;CONFIG_FATFS_CODEPAGE_855;CONFIG_FATFS_CODEPAGE_857;CONFIG_FATFS_CODEPAGE_860;CONFIG_FATFS_CODEPAGE_861;CONFIG_FATFS_CODEPAGE_862;CONFIG_FATFS_CODEPAGE_863;CONFIG_FATFS_CODEPAGE_864;CONFIG_FATFS_CODEPAGE_865;CONFIG_FATFS_CODEPAGE_866;CONFIG_FATFS_CODEPAGE_869;CONFIG_FATFS_CODEPAGE_932;CONFIG_FATFS_CODEPAGE_936;CONFIG_FATFS_CODEPAGE_949;CONFIG_FATFS_CODEPAGE_950;CONFIG_FATFS_CODEPAGE;CONFIG_FATFS_FS_LOCK;CONFIG_FATFS_TIMEOUT_MS;CONFIG_FATFS_PER_FILE_CACHE;CONFIG_FATFS_USE_FASTSEEK;CONFIG_FATFS_VFS_FSTAT_BLKSIZE;CONFIG_FATFS_IMMEDIATE_FSYNC;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_TIMER_SERVICE_TASK_NAME;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_STATS_FORMATTING_FUNCTIONS;CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U32;CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U64;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_CORETIMER;CONFIG_FREERTOS_CORETIMER_0;CONFIG_FREERTOS_CORETIMER_1;CONFIG_FREERTOS_SYSTICK_USES_CCOUNT;CONFIG_FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER;CONFIG_FREERTOS_RUN_TIME_STATS_USING_CPU_CLK;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_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_SPI_MASTER_FUNC_IN_IRAM;CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM;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_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_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LWIP_ENABLE;CONFIG_LWIP_LOCAL_HOSTNAME;CONFIG_LWIP_NETIF_API;CONFIG_LWIP_TCPIP_TASK_PRIO;CONFIG_LWIP_TCPIP_CORE_LOCKING;CONFIG_LWIP_CHECK_THREAD_SAFETY;CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES;CONFIG_LWIP_L2_TO_L3_COPY;CONFIG_L2_TO_L3_COPY;CONFIG_LWIP_IRAM_OPTIMIZATION;CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION;CONFIG_LWIP_TIMERS_ONDEMAND;CONFIG_LWIP_ND6;CONFIG_LWIP_FORCE_ROUTER_FORWARDING;CONFIG_LWIP_MAX_SOCKETS;CONFIG_LWIP_USE_ONLY_LWIP_SELECT;CONFIG_LWIP_SO_LINGER;CONFIG_LWIP_SO_REUSE;CONFIG_LWIP_SO_REUSE_RXTOALL;CONFIG_LWIP_SO_RCVBUF;CONFIG_LWIP_NETBUF_RECVINFO;CONFIG_LWIP_IP_DEFAULT_TTL;CONFIG_LWIP_IP4_FRAG;CONFIG_LWIP_IP6_FRAG;CONFIG_LWIP_IP4_REASSEMBLY;CONFIG_LWIP_IP6_REASSEMBLY;CONFIG_LWIP_IP_REASS_MAX_PBUFS;CONFIG_LWIP_IP_FORWARD;CONFIG_LWIP_STATS;CONFIG_LWIP_ESP_GRATUITOUS_ARP;CONFIG_ESP_GRATUITOUS_ARP;CONFIG_LWIP_GARP_TMR_INTERVAL;CONFIG_GARP_TMR_INTERVAL;CONFIG_LWIP_ESP_MLDV6_REPORT;CONFIG_LWIP_MLDV6_TMR_INTERVAL;CONFIG_LWIP_TCPIP_RECVMBOX_SIZE;CONFIG_TCPIP_RECVMBOX_SIZE;CONFIG_LWIP_DHCP_DOES_ARP_CHECK;CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID;CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID;CONFIG_LWIP_DHCP_RESTORE_LAST_IP;CONFIG_LWIP_DHCP_OPTIONS_LEN;CONFIG_LWIP_NUM_NETIF_CLIENT_DATA;CONFIG_LWIP_DHCP_COARSE_TIMER_SECS;CONFIG_LWIP_DHCPS;CONFIG_LWIP_DHCPS_LEASE_UNIT;CONFIG_LWIP_DHCPS_MAX_STATION_NUM;CONFIG_LWIP_DHCPS_STATIC_ENTRIES;CONFIG_LWIP_AUTOIP;CONFIG_LWIP_IPV4;CONFIG_LWIP_IPV6;CONFIG_LWIP_IPV6_AUTOCONFIG;CONFIG_LWIP_IPV6_NUM_ADDRESSES;CONFIG_LWIP_IPV6_FORWARD;CONFIG_LWIP_NETIF_STATUS_CALLBACK;CONFIG_LWIP_NETIF_LOOPBACK;CONFIG_LWIP_LOOPBACK_MAX_PBUFS;CONFIG_LWIP_MAX_ACTIVE_TCP;CONFIG_LWIP_MAX_LISTENING_TCP;CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION;CONFIG_LWIP_TCP_MAXRTX;CONFIG_TCP_MAXRTX;CONFIG_LWIP_TCP_SYNMAXRTX;CONFIG_TCP_SYNMAXRTX;CONFIG_LWIP_TCP_MSS;CONFIG_TCP_MSS;CONFIG_LWIP_TCP_TMR_INTERVAL;CONFIG_LWIP_TCP_MSL;CONFIG_TCP_MSL;CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT;CONFIG_LWIP_TCP_SND_BUF_DEFAULT;CONFIG_TCP_SND_BUF_DEFAULT;CONFIG_LWIP_TCP_WND_DEFAULT;CONFIG_TCP_WND_DEFAULT;CONFIG_LWIP_TCP_RECVMBOX_SIZE;CONFIG_TCP_RECVMBOX_SIZE;CONFIG_LWIP_TCP_QUEUE_OOSEQ;CONFIG_TCP_QUEUE_OOSEQ;CONFIG_LWIP_TCP_OOSEQ_TIMEOUT;CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS;CONFIG_LWIP_TCP_SACK_OUT;CONFIG_LWIP_TCP_OVERSIZE_MSS;CONFIG_TCP_OVERSIZE_MSS;CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS;CONFIG_TCP_OVERSIZE_QUARTER_MSS;CONFIG_LWIP_TCP_OVERSIZE_DISABLE;CONFIG_TCP_OVERSIZE_DISABLE;CONFIG_LWIP_TCP_RTO_TIME;CONFIG_LWIP_MAX_UDP_PCBS;CONFIG_LWIP_UDP_RECVMBOX_SIZE;CONFIG_UDP_RECVMBOX_SIZE;CONFIG_LWIP_CHECKSUM_CHECK_IP;CONFIG_LWIP_CHECKSUM_CHECK_UDP;CONFIG_LWIP_CHECKSUM_CHECK_ICMP;CONFIG_LWIP_TCPIP_TASK_STACK_SIZE;CONFIG_TCPIP_TASK_STACK_SIZE;CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0;CONFIG_TCPIP_TASK_AFFINITY_CPU0;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1;CONFIG_TCPIP_TASK_AFFINITY_CPU1;CONFIG_LWIP_TCPIP_TASK_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY;CONFIG_LWIP_PPP_SUPPORT;CONFIG_PPP_SUPPORT;CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE;CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS;CONFIG_LWIP_SLIP_SUPPORT;CONFIG_LWIP_ICMP;CONFIG_LWIP_MULTICAST_PING;CONFIG_LWIP_BROADCAST_PING;CONFIG_LWIP_MAX_RAW_PCBS;CONFIG_LWIP_SNTP_MAX_SERVERS;CONFIG_LWIP_DHCP_GET_NTP_SRV;CONFIG_LWIP_SNTP_UPDATE_DELAY;CONFIG_LWIP_DNS_MAX_SERVERS;CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT;CONFIG_LWIP_BRIDGEIF_MAX_PORTS;CONFIG_LWIP_ESP_LWIP_ASSERT;CONFIG_LWIP_HOOK_TCP_ISN_NONE;CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT;CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM;CONFIG_LWIP_HOOK_IP6_ROUTE_NONE;CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT;CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM;CONFIG_LWIP_HOOK_ND6_GET_GW_NONE;CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT;CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM;CONFIG_LWIP_HOOK_IP6_INPUT_NONE;CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT;CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM;CONFIG_LWIP_DEBUG;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_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_MAX_CERTS;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI;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_SHA512_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_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_MQTT_PROTOCOL_311;CONFIG_MQTT_PROTOCOL_5;CONFIG_MQTT_TRANSPORT_SSL;CONFIG_MQTT_TRANSPORT_WEBSOCKET;CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE;CONFIG_MQTT_MSG_ID_INCREMENTAL;CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED;CONFIG_MQTT_REPORT_DELETED_MESSAGES;CONFIG_MQTT_USE_CUSTOM_CONFIG;CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED;CONFIG_MQTT_CUSTOM_OUTBOX;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_FRC1;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32_TIME_SYSCALL_USE_NONE;CONFIG_NVS_ASSERT_ERROR_CHECK;CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY;CONFIG_OPENTHREAD_ENABLED;CONFIG_OPENTHREAD_NETWORK_NAME;CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX;CONFIG_OPENTHREAD_NETWORK_CHANNEL;CONFIG_OPENTHREAD_NETWORK_PANID;CONFIG_OPENTHREAD_NETWORK_EXTPANID;CONFIG_OPENTHREAD_NETWORK_MASTERKEY;CONFIG_OPENTHREAD_NETWORK_PSKC;CONFIG_OPENTHREAD_XTAL_ACCURACY;CONFIG_OPENTHREAD_SPINEL_ONLY;CONFIG_OPENTHREAD_RX_ON_WHEN_IDLE;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2;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_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;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_SHARE_SPI1_BUS;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_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED;CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED;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_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_SPIFFS_MAX_PARTITIONS;CONFIG_SPIFFS_CACHE;CONFIG_SPIFFS_CACHE_WR;CONFIG_SPIFFS_CACHE_STATS;CONFIG_SPIFFS_PAGE_CHECK;CONFIG_SPIFFS_GC_MAX_RUNS;CONFIG_SPIFFS_GC_STATS;CONFIG_SPIFFS_PAGE_SIZE;CONFIG_SPIFFS_OBJ_NAME_LEN;CONFIG_SPIFFS_FOLLOW_SYMLINKS;CONFIG_SPIFFS_USE_MAGIC;CONFIG_SPIFFS_USE_MAGIC_LENGTH;CONFIG_SPIFFS_META_LENGTH;CONFIG_SPIFFS_USE_MTIME;CONFIG_SPIFFS_DBG;CONFIG_SPIFFS_API_DBG;CONFIG_SPIFFS_GC_DBG;CONFIG_SPIFFS_CACHE_DBG;CONFIG_SPIFFS_CHECK_DBG;CONFIG_SPIFFS_TEST_VISUALISATION;CONFIG_WS_TRANSPORT;CONFIG_WS_BUFFER_SIZE;CONFIG_WS_DYNAMIC_BUFFER;CONFIG_ULP_COPROC_ENABLED;CONFIG_ESP32_ULP_COPROC_ENABLED;CONFIG_UNITY_ENABLE_FLOAT;CONFIG_UNITY_ENABLE_DOUBLE;CONFIG_UNITY_ENABLE_64BIT;CONFIG_UNITY_ENABLE_COLOR;CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER;CONFIG_UNITY_ENABLE_FIXTURE;CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL;CONFIG_VFS_SUPPORT_IO;CONFIG_VFS_SUPPORT_DIR;CONFIG_VFS_SUPPORT_SELECT;CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_VFS_SELECT_IN_RAM;CONFIG_VFS_SUPPORT_TERMIOS;CONFIG_SUPPORT_TERMIOS;CONFIG_VFS_MAX_COUNT;CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_WL_SECTOR_SIZE_512;CONFIG_WL_SECTOR_SIZE_4096;CONFIG_WL_SECTOR_SIZE;CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES;CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT;CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION;CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN;CONFIG_WIFI_PROV_STA_FAST_SCAN;CONFIG_DSP_OPTIMIZATIONS_SUPPORTED;CONFIG_DSP_ANSI;CONFIG_DSP_OPTIMIZED;CONFIG_DSP_OPTIMIZATION;CONFIG_DSP_MAX_FFT_SIZE_512;CONFIG_DSP_MAX_FFT_SIZE_1024;CONFIG_DSP_MAX_FFT_SIZE_2048;CONFIG_DSP_MAX_FFT_SIZE_4096;CONFIG_DSP_MAX_FFT_SIZE_8192;CONFIG_DSP_MAX_FFT_SIZE_16384;CONFIG_DSP_MAX_FFT_SIZE_32768;CONFIG_DSP_MAX_FFT_SIZE;CONFIG_IDF_EXPERIMENTAL_FEATURES) +# List of deprecated options for backward compatibility +set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") +set(CONFIG_NO_BLOBS "") +set(CONFIG_ESP32_NO_BLOBS "") +set(CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS "") +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_APP_ROLLBACK_ENABLE "") +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_ESP32_APPTRACE_DEST_TRAX "") +set(CONFIG_ESP32_APPTRACE_DEST_NONE "y") +set(CONFIG_ESP32_APPTRACE_LOCK_ENABLE "y") +set(CONFIG_ADC2_DISABLE_DAC "y") +set(CONFIG_MCPWM_ISR_IN_IRAM "") +set(CONFIG_EVENT_LOOP_PROFILING "") +set(CONFIG_POST_EVENTS_FROM_ISR "y") +set(CONFIG_POST_EVENTS_FROM_IRAM_ISR "y") +set(CONFIG_GDBSTUB_SUPPORT_TASKS "y") +set(CONFIG_GDBSTUB_MAX_TASKS "32") +set(CONFIG_OTA_ALLOW_HTTP "") +set(CONFIG_TWO_UNIVERSAL_MAC_ADDRESS "") +set(CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS "y") +set(CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS "4") +set(CONFIG_ESP_SYSTEM_PD_FLASH "") +set(CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC "y") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL "") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC "") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 "") +set(CONFIG_ESP32_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_ESP32_XTAL_FREQ_26 "") +set(CONFIG_ESP32_XTAL_FREQ_40 "y") +set(CONFIG_ESP32_XTAL_FREQ_AUTO "") +set(CONFIG_ESP32_XTAL_FREQ "40") +set(CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE "y") +set(CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION "") +set(CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER "20") +set(CONFIG_ESP32_PHY_MAX_TX_POWER "20") +set(CONFIG_REDUCE_PHY_TX_POWER "") +set(CONFIG_ESP32_REDUCE_PHY_TX_POWER "") +set(CONFIG_SPIRAM_SUPPORT "") +set(CONFIG_ESP32_SPIRAM_SUPPORT "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_80 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_160 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_240 "y") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ "240") +set(CONFIG_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_ESP32_PANIC_PRINT_HALT "") +set(CONFIG_ESP32_PANIC_PRINT_REBOOT "y") +set(CONFIG_ESP32_PANIC_SILENT_REBOOT "") +set(CONFIG_ESP32_PANIC_GDBSTUB "") +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_ESP32_DEBUG_OCDAWARE "y") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_ESP32_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP32_BROWNOUT_DET_LVL "0") +set(CONFIG_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_TIMER_TASK_STACK_SIZE "3584") +set(CONFIG_ESP32_WIFI_ENABLED "y") +set(CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM "10") +set(CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM "32") +set(CONFIG_ESP32_WIFI_STATIC_TX_BUFFER "") +set(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER "y") +set(CONFIG_ESP32_WIFI_TX_BUFFER_TYPE "1") +set(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM "32") +set(CONFIG_ESP32_WIFI_CSI_ENABLED "") +set(CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED "y") +set(CONFIG_ESP32_WIFI_TX_BA_WIN "6") +set(CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED "y") +set(CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED "y") +set(CONFIG_ESP32_WIFI_RX_BA_WIN "6") +set(CONFIG_ESP32_WIFI_RX_BA_WIN "6") +set(CONFIG_ESP32_WIFI_NVS_ENABLED "y") +set(CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0 "y") +set(CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 "") +set(CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN "752") +set(CONFIG_ESP32_WIFI_MGMT_SBUF_NUM "32") +set(CONFIG_ESP32_WIFI_IRAM_OPT "y") +set(CONFIG_ESP32_WIFI_RX_IRAM_OPT "y") +set(CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE "y") +set(CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA "y") +set(CONFIG_WPA_MBEDTLS_CRYPTO "y") +set(CONFIG_WPA_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_WPA_WAPI_PSK "") +set(CONFIG_WPA_11KV_SUPPORT "") +set(CONFIG_WPA_MBO_SUPPORT "") +set(CONFIG_WPA_DPP_SUPPORT "") +set(CONFIG_WPA_11R_SUPPORT "") +set(CONFIG_WPA_WPS_SOFTAP_REGISTRAR "") +set(CONFIG_WPA_WPS_STRICT "") +set(CONFIG_WPA_DEBUG_PRINT "") +set(CONFIG_WPA_TESTING_OPTIONS "") +set(CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH "") +set(CONFIG_ESP32_ENABLE_COREDUMP_TO_UART "") +set(CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE "y") +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_L2_TO_L3_COPY "") +set(CONFIG_ESP_GRATUITOUS_ARP "y") +set(CONFIG_GARP_TMR_INTERVAL "60") +set(CONFIG_TCPIP_RECVMBOX_SIZE "32") +set(CONFIG_TCP_MAXRTX "12") +set(CONFIG_TCP_SYNMAXRTX "12") +set(CONFIG_TCP_MSS "1440") +set(CONFIG_TCP_MSL "60000") +set(CONFIG_TCP_SND_BUF_DEFAULT "5760") +set(CONFIG_TCP_WND_DEFAULT "5760") +set(CONFIG_TCP_RECVMBOX_SIZE "6") +set(CONFIG_TCP_QUEUE_OOSEQ "y") +set(CONFIG_TCP_OVERSIZE_MSS "y") +set(CONFIG_TCP_OVERSIZE_QUARTER_MSS "") +set(CONFIG_TCP_OVERSIZE_DISABLE "") +set(CONFIG_UDP_RECVMBOX_SIZE "6") +set(CONFIG_TCPIP_TASK_STACK_SIZE "3072") +set(CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY "y") +set(CONFIG_TCPIP_TASK_AFFINITY_CPU0 "") +set(CONFIG_TCPIP_TASK_AFFINITY_CPU1 "") +set(CONFIG_TCPIP_TASK_AFFINITY "0x7fffffff") +set(CONFIG_PPP_SUPPORT "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_HRT "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 "") +set(CONFIG_ESP32_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 "") +set(CONFIG_ESP32_ULP_COPROC_ENABLED "") +set(CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT "y") +set(CONFIG_SUPPORT_TERMIOS "y") +set(CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS "1") diff --git a/ESPIDFNEW/build/config/sdkconfig.h b/ESPIDFNEW/build/config/sdkconfig.h new file mode 100644 index 0000000..e01a26a --- /dev/null +++ b/ESPIDFNEW/build/config/sdkconfig.h @@ -0,0 +1,805 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) 5.2.2 Configuration Header + */ +#pragma once +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "Not determined" +#define CONFIG_SOC_TWAI_BRP_DIV_SUPPORTED "Not determined" +#define CONFIG_SOC_DPORT_WORKAROUND "Not determined" +#define CONFIG_SOC_CAPS_ECO_VER_MAX 301 +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_DAC_SUPPORTED 1 +#define CONFIG_SOC_UART_SUPPORTED 1 +#define CONFIG_SOC_MCPWM_SUPPORTED 1 +#define CONFIG_SOC_GPTIMER_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_HOST_SUPPORTED 1 +#define CONFIG_SOC_BT_SUPPORTED 1 +#define CONFIG_SOC_PCNT_SUPPORTED 1 +#define CONFIG_SOC_WIFI_SUPPORTED 1 +#define CONFIG_SOC_SDIO_SLAVE_SUPPORTED 1 +#define CONFIG_SOC_TWAI_SUPPORTED 1 +#define CONFIG_SOC_EFUSE_SUPPORTED 1 +#define CONFIG_SOC_EMAC_SUPPORTED 1 +#define CONFIG_SOC_ULP_SUPPORTED 1 +#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1 +#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_MEM_SUPPORTED 1 +#define CONFIG_SOC_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_SUPPORT_COEXISTENCE 1 +#define CONFIG_SOC_AES_SUPPORTED 1 +#define CONFIG_SOC_MPI_SUPPORTED 1 +#define CONFIG_SOC_SHA_SUPPORTED 1 +#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 +#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 +#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_BOD_SUPPORTED 1 +#define CONFIG_SOC_ULP_FSM_SUPPORTED 1 +#define CONFIG_SOC_CLK_TREE_SUPPORTED 1 +#define CONFIG_SOC_MPU_SUPPORTED 1 +#define CONFIG_SOC_WDT_SUPPORTED 1 +#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1 +#define CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL 5 +#define CONFIG_SOC_XTAL_SUPPORT_26M 1 +#define CONFIG_SOC_XTAL_SUPPORT_40M 1 +#define CONFIG_SOC_XTAL_SUPPORT_AUTO_DETECT 1 +#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DMA_SUPPORTED 1 +#define CONFIG_SOC_ADC_PERIPH_NUM 2 +#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 10 +#define CONFIG_SOC_ADC_ATTEN_NUM 4 +#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 2 +#define CONFIG_SOC_ADC_PATT_LEN_MAX 16 +#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 9 +#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 2 +#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 +#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 0 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 2 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 20 +#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 9 +#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_SHARED_POWER 1 +#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1 +#define CONFIG_SOC_IDCACHE_PER_CORE 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 64 +#define CONFIG_SOC_DAC_CHAN_NUM 2 +#define CONFIG_SOC_DAC_RESOLUTION 8 +#define CONFIG_SOC_DAC_DMA_16BIT_ALIGN 1 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 40 +#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0xFFFFFFFFFF +#define CONFIG_SOC_GPIO_IN_RANGE_MAX 39 +#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 33 +#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0xEF0FEA +#define CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX 1 +#define CONFIG_SOC_I2C_NUM 2 +#define CONFIG_SOC_I2C_FIFO_LEN 32 +#define CONFIG_SOC_I2C_CMD_REG_NUM 16 +#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 +#define CONFIG_SOC_I2C_SUPPORT_APB 1 +#define CONFIG_SOC_I2C_STOP_INDEPENDENT 1 +#define CONFIG_SOC_I2S_NUM 2 +#define CONFIG_SOC_I2S_HW_VERSION_1 1 +#define CONFIG_SOC_I2S_SUPPORTS_APLL 1 +#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1 +#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1 +#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 1 +#define CONFIG_SOC_I2S_SUPPORTS_ADC_DAC 1 +#define CONFIG_SOC_I2S_SUPPORTS_ADC 1 +#define CONFIG_SOC_I2S_SUPPORTS_DAC 1 +#define CONFIG_SOC_I2S_SUPPORTS_LCD_CAMERA 1 +#define CONFIG_SOC_I2S_TRANS_SIZE_ALIGN_WORD 1 +#define CONFIG_SOC_I2S_LCD_I80_VARIANT 1 +#define CONFIG_SOC_LCD_I80_SUPPORTED 1 +#define CONFIG_SOC_LCD_I80_BUSES 2 +#define CONFIG_SOC_LCD_I80_BUS_WIDTH 24 +#define CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX 1 +#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_REF_TICK 1 +#define CONFIG_SOC_LEDC_SUPPORT_HS_MODE 1 +#define CONFIG_SOC_LEDC_CHANNEL_NUM 8 +#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 20 +#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_MMU_PERIPH_NUM 2 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 3 +#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 8 +#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 8 +#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 8 +#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 64 +#define CONFIG_SOC_RMT_SUPPORT_REF_TICK 1 +#define CONFIG_SOC_RMT_SUPPORT_APB 1 +#define CONFIG_SOC_RMT_CHANNEL_CLK_INDEPENDENT 1 +#define CONFIG_SOC_RTCIO_PIN_COUNT 18 +#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_SDM_GROUPS 1 +#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED 1 +#define CONFIG_SOC_SPI_AS_CS_SUPPORTED 1 +#define CONFIG_SOC_SPI_PERIPH_NUM 3 +#define CONFIG_SOC_SPI_DMA_CHAN_NUM 2 +#define CONFIG_SOC_SPI_MAX_CS_NUM 3 +#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1 +#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 +#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 8192 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 +#define CONFIG_SOC_TIMER_GROUPS 2 +#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 2 +#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 64 +#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 4 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1 +#define CONFIG_SOC_TOUCH_VERSION_1 1 +#define CONFIG_SOC_TOUCH_SENSOR_NUM 10 +#define CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX 0xFF +#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1 +#define CONFIG_SOC_TWAI_BRP_MIN 2 +#define CONFIG_SOC_TWAI_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT 1 +#define CONFIG_SOC_UART_NUM 3 +#define CONFIG_SOC_UART_HP_NUM 3 +#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_REF_TICK 1 +#define CONFIG_SOC_UART_FIFO_LEN 128 +#define CONFIG_SOC_UART_BITRATE_MAX 5000000 +#define CONFIG_SOC_SPIRAM_SUPPORTED 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 +#define CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG 1 +#define CONFIG_SOC_SHA_ENDIANNESS_BE 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA256 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA384 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512 1 +#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 +#define CONFIG_SOC_MPI_OPERATIONS_NUM 1 +#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096 +#define CONFIG_SOC_AES_SUPPORT_AES_128 1 +#define CONFIG_SOC_AES_SUPPORT_AES_192 1 +#define CONFIG_SOC_AES_SUPPORT_AES_256 1 +#define CONFIG_SOC_SECURE_BOOT_V1 1 +#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 1 +#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 32 +#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 +#define CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 +#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 +#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1 +#define CONFIG_SOC_CLK_APLL_SUPPORTED 1 +#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1 +#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1 +#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1 +#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_USE_IOMUX 1 +#define CONFIG_SOC_SDMMC_NUM_SLOTS 2 +#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_NAN_SUPPORT 1 +#define CONFIG_SOC_BLE_SUPPORTED 1 +#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 +#define CONFIG_SOC_BT_CLASSIC_SUPPORTED 1 +#define CONFIG_SOC_BLUFI_SUPPORTED 1 +#define CONFIG_SOC_ULP_HAS_ADC 1 +#define CONFIG_SOC_PHY_COMBO_MODULE 1 +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TOOLCHAIN "gcc" +#define CONFIG_IDF_TARGET_ARCH_XTENSA 1 +#define CONFIG_IDF_TARGET_ARCH "xtensa" +#define CONFIG_IDF_TARGET "esp32" +#define CONFIG_IDF_INIT_VERSION "5.2.2" +#define CONFIG_IDF_TARGET_ESP32 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0000 +#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 0x1000 +#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 3 +#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_V1_SUPPORTED 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_HAS_UART_BUF_SWITCH 1 +#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1 +#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 +#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM -1 +#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 +#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 +#define CONFIG_ESPTOOLPY_FLASHMODE "dio" +#define CONFIG_ESPTOOLPY_FLASHFREQ_40M 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ "40m" +#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB" +#define CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE 1 +#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_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_RT_LIB_GCCLIB 1 +#define CONFIG_COMPILER_RT_LIB_NAME "gcc" +#define CONFIG_APPTRACE_DEST_NONE 1 +#define CONFIG_APPTRACE_DEST_UART_NONE 1 +#define CONFIG_APPTRACE_UART_TASK_PRIO 1 +#define CONFIG_APPTRACE_LOCK_ENABLE 1 +#define CONFIG_BT_ALARM_MAX_NUM 50 +#define CONFIG_ADC_DISABLE_DAC 1 +#define CONFIG_ADC_CAL_EFUSE_TP_ENABLE 1 +#define CONFIG_ADC_CAL_EFUSE_VREF_ENABLE 1 +#define CONFIG_ADC_CAL_LUT_ENABLE 1 +#define CONFIG_SPI_MASTER_ISR_IN_IRAM 1 +#define CONFIG_SPI_SLAVE_ISR_IN_IRAM 1 +#define CONFIG_TWAI_ERRATA_FIX_BUS_OFF_REC 1 +#define CONFIG_TWAI_ERRATA_FIX_TX_INTR_LOST 1 +#define CONFIG_TWAI_ERRATA_FIX_RX_FRAME_INVALID 1 +#define CONFIG_TWAI_ERRATA_FIX_RX_FIFO_CORRUPT 1 +#define CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM 1 +#define CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_DAC_DMA_AUTO_16BIT_ALIGN 1 +#define CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 1 +#define CONFIG_EFUSE_MAX_BLK_LEN 192 +#define CONFIG_ESP_TLS_USING_MBEDTLS 1 +#define CONFIG_ADC_CALI_EFUSE_TP_ENABLE 1 +#define CONFIG_ADC_CALI_EFUSE_VREF_ENABLE 1 +#define CONFIG_ADC_CALI_LUT_ENABLE 1 +#define CONFIG_ADC_DISABLE_DAC_OUTPUT 1 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 +#define CONFIG_ETH_ENABLED 1 +#define CONFIG_ETH_USE_ESP32_EMAC 1 +#define CONFIG_ETH_PHY_INTERFACE_RMII 1 +#define CONFIG_ETH_RMII_CLK_INPUT 1 +#define CONFIG_ETH_RMII_CLK_IN_GPIO 0 +#define CONFIG_ETH_DMA_BUFFER_SIZE 512 +#define CONFIG_ETH_DMA_RX_BUFFER_NUM 10 +#define CONFIG_ETH_DMA_TX_BUFFER_NUM 10 +#define CONFIG_ETH_USE_SPI_ETHERNET 1 +#define CONFIG_ESP_EVENT_POST_FROM_ISR 1 +#define CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR 1 +#define CONFIG_ESP_GDBSTUB_ENABLED 1 +#define CONFIG_ESP_GDBSTUB_SUPPORT_TASKS 1 +#define CONFIG_ESP_GDBSTUB_MAX_TASKS 32 +#define CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS 1 +#define CONFIG_HTTPD_MAX_REQ_HDR_LEN 1024 +#define CONFIG_HTTPD_MAX_URI_LEN 1024 +#define CONFIG_HTTPD_ERR_RESP_NO_DELAY 1 +#define CONFIG_HTTPD_PURGE_BUF_LEN 32 +#define CONFIG_ESP32_REV_MIN_0 1 +#define CONFIG_ESP32_REV_MIN 0 +#define CONFIG_ESP32_REV_MIN_FULL 0 +#define CONFIG_ESP_REV_MIN_FULL 0 +#define CONFIG_ESP32_REV_MAX_FULL 399 +#define CONFIG_ESP_REV_MAX_FULL 399 +#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_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_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_PERIPH_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_XTAL_FREQ_40 1 +#define CONFIG_XTAL_FREQ 40 +#define CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE 32 +#define CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL 120 +#define CONFIG_ESP_NETIF_TCPIP_LWIP 1 +#define CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API 1 +#define CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE 1 +#define CONFIG_ESP_PHY_MAX_WIFI_TX_POWER 20 +#define CONFIG_ESP_PHY_MAX_TX_POWER 20 +#define CONFIG_ESP_PHY_RF_CAL_PARTIAL 1 +#define CONFIG_ESP_PHY_CALIBRATION_MODE 0 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 240 +#define CONFIG_ESP32_TRACEMEM_RESERVE_DRAM 0x0 +#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1 +#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0 +#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_UART 1 +#define CONFIG_ESP_CONSOLE_UART_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_BROWNOUT_DET 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 0 +#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 1 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 +#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1 +#define CONFIG_ESP_IPC_ISR_ENABLE 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 0x1 +#define CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 1 +#define CONFIG_ESP_TIMER_IMPL_TG0_LAC 1 +#define CONFIG_ESP_WIFI_ENABLED 1 +#define CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM 10 +#define CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM 32 +#define CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER 1 +#define CONFIG_ESP_WIFI_TX_BUFFER_TYPE 1 +#define CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM 32 +#define CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER 1 +#define CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF 0 +#define CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF 5 +#define CONFIG_ESP_WIFI_AMPDU_TX_ENABLED 1 +#define CONFIG_ESP_WIFI_TX_BA_WIN 6 +#define CONFIG_ESP_WIFI_AMPDU_RX_ENABLED 1 +#define CONFIG_ESP_WIFI_RX_BA_WIN 6 +#define CONFIG_ESP_WIFI_NVS_ENABLED 1 +#define CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0 1 +#define CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN 752 +#define CONFIG_ESP_WIFI_MGMT_SBUF_NUM 32 +#define CONFIG_ESP_WIFI_IRAM_OPT 1 +#define CONFIG_ESP_WIFI_RX_IRAM_OPT 1 +#define CONFIG_ESP_WIFI_ENABLE_WPA3_SAE 1 +#define CONFIG_ESP_WIFI_ENABLE_SAE_PK 1 +#define CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT 1 +#define CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA 1 +#define CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE 1 +#define CONFIG_ESP_WIFI_SOFTAP_SUPPORT 1 +#define CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM 7 +#define CONFIG_ESP_WIFI_MBEDTLS_CRYPTO 1 +#define CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT 1 +#define CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT 1 +#define CONFIG_ESP_COREDUMP_ENABLE_TO_NONE 1 +#define CONFIG_FATFS_VOLUME_COUNT 2 +#define CONFIG_FATFS_LFN_NONE 1 +#define CONFIG_FATFS_SECTOR_4096 1 +#define CONFIG_FATFS_CODEPAGE_437 1 +#define CONFIG_FATFS_CODEPAGE 437 +#define CONFIG_FATFS_FS_LOCK 0 +#define CONFIG_FATFS_TIMEOUT_MS 10000 +#define CONFIG_FATFS_PER_FILE_CACHE 1 +#define CONFIG_FATFS_VFS_FSTAT_BLKSIZE 0 +#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_TIMER_SERVICE_TASK_NAME "Tmr Svc" +#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_USE_TRACE_FACILITY 1 +#define CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS 1 +#define CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID 1 +#define CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS 1 +#define CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U32 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_CORETIMER 1 +#define CONFIG_FREERTOS_CORETIMER_0 1 +#define CONFIG_FREERTOS_SYSTICK_USES_CCOUNT 1 +#define CONFIG_FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER 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_HAL_ASSERTION_EQUALS_SYSTEM 1 +#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 +#define CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM 1 +#define CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM 1 +#define CONFIG_HEAP_POISONING_DISABLED 1 +#define CONFIG_HEAP_TRACING_OFF 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_COLORS 1 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_LWIP_ENABLE 1 +#define CONFIG_LWIP_LOCAL_HOSTNAME "espressif" +#define CONFIG_LWIP_TCPIP_TASK_PRIO 18 +#define CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES 1 +#define CONFIG_LWIP_TIMERS_ONDEMAND 1 +#define CONFIG_LWIP_ND6 1 +#define CONFIG_LWIP_MAX_SOCKETS 10 +#define CONFIG_LWIP_SO_REUSE 1 +#define CONFIG_LWIP_SO_REUSE_RXTOALL 1 +#define CONFIG_LWIP_IP_DEFAULT_TTL 64 +#define CONFIG_LWIP_IP4_FRAG 1 +#define CONFIG_LWIP_IP6_FRAG 1 +#define CONFIG_LWIP_IP_REASS_MAX_PBUFS 10 +#define CONFIG_LWIP_ESP_GRATUITOUS_ARP 1 +#define CONFIG_LWIP_GARP_TMR_INTERVAL 60 +#define CONFIG_LWIP_ESP_MLDV6_REPORT 1 +#define CONFIG_LWIP_MLDV6_TMR_INTERVAL 40 +#define CONFIG_LWIP_TCPIP_RECVMBOX_SIZE 32 +#define CONFIG_LWIP_DHCP_DOES_ARP_CHECK 1 +#define CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID 1 +#define CONFIG_LWIP_DHCP_OPTIONS_LEN 68 +#define CONFIG_LWIP_NUM_NETIF_CLIENT_DATA 0 +#define CONFIG_LWIP_DHCP_COARSE_TIMER_SECS 1 +#define CONFIG_LWIP_DHCPS 1 +#define CONFIG_LWIP_DHCPS_LEASE_UNIT 60 +#define CONFIG_LWIP_DHCPS_MAX_STATION_NUM 8 +#define CONFIG_LWIP_DHCPS_STATIC_ENTRIES 1 +#define CONFIG_LWIP_IPV4 1 +#define CONFIG_LWIP_IPV6 1 +#define CONFIG_LWIP_IPV6_NUM_ADDRESSES 3 +#define CONFIG_LWIP_NETIF_LOOPBACK 1 +#define CONFIG_LWIP_LOOPBACK_MAX_PBUFS 8 +#define CONFIG_LWIP_MAX_ACTIVE_TCP 16 +#define CONFIG_LWIP_MAX_LISTENING_TCP 16 +#define CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION 1 +#define CONFIG_LWIP_TCP_MAXRTX 12 +#define CONFIG_LWIP_TCP_SYNMAXRTX 12 +#define CONFIG_LWIP_TCP_MSS 1440 +#define CONFIG_LWIP_TCP_TMR_INTERVAL 250 +#define CONFIG_LWIP_TCP_MSL 60000 +#define CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT 20000 +#define CONFIG_LWIP_TCP_SND_BUF_DEFAULT 5760 +#define CONFIG_LWIP_TCP_WND_DEFAULT 5760 +#define CONFIG_LWIP_TCP_RECVMBOX_SIZE 6 +#define CONFIG_LWIP_TCP_QUEUE_OOSEQ 1 +#define CONFIG_LWIP_TCP_OOSEQ_TIMEOUT 6 +#define CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS 4 +#define CONFIG_LWIP_TCP_OVERSIZE_MSS 1 +#define CONFIG_LWIP_TCP_RTO_TIME 1500 +#define CONFIG_LWIP_MAX_UDP_PCBS 16 +#define CONFIG_LWIP_UDP_RECVMBOX_SIZE 6 +#define CONFIG_LWIP_CHECKSUM_CHECK_ICMP 1 +#define CONFIG_LWIP_TCPIP_TASK_STACK_SIZE 3072 +#define CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY 1 +#define CONFIG_LWIP_TCPIP_TASK_AFFINITY 0x7FFFFFFF +#define CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE 3 +#define CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS 5 +#define CONFIG_LWIP_ICMP 1 +#define CONFIG_LWIP_MAX_RAW_PCBS 16 +#define CONFIG_LWIP_SNTP_MAX_SERVERS 1 +#define CONFIG_LWIP_SNTP_UPDATE_DELAY 3600000 +#define CONFIG_LWIP_DNS_MAX_SERVERS 3 +#define CONFIG_LWIP_BRIDGEIF_MAX_PORTS 7 +#define CONFIG_LWIP_ESP_LWIP_ASSERT 1 +#define CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT 1 +#define CONFIG_LWIP_HOOK_IP6_ROUTE_NONE 1 +#define CONFIG_LWIP_HOOK_ND6_GET_GW_NONE 1 +#define CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE 1 +#define CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE 1 +#define CONFIG_LWIP_HOOK_IP6_INPUT_NONE 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_CMAC_C 1 +#define CONFIG_MBEDTLS_HARDWARE_AES 1 +#define CONFIG_MBEDTLS_HARDWARE_MPI 1 +#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_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_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_ECP_FIXED_POINT_OPTIM 1 +#define CONFIG_MBEDTLS_ERROR_STRINGS 1 +#define CONFIG_MQTT_PROTOCOL_311 1 +#define CONFIG_MQTT_TRANSPORT_SSL 1 +#define CONFIG_MQTT_TRANSPORT_WEBSOCKET 1 +#define CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE 1 +#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF 1 +#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR 1 +#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT 1 +#define CONFIG_OPENTHREAD_NETWORK_NAME "OpenThread-ESP" +#define CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX "fd00:db8:a0:0::/64" +#define CONFIG_OPENTHREAD_NETWORK_CHANNEL 15 +#define CONFIG_OPENTHREAD_NETWORK_PANID 0x1234 +#define CONFIG_OPENTHREAD_NETWORK_EXTPANID "dead00beef00cafe" +#define CONFIG_OPENTHREAD_NETWORK_MASTERKEY "00112233445566778899aabbccddeeff" +#define CONFIG_OPENTHREAD_NETWORK_PSKC "104810e2315100afd6bc9215a6bfac53" +#define CONFIG_OPENTHREAD_XTAL_ACCURACY 130 +#define CONFIG_OPENTHREAD_RX_ON_WHEN_IDLE 1 +#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0 1 +#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1 1 +#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2 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_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_SUPPORTED 1 +#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED 1 +#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED 1 +#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED 1 +#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED 1 +#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1 +#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1 +#define CONFIG_SPIFFS_MAX_PARTITIONS 3 +#define CONFIG_SPIFFS_CACHE 1 +#define CONFIG_SPIFFS_CACHE_WR 1 +#define CONFIG_SPIFFS_PAGE_CHECK 1 +#define CONFIG_SPIFFS_GC_MAX_RUNS 10 +#define CONFIG_SPIFFS_PAGE_SIZE 256 +#define CONFIG_SPIFFS_OBJ_NAME_LEN 32 +#define CONFIG_SPIFFS_USE_MAGIC 1 +#define CONFIG_SPIFFS_USE_MAGIC_LENGTH 1 +#define CONFIG_SPIFFS_META_LENGTH 4 +#define CONFIG_SPIFFS_USE_MTIME 1 +#define CONFIG_WS_TRANSPORT 1 +#define CONFIG_WS_BUFFER_SIZE 1024 +#define CONFIG_UNITY_ENABLE_FLOAT 1 +#define CONFIG_UNITY_ENABLE_DOUBLE 1 +#define CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER 1 +#define CONFIG_VFS_SUPPORT_IO 1 +#define CONFIG_VFS_SUPPORT_DIR 1 +#define CONFIG_VFS_SUPPORT_SELECT 1 +#define CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT 1 +#define CONFIG_VFS_SUPPORT_TERMIOS 1 +#define CONFIG_VFS_MAX_COUNT 8 +#define CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS 1 +#define CONFIG_WL_SECTOR_SIZE_4096 1 +#define CONFIG_WL_SECTOR_SIZE 4096 +#define CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES 16 +#define CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT 30 +#define CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN 1 +#define CONFIG_DSP_OPTIMIZATIONS_SUPPORTED 1 +#define CONFIG_DSP_OPTIMIZED 1 +#define CONFIG_DSP_OPTIMIZATION 1 +#define CONFIG_DSP_MAX_FFT_SIZE_4096 1 +#define CONFIG_DSP_MAX_FFT_SIZE 4096 + +/* List of deprecated options */ +#define CONFIG_ADC2_DISABLE_DAC CONFIG_ADC_DISABLE_DAC +#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 +#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_ESP32_APPTRACE_DEST_NONE CONFIG_APPTRACE_DEST_NONE +#define CONFIG_ESP32_APPTRACE_LOCK_ENABLE CONFIG_APPTRACE_LOCK_ENABLE +#define CONFIG_ESP32_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_ESP32_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 +#define CONFIG_ESP32_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE +#define CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_240 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ +#define CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY +#define CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE CONFIG_ESP_COREDUMP_ENABLE_TO_NONE +#define CONFIG_ESP32_PANIC_PRINT_REBOOT CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT +#define CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE +#define CONFIG_ESP32_PHY_MAX_TX_POWER CONFIG_ESP_PHY_MAX_TX_POWER +#define CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER CONFIG_ESP_PHY_MAX_WIFI_TX_POWER +#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_ESP32_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES +#define CONFIG_ESP32_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED CONFIG_ESP_WIFI_AMPDU_RX_ENABLED +#define CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED CONFIG_ESP_WIFI_AMPDU_TX_ENABLED +#define CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM +#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER +#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM +#define CONFIG_ESP32_WIFI_ENABLED CONFIG_ESP_WIFI_ENABLED +#define CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA +#define CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE CONFIG_ESP_WIFI_ENABLE_WPA3_SAE +#define CONFIG_ESP32_WIFI_IRAM_OPT CONFIG_ESP_WIFI_IRAM_OPT +#define CONFIG_ESP32_WIFI_MGMT_SBUF_NUM CONFIG_ESP_WIFI_MGMT_SBUF_NUM +#define CONFIG_ESP32_WIFI_NVS_ENABLED CONFIG_ESP_WIFI_NVS_ENABLED +#define CONFIG_ESP32_WIFI_RX_BA_WIN CONFIG_ESP_WIFI_RX_BA_WIN +#define CONFIG_ESP32_WIFI_RX_IRAM_OPT CONFIG_ESP_WIFI_RX_IRAM_OPT +#define CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN +#define CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM +#define CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0 CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0 +#define CONFIG_ESP32_WIFI_TX_BA_WIN CONFIG_ESP_WIFI_TX_BA_WIN +#define CONFIG_ESP32_WIFI_TX_BUFFER_TYPE CONFIG_ESP_WIFI_TX_BUFFER_TYPE +#define CONFIG_ESP32_XTAL_FREQ CONFIG_XTAL_FREQ +#define CONFIG_ESP32_XTAL_FREQ_40 CONFIG_XTAL_FREQ_40 +#define CONFIG_ESP_GRATUITOUS_ARP CONFIG_LWIP_ESP_GRATUITOUS_ARP +#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#define CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR +#define CONFIG_GARP_TMR_INTERVAL CONFIG_LWIP_GARP_TMR_INTERVAL +#define CONFIG_GDBSTUB_MAX_TASKS CONFIG_ESP_GDBSTUB_MAX_TASKS +#define CONFIG_GDBSTUB_SUPPORT_TASKS CONFIG_ESP_GDBSTUB_SUPPORT_TASKS +#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_NUMBER_OF_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES +#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_POST_EVENTS_FROM_IRAM_ISR CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR +#define CONFIG_POST_EVENTS_FROM_ISR CONFIG_ESP_EVENT_POST_FROM_ISR +#define CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS +#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_SUPPORT_TERMIOS CONFIG_VFS_SUPPORT_TERMIOS +#define CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT +#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_TCPIP_RECVMBOX_SIZE CONFIG_LWIP_TCPIP_RECVMBOX_SIZE +#define CONFIG_TCPIP_TASK_AFFINITY CONFIG_LWIP_TCPIP_TASK_AFFINITY +#define CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY +#define CONFIG_TCPIP_TASK_STACK_SIZE CONFIG_LWIP_TCPIP_TASK_STACK_SIZE +#define CONFIG_TCP_MAXRTX CONFIG_LWIP_TCP_MAXRTX +#define CONFIG_TCP_MSL CONFIG_LWIP_TCP_MSL +#define CONFIG_TCP_MSS CONFIG_LWIP_TCP_MSS +#define CONFIG_TCP_OVERSIZE_MSS CONFIG_LWIP_TCP_OVERSIZE_MSS +#define CONFIG_TCP_QUEUE_OOSEQ CONFIG_LWIP_TCP_QUEUE_OOSEQ +#define CONFIG_TCP_RECVMBOX_SIZE CONFIG_LWIP_TCP_RECVMBOX_SIZE +#define CONFIG_TCP_SND_BUF_DEFAULT CONFIG_LWIP_TCP_SND_BUF_DEFAULT +#define CONFIG_TCP_SYNMAXRTX CONFIG_LWIP_TCP_SYNMAXRTX +#define CONFIG_TCP_WND_DEFAULT CONFIG_LWIP_TCP_WND_DEFAULT +#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 +#define CONFIG_TRACEMEM_RESERVE_DRAM CONFIG_ESP32_TRACEMEM_RESERVE_DRAM +#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE +#define CONFIG_WPA_MBEDTLS_CRYPTO CONFIG_ESP_WIFI_MBEDTLS_CRYPTO +#define CONFIG_WPA_MBEDTLS_TLS_CLIENT CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT diff --git a/ESPIDFNEW/build/config/sdkconfig.json b/ESPIDFNEW/build/config/sdkconfig.json new file mode 100644 index 0000000..11c909b --- /dev/null +++ b/ESPIDFNEW/build/config/sdkconfig.json @@ -0,0 +1,1108 @@ +{ + "ADC_CALI_EFUSE_TP_ENABLE": true, + "ADC_CALI_EFUSE_VREF_ENABLE": true, + "ADC_CALI_LUT_ENABLE": true, + "ADC_CALI_SUPPRESS_DEPRECATE_WARN": false, + "ADC_CAL_EFUSE_TP_ENABLE": true, + "ADC_CAL_EFUSE_VREF_ENABLE": true, + "ADC_CAL_LUT_ENABLE": true, + "ADC_CONTINUOUS_ISR_IRAM_SAFE": false, + "ADC_DISABLE_DAC": true, + "ADC_DISABLE_DAC_OUTPUT": true, + "ADC_ONESHOT_CTRL_FUNC_IN_IRAM": false, + "ADC_SUPPRESS_DEPRECATE_WARN": false, + "APPTRACE_DEST_JTAG": false, + "APPTRACE_DEST_NONE": true, + "APPTRACE_DEST_UART1": false, + "APPTRACE_DEST_UART2": false, + "APPTRACE_DEST_UART_NONE": true, + "APPTRACE_LOCK_ENABLE": true, + "APPTRACE_UART_TASK_PRIO": 1, + "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_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false, + "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS": false, + "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_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_OFFSET_IN_FLASH": 4096, + "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_8V": false, + "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "BT_ALARM_MAX_NUM": 50, + "BT_ENABLED": false, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "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_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_WARN_WRITE_STRINGS": false, + "DAC_CTRL_FUNC_IN_IRAM": false, + "DAC_DMA_AUTO_16BIT_ALIGN": true, + "DAC_ENABLE_DEBUG_LOG": false, + "DAC_ISR_IRAM_SAFE": false, + "DAC_SUPPRESS_DEPRECATE_WARN": false, + "DSP_ANSI": false, + "DSP_MAX_FFT_SIZE": 4096, + "DSP_MAX_FFT_SIZE_1024": false, + "DSP_MAX_FFT_SIZE_16384": false, + "DSP_MAX_FFT_SIZE_2048": false, + "DSP_MAX_FFT_SIZE_32768": false, + "DSP_MAX_FFT_SIZE_4096": true, + "DSP_MAX_FFT_SIZE_512": false, + "DSP_MAX_FFT_SIZE_8192": false, + "DSP_OPTIMIZATION": 1, + "DSP_OPTIMIZATIONS_SUPPORTED": true, + "DSP_OPTIMIZED": true, + "EFUSE_CODE_SCHEME_COMPAT_3_4": true, + "EFUSE_CODE_SCHEME_COMPAT_NONE": false, + "EFUSE_CODE_SCHEME_COMPAT_REPEAT": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 192, + "EFUSE_VIRTUAL": false, + "ESP32_DISABLE_BASIC_ROM_CONSOLE": false, + "ESP32_REV_MAX_FULL": 399, + "ESP32_REV_MIN": 0, + "ESP32_REV_MIN_0": true, + "ESP32_REV_MIN_1": false, + "ESP32_REV_MIN_1_1": false, + "ESP32_REV_MIN_2": false, + "ESP32_REV_MIN_3": false, + "ESP32_REV_MIN_3_1": false, + "ESP32_REV_MIN_FULL": 0, + "ESP32_TRACEMEM_RESERVE_DRAM": 0, + "ESP32_TRAX": false, + "ESP32_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32_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": "40m", + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_26M": false, + "ESPTOOLPY_FLASHFREQ_40M": true, + "ESPTOOLPY_FLASHFREQ_80M": false, + "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_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": true, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 0, + "ESP_BROWNOUT_DET_LVL_SEL_0": true, + "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": false, + "ESP_CONSOLE_NONE": false, + "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_COREDUMP_ENABLE_TO_FLASH": false, + "ESP_COREDUMP_ENABLE_TO_NONE": true, + "ESP_COREDUMP_ENABLE_TO_UART": false, + "ESP_DEBUG_OCDAWARE": true, + "ESP_DEBUG_STUBS_ENABLE": false, + "ESP_DEFAULT_CPU_FREQ_MHZ": 240, + "ESP_DEFAULT_CPU_FREQ_MHZ_160": false, + "ESP_DEFAULT_CPU_FREQ_MHZ_240": true, + "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, + "ESP_ERR_TO_NAME_LOOKUP": true, + "ESP_EVENT_LOOP_PROFILING": false, + "ESP_EVENT_POST_FROM_IRAM_ISR": true, + "ESP_EVENT_POST_FROM_ISR": true, + "ESP_GDBSTUB_ENABLED": true, + "ESP_GDBSTUB_MAX_TASKS": 32, + "ESP_GDBSTUB_SUPPORT_TASKS": true, + "ESP_HTTPS_OTA_ALLOW_HTTP": false, + "ESP_HTTPS_OTA_DECRYPT_CB": false, + "ESP_HTTPS_SERVER_ENABLE": false, + "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH": false, + "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH": false, + "ESP_HTTP_CLIENT_ENABLE_HTTPS": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_ISR_ENABLE": true, + "ESP_IPC_TASK_STACK_SIZE": 1024, + "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_IGNORE_MAC_CRC_ERROR": false, + "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_NETIF_BRIDGE_EN": false, + "ESP_NETIF_IP_LOST_TIMER_INTERVAL": 120, + "ESP_NETIF_L2_TAP": false, + "ESP_NETIF_LOOPBACK": false, + "ESP_NETIF_RECEIVE_REPORT_ERRORS": false, + "ESP_NETIF_TCPIP_LWIP": true, + "ESP_NETIF_USES_TCPIP_WITH_BSD_API": true, + "ESP_PANIC_HANDLER_IRAM": false, + "ESP_PHY_CALIBRATION_AND_DATA_STORAGE": true, + "ESP_PHY_CALIBRATION_MODE": 0, + "ESP_PHY_INIT_DATA_IN_PARTITION": false, + "ESP_PHY_MAX_TX_POWER": 20, + "ESP_PHY_MAX_WIFI_TX_POWER": 20, + "ESP_PHY_PLL_TRACK_DEBUG": false, + "ESP_PHY_REDUCE_TX_POWER": false, + "ESP_PHY_RF_CAL_FULL": false, + "ESP_PHY_RF_CAL_NONE": false, + "ESP_PHY_RF_CAL_PARTIAL": true, + "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0": true, + "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1": true, + "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2": true, + "ESP_REV_MAX_FULL": 399, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_MZ_CRC32": true, + "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_UART_BUF_SWITCH": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": -1, + "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": false, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, + "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000, + "ESP_SYSTEM_BROWNOUT_INTR": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_5": false, + "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM": false, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_SYSTEM_GDBSTUB_RUNTIME": false, + "ESP_SYSTEM_PANIC_GDBSTUB": false, + "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_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_TG0_LAC": true, + "ESP_TIMER_INTERRUPT_LEVEL": 1, + "ESP_TIMER_ISR_AFFINITY": 1, + "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, + "ESP_TLS_CLIENT_SESSION_TICKETS": false, + "ESP_TLS_INSECURE": false, + "ESP_TLS_PSK_VERIFICATION": false, + "ESP_TLS_SERVER": false, + "ESP_TLS_USE_SECURE_ELEMENT": false, + "ESP_TLS_USING_MBEDTLS": true, + "ESP_WIFI_11KV_SUPPORT": false, + "ESP_WIFI_11R_SUPPORT": false, + "ESP_WIFI_AMPDU_RX_ENABLED": true, + "ESP_WIFI_AMPDU_TX_ENABLED": true, + "ESP_WIFI_CSI_ENABLED": false, + "ESP_WIFI_DEBUG_PRINT": false, + "ESP_WIFI_DPP_SUPPORT": false, + "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM": 32, + "ESP_WIFI_DYNAMIC_RX_MGMT_BUF": 0, + "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER": false, + "ESP_WIFI_DYNAMIC_TX_BUFFER": true, + "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM": 32, + "ESP_WIFI_ENABLED": true, + "ESP_WIFI_ENABLE_SAE_PK": true, + "ESP_WIFI_ENABLE_WPA3_OWE_STA": true, + "ESP_WIFI_ENABLE_WPA3_SAE": true, + "ESP_WIFI_ENTERPRISE_SUPPORT": true, + "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER": false, + "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM": 7, + "ESP_WIFI_EXTRA_IRAM_OPT": false, + "ESP_WIFI_GMAC_SUPPORT": false, + "ESP_WIFI_IRAM_OPT": true, + "ESP_WIFI_MBEDTLS_CRYPTO": true, + "ESP_WIFI_MBEDTLS_TLS_CLIENT": true, + "ESP_WIFI_MBO_SUPPORT": false, + "ESP_WIFI_MGMT_SBUF_NUM": 32, + "ESP_WIFI_NAN_ENABLE": false, + "ESP_WIFI_NVS_ENABLED": true, + "ESP_WIFI_RX_BA_WIN": 6, + "ESP_WIFI_RX_IRAM_OPT": true, + "ESP_WIFI_RX_MGMT_BUF_NUM_DEF": 5, + "ESP_WIFI_SLP_BEACON_LOST_OPT": false, + "ESP_WIFI_SLP_IRAM_OPT": false, + "ESP_WIFI_SOFTAP_BEACON_MAX_LEN": 752, + "ESP_WIFI_SOFTAP_SAE_SUPPORT": true, + "ESP_WIFI_SOFTAP_SUPPORT": true, + "ESP_WIFI_STATIC_RX_BUFFER_NUM": 10, + "ESP_WIFI_STATIC_RX_MGMT_BUFFER": true, + "ESP_WIFI_STATIC_TX_BUFFER": false, + "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE": true, + "ESP_WIFI_TASK_PINNED_TO_CORE_0": true, + "ESP_WIFI_TASK_PINNED_TO_CORE_1": false, + "ESP_WIFI_TESTING_OPTIONS": false, + "ESP_WIFI_TX_BA_WIN": 6, + "ESP_WIFI_TX_BUFFER_TYPE": 1, + "ESP_WIFI_WAPI_PSK": false, + "ESP_WIFI_WPS_PASSPHRASE": false, + "ESP_WIFI_WPS_SOFTAP_REGISTRAR": false, + "ESP_WIFI_WPS_STRICT": false, + "ETH_DMA_BUFFER_SIZE": 512, + "ETH_DMA_RX_BUFFER_NUM": 10, + "ETH_DMA_TX_BUFFER_NUM": 10, + "ETH_ENABLED": true, + "ETH_IRAM_OPTIMIZATION": false, + "ETH_PHY_INTERFACE_RMII": true, + "ETH_RMII_CLK_INPUT": true, + "ETH_RMII_CLK_IN_GPIO": 0, + "ETH_RMII_CLK_OUTPUT": false, + "ETH_SPI_ETHERNET_DM9051": false, + "ETH_SPI_ETHERNET_KSZ8851SNL": false, + "ETH_SPI_ETHERNET_W5500": false, + "ETH_TRANSMIT_MUTEX": false, + "ETH_USE_ESP32_EMAC": true, + "ETH_USE_OPENETH": false, + "ETH_USE_SPI_ETHERNET": true, + "FATFS_CODEPAGE": 437, + "FATFS_CODEPAGE_437": true, + "FATFS_CODEPAGE_720": false, + "FATFS_CODEPAGE_737": false, + "FATFS_CODEPAGE_771": false, + "FATFS_CODEPAGE_775": false, + "FATFS_CODEPAGE_850": false, + "FATFS_CODEPAGE_852": false, + "FATFS_CODEPAGE_855": false, + "FATFS_CODEPAGE_857": false, + "FATFS_CODEPAGE_860": false, + "FATFS_CODEPAGE_861": false, + "FATFS_CODEPAGE_862": false, + "FATFS_CODEPAGE_863": false, + "FATFS_CODEPAGE_864": false, + "FATFS_CODEPAGE_865": false, + "FATFS_CODEPAGE_866": false, + "FATFS_CODEPAGE_869": false, + "FATFS_CODEPAGE_932": false, + "FATFS_CODEPAGE_936": false, + "FATFS_CODEPAGE_949": false, + "FATFS_CODEPAGE_950": false, + "FATFS_CODEPAGE_DYNAMIC": false, + "FATFS_FS_LOCK": 0, + "FATFS_IMMEDIATE_FSYNC": false, + "FATFS_LFN_HEAP": false, + "FATFS_LFN_NONE": true, + "FATFS_LFN_STACK": false, + "FATFS_PER_FILE_CACHE": true, + "FATFS_SECTOR_4096": true, + "FATFS_SECTOR_512": false, + "FATFS_TIMEOUT_MS": 10000, + "FATFS_USE_FASTSEEK": false, + "FATFS_VFS_FSTAT_BLKSIZE": 0, + "FATFS_VOLUME_COUNT": 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_0": true, + "FREERTOS_CORETIMER_1": 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": true, + "FREERTOS_HZ": 100, + "FREERTOS_IDLE_TASK_STACKSIZE": 1536, + "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_ISR_STACKSIZE": 1536, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, + "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_RUN_TIME_COUNTER_TYPE_U32": true, + "FREERTOS_RUN_TIME_COUNTER_TYPE_U64": false, + "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK": false, + "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER": true, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_CCOUNT": 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_CORETIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", + "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_STATS_FORMATTING_FUNCTIONS": true, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TRACE_FACILITY": true, + "FREERTOS_VTASKLIST_INCLUDE_COREID": true, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "GPIO_CTRL_FUNC_IN_IRAM": false, + "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL": false, + "GPTIMER_CTRL_FUNC_IN_IRAM": false, + "GPTIMER_ENABLE_DEBUG_LOG": false, + "GPTIMER_ISR_HANDLER_IN_IRAM": true, + "GPTIMER_ISR_IRAM_SAFE": 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_SPI_MASTER_FUNC_IN_IRAM": true, + "HAL_SPI_SLAVE_FUNC_IN_IRAM": 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, + "HTTPD_ERR_RESP_NO_DELAY": true, + "HTTPD_LOG_PURGE_DATA": false, + "HTTPD_MAX_REQ_HDR_LEN": 1024, + "HTTPD_MAX_URI_LEN": 1024, + "HTTPD_PURGE_BUF_LEN": 32, + "HTTPD_QUEUE_WORK_BLOCKING": false, + "HTTPD_WS_SUPPORT": false, + "I2C_ENABLE_DEBUG_LOG": false, + "I2C_ISR_IRAM_SAFE": false, + "I2S_ENABLE_DEBUG_LOG": false, + "I2S_ISR_IRAM_SAFE": false, + "I2S_SUPPRESS_DEPRECATE_WARN": false, + "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, + "IDF_FIRMWARE_CHIP_ID": 0, + "IDF_INIT_VERSION": "5.2.2", + "IDF_TARGET": "esp32", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32": true, + "IDF_TOOLCHAIN": "gcc", + "LCD_ENABLE_DEBUG_LOG": false, + "LCD_PANEL_IO_FORMAT_BUF_SIZE": 32, + "LEDC_CTRL_FUNC_IN_IRAM": false, + "LOG_COLORS": true, + "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_MASTER_LEVEL": false, + "LOG_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "LWIP_AUTOIP": false, + "LWIP_BRIDGEIF_MAX_PORTS": 7, + "LWIP_BROADCAST_PING": false, + "LWIP_CHECKSUM_CHECK_ICMP": true, + "LWIP_CHECKSUM_CHECK_IP": false, + "LWIP_CHECKSUM_CHECK_UDP": false, + "LWIP_CHECK_THREAD_SAFETY": false, + "LWIP_DEBUG": false, + "LWIP_DHCPS": true, + "LWIP_DHCPS_LEASE_UNIT": 60, + "LWIP_DHCPS_MAX_STATION_NUM": 8, + "LWIP_DHCPS_STATIC_ENTRIES": true, + "LWIP_DHCP_COARSE_TIMER_SECS": 1, + "LWIP_DHCP_DISABLE_CLIENT_ID": false, + "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID": true, + "LWIP_DHCP_DOES_ARP_CHECK": true, + "LWIP_DHCP_GET_NTP_SRV": false, + "LWIP_DHCP_OPTIONS_LEN": 68, + "LWIP_DHCP_RESTORE_LAST_IP": false, + "LWIP_DNS_MAX_SERVERS": 3, + "LWIP_DNS_SUPPORT_MDNS_QUERIES": true, + "LWIP_ENABLE": true, + "LWIP_ESP_GRATUITOUS_ARP": true, + "LWIP_ESP_LWIP_ASSERT": true, + "LWIP_ESP_MLDV6_REPORT": true, + "LWIP_EXTRA_IRAM_OPTIMIZATION": false, + "LWIP_FALLBACK_DNS_SERVER_SUPPORT": false, + "LWIP_FORCE_ROUTER_FORWARDING": false, + "LWIP_GARP_TMR_INTERVAL": 60, + "LWIP_HOOK_IP6_INPUT_CUSTOM": false, + "LWIP_HOOK_IP6_INPUT_DEFAULT": false, + "LWIP_HOOK_IP6_INPUT_NONE": true, + "LWIP_HOOK_IP6_ROUTE_CUSTOM": false, + "LWIP_HOOK_IP6_ROUTE_DEFAULT": false, + "LWIP_HOOK_IP6_ROUTE_NONE": true, + "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM": false, + "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT": false, + "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE": true, + "LWIP_HOOK_ND6_GET_GW_CUSTOM": false, + "LWIP_HOOK_ND6_GET_GW_DEFAULT": false, + "LWIP_HOOK_ND6_GET_GW_NONE": true, + "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM": false, + "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT": false, + "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE": true, + "LWIP_HOOK_TCP_ISN_CUSTOM": false, + "LWIP_HOOK_TCP_ISN_DEFAULT": true, + "LWIP_HOOK_TCP_ISN_NONE": false, + "LWIP_ICMP": true, + "LWIP_IP4_FRAG": true, + "LWIP_IP4_REASSEMBLY": false, + "LWIP_IP6_FRAG": true, + "LWIP_IP6_REASSEMBLY": false, + "LWIP_IPV4": true, + "LWIP_IPV6": true, + "LWIP_IPV6_AUTOCONFIG": false, + "LWIP_IPV6_FORWARD": false, + "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": 3, + "LWIP_IPV6_ND6_NUM_NEIGHBORS": 5, + "LWIP_IPV6_NUM_ADDRESSES": 3, + "LWIP_IP_DEFAULT_TTL": 64, + "LWIP_IP_FORWARD": false, + "LWIP_IP_REASS_MAX_PBUFS": 10, + "LWIP_IRAM_OPTIMIZATION": false, + "LWIP_L2_TO_L3_COPY": false, + "LWIP_LOCAL_HOSTNAME": "espressif", + "LWIP_LOOPBACK_MAX_PBUFS": 8, + "LWIP_MAX_ACTIVE_TCP": 16, + "LWIP_MAX_LISTENING_TCP": 16, + "LWIP_MAX_RAW_PCBS": 16, + "LWIP_MAX_SOCKETS": 10, + "LWIP_MAX_UDP_PCBS": 16, + "LWIP_MLDV6_TMR_INTERVAL": 40, + "LWIP_MULTICAST_PING": false, + "LWIP_ND6": true, + "LWIP_NETBUF_RECVINFO": false, + "LWIP_NETIF_API": false, + "LWIP_NETIF_LOOPBACK": true, + "LWIP_NETIF_STATUS_CALLBACK": false, + "LWIP_NUM_NETIF_CLIENT_DATA": 0, + "LWIP_PPP_SUPPORT": false, + "LWIP_SLIP_SUPPORT": false, + "LWIP_SNTP_MAX_SERVERS": 1, + "LWIP_SNTP_UPDATE_DELAY": 3600000, + "LWIP_SO_LINGER": false, + "LWIP_SO_RCVBUF": false, + "LWIP_SO_REUSE": true, + "LWIP_SO_REUSE_RXTOALL": true, + "LWIP_STATS": false, + "LWIP_TCPIP_CORE_LOCKING": false, + "LWIP_TCPIP_RECVMBOX_SIZE": 32, + "LWIP_TCPIP_TASK_AFFINITY": 2147483647, + "LWIP_TCPIP_TASK_AFFINITY_CPU0": false, + "LWIP_TCPIP_TASK_AFFINITY_CPU1": false, + "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY": true, + "LWIP_TCPIP_TASK_PRIO": 18, + "LWIP_TCPIP_TASK_STACK_SIZE": 3072, + "LWIP_TCP_FIN_WAIT_TIMEOUT": 20000, + "LWIP_TCP_HIGH_SPEED_RETRANSMISSION": true, + "LWIP_TCP_MAXRTX": 12, + "LWIP_TCP_MSL": 60000, + "LWIP_TCP_MSS": 1440, + "LWIP_TCP_OOSEQ_MAX_PBUFS": 4, + "LWIP_TCP_OOSEQ_TIMEOUT": 6, + "LWIP_TCP_OVERSIZE_DISABLE": false, + "LWIP_TCP_OVERSIZE_MSS": true, + "LWIP_TCP_OVERSIZE_QUARTER_MSS": false, + "LWIP_TCP_QUEUE_OOSEQ": true, + "LWIP_TCP_RECVMBOX_SIZE": 6, + "LWIP_TCP_RTO_TIME": 1500, + "LWIP_TCP_SACK_OUT": false, + "LWIP_TCP_SND_BUF_DEFAULT": 5760, + "LWIP_TCP_SYNMAXRTX": 12, + "LWIP_TCP_TMR_INTERVAL": 250, + "LWIP_TCP_WND_DEFAULT": 5760, + "LWIP_TIMERS_ONDEMAND": true, + "LWIP_UDP_RECVMBOX_SIZE": 6, + "LWIP_USE_ONLY_LWIP_SELECT": false, + "MBEDTLS_AES_C": true, + "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_MAX_CERTS": 200, + "MBEDTLS_CHACHA20_C": false, + "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, + "MBEDTLS_CMAC_C": true, + "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": true, + "MBEDTLS_ECP_NIST_OPTIM": true, + "MBEDTLS_ECP_RESTARTABLE": false, + "MBEDTLS_ERROR_STRINGS": true, + "MBEDTLS_GCM_C": true, + "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": false, + "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_NIST_KW_C": false, + "MBEDTLS_PEM_PARSE_C": true, + "MBEDTLS_PEM_WRITE_C": true, + "MBEDTLS_PKCS7_C": 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_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_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_IRAM_SAFE": false, + "MCPWM_SUPPRESS_DEPRECATE_WARN": false, + "MMU_PAGE_MODE": "64KB", + "MMU_PAGE_SIZE": 65536, + "MMU_PAGE_SIZE_64KB": true, + "MQTT_CUSTOM_OUTBOX": false, + "MQTT_MSG_ID_INCREMENTAL": false, + "MQTT_PROTOCOL_311": true, + "MQTT_PROTOCOL_5": false, + "MQTT_REPORT_DELETED_MESSAGES": false, + "MQTT_SKIP_PUBLISH_IF_DISCONNECTED": false, + "MQTT_TASK_CORE_SELECTION_ENABLED": false, + "MQTT_TRANSPORT_SSL": true, + "MQTT_TRANSPORT_WEBSOCKET": true, + "MQTT_TRANSPORT_WEBSOCKET_SECURE": true, + "MQTT_USE_CUSTOM_CONFIG": false, + "NEWLIB_NANO_FORMAT": false, + "NEWLIB_STDIN_LINE_ENDING_CR": true, + "NEWLIB_STDIN_LINE_ENDING_CRLF": false, + "NEWLIB_STDIN_LINE_ENDING_LF": false, + "NEWLIB_STDOUT_LINE_ENDING_CR": false, + "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, + "NEWLIB_STDOUT_LINE_ENDING_LF": false, + "NEWLIB_TIME_SYSCALL_USE_HRT": false, + "NEWLIB_TIME_SYSCALL_USE_NONE": false, + "NEWLIB_TIME_SYSCALL_USE_RTC": false, + "NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true, + "NVS_ASSERT_ERROR_CHECK": false, + "NVS_LEGACY_DUP_KEYS_COMPATIBILITY": false, + "OPENTHREAD_ENABLED": false, + "OPENTHREAD_MESH_LOCAL_PREFIX": "fd00:db8:a0:0::/64", + "OPENTHREAD_NETWORK_CHANNEL": 15, + "OPENTHREAD_NETWORK_EXTPANID": "dead00beef00cafe", + "OPENTHREAD_NETWORK_MASTERKEY": "00112233445566778899aabbccddeeff", + "OPENTHREAD_NETWORK_NAME": "OpenThread-ESP", + "OPENTHREAD_NETWORK_PANID": 4660, + "OPENTHREAD_NETWORK_PSKC": "104810e2315100afd6bc9215a6bfac53", + "OPENTHREAD_RX_ON_WHEN_IDLE": true, + "OPENTHREAD_SPINEL_ONLY": false, + "OPENTHREAD_XTAL_ACCURACY": 130, + "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, + "PCNT_CTRL_FUNC_IN_IRAM": false, + "PCNT_ENABLE_DEBUG_LOG": false, + "PCNT_ISR_IRAM_SAFE": false, + "PCNT_SUPPRESS_DEPRECATE_WARN": false, + "PERIPH_CTRL_FUNC_IN_IRAM": true, + "PM_ENABLE": false, + "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_ISR_IRAM_SAFE": false, + "RMT_RECV_FUNC_IN_IRAM": false, + "RMT_SUPPRESS_DEPRECATE_WARN": 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, + "SDM_CTRL_FUNC_IN_IRAM": false, + "SDM_ENABLE_DEBUG_LOG": false, + "SDM_SUPPRESS_DEPRECATE_WARN": false, + "SECURE_BOOT": false, + "SECURE_BOOT_V1_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_DIGI_CONTROLLER_NUM": 2, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 9, + "SOC_ADC_DIGI_MONITOR_NUM": 0, + "SOC_ADC_DIGI_RESULT_BYTES": 2, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 10, + "SOC_ADC_PATT_LEN_MAX": 16, + "SOC_ADC_PERIPH_NUM": 2, + "SOC_ADC_RTC_CTRL_SUPPORTED": true, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 9, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 2, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 20, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_192": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": "Not determined", + "SOC_BT_CLASSIC_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CAPS_ECO_VER_MAX": 301, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_CLK_APLL_SUPPORTED": 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_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_DAC_CHAN_NUM": 2, + "SOC_DAC_DMA_16BIT_ALIGN": true, + "SOC_DAC_RESOLUTION": 8, + "SOC_DAC_SUPPORTED": true, + "SOC_DPORT_WORKAROUND": "Not determined", + "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL": 5, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": true, + "SOC_EFUSE_SUPPORTED": true, + "SOC_EMAC_SUPPORTED": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GPIO_CLOCKOUT_BY_IO_MUX": true, + "SOC_GPIO_IN_RANGE_MAX": 39, + "SOC_GPIO_OUT_RANGE_MAX": 33, + "SOC_GPIO_PIN_COUNT": 40, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 15667178, + "SOC_GPIO_VALID_GPIO_MASK": 1099511627775, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HP_CPU_HAS_MULTIPLE_CORES": true, + "SOC_I2C_CMD_REG_NUM": 16, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "SOC_I2C_STOP_INDEPENDENT": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_APB": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2S_HW_VERSION_1": true, + "SOC_I2S_LCD_I80_VARIANT": true, + "SOC_I2S_NUM": 2, + "SOC_I2S_PDM_MAX_RX_LINES": 1, + "SOC_I2S_PDM_MAX_TX_LINES": 1, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_ADC": true, + "SOC_I2S_SUPPORTS_ADC_DAC": true, + "SOC_I2S_SUPPORTS_APLL": true, + "SOC_I2S_SUPPORTS_DAC": true, + "SOC_I2S_SUPPORTS_LCD_CAMERA": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM_RX": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_I2S_SUPPORTS_PLL_F160M": true, + "SOC_I2S_TRANS_SIZE_ALIGN_WORD": true, + "SOC_IDCACHE_PER_CORE": true, + "SOC_LCD_I80_BUSES": 2, + "SOC_LCD_I80_BUS_WIDTH": 24, + "SOC_LCD_I80_SUPPORTED": true, + "SOC_LEDC_CHANNEL_NUM": 8, + "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX": true, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_HS_MODE": true, + "SOC_LEDC_SUPPORT_REF_TICK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 20, + "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_TIMERS_PER_GROUP": 3, + "SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 3, + "SOC_MMU_PERIPH_NUM": 2, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": true, + "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": 8, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PM_SUPPORT_EXT0_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_FAST_MEM_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD": true, + "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_RMT_CHANNELS_PER_GROUP": 8, + "SOC_RMT_CHANNEL_CLK_INDEPENDENT": true, + "SOC_RMT_GROUPS": 1, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 64, + "SOC_RMT_RX_CANDIDATES_PER_GROUP": 8, + "SOC_RMT_SUPPORTED": true, + "SOC_RMT_SUPPORT_APB": true, + "SOC_RMT_SUPPORT_REF_TICK": true, + "SOC_RMT_TX_CANDIDATES_PER_GROUP": 8, + "SOC_RSA_MAX_BIT_LEN": 4096, + "SOC_RTCIO_HOLD_SUPPORTED": true, + "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true, + "SOC_RTCIO_PIN_COUNT": 18, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "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_SDIO_SLAVE_SUPPORTED": true, + "SOC_SDMMC_HOST_SUPPORTED": true, + "SOC_SDMMC_NUM_SLOTS": 2, + "SOC_SDMMC_USE_IOMUX": 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_V1": true, + "SOC_SHARED_IDCACHE_SUPPORTED": true, + "SOC_SHA_ENDIANNESS_BE": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_PARALLEL_ENG": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SHA_SUPPORT_SHA384": true, + "SOC_SHA_SUPPORT_SHA512": true, + "SOC_SPIRAM_SUPPORTED": true, + "SOC_SPI_AS_CS_SUPPORTED": true, + "SOC_SPI_DMA_CHAN_NUM": 2, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_HD_BOTH_INOUT_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MAX_CS_NUM": 3, + "SOC_SPI_MAX_PRE_DIVIDER": 8192, + "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SPI_SUPPORT_CLK_APB": true, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_TIMER_GROUPS": 2, + "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 64, + "SOC_TIMER_GROUP_SUPPORT_APB": true, + "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 2, + "SOC_TIMER_GROUP_TOTAL_TIMERS": 4, + "SOC_TOUCH_PAD_MEASURE_WAIT_MAX": 255, + "SOC_TOUCH_SENSOR_NUM": 10, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_VERSION_1": true, + "SOC_TWAI_BRP_DIV_SUPPORTED": "Not determined", + "SOC_TWAI_BRP_MIN": 2, + "SOC_TWAI_CLK_SUPPORT_APB": true, + "SOC_TWAI_CONTROLLER_NUM": 1, + "SOC_TWAI_SUPPORTED": true, + "SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT": 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_REF_TICK": true, + "SOC_ULP_FSM_SUPPORTED": true, + "SOC_ULP_HAS_ADC": true, + "SOC_ULP_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_NAN_SUPPORT": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_26M": true, + "SOC_XTAL_SUPPORT_40M": true, + "SOC_XTAL_SUPPORT_AUTO_DETECT": true, + "SPIFFS_API_DBG": false, + "SPIFFS_CACHE": true, + "SPIFFS_CACHE_DBG": false, + "SPIFFS_CACHE_STATS": false, + "SPIFFS_CACHE_WR": true, + "SPIFFS_CHECK_DBG": false, + "SPIFFS_DBG": false, + "SPIFFS_FOLLOW_SYMLINKS": false, + "SPIFFS_GC_DBG": false, + "SPIFFS_GC_MAX_RUNS": 10, + "SPIFFS_GC_STATS": false, + "SPIFFS_MAX_PARTITIONS": 3, + "SPIFFS_META_LENGTH": 4, + "SPIFFS_OBJ_NAME_LEN": 32, + "SPIFFS_PAGE_CHECK": true, + "SPIFFS_PAGE_SIZE": 256, + "SPIFFS_TEST_VISUALISATION": false, + "SPIFFS_USE_MAGIC": true, + "SPIFFS_USE_MAGIC_LENGTH": true, + "SPIFFS_USE_MTIME": true, + "SPIRAM": 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_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_SHARE_SPI1_BUS": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": false, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_CHIP": true, + "SPI_FLASH_SUPPORT_TH_CHIP": false, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, + "SPI_FLASH_VENDOR_GD_SUPPORTED": true, + "SPI_FLASH_VENDOR_ISSI_SUPPORTED": true, + "SPI_FLASH_VENDOR_MXIC_SUPPORTED": true, + "SPI_FLASH_VENDOR_WINBOND_SUPPORTED": true, + "SPI_FLASH_VENDOR_XMC_SUPPORTED": 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, + "TWAI_ERRATA_FIX_BUS_OFF_REC": true, + "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM": true, + "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT": true, + "TWAI_ERRATA_FIX_RX_FRAME_INVALID": true, + "TWAI_ERRATA_FIX_TX_INTR_LOST": true, + "TWAI_ISR_IN_IRAM": false, + "UART_ISR_IN_IRAM": false, + "ULP_COPROC_ENABLED": false, + "UNITY_ENABLE_64BIT": false, + "UNITY_ENABLE_BACKTRACE_ON_FAIL": false, + "UNITY_ENABLE_COLOR": false, + "UNITY_ENABLE_DOUBLE": true, + "UNITY_ENABLE_FIXTURE": false, + "UNITY_ENABLE_FLOAT": true, + "UNITY_ENABLE_IDF_TEST_RUNNER": true, + "VFS_MAX_COUNT": 8, + "VFS_SELECT_IN_RAM": false, + "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS": 1, + "VFS_SUPPORT_DIR": true, + "VFS_SUPPORT_IO": true, + "VFS_SUPPORT_SELECT": true, + "VFS_SUPPORT_TERMIOS": true, + "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT": true, + "WIFI_PROV_AUTOSTOP_TIMEOUT": 30, + "WIFI_PROV_BLE_FORCE_ENCRYPTION": false, + "WIFI_PROV_SCAN_MAX_ENTRIES": 16, + "WIFI_PROV_STA_ALL_CHANNEL_SCAN": true, + "WIFI_PROV_STA_FAST_SCAN": false, + "WL_SECTOR_SIZE": 4096, + "WL_SECTOR_SIZE_4096": true, + "WL_SECTOR_SIZE_512": false, + "WS_BUFFER_SIZE": 1024, + "WS_DYNAMIC_BUFFER": false, + "WS_TRANSPORT": true, + "XTAL_FREQ": 40, + "XTAL_FREQ_26": false, + "XTAL_FREQ_40": true, + "XTAL_FREQ_AUTO": false +} \ No newline at end of file diff --git a/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj b/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj new file mode 100644 index 0000000..6e006a7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj b/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj new file mode 100644 index 0000000..faac5a9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj b/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj new file mode 100644 index 0000000..e57b767 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj b/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj new file mode 100644 index 0000000..6289748 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/app_trace/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/app_trace/cmake_install.cmake new file mode 100644 index 0000000..0715e0c --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/app_trace/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/app_trace/libapp_trace.a b/ESPIDFNEW/build/esp-idf/app_trace/libapp_trace.a new file mode 100644 index 0000000..739433f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/app_trace/libapp_trace.a differ diff --git a/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj b/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj new file mode 100644 index 0000000..f705e15 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj b/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj new file mode 100644 index 0000000..88aa547 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/app_update/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/app_update/cmake_install.cmake new file mode 100644 index 0000000..4e2387b --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/app_update/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/app_update + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/app_update/libapp_update.a b/ESPIDFNEW/build/esp-idf/app_update/libapp_update.a new file mode 100644 index 0000000..c2a2336 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/app_update/libapp_update.a differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader/bootloader-flash_args.in b/ESPIDFNEW/build/esp-idf/bootloader/bootloader-flash_args.in new file mode 100644 index 0000000..34e2d2f --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/bootloader/bootloader-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size detect +0x1000 bootloader/bootloader.bin \ No newline at end of file diff --git a/ESPIDFNEW/build/esp-idf/bootloader/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/bootloader/cmake_install.cmake new file mode 100644 index 0000000..7323fb6 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj new file mode 100644 index 0000000..e238fdf Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj new file mode 100644 index 0000000..f9c68a7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj new file mode 100644 index 0000000..9eb92d1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj new file mode 100644 index 0000000..07b1bd2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj new file mode 100644 index 0000000..c019ded Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj new file mode 100644 index 0000000..5a14da3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj new file mode 100644 index 0000000..fc506ae Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj new file mode 100644 index 0000000..13db3d2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj new file mode 100644 index 0000000..8b805c1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj new file mode 100644 index 0000000..f93f5f8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj new file mode 100644 index 0000000..d224958 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj new file mode 100644 index 0000000..d30dcfc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj new file mode 100644 index 0000000..3208751 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj new file mode 100644 index 0000000..4b1e60d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj new file mode 100644 index 0000000..bdc4de1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj new file mode 100644 index 0000000..88bffd8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/bootloader_support/cmake_install.cmake new file mode 100644 index 0000000..2214789 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/bootloader_support/libbootloader_support.a b/ESPIDFNEW/build/esp-idf/bootloader_support/libbootloader_support.a new file mode 100644 index 0000000..99cfb34 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/bootloader_support/libbootloader_support.a differ diff --git a/ESPIDFNEW/build/esp-idf/bt/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/bt/cmake_install.cmake new file mode 100644 index 0000000..0bec36d --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/bt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/bt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/cmake_install.cmake new file mode 100644 index 0000000..ced12f8 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/cmake_install.cmake @@ -0,0 +1,424 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_ringbuf/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_mm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/driver/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_pm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_bootloader_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_app_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esptool_py/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/partition_table/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_partition/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_update/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spi_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/pthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_rom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/hal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/log/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/heap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/freertos/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cxx/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_timer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_trace/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_event/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_phy/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/vfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/lwip/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif_stack/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wpa_supplicant/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_coex/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_wifi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/unity/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmock/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/console/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/http_parser/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp-tls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_adc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_eth/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_gdbstub/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hid/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/tcp_transport/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_client/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_server/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_ota/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_server/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_psram/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_lcd/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protobuf-c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protocomm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_local_ctrl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espcoredump/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wear_levelling/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/sdmmc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/fatfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/idf_test/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ieee802154/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/json/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mqtt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_sec_provider/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/openthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/perfmon/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spiffs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/ulp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/usb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wifi_provisioning/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/main/cmake_install.cmake") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj b/ESPIDFNEW/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj new file mode 100644 index 0000000..bc30161 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/cmock/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/cmock/cmake_install.cmake new file mode 100644 index 0000000..45758c0 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/cmock/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/cmock + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/cmock/libcmock.a b/ESPIDFNEW/build/esp-idf/cmock/libcmock.a new file mode 100644 index 0000000..3d3d619 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/cmock/libcmock.a differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj new file mode 100644 index 0000000..abc0fbf Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj new file mode 100644 index 0000000..91dfa79 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj new file mode 100644 index 0000000..5397ae0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj new file mode 100644 index 0000000..5fb8099 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj new file mode 100644 index 0000000..d30d9fc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj new file mode 100644 index 0000000..3e6a1b6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj new file mode 100644 index 0000000..7158f4f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj new file mode 100644 index 0000000..67ba95f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj new file mode 100644 index 0000000..1828508 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj new file mode 100644 index 0000000..3afdfea Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj new file mode 100644 index 0000000..d5e22ad Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj new file mode 100644 index 0000000..932a326 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj new file mode 100644 index 0000000..a929607 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj new file mode 100644 index 0000000..1fff2bd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj new file mode 100644 index 0000000..3e708f9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj new file mode 100644 index 0000000..9e293ad Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj new file mode 100644 index 0000000..02e9e5c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj new file mode 100644 index 0000000..1fa7459 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/console/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/console/cmake_install.cmake new file mode 100644 index 0000000..2ca08c8 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/console/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/console/libconsole.a b/ESPIDFNEW/build/esp-idf/console/libconsole.a new file mode 100644 index 0000000..b8fc9f8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/console/libconsole.a differ diff --git a/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj b/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj new file mode 100644 index 0000000..7c82da6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj b/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj new file mode 100644 index 0000000..245c052 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/cxx/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/cxx/cmake_install.cmake new file mode 100644 index 0000000..7c88a9c --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/cxx/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/cxx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/cxx/libcxx.a b/ESPIDFNEW/build/esp-idf/cxx/libcxx.a new file mode 100644 index 0000000..d55d181 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/cxx/libcxx.a differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_common.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_common.c.obj new file mode 100644 index 0000000..4901748 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_continuous.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_continuous.c.obj new file mode 100644 index 0000000..2c37d7a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_continuous.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_cosine.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_cosine.c.obj new file mode 100644 index 0000000..82c7636 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_cosine.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_oneshot.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_oneshot.c.obj new file mode 100644 index 0000000..2345198 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_oneshot.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/esp32/dac_dma.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/esp32/dac_dma.c.obj new file mode 100644 index 0000000..dd29546 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/esp32/dac_dma.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj new file mode 100644 index 0000000..ff57b13 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_i2s_deprecated.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_i2s_deprecated.c.obj new file mode 100644 index 0000000..17de277 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_i2s_deprecated.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj new file mode 100644 index 0000000..87c9288 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/dac_common_legacy.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/dac_common_legacy.c.obj new file mode 100644 index 0000000..a1480e8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/dac_common_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/esp32/dac_legacy.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/esp32/dac_legacy.c.obj new file mode 100644 index 0000000..c7b7e57 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/esp32/dac_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj new file mode 100644 index 0000000..44f82b8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj new file mode 100644 index 0000000..a8e0116 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj new file mode 100644 index 0000000..e45ebd9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj new file mode 100644 index 0000000..defc125 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj new file mode 100644 index 0000000..3a74574 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj new file mode 100644 index 0000000..69bfa6e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj new file mode 100644 index 0000000..63c9f4c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_glitch_filter_ops.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_glitch_filter_ops.c.obj new file mode 100644 index 0000000..6816aa1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_glitch_filter_ops.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj new file mode 100644 index 0000000..9a88dc5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer.c.obj new file mode 100644 index 0000000..a4aefcf Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer_priv.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer_priv.c.obj new file mode 100644 index 0000000..b778cf2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer_priv.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj new file mode 100644 index 0000000..65a0eae Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_common.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_common.c.obj new file mode 100644 index 0000000..958c611 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_master.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_master.c.obj new file mode 100644 index 0000000..f3c54b7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_master.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_slave.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_slave.c.obj new file mode 100644 index 0000000..ac4fb56 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c_slave.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj new file mode 100644 index 0000000..24158e7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj new file mode 100644 index 0000000..4e334ee Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_platform.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_platform.c.obj new file mode 100644 index 0000000..9c87b8d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_platform.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj new file mode 100644 index 0000000..5c5917c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc/ledc.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc/ledc.c.obj new file mode 100644 index 0000000..58c202c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc/ledc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj new file mode 100644 index 0000000..a664650 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj new file mode 100644 index 0000000..97133fc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj new file mode 100644 index 0000000..eee5233 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj new file mode 100644 index 0000000..fe4f67d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj new file mode 100644 index 0000000..5ed1502 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj new file mode 100644 index 0000000..539c3f4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj new file mode 100644 index 0000000..3ddf19c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj new file mode 100644 index 0000000..e7c01c6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt/pulse_cnt.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt/pulse_cnt.c.obj new file mode 100644 index 0000000..1c0beb9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt/pulse_cnt.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj new file mode 100644 index 0000000..63d1e7c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj new file mode 100644 index 0000000..6ff1039 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj new file mode 100644 index 0000000..8bfc07b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj new file mode 100644 index 0000000..a7366b5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave/sdio_slave.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave/sdio_slave.c.obj new file mode 100644 index 0000000..cbeccc1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave/sdio_slave.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_host.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_host.c.obj new file mode 100644 index 0000000..df00784 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_host.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_transaction.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_transaction.c.obj new file mode 100644 index 0000000..588e3be Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_transaction.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sigma_delta/sdm.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sigma_delta/sdm.c.obj new file mode 100644 index 0000000..67d1804 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/sigma_delta/sdm.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_common.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_common.c.obj new file mode 100644 index 0000000..2d5ae3e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_master.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_master.c.obj new file mode 100644 index 0000000..7e3bc32 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_master.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave.c.obj new file mode 100644 index 0000000..6f34d3e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_crc.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_crc.c.obj new file mode 100644 index 0000000..0953dd0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_crc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_host.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_host.c.obj new file mode 100644 index 0000000..8054af2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_host.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_transaction.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_transaction.c.obj new file mode 100644 index 0000000..cd8708e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_transaction.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/spi_bus_lock.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/spi_bus_lock.c.obj new file mode 100644 index 0000000..7055a3e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/spi_bus_lock.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj new file mode 100644 index 0000000..2f10216 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj new file mode 100644 index 0000000..72de2f6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj new file mode 100644 index 0000000..804a060 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/uart/uart.c.obj b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/uart/uart.c.obj new file mode 100644 index 0000000..25f262d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/uart/uart.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/driver/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/driver/cmake_install.cmake new file mode 100644 index 0000000..f6b9f57 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/driver/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/driver + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/driver/libdriver.a b/ESPIDFNEW/build/esp-idf/driver/libdriver.a new file mode 100644 index 0000000..8e7c57a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/driver/libdriver.a differ diff --git a/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj new file mode 100644 index 0000000..01d24fa Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj new file mode 100644 index 0000000..b40b192 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj new file mode 100644 index 0000000..9a5ccd5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj new file mode 100644 index 0000000..eeef3b1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj new file mode 100644 index 0000000..e81c3a2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj new file mode 100644 index 0000000..0a5cbf0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj new file mode 100644 index 0000000..f53f31f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/efuse/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/efuse/cmake_install.cmake new file mode 100644 index 0000000..d921015 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/efuse/libefuse.a b/ESPIDFNEW/build/esp-idf/efuse/libefuse.a new file mode 100644 index 0000000..624792a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/efuse/libefuse.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj b/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj new file mode 100644 index 0000000..568eaf2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj b/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj new file mode 100644 index 0000000..56eec74 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj b/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj new file mode 100644 index 0000000..f6aa6cb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj b/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj new file mode 100644 index 0000000..b3c73c7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj b/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj new file mode 100644 index 0000000..8d133e6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp-tls/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp-tls/cmake_install.cmake new file mode 100644 index 0000000..1952585 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp-tls/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp-tls/libesp-tls.a b/ESPIDFNEW/build/esp-idf/esp-tls/libesp-tls.a new file mode 100644 index 0000000..d4efb02 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp-tls/libesp-tls.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj new file mode 100644 index 0000000..2defdbc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj new file mode 100644 index 0000000..23198d3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj new file mode 100644 index 0000000..4f051db Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj new file mode 100644 index 0000000..060f95d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj new file mode 100644 index 0000000..5378b32 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32/esp_adc_cal_legacy.c.obj b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32/esp_adc_cal_legacy.c.obj new file mode 100644 index 0000000..446ee15 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32/esp_adc_cal_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj new file mode 100644 index 0000000..0b06370 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj new file mode 100644 index 0000000..503620e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_adc/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_adc/cmake_install.cmake new file mode 100644 index 0000000..21bef15 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_adc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_adc/libesp_adc.a b/ESPIDFNEW/build/esp-idf/esp_adc/libesp_adc.a new file mode 100644 index 0000000..4a4fc83 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_adc/libesp_adc.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj b/ESPIDFNEW/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj new file mode 100644 index 0000000..abef0e3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_app_format/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_app_format/cmake_install.cmake new file mode 100644 index 0000000..85b8968 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_app_format/libesp_app_format.a b/ESPIDFNEW/build/esp-idf/esp_app_format/libesp_app_format.a new file mode 100644 index 0000000..bef894d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_app_format/libesp_app_format.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b/ESPIDFNEW/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj new file mode 100644 index 0000000..aea86dc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_bootloader_format/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_bootloader_format/cmake_install.cmake new file mode 100644 index 0000000..5741603 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_bootloader_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a b/ESPIDFNEW/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a new file mode 100644 index 0000000..26d4d2f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj b/ESPIDFNEW/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj new file mode 100644 index 0000000..449b7ba Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_coex/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_coex/cmake_install.cmake new file mode 100644 index 0000000..895ac28 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_coex/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_coex/libesp_coex.a b/ESPIDFNEW/build/esp-idf/esp_coex/libesp_coex.a new file mode 100644 index 0000000..3e27a30 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_coex/libesp_coex.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/ESPIDFNEW/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj new file mode 100644 index 0000000..12ceb7e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_common/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_common/cmake_install.cmake new file mode 100644 index 0000000..c966364 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_common/libesp_common.a b/ESPIDFNEW/build/esp-idf/esp_common/libesp_common.a new file mode 100644 index 0000000..e46ab5d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_common/libesp_common.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj new file mode 100644 index 0000000..da8b84d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj new file mode 100644 index 0000000..5e95de5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj new file mode 100644 index 0000000..d347aa9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj new file mode 100644 index 0000000..eca77a0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj new file mode 100644 index 0000000..a009b20 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj new file mode 100644 index 0000000..765b3fd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj new file mode 100644 index 0000000..5d42492 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj new file mode 100644 index 0000000..d8d7b06 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj new file mode 100644 index 0000000..40ea138 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_eth/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_eth/cmake_install.cmake new file mode 100644 index 0000000..f86a872 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_eth/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_eth/libesp_eth.a b/ESPIDFNEW/build/esp-idf/esp_eth/libesp_eth.a new file mode 100644 index 0000000..4c8436f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_eth/libesp_eth.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj b/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj new file mode 100644 index 0000000..81018ea Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj b/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj new file mode 100644 index 0000000..3a8acac Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj b/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj new file mode 100644 index 0000000..7d63af3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_event/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_event/cmake_install.cmake new file mode 100644 index 0000000..39534cc --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_event/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_event/libesp_event.a b/ESPIDFNEW/build/esp-idf/esp_event/libesp_event.a new file mode 100644 index 0000000..c5d6af2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_event/libesp_event.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj new file mode 100644 index 0000000..087a8c6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj new file mode 100644 index 0000000..01dfda5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj new file mode 100644 index 0000000..2f4dd91 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj new file mode 100644 index 0000000..3f3f4fa Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj new file mode 100644 index 0000000..b8e6012 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj new file mode 100644 index 0000000..0eb0171 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_gdbstub/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_gdbstub/cmake_install.cmake new file mode 100644 index 0000000..1e86af0 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_gdbstub/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_gdbstub/libesp_gdbstub.a b/ESPIDFNEW/build/esp-idf/esp_gdbstub/libesp_gdbstub.a new file mode 100644 index 0000000..2304421 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_gdbstub/libesp_gdbstub.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj b/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj new file mode 100644 index 0000000..dd0ae3a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj b/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj new file mode 100644 index 0000000..00b2e5a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj b/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj new file mode 100644 index 0000000..417062d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hid/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_hid/cmake_install.cmake new file mode 100644 index 0000000..1586270 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_hid/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_hid/libesp_hid.a b/ESPIDFNEW/build/esp-idf/esp_hid/libesp_hid.a new file mode 100644 index 0000000..1752ae3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hid/libesp_hid.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj b/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj new file mode 100644 index 0000000..2b9b583 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj b/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj new file mode 100644 index 0000000..6d79508 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj b/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj new file mode 100644 index 0000000..797c7ca Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj b/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj new file mode 100644 index 0000000..14599fc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_client/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_http_client/cmake_install.cmake new file mode 100644 index 0000000..3994a69 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_http_client/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_http_client/libesp_http_client.a b/ESPIDFNEW/build/esp-idf/esp_http_client/libesp_http_client.a new file mode 100644 index 0000000..def6657 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_client/libesp_http_client.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj new file mode 100644 index 0000000..a8bc531 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj new file mode 100644 index 0000000..ff170a9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj new file mode 100644 index 0000000..d7bfc33 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj new file mode 100644 index 0000000..ab9a11f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj new file mode 100644 index 0000000..01def30 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj new file mode 100644 index 0000000..8e8dd23 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj new file mode 100644 index 0000000..4afcdb3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_http_server/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_http_server/cmake_install.cmake new file mode 100644 index 0000000..84ed183 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_http_server/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_http_server/libesp_http_server.a b/ESPIDFNEW/build/esp-idf/esp_http_server/libesp_http_server.a new file mode 100644 index 0000000..fc08ebd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_http_server/libesp_http_server.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj b/ESPIDFNEW/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj new file mode 100644 index 0000000..8806f6c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_https_ota/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_https_ota/cmake_install.cmake new file mode 100644 index 0000000..92870b0 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_https_ota/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_https_ota/libesp_https_ota.a b/ESPIDFNEW/build/esp-idf/esp_https_ota/libesp_https_ota.a new file mode 100644 index 0000000..258e605 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_https_ota/libesp_https_ota.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_https_server/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_https_server/cmake_install.cmake new file mode 100644 index 0000000..911a8d4 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_https_server/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj new file mode 100644 index 0000000..6cfe8d4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj new file mode 100644 index 0000000..2babc48 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj new file mode 100644 index 0000000..e891f74 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj new file mode 100644 index 0000000..34a0d5d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj new file mode 100644 index 0000000..e02d767 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj new file mode 100644 index 0000000..4ddb571 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj new file mode 100644 index 0000000..8e4d4ba Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj new file mode 100644 index 0000000..10c6b8f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj new file mode 100644 index 0000000..9bf50f2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj new file mode 100644 index 0000000..0563ce7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj new file mode 100644 index 0000000..6d08595 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_config.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_config.c.obj new file mode 100644 index 0000000..c32bf23 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_config.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj new file mode 100644 index 0000000..ea4fc3b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj new file mode 100644 index 0000000..dfae759 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj new file mode 100644 index 0000000..5e64954 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj new file mode 100644 index 0000000..19ec269 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj new file mode 100644 index 0000000..5980930 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj new file mode 100644 index 0000000..2a57861 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_crypto_lock.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_crypto_lock.c.obj new file mode 100644 index 0000000..1c1c49a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_crypto_lock.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj new file mode 100644 index 0000000..825abff Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj new file mode 100644 index 0000000..4e3a208 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj new file mode 100644 index 0000000..f12b5a1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj new file mode 100644 index 0000000..015704a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj new file mode 100644 index 0000000..287cbc5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj new file mode 100644 index 0000000..a0aa42d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj new file mode 100644 index 0000000..12981cf Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj b/ESPIDFNEW/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..ab20df1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj new file mode 100644 index 0000000..3b7f59d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj new file mode 100644 index 0000000..fcc7a65 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj new file mode 100644 index 0000000..863ecfb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj new file mode 100644 index 0000000..a6807ff Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj new file mode 100644 index 0000000..4d7d0fc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj new file mode 100644 index 0000000..35a3d16 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj new file mode 100644 index 0000000..137870c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj new file mode 100644 index 0000000..2ff3c97 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj new file mode 100644 index 0000000..b2445d4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj new file mode 100644 index 0000000..68c4214 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj new file mode 100644 index 0000000..17b0efd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_hw_support/cmake_install.cmake new file mode 100644 index 0000000..ba40088 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/libesp_hw_support.a b/ESPIDFNEW/build/esp-idf/esp_hw_support/libesp_hw_support.a new file mode 100644 index 0000000..1316bbe Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_hw_support/libesp_hw_support.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake new file mode 100644 index 0000000..436f034 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj new file mode 100644 index 0000000..9483a61 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj new file mode 100644 index 0000000..72c3465 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v1.c.obj b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v1.c.obj new file mode 100644 index 0000000..c786a9b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v1.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v2.c.obj b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v2.c.obj new file mode 100644 index 0000000..c8efa0c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c_v2.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj new file mode 100644 index 0000000..b3a8262 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj new file mode 100644 index 0000000..806d41c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj new file mode 100644 index 0000000..fc6840b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj new file mode 100644 index 0000000..ceb1d18 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj new file mode 100644 index 0000000..f00c12e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj new file mode 100644 index 0000000..3062a8c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_lcd/cmake_install.cmake new file mode 100644 index 0000000..36c1ed9 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_lcd/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_lcd/libesp_lcd.a b/ESPIDFNEW/build/esp-idf/esp_lcd/libesp_lcd.a new file mode 100644 index 0000000..c2789d9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_lcd/libesp_lcd.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj new file mode 100644 index 0000000..e682d77 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj new file mode 100644 index 0000000..150a0d4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj new file mode 100644 index 0000000..85657d0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj new file mode 100644 index 0000000..06e0886 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_local_ctrl/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/cmake_install.cmake new file mode 100644 index 0000000..0e794be --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a new file mode 100644 index 0000000..de7e474 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj b/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj new file mode 100644 index 0000000..0b1169a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj b/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj new file mode 100644 index 0000000..4988a0c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj b/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj new file mode 100644 index 0000000..c891994 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj b/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj new file mode 100644 index 0000000..8cc8772 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_mm/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_mm/cmake_install.cmake new file mode 100644 index 0000000..26eb195 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_mm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_mm/libesp_mm.a b/ESPIDFNEW/build/esp-idf/esp_mm/libesp_mm.a new file mode 100644 index 0000000..75df7c6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_mm/libesp_mm.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj new file mode 100644 index 0000000..ccc7bba Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj new file mode 100644 index 0000000..5b92fc0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj new file mode 100644 index 0000000..054be97 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj new file mode 100644 index 0000000..88a4a02 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj new file mode 100644 index 0000000..6a5e61a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj new file mode 100644 index 0000000..3480438 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj new file mode 100644 index 0000000..634d43d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj new file mode 100644 index 0000000..84390c0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj new file mode 100644 index 0000000..8cda559 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_netif/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_netif/cmake_install.cmake new file mode 100644 index 0000000..8afa967 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_netif/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_netif/libesp_netif.a b/ESPIDFNEW/build/esp-idf/esp_netif/libesp_netif.a new file mode 100644 index 0000000..25ec14c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_netif/libesp_netif.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_netif_stack/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_netif_stack/cmake_install.cmake new file mode 100644 index 0000000..0bb8ebb --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_netif_stack/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif_stack + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj b/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj new file mode 100644 index 0000000..2426538 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj b/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj new file mode 100644 index 0000000..9212ca4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_partition/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_partition/cmake_install.cmake new file mode 100644 index 0000000..d88233c --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_partition/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_partition/libesp_partition.a b/ESPIDFNEW/build/esp-idf/esp_partition/libesp_partition.a new file mode 100644 index 0000000..5e51009 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_partition/libesp_partition.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj b/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj new file mode 100644 index 0000000..0ea7c44 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj b/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj new file mode 100644 index 0000000..994ce79 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj b/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj new file mode 100644 index 0000000..66018c0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj b/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj new file mode 100644 index 0000000..4c8b560 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj b/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj new file mode 100644 index 0000000..874de2a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_phy/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_phy/cmake_install.cmake new file mode 100644 index 0000000..69308ce --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_phy/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_phy/libesp_phy.a b/ESPIDFNEW/build/esp-idf/esp_phy/libesp_phy.a new file mode 100644 index 0000000..8916936 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_phy/libesp_phy.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj b/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj new file mode 100644 index 0000000..87140f1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj b/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj new file mode 100644 index 0000000..a270d00 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj b/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj new file mode 100644 index 0000000..535e98a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_pm/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_pm/cmake_install.cmake new file mode 100644 index 0000000..25f019e --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_pm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_pm/libesp_pm.a b/ESPIDFNEW/build/esp-idf/esp_pm/libesp_pm.a new file mode 100644 index 0000000..ca2e3ce Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_pm/libesp_pm.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_psram/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_psram/cmake_install.cmake new file mode 100644 index 0000000..0ffcc69 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_psram/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj b/ESPIDFNEW/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj new file mode 100644 index 0000000..5893918 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_ringbuf/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_ringbuf/cmake_install.cmake new file mode 100644 index 0000000..fcd3700 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_ringbuf/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_ringbuf/libesp_ringbuf.a b/ESPIDFNEW/build/esp-idf/esp_ringbuf/libesp_ringbuf.a new file mode 100644 index 0000000..dd061d1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_ringbuf/libesp_ringbuf.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj new file mode 100644 index 0000000..12e76ab Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj new file mode 100644 index 0000000..3648e61 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj new file mode 100644 index 0000000..e89be28 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj new file mode 100644 index 0000000..2ec896e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj new file mode 100644 index 0000000..c978220 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj new file mode 100644 index 0000000..feb3162 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_rom/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..aeccbae --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_rom/libesp_rom.a b/ESPIDFNEW/build/esp-idf/esp_rom/libesp_rom.a new file mode 100644 index 0000000..06cd510 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_rom/libesp_rom.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj new file mode 100644 index 0000000..9da789e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj new file mode 100644 index 0000000..a1c8ebc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj new file mode 100644 index 0000000..795cf0a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj new file mode 100644 index 0000000..df6eae2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj new file mode 100644 index 0000000..9f596db Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj new file mode 100644 index 0000000..ac0e747 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj new file mode 100644 index 0000000..7042f7b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj new file mode 100644 index 0000000..8bff4fb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj new file mode 100644 index 0000000..28cc358 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj new file mode 100644 index 0000000..92b4ed7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj new file mode 100644 index 0000000..9dcbd21 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj b/ESPIDFNEW/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..54e5b75 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj b/ESPIDFNEW/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..02da9e4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj b/ESPIDFNEW/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..a5e826d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj new file mode 100644 index 0000000..8737087 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj b/ESPIDFNEW/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..8c2d675 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj new file mode 100644 index 0000000..7b775e7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj new file mode 100644 index 0000000..af32fec Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj new file mode 100644 index 0000000..5137559 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj new file mode 100644 index 0000000..0de5ae4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj new file mode 100644 index 0000000..2f1341c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj new file mode 100644 index 0000000..5238db2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj new file mode 100644 index 0000000..672677f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj new file mode 100644 index 0000000..881b943 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj new file mode 100644 index 0000000..0c33db4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj new file mode 100644 index 0000000..caab946 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj new file mode 100644 index 0000000..157cd2a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj new file mode 100644 index 0000000..d5d6fa6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj new file mode 100644 index 0000000..5f93940 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj new file mode 100644 index 0000000..ba11285 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj new file mode 100644 index 0000000..ef7ef0e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj new file mode 100644 index 0000000..4abaa01 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj new file mode 100644 index 0000000..0d721d7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj new file mode 100644 index 0000000..5299cf3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj new file mode 100644 index 0000000..1116253 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj new file mode 100644 index 0000000..66b6596 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_system/cmake_install.cmake new file mode 100644 index 0000000..a3d4a91 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/cmake_install.cmake") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_system/ld/linker_script_generator.cmake b/ESPIDFNEW/build/esp-idf/esp_system/ld/linker_script_generator.cmake new file mode 100644 index 0000000..845c872 --- /dev/null +++ b/ESPIDFNEW/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/ESPIDFNEW/build/esp-idf/esp_system/ld/memory.ld b/ESPIDFNEW/build/esp-idf/esp_system/ld/memory.ld new file mode 100644 index 0000000..09f681f --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_system/ld/memory.ld @@ -0,0 +1,177 @@ +/* + + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* ESP32 Linker Script Memory Layout + + + + This file describes the memory layout (memory blocks) as virtual + + memory addresses. + + + + esp32.project.ld contains output sections to link compiler output + + into these memory blocks. + + + + *** + + + + 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.2.2 Configuration Header + + */ + +/* List of deprecated options */ +/* + + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +_esp_flash_mmap_prefetch_pad_size = 16; +/* CPU instruction prefetch padding size for memory protection scenario */ +_esp_memprot_prefetch_pad_size = 0; +/* Memory alignment size for PMS */ +_esp_memprot_align_size = 0; +_esp_mmu_block_size = (0x10000); + /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ +/* If BT is not built at all */ +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 bytewise access. */ + /* IRAM for PRO cpu. Not sure if happy with this, this is MMU area... */ + iram0_0_seg (RX) : org = 0x40080000, len = 0x20000 + 0x0 + /* Even though the segment name is iram, it is actually mapped to flash + + */ + iram0_2_seg (RX) : org = 0x400D0020, len = 0x330000-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. + + + + Note: Length of this section *should* be 0x50000, and this extra DRAM is available + + in heap at runtime. However due to static ROM memory usage at this 176KB mark, the + + additional static memory temporarily cannot be used. + + */ + dram0_0_seg (RW) : org = 0x3FFB0000 + 0, + len = 0x2c200 - 0 + /* Flash mapped constant data */ + drom0_0_seg (R) : org = 0x3F400020, len = 0x400000-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 = 0x400C0000, len = 0x2000 - 0 + /* RTC fast memory (same block as above, rtc_iram_seg), viewed from data bus */ + rtc_data_seg(RW) : org = 0x3ff80000, len = 0x2000 - 0 + /* We reduced the size of rtc_iram_seg and rtc_data_seg by ESP_BOOTLOADER_RESERVE_RTC value. + + It reserves the amount of RTC fast memory that we use for this memory segment. + + This segment is intended for keeping 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. + + org = 0x3ff80000 + 0x2000 - ESP_BOOTLOADER_RESERVE_RTC == SOC_RTC_DRAM_HIGH - sizeof(rtc_retain_mem_t) + + */ + rtc_fast_reserved_seg(RW) : org = 0x3ff80000 + 0x2000 - 0, len = 0 + /* 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 - ((24)) + /* We reduced the size of rtc_slow_seg by RESERVE_RTC_MEM value. + + It reserves the amount of RTC slow memory that we use for this memory segment. + + This segment is intended for keeping rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). + + The aim of this is to keep data that will not be moved around and have a fixed address. + + org = 0x50000000 + 0x2000 - RESERVE_RTC_MEM + + */ + rtc_slow_reserved_seg(RW) : org = 0x50000000 + 0x2000 - ((24)), len = ((24)) + /* external memory */ + extern_ram_seg(RWX) : org = 0x3F800000, + len = 0x400000 +} +_heap_start = _heap_low_start; +_sram1_iram_start = 0x400A0000; +_sram1_iram_len = ( _iram_end > _sram1_iram_start) ? (_iram_end - _sram1_iram_start) : 0; +_heap_end = ALIGN(0x40000000 - _sram1_iram_len - 3, 4); +_data_seg_org = ORIGIN(rtc_data_seg); +/* The lines below define location alias for .rtc.data section based on Kconfig option. + + When the option is not defined then use slow memory segment + + else the data will be placed in fast memory segment */ +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(_rodata_start == ORIGIN(default_rodata_seg), + ".flash.appdesc section must be placed at the beginning of the rodata segment.") diff --git a/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld b/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld new file mode 100644 index 0000000..fdfa4cc --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld @@ -0,0 +1,685 @@ +/* Automatically generated file; DO NOT EDIT */ +/* Espressif IoT Development Framework Linker Script */ +/* Generated from: C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build\esp-idf\esp_system\ld\sections.ld.in */ + +/* + + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* + + * Automatically generated file. DO NOT EDIT. + + * Espressif IoT Development Framework (ESP-IDF) 5.2.2 Configuration Header + + */ + +/* List of deprecated options */ +/* 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.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + _rtc_text_end = ABSOLUTE(.); + } > rtc_iram_seg + /* + + This section is required to skip rtc.text area because rtc_iram_seg and + + rtc_data_seg are reflect the same address space on different buses. + + */ + .rtc.dummy : + { + _rtc_dummy_start = ABSOLUTE(.); + _rtc_fast_start = ABSOLUTE(.); + . = SIZEOF(.rtc.text); + _rtc_dummy_end = ABSOLUTE(.); + } > rtc_data_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(.); + _coredump_rtc_fast_start = ABSOLUTE(.); + *(.rtc.fast.coredump .rtc.fast.coredump.*) + _coredump_rtc_fast_end = ABSOLUTE(.); + *(.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_ESP32_RTCDATA_IN_FAST_MEM option. + + */ + .rtc.data : + { + _rtc_data_start = ABSOLUTE(.); + _coredump_rtc_start = ABSOLUTE(.); + *(.rtc.coredump .rtc.coredump.*) + _coredump_rtc_end = ABSOLUTE(.); + *(.rtc.data .rtc.data.*) + *(.rtc.rodata .rtc.rodata.*) + *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) + *(.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_ESP32_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 FAST data that should have fixed addresses. + + * The data are not initialized at power-up and are retained during deep sleep. + + */ + .rtc_fast_reserved (NOLOAD): + { + . = ALIGN(4); + _rtc_fast_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 << */ + KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) + _rtc_fast_reserved_end = ABSOLUTE(.); + } > rtc_fast_reserved_seg + _rtc_fast_reserved_length = _rtc_fast_reserved_end - _rtc_fast_reserved_start; + ASSERT((_rtc_fast_reserved_length <= LENGTH(rtc_fast_reserved_seg)), + "RTC FAST reserved segment data does not fit.") + /** + + * This section holds RTC SLOW data that should have fixed addresses. + + * The data are not initialized at power-up and are retained during deep sleep. + + */ + .rtc_slow_reserved (NOLOAD): + { + . = ALIGN(4); + _rtc_slow_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.*) + _rtc_slow_reserved_end = ABSOLUTE(.); + } > rtc_slow_reserved_seg + _rtc_slow_reserved_length = _rtc_slow_reserved_end - _rtc_slow_reserved_start; + _rtc_reserved_length = _rtc_slow_reserved_length; + ASSERT((_rtc_slow_reserved_length <= LENGTH(rtc_slow_reserved_seg)), + "RTC SLOW 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(.); + /* Vectors according to builds/RF-2015.2-win32/esp108_v1_2_s5_512int_2/config.html */ + . = 0x0; + KEEP(*(.WindowVectors.text)); + . = 0x180; + KEEP(*(.Level2InterruptVector.text)); + . = 0x1c0; + KEEP(*(.Level3InterruptVector.text)); + . = 0x200; + KEEP(*(.Level4InterruptVector.text)); + . = 0x240; + KEEP(*(.Level5InterruptVector.text)); + . = 0x280; + KEEP(*(.DebugExceptionVector.text)); + . = 0x2c0; + KEEP(*(.NMIExceptionVector.text)); + . = 0x300; + KEEP(*(.KernelExceptionVector.text)); + . = 0x340; + KEEP(*(.UserExceptionVector.text)); + . = 0x3C0; + KEEP(*(.DoubleExceptionVector.text)); + . = 0x400; + _invalid_pc_placeholder = ABSOLUTE(.); + *(.*Vector.literal) + *(.UserEnter.literal); + *(.UserEnter.text); + . = ALIGN (16); + *(.entry.text) + *(.init.literal) + *(.init) + _init_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.text : + { + /* Code marked as runnning out of IRAM */ + _iram_text_start = ABSOLUTE(.); + *(.iram1 .iram1.*) + *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*) + *libapp_trace.a:port_uart.*(.literal .literal.* .text .text.*) + *libdriver.a:gptimer.*(.literal.gptimer_default_isr .text.gptimer_default_isr) + *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) + *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) + *libesp_hw_support.a:esp_gpio_reserve.*(.literal.esp_gpio_is_pin_reserved .text.esp_gpio_is_pin_reserved) + *libesp_hw_support.a:esp_gpio_reserve.*(.literal.esp_gpio_reserve_pins .text.esp_gpio_reserve_pins) + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:mspi_timing_config.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_disable .text.wifi_module_disable) + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_enable .text.wifi_module_enable) + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_get_config .text.rtc_vddsdio_get_config) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_wdt.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *libesp_mm.a:cache_esp32.*(.literal .literal.* .text .text.*) + *libesp_mm.a:esp_cache.*(.literal .literal.* .text .text.*) + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + *libesp_wifi.a:esp_adapter.*(.literal.coex_pti_get_wrapper .text.coex_pti_get_wrapper) + *libesp_wifi.a:wifi_netif.*(.literal.wifi_sta_receive .text.wifi_sta_receive) + *libesp_wifi.a:wifi_netif.*(.literal.wifi_transmit_wrap .text.wifi_transmit_wrap) + *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .literal EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .literal.* EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .text EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .text.*) + *libfreertos.a:tasks.*(.literal.__getreent .literal.eTaskGetState .literal.pcTaskGetName .literal.prvAddCurrentTaskToDelayedList .literal.prvAddNewTaskToReadyList .literal.prvCheckTaskCanBeScheduledSMP .literal.prvCheckTasksWaitingTermination .literal.prvCreateIdleTasks .literal.prvDeleteTCB .literal.prvIdleTask .literal.prvInitialiseNewTask .literal.prvInitialiseTaskLists .literal.prvIsYieldRequiredSMP .literal.prvListTasksWithinSingleList .literal.prvReleaseKernelLock .literal.prvResetNextTaskUnblockTime .literal.prvSelectHighestPriorityTaskSMP .literal.prvTakeKernelLock .literal.prvTaskIsTaskSuspended .literal.prvTaskPriorityRaise .literal.prvTaskPriorityRestore .literal.prvWriteNameToBuffer .literal.pvTaskGetCurrentTCBForCore .literal.pvTaskGetThreadLocalStoragePointer .literal.pvTaskIncrementMutexHeldCount .literal.pxTaskGetStackStart .literal.ulTaskGenericNotifyTake .literal.ulTaskGenericNotifyValueClear .literal.ulTaskGetIdleRunTimeCounter .literal.ulTaskGetIdleRunTimeCounterForCore .literal.ulTaskGetIdleRunTimePercent .literal.ulTaskGetIdleRunTimePercentForCore .literal.uxTaskGetNumberOfTasks .literal.uxTaskGetStackHighWaterMark .literal.uxTaskGetStackHighWaterMark2 .literal.uxTaskGetSystemState .literal.uxTaskPriorityGet .literal.uxTaskPriorityGetFromISR .literal.uxTaskResetEventItemValue .literal.vTaskDelay .literal.vTaskDelete .literal.vTaskEndScheduler .literal.vTaskGenericNotifyGiveFromISR .literal.vTaskGetInfo .literal.vTaskGetRunTimeStats .literal.vTaskGetSnapshot .literal.vTaskInternalSetTimeOutState .literal.vTaskList .literal.vTaskMissedYield .literal.vTaskPlaceOnEventList .literal.vTaskPlaceOnEventListRestricted .literal.vTaskPlaceOnUnorderedEventList .literal.vTaskPriorityDisinheritAfterTimeout .literal.vTaskPrioritySet .literal.vTaskRemoveFromUnorderedEventList .literal.vTaskResume .literal.vTaskSetThreadLocalStoragePointer .literal.vTaskSetThreadLocalStoragePointerAndDelCallback .literal.vTaskSetTimeOutState .literal.vTaskStartScheduler .literal.vTaskSuspend .literal.vTaskSuspendAll .literal.vTaskSwitchContext .literal.xTaskAbortDelay .literal.xTaskCatchUpTicks .literal.xTaskCheckForTimeOut .literal.xTaskCreatePinnedToCore .literal.xTaskCreateStaticPinnedToCore .literal.xTaskDelayUntil .literal.xTaskGenericNotify .literal.xTaskGenericNotifyFromISR .literal.xTaskGenericNotifyStateClear .literal.xTaskGenericNotifyWait .literal.xTaskGetCoreID .literal.xTaskGetCurrentTaskHandle .literal.xTaskGetCurrentTaskHandleForCore .literal.xTaskGetHandle .literal.xTaskGetIdleTaskHandle .literal.xTaskGetIdleTaskHandleForCore .literal.xTaskGetSchedulerState .literal.xTaskGetStaticBuffers .literal.xTaskGetTickCount .literal.xTaskGetTickCountFromISR .literal.xTaskIncrementTick .literal.xTaskIncrementTickOtherCores .literal.xTaskPriorityDisinherit .literal.xTaskPriorityInherit .literal.xTaskRemoveFromEventList .literal.xTaskResumeAll .literal.xTaskResumeFromISR .text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTaskCanBeScheduledSMP .text.prvCheckTasksWaitingTermination .text.prvCreateIdleTasks .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask .text.prvInitialiseTaskLists .text.prvIsYieldRequiredSMP .text.prvListTasksWithinSingleList .text.prvReleaseKernelLock .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvSelectHighestPriorityTaskSMP .text.prvTakeKernelLock .text.prvTaskCheckFreeStackSpace .text.prvTaskIsTaskSuspended .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.prvWriteNameToBuffer .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.ulTaskGetIdleRunTimeCounter .text.ulTaskGetIdleRunTimeCounterForCore .text.ulTaskGetIdleRunTimePercent .text.ulTaskGetIdleRunTimePercentForCore .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskGetSystemState .text.uxTaskGetTaskNumber .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetInfo .text.vTaskGetRunTimeStats .text.vTaskGetSnapshot .text.vTaskInternalSetTimeOutState .text.vTaskList .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .text.vTaskSetTaskNumber .text.vTaskSetThreadLocalStoragePointer .text.vTaskSetThreadLocalStoragePointerAndDelCallback .text.vTaskSetTimeOutState .text.vTaskStartScheduler .text.vTaskSuspend .text.vTaskSuspendAll .text.vTaskSwitchContext .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetSchedulerState .text.xTaskGetStaticBuffers .text.xTaskGetTickCount .text.xTaskGetTickCountFromISR .text.xTaskIncrementTick .text.xTaskIncrementTickOtherCores .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal_esp32.*(.literal .literal.* .text .text.*) + *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) + *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) + *libhal.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) + *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl .text.multi_heap_aligned_alloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl_offs .text.multi_heap_aligned_alloc_impl_offs) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) + *libheap.a:multi_heap.*(.literal.multi_heap_free_impl .text.multi_heap_free_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_block_address_impl .text.multi_heap_get_block_address_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_first_block .text.multi_heap_get_first_block) + *libheap.a:multi_heap.*(.literal.multi_heap_get_next_block .text.multi_heap_get_next_block) + *libheap.a:multi_heap.*(.literal.multi_heap_internal_lock .text.multi_heap_internal_lock) + *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock) + *libheap.a:multi_heap.*(.literal.multi_heap_is_free .text.multi_heap_is_free) + *libheap.a:multi_heap.*(.literal.multi_heap_malloc_impl .text.multi_heap_malloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock) + *libheap.a:tlsf.*(.literal.tlsf_align_size .text.tlsf_align_size) + *libheap.a:tlsf.*(.literal.tlsf_alloc_overhead .text.tlsf_alloc_overhead) + *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size) + *libheap.a:tlsf.*(.literal.tlsf_block_size_max .text.tlsf_block_size_max) + *libheap.a:tlsf.*(.literal.tlsf_block_size_min .text.tlsf_block_size_min) + *libheap.a:tlsf.*(.literal.tlsf_free .text.tlsf_free) + *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool) + *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc) + *libheap.a:tlsf.*(.literal.tlsf_memalign .text.tlsf_memalign) + *libheap.a:tlsf.*(.literal.tlsf_memalign_offs .text.tlsf_memalign_offs) + *libheap.a:tlsf.*(.literal.tlsf_realloc .text.tlsf_realloc) + *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size) + *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *libnet80211.a:(.wifislprxiram .wifislprxiram.*) + *libnewlib.a:abort.*(.literal .literal.* .text .text.*) + *libnewlib.a:assert.*(.literal .literal.* .text .text.*) + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) + *libpp.a:(.wifi0iram .wifi0iram.*) + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *libpp.a:(.wifirxiram .wifirxiram.*) + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *librtc.a:(.literal .literal.* .text .text.*) + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) + *libxt_hal.a:(.literal .literal.* .text .text.*) + *libxtensa.a:(EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .literal EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .literal.* EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .text EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .text.*) + } > iram0_0_seg + .dram0.data : + { + _data_start = ABSOLUTE(.); + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(.data .data.*) + *(.dram1 .dram1.*) + _coredump_dram_start = ABSOLUTE(.); + *(.dram2.coredump .dram2.coredump.*) + _coredump_dram_end = ABSOLUTE(.); + *libapp_trace.a:app_trace.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libapp_trace.a:app_trace_util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libapp_trace.a:port_uart.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_config.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:cache_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:esp_cache.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:cache_hal_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:wdt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + _data_end = ABSOLUTE(.); + . = ALIGN(4); + } > dram0_0_seg + /** + + * This section holds data that won't be initialised when startup. + + * This section locates in External RAM region. + + */ + .ext_ram_noinit (NOLOAD) : + { + _ext_ram_noinit_start = ABSOLUTE(.); + *(.ext_ram_noinit*) + . = ALIGN(4); + _ext_ram_noinit_end = ABSOLUTE(.); + } > extern_ram_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 + /* external memory bss, from any global variable with EXT_RAM_BSS_ATTR attribute*/ + .ext_ram.bss (NOLOAD) : + { + _ext_ram_bss_start = ABSOLUTE(.); + . = ALIGN(4); + _ext_ram_bss_end = ABSOLUTE(.); + } > extern_ram_seg + /* Shared RAM */ + .dram0.bss (NOLOAD) : + { + . = ALIGN (8); + _bss_start = ABSOLUTE(.); + *(.bss .bss.*) + *(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem) + *(.ext_ram.bss .ext_ram.bss.*) + *(COMMON) + . = 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.appdesc : ALIGN(0x10) + { + _rodata_reserved_start = ABSOLUTE(.); /* This is a symbol marking the flash.rodata start, this can be used for mmu driver to maintain virtual address */ + _rodata_start = ABSOLUTE(.); + *(.rodata_desc .rodata_desc.*) /* Should be the first. App version info. DO NOT PUT ANYTHING BEFORE IT! */ + *(.rodata_custom_desc .rodata_custom_desc.*) /* Should be the second. Custom app version info. DO NOT PUT ANYTHING BEFORE IT! */ + /* 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 + .flash.rodata : ALIGN(0x10) + { + _flash_rodata_start = ABSOLUTE(.); + *(EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .rodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .rodata.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .sdata2 EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .sdata2.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .srodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .srodata.*) + *(.rodata_wlog_error .rodata_wlog_error.*) + *(.rodata_wlog_info .rodata_wlog_info.*) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.gnu.linkonce.r.*) + *(.rodata1) + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + . = (. + 3) & ~ 3; + /* C++ constructor and destructor tables + + + + Make a point of not including anything from crtbegin.o or crtend.o, as IDF doesn't use toolchain crt + + */ + __init_array_start = ABSOLUTE(.); + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors SORT(.ctors.*))) + __init_array_end = ABSOLUTE(.); + KEEP (*crtbegin.*(.dtors)) + KEEP (*(EXCLUDE_FILE (*crtend.*) .dtors)) + KEEP (*(SORT(.dtors.*))) + KEEP (*(.dtors)) + /* C++ exception handlers table: */ + __XT_EXCEPTION_DESCS_ = ABSOLUTE(.); + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.); + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + /* Addresses of memory regions reserved via + + SOC_RESERVE_MEMORY_REGION() */ + 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 */ + _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(.); + . = ALIGN(4); + _thread_local_start = ABSOLUTE(.); + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + _thread_local_end = ABSOLUTE(.); + . = ALIGN(4); + } >default_rodata_seg + _flash_rodata_align = ALIGNOF(.flash.rodata); + /* + + This section is a place where we dump all the rodata which aren't used at runtime, + + so as to avoid binary size increase + + */ + .flash.rodata_noload (NOLOAD) : + { + /* + + This is a symbol marking the flash.rodata end, this can be used for mmu driver to maintain virtual address + + We don't need to include the noload rodata in this section + + */ + _rodata_reserved_end = ABSOLUTE(.); + . = ALIGN (4); + *(.rodata_wlog_debug .rodata_wlog_debug.*) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + } > default_rodata_seg + .flash.text : + { + _stext = .; + _instruction_reserved_start = ABSOLUTE(.); /* This is a symbol marking the flash.text start, this can be used for mmu driver to maintain virtual address */ + _text_start = ABSOLUTE(.); + *(EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .literal EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .literal.* EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .text EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_freertos.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .text.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram.*) + *(.wifiextrairam .wifiextrairam.*) + *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram.*) + *(.wifislpiram .wifislpiram.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram.*) + *libdriver.a:gptimer.*(.literal.gptimer_acquire_group_handle .literal.gptimer_del_timer .literal.gptimer_destroy .literal.gptimer_disable .literal.gptimer_enable .literal.gptimer_get_captured_count .literal.gptimer_get_raw_count .literal.gptimer_get_resolution .literal.gptimer_new_timer .literal.gptimer_register_event_callbacks .literal.gptimer_register_to_group .literal.gptimer_release_group_handle .literal.gptimer_select_periph_clock .literal.gptimer_set_alarm_action .literal.gptimer_set_raw_count .literal.gptimer_start .literal.gptimer_stop .literal.gptimer_unregister_from_group .literal.timer_ll_enable_bus_clock .literal.timer_ll_set_clock_prescale .text .text.gptimer_acquire_group_handle .text.gptimer_del_timer .text.gptimer_destroy .text.gptimer_disable .text.gptimer_enable .text.gptimer_get_captured_count .text.gptimer_get_raw_count .text.gptimer_get_resolution .text.gptimer_new_timer .text.gptimer_register_event_callbacks .text.gptimer_register_to_group .text.gptimer_release_group_handle .text.gptimer_select_periph_clock .text.gptimer_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop .text.gptimer_unregister_from_group .text.timer_ll_enable_bus_clock .text.timer_ll_set_clock_prescale) + *libesp_event.a:default_event_loop.*(.literal.esp_event_handler_instance_register .literal.esp_event_handler_instance_unregister .literal.esp_event_handler_register .literal.esp_event_handler_unregister .literal.esp_event_loop_create_default .literal.esp_event_loop_delete_default .literal.esp_event_post .text .text.esp_event_handler_instance_register .text.esp_event_handler_instance_unregister .text.esp_event_handler_register .text.esp_event_handler_unregister .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_post) + *libesp_event.a:esp_event.*(.literal.base_node_add_handler .literal.base_node_remove_all_handler .literal.base_node_remove_handler .literal.esp_event_handler_instance_register_with .literal.esp_event_handler_instance_unregister_with .literal.esp_event_handler_register_with .literal.esp_event_handler_register_with_internal .literal.esp_event_handler_unregister_with .literal.esp_event_handler_unregister_with_internal .literal.esp_event_loop_create .literal.esp_event_loop_delete .literal.esp_event_loop_run .literal.esp_event_loop_run_task .literal.esp_event_post_to .literal.handler_instances_add .literal.handler_instances_remove .literal.handler_instances_remove_all .literal.loop_node_add_handler .literal.loop_node_remove_all_handler .literal.loop_node_remove_handler .text .text.base_node_add_handler .text.base_node_remove_all_handler .text.base_node_remove_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.handler_execute .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_node_remove_all_handler .text.loop_node_remove_handler) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_intr_get_desc .literal.esp_cpu_set_watchpoint .text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_intr_get_desc .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + *libesp_hw_support.a:esp_gpio_reserve.*(.text) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_ll_disable_clk_set_rst .literal.periph_ll_enable_clk_clear_rst .literal.periph_ll_get_clk_en_mask .literal.periph_ll_get_rst_en_mask .literal.periph_ll_reset .literal.periph_ll_wifi_module_disable_clk_set_rst .literal.periph_ll_wifi_module_enable_clk_clear_rst .literal.periph_module_disable .literal.periph_module_enable .literal.periph_rcc_acquire_enter .literal.periph_rcc_acquire_exit .literal.periph_rcc_release_enter .literal.periph_rcc_release_exit .text .text.periph_ll_disable_clk_set_rst .text.periph_ll_enable_clk_clear_rst .text.periph_ll_get_clk_en_mask .text.periph_ll_get_rst_en_mask .text.periph_ll_reset .text.periph_ll_wifi_module_disable_clk_set_rst .text.periph_ll_wifi_module_enable_clk_clear_rst .text.periph_module_disable .text.periph_module_enable .text.periph_rcc_acquire_enter .text.periph_rcc_acquire_exit .text.periph_rcc_release_enter .text.periph_rcc_release_exit) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_init .text .text.rtc_init) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.s_sar_power_acquire .literal.s_sar_power_release .literal.sar_periph_ctrl_adc_continuous_power_acquire .literal.sar_periph_ctrl_adc_continuous_power_release .literal.sar_periph_ctrl_adc_oneshot_power_acquire .literal.sar_periph_ctrl_adc_oneshot_power_release .literal.sar_periph_ctrl_init .literal.sar_periph_ctrl_power_disable .literal.sar_periph_ctrl_pwdet_power_acquire .literal.sar_periph_ctrl_pwdet_power_release .text .text.s_sar_power_acquire .text.s_sar_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_init .text.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release) + *libesp_system.a:esp_system_chip.*(.literal.esp_get_free_heap_size .literal.esp_get_free_internal_heap_size .literal.esp_get_idf_version .literal.esp_get_minimum_free_heap_size .text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size) + *libesp_wifi.a:esp_adapter.*(.literal.esp_cpu_intr_disable .literal.esp_cpu_intr_enable .literal.esp_event_post_wrapper .literal.esp_phy_disable_wrapper .literal.esp_phy_enable_wrapper .literal.event_group_wait_bits_wrapper .literal.get_time_wrapper .literal.mutex_create_wrapper .literal.mutex_delete_wrapper .literal.queue_create_wrapper .literal.queue_delete_wrapper .literal.queue_recv_wrapper .literal.queue_send_to_back_wrapper .literal.queue_send_to_front_wrapper .literal.queue_send_wrapper .literal.recursive_mutex_create_wrapper .literal.set_intr_wrapper .literal.set_isr_wrapper .literal.task_create_pinned_to_core_wrapper .literal.task_create_wrapper .literal.wifi_clock_disable_wrapper .literal.wifi_clock_enable_wrapper .literal.wifi_create_queue .literal.wifi_create_queue_wrapper .literal.wifi_delete_queue .literal.wifi_delete_queue_wrapper .literal.wifi_reset_mac_wrapper .literal.wifi_thread_semphr_free .literal.wifi_thread_semphr_get_wrapper .text .text.clear_intr_wrapper .text.coex_deinit_wrapper .text.coex_disable_wrapper .text.coex_enable_wrapper .text.coex_init_wrapper .text.coex_register_start_cb_wrapper .text.coex_schm_curr_period_get_wrapper .text.coex_schm_curr_phase_get_wrapper .text.coex_schm_interval_get_wrapper .text.coex_schm_process_restart_wrapper .text.coex_schm_register_cb_wrapper .text.coex_schm_status_bit_clear_wrapper .text.coex_schm_status_bit_set_wrapper .text.coex_wifi_channel_set_wrapper .text.coex_wifi_request_wrapper .text.esp_cpu_intr_disable .text.esp_cpu_intr_enable .text.esp_event_post_wrapper .text.esp_phy_disable_wrapper .text.esp_phy_enable_wrapper .text.event_group_wait_bits_wrapper .text.get_time_wrapper .text.mutex_create_wrapper .text.mutex_delete_wrapper .text.queue_create_wrapper .text.queue_delete_wrapper .text.queue_recv_wrapper .text.queue_send_to_back_wrapper .text.queue_send_to_front_wrapper .text.queue_send_wrapper .text.recursive_mutex_create_wrapper .text.set_intr_wrapper .text.set_isr_wrapper .text.task_create_pinned_to_core_wrapper .text.task_create_wrapper .text.task_get_max_priority_wrapper .text.wifi_clock_disable_wrapper .text.wifi_clock_enable_wrapper .text.wifi_create_queue .text.wifi_create_queue_wrapper .text.wifi_delete_queue .text.wifi_delete_queue_wrapper .text.wifi_reset_mac_wrapper .text.wifi_thread_semphr_free .text.wifi_thread_semphr_get_wrapper) + *libesp_wifi.a:wifi_netif.*(.literal.esp_wifi_create_if_driver .literal.esp_wifi_destroy_if_driver .literal.esp_wifi_get_if_mac .literal.esp_wifi_register_if_rxcb .literal.wifi_ap_receive .literal.wifi_driver_start .literal.wifi_free .literal.wifi_transmit .text .text.esp_wifi_create_if_driver .text.esp_wifi_destroy_if_driver .text.esp_wifi_get_if_mac .text.esp_wifi_is_if_ready_when_started .text.esp_wifi_register_if_rxcb .text.wifi_ap_receive .text.wifi_driver_start .text.wifi_free .text.wifi_transmit) + *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) + *libfreertos.a:freertos_compatibility.*(.literal .literal.* .text .text.*) + *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*) + *libfreertos.a:tasks.*(.literal.pxGetTaskListByIndex .text.pxGetTaskListByIndex) + *libfreertos.a:tasks.*(.literal.uxTaskGetSnapshotAll .text.uxTaskGetSnapshotAll) + *libfreertos.a:tasks.*(.literal.xTaskGetNext .text.xTaskGetNext) + *libhal.a:timer_hal.*(.literal.timer_hal_deinit .literal.timer_hal_init .text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) + *libheap.a:multi_heap.*(.literal.multi_heap_check .literal.multi_heap_dump .literal.multi_heap_dump_tlsf .literal.multi_heap_get_info_impl .literal.multi_heap_register_impl .text .text.multi_heap_check .text.multi_heap_dump .text.multi_heap_dump_tlsf .text.multi_heap_free_size_impl .text.multi_heap_get_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl) + *libheap.a:tlsf.*(.literal.control_construct .literal.default_walker .literal.integrity_walker .literal.tlsf_add_pool .literal.tlsf_check .literal.tlsf_check_pool .literal.tlsf_create .literal.tlsf_create_with_pool .literal.tlsf_fit_size .literal.tlsf_remove_pool .literal.tlsf_walk_pool .text .text.control_construct .text.default_walker .text.integrity_walker .text.tlsf_add_pool .text.tlsf_check .text.tlsf_check_pool .text.tlsf_create .text.tlsf_create_with_pool .text.tlsf_destroy .text.tlsf_fit_size .text.tlsf_pool_overhead .text.tlsf_remove_pool .text.tlsf_walk_pool) + *liblog.a:log.*(.literal.add_to_cache .literal.clear_log_level_list .literal.esp_log_level_get .literal.esp_log_level_set .literal.esp_log_set_vprintf .literal.esp_log_writev .literal.fix_cache_generation_overflow .literal.get_cached_log_level .literal.get_uncached_log_level .literal.heap_bubble_down .literal.heap_swap .literal.s_log_level_get_and_unlock .text .text.add_to_cache .text.clear_log_level_list .text.esp_log_level_get .text.esp_log_level_set .text.esp_log_set_vprintf .text.esp_log_writev .text.fix_cache_generation_overflow .text.get_cached_log_level .text.get_uncached_log_level .text.heap_bubble_down .text.heap_swap .text.s_log_level_get_and_unlock) + *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text .text.esp_log_system_timestamp) + *libphy.a:(.phyiram .phyiram.*) + *libxtensa.a:xt_trax.*(.literal .literal.* .text .text.*) + *libxtensa.a:xtensa_intr.*(.literal .literal.* .text .text.*) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.fini.literal) + *(.fini) + *(.gnu.version) + /** 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 + + */ + . += _esp_flash_mmap_prefetch_pad_size; + _text_end = ABSOLUTE(.); + _instruction_reserved_end = ABSOLUTE(.); /* This is a symbol marking the flash.text end, this can be used for mmu driver to maintain virtual address */ + _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 + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + . = ALIGN (4); + _iram_text_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.data : + { + . = ALIGN(4); + _iram_data_start = ABSOLUTE(.); + *(.iram.data .iram.data.*) + _coredump_iram_start = ABSOLUTE(.); + *(.iram2.coredump .iram2.coredump.*) + _coredump_iram_end = ABSOLUTE(.); + _iram_data_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.bss (NOLOAD) : + { + . = ALIGN(4); + _iram_bss_start = ABSOLUTE(.); + *(.iram.bss .iram.bss.*) + _iram_bss_end = ABSOLUTE(.); + . = ALIGN(4); + _iram_end = ABSOLUTE(.); + } > iram0_0_seg + /* Marks the end of data, bss and possibly rodata */ + .dram0.heap_start (NOLOAD) : + { + . = ALIGN (8); + /* Lowest possible start address for the heap */ + _heap_low_start = ABSOLUTE(.); + } > dram0_0_seg + /** This section 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 + + */ + .xt.prop 0 : + { + KEEP (*(.xt.prop .xt.prop.* .gnu.linkonce.prop.*)) + } + .xt.lit 0 : + { + KEEP (*(.xt.lit .xt.lit.* .gnu.linkonce.p.*)) + } + /DISCARD/ : + { + *(.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/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld.in b/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld.in new file mode 100644 index 0000000..c3f2e75 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld.in @@ -0,0 +1,485 @@ +/* + + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* + + * Automatically generated file. DO NOT EDIT. + + * Espressif IoT Development Framework (ESP-IDF) 5.2.2 Configuration Header + + */ + +/* List of deprecated options */ +/* 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); + mapping[rtc_text] + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + _rtc_text_end = ABSOLUTE(.); + } > rtc_iram_seg + /* + + This section is required to skip rtc.text area because rtc_iram_seg and + + rtc_data_seg are reflect the same address space on different buses. + + */ + .rtc.dummy : + { + _rtc_dummy_start = ABSOLUTE(.); + _rtc_fast_start = ABSOLUTE(.); + . = SIZEOF(.rtc.text); + _rtc_dummy_end = ABSOLUTE(.); + } > rtc_data_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_ESP32_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_ESP32_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 FAST data that should have fixed addresses. + + * The data are not initialized at power-up and are retained during deep sleep. + + */ + .rtc_fast_reserved (NOLOAD): + { + . = ALIGN(4); + _rtc_fast_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 << */ + KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) + _rtc_fast_reserved_end = ABSOLUTE(.); + } > rtc_fast_reserved_seg + _rtc_fast_reserved_length = _rtc_fast_reserved_end - _rtc_fast_reserved_start; + ASSERT((_rtc_fast_reserved_length <= LENGTH(rtc_fast_reserved_seg)), + "RTC FAST reserved segment data does not fit.") + /** + + * This section holds RTC SLOW data that should have fixed addresses. + + * The data are not initialized at power-up and are retained during deep sleep. + + */ + .rtc_slow_reserved (NOLOAD): + { + . = ALIGN(4); + _rtc_slow_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.*) + _rtc_slow_reserved_end = ABSOLUTE(.); + } > rtc_slow_reserved_seg + _rtc_slow_reserved_length = _rtc_slow_reserved_end - _rtc_slow_reserved_start; + _rtc_reserved_length = _rtc_slow_reserved_length; + ASSERT((_rtc_slow_reserved_length <= LENGTH(rtc_slow_reserved_seg)), + "RTC SLOW 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(.); + /* Vectors according to builds/RF-2015.2-win32/esp108_v1_2_s5_512int_2/config.html */ + . = 0x0; + KEEP(*(.WindowVectors.text)); + . = 0x180; + KEEP(*(.Level2InterruptVector.text)); + . = 0x1c0; + KEEP(*(.Level3InterruptVector.text)); + . = 0x200; + KEEP(*(.Level4InterruptVector.text)); + . = 0x240; + KEEP(*(.Level5InterruptVector.text)); + . = 0x280; + KEEP(*(.DebugExceptionVector.text)); + . = 0x2c0; + KEEP(*(.NMIExceptionVector.text)); + . = 0x300; + KEEP(*(.KernelExceptionVector.text)); + . = 0x340; + KEEP(*(.UserExceptionVector.text)); + . = 0x3C0; + KEEP(*(.DoubleExceptionVector.text)); + . = 0x400; + _invalid_pc_placeholder = ABSOLUTE(.); + *(.*Vector.literal) + *(.UserEnter.literal); + *(.UserEnter.text); + . = ALIGN (16); + *(.entry.text) + *(.init.literal) + *(.init) + _init_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.text : + { + /* Code marked as runnning out of IRAM */ + _iram_text_start = ABSOLUTE(.); + mapping[iram0_text] + } > iram0_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(.); + . = ALIGN(4); + } > dram0_0_seg + /** + + * This section holds data that won't be initialised when startup. + + * This section locates in External RAM region. + + */ + .ext_ram_noinit (NOLOAD) : + { + _ext_ram_noinit_start = ABSOLUTE(.); + *(.ext_ram_noinit*) + . = ALIGN(4); + _ext_ram_noinit_end = ABSOLUTE(.); + } > extern_ram_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 + /* external memory bss, from any global variable with EXT_RAM_BSS_ATTR attribute*/ + .ext_ram.bss (NOLOAD) : + { + _ext_ram_bss_start = ABSOLUTE(.); + mapping[extern_ram] + . = ALIGN(4); + _ext_ram_bss_end = ABSOLUTE(.); + } > extern_ram_seg + /* Shared RAM */ + .dram0.bss (NOLOAD) : + { + . = ALIGN (8); + _bss_start = ABSOLUTE(.); + 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.appdesc : ALIGN(0x10) + { + _rodata_reserved_start = ABSOLUTE(.); /* This is a symbol marking the flash.rodata start, this can be used for mmu driver to maintain virtual address */ + _rodata_start = ABSOLUTE(.); + *(.rodata_desc .rodata_desc.*) /* Should be the first. App version info. DO NOT PUT ANYTHING BEFORE IT! */ + *(.rodata_custom_desc .rodata_custom_desc.*) /* Should be the second. Custom app version info. DO NOT PUT ANYTHING BEFORE IT! */ + /* 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 + .flash.rodata : ALIGN(0x10) + { + _flash_rodata_start = ABSOLUTE(.); + mapping[flash_rodata] + *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.gnu.linkonce.r.*) + *(.rodata1) + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + . = (. + 3) & ~ 3; + /* C++ constructor and destructor tables + + + + Make a point of not including anything from crtbegin.o or crtend.o, as IDF doesn't use toolchain crt + + */ + __init_array_start = ABSOLUTE(.); + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors SORT(.ctors.*))) + __init_array_end = ABSOLUTE(.); + KEEP (*crtbegin.*(.dtors)) + KEEP (*(EXCLUDE_FILE (*crtend.*) .dtors)) + KEEP (*(SORT(.dtors.*))) + KEEP (*(.dtors)) + /* C++ exception handlers table: */ + __XT_EXCEPTION_DESCS_ = ABSOLUTE(.); + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.); + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + /* Addresses of memory regions reserved via + + SOC_RESERVE_MEMORY_REGION() */ + 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 */ + _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(.); + . = ALIGN(4); + _thread_local_start = ABSOLUTE(.); + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + _thread_local_end = ABSOLUTE(.); + . = ALIGN(4); + } >default_rodata_seg + _flash_rodata_align = ALIGNOF(.flash.rodata); + /* + + This section is a place where we dump all the rodata which aren't used at runtime, + + so as to avoid binary size increase + + */ + .flash.rodata_noload (NOLOAD) : + { + /* + + This is a symbol marking the flash.rodata end, this can be used for mmu driver to maintain virtual address + + We don't need to include the noload rodata in this section + + */ + _rodata_reserved_end = ABSOLUTE(.); + . = ALIGN (4); + mapping[rodata_noload] + } > default_rodata_seg + .flash.text : + { + _stext = .; + _instruction_reserved_start = ABSOLUTE(.); /* This is a symbol marking the flash.text start, this can be used for mmu driver to maintain virtual address */ + _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 */ + *(.fini.literal) + *(.fini) + *(.gnu.version) + /** 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 + + */ + . += _esp_flash_mmap_prefetch_pad_size; + _text_end = ABSOLUTE(.); + _instruction_reserved_end = ABSOLUTE(.); /* This is a symbol marking the flash.text end, this can be used for mmu driver to maintain virtual address */ + _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 + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + . = ALIGN (4); + _iram_text_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.data : + { + . = ALIGN(4); + _iram_data_start = ABSOLUTE(.); + mapping[iram0_data] + _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) : + { + . = ALIGN (8); + /* Lowest possible start address for the heap */ + _heap_low_start = ABSOLUTE(.); + } > dram0_0_seg + /** This section 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 + + */ + .xt.prop 0 : + { + KEEP (*(.xt.prop .xt.prop.* .gnu.linkonce.prop.*)) + } + .xt.lit 0 : + { + KEEP (*(.xt.lit .xt.lit.* .gnu.linkonce.p.*)) + } + /DISCARD/ : + { + *(.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/ESPIDFNEW/build/esp-idf/esp_system/libesp_system.a b/ESPIDFNEW/build/esp-idf/esp_system/libesp_system.a new file mode 100644 index 0000000..e0eab5e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_system/libesp_system.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_system/port/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_system/port/cmake_install.cmake new file mode 100644 index 0000000..9f38b4f --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_system/port/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/port/soc/esp32/cmake_install.cmake") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_system/port/soc/esp32/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_system/port/soc/esp32/cmake_install.cmake new file mode 100644 index 0000000..f638f8e --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_system/port/soc/esp32/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj b/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj new file mode 100644 index 0000000..18abb8c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj b/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj new file mode 100644 index 0000000..8caa408 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj b/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj new file mode 100644 index 0000000..4e7a03d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj new file mode 100644 index 0000000..73717be Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj b/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj new file mode 100644 index 0000000..eb1e335 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_timer/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_timer/cmake_install.cmake new file mode 100644 index 0000000..0205062 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_timer/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_timer/libesp_timer.a b/ESPIDFNEW/build/esp-idf/esp_timer/libesp_timer.a new file mode 100644 index 0000000..b4ca455 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_timer/libesp_timer.a differ diff --git a/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj new file mode 100644 index 0000000..9315e66 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj new file mode 100644 index 0000000..b114abe Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj new file mode 100644 index 0000000..ed6db99 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj new file mode 100644 index 0000000..d42414f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj new file mode 100644 index 0000000..379a6da Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj new file mode 100644 index 0000000..ba3835a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj new file mode 100644 index 0000000..4556f07 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj new file mode 100644 index 0000000..17af7ea Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/esp_wifi/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esp_wifi/cmake_install.cmake new file mode 100644 index 0000000..a7eef54 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esp_wifi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esp_wifi/libesp_wifi.a b/ESPIDFNEW/build/esp-idf/esp_wifi/libesp_wifi.a new file mode 100644 index 0000000..d48f123 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/esp_wifi/libesp_wifi.a differ diff --git a/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj new file mode 100644 index 0000000..1a88931 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj new file mode 100644 index 0000000..54d7aae Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj new file mode 100644 index 0000000..2892e61 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_crc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj new file mode 100644 index 0000000..97d4e51 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj new file mode 100644 index 0000000..bfc9b62 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj new file mode 100644 index 0000000..c31576c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_sha.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj new file mode 100644 index 0000000..47db315 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj new file mode 100644 index 0000000..c8e45d9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espcoredump/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/espcoredump/cmake_install.cmake new file mode 100644 index 0000000..b929a39 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/espcoredump/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/espcoredump/libespcoredump.a b/ESPIDFNEW/build/esp-idf/espcoredump/libespcoredump.a new file mode 100644 index 0000000..c6b2973 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espcoredump/libespcoredump.a differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/aes3_tie_log.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/aes3_tie_log.c.obj new file mode 100644 index 0000000..070fa44 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/aes3_tie_log.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/dsps_pwroftwo.cpp.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/dsps_pwroftwo.cpp.obj new file mode 100644 index 0000000..870c24e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/common/misc/dsps_pwroftwo.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ae32.S.obj new file mode 100644 index 0000000..c3afadc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ansi.c.obj new file mode 100644 index 0000000..81a2328 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_ccorr_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ae32.S.obj new file mode 100644 index 0000000..f8b8d5a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ansi.c.obj new file mode 100644 index 0000000..42fd9d8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_conv_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ae32.S.obj new file mode 100644 index 0000000..0d4807f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ansi.c.obj new file mode 100644 index 0000000..36c9874 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/conv/float/dsps_corr_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dct/float/dsps_dct_f32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dct/float/dsps_dct_f32.c.obj new file mode 100644 index 0000000..741adfe Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dct/float/dsps_dct_f32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c.obj new file mode 100644 index 0000000..3f18be0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c.obj new file mode 100644 index 0000000..a51de8f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c.obj new file mode 100644 index 0000000..5a098e5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c.obj new file mode 100644 index 0000000..5002628 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_ansi.c.obj new file mode 100644 index 0000000..33b01d8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_ansi.c.obj new file mode 100644 index 0000000..e966ed0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_s8_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_ansi.c.obj new file mode 100644 index 0000000..bdfc3f8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_ansi.c.obj new file mode 100644 index 0000000..8d32255 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dspi_dotprod_u8_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ae32.S.obj new file mode 100644 index 0000000..5b1e823 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ansi.c.obj new file mode 100644 index 0000000..0454a35 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_f32_ansi.c.obj new file mode 100644 index 0000000..badd422 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_off_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_off_f32_ansi.c.obj new file mode 100644 index 0000000..915c281 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dspi_dotprod_off_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ae32.S.obj new file mode 100644 index 0000000..664784e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ansi.c.obj new file mode 100644 index 0000000..c0c1426 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_m_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_m_ae32.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprod_f32_m_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ae32.S.obj new file mode 100644 index 0000000..117acfd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ansi.c.obj new file mode 100644 index 0000000..ba92cca Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_m_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_m_ae32.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/dotprod/float/dsps_dotprode_f32_m_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ae32.S.obj new file mode 100644 index 0000000..f9f9ea9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ansi.c.obj new file mode 100644 index 0000000..dae4918 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/fixed/dsps_fft2r_sc16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c.obj new file mode 100644 index 0000000..659a267 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32.c.obj new file mode 100644 index 0000000..a1b9276 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32_.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32_.S.obj new file mode 100644 index 0000000..2494a52 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ae32_.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_aes3_.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_aes3_.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_aes3_.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ansi.c.obj new file mode 100644 index 0000000..5e66d44 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft2r_fc32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c.obj new file mode 100644 index 0000000..5439d2a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ae32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ae32.c.obj new file mode 100644 index 0000000..64d29f9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ae32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ansi.c.obj new file mode 100644 index 0000000..e2a9dfd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fft/float/dsps_fft4r_fc32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fir_s16_m_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fir_s16_m_ae32.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fir_s16_m_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_init_s16.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_init_s16.c.obj new file mode 100644 index 0000000..5b06014 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_init_s16.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ae32.S.obj new file mode 100644 index 0000000..59e830b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_aes3.S.obj new file mode 100644 index 0000000..e04a752 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ansi.c.obj new file mode 100644 index 0000000..16ed5b1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/fixed/dsps_fird_s16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ae32.S.obj new file mode 100644 index 0000000..bfc5a41 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ansi.c.obj new file mode 100644 index 0000000..ac857fe Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_init_f32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_init_f32.c.obj new file mode 100644 index 0000000..eb31732 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fir_init_f32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ae32.S.obj new file mode 100644 index 0000000..dfdc0a1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ansi.c.obj new file mode 100644 index 0000000..0273312 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_init_f32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_init_f32.c.obj new file mode 100644 index 0000000..209db48 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/fir/float/dsps_fird_init_f32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ae32.S.obj new file mode 100644 index 0000000..2045423 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ansi.c.obj new file mode 100644 index 0000000..935dfba Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_gen_f32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_gen_f32.c.obj new file mode 100644 index 0000000..7d243a7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/iir/biquad/dsps_biquad_gen_f32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf/common/ekf.cpp.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf/common/ekf.cpp.obj new file mode 100644 index 0000000..0331117 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf/common/ekf.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf_imu13states/ekf_imu13states.cpp.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf_imu13states/ekf_imu13states.cpp.obj new file mode 100644 index 0000000..190734a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/kalman/ekf_imu13states/ekf_imu13states.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ae32.S.obj new file mode 100644 index 0000000..e732ef0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ansi.c.obj new file mode 100644 index 0000000..7805164 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_ansi.c.obj new file mode 100644 index 0000000..8a492da Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/fixed/dsps_add_s8_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ae32.S.obj new file mode 100644 index 0000000..b1238da Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ansi.c.obj new file mode 100644 index 0000000..15350bb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/add/float/dsps_add_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ae32.S.obj new file mode 100644 index 0000000..5f6fdb4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ansi.c.obj new file mode 100644 index 0000000..438c2ed Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/addc/float/dsps_addc_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ae32.S.obj new file mode 100644 index 0000000..1ee23e0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ansi.c.obj new file mode 100644 index 0000000..2023e00 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_ansi.c.obj new file mode 100644 index 0000000..e5aeb86 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/fixed/dsps_mul_s8_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ae32.S.obj new file mode 100644 index 0000000..3610fd2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ansi.c.obj new file mode 100644 index 0000000..7a3170a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mul/float/dsps_mul_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ae32.S.obj new file mode 100644 index 0000000..59a0f04 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ansi.c.obj new file mode 100644 index 0000000..0f79855 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/fixed/dsps_mulc_s16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ae32.S.obj new file mode 100644 index 0000000..8e9f0b0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ansi.c.obj new file mode 100644 index 0000000..136b9f9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/mulc/float/dsps_mulc_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sqrt/float/dsps_sqrt_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sqrt/float/dsps_sqrt_f32_ansi.c.obj new file mode 100644 index 0000000..493bd76 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sqrt/float/dsps_sqrt_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ae32.S.obj new file mode 100644 index 0000000..79f2a48 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ansi.c.obj new file mode 100644 index 0000000..90f700c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_ansi.c.obj new file mode 100644 index 0000000..ce65a92 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/fixed/dsps_sub_s8_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ae32.S.obj new file mode 100644 index 0000000..289dace Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ansi.c.obj new file mode 100644 index 0000000..432c32d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/math/sub/float/dsps_sub_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ae32.S.obj new file mode 100644 index 0000000..6df97f6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ansi.c.obj new file mode 100644 index 0000000..16758b3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/add/float/dspm_add_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ae32.S.obj new file mode 100644 index 0000000..2ba854a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ansi.c.obj new file mode 100644 index 0000000..dc49af9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/addc/float/dspm_addc_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mat/mat.cpp.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mat/mat.cpp.obj new file mode 100644 index 0000000..1977898 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mat/mat.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ae32.S.obj new file mode 100644 index 0000000..fe40bad Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ansi.c.obj new file mode 100644 index 0000000..9977b7d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S.obj new file mode 100644 index 0000000..1295b2d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S.obj new file mode 100644 index 0000000..0fe837b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S.obj new file mode 100644 index 0000000..f2344a3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S.obj new file mode 100644 index 0000000..74eff5e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S.obj new file mode 100644 index 0000000..c1fad4f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c.obj new file mode 100644 index 0000000..b7ef6c7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ae32.S.obj new file mode 100644 index 0000000..c3f3e16 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ansi.c.obj new file mode 100644 index 0000000..83fa8d3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mul/float/dspm_mult_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ae32.S.obj new file mode 100644 index 0000000..29ec8f3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ansi.c.obj new file mode 100644 index 0000000..8fc7d0f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/mulc/float/dspm_mulc_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ae32.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ae32.S.obj new file mode 100644 index 0000000..d798290 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ae32.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ansi.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ansi.c.obj new file mode 100644 index 0000000..6715d5c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/matrix/sub/float/dspm_sub_f32_ansi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.S.obj new file mode 100644 index 0000000..7918f9a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.c.obj new file mode 100644 index 0000000..abe5a38 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen_init.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen_init.c.obj new file mode 100644 index 0000000..f3feba3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/cplx_gen/dsps_cplx_gen_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memcpy_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memcpy_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memcpy_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memset_aes3.S.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memset_aes3.S.obj new file mode 100644 index 0000000..42deedd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/mem/esp32s3/dsps_memset_aes3.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_d_gen.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_d_gen.c.obj new file mode 100644 index 0000000..b64c64e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_d_gen.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_h_gen.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_h_gen.c.obj new file mode 100644 index 0000000..870d946 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_h_gen.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_tone_gen.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_tone_gen.c.obj new file mode 100644 index 0000000..91a23e9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/misc/dsps_tone_gen.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/sfdr/float/dsps_sfdr_f32.cpp.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/sfdr/float/dsps_sfdr_f32.cpp.obj new file mode 100644 index 0000000..126a2f7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/sfdr/float/dsps_sfdr_f32.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/snr/float/dsps_snr_f32.cpp.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/snr/float/dsps_snr_f32.cpp.obj new file mode 100644 index 0000000..656207b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/snr/float/dsps_snr_f32.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/view/dsps_view.cpp.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/view/dsps_view.cpp.obj new file mode 100644 index 0000000..088be8c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/support/view/dsps_view.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman/float/dsps_wind_blackman_f32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman/float/dsps_wind_blackman_f32.c.obj new file mode 100644 index 0000000..c89e8f4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman/float/dsps_wind_blackman_f32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c.obj new file mode 100644 index 0000000..ac4e2b2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c.obj new file mode 100644 index 0000000..e83bf91 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/flat_top/float/dsps_wind_flat_top_f32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/flat_top/float/dsps_wind_flat_top_f32.c.obj new file mode 100644 index 0000000..1095c0d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/flat_top/float/dsps_wind_flat_top_f32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/hann/float/dsps_wind_hann_f32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/hann/float/dsps_wind_hann_f32.c.obj new file mode 100644 index 0000000..3249214 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/hann/float/dsps_wind_hann_f32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/nuttall/float/dsps_wind_nuttall_f32.c.obj b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/nuttall/float/dsps_wind_nuttall_f32.c.obj new file mode 100644 index 0000000..3bd8ae1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/CMakeFiles/__idf_espressif__esp-dsp.dir/modules/windows/nuttall/float/dsps_wind_nuttall_f32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/cmake_install.cmake new file mode 100644 index 0000000..43a039f --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a new file mode 100644 index 0000000..26cecf4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a differ diff --git a/ESPIDFNEW/build/esp-idf/esptool_py/app-flash_args.in b/ESPIDFNEW/build/esp-idf/esptool_py/app-flash_args.in new file mode 100644 index 0000000..092de65 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esptool_py/app-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size detect +0x10000 $.bin \ No newline at end of file diff --git a/ESPIDFNEW/build/esp-idf/esptool_py/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/esptool_py/cmake_install.cmake new file mode 100644 index 0000000..4502708 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/esptool_py/flasher_args.json.in b/ESPIDFNEW/build/esp-idf/esptool_py/flasher_args.json.in new file mode 100644 index 0000000..bdc7d3d --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/esptool_py/flasher_args.json.in @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "detect", + "--flash_freq", "40m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "detect", + "flash_freq": "40m" + }, + "flash_files" : { + "0x1000" : "bootloader/bootloader.bin", + "0x10000" : "$.bin", + "0x8000" : "partition_table/partition-table.bin" + }, + "bootloader" : { "offset" : "0x1000", "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" : "esp32" + } +} diff --git a/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj new file mode 100644 index 0000000..be9d81b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj new file mode 100644 index 0000000..aa72bee Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj new file mode 100644 index 0000000..6d23df2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj new file mode 100644 index 0000000..d9d4645 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj new file mode 100644 index 0000000..a28e40d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj new file mode 100644 index 0000000..ccc3ccc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj new file mode 100644 index 0000000..a64ef51 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj new file mode 100644 index 0000000..dc1aecf Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj new file mode 100644 index 0000000..7bedc82 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj new file mode 100644 index 0000000..39a4dd8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/fatfs/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/fatfs/cmake_install.cmake new file mode 100644 index 0000000..422d71e --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/fatfs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/fatfs/libfatfs.a b/ESPIDFNEW/build/esp-idf/fatfs/libfatfs.a new file mode 100644 index 0000000..b8915b6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/fatfs/libfatfs.a differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj new file mode 100644 index 0000000..f72cdda Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj new file mode 100644 index 0000000..ff1acab Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj new file mode 100644 index 0000000..7a17148 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj new file mode 100644 index 0000000..12c5d91 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj new file mode 100644 index 0000000..189684b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj new file mode 100644 index 0000000..4f6d178 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj new file mode 100644 index 0000000..8895b2c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj new file mode 100644 index 0000000..3d2b05a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj new file mode 100644 index 0000000..5d9b8d3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj new file mode 100644 index 0000000..2ec0505 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj new file mode 100644 index 0000000..bb7ae93 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj new file mode 100644 index 0000000..44dbc50 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj new file mode 100644 index 0000000..4185654 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj new file mode 100644 index 0000000..18eedc4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj new file mode 100644 index 0000000..4784390 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj new file mode 100644 index 0000000..ff620bb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/freertos/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/freertos/cmake_install.cmake new file mode 100644 index 0000000..0d46e17 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/freertos/libfreertos.a b/ESPIDFNEW/build/esp-idf/freertos/libfreertos.a new file mode 100644 index 0000000..3e25f2b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/freertos/libfreertos.a differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj new file mode 100644 index 0000000..8d78194 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj new file mode 100644 index 0000000..4d3bc44 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj new file mode 100644 index 0000000..dba786d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj new file mode 100644 index 0000000..159d5b1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj new file mode 100644 index 0000000..77ea1f7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj new file mode 100644 index 0000000..d0de97e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj new file mode 100644 index 0000000..3099d49 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj new file mode 100644 index 0000000..dc561b5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/clk_tree_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/clk_tree_hal.c.obj new file mode 100644 index 0000000..51f240f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/clk_tree_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj new file mode 100644 index 0000000..f659e69 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj new file mode 100644 index 0000000..77c14ea Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj new file mode 100644 index 0000000..f9dec81 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj new file mode 100644 index 0000000..3462b3d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj new file mode 100644 index 0000000..5bba884 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj new file mode 100644 index 0000000..b601d26 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj new file mode 100644 index 0000000..d9bebe1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj new file mode 100644 index 0000000..5a79049 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj new file mode 100644 index 0000000..5d8ddff Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj new file mode 100644 index 0000000..51a11e6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj new file mode 100644 index 0000000..060db24 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj new file mode 100644 index 0000000..e523494 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj new file mode 100644 index 0000000..2d68166 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj new file mode 100644 index 0000000..8080688 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj new file mode 100644 index 0000000..fd3b4e1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj new file mode 100644 index 0000000..8939ac3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj new file mode 100644 index 0000000..b0d45cc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj new file mode 100644 index 0000000..6d2f2c7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj new file mode 100644 index 0000000..a4c5a84 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj new file mode 100644 index 0000000..2719665 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj new file mode 100644 index 0000000..0c442ea Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj new file mode 100644 index 0000000..6507b55 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj new file mode 100644 index 0000000..3a5ff59 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj new file mode 100644 index 0000000..326bfe9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj new file mode 100644 index 0000000..b5865b5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj new file mode 100644 index 0000000..140ac87 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj new file mode 100644 index 0000000..d76011c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj new file mode 100644 index 0000000..1036398 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj new file mode 100644 index 0000000..614bdba Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj new file mode 100644 index 0000000..6194a89 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj new file mode 100644 index 0000000..a32191a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj new file mode 100644 index 0000000..dd323a6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj new file mode 100644 index 0000000..f299dd2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj new file mode 100644 index 0000000..de2780c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj new file mode 100644 index 0000000..e750e6a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/hal/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/hal/cmake_install.cmake new file mode 100644 index 0000000..6087537 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/hal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/hal/libhal.a b/ESPIDFNEW/build/esp-idf/hal/libhal.a new file mode 100644 index 0000000..9a8785e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/hal/libhal.a differ diff --git a/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj new file mode 100644 index 0000000..988e37f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj new file mode 100644 index 0000000..a819201 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj new file mode 100644 index 0000000..6abffa6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj new file mode 100644 index 0000000..4316798 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj new file mode 100644 index 0000000..333d226 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj new file mode 100644 index 0000000..4c01b40 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/heap/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/heap/cmake_install.cmake new file mode 100644 index 0000000..f1aba0f --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/heap/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/heap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/heap/libheap.a b/ESPIDFNEW/build/esp-idf/heap/libheap.a new file mode 100644 index 0000000..e04acb0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/heap/libheap.a differ diff --git a/ESPIDFNEW/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj b/ESPIDFNEW/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj new file mode 100644 index 0000000..3fa92b2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/http_parser/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/http_parser/cmake_install.cmake new file mode 100644 index 0000000..9d3e060 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/http_parser/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/http_parser/libhttp_parser.a b/ESPIDFNEW/build/esp-idf/http_parser/libhttp_parser.a new file mode 100644 index 0000000..06d2d9a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/http_parser/libhttp_parser.a differ diff --git a/ESPIDFNEW/build/esp-idf/idf_test/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/idf_test/cmake_install.cmake new file mode 100644 index 0000000..3b7fb5f --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/idf_test/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/ieee802154/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/ieee802154/cmake_install.cmake new file mode 100644 index 0000000..570fc4e --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/ieee802154/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj b/ESPIDFNEW/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj new file mode 100644 index 0000000..09c6c6b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj b/ESPIDFNEW/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj new file mode 100644 index 0000000..b854ebf Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/json/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/json/cmake_install.cmake new file mode 100644 index 0000000..8fe900e --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/json/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/json + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/json/libjson.a b/ESPIDFNEW/build/esp-idf/json/libjson.a new file mode 100644 index 0000000..a6f09f9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/json/libjson.a differ diff --git a/ESPIDFNEW/build/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj b/ESPIDFNEW/build/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj new file mode 100644 index 0000000..9bb2def Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj b/ESPIDFNEW/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj new file mode 100644 index 0000000..45594f6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj b/ESPIDFNEW/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj new file mode 100644 index 0000000..bff91fc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/log/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/log/cmake_install.cmake new file mode 100644 index 0000000..c59a579 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/log/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/log + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/log/liblog.a b/ESPIDFNEW/build/esp-idf/log/liblog.a new file mode 100644 index 0000000..a65d7ce Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/log/liblog.a differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj new file mode 100644 index 0000000..78a619a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj new file mode 100644 index 0000000..d6ef2f5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj new file mode 100644 index 0000000..3c70132 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj new file mode 100644 index 0000000..a615def Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj new file mode 100644 index 0000000..5556342 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj new file mode 100644 index 0000000..eacfcd7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj new file mode 100644 index 0000000..e95c35a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj new file mode 100644 index 0000000..cac0df5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj new file mode 100644 index 0000000..87f1b72 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj new file mode 100644 index 0000000..706ab99 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj new file mode 100644 index 0000000..9fc7a55 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj new file mode 100644 index 0000000..7e08fc3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj new file mode 100644 index 0000000..7d8be23 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj new file mode 100644 index 0000000..b21039a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj new file mode 100644 index 0000000..ec94429 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj new file mode 100644 index 0000000..10c6bfa Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj new file mode 100644 index 0000000..f6001f9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj new file mode 100644 index 0000000..0b75c97 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj new file mode 100644 index 0000000..2be8027 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj new file mode 100644 index 0000000..ac1041b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj new file mode 100644 index 0000000..9ba7402 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj new file mode 100644 index 0000000..5b4a12b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj new file mode 100644 index 0000000..e1ef446 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj new file mode 100644 index 0000000..d0c7558 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj new file mode 100644 index 0000000..4de394d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj new file mode 100644 index 0000000..ab3c217 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj new file mode 100644 index 0000000..36e6283 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj new file mode 100644 index 0000000..46bfec0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj new file mode 100644 index 0000000..a59342a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj new file mode 100644 index 0000000..64a088d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj new file mode 100644 index 0000000..d8ba63d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj new file mode 100644 index 0000000..c70d5f3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj new file mode 100644 index 0000000..848004c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj new file mode 100644 index 0000000..2646736 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj new file mode 100644 index 0000000..318699a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj new file mode 100644 index 0000000..7263096 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj new file mode 100644 index 0000000..fe78cb1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj new file mode 100644 index 0000000..8894ca0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj new file mode 100644 index 0000000..8e024c7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj new file mode 100644 index 0000000..6668cd0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj new file mode 100644 index 0000000..0dd2b5f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj new file mode 100644 index 0000000..0a0ebc6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj new file mode 100644 index 0000000..d02c446 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj new file mode 100644 index 0000000..96da7d2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj new file mode 100644 index 0000000..f3c6744 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj new file mode 100644 index 0000000..0d13ce5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj new file mode 100644 index 0000000..958c0b7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj new file mode 100644 index 0000000..3b8fa22 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj new file mode 100644 index 0000000..8eab283 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj new file mode 100644 index 0000000..4e062dc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj new file mode 100644 index 0000000..b2ed95f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj new file mode 100644 index 0000000..e2ad40e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj new file mode 100644 index 0000000..cccca9d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj new file mode 100644 index 0000000..77c61a4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj new file mode 100644 index 0000000..ac2f447 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj new file mode 100644 index 0000000..858219a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj new file mode 100644 index 0000000..1900ce7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj new file mode 100644 index 0000000..e32495b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj new file mode 100644 index 0000000..53a5dfb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj new file mode 100644 index 0000000..b21b2bd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj new file mode 100644 index 0000000..80f120c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj new file mode 100644 index 0000000..660906e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj new file mode 100644 index 0000000..7ea51b8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj new file mode 100644 index 0000000..0555f44 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj new file mode 100644 index 0000000..b82d09c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj new file mode 100644 index 0000000..5ac617a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj new file mode 100644 index 0000000..22c9aec Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj new file mode 100644 index 0000000..bde6905 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj new file mode 100644 index 0000000..80cc170 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj new file mode 100644 index 0000000..9e7bdba Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj new file mode 100644 index 0000000..25e62ac Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj new file mode 100644 index 0000000..8042cef Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj new file mode 100644 index 0000000..b4be2ae Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj new file mode 100644 index 0000000..79b324f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj new file mode 100644 index 0000000..3765d97 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj new file mode 100644 index 0000000..551fa97 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj new file mode 100644 index 0000000..2febb3d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj new file mode 100644 index 0000000..25bfe87 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj new file mode 100644 index 0000000..38b40e8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj new file mode 100644 index 0000000..2b9099c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj new file mode 100644 index 0000000..ffd1a63 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj new file mode 100644 index 0000000..3217a11 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj new file mode 100644 index 0000000..421e464 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj new file mode 100644 index 0000000..e284ad7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj new file mode 100644 index 0000000..f6e3b72 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj new file mode 100644 index 0000000..9ca1ad5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/lwip/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/lwip/cmake_install.cmake new file mode 100644 index 0000000..1a23518 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/lwip/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/lwip/liblwip.a b/ESPIDFNEW/build/esp-idf/lwip/liblwip.a new file mode 100644 index 0000000..da1fbdf Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/lwip/liblwip.a differ diff --git a/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/button.c.obj b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/button.c.obj new file mode 100644 index 0000000..d2695ab Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/button.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/filter/butterworthdesign.c.obj b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/filter/butterworthdesign.c.obj new file mode 100644 index 0000000..9cfc004 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/filter/butterworthdesign.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/filter/signalpath.c.obj b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/filter/signalpath.c.obj new file mode 100644 index 0000000..4a5bd62 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/filter/signalpath.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/flash.c.obj b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/flash.c.obj new file mode 100644 index 0000000..d1a78d9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/flash.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/http_control.c.obj b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/http_control.c.obj new file mode 100644 index 0000000..9468a90 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/http_control.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/power/husb238.c.obj b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/power/husb238.c.obj new file mode 100644 index 0000000..c07253f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/power/husb238.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/ssd1306/ssd1306.c.obj b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/ssd1306/ssd1306.c.obj new file mode 100644 index 0000000..2bc37d5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/ssd1306/ssd1306.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj new file mode 100644 index 0000000..e0c54a1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/main/CMakeFiles/__idf_main.dir/station_example_main.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/main/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/main/cmake_install.cmake new file mode 100644 index 0000000..880f5a3 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/main/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/main/libmain.a b/ESPIDFNEW/build/esp-idf/main/libmain.a new file mode 100644 index 0000000..39e8b00 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/main/libmain.a differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj b/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj new file mode 100644 index 0000000..3bfd2a6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj new file mode 100644 index 0000000..48259c0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..39d69cd --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/mbedtls/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/libmbedtls.a b/ESPIDFNEW/build/esp-idf/mbedtls/libmbedtls.a new file mode 100644 index 0000000..9379560 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/libmbedtls.a differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake new file mode 100644 index 0000000..25d5d38 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake @@ -0,0 +1,46 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake") + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake") + +endif() + diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj new file mode 100644 index 0000000..0ba8a3d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj new file mode 100644 index 0000000..43618e7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj new file mode 100644 index 0000000..ccdf02b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake new file mode 100644 index 0000000..b03c81f --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake @@ -0,0 +1,47 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-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 "C:/Users/Job/esp/v5.2.2/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 "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a new file mode 100644 index 0000000..cf27476 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj new file mode 100644 index 0000000..3fb3e54 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj new file mode 100644 index 0000000..e20fd51 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake new file mode 100644 index 0000000..997ce7f --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake @@ -0,0 +1,47 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/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)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-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 "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/:C:/Users/Job/esp/v5.2.2/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 "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a new file mode 100644 index 0000000..5a012c6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..136ea6d --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake @@ -0,0 +1,48 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake") + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake") + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake") + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake") + +endif() + diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake new file mode 100644 index 0000000..a680523 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake @@ -0,0 +1,145 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-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 + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aes.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aria.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1write.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/base64.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/bignum.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/block_cipher.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/build_info.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/camellia.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ccm.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chacha20.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chachapoly.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/check_config.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cipher.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cmac.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/compat-2.x.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_crypto.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_from_psa.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_from_legacy.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_superset_legacy.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_ssl.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_x509.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_psa.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/constant_time.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ctr_drbg.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/debug.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/des.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/dhm.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdh.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdsa.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecjpake.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecp.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/entropy.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/error.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/gcm.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hkdf.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hmac_drbg.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/lms.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/mbedtls_config.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md5.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/memory_buffer_alloc.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/net_sockets.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/nist_kw.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/oid.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pem.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pk.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs12.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs5.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs7.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_time.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_util.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/poly1305.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/private_access.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/psa_util.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ripemd160.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/rsa.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha1.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha256.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha3.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha512.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cache.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ciphersuites.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cookie.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ticket.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/threading.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/timing.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/version.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crl.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crt.h" + "C:/Users/Job/esp/v5.2.2/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 + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/build_info.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_auto_enabled.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_key_pair_types.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_synonyms.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_composites.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_key_derivation.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_primitives.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_compat.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_config.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_common.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_composites.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_key_derivation.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_primitives.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_extra.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_legacy.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_platform.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_se_driver.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_sizes.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_struct.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_types.h" + "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_values.h" + ) +endif() + diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/block/esp_aes.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/block/esp_aes.c.obj new file mode 100644 index 0000000..c1f4fcd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/block/esp_aes.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj new file mode 100644 index 0000000..371ccc2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj new file mode 100644 index 0000000..5949517 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj new file mode 100644 index 0000000..b884efd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj new file mode 100644 index 0000000..05fce53 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj new file mode 100644 index 0000000..2bfe753 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_hardware.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_hardware.c.obj new file mode 100644 index 0000000..4c2bb04 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_hardware.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_mem.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_mem.c.obj new file mode 100644 index 0000000..3789875 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_mem.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_timing.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_timing.c.obj new file mode 100644 index 0000000..7d44a9f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_timing.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/md/esp_md.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/md/esp_md.c.obj new file mode 100644 index 0000000..2ce42d2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/md/esp_md.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj new file mode 100644 index 0000000..20bd219 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c.obj new file mode 100644 index 0000000..e986b36 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c.obj new file mode 100644 index 0000000..c6062f5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c.obj new file mode 100644 index 0000000..5e7cf70 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj new file mode 100644 index 0000000..cbc5b66 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj new file mode 100644 index 0000000..eb333ba Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj new file mode 100644 index 0000000..977edc2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj new file mode 100644 index 0000000..73884ae Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj new file mode 100644 index 0000000..d4042bc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj new file mode 100644 index 0000000..e0aa8bd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj new file mode 100644 index 0000000..8a8c105 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj new file mode 100644 index 0000000..666808d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj new file mode 100644 index 0000000..5905a8c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj new file mode 100644 index 0000000..fbbfa43 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj new file mode 100644 index 0000000..36447ae Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj new file mode 100644 index 0000000..c53a960 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj new file mode 100644 index 0000000..5f868dd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj new file mode 100644 index 0000000..af03064 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj new file mode 100644 index 0000000..7b389d9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj new file mode 100644 index 0000000..c4239ac Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj new file mode 100644 index 0000000..20fb517 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj new file mode 100644 index 0000000..42b36eb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj new file mode 100644 index 0000000..6328da0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj new file mode 100644 index 0000000..6f60030 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj new file mode 100644 index 0000000..b47b773 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj new file mode 100644 index 0000000..56f5683 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj new file mode 100644 index 0000000..5937ed8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj new file mode 100644 index 0000000..2edad46 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj new file mode 100644 index 0000000..99c9b4c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj new file mode 100644 index 0000000..e12693a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj new file mode 100644 index 0000000..5a9fee0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj new file mode 100644 index 0000000..2936c8e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj new file mode 100644 index 0000000..54bc78b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj new file mode 100644 index 0000000..08af376 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj new file mode 100644 index 0000000..730c291 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj new file mode 100644 index 0000000..99d28dd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj new file mode 100644 index 0000000..33cbcd3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj new file mode 100644 index 0000000..806bfc4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj new file mode 100644 index 0000000..f5270e0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj new file mode 100644 index 0000000..9d955f7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj new file mode 100644 index 0000000..f08f359 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj new file mode 100644 index 0000000..865016b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj new file mode 100644 index 0000000..7da6335 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj new file mode 100644 index 0000000..ab55f71 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj new file mode 100644 index 0000000..1766beb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj new file mode 100644 index 0000000..8e2eed8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj new file mode 100644 index 0000000..52b94e3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj new file mode 100644 index 0000000..17388a2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj new file mode 100644 index 0000000..6ce16e1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj new file mode 100644 index 0000000..6550680 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj new file mode 100644 index 0000000..917115e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj new file mode 100644 index 0000000..8ae2eb8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj new file mode 100644 index 0000000..18b1aa7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj new file mode 100644 index 0000000..a730a1a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj new file mode 100644 index 0000000..ab6fabc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj new file mode 100644 index 0000000..1208824 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj new file mode 100644 index 0000000..416eab7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj new file mode 100644 index 0000000..dc49c9d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj new file mode 100644 index 0000000..4983af9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj new file mode 100644 index 0000000..32844b3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj new file mode 100644 index 0000000..3481604 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj new file mode 100644 index 0000000..3cabf32 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj new file mode 100644 index 0000000..8e0308e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj new file mode 100644 index 0000000..692f370 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj new file mode 100644 index 0000000..6e18c32 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj new file mode 100644 index 0000000..21e788a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj new file mode 100644 index 0000000..4fc79b5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj new file mode 100644 index 0000000..10dd46f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj new file mode 100644 index 0000000..36ab20e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj new file mode 100644 index 0000000..44d99da Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj new file mode 100644 index 0000000..b45f6a6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj new file mode 100644 index 0000000..1ce5bac Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj new file mode 100644 index 0000000..3b6bd5b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj new file mode 100644 index 0000000..5c29cd0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj new file mode 100644 index 0000000..f0a8976 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj new file mode 100644 index 0000000..6b76563 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj new file mode 100644 index 0000000..c5798d8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj new file mode 100644 index 0000000..2cf2c54 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj new file mode 100644 index 0000000..ea3a2fb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj new file mode 100644 index 0000000..3d88a51 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj new file mode 100644 index 0000000..c198a81 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj new file mode 100644 index 0000000..3f707d3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj new file mode 100644 index 0000000..394983f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj new file mode 100644 index 0000000..20a3182 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj new file mode 100644 index 0000000..fdd81a4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj new file mode 100644 index 0000000..24222bb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_platform_time.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_platform_time.c.obj new file mode 100644 index 0000000..e0e9fed Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/esp_platform_time.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj new file mode 100644 index 0000000..8b0f6a3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/net_sockets.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/net_sockets.c.obj new file mode 100644 index 0000000..1a71002 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/port/net_sockets.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj new file mode 100644 index 0000000..5746e71 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj new file mode 100644 index 0000000..7a0b46a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj new file mode 100644 index 0000000..b7db4d5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj new file mode 100644 index 0000000..ebf7901 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj new file mode 100644 index 0000000..c04cb66 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj new file mode 100644 index 0000000..c3c4702 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj new file mode 100644 index 0000000..a197239 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj new file mode 100644 index 0000000..fc47c8f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj new file mode 100644 index 0000000..2e0205a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj new file mode 100644 index 0000000..651b956 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj new file mode 100644 index 0000000..babb041 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj new file mode 100644 index 0000000..e5973e4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj new file mode 100644 index 0000000..da4d61e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj new file mode 100644 index 0000000..47ec4e3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj new file mode 100644 index 0000000..4359cf1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj new file mode 100644 index 0000000..7b5dd11 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj new file mode 100644 index 0000000..8df14be Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj new file mode 100644 index 0000000..11ae917 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj new file mode 100644 index 0000000..5e60f13 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj new file mode 100644 index 0000000..5327f83 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj new file mode 100644 index 0000000..416619c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj new file mode 100644 index 0000000..9c9e2aa Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj new file mode 100644 index 0000000..54b5e7e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj new file mode 100644 index 0000000..bf56bf7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj new file mode 100644 index 0000000..7a27120 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj new file mode 100644 index 0000000..641ac4c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake new file mode 100644 index 0000000..98ac2eb --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/library + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-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 "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/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 "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/error.c b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/error.c new file mode 100644 index 0000000..84b637a --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/error.c @@ -0,0 +1,880 @@ +/* + * 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 - * Received NewSessionTicket Post Handshake Message. This error code is experimental and may be changed or removed without notice" ); + 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" ); +#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 */ + +#if defined(MBEDTLS_TEST_HOOKS) +void (*mbedtls_test_hook_error_add)(int, int, const char *, int); +#endif + +#endif /* MBEDTLS_ERROR_C || MBEDTLS_ERROR_STRERROR_DUMMY */ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a new file mode 100644 index 0000000..230e935 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a new file mode 100644 index 0000000..cc75b12 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a new file mode 100644 index 0000000..2b424e7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a differ diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c new file mode 100644 index 0000000..de8a526 --- /dev/null +++ b/ESPIDFNEW/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/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c new file mode 100644 index 0000000..f8b4448 --- /dev/null +++ b/ESPIDFNEW/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 "common.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 "UNKOWN"; +} +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/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/version_features.c b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/version_features.c new file mode 100644 index 0000000..406161d --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/library/version_features.c @@ -0,0 +1,841 @@ +/* + * 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_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_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_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_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/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake new file mode 100644 index 0000000..7a3b222 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/mbedtls/pkgconfig + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/mbedtls/x509_crt_bundle b/ESPIDFNEW/build/esp-idf/mbedtls/x509_crt_bundle new file mode 100644 index 0000000..1220522 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mbedtls/x509_crt_bundle differ diff --git a/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj b/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj new file mode 100644 index 0000000..e1c0192 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj b/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj new file mode 100644 index 0000000..07a5034 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj b/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj new file mode 100644 index 0000000..513a251 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj b/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj new file mode 100644 index 0000000..6906fa3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/mqtt/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/mqtt/cmake_install.cmake new file mode 100644 index 0000000..4c7936c --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/mqtt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/mqtt/libmqtt.a b/ESPIDFNEW/build/esp-idf/mqtt/libmqtt.a new file mode 100644 index 0000000..d33186b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/mqtt/libmqtt.a differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj new file mode 100644 index 0000000..276d24d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj new file mode 100644 index 0000000..fa42eaa Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj new file mode 100644 index 0000000..a14e122 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/getentropy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj new file mode 100644 index 0000000..c42cb00 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj new file mode 100644 index 0000000..388d3a7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj new file mode 100644 index 0000000..25ca808 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj new file mode 100644 index 0000000..3beb2a5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj new file mode 100644 index 0000000..3cf99b5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj new file mode 100644 index 0000000..aa07663 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj new file mode 100644 index 0000000..f485466 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj new file mode 100644 index 0000000..022763e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj new file mode 100644 index 0000000..ddc7e1a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj new file mode 100644 index 0000000..c9bec2a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj new file mode 100644 index 0000000..8bd977e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj new file mode 100644 index 0000000..6727627 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj new file mode 100644 index 0000000..41037fe Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj new file mode 100644 index 0000000..b368df4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/newlib/cmake_install.cmake new file mode 100644 index 0000000..5f5e3b9 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/newlib/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/port/cmake_install.cmake") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/newlib/libnewlib.a b/ESPIDFNEW/build/esp-idf/newlib/libnewlib.a new file mode 100644 index 0000000..733c2ff Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/newlib/libnewlib.a differ diff --git a/ESPIDFNEW/build/esp-idf/newlib/port/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/newlib/port/cmake_install.cmake new file mode 100644 index 0000000..0265d3f --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/newlib/port/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj new file mode 100644 index 0000000..8c38f87 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj new file mode 100644 index 0000000..d0f88b0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj new file mode 100644 index 0000000..7e7668b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj new file mode 100644 index 0000000..e0ac488 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj new file mode 100644 index 0000000..6e44771 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj new file mode 100644 index 0000000..117d5e6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj new file mode 100644 index 0000000..4ca51d6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj new file mode 100644 index 0000000..2ef6903 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj new file mode 100644 index 0000000..a2f1185 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj new file mode 100644 index 0000000..166f432 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj new file mode 100644 index 0000000..a9dbeaa Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj new file mode 100644 index 0000000..7be05f7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj new file mode 100644 index 0000000..daf4850 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj new file mode 100644 index 0000000..e6c2454 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/nvs_flash/cmake_install.cmake new file mode 100644 index 0000000..b1d869b --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/nvs_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/nvs_flash/libnvs_flash.a b/ESPIDFNEW/build/esp-idf/nvs_flash/libnvs_flash.a new file mode 100644 index 0000000..bdec1eb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_flash/libnvs_flash.a differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj b/ESPIDFNEW/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj new file mode 100644 index 0000000..6258881 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/nvs_sec_provider/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/nvs_sec_provider/cmake_install.cmake new file mode 100644 index 0000000..1a14c22 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/nvs_sec_provider/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a b/ESPIDFNEW/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a new file mode 100644 index 0000000..edd00a2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a differ diff --git a/ESPIDFNEW/build/esp-idf/openthread/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/openthread/cmake_install.cmake new file mode 100644 index 0000000..65d5919 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/openthread/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/openthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/partition_table/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/partition_table/cmake_install.cmake new file mode 100644 index 0000000..761d265 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/partition_table/partition-table-flash_args.in b/ESPIDFNEW/build/esp-idf/partition_table/partition-table-flash_args.in new file mode 100644 index 0000000..fa29dfe --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/partition_table/partition-table-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size detect +0x8000 partition_table/partition-table.bin \ No newline at end of file diff --git a/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj b/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj new file mode 100644 index 0000000..b57809b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj b/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj new file mode 100644 index 0000000..f58eb9e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj b/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj new file mode 100644 index 0000000..f4e115d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/perfmon/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/perfmon/cmake_install.cmake new file mode 100644 index 0000000..7f7d736 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/perfmon/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/perfmon/libperfmon.a b/ESPIDFNEW/build/esp-idf/perfmon/libperfmon.a new file mode 100644 index 0000000..cfd7c6b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/perfmon/libperfmon.a differ diff --git a/ESPIDFNEW/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj b/ESPIDFNEW/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj new file mode 100644 index 0000000..14b4f50 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protobuf-c/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/protobuf-c/cmake_install.cmake new file mode 100644 index 0000000..60bcbf9 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/protobuf-c/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/protobuf-c/libprotobuf-c.a b/ESPIDFNEW/build/esp-idf/protobuf-c/libprotobuf-c.a new file mode 100644 index 0000000..ec17ce9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protobuf-c/libprotobuf-c.a differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj new file mode 100644 index 0000000..5cd3514 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj new file mode 100644 index 0000000..3c73f9d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj new file mode 100644 index 0000000..83e0713 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj new file mode 100644 index 0000000..ea56fa5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj new file mode 100644 index 0000000..0396a61 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj new file mode 100644 index 0000000..afd949a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj new file mode 100644 index 0000000..a47f827 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj new file mode 100644 index 0000000..b7b8503 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj new file mode 100644 index 0000000..62425de Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj new file mode 100644 index 0000000..fd1c102 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj new file mode 100644 index 0000000..454bbab Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj new file mode 100644 index 0000000..da54a0b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj new file mode 100644 index 0000000..defa83b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/protocomm/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/protocomm/cmake_install.cmake new file mode 100644 index 0000000..f6bf3a7 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/protocomm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/protocomm/libprotocomm.a b/ESPIDFNEW/build/esp-idf/protocomm/libprotocomm.a new file mode 100644 index 0000000..9862a04 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/protocomm/libprotocomm.a differ diff --git a/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj b/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj new file mode 100644 index 0000000..c3eafc2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj b/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj new file mode 100644 index 0000000..09532f3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj b/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj new file mode 100644 index 0000000..e31cc59 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj b/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj new file mode 100644 index 0000000..49536b2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj b/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj new file mode 100644 index 0000000..8b6ad18 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/pthread/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/pthread/cmake_install.cmake new file mode 100644 index 0000000..b239866 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/pthread/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/pthread/libpthread.a b/ESPIDFNEW/build/esp-idf/pthread/libpthread.a new file mode 100644 index 0000000..e3cd101 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/pthread/libpthread.a differ diff --git a/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj new file mode 100644 index 0000000..1cc25f7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj new file mode 100644 index 0000000..79120f7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj new file mode 100644 index 0000000..018d8f5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj new file mode 100644 index 0000000..c8acb97 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj new file mode 100644 index 0000000..eead933 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj new file mode 100644 index 0000000..7642b35 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/sdmmc/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/sdmmc/cmake_install.cmake new file mode 100644 index 0000000..a7b9e2e --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/sdmmc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/sdmmc/libsdmmc.a b/ESPIDFNEW/build/esp-idf/sdmmc/libsdmmc.a new file mode 100644 index 0000000..91cada3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/sdmmc/libsdmmc.a differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj new file mode 100644 index 0000000..66b6bc4 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj new file mode 100644 index 0000000..70a03df Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj new file mode 100644 index 0000000..678e59a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj new file mode 100644 index 0000000..e7b1c85 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj new file mode 100644 index 0000000..708c6cd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj new file mode 100644 index 0000000..e1e62c5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj new file mode 100644 index 0000000..4b71f78 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj new file mode 100644 index 0000000..ad7df4e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj new file mode 100644 index 0000000..7170775 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj new file mode 100644 index 0000000..249c2b3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj new file mode 100644 index 0000000..becfa8c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj new file mode 100644 index 0000000..008625f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj new file mode 100644 index 0000000..94dc4e9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj new file mode 100644 index 0000000..cb3f4fa Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj new file mode 100644 index 0000000..25d742f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj new file mode 100644 index 0000000..6fca8ef Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj new file mode 100644 index 0000000..c24d4e8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj new file mode 100644 index 0000000..7d9feeb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj new file mode 100644 index 0000000..5183bbb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj new file mode 100644 index 0000000..bad8ef2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj new file mode 100644 index 0000000..432d525 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj new file mode 100644 index 0000000..a75ed60 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj new file mode 100644 index 0000000..0427bca Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj new file mode 100644 index 0000000..bb8ec23 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/soc/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/soc/cmake_install.cmake new file mode 100644 index 0000000..0cea5e9 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/soc/libsoc.a b/ESPIDFNEW/build/esp-idf/soc/libsoc.a new file mode 100644 index 0000000..5ae5b56 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/soc/libsoc.a differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj new file mode 100644 index 0000000..db57906 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj new file mode 100644 index 0000000..8fbe7a1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj new file mode 100644 index 0000000..45e7c89 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj new file mode 100644 index 0000000..02fe149 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj new file mode 100644 index 0000000..78830d2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj new file mode 100644 index 0000000..543f8d0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj new file mode 100644 index 0000000..b79b3a8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj new file mode 100644 index 0000000..6f6deb9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj new file mode 100644 index 0000000..cfb1f04 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj new file mode 100644 index 0000000..5a5e79f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj new file mode 100644 index 0000000..ef1ad4b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj new file mode 100644 index 0000000..1bd1a15 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj new file mode 100644 index 0000000..eb3ecc5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj new file mode 100644 index 0000000..8bf4cbf Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj new file mode 100644 index 0000000..2dedbc7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj new file mode 100644 index 0000000..4fda54d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj new file mode 100644 index 0000000..fe21071 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj new file mode 100644 index 0000000..d0fc331 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj new file mode 100644 index 0000000..6e662de Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/spi_flash/cmake_install.cmake new file mode 100644 index 0000000..0466e88 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/spi_flash/libspi_flash.a b/ESPIDFNEW/build/esp-idf/spi_flash/libspi_flash.a new file mode 100644 index 0000000..764a103 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spi_flash/libspi_flash.a differ diff --git a/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj new file mode 100644 index 0000000..423e1ae Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj new file mode 100644 index 0000000..5990e35 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj new file mode 100644 index 0000000..e9e20bc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj new file mode 100644 index 0000000..a5f4c13 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj new file mode 100644 index 0000000..22e3c37 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj new file mode 100644 index 0000000..7018498 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj new file mode 100644 index 0000000..7076ba8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/spiffs/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/spiffs/cmake_install.cmake new file mode 100644 index 0000000..a3825a7 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/spiffs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/spiffs/libspiffs.a b/ESPIDFNEW/build/esp-idf/spiffs/libspiffs.a new file mode 100644 index 0000000..46f8b67 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/spiffs/libspiffs.a differ diff --git a/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj b/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj new file mode 100644 index 0000000..be5f762 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj b/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj new file mode 100644 index 0000000..a9b403b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj b/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj new file mode 100644 index 0000000..16cdb8b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj b/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj new file mode 100644 index 0000000..781d83e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj b/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj new file mode 100644 index 0000000..ecad151 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/tcp_transport/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/tcp_transport/cmake_install.cmake new file mode 100644 index 0000000..c109862 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/tcp_transport/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/tcp_transport/libtcp_transport.a b/ESPIDFNEW/build/esp-idf/tcp_transport/libtcp_transport.a new file mode 100644 index 0000000..f394d8b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/tcp_transport/libtcp_transport.a differ diff --git a/ESPIDFNEW/build/esp-idf/ulp/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/ulp/cmake_install.cmake new file mode 100644 index 0000000..3b3df9e --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/ulp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/ulp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj new file mode 100644 index 0000000..cdb8199 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj new file mode 100644 index 0000000..60b53e9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj new file mode 100644 index 0000000..8da3338 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj new file mode 100644 index 0000000..ae9bc0c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj new file mode 100644 index 0000000..ec971ca Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj new file mode 100644 index 0000000..8fc1b08 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj new file mode 100644 index 0000000..1e1bdb3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/unity/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/unity/cmake_install.cmake new file mode 100644 index 0000000..2e8f20d --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/unity/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/unity + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/unity/libunity.a b/ESPIDFNEW/build/esp-idf/unity/libunity.a new file mode 100644 index 0000000..dae9379 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/unity/libunity.a differ diff --git a/ESPIDFNEW/build/esp-idf/usb/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/usb/cmake_install.cmake new file mode 100644 index 0000000..1977554 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/usb/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj b/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj new file mode 100644 index 0000000..c7490a8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj b/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj new file mode 100644 index 0000000..6d62fe5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj b/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj new file mode 100644 index 0000000..41d9ddb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj b/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj new file mode 100644 index 0000000..5adc943 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj b/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj new file mode 100644 index 0000000..4f0982f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/vfs/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/vfs/cmake_install.cmake new file mode 100644 index 0000000..68dcd3c --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/vfs/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/vfs/libvfs.a b/ESPIDFNEW/build/esp-idf/vfs/libvfs.a new file mode 100644 index 0000000..4779dcd Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/vfs/libvfs.a differ diff --git a/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj new file mode 100644 index 0000000..7404676 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj new file mode 100644 index 0000000..723be70 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj new file mode 100644 index 0000000..d95f3d1 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj new file mode 100644 index 0000000..4ba4b77 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj new file mode 100644 index 0000000..b849fdc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj new file mode 100644 index 0000000..2e81c96 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj new file mode 100644 index 0000000..fcbf1f8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wear_levelling/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/wear_levelling/cmake_install.cmake new file mode 100644 index 0000000..0f202c5 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/wear_levelling/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/wear_levelling/libwear_levelling.a b/ESPIDFNEW/build/esp-idf/wear_levelling/libwear_levelling.a new file mode 100644 index 0000000..f68ff56 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wear_levelling/libwear_levelling.a differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj new file mode 100644 index 0000000..5a40dd3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj new file mode 100644 index 0000000..ac20227 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj new file mode 100644 index 0000000..a5eb9cc Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj new file mode 100644 index 0000000..ad87b51 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj new file mode 100644 index 0000000..698902a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj new file mode 100644 index 0000000..42231be Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj new file mode 100644 index 0000000..c067745 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj new file mode 100644 index 0000000..bc72453 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj new file mode 100644 index 0000000..aba2776 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj new file mode 100644 index 0000000..36e978b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj new file mode 100644 index 0000000..4773747 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/wifi_provisioning/cmake_install.cmake new file mode 100644 index 0000000..aeaf459 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/wifi_provisioning/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/wifi_provisioning/libwifi_provisioning.a b/ESPIDFNEW/build/esp-idf/wifi_provisioning/libwifi_provisioning.a new file mode 100644 index 0000000..88fd0bb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wifi_provisioning/libwifi_provisioning.a differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj new file mode 100644 index 0000000..a3a1a5d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj new file mode 100644 index 0000000..8afea7e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj new file mode 100644 index 0000000..6dac923 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj new file mode 100644 index 0000000..4b9a587 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj new file mode 100644 index 0000000..98f30e9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj new file mode 100644 index 0000000..43dab0b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj new file mode 100644 index 0000000..46dbc2d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj new file mode 100644 index 0000000..ec616be Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj new file mode 100644 index 0000000..36908d5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj new file mode 100644 index 0000000..021467e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj new file mode 100644 index 0000000..257db79 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj new file mode 100644 index 0000000..d7fdeb8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj new file mode 100644 index 0000000..1a0b935 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj new file mode 100644 index 0000000..807ab63 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj new file mode 100644 index 0000000..26511a0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj new file mode 100644 index 0000000..852cd06 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj new file mode 100644 index 0000000..b2e4d39 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj new file mode 100644 index 0000000..b00e2e6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj new file mode 100644 index 0000000..96a3928 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj new file mode 100644 index 0000000..b091e42 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj new file mode 100644 index 0000000..1bc464d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj new file mode 100644 index 0000000..f3f5f04 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj new file mode 100644 index 0000000..7411a0c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj new file mode 100644 index 0000000..ee6e1b8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj new file mode 100644 index 0000000..4aabb5a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj new file mode 100644 index 0000000..1626f2a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj new file mode 100644 index 0000000..3e8d492 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj new file mode 100644 index 0000000..43defbb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj new file mode 100644 index 0000000..087f6e7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj new file mode 100644 index 0000000..742079c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj new file mode 100644 index 0000000..b28b3a2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj new file mode 100644 index 0000000..ef689f0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj new file mode 100644 index 0000000..c0b51af Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj new file mode 100644 index 0000000..4a22656 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj new file mode 100644 index 0000000..41be6df Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj new file mode 100644 index 0000000..00d5d56 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj new file mode 100644 index 0000000..df3cc6f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj new file mode 100644 index 0000000..6dcf081 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj new file mode 100644 index 0000000..6a4f0b2 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj new file mode 100644 index 0000000..af5c9d6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj new file mode 100644 index 0000000..3377265 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj new file mode 100644 index 0000000..6dea57f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj new file mode 100644 index 0000000..e7f6ef3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj new file mode 100644 index 0000000..b900520 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj new file mode 100644 index 0000000..22f3ba0 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj new file mode 100644 index 0000000..4358383 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj new file mode 100644 index 0000000..4f3387f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj new file mode 100644 index 0000000..f740b68 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj new file mode 100644 index 0000000..1fc29eb Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj new file mode 100644 index 0000000..5e61e1a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj new file mode 100644 index 0000000..e35b1f7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj new file mode 100644 index 0000000..74b29b8 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj new file mode 100644 index 0000000..a9b500a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj new file mode 100644 index 0000000..ccfb942 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj new file mode 100644 index 0000000..629d18c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj new file mode 100644 index 0000000..7e861be Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj new file mode 100644 index 0000000..08d84c9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj new file mode 100644 index 0000000..2631061 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj new file mode 100644 index 0000000..79fa5d5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj new file mode 100644 index 0000000..c201505 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj new file mode 100644 index 0000000..5387a48 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj new file mode 100644 index 0000000..db72e15 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj new file mode 100644 index 0000000..ff8e9d7 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj new file mode 100644 index 0000000..885d086 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj new file mode 100644 index 0000000..503ba71 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj new file mode 100644 index 0000000..85737ba Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj new file mode 100644 index 0000000..3c90890 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj new file mode 100644 index 0000000..967e5d6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj new file mode 100644 index 0000000..02e19b5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj new file mode 100644 index 0000000..5563ce6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj new file mode 100644 index 0000000..4ed8795 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj new file mode 100644 index 0000000..700705a Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj new file mode 100644 index 0000000..2efeaa3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj new file mode 100644 index 0000000..ab532d5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj new file mode 100644 index 0000000..073bc04 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj new file mode 100644 index 0000000..ea89b65 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj new file mode 100644 index 0000000..2b8596c Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj new file mode 100644 index 0000000..bacd9c3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj new file mode 100644 index 0000000..48ab9a3 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj new file mode 100644 index 0000000..032ac04 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj new file mode 100644 index 0000000..620f68e Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj new file mode 100644 index 0000000..962e0ed Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj new file mode 100644 index 0000000..fcd7746 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/wpa_supplicant/cmake_install.cmake new file mode 100644 index 0000000..00d68d0 --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/wpa_supplicant/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/wpa_supplicant/libwpa_supplicant.a b/ESPIDFNEW/build/esp-idf/wpa_supplicant/libwpa_supplicant.a new file mode 100644 index 0000000..a65819f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/wpa_supplicant/libwpa_supplicant.a differ diff --git a/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj new file mode 100644 index 0000000..f4dcbd5 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj new file mode 100644 index 0000000..0f1346f Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj new file mode 100644 index 0000000..e49a02b Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj new file mode 100644 index 0000000..a2164f9 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj differ diff --git a/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj new file mode 100644 index 0000000..3984d13 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj new file mode 100644 index 0000000..ee7889d Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj differ diff --git a/ESPIDFNEW/build/esp-idf/xtensa/cmake_install.cmake b/ESPIDFNEW/build/esp-idf/xtensa/cmake_install.cmake new file mode 100644 index 0000000..9f79c9c --- /dev/null +++ b/ESPIDFNEW/build/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ESPIDFNEW") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + diff --git a/ESPIDFNEW/build/esp-idf/xtensa/libxtensa.a b/ESPIDFNEW/build/esp-idf/xtensa/libxtensa.a new file mode 100644 index 0000000..2caf0f6 Binary files /dev/null and b/ESPIDFNEW/build/esp-idf/xtensa/libxtensa.a differ diff --git a/ESPIDFNEW/build/flash_app_args b/ESPIDFNEW/build/flash_app_args new file mode 100644 index 0000000..c9215f6 --- /dev/null +++ b/ESPIDFNEW/build/flash_app_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size detect +0x10000 ESPIDFNEW.bin diff --git a/ESPIDFNEW/build/flash_args b/ESPIDFNEW/build/flash_args new file mode 100644 index 0000000..4106ec1 --- /dev/null +++ b/ESPIDFNEW/build/flash_args @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 40m --flash_size detect +0x1000 bootloader/bootloader.bin +0x10000 ESPIDFNEW.bin +0x8000 partition_table/partition-table.bin diff --git a/ESPIDFNEW/build/flash_args.in b/ESPIDFNEW/build/flash_args.in new file mode 100644 index 0000000..d995198 --- /dev/null +++ b/ESPIDFNEW/build/flash_args.in @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 40m --flash_size detect +0x1000 bootloader/bootloader.bin +0x10000 $.bin +0x8000 partition_table/partition-table.bin \ No newline at end of file diff --git a/ESPIDFNEW/build/flash_bootloader_args b/ESPIDFNEW/build/flash_bootloader_args new file mode 100644 index 0000000..f56a6c7 --- /dev/null +++ b/ESPIDFNEW/build/flash_bootloader_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size detect +0x1000 bootloader/bootloader.bin diff --git a/ESPIDFNEW/build/flash_project_args b/ESPIDFNEW/build/flash_project_args new file mode 100644 index 0000000..4106ec1 --- /dev/null +++ b/ESPIDFNEW/build/flash_project_args @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 40m --flash_size detect +0x1000 bootloader/bootloader.bin +0x10000 ESPIDFNEW.bin +0x8000 partition_table/partition-table.bin diff --git a/ESPIDFNEW/build/flasher_args.json b/ESPIDFNEW/build/flasher_args.json new file mode 100644 index 0000000..3bcad79 --- /dev/null +++ b/ESPIDFNEW/build/flasher_args.json @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "detect", + "--flash_freq", "40m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "detect", + "flash_freq": "40m" + }, + "flash_files" : { + "0x1000" : "bootloader/bootloader.bin", + "0x10000" : "ESPIDFNEW.bin", + "0x8000" : "partition_table/partition-table.bin" + }, + "bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "ESPIDFNEW.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" : "esp32" + } +} diff --git a/ESPIDFNEW/build/kconfigs.in b/ESPIDFNEW/build/kconfigs.in new file mode 100644 index 0000000..09dedc4 --- /dev/null +++ b/ESPIDFNEW/build/kconfigs.in @@ -0,0 +1,53 @@ +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/bt/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_server/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/heap/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/log/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/ulp/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/unity/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/usb/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/Kconfig" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/Kconfig" +source "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/Kconfig" \ No newline at end of file diff --git a/ESPIDFNEW/build/kconfigs_projbuild.in b/ESPIDFNEW/build/kconfigs_projbuild.in new file mode 100644 index 0000000..18a1664 --- /dev/null +++ b/ESPIDFNEW/build/kconfigs_projbuild.in @@ -0,0 +1,5 @@ +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/Kconfig.projbuild" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/Kconfig.projbuild" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/Kconfig.projbuild" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/Kconfig.projbuild" +source "C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/Kconfig.projbuild" \ No newline at end of file diff --git a/ESPIDFNEW/build/ldgen_libraries b/ESPIDFNEW/build/ldgen_libraries new file mode 100644 index 0000000..abf1a9f --- /dev/null +++ b/ESPIDFNEW/build/ldgen_libraries @@ -0,0 +1,65 @@ +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/xtensa/libxtensa.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_ringbuf/libesp_ringbuf.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/libefuse.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_mm/libesp_mm.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/driver/libdriver.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_pm/libesp_pm.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/libmbedtls.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_app_format/libesp_app_format.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader_support/libbootloader_support.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_partition/libesp_partition.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_update/libapp_update.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spi_flash/libspi_flash.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/pthread/libpthread.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/libesp_system.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_rom/libesp_rom.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/hal/libhal.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/log/liblog.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/heap/libheap.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/soc/libsoc.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/libesp_hw_support.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/freertos/libfreertos.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/libnewlib.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cxx/libcxx.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_common/libesp_common.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_timer/libesp_timer.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_trace/libapp_trace.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_event/libesp_event.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_flash/libnvs_flash.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_phy/libesp_phy.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/vfs/libvfs.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/lwip/liblwip.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif/libesp_netif.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wpa_supplicant/libwpa_supplicant.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_coex/libesp_coex.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_wifi/libesp_wifi.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/unity/libunity.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmock/libcmock.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/console/libconsole.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/http_parser/libhttp_parser.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp-tls/libesp-tls.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_adc/libesp_adc.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_eth/libesp_eth.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_gdbstub/libesp_gdbstub.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hid/libesp_hid.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/tcp_transport/libtcp_transport.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_client/libesp_http_client.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_server/libesp_http_server.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_ota/libesp_https_ota.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_lcd/libesp_lcd.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protobuf-c/libprotobuf-c.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protocomm/libprotocomm.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espcoredump/libespcoredump.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wear_levelling/libwear_levelling.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/sdmmc/libsdmmc.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/fatfs/libfatfs.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/json/libjson.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mqtt/libmqtt.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/perfmon/libperfmon.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spiffs/libspiffs.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wifi_provisioning/libwifi_provisioning.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a +C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/main/libmain.a diff --git a/ESPIDFNEW/build/ldgen_libraries.in b/ESPIDFNEW/build/ldgen_libraries.in new file mode 100644 index 0000000..509df19 --- /dev/null +++ b/ESPIDFNEW/build/ldgen_libraries.in @@ -0,0 +1,65 @@ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ \ No newline at end of file diff --git a/ESPIDFNEW/build/log/idf_py_stderr_output_10872 b/ESPIDFNEW/build/log/idf_py_stderr_output_10872 new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/log/idf_py_stderr_output_8928 b/ESPIDFNEW/build/log/idf_py_stderr_output_8928 new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/log/idf_py_stdout_output_10872 b/ESPIDFNEW/build/log/idf_py_stdout_output_10872 new file mode 100644 index 0000000..a221a9c --- /dev/null +++ b/ESPIDFNEW/build/log/idf_py_stdout_output_10872 @@ -0,0 +1 @@ +[0/1] cmd.exe /C "cd /D C:\Users\Job\source\repos\ESPVBAN\ESPIDFNEW\build && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe C:/Users/Job/esp/v5.2.2/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config.env && C:\Users\Job\.espressif\python_env\idf5.2_py3.11_env\Scripts\python.exe -m kconfserver --env-file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/config.env --kconfig C:/Users/Job/esp/{"version": 2, "values": {"SOC_BROWNOUT_RESET_SUPPORTED": "Not determined", "SOC_TWAI_BRP_DIV_SUPPORTED": "Not determined", "SOC_DPORT_WORKAROUND": "Not determined", "SOC_CAPS_ECO_VER_MAX": 301, "SOC_ADC_SUPPORTED": true, "SOC_DAC_SUPPORTED": true, "SOC_UART_SUPPORTED": true, "SOC_MCPWM_SUPPORTED": true, "SOC_GPTIMER_SUPPORTED": true, "SOC_SDMMC_HOST_SUPPORTED": true, "SOC_BT_SUPPORTED": true, "SOC_PCNT_SUPPORTED": true, "SOC_WIFI_SUPPORTED": true, "SOC_SDIO_SLAVE_SUPPORTED": true, "SOC_TWAI_SUPPORTED": true, "SOC_EFUSE_SUPPORTED": true, "SOC_EMAC_SUPPORTED": true, "SOC_ULP_SUPPORTED": true, "SOC_CCOMP_TIMER_SUPPORTED": true, "SOC_RTC_FAST_MEM_SUPPORTED": true, "SOC_RTC_SLOW_MEM_SUPPORTED": true, "SOC_RTC_MEM_SUPPORTED": true, "SOC_I2S_SUPPORTED": true, "SOC_RMT_SUPPORTED": true, "SOC_SDM_SUPPORTED": true, "SOC_GPSPI_SUPPORTED": true, "SOC_LEDC_SUPPORTED": true, "SOC_I2C_SUPPORTED": true, "SOC_SUPPORT_COEXISTENCE": true, "SOC_AES_SUPPORTED": true, "SOC_MPI_SUPPORTED": true, "SOC_SHA_SUPPORTED": true, "SOC_FLASH_ENC_SUPPORTED": true, "SOC_SECURE_BOOT_SUPPORTED": true, "SOC_TOUCH_SENSOR_SUPPORTED": true, "SOC_BOD_SUPPORTED": true, "SOC_ULP_FSM_SUPPORTED": true, "SOC_CLK_TREE_SUPPORTED": true, "SOC_MPU_SUPPORTED": true, "SOC_WDT_SUPPORTED": true, "SOC_SPI_FLASH_SUPPORTED": true, "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL": 5, "SOC_XTAL_SUPPORT_26M": true, "SOC_XTAL_SUPPORT_40M": true, "SOC_XTAL_SUPPORT_AUTO_DETECT": true, "SOC_ADC_RTC_CTRL_SUPPORTED": true, "SOC_ADC_DIG_CTRL_SUPPORTED": true, "SOC_ADC_DMA_SUPPORTED": true, "SOC_ADC_PERIPH_NUM": 2, "SOC_ADC_MAX_CHANNEL_NUM": 10, "SOC_ADC_ATTEN_NUM": 4, "SOC_ADC_DIGI_CONTROLLER_NUM": 2, "SOC_ADC_PATT_LEN_MAX": 16, "SOC_ADC_DIGI_MIN_BITWIDTH": 9, "SOC_ADC_DIGI_MAX_BITWIDTH": 12, "SOC_ADC_DIGI_RESULT_BYTES": 2, "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, "SOC_ADC_DIGI_MONITOR_NUM": 0, "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 2, "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 20, "SOC_ADC_RTC_MIN_BITWIDTH": 9, "SOC_ADC_RTC_MAX_BITWIDTH": 12, "SOC_ADC_SHARED_POWER": true, "SOC_SHARED_IDCACHE_SUPPORTED": true, "SOC_IDCACHE_PER_CORE": true, "SOC_CPU_CORES_NUM": 2, "SOC_CPU_INTR_NUM": 32, "SOC_CPU_HAS_FPU": true, "SOC_HP_CPU_HAS_MULTIPLE_CORES": true, "SOC_CPU_BREAKPOINTS_NUM": 2, "SOC_CPU_WATCHPOINTS_NUM": 2, "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 64, "SOC_DAC_CHAN_NUM": 2, "SOC_DAC_RESOLUTION": 8, "SOC_DAC_DMA_16BIT_ALIGN": true, "SOC_GPIO_PORT": 1, "SOC_GPIO_PIN_COUNT": 40, "SOC_GPIO_VALID_GPIO_MASK": 1099511627775, "SOC_GPIO_IN_RANGE_MAX": 39, "SOC_GPIO_OUT_RANGE_MAX": 33, "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 15667178, "SOC_GPIO_CLOCKOUT_BY_IO_MUX": true, "SOC_I2C_NUM": 2, "SOC_I2C_FIFO_LEN": 32, "SOC_I2C_CMD_REG_NUM": 16, "SOC_I2C_SUPPORT_SLAVE": true, "SOC_I2C_SUPPORT_APB": true, "SOC_I2C_STOP_INDEPENDENT": true, "SOC_I2S_NUM": 2, "SOC_I2S_HW_VERSION_1": true, "SOC_I2S_SUPPORTS_APLL": true, "SOC_I2S_SUPPORTS_PLL_F160M": true, "SOC_I2S_SUPPORTS_PDM": true, "SOC_I2S_SUPPORTS_PDM_TX": true, "SOC_I2S_PDM_MAX_TX_LINES": 1, "SOC_I2S_SUPPORTS_PDM_RX": true, "SOC_I2S_PDM_MAX_RX_LINES": 1, "SOC_I2S_SUPPORTS_ADC_DAC": true, "SOC_I2S_SUPPORTS_ADC": true, "SOC_I2S_SUPPORTS_DAC": true, "SOC_I2S_SUPPORTS_LCD_CAMERA": true, "SOC_I2S_TRANS_SIZE_ALIGN_WORD": true, "SOC_I2S_LCD_I80_VARIANT": true, "SOC_LCD_I80_SUPPORTED": true, "SOC_LCD_I80_BUSES": 2, "SOC_LCD_I80_BUS_WIDTH": 24, "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX": true, "SOC_LEDC_SUPPORT_APB_CLOCK": true, "SOC_LEDC_SUPPORT_REF_TICK": true, "SOC_LEDC_SUPPORT_HS_MODE": true, "SOC_LEDC_CHANNEL_NUM": 8, "SOC_LEDC_TIMER_BIT_WIDTH": 20, "SOC_MCPWM_GROUPS": 2, "SOC_MCPWM_TIMERS_PER_GROUP": 3, "SOC_MCPWM_OPERATORS_PER_GROUP": 3, "SOC_MCPWM_COMPARATORS_PER_OPERATOR": 2, "SOC_MCPWM_GENERATORS_PER_OPERATOR": 2, "SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2, "SOC_MCPWM_GPIO_FAULTS_PER_GROUP": 3, "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP": true, "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": 3, "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP": 3, "SOC_MMU_PERIPH_NUM": 2, "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 3, "SOC_MPU_MIN_REGION_SIZE": 536870912, "SOC_MPU_REGIONS_MAX_NUM": 8, "SOC_PCNT_GROUPS": 1, "SOC_PCNT_UNITS_PER_GROUP": 8, "SOC_PCNT_CHANNELS_PER_UNIT": 2, "SOC_PCNT_THRES_POINT_PER_UNIT": 2, "SOC_RMT_GROUPS": 1, "SOC_RMT_TX_CANDIDATES_PER_GROUP": 8, "SOC_RMT_RX_CANDIDATES_PER_GROUP": 8, "SOC_RMT_CHANNELS_PER_GROUP": 8, "SOC_RMT_MEM_WORDS_PER_CHANNEL": 64, "SOC_RMT_SUPPORT_REF_TICK": true, "SOC_RMT_SUPPORT_APB": true, "SOC_RMT_CHANNEL_CLK_INDEPENDENT": true, "SOC_RTCIO_PIN_COUNT": 18, "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true, "SOC_RTCIO_HOLD_SUPPORTED": true, "SOC_RTCIO_WAKE_SUPPORTED": true, "SOC_SDM_GROUPS": 1, "SOC_SDM_CHANNELS_PER_GROUP": 8, "SOC_SDM_CLK_SUPPORT_APB": true, "SOC_SPI_HD_BOTH_INOUT_SUPPORTED": true, "SOC_SPI_AS_CS_SUPPORTED": true, "SOC_SPI_PERIPH_NUM": 3, "SOC_SPI_DMA_CHAN_NUM": 2, "SOC_SPI_MAX_CS_NUM": 3, "SOC_SPI_SUPPORT_CLK_APB": true, "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, "SOC_SPI_MAX_PRE_DIVIDER": 8192, "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true, "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, "SOC_TIMER_GROUPS": 2, "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 2, "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 64, "SOC_TIMER_GROUP_TOTAL_TIMERS": 4, "SOC_TIMER_GROUP_SUPPORT_APB": true, "SOC_TOUCH_VERSION_1": true, "SOC_TOUCH_SENSOR_NUM": 10, "SOC_TOUCH_PAD_MEASURE_WAIT_MAX": 255, "SOC_TWAI_CONTROLLER_NUM": 1, "SOC_TWAI_BRP_MIN": 2, "SOC_TWAI_CLK_SUPPORT_APB": true, "SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT": true, "SOC_UART_NUM": 3, "SOC_UART_HP_NUM": 3, "SOC_UART_SUPPORT_APB_CLK": true, "SOC_UART_SUPPORT_REF_TICK": true, "SOC_UART_FIFO_LEN": 128, "SOC_UART_BITRATE_MAX": 5000000, "SOC_SPIRAM_SUPPORTED": true, "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, "SOC_SHA_SUPPORT_PARALLEL_ENG": true, "SOC_SHA_ENDIANNESS_BE": true, "SOC_SHA_SUPPORT_SHA1": true, "SOC_SHA_SUPPORT_SHA256": true, "SOC_SHA_SUPPORT_SHA384": true, "SOC_SHA_SUPPORT_SHA512": true, "SOC_MPI_MEM_BLOCKS_NUM": 4, "SOC_MPI_OPERATIONS_NUM": true, "SOC_RSA_MAX_BIT_LEN": 4096, "SOC_AES_SUPPORT_AES_128": true, "SOC_AES_SUPPORT_AES_192": true, "SOC_AES_SUPPORT_AES_256": true, "SOC_SECURE_BOOT_V1": true, "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": true, "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32, "SOC_PHY_DIG_REGS_MEM_SIZE": 21, "SOC_PM_SUPPORT_EXT0_WAKEUP": true, "SOC_PM_SUPPORT_EXT1_WAKEUP": true, "SOC_PM_SUPPORT_EXT_WAKEUP": true, "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true, "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, "SOC_PM_SUPPORT_RTC_FAST_MEM_PD": true, "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD": true, "SOC_PM_SUPPORT_RC_FAST_PD": true, "SOC_PM_SUPPORT_VDDSDIO_PD": true, "SOC_PM_SUPPORT_MODEM_PD": true, "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED": true, "SOC_CLK_APLL_SUPPORTED": true, "SOC_CLK_RC_FAST_D256_SUPPORTED": true, "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true, "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, "SOC_CLK_XTAL32K_SUPPORTED": true, "SOC_SDMMC_USE_IOMUX": true, "SOC_SDMMC_NUM_SLOTS": 2, "SOC_WIFI_WAPI_SUPPORT": true, "SOC_WIFI_CSI_SUPPORT": true, "SOC_WIFI_MESH_SUPPORT": true, "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, "SOC_WIFI_NAN_SUPPORT": true, "SOC_BLE_SUPPORTED": true, "SOC_BLE_MESH_SUPPORTED": true, "SOC_BT_CLASSIC_SUPPORTED": true, "SOC_BLUFI_SUPPORTED": true, "SOC_ULP_HAS_ADC": true, "SOC_PHY_COMBO_MODULE": true, "IDF_CMAKE": true, "IDF_TOOLCHAIN": "gcc", "IDF_TARGET_ARCH_XTENSA": true, "IDF_TARGET_ARCH": "xtensa", "IDF_TARGET": "esp32", "IDF_INIT_VERSION": "$IDF_INIT_VERSION", "IDF_TARGET_ESP32": true, "IDF_FIRMWARE_CHIP_ID": 0, "APP_BUILD_TYPE_APP_2NDBOOT": true, "APP_BUILD_TYPE_RAM": false, "APP_BUILD_GENERATE_BINARIES": true, "APP_BUILD_BOOTLOADER": true, "APP_BUILD_USE_FLASH_SECTIONS": true, "APP_REPRODUCIBLE_BUILD": false, "APP_NO_BLOBS": false, "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false, "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS": false, "BOOTLOADER_COMPILE_TIME_DATE": true, "BOOTLOADER_PROJECT_VER": 1, "BOOTLOADER_OFFSET_IN_FLASH": 4096, "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, "BOOTLOADER_COMPILER_OPTIMIZATION_NONE": false, "BOOTLOADER_LOG_LEVEL_NONE": false, "BOOTLOADER_LOG_LEVEL_ERROR": false, "BOOTLOADER_LOG_LEVEL_WARN": false, "BOOTLOADER_LOG_LEVEL_INFO": true, "BOOTLOADER_LOG_LEVEL_DEBUG": false, "BOOTLOADER_LOG_LEVEL_VERBOSE": false, "BOOTLOADER_LOG_LEVEL": 3, "BOOTLOADER_FLASH_DC_AWARE": false, "BOOTLOADER_FLASH_XMC_SUPPORT": true, "BOOTLOADER_VDDSDIO_BOOST_1_8V": false, "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, "BOOTLOADER_FACTORY_RESET": false, "BOOTLOADER_APP_TEST": false, "BOOTLOADER_REGION_PROTECTION_ENABLE": true, "BOOTLOADER_WDT_ENABLE": true, "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, "BOOTLOADER_WDT_TIME_MS": 9000, "BOOTLOADER_APP_ROLLBACK_ENABLE": false, "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, "BOOTLOADER_RESERVE_RTC_SIZE": 0, "BOOTLOADER_CUSTOM_RESERVE_RTC": false, "SECURE_BOOT_V1_SUPPORTED": true, "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, "SECURE_BOOT": false, "SECURE_FLASH_ENC_ENABLED": false, "APP_COMPILE_TIME_DATE": true, "APP_EXCLUDE_PROJECT_VER_VAR": false, "APP_EXCLUDE_PROJECT_NAME_VAR": false, "APP_PROJECT_VER_FROM_CONFIG": false, "APP_RETRIEVE_LEN_ELF_SHA": 9, "ESP_ROM_HAS_CRC_LE": true, "ESP_ROM_HAS_CRC_BE": true, "ESP_ROM_HAS_MZ_CRC32": true, "ESP_ROM_HAS_JPEG_DECODE": true, "ESP_ROM_HAS_UART_BUF_SWITCH": true, "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, "ESP_ROM_HAS_SW_FLOAT": true, "ESP_ROM_USB_SERIAL_DEVICE_NUM": -1, "ESPTOOLPY_NO_STUB": false, "ESPTOOLPY_FLASHMODE_QIO": false, "ESPTOOLPY_FLASHMODE_QOUT": false, "ESPTOOLPY_FLASHMODE_DIO": true, "ESPTOOLPY_FLASHMODE_DOUT": false, "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, "ESPTOOLPY_FLASHMODE": "dio", "ESPTOOLPY_FLASHFREQ_80M": false, "ESPTOOLPY_FLASHFREQ_40M": true, "ESPTOOLPY_FLASHFREQ_26M": false, "ESPTOOLPY_FLASHFREQ_20M": false, "ESPTOOLPY_FLASHFREQ": "40m", "ESPTOOLPY_FLASHSIZE_1MB": false, "ESPTOOLPY_FLASHSIZE_2MB": true, "ESPTOOLPY_FLASHSIZE_4MB": false, "ESPTOOLPY_FLASHSIZE_8MB": false, "ESPTOOLPY_FLASHSIZE_16MB": false, "ESPTOOLPY_FLASHSIZE_32MB": false, "ESPTOOLPY_FLASHSIZE_64MB": false, "ESPTOOLPY_FLASHSIZE_128MB": false, "ESPTOOLPY_FLASHSIZE": "2MB", "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": true, "ESPTOOLPY_BEFORE_RESET": true, "ESPTOOLPY_BEFORE_NORESET": false, "ESPTOOLPY_BEFORE": "default_reset", "ESPTOOLPY_AFTER_RESET": true, "ESPTOOLPY_AFTER_NORESET": false, "ESPTOOLPY_AFTER": "hard_reset", "ESPTOOLPY_MONITOR_BAUD": 115200, "PARTITION_TABLE_SINGLE_APP": true, "PARTITION_TABLE_SINGLE_APP_LARGE": false, "PARTITION_TABLE_TWO_OTA": false, "PARTITION_TABLE_CUSTOM": false, "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", "PARTITION_TABLE_FILENAME": "partitions_singleapp.csv", "PARTITION_TABLE_OFFSET": 32768, "PARTITION_TABLE_MD5": true, "COMPILER_OPTIMIZATION_DEBUG": true, "COMPILER_OPTIMIZATION_SIZE": false, "COMPILER_OPTIMIZATION_PERF": false, "COMPILER_OPTIMIZATION_NONE": false, "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, "COMPILER_HIDE_PATHS_MACROS": true, "COMPILER_CXX_EXCEPTIONS": false, "COMPILER_CXX_RTTI": false, "COMPILER_STACK_CHECK_MODE_NONE": true, "COMPILER_STACK_CHECK_MODE_NORM": false, "COMPILER_STACK_CHECK_MODE_STRONG": false, "COMPILER_STACK_CHECK_MODE_ALL": false, "COMPILER_WARN_WRITE_STRINGS": false, "COMPILER_DISABLE_GCC12_WARNINGS": false, "COMPILER_DISABLE_GCC13_WARNINGS": false, "COMPILER_DUMP_RTL_FILES": false, "COMPILER_RT_LIB_GCCLIB": true, "COMPILER_RT_LIB_NAME": "gcc", "APPTRACE_DEST_JTAG": false, "APPTRACE_DEST_NONE": true, "APPTRACE_DEST_UART1": false, "APPTRACE_DEST_UART2": false, "APPTRACE_DEST_UART_NONE": true, "APPTRACE_UART_TASK_PRIO": 1, "APPTRACE_LOCK_ENABLE": true, "BT_ENABLED": false, "BT_ALARM_MAX_NUM": 50, "ADC_DISABLE_DAC": true, "ADC_SUPPRESS_DEPRECATE_WARN": false, "ADC_CAL_EFUSE_TP_ENABLE": true, "ADC_CAL_EFUSE_VREF_ENABLE": true, "ADC_CAL_LUT_ENABLE": true, "ADC_CALI_SUPPRESS_DEPRECATE_WARN": false, "SPI_MASTER_IN_IRAM": false, "SPI_MASTER_ISR_IN_IRAM": true, "SPI_SLAVE_IN_IRAM": false, "SPI_SLAVE_ISR_IN_IRAM": true, "TWAI_ISR_IN_IRAM": false, "TWAI_ERRATA_FIX_BUS_OFF_REC": true, "TWAI_ERRATA_FIX_TX_INTR_LOST": true, "TWAI_ERRATA_FIX_RX_FRAME_INVALID": true, "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT": true, "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM": true, "UART_ISR_IN_IRAM": false, "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL": false, "GPIO_CTRL_FUNC_IN_IRAM": false, "SDM_CTRL_FUNC_IN_IRAM": false, "SDM_SUPPRESS_DEPRECATE_WARN": false, "SDM_ENABLE_DEBUG_LOG": false, "GPTIMER_ISR_HANDLER_IN_IRAM": true, "GPTIMER_CTRL_FUNC_IN_IRAM": false, "GPTIMER_ISR_IRAM_SAFE": false, "GPTIMER_SUPPRESS_DEPRECATE_WARN": false, "GPTIMER_ENABLE_DEBUG_LOG": false, "PCNT_CTRL_FUNC_IN_IRAM": false, "PCNT_ISR_IRAM_SAFE": false, "PCNT_SUPPRESS_DEPRECATE_WARN": false, "PCNT_ENABLE_DEBUG_LOG": false, "RMT_ISR_IRAM_SAFE": false, "RMT_RECV_FUNC_IN_IRAM": false, "RMT_SUPPRESS_DEPRECATE_WARN": false, "RMT_ENABLE_DEBUG_LOG": false, "MCPWM_ISR_IRAM_SAFE": false, "MCPWM_CTRL_FUNC_IN_IRAM": false, "MCPWM_SUPPRESS_DEPRECATE_WARN": false, "MCPWM_ENABLE_DEBUG_LOG": false, "I2S_ISR_IRAM_SAFE": false, "I2S_SUPPRESS_DEPRECATE_WARN": false, "I2S_ENABLE_DEBUG_LOG": false, "DAC_CTRL_FUNC_IN_IRAM": false, "DAC_ISR_IRAM_SAFE": false, "DAC_SUPPRESS_DEPRECATE_WARN": false, "DAC_ENABLE_DEBUG_LOG": false, "DAC_DMA_AUTO_16BIT_ALIGN": true, "LEDC_CTRL_FUNC_IN_IRAM": false, "I2C_ISR_IRAM_SAFE": false, "I2C_ENABLE_DEBUG_LOG": false, "EFUSE_CUSTOM_TABLE": false, "EFUSE_VIRTUAL": false, "EFUSE_CODE_SCHEME_COMPAT_NONE": false, "EFUSE_CODE_SCHEME_COMPAT_3_4": true, "EFUSE_CODE_SCHEME_COMPAT_REPEAT": false, "EFUSE_MAX_BLK_LEN": 192, "ESP_TLS_USING_MBEDTLS": true, "ESP_TLS_USE_SECURE_ELEMENT": false, "ESP_TLS_CLIENT_SESSION_TICKETS": false, "ESP_TLS_SERVER": false, "ESP_TLS_PSK_VERIFICATION": false, "ESP_TLS_INSECURE": false, "ADC_ONESHOT_CTRL_FUNC_IN_IRAM": false, "ADC_CONTINUOUS_ISR_IRAM_SAFE": false, "ADC_CALI_EFUSE_TP_ENABLE": true, "ADC_CALI_EFUSE_VREF_ENABLE": true, "ADC_CALI_LUT_ENABLE": true, "ADC_DISABLE_DAC_OUTPUT": true, "ESP_ERR_TO_NAME_LOOKUP": true, "ETH_ENABLED": true, "ETH_USE_ESP32_EMAC": true, "ETH_PHY_INTERFACE_RMII": true, "ETH_RMII_CLK_INPUT": true, "ETH_RMII_CLK_OUTPUT": false, "ETH_RMII_CLK_IN_GPIO": 0, "ETH_DMA_BUFFER_SIZE": 512, "ETH_DMA_RX_BUFFER_NUM": 10, "ETH_DMA_TX_BUFFER_NUM": 10, "ETH_IRAM_OPTIMIZATION": false, "ETH_USE_SPI_ETHERNET": true, "ETH_SPI_ETHERNET_DM9051": false, "ETH_SPI_ETHERNET_W5500": false, "ETH_SPI_ETHERNET_KSZ8851SNL": false, "ETH_USE_OPENETH": false, "ETH_TRANSMIT_MUTEX": false, "ESP_EVENT_LOOP_PROFILING": false, "ESP_EVENT_POST_FROM_ISR": true, "ESP_EVENT_POST_FROM_IRAM_ISR": true, "ESP_GDBSTUB_ENABLED": true, "ESP_SYSTEM_GDBSTUB_RUNTIME": false, "ESP_GDBSTUB_SUPPORT_TASKS": true, "ESP_GDBSTUB_MAX_TASKS": 32, "ESP_HTTP_CLIENT_ENABLE_HTTPS": true, "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH": false, "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH": false, "HTTPD_MAX_REQ_HDR_LEN": 1024, "HTTPD_MAX_URI_LEN": 1024, "HTTPD_ERR_RESP_NO_DELAY": true, "HTTPD_PURGE_BUF_LEN": 32, "HTTPD_LOG_PURGE_DATA": false, "HTTPD_WS_SUPPORT": false, "HTTPD_QUEUE_WORK_BLOCKING": false, "ESP_HTTPS_OTA_DECRYPT_CB": false, "ESP_HTTPS_OTA_ALLOW_HTTP": false, "ESP_HTTPS_SERVER_ENABLE": false, "ESP32_REV_MIN_0": true, "ESP32_REV_MIN_1": false, "ESP32_REV_MIN_1_1": false, "ESP32_REV_MIN_2": false, "ESP32_REV_MIN_3": false, "ESP32_REV_MIN_3_1": false, "ESP32_REV_MIN": 0, "ESP32_REV_MIN_FULL": 0, "ESP_REV_MIN_FULL": 0, "ESP32_REV_MAX_FULL": 399, "ESP_REV_MAX_FULL": 399, "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, "ESP_MAC_ADDR_UNIVERSE_BT": true, "ESP_MAC_ADDR_UNIVERSE_ETH": true, "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false, "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true, "ESP32_UNIVERSAL_MAC_ADDRESSES": 4, "ESP_MAC_IGNORE_MAC_CRC_ERROR": false, "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, "ESP_SLEEP_POWER_DOWN_FLASH": false, "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true, "ESP_SLEEP_GPIO_RESET_WORKAROUND": false, "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000, "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, "ESP_SLEEP_DEBUG": false, "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, "RTC_CLK_SRC_INT_RC": true, "RTC_CLK_SRC_EXT_CRYS": false, "RTC_CLK_SRC_EXT_OSC": false, "RTC_CLK_SRC_INT_8MD256": false, "RTC_CLK_CAL_CYCLES": 1024, "PERIPH_CTRL_FUNC_IN_IRAM": true, "XTAL_FREQ_26": false, "XTAL_FREQ_40": true, "XTAL_FREQ_AUTO": false, "XTAL_FREQ": 40, "LCD_PANEL_IO_FORMAT_BUF_SIZE": 32, "LCD_ENABLE_DEBUG_LOG": false, "ESP_NETIF_IP_LOST_TIMER_INTERVAL": 120, "ESP_NETIF_TCPIP_LWIP": true, "ESP_NETIF_LOOPBACK": false, "ESP_NETIF_USES_TCPIP_WITH_BSD_API": true, "ESP_NETIF_RECEIVE_REPORT_ERRORS": false, "ESP_NETIF_L2_TAP": false, "ESP_NETIF_BRIDGE_EN": false, "ESP_PHY_CALIBRATION_AND_DATA_STORAGE": true, "ESP_PHY_INIT_DATA_IN_PARTITION": false, "ESP_PHY_MAX_WIFI_TX_POWER": 20, "ESP_PHY_MAX_TX_POWER": 20, "ESP_PHY_REDUCE_TX_POWER": false, "ESP_PHY_RF_CAL_PARTIAL": true, "ESP_PHY_RF_CAL_NONE": false, "ESP_PHY_RF_CAL_FULL": false, "ESP_PHY_CALIBRATION_MODE": 0, "ESP_PHY_PLL_TRACK_DEBUG": false, "PM_ENABLE": false, "SPIRAM": false, "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH": false, "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, "ESP_DEFAULT_CPU_FREQ_MHZ_160": false, "ESP_DEFAULT_CPU_FREQ_MHZ_240": true, "ESP_DEFAULT_CPU_FREQ_MHZ": 240, "ESP32_USE_FIXED_STATIC_RAM_SIZE": false, "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM": false, "ESP32_TRAX": false, "ESP32_TRACEMEM_RESERVE_DRAM": 0, "ESP_SYSTEM_PANIC_PRINT_HALT": false, "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, "ESP_SYSTEM_PANIC_GDBSTUB": false, "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, "ESP_MAIN_TASK_STACK_SIZE": 3584, "ESP_MAIN_TASK_AFFINITY_CPU0": true, "ESP_MAIN_TASK_AFFINITY_CPU1": false, "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, "ESP_MAIN_TASK_AFFINITY": 0, "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, "ESP_CONSOLE_UART_DEFAULT": true, "ESP_CONSOLE_UART_CUSTOM": false, "ESP_CONSOLE_NONE": false, "ESP_CONSOLE_UART": true, "ESP_CONSOLE_UART_NUM": 0, "ESP_CONSOLE_UART_BAUDRATE": 115200, "ESP_INT_WDT": true, "ESP_INT_WDT_TIMEOUT_MS": 300, "ESP_INT_WDT_CHECK_CPU1": true, "ESP_TASK_WDT_EN": true, "ESP_TASK_WDT_INIT": true, "ESP_TASK_WDT_PANIC": false, "ESP_TASK_WDT_TIMEOUT_S": 5, "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true, "ESP_PANIC_HANDLER_IRAM": false, "ESP_DEBUG_STUBS_ENABLE": false, "ESP_DEBUG_OCDAWARE": true, "ESP_SYSTEM_CHECK_INT_LEVEL_5": false, "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, "ESP_BROWNOUT_DET": true, "ESP_BROWNOUT_DET_LVL_SEL_0": true, "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": false, "ESP_BROWNOUT_DET_LVL": 0, "ESP32_DISABLE_BASIC_ROM_CONSOLE": false, "ESP_SYSTEM_BROWNOUT_INTR": true, "ESP_IPC_TASK_STACK_SIZE": 1024, "ESP_IPC_USES_CALLERS_PRIORITY": true, "ESP_IPC_ISR_ENABLE": true, "ESP_TIMER_PROFILING": false, "ESP_TIME_FUNCS_USE_RTC_TIMER": true, "ESP_TIME_FUNCS_USE_ESP_TIMER": true, "ESP_TIMER_TASK_STACK_SIZE": 3584, "ESP_TIMER_INTERRUPT_LEVEL": 1, "ESP_TIMER_SHOW_EXPERIMENTAL": false, "ESP_TIMER_TASK_AFFINITY": 0, "ESP_TIMER_TASK_AFFINITY_CPU0": true, "ESP_TIMER_ISR_AFFINITY": 1, "ESP_TIMER_ISR_AFFINITY_CPU0": true, "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": false, "ESP_TIMER_IMPL_TG0_LAC": true, "ESP_WIFI_ENABLED": true, "ESP_WIFI_STATIC_RX_BUFFER_NUM": 10, "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM": 32, "ESP_WIFI_STATIC_TX_BUFFER": false, "ESP_WIFI_DYNAMIC_TX_BUFFER": true, "ESP_WIFI_TX_BUFFER_TYPE": 1, "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM": 32, "ESP_WIFI_STATIC_RX_MGMT_BUFFER": true, "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER": false, "ESP_WIFI_DYNAMIC_RX_MGMT_BUF": 0, "ESP_WIFI_RX_MGMT_BUF_NUM_DEF": 5, "ESP_WIFI_CSI_ENABLED": false, "ESP_WIFI_AMPDU_TX_ENABLED": true, "ESP_WIFI_TX_BA_WIN": 6, "ESP_WIFI_AMPDU_RX_ENABLED": true, "ESP_WIFI_RX_BA_WIN": 6, "ESP_WIFI_NVS_ENABLED": true, "ESP_WIFI_TASK_PINNED_TO_CORE_0": true, "ESP_WIFI_TASK_PINNED_TO_CORE_1": false, "ESP_WIFI_SOFTAP_BEACON_MAX_LEN": 752, "ESP_WIFI_MGMT_SBUF_NUM": 32, "ESP_WIFI_IRAM_OPT": true, "ESP_WIFI_EXTRA_IRAM_OPT": false, "ESP_WIFI_RX_IRAM_OPT": true, "ESP_WIFI_ENABLE_WPA3_SAE": true, "ESP_WIFI_ENABLE_SAE_PK": true, "ESP_WIFI_SOFTAP_SAE_SUPPORT": true, "ESP_WIFI_ENABLE_WPA3_OWE_STA": true, "ESP_WIFI_SLP_IRAM_OPT": false, "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE": true, "ESP_WIFI_GMAC_SUPPORT": false, "ESP_WIFI_SOFTAP_SUPPORT": true, "ESP_WIFI_SLP_BEACON_LOST_OPT": false, "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM": 7, "ESP_WIFI_NAN_ENABLE": false, "ESP_WIFI_MBEDTLS_CRYPTO": true, "ESP_WIFI_MBEDTLS_TLS_CLIENT": true, "ESP_WIFI_WAPI_PSK": false, "ESP_WIFI_11KV_SUPPORT": false, "ESP_WIFI_MBO_SUPPORT": false, "ESP_WIFI_DPP_SUPPORT": false, "ESP_WIFI_11R_SUPPORT": false, "ESP_WIFI_WPS_SOFTAP_REGISTRAR": false, "ESP_WIFI_WPS_STRICT": false, "ESP_WIFI_WPS_PASSPHRASE": false, "ESP_WIFI_DEBUG_PRINT": false, "ESP_WIFI_TESTING_OPTIONS": false, "ESP_WIFI_ENTERPRISE_SUPPORT": true, "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER": false, "ESP_COREDUMP_ENABLE_TO_FLASH": false, "ESP_COREDUMP_ENABLE_TO_UART": false, "ESP_COREDUMP_ENABLE_TO_NONE": true, "FATFS_VOLUME_COUNT": 2, "FATFS_LFN_NONE": true, "FATFS_LFN_HEAP": false, "FATFS_LFN_STACK": false, "FATFS_SECTOR_512": false, "FATFS_SECTOR_4096": true, "FATFS_CODEPAGE_DYNAMIC": false, "FATFS_CODEPAGE_437": true, "FATFS_CODEPAGE_720": false, "FATFS_CODEPAGE_737": false, "FATFS_CODEPAGE_771": false, "FATFS_CODEPAGE_775": false, "FATFS_CODEPAGE_850": false, "FATFS_CODEPAGE_852": false, "FATFS_CODEPAGE_855": false, "FATFS_CODEPAGE_857": false, "FATFS_CODEPAGE_860": false, "FATFS_CODEPAGE_861": false, "FATFS_CODEPAGE_862": false, "FATFS_CODEPAGE_863": false, "FATFS_CODEPAGE_864": false, "FATFS_CODEPAGE_865": false, "FATFS_CODEPAGE_866": false, "FATFS_CODEPAGE_869": false, "FATFS_CODEPAGE_932": false, "FATFS_CODEPAGE_936": false, "FATFS_CODEPAGE_949": false, "FATFS_CODEPAGE_950": false, "FATFS_CODEPAGE": 437, "FATFS_FS_LOCK": 0, "FATFS_TIMEOUT_MS": 10000, "FATFS_PER_FILE_CACHE": true, "FATFS_USE_FASTSEEK": false, "FATFS_VFS_FSTAT_BLKSIZE": 0, "FATFS_IMMEDIATE_FSYNC": false, "FREERTOS_SMP": false, "FREERTOS_UNICORE": false, "FREERTOS_HZ": 100, "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, "FREERTOS_IDLE_TASK_STACKSIZE": 1536, "FREERTOS_USE_IDLE_HOOK": false, "FREERTOS_USE_TICK_HOOK": false, "FREERTOS_MAX_TASK_NAME_LEN": 16, "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", "FREERTOS_TIMER_TASK_PRIORITY": 1, "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, "FREERTOS_TIMER_QUEUE_LENGTH": 10, "FREERTOS_QUEUE_REGISTRY_SIZE": 0, "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, "FREERTOS_USE_TRACE_FACILITY": true, "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS": true, "FREERTOS_VTASKLIST_INCLUDE_COREID": true, "FREERTOS_GENERATE_RUN_TIME_STATS": true, "FREERTOS_RUN_TIME_COUNTER_TYPE_U32": true, "FREERTOS_RUN_TIME_COUNTER_TYPE_U64": false, "FREERTOS_USE_APPLICATION_TASK_TAG": false, "FREERTOS_TASK_FUNCTION_WRAPPER": true, "FREERTOS_WATCHPOINT_END_OF_STACK": false, "FREERTOS_TLSP_DELETION_CALLBACKS": true, "FREERTOS_TASK_PRE_DELETION_HOOK": false, "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, "FREERTOS_ISR_STACKSIZE": 1536, "FREERTOS_INTERRUPT_BACKTRACE": true, "FREERTOS_FPU_IN_ISR": false, "FREERTOS_TICK_SUPPORT_CORETIMER": true, "FREERTOS_CORETIMER_0": true, "FREERTOS_CORETIMER_1": false, "FREERTOS_SYSTICK_USES_CCOUNT": true, "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER": true, "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK": false, "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, "FREERTOS_PORT": true, "FREERTOS_NO_AFFINITY": 2147483647, "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, "FREERTOS_DEBUG_OCDAWARE": true, "FREERTOS_ENABLE_TASK_SNAPSHOT": true, "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, "HAL_ASSERTION_EQUALS_SYSTEM": true, "HAL_ASSERTION_DISABLE": false, "HAL_ASSERTION_SILENT": false, "HAL_ASSERTION_ENABLE": false, "HAL_DEFAULT_ASSERTION_LEVEL": 2, "HAL_SPI_MASTER_FUNC_IN_IRAM": true, "HAL_SPI_SLAVE_FUNC_IN_IRAM": true, "HEAP_POISONING_DISABLED": true, "HEAP_POISONING_LIGHT": false, "HEAP_POISONING_COMPREHENSIVE": false, "HEAP_TRACING_OFF": true, "HEAP_TRACING_STANDALONE": false, "HEAP_TRACING_TOHOST": false, "HEAP_USE_HOOKS": false, "HEAP_TASK_TRACKING": false, "HEAP_ABORT_WHEN_ALLOCATION_FAILS": false, "HEAP_PLACE_FUNCTION_INTO_FLASH": false, "LOG_DEFAULT_LEVEL_NONE": false, "LOG_DEFAULT_LEVEL_ERROR": false, "LOG_DEFAULT_LEVEL_WARN": false, "LOG_DEFAULT_LEVEL_INFO": true, "LOG_DEFAULT_LEVEL_DEBUG": false, "LOG_DEFAULT_LEVEL_VERBOSE": false, "LOG_DEFAULT_LEVEL": 3, "LOG_MAXIMUM_EQUALS_DEFAULT": true, "LOG_MAXIMUM_LEVEL_DEBUG": false, "LOG_MAXIMUM_LEVEL_VERBOSE": false, "LOG_MAXIMUM_LEVEL": 3, "LOG_MASTER_LEVEL": false, "LOG_COLORS": true, "LOG_TIMESTAMP_SOURCE_RTOS": true, "LOG_TIMESTAMP_SOURCE_SYSTEM": false, "LWIP_ENABLE": true, "LWIP_LOCAL_HOSTNAME": "espressif", "LWIP_NETIF_API": false, "LWIP_TCPIP_TASK_PRIO": 18, "LWIP_TCPIP_CORE_LOCKING": false, "LWIP_CHECK_THREAD_SAFETY": false, "LWIP_DNS_SUPPORT_MDNS_QUERIES": true, "LWIP_L2_TO_L3_COPY": false, "LWIP_IRAM_OPTIMIZATION": false, "LWIP_EXTRA_IRAM_OPTIMIZATION": false, "LWIP_TIMERS_ONDEMAND": true, "LWIP_ND6": true, "LWIP_FORCE_ROUTER_FORWARDING": false, "LWIP_MAX_SOCKETS": 10, "LWIP_USE_ONLY_LWIP_SELECT": false, "LWIP_SO_LINGER": false, "LWIP_SO_REUSE": true, "LWIP_SO_REUSE_RXTOALL": true, "LWIP_SO_RCVBUF": false, "LWIP_NETBUF_RECVINFO": false, "LWIP_IP_DEFAULT_TTL": 64, "LWIP_IP4_FRAG": true, "LWIP_IP6_FRAG": true, "LWIP_IP4_REASSEMBLY": false, "LWIP_IP6_REASSEMBLY": false, "LWIP_IP_REASS_MAX_PBUFS": 10, "LWIP_IP_FORWARD": false, "LWIP_STATS": false, "LWIP_ESP_GRATUITOUS_ARP": true, "LWIP_GARP_TMR_INTERVAL": 60, "LWIP_ESP_MLDV6_REPORT": true, "LWIP_MLDV6_TMR_INTERVAL": 40, "LWIP_TCPIP_RECVMBOX_SIZE": 32, "LWIP_DHCP_DOES_ARP_CHECK": true, "LWIP_DHCP_DISABLE_CLIENT_ID": false, "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID": true, "LWIP_DHCP_RESTORE_LAST_IP": false, "LWIP_DHCP_OPTIONS_LEN": 68, "LWIP_NUM_NETIF_CLIENT_DATA": 0, "LWIP_DHCP_COARSE_TIMER_SECS": 1, "LWIP_DHCPS": true, "LWIP_DHCPS_LEASE_UNIT": 60, "LWIP_DHCPS_MAX_STATION_NUM": 8, "LWIP_DHCPS_STATIC_ENTRIES": true, "LWIP_AUTOIP": false, "LWIP_IPV4": true, "LWIP_IPV6": true, "LWIP_IPV6_AUTOCONFIG": false, "LWIP_IPV6_NUM_ADDRESSES": 3, "LWIP_IPV6_FORWARD": false, "LWIP_NETIF_STATUS_CALLBACK": false, "LWIP_NETIF_LOOPBACK": true, "LWIP_LOOPBACK_MAX_PBUFS": 8, "LWIP_MAX_ACTIVE_TCP": 16, "LWIP_MAX_LISTENING_TCP": 16, "LWIP_TCP_HIGH_SPEED_RETRANSMISSION": true, "LWIP_TCP_MAXRTX": 12, "LWIP_TCP_SYNMAXRTX": 12, "LWIP_TCP_MSS": 1440, "LWIP_TCP_TMR_INTERVAL": 250, "LWIP_TCP_MSL": 60000, "LWIP_TCP_FIN_WAIT_TIMEOUT": 20000, "LWIP_TCP_SND_BUF_DEFAULT": 5760, "LWIP_TCP_WND_DEFAULT": 5760, "LWIP_TCP_RECVMBOX_SIZE": 6, "LWIP_TCP_QUEUE_OOSEQ": true, "LWIP_TCP_OOSEQ_TIMEOUT": 6, "LWIP_TCP_OOSEQ_MAX_PBUFS": 4, "LWIP_TCP_SACK_OUT": false, "LWIP_TCP_OVERSIZE_MSS": true, "LWIP_TCP_OVERSIZE_QUARTER_MSS": false, "LWIP_TCP_OVERSIZE_DISABLE": false, "LWIP_TCP_RTO_TIME": 1500, "LWIP_MAX_UDP_PCBS": 16, "LWIP_UDP_RECVMBOX_SIZE": 6, "LWIP_CHECKSUM_CHECK_IP": false, "LWIP_CHECKSUM_CHECK_UDP": false, "LWIP_CHECKSUM_CHECK_ICMP": true, "LWIP_TCPIP_TASK_STACK_SIZE": 3072, "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY": true, "LWIP_TCPIP_TASK_AFFINITY_CPU0": false, "LWIP_TCPIP_TASK_AFFINITY_CPU1": false, "LWIP_TCPIP_TASK_AFFINITY": 2147483647, "LWIP_PPP_SUPPORT": false, "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": 3, "LWIP_IPV6_ND6_NUM_NEIGHBORS": 5, "LWIP_SLIP_SUPPORT": false, "LWIP_ICMP": true, "LWIP_MULTICAST_PING": false, "LWIP_BROADCAST_PING": false, "LWIP_MAX_RAW_PCBS": 16, "LWIP_SNTP_MAX_SERVERS": 1, "LWIP_DHCP_GET_NTP_SRV": false, "LWIP_SNTP_UPDATE_DELAY": 3600000, "LWIP_DNS_MAX_SERVERS": 3, "LWIP_FALLBACK_DNS_SERVER_SUPPORT": false, "LWIP_BRIDGEIF_MAX_PORTS": 7, "LWIP_ESP_LWIP_ASSERT": true, "LWIP_HOOK_TCP_ISN_NONE": false, "LWIP_HOOK_TCP_ISN_DEFAULT": true, "LWIP_HOOK_TCP_ISN_CUSTOM": false, "LWIP_HOOK_IP6_ROUTE_NONE": true, "LWIP_HOOK_IP6_ROUTE_DEFAULT": false, "LWIP_HOOK_IP6_ROUTE_CUSTOM": false, "LWIP_HOOK_ND6_GET_GW_NONE": true, "LWIP_HOOK_ND6_GET_GW_DEFAULT": false, "LWIP_HOOK_ND6_GET_GW_CUSTOM": false, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE": true, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT": false, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM": false, "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE": true, "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT": false, "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM": false, "LWIP_HOOK_IP6_INPUT_NONE": true, "LWIP_HOOK_IP6_INPUT_DEFAULT": false, "LWIP_HOOK_IP6_INPUT_CUSTOM": false, "LWIP_DEBUG": false, "MBEDTLS_INTERNAL_MEM_ALLOC": true, "MBEDTLS_DEFAULT_MEM_ALLOC": false, "MBEDTLS_CUSTOM_MEM_ALLOC": false, "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, "MBEDTLS_SSL_OUT_CONTENT_LEN": 4096, "MBEDTLS_DYNAMIC_BUFFER": false, "MBEDTLS_DEBUG": false, "MBEDTLS_SSL_PROTO_TLS1_3": false, "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH": false, "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": false, "MBEDTLS_SSL_CONTEXT_SERIALIZATION": false, "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": true, "MBEDTLS_PKCS7_C": true, "MBEDTLS_CERTIFICATE_BUNDLE": true, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL": true, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN": false, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE": false, "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE": false, "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS": 200, "MBEDTLS_ECP_RESTARTABLE": false, "MBEDTLS_CMAC_C": true, "MBEDTLS_HARDWARE_AES": true, "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": false, "MBEDTLS_HARDWARE_MPI": true, "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": false, "MBEDTLS_HARDWARE_SHA": true, "MBEDTLS_ROM_MD5": true, "MBEDTLS_ATCA_HW_ECDSA_SIGN": false, "MBEDTLS_ATCA_HW_ECDSA_VERIFY": false, "MBEDTLS_HAVE_TIME": true, "MBEDTLS_PLATFORM_TIME_ALT": false, "MBEDTLS_HAVE_TIME_DATE": false, "MBEDTLS_ECDSA_DETERMINISTIC": true, "MBEDTLS_SHA512_C": true, "MBEDTLS_TLS_SERVER_AND_CLIENT": true, "MBEDTLS_TLS_SERVER_ONLY": false, "MBEDTLS_TLS_CLIENT_ONLY": false, "MBEDTLS_TLS_DISABLED": false, "MBEDTLS_TLS_SERVER": true, "MBEDTLS_TLS_CLIENT": true, "MBEDTLS_TLS_ENABLED": true, "MBEDTLS_PSK_MODES": false, "MBEDTLS_KEY_EXCHANGE_RSA": true, "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, "MBEDTLS_KEY_EXCHANGE_ECDH_RSA": true, "MBEDTLS_SSL_RENEGOTIATION": true, "MBEDTLS_SSL_PROTO_TLS1_2": true, "MBEDTLS_SSL_PROTO_GMTSSL1_1": false, "MBEDTLS_SSL_PROTO_DTLS": false, "MBEDTLS_SSL_ALPN": true, "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, "MBEDTLS_AES_C": true, "MBEDTLS_CAMELLIA_C": false, "MBEDTLS_DES_C": false, "MBEDTLS_BLOWFISH_C": false, "MBEDTLS_XTEA_C": false, "MBEDTLS_CCM_C": true, "MBEDTLS_GCM_C": true, "MBEDTLS_NIST_KW_C": false, "MBEDTLS_RIPEMD160_C": false, "MBEDTLS_PEM_PARSE_C": true, "MBEDTLS_PEM_WRITE_C": true, "MBEDTLS_X509_CRL_PARSE_C": true, "MBEDTLS_X509_CSR_PARSE_C": true, "MBEDTLS_ECP_C": true, "MBEDTLS_DHM_C": false, "MBEDTLS_ECDH_C": true, "MBEDTLS_ECDSA_C": true, "MBEDTLS_ECJPAKE_C": false, "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP224R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP192K1_ENABLED": true, "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, "MBEDTLS_ECP_DP_SECP256K1_ENABLED": 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_NIST_OPTIM": true, "MBEDTLS_ECP_FIXED_POINT_OPTIM": true, "MBEDTLS_POLY1305_C": false, "MBEDTLS_CHACHA20_C": false, "MBEDTLS_HKDF_C": false, "MBEDTLS_THREADING_C": false, "MBEDTLS_ERROR_STRINGS": true, "MQTT_PROTOCOL_311": true, "MQTT_PROTOCOL_5": false, "MQTT_TRANSPORT_SSL": true, "MQTT_TRANSPORT_WEBSOCKET": true, "MQTT_TRANSPORT_WEBSOCKET_SECURE": true, "MQTT_MSG_ID_INCREMENTAL": false, "MQTT_SKIP_PUBLISH_IF_DISCONNECTED": false, "MQTT_REPORT_DELETED_MESSAGES": false, "MQTT_USE_CUSTOM_CONFIG": false, "MQTT_TASK_CORE_SELECTION_ENABLED": false, "MQTT_CUSTOM_OUTBOX": false, "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, "NEWLIB_STDOUT_LINE_ENDING_LF": false, "NEWLIB_STDOUT_LINE_ENDING_CR": false, "NEWLIB_STDIN_LINE_ENDING_CRLF": false, "NEWLIB_STDIN_LINE_ENDING_LF": false, "NEWLIB_STDIN_LINE_ENDING_CR": true, "NEWLIB_NANO_FORMAT": false, "NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true, "NEWLIB_TIME_SYSCALL_USE_RTC": false, "NEWLIB_TIME_SYSCALL_USE_HRT": false, "NEWLIB_TIME_SYSCALL_USE_NONE": false, "NVS_ASSERT_ERROR_CHECK": false, "NVS_LEGACY_DUP_KEYS_COMPATIBILITY": false, "OPENTHREAD_ENABLED": false, "OPENTHREAD_NETWORK_NAME": "OpenThread-ESP", "OPENTHREAD_MESH_LOCAL_PREFIX": "fd00:db8:a0:0::/64", "OPENTHREAD_NETWORK_CHANNEL": 15, "OPENTHREAD_NETWORK_PANID": 4660, "OPENTHREAD_NETWORK_EXTPANID": "dead00beef00cafe", "OPENTHREAD_NETWORK_MASTERKEY": "00112233445566778899aabbccddeeff", "OPENTHREAD_NETWORK_PSKC": "104810e2315100afd6bc9215a6bfac53", "OPENTHREAD_XTAL_ACCURACY": 130, "OPENTHREAD_SPINEL_ONLY": false, "OPENTHREAD_RX_ON_WHEN_IDLE": true, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0": true, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1": true, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2": true, "PTHREAD_TASK_PRIO_DEFAULT": 5, "PTHREAD_TASK_STACK_SIZE_DEFAULT": 3072, "PTHREAD_STACK_MIN": 768, "PTHREAD_DEFAULT_CORE_NO_AFFINITY": true, "PTHREAD_DEFAULT_CORE_0": false, "PTHREAD_DEFAULT_CORE_1": false, "PTHREAD_TASK_CORE_DEFAULT": -1, "PTHREAD_TASK_NAME_DEFAULT": "pthread", "MMU_PAGE_SIZE_64KB": true, "MMU_PAGE_MODE": "64KB", "MMU_PAGE_SIZE": 65536, "SPI_FLASH_BROWNOUT_RESET_XMC": true, "SPI_FLASH_BROWNOUT_RESET": true, "SPI_FLASH_VERIFY_WRITE": false, "SPI_FLASH_ENABLE_COUNTERS": false, "SPI_FLASH_ROM_DRIVER_PATCH": true, "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, "SPI_FLASH_SHARE_SPI1_BUS": false, "SPI_FLASH_BYPASS_BLOCK_ERASE": false, "SPI_FLASH_YIELD_DURING_ERASE": true, "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, "SPI_FLASH_ERASE_YIELD_TICKS": 1, "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, "SPI_FLASH_SIZE_OVERRIDE": false, "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, "SPI_FLASH_VENDOR_XMC_SUPPORTED": true, "SPI_FLASH_VENDOR_GD_SUPPORTED": true, "SPI_FLASH_VENDOR_ISSI_SUPPORTED": true, "SPI_FLASH_VENDOR_MXIC_SUPPORTED": true, "SPI_FLASH_VENDOR_WINBOND_SUPPORTED": true, "SPI_FLASH_SUPPORT_ISSI_CHIP": true, "SPI_FLASH_SUPPORT_MXIC_CHIP": true, "SPI_FLASH_SUPPORT_GD_CHIP": true, "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, "SPI_FLASH_SUPPORT_BOYA_CHIP": false, "SPI_FLASH_SUPPORT_TH_CHIP": false, "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, "SPIFFS_MAX_PARTITIONS": 3, "SPIFFS_CACHE": true, "SPIFFS_CACHE_WR": true, "SPIFFS_CACHE_STATS": false, "SPIFFS_PAGE_CHECK": true, "SPIFFS_GC_MAX_RUNS": 10, "SPIFFS_GC_STATS": false, "SPIFFS_PAGE_SIZE": 256, "SPIFFS_OBJ_NAME_LEN": 32, "SPIFFS_FOLLOW_SYMLINKS": false, "SPIFFS_USE_MAGIC": true, "SPIFFS_USE_MAGIC_LENGTH": true, "SPIFFS_META_LENGTH": 4, "SPIFFS_USE_MTIME": true, "SPIFFS_DBG": false, "SPIFFS_API_DBG": false, "SPIFFS_GC_DBG": false, "SPIFFS_CACHE_DBG": false, "SPIFFS_CHECK_DBG": false, "SPIFFS_TEST_VISUALISATION": false, "WS_TRANSPORT": true, "WS_BUFFER_SIZE": 1024, "WS_DYNAMIC_BUFFER": false, "ULP_COPROC_ENABLED": false, "UNITY_ENABLE_FLOAT": true, "UNITY_ENABLE_DOUBLE": true, "UNITY_ENABLE_64BIT": false, "UNITY_ENABLE_COLOR": false, "UNITY_ENABLE_IDF_TEST_RUNNER": true, "UNITY_ENABLE_FIXTURE": false, "UNITY_ENABLE_BACKTRACE_ON_FAIL": false, "VFS_SUPPORT_IO": true, "VFS_SUPPORT_DIR": true, "VFS_SUPPORT_SELECT": true, "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT": true, "VFS_SELECT_IN_RAM": false, "VFS_SUPPORT_TERMIOS": true, "VFS_MAX_COUNT": 8, "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS": 1, "WL_SECTOR_SIZE_512": false, "WL_SECTOR_SIZE_4096": true, "WL_SECTOR_SIZE": 4096, "WIFI_PROV_SCAN_MAX_ENTRIES": 16, "WIFI_PROV_AUTOSTOP_TIMEOUT": 30, "WIFI_PROV_BLE_FORCE_ENCRYPTION": false, "WIFI_PROV_STA_ALL_CHANNEL_SCAN": true, "WIFI_PROV_STA_FAST_SCAN": false, "DSP_OPTIMIZATIONS_SUPPORTED": true, "DSP_ANSI": false, "DSP_OPTIMIZED": true, "DSP_OPTIMIZATION": 1, "DSP_MAX_FFT_SIZE_512": false, "DSP_MAX_FFT_SIZE_1024": false, "DSP_MAX_FFT_SIZE_2048": false, "DSP_MAX_FFT_SIZE_4096": true, "DSP_MAX_FFT_SIZE_8192": false, "DSP_MAX_FFT_SIZE_16384": false, "DSP_MAX_FFT_SIZE_32768": false, "DSP_MAX_FFT_SIZE": 4096, "IDF_EXPERIMENTAL_FEATURES": false}, "ranges": {"BOOTLOADER_PROJECT_VER": [0, 4294967295], "BOOTLOADER_WDT_TIME_MS": [0, 120000], "APP_RETRIEVE_LEN_ELF_SHA": [8, 64], "APPTRACE_UART_TASK_PRIO": [1, 32], "ETH_RMII_CLK_IN_GPIO": [0, 0], "ETH_DMA_BUFFER_SIZE": [256, 1600], "ETH_DMA_RX_BUFFER_NUM": [3, 30], "ETH_DMA_TX_BUFFER_NUM": [3, 30], "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": [0, 5000], "RTC_CLK_CAL_CYCLES": [0, 32766], "ESP_NETIF_IP_LOST_TIMER_INTERVAL": [0, 65535], "ESP_PHY_MAX_WIFI_TX_POWER": [10, 20], "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": [0, 99], "ESP_CONSOLE_UART_BAUDRATE": [1200, 4000000], "ESP_INT_WDT_TIMEOUT_MS": [10, 10000], "ESP_TASK_WDT_TIMEOUT_S": [1, 60], "ESP_IPC_TASK_STACK_SIZE": [512, 65536], "ESP_TIMER_TASK_STACK_SIZE": [2048, 65536], "ESP_TIMER_INTERRUPT_LEVEL": [1, 3], "ESP_WIFI_STATIC_RX_BUFFER_NUM": [2, 25], "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM": [0, 128], "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM": [1, 128], "ESP_WIFI_RX_MGMT_BUF_NUM_DEF": [1, 10], "ESP_WIFI_TX_BA_WIN": [2, 32], "ESP_WIFI_RX_BA_WIN": [2, 32], "ESP_WIFI_SOFTAP_BEACON_MAX_LEN": [752, 1256], "ESP_WIFI_MGMT_SBUF_NUM": [6, 32], "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM": [0, 17], "FATFS_VOLUME_COUNT": [1, 10], "FATFS_FS_LOCK": [0, 65535], "FREERTOS_HZ": [1, 1000], "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": [1, 256], "FREERTOS_IDLE_TASK_STACKSIZE": [768, 32768], "FREERTOS_MAX_TASK_NAME_LEN": [1, 256], "FREERTOS_TIMER_TASK_PRIORITY": [1, 25], "FREERTOS_TIMER_TASK_STACK_DEPTH": [1536, 32768], "FREERTOS_TIMER_QUEUE_LENGTH": [5, 20], "FREERTOS_QUEUE_REGISTRY_SIZE": [0, 20], "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": [1, 32], "FREERTOS_ISR_STACKSIZE": [1536, 32768], "LWIP_TCPIP_TASK_PRIO": [1, 24], "LWIP_MAX_SOCKETS": [1, 16], "LWIP_IP_DEFAULT_TTL": [1, 255], "LWIP_IP_REASS_MAX_PBUFS": [10, 100], "LWIP_TCPIP_RECVMBOX_SIZE": [6, 64], "LWIP_DHCP_OPTIONS_LEN": [68, 255], "LWIP_NUM_NETIF_CLIENT_DATA": [0, 256], "LWIP_DHCP_COARSE_TIMER_SECS": [1, 10], "LWIP_DHCPS_LEASE_UNIT": [1, 3600], "LWIP_DHCPS_MAX_STATION_NUM": [1, 64], "LWIP_LOOPBACK_MAX_PBUFS": [0, 16], "LWIP_MAX_ACTIVE_TCP": [1, 1024], "LWIP_MAX_LISTENING_TCP": [1, 1024], "LWIP_TCP_MAXRTX": [3, 12], "LWIP_TCP_SYNMAXRTX": [3, 12], "LWIP_TCP_MSS": [536, 1460], "LWIP_TCP_SND_BUF_DEFAULT": [2440, 65535], "LWIP_TCP_WND_DEFAULT": [2440, 65535], "LWIP_TCP_RECVMBOX_SIZE": [6, 64], "LWIP_TCP_OOSEQ_TIMEOUT": [1, 30], "LWIP_TCP_OOSEQ_MAX_PBUFS": [0, 12], "LWIP_MAX_UDP_PCBS": [1, 1024], "LWIP_UDP_RECVMBOX_SIZE": [6, 64], "LWIP_TCPIP_TASK_STACK_SIZE": [2048, 65536], "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": [3, 20], "LWIP_IPV6_ND6_NUM_NEIGHBORS": [3, 10], "LWIP_MAX_RAW_PCBS": [1, 1024], "LWIP_SNTP_MAX_SERVERS": [1, 16], "LWIP_SNTP_UPDATE_DELAY": [15000, 4294967295], "LWIP_DNS_MAX_SERVERS": [1, 4], "LWIP_BRIDGEIF_MAX_PORTS": [1, 63], "MBEDTLS_SSL_IN_CONTENT_LEN": [512, 16384], "MBEDTLS_SSL_OUT_CONTENT_LEN": [512, 16384], "OPENTHREAD_NETWORK_CHANNEL": [11, 26], "OPENTHREAD_NETWORK_PANID": [0, 65534], "PTHREAD_TASK_PRIO_DEFAULT": [0, 255], "SPI_FLASH_WRITE_CHUNK_SIZE": [256, 8192], "SPIFFS_MAX_PARTITIONS": [1, 10], "SPIFFS_GC_MAX_RUNS": [1, 10000], "SPIFFS_PAGE_SIZE": [256, 1024], "SPIFFS_OBJ_NAME_LEN": [1, 256], "VFS_MAX_COUNT": [1, 20], "WIFI_PROV_SCAN_MAX_ENTRIES": [1, 255], "WIFI_PROV_AUTOSTOP_TIMEOUT": [5, 600]}, "visible": {"SOC_BROWNOUT_RESET_SUPPORTED": false, "SOC_TWAI_BRP_DIV_SUPPORTED": false, "SOC_DPORT_WORKAROUND": false, "SOC_CAPS_ECO_VER_MAX": false, "SOC_ADC_SUPPORTED": false, "SOC_DAC_SUPPORTED": false, "SOC_UART_SUPPORTED": false, "SOC_MCPWM_SUPPORTED": false, "SOC_GPTIMER_SUPPORTED": false, "SOC_SDMMC_HOST_SUPPORTED": false, "SOC_BT_SUPPORTED": false, "SOC_PCNT_SUPPORTED": false, "SOC_WIFI_SUPPORTED": false, "SOC_SDIO_SLAVE_SUPPORTED": false, "SOC_TWAI_SUPPORTED": false, "SOC_EFUSE_SUPPORTED": false, "SOC_EMAC_SUPPORTED": false, "SOC_ULP_SUPPORTED": false, "SOC_CCOMP_TIMER_SUPPORTED": false, "SOC_RTC_FAST_MEM_SUPPORTED": false, "SOC_RTC_SLOW_MEM_SUPPORTED": false, "SOC_RTC_MEM_SUPPORTED": false, "SOC_I2S_SUPPORTED": false, "SOC_RMT_SUPPORTED": false, "SOC_SDM_SUPPORTED": false, "SOC_GPSPI_SUPPORTED": false, "SOC_LEDC_SUPPORTED": false, "SOC_I2C_SUPPORTED": false, "SOC_SUPPORT_COEXISTENCE": false, "SOC_AES_SUPPORTED": false, "SOC_MPI_SUPPORTED": false, "SOC_SHA_SUPPORTED": false, "SOC_FLASH_ENC_SUPPORTED": false, "SOC_SECURE_BOOT_SUPPORTED": false, "SOC_TOUCH_SENSOR_SUPPORTED": false, "SOC_BOD_SUPPORTED": false, "SOC_ULP_FSM_SUPPORTED": false, "SOC_CLK_TREE_SUPPORTED": false, "SOC_MPU_SUPPORTED": false, "SOC_WDT_SUPPORTED": false, "SOC_SPI_FLASH_SUPPORTED": false, "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL": false, "SOC_XTAL_SUPPORT_26M": false, "SOC_XTAL_SUPPORT_40M": false, "SOC_XTAL_SUPPORT_AUTO_DETECT": false, "SOC_ADC_RTC_CTRL_SUPPORTED": false, "SOC_ADC_DIG_CTRL_SUPPORTED": false, "SOC_ADC_DMA_SUPPORTED": false, "SOC_ADC_PERIPH_NUM": false, "SOC_ADC_MAX_CHANNEL_NUM": false, "SOC_ADC_ATTEN_NUM": false, "SOC_ADC_DIGI_CONTROLLER_NUM": false, "SOC_ADC_PATT_LEN_MAX": false, "SOC_ADC_DIGI_MIN_BITWIDTH": false, "SOC_ADC_DIGI_MAX_BITWIDTH": false, "SOC_ADC_DIGI_RESULT_BYTES": false, "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": false, "SOC_ADC_DIGI_MONITOR_NUM": false, "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": false, "SOC_ADC_SAMPLE_FREQ_THRES_LOW": false, "SOC_ADC_RTC_MIN_BITWIDTH": false, "SOC_ADC_RTC_MAX_BITWIDTH": false, "SOC_ADC_SHARED_POWER": false, "SOC_SHARED_IDCACHE_SUPPORTED": false, "SOC_IDCACHE_PER_CORE": false, "SOC_CPU_CORES_NUM": false, "SOC_CPU_INTR_NUM": false, "SOC_CPU_HAS_FPU": false, "SOC_HP_CPU_HAS_MULTIPLE_CORES": false, "SOC_CPU_BREAKPOINTS_NUM": false, "SOC_CPU_WATCHPOINTS_NUM": false, "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": false, "SOC_DAC_CHAN_NUM": false, "SOC_DAC_RESOLUTION": false, "SOC_DAC_DMA_16BIT_ALIGN": false, "SOC_GPIO_PORT": false, "SOC_GPIO_PIN_COUNT": false, "SOC_GPIO_VALID_GPIO_MASK": false, "SOC_GPIO_IN_RANGE_MAX": false, "SOC_GPIO_OUT_RANGE_MAX": false, "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": false, "SOC_GPIO_CLOCKOUT_BY_IO_MUX": false, "SOC_I2C_NUM": false, "SOC_I2C_FIFO_LEN": false, "SOC_I2C_CMD_REG_NUM": false, "SOC_I2C_SUPPORT_SLAVE": false, "SOC_I2C_SUPPORT_APB": false, "SOC_I2C_STOP_INDEPENDENT": false, "SOC_I2S_NUM": false, "SOC_I2S_HW_VERSION_1": false, "SOC_I2S_SUPPORTS_APLL": false, "SOC_I2S_SUPPORTS_PLL_F160M": false, "SOC_I2S_SUPPORTS_PDM": false, "SOC_I2S_SUPPORTS_PDM_TX": false, "SOC_I2S_PDM_MAX_TX_LINES": false, "SOC_I2S_SUPPORTS_PDM_RX": false, "SOC_I2S_PDM_MAX_RX_LINES": false, "SOC_I2S_SUPPORTS_ADC_DAC": false, "SOC_I2S_SUPPORTS_ADC": false, "SOC_I2S_SUPPORTS_DAC": false, "SOC_I2S_SUPPORTS_LCD_CAMERA": false, "SOC_I2S_TRANS_SIZE_ALIGN_WORD": false, "SOC_I2S_LCD_I80_VARIANT": false, "SOC_LCD_I80_SUPPORTED": false, "SOC_LCD_I80_BUSES": false, "SOC_LCD_I80_BUS_WIDTH": false, "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX": false, "SOC_LEDC_SUPPORT_APB_CLOCK": false, "SOC_LEDC_SUPPORT_REF_TICK": false, "SOC_LEDC_SUPPORT_HS_MODE": false, "SOC_LEDC_CHANNEL_NUM": false, "SOC_LEDC_TIMER_BIT_WIDTH": false, "SOC_MCPWM_GROUPS": false, "SOC_MCPWM_TIMERS_PER_GROUP": false, "SOC_MCPWM_OPERATORS_PER_GROUP": false, "SOC_MCPWM_COMPARATORS_PER_OPERATOR": false, "SOC_MCPWM_GENERATORS_PER_OPERATOR": false, "SOC_MCPWM_TRIGGERS_PER_OPERATOR": false, "SOC_MCPWM_GPIO_FAULTS_PER_GROUP": false, "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP": false, "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": false, "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP": false, "SOC_MMU_PERIPH_NUM": false, "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": false, "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED": false, "SOC_MPU_MIN_REGION_SIZE": false, "SOC_MPU_REGIONS_MAX_NUM": false, "SOC_MPU_REGION_RO_SUPPORTED": false, "SOC_MPU_REGION_WO_SUPPORTED": false, "SOC_PCNT_GROUPS": false, "SOC_PCNT_UNITS_PER_GROUP": false, "SOC_PCNT_CHANNELS_PER_UNIT": false, "SOC_PCNT_THRES_POINT_PER_UNIT": false, "SOC_RMT_GROUPS": false, "SOC_RMT_TX_CANDIDATES_PER_GROUP": false, "SOC_RMT_RX_CANDIDATES_PER_GROUP": false, "SOC_RMT_CHANNELS_PER_GROUP": false, "SOC_RMT_MEM_WORDS_PER_CHANNEL": false, "SOC_RMT_SUPPORT_REF_TICK": false, "SOC_RMT_SUPPORT_APB": false, "SOC_RMT_CHANNEL_CLK_INDEPENDENT": false, "SOC_RTCIO_PIN_COUNT": false, "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": false, "SOC_RTCIO_HOLD_SUPPORTED": false, "SOC_RTCIO_WAKE_SUPPORTED": false, "SOC_SDM_GROUPS": false, "SOC_SDM_CHANNELS_PER_GROUP": false, "SOC_SDM_CLK_SUPPORT_APB": false, "SOC_SPI_HD_BOTH_INOUT_SUPPORTED": false, "SOC_SPI_AS_CS_SUPPORTED": false, "SOC_SPI_PERIPH_NUM": false, "SOC_SPI_DMA_CHAN_NUM": false, "SOC_SPI_MAX_CS_NUM": false, "SOC_SPI_SUPPORT_CLK_APB": false, "SOC_SPI_MAXIMUM_BUFFER_SIZE": false, "SOC_SPI_MAX_PRE_DIVIDER": false, "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": false, "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": false, "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": false, "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": false, "SOC_TIMER_GROUPS": false, "SOC_TIMER_GROUP_TIMERS_PER_GROUP": false, "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": false, "SOC_TIMER_GROUP_TOTAL_TIMERS": false, "SOC_TIMER_GROUP_SUPPORT_APB": false, "SOC_TOUCH_VERSION_1": false, "SOC_TOUCH_SENSOR_NUM": false, "SOC_TOUCH_PAD_MEASURE_WAIT_MAX": false, "SOC_TOUCH_PAD_THRESHOLD_MAX": false, "SOC_TWAI_CONTROLLER_NUM": false, "SOC_TWAI_BRP_MIN": false, "SOC_TWAI_CLK_SUPPORT_APB": false, "SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT": false, "SOC_UART_NUM": false, "SOC_UART_HP_NUM": false, "SOC_UART_SUPPORT_APB_CLK": false, "SOC_UART_SUPPORT_REF_TICK": false, "SOC_UART_FIFO_LEN": false, "SOC_UART_BITRATE_MAX": false, "SOC_SPIRAM_SUPPORTED": false, "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": false, "SOC_SHA_SUPPORT_PARALLEL_ENG": false, "SOC_SHA_ENDIANNESS_BE": false, "SOC_SHA_SUPPORT_SHA1": false, "SOC_SHA_SUPPORT_SHA256": false, "SOC_SHA_SUPPORT_SHA384": false, "SOC_SHA_SUPPORT_SHA512": false, "SOC_MPI_MEM_BLOCKS_NUM": false, "SOC_MPI_OPERATIONS_NUM": false, "SOC_RSA_MAX_BIT_LEN": false, "SOC_AES_SUPPORT_AES_128": false, "SOC_AES_SUPPORT_AES_192": false, "SOC_AES_SUPPORT_AES_256": false, "SOC_SECURE_BOOT_V1": false, "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": false, "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": false, "SOC_PHY_DIG_REGS_MEM_SIZE": false, "SOC_PM_SUPPORT_EXT0_WAKEUP": false, "SOC_PM_SUPPORT_EXT1_WAKEUP": false, "SOC_PM_SUPPORT_EXT_WAKEUP": false, "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": false, "SOC_PM_SUPPORT_RTC_PERIPH_PD": false, "SOC_PM_SUPPORT_RTC_FAST_MEM_PD": false, "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD": false, "SOC_PM_SUPPORT_RC_FAST_PD": false, "SOC_PM_SUPPORT_VDDSDIO_PD": false, "SOC_PM_SUPPORT_MODEM_PD": false, "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED": false, "SOC_CLK_APLL_SUPPORTED": false, "SOC_CLK_RC_FAST_D256_SUPPORTED": false, "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": false, "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": false, "SOC_CLK_XTAL32K_SUPPORTED": false, "SOC_SDMMC_USE_IOMUX": false, "SOC_SDMMC_NUM_SLOTS": false, "SOC_WIFI_WAPI_SUPPORT": false, "SOC_WIFI_CSI_SUPPORT": false, "SOC_WIFI_MESH_SUPPORT": false, "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": false, "SOC_WIFI_NAN_SUPPORT": false, "SOC_BLE_SUPPORTED": false, "SOC_BLE_MESH_SUPPORTED": false, "SOC_BT_CLASSIC_SUPPORTED": false, "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": false, "SOC_BLUFI_SUPPORTED": false, "SOC_ULP_HAS_ADC": false, "SOC_PHY_COMBO_MODULE": false, "IDF_CMAKE": false, "IDF_ENV_FPGA": false, "IDF_ENV_BRINGUP": false, "IDF_CI_BUILD": false, "IDF_DOC_BUILD": false, "IDF_TOOLCHAIN": false, "IDF_TOOLCHAIN_CLANG": false, "IDF_TARGET_ARCH_RISCV": false, "IDF_TARGET_ARCH_XTENSA": false, "IDF_TARGET_ARCH": false, "IDF_TARGET": false, "IDF_INIT_VERSION": false, "IDF_TARGET_LINUX": false, "IDF_TARGET_ESP32": false, "IDF_TARGET_ESP32S2": false, "IDF_TARGET_ESP32S3": false, "IDF_TARGET_ESP32C3": false, "IDF_TARGET_ESP32C2": false, "IDF_TARGET_ESP32C6": false, "IDF_TARGET_ESP32P4": false, "IDF_TARGET_ESP32H2": false, "IDF_FIRMWARE_CHIP_ID": false, "build-type-application-build-type": true, "APP_BUILD_TYPE_APP_2NDBOOT": true, "APP_BUILD_TYPE_RAM": true, "APP_BUILD_GENERATE_BINARIES": false, "APP_BUILD_BOOTLOADER": false, "APP_BUILD_TYPE_PURE_RAM_APP": false, "APP_BUILD_USE_FLASH_SECTIONS": false, "APP_REPRODUCIBLE_BUILD": true, "APP_NO_BLOBS": true, "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS": true, "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS": true, "APP_INIT_CLK": false, "BOOTLOADER_COMPILE_TIME_DATE": true, "BOOTLOADER_PROJECT_VER": true, "BOOTLOADER_OFFSET_IN_FLASH": false, "bootloader-config-bootloader-optimization-level": true, "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": true, "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": true, "BOOTLOADER_COMPILER_OPTIMIZATION_NONE": true, "bootloader-config-bootloader-log-verbosity": true, "BOOTLOADER_LOG_LEVEL_NONE": true, "BOOTLOADER_LOG_LEVEL_ERROR": true, "BOOTLOADER_LOG_LEVEL_WARN": true, "BOOTLOADER_LOG_LEVEL_INFO": true, "BOOTLOADER_LOG_LEVEL_DEBUG": true, "BOOTLOADER_LOG_LEVEL_VERBOSE": true, "BOOTLOADER_LOG_LEVEL": false, "BOOTLOADER_SPI_CUSTOM_WP_PIN": false, "BOOTLOADER_SPI_WP_PIN": false, "BOOTLOADER_FLASH_DC_AWARE": true, "BOOTLOADER_FLASH_XMC_SUPPORT": true, "BOOTLOADER_FLASH_32BIT_ADDR": false, "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT": false, "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH": false, "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH": false, "bootloader-config-vddsdio-ldo-voltage": true, "BOOTLOADER_VDDSDIO_BOOST_1_8V": true, "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, "BOOTLOADER_FACTORY_RESET": true, "BOOTLOADER_NUM_PIN_FACTORY_RESET": false, "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level": false, "BOOTLOADER_FACTORY_RESET_PIN_LOW": false, "BOOTLOADER_FACTORY_RESET_PIN_HIGH": false, "BOOTLOADER_OTA_DATA_ERASE": false, "BOOTLOADER_DATA_FACTORY_RESET": false, "BOOTLOADER_APP_TEST": true, "BOOTLOADER_NUM_PIN_APP_TEST": false, "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level": false, "BOOTLOADER_APP_TEST_PIN_LOW": false, "BOOTLOADER_APP_TEST_PIN_HIGH": false, "BOOTLOADER_HOLD_TIME_GPIO": false, "BOOTLOADER_REGION_PROTECTION_ENABLE": true, "BOOTLOADER_WDT_ENABLE": true, "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": true, "BOOTLOADER_WDT_TIME_MS": true, "BOOTLOADER_APP_ROLLBACK_ENABLE": true, "BOOTLOADER_APP_ANTI_ROLLBACK": false, "BOOTLOADER_APP_SECURE_VERSION": false, "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD": false, "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE": false, "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": true, "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": true, "BOOTLOADER_SKIP_VALIDATE_ALWAYS": true, "BOOTLOADER_RESERVE_RTC_SIZE": false, "BOOTLOADER_CUSTOM_RESERVE_RTC": true, "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC": false, "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE": false, "BOOTLOADER_RESERVE_RTC_MEM": false, "SECURE_SIGNED_ON_BOOT": false, "SECURE_SIGNED_ON_UPDATE": false, "SECURE_SIGNED_APPS": false, "SECURE_BOOT_V2_RSA_SUPPORTED": false, "SECURE_BOOT_V2_ECC_SUPPORTED": false, "SECURE_BOOT_V1_SUPPORTED": false, "SECURE_BOOT_V2_PREFERRED": false, "SECURE_BOOT_V2_ECDSA_ENABLED": false, "SECURE_BOOT_V2_RSA_ENABLED": false, "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER": false, "SECURE_SIGNED_APPS_NO_SECURE_BOOT": true, "security-features-app-signing-scheme": false, "SECURE_SIGNED_APPS_ECDSA_SCHEME": false, "SECURE_SIGNED_APPS_RSA_SCHEME": false, "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME": false, "security-features-ecdsa-key-size": false, "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS": false, "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS": false, "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT": false, "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT": false, "SECURE_BOOT": true, "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version": false, "SECURE_BOOT_V1_ENABLED": false, "SECURE_BOOT_V2_ENABLED": false, "security-features-secure-bootloader-mode": false, "SECURE_BOOTLOADER_ONE_TIME_FLASH": false, "SECURE_BOOTLOADER_REFLASHABLE": false, "SECURE_BOOT_BUILD_SIGNED_BINARIES": false, "SECURE_BOOT_SIGNING_KEY": false, "SECURE_BOOT_VERIFICATION_KEY": false, "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE": false, "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT": false, "security-features-hardware-key-encoding": false, "SECURE_BOOTLOADER_KEY_ENCODING_256BIT": false, "SECURE_BOOTLOADER_KEY_ENCODING_192BIT": false, "SECURE_BOOT_INSECURE": false, "SECURE_FLASH_ENC_ENABLED": true, "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key": false, "SECURE_FLASH_ENCRYPTION_AES128_DERIVED": false, "SECURE_FLASH_ENCRYPTION_AES128": false, "SECURE_FLASH_ENCRYPTION_AES256": false, "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode": false, "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT": false, "SECURE_FLASH_ENCRYPTION_MODE_RELEASE": false, "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE": false, "SECURE_BOOT_ALLOW_ROM_BASIC": false, "SECURE_BOOT_ALLOW_JTAG": false, "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION": false, "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS": false, "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS": false, "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC": false, "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC": false, "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE": false, "SECURE_FLASH_REQUIRE_ALREADY_ENABLED": false, "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE": false, "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART": false, "SECURE_FLASH_CHECK_ENC_EN_IN_APP": false, "SECURE_ROM_DL_MODE_ENABLED": false, "security-features-uart-rom-download-mode": false, "SECURE_DISABLE_ROM_DL_MODE": false, "SECURE_ENABLE_SECURE_ROM_DL_MODE": false, "SECURE_INSECURE_ALLOW_DL_MODE": false, "APP_COMPILE_TIME_DATE": true, "APP_EXCLUDE_PROJECT_VER_VAR": true, "APP_EXCLUDE_PROJECT_NAME_VAR": true, "APP_PROJECT_VER_FROM_CONFIG": true, "APP_PROJECT_VER": false, "APP_RETRIEVE_LEN_ELF_SHA": true, "ESP_ROM_HAS_CRC_LE": false, "ESP_ROM_HAS_CRC_BE": false, "ESP_ROM_HAS_MZ_CRC32": false, "ESP_ROM_HAS_JPEG_DECODE": false, "ESP_ROM_HAS_UART_BUF_SWITCH": false, "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": false, "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": false, "ESP_ROM_HAS_SW_FLOAT": false, "ESP_ROM_USB_SERIAL_DEVICE_NUM": false, "boot-rom-behavior-permanently-change-boot-rom-output": false, "BOOT_ROM_LOG_ALWAYS_ON": false, "BOOT_ROM_LOG_ALWAYS_OFF": false, "BOOT_ROM_LOG_ON_GPIO_HIGH": false, "BOOT_ROM_LOG_ON_GPIO_LOW": false, "ESPTOOLPY_NO_STUB": true, "ESPTOOLPY_OCT_FLASH": false, "ESPTOOLPY_FLASH_MODE_AUTO_DETECT": false, "serial-flasher-config-flash-spi-mode": true, "ESPTOOLPY_FLASHMODE_QIO": true, "ESPTOOLPY_FLASHMODE_QOUT": true, "ESPTOOLPY_FLASHMODE_DIO": true, "ESPTOOLPY_FLASHMODE_DOUT": true, "ESPTOOLPY_FLASHMODE_OPI": false, "serial-flasher-config-flash-sampling-mode": true, "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR": false, "ESPTOOLPY_FLASHMODE": false, "serial-flasher-config-flash-spi-speed": true, "ESPTOOLPY_FLASHFREQ_120M": false, "ESPTOOLPY_FLASHFREQ_80M": true, "ESPTOOLPY_FLASHFREQ_64M": false, "ESPTOOLPY_FLASHFREQ_60M": false, "ESPTOOLPY_FLASHFREQ_48M": false, "ESPTOOLPY_FLASHFREQ_40M": true, "ESPTOOLPY_FLASHFREQ_32M": false, "ESPTOOLPY_FLASHFREQ_30M": false, "ESPTOOLPY_FLASHFREQ_26M": true, "ESPTOOLPY_FLASHFREQ_24M": false, "ESPTOOLPY_FLASHFREQ_20M": true, "ESPTOOLPY_FLASHFREQ_16M": false, "ESPTOOLPY_FLASHFREQ_15M": false, "ESPTOOLPY_FLASHFREQ_80M_DEFAULT": false, "ESPTOOLPY_FLASHFREQ": false, "serial-flasher-config-flash-size": true, "ESPTOOLPY_FLASHSIZE_1MB": true, "ESPTOOLPY_FLASHSIZE_2MB": true, "ESPTOOLPY_FLASHSIZE_4MB": true, "ESPTOOLPY_FLASHSIZE_8MB": true, "ESPTOOLPY_FLASHSIZE_16MB": true, "ESPTOOLPY_FLASHSIZE_32MB": true, "ESPTOOLPY_FLASHSIZE_64MB": true, "ESPTOOLPY_FLASHSIZE_128MB": true, "ESPTOOLPY_FLASHSIZE": false, "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": true, "serial-flasher-config-before-flashing": true, "ESPTOOLPY_BEFORE_RESET": true, "ESPTOOLPY_BEFORE_NORESET": true, "ESPTOOLPY_BEFORE": false, "serial-flasher-config-after-flashing": true, "ESPTOOLPY_AFTER_RESET": true, "ESPTOOLPY_AFTER_NORESET": true, "ESPTOOLPY_AFTER": false, "ESPTOOLPY_MONITOR_BAUD": false, "partition-table-partition-table": true, "PARTITION_TABLE_SINGLE_APP": true, "PARTITION_TABLE_SINGLE_APP_LARGE": true, "PARTITION_TABLE_TWO_OTA": true, "PARTITION_TABLE_CUSTOM": true, "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS": false, "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS": false, "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS": false, "PARTITION_TABLE_CUSTOM_FILENAME": false, "PARTITION_TABLE_FILENAME": false, "PARTITION_TABLE_OFFSET": true, "PARTITION_TABLE_MD5": true, "compiler-options-optimization-level": true, "COMPILER_OPTIMIZATION_DEBUG": true, "COMPILER_OPTIMIZATION_SIZE": true, "COMPILER_OPTIMIZATION_PERF": true, "COMPILER_OPTIMIZATION_NONE": true, "compiler-options-assertion-level": true, "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": true, "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": true, "compiler-options-compiler-float-lib-source": true, "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, "COMPILER_FLOAT_LIB_FROM_RVFPLIB": false, "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": false, "COMPILER_OPTIMIZATION_CHECKS_SILENT": true, "COMPILER_HIDE_PATHS_MACROS": true, "COMPILER_CXX_EXCEPTIONS": true, "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE": false, "COMPILER_CXX_RTTI": true, "compiler-options-stack-smashing-protection-mode": true, "COMPILER_STACK_CHECK_MODE_NONE": true, "COMPILER_STACK_CHECK_MODE_NORM": true, "COMPILER_STACK_CHECK_MODE_STRONG": true, "COMPILER_STACK_CHECK_MODE_ALL": true, "COMPILER_STACK_CHECK": false, "COMPILER_WARN_WRITE_STRINGS": true, "COMPILER_SAVE_RESTORE_LIBCALLS": false, "COMPILER_DISABLE_GCC12_WARNINGS": true, "COMPILER_DISABLE_GCC13_WARNINGS": true, "COMPILER_DUMP_RTL_FILES": true, "compiler-options-compiler-runtime-library": true, "COMPILER_RT_LIB_GCCLIB": true, "COMPILER_RT_LIB_CLANGRT": false, "COMPILER_RT_LIB_HOST": false, "COMPILER_RT_LIB_NAME": false, "component-config-application-level-tracing-data-destination-1": true, "APPTRACE_DEST_JTAG": true, "APPTRACE_DEST_NONE": true, "APPTRACE_DEST_UART": false, "APPTRACE_DEST_UART_NOUSB": false, "component-config-application-level-tracing-data-destination-2": true, "APPTRACE_DEST_UART0": false, "APPTRACE_DEST_UART1": true, "APPTRACE_DEST_UART2": true, "APPTRACE_DEST_USB_CDC": false, "APPTRACE_DEST_UART_NONE": true, "APPTRACE_UART_TX_GPIO": false, "APPTRACE_UART_RX_GPIO": false, "APPTRACE_UART_BAUDRATE": false, "APPTRACE_UART_RX_BUFF_SIZE": false, "APPTRACE_UART_TX_BUFF_SIZE": false, "APPTRACE_UART_TX_MSG_SIZE": false, "APPTRACE_UART_TASK_PRIO": false, "APPTRACE_DEST_TRAX": false, "APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE": false, "APPTRACE_ENABLE": false, "APPTRACE_LOCK_ENABLE": false, "APPTRACE_ONPANIC_HOST_FLUSH_TMO": false, "APPTRACE_POSTMORTEM_FLUSH_THRESH": false, "APPTRACE_BUF_SIZE": false, "APPTRACE_PENDING_DATA_SIZE_MAX": false, "APPTRACE_SV_ENABLE": false, "component-config-application-level-tracing-freertos-systemview-tracing-systemview-tracing-enable-systemview-destination": false, "APPTRACE_SV_DEST_JTAG": false, "APPTRACE_SV_DEST_UART": false, "component-config-application-level-tracing-freertos-systemview-tracing-cpu-to-trace": false, "APPTRACE_SV_DEST_CPU_0": false, "APPTRACE_SV_DEST_CPU_1": false, "component-config-application-level-tracing-freertos-systemview-tracing-timer-to-use-as-timestamp-source": false, "APPTRACE_SV_TS_SOURCE_CCOUNT": false, "APPTRACE_SV_TS_SOURCE_GPTIMER": false, "APPTRACE_SV_TS_SOURCE_ESP_TIMER": false, "APPTRACE_SV_MAX_TASKS": false, "APPTRACE_SV_BUF_WAIT_TMO": false, "APPTRACE_SV_EVT_OVERFLOW_ENABLE": false, "APPTRACE_SV_EVT_ISR_ENTER_ENABLE": false, "APPTRACE_SV_EVT_ISR_EXIT_ENABLE": false, "APPTRACE_SV_EVT_ISR_TO_SCHED_ENABLE": false, "APPTRACE_SV_EVT_TASK_START_EXEC_ENABLE": false, "APPTRACE_SV_EVT_TASK_STOP_EXEC_ENABLE": false, "APPTRACE_SV_EVT_TASK_START_READY_ENABLE": false, "APPTRACE_SV_EVT_TASK_STOP_READY_ENABLE": false, "APPTRACE_SV_EVT_TASK_CREATE_ENABLE": false, "APPTRACE_SV_EVT_TASK_TERMINATE_ENABLE": false, "APPTRACE_SV_EVT_IDLE_ENABLE": false, "APPTRACE_SV_EVT_TIMER_ENTER_ENABLE": false, "APPTRACE_SV_EVT_TIMER_EXIT_ENABLE": false, "APPTRACE_GCOV_ENABLE": false, "APPTRACE_GCOV_DUMP_TASK_STACK_SIZE": false, "BT_ENABLED": true, "component-config-bluetooth-bluetooth-host": false, "BT_BLUEDROID_ENABLED": false, "BT_NIMBLE_ENABLED": false, "BT_CONTROLLER_ONLY": false, "component-config-bluetooth-bluetooth-controller": false, "BT_CONTROLLER_ENABLED": false, "BT_CONTROLLER_DISABLED": false, "BT_BTC_TASK_STACK_SIZE": false, "component-config-bluetooth-bluedroid-options-the-cpu-core-which-bluedroid-run": false, "BT_BLUEDROID_PINNED_TO_CORE_0": false, "BT_BLUEDROID_PINNED_TO_CORE_1": false, "BT_BLUEDROID_PINNED_TO_CORE": false, "BT_BTU_TASK_STACK_SIZE": false, "BT_BLUEDROID_MEM_DEBUG": false, "BT_BLUEDROID_ESP_COEX_VSC": false, "BT_CLASSIC_ENABLED": false, "BT_CLASSIC_BQB_ENABLED": false, "BT_A2DP_ENABLE": false, "BT_SPP_ENABLED": false, "BT_L2CAP_ENABLED": false, "BT_HFP_ENABLE": false, "BT_HFP_CLIENT_ENABLE": false, "BT_HFP_AG_ENABLE": false, "component-config-bluetooth-bluedroid-options-classic-bluetooth-hands-free-handset-profile-audio-sco-data-path": false, "BT_HFP_AUDIO_DATA_PATH_PCM": false, "BT_HFP_AUDIO_DATA_PATH_HCI": false, "BT_HFP_WBS_ENABLE": false, "BT_HID_ENABLED": false, "BT_HID_HOST_ENABLED": false, "BT_HID_DEVICE_ENABLED": false, "BT_BLE_ENABLED": false, "BT_GATTS_ENABLE": false, "BT_GATTS_PPCP_CHAR_GAP": false, "BT_BLE_BLUFI_ENABLE": false, "BT_GATT_MAX_SR_PROFILES": false, "BT_GATT_MAX_SR_ATTRIBUTES": false, "component-config-bluetooth-bluedroid-options-bluetooth-low-energy-include-gatt-server-module-gatts--gatts-service-change-mode": false, "BT_GATTS_SEND_SERVICE_CHANGE_MANUAL": false, "BT_GATTS_SEND_SERVICE_CHANGE_AUTO": false, "BT_GATTS_SEND_SERVICE_CHANGE_MODE": false, "BT_GATTS_ROBUST_CACHING_ENABLED": false, "BT_GATTS_DEVICE_NAME_WRITABLE": false, "BT_GATTS_APPEARANCE_WRITABLE": false, "BT_GATTC_ENABLE": false, "BT_GATTC_MAX_CACHE_CHAR": false, "BT_GATTC_NOTIF_REG_MAX": false, "BT_GATTC_CACHE_NVS_FLASH": false, "BT_GATTC_CONNECT_RETRY_COUNT": false, "BT_BLE_SMP_ENABLE": false, "BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE": false, "BT_STACK_NO_LOG": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hci-layer": false, "BT_LOG_HCI_TRACE_LEVEL_NONE": false, "BT_LOG_HCI_TRACE_LEVEL_ERROR": false, "BT_LOG_HCI_TRACE_LEVEL_WARNING": false, "BT_LOG_HCI_TRACE_LEVEL_API": false, "BT_LOG_HCI_TRACE_LEVEL_EVENT": false, "BT_LOG_HCI_TRACE_LEVEL_DEBUG": false, "BT_LOG_HCI_TRACE_LEVEL_VERBOSE": false, "BT_LOG_HCI_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btm-layer": false, "BT_LOG_BTM_TRACE_LEVEL_NONE": false, "BT_LOG_BTM_TRACE_LEVEL_ERROR": false, "BT_LOG_BTM_TRACE_LEVEL_WARNING": false, "BT_LOG_BTM_TRACE_LEVEL_API": false, "BT_LOG_BTM_TRACE_LEVEL_EVENT": false, "BT_LOG_BTM_TRACE_LEVEL_DEBUG": false, "BT_LOG_BTM_TRACE_LEVEL_VERBOSE": false, "BT_LOG_BTM_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-l2cap-layer": false, "BT_LOG_L2CAP_TRACE_LEVEL_NONE": false, "BT_LOG_L2CAP_TRACE_LEVEL_ERROR": false, "BT_LOG_L2CAP_TRACE_LEVEL_WARNING": false, "BT_LOG_L2CAP_TRACE_LEVEL_API": false, "BT_LOG_L2CAP_TRACE_LEVEL_EVENT": false, "BT_LOG_L2CAP_TRACE_LEVEL_DEBUG": false, "BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE": false, "BT_LOG_L2CAP_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-rfcomm-layer": false, "BT_LOG_RFCOMM_TRACE_LEVEL_NONE": false, "BT_LOG_RFCOMM_TRACE_LEVEL_ERROR": false, "BT_LOG_RFCOMM_TRACE_LEVEL_WARNING": false, "BT_LOG_RFCOMM_TRACE_LEVEL_API": false, "BT_LOG_RFCOMM_TRACE_LEVEL_EVENT": false, "BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG": false, "BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE": false, "BT_LOG_RFCOMM_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-sdp-layer": false, "BT_LOG_SDP_TRACE_LEVEL_NONE": false, "BT_LOG_SDP_TRACE_LEVEL_ERROR": false, "BT_LOG_SDP_TRACE_LEVEL_WARNING": false, "BT_LOG_SDP_TRACE_LEVEL_API": false, "BT_LOG_SDP_TRACE_LEVEL_EVENT": false, "BT_LOG_SDP_TRACE_LEVEL_DEBUG": false, "BT_LOG_SDP_TRACE_LEVEL_VERBOSE": false, "BT_LOG_SDP_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gap-layer": false, "BT_LOG_GAP_TRACE_LEVEL_NONE": false, "BT_LOG_GAP_TRACE_LEVEL_ERROR": false, "BT_LOG_GAP_TRACE_LEVEL_WARNING": false, "BT_LOG_GAP_TRACE_LEVEL_API": false, "BT_LOG_GAP_TRACE_LEVEL_EVENT": false, "BT_LOG_GAP_TRACE_LEVEL_DEBUG": false, "BT_LOG_GAP_TRACE_LEVEL_VERBOSE": false, "BT_LOG_GAP_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-bnep-layer": false, "BT_LOG_BNEP_TRACE_LEVEL_NONE": false, "BT_LOG_BNEP_TRACE_LEVEL_ERROR": false, "BT_LOG_BNEP_TRACE_LEVEL_WARNING": false, "BT_LOG_BNEP_TRACE_LEVEL_API": false, "BT_LOG_BNEP_TRACE_LEVEL_EVENT": false, "BT_LOG_BNEP_TRACE_LEVEL_DEBUG": false, "BT_LOG_BNEP_TRACE_LEVEL_VERBOSE": false, "BT_LOG_BNEP_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-pan-layer": false, "BT_LOG_PAN_TRACE_LEVEL_NONE": false, "BT_LOG_PAN_TRACE_LEVEL_ERROR": false, "BT_LOG_PAN_TRACE_LEVEL_WARNING": false, "BT_LOG_PAN_TRACE_LEVEL_API": false, "BT_LOG_PAN_TRACE_LEVEL_EVENT": false, "BT_LOG_PAN_TRACE_LEVEL_DEBUG": false, "BT_LOG_PAN_TRACE_LEVEL_VERBOSE": false, "BT_LOG_PAN_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-a2d-layer": false, "BT_LOG_A2D_TRACE_LEVEL_NONE": false, "BT_LOG_A2D_TRACE_LEVEL_ERROR": false, "BT_LOG_A2D_TRACE_LEVEL_WARNING": false, "BT_LOG_A2D_TRACE_LEVEL_API": false, "BT_LOG_A2D_TRACE_LEVEL_EVENT": false, "BT_LOG_A2D_TRACE_LEVEL_DEBUG": false, "BT_LOG_A2D_TRACE_LEVEL_VERBOSE": false, "BT_LOG_A2D_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avdt-layer": false, "BT_LOG_AVDT_TRACE_LEVEL_NONE": false, "BT_LOG_AVDT_TRACE_LEVEL_ERROR": false, "BT_LOG_AVDT_TRACE_LEVEL_WARNING": false, "BT_LOG_AVDT_TRACE_LEVEL_API": false, "BT_LOG_AVDT_TRACE_LEVEL_EVENT": false, "BT_LOG_AVDT_TRACE_LEVEL_DEBUG": false, "BT_LOG_AVDT_TRACE_LEVEL_VERBOSE": false, "BT_LOG_AVDT_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avct-layer": false, "BT_LOG_AVCT_TRACE_LEVEL_NONE": false, "BT_LOG_AVCT_TRACE_LEVEL_ERROR": false, "BT_LOG_AVCT_TRACE_LEVEL_WARNING": false, "BT_LOG_AVCT_TRACE_LEVEL_API": false, "BT_LOG_AVCT_TRACE_LEVEL_EVENT": false, "BT_LOG_AVCT_TRACE_LEVEL_DEBUG": false, "BT_LOG_AVCT_TRACE_LEVEL_VERBOSE": false, "BT_LOG_AVCT_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avrc-layer": false, "BT_LOG_AVRC_TRACE_LEVEL_NONE": false, "BT_LOG_AVRC_TRACE_LEVEL_ERROR": false, "BT_LOG_AVRC_TRACE_LEVEL_WARNING": false, "BT_LOG_AVRC_TRACE_LEVEL_API": false, "BT_LOG_AVRC_TRACE_LEVEL_EVENT": false, "BT_LOG_AVRC_TRACE_LEVEL_DEBUG": false, "BT_LOG_AVRC_TRACE_LEVEL_VERBOSE": false, "BT_LOG_AVRC_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-mca-layer": false, "BT_LOG_MCA_TRACE_LEVEL_NONE": false, "BT_LOG_MCA_TRACE_LEVEL_ERROR": false, "BT_LOG_MCA_TRACE_LEVEL_WARNING": false, "BT_LOG_MCA_TRACE_LEVEL_API": false, "BT_LOG_MCA_TRACE_LEVEL_EVENT": false, "BT_LOG_MCA_TRACE_LEVEL_DEBUG": false, "BT_LOG_MCA_TRACE_LEVEL_VERBOSE": false, "BT_LOG_MCA_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hid-layer": false, "BT_LOG_HID_TRACE_LEVEL_NONE": false, "BT_LOG_HID_TRACE_LEVEL_ERROR": false, "BT_LOG_HID_TRACE_LEVEL_WARNING": false, "BT_LOG_HID_TRACE_LEVEL_API": false, "BT_LOG_HID_TRACE_LEVEL_EVENT": false, "BT_LOG_HID_TRACE_LEVEL_DEBUG": false, "BT_LOG_HID_TRACE_LEVEL_VERBOSE": false, "BT_LOG_HID_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-appl-layer": false, "BT_LOG_APPL_TRACE_LEVEL_NONE": false, "BT_LOG_APPL_TRACE_LEVEL_ERROR": false, "BT_LOG_APPL_TRACE_LEVEL_WARNING": false, "BT_LOG_APPL_TRACE_LEVEL_API": false, "BT_LOG_APPL_TRACE_LEVEL_EVENT": false, "BT_LOG_APPL_TRACE_LEVEL_DEBUG": false, "BT_LOG_APPL_TRACE_LEVEL_VERBOSE": false, "BT_LOG_APPL_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gatt-layer": false, "BT_LOG_GATT_TRACE_LEVEL_NONE": false, "BT_LOG_GATT_TRACE_LEVEL_ERROR": false, "BT_LOG_GATT_TRACE_LEVEL_WARNING": false, "BT_LOG_GATT_TRACE_LEVEL_API": false, "BT_LOG_GATT_TRACE_LEVEL_EVENT": false, "BT_LOG_GATT_TRACE_LEVEL_DEBUG": false, "BT_LOG_GATT_TRACE_LEVEL_VERBOSE": false, "BT_LOG_GATT_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-smp-layer": false, "BT_LOG_SMP_TRACE_LEVEL_NONE": false, "BT_LOG_SMP_TRACE_LEVEL_ERROR": false, "BT_LOG_SMP_TRACE_LEVEL_WARNING": false, "BT_LOG_SMP_TRACE_LEVEL_API": false, "BT_LOG_SMP_TRACE_LEVEL_EVENT": false, "BT_LOG_SMP_TRACE_LEVEL_DEBUG": false, "BT_LOG_SMP_TRACE_LEVEL_VERBOSE": false, "BT_LOG_SMP_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btif-layer": false, "BT_LOG_BTIF_TRACE_LEVEL_NONE": false, "BT_LOG_BTIF_TRACE_LEVEL_ERROR": false, "BT_LOG_BTIF_TRACE_LEVEL_WARNING": false, "BT_LOG_BTIF_TRACE_LEVEL_API": false, "BT_LOG_BTIF_TRACE_LEVEL_EVENT": false, "BT_LOG_BTIF_TRACE_LEVEL_DEBUG": false, "BT_LOG_BTIF_TRACE_LEVEL_VERBOSE": false, "BT_LOG_BTIF_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btc-layer": false, "BT_LOG_BTC_TRACE_LEVEL_NONE": false, "BT_LOG_BTC_TRACE_LEVEL_ERROR": false, "BT_LOG_BTC_TRACE_LEVEL_WARNING": false, "BT_LOG_BTC_TRACE_LEVEL_API": false, "BT_LOG_BTC_TRACE_LEVEL_EVENT": false, "BT_LOG_BTC_TRACE_LEVEL_DEBUG": false, "BT_LOG_BTC_TRACE_LEVEL_VERBOSE": false, "BT_LOG_BTC_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-osi-layer": false, "BT_LOG_OSI_TRACE_LEVEL_NONE": false, "BT_LOG_OSI_TRACE_LEVEL_ERROR": false, "BT_LOG_OSI_TRACE_LEVEL_WARNING": false, "BT_LOG_OSI_TRACE_LEVEL_API": false, "BT_LOG_OSI_TRACE_LEVEL_EVENT": false, "BT_LOG_OSI_TRACE_LEVEL_DEBUG": false, "BT_LOG_OSI_TRACE_LEVEL_VERBOSE": false, "BT_LOG_OSI_TRACE_LEVEL": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level-blufi-layer": false, "BT_LOG_BLUFI_TRACE_LEVEL_NONE": false, "BT_LOG_BLUFI_TRACE_LEVEL_ERROR": false, "BT_LOG_BLUFI_TRACE_LEVEL_WARNING": false, "BT_LOG_BLUFI_TRACE_LEVEL_API": false, "BT_LOG_BLUFI_TRACE_LEVEL_EVENT": false, "BT_LOG_BLUFI_TRACE_LEVEL_DEBUG": false, "BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE": false, "BT_LOG_BLUFI_TRACE_LEVEL": false, "BT_ACL_CONNECTIONS": false, "BT_MULTI_CONNECTION_ENBALE": false, "BT_ALLOCATION_FROM_SPIRAM_FIRST": false, "BT_BLE_DYNAMIC_ENV_MEMORY": false, "BT_BLE_HOST_QUEUE_CONG_CHECK": false, "BT_SMP_ENABLE": false, "BT_SMP_MAX_BONDS": false, "BT_BLE_ACT_SCAN_REP_ADV_SCAN": false, "BT_BLE_ESTAB_LINK_CONN_TOUT": false, "BT_MAX_DEVICE_NAME_LEN": false, "BT_BLE_RPA_SUPPORTED": false, "BT_BLE_RPA_TIMEOUT": false, "BT_BLE_50_FEATURES_SUPPORTED": false, "BT_BLE_42_FEATURES_SUPPORTED": false, "BT_BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER": false, "BT_BLE_FEAT_PERIODIC_ADV_ENH": false, "BT_BLE_FEAT_CREATE_SYNC_ENH": false, "BT_BLE_HIGH_DUTY_ADV_INTERVAL": false, "component-config-bluetooth-nimble-options-memory-allocation-strategy": false, "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL": false, "BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL": false, "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT": false, "BT_NIMBLE_MEM_ALLOC_MODE_IRAM_8BIT": false, "component-config-bluetooth-nimble-options-nimble-host-log-verbosity": false, "BT_NIMBLE_LOG_LEVEL_NONE": false, "BT_NIMBLE_LOG_LEVEL_ERROR": false, "BT_NIMBLE_LOG_LEVEL_WARNING": false, "BT_NIMBLE_LOG_LEVEL_INFO": false, "BT_NIMBLE_LOG_LEVEL_DEBUG": false, "BT_NIMBLE_LOG_LEVEL": false, "BT_NIMBLE_MAX_CONNECTIONS": false, "BT_NIMBLE_MAX_BONDS": false, "BT_NIMBLE_MAX_CCCDS": false, "BT_NIMBLE_L2CAP_COC_MAX_NUM": false, "component-config-bluetooth-nimble-options-the-cpu-core-on-which-nimble-host-will-run": false, "BT_NIMBLE_PINNED_TO_CORE_0": false, "BT_NIMBLE_PINNED_TO_CORE_1": false, "BT_NIMBLE_PINNED_TO_CORE": false, "BT_NIMBLE_HOST_TASK_STACK_SIZE": false, "BT_NIMBLE_ROLE_CENTRAL": false, "BT_NIMBLE_ROLE_PERIPHERAL": false, "BT_NIMBLE_ROLE_BROADCASTER": false, "BT_NIMBLE_ROLE_OBSERVER": false, "BT_NIMBLE_NVS_PERSIST": false, "BT_NIMBLE_SECURITY_ENABLE": false, "BT_NIMBLE_SM_LEGACY": false, "BT_NIMBLE_SM_SC": false, "BT_NIMBLE_SM_SC_DEBUG_KEYS": false, "BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION": false, "BT_NIMBLE_SM_SC_LVL": false, "BT_NIMBLE_DEBUG": false, "BT_NIMBLE_DYNAMIC_SERVICE": false, "BT_NIMBLE_SVC_GAP_DEVICE_NAME": false, "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN": false, "BT_NIMBLE_ATT_PREFERRED_MTU": false, "BT_NIMBLE_SVC_GAP_APPEARANCE": false, "BT_NIMBLE_MSYS_1_BLOCK_COUNT": false, "BT_NIMBLE_MSYS_1_BLOCK_SIZE": false, "BT_NIMBLE_MSYS_2_BLOCK_COUNT": false, "BT_NIMBLE_MSYS_2_BLOCK_SIZE": false, "BT_NIMBLE_MSYS_BUF_FROM_HEAP": false, "BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT": false, "BT_NIMBLE_TRANSPORT_ACL_SIZE": false, "BT_NIMBLE_TRANSPORT_EVT_SIZE": false, "BT_NIMBLE_TRANSPORT_EVT_COUNT": false, "BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT": false, "BT_NIMBLE_GATT_MAX_PROCS": false, "BT_NIMBLE_HS_FLOW_CTRL": false, "BT_NIMBLE_HS_FLOW_CTRL_ITVL": false, "BT_NIMBLE_HS_FLOW_CTRL_THRESH": false, "BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT": false, "BT_NIMBLE_RPA_TIMEOUT": false, "BT_NIMBLE_MESH": false, "BT_NIMBLE_MESH_PROXY": false, "BT_NIMBLE_MESH_PROV": false, "BT_NIMBLE_MESH_PB_ADV": false, "BT_NIMBLE_MESH_PB_GATT": false, "BT_NIMBLE_MESH_GATT_PROXY": false, "BT_NIMBLE_MESH_RELAY": false, "BT_NIMBLE_MESH_LOW_POWER": false, "BT_NIMBLE_MESH_FRIEND": false, "BT_NIMBLE_MESH_DEVICE_NAME": false, "BT_NIMBLE_MESH_NODE_COUNT": false, "BT_NIMBLE_MESH_PROVISIONER": false, "BT_NIMBLE_CRYPTO_STACK_MBEDTLS": false, "BT_NIMBLE_HS_STOP_TIMEOUT_MS": false, "BT_NIMBLE_HOST_BASED_PRIVACY": false, "BT_NIMBLE_ENABLE_CONN_REATTEMPT": false, "BT_NIMBLE_MAX_CONN_REATTEMPT": false, "BT_NIMBLE_50_FEATURE_SUPPORT": false, "BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY": false, "BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY": false, "BT_NIMBLE_EXT_ADV": false, "BT_NIMBLE_MAX_EXT_ADV_INSTANCES": false, "BT_NIMBLE_EXT_ADV_MAX_SIZE": false, "BT_NIMBLE_ENABLE_PERIODIC_ADV": false, "BT_NIMBLE_PERIODIC_ADV_SYNC_TRANSFER": false, "BT_NIMBLE_MAX_PERIODIC_SYNCS": false, "BT_NIMBLE_MAX_PERIODIC_ADVERTISER_LIST": false, "BT_NIMBLE_BLE_POWER_CONTROL": false, "BT_NIMBLE_PERIODIC_ADV_ENH": false, "BT_NIMBLE_GATT_CACHING": false, "BT_NIMBLE_GATT_CACHING_MAX_CONNS": false, "BT_NIMBLE_GATT_CACHING_MAX_SVCS": false, "BT_NIMBLE_GATT_CACHING_MAX_CHRS": false, "BT_NIMBLE_GATT_CACHING_MAX_DSCS": false, "BT_NIMBLE_WHITELIST_SIZE": false, "BT_NIMBLE_TEST_THROUGHPUT_TEST": false, "BT_NIMBLE_BLUFI_ENABLE": false, "BT_NIMBLE_USE_ESP_TIMER": false, "BT_NIMBLE_LEGACY_VHCI_ENABLE": false, "BT_NIMBLE_BLE_GATT_BLOB_TRANSFER": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_ENC": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHEN": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHOR": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN": false, "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR": false, "component-config-bluetooth-nimble-options-gap-service-gap-characteristic-central-address-resolution": false, "BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP": false, "BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP": false, "BT_NIMBLE_SVC_GAP_CAR_SUPP": false, "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_ENC": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHEN": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHOR": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN": false, "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR": false, "BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL": false, "BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL": false, "BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY": false, "BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO": false, "BT_NIMBLE_HID_SERVICE": false, "BT_NIMBLE_SVC_HID_MAX_INSTANCES": false, "BT_NIMBLE_SVC_HID_MAX_RPTS": false, "BT_NIMBLE_VS_SUPPORT": false, "BT_NIMBLE_OPTIMIZE_MULTI_CONN": false, "BT_NIMBLE_ENC_ADV_DATA": false, "BT_NIMBLE_MAX_EADS": false, "BT_NIMBLE_HIGH_DUTY_ADV_ITVL": false, "BT_NIMBLE_HOST_QUEUE_CONG_CHECK": false, "BT_NIMBLE_TRANSPORT_UART": false, "BT_NIMBLE_TRANSPORT_UART_PORT": false, "component-config-bluetooth-nimble-options-host-controller-transport-enable-uart-transport-uart-hci-baud-rate": false, "UART_BAUDRATE_115200": false, "UART_BAUDRATE_230400": false, "UART_BAUDRATE_460800": false, "UART_BAUDRATE_921600": false, "BT_NIMBLE_HCI_UART_BAUDRATE": false, "component-config-bluetooth-nimble-options-host-controller-transport-enable-uart-transport-uart-parity": false, "UART_PARITY_NONE": false, "UART_PARITY_ODD": false, "UART_PARITY_EVEN": false, "BT_NIMBLE_TRANSPORT_UART_PARITY_NONE": false, "BT_NIMBLE_TRANSPORT_UART_PARITY_ODD": false, "BT_NIMBLE_TRANSPORT_UART_PARITY_EVEN": false, "BT_NIMBLE_UART_RX_PIN": false, "BT_NIMBLE_UART_TX_PIN": false, "component-config-bluetooth-nimble-options-host-controller-transport-uart-flow-control": false, "UART_HW_FLOWCTRL_DISABLE": false, "UART_HW_FLOWCTRL_CTS_RTS": false, "BT_NIMBLE_HCI_UART_FLOW_CTRL": false, "BT_NIMBLE_HCI_UART_RTS_PIN": false, "BT_NIMBLE_HCI_UART_CTS_PIN": false, "component-config-bluetooth-controller-options-bluetooth-controller-mode-br-edr-ble-dualmode-": false, "BTDM_CTRL_MODE_BLE_ONLY": false, "BTDM_CTRL_MODE_BR_EDR_ONLY": false, "BTDM_CTRL_MODE_BTDM": false, "BTDM_CTRL_BLE_MAX_CONN": false, "BTDM_CTRL_BR_EDR_MAX_ACL_CONN": false, "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN": false, "component-config-bluetooth-controller-options-br-edr-sync-sco-esco-default-data-path": false, "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_HCI": false, "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_PCM": false, "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF": false, "BTDM_CTRL_PCM_ROLE_EDGE_CONFIG": false, "component-config-bluetooth-controller-options-pcm-signal-config-role-and-polar--pcm-role": false, "BTDM_CTRL_PCM_ROLE_MASTER": false, "BTDM_CTRL_PCM_ROLE_SLAVE": false, "component-config-bluetooth-controller-options-pcm-signal-config-role-and-polar--pcm-polar": false, "BTDM_CTRL_PCM_POLAR_FALLING_EDGE": false, "BTDM_CTRL_PCM_POLAR_RISING_EDGE": false, "BTDM_CTRL_PCM_ROLE_EFF": false, "BTDM_CTRL_PCM_POLAR_EFF": false, "BTDM_CTRL_AUTO_LATENCY": false, "BTDM_CTRL_AUTO_LATENCY_EFF": false, "BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT": false, "BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT_EFF": false, "BTDM_CTRL_BLE_MAX_CONN_EFF": false, "BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF": false, "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF": false, "component-config-bluetooth-controller-options-the-cpu-core-which-bluetooth-controller-run": false, "BTDM_CTRL_PINNED_TO_CORE_0": false, "BTDM_CTRL_PINNED_TO_CORE_1": false, "BTDM_CTRL_PINNED_TO_CORE": false, "component-config-bluetooth-controller-options-hci-mode": false, "BTDM_CTRL_HCI_MODE_VHCI": false, "BTDM_CTRL_HCI_MODE_UART_H4": false, "BTDM_CTRL_HCI_UART_NO": false, "BTDM_CTRL_HCI_UART_BAUDRATE": false, "BTDM_CTRL_HCI_UART_FLOW_CTRL_EN": false, "BTDM_CTRL_MODEM_SLEEP": false, "component-config-bluetooth-controller-options-modem-sleep-options-bluetooth-modem-sleep-bluetooth-modem-sleep-mode": false, "BTDM_CTRL_MODEM_SLEEP_MODE_ORIG": false, "BTDM_CTRL_MODEM_SLEEP_MODE_EVED": false, "component-config-bluetooth-controller-options-modem-sleep-options-bluetooth-low-power-clock": false, "BTDM_CTRL_LPCLK_SEL_MAIN_XTAL": false, "BTDM_CTRL_LPCLK_SEL_EXT_32K_XTAL": false, "component-config-bluetooth-controller-options-ble-sleep-clock-accuracy": false, "BTDM_BLE_DEFAULT_SCA_500PPM": false, "BTDM_BLE_DEFAULT_SCA_250PPM": false, "BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF": false, "BTDM_BLE_SCAN_DUPL": false, "component-config-bluetooth-controller-options-ble-scan-duplicate-options-scan-duplicate-type": false, "BTDM_SCAN_DUPL_TYPE_DEVICE": false, "BTDM_SCAN_DUPL_TYPE_DATA": false, "BTDM_SCAN_DUPL_TYPE_DATA_DEVICE": false, "BTDM_SCAN_DUPL_TYPE": false, "BTDM_SCAN_DUPL_CACHE_SIZE": false, "BTDM_SCAN_DUPL_CACHE_REFRESH_PERIOD": false, "BTDM_BLE_MESH_SCAN_DUPL_EN": false, "BTDM_MESH_DUPL_SCAN_CACHE_SIZE": false, "BTDM_CTRL_FULL_SCAN_SUPPORTED": false, "BTDM_CTRL_SCAN_BACKOFF_UPPERLIMITMAX": false, "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP": false, "BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM": false, "BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD": false, "BTDM_RESERVE_DRAM": false, "BTDM_CTRL_HLI": false, "BT_RELEASE_IRAM": false, "BT_HCI_LOG_DEBUG_EN": false, "BT_HCI_LOG_DATA_BUFFER_SIZE": false, "BT_HCI_LOG_ADV_BUFFER_SIZE": false, "BT_ALARM_MAX_NUM": false, "BLE_MESH": false, "BLE_MESH_HCI_5_0": false, "BLE_MESH_RANDOM_ADV_INTERVAL": false, "BLE_MESH_USE_DUPLICATE_SCAN": false, "BLE_MESH_ACTIVE_SCAN": false, "component-config-esp-ble-mesh-support-memory-allocation-strategy": false, "BLE_MESH_MEM_ALLOC_MODE_INTERNAL": false, "BLE_MESH_MEM_ALLOC_MODE_EXTERNAL": false, "BLE_MESH_MEM_ALLOC_MODE_DEFAULT": false, "BLE_MESH_MEM_ALLOC_MODE_IRAM_8BIT": false, "BLE_MESH_FREERTOS_STATIC_ALLOC": false, "component-config-esp-ble-mesh-support-enable-freertos-static-allocation-memory-allocation-for-freertos-objects": false, "BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL": false, "BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT": false, "BLE_MESH_DEINIT": false, "BLE_MESH_SUPPORT_BLE_ADV": false, "BLE_MESH_BLE_ADV_BUF_COUNT": false, "BLE_MESH_SUPPORT_BLE_SCAN": false, "BLE_MESH_FAST_PROV": false, "BLE_MESH_NODE": false, "BLE_MESH_PROVISIONER": false, "BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM": false, "BLE_MESH_MAX_PROV_NODES": false, "BLE_MESH_PBA_SAME_TIME": false, "BLE_MESH_PBG_SAME_TIME": false, "BLE_MESH_PROVISIONER_SUBNET_COUNT": false, "BLE_MESH_PROVISIONER_APP_KEY_COUNT": false, "BLE_MESH_PROVISIONER_RECV_HB": false, "BLE_MESH_PROVISIONER_RECV_HB_FILTER_SIZE": false, "BLE_MESH_PROV": false, "BLE_MESH_PROV_EPA": false, "BLE_MESH_CERT_BASED_PROV": false, "BLE_MESH_RECORD_FRAG_MAX_SIZE": false, "BLE_MESH_PB_ADV": false, "BLE_MESH_UNPROVISIONED_BEACON_INTERVAL": false, "BLE_MESH_PB_GATT": false, "BLE_MESH_PROXY": false, "BLE_MESH_GATT_PROXY_SERVER": false, "BLE_MESH_NODE_ID_TIMEOUT": false, "BLE_MESH_PROXY_FILTER_SIZE": false, "BLE_MESH_PROXY_PRIVACY": false, "BLE_MESH_PROXY_SOLIC_PDU_RX": false, "BLE_MESH_PROXY_SOLIC_RX_CRPL": false, "BLE_MESH_GATT_PROXY_CLIENT": false, "BLE_MESH_PROXY_SOLIC_PDU_TX": false, "BLE_MESH_PROXY_SOLIC_TX_SRC_COUNT": false, "BLE_MESH_NET_BUF_POOL_USAGE": false, "BLE_MESH_SETTINGS": false, "BLE_MESH_STORE_TIMEOUT": false, "BLE_MESH_SEQ_STORE_RATE": false, "BLE_MESH_RPL_STORE_TIMEOUT": false, "BLE_MESH_SETTINGS_BACKWARD_COMPATIBILITY": false, "BLE_MESH_SPECIFIC_PARTITION": false, "BLE_MESH_PARTITION_NAME": false, "BLE_MESH_USE_MULTIPLE_NAMESPACE": false, "BLE_MESH_MAX_NVS_NAMESPACE": false, "BLE_MESH_SUBNET_COUNT": false, "BLE_MESH_APP_KEY_COUNT": false, "BLE_MESH_MODEL_KEY_COUNT": false, "BLE_MESH_MODEL_GROUP_COUNT": false, "BLE_MESH_LABEL_COUNT": false, "BLE_MESH_CRPL": false, "BLE_MESH_NOT_RELAY_REPLAY_MSG": false, "BLE_MESH_MSG_CACHE_SIZE": false, "BLE_MESH_ADV_BUF_COUNT": false, "BLE_MESH_IVU_DIVIDER": false, "BLE_MESH_IVU_RECOVERY_IVI": false, "BLE_MESH_SAR_ENHANCEMENT": false, "BLE_MESH_TX_SEG_MSG_COUNT": false, "BLE_MESH_RX_SEG_MSG_COUNT": false, "BLE_MESH_RX_SDU_MAX": false, "BLE_MESH_TX_SEG_MAX": false, "BLE_MESH_RELAY": false, "BLE_MESH_RELAY_ADV_BUF": false, "BLE_MESH_RELAY_ADV_BUF_COUNT": false, "BLE_MESH_LOW_POWER": false, "BLE_MESH_LPN_ESTABLISHMENT": false, "BLE_MESH_LPN_AUTO": false, "BLE_MESH_LPN_AUTO_TIMEOUT": false, "BLE_MESH_LPN_RETRY_TIMEOUT": false, "BLE_MESH_LPN_RSSI_FACTOR": false, "BLE_MESH_LPN_RECV_WIN_FACTOR": false, "BLE_MESH_LPN_MIN_QUEUE_SIZE": false, "BLE_MESH_LPN_RECV_DELAY": false, "BLE_MESH_LPN_POLL_TIMEOUT": false, "BLE_MESH_LPN_INIT_POLL_TIMEOUT": false, "BLE_MESH_LPN_SCAN_LATENCY": false, "BLE_MESH_LPN_GROUPS": false, "BLE_MESH_LPN_SUB_ALL_NODES_ADDR": false, "BLE_MESH_FRIEND": false, "BLE_MESH_FRIEND_RECV_WIN": false, "BLE_MESH_FRIEND_QUEUE_SIZE": false, "BLE_MESH_FRIEND_SUB_LIST_SIZE": false, "BLE_MESH_FRIEND_LPN_COUNT": false, "BLE_MESH_FRIEND_SEG_RX": false, "BLE_MESH_NO_LOG": false, "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level-ble_mesh_stack": false, "BLE_MESH_TRACE_LEVEL_NONE": false, "BLE_MESH_TRACE_LEVEL_ERROR": false, "BLE_MESH_TRACE_LEVEL_WARNING": false, "BLE_MESH_TRACE_LEVEL_INFO": false, "BLE_MESH_TRACE_LEVEL_DEBUG": false, "BLE_MESH_TRACE_LEVEL_VERBOSE": false, "BLE_MESH_STACK_TRACE_LEVEL": false, "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level-ble_mesh_net_buf": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_NONE": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_INFO": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG": false, "BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE": false, "BLE_MESH_NET_BUF_TRACE_LEVEL": false, "BLE_MESH_CLIENT_MSG_TIMEOUT": false, "BLE_MESH_CFG_CLI": false, "BLE_MESH_HEALTH_CLI": false, "BLE_MESH_HEALTH_SRV": false, "BLE_MESH_BRC_CLI": false, "BLE_MESH_BRC_SRV": false, "BLE_MESH_MAX_BRIDGING_TABLE_ENTRY_COUNT": false, "BLE_MESH_BRIDGE_CRPL": false, "BLE_MESH_PRB_CLI": false, "BLE_MESH_PRB_SRV": false, "BLE_MESH_ODP_CLI": false, "BLE_MESH_ODP_SRV": false, "BLE_MESH_SRPL_CLI": false, "BLE_MESH_SRPL_SRV": false, "BLE_MESH_AGG_CLI": false, "BLE_MESH_AGG_SRV": false, "BLE_MESH_SAR_CLI": false, "BLE_MESH_SAR_SRV": false, "BLE_MESH_COMP_DATA_1": false, "BLE_MESH_COMP_DATA_128": false, "BLE_MESH_MODELS_METADATA_0": false, "BLE_MESH_MODELS_METADATA_128": false, "BLE_MESH_LCD_CLI": false, "BLE_MESH_LCD_SRV": false, "BLE_MESH_RPR_CLI": false, "BLE_MESH_RPR_CLI_PROV_SAME_TIME": false, "BLE_MESH_RPR_SRV": false, "BLE_MESH_RPR_SRV_MAX_SCANNED_ITEMS": false, "BLE_MESH_RPR_SRV_ACTIVE_SCAN": false, "BLE_MESH_RPR_SRV_MAX_EXT_SCAN": false, "BLE_MESH_DF_CLI": false, "BLE_MESH_DF_SRV": false, "BLE_MESH_MAX_DISC_TABLE_ENTRY_COUNT": false, "BLE_MESH_MAX_FORWARD_TABLE_ENTRY_COUNT": false, "BLE_MESH_MAX_DEPS_NODES_PER_PATH": false, "BLE_MESH_PATH_MONITOR_TEST": false, "BLE_MESH_SUPPORT_DIRECTED_PROXY": false, "BLE_MESH_GENERIC_ONOFF_CLI": false, "BLE_MESH_GENERIC_LEVEL_CLI": false, "BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI": false, "BLE_MESH_GENERIC_POWER_ONOFF_CLI": false, "BLE_MESH_GENERIC_POWER_LEVEL_CLI": false, "BLE_MESH_GENERIC_BATTERY_CLI": false, "BLE_MESH_GENERIC_LOCATION_CLI": false, "BLE_MESH_GENERIC_PROPERTY_CLI": false, "BLE_MESH_SENSOR_CLI": false, "BLE_MESH_TIME_CLI": false, "BLE_MESH_SCENE_CLI": false, "BLE_MESH_SCHEDULER_CLI": false, "BLE_MESH_LIGHT_LIGHTNESS_CLI": false, "BLE_MESH_LIGHT_CTL_CLI": false, "BLE_MESH_LIGHT_HSL_CLI": false, "BLE_MESH_LIGHT_XYL_CLI": false, "BLE_MESH_LIGHT_LC_CLI": false, "BLE_MESH_GENERIC_SERVER": false, "BLE_MESH_SENSOR_SERVER": false, "BLE_MESH_TIME_SCENE_SERVER": false, "BLE_MESH_LIGHTING_SERVER": false, "BLE_MESH_MBT_CLI": false, "BLE_MESH_MAX_BLOB_RECEIVERS": false, "BLE_MESH_MBT_SRV": false, "BLE_MESH_IV_UPDATE_TEST": false, "BLE_MESH_DISCARD_OLD_SEQ_AUTH": false, "BLE_MESH_SELF_TEST": false, "BLE_MESH_BQB_TEST": false, "BLE_MESH_BQB_TEST_LOG": false, "BLE_MESH_TEST_AUTO_ENTER_NETWORK": false, "BLE_MESH_TEST_USE_WHITE_LIST": false, "BLE_MESH_SHELL": false, "BLE_MESH_DEBUG": false, "BLE_MESH_DEBUG_NET": false, "BLE_MESH_DEBUG_TRANS": false, "BLE_MESH_DEBUG_BEACON": false, "BLE_MESH_DEBUG_CRYPTO": false, "BLE_MESH_DEBUG_PROV": false, "BLE_MESH_DEBUG_ACCESS": false, "BLE_MESH_DEBUG_MODEL": false, "BLE_MESH_DEBUG_ADV": false, "BLE_MESH_DEBUG_LOW_POWER": false, "BLE_MESH_DEBUG_FRIEND": false, "BLE_MESH_DEBUG_PROXY": false, "BLE_MESH_EXPERIMENTAL": false, "ADC_DISABLE_DAC": true, "ADC_SUPPRESS_DEPRECATE_WARN": true, "ADC_CAL_EFUSE_TP_ENABLE": true, "ADC_CAL_EFUSE_VREF_ENABLE": true, "ADC_CAL_LUT_ENABLE": true, "ADC_CALI_SUPPRESS_DEPRECATE_WARN": true, "SPI_MASTER_IN_IRAM": true, "SPI_MASTER_ISR_IN_IRAM": true, "SPI_SLAVE_IN_IRAM": true, "SPI_SLAVE_ISR_IN_IRAM": true, "TWAI_ISR_IN_IRAM": true, "TWAI_ERRATA_FIX_BUS_OFF_REC": true, "TWAI_ERRATA_FIX_TX_INTR_LOST": true, "TWAI_ERRATA_FIX_RX_FRAME_INVALID": true, "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT": true, "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM": true, "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN": false, "TEMP_SENSOR_ENABLE_DEBUG_LOG": false, "TEMP_SENSOR_ISR_IRAM_SAFE": false, "UART_ISR_IN_IRAM": true, "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL": true, "GPIO_CTRL_FUNC_IN_IRAM": true, "SDM_CTRL_FUNC_IN_IRAM": true, "SDM_SUPPRESS_DEPRECATE_WARN": true, "SDM_ENABLE_DEBUG_LOG": true, "ANA_CMPR_ISR_IRAM_SAFE": false, "ANA_CMPR_CTRL_FUNC_IN_IRAM": false, "ANA_CMPR_ENABLE_DEBUG_LOG": false, "GPTIMER_ISR_HANDLER_IN_IRAM": true, "GPTIMER_CTRL_FUNC_IN_IRAM": true, "GPTIMER_ISR_IRAM_SAFE": true, "GPTIMER_SUPPRESS_DEPRECATE_WARN": true, "GPTIMER_ENABLE_DEBUG_LOG": true, "PCNT_CTRL_FUNC_IN_IRAM": true, "PCNT_ISR_IRAM_SAFE": true, "PCNT_SUPPRESS_DEPRECATE_WARN": true, "PCNT_ENABLE_DEBUG_LOG": true, "RMT_ISR_IRAM_SAFE": true, "RMT_RECV_FUNC_IN_IRAM": true, "RMT_SUPPRESS_DEPRECATE_WARN": true, "RMT_ENABLE_DEBUG_LOG": true, "MCPWM_ISR_IRAM_SAFE": true, "MCPWM_CTRL_FUNC_IN_IRAM": true, "MCPWM_SUPPRESS_DEPRECATE_WARN": true, "MCPWM_ENABLE_DEBUG_LOG": true, "I2S_ISR_IRAM_SAFE": true, "I2S_SUPPRESS_DEPRECATE_WARN": true, "I2S_ENABLE_DEBUG_LOG": true, "DAC_CTRL_FUNC_IN_IRAM": true, "DAC_ISR_IRAM_SAFE": true, "DAC_SUPPRESS_DEPRECATE_WARN": true, "DAC_ENABLE_DEBUG_LOG": true, "DAC_DMA_AUTO_16BIT_ALIGN": true, "USJ_NO_AUTO_LS_ON_CONNECTION": false, "PARLIO_ENABLE_DEBUG_LOG": false, "PARLIO_ISR_IRAM_SAFE": false, "LEDC_CTRL_FUNC_IN_IRAM": true, "I2C_ISR_IRAM_SAFE": true, "I2C_ENABLE_DEBUG_LOG": true, "EFUSE_CUSTOM_TABLE": true, "EFUSE_CUSTOM_TABLE_FILENAME": false, "EFUSE_VIRTUAL": true, "EFUSE_VIRTUAL_KEEP_IN_FLASH": false, "EFUSE_VIRTUAL_LOG_ALL_WRITES": false, "component-config-efuse-bit-manager-coding-scheme-compatibility": true, "EFUSE_CODE_SCHEME_COMPAT_NONE": true, "EFUSE_CODE_SCHEME_COMPAT_3_4": true, "EFUSE_CODE_SCHEME_COMPAT_REPEAT": true, "EFUSE_MAX_BLK_LEN": false, "component-config-esp-tls-choose-ssl-tls-library-for-esp-tls-see-help-for-more-info-": true, "ESP_TLS_USING_MBEDTLS": true, "ESP_TLS_USING_WOLFSSL": false, "ESP_TLS_USE_SECURE_ELEMENT": true, "ESP_TLS_USE_DS_PERIPHERAL": false, "ESP_TLS_CLIENT_SESSION_TICKETS": true, "ESP_TLS_SERVER": true, "ESP_TLS_SERVER_SESSION_TICKETS": false, "ESP_TLS_SERVER_SESSION_TICKET_TIMEOUT": false, "ESP_TLS_SERVER_CERT_SELECT_HOOK": false, "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL": false, "ESP_TLS_PSK_VERIFICATION": true, "ESP_TLS_INSECURE": true, "ESP_TLS_SKIP_SERVER_CERT_VERIFY": false, "ESP_WOLFSSL_SMALL_CERT_VERIFY": false, "ESP_DEBUG_WOLFSSL": false, "ADC_ONESHOT_CTRL_FUNC_IN_IRAM": true, "ADC_CONTINUOUS_ISR_IRAM_SAFE": true, "ADC_CALI_EFUSE_TP_ENABLE": true, "ADC_CALI_EFUSE_VREF_ENABLE": true, "ADC_CALI_LUT_ENABLE": true, "ADC_DISABLE_DAC_OUTPUT": true, "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3": false, "ADC_ONESHOT_FORCE_USE_ADC2_ON_C3": false, "ESP_COEX_SW_COEXIST_ENABLE": false, "ESP_COEX_EXTERNAL_COEXIST_ENABLE": false, "ESP_ERR_TO_NAME_LOOKUP": true, "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY": false, "ETH_ENABLED": false, "ETH_USE_ESP32_EMAC": true, "component-config-ethernet-support-esp32-internal-emac-controller-phy-interface": true, "ETH_PHY_INTERFACE_RMII": true, "component-config-ethernet-support-esp32-internal-emac-controller-rmii-clock-mode": true, "ETH_RMII_CLK_INPUT": true, "ETH_RMII_CLK_OUTPUT": true, "ETH_RMII_CLK_IN_GPIO": false, "ETH_RMII_CLK_OUTPUT_GPIO0": false, "ETH_RMII_CLK_OUT_GPIO": false, "ETH_DMA_BUFFER_SIZE": true, "ETH_DMA_RX_BUFFER_NUM": true, "ETH_DMA_TX_BUFFER_NUM": true, "ETH_SOFT_FLOW_CONTROL": false, "ETH_IRAM_OPTIMIZATION": true, "ETH_USE_SPI_ETHERNET": true, "ETH_SPI_ETHERNET_DM9051": true, "ETH_SPI_ETHERNET_W5500": true, "ETH_SPI_ETHERNET_KSZ8851SNL": true, "ETH_USE_OPENETH": true, "ETH_OPENETH_DMA_RX_BUFFER_NUM": false, "ETH_OPENETH_DMA_TX_BUFFER_NUM": false, "ETH_TRANSMIT_MUTEX": true, "ESP_EVENT_LOOP_PROFILING": true, "ESP_EVENT_POST_FROM_ISR": true, "ESP_EVENT_POST_FROM_IRAM_ISR": true, "ESP_GDBSTUB_ENABLED": false, "ESP_SYSTEM_GDBSTUB_RUNTIME": true, "ESP_GDBSTUB_SUPPORT_TASKS": true, "ESP_GDBSTUB_MAX_TASKS": true, "ESP_HTTP_CLIENT_ENABLE_HTTPS": true, "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH": true, "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH": true, "HTTPD_MAX_REQ_HDR_LEN": true, "HTTPD_MAX_URI_LEN": true, "HTTPD_ERR_RESP_NO_DELAY": true, "HTTPD_PURGE_BUF_LEN": true, "HTTPD_LOG_PURGE_DATA": true, "HTTPD_WS_SUPPORT": true, "HTTPD_QUEUE_WORK_BLOCKING": true, "ESP_HTTPS_OTA_DECRYPT_CB": true, "ESP_HTTPS_OTA_ALLOW_HTTP": true, "ESP_HTTPS_SERVER_ENABLE": true, "component-config-hardware-settings-chip-revision-minimum-supported-esp32-revision": true, "ESP32_REV_MIN_0": true, "ESP32_REV_MIN_1": true, "ESP32_REV_MIN_1_1": true, "ESP32_REV_MIN_2": true, "ESP32_REV_MIN_3": true, "ESP32_REV_MIN_3_1": true, "ESP32_REV_MIN": false, "ESP32_REV_MIN_FULL": false, "ESP_REV_MIN_FULL": false, "ESP32_REV_MAX_FULL": false, "ESP_REV_MAX_FULL": false, "ESP_REV_NEW_CHIP_TEST": false, "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": false, "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": false, "ESP_MAC_ADDR_UNIVERSE_BT": false, "ESP_MAC_ADDR_UNIVERSE_ETH": false, "ESP_MAC_ADDR_UNIVERSE_IEEE802154": false, "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE": false, "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO": false, "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": false, "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address": true, "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": true, "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true, "ESP32_UNIVERSAL_MAC_ADDRESSES": false, "ESP_MAC_IGNORE_MAC_CRC_ERROR": true, "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": true, "ESP_SLEEP_POWER_DOWN_FLASH": true, "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND": false, "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": true, "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": false, "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": true, "ESP_SLEEP_CACHE_SAFE_ASSERTION": true, "ESP_SLEEP_DEBUG": true, "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, "ESP_SLEEP_EVENT_CALLBACKS": false, "ESP_SLEEP_SYSTIMER_STALL_WORKAROUND": false, "component-config-hardware-settings-rtc-clock-config-rtc-clock-source": true, "RTC_CLK_SRC_INT_RC": true, "RTC_CLK_SRC_EXT_CRYS": true, "RTC_CLK_SRC_EXT_OSC": true, "RTC_CLK_SRC_INT_8MD256": true, "component-config-hardware-settings-rtc-clock-config-additional-current-for-external-32khz-crystal": false, "RTC_EXT_CRYST_ADDIT_CURRENT_NONE": false, "RTC_EXT_CRYST_ADDIT_CURRENT": false, "RTC_EXT_CRYST_ADDIT_CURRENT_V2": false, "RTC_CLK_CAL_CYCLES": true, "RTC_XTAL_CAL_RETRY": false, "PERIPH_CTRL_FUNC_IN_IRAM": true, "ETM_ENABLE_DEBUG_LOG": false, "GDMA_CTRL_FUNC_IN_IRAM": false, "GDMA_ISR_IRAM_SAFE": false, "GDMA_ENABLE_DEBUG_LOG": false, "component-config-hardware-settings-main-xtal-config-main-xtal-frequency": true, "XTAL_FREQ_24": false, "XTAL_FREQ_26": true, "XTAL_FREQ_32": false, "XTAL_FREQ_40": true, "XTAL_FREQ_AUTO": true, "XTAL_FREQ": false, "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP": false, "component-config-hardware-settings-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level": false, "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW": false, "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM": false, "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH": false, "ESP_CRYPTO_DPA_PROTECTION_LEVEL": false, "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING": false, "LCD_PANEL_IO_FORMAT_BUF_SIZE": true, "LCD_ENABLE_DEBUG_LOG": true, "LCD_RGB_ISR_IRAM_SAFE": false, "LCD_RGB_RESTART_IN_VSYNC": false, "ESP_NETIF_IP_LOST_TIMER_INTERVAL": true, "component-config-esp-netif-adapter-tcp-ip-stack-library": true, "ESP_NETIF_TCPIP_LWIP": true, "ESP_NETIF_LOOPBACK": true, "ESP_NETIF_USES_TCPIP_WITH_BSD_API": false, "ESP_NETIF_RECEIVE_REPORT_ERRORS": true, "ESP_NETIF_L2_TAP": true, "ESP_NETIF_L2_TAP_MAX_FDS": false, "ESP_NETIF_L2_TAP_RX_QUEUE_SIZE": false, "ESP_NETIF_BRIDGE_EN": true, "ESP_PARTITION_ENABLE_STATS": false, "ESP_PHY_CALIBRATION_AND_DATA_STORAGE": true, "ESP_PHY_INIT_DATA_IN_PARTITION": true, "ESP_PHY_DEFAULT_INIT_IF_INVALID": false, "ESP_PHY_MULTIPLE_INIT_DATA_BIN": false, "ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED": false, "ESP_PHY_INIT_DATA_ERROR": false, "ESP_PHY_MAX_WIFI_TX_POWER": true, "ESP_PHY_MAX_TX_POWER": false, "ESP_PHY_MAC_BB_PD": false, "ESP_PHY_REDUCE_TX_POWER": true, "ESP_PHY_ENABLE_USB": false, "ESP_PHY_ENABLE_CERT_TEST": false, "component-config-phy-calibration-mode": true, "ESP_PHY_RF_CAL_PARTIAL": true, "ESP_PHY_RF_CAL_NONE": true, "ESP_PHY_RF_CAL_FULL": true, "ESP_PHY_CALIBRATION_MODE": false, "ESP_PHY_IMPROVE_RX_11B": false, "ESP_PHY_PLL_TRACK_DEBUG": true, "PM_ENABLE": true, "PM_DFS_INIT_AUTO": false, "PM_PROFILING": false, "PM_TRACE": false, "PM_SLP_IRAM_OPT": false, "PM_RTOS_IDLE_OPT": false, "PM_SLP_DISABLE_GPIO": false, "PM_SLP_DEFAULT_PARAMS_OPT": false, "PM_CHECK_SLEEP_RETENTION_FRAME": false, "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL": false, "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP": false, "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP": false, "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP": false, "PM_UPDATE_CCOMPARE_HLI_WORKAROUND": false, "PM_LIGHT_SLEEP_CALLBACKS": false, "SPIRAM": true, "SPIRAM_MODE_QUAD": false, "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-type-of-spi-ram-chip-in-use": false, "SPIRAM_TYPE_AUTO": false, "SPIRAM_TYPE_ESPPSRAM16": false, "SPIRAM_TYPE_ESPPSRAM32": false, "SPIRAM_TYPE_ESPPSRAM64": false, "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-set-ram-clock-speed": false, "SPIRAM_SPEED_40M": false, "SPIRAM_SPEED_80M": false, "SPIRAM_SPEED": false, "SPIRAM_BOOT_INIT": false, "SPIRAM_IGNORE_NOTFOUND": false, "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spi-ram-access-method": false, "SPIRAM_USE_MEMMAP": false, "SPIRAM_USE_CAPS_ALLOC": false, "SPIRAM_USE_MALLOC": false, "SPIRAM_MEMTEST": false, "SPIRAM_MALLOC_ALWAYSINTERNAL": false, "SPIRAM_TRY_ALLOCATE_WIFI_LWIP": false, "SPIRAM_MALLOC_RESERVE_INTERNAL": false, "SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY": false, "SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY": false, "SPIRAM_CACHE_WORKAROUND": false, "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spiram-cache-workaround-debugging-workaround-strategy": false, "SPIRAM_CACHE_WORKAROUND_STRATEGY_MEMW": false, "SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST": false, "SPIRAM_CACHE_WORKAROUND_STRATEGY_NOPS": false, "SPIRAM_WORKAROUND_NEED_VOLATILE_SPINLOCK": false, "SPIRAM_CACHE_LIBJMP_IN_IRAM": false, "SPIRAM_CACHE_LIBMATH_IN_IRAM": false, "SPIRAM_CACHE_LIBNUMPARSER_IN_IRAM": false, "SPIRAM_CACHE_LIBIO_IN_IRAM": false, "SPIRAM_CACHE_LIBTIME_IN_IRAM": false, "SPIRAM_CACHE_LIBCHAR_IN_IRAM": false, "SPIRAM_CACHE_LIBMEM_IN_IRAM": false, "SPIRAM_CACHE_LIBSTR_IN_IRAM": false, "SPIRAM_CACHE_LIBRAND_IN_IRAM": false, "SPIRAM_CACHE_LIBENV_IN_IRAM": false, "SPIRAM_CACHE_LIBFILE_IN_IRAM": false, "SPIRAM_CACHE_LIBMISC_IN_IRAM": false, "SPIRAM_BANKSWITCH_ENABLE": false, "SPIRAM_BANKSWITCH_RESERVE": false, "SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY": false, "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spi-host-to-use-for-32mbit-psram": false, "SPIRAM_OCCUPY_HSPI_HOST": false, "SPIRAM_OCCUPY_VSPI_HOST": false, "SPIRAM_OCCUPY_NO_HOST": false, "D0WD_PSRAM_CLK_IO": false, "D0WD_PSRAM_CS_IO": false, "D2WD_PSRAM_CLK_IO": false, "D2WD_PSRAM_CS_IO": false, "PICO_PSRAM_CS_IO": false, "SPIRAM_CUSTOM_SPIWP_SD3_PIN": false, "SPIRAM_SPIWP_SD3_PIN": false, "SPIRAM_2T_MODE": false, "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH": true, "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH": false, "component-config-esp-system-settings-cpu-frequency": true, "ESP_DEFAULT_CPU_FREQ_MHZ_40": false, "ESP_DEFAULT_CPU_FREQ_MHZ_80": true, "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, "ESP_DEFAULT_CPU_FREQ_MHZ_240": true, "ESP_DEFAULT_CPU_FREQ_MHZ": false, "ESP32_RTCDATA_IN_FAST_MEM": false, "ESP32_USE_FIXED_STATIC_RAM_SIZE": true, "ESP32_FIXED_STATIC_RAM_SIZE": false, "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY": false, "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM": true, "ESP32_MEMMAP_TRACEMEM": false, "ESP32_MEMMAP_TRACEMEM_TWOBANKS": false, "ESP32_TRAX": true, "ESP32_TRAX_TWOBANKS": false, "ESP32_TRACEMEM_RESERVE_DRAM": false, "component-config-esp-system-settings-panic-handler-behaviour": true, "ESP_SYSTEM_PANIC_PRINT_HALT": true, "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, "ESP_SYSTEM_PANIC_SILENT_REBOOT": true, "ESP_SYSTEM_PANIC_GDBSTUB": true, "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": true, "ESP_SYSTEM_SINGLE_CORE_MODE": false, "ESP_SYSTEM_RTC_EXT_XTAL": false, "ESP_SYSTEM_RTC_EXT_OSC": false, "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES": false, "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": false, "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": false, "ESP_SYSTEM_USE_EH_FRAME": false, "ESP_SYSTEM_PMP_IDRAM_SPLIT": false, "ESP_SYSTEM_MEMPROT_FEATURE": false, "ESP_SYSTEM_MEMPROT_FEATURE_LOCK": false, "ESP_SYSTEM_EVENT_QUEUE_SIZE": true, "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": true, "ESP_MAIN_TASK_STACK_SIZE": true, "component-config-esp-system-settings-main-task-core-affinity": true, "ESP_MAIN_TASK_AFFINITY_CPU0": true, "ESP_MAIN_TASK_AFFINITY_CPU1": true, "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": true, "ESP_MAIN_TASK_AFFINITY": false, "ESP_MINIMAL_SHARED_STACK_SIZE": true, "component-config-esp-system-settings-channel-for-console-output": true, "ESP_CONSOLE_UART_DEFAULT": true, "ESP_CONSOLE_USB_CDC": false, "ESP_CONSOLE_USB_SERIAL_JTAG": false, "ESP_CONSOLE_UART_CUSTOM": true, "ESP_CONSOLE_NONE": true, "component-config-esp-system-settings-channel-for-console-secondary-output": false, "ESP_CONSOLE_SECONDARY_NONE": false, "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": false, "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": false, "ESP_CONSOLE_UART": false, "component-config-esp-system-settings-uart-peripheral-to-use-for-console-output-0-1-": false, "ESP_CONSOLE_UART_CUSTOM_NUM_0": false, "ESP_CONSOLE_UART_CUSTOM_NUM_1": false, "ESP_CONSOLE_UART_NUM": false, "ESP_CONSOLE_UART_TX_GPIO": false, "ESP_CONSOLE_UART_RX_GPIO": false, "ESP_CONSOLE_UART_BAUDRATE": false, "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE": false, "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF": false, "ESP_INT_WDT": true, "ESP_INT_WDT_TIMEOUT_MS": true, "ESP_INT_WDT_CHECK_CPU1": true, "ESP_TASK_WDT_EN": true, "ESP_TASK_WDT_USE_ESP_TIMER": false, "ESP_TASK_WDT_INIT": true, "ESP_TASK_WDT_PANIC": true, "ESP_TASK_WDT_TIMEOUT_S": true, "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true, "ESP_XT_WDT": false, "ESP_XT_WDT_TIMEOUT": false, "ESP_XT_WDT_BACKUP_CLK_ENABLE": false, "ESP_PANIC_HANDLER_IRAM": true, "ESP_DEBUG_STUBS_ENABLE": true, "ESP_DEBUG_OCDAWARE": true, "component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks": true, "ESP_SYSTEM_CHECK_INT_LEVEL_5": true, "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, "ESP_BROWNOUT_DET": true, "component-config-esp-system-settings-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level": true, "ESP_BROWNOUT_DET_LVL_SEL_0": true, "ESP_BROWNOUT_DET_LVL_SEL_1": true, "ESP_BROWNOUT_DET_LVL_SEL_2": true, "ESP_BROWNOUT_DET_LVL_SEL_3": true, "ESP_BROWNOUT_DET_LVL_SEL_4": true, "ESP_BROWNOUT_DET_LVL_SEL_5": true, "ESP_BROWNOUT_DET_LVL_SEL_6": true, "ESP_BROWNOUT_DET_LVL_SEL_7": true, "ESP_BROWNOUT_DET_LVL": false, "ESP32_DISABLE_BASIC_ROM_CONSOLE": true, "ESP32_ECO3_CACHE_LOCK_FIX": false, "ESP_SYSTEM_BROWNOUT_INTR": false, "ESP_SYSTEM_HW_STACK_GUARD": false, "ESP_SYSTEM_BBPLL_RECALIB": false, "ESP_IPC_TASK_STACK_SIZE": true, "ESP_IPC_USES_CALLERS_PRIORITY": true, "ESP_IPC_ISR_ENABLE": false, "ESP_TIMER_PROFILING": true, "ESP_TIME_FUNCS_USE_RTC_TIMER": false, "ESP_TIME_FUNCS_USE_ESP_TIMER": false, "ESP_TIME_FUNCS_USE_NONE": false, "ESP_TIMER_TASK_STACK_SIZE": true, "ESP_TIMER_INTERRUPT_LEVEL": true, "ESP_TIMER_SHOW_EXPERIMENTAL": true, "ESP_TIMER_TASK_AFFINITY": false, "component-config-high-resolution-timer-esp_timer--esp_timer-task-core-affinity": true, "ESP_TIMER_TASK_AFFINITY_CPU0": true, "ESP_TIMER_TASK_AFFINITY_CPU1": false, "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY": false, "ESP_TIMER_ISR_AFFINITY": false, "component-config-high-resolution-timer-esp_timer--timer-interrupt-core-affinity": true, "ESP_TIMER_ISR_AFFINITY_CPU0": true, "ESP_TIMER_ISR_AFFINITY_CPU1": false, "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY": false, "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": true, "ESP_TIMER_IMPL_TG0_LAC": false, "ESP_TIMER_IMPL_SYSTIMER": false, "ESP_WIFI_ENABLED": false, "ESP_WIFI_STATIC_RX_BUFFER_NUM": true, "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM": true, "component-config-wi-fi-type-of-wifi-tx-buffers": true, "ESP_WIFI_STATIC_TX_BUFFER": true, "ESP_WIFI_DYNAMIC_TX_BUFFER": true, "ESP_WIFI_TX_BUFFER_TYPE": false, "ESP_WIFI_STATIC_TX_BUFFER_NUM": false, "ESP_WIFI_CACHE_TX_BUFFER_NUM": false, "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM": true, "component-config-wi-fi-type-of-wifi-rx-mgmt-buffers": true, "ESP_WIFI_STATIC_RX_MGMT_BUFFER": true, "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER": true, "ESP_WIFI_DYNAMIC_RX_MGMT_BUF": false, "ESP_WIFI_RX_MGMT_BUF_NUM_DEF": true, "ESP_WIFI_CSI_ENABLED": true, "ESP_WIFI_AMPDU_TX_ENABLED": true, "ESP_WIFI_TX_BA_WIN": true, "ESP_WIFI_AMPDU_RX_ENABLED": true, "ESP_WIFI_RX_BA_WIN": true, "ESP_WIFI_AMSDU_TX_ENABLED": false, "ESP_WIFI_NVS_ENABLED": true, "component-config-wi-fi-wifi-task-core-id": true, "ESP_WIFI_TASK_PINNED_TO_CORE_0": true, "ESP_WIFI_TASK_PINNED_TO_CORE_1": true, "ESP_WIFI_SOFTAP_BEACON_MAX_LEN": true, "ESP_WIFI_MGMT_SBUF_NUM": true, "ESP_WIFI_IRAM_OPT": true, "ESP_WIFI_EXTRA_IRAM_OPT": true, "ESP_WIFI_RX_IRAM_OPT": true, "ESP_WIFI_ENABLE_WPA3_SAE": true, "ESP_WIFI_ENABLE_SAE_PK": true, "ESP_WIFI_SOFTAP_SAE_SUPPORT": true, "ESP_WIFI_ENABLE_WPA3_OWE_STA": true, "ESP_WIFI_SLP_IRAM_OPT": true, "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME": false, "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME": false, "ESP_WIFI_FTM_ENABLE": false, "ESP_WIFI_FTM_INITIATOR_SUPPORT": false, "ESP_WIFI_FTM_RESPONDER_SUPPORT": false, "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE": true, "ESP_WIFI_GCMP_SUPPORT": false, "ESP_WIFI_GMAC_SUPPORT": true, "ESP_WIFI_SOFTAP_SUPPORT": true, "ESP_WIFI_ENHANCED_LIGHT_SLEEP": false, "ESP_WIFI_SLP_BEACON_LOST_OPT": true, "ESP_WIFI_SLP_BEACON_LOST_TIMEOUT": false, "ESP_WIFI_SLP_BEACON_LOST_THRESHOLD": false, "ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME": false, "ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME": false, "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM": true, "ESP_WIFI_NAN_ENABLE": true, "ESP_WIFI_ENABLE_WIFI_TX_STATS": false, "ESP_WIFI_MBEDTLS_CRYPTO": true, "ESP_WIFI_MBEDTLS_TLS_CLIENT": true, "ESP_WIFI_WAPI_PSK": true, "ESP_WIFI_SUITE_B_192": false, "ESP_WIFI_11KV_SUPPORT": true, "ESP_WIFI_SCAN_CACHE": false, "ESP_WIFI_MBO_SUPPORT": true, "ESP_WIFI_DPP_SUPPORT": true, "ESP_WIFI_11R_SUPPORT": true, "ESP_WIFI_WPS_SOFTAP_REGISTRAR": true, "ESP_WIFI_ENABLE_WIFI_RX_STATS": false, "ESP_WIFI_ENABLE_WIFI_RX_MU_STATS": false, "ESP_WIFI_WPS_STRICT": true, "ESP_WIFI_WPS_PASSPHRASE": true, "ESP_WIFI_DEBUG_PRINT": true, "ESP_WIFI_TESTING_OPTIONS": true, "ESP_WIFI_ENTERPRISE_SUPPORT": true, "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER": true, "component-config-core-dump-data-destination": true, "ESP_COREDUMP_ENABLE_TO_FLASH": true, "ESP_COREDUMP_ENABLE_TO_UART": true, "ESP_COREDUMP_ENABLE_TO_NONE": true, "component-config-core-dump-core-dump-data-format": false, "ESP_COREDUMP_DATA_FORMAT_BIN": false, "ESP_COREDUMP_DATA_FORMAT_ELF": false, "component-config-core-dump-core-dump-data-integrity-check": false, "ESP_COREDUMP_CHECKSUM_CRC32": false, "ESP_COREDUMP_CHECKSUM_SHA256": false, "ESP_COREDUMP_CHECK_BOOT": false, "ESP_COREDUMP_ENABLE": false, "ESP_COREDUMP_LOGS": false, "ESP_COREDUMP_MAX_TASKS_NUM": false, "ESP_COREDUMP_UART_DELAY": false, "ESP_COREDUMP_USE_STACK_SIZE": false, "ESP_COREDUMP_STACK_SIZE": false, "ESP_COREDUMP_SUMMARY_STACKDUMP_SIZE": false, "component-config-core-dump-handling-of-uart-core-dumps-in-idf-monitor": false, "ESP_COREDUMP_DECODE_INFO": false, "ESP_COREDUMP_DECODE_DISABLE": false, "ESP_COREDUMP_DECODE": false, "FATFS_VOLUME_COUNT": true, "component-config-fat-filesystem-support-long-filename-support": true, "FATFS_LFN_NONE": true, "FATFS_LFN_HEAP": true, "FATFS_LFN_STACK": true, "component-config-fat-filesystem-support-sector-size": true, "FATFS_SECTOR_512": true, "FATFS_SECTOR_4096": true, "component-config-fat-filesystem-support-oem-code-page": true, "FATFS_CODEPAGE_DYNAMIC": true, "FATFS_CODEPAGE_437": true, "FATFS_CODEPAGE_720": true, "FATFS_CODEPAGE_737": true, "FATFS_CODEPAGE_771": true, "FATFS_CODEPAGE_775": true, "FATFS_CODEPAGE_850": true, "FATFS_CODEPAGE_852": true, "FATFS_CODEPAGE_855": true, "FATFS_CODEPAGE_857": true, "FATFS_CODEPAGE_860": true, "FATFS_CODEPAGE_861": true, "FATFS_CODEPAGE_862": true, "FATFS_CODEPAGE_863": true, "FATFS_CODEPAGE_864": true, "FATFS_CODEPAGE_865": true, "FATFS_CODEPAGE_866": true, "FATFS_CODEPAGE_869": true, "FATFS_CODEPAGE_932": true, "FATFS_CODEPAGE_936": true, "FATFS_CODEPAGE_949": true, "FATFS_CODEPAGE_950": true, "FATFS_CODEPAGE": false, "FATFS_MAX_LFN": false, "component-config-fat-filesystem-support-api-character-encoding": false, "FATFS_API_ENCODING_ANSI_OEM": false, "FATFS_API_ENCODING_UTF_8": false, "FATFS_FS_LOCK": true, "FATFS_TIMEOUT_MS": true, "FATFS_PER_FILE_CACHE": true, "FATFS_ALLOC_PREFER_EXTRAM": false, "FATFS_USE_FASTSEEK": true, "FATFS_FAST_SEEK_BUFFER_SIZE": false, "FATFS_VFS_FSTAT_BLKSIZE": true, "FATFS_IMMEDIATE_FSYNC": true, "FREERTOS_SMP": true, "FREERTOS_UNICORE": true, "FREERTOS_HZ": true, "FREERTOS_OPTIMIZED_SCHEDULER": false, "component-config-freertos-kernel-configcheck_for_stack_overflow": true, "FREERTOS_CHECK_STACKOVERFLOW_NONE": true, "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": true, "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": true, "FREERTOS_IDLE_TASK_STACKSIZE": true, "FREERTOS_USE_IDLE_HOOK": true, "FREERTOS_USE_MINIMAL_IDLE_HOOK": false, "FREERTOS_USE_TICK_HOOK": true, "FREERTOS_MAX_TASK_NAME_LEN": true, "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": true, "FREERTOS_TIMER_SERVICE_TASK_NAME": true, "FREERTOS_TIMER_TASK_PRIORITY": true, "FREERTOS_TIMER_TASK_STACK_DEPTH": true, "FREERTOS_TIMER_QUEUE_LENGTH": true, "FREERTOS_QUEUE_REGISTRY_SIZE": true, "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": true, "FREERTOS_USE_TRACE_FACILITY": true, "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS": true, "FREERTOS_VTASKLIST_INCLUDE_COREID": true, "FREERTOS_GENERATE_RUN_TIME_STATS": true, "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type": true, "FREERTOS_RUN_TIME_COUNTER_TYPE_U32": true, "FREERTOS_RUN_TIME_COUNTER_TYPE_U64": true, "FREERTOS_USE_TICKLESS_IDLE": false, "FREERTOS_IDLE_TIME_BEFORE_SLEEP": false, "FREERTOS_USE_APPLICATION_TASK_TAG": true, "FREERTOS_TASK_FUNCTION_WRAPPER": true, "FREERTOS_WATCHPOINT_END_OF_STACK": true, "FREERTOS_TLSP_DELETION_CALLBACKS": true, "FREERTOS_TASK_PRE_DELETION_HOOK": true, "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": true, "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, "FREERTOS_ISR_STACKSIZE": true, "FREERTOS_INTERRUPT_BACKTRACE": true, "FREERTOS_FPU_IN_ISR": true, "FREERTOS_TICK_SUPPORT_CORETIMER": false, "FREERTOS_TICK_SUPPORT_SYSTIMER": false, "component-config-freertos-port-tick-timer-source-xtensa-only-": true, "FREERTOS_CORETIMER_0": true, "FREERTOS_CORETIMER_1": true, "FREERTOS_CORETIMER_SYSTIMER_LVL1": false, "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, "FREERTOS_SYSTICK_USES_SYSTIMER": false, "FREERTOS_SYSTICK_USES_CCOUNT": false, "component-config-freertos-port-choose-the-clock-source-for-run-time-stats": true, "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER": true, "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK": true, "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": true, "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": true, "FREERTOS_PORT": false, "FREERTOS_NO_AFFINITY": false, "FREERTOS_SUPPORT_STATIC_ALLOCATION": false, "FREERTOS_DEBUG_OCDAWARE": false, "FREERTOS_ENABLE_TASK_SNAPSHOT": false, "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": false, "component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level": true, "HAL_ASSERTION_EQUALS_SYSTEM": true, "HAL_ASSERTION_DISABLE": true, "HAL_ASSERTION_SILENT": true, "HAL_ASSERTION_ENABLE": true, "HAL_DEFAULT_ASSERTION_LEVEL": false, "component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity": false, "HAL_LOG_LEVEL_NONE": false, "HAL_LOG_LEVEL_ERROR": false, "HAL_LOG_LEVEL_WARN": false, "HAL_LOG_LEVEL_INFO": false, "HAL_LOG_LEVEL_DEBUG": false, "HAL_LOG_LEVEL_VERBOSE": false, "HAL_LOG_LEVEL": false, "HAL_SYSTIMER_USE_ROM_IMPL": false, "HAL_WDT_USE_ROM_IMPL": false, "HAL_SPI_MASTER_FUNC_IN_IRAM": false, "HAL_SPI_SLAVE_FUNC_IN_IRAM": false, "component-config-heap-memory-debugging-heap-corruption-detection": true, "HEAP_POISONING_DISABLED": true, "HEAP_POISONING_LIGHT": true, "HEAP_POISONING_COMPREHENSIVE": true, "component-config-heap-memory-debugging-heap-tracing": true, "HEAP_TRACING_OFF": true, "HEAP_TRACING_STANDALONE": true, "HEAP_TRACING_TOHOST": true, "HEAP_TRACING": false, "HEAP_TRACING_STACK_DEPTH": false, "HEAP_USE_HOOKS": true, "HEAP_TASK_TRACKING": true, "HEAP_TRACE_HASH_MAP": false, "HEAP_TRACE_HASH_MAP_IN_EXT_RAM": false, "HEAP_TRACE_HASH_MAP_SIZE": false, "HEAP_ABORT_WHEN_ALLOCATION_FAILS": true, "HEAP_TLSF_USE_ROM_IMPL": false, "HEAP_PLACE_FUNCTION_INTO_FLASH": true, "IEEE802154_ENABLED": false, "IEEE802154_RX_BUFFER_SIZE": false, "component-config-ieee-802-15-4-ieee802154-enable-clear-channel-assessment-cca-mode": false, "IEEE802154_CCA_CARRIER": false, "IEEE802154_CCA_ED": false, "IEEE802154_CCA_CARRIER_OR_ED": false, "IEEE802154_CCA_CARRIER_AND_ED": false, "IEEE802154_CCA_MODE": false, "IEEE802154_CCA_THRESHOLD": false, "IEEE802154_PENDING_TABLE_SIZE": false, "IEEE802154_MULTI_PAN_ENABLE": false, "IEEE802154_TIMING_OPTIMIZATION": false, "IEEE802154_SLEEP_ENABLE": false, "IEEE802154_DEBUG": false, "IEEE802154_ASSERT": false, "IEEE802154_RECORD_EVENT": false, "IEEE802154_RECORD_EVENT_SIZE": false, "IEEE802154_RECORD_STATE": false, "IEEE802154_RECORD_STATE_SIZE": false, "IEEE802154_RECORD_CMD": false, "IEEE802154_RECORD_CMD_SIZE": false, "IEEE802154_RECORD_ABORT": false, "IEEE802154_RECORD_ABORT_SIZE": false, "IEEE802154_TXRX_STATISTIC": false, "component-config-log-output-default-log-verbosity": true, "LOG_DEFAULT_LEVEL_NONE": true, "LOG_DEFAULT_LEVEL_ERROR": true, "LOG_DEFAULT_LEVEL_WARN": true, "LOG_DEFAULT_LEVEL_INFO": true, "LOG_DEFAULT_LEVEL_DEBUG": true, "LOG_DEFAULT_LEVEL_VERBOSE": true, "LOG_DEFAULT_LEVEL": false, "component-config-log-output-maximum-log-verbosity": true, "LOG_MAXIMUM_EQUALS_DEFAULT": true, "LOG_MAXIMUM_LEVEL_ERROR": false, "LOG_MAXIMUM_LEVEL_WARN": false, "LOG_MAXIMUM_LEVEL_INFO": false, "LOG_MAXIMUM_LEVEL_DEBUG": true, "LOG_MAXIMUM_LEVEL_VERBOSE": true, "LOG_MAXIMUM_LEVEL": false, "LOG_MASTER_LEVEL": true, "LOG_COLORS": true, "component-config-log-output-log-timestamps": true, "LOG_TIMESTAMP_SOURCE_RTOS": true, "LOG_TIMESTAMP_SOURCE_SYSTEM": true, "LWIP_ENABLE": true, "LWIP_LOCAL_HOSTNAME": true, "LWIP_NETIF_API": true, "LWIP_TCPIP_TASK_PRIO": true, "LWIP_TCPIP_CORE_LOCKING": true, "LWIP_TCPIP_CORE_LOCKING_INPUT": false, "LWIP_CHECK_THREAD_SAFETY": true, "LWIP_DNS_SUPPORT_MDNS_QUERIES": true, "LWIP_L2_TO_L3_COPY": true, "LWIP_IRAM_OPTIMIZATION": true, "LWIP_EXTRA_IRAM_OPTIMIZATION": true, "LWIP_TIMERS_ONDEMAND": true, "LWIP_ND6": true, "LWIP_FORCE_ROUTER_FORWARDING": true, "LWIP_MAX_SOCKETS": true, "LWIP_USE_ONLY_LWIP_SELECT": true, "LWIP_SO_LINGER": true, "LWIP_SO_REUSE": true, "LWIP_SO_REUSE_RXTOALL": true, "LWIP_SO_RCVBUF": true, "LWIP_NETBUF_RECVINFO": true, "LWIP_IP_DEFAULT_TTL": true, "LWIP_IP4_FRAG": true, "LWIP_IP6_FRAG": true, "LWIP_IP4_REASSEMBLY": true, "LWIP_IP6_REASSEMBLY": true, "LWIP_IP_REASS_MAX_PBUFS": true, "LWIP_IP_FORWARD": true, "LWIP_IPV4_NAPT": false, "LWIP_IPV4_NAPT_PORTMAP": false, "LWIP_STATS": true, "LWIP_ESP_GRATUITOUS_ARP": true, "LWIP_GARP_TMR_INTERVAL": true, "LWIP_ESP_MLDV6_REPORT": true, "LWIP_MLDV6_TMR_INTERVAL": true, "LWIP_TCPIP_RECVMBOX_SIZE": true, "LWIP_DHCP_DOES_ARP_CHECK": true, "LWIP_DHCP_DISABLE_CLIENT_ID": true, "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID": true, "LWIP_DHCP_RESTORE_LAST_IP": true, "LWIP_DHCP_OPTIONS_LEN": true, "LWIP_NUM_NETIF_CLIENT_DATA": true, "LWIP_DHCP_COARSE_TIMER_SECS": true, "LWIP_DHCPS": true, "LWIP_DHCPS_LEASE_UNIT": true, "LWIP_DHCPS_MAX_STATION_NUM": true, "LWIP_DHCPS_STATIC_ENTRIES": true, "LWIP_AUTOIP": true, "LWIP_AUTOIP_TRIES": false, "LWIP_AUTOIP_MAX_CONFLICTS": false, "LWIP_AUTOIP_RATE_LIMIT_INTERVAL": false, "LWIP_IPV4": true, "LWIP_IPV6": true, "LWIP_IPV6_AUTOCONFIG": true, "LWIP_IPV6_NUM_ADDRESSES": true, "LWIP_IPV6_FORWARD": true, "LWIP_IPV6_RDNSS_MAX_DNS_SERVERS": false, "LWIP_IPV6_DHCP6": false, "LWIP_NETIF_STATUS_CALLBACK": true, "LWIP_NETIF_LOOPBACK": true, "LWIP_LOOPBACK_MAX_PBUFS": true, "LWIP_MAX_ACTIVE_TCP": true, "LWIP_MAX_LISTENING_TCP": true, "LWIP_TCP_HIGH_SPEED_RETRANSMISSION": true, "LWIP_TCP_MAXRTX": true, "LWIP_TCP_SYNMAXRTX": true, "LWIP_TCP_MSS": true, "LWIP_TCP_TMR_INTERVAL": true, "LWIP_TCP_MSL": true, "LWIP_TCP_FIN_WAIT_TIMEOUT": true, "LWIP_TCP_SND_BUF_DEFAULT": true, "LWIP_TCP_WND_DEFAULT": true, "LWIP_TCP_RECVMBOX_SIZE": true, "LWIP_TCP_QUEUE_OOSEQ": true, "LWIP_TCP_OOSEQ_TIMEOUT": true, "LWIP_TCP_OOSEQ_MAX_PBUFS": true, "LWIP_TCP_SACK_OUT": true, "component-config-lwip-tcp-pre-allocate-transmit-pbuf-size": true, "LWIP_TCP_OVERSIZE_MSS": true, "LWIP_TCP_OVERSIZE_QUARTER_MSS": true, "LWIP_TCP_OVERSIZE_DISABLE": true, "LWIP_WND_SCALE": false, "LWIP_TCP_RCV_SCALE": false, "LWIP_TCP_RTO_TIME": true, "LWIP_MAX_UDP_PCBS": true, "LWIP_UDP_RECVMBOX_SIZE": true, "LWIP_CHECKSUM_CHECK_IP": true, "LWIP_CHECKSUM_CHECK_UDP": true, "LWIP_CHECKSUM_CHECK_ICMP": true, "LWIP_TCPIP_TASK_STACK_SIZE": true, "component-config-lwip-tcp-ip-task-affinity": true, "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY": true, "LWIP_TCPIP_TASK_AFFINITY_CPU0": true, "LWIP_TCPIP_TASK_AFFINITY_CPU1": true, "LWIP_TCPIP_TASK_AFFINITY": false, "LWIP_PPP_SUPPORT": true, "LWIP_PPP_ENABLE_IPV6": false, "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": true, "LWIP_IPV6_ND6_NUM_NEIGHBORS": true, "LWIP_PPP_NOTIFY_PHASE_SUPPORT": false, "LWIP_PPP_PAP_SUPPORT": false, "LWIP_PPP_CHAP_SUPPORT": false, "LWIP_PPP_MSCHAP_SUPPORT": false, "LWIP_PPP_MPPE_SUPPORT": false, "LWIP_ENABLE_LCP_ECHO": false, "LWIP_LCP_ECHOINTERVAL": false, "LWIP_LCP_MAXECHOFAILS": false, "LWIP_PPP_DEBUG_ON": false, "LWIP_SLIP_SUPPORT": true, "LWIP_SLIP_DEBUG_ON": false, "LWIP_ICMP": true, "LWIP_MULTICAST_PING": true, "LWIP_BROADCAST_PING": true, "LWIP_MAX_RAW_PCBS": true, "LWIP_SNTP_MAX_SERVERS": true, "LWIP_DHCP_GET_NTP_SRV": true, "LWIP_DHCP_MAX_NTP_SERVERS": false, "LWIP_SNTP_UPDATE_DELAY": true, "LWIP_DNS_MAX_SERVERS": true, "LWIP_FALLBACK_DNS_SERVER_SUPPORT": true, "LWIP_FALLBACK_DNS_SERVER_ADDRESS": false, "LWIP_BRIDGEIF_MAX_PORTS": true, "LWIP_ESP_LWIP_ASSERT": true, "component-config-lwip-hooks-tcp-isn-hook": true, "LWIP_HOOK_TCP_ISN_NONE": true, "LWIP_HOOK_TCP_ISN_DEFAULT": true, "LWIP_HOOK_TCP_ISN_CUSTOM": true, "component-config-lwip-hooks-ipv6-route-hook": true, "LWIP_HOOK_IP6_ROUTE_NONE": true, "LWIP_HOOK_IP6_ROUTE_DEFAULT": true, "LWIP_HOOK_IP6_ROUTE_CUSTOM": true, "component-config-lwip-hooks-ipv6-get-gateway-hook": true, "LWIP_HOOK_ND6_GET_GW_NONE": true, "LWIP_HOOK_ND6_GET_GW_DEFAULT": true, "LWIP_HOOK_ND6_GET_GW_CUSTOM": true, "component-config-lwip-hooks-ipv6-source-address-selection-hook": true, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE": true, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT": true, "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM": true, "component-config-lwip-hooks-netconn-external-resolve-hook": true, "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE": true, "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT": true, "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM": true, "component-config-lwip-hooks-ipv6-packet-input": true, "LWIP_HOOK_IP6_INPUT_NONE": true, "LWIP_HOOK_IP6_INPUT_DEFAULT": true, "LWIP_HOOK_IP6_INPUT_CUSTOM": true, "LWIP_DEBUG": true, "LWIP_DEBUG_ESP_LOG": false, "LWIP_NETIF_DEBUG": false, "LWIP_PBUF_DEBUG": false, "LWIP_ETHARP_DEBUG": false, "LWIP_API_LIB_DEBUG": false, "LWIP_SOCKETS_DEBUG": false, "LWIP_IP_DEBUG": false, "LWIP_ICMP_DEBUG": false, "LWIP_DHCP_STATE_DEBUG": false, "LWIP_DHCP_DEBUG": false, "LWIP_IP6_DEBUG": false, "LWIP_ICMP6_DEBUG": false, "LWIP_TCP_DEBUG": false, "LWIP_UDP_DEBUG": false, "LWIP_SNTP_DEBUG": false, "LWIP_DNS_DEBUG": false, "LWIP_NAPT_DEBUG": false, "LWIP_BRIDGEIF_DEBUG": false, "LWIP_BRIDGEIF_FDB_DEBUG": false, "LWIP_BRIDGEIF_FW_DEBUG": false, "component-config-mbedtls-memory-allocation-strategy": true, "MBEDTLS_INTERNAL_MEM_ALLOC": true, "MBEDTLS_EXTERNAL_MEM_ALLOC": false, "MBEDTLS_DEFAULT_MEM_ALLOC": true, "MBEDTLS_CUSTOM_MEM_ALLOC": true, "MBEDTLS_IRAM_8BIT_MEM_ALLOC": false, "MBEDTLS_SSL_MAX_CONTENT_LEN": false, "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, "MBEDTLS_SSL_IN_CONTENT_LEN": true, "MBEDTLS_SSL_OUT_CONTENT_LEN": true, "MBEDTLS_DYNAMIC_BUFFER": true, "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA": false, "MBEDTLS_DYNAMIC_FREE_CA_CERT": false, "MBEDTLS_DEBUG": true, "component-config-mbedtls-enable-mbedtls-debugging-set-mbedtls-debugging-level": false, "MBEDTLS_DEBUG_LEVEL_WARN": false, "MBEDTLS_DEBUG_LEVEL_INFO": false, "MBEDTLS_DEBUG_LEVEL_DEBUG": false, "MBEDTLS_DEBUG_LEVEL_VERBOSE": false, "MBEDTLS_DEBUG_LEVEL": false, "MBEDTLS_SSL_PROTO_TLS1_3": true, "MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE": false, "MBEDTLS_SSL_TLS1_3_KEXM_PSK": false, "MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL": false, "MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL": false, "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH": true, "MBEDTLS_ECDH_LEGACY_CONTEXT": false, "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": true, "MBEDTLS_SSL_CONTEXT_SERIALIZATION": true, "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": true, "MBEDTLS_PKCS7_C": true, "MBEDTLS_SSL_CID_PADDING_GRANULARITY": false, "MBEDTLS_SSL_DTLS_CONNECTION_ID": false, "MBEDTLS_SSL_CID_IN_LEN_MAX": false, "MBEDTLS_SSL_CID_OUT_LEN_MAX": false, "MBEDTLS_SSL_DTLS_SRTP": false, "MBEDTLS_CERTIFICATE_BUNDLE": true, "component-config-mbedtls-certificate-bundle-enable-trusted-root-certificate-bundle-default-certificate-bundle-options": true, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL": true, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN": true, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE": true, "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE": true, "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH": false, "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS": true, "MBEDTLS_ECP_RESTARTABLE": true, "MBEDTLS_CMAC_C": true, "MBEDTLS_HARDWARE_AES": true, "MBEDTLS_AES_USE_INTERRUPT": false, "MBEDTLS_AES_INTERRUPT_LEVEL": false, "MBEDTLS_HARDWARE_GCM": false, "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": true, "MBEDTLS_HARDWARE_MPI": true, "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": true, "MBEDTLS_MPI_USE_INTERRUPT": false, "MBEDTLS_MPI_INTERRUPT_LEVEL": false, "MBEDTLS_HARDWARE_SHA": true, "MBEDTLS_HARDWARE_ECC": false, "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK": false, "MBEDTLS_ROM_MD5": true, "MBEDTLS_HARDWARE_ECDSA_SIGN": false, "MBEDTLS_HARDWARE_ECDSA_VERIFY": false, "MBEDTLS_ATCA_HW_ECDSA_SIGN": true, "MBEDTLS_ATCA_HW_ECDSA_VERIFY": true, "MBEDTLS_HAVE_TIME": true, "MBEDTLS_PLATFORM_TIME_ALT": true, "MBEDTLS_HAVE_TIME_DATE": true, "MBEDTLS_ECDSA_DETERMINISTIC": true, "MBEDTLS_SHA512_C": true, "component-config-mbedtls-tls-protocol-role": true, "MBEDTLS_TLS_SERVER_AND_CLIENT": true, "MBEDTLS_TLS_SERVER_ONLY": true, "MBEDTLS_TLS_CLIENT_ONLY": true, "MBEDTLS_TLS_DISABLED": true, "MBEDTLS_TLS_SERVER": false, "MBEDTLS_TLS_CLIENT": false, "MBEDTLS_TLS_ENABLED": false, "MBEDTLS_PSK_MODES": true, "MBEDTLS_KEY_EXCHANGE_PSK": false, "MBEDTLS_KEY_EXCHANGE_DHE_PSK": false, "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK": false, "MBEDTLS_KEY_EXCHANGE_RSA_PSK": false, "MBEDTLS_KEY_EXCHANGE_RSA": true, "MBEDTLS_KEY_EXCHANGE_DHE_RSA": false, "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, "MBEDTLS_KEY_EXCHANGE_ECDH_RSA": true, "MBEDTLS_KEY_EXCHANGE_ECJPAKE": false, "MBEDTLS_SSL_RENEGOTIATION": true, "MBEDTLS_SSL_PROTO_TLS1_2": true, "MBEDTLS_SSL_PROTO_GMTSSL1_1": true, "MBEDTLS_SSL_PROTO_DTLS": true, "MBEDTLS_SSL_ALPN": true, "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, "MBEDTLS_AES_C": true, "MBEDTLS_CAMELLIA_C": true, "MBEDTLS_DES_C": true, "MBEDTLS_BLOWFISH_C": true, "MBEDTLS_XTEA_C": true, "MBEDTLS_CCM_C": true, "MBEDTLS_GCM_C": true, "MBEDTLS_NIST_KW_C": true, "MBEDTLS_RIPEMD160_C": true, "MBEDTLS_PEM_PARSE_C": true, "MBEDTLS_PEM_WRITE_C": true, "MBEDTLS_X509_CRL_PARSE_C": true, "MBEDTLS_X509_CSR_PARSE_C": true, "MBEDTLS_ECP_C": true, "MBEDTLS_DHM_C": true, "MBEDTLS_ECDH_C": true, "MBEDTLS_ECDSA_C": true, "MBEDTLS_ECJPAKE_C": true, "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP224R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP192K1_ENABLED": true, "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, "MBEDTLS_ECP_DP_SECP256K1_ENABLED": 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_NIST_OPTIM": true, "MBEDTLS_ECP_FIXED_POINT_OPTIM": true, "MBEDTLS_POLY1305_C": true, "MBEDTLS_CHACHA20_C": true, "MBEDTLS_CHACHAPOLY_C": false, "MBEDTLS_HKDF_C": true, "MBEDTLS_THREADING_C": true, "MBEDTLS_THREADING_ALT": false, "MBEDTLS_THREADING_PTHREAD": false, "MBEDTLS_ERROR_STRINGS": true, "MBEDTLS_USE_CRYPTO_ROM_IMPL": false, "MQTT_PROTOCOL_311": true, "MQTT_PROTOCOL_5": true, "MQTT_TRANSPORT_SSL": true, "MQTT_TRANSPORT_WEBSOCKET": true, "MQTT_TRANSPORT_WEBSOCKET_SECURE": true, "MQTT_MSG_ID_INCREMENTAL": true, "MQTT_SKIP_PUBLISH_IF_DISCONNECTED": true, "MQTT_REPORT_DELETED_MESSAGES": true, "MQTT_USE_CUSTOM_CONFIG": true, "MQTT_TCP_DEFAULT_PORT": false, "MQTT_SSL_DEFAULT_PORT": false, "MQTT_WS_DEFAULT_PORT": false, "MQTT_WSS_DEFAULT_PORT": false, "MQTT_BUFFER_SIZE": false, "MQTT_TASK_STACK_SIZE": false, "MQTT_DISABLE_API_LOCKS": false, "MQTT_TASK_PRIORITY": false, "MQTT_POLL_READ_TIMEOUT_MS": false, "MQTT_EVENT_QUEUE_SIZE": false, "MQTT_TASK_CORE_SELECTION_ENABLED": true, "component-config-esp-mqtt-configurations-enable-mqtt-task-core-selection-core-to-use-": false, "MQTT_USE_CORE_0": false, "MQTT_USE_CORE_1": false, "MQTT_OUTBOX_DATA_ON_EXTERNAL_MEMORY": false, "MQTT_CUSTOM_OUTBOX": true, "MQTT_OUTBOX_EXPIRED_TIMEOUT_MS": false, "component-config-newlib-line-ending-for-uart-output": true, "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, "NEWLIB_STDOUT_LINE_ENDING_LF": true, "NEWLIB_STDOUT_LINE_ENDING_CR": true, "component-config-newlib-line-ending-for-uart-input": true, "NEWLIB_STDIN_LINE_ENDING_CRLF": true, "NEWLIB_STDIN_LINE_ENDING_LF": true, "NEWLIB_STDIN_LINE_ENDING_CR": true, "NEWLIB_NANO_FORMAT": true, "component-config-newlib-timers-used-for-gettimeofday-function": true, "NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true, "NEWLIB_TIME_SYSCALL_USE_RTC": true, "NEWLIB_TIME_SYSCALL_USE_HRT": true, "NEWLIB_TIME_SYSCALL_USE_NONE": true, "NVS_ENCRYPTION": false, "NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG": false, "NVS_ASSERT_ERROR_CHECK": true, "NVS_LEGACY_DUP_KEYS_COMPATIBILITY": true, "component-config-nvs-security-provider-nvs-encryption-key-protection-scheme": false, "NVS_SEC_KEY_PROTECT_USING_FLASH_ENC": false, "NVS_SEC_KEY_PROTECT_USING_HMAC": false, "NVS_SEC_HMAC_EFUSE_KEY_ID": false, "OPENTHREAD_ENABLED": true, "OPENTHREAD_LOG_LEVEL_DYNAMIC": false, "component-config-openthread-openthread-openthread-console-type": false, "OPENTHREAD_CONSOLE_TYPE_UART": false, "OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG": false, "component-config-openthread-openthread-openthread-log-verbosity": false, "OPENTHREAD_LOG_LEVEL_NONE": false, "OPENTHREAD_LOG_LEVEL_CRIT": false, "OPENTHREAD_LOG_LEVEL_WARN": false, "OPENTHREAD_LOG_LEVEL_NOTE": false, "OPENTHREAD_LOG_LEVEL_INFO": false, "OPENTHREAD_LOG_LEVEL_DEBG": false, "OPENTHREAD_NETWORK_NAME": true, "OPENTHREAD_MESH_LOCAL_PREFIX": true, "OPENTHREAD_NETWORK_CHANNEL": true, "OPENTHREAD_NETWORK_PANID": true, "OPENTHREAD_NETWORK_EXTPANID": true, "OPENTHREAD_NETWORK_MASTERKEY": true, "OPENTHREAD_NETWORK_PSKC": true, "OPENTHREAD_LOG_LEVEL": false, "component-config-openthread-config-the-thread-radio-type": false, "OPENTHREAD_RADIO_NATIVE": false, "OPENTHREAD_RADIO_SPINEL_UART": false, "OPENTHREAD_RADIO_SPINEL_SPI": false, "component-config-openthread-config-the-thread-device-type": false, "OPENTHREAD_FTD": false, "OPENTHREAD_MTD": false, "OPENTHREAD_RADIO": false, "component-config-openthread-the-rcp-transport-type": false, "OPENTHREAD_RCP_UART": false, "OPENTHREAD_RCP_SPI": false, "OPENTHREAD_NCP_VENDOR_HOOK": false, "OPENTHREAD_CLI": false, "OPENTHREAD_DIAG": false, "OPENTHREAD_COMMISSIONER": false, "OPENTHREAD_COMM_MAX_JOINER_ENTRIES": false, "OPENTHREAD_JOINER": false, "OPENTHREAD_SRP_CLIENT": false, "OPENTHREAD_SRP_CLIENT_MAX_SERVICES": false, "OPENTHREAD_DNS_CLIENT": false, "OPENTHREAD_BORDER_ROUTER": false, "OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT": false, "OPENTHREAD_NUM_MESSAGE_BUFFERS": false, "OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE": false, "OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT": false, "OPENTHREAD_MLE_MAX_CHILDREN": false, "OPENTHREAD_TMF_ADDR_CACHE_ENTRIES": false, "OPENTHREAD_DNS64_CLIENT": false, "OPENTHREAD_DNS_SERVER_ADDR": false, "OPENTHREAD_UART_BUFFER_SIZE": false, "OPENTHREAD_LINK_METRICS": false, "OPENTHREAD_MACFILTER_ENABLE": false, "OPENTHREAD_CSL_ENABLE": false, "OPENTHREAD_XTAL_ACCURACY": true, "OPENTHREAD_CSL_ACCURACY": false, "OPENTHREAD_CSL_UNCERTAIN": false, "OPENTHREAD_CSL_DEBUG_ENABLE": false, "OPENTHREAD_DUA_ENABLE": false, "OPENTHREAD_TIME_SYNC": false, "OPENTHREAD_RADIO_STATS_ENABLE": false, "OPENTHREAD_SPINEL_ONLY": true, "OPENTHREAD_RX_ON_WHEN_IDLE": true, "OPENTHREAD_ADDRESS_QUERY_TIMEOUT": false, "OPENTHREAD_ADDRESS_QUERY_RETRY_DELAY": false, "OPENTHREAD_ADDRESS_QUERY_MAX_RETRY_DELAY": false, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0": true, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1": true, "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2": true, "ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP": false, "ESP_PROTOCOMM_DISCONNECT_AFTER_BLE_STOP": false, "PTHREAD_TASK_PRIO_DEFAULT": true, "PTHREAD_TASK_STACK_SIZE_DEFAULT": true, "PTHREAD_STACK_MIN": true, "component-config-pthreads-default-pthread-core-affinity": true, "PTHREAD_DEFAULT_CORE_NO_AFFINITY": true, "PTHREAD_DEFAULT_CORE_0": true, "PTHREAD_DEFAULT_CORE_1": true, "PTHREAD_TASK_CORE_DEFAULT": false, "PTHREAD_TASK_NAME_DEFAULT": true, "MMU_PAGE_SIZE_16KB": false, "MMU_PAGE_SIZE_32KB": false, "MMU_PAGE_SIZE_64KB": false, "MMU_PAGE_MODE": false, "MMU_PAGE_SIZE": false, "SPI_FLASH_BROWNOUT_RESET_XMC": true, "SPI_FLASH_BROWNOUT_RESET": false, "SPI_FLASH_UNDER_HIGH_FREQ": false, "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz-": false, "SPI_FLASH_HPM_ENA": false, "SPI_FLASH_HPM_AUTO": false, "SPI_FLASH_HPM_DIS": false, "SPI_FLASH_HPM_ON": false, "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first-": false, "SPI_FLASH_HPM_DC_AUTO": false, "SPI_FLASH_HPM_DC_DISABLE": false, "SPI_FLASH_HPM_DC_ON": false, "SPI_FLASH_SUSPEND_QVL_SUPPORTED": false, "SPI_FLASH_AUTO_SUSPEND": false, "SPI_FLASH_VERIFY_WRITE": true, "SPI_FLASH_LOG_FAILED_WRITE": false, "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE": false, "SPI_FLASH_ENABLE_COUNTERS": true, "SPI_FLASH_ROM_DRIVER_PATCH": true, "SPI_FLASH_ROM_IMPL": false, "component-config-spi-flash-driver-writing-to-dangerous-flash-regions": true, "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, "SPI_FLASH_DANGEROUS_WRITE_FAILS": true, "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": true, "SPI_FLASH_SHARE_SPI1_BUS": true, "SPI_FLASH_BYPASS_BLOCK_ERASE": true, "SPI_FLASH_YIELD_DURING_ERASE": true, "SPI_FLASH_ERASE_YIELD_DURATION_MS": true, "SPI_FLASH_ERASE_YIELD_TICKS": true, "SPI_FLASH_WRITE_CHUNK_SIZE": true, "SPI_FLASH_SIZE_OVERRIDE": true, "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": true, "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": true, "SPI_FLASH_VENDOR_XMC_SUPPORTED": false, "SPI_FLASH_VENDOR_GD_SUPPORTED": false, "SPI_FLASH_VENDOR_ISSI_SUPPORTED": false, "SPI_FLASH_VENDOR_MXIC_SUPPORTED": false, "SPI_FLASH_VENDOR_WINBOND_SUPPORTED": false, "SPI_FLASH_SUPPORT_ISSI_CHIP": true, "SPI_FLASH_SUPPORT_MXIC_CHIP": true, "SPI_FLASH_SUPPORT_GD_CHIP": true, "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, "SPI_FLASH_SUPPORT_BOYA_CHIP": true, "SPI_FLASH_SUPPORT_TH_CHIP": true, "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP": false, "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, "SPIFFS_MAX_PARTITIONS": true, "SPIFFS_CACHE": true, "SPIFFS_CACHE_WR": true, "SPIFFS_CACHE_STATS": true, "SPIFFS_PAGE_CHECK": true, "SPIFFS_GC_MAX_RUNS": true, "SPIFFS_GC_STATS": true, "SPIFFS_PAGE_SIZE": true, "SPIFFS_OBJ_NAME_LEN": true, "SPIFFS_FOLLOW_SYMLINKS": true, "SPIFFS_USE_MAGIC": true, "SPIFFS_USE_MAGIC_LENGTH": true, "SPIFFS_META_LENGTH": true, "SPIFFS_USE_MTIME": true, "SPIFFS_MTIME_WIDE_64_BITS": false, "SPIFFS_DBG": true, "SPIFFS_API_DBG": true, "SPIFFS_GC_DBG": true, "SPIFFS_CACHE_DBG": true, "SPIFFS_CHECK_DBG": true, "SPIFFS_TEST_VISUALISATION": true, "WS_TRANSPORT": true, "WS_BUFFER_SIZE": true, "WS_DYNAMIC_BUFFER": true, "ULP_COPROC_ENABLED": true, "component-config-ultra-low-power-ulp-co-processor-enable-ultra-low-power-ulp-co-processor-ulp-co-processor-type": false, "ULP_COPROC_TYPE_FSM": false, "ULP_COPROC_TYPE_RISCV": false, "ULP_COPROC_TYPE_LP_CORE": false, "ULP_COPROC_RESERVE_MEM": false, "ULP_RISCV_UART_BAUDRATE": false, "ULP_RISCV_I2C_RW_TIMEOUT": false, "ULP_SHARED_MEM": false, "UNITY_ENABLE_FLOAT": true, "UNITY_ENABLE_DOUBLE": true, "UNITY_ENABLE_64BIT": true, "UNITY_ENABLE_COLOR": true, "UNITY_ENABLE_IDF_TEST_RUNNER": true, "UNITY_ENABLE_FIXTURE": true, "UNITY_ENABLE_BACKTRACE_ON_FAIL": true, "USB_HOST_CONTROL_TRANSFER_MAX_SIZE": false, "component-config-usb-otg-hardware-fifo-size-biasing": false, "USB_HOST_HW_BUFFER_BIAS_BALANCED": false, "USB_HOST_HW_BUFFER_BIAS_IN": false, "USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT": false, "USB_HOST_DEBOUNCE_DELAY_MS": false, "USB_HOST_RESET_HOLD_MS": false, "USB_HOST_RESET_RECOVERY_MS": false, "USB_HOST_SET_ADDR_RECOVERY_MS": false, "USB_OTG_SUPPORTED": false, "USB_HOST_ENABLE_ENUM_FILTER_CALLBACK": false, "VFS_SUPPORT_IO": true, "VFS_SUPPORT_DIR": true, "VFS_SUPPORT_SELECT": true, "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT": true, "VFS_SELECT_IN_RAM": true, "VFS_SUPPORT_TERMIOS": true, "VFS_MAX_COUNT": true, "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS": true, "component-config-wear-levelling-wear-levelling-library-sector-size": true, "WL_SECTOR_SIZE_512": true, "WL_SECTOR_SIZE_4096": true, "WL_SECTOR_SIZE": false, "component-config-wear-levelling-sector-store-mode": false, "WL_SECTOR_MODE_PERF": false, "WL_SECTOR_MODE_SAFE": false, "WL_SECTOR_MODE": false, "WIFI_PROV_SCAN_MAX_ENTRIES": true, "WIFI_PROV_AUTOSTOP_TIMEOUT": true, "WIFI_PROV_BLE_BONDING": false, "WIFI_PROV_BLE_SEC_CONN": false, "WIFI_PROV_BLE_FORCE_ENCRYPTION": true, "WIFI_PROV_KEEP_BLE_ON_AFTER_PROV": false, "WIFI_PROV_DISCONNECT_AFTER_PROV": false, "component-config-wi-fi-provisioning-manager-wifi-provisioning-scan-method": true, "WIFI_PROV_STA_ALL_CHANNEL_SCAN": true, "WIFI_PROV_STA_FAST_SCAN": true, "DSP_OPTIMIZATIONS_SUPPORTED": false, "component-config-dsp-library-dsp-optimization": true, "DSP_ANSI": true, "DSP_OPTIMIZED": true, "DSP_OPTIMIZATION": false, "component-config-dsp-library-maximum-fft-length": true, "DSP_MAX_FFT_SIZE_512": true, "DSP_MAX_FFT_SIZE_1024": true, "DSP_MAX_FFT_SIZE_2048": true, "DSP_MAX_FFT_SIZE_4096": true, "DSP_MAX_FFT_SIZE_8192": true, "DSP_MAX_FFT_SIZE_16384": true, "DSP_MAX_FFT_SIZE_32768": true, "DSP_MAX_FFT_SIZE": false, "IDF_EXPERIMENTAL_FEATURES": true, "component-config-dsp-library": true, "component-config-wi-fi-provisioning-manager": true, "component-config-wear-levelling": true, "component-config-virtual-file-system-provide-basic-i-o-functions-host-file-system-i-o-semihosting-": true, "component-config-virtual-file-system": true, "component-config-usb-otg-root-hub-configuration": false, "component-config-usb-otg": false, "component-config-unity-unit-testing-library": true, "component-config-ultra-low-power-ulp-co-processor-ulp-risc-v-settings": false, "component-config-ultra-low-power-ulp-co-processor": true, "component-config-tcp-transport-websocket": true, "component-config-tcp-transport": true, "component-config-spiffs-configuration-debug-configuration": true, "component-config-spiffs-configuration-spiffs-cache-configuration": true, "component-config-spiffs-configuration": true, "component-config-spi-flash-driver-auto-detect-flash-chips": true, "component-config-spi-flash-driver": true, "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--features-here-require-specific-hardware-read-docs-first-": false, "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first-": false, "component-config-main-flash-configuration-spi-flash-behavior-when-brownout": true, "component-config-main-flash-configuration": true, "component-config-soc-settings-mmu-config": false, "component-config-soc-settings": false, "component-config-pthreads": true, "component-config-protocomm": true, "component-config-openthread-thread-address-query-config": false, "component-config-openthread-thread-operational-dataset": true, "component-config-openthread": true, "component-config-nvs-security-provider": false, "component-config-nvs": true, "component-config-newlib": true, "component-config-esp-mqtt-configurations": true, "component-config-mbedtls-certificates": true, "component-config-mbedtls-symmetric-ciphers": true, "component-config-mbedtls-tls-key-exchange-methods": true, "component-config-mbedtls-certificate-bundle": true, "component-config-mbedtls-mbedtls-v3-x-related-dtls-based-configurations": false, "component-config-mbedtls-mbedtls-v3-x-related-support-tls-1-3-protocol-tls-1-3-related-configurations": false, "component-config-mbedtls-mbedtls-v3-x-related": true, "component-config-mbedtls": true, "component-config-lwip-hooks": true, "component-config-lwip-dns": true, "component-config-lwip-sntp": true, "component-config-lwip-lwip-raw-api": true, "component-config-lwip-icmp": true, "component-config-lwip-checksums": true, "component-config-lwip-udp": true, "component-config-lwip-tcp": true, "component-config-lwip-dhcp-server": true, "component-config-lwip": true, "component-config-log-output": true, "component-config-ieee-802-15-4": false, "component-config-heap-memory-debugging": true, "component-config-hardware-abstraction-layer-hal-and-low-level-ll-": true, "component-config-freertos-port": true, "component-config-freertos-kernel": true, "component-config-freertos": true, "component-config-fat-filesystem-support": true, "component-config-core-dump": true, "component-config-wi-fi-wps-configuration-options": true, "component-config-wi-fi": true, "component-config-high-resolution-timer-esp_timer-": true, "component-config-ipc-inter-processor-call-": true, "component-config-esp-system-settings-brownout-detector": true, "component-config-esp-system-settings-memory-protection": false, "component-config-esp-system-settings-trace-memory": true, "component-config-esp-system-settings-memory-non-backward-compatible-options": true, "component-config-esp-system-settings-memory": true, "component-config-esp-system-settings": true, "component-config-esp-ringbuf": true, "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-pico-d4": false, "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-d2wd": false, "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-dowd": false, "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spiram-workaround-libraries-placement": false, "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spiram-cache-workaround-debugging": false, "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config": false, "component-config-esp-psram": true, "component-config-power-management": true, "component-config-phy": true, "component-config-partition-api-configuration": false, "component-config-esp-netif-adapter": true, "component-config-lcd-and-touch-panel-lcd-peripheral-configuration": true, "component-config-lcd-and-touch-panel-lcd-touch-drivers-are-maintained-in-the-idf-component-registry": false, "component-config-lcd-and-touch-panel": true, "component-config-hardware-settings-crypto-dpa-protection": false, "component-config-hardware-settings-main-xtal-config": true, "component-config-hardware-settings-gdma-configuration": false, "component-config-hardware-settings-etm-configuration": false, "component-config-hardware-settings-peripheral-control": true, "component-config-hardware-settings-rtc-clock-config": true, "component-config-hardware-settings-esp_sleep_workaround": false, "component-config-hardware-settings-sleep-config": true, "component-config-hardware-settings-mac-config": true, "component-config-hardware-settings-chip-revision-maximum-supported-esp32-revision-rev-v3-99-": false, "component-config-hardware-settings-chip-revision": true, "component-config-hardware-settings": true, "component-config-esp-https-server": true, "component-config-esp-https-ota": true, "component-config-http-server": true, "component-config-esp-http-client": true, "component-config-gdb-stub": true, "component-config-event-loop-library": true, "component-config-ethernet": true, "component-config-common-esp-related": true, "component-config-wireless-coexistence": false, "component-config-adc-and-adc-calibration-adc-calibration-configurations": true, "component-config-adc-and-adc-calibration": true, "component-config-esp-tls": true, "component-config-efuse-bit-manager": true, "component-config-driver-configurations-i2c-configuration": true, "component-config-driver-configurations-ledc-configuration": true, "component-config-driver-configurations-parallel-io-configuration": false, "component-config-driver-configurations-usb-serial-jtag-configuration": false, "component-config-driver-configurations-dac-configuration": true, "component-config-driver-configurations-i2s-configuration": true, "component-config-driver-configurations-mcpwm-configuration": true, "component-config-driver-configurations-rmt-configuration": true, "component-config-driver-configurations-pcnt-configuration": true, "component-config-driver-configurations-gptimer-configuration": true, "component-config-driver-configurations-analog-comparator-configuration": false, "component-config-driver-configurations-sigma-delta-modulator-configuration": true, "component-config-driver-configurations-gpio-configuration": true, "component-config-driver-configurations-uart-configuration": true, "component-config-driver-configurations-temperature-sensor-configuration": false, "component-config-driver-configurations-twai-configuration": true, "component-config-driver-configurations-spi-configuration": true, "component-config-driver-configurations-legacy-adc-configuration-legacy-adc-calibration-configuration": true, "component-config-driver-configurations-legacy-adc-configuration": true, "component-config-driver-configurations": true, "component-config-esp-ble-mesh-support-ble-mesh-specific-test-option": false, "component-config-esp-ble-mesh-support-support-for-ble-mesh-client-server-models": false, "component-config-esp-ble-mesh-support-support-for-ble-mesh-foundation-models": false, "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level": false, "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level": false, "component-config-esp-ble-mesh-support-ble-mesh-and-ble-coexistence-support": false, "component-config-bluetooth-common-options": false, "component-config-bluetooth-controller-options-modem-sleep-options": false, "component-config-bluetooth-controller-options-hci-uart-h4-options": false, "component-config-bluetooth-controller-options": false, "component-config-bluetooth-nimble-options-host-controller-transport": false, "component-config-bluetooth-nimble-options-ble-services": false, "component-config-bluetooth-nimble-options-gap-service-gap-device-name-write-permissions": false, "component-config-bluetooth-nimble-options-gap-service-gap-appearance-write-permissions": false, "component-config-bluetooth-nimble-options-gap-service": false, "component-config-bluetooth-nimble-options-memory-settings": false, "component-config-bluetooth-nimble-options": false, "component-config-bluetooth-bluedroid-options-bt-debug-log-level": false, "component-config-bluetooth-bluedroid-options": false, "component-config-bluetooth": true, "component-config-application-level-tracing-freertos-systemview-tracing": false, "component-config-application-level-tracing": true, "component-config": true, "compiler-options": true, "partition-table": true, "serial-flasher-config": true, "boot-rom-behavior": false, "application-manager": true, "security-features-potentially-insecure-options": false, "security-features": true, "bootloader-config-serial-flash-configurations": true, "bootloader-config-bootloader-manager": true, "bootloader-config": true, "build-type": true}} diff --git a/ESPIDFNEW/build/log/idf_py_stdout_output_8928 b/ESPIDFNEW/build/log/idf_py_stdout_output_8928 new file mode 100644 index 0000000..a0877a6 --- /dev/null +++ b/ESPIDFNEW/build/log/idf_py_stdout_output_8928 @@ -0,0 +1,24 @@ +-- ccache will be used for faster recompilation +-- git rev-parse returned 'fatal: not a git repository (or any of the parent directories): .git' +-- Could not use 'git describe' to determine PROJECT_VER. +-- Building ESP-IDF components for target esp32 +Processing 2 dependencies: +[1/2] espressif/esp-dsp (1.4.12) +[2/2] idf (5.2.2) +-- Project sdkconfig file C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig +-- Compiler supported targets: xtensa-esp-elf +-- App "ESPIDFNEW" version: 1 +-- Adding linker script C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/memory.ld +-- Adding linker script C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/ld/sections.ld.in +-- Adding linker script C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.ld +-- Adding linker script C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.api.ld +-- Adding linker script C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libgcc.ld +-- Adding linker script C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-data.ld +-- Adding linker script C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.syscalls.ld +-- Adding linker script C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-funcs.ld +-- Adding linker script C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/ld/esp32.peripherals.ld +-- Components: app_trace app_update bootloader bootloader_support bt cmock console cxx driver efuse esp-tls esp_adc esp_app_format esp_bootloader_format esp_coex esp_common esp_eth esp_event esp_gdbstub esp_hid esp_http_client esp_http_server esp_https_ota esp_https_server esp_hw_support esp_lcd esp_local_ctrl esp_mm esp_netif esp_netif_stack esp_partition esp_phy esp_pm esp_psram esp_ringbuf esp_rom esp_system esp_timer esp_wifi espcoredump espressif__esp-dsp esptool_py fatfs freertos hal heap http_parser idf_test ieee802154 json log lwip main mbedtls mqtt newlib nvs_flash nvs_sec_provider openthread partition_table perfmon protobuf-c protocomm pthread sdmmc soc spi_flash spiffs tcp_transport ulp unity usb vfs wear_levelling wifi_provisioning wpa_supplicant xtensa +-- Component paths: C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace C:/Users/Job/esp/v5.2.2/esp-idf/components/app_update C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support C:/Users/Job/esp/v5.2.2/esp-idf/components/bt C:/Users/Job/esp/v5.2.2/esp-idf/components/cmock C:/Users/Job/esp/v5.2.2/esp-idf/components/console C:/Users/Job/esp/v5.2.2/esp-idf/components/cxx C:/Users/Job/esp/v5.2.2/esp-idf/components/driver C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_server C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif_stack C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos C:/Users/Job/esp/v5.2.2/esp-idf/components/hal C:/Users/Job/esp/v5.2.2/esp-idf/components/heap C:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser C:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test C:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154 C:/Users/Job/esp/v5.2.2/esp-idf/components/json C:/Users/Job/esp/v5.2.2/esp-idf/components/log C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider C:/Users/Job/esp/v5.2.2/esp-idf/components/openthread C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table C:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon C:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc C:/Users/Job/esp/v5.2.2/esp-idf/components/soc C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport C:/Users/Job/esp/v5.2.2/esp-idf/components/ulp C:/Users/Job/esp/v5.2.2/esp-idf/components/unity C:/Users/Job/esp/v5.2.2/esp-idf/components/usb C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa +-- Configuring done +-- Generating done +-- Build files have been written to: C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build diff --git a/ESPIDFNEW/build/partition-table-flash_args b/ESPIDFNEW/build/partition-table-flash_args new file mode 100644 index 0000000..7a7b2ee --- /dev/null +++ b/ESPIDFNEW/build/partition-table-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size detect +0x8000 partition_table/partition-table.bin diff --git a/ESPIDFNEW/build/partition_table/partition-table.bin b/ESPIDFNEW/build/partition_table/partition-table.bin new file mode 100644 index 0000000..b8fa03b Binary files /dev/null and b/ESPIDFNEW/build/partition_table/partition-table.bin differ diff --git a/ESPIDFNEW/build/project_description.json b/ESPIDFNEW/build/project_description.json new file mode 100644 index 0000000..84dbbf3 --- /dev/null +++ b/ESPIDFNEW/build/project_description.json @@ -0,0 +1,2150 @@ +{ + "version": "1.1", + "project_name": "ESPIDFNEW", + "project_version": "1", + "project_path": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW", + "idf_path": "C:/Users/Job/esp/v5.2.2/esp-idf", + "build_dir": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build", + "config_file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/sdkconfig", + "config_defaults": "", + "bootloader_elf": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/bootloader/bootloader.elf", + "app_elf": "ESPIDFNEW.elf", + "app_bin": "ESPIDFNEW.bin", + "build_type": "flash_app", + "git_revision": "v5.2.2", + "target": "esp32", + "rev": "0", + "min_rev": "0", + "max_rev": "399", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32-elf-", + "c_compiler": "C:/Users/Job/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/bt/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_server/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/heap/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/log/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/openthread/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/ulp/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/unity/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/usb/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/Kconfig;C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/Kconfig;C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table/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_trace", "app_update", "bootloader", "bootloader_support", "bt", "cmock", "console", "cxx", "driver", "efuse", "esp-tls", "esp_adc", "esp_app_format", "esp_bootloader_format", "esp_coex", "esp_common", "esp_eth", "esp_event", "esp_gdbstub", "esp_hid", "esp_http_client", "esp_http_server", "esp_https_ota", "esp_https_server", "esp_hw_support", "esp_lcd", "esp_local_ctrl", "esp_mm", "esp_netif", "esp_netif_stack", "esp_partition", "esp_phy", "esp_pm", "esp_psram", "esp_ringbuf", "esp_rom", "esp_system", "esp_timer", "esp_wifi", "espcoredump", "espressif__esp-dsp", "esptool_py", "fatfs", "freertos", "hal", "heap", "http_parser", "idf_test", "ieee802154", "json", "log", "lwip", "main", "mbedtls", "mqtt", "newlib", "nvs_flash", "nvs_sec_provider", "openthread", "partition_table", "perfmon", "protobuf-c", "protocomm", "pthread", "sdmmc", "soc", "spi_flash", "spiffs", "tcp_transport", "ulp", "unity", "usb", "vfs", "wear_levelling", "wifi_provisioning", "wpa_supplicant", "xtensa", "" ], + "build_component_paths" : [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace", "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_update", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bt", "C:/Users/Job/esp/v5.2.2/esp-idf/components/cmock", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console", "C:/Users/Job/esp/v5.2.2/esp-idf/components/cxx", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_server", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif_stack", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi", "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esptool_py", "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal", "C:/Users/Job/esp/v5.2.2/esp-idf/components/heap", "C:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser", "C:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test", "C:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154", "C:/Users/Job/esp/v5.2.2/esp-idf/components/json", "C:/Users/Job/esp/v5.2.2/esp-idf/components/log", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main", "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls", "C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider", "C:/Users/Job/esp/v5.2.2/esp-idf/components/openthread", "C:/Users/Job/esp/v5.2.2/esp-idf/components/partition_table", "C:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm", "C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread", "C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs", "C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport", "C:/Users/Job/esp/v5.2.2/esp-idf/components/ulp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/unity", "C:/Users/Job/esp/v5.2.2/esp-idf/components/usb", "C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant", "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa", "" ], + "build_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace", + "type": "LIBRARY", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "soc", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_trace/libapp_trace.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/app_trace.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/app_trace_util.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/host_file_io.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace/port/port_uart.c" ], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/app_update/libapp_update.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/esp_ota_ops.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_update/esp_ota_app_desc.c" ], + "include_dirs": [ "include" ] + }, + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_mem.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_random.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/flash_encrypt.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/secure_boot.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_random_esp32.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/bootloader_utility.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/flash_partitions.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/esp_image_format.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c" ], + "include_dirs": [ "include", "bootloader_flash/include" ] + }, + "bt": { + "alias": "idf::bt", + "target": "___idf_bt", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/bt", + "type": "CONFIG_ONLY", + "lib": "__idf_bt", + "reqs": [ "esp_timer", "esp_wifi" ], + "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "driver", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/cmock", + "type": "LIBRARY", + "lib": "__idf_cmock", + "reqs": [ "unity" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cmock/libcmock.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/cmock/CMock/src/cmock.c" ], + "include_dirs": [ "CMock/src" ] + }, + "console": { + "alias": "idf::console", + "target": "___idf_console", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/console", + "type": "LIBRARY", + "lib": "__idf_console", + "reqs": [ "vfs" ], + "priv_reqs": [ "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/console/libconsole.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/commands.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/esp_console_repl.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/split_argv.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/linenoise/linenoise.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_cmd.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_date.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_dbl.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_dstr.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_end.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_file.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_hashtable.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_int.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_lit.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_rem.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_rex.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_str.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/arg_utils.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/console/argtable3/argtable3.c" ], + "include_dirs": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/console" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/cxx", + "type": "LIBRARY", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "pthread" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/cxx/libcxx.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/cxx/cxx_exception_stubs.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/cxx/cxx_guards.cpp" ], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver", + "type": "LIBRARY", + "lib": "__idf_driver", + "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support" ], + "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/driver/libdriver.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/gpio.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/gpio_glitch_filter_ops.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gpio/rtc_io.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/spi_bus_lock.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/adc_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/adc_dma_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/dac_oneshot.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/dac_cosine.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/dac_continuous.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/dac_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/dac/esp32/dac_dma.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/dac_common_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/esp32/dac_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/gptimer.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/gptimer/gptimer_priv.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/timer_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/i2c.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/i2c_master.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/i2c_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2c/i2c_slave.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/i2s_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/i2s_platform.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/i2s_std.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/i2s_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/i2s/i2s_pdm.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/ledc/ledc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_cap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_cmpr.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_com.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_fault.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_gen.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_oper.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_sync.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/mcpwm/mcpwm_timer.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/mcpwm_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/pcnt/pulse_cnt.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/pcnt_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/rmt_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/rmt_encoder.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/rmt_rx.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/rmt/rmt_tx.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/rmt_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdio_slave/sdio_slave.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/sdmmc_transaction.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sdmmc/sdmmc_host.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/sigma_delta/sdm.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/sigma_delta_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/gpspi/spi_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/gpspi/spi_master.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/gpspi/spi_slave.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/sdspi/sdspi_crc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/sdspi/sdspi_host.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/spi/sdspi/sdspi_transaction.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/touch_sensor_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/touch_sensor/esp32/touch_sensor.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/twai/twai.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/uart/uart.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver/deprecated/adc_i2s_deprecated.c" ], + "include_dirs": [ "include", "deprecated", "analog_comparator/include", "dac/include", "gpio/include", "gptimer/include", "i2c/include", "i2s/include", "ledc/include", "mcpwm/include", "parlio/include", "pcnt/include", "rmt/include", "sdio_slave/include", "sdmmc/include", "sigma_delta/include", "spi/include", "temperature_sensor/include", "touch_sensor/include", "twai/include", "uart/include", "usb_serial_jtag/include", "touch_sensor/esp32/include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse", + "type": "LIBRARY", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/efuse/libefuse.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_table.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_fields.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/esp32/esp_efuse_utility.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/esp_efuse_api.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/esp_efuse_fields.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/esp_efuse_utility.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls", + "type": "LIBRARY", + "lib": "__idf_esp-tls", + "reqs": [ "mbedtls" ], + "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp-tls/libesp-tls.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp_tls.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp_tls_error_capture.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp_tls_platform_port.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls/esp_tls_mbedtls.c" ], + "include_dirs": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc", + "type": "LIBRARY", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "driver", "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_adc/libesp_adc.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/adc_cali.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/adc_cali_curve_fitting.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/adc_oneshot.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/adc_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/adc_continuous.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/esp32/adc_cali_line_fitting.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc/deprecated/esp32/esp_adc_cal_legacy.c" ], + "include_dirs": [ "include", "interface", "esp32/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_app_format", + "type": "LIBRARY", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_app_format/libesp_app_format.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format", + "type": "LIBRARY", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c" ], + "include_dirs": [ "include" ] + }, + "esp_coex": { + "alias": "idf::esp_coex", + "target": "___idf_esp_coex", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex", + "type": "LIBRARY", + "lib": "__idf_esp_coex", + "reqs": [], + "priv_reqs": [ "esp_timer", "driver", "esp_event" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_coex/libesp_coex.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex/esp32/esp_coex_adapter.c" ], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_common/libesp_common.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common/src/esp_err_to_name.c" ], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth", + "type": "LIBRARY", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "driver", "log", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_eth/libesp_eth.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_802_3.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_mac_esp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_dp83848.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_ip101.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_ksz80xx.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_lan87xx.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth/src/esp_eth_phy_rtl8201.c" ], + "include_dirs": [ "include" ] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event", + "type": "LIBRARY", + "lib": "__idf_esp_event", + "reqs": [ "log", "esp_common", "freertos" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_event/libesp_event.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/default_event_loop.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/esp_event.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_event/esp_event_private.c" ], + "include_dirs": [ "include" ] + }, + "esp_gdbstub": { + "alias": "idf::esp_gdbstub", + "target": "___idf_esp_gdbstub", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub", + "type": "LIBRARY", + "lib": "__idf_esp_gdbstub", + "reqs": [ "freertos" ], + "priv_reqs": [ "soc", "esp_rom", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_gdbstub/libesp_gdbstub.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/gdbstub.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/packet.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub_xtensa.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub-entry.S", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_gdbstub/src/port/xtensa/xt_debugexception.S" ], + "include_dirs": [ "include" ] + }, + "esp_hid": { + "alias": "idf::esp_hid", + "target": "___idf_esp_hid", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid", + "type": "LIBRARY", + "lib": "__idf_esp_hid", + "reqs": [ "esp_event", "bt" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hid/libesp_hid.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/src/esp_hidd.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/src/esp_hidh.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hid/src/esp_hid_common.c" ], + "include_dirs": [ "include" ] + }, + "esp_http_client": { + "alias": "idf::esp_http_client", + "target": "___idf_esp_http_client", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client", + "type": "LIBRARY", + "lib": "__idf_esp_http_client", + "reqs": [ "lwip", "esp_event" ], + "priv_reqs": [ "tcp_transport", "http_parser" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_client/libesp_http_client.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/esp_http_client.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/http_auth.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/http_header.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_client/lib/http_utils.c" ], + "include_dirs": [ "include" ] + }, + "esp_http_server": { + "alias": "idf::esp_http_server", + "target": "___idf_esp_http_server", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server", + "type": "LIBRARY", + "lib": "__idf_esp_http_server", + "reqs": [ "http_parser", "esp_event" ], + "priv_reqs": [ "mbedtls", "lwip", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_http_server/libesp_http_server.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_main.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_parse.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_sess.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_txrx.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_uri.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/httpd_ws.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_http_server/src/util/ctrl_sock.c" ], + "include_dirs": [ "include" ] + }, + "esp_https_ota": { + "alias": "idf::esp_https_ota", + "target": "___idf_esp_https_ota", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota", + "type": "LIBRARY", + "lib": "__idf_esp_https_ota", + "reqs": [ "esp_http_client", "bootloader_support", "esp_app_format", "esp_event" ], + "priv_reqs": [ "log", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_https_ota/libesp_https_ota.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota/src/esp_https_ota.c" ], + "include_dirs": [ "include" ] + }, + "esp_https_server": { + "alias": "idf::esp_https_server", + "target": "___idf_esp_https_server", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_server", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "driver", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/cpu.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/esp_memory_utils.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/cpu_region_protect.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/esp_clk.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/clk_ctrl_os.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/hw_random.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/intr_alloc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/mac_addr.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/periph_ctrl.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/revision.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/rtc_module.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sleep_modes.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sleep_console.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sleep_gpio.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sleep_event.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sleep_modem.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/regi2c_ctrl.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/esp_gpio_reserve.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/io_mux.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/esp_clk_tree.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/rtc_wdt.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/mspi_timing_tuning.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/mspi_timing_config.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/sleep_wake_stub.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/esp_clock_output.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_clk.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_clk_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_sleep.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/rtc_time.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/chip_info.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/cache_sram_mmu.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/esp_crypto_lock.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support/port/esp32/sar_periph_ctrl.c" ], + "include_dirs": [ "include", "include/soc", "include/soc/esp32" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd", + "type": "LIBRARY", + "lib": "__idf_esp_lcd", + "reqs": [ "driver" ], + "priv_reqs": [ "esp_mm", "esp_psram" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_lcd/libesp_lcd.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_io_i2c_v1.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_io_i2c_v2.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_io_spi.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_nt35510.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd/src/esp_lcd_panel_io_i2s.c" ], + "include_dirs": [ "include", "interface" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl", + "type": "LIBRARY", + "lib": "__idf_esp_local_ctrl", + "reqs": [ "protocomm", "esp_https_server" ], + "priv_reqs": [ "protobuf-c" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c" ], + "include_dirs": [ "include" ] + }, + "esp_mm": { + "alias": "idf::esp_mm", + "target": "___idf_esp_mm", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm", + "type": "LIBRARY", + "lib": "__idf_esp_mm", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_mm/libesp_mm.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/esp_mmu_map.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/port/esp32/ext_mem_layout.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/esp_cache.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_mm/cache_esp32.c" ], + "include_dirs": [ "include" ] + }, + "esp_netif": { + "alias": "idf::esp_netif", + "target": "___idf_esp_netif", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif", + "type": "LIBRARY", + "lib": "__idf_esp_netif", + "reqs": [ "esp_event" ], + "priv_reqs": [ "esp_netif_stack" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_netif/libesp_netif.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/esp_netif_handlers.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/esp_netif_objects.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/esp_netif_defaults.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/netif/wlanif.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/netif/ethernetif.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif/lwip/netif/esp_pbuf_ref.c" ], + "include_dirs": [ "include" ] + }, + "esp_netif_stack": { + "alias": "idf::esp_netif_stack", + "target": "___idf_esp_netif_stack", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_netif_stack", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_netif_stack", + "reqs": [ "lwip" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "esp_partition": { + "alias": "idf::esp_partition", + "target": "___idf_esp_partition", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition", + "type": "LIBRARY", + "lib": "__idf_esp_partition", + "reqs": [], + "priv_reqs": [ "esp_system", "bootloader_support", "spi_flash", "app_update", "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_partition/libesp_partition.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/partition.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition/partition_target.c" ], + "include_dirs": [ "include" ] + }, + "esp_phy": { + "alias": "idf::esp_phy", + "target": "___idf_esp_phy", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy", + "type": "LIBRARY", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "driver", "efuse", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_phy/libesp_phy.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/src/phy_override.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/src/lib_printf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/src/phy_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/src/phy_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy/src/btbb_init.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm", + "type": "LIBRARY", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "driver", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_pm/libesp_pm.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/pm_locks.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/pm_trace.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm/pm_impl.c" ], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm", "bootloader_support", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf", + "type": "LIBRARY", + "lib": "__idf_esp_ringbuf", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_ringbuf/libesp_ringbuf.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_ringbuf/ringbuf.c" ], + "include_dirs": [ "include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S" ], + "include_dirs": [ "include", "include/esp32", "esp32" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [], + "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "pthread", "bootloader_support", "efuse", "driver", "esp_partition" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_system/libesp_system.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/esp_err.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/crosscore_int.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/esp_ipc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/freertos_hooks.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/int_wdt.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/panic.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/esp_system.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/startup.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/system_time.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/stack_check.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/ubsan.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/xt_wdt.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/debug_stubs.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/task_wdt/task_wdt.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/cpu_start.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/panic_handler.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/esp_system_chip.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/brownout.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/esp_ipc_isr.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_port.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/panic_arch.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/panic_handler_asm.S", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers_asm.S", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/debug_stubs.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/arch/xtensa/trax.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/highint_hdl.S", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/clk.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/reset_reason.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/system_internal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system/port/soc/esp32/cache_err_int.c" ], + "include_dirs": [ "include" ] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer", + "type": "LIBRARY", + "lib": "__idf_esp_timer", + "reqs": [ "esp_common" ], + "priv_reqs": [ "soc", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_timer/libesp_timer.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/src/esp_timer.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/src/ets_timer_legacy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/src/system_time.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/src/esp_timer_impl_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer/src/esp_timer_impl_lac.c" ], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi", + "type": "LIBRARY", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "driver", "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/esp_wifi/libesp_wifi.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/mesh_event.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/smartconfig.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/wifi_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/wifi_default.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/wifi_netif.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/wifi_default_ap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/esp32/esp_adapter.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi/src/smartconfig_ack.c" ], + "include_dirs": [ "include", "wifi_apps/include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump", + "type": "LIBRARY", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espcoredump/libespcoredump.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_flash.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_uart.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_elf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_binary.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_sha.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/core_dump_crc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump/src/port/xtensa/core_dump_port.c" ], + "include_dirs": [ "include", "include/port/xtensa" ] + }, + "espressif__esp-dsp": { + "alias": "idf::espressif__esp-dsp", + "target": "___idf_espressif__esp-dsp", + "prefix": "idf", + "dir": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp", + "type": "LIBRARY", + "lib": "__idf_espressif__esp-dsp", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/espressif__esp-dsp/libespressif__esp-dsp.a", + "sources": [ "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/misc/dsps_pwroftwo.cpp", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/misc/aes3_tie_log.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_m_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_m_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dspi_dotprod_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dspi_dotprod_off_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s8_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u8_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s16_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u16_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s8_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u8_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/float/dspm_add_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/float/dspm_add_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/float/dspm_addc_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/float/dspm_addc_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/float/dspm_mulc_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/float/dspm_mulc_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/float/dspm_sub_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/float/dspm_sub_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mat/mat.cpp", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/float/dsps_mulc_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/float/dsps_addc_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/fixed/dsps_mulc_s16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/fixed/dsps_mulc_s16_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/float/dsps_add_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s8_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s8_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/float/dsps_sub_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s8_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s8_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/float/dsps_mul_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s8_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s8_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/float/dsps_mulc_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/float/dsps_addc_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/float/dsps_add_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/float/dsps_sub_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/float/dsps_mul_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/float/dsps_sqrt_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ae32_.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_aes3_.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ae32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_fc32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_fc32_ae32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/float/dsps_dct_f32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/snr/float/dsps_snr_f32.cpp", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/sfdr/float/dsps_sfdr_f32.cpp", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_d_gen.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_h_gen.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_tone_gen.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen_init.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/esp32s3/dsps_memset_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/esp32s3/dsps_memcpy_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/view/dsps_view.cpp", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/float/dsps_wind_hann_f32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/float/dsps_wind_blackman_f32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/float/dsps_wind_nuttall_f32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/float/dsps_wind_flat_top_f32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_corr_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_corr_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_ccorr_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_ccorr_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_gen_f32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_init_f32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_init_f32.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_init_s16.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_ansi.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fir_s16_m_ae32.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_aes3.S", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/common/ekf.cpp", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/ekf_imu13states.cpp" ], + "include_dirs": [ "modules/dotprod/include", "modules/support/include", "modules/support/mem/include", "modules/windows/include", "modules/windows/hann/include", "modules/windows/blackman/include", "modules/windows/blackman_harris/include", "modules/windows/blackman_nuttall/include", "modules/windows/nuttall/include", "modules/windows/flat_top/include", "modules/iir/include", "modules/fir/include", "modules/math/include", "modules/math/add/include", "modules/math/sub/include", "modules/math/mul/include", "modules/math/addc/include", "modules/math/mulc/include", "modules/math/sqrt/include", "modules/matrix/mul/include", "modules/matrix/add/include", "modules/matrix/addc/include", "modules/matrix/mulc/include", "modules/matrix/sub/include", "modules/matrix/include", "modules/fft/include", "modules/dct/include", "modules/conv/include", "modules/common/include", "modules/matrix/mul/test/include", "modules/kalman/ekf/include", "modules/kalman/ekf_imu13states/include" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": [] + }, + "fatfs": { + "alias": "idf::fatfs", + "target": "___idf_fatfs", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs", + "type": "LIBRARY", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc" ], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/fatfs/libfatfs.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio/diskio.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio/diskio_rawflash.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio/diskio_wl.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src/ff.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/src/ffunicode.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/port/freertos/ffsystem.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/diskio/diskio_sdmmc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs/vfs_fat.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c" ], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos", + "type": "LIBRARY", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/freertos/libfreertos.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/heap_idf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/app_startup.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/port_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/port_systick.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/list.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/freertos/esp_additions/freertos_compatibility.c", "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/hal/libhal.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/hal_utils.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mpu_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/efuse_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/efuse_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/wdt_hal_iram.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mmu_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/cache_hal_esp32.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_flash_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_flash_hal_iram.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/clk_tree_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/uart_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/uart_hal_iram.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/gpio_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/rtc_io_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/timer_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/ledc_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/ledc_hal_iram.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/i2c_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/i2c_hal_iram.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/rmt_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/pcnt_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mcpwm_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/twai_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/twai_hal_iram.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/i2s_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/sdm_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/sdmmc_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/emac_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/adc_hal_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/adc_oneshot_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/adc_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/mpi_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/sha_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/aes_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/brownout_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_hal_iram.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_slave_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/spi_slave_hal_iram.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/sdio_slave_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/touch_sensor_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/touch_sensor_hal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal/esp32/gpio_hal_workaround.c" ], + "include_dirs": [ "platform_port/include", "esp32/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/heap", + "type": "LIBRARY", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/heap/libheap.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/heap/heap_caps.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/heap/heap_caps_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/heap/multi_heap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/heap/tlsf/tlsf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/heap/port/memory_layout_utils.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/heap/port/esp32/memory_layout.c" ], + "include_dirs": [ "include" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser", + "type": "LIBRARY", + "lib": "__idf_http_parser", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/http_parser/libhttp_parser.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/http_parser/http_parser.c" ], + "include_dirs": [ "." ] + }, + "idf_test": { + "alias": "idf::idf_test", + "target": "___idf_idf_test", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test", + "type": "CONFIG_ONLY", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include", "include/esp32" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154", + "type": "CONFIG_ONLY", + "lib": "__idf_ieee802154", + "reqs": [], + "priv_reqs": [ "esp_phy", "driver", "esp_timer", "esp_coex", "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "json": { + "alias": "idf::json", + "target": "___idf_json", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/json", + "type": "LIBRARY", + "lib": "__idf_json", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/json/libjson.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON/cJSON.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/json/cJSON/cJSON_Utils.c" ], + "include_dirs": [ "cJSON" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/log", + "type": "LIBRARY", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "soc", "hal", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/log/liblog.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/log/log.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/log/log_buffers.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/log/log_freertos.c" ], + "include_dirs": [ "include" ] + }, + "lwip": { + "alias": "idf::lwip", + "target": "___idf_lwip", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip", + "type": "LIBRARY", + "lib": "__idf_lwip", + "reqs": [], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/lwip/liblwip.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/apps/sntp/sntp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/api_lib.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/api_msg.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/err.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/if_api.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/netbuf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/netdb.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/netifapi.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/sockets.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/api/tcpip.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/def.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/dns.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/inet_chksum.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ip.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/mem.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/memp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/netif.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/pbuf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/raw.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/stats.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/sys.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/tcp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/tcp_in.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/tcp_out.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/timeouts.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/udp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ethernet.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/bridgeif.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/slipif.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/hooks/tcp_isn_default.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/debug/lwip_debug.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/sockets_ext.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/freertos/sys_arch.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/apps/ping/esp_ping.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/apps/ping/ping.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/apps/ping/ping_sock.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c" ], + "include_dirs": [ "include", "include/apps", "include/apps/sntp", "lwip/src/include", "port/include", "port/freertos/include/", "port/esp32xx/include", "port/esp32xx/include/arch", "port/esp32xx/include/sys" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main", + "type": "LIBRARY", + "lib": "__idf_main", + "reqs": [], + "priv_reqs": [ "espressif__esp-dsp" ], + "managed_reqs": [], + "managed_priv_reqs": [ "espressif__esp-dsp" ], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/main/libmain.a", + "sources": [ "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/station_example_main.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/http_control.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter/butterworthdesign.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/filter/signalpath.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/button.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/power/husb238.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/flash.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main/ssd1306/ssd1306.c" ], + "include_dirs": [ "../html", "filter" ] + }, + "mbedtls": { + "alias": "idf::mbedtls", + "target": "___idf_mbedtls", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls", + "type": "LIBRARY", + "lib": "__idf_mbedtls", + "reqs": [], + "priv_reqs": [ "soc", "esp_hw_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/libmbedtls.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c", "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/x509_crt_bundle.S" ], + "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library", "esp_crt_bundle/include" ] + }, + "mqtt": { + "alias": "idf::mqtt", + "target": "___idf_mqtt", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt", + "type": "LIBRARY", + "lib": "__idf_mqtt", + "reqs": [ "esp_event", "tcp_transport" ], + "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support", "heap" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mqtt/libmqtt.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c" ], + "include_dirs": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib", + "type": "LIBRARY", + "lib": "__idf_newlib", + "reqs": [], + "priv_reqs": [ "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/newlib/libnewlib.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/abort.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/assert.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/heap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/locks.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/poll.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/pthread.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/random.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/getentropy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/reent_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/newlib_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/syscalls.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/termios.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/stdatomic.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/time.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/sysconf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/realpath.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/newlib/port/esp_time_impl.c" ], + "include_dirs": [ "platform_include" ] + }, + "nvs_flash": { + "alias": "idf::nvs_flash", + "target": "___idf_nvs_flash", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash", + "type": "LIBRARY", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash", "newlib" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_flash/libnvs_flash.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_api.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_page.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_storage.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_partition.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_types.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_platform.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp" ], + "include_dirs": [ "include", "../spi_flash/include" ] + }, + "nvs_sec_provider": { + "alias": "idf::nvs_sec_provider", + "target": "___idf_nvs_sec_provider", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider", + "type": "LIBRARY", + "lib": "__idf_nvs_sec_provider", + "reqs": [], + "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/nvs_sec_provider/nvs_sec_provider.c" ], + "include_dirs": [ "include" ] + }, + "openthread": { + "alias": "idf::openthread", + "target": "___idf_openthread", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/openthread", + "type": "CONFIG_ONLY", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "driver" ], + "priv_reqs": [ "console", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "partition_table": { + "alias": "idf::partition_table", + "target": "___idf_partition_table", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": [] + }, + "perfmon": { + "alias": "idf::perfmon", + "target": "___idf_perfmon", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon", + "type": "LIBRARY", + "lib": "__idf_perfmon", + "reqs": [ "xtensa" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/perfmon/libperfmon.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/xtensa_perfmon_access.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/xtensa_perfmon_apis.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/perfmon/xtensa_perfmon_masks.c" ], + "include_dirs": [ "include" ] + }, + "protobuf-c": { + "alias": "idf::protobuf-c", + "target": "___idf_protobuf-c", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c", + "type": "LIBRARY", + "lib": "__idf_protobuf-c", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protobuf-c/libprotobuf-c.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c" ], + "include_dirs": [ "protobuf-c" ] + }, + "protocomm": { + "alias": "idf::protocomm", + "target": "___idf_protocomm", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm", + "type": "LIBRARY", + "lib": "__idf_protocomm", + "reqs": [ "bt" ], + "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/protocomm/libprotocomm.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/common/protocomm.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c/constants.pb-c.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c/sec0.pb-c.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c/sec1.pb-c.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c/sec2.pb-c.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/proto-c/session.pb-c.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/transports/protocomm_console.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/transports/protocomm_httpd.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/security/security0.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/security/security1.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/security/security2.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c" ], + "include_dirs": [ "include/common", "include/security", "include/transports", "include/crypto/srp6a", "proto-c" ] + }, + "pthread": { + "alias": "idf::pthread", + "target": "___idf_pthread", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread", + "type": "LIBRARY", + "lib": "__idf_pthread", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/pthread/libpthread.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/pthread.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/pthread_cond_var.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/pthread_local_storage.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/pthread_rwlock.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/pthread/pthread_semaphore.c" ], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc", + "type": "LIBRARY", + "lib": "__idf_sdmmc", + "reqs": [ "driver" ], + "priv_reqs": [ "soc", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/sdmmc/libsdmmc.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_cmd.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_io.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_mmc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc/sdmmc_sd.c" ], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/soc/libsoc.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/lldesc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/dport_access_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/interrupts.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/gpio_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/uart_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/dport_access.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/adc_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/spi_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/ledc_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/pcnt_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/rmt_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdm_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/i2s_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/i2c_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/timer_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/lcd_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/mcpwm_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/mpi_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdmmc_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/touch_sensor_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/twai_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/dac_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/rtc_io_periph.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc/esp32/sdio_slave_periph.c" ], + "include_dirs": [ "include", "esp32", "esp32/include" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash", + "type": "LIBRARY", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "app_update", "soc", "driver", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spi_flash/libspi_flash.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/flash_brownout_hook.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_drivers.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_generic.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_issi.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_mxic.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_gd.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_winbond.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_boya.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_chip_th.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/memspi_host_driver.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/cache_utils.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/flash_mmap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/flash_ops.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_wrap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/esp_flash_api.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/esp_flash_spi_init.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_os_func_app.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash/spi_flash_os_func_noos.c" ], + "include_dirs": [ "include" ] + }, + "spiffs": { + "alias": "idf::spiffs", + "target": "___idf_spiffs", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs", + "type": "LIBRARY", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/spiffs/libspiffs.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs_api.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src/spiffs_check.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs/esp_spiffs.c" ], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport", + "type": "LIBRARY", + "lib": "__idf_tcp_transport", + "reqs": [ "esp-tls", "lwip", "esp_timer" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/tcp_transport/libtcp_transport.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/transport.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/transport_ssl.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/transport_internal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/transport_socks_proxy.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/tcp_transport/transport_ws.c" ], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/ulp", + "type": "CONFIG_ONLY", + "lib": "__idf_ulp", + "reqs": [ "driver", "esp_adc" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "unity": { + "alias": "idf::unity", + "target": "___idf_unity", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/unity", + "type": "LIBRARY", + "lib": "__idf_unity", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/unity/libunity.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity/src/unity.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity_runner.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity_utils_freertos.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity_utils_cache.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity_utils_memory.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/unity/unity_port_esp32.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c" ], + "include_dirs": [ "include", "unity/src" ] + }, + "usb": { + "alias": "idf::usb", + "target": "___idf_usb", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/usb", + "type": "CONFIG_ONLY", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs", + "type": "LIBRARY", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "driver", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/vfs/libvfs.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/vfs.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/vfs_eventfd.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/vfs_uart.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/vfs_semihost.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs/vfs_console.c" ], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling", + "type": "LIBRARY", + "lib": "__idf_wear_levelling", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wear_levelling/libwear_levelling.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/Partition.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/SPI_Flash.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/WL_Flash.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/crc32.cpp", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wear_levelling/wear_levelling.cpp" ], + "include_dirs": [ "include" ] + }, + "wifi_provisioning": { + "alias": "idf::wifi_provisioning", + "target": "___idf_wifi_provisioning", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning", + "type": "LIBRARY", + "lib": "__idf_wifi_provisioning", + "reqs": [ "lwip", "protocomm" ], + "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wifi_provisioning/libwifi_provisioning.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/wifi_config.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/wifi_scan.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/wifi_ctrl.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/manager.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/handlers.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/scheme_console.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wifi_provisioning/src/scheme_softap.c" ], + "include_dirs": [ "include" ] + }, + "wpa_supplicant": { + "alias": "idf::wpa_supplicant", + "target": "___idf_wpa_supplicant", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant", + "type": "LIBRARY", + "lib": "__idf_wpa_supplicant", + "reqs": [], + "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/wpa_supplicant/libwpa_supplicant.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/os_xtensa.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/port/eloop.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/ap_config.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/pmksa_cache_auth.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/sta_info.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/ieee802_11.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/ap/comeback_token.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/common/sae.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/common/dragonfly.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/common/wpa_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/bitfield.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/aes-siv.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha256-kdf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/aes-gcm.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha1-tlsprf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha256-tlsprf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha384-tlsprf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha256-prf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha1-prf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha384-prf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/sha1-tprf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_common/eap_wsc_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/common/ieee802_11_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/base64.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/ext_password.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/uuid.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/utils/json.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/common/sae_pk.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_common.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wps.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_owe.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/rc4.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c" ], + "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa", + "type": "LIBRARY", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/xtensa/libxtensa.a", + "sources": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/eri.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xt_trax.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xtensa_context.S", "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xtensa_intr_asm.S", "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xtensa_intr.c", "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa/xtensa_vectors.S" ], + "include_dirs": [ "esp32/include", "include", "deprecated_include" ] + } + }, + "all_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/app_trace", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "soc", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/bt", + "lib": "__idf_bt", + "reqs": [ "esp_timer", "esp_wifi" ], + "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "driver", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/console", + "lib": "__idf_console", + "reqs": [ "vfs" ], + "priv_reqs": [ "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/console" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/cxx", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "pthread" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/driver", + "lib": "__idf_driver", + "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support" ], + "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "deprecated", "analog_comparator/include", "dac/include", "gpio/include", "gptimer/include", "i2c/include", "i2s/include", "ledc/include", "mcpwm/include", "parlio/include", "pcnt/include", "rmt/include", "sdio_slave/include", "sdmmc/include", "sigma_delta/include", "spi/include", "temperature_sensor/include", "touch_sensor/include", "twai/include", "uart/include", "usb_serial_jtag/include", "touch_sensor/esp32/include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/efuse", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp-tls", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_adc", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "driver", "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "esp32/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_coex", + "lib": "__idf_esp_coex", + "reqs": [], + "priv_reqs": [ "esp_timer", "driver", "esp_event" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_common", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_eth", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "driver", "log", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_ota", + "lib": "__idf_esp_https_ota", + "reqs": [ "esp_http_client", "bootloader_support", "esp_app_format", "esp_event" ], + "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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_https_server", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_hw_support", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "driver", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/soc", "include/soc/esp32" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_lcd", + "lib": "__idf_esp_lcd", + "reqs": [ "driver" ], + "priv_reqs": [ "esp_mm", "esp_psram" ], + "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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_local_ctrl", + "lib": "__idf_esp_local_ctrl", + "reqs": [ "protocomm", "esp_https_server" ], + "priv_reqs": [ "protobuf-c" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_mm": { + "alias": "idf::esp_mm", + "target": "___idf_esp_mm", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_partition", + "lib": "__idf_esp_partition", + "reqs": [], + "priv_reqs": [ "esp_system", "bootloader_support", "spi_flash", "app_update", "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_phy": { + "alias": "idf::esp_phy", + "target": "___idf_esp_phy", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_phy", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "driver", "efuse", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_pm", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "driver", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_psram", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm", "bootloader_support", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_rom", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32", "esp32" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_system", + "lib": "__idf_esp_system", + "reqs": [], + "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "pthread", "bootloader_support", "efuse", "driver", "esp_partition" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_timer", + "lib": "__idf_esp_timer", + "reqs": [ "esp_common" ], + "priv_reqs": [ "soc", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/esp_wifi", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "driver", "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "wifi_apps/include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/espcoredump", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/port/xtensa" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/fatfs", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc" ], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/hal", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_port/include", "esp32/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/heap", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/idf_test", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/ieee802154", + "lib": "__idf_ieee802154", + "reqs": [], + "priv_reqs": [ "esp_phy", "driver", "esp_timer", "esp_coex", "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "json": { + "alias": "idf::json", + "target": "___idf_json", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/log", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "soc", "hal", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "lwip": { + "alias": "idf::lwip", + "target": "___idf_lwip", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/lwip", + "lib": "__idf_lwip", + "reqs": [], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/apps", "include/apps/sntp", "lwip/src/include", "port/include", "port/freertos/include/", "port/esp32xx/include", "port/esp32xx/include/arch", "port/esp32xx/include/sys" ] + }, + "mbedtls": { + "alias": "idf::mbedtls", + "target": "___idf_mbedtls", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": [ "C:/Users/Job/esp/v5.2.2/esp-idf/components/mqtt/esp-mqtt/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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", "../spi_flash/include" ] + }, + "nvs_sec_provider": { + "alias": "idf::nvs_sec_provider", + "target": "___idf_nvs_sec_provider", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/openthread", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "driver" ], + "priv_reqs": [ "console", "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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/protocomm", + "lib": "__idf_protocomm", + "reqs": [ "bt" ], + "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "driver" ], + "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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/riscv", + "lib": "__idf_riscv", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/sdmmc", + "lib": "__idf_sdmmc", + "reqs": [ "driver" ], + "priv_reqs": [ "soc", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/soc", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32", "esp32/include" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/spi_flash", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "app_update", "soc", "driver", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "spiffs": { + "alias": "idf::spiffs", + "target": "___idf_spiffs", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/spiffs", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/touch_element", + "lib": "__idf_touch_element", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/usb", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/esp-idf/components/vfs", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "driver", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/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": "C:/Users/Job/esp/v5.2.2/esp-idf/components/xtensa", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32/include", "include", "deprecated_include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/main", + "lib": "__idf_main", + "reqs": [], + "priv_reqs": [ "espressif__esp-dsp" ], + "managed_reqs": [], + "managed_priv_reqs": [ "espressif__esp-dsp" ], + "include_dirs": [ "../html", "filter" ] + }, + "espressif__esp-dsp": { + "alias": "idf::espressif__esp-dsp", + "target": "___idf_espressif__esp-dsp", + "prefix": "idf", + "dir": "C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/managed_components/espressif__esp-dsp", + "lib": "__idf_espressif__esp-dsp", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "modules/dotprod/include", "modules/support/include", "modules/support/mem/include", "modules/windows/include", "modules/windows/hann/include", "modules/windows/blackman/include", "modules/windows/blackman_harris/include", "modules/windows/blackman_nuttall/include", "modules/windows/nuttall/include", "modules/windows/flat_top/include", "modules/iir/include", "modules/fir/include", "modules/math/include", "modules/math/add/include", "modules/math/sub/include", "modules/math/mul/include", "modules/math/addc/include", "modules/math/mulc/include", "modules/math/sqrt/include", "modules/matrix/mul/include", "modules/matrix/add/include", "modules/matrix/addc/include", "modules/matrix/mulc/include", "modules/matrix/sub/include", "modules/matrix/include", "modules/fft/include", "modules/dct/include", "modules/conv/include", "modules/common/include", "modules/matrix/mul/test/include", "modules/kalman/ekf/include", "modules/kalman/ekf_imu13states/include" ] + } + }, + "debug_prefix_map_gdbinit": "" +} diff --git a/ESPIDFNEW/build/project_elf_src_esp32.c b/ESPIDFNEW/build/project_elf_src_esp32.c new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/build/x509_crt_bundle.S b/ESPIDFNEW/build/x509_crt_bundle.S new file mode 100644 index 0000000..c01f14a --- /dev/null +++ b/ESPIDFNEW/build/x509_crt_bundle.S @@ -0,0 +1,4022 @@ +/* * Data converted from C:/Users/Job/source/repos/ESPVBAN/ESPIDFNEW/build/esp-idf/mbedtls/x509_crt_bundle + */ +.data +.section .rodata.embedded + +.global x509_crt_bundle +x509_crt_bundle: + +.global _binary_x509_crt_bundle_start +_binary_x509_crt_bundle_start: /* for objcopy compatibility */ +.byte 0x00, 0x8a, 0x00, 0x36, 0x01, 0x26, 0x30, 0x34, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09 +.byte 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x08, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 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, 0xc8, 0x68, 0xf1 +.byte 0xc9, 0xd6, 0xd6, 0xb3, 0x34, 0x75, 0x26, 0x82, 0x1e, 0xec, 0xb4, 0xbe, 0xea, 0x5c, 0xe1, 0x26 +.byte 0xed, 0x11, 0x47, 0x61, 0xe1, 0xa2, 0x7c, 0x16, 0x78, 0x40, 0x21, 0xe4, 0x60, 0x9e, 0x5a, 0xc8 +.byte 0x63, 0xe1, 0xc4, 0xb1, 0x96, 0x92, 0xff, 0x18, 0x6d, 0x69, 0x23, 0xe1, 0x2b, 0x62, 0xf7, 0xdd +.byte 0xe2, 0x36, 0x2f, 0x91, 0x07, 0xb9, 0x48, 0xcf, 0x0e, 0xec, 0x79, 0xb6, 0x2c, 0xe7, 0x34, 0x4b +.byte 0x70, 0x08, 0x25, 0xa3, 0x3c, 0x87, 0x1b, 0x19, 0xf2, 0x81, 0x07, 0x0f, 0x38, 0x90, 0x19, 0xd3 +.byte 0x11, 0xfe, 0x86, 0xb4, 0xf2, 0xd1, 0x5e, 0x1e, 0x1e, 0x96, 0xcd, 0x80, 0x6c, 0xce, 0x3b, 0x31 +.byte 0x93, 0xb6, 0xf2, 0xa0, 0xd0, 0xa9, 0x95, 0x12, 0x7d, 0xa5, 0x9a, 0xcc, 0x6b, 0xc8, 0x84, 0x56 +.byte 0x8a, 0x33, 0xa9, 0xe7, 0x22, 0x15, 0x53, 0x16, 0xf0, 0xcc, 0x17, 0xec, 0x57, 0x5f, 0xe9, 0xa2 +.byte 0x0a, 0x98, 0x09, 0xde, 0xe3, 0x5f, 0x9c, 0x6f, 0xdc, 0x48, 0xe3, 0x85, 0x0b, 0x15, 0x5a, 0xa6 +.byte 0xba, 0x9f, 0xac, 0x48, 0xe3, 0x09, 0xb2, 0xf7, 0xf4, 0x32, 0xde, 0x5e, 0x34, 0xbe, 0x1c, 0x78 +.byte 0x5d, 0x42, 0x5b, 0xce, 0x0e, 0x22, 0x8f, 0x4d, 0x90, 0xd7, 0x7d, 0x32, 0x18, 0xb3, 0x0b, 0x2c +.byte 0x6a, 0xbf, 0x8e, 0x3f, 0x14, 0x11, 0x89, 0x20, 0x0e, 0x77, 0x14, 0xb5, 0x3d, 0x94, 0x08, 0x87 +.byte 0xf7, 0x25, 0x1e, 0xd5, 0xb2, 0x60, 0x00, 0xec, 0x6f, 0x2a, 0x28, 0x25, 0x6e, 0x2a, 0x3e, 0x18 +.byte 0x63, 0x17, 0x25, 0x3f, 0x3e, 0x44, 0x20, 0x16, 0xf6, 0x26, 0xc8, 0x25, 0xae, 0x05, 0x4a, 0xb4 +.byte 0xe7, 0x63, 0x2c, 0xf3, 0x8c, 0x16, 0x53, 0x7e, 0x5c, 0xfb, 0x11, 0x1a, 0x08, 0xc1, 0x46, 0x62 +.byte 0x9f, 0x22, 0xb8, 0xf1, 0xc2, 0x8d, 0x69, 0xdc, 0xfa, 0x3a, 0x58, 0x06, 0xdf, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x39, 0x02, 0x26, 0x30, 0x37, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x0b, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f, 0x6e, 0x65, 0x72, 0x61, 0x31, 0x1f +.byte 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f +.byte 0x6e, 0x65, 0x72, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x76, 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 0xc2, 0xbe, 0xeb, 0x27, 0xf0, 0x21, 0xa3, 0xf3, 0x69, 0x26, 0x55, 0x7e, 0x9d, 0xc5, 0x55, 0x16 +.byte 0x91, 0x5c, 0xfd, 0xef, 0x21, 0xbf, 0x53, 0x80, 0x7a, 0x2d, 0xd2, 0x91, 0x8c, 0x63, 0x31, 0xf0 +.byte 0xec, 0x24, 0xf0, 0xc3, 0xa5, 0xd2, 0x72, 0x7c, 0x10, 0x6d, 0xf4, 0x37, 0xb7, 0xe5, 0xe6, 0x7c +.byte 0x79, 0xea, 0x8c, 0xb5, 0x82, 0x8b, 0xae, 0x48, 0xb6, 0xac, 0x00, 0xdc, 0x65, 0x75, 0xec, 0x2a +.byte 0x4d, 0x5f, 0xc1, 0x87, 0xf5, 0x20, 0x65, 0x2b, 0x81, 0xa8, 0x47, 0x3e, 0x89, 0x23, 0x95, 0x30 +.byte 0x16, 0x90, 0x7f, 0xe8, 0x57, 0x07, 0x48, 0xe7, 0x19, 0xae, 0xbf, 0x45, 0x67, 0xb1, 0x37, 0x1b +.byte 0x06, 0x2a, 0xfe, 0xde, 0xf9, 0xac, 0x7d, 0x83, 0xfb, 0x5e, 0xba, 0xe4, 0x8f, 0x97, 0x67, 0xbe +.byte 0x4b, 0x8e, 0x8d, 0x64, 0x07, 0x57, 0x38, 0x55, 0x69, 0x34, 0x36, 0x3d, 0x13, 0x48, 0xef, 0x4f +.byte 0xe2, 0xd3, 0x66, 0x1e, 0xa4, 0xcf, 0x1a, 0xb7, 0x5e, 0x36, 0x33, 0xd4, 0xb4, 0x06, 0xbd, 0x18 +.byte 0x01, 0xfd, 0x77, 0x84, 0x50, 0x00, 0x45, 0xf5, 0x8c, 0x5d, 0xe8, 0x23, 0xbc, 0x7e, 0xfe, 0x35 +.byte 0xe1, 0xed, 0x50, 0x7b, 0xa9, 0x30, 0x8d, 0x19, 0xd3, 0x09, 0x8e, 0x68, 0x67, 0x5d, 0xbf, 0x3c +.byte 0x97, 0x18, 0x53, 0xbb, 0x29, 0x62, 0xc5, 0xca, 0x5e, 0x72, 0xc1, 0xc7, 0x96, 0xd4, 0xdb, 0x2d +.byte 0xa0, 0xb4, 0x1f, 0x69, 0x03, 0xec, 0xea, 0xe2, 0x50, 0xf1, 0x0c, 0x3c, 0xf0, 0xac, 0xf3, 0x53 +.byte 0x2d, 0xf0, 0x1c, 0xf5, 0xed, 0x6c, 0x39, 0x39, 0x73, 0x80, 0x16, 0xc8, 0x52, 0xb0, 0x23, 0xcd +.byte 0xe0, 0x3e, 0xdc, 0xdd, 0x3c, 0x47, 0xa0, 0xbb, 0x35, 0x8a, 0xe2, 0x98, 0x68, 0x8b, 0xbe, 0xe5 +.byte 0xbf, 0x72, 0xee, 0xd2, 0xfa, 0xa5, 0xed, 0x12, 0xed, 0xfc, 0x98, 0x18, 0xa9, 0x26, 0x76, 0xdc +.byte 0x28, 0x4b, 0x10, 0x20, 0x1c, 0xd3, 0x7f, 0x16, 0x77, 0x2d, 0xed, 0x6f, 0x80, 0xf7, 0x49, 0xbb +.byte 0x53, 0x05, 0xbb, 0x5d, 0x68, 0xc7, 0xd4, 0xc8, 0x75, 0x16, 0x3f, 0x89, 0x5a, 0x8b, 0xf7, 0x17 +.byte 0x47, 0xd4, 0x4c, 0xf1, 0xd2, 0x89, 0x79, 0x3e, 0x4d, 0x3d, 0x98, 0xa8, 0x61, 0xde, 0x3a, 0x1e +.byte 0xd2, 0xf8, 0x5e, 0x03, 0xe0, 0xc1, 0xc9, 0x1c, 0x8c, 0xd3, 0x8d, 0x4d, 0xd3, 0x95, 0x36, 0xb3 +.byte 0x37, 0x5f, 0x63, 0x63, 0x9b, 0x33, 0x14, 0xf0, 0x2d, 0x26, 0x6b, 0x53, 0x7c, 0x89, 0x8c, 0x32 +.byte 0xc2, 0x6e, 0xec, 0x3d, 0x21, 0x00, 0x39, 0xc9, 0xa1, 0x68, 0xe2, 0x50, 0x83, 0x2e, 0xb0, 0x3a +.byte 0x2b, 0xf3, 0x36, 0xa0, 0xac, 0x2f, 0xe4, 0x6f, 0x61, 0xc2, 0x51, 0x09, 0x39, 0x3e, 0x8b, 0x53 +.byte 0xb9, 0xbb, 0x67, 0xda, 0xdc, 0x53, 0xb9, 0x76, 0x59, 0x36, 0x9d, 0x43, 0xe5, 0x20, 0xe0, 0x3d +.byte 0x32, 0x60, 0x85, 0x22, 0x51, 0xb7, 0xc7, 0x33, 0xbb, 0xdd, 0x15, 0x2f, 0xa4, 0x78, 0xa6, 0x07 +.byte 0x7b, 0x81, 0x46, 0x36, 0x04, 0x86, 0xdd, 0x79, 0x35, 0xc7, 0x95, 0x2c, 0x3b, 0xb0, 0xa3, 0x17 +.byte 0x35, 0xe5, 0x73, 0x1f, 0xb4, 0x5c, 0x59, 0xef, 0xda, 0xea, 0x10, 0x65, 0x7b, 0x7a, 0xd0, 0x7f +.byte 0x9f, 0xb3, 0xb4, 0x2a, 0x37, 0x3b, 0x70, 0x8b, 0x9b, 0x5b, 0xb9, 0x2b, 0xb7, 0xec, 0xb2, 0x51 +.byte 0x12, 0x97, 0x53, 0x29, 0x5a, 0xd4, 0xf0, 0x12, 0x10, 0xdc, 0x4f, 0x02, 0xbb, 0x12, 0x92, 0x2f +.byte 0x62, 0xd4, 0x3f, 0x69, 0x43, 0x7c, 0x0d, 0xd6, 0xfc, 0x58, 0x75, 0x01, 0x88, 0x9d, 0x58, 0x16 +.byte 0x4b, 0xde, 0xba, 0x90, 0xff, 0x47, 0x01, 0x89, 0x06, 0x6a, 0xf6, 0x5f, 0xb2, 0x90, 0x6a, 0xb3 +.byte 0x02, 0xa6, 0x02, 0x88, 0xbf, 0xb3, 0x47, 0x7e, 0x2a, 0xd9, 0xd5, 0xfa, 0x68, 0x78, 0x35, 0x4d +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3a, 0x02, 0x26, 0x30, 0x38, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x0b, 0x49, 0x5a, 0x45, 0x4e, 0x50, 0x45, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x13 +.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0a, 0x49, 0x7a, 0x65, 0x6e, 0x70, 0x65, 0x2e +.byte 0x63, 0x6f, 0x6d, 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, 0xc9, 0xd3, 0x7a, 0xca, 0x0f, 0x1e, 0xac, 0xa7, 0x86, 0xe8, 0x16, 0x65 +.byte 0x6a, 0xb1, 0xc2, 0x1b, 0x45, 0x32, 0x71, 0x95, 0xd9, 0xfe, 0x10, 0x5b, 0xcc, 0xaf, 0xe7, 0xa5 +.byte 0x79, 0x01, 0x8f, 0x89, 0xc3, 0xca, 0xf2, 0x55, 0x71, 0xf7, 0x77, 0xbe, 0x77, 0x94, 0xf3, 0x72 +.byte 0xa4, 0x2c, 0x44, 0xd8, 0x9e, 0x92, 0x9b, 0x14, 0x3a, 0xa1, 0xe7, 0x24, 0x90, 0x0a, 0x0a, 0x56 +.byte 0x8e, 0xc5, 0xd8, 0x26, 0x94, 0xe1, 0xd9, 0x48, 0xe1, 0x2d, 0x3e, 0xda, 0x0a, 0x72, 0xdd, 0xa3 +.byte 0x99, 0x15, 0xda, 0x81, 0xa2, 0x87, 0xf4, 0x7b, 0x6e, 0x26, 0x77, 0x89, 0x58, 0xad, 0xd6, 0xeb +.byte 0x0c, 0xb2, 0x41, 0x7a, 0x73, 0x6e, 0x6d, 0xdb, 0x7a, 0x78, 0x41, 0xe9, 0x08, 0x88, 0x12, 0x7e +.byte 0x87, 0x2e, 0x66, 0x11, 0x63, 0x6c, 0x54, 0xfb, 0x3c, 0x9d, 0x72, 0xc0, 0xbc, 0x2e, 0xff, 0xc2 +.byte 0xb7, 0xdd, 0x0d, 0x76, 0xe3, 0x3a, 0xd7, 0xf7, 0xb4, 0x68, 0xbe, 0xa2, 0xf5, 0xe3, 0x81, 0x6e +.byte 0xc1, 0x46, 0x6f, 0x5d, 0x8d, 0xe0, 0x4d, 0xc6, 0x54, 0x55, 0x89, 0x1a, 0x33, 0x31, 0x0a, 0xb1 +.byte 0x57, 0xb9, 0xa3, 0x8a, 0x98, 0xc3, 0xec, 0x3b, 0x34, 0xc5, 0x95, 0x41, 0x69, 0x7e, 0x75, 0xc2 +.byte 0x3c, 0x20, 0xc5, 0x61, 0xba, 0x51, 0x47, 0xa0, 0x20, 0x90, 0x93, 0xa1, 0x90, 0x4b, 0xf3, 0x4e +.byte 0x7c, 0x85, 0x45, 0x54, 0x9a, 0xd1, 0x05, 0x26, 0x41, 0xb0, 0xb5, 0x4d, 0x1d, 0x33, 0xbe, 0xc4 +.byte 0x03, 0xc8, 0x25, 0x7c, 0xc1, 0x70, 0xdb, 0x3b, 0xf4, 0x09, 0x2d, 0x54, 0x27, 0x48, 0xac, 0x2f +.byte 0xe1, 0xc4, 0xac, 0x3e, 0xc8, 0xcb, 0x92, 0x4c, 0x53, 0x39, 0x37, 0x23, 0xec, 0xd3, 0x01, 0xf9 +.byte 0xe0, 0x09, 0x44, 0x4d, 0x4d, 0x64, 0xc0, 0xe1, 0x0d, 0x5a, 0x87, 0x22, 0xbc, 0xad, 0x1b, 0xa3 +.byte 0xfe, 0x26, 0xb5, 0x15, 0xf3, 0xa7, 0xfc, 0x84, 0x19, 0xe9, 0xec, 0xa1, 0x88, 0xb4, 0x44, 0x69 +.byte 0x84, 0x83, 0xf3, 0x89, 0xd1, 0x74, 0x06, 0xa9, 0xcc, 0x0b, 0xd6, 0xc2, 0xde, 0x27, 0x85, 0x50 +.byte 0x26, 0xca, 0x17, 0xb8, 0xc9, 0x7a, 0x87, 0x56, 0x2c, 0x1a, 0x01, 0x1e, 0x6c, 0xbe, 0x13, 0xad +.byte 0x10, 0xac, 0xb5, 0x24, 0xf5, 0x38, 0x91, 0xa1, 0xd6, 0x4b, 0xda, 0xf1, 0xbb, 0xd2, 0xde, 0x47 +.byte 0xb5, 0xf1, 0xbc, 0x81, 0xf6, 0x59, 0x6b, 0xcf, 0x19, 0x53, 0xe9, 0x8d, 0x15, 0xcb, 0x4a, 0xcb +.byte 0xa9, 0x6f, 0x44, 0xe5, 0x1b, 0x41, 0xcf, 0xe1, 0x86, 0xa7, 0xca, 0xd0, 0x6a, 0x9f, 0xbc, 0x4c +.byte 0x8d, 0x06, 0x33, 0x5a, 0xa2, 0x85, 0xe5, 0x90, 0x35, 0xa0, 0x62, 0x5c, 0x16, 0x4e, 0xf0, 0xe3 +.byte 0xa2, 0xfa, 0x03, 0x1a, 0xb4, 0x2c, 0x71, 0xb3, 0x58, 0x2c, 0xde, 0x7b, 0x0b, 0xdb, 0x1a, 0x0f +.byte 0xeb, 0xde, 0x21, 0x1f, 0x06, 0x77, 0x06, 0x03, 0xb0, 0xc9, 0xef, 0x99, 0xfc, 0xc0, 0xb9, 0x4f +.byte 0x0b, 0x86, 0x28, 0xfe, 0xd2, 0xb9, 0xea, 0xe3, 0xda, 0xa5, 0xc3, 0x47, 0x69, 0x12, 0xe0, 0xdb +.byte 0xf0, 0xf6, 0x19, 0x8b, 0xed, 0x7b, 0x70, 0xd7, 0x02, 0xd6, 0xed, 0x87, 0x18, 0x28, 0x2c, 0x04 +.byte 0x24, 0x4c, 0x77, 0xe4, 0x48, 0x8a, 0x1a, 0xc6, 0x3b, 0x9a, 0xd4, 0x0f, 0xca, 0xfa, 0x75, 0xd2 +.byte 0x01, 0x40, 0x5a, 0x8d, 0x79, 0xbf, 0x8b, 0xcf, 0x4b, 0xcf, 0xaa, 0x16, 0xc1, 0x95, 0xe4, 0xad +.byte 0x4c, 0x8a, 0x3e, 0x17, 0x91, 0xd4, 0xb1, 0x62, 0xe5, 0x82, 0xe5, 0x80, 0x04, 0xa4, 0x03, 0x7e +.byte 0x8d, 0xbf, 0xda, 0x7f, 0xa2, 0x0f, 0x97, 0x4f, 0x0c, 0xd3, 0x0d, 0xfb, 0xd7, 0xd1, 0xe5, 0x72 +.byte 0x7e, 0x1c, 0xc8, 0x77, 0xff, 0x5b, 0x9a, 0x0f, 0xb7, 0xae, 0x05, 0x46, 0xe5, 0xf1, 0xa8, 0x16 +.byte 0xec, 0x47, 0xa4, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3b, 0x01, 0x26, 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, 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, 0xb2, 0x78, 0x80, 0x71, 0xca, 0x78, 0xd5 +.byte 0xe3, 0x71, 0xaf, 0x47, 0x80, 0x50, 0x74, 0x7d, 0x6e, 0xd8, 0xd7, 0x88, 0x76, 0xf4, 0x99, 0x68 +.byte 0xf7, 0x58, 0x21, 0x60, 0xf9, 0x74, 0x84, 0x01, 0x2f, 0xac, 0x02, 0x2d, 0x86, 0xd3, 0xa0, 0x43 +.byte 0x7a, 0x4e, 0xb2, 0xa4, 0xd0, 0x36, 0xba, 0x01, 0xbe, 0x8d, 0xdb, 0x48, 0xc8, 0x07, 0x17, 0x36 +.byte 0x4c, 0xf4, 0xee, 0x88, 0x23, 0xc7, 0x3e, 0xeb, 0x37, 0xf5, 0xb5, 0x19, 0xf8, 0x49, 0x68, 0xb0 +.byte 0xde, 0xd7, 0xb9, 0x76, 0x38, 0x1d, 0x61, 0x9e, 0xa4, 0xfe, 0x82, 0x36, 0xa5, 0xe5, 0x4a, 0x56 +.byte 0xe4, 0x45, 0xe1, 0xf9, 0xfd, 0xb4, 0x16, 0xfa, 0x74, 0xda, 0x9c, 0x9b, 0x35, 0x39, 0x2f, 0xfa +.byte 0xb0, 0x20, 0x50, 0x06, 0x6c, 0x7a, 0xd0, 0x80, 0xb2, 0xa6, 0xf9, 0xaf, 0xec, 0x47, 0x19, 0x8f +.byte 0x50, 0x38, 0x07, 0xdc, 0xa2, 0x87, 0x39, 0x58, 0xf8, 0xba, 0xd5, 0xa9, 0xf9, 0x48, 0x67, 0x30 +.byte 0x96, 0xee, 0x94, 0x78, 0x5e, 0x6f, 0x89, 0xa3, 0x51, 0xc0, 0x30, 0x86, 0x66, 0xa1, 0x45, 0x66 +.byte 0xba, 0x54, 0xeb, 0xa3, 0xc3, 0x91, 0xf9, 0x48, 0xdc, 0xff, 0xd1, 0xe8, 0x30, 0x2d, 0x7d, 0x2d +.byte 0x74, 0x70, 0x35, 0xd7, 0x88, 0x24, 0xf7, 0x9e, 0xc4, 0x59, 0x6e, 0xbb, 0x73, 0x87, 0x17, 0xf2 +.byte 0x32, 0x46, 0x28, 0xb8, 0x43, 0xfa, 0xb7, 0x1d, 0xaa, 0xca, 0xb4, 0xf2, 0x9f, 0x24, 0x0e, 0x2d +.byte 0x4b, 0xf7, 0x71, 0x5c, 0x5e, 0x69, 0xff, 0xea, 0x95, 0x02, 0xcb, 0x38, 0x8a, 0xae, 0x50, 0x38 +.byte 0x6f, 0xdb, 0xfb, 0x2d, 0x62, 0x1b, 0xc5, 0xc7, 0x1e, 0x54, 0xe1, 0x77, 0xe0, 0x67, 0xc8, 0x0f +.byte 0x9c, 0x87, 0x23, 0xd6, 0x3f, 0x40, 0x20, 0x7f, 0x20, 0x80, 0xc4, 0x80, 0x4c, 0x3e, 0x3b, 0x24 +.byte 0x26, 0x8e, 0x04, 0xae, 0x6c, 0x9a, 0xc8, 0xaa, 0x0d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3b +.byte 0x02, 0x26, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a +.byte 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61 +.byte 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 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, 0xad, 0x96 +.byte 0x9f, 0x2d, 0x9c, 0x4a, 0x4c, 0x4a, 0x81, 0x79, 0x51, 0x99, 0xec, 0x8a, 0xcb, 0x6b, 0x60, 0x51 +.byte 0x13, 0xbc, 0x4d, 0x6d, 0x06, 0xfc, 0xb0, 0x08, 0x8d, 0xdd, 0x19, 0x10, 0x6a, 0xc7, 0x26, 0x0c +.byte 0x35, 0xd8, 0xc0, 0x6f, 0x20, 0x84, 0xe9, 0x94, 0xb1, 0x9b, 0x85, 0x03, 0xc3, 0x5b, 0xdb, 0x4a +.byte 0xe8, 0xc8, 0xf8, 0x90, 0x76, 0xd9, 0x5b, 0x4f, 0xe3, 0x4c, 0xe8, 0x06, 0x36, 0x4d, 0xcc, 0x9a +.byte 0xac, 0x3d, 0x0c, 0x90, 0x2b, 0x92, 0xd4, 0x06, 0x19, 0x60, 0xac, 0x37, 0x44, 0x79, 0x85, 0x81 +.byte 0x82, 0xad, 0x5a, 0x37, 0xe0, 0x0d, 0xcc, 0x9d, 0xa6, 0x4c, 0x52, 0x76, 0xea, 0x43, 0x9d, 0xb7 +.byte 0x04, 0xd1, 0x50, 0xf6, 0x55, 0xe0, 0xd5, 0xd2, 0xa6, 0x49, 0x85, 0xe9, 0x37, 0xe9, 0xca, 0x7e +.byte 0xae, 0x5c, 0x95, 0x4d, 0x48, 0x9a, 0x3f, 0xae, 0x20, 0x5a, 0x6d, 0x88, 0x95, 0xd9, 0x34, 0xb8 +.byte 0x52, 0x1a, 0x43, 0x90, 0xb0, 0xbf, 0x6c, 0x05, 0xb9, 0xb6, 0x78, 0xb7, 0xea, 0xd0, 0xe4, 0x3a +.byte 0x3c, 0x12, 0x53, 0x62, 0xff, 0x4a, 0xf2, 0x7b, 0xbe, 0x35, 0x05, 0xa9, 0x12, 0x34, 0xe3, 0xf3 +.byte 0x64, 0x74, 0x62, 0x2c, 0x3d, 0x00, 0x49, 0x5a, 0x28, 0xfe, 0x32, 0x44, 0xbb, 0x87, 0xdd, 0x65 +.byte 0x27, 0x02, 0x71, 0x3b, 0xda, 0x4a, 0xf7, 0x1f, 0xda, 0xcd, 0xf7, 0x21, 0x55, 0x90, 0x4f, 0x0f +.byte 0xec, 0xae, 0x82, 0xe1, 0x9f, 0x6b, 0xd9, 0x45, 0xd3, 0xbb, 0xf0, 0x5f, 0x87, 0xed, 0x3c, 0x2c +.byte 0x39, 0x86, 0xda, 0x3f, 0xde, 0xec, 0x72, 0x55, 0xeb, 0x79, 0xa3, 0xad, 0xdb, 0xdd, 0x7c, 0xb0 +.byte 0xba, 0x1c, 0xce, 0xfc, 0xde, 0x4f, 0x35, 0x76, 0xcf, 0x0f, 0xf8, 0x78, 0x1f, 0x6a, 0x36, 0x51 +.byte 0x46, 0x27, 0x61, 0x5b, 0xe9, 0x9e, 0xcf, 0xf0, 0xa2, 0x55, 0x7d, 0x7c, 0x25, 0x8a, 0x6f, 0x2f +.byte 0xb4, 0xc5, 0xcf, 0x84, 0x2e, 0x2b, 0xfd, 0x0d, 0x51, 0x10, 0x6c, 0xfb, 0x5f, 0x1b, 0xbc, 0x1b +.byte 0x7e, 0xc5, 0xae, 0x3b, 0x98, 0x01, 0x31, 0x92, 0xff, 0x0b, 0x57, 0xf4, 0x9a, 0xb2, 0xb9, 0x57 +.byte 0xe9, 0xab, 0xef, 0x0d, 0x76, 0xd1, 0xf0, 0xee, 0xf4, 0xce, 0x86, 0xa7, 0xe0, 0x6e, 0xe9, 0xb4 +.byte 0x69, 0xa1, 0xdf, 0x69, 0xf6, 0x33, 0xc6, 0x69, 0x2e, 0x97, 0x13, 0x9e, 0xa5, 0x87, 0xb0, 0x57 +.byte 0x10, 0x81, 0x37, 0xc9, 0x53, 0xb3, 0xbb, 0x7f, 0xf6, 0x92, 0xd1, 0x9c, 0xd0, 0x18, 0xf4, 0x92 +.byte 0x6e, 0xda, 0x83, 0x4f, 0xa6, 0x63, 0x99, 0x4c, 0xa5, 0xfb, 0x5e, 0xef, 0x21, 0x64, 0x7a, 0x20 +.byte 0x5f, 0x6c, 0x64, 0x85, 0x15, 0xcb, 0x37, 0xe9, 0x62, 0x0c, 0x0b, 0x2a, 0x16, 0xdc, 0x01, 0x2e +.byte 0x32, 0xda, 0x3e, 0x4b, 0xf5, 0x9e, 0x3a, 0xf6, 0x17, 0x40, 0x94, 0xef, 0x9e, 0x91, 0x08, 0x86 +.byte 0xfa, 0xbe, 0x63, 0xa8, 0x5a, 0x33, 0xec, 0xcb, 0x74, 0x43, 0x95, 0xf9, 0x6c, 0x69, 0x52, 0x36 +.byte 0xc7, 0x29, 0x6f, 0xfc, 0x55, 0x03, 0x5c, 0x1f, 0xfb, 0x9f, 0xbd, 0x47, 0xeb, 0xe7, 0x49, 0x47 +.byte 0x95, 0x0b, 0x4e, 0x89, 0x22, 0x09, 0x49, 0xe0, 0xf5, 0x61, 0x1e, 0xf1, 0xbf, 0x2e, 0x8a, 0x72 +.byte 0x6e, 0x80, 0x59, 0xff, 0x57, 0x3a, 0xf9, 0x75, 0x32, 0xa3, 0x4e, 0x5f, 0xec, 0xed, 0x28, 0x62 +.byte 0xd9, 0x4d, 0x73, 0xf2, 0xcc, 0x81, 0x17, 0x60, 0xed, 0xcd, 0xeb, 0xdc, 0xdb, 0xa7, 0xca, 0xc5 +.byte 0x7e, 0x02, 0xbd, 0xf2, 0x54, 0x08, 0x54, 0xfd, 0xb4, 0x2d, 0x09, 0x2c, 0x17, 0x54, 0x4a, 0x98 +.byte 0xd1, 0x54, 0xe1, 0x51, 0x67, 0x08, 0xd2, 0xed, 0x6e, 0x7e, 0x6f, 0x3f, 0xd2, 0x2d, 0x81, 0x59 +.byte 0x29, 0x66, 0xcb, 0x90, 0x39, 0x95, 0x11, 0x1e, 0x74, 0x27, 0xfe, 0xdd, 0xeb, 0xaf, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x3b, 0x00, 0x5b, 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, 0x33, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x29, 0x97, 0xa7 +.byte 0xc6, 0x41, 0x7f, 0xc0, 0x0d, 0x9b, 0xe8, 0x01, 0x1b, 0x56, 0xc6, 0xf2, 0x52, 0xa5, 0xba, 0x2d +.byte 0xb2, 0x12, 0xe8, 0xd2, 0x2e, 0xd7, 0xfa, 0xc9, 0xc5, 0xd8, 0xaa, 0x6d, 0x1f, 0x73, 0x81, 0x3b +.byte 0x3b, 0x98, 0x6b, 0x39, 0x7c, 0x33, 0xa5, 0xc5, 0x4e, 0x86, 0x8e, 0x80, 0x17, 0x68, 0x62, 0x45 +.byte 0x57, 0x7d, 0x44, 0x58, 0x1d, 0xb3, 0x37, 0xe5, 0x67, 0x08, 0xeb, 0x66, 0xde, 0x00, 0x3b, 0x00 +.byte 0x78, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f +.byte 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a +.byte 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x34, 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, 0xd2, 0xab, 0x8a, 0x37, 0x4f, 0xa3, 0x53, 0x0d, 0xfe, 0xc1, 0x8a, 0x7b +.byte 0x4b, 0xa8, 0x7b, 0x46, 0x4b, 0x63, 0xb0, 0x62, 0xf6, 0x2d, 0x1b, 0xdb, 0x08, 0x71, 0x21, 0xd2 +.byte 0x00, 0xe8, 0x63, 0xbd, 0x9a, 0x27, 0xfb, 0xf0, 0x39, 0x6e, 0x5d, 0xea, 0x3d, 0xa5, 0xc9, 0x81 +.byte 0xaa, 0xa3, 0x5b, 0x20, 0x98, 0x45, 0x5d, 0x16, 0xdb, 0xfd, 0xe8, 0x10, 0x6d, 0xe3, 0x9c, 0xe0 +.byte 0xe3, 0xbd, 0x5f, 0x84, 0x62, 0xf3, 0x70, 0x64, 0x33, 0xa0, 0xcb, 0x24, 0x2f, 0x70, 0xba, 0x88 +.byte 0xa1, 0x2a, 0xa0, 0x75, 0xf8, 0x81, 0xae, 0x62, 0x06, 0xc4, 0x81, 0xdb, 0x39, 0x6e, 0x29, 0xb0 +.byte 0x1e, 0xfa, 0x2e, 0x5c, 0x00, 0x3d, 0x02, 0x26, 0x30, 0x3b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x0c, 0x10, 0x41, 0x43, 0x20, 0x52, 0x41, 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d +.byte 0x54, 0x2d, 0x52, 0x43, 0x4d, 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, 0xba, 0x71, 0x80, 0x7a, 0x4c, 0x86, 0x6e, 0x7f, 0xc8, 0x13 +.byte 0x6d, 0xc0, 0xc6, 0x7d, 0x1c, 0x00, 0x97, 0x8f, 0x2c, 0x0c, 0x23, 0xbb, 0x10, 0x9a, 0x40, 0xa9 +.byte 0x1a, 0xb7, 0x87, 0x88, 0xf8, 0x9b, 0x56, 0x6a, 0xfb, 0xe6, 0x7b, 0x8e, 0x8b, 0x92, 0x8e, 0xa7 +.byte 0x25, 0x5d, 0x59, 0x11, 0xdb, 0x36, 0x2e, 0xb7, 0x51, 0x17, 0x1f, 0xa9, 0x08, 0x1f, 0x04, 0x17 +.byte 0x24, 0x58, 0xaa, 0x37, 0x4a, 0x18, 0xdf, 0xe5, 0x39, 0xd4, 0x57, 0xfd, 0xd7, 0xc1, 0x2c, 0x91 +.byte 0x01, 0x91, 0xe2, 0x22, 0xd4, 0x03, 0xc0, 0x58, 0xfc, 0x77, 0x47, 0xec, 0x8f, 0x3e, 0x74, 0x43 +.byte 0xba, 0xac, 0x34, 0x8d, 0x4d, 0x38, 0x76, 0x67, 0x8e, 0xb0, 0xc8, 0x6f, 0x30, 0x33, 0x58, 0x71 +.byte 0x5c, 0xb4, 0xf5, 0x6b, 0x6e, 0xd4, 0x01, 0x50, 0xb8, 0x13, 0x7e, 0x6c, 0x4a, 0xa3, 0x49, 0xd1 +.byte 0x20, 0x19, 0xee, 0xbc, 0xc0, 0x29, 0x18, 0x65, 0xa7, 0xde, 0xfe, 0xef, 0xdd, 0x0a, 0x90, 0x21 +.byte 0xe7, 0x1a, 0x67, 0x92, 0x42, 0x10, 0x98, 0x5f, 0x4f, 0x30, 0xbc, 0x3e, 0x1c, 0x45, 0xb4, 0x10 +.byte 0xd7, 0x68, 0x40, 0x14, 0xc0, 0x40, 0xfa, 0xe7, 0x77, 0x17, 0x7a, 0xe6, 0x0b, 0x8f, 0x65, 0x5b +.byte 0x3c, 0xd9, 0x9a, 0x52, 0xdb, 0xb5, 0xbd, 0x9e, 0x46, 0xcf, 0x3d, 0xeb, 0x91, 0x05, 0x02, 0xc0 +.byte 0x96, 0xb2, 0x76, 0x4c, 0x4d, 0x10, 0x96, 0x3b, 0x92, 0xfa, 0x9c, 0x7f, 0x0f, 0x99, 0xdf, 0xbe +.byte 0x23, 0x35, 0x45, 0x1e, 0x02, 0x5c, 0xfe, 0xb5, 0xa8, 0x9b, 0x99, 0x25, 0xda, 0x5e, 0xf3, 0x22 +.byte 0xc3, 0x39, 0xf5, 0xe4, 0x2a, 0x2e, 0xd3, 0xc6, 0x1f, 0xc4, 0x6c, 0xaa, 0xc5, 0x1c, 0x6a, 0x01 +.byte 0x05, 0x4a, 0x2f, 0xd2, 0xc5, 0xc1, 0xa8, 0x34, 0x26, 0x5d, 0x66, 0xa5, 0xd2, 0x02, 0x21, 0xf9 +.byte 0x18, 0xb7, 0x06, 0xf5, 0x4e, 0x99, 0x6f, 0xa8, 0xab, 0x4c, 0x51, 0xe8, 0xcf, 0x50, 0x18, 0xc5 +.byte 0x77, 0xc8, 0x39, 0x09, 0x2c, 0x49, 0x92, 0x32, 0x99, 0xa8, 0xbb, 0x17, 0x17, 0x79, 0xb0, 0x5a +.byte 0xc5, 0xe6, 0xa3, 0xc4, 0x59, 0x65, 0x47, 0x35, 0x83, 0x5e, 0xa9, 0xe8, 0x35, 0x0b, 0x99, 0xbb +.byte 0xe4, 0xcd, 0x20, 0xc6, 0x9b, 0x4a, 0x06, 0x39, 0xb5, 0x68, 0xfc, 0x22, 0xba, 0xee, 0x55, 0x8c +.byte 0x2b, 0x4e, 0xea, 0xf3, 0xb1, 0xe3, 0xfc, 0xb6, 0x99, 0x9a, 0xd5, 0x42, 0xfa, 0x71, 0x4d, 0x08 +.byte 0xcf, 0x87, 0x1e, 0x6a, 0x71, 0x7d, 0xf9, 0xd3, 0xb4, 0xe9, 0xa5, 0x71, 0x81, 0x7b, 0xc2, 0x4e +.byte 0x47, 0x96, 0xa5, 0xf6, 0x76, 0x85, 0xa3, 0x28, 0x8f, 0xe9, 0x80, 0x6e, 0x81, 0x53, 0xa5, 0x6d +.byte 0x5f, 0xb8, 0x48, 0xf9, 0xc2, 0xf9, 0x36, 0xa6, 0x2e, 0x49, 0xff, 0xb8, 0x96, 0xc2, 0x8c, 0x07 +.byte 0xb3, 0x9b, 0x88, 0x58, 0xfc, 0xeb, 0x1b, 0x1c, 0xde, 0x2d, 0x70, 0xe2, 0x97, 0x92, 0x30, 0xa1 +.byte 0x89, 0xe3, 0xbc, 0x55, 0xa8, 0x27, 0xd6, 0x4b, 0xed, 0x90, 0xad, 0x8b, 0xfa, 0x63, 0x25, 0x59 +.byte 0x2d, 0xa8, 0x35, 0xdd, 0xca, 0x97, 0x33, 0xbc, 0xe5, 0xcd, 0xc7, 0x9d, 0xd1, 0xec, 0xef, 0x5e +.byte 0x0e, 0x4a, 0x90, 0x06, 0x26, 0x63, 0xad, 0xb9, 0xd9, 0x35, 0x2d, 0x07, 0xba, 0x76, 0x65, 0x2c +.byte 0xac, 0x57, 0x8f, 0x7d, 0xf4, 0x07, 0x94, 0xd7, 0x81, 0x02, 0x96, 0x5d, 0xa3, 0x07, 0x49, 0xd5 +.byte 0x7a, 0xd0, 0x57, 0xf9, 0x1b, 0xe7, 0x53, 0x46, 0x75, 0xaa, 0xb0, 0x79, 0x42, 0xcb, 0x68, 0x71 +.byte 0x08, 0xe9, 0x60, 0xbd, 0x39, 0x69, 0xce, 0xf4, 0xaf, 0xc3, 0x56, 0x40, 0xc7, 0xad, 0x52, 0xa2 +.byte 0x09, 0xe4, 0x6f, 0x86, 0x47, 0x8a, 0x1f, 0xeb, 0x28, 0x27, 0x5d, 0x83, 0x20, 0xaf, 0x04, 0xc9 +.byte 0x6c, 0x56, 0x9a, 0x8b, 0x46, 0xf5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3d, 0x01, 0x26, 0x30 +.byte 0x3b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x52, 0x4f, 0x31, 0x11 +.byte 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x08, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47 +.byte 0x4e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x63, 0x65, 0x72, 0x74 +.byte 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f, 0x54, 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, 0xb7, 0x33, 0xb9 +.byte 0x7e, 0xc8, 0x25, 0x4a, 0x8e, 0xb5, 0xdb, 0xb4, 0x28, 0x1b, 0xaa, 0x57, 0x90, 0xe8, 0xd1, 0x22 +.byte 0xd3, 0x64, 0xba, 0xd3, 0x93, 0xe8, 0xd4, 0xac, 0x86, 0x61, 0x40, 0x6a, 0x60, 0x57, 0x68, 0x54 +.byte 0x84, 0x4d, 0xbc, 0x6a, 0x54, 0x02, 0x05, 0xff, 0xdf, 0x9b, 0x9a, 0x2a, 0xae, 0x5d, 0x07, 0x8f +.byte 0x4a, 0xc3, 0x28, 0x7f, 0xef, 0xfb, 0x2b, 0xfa, 0x79, 0xf1, 0xc7, 0xad, 0xf0, 0x10, 0x53, 0x24 +.byte 0x90, 0x8b, 0x66, 0xc9, 0xa8, 0x88, 0xab, 0xaf, 0x5a, 0xa3, 0x00, 0xe9, 0xbe, 0xba, 0x46, 0xee +.byte 0x5b, 0x73, 0x7b, 0x2c, 0x17, 0x82, 0x81, 0x5e, 0x62, 0x2c, 0xa1, 0x02, 0x65, 0xb3, 0xbd, 0xc5 +.byte 0x2b, 0x00, 0x7e, 0xc4, 0xfc, 0x03, 0x33, 0x57, 0x0d, 0xed, 0xe2, 0xfa, 0xce, 0x5d, 0x45, 0xd6 +.byte 0x38, 0xcd, 0x35, 0xb6, 0xb2, 0xc1, 0xd0, 0x9c, 0x81, 0x4a, 0xaa, 0xe4, 0xb2, 0x01, 0x5c, 0x1d +.byte 0x8f, 0x5f, 0x99, 0xc4, 0xb1, 0xad, 0xdb, 0x88, 0x21, 0xeb, 0x90, 0x08, 0x82, 0x80, 0xf3, 0x30 +.byte 0xa3, 0x43, 0xe6, 0x90, 0x82, 0xae, 0x55, 0x28, 0x49, 0xed, 0x5b, 0xd7, 0xa9, 0x10, 0x38, 0x0e +.byte 0xfe, 0x8f, 0x4c, 0x5b, 0x9b, 0x46, 0xea, 0x41, 0xf5, 0xb0, 0x08, 0x74, 0xc3, 0xd0, 0x88, 0x33 +.byte 0xb6, 0x7c, 0xd7, 0x74, 0xdf, 0xdc, 0x84, 0xd1, 0x43, 0x0e, 0x75, 0x39, 0xa1, 0x25, 0x40, 0x28 +.byte 0xea, 0x78, 0xcb, 0x0e, 0x2c, 0x2e, 0x39, 0x9d, 0x8c, 0x8b, 0x6e, 0x16, 0x1c, 0x2f, 0x26, 0x82 +.byte 0x10, 0xe2, 0xe3, 0x65, 0x94, 0x0a, 0x04, 0xc0, 0x5e, 0xf7, 0x5d, 0x5b, 0xf8, 0x10, 0xe2, 0xd0 +.byte 0xba, 0x7a, 0x4b, 0xfb, 0xde, 0x37, 0x00, 0x00, 0x1a, 0x5b, 0x28, 0xe3, 0xd2, 0x9c, 0x73, 0x3e +.byte 0x32, 0x87, 0x98, 0xa1, 0xc9, 0x51, 0x2f, 0xd7, 0xde, 0xac, 0x33, 0xb3, 0x4f, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x3e, 0x01, 0x26, 0x30, 0x3c, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x15, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x32, 0x30, 0x31, 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, 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, 0x95, 0x85, 0x3b, 0x97, 0x6f, 0x2a, 0x3b, 0x2e, 0x3b, 0xcf, 0xa6 +.byte 0xf3, 0x29, 0x35, 0xbe, 0xcf, 0x18, 0xac, 0x3e, 0xaa, 0xd9, 0xf8, 0x4d, 0xa0, 0x3e, 0x1a, 0x47 +.byte 0xb9, 0xbc, 0x9a, 0xdf, 0xf2, 0xfe, 0xcc, 0x3e, 0x47, 0xe8, 0x7a, 0x96, 0xc2, 0x24, 0x8e, 0x35 +.byte 0xf4, 0xa9, 0x0c, 0xfc, 0x82, 0xfd, 0x6d, 0xc1, 0x72, 0x62, 0x27, 0xbd, 0xea, 0x6b, 0xeb, 0xe7 +.byte 0x8a, 0xcc, 0x54, 0x3e, 0x90, 0x50, 0xcf, 0x80, 0xd4, 0x95, 0xfb, 0xe8, 0xb5, 0x82, 0xd4, 0x14 +.byte 0xc5, 0xb6, 0xa9, 0x55, 0x25, 0x57, 0xdb, 0xb1, 0x50, 0xf6, 0xb0, 0x60, 0x64, 0x59, 0x7a, 0x69 +.byte 0xcf, 0x03, 0xb7, 0x6f, 0x0d, 0xbe, 0xca, 0x3e, 0x6f, 0x74, 0x72, 0xea, 0xaa, 0x30, 0x2a, 0x73 +.byte 0x62, 0xbe, 0x49, 0x91, 0x61, 0xc8, 0x11, 0xfe, 0x0e, 0x03, 0x2a, 0xf7, 0x6a, 0x20, 0xdc, 0x02 +.byte 0x15, 0x0d, 0x5e, 0x15, 0x6a, 0xfc, 0xe3, 0x82, 0xc1, 0xb5, 0xc5, 0x9d, 0x64, 0x09, 0x6c, 0xa3 +.byte 0x59, 0x98, 0x07, 0x27, 0xc7, 0x1b, 0x96, 0x2b, 0x61, 0x74, 0x71, 0x6c, 0x43, 0xf1, 0xf7, 0x35 +.byte 0x89, 0x10, 0xe0, 0x9e, 0xec, 0x55, 0xa1, 0x37, 0x22, 0xa2, 0x87, 0x04, 0x05, 0x2c, 0x47, 0x7d +.byte 0xb4, 0x1c, 0xb9, 0x62, 0x29, 0x66, 0x28, 0xca, 0xb7, 0xe1, 0x93, 0xf5, 0xa4, 0x94, 0x03, 0x99 +.byte 0xb9, 0x70, 0x85, 0xb5, 0xe6, 0x48, 0xea, 0x8d, 0x50, 0xfc, 0xd9, 0xde, 0xcc, 0x6f, 0x07, 0x0e +.byte 0xdd, 0x0b, 0x72, 0x9d, 0x80, 0x30, 0x16, 0x07, 0x95, 0x3f, 0x28, 0x0e, 0xfd, 0xc5, 0x75, 0x4f +.byte 0x53, 0xd6, 0x74, 0x9a, 0xb4, 0x24, 0x2e, 0x8e, 0x02, 0x91, 0xcf, 0x76, 0xc5, 0x9b, 0x1e, 0x55 +.byte 0x74, 0x9c, 0x78, 0x21, 0xb1, 0xf0, 0x2d, 0xf1, 0x0b, 0x9f, 0xc2, 0xd5, 0x96, 0x18, 0x1f, 0xf0 +.byte 0x54, 0x22, 0x7a, 0x8c, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x3f, 0x02, 0x26, 0x30, 0x3d +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30 +.byte 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e, 0x69, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x12, 0x55, 0x43, 0x41, 0x20, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x47, 0x32, 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, 0xc5, 0xe6 +.byte 0x2b, 0x6f, 0x7c, 0xef, 0x26, 0x05, 0x27, 0xa3, 0x81, 0x24, 0xda, 0x6f, 0xcb, 0x01, 0xf9, 0x99 +.byte 0x9a, 0xa9, 0x32, 0xc2, 0x22, 0x87, 0x61, 0x41, 0x91, 0x3b, 0xcb, 0xc3, 0x68, 0x1b, 0x06, 0xc5 +.byte 0x4c, 0xa9, 0x2b, 0xc1, 0x67, 0x17, 0x22, 0x1d, 0x2b, 0xed, 0xf9, 0x29, 0x89, 0x93, 0xa2, 0x78 +.byte 0xbd, 0x92, 0x6b, 0xa0, 0xa3, 0x0d, 0xa2, 0x7e, 0xca, 0x93, 0xb3, 0xa6, 0xd1, 0x8c, 0x35, 0xd5 +.byte 0x75, 0xf9, 0x17, 0xf6, 0xcf, 0x45, 0xc5, 0xe5, 0x7a, 0xec, 0x77, 0x93, 0xa0, 0x8f, 0x23, 0xae +.byte 0x0e, 0x1a, 0x03, 0x7f, 0xbe, 0xd4, 0xd0, 0xed, 0x2e, 0x7b, 0xab, 0x46, 0x23, 0x5b, 0xff, 0x2c +.byte 0xe6, 0x54, 0x7a, 0x94, 0xc0, 0x2a, 0x15, 0xf0, 0xc9, 0x8d, 0xb0, 0x7a, 0x3b, 0x24, 0xe1, 0xd7 +.byte 0x68, 0xe2, 0x31, 0x3c, 0x06, 0x33, 0x46, 0xb6, 0x54, 0x11, 0xa6, 0xa5, 0x2f, 0x22, 0x54, 0x2a +.byte 0x58, 0x0d, 0x01, 0x02, 0xf1, 0xfa, 0x15, 0x51, 0x67, 0x6c, 0xc0, 0xfa, 0xd7, 0xb6, 0x1b, 0x7f +.byte 0xd1, 0x56, 0x88, 0x2f, 0x1a, 0x3a, 0x8d, 0x3b, 0xbb, 0x82, 0x11, 0xe0, 0x47, 0x00, 0xd0, 0x52 +.byte 0x87, 0xab, 0xfb, 0x86, 0x7e, 0x0f, 0x24, 0x6b, 0x40, 0x9d, 0x34, 0x67, 0xbc, 0x8d, 0xc7, 0x2d +.byte 0x86, 0x6f, 0x79, 0x3e, 0x8e, 0xa9, 0x3c, 0x17, 0x4b, 0x7f, 0xb0, 0x99, 0xe3, 0xb0, 0x71, 0x60 +.byte 0xdc, 0x0b, 0xf5, 0x64, 0xc3, 0xce, 0x43, 0xbc, 0x6d, 0x71, 0xb9, 0xd2, 0xde, 0x27, 0x5b, 0x8a +.byte 0xe8, 0xd8, 0xc6, 0xae, 0xe1, 0x59, 0x7d, 0xcf, 0x28, 0x2d, 0x35, 0xb8, 0x95, 0x56, 0x1a, 0xf1 +.byte 0xb2, 0x58, 0x4b, 0xb7, 0x12, 0x37, 0xc8, 0x7c, 0xb3, 0xed, 0x4b, 0x80, 0xe1, 0x8d, 0xfa, 0x32 +.byte 0x23, 0xb6, 0x6f, 0xb7, 0x48, 0x95, 0x08, 0xb1, 0x44, 0x4e, 0x85, 0x8c, 0x3a, 0x02, 0x54, 0x20 +.byte 0x2f, 0xdf, 0xbf, 0x57, 0x4f, 0x3b, 0x3a, 0x90, 0x21, 0xd7, 0xc1, 0x26, 0x35, 0x54, 0x20, 0xec +.byte 0xc7, 0x3f, 0x47, 0xec, 0xef, 0x5a, 0xbf, 0x4b, 0x7a, 0xc1, 0xad, 0x3b, 0x17, 0x50, 0x5c, 0x62 +.byte 0xd8, 0x0f, 0x4b, 0x4a, 0xdc, 0x2b, 0xfa, 0x6e, 0xbc, 0x73, 0x92, 0xcd, 0xec, 0xc7, 0x50, 0xe8 +.byte 0x41, 0x96, 0xd7, 0xa9, 0x7e, 0x6d, 0xd8, 0xe9, 0x1d, 0x8f, 0x8a, 0xb5, 0xb9, 0x58, 0x92, 0xba +.byte 0x4a, 0x92, 0x2b, 0x0c, 0x56, 0xfd, 0x80, 0xeb, 0x08, 0xf0, 0x5e, 0x29, 0x6e, 0x1b, 0x1c, 0x0c +.byte 0xaf, 0x8f, 0x93, 0x89, 0xad, 0xdb, 0xbd, 0xa3, 0x9e, 0x21, 0xca, 0x89, 0x19, 0xec, 0xdf, 0xb5 +.byte 0xc3, 0x1a, 0xeb, 0x16, 0xfe, 0x78, 0x36, 0x4c, 0xd6, 0x6e, 0xd0, 0x3e, 0x17, 0x1c, 0x90, 0x17 +.byte 0x6b, 0x26, 0xba, 0xfb, 0x7a, 0x2f, 0xbf, 0x11, 0x1c, 0x18, 0x0e, 0x2d, 0x73, 0x03, 0x8f, 0xa0 +.byte 0xe5, 0x35, 0xa0, 0x5a, 0xe2, 0x4c, 0x75, 0x1d, 0x71, 0xe1, 0x39, 0x38, 0x53, 0x78, 0x40, 0xcc +.byte 0x83, 0x93, 0xd7, 0x0a, 0x9e, 0x9d, 0x5b, 0x8f, 0x8a, 0xe4, 0xe5, 0xe0, 0x48, 0xe4, 0x48, 0xb2 +.byte 0x47, 0xcd, 0x4e, 0x2a, 0x75, 0x2a, 0x7b, 0xf2, 0x22, 0xf6, 0xc9, 0xbe, 0x09, 0x91, 0x96, 0x57 +.byte 0x7a, 0x88, 0x88, 0xac, 0xee, 0x70, 0xac, 0xf9, 0xdc, 0x29, 0xe3, 0x0c, 0x1c, 0x3b, 0x12, 0x4e +.byte 0x44, 0xd6, 0xa7, 0x4e, 0xb0, 0x26, 0xc8, 0xf3, 0xd9, 0x1a, 0x97, 0x91, 0x68, 0xea, 0xef, 0x8d +.byte 0x46, 0x06, 0xd2, 0x56, 0x45, 0x58, 0x9a, 0x3c, 0x0c, 0x0f, 0x83, 0xb8, 0x05, 0x25, 0xc3, 0x39 +.byte 0xcf, 0x3b, 0xa4, 0x34, 0x89, 0xb7, 0x79, 0x12, 0x2f, 0x47, 0xc5, 0xe7, 0xa9, 0x97, 0x69, 0xfc +.byte 0xa6, 0x77, 0x67, 0xb5, 0xdf, 0x7b, 0xf1, 0x7a, 0x65, 0x15, 0xe4, 0x61, 0x56, 0x65, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x3f, 0x00, 0x78, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x09, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x11, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x45, 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, 0xde, 0x6f +.byte 0xf8, 0x7f, 0x1c, 0xdf, 0xed, 0xf9, 0x47, 0x87, 0x86, 0xb1, 0xa4, 0xc0, 0x8a, 0xf8, 0x82, 0x97 +.byte 0x80, 0xea, 0x8f, 0xc8, 0x4a, 0x5e, 0x2a, 0x7d, 0x88, 0x68, 0xa7, 0x01, 0x62, 0x14, 0x91, 0x24 +.byte 0x7a, 0x5c, 0x9e, 0xa3, 0x17, 0x7d, 0x8a, 0x86, 0x21, 0x34, 0x18, 0x50, 0x1b, 0x10, 0xde, 0xd0 +.byte 0x37, 0x4b, 0x26, 0xc7, 0x19, 0x60, 0x80, 0xe9, 0x34, 0xbd, 0x60, 0x19, 0x36, 0x40, 0xd6, 0x29 +.byte 0x87, 0x09, 0x3c, 0x91, 0x7a, 0xf6, 0xbc, 0x13, 0x23, 0xdd, 0x59, 0x4e, 0x04, 0x5e, 0xcf, 0xc8 +.byte 0x02, 0x1c, 0x18, 0x53, 0xc1, 0x31, 0xd8, 0xda, 0x20, 0xe9, 0x44, 0x8d, 0xe4, 0x76, 0x00, 0x3f +.byte 0x02, 0x26, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x43, 0x65, 0x72, 0x74 +.byte 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11 +.byte 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52 +.byte 0x31, 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, 0xd0, 0x36, 0xd4, 0x1f, 0xea, 0xdd, 0xab, 0xe4, 0xd1, 0xb6, 0xe6, 0xfb, 0x22, 0xc0 +.byte 0xdd, 0x13, 0x0d, 0x6a, 0x7b, 0x22, 0x13, 0x1c, 0x97, 0x3c, 0x68, 0x63, 0x66, 0x32, 0x9c, 0x03 +.byte 0xb5, 0x8d, 0xa4, 0x81, 0x83, 0xda, 0x78, 0x30, 0x11, 0xcf, 0xdc, 0xb2, 0x2b, 0xbe, 0x92, 0xbf +.byte 0x8e, 0xe4, 0xc4, 0x13, 0xbe, 0xa4, 0x68, 0x4c, 0xda, 0x02, 0x68, 0x16, 0x74, 0xbe, 0xb2, 0xdd +.byte 0x04, 0xe4, 0x6b, 0x2a, 0xdd, 0x37, 0x1f, 0x60, 0x2c, 0xdb, 0xf5, 0xf7, 0xa1, 0x7c, 0x95, 0xb7 +.byte 0x0c, 0x70, 0x86, 0x2e, 0xf1, 0x3a, 0xef, 0x52, 0xf7, 0xcc, 0xd3, 0x9b, 0xf9, 0x8b, 0xbe, 0x0e +.byte 0xdf, 0x31, 0xb7, 0x9d, 0x68, 0x5c, 0x92, 0xa6, 0xf5, 0xe5, 0xf3, 0x0a, 0x34, 0xb5, 0xff, 0x7b +.byte 0xa2, 0xe4, 0x87, 0xa1, 0xc6, 0xaf, 0x17, 0x00, 0xef, 0x03, 0x91, 0xed, 0xa9, 0x1c, 0x4e, 0x71 +.byte 0x3d, 0xd2, 0x8b, 0x6c, 0x89, 0xf4, 0x78, 0x86, 0xe6, 0x6a, 0x49, 0xa0, 0xce, 0xb5, 0xd2, 0xb0 +.byte 0xab, 0x9b, 0xf6, 0xf4, 0xd4, 0x2e, 0xe3, 0x72, 0xf9, 0x36, 0xc6, 0xeb, 0x15, 0xb7, 0x25, 0x8c +.byte 0x3a, 0xfc, 0x25, 0x0d, 0xb3, 0x22, 0x73, 0x21, 0x74, 0xc8, 0x4a, 0x96, 0x61, 0x92, 0xf5, 0x2f +.byte 0x0b, 0x18, 0xa5, 0xf4, 0xad, 0xe2, 0xee, 0x41, 0xbd, 0x01, 0x79, 0xfa, 0x96, 0x8c, 0x8d, 0x17 +.byte 0x02, 0x30, 0xb4, 0xf9, 0xaf, 0x78, 0x1a, 0x8c, 0xb4, 0x36, 0x10, 0x10, 0x07, 0x05, 0x70, 0xd0 +.byte 0xf4, 0x31, 0x90, 0x8a, 0x51, 0xc5, 0x86, 0x26, 0x79, 0xb2, 0x11, 0x88, 0x5e, 0xc5, 0xf0, 0x0a +.byte 0x54, 0xcd, 0x49, 0xa6, 0xbf, 0x02, 0x9c, 0xd2, 0x44, 0xa7, 0xed, 0xe3, 0x78, 0xef, 0x46, 0x5e +.byte 0x6d, 0x71, 0xd1, 0x79, 0x70, 0x1c, 0x46, 0x5f, 0x51, 0xe9, 0xc9, 0x37, 0xdc, 0x5f, 0x7e, 0x69 +.byte 0x7b, 0x41, 0xdf, 0x34, 0x45, 0xe0, 0x3b, 0x84, 0xf4, 0xa1, 0x8a, 0x0a, 0x36, 0x9e, 0x37, 0xcc +.byte 0x62, 0x52, 0xe1, 0x89, 0x0d, 0x28, 0xf9, 0x7a, 0x23, 0xb1, 0x0d, 0x3d, 0x3d, 0x9a, 0xfd, 0x9d +.byte 0x81, 0xef, 0x2c, 0x90, 0xc0, 0x7b, 0x44, 0x4e, 0xbb, 0x49, 0xe0, 0x0e, 0x4a, 0x56, 0x92, 0xbc +.byte 0xcb, 0xb5, 0xdd, 0x79, 0x17, 0x89, 0x91, 0xde, 0x61, 0x89, 0x74, 0x92, 0xa8, 0xe3, 0x32, 0x85 +.byte 0xbe, 0x4e, 0x85, 0xa4, 0x4b, 0x59, 0xcb, 0x2b, 0xc5, 0x78, 0x8e, 0x71, 0x54, 0xd0, 0x02, 0x37 +.byte 0x99, 0x8c, 0xe5, 0x49, 0xea, 0xe0, 0x54, 0x72, 0xa4, 0x11, 0x06, 0x2f, 0x0b, 0x8c, 0xc1, 0x5b +.byte 0xbe, 0xb5, 0xa1, 0xb0, 0x53, 0x6e, 0x9c, 0xb8, 0x60, 0x91, 0x1f, 0x59, 0x6b, 0xf9, 0x2d, 0xf4 +.byte 0x94, 0x0a, 0x97, 0xb5, 0xec, 0xc5, 0x76, 0x03, 0x54, 0x1b, 0x65, 0x52, 0xba, 0x4c, 0x92, 0x56 +.byte 0x51, 0x35, 0xa0, 0x40, 0xd8, 0x29, 0xdb, 0xae, 0x52, 0x76, 0x3b, 0x2d, 0x30, 0x40, 0x9b, 0x8a +.byte 0xd0, 0x42, 0x56, 0xb4, 0xb7, 0x88, 0x01, 0xa4, 0x87, 0x3b, 0x53, 0x96, 0xcd, 0xa3, 0x16, 0x8f +.byte 0xf3, 0x66, 0xaa, 0x17, 0xb1, 0xc7, 0x60, 0xe0, 0xc1, 0x43, 0x05, 0x0c, 0xee, 0x9b, 0x5b, 0x60 +.byte 0x6f, 0x06, 0x5c, 0x87, 0x5b, 0x27, 0xf9, 0x40, 0x11, 0x9e, 0x9c, 0x33, 0xc1, 0xb7, 0xe5, 0x35 +.byte 0x57, 0x05, 0x7f, 0x27, 0xce, 0x17, 0x20, 0x8c, 0x1c, 0xfc, 0xf1, 0xfb, 0xda, 0x31, 0x29, 0x49 +.byte 0xed, 0xf5, 0x0b, 0x84, 0xa7, 0x4f, 0xc1, 0xf6, 0x4e, 0xc2, 0x28, 0x9c, 0xfa, 0xee, 0xe0, 0xaf +.byte 0x07, 0xfb, 0x33, 0x11, 0x7a, 0x21, 0x4f, 0x0b, 0x21, 0x10, 0xb6, 0x40, 0x3a, 0xab, 0x22, 0x3a +.byte 0x04, 0x9c, 0x8b, 0x9b, 0x84, 0x86, 0x72, 0x9a, 0xd2, 0xa7, 0xa5, 0xc4, 0xb4, 0x75, 0x91, 0xa9 +.byte 0x2b, 0x23, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x41, 0x01, 0x26, 0x30, 0x3f, 0x31, 0x24, 0x30 +.byte 0x22, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x20 +.byte 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x43, 0x6f, 0x2e, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x44, 0x53 +.byte 0x54, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x58, 0x33, 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, 0xdf, 0xaf, 0xe9 +.byte 0x97, 0x50, 0x08, 0x83, 0x57, 0xb4, 0xcc, 0x62, 0x65, 0xf6, 0x90, 0x82, 0xec, 0xc7, 0xd3, 0x2c +.byte 0x6b, 0x30, 0xca, 0x5b, 0xec, 0xd9, 0xc3, 0x7d, 0xc7, 0x40, 0xc1, 0x18, 0x14, 0x8b, 0xe0, 0xe8 +.byte 0x33, 0x76, 0x49, 0x2a, 0xe3, 0x3f, 0x21, 0x49, 0x93, 0xac, 0x4e, 0x0e, 0xaf, 0x3e, 0x48, 0xcb +.byte 0x65, 0xee, 0xfc, 0xd3, 0x21, 0x0f, 0x65, 0xd2, 0x2a, 0xd9, 0x32, 0x8f, 0x8c, 0xe5, 0xf7, 0x77 +.byte 0xb0, 0x12, 0x7b, 0xb5, 0x95, 0xc0, 0x89, 0xa3, 0xa9, 0xba, 0xed, 0x73, 0x2e, 0x7a, 0x0c, 0x06 +.byte 0x32, 0x83, 0xa2, 0x7e, 0x8a, 0x14, 0x30, 0xcd, 0x11, 0xa0, 0xe1, 0x2a, 0x38, 0xb9, 0x79, 0x0a +.byte 0x31, 0xfd, 0x50, 0xbd, 0x80, 0x65, 0xdf, 0xb7, 0x51, 0x63, 0x83, 0xc8, 0xe2, 0x88, 0x61, 0xea +.byte 0x4b, 0x61, 0x81, 0xec, 0x52, 0x6b, 0xb9, 0xa2, 0xe2, 0x4b, 0x1a, 0x28, 0x9f, 0x48, 0xa3, 0x9e +.byte 0x0c, 0xda, 0x09, 0x8e, 0x3e, 0x17, 0x2e, 0x1e, 0xdd, 0x20, 0xdf, 0x5b, 0xc6, 0x2a, 0x8a, 0xab +.byte 0x2e, 0xbd, 0x70, 0xad, 0xc5, 0x0b, 0x1a, 0x25, 0x90, 0x74, 0x72, 0xc5, 0x7b, 0x6a, 0xab, 0x34 +.byte 0xd6, 0x30, 0x89, 0xff, 0xe5, 0x68, 0x13, 0x7b, 0x54, 0x0b, 0xc8, 0xd6, 0xae, 0xec, 0x5a, 0x9c +.byte 0x92, 0x1e, 0x3d, 0x64, 0xb3, 0x8c, 0xc6, 0xdf, 0xbf, 0xc9, 0x41, 0x70, 0xec, 0x16, 0x72, 0xd5 +.byte 0x26, 0xec, 0x38, 0x55, 0x39, 0x43, 0xd0, 0xfc, 0xfd, 0x18, 0x5c, 0x40, 0xf1, 0x97, 0xeb, 0xd5 +.byte 0x9a, 0x9b, 0x8d, 0x1d, 0xba, 0xda, 0x25, 0xb9, 0xc6, 0xd8, 0xdf, 0xc1, 0x15, 0x02, 0x3a, 0xab +.byte 0xda, 0x6e, 0xf1, 0x3e, 0x2e, 0xf5, 0x5c, 0x08, 0x9c, 0x3c, 0xd6, 0x83, 0x69, 0xe4, 0x10, 0x9b +.byte 0x19, 0x2a, 0xb6, 0x29, 0x57, 0xe3, 0xe5, 0x3d, 0x9b, 0x9f, 0xf0, 0x02, 0x5d, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x43, 0x02, 0x26, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x52, 0x4f, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b +.byte 0x43, 0x45, 0x52, 0x54, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x53, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x13, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52 +.byte 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x20, 0x47, 0x32, 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, 0xc0, 0xc5, 0x75, 0x19, 0x91, 0x7d +.byte 0x44, 0x74, 0x74, 0x87, 0xfe, 0x0e, 0x3b, 0x96, 0xdc, 0xd8, 0x01, 0x16, 0xcc, 0xee, 0x63, 0x91 +.byte 0xe7, 0x0b, 0x6f, 0xce, 0x3b, 0x0a, 0x69, 0x1a, 0x7c, 0xc2, 0xe3, 0xaf, 0x82, 0x8e, 0x86, 0xd7 +.byte 0x5e, 0x8f, 0x57, 0xeb, 0xd3, 0x21, 0x59, 0xfd, 0x39, 0x37, 0x42, 0x30, 0xbe, 0x50, 0xea, 0xb6 +.byte 0x0f, 0xa9, 0x88, 0xd8, 0x2e, 0x2d, 0x69, 0x21, 0xe7, 0xd1, 0x37, 0x18, 0x4e, 0x7d, 0x91, 0xd5 +.byte 0x16, 0x5f, 0x6b, 0x5b, 0x00, 0xc2, 0x39, 0x43, 0x0d, 0x36, 0x85, 0x52, 0xb9, 0x53, 0x65, 0x0f +.byte 0x1d, 0x42, 0xe5, 0x8f, 0xcf, 0x05, 0xd3, 0xee, 0xdc, 0x0c, 0x1a, 0xd9, 0xb8, 0x8b, 0x78, 0x22 +.byte 0x67, 0xe4, 0x69, 0xb0, 0x68, 0xc5, 0x3c, 0xe4, 0x6c, 0x5a, 0x46, 0xe7, 0xcd, 0xc7, 0xfa, 0xef +.byte 0xc4, 0xec, 0x4b, 0xbd, 0x6a, 0xa4, 0xac, 0xfd, 0xcc, 0x28, 0x51, 0xef, 0x92, 0xb4, 0x29, 0xab +.byte 0xab, 0x35, 0x9a, 0x4c, 0xe4, 0xc4, 0x08, 0xc6, 0x26, 0xcc, 0xf8, 0x69, 0x9f, 0xe4, 0x9c, 0xf0 +.byte 0x29, 0xd3, 0x5c, 0xf9, 0xc6, 0x16, 0x25, 0x9e, 0x23, 0xc3, 0x20, 0xc1, 0x3d, 0x0f, 0x3f, 0x38 +.byte 0x40, 0xb0, 0xfe, 0x82, 0x44, 0x38, 0xaa, 0x5a, 0x1a, 0x8a, 0x6b, 0x63, 0x58, 0x38, 0xb4, 0x15 +.byte 0xd3, 0xb6, 0x11, 0x69, 0x7b, 0x1e, 0x54, 0xee, 0x8c, 0x1a, 0x22, 0xac, 0x72, 0x97, 0x3f, 0x23 +.byte 0x59, 0x9b, 0xc9, 0x22, 0x84, 0xc1, 0x07, 0x4f, 0xcc, 0x7f, 0xe2, 0x57, 0xca, 0x12, 0x70, 0xbb +.byte 0xa6, 0x65, 0xf3, 0x69, 0x75, 0x63, 0xbd, 0x95, 0xfb, 0x1b, 0x97, 0xcd, 0xe4, 0xa8, 0xaf, 0xf6 +.byte 0xd1, 0x4e, 0xa8, 0xd9, 0x8a, 0x71, 0x24, 0xcd, 0x36, 0x3d, 0xbc, 0x96, 0xc4, 0xf1, 0x6c, 0xa9 +.byte 0xae, 0xe5, 0xcf, 0x0d, 0x6e, 0x28, 0x0d, 0xb0, 0x0e, 0xb5, 0xca, 0x51, 0x7b, 0x78, 0x14, 0xc3 +.byte 0x20, 0x2f, 0x7f, 0xfb, 0x14, 0x55, 0xe1, 0x11, 0x99, 0xfd, 0xd5, 0x0a, 0xa1, 0x9e, 0x02, 0xe3 +.byte 0x62, 0x5f, 0xeb, 0x35, 0x4b, 0x2c, 0xb8, 0x72, 0xe8, 0x3e, 0x3d, 0x4f, 0xac, 0x2c, 0xbb, 0x2e +.byte 0x86, 0xe2, 0xa3, 0x76, 0x8f, 0xe5, 0x93, 0x2a, 0xcf, 0xa5, 0xab, 0xc8, 0x5c, 0x8d, 0x4b, 0x06 +.byte 0xff, 0x12, 0x46, 0xac, 0x78, 0xcb, 0x14, 0x07, 0x35, 0xe0, 0xa9, 0xdf, 0x8b, 0xe9, 0xaf, 0x15 +.byte 0x4f, 0x16, 0x89, 0x5b, 0xbd, 0xf6, 0x8d, 0xc6, 0x59, 0xae, 0x88, 0x85, 0x0e, 0xc1, 0x89, 0xeb +.byte 0x1f, 0x67, 0xc5, 0x45, 0x8e, 0xff, 0x6d, 0x37, 0x36, 0x2b, 0x78, 0x66, 0x83, 0x91, 0x51, 0x2b +.byte 0x3d, 0xff, 0x51, 0x77, 0x76, 0x62, 0xa1, 0xec, 0x67, 0x3e, 0x3e, 0x81, 0x83, 0xe0, 0x56, 0xa9 +.byte 0x50, 0x1f, 0x1f, 0x7a, 0x99, 0xab, 0x63, 0xbf, 0x84, 0x17, 0x77, 0xf1, 0x0d, 0x3b, 0xdf, 0xf7 +.byte 0x9c, 0x61, 0xb3, 0x35, 0x98, 0x8a, 0x3a, 0xb2, 0xec, 0x3c, 0x1a, 0x37, 0x3f, 0x7e, 0x8f, 0x92 +.byte 0xcf, 0xd9, 0x12, 0x14, 0x64, 0xda, 0x10, 0x02, 0x15, 0x41, 0xff, 0x4f, 0xc4, 0xeb, 0x1c, 0xa3 +.byte 0xc9, 0xfa, 0x99, 0xf7, 0x46, 0xe9, 0xe1, 0x18, 0xd9, 0xb1, 0xb8, 0x32, 0x2d, 0xcb, 0x14, 0x0c +.byte 0x50, 0xd8, 0x83, 0x65, 0x83, 0xee, 0xb9, 0x5c, 0xcf, 0xcb, 0x05, 0x5a, 0x4c, 0xfa, 0x19, 0x97 +.byte 0x6b, 0xd6, 0x5d, 0x13, 0xd3, 0xc2, 0x5c, 0x54, 0xbc, 0x32, 0x73, 0xa0, 0x78, 0xf5, 0xf1, 0x6d +.byte 0x1e, 0xcb, 0x9f, 0xa5, 0xa6, 0x9f, 0x22, 0xdc, 0xd1, 0x51, 0x9e, 0x82, 0x79, 0x64, 0x60, 0x29 +.byte 0x13, 0x3e, 0xa3, 0xfd, 0x4f, 0x72, 0x6a, 0xab, 0xe2, 0xd4, 0xe5, 0xb8, 0x24, 0x55, 0x2c, 0x44 +.byte 0x4b, 0x8a, 0x88, 0x44, 0x9c, 0xca, 0x84, 0xd3, 0x2a, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x43, 0x02, 0x26, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66 +.byte 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x13, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50 +.byte 0x72, 0x65, 0x6d, 0x69, 0x75, 0x6d, 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, 0xc4, 0x12, 0xdf, 0xa9, 0x5f, 0xfe, 0x41, 0xdd, 0xdd +.byte 0xf5, 0x9f, 0x8a, 0xe3, 0xf6, 0xac, 0xe1, 0x3c, 0x78, 0x9a, 0xbc, 0xd8, 0xf0, 0x7f, 0x7a, 0xa0 +.byte 0x33, 0x2a, 0xdc, 0x8d, 0x20, 0x5b, 0xae, 0x2d, 0x6f, 0xe7, 0x93, 0xd9, 0x36, 0x70, 0x6a, 0x68 +.byte 0xcf, 0x8e, 0x51, 0xa3, 0x85, 0x5b, 0x67, 0x04, 0xa0, 0x10, 0x24, 0x6f, 0x5d, 0x28, 0x82, 0xc1 +.byte 0x97, 0x57, 0xd8, 0x48, 0x29, 0x13, 0xb6, 0xe1, 0xbe, 0x91, 0x4d, 0xdf, 0x85, 0x0c, 0x53, 0x18 +.byte 0x9a, 0x1e, 0x24, 0xa2, 0x4f, 0x8f, 0xf0, 0xa2, 0x85, 0x0b, 0xcb, 0xf4, 0x29, 0x7f, 0xd2, 0xa4 +.byte 0x58, 0xee, 0x26, 0x4d, 0xc9, 0xaa, 0xa8, 0x7b, 0x9a, 0xd9, 0xfa, 0x38, 0xde, 0x44, 0x57, 0x15 +.byte 0xe5, 0xf8, 0x8c, 0xc8, 0xd9, 0x48, 0xe2, 0x0d, 0x16, 0x27, 0x1d, 0x1e, 0xc8, 0x83, 0x85, 0x25 +.byte 0xb7, 0xba, 0xaa, 0x55, 0x41, 0xcc, 0x03, 0x22, 0x4b, 0x2d, 0x91, 0x8d, 0x8b, 0xe6, 0x89, 0xaf +.byte 0x66, 0xc7, 0xe9, 0xff, 0x2b, 0xe9, 0x3c, 0xac, 0xda, 0xd2, 0xb3, 0xc3, 0xe1, 0x68, 0x9c, 0x89 +.byte 0xf8, 0x7a, 0x00, 0x56, 0xde, 0xf4, 0x55, 0x95, 0x6c, 0xfb, 0xba, 0x64, 0xdd, 0x62, 0x8b, 0xdf +.byte 0x0b, 0x77, 0x32, 0xeb, 0x62, 0xcc, 0x26, 0x9a, 0x9b, 0xbb, 0xaa, 0x62, 0x83, 0x4c, 0xb4, 0x06 +.byte 0x7a, 0x30, 0xc8, 0x29, 0xbf, 0xed, 0x06, 0x4d, 0x97, 0xb9, 0x1c, 0xc4, 0x31, 0x2b, 0xd5, 0x5f +.byte 0xbc, 0x53, 0x12, 0x17, 0x9c, 0x99, 0x57, 0x29, 0x66, 0x77, 0x61, 0x21, 0x31, 0x07, 0x2e, 0x25 +.byte 0x49, 0x9d, 0x18, 0xf2, 0xee, 0xf3, 0x2b, 0x71, 0x8c, 0xb5, 0xba, 0x39, 0x07, 0x49, 0x77, 0xfc +.byte 0xef, 0x2e, 0x92, 0x90, 0x05, 0x8d, 0x2d, 0x2f, 0x77, 0x7b, 0xef, 0x43, 0xbf, 0x35, 0xbb, 0x9a +.byte 0xd8, 0xf9, 0x73, 0xa7, 0x2c, 0xf2, 0xd0, 0x57, 0xee, 0x28, 0x4e, 0x26, 0x5f, 0x8f, 0x90, 0x68 +.byte 0x09, 0x2f, 0xb8, 0xf8, 0xdc, 0x06, 0xe9, 0x2e, 0x9a, 0x3e, 0x51, 0xa7, 0xd1, 0x22, 0xc4, 0x0a +.byte 0xa7, 0x38, 0x48, 0x6c, 0xb3, 0xf9, 0xff, 0x7d, 0xab, 0x86, 0x57, 0xe3, 0xba, 0xd6, 0x85, 0x78 +.byte 0x77, 0xba, 0x43, 0xea, 0x48, 0x7f, 0xf6, 0xd8, 0xbe, 0x23, 0x6d, 0x1e, 0xbf, 0xd1, 0x36, 0x6c +.byte 0x58, 0x5c, 0xf1, 0xee, 0xa4, 0x19, 0x54, 0x1a, 0xf5, 0x03, 0xd2, 0x76, 0xe6, 0xe1, 0x8c, 0xbd +.byte 0x3c, 0xb3, 0xd3, 0x48, 0x4b, 0xe2, 0xc8, 0xf8, 0x7f, 0x92, 0xa8, 0x76, 0x46, 0x9c, 0x42, 0x65 +.byte 0x3e, 0xa4, 0x1e, 0xc1, 0x07, 0x03, 0x5a, 0x46, 0x2d, 0xb8, 0x97, 0xf3, 0xb7, 0xd5, 0xb2, 0x55 +.byte 0x21, 0xef, 0xba, 0xdc, 0x4c, 0x00, 0x97, 0xfb, 0x14, 0x95, 0x27, 0x33, 0xbf, 0xe8, 0x43, 0x47 +.byte 0x46, 0xd2, 0x08, 0x99, 0x16, 0x60, 0x3b, 0x9a, 0x7e, 0xd2, 0xe6, 0xed, 0x38, 0xea, 0xec, 0x01 +.byte 0x1e, 0x3c, 0x48, 0x56, 0x49, 0x09, 0xc7, 0x4c, 0x37, 0x00, 0x9e, 0x88, 0x0e, 0xc0, 0x73, 0xe1 +.byte 0x6f, 0x66, 0xe9, 0x72, 0x47, 0x30, 0x3e, 0x10, 0xe5, 0x0b, 0x03, 0xc9, 0x9a, 0x42, 0x00, 0x6c +.byte 0xc5, 0x94, 0x7e, 0x61, 0xc4, 0x8a, 0xdf, 0x7f, 0x82, 0x1a, 0x0b, 0x59, 0xc4, 0x59, 0x32, 0x77 +.byte 0xb3, 0xbc, 0x60, 0x69, 0x56, 0x39, 0xfd, 0xb4, 0x06, 0x7b, 0x2c, 0xd6, 0x64, 0x36, 0xd9, 0xbd +.byte 0x48, 0xed, 0x84, 0x1f, 0x7e, 0xa5, 0x22, 0x8f, 0x2a, 0xb8, 0x42, 0xf4, 0x82, 0xb7, 0xd4, 0x53 +.byte 0x90, 0x78, 0x4e, 0x2d, 0x1a, 0xfd, 0x81, 0x6f, 0x44, 0xd7, 0x3b, 0x01, 0x74, 0x96, 0x42, 0xe0 +.byte 0x00, 0xe2, 0x2e, 0x6b, 0xea, 0xc5, 0xee, 0x72, 0xac, 0xbb, 0xbf, 0xfe, 0xea, 0xaa, 0xa8, 0xf8 +.byte 0xdc, 0xf6, 0xb2, 0x79, 0x8a, 0xb6, 0x67, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x44, 0x02, 0x26 +.byte 0x30, 0x42, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x09, 0x41, 0x43, 0x43 +.byte 0x56, 0x52, 0x41, 0x49, 0x5a, 0x31, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c +.byte 0x07, 0x50, 0x4b, 0x49, 0x41, 0x43, 0x43, 0x56, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x04, 0x41, 0x43, 0x43, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x45, 0x53, 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, 0x9b, 0xa9, 0xab, 0xbf, 0x61, 0x4a, 0x97, 0xaf, 0x2f, 0x97, 0x66 +.byte 0x9a, 0x74, 0x5f, 0xd0, 0xd9, 0x96, 0xfd, 0xcf, 0xe2, 0xe4, 0x66, 0xef, 0x1f, 0x1f, 0x47, 0x33 +.byte 0xc2, 0x44, 0xa3, 0xdf, 0x9a, 0xde, 0x1f, 0xb5, 0x54, 0xdd, 0x15, 0x7c, 0x69, 0x35, 0x11, 0x6f +.byte 0xbb, 0xc8, 0x0c, 0x8e, 0x6a, 0x18, 0x1e, 0xd8, 0x8f, 0xd9, 0x16, 0xbc, 0x10, 0x48, 0x36, 0x5c +.byte 0xf0, 0x63, 0xb3, 0x90, 0x5a, 0x5c, 0x24, 0x37, 0xd7, 0xa3, 0xd6, 0xcb, 0x09, 0x71, 0xb9, 0xf1 +.byte 0x01, 0x72, 0x84, 0xb0, 0x7d, 0xdb, 0x4d, 0x80, 0xcd, 0xfc, 0xd3, 0x6f, 0xc9, 0xf8, 0xda, 0xb6 +.byte 0x0e, 0x82, 0xd2, 0x45, 0x85, 0xa8, 0x1b, 0x68, 0xa8, 0x3d, 0xe8, 0xf4, 0x44, 0x6c, 0xbd, 0xa1 +.byte 0xc2, 0xcb, 0x03, 0xbe, 0x8c, 0x3e, 0x13, 0x00, 0x84, 0xdf, 0x4a, 0x48, 0xc0, 0xe3, 0x22, 0x0a +.byte 0xe8, 0xe9, 0x37, 0xa7, 0x18, 0x4c, 0xb1, 0x09, 0x0d, 0x23, 0x56, 0x7f, 0x04, 0x4d, 0xd9, 0x17 +.byte 0x84, 0x18, 0xa5, 0xc8, 0xda, 0x40, 0x94, 0x73, 0xeb, 0xce, 0x0e, 0x57, 0x3c, 0x03, 0x81, 0x3a +.byte 0x9d, 0x0a, 0xa1, 0x57, 0x43, 0x69, 0xac, 0x57, 0x6d, 0x79, 0x90, 0x78, 0xe5, 0xb5, 0xb4, 0x3b +.byte 0xd8, 0xbc, 0x4c, 0x8d, 0x28, 0xa1, 0xa7, 0xa3, 0xa7, 0xba, 0x02, 0x4e, 0x25, 0xd1, 0x2a, 0xae +.byte 0xed, 0xae, 0x03, 0x22, 0xb8, 0x6b, 0x20, 0x0f, 0x30, 0x28, 0x54, 0x95, 0x7f, 0xe0, 0xee, 0xce +.byte 0x0a, 0x66, 0x9d, 0xd1, 0x40, 0x2d, 0x6e, 0x22, 0xaf, 0x9d, 0x1a, 0xc1, 0x05, 0x19, 0xd2, 0x6f +.byte 0xc0, 0xf2, 0x9f, 0xf8, 0x7b, 0xb3, 0x02, 0x42, 0xfb, 0x50, 0xa9, 0x1d, 0x2d, 0x93, 0x0f, 0x23 +.byte 0xab, 0xc6, 0xc1, 0x0f, 0x92, 0xff, 0xd0, 0xa2, 0x15, 0xf5, 0x53, 0x09, 0x71, 0x1c, 0xff, 0x45 +.byte 0x13, 0x84, 0xe6, 0x26, 0x5e, 0xf8, 0xe0, 0x88, 0x1c, 0x0a, 0xfc, 0x16, 0xb6, 0xa8, 0x73, 0x06 +.byte 0xb8, 0xf0, 0x63, 0x84, 0x02, 0xa0, 0xc6, 0x5a, 0xec, 0xe7, 0x74, 0xdf, 0x70, 0xae, 0xa3, 0x83 +.byte 0x25, 0xea, 0xd6, 0xc7, 0x97, 0x87, 0x93, 0xa7, 0xc6, 0x8a, 0x8a, 0x33, 0x97, 0x60, 0x37, 0x10 +.byte 0x3e, 0x97, 0x3e, 0x6e, 0x29, 0x15, 0xd6, 0xa1, 0x0f, 0xd1, 0x88, 0x2c, 0x12, 0x9f, 0x6f, 0xaa +.byte 0xa4, 0xc6, 0x42, 0xeb, 0x41, 0xa2, 0xe3, 0x95, 0x43, 0xd3, 0x01, 0x85, 0x6d, 0x8e, 0xbb, 0x3b +.byte 0xf3, 0x23, 0x36, 0xc7, 0xfe, 0x3b, 0xe0, 0xa1, 0x25, 0x07, 0x48, 0xab, 0xc9, 0x89, 0x74, 0xff +.byte 0x08, 0x8f, 0x80, 0xbf, 0xc0, 0x96, 0x65, 0xf3, 0xee, 0xec, 0x4b, 0x68, 0xbd, 0x9d, 0x88, 0xc3 +.byte 0x31, 0xb3, 0x40, 0xf1, 0xe8, 0xcf, 0xf6, 0x38, 0xbb, 0x9c, 0xe4, 0xd1, 0x7f, 0xd4, 0xe5, 0x58 +.byte 0x9b, 0x7c, 0xfa, 0xd4, 0xf3, 0x0e, 0x9b, 0x75, 0x91, 0xe4, 0xba, 0x52, 0x2e, 0x19, 0x7e, 0xd1 +.byte 0xf5, 0xcd, 0x5a, 0x19, 0xfc, 0xba, 0x06, 0xf6, 0xfb, 0x52, 0xa8, 0x4b, 0x99, 0x04, 0xdd, 0xf8 +.byte 0xf9, 0xb4, 0x8b, 0x50, 0xa3, 0x4e, 0x62, 0x89, 0xf0, 0x87, 0x24, 0xfa, 0x83, 0x42, 0xc1, 0x87 +.byte 0xfa, 0xd5, 0x2d, 0x29, 0x2a, 0x5a, 0x71, 0x7a, 0x64, 0x6a, 0xd7, 0x27, 0x60, 0x63, 0x0d, 0xdb +.byte 0xce, 0x49, 0xf5, 0x8d, 0x1f, 0x90, 0x89, 0x32, 0x17, 0xf8, 0x73, 0x43, 0xb8, 0xd2, 0x5a, 0x93 +.byte 0x86, 0x61, 0xd6, 0xe1, 0x75, 0x0a, 0xea, 0x79, 0x66, 0x76, 0x88, 0x4f, 0x71, 0xeb, 0x04, 0x25 +.byte 0xd6, 0x0a, 0x5a, 0x7a, 0x93, 0xe5, 0xb9, 0x4b, 0x17, 0x40, 0x0f, 0xb1, 0xb6, 0xb9, 0xf5, 0xde +.byte 0x4f, 0xdc, 0xe0, 0xb3, 0xac, 0x3b, 0x11, 0x70, 0x60, 0x84, 0x4a, 0x43, 0x6e, 0x99, 0x20, 0xc0 +.byte 0x29, 0x71, 0x0a, 0xc0, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x45, 0x02, 0x26, 0x30, 0x43 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c, 0x30 +.byte 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68, 0x69 +.byte 0x6e, 0x61, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x16, 0x30, 0x14, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x0d, 0x76, 0x54, 0x72, 0x75, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 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, 0xbd, 0x55, 0x7c, 0x61, 0xd3, 0xb8, 0x1d, 0x04, 0x62, 0x05, 0xa0, 0xae +.byte 0x6c, 0xb7, 0x70, 0xb4, 0x41, 0xea, 0x4b, 0x03, 0x5e, 0x10, 0x3f, 0x90, 0x5a, 0x1c, 0x8b, 0x3b +.byte 0xb0, 0x66, 0x8b, 0x6c, 0x48, 0xa6, 0x1c, 0x22, 0xba, 0xd5, 0x40, 0x92, 0xee, 0x33, 0xb2, 0x23 +.byte 0x59, 0xc9, 0x8e, 0xbc, 0x58, 0xda, 0x8b, 0x9e, 0xd0, 0x19, 0xf2, 0x2f, 0x59, 0xc6, 0x8c, 0x63 +.byte 0x5a, 0xba, 0x9f, 0xa3, 0x0b, 0xb0, 0xb3, 0x9a, 0x5c, 0xba, 0x11, 0xb8, 0x12, 0xe9, 0x0c, 0xbb +.byte 0xcf, 0x6e, 0x6c, 0x80, 0x87, 0x29, 0x14, 0x03, 0x2c, 0x8d, 0x24, 0x9a, 0xc8, 0x64, 0x83, 0xb5 +.byte 0x6a, 0xac, 0x13, 0x2c, 0x33, 0xf1, 0x9f, 0xdc, 0x2c, 0x61, 0x3c, 0x1a, 0x3f, 0x70, 0x55, 0x9b +.byte 0xad, 0x00, 0x52, 0x7f, 0xcf, 0x04, 0xb9, 0xfe, 0x36, 0xfa, 0x9c, 0xc0, 0x16, 0xae, 0x62, 0xfe +.byte 0x96, 0x4c, 0x43, 0x7e, 0x55, 0x14, 0xbe, 0x1a, 0xb3, 0xd2, 0x6d, 0xc2, 0xaf, 0x76, 0x66, 0x95 +.byte 0x6b, 0x2a, 0xb0, 0x94, 0x77, 0x85, 0x5e, 0x04, 0x0f, 0x62, 0x1d, 0x63, 0x75, 0xf7, 0x6b, 0xe7 +.byte 0xcb, 0x5b, 0x9a, 0x70, 0xec, 0x3e, 0x67, 0x05, 0xf0, 0xfe, 0x07, 0x08, 0x80, 0xcf, 0x28, 0xdb +.byte 0x05, 0xc6, 0x14, 0x27, 0x2f, 0x86, 0x7d, 0xf0, 0x27, 0xde, 0xff, 0xe6, 0x7e, 0x33, 0x48, 0xe7 +.byte 0x0b, 0x1e, 0x58, 0xd1, 0x27, 0x2b, 0x53, 0x0e, 0x57, 0x4a, 0x65, 0xd7, 0xfb, 0xa2, 0x80, 0x60 +.byte 0xfc, 0x4c, 0xbc, 0x35, 0x53, 0x01, 0x6a, 0x97, 0x72, 0x82, 0xaf, 0xf1, 0x1d, 0x70, 0xe8, 0x9c +.byte 0xf5, 0xef, 0x5e, 0xc2, 0x6c, 0xc7, 0x47, 0x7e, 0x5a, 0x94, 0x85, 0x26, 0x4d, 0x3b, 0xba, 0xeb +.byte 0x4c, 0xe8, 0xb0, 0x09, 0xc2, 0x65, 0xc2, 0x9d, 0x9d, 0x09, 0x9b, 0x4e, 0xb5, 0x97, 0x05, 0xac +.byte 0xf5, 0x06, 0xa0, 0xf7, 0x36, 0x05, 0x7e, 0xf4, 0x90, 0xb2, 0x6b, 0xc4, 0xb4, 0xf9, 0x64, 0xea +.byte 0xe9, 0x1a, 0x0a, 0xc8, 0x0d, 0xa8, 0xed, 0x27, 0xc9, 0xd4, 0xe7, 0xb3, 0xb9, 0xab, 0x82, 0x22 +.byte 0x90, 0x27, 0x3d, 0x2a, 0xe8, 0x7c, 0x90, 0xef, 0xbc, 0x4f, 0xfd, 0xe2, 0x0a, 0x24, 0xa7, 0xde +.byte 0x65, 0x24, 0xa4, 0x5d, 0xea, 0xc0, 0x76, 0x30, 0xd3, 0x77, 0x50, 0xf8, 0x0d, 0x04, 0x9b, 0x94 +.byte 0x36, 0x01, 0x73, 0xca, 0x06, 0x58, 0xa6, 0xd3, 0x3b, 0xdc, 0xfa, 0x04, 0x46, 0x13, 0x55, 0x8a +.byte 0xc9, 0x44, 0x47, 0xb8, 0x51, 0x39, 0x1a, 0x2e, 0xe8, 0x34, 0xe2, 0x79, 0xcb, 0x59, 0x4a, 0x0a +.byte 0x7f, 0xbc, 0xa6, 0xef, 0x1f, 0x03, 0x67, 0x6a, 0x59, 0x2b, 0x25, 0x62, 0x93, 0xd9, 0x53, 0x19 +.byte 0x66, 0x3c, 0x27, 0x62, 0x29, 0x86, 0x4d, 0xa4, 0x6b, 0xee, 0xff, 0xd4, 0x4e, 0xba, 0xd5, 0xb4 +.byte 0xe2, 0x8e, 0x48, 0x5a, 0x00, 0x19, 0x09, 0xf1, 0x05, 0xd9, 0xce, 0x91, 0xb1, 0xf7, 0xeb, 0xe9 +.byte 0x39, 0x4f, 0xf6, 0x6f, 0x04, 0x43, 0x9a, 0x55, 0xf5, 0x3e, 0x05, 0x14, 0xbd, 0xbf, 0xb3, 0x59 +.byte 0xb4, 0xd8, 0x8e, 0x33, 0x84, 0xa3, 0x90, 0x52, 0xaa, 0xb3, 0x02, 0x95, 0x60, 0xf9, 0x0c, 0x4c +.byte 0x68, 0xf9, 0xee, 0xd5, 0x17, 0x0d, 0xf8, 0x71, 0x57, 0xb5, 0x25, 0xe4, 0x29, 0xee, 0x65, 0x5d +.byte 0xaf, 0xd1, 0xee, 0x3c, 0x17, 0x0b, 0x5a, 0x43, 0xc5, 0xa5, 0x86, 0xea, 0x24, 0x9e, 0xe2, 0x05 +.byte 0x07, 0xdc, 0x34, 0x42, 0x12, 0x91, 0xd6, 0x39, 0x74, 0xae, 0x4c, 0x41, 0x82, 0xdb, 0xf2, 0xa6 +.byte 0x48, 0xd1, 0xb3, 0x9b, 0xf3, 0x33, 0xaa, 0xf3, 0xa6, 0xc0, 0xc5, 0x4e, 0xf5, 0xf4, 0x9d, 0x76 +.byte 0x63, 0xe6, 0x02, 0xc6, 0x22, 0x4b, 0xc1, 0x95, 0x3f, 0x50, 0x64, 0x2c, 0x54, 0xe5, 0xb6, 0xf0 +.byte 0x3c, 0x29, 0xcf, 0x57, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x46, 0x02, 0x26, 0x30, 0x44, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x49, 0x31, 0x1a, 0x30, 0x18 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x20, 0x46, 0x69, 0x6e +.byte 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x4f, 0x79, 0x6a, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x10, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x76, 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, 0xb2, 0xd0, 0x3f, 0x07, 0xbc, 0xe2, 0x7b, 0xd0, 0x6b, 0x99, 0xf8, 0xe2 +.byte 0x77, 0x69, 0xe7, 0xce, 0x9d, 0xa4, 0x03, 0xbc, 0x82, 0x6d, 0xa1, 0xfe, 0x81, 0x65, 0x1f, 0x4c +.byte 0x27, 0xac, 0x8e, 0x00, 0xba, 0x16, 0x7b, 0xeb, 0x30, 0x6a, 0x00, 0xc0, 0xb3, 0x74, 0x68, 0x7e +.byte 0xb2, 0xaf, 0xc7, 0xd5, 0x62, 0xb3, 0x7a, 0x3f, 0x50, 0xca, 0x8c, 0x36, 0x44, 0x24, 0x63, 0xd2 +.byte 0x36, 0xe9, 0x0c, 0x85, 0xf6, 0x43, 0x76, 0xd5, 0x4c, 0xa1, 0x60, 0x72, 0x67, 0xe2, 0x28, 0x33 +.byte 0xa5, 0xcb, 0x31, 0xb8, 0x3a, 0x22, 0x23, 0x34, 0xb8, 0x7d, 0xbd, 0x56, 0x22, 0x40, 0x9d, 0xea +.byte 0xf4, 0x7b, 0x03, 0xad, 0x68, 0xfc, 0xb2, 0x81, 0x4f, 0x98, 0xd0, 0x74, 0xea, 0x8d, 0xe5, 0x7d +.byte 0xcd, 0x63, 0xc3, 0xa3, 0xf6, 0xde, 0x92, 0xc2, 0x58, 0x19, 0xe0, 0x96, 0xbb, 0xc5, 0xc4, 0xa9 +.byte 0x3d, 0xa5, 0x74, 0x96, 0xfe, 0xaf, 0xf9, 0x89, 0xaa, 0xbd, 0x95, 0x17, 0x54, 0xd8, 0x78, 0x44 +.byte 0xf1, 0x0c, 0x77, 0x15, 0x92, 0xe0, 0x98, 0x42, 0xa7, 0xa4, 0xd6, 0xaa, 0x20, 0x92, 0xcd, 0xc1 +.byte 0xa0, 0xb3, 0x96, 0xb2, 0x3a, 0x84, 0x42, 0x8d, 0x7d, 0xd5, 0x95, 0xe4, 0xd6, 0xdb, 0xe9, 0x62 +.byte 0xc4, 0x58, 0xb3, 0x79, 0xc5, 0x8c, 0xd3, 0x35, 0x33, 0x83, 0x9f, 0x75, 0xa1, 0x52, 0x27, 0x61 +.byte 0x38, 0xf1, 0x59, 0x3d, 0x8e, 0x50, 0xe0, 0xbd, 0x79, 0x3c, 0xe7, 0x6c, 0x96, 0xfe, 0x5e, 0xd9 +.byte 0x02, 0x65, 0xb4, 0x8e, 0x5c, 0xd0, 0x11, 0x34, 0xdf, 0x5d, 0xbf, 0x52, 0xa7, 0x81, 0x00, 0xc3 +.byte 0x7f, 0x99, 0x45, 0x99, 0x15, 0xd5, 0x17, 0xc8, 0x0a, 0x53, 0xec, 0x63, 0xf3, 0x99, 0x7d, 0xcc +.byte 0x69, 0x12, 0x86, 0xc2, 0x17, 0xf0, 0x01, 0x9e, 0xbf, 0x84, 0xbc, 0xd1, 0x52, 0xcb, 0x1b, 0x92 +.byte 0x66, 0xce, 0xa4, 0x53, 0xe5, 0xa1, 0xbf, 0xc4, 0xdb, 0x09, 0xd6, 0xe6, 0x89, 0x56, 0x2b, 0xc8 +.byte 0xe3, 0x7c, 0xde, 0xe3, 0xff, 0x89, 0xe5, 0x35, 0x6e, 0x28, 0xe8, 0x6c, 0x0b, 0x23, 0x51, 0xa9 +.byte 0x25, 0x05, 0xeb, 0x48, 0xf8, 0xdd, 0xb1, 0xca, 0xfa, 0x6c, 0x08, 0x51, 0xef, 0xb7, 0x18, 0x6c +.byte 0x44, 0xca, 0x26, 0xe1, 0x73, 0xc6, 0x89, 0x06, 0x81, 0xe5, 0x8a, 0xac, 0xb0, 0xe2, 0x29, 0xc6 +.byte 0xb9, 0x24, 0xb3, 0x6b, 0x44, 0x11, 0xf4, 0xa5, 0x43, 0xc2, 0x4c, 0x43, 0xe5, 0x70, 0x36, 0x8c +.byte 0xb6, 0x33, 0x57, 0x7a, 0x95, 0x2e, 0x82, 0xa0, 0xf4, 0x5c, 0x10, 0xb3, 0x61, 0x83, 0xf6, 0x02 +.byte 0x05, 0x86, 0x2e, 0x7c, 0x2d, 0x6c, 0xdc, 0x03, 0x46, 0x6e, 0x35, 0x93, 0xd5, 0x7a, 0x95, 0x2f +.byte 0xde, 0x20, 0xd8, 0x5b, 0x7e, 0x94, 0x90, 0x04, 0x6a, 0xba, 0x59, 0x3d, 0x04, 0x05, 0x75, 0x9d +.byte 0x37, 0xa2, 0x0e, 0x2e, 0x3d, 0xeb, 0xc1, 0xa4, 0x52, 0x83, 0xfe, 0xd0, 0x6b, 0xd4, 0x66, 0x8e +.byte 0xdc, 0xc6, 0xe9, 0x12, 0x4e, 0x1d, 0x2a, 0x57, 0xaa, 0x10, 0xbc, 0x7c, 0x5e, 0x82, 0x7d, 0xa6 +.byte 0xa6, 0xc9, 0xf2, 0x2d, 0xb9, 0xf5, 0x17, 0x27, 0xad, 0xd1, 0x0e, 0x89, 0x54, 0x2b, 0x95, 0xfa +.byte 0xc0, 0xad, 0x1d, 0x98, 0x14, 0x78, 0x33, 0x42, 0x86, 0x0a, 0xa9, 0x73, 0xb5, 0xfb, 0x74, 0x0d +.byte 0xb7, 0x1b, 0x30, 0x19, 0xc4, 0x5a, 0x0e, 0x1c, 0x27, 0xb7, 0xda, 0x18, 0xd0, 0xff, 0x8a, 0xc8 +.byte 0x05, 0xba, 0xf1, 0xaa, 0x1c, 0xa2, 0x37, 0xb7, 0xe6, 0x48, 0xa4, 0x46, 0x2c, 0x94, 0xea, 0xa8 +.byte 0x76, 0x62, 0x47, 0x8b, 0x10, 0x53, 0x07, 0x48, 0x57, 0x6c, 0xe2, 0x92, 0x4d, 0xb6, 0xae, 0x05 +.byte 0xcb, 0xdc, 0xc1, 0x4a, 0x5e, 0x8f, 0xac, 0x3d, 0x19, 0x4e, 0xc2, 0xed, 0x60, 0x75, 0x2b, 0xdb +.byte 0xc1, 0xca, 0x42, 0xd5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x46, 0x01, 0x26, 0x30, 0x44, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66 +.byte 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63 +.byte 0x69, 0x61, 0x6c, 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, 0xf6, 0x1b, 0x4f, 0x67, 0x07, 0x2b, 0xa1, 0x15, 0xf5, 0x06, 0x22, 0xcb +.byte 0x1f, 0x01, 0xb2, 0xe3, 0x73, 0x45, 0x06, 0x44, 0x49, 0x2c, 0xbb, 0x49, 0x25, 0x14, 0xd6, 0xce +.byte 0xc3, 0xb7, 0xab, 0x2c, 0x4f, 0xc6, 0x41, 0x32, 0x94, 0x57, 0xfa, 0x12, 0xa7, 0x5b, 0x0e, 0xe2 +.byte 0x8f, 0x1f, 0x1e, 0x86, 0x19, 0xa7, 0xaa, 0xb5, 0x2d, 0xb9, 0x5f, 0x0d, 0x8a, 0xc2, 0xaf, 0x85 +.byte 0x35, 0x79, 0x32, 0x2d, 0xbb, 0x1c, 0x62, 0x37, 0xf2, 0xb1, 0x5b, 0x4a, 0x3d, 0xca, 0xcd, 0x71 +.byte 0x5f, 0xe9, 0x42, 0xbe, 0x94, 0xe8, 0xc8, 0xde, 0xf9, 0x22, 0x48, 0x64, 0xc6, 0xe5, 0xab, 0xc6 +.byte 0x2b, 0x6d, 0xad, 0x05, 0xf0, 0xfa, 0xd5, 0x0b, 0xcf, 0x9a, 0xe5, 0xf0, 0x50, 0xa4, 0x8b, 0x3b +.byte 0x47, 0xa5, 0x23, 0x5b, 0x7a, 0x7a, 0xf8, 0x33, 0x3f, 0xb8, 0xef, 0x99, 0x97, 0xe3, 0x20, 0xc1 +.byte 0xd6, 0x28, 0x89, 0xcf, 0x94, 0xfb, 0xb9, 0x45, 0xed, 0xe3, 0x40, 0x17, 0x11, 0xd4, 0x74, 0xf0 +.byte 0x0b, 0x31, 0xe2, 0x2b, 0x26, 0x6a, 0x9b, 0x4c, 0x57, 0xae, 0xac, 0x20, 0x3e, 0xba, 0x45, 0x7a +.byte 0x05, 0xf3, 0xbd, 0x9b, 0x69, 0x15, 0xae, 0x7d, 0x4e, 0x20, 0x63, 0xc4, 0x35, 0x76, 0x3a, 0x07 +.byte 0x02, 0xc9, 0x37, 0xfd, 0xc7, 0x47, 0xee, 0xe8, 0xf1, 0x76, 0x1d, 0x73, 0x15, 0xf2, 0x97, 0xa4 +.byte 0xb5, 0xc8, 0x7a, 0x79, 0xd9, 0x42, 0xaa, 0x2b, 0x7f, 0x5c, 0xfe, 0xce, 0x26, 0x4f, 0xa3, 0x66 +.byte 0x81, 0x35, 0xaf, 0x44, 0xba, 0x54, 0x1e, 0x1c, 0x30, 0x32, 0x65, 0x9d, 0xe6, 0x3c, 0x93, 0x5e +.byte 0x50, 0x4e, 0x7a, 0xe3, 0x3a, 0xd4, 0x6e, 0xcc, 0x1a, 0xfb, 0xf9, 0xd2, 0x37, 0xae, 0x24, 0x2a +.byte 0xab, 0x57, 0x03, 0x22, 0x28, 0x0d, 0x49, 0x75, 0x7f, 0xb7, 0x28, 0xda, 0x75, 0xbf, 0x8e, 0xe3 +.byte 0xdc, 0x0e, 0x79, 0x31, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x46, 0x01, 0x26, 0x30, 0x44, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66 +.byte 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b +.byte 0x69, 0x6e, 0x67, 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, 0xb4, 0x84, 0xcc, 0x33, 0x17, 0x2e, 0x6b, 0x94, 0x6c, 0x6b, 0x61, 0x52 +.byte 0xa0, 0xeb, 0xa3, 0xcf, 0x79, 0x94, 0x4c, 0xe5, 0x94, 0x80, 0x99, 0xcb, 0x55, 0x64, 0x44, 0x65 +.byte 0x8f, 0x67, 0x64, 0xe2, 0x06, 0xe3, 0x5c, 0x37, 0x49, 0xf6, 0x2f, 0x9b, 0x84, 0x84, 0x1e, 0x2d +.byte 0xf2, 0x60, 0x9d, 0x30, 0x4e, 0xcc, 0x84, 0x85, 0xe2, 0x2c, 0xcf, 0x1e, 0x9e, 0xfe, 0x36, 0xab +.byte 0x33, 0x77, 0x35, 0x44, 0xd8, 0x35, 0x96, 0x1a, 0x3d, 0x36, 0xe8, 0x7a, 0x0e, 0xd8, 0xd5, 0x47 +.byte 0xa1, 0x6a, 0x69, 0x8b, 0xd9, 0xfc, 0xbb, 0x3a, 0xae, 0x79, 0x5a, 0xd5, 0xf4, 0xd6, 0x71, 0xbb +.byte 0x9a, 0x90, 0x23, 0x6b, 0x9a, 0xb7, 0x88, 0x74, 0x87, 0x0c, 0x1e, 0x5f, 0xb9, 0x9e, 0x2d, 0xfa +.byte 0xab, 0x53, 0x2b, 0xdc, 0xbb, 0x76, 0x3e, 0x93, 0x4c, 0x08, 0x08, 0x8c, 0x1e, 0xa2, 0x23, 0x1c +.byte 0xd4, 0x6a, 0xad, 0x22, 0xba, 0x99, 0x01, 0x2e, 0x6d, 0x65, 0xcb, 0xbe, 0x24, 0x66, 0x55, 0x24 +.byte 0x4b, 0x40, 0x44, 0xb1, 0x1b, 0xd7, 0xe1, 0xc2, 0x85, 0xc0, 0xde, 0x10, 0x3f, 0x3d, 0xed, 0xb8 +.byte 0xfc, 0xf1, 0xf1, 0x23, 0x53, 0xdc, 0xbf, 0x65, 0x97, 0x6f, 0xd9, 0xf9, 0x40, 0x71, 0x8d, 0x7d +.byte 0xbd, 0x95, 0xd4, 0xce, 0xbe, 0xa0, 0x5e, 0x27, 0x23, 0xde, 0xfd, 0xa6, 0xd0, 0x26, 0x0e, 0x00 +.byte 0x29, 0xeb, 0x3c, 0x46, 0xf0, 0x3d, 0x60, 0xbf, 0x3f, 0x50, 0xd2, 0xdc, 0x26, 0x41, 0x51, 0x9e +.byte 0x14, 0x37, 0x42, 0x04, 0xa3, 0x70, 0x57, 0xa8, 0x1b, 0x87, 0xed, 0x2d, 0xfa, 0x7b, 0xee, 0x8c +.byte 0x0a, 0xe3, 0xa9, 0x66, 0x89, 0x19, 0xcb, 0x41, 0xf9, 0xdd, 0x44, 0x36, 0x61, 0xcf, 0xe2, 0x77 +.byte 0x46, 0xc8, 0x7d, 0xf6, 0xf4, 0x92, 0x81, 0x36, 0xfd, 0xdb, 0x34, 0xf1, 0x72, 0x7e, 0xf3, 0x0c +.byte 0x16, 0xbd, 0xb4, 0x15, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30, 0x45, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20 +.byte 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x12, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x20, 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, 0x9a, 0x18, 0xca, 0x4b, 0x94, 0x0d, 0x00, 0x2d, 0xaf, 0x03, 0x29 +.byte 0x8a, 0xf0, 0x0f, 0x81, 0xc8, 0xae, 0x4c, 0x19, 0x85, 0x1d, 0x08, 0x9f, 0xab, 0x29, 0x44, 0x85 +.byte 0xf3, 0x2f, 0x81, 0xad, 0x32, 0x1e, 0x90, 0x46, 0xbf, 0xa3, 0x86, 0x26, 0x1a, 0x1e, 0xfe, 0x7e +.byte 0x1c, 0x18, 0x3a, 0x5c, 0x9c, 0x60, 0x17, 0x2a, 0x3a, 0x74, 0x83, 0x33, 0x30, 0x7d, 0x61, 0x54 +.byte 0x11, 0xcb, 0xed, 0xab, 0xe0, 0xe6, 0xd2, 0xa2, 0x7e, 0xf5, 0x6b, 0x6f, 0x18, 0xb7, 0x0a, 0x0b +.byte 0x2d, 0xfd, 0xe9, 0x3e, 0xef, 0x0a, 0xc6, 0xb3, 0x10, 0xe9, 0xdc, 0xc2, 0x46, 0x17, 0xf8, 0x5d +.byte 0xfd, 0xa4, 0xda, 0xff, 0x9e, 0x49, 0x5a, 0x9c, 0xe6, 0x33, 0xe6, 0x24, 0x96, 0xf7, 0x3f, 0xba +.byte 0x5b, 0x2b, 0x1c, 0x7a, 0x35, 0xc2, 0xd6, 0x67, 0xfe, 0xab, 0x66, 0x50, 0x8b, 0x6d, 0x28, 0x60 +.byte 0x2b, 0xef, 0xd7, 0x60, 0xc3, 0xc7, 0x93, 0xbc, 0x8d, 0x36, 0x91, 0xf3, 0x7f, 0xf8, 0xdb, 0x11 +.byte 0x13, 0xc4, 0x9c, 0x77, 0x76, 0xc1, 0xae, 0xb7, 0x02, 0x6a, 0x81, 0x7a, 0xa9, 0x45, 0x83, 0xe2 +.byte 0x05, 0xe6, 0xb9, 0x56, 0xc1, 0x94, 0x37, 0x8f, 0x48, 0x71, 0x63, 0x22, 0xec, 0x17, 0x65, 0x07 +.byte 0x95, 0x8a, 0x4b, 0xdf, 0x8f, 0xc6, 0x5a, 0x0a, 0xe5, 0xb0, 0xe3, 0x5f, 0x5e, 0x6b, 0x11, 0xab +.byte 0x0c, 0xf9, 0x85, 0xeb, 0x44, 0xe9, 0xf8, 0x04, 0x73, 0xf2, 0xe9, 0xfe, 0x5c, 0x98, 0x8c, 0xf5 +.byte 0x73, 0xaf, 0x6b, 0xb4, 0x7e, 0xcd, 0xd4, 0x5c, 0x02, 0x2b, 0x4c, 0x39, 0xe1, 0xb2, 0x95, 0x95 +.byte 0x2d, 0x42, 0x87, 0xd7, 0xd5, 0xb3, 0x90, 0x43, 0xb7, 0x6c, 0x13, 0xf1, 0xde, 0xdd, 0xf6, 0xc4 +.byte 0xf8, 0x89, 0x3f, 0xd1, 0x75, 0xf5, 0x92, 0xc3, 0x91, 0xd5, 0x8a, 0x88, 0xd0, 0x90, 0xec, 0xdc +.byte 0x6d, 0xde, 0x89, 0xc2, 0x65, 0x71, 0x96, 0x8b, 0x0d, 0x03, 0xfd, 0x9c, 0xbf, 0x5b, 0x16, 0xac +.byte 0x92, 0xdb, 0xea, 0xfe, 0x79, 0x7c, 0xad, 0xeb, 0xaf, 0xf7, 0x16, 0xcb, 0xdb, 0xcd, 0x25, 0x2b +.byte 0xe5, 0x1f, 0xfb, 0x9a, 0x9f, 0xe2, 0x51, 0xcc, 0x3a, 0x53, 0x0c, 0x48, 0xe6, 0x0e, 0xbd, 0xc9 +.byte 0xb4, 0x76, 0x06, 0x52, 0xe6, 0x11, 0x13, 0x85, 0x72, 0x63, 0x03, 0x04, 0xe0, 0x04, 0x36, 0x2b +.byte 0x20, 0x19, 0x02, 0xe8, 0x74, 0xa7, 0x1f, 0xb6, 0xc9, 0x56, 0x66, 0xf0, 0x75, 0x25, 0xdc, 0x67 +.byte 0xc1, 0x0e, 0x61, 0x60, 0x88, 0xb3, 0x3e, 0xd1, 0xa8, 0xfc, 0xa3, 0xda, 0x1d, 0xb0, 0xd1, 0xb1 +.byte 0x23, 0x54, 0xdf, 0x44, 0x76, 0x6d, 0xed, 0x41, 0xd8, 0xc1, 0xb2, 0x22, 0xb6, 0x53, 0x1c, 0xdf +.byte 0x35, 0x1d, 0xdc, 0xa1, 0x77, 0x2a, 0x31, 0xe4, 0x2d, 0xf5, 0xe5, 0xe5, 0xdb, 0xc8, 0xe0, 0xff +.byte 0xe5, 0x80, 0xd7, 0x0b, 0x63, 0xa0, 0xff, 0x33, 0xa1, 0x0f, 0xba, 0x2c, 0x15, 0x15, 0xea, 0x97 +.byte 0xb3, 0xd2, 0xa2, 0xb5, 0xbe, 0xf2, 0x8c, 0x96, 0x1e, 0x1a, 0x8f, 0x1d, 0x6c, 0xa4, 0x61, 0x37 +.byte 0xb9, 0x86, 0x73, 0x33, 0xd7, 0x97, 0x96, 0x9e, 0x23, 0x7d, 0x82, 0xa4, 0x4c, 0x81, 0xe2, 0xa1 +.byte 0xd1, 0xba, 0x67, 0x5f, 0x95, 0x07, 0xa3, 0x27, 0x11, 0xee, 0x16, 0x10, 0x7b, 0xbc, 0x45, 0x4a +.byte 0x4c, 0xb2, 0x04, 0xd2, 0xab, 0xef, 0xd5, 0xfd, 0x0c, 0x51, 0xce, 0x50, 0x6a, 0x08, 0x31, 0xf9 +.byte 0x91, 0xda, 0x0c, 0x8f, 0x64, 0x5c, 0x03, 0xc3, 0x3a, 0x8b, 0x20, 0x3f, 0x6e, 0x8d, 0x67, 0x3d +.byte 0x3a, 0xd6, 0xfe, 0x7d, 0x5b, 0x88, 0xc9, 0x5e, 0xfb, 0xcc, 0x61, 0xdc, 0x8b, 0x33, 0x77, 0xd3 +.byte 0x44, 0x32, 0x35, 0x09, 0x62, 0x04, 0x92, 0x16, 0x10, 0xd8, 0x9e, 0x27, 0x47, 0xfb, 0x3b, 0x21 +.byte 0xe3, 0xf8, 0xeb, 0x1d, 0x5b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30, 0x45 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30 +.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73 +.byte 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x12, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x33, 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, 0xcc, 0x57, 0x42, 0x16, 0x54, 0x9c, 0xe6, 0x98, 0xd3, 0xd3 +.byte 0x4d, 0xee, 0xfe, 0xed, 0xc7, 0x9f, 0x43, 0x39, 0x4a, 0x65, 0xb3, 0xe8, 0x16, 0x88, 0x34, 0xdb +.byte 0x0d, 0x59, 0x91, 0x74, 0xcf, 0x92, 0xb8, 0x04, 0x40, 0xad, 0x02, 0x4b, 0x31, 0xab, 0xbc, 0x8d +.byte 0x91, 0x68, 0xd8, 0x20, 0x0e, 0x1a, 0x01, 0xe2, 0x1a, 0x7b, 0x4e, 0x17, 0x5d, 0xe2, 0x8a, 0xb7 +.byte 0x3f, 0x99, 0x1a, 0xcd, 0xeb, 0x61, 0xab, 0xc2, 0x65, 0xa6, 0x1f, 0xb7, 0xb7, 0xbd, 0xb7, 0x8f +.byte 0xfc, 0xfd, 0x70, 0x8f, 0x0b, 0xa0, 0x67, 0xbe, 0x01, 0xa2, 0x59, 0xcf, 0x71, 0xe6, 0x0f, 0x29 +.byte 0x76, 0xff, 0xb1, 0x56, 0x79, 0x45, 0x2b, 0x1f, 0x9e, 0x7a, 0x54, 0xe8, 0xa3, 0x29, 0x35, 0x68 +.byte 0xa4, 0x01, 0x4f, 0x0f, 0xa4, 0x2e, 0x37, 0xef, 0x1b, 0xbf, 0xe3, 0x8f, 0x10, 0xa8, 0x72, 0xab +.byte 0x58, 0x57, 0xe7, 0x54, 0x86, 0xc8, 0xc9, 0xf3, 0x5b, 0xda, 0x2c, 0xda, 0x5d, 0x8e, 0x6e, 0x3c +.byte 0xa3, 0x3e, 0xda, 0xfb, 0x82, 0xe5, 0xdd, 0xf2, 0x5c, 0xb2, 0x05, 0x33, 0x6f, 0x8a, 0x36, 0xce +.byte 0xd0, 0x13, 0x4e, 0xff, 0xbf, 0x4a, 0x0c, 0x34, 0x4c, 0xa6, 0xc3, 0x21, 0xbd, 0x50, 0x04, 0x55 +.byte 0xeb, 0xb1, 0xbb, 0x9d, 0xfb, 0x45, 0x1e, 0x64, 0x15, 0xde, 0x55, 0x01, 0x8c, 0x02, 0x76, 0xb5 +.byte 0xcb, 0xa1, 0x3f, 0x42, 0x69, 0xbc, 0x2f, 0xbd, 0x68, 0x43, 0x16, 0x56, 0x89, 0x2a, 0x37, 0x61 +.byte 0x91, 0xfd, 0xa6, 0xae, 0x4e, 0xc0, 0xcb, 0x14, 0x65, 0x94, 0x37, 0x4b, 0x92, 0x06, 0xef, 0x04 +.byte 0xd0, 0xc8, 0x9c, 0x88, 0xdb, 0x0b, 0x7b, 0x81, 0xaf, 0xb1, 0x3d, 0x2a, 0xc4, 0x65, 0x3a, 0x78 +.byte 0xb6, 0xee, 0xdc, 0x80, 0xb1, 0xd2, 0xd3, 0x99, 0x9c, 0x3a, 0xee, 0x6b, 0x5a, 0x6b, 0xb3, 0x8d +.byte 0xb7, 0xd5, 0xce, 0x9c, 0xc2, 0xbe, 0xa5, 0x4b, 0x2f, 0x16, 0xb1, 0x9e, 0x68, 0x3b, 0x06, 0x6f +.byte 0xae, 0x7d, 0x9f, 0xf8, 0xde, 0xec, 0xcc, 0x29, 0xa7, 0x98, 0xa3, 0x25, 0x43, 0x2f, 0xef, 0xf1 +.byte 0x5f, 0x26, 0xe1, 0x88, 0x4d, 0xf8, 0x5e, 0x6e, 0xd7, 0xd9, 0x14, 0x6e, 0x19, 0x33, 0x69, 0xa7 +.byte 0x3b, 0x84, 0x89, 0x93, 0xc4, 0x53, 0x55, 0x13, 0xa1, 0x51, 0x78, 0x40, 0xf8, 0xb8, 0xc9, 0xa2 +.byte 0xee, 0x7b, 0xba, 0x52, 0x42, 0x83, 0x9e, 0x14, 0xed, 0x05, 0x52, 0x5a, 0x59, 0x56, 0xa7, 0x97 +.byte 0xfc, 0x9d, 0x3f, 0x0a, 0x29, 0xd8, 0xdc, 0x4f, 0x91, 0x0e, 0x13, 0xbc, 0xde, 0x95, 0xa4, 0xdf +.byte 0x8b, 0x99, 0xbe, 0xac, 0x9b, 0x33, 0x88, 0xef, 0xb5, 0x81, 0xaf, 0x1b, 0xc6, 0x22, 0x53, 0xc8 +.byte 0xf6, 0xc7, 0xee, 0x97, 0x14, 0xb0, 0xc5, 0x7c, 0x78, 0x52, 0xc8, 0xf0, 0xce, 0x6e, 0x77, 0x60 +.byte 0x84, 0xa6, 0xe9, 0x2a, 0x76, 0x20, 0xed, 0x58, 0x01, 0x17, 0x30, 0x93, 0xe9, 0x1a, 0x8b, 0xe0 +.byte 0x73, 0x63, 0xd9, 0x6a, 0x92, 0x94, 0x49, 0x4e, 0xb4, 0xad, 0x4a, 0x85, 0xc4, 0xa3, 0x22, 0x30 +.byte 0xfc, 0x09, 0xed, 0x68, 0x22, 0x73, 0xa6, 0x88, 0x0c, 0x55, 0x21, 0x58, 0xc5, 0xe1, 0x3a, 0x9f +.byte 0x2a, 0xdd, 0xca, 0xe1, 0x90, 0xe0, 0xd9, 0x73, 0xab, 0x6c, 0x80, 0xb8, 0xe8, 0x0b, 0x64, 0x93 +.byte 0xa0, 0x9c, 0x8c, 0x19, 0xff, 0xb3, 0xd2, 0x0c, 0xec, 0x91, 0x26, 0x87, 0x8a, 0xb3, 0xa2, 0xe1 +.byte 0x70, 0x8f, 0x2c, 0x0a, 0xe5, 0xcd, 0x6d, 0x68, 0x51, 0xeb, 0xda, 0x3f, 0x05, 0x7f, 0x8b, 0x32 +.byte 0xe6, 0x13, 0x5c, 0x6b, 0xfe, 0x5f, 0x40, 0xe2, 0x22, 0xc8, 0xb4, 0xb4, 0x64, 0x4f, 0xd6, 0xba +.byte 0x7d, 0x48, 0x3e, 0xa8, 0x69, 0x0c, 0xd7, 0xbb, 0x86, 0x71, 0xc9, 0x73, 0xb8, 0x3f, 0x3b, 0x9d +.byte 0x25, 0x4b, 0xda, 0xff, 0x40, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x02, 0x26, 0x30 +.byte 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15 +.byte 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69 +.byte 0x67, 0x6e, 0x20, 0x41, 0x47, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16 +.byte 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x20, 0x43 +.byte 0x41, 0x20, 0x2d, 0x20, 0x47, 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, 0xaf, 0xe4, 0xee, 0x7e, 0x8b, 0x24, 0x0e, 0x12, 0x6e +.byte 0xa9, 0x50, 0x2d, 0x16, 0x44, 0x3b, 0x92, 0x92, 0x5c, 0xca, 0xb8, 0x5d, 0x84, 0x92, 0x42, 0x13 +.byte 0x2a, 0xbc, 0x65, 0x57, 0x82, 0x40, 0x3e, 0x57, 0x24, 0xcd, 0x50, 0x8b, 0x25, 0x2a, 0xb7, 0x6f +.byte 0xfc, 0xef, 0xa2, 0xd0, 0xc0, 0x1f, 0x02, 0x24, 0x4a, 0x13, 0x96, 0x8f, 0x23, 0x13, 0xe6, 0x28 +.byte 0x58, 0x00, 0xa3, 0x47, 0xc7, 0x06, 0xa7, 0x84, 0x23, 0x2b, 0xbb, 0xbd, 0x96, 0x2b, 0x7f, 0x55 +.byte 0xcc, 0x8b, 0xc1, 0x57, 0x1f, 0x0e, 0x62, 0x65, 0x0f, 0xdd, 0x3d, 0x56, 0x8a, 0x73, 0xda, 0xae +.byte 0x7e, 0x6d, 0xba, 0x81, 0x1c, 0x7e, 0x42, 0x8c, 0x20, 0x35, 0xd9, 0x43, 0x4d, 0x84, 0xfa, 0x84 +.byte 0xdb, 0x52, 0x2c, 0xf3, 0x0e, 0x27, 0x77, 0x0b, 0x6b, 0xbf, 0x11, 0x2f, 0x72, 0x78, 0x9f, 0x2e +.byte 0xd8, 0x3e, 0xe6, 0x18, 0x37, 0x5a, 0x2a, 0x72, 0xf9, 0xda, 0x62, 0x90, 0x92, 0x95, 0xca, 0x1f +.byte 0x9c, 0xe9, 0xb3, 0x3c, 0x2b, 0xcb, 0xf3, 0x01, 0x13, 0xbf, 0x5a, 0xcf, 0xc1, 0xb5, 0x0a, 0x60 +.byte 0xbd, 0xdd, 0xb5, 0x99, 0x64, 0x53, 0xb8, 0xa0, 0x96, 0xb3, 0x6f, 0xe2, 0x26, 0x77, 0x91, 0x8c +.byte 0xe0, 0x62, 0x10, 0x02, 0x9f, 0x34, 0x0f, 0xa4, 0xd5, 0x92, 0x33, 0x51, 0xde, 0xbe, 0x8d, 0xba +.byte 0x84, 0x7a, 0x60, 0x3c, 0x6a, 0xdb, 0x9f, 0x2b, 0xec, 0xde, 0xde, 0x01, 0x3f, 0x6e, 0x4d, 0xe5 +.byte 0x50, 0x86, 0xcb, 0xb4, 0xaf, 0xed, 0x44, 0x40, 0xc5, 0xca, 0x5a, 0x8c, 0xda, 0xd2, 0x2b, 0x7c +.byte 0xa8, 0xee, 0xbe, 0xa6, 0xe5, 0x0a, 0xaa, 0x0e, 0xa5, 0xdf, 0x05, 0x52, 0xb7, 0x55, 0xc7, 0x22 +.byte 0x5d, 0x32, 0x6a, 0x97, 0x97, 0x63, 0x13, 0xdb, 0xc9, 0xdb, 0x79, 0x36, 0x7b, 0x85, 0x3a, 0x4a +.byte 0xc5, 0x52, 0x89, 0xf9, 0x24, 0xe7, 0x9d, 0x77, 0xa9, 0x82, 0xff, 0x55, 0x1c, 0xa5, 0x71, 0x69 +.byte 0x2b, 0xd1, 0x02, 0x24, 0xf2, 0xb3, 0x26, 0xd4, 0x6b, 0xda, 0x04, 0x55, 0xe5, 0xc1, 0x0a, 0xc7 +.byte 0x6d, 0x30, 0x37, 0x90, 0x2a, 0xe4, 0x9e, 0x14, 0x33, 0x5e, 0x16, 0x17, 0x55, 0xc5, 0x5b, 0xb5 +.byte 0xcb, 0x34, 0x89, 0x92, 0xf1, 0x9d, 0x26, 0x8f, 0xa1, 0x07, 0xd4, 0xc6, 0xb2, 0x78, 0x50, 0xdb +.byte 0x0c, 0x0c, 0x0b, 0x7c, 0x0b, 0x8c, 0x41, 0xd7, 0xb9, 0xe9, 0xdd, 0x8c, 0x88, 0xf7, 0xa3, 0x4d +.byte 0xb2, 0x32, 0xcc, 0xd8, 0x17, 0xda, 0xcd, 0xb7, 0xce, 0x66, 0x9d, 0xd4, 0xfd, 0x5e, 0xff, 0xbd +.byte 0x97, 0x3e, 0x29, 0x75, 0xe7, 0x7e, 0xa7, 0x62, 0x58, 0xaf, 0x25, 0x34, 0xa5, 0x41, 0xc7, 0x3d +.byte 0xbc, 0x0d, 0x50, 0xca, 0x03, 0x03, 0x0f, 0x08, 0x5a, 0x1f, 0x95, 0x73, 0x78, 0x62, 0xbf, 0xaf +.byte 0x72, 0x14, 0x69, 0x0e, 0xa5, 0xe5, 0x03, 0x0e, 0x78, 0x8e, 0x26, 0x28, 0x42, 0xf0, 0x07, 0x0b +.byte 0x62, 0x20, 0x10, 0x67, 0x39, 0x46, 0xfa, 0xa9, 0x03, 0xcc, 0x04, 0x38, 0x7a, 0x66, 0xef, 0x20 +.byte 0x83, 0xb5, 0x8c, 0x4a, 0x56, 0x8e, 0x91, 0x00, 0xfc, 0x8e, 0x5c, 0x82, 0xde, 0x88, 0xa0, 0xc3 +.byte 0xe2, 0x68, 0x6e, 0x7d, 0x8d, 0xef, 0x3c, 0xdd, 0x65, 0xf4, 0x5d, 0xac, 0x51, 0xef, 0x24, 0x80 +.byte 0xae, 0xaa, 0x56, 0x97, 0x6f, 0xf9, 0xad, 0x7d, 0xda, 0x61, 0x3f, 0x98, 0x77, 0x3c, 0xa5, 0x91 +.byte 0xb6, 0x1c, 0x8c, 0x26, 0xda, 0x65, 0xa2, 0x09, 0x6d, 0xc1, 0xe2, 0x54, 0xe3, 0xb9, 0xca, 0x4c +.byte 0x4c, 0x80, 0x8f, 0x77, 0x7b, 0x60, 0x9a, 0x1e, 0xdf, 0xb6, 0xf2, 0x48, 0x1e, 0x0e, 0xba, 0x4e +.byte 0x54, 0x6d, 0x98, 0xe0, 0xe1, 0xa2, 0x1a, 0xa2, 0x77, 0x50, 0xcf, 0xc4, 0x63, 0x92, 0xec, 0x47 +.byte 0x19, 0x9d, 0xeb, 0xe6, 0x6b, 0xce, 0xc1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x47, 0x00, 0x78 +.byte 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17 +.byte 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65, 0x6d +.byte 0x69, 0x75, 0x6d, 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, 0x0d +.byte 0x30, 0x5e, 0x1b, 0x15, 0x9d, 0x03, 0xd0, 0xa1, 0x79, 0x35, 0xb7, 0x3a, 0x3c, 0x92, 0x7a, 0xca +.byte 0x15, 0x1c, 0xcd, 0x62, 0xf3, 0x9c, 0x26, 0x5c, 0x07, 0x3d, 0xe5, 0x54, 0xfa, 0xa3, 0xd6, 0xcc +.byte 0x12, 0xea, 0xf4, 0x14, 0x5f, 0xe8, 0x8e, 0x19, 0xab, 0x2f, 0x2e, 0x48, 0xe6, 0xac, 0x18, 0x43 +.byte 0x78, 0xac, 0xd0, 0x37, 0xc3, 0xbd, 0xb2, 0xcd, 0x2c, 0xe6, 0x47, 0xe2, 0x1a, 0xe6, 0x63, 0xb8 +.byte 0x3d, 0x2e, 0x2f, 0x78, 0xc4, 0x4f, 0xdb, 0xf4, 0x0f, 0xa4, 0x68, 0x4c, 0x55, 0x72, 0x6b, 0x95 +.byte 0x1d, 0x4e, 0x18, 0x42, 0x95, 0x78, 0xcc, 0x37, 0x3c, 0x91, 0xe2, 0x9b, 0x65, 0x2b, 0x29, 0x00 +.byte 0x48, 0x00, 0x78, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x1c, 0x30 +.byte 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 +.byte 0x67, 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, 0x9c, 0x0e, 0xb1, 0xcf, 0xb7, 0xe8, 0x9e, 0x52, 0x77, 0x75, 0x34, 0xfa, 0xa5 +.byte 0x46, 0xa7, 0xad, 0x32, 0x19, 0x32, 0xb4, 0x07, 0xa9, 0x27, 0xca, 0x94, 0xbb, 0x0c, 0xd2, 0x0a +.byte 0x10, 0xc7, 0xda, 0x89, 0xb0, 0x97, 0x0c, 0x70, 0x13, 0x09, 0x01, 0x8e, 0xd8, 0xea, 0x47, 0xea +.byte 0xbe, 0xb2, 0x80, 0x2b, 0xcd, 0xfc, 0x28, 0x0d, 0xdb, 0xac, 0xbc, 0xa4, 0x86, 0x37, 0xed, 0x70 +.byte 0x08, 0x00, 0x75, 0xea, 0x93, 0x0b, 0x7b, 0x2e, 0x52, 0x9c, 0x23, 0x68, 0x23, 0x06, 0x43, 0xec +.byte 0x92, 0x2f, 0x53, 0x84, 0xdb, 0xfb, 0x47, 0x14, 0x07, 0xe8, 0x5f, 0x94, 0x67, 0x5d, 0xc9, 0x7a +.byte 0x81, 0x3c, 0x20, 0x00, 0x48, 0x02, 0x26, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x10, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73 +.byte 0x61, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 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 0xac, 0xac, 0x74, 0x32, 0xe8, 0xb3, 0x65, 0xe5, 0xba, 0xed, 0x43, 0x26, 0x1d, 0xa6, 0x89, 0x0d +.byte 0x45, 0xba, 0x29, 0x88, 0xb2, 0xa4, 0x1d, 0x63, 0xdd, 0xd3, 0xc1, 0x2c, 0x09, 0x57, 0x89, 0x39 +.byte 0xa1, 0x55, 0xe9, 0x67, 0x34, 0x77, 0x0c, 0x6e, 0xe4, 0x55, 0x1d, 0x52, 0x25, 0xd2, 0x13, 0x6b +.byte 0x5e, 0xe1, 0x1d, 0xa9, 0xb7, 0x7d, 0x89, 0x32, 0x5f, 0x0d, 0x9e, 0x9f, 0x2c, 0x7a, 0x63, 0x60 +.byte 0x40, 0x1f, 0xa6, 0xb0, 0xb6, 0x78, 0x8f, 0x99, 0x54, 0x96, 0x08, 0x58, 0xae, 0xe4, 0x06, 0xbc +.byte 0x62, 0x05, 0x02, 0x16, 0xbf, 0xaf, 0xa8, 0x23, 0x03, 0xb6, 0x94, 0x0f, 0xbc, 0x6e, 0x6c, 0xc2 +.byte 0xcb, 0xd5, 0xa6, 0xbb, 0x0c, 0xe9, 0xf6, 0xc1, 0x02, 0xfb, 0x21, 0xde, 0x66, 0xdd, 0x17, 0xab +.byte 0x74, 0x42, 0xef, 0xf0, 0x74, 0x2f, 0x25, 0xf4, 0xea, 0x6b, 0x55, 0x5b, 0x90, 0xdb, 0x9d, 0xdf +.byte 0x5e, 0x87, 0x0a, 0x40, 0xfb, 0xad, 0x19, 0x6b, 0xfb, 0xf7, 0xca, 0x60, 0x88, 0xde, 0xda, 0xc1 +.byte 0x8f, 0xd6, 0xae, 0xd5, 0x7f, 0xd4, 0x3c, 0x83, 0xee, 0xd7, 0x16, 0x4c, 0x83, 0x45, 0x33, 0x6b +.byte 0x27, 0xd0, 0x86, 0xd0, 0x1c, 0x2d, 0x6b, 0xf3, 0xab, 0x7d, 0xf1, 0x85, 0xa9, 0xf5, 0x28, 0xd2 +.byte 0xad, 0xef, 0xf3, 0x84, 0x4b, 0x1c, 0x87, 0xfc, 0x13, 0xa3, 0x3a, 0x72, 0xa2, 0x5a, 0x11, 0x2b +.byte 0xd6, 0x27, 0x71, 0x27, 0xed, 0x81, 0x2d, 0x6d, 0x66, 0x81, 0x92, 0x87, 0xb4, 0x1b, 0x58, 0x7a +.byte 0xcc, 0x3f, 0x0a, 0xfa, 0x46, 0x4f, 0x4d, 0x78, 0x5c, 0xf8, 0x2b, 0x48, 0xe3, 0x04, 0x84, 0xcb +.byte 0x5d, 0xf6, 0xb4, 0x6a, 0xb3, 0x65, 0xfc, 0x42, 0x9e, 0x51, 0x26, 0x23, 0x20, 0xcb, 0x3d, 0x14 +.byte 0xf9, 0x81, 0xed, 0x65, 0x16, 0x00, 0x4f, 0x1a, 0x64, 0x97, 0x66, 0x08, 0xcf, 0x8c, 0x7b, 0xe3 +.byte 0x2b, 0xc0, 0x9d, 0xf9, 0x14, 0xf2, 0x1b, 0xf1, 0x56, 0x6a, 0x16, 0xbf, 0x2c, 0x85, 0x85, 0xcd +.byte 0x78, 0x38, 0x9a, 0xeb, 0x42, 0x6a, 0x02, 0x34, 0x18, 0x83, 0x17, 0x4e, 0x94, 0x56, 0xf8, 0xb6 +.byte 0x82, 0xb5, 0xf3, 0x96, 0xdd, 0x3d, 0xf3, 0xbe, 0x7f, 0x20, 0x77, 0x3e, 0x7b, 0x19, 0x23, 0x6b +.byte 0x2c, 0xd4, 0x72, 0x73, 0x43, 0x57, 0x7d, 0xe0, 0xf8, 0xd7, 0x69, 0x4f, 0x17, 0x36, 0x04, 0xf9 +.byte 0xc0, 0x90, 0x60, 0x37, 0x45, 0xde, 0xe6, 0x0c, 0xd8, 0x74, 0x8d, 0xae, 0x9c, 0xa2, 0x6d, 0x74 +.byte 0x5d, 0x42, 0xbe, 0x06, 0xf5, 0xd9, 0x64, 0x6e, 0x02, 0x10, 0xac, 0x89, 0xb0, 0x4c, 0x3b, 0x07 +.byte 0x4d, 0x40, 0x7e, 0x24, 0xc5, 0x8a, 0x98, 0x82, 0x79, 0x8e, 0xa4, 0xa7, 0x82, 0x20, 0x8d, 0x23 +.byte 0xfa, 0x27, 0x71, 0xc9, 0xdf, 0xc6, 0x41, 0x74, 0xa0, 0x4d, 0xf6, 0x91, 0x16, 0xdc, 0x46, 0x8c +.byte 0x5f, 0x29, 0x63, 0x31, 0x59, 0x71, 0x0c, 0xd8, 0x6f, 0xc2, 0xb6, 0x32, 0x7d, 0xfb, 0xe6, 0x5d +.byte 0x53, 0xa6, 0x7e, 0x15, 0xfc, 0xbb, 0x75, 0x7c, 0x5d, 0xec, 0xf8, 0xf6, 0x17, 0x1c, 0xec, 0xc7 +.byte 0x6b, 0x19, 0xcb, 0xf3, 0x7b, 0xf0, 0x2b, 0x07, 0xa5, 0xd9, 0x6c, 0x79, 0x54, 0x76, 0x6c, 0x9d +.byte 0x1c, 0xa6, 0x6e, 0x0e, 0xe9, 0x79, 0x0c, 0xa8, 0x23, 0x6a, 0xa3, 0xdf, 0x1b, 0x30, 0x31, 0x9f +.byte 0xb1, 0x54, 0x7b, 0xfe, 0x6a, 0xcb, 0x66, 0xaa, 0xdc, 0x65, 0xd0, 0xa2, 0x9e, 0x4a, 0x9a, 0x07 +.byte 0x21, 0x6b, 0x81, 0x8f, 0xdb, 0xc4, 0x59, 0xfa, 0xde, 0x22, 0xc0, 0x04, 0x9c, 0xe3, 0xaa, 0x5b +.byte 0x36, 0x93, 0xe8, 0x3d, 0xbd, 0x7a, 0xa1, 0x9d, 0x0b, 0x76, 0xb1, 0x0b, 0xc7, 0x9d, 0xfd, 0xcf +.byte 0x98, 0xa8, 0x06, 0xc2, 0xf8, 0x2a, 0xa3, 0xa1, 0x83, 0xa0, 0xb7, 0x25, 0x72, 0xa5, 0x02, 0xe3 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x41, 0x47, 0x31 +.byte 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x18, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53 +.byte 0x69, 0x67, 0x6e, 0x20, 0x53, 0x69, 0x6c, 0x76, 0x65, 0x72, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20 +.byte 0x47, 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, 0xc4, 0xf1, 0x87, 0x7f, 0xd3, 0x78, 0x31, 0xf7, 0x38, 0xc9, 0xf8, 0xc3, 0x99 +.byte 0x43, 0xbc, 0xc7, 0xf7, 0xbc, 0x37, 0xe7, 0x4e, 0x71, 0xba, 0x4b, 0x8f, 0xa5, 0x73, 0x1d, 0x5c +.byte 0x6e, 0x98, 0xae, 0x03, 0x57, 0xae, 0x38, 0x37, 0x43, 0x2f, 0x17, 0x3d, 0x1f, 0xc8, 0xce, 0x68 +.byte 0x10, 0xc1, 0x78, 0xae, 0x19, 0x03, 0x2b, 0x10, 0xfa, 0x2c, 0x79, 0x83, 0xf6, 0xe8, 0xb9, 0x68 +.byte 0xb9, 0x55, 0xf2, 0x04, 0x44, 0xa7, 0x39, 0xf9, 0xfc, 0x04, 0x8b, 0x1e, 0xf1, 0xa2, 0x4d, 0x27 +.byte 0xf9, 0x61, 0x7b, 0xba, 0xb7, 0xe5, 0xa2, 0x13, 0xb6, 0xeb, 0x61, 0x3e, 0xd0, 0x6c, 0xd1, 0xe6 +.byte 0xfb, 0xfa, 0x5e, 0xed, 0x1d, 0xb4, 0x9e, 0xa0, 0x35, 0x5b, 0xa1, 0x92, 0xcb, 0xf0, 0x49, 0x92 +.byte 0xfe, 0x85, 0x0a, 0x05, 0x3e, 0xe6, 0xd9, 0x0b, 0xe2, 0x4f, 0xbb, 0xdc, 0x95, 0x37, 0xfc, 0x91 +.byte 0xe9, 0x32, 0x35, 0x22, 0xd1, 0x1f, 0x3a, 0x4e, 0x27, 0x85, 0x9d, 0xb0, 0x15, 0x94, 0x32, 0xda +.byte 0x61, 0x0d, 0x47, 0x4d, 0x60, 0x42, 0xae, 0x92, 0x47, 0xe8, 0x83, 0x5a, 0x50, 0x58, 0xe9, 0x8a +.byte 0x8b, 0xb9, 0x5d, 0xa1, 0xdc, 0xdd, 0x99, 0x4a, 0x1f, 0x36, 0x67, 0xbb, 0x48, 0xe4, 0x83, 0xb6 +.byte 0x37, 0xeb, 0x48, 0x3a, 0xaf, 0x0f, 0x67, 0x8f, 0x17, 0x07, 0xe8, 0x04, 0xca, 0xef, 0x6a, 0x31 +.byte 0x87, 0xd4, 0xc0, 0xb6, 0xf9, 0x94, 0x71, 0x7b, 0x67, 0x64, 0xb8, 0xb6, 0x91, 0x4a, 0x42, 0x7b +.byte 0x65, 0x2e, 0x30, 0x6a, 0x0c, 0xf5, 0x90, 0xee, 0x95, 0xe6, 0xf2, 0xcd, 0x82, 0xec, 0xd9, 0xa1 +.byte 0x4a, 0xec, 0xf6, 0xb2, 0x4b, 0xe5, 0x45, 0x85, 0xe6, 0x6d, 0x78, 0x93, 0x04, 0x2e, 0x9c, 0x82 +.byte 0x6d, 0x36, 0xa9, 0xc4, 0x31, 0x64, 0x1f, 0x86, 0x83, 0x0b, 0x2a, 0xf4, 0x35, 0x0a, 0x78, 0xc9 +.byte 0x55, 0xcf, 0x41, 0xb0, 0x47, 0xe9, 0x30, 0x9f, 0x99, 0xbe, 0x61, 0xa8, 0x06, 0x84, 0xb9, 0x28 +.byte 0x7a, 0x5f, 0x38, 0xd9, 0x1b, 0xa9, 0x38, 0xb0, 0x83, 0x7f, 0x73, 0xc1, 0xc3, 0x3b, 0x48, 0x2a +.byte 0x82, 0x0f, 0x21, 0x9b, 0xb8, 0xcc, 0xa8, 0x35, 0xc3, 0x84, 0x1b, 0x83, 0xb3, 0x3e, 0xbe, 0xa4 +.byte 0x95, 0x69, 0x01, 0x3a, 0x89, 0x00, 0x78, 0x04, 0xd9, 0xc9, 0xf4, 0x99, 0x19, 0xab, 0x56, 0x7e +.byte 0x5b, 0x8b, 0x86, 0x39, 0x15, 0x91, 0xa4, 0x10, 0x2c, 0x09, 0x32, 0x80, 0x60, 0xb3, 0x93, 0xc0 +.byte 0x2a, 0xb6, 0x18, 0x0b, 0x9d, 0x7e, 0x8d, 0x49, 0xf2, 0x10, 0x4a, 0x7f, 0xf9, 0xd5, 0x46, 0x2f +.byte 0x19, 0x92, 0xa3, 0x99, 0xa7, 0x26, 0xac, 0xbb, 0x8c, 0x3c, 0xe6, 0x0e, 0xbc, 0x47, 0x07, 0xdc +.byte 0x73, 0x51, 0xf1, 0x70, 0x64, 0x2f, 0x08, 0xf9, 0xb4, 0x47, 0x1d, 0x30, 0x6c, 0x44, 0xea, 0x29 +.byte 0x37, 0x85, 0x92, 0x68, 0x66, 0xbc, 0x83, 0x38, 0xfe, 0x7b, 0x39, 0x2e, 0xd3, 0x50, 0xf0, 0x1f +.byte 0xfb, 0x5e, 0x60, 0xb6, 0xa9, 0xa6, 0xfa, 0x27, 0x41, 0xf1, 0x9b, 0x18, 0x72, 0xf2, 0xf5, 0x84 +.byte 0x74, 0x4a, 0xc9, 0x67, 0xc4, 0x54, 0xae, 0x48, 0x64, 0xdf, 0x8c, 0xd1, 0x6e, 0xb0, 0x1d, 0xe1 +.byte 0x07, 0x8f, 0x08, 0x1e, 0x99, 0x9c, 0x71, 0xe9, 0x4c, 0xd8, 0xa5, 0xf7, 0x47, 0x12, 0x1f, 0x74 +.byte 0xd1, 0x51, 0x9e, 0x86, 0xf3, 0xc2, 0xa2, 0x23, 0x40, 0x0b, 0x73, 0xdb, 0x4b, 0xa6, 0xe7, 0x73 +.byte 0x06, 0x8c, 0xc1, 0xa0, 0xe9, 0xc1, 0x59, 0xac, 0x46, 0xfa, 0xe6, 0x2f, 0xf8, 0xcf, 0x71, 0x9c +.byte 0x46, 0x6d, 0xb9, 0xc4, 0x15, 0x8d, 0x38, 0x79, 0x03, 0x45, 0x48, 0xef, 0xc4, 0x5d, 0xd7, 0x08 +.byte 0xee, 0x87, 0x39, 0x22, 0x86, 0xb2, 0x0d, 0x0f, 0x58, 0x43, 0xf7, 0x71, 0xa9, 0x48, 0x2e, 0xfd +.byte 0xea, 0xd6, 0x1f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e, 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x25 +.byte 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x55, 0x43, 0x41, 0x20, 0x45, 0x78, 0x74 +.byte 0x65, 0x6e, 0x64, 0x65, 0x64, 0x20, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0xa9, 0x09, 0x07, 0x28, 0x13, 0x02, 0xb0, 0x99, 0xe0, 0x64 +.byte 0xaa, 0x1e, 0x43, 0x16, 0x7a, 0x73, 0xb1, 0x91, 0xa0, 0x75, 0x3e, 0xa8, 0xfa, 0xe3, 0x38, 0x00 +.byte 0x7a, 0xec, 0x89, 0x6a, 0x20, 0x0f, 0x8b, 0xc5, 0xb0, 0x9b, 0x33, 0x03, 0x5a, 0x86, 0xc6, 0x58 +.byte 0x86, 0xd5, 0xc1, 0x85, 0xbb, 0x4f, 0xc6, 0x9c, 0x40, 0x4d, 0xca, 0xbe, 0xee, 0x69, 0x96, 0xb8 +.byte 0xad, 0x81, 0x30, 0x9a, 0x7c, 0x92, 0x05, 0xeb, 0x05, 0x2b, 0x9a, 0x48, 0xd0, 0xb8, 0x76, 0x3e +.byte 0x96, 0xc8, 0x20, 0xbb, 0xd2, 0xb0, 0xf1, 0x8f, 0xd8, 0xac, 0x45, 0x46, 0xff, 0xaa, 0x67, 0x60 +.byte 0xb4, 0x77, 0x7e, 0x6a, 0x1f, 0x3c, 0x1a, 0x52, 0x7a, 0x04, 0x3d, 0x07, 0x3c, 0x85, 0x0d, 0x84 +.byte 0xd0, 0x1f, 0x76, 0x0a, 0xf7, 0x6a, 0x14, 0xdf, 0x72, 0xe3, 0x34, 0x7c, 0x57, 0x4e, 0x56, 0x01 +.byte 0x3e, 0x79, 0xf1, 0xaa, 0x29, 0x3b, 0x6c, 0xfa, 0xf8, 0x8f, 0x6d, 0x4d, 0xc8, 0x35, 0xdf, 0xae +.byte 0xeb, 0xdc, 0x24, 0xee, 0x79, 0x45, 0xa7, 0x85, 0xb6, 0x05, 0x88, 0xde, 0x88, 0x5d, 0x25, 0x7c +.byte 0x97, 0x64, 0x67, 0x09, 0xd9, 0xbf, 0x5a, 0x15, 0x05, 0x86, 0xf3, 0x09, 0x1e, 0xec, 0x58, 0x32 +.byte 0x33, 0x11, 0xf3, 0x77, 0x64, 0xb0, 0x76, 0x1f, 0xe4, 0x10, 0x35, 0x17, 0x1b, 0xf2, 0x0e, 0xb1 +.byte 0x6c, 0xa4, 0x2a, 0xa3, 0x73, 0xfc, 0x09, 0x1f, 0x1e, 0x32, 0x19, 0x53, 0x11, 0xe7, 0xd9, 0xb3 +.byte 0x2c, 0x2e, 0x76, 0x2e, 0xa1, 0xa3, 0xde, 0x7e, 0x6a, 0x88, 0x09, 0xe8, 0xf2, 0x07, 0x8a, 0xf8 +.byte 0xb2, 0xcd, 0x10, 0xe7, 0xe2, 0x73, 0x40, 0x93, 0xbb, 0x08, 0xd1, 0x3f, 0xe1, 0xfc, 0x0b, 0x94 +.byte 0xb3, 0x25, 0xef, 0x7c, 0xa6, 0xd7, 0xd1, 0xaf, 0x9f, 0xff, 0x96, 0x9a, 0xf5, 0x91, 0x7b, 0x98 +.byte 0x0b, 0x77, 0xd4, 0x7e, 0xe8, 0x07, 0xd2, 0x62, 0xb5, 0x95, 0x39, 0xe3, 0xf3, 0xf1, 0x6d, 0x0f +.byte 0x0e, 0x65, 0x84, 0x8a, 0x63, 0x54, 0xc5, 0x80, 0xb6, 0xe0, 0x9e, 0x4b, 0x7d, 0x47, 0x26, 0xa7 +.byte 0x01, 0x08, 0x5d, 0xd1, 0x88, 0x9e, 0xd7, 0xc3, 0x32, 0x44, 0xfa, 0x82, 0x4a, 0x0a, 0x68, 0x54 +.byte 0x7f, 0x38, 0x53, 0x03, 0xcc, 0xa4, 0x00, 0x33, 0x64, 0x51, 0x59, 0x0b, 0xa3, 0x82, 0x91, 0x7a +.byte 0x5e, 0xec, 0x16, 0xc2, 0xf3, 0x2a, 0xe6, 0x62, 0xda, 0x2a, 0xdb, 0x59, 0x62, 0x10, 0x25, 0x4a +.byte 0x2a, 0x81, 0x0b, 0x47, 0x07, 0x43, 0x06, 0x70, 0x87, 0xd2, 0xfa, 0x93, 0x11, 0x29, 0x7a, 0x48 +.byte 0x4d, 0xeb, 0x94, 0xc7, 0x70, 0x4d, 0xaf, 0x67, 0xd5, 0x51, 0xb1, 0x80, 0x20, 0x01, 0x01, 0xb4 +.byte 0x7a, 0x08, 0xa6, 0x90, 0x7f, 0x4e, 0xe0, 0xef, 0x07, 0x41, 0x87, 0xaf, 0x6a, 0xa5, 0x5e, 0x8b +.byte 0xfb, 0xcf, 0x50, 0xb2, 0x9a, 0x54, 0xaf, 0xc3, 0x89, 0xba, 0x58, 0x2d, 0xf5, 0x30, 0x98, 0xb1 +.byte 0x36, 0x72, 0x39, 0x7e, 0x49, 0x04, 0xfd, 0x29, 0xa7, 0x4c, 0x79, 0xe4, 0x05, 0x57, 0xdb, 0x94 +.byte 0xb9, 0x16, 0x53, 0x8d, 0x46, 0xb3, 0x1d, 0x95, 0x61, 0x57, 0x56, 0x7f, 0xaf, 0xf0, 0x16, 0x5b +.byte 0x61, 0x58, 0x6f, 0x36, 0x50, 0x11, 0x0b, 0xd8, 0xac, 0x2b, 0x95, 0x16, 0x1a, 0x0e, 0x1f, 0x08 +.byte 0xcd, 0x36, 0x34, 0x65, 0x10, 0x62, 0x66, 0xd5, 0x80, 0x5f, 0x14, 0x20, 0x5f, 0x2d, 0x0c, 0xa0 +.byte 0x78, 0x0a, 0x68, 0xd6, 0x2c, 0xd7, 0xe9, 0x6f, 0x2b, 0xd2, 0x4a, 0x05, 0x93, 0xfc, 0x9e, 0x6f +.byte 0x6b, 0x67, 0xff, 0x88, 0xf1, 0x4e, 0xa5, 0x69, 0x4a, 0x52, 0x37, 0x05, 0xea, 0xc6, 0x16, 0x8d +.byte 0xd2, 0xc4, 0x99, 0xd1, 0x82, 0x2b, 0x3b, 0xba, 0x35, 0x75, 0xf7, 0x51, 0x51, 0x58, 0xf3, 0xc8 +.byte 0x07, 0xdd, 0xe4, 0xb4, 0x03, 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x00, 0x78, 0x30 +.byte 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c +.byte 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68 +.byte 0x69, 0x6e, 0x61, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1a, 0x30, 0x18 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x76, 0x54, 0x72, 0x75, 0x73, 0x20, 0x45, 0x43, 0x43 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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 0x65, 0x50, 0x4a, 0xae, 0x8c, 0x79, 0x96, 0x4a, 0xaa, 0x1c, 0x08, 0xc3, 0xa3, 0xa2, 0xcd, 0xfe +.byte 0x59, 0x56, 0x41, 0x77, 0xfd, 0x26, 0x94, 0x42, 0xbb, 0x1d, 0xcd, 0x08, 0xdb, 0x73, 0xb2, 0x5b +.byte 0x75, 0xf3, 0xcf, 0x9c, 0x4e, 0x82, 0xf4, 0xbf, 0xf8, 0x61, 0x26, 0x85, 0x6c, 0xd6, 0x85, 0x5b +.byte 0x72, 0x70, 0xd2, 0xfd, 0xdb, 0x62, 0xb4, 0xdf, 0x53, 0x8b, 0xbd, 0xb1, 0x44, 0x58, 0x62, 0x42 +.byte 0x09, 0xc7, 0xfa, 0x7f, 0x5b, 0x10, 0xe7, 0xfe, 0x40, 0xfd, 0xc0, 0xd8, 0xc3, 0x2b, 0x32, 0xe7 +.byte 0x70, 0xa6, 0xb7, 0xa6, 0x20, 0x55, 0x1d, 0x7b, 0x80, 0x5d, 0x4b, 0x8f, 0x67, 0x4c, 0xf1, 0x10 +.byte 0x00, 0x49, 0x01, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x48, 0x4b, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x48, 0x6f +.byte 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50 +.byte 0x6f, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 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, 0xac, 0xff +.byte 0x38, 0xb6, 0xe9, 0x66, 0x02, 0x49, 0xe3, 0xa2, 0xb4, 0xe1, 0x90, 0xf9, 0x40, 0x8f, 0x79, 0xf9 +.byte 0xe2, 0xbd, 0x79, 0xfe, 0x02, 0xbd, 0xee, 0x24, 0x92, 0x1d, 0x22, 0xf6, 0xda, 0x85, 0x72, 0x69 +.byte 0xfe, 0xd7, 0x3f, 0x09, 0xd4, 0xdd, 0x91, 0xb5, 0x02, 0x9c, 0xd0, 0x8d, 0x5a, 0xe1, 0x55, 0xc3 +.byte 0x50, 0x86, 0xb9, 0x29, 0x26, 0xc2, 0xe3, 0xd9, 0xa0, 0xf1, 0x69, 0x03, 0x28, 0x20, 0x80, 0x45 +.byte 0x22, 0x2d, 0x56, 0xa7, 0x3b, 0x54, 0x95, 0x56, 0x22, 0x59, 0x1f, 0x28, 0xdf, 0x1f, 0x20, 0x3d +.byte 0x6d, 0xa2, 0x36, 0xbe, 0x23, 0xa0, 0xb1, 0x6e, 0xb5, 0xb1, 0x27, 0x3f, 0x39, 0x53, 0x09, 0xea +.byte 0xab, 0x6a, 0xe8, 0x74, 0xb2, 0xc2, 0x65, 0x5c, 0x8e, 0xbf, 0x7c, 0xc3, 0x78, 0x84, 0xcd, 0x9e +.byte 0x16, 0xfc, 0xf5, 0x2e, 0x4f, 0x20, 0x2a, 0x08, 0x9f, 0x77, 0xf3, 0xc5, 0x1e, 0xc4, 0x9a, 0x52 +.byte 0x66, 0x1e, 0x48, 0x5e, 0xe3, 0x10, 0x06, 0x8f, 0x22, 0x98, 0xe1, 0x65, 0x8e, 0x1b, 0x5d, 0x23 +.byte 0x66, 0x3b, 0xb8, 0xa5, 0x32, 0x51, 0xc8, 0x86, 0xaa, 0xa1, 0xa9, 0x9e, 0x7f, 0x76, 0x94, 0xc2 +.byte 0xa6, 0x6c, 0xb7, 0x41, 0xf0, 0xd5, 0xc8, 0x06, 0x38, 0xe6, 0xd4, 0x0c, 0xe2, 0xf3, 0x3b, 0x4c +.byte 0x6d, 0x50, 0x8c, 0xc4, 0x83, 0x27, 0xc1, 0x13, 0x84, 0x59, 0x3d, 0x9e, 0x75, 0x74, 0xb6, 0xd8 +.byte 0x02, 0x5e, 0x3a, 0x90, 0x7a, 0xc0, 0x42, 0x36, 0x72, 0xec, 0x6a, 0x4d, 0xdc, 0xef, 0xc4, 0x00 +.byte 0xdf, 0x13, 0x18, 0x57, 0x5f, 0x26, 0x78, 0xc8, 0xd6, 0x0a, 0x79, 0x77, 0xbf, 0xf7, 0xaf, 0xb7 +.byte 0x76, 0xb9, 0xa5, 0x0b, 0x84, 0x17, 0x5d, 0x10, 0xea, 0x6f, 0xe1, 0xab, 0x95, 0x11, 0x5f, 0x6d +.byte 0x3c, 0xa3, 0x5c, 0x4d, 0x83, 0x5b, 0xf2, 0xb3, 0x19, 0x8a, 0x80, 0x8b, 0x0b, 0x87, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 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, 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, 0xb6, 0x11, 0x02, 0x8b, 0x1e, 0xe3, 0xa1, 0x77, 0x9b, 0x3b, 0xdc, 0xbf, 0x94, 0x3e, 0xb7 +.byte 0x95, 0xa7, 0x40, 0x3c, 0xa1, 0xfd, 0x82, 0xf9, 0x7d, 0x32, 0x06, 0x82, 0x71, 0xf6, 0xf6, 0x8c +.byte 0x7f, 0xfb, 0xe8, 0xdb, 0xbc, 0x6a, 0x2e, 0x97, 0x97, 0xa3, 0x8c, 0x4b, 0xf9, 0x2b, 0xf6, 0xb1 +.byte 0xf9, 0xce, 0x84, 0x1d, 0xb1, 0xf9, 0xc5, 0x97, 0xde, 0xef, 0xb9, 0xf2, 0xa3, 0xe9, 0xbc, 0x12 +.byte 0x89, 0x5e, 0xa7, 0xaa, 0x52, 0xab, 0xf8, 0x23, 0x27, 0xcb, 0xa4, 0xb1, 0x9c, 0x63, 0xdb, 0xd7 +.byte 0x99, 0x7e, 0xf0, 0x0a, 0x5e, 0xeb, 0x68, 0xa6, 0xf4, 0xc6, 0x5a, 0x47, 0x0d, 0x4d, 0x10, 0x33 +.byte 0xe3, 0x4e, 0xb1, 0x13, 0xa3, 0xc8, 0x18, 0x6c, 0x4b, 0xec, 0xfc, 0x09, 0x90, 0xdf, 0x9d, 0x64 +.byte 0x29, 0x25, 0x23, 0x07, 0xa1, 0xb4, 0xd2, 0x3d, 0x2e, 0x60, 0xe0, 0xcf, 0xd2, 0x09, 0x87, 0xbb +.byte 0xcd, 0x48, 0xf0, 0x4d, 0xc2, 0xc2, 0x7a, 0x88, 0x8a, 0xbb, 0xba, 0xcf, 0x59, 0x19, 0xd6, 0xaf +.byte 0x8f, 0xb0, 0x07, 0xb0, 0x9e, 0x31, 0xf1, 0x82, 0xc1, 0xc0, 0xdf, 0x2e, 0xa6, 0x6d, 0x6c, 0x19 +.byte 0x0e, 0xb5, 0xd8, 0x7e, 0x26, 0x1a, 0x45, 0x03, 0x3d, 0xb0, 0x79, 0xa4, 0x94, 0x28, 0xad, 0x0f +.byte 0x7f, 0x26, 0xe5, 0xa8, 0x08, 0xfe, 0x96, 0xe8, 0x3c, 0x68, 0x94, 0x53, 0xee, 0x83, 0x3a, 0x88 +.byte 0x2b, 0x15, 0x96, 0x09, 0xb2, 0xe0, 0x7a, 0x8c, 0x2e, 0x75, 0xd6, 0x9c, 0xeb, 0xa7, 0x56, 0x64 +.byte 0x8f, 0x96, 0x4f, 0x68, 0xae, 0x3d, 0x97, 0xc2, 0x84, 0x8f, 0xc0, 0xbc, 0x40, 0xc0, 0x0b, 0x5c +.byte 0xbd, 0xf6, 0x87, 0xb3, 0x35, 0x6c, 0xac, 0x18, 0x50, 0x7f, 0x84, 0xe0, 0x4c, 0xcd, 0x92, 0xd3 +.byte 0x20, 0xe9, 0x33, 0xbc, 0x52, 0x99, 0xaf, 0x32, 0xb5, 0x29, 0xb3, 0x25, 0x2a, 0xb4, 0x48, 0xf9 +.byte 0x72, 0xe1, 0xca, 0x64, 0xf7, 0xe6, 0x82, 0x10, 0x8d, 0xe8, 0x9d, 0xc2, 0x8a, 0x88, 0xfa, 0x38 +.byte 0x66, 0x8a, 0xfc, 0x63, 0xf9, 0x01, 0xf9, 0x78, 0xfd, 0x7b, 0x5c, 0x77, 0xfa, 0x76, 0x87, 0xfa +.byte 0xec, 0xdf, 0xb1, 0x0e, 0x79, 0x95, 0x57, 0xb4, 0xbd, 0x26, 0xef, 0xd6, 0x01, 0xd1, 0xeb, 0x16 +.byte 0x0a, 0xbb, 0x8e, 0x0b, 0xb5, 0xc5, 0xc5, 0x8a, 0x55, 0xab, 0xd3, 0xac, 0xea, 0x91, 0x4b, 0x29 +.byte 0xcc, 0x19, 0xa4, 0x32, 0x25, 0x4e, 0x2a, 0xf1, 0x65, 0x44, 0xd0, 0x02, 0xce, 0xaa, 0xce, 0x49 +.byte 0xb4, 0xea, 0x9f, 0x7c, 0x83, 0xb0, 0x40, 0x7b, 0xe7, 0x43, 0xab, 0xa7, 0x6c, 0xa3, 0x8f, 0x7d +.byte 0x89, 0x81, 0xfa, 0x4c, 0xa5, 0xff, 0xd5, 0x8e, 0xc3, 0xce, 0x4b, 0xe0, 0xb5, 0xd8, 0xb3, 0x8e +.byte 0x45, 0xcf, 0x76, 0xc0, 0xed, 0x40, 0x2b, 0xfd, 0x53, 0x0f, 0xb0, 0xa7, 0xd5, 0x3b, 0x0d, 0xb1 +.byte 0x8a, 0xa2, 0x03, 0xde, 0x31, 0xad, 0xcc, 0x77, 0xea, 0x6f, 0x7b, 0x3e, 0xd6, 0xdf, 0x91, 0x22 +.byte 0x12, 0xe6, 0xbe, 0xfa, 0xd8, 0x32, 0xfc, 0x10, 0x63, 0x14, 0x51, 0x72, 0xde, 0x5d, 0xd6, 0x16 +.byte 0x93, 0xbd, 0x29, 0x68, 0x33, 0xef, 0x3a, 0x66, 0xec, 0x07, 0x8a, 0x26, 0xdf, 0x13, 0xd7, 0x57 +.byte 0x65, 0x78, 0x27, 0xde, 0x5e, 0x49, 0x14, 0x00, 0xa2, 0x00, 0x7f, 0x9a, 0xa8, 0x21, 0xb6, 0xa9 +.byte 0xb1, 0x95, 0xb0, 0xa5, 0xb9, 0x0d, 0x16, 0x11, 0xda, 0xc7, 0x6c, 0x48, 0x3c, 0x40, 0xe0, 0x7e +.byte 0x0d, 0x5a, 0xcd, 0x56, 0x3c, 0xd1, 0x97, 0x05, 0xb9, 0xcb, 0x4b, 0xed, 0x39, 0x4b, 0x9c, 0xc4 +.byte 0x3f, 0xd2, 0x55, 0x13, 0x6e, 0x24, 0xb0, 0xd6, 0x71, 0xfa, 0xf4, 0xc1, 0xba, 0xcc, 0xed, 0x1b +.byte 0xf5, 0xfe, 0x81, 0x41, 0xd8, 0x00, 0x98, 0x3d, 0x3a, 0xc8, 0xae, 0x7a, 0x98, 0x37, 0x18, 0x05 +.byte 0x95, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x02, 0x26, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30 +.byte 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x52, 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, 0xce, 0xde, 0xfd, 0xa6, 0xfb, 0xec, 0xec, 0x14, 0x34, 0x3c, 0x07, 0x06 +.byte 0x5a, 0x6c, 0x59, 0xf7, 0x19, 0x35, 0xdd, 0xf7, 0xc1, 0x9d, 0x55, 0xaa, 0xd3, 0xcd, 0x3b, 0xa4 +.byte 0x93, 0x72, 0xef, 0x0a, 0xfa, 0x6d, 0x9d, 0xf6, 0xf0, 0x85, 0x80, 0x5b, 0xa1, 0x48, 0x52, 0x9f +.byte 0x39, 0xc5, 0xb7, 0xee, 0x28, 0xac, 0xef, 0xcb, 0x76, 0x68, 0x14, 0xb9, 0xdf, 0xad, 0x01, 0x6c +.byte 0x99, 0x1f, 0xc4, 0x22, 0x1d, 0x9f, 0xfe, 0x72, 0x77, 0xe0, 0x2c, 0x5b, 0xaf, 0xe4, 0x04, 0xbf +.byte 0x4f, 0x72, 0xa0, 0x1a, 0x34, 0x98, 0xe8, 0x39, 0x68, 0xec, 0x95, 0x25, 0x7b, 0x76, 0xa1, 0xe6 +.byte 0x69, 0xb9, 0x85, 0x19, 0xbd, 0x89, 0x8c, 0xfe, 0xad, 0xed, 0x36, 0xea, 0x73, 0xbc, 0xff, 0x83 +.byte 0xe2, 0xcb, 0x7d, 0xc1, 0xd2, 0xce, 0x4a, 0xb3, 0x8d, 0x05, 0x9e, 0x8b, 0x49, 0x93, 0xdf, 0xc1 +.byte 0x5b, 0xd0, 0x6e, 0x5e, 0xf0, 0x2e, 0x30, 0x2e, 0x82, 0xfc, 0xfa, 0xbc, 0xb4, 0x17, 0x0a, 0x48 +.byte 0xe5, 0x88, 0x9b, 0xc5, 0x9b, 0x6b, 0xde, 0xb0, 0xca, 0xb4, 0x03, 0xf0, 0xda, 0xf4, 0x90, 0xb8 +.byte 0x65, 0x64, 0xf7, 0x5c, 0x4c, 0xad, 0xe8, 0x7e, 0x66, 0x5e, 0x99, 0xd7, 0xb8, 0xc2, 0x3e, 0xc8 +.byte 0xd0, 0x13, 0x9d, 0xad, 0xee, 0xe4, 0x45, 0x7b, 0x89, 0x55, 0xf7, 0x8a, 0x1f, 0x62, 0x52, 0x84 +.byte 0x12, 0xb3, 0xc2, 0x40, 0x97, 0xe3, 0x8a, 0x1f, 0x47, 0x91, 0xa6, 0x74, 0x5a, 0xd2, 0xf8, 0xb1 +.byte 0x63, 0x28, 0x10, 0xb8, 0xb3, 0x09, 0xb8, 0x56, 0x77, 0x40, 0xa2, 0x26, 0x98, 0x79, 0xc6, 0xfe +.byte 0xdf, 0x25, 0xee, 0x3e, 0xe5, 0xa0, 0x7f, 0xd4, 0x61, 0x0f, 0x51, 0x4b, 0x3c, 0x3f, 0x8c, 0xda +.byte 0xe1, 0x70, 0x74, 0xd8, 0xc2, 0x68, 0xa1, 0xf9, 0xc1, 0x0c, 0xe9, 0xa1, 0xe2, 0x7f, 0xbb, 0x55 +.byte 0x3c, 0x76, 0x06, 0xee, 0x6a, 0x4e, 0xcc, 0x92, 0x88, 0x30, 0x4d, 0x9a, 0xbd, 0x4f, 0x0b, 0x48 +.byte 0x9a, 0x84, 0xb5, 0x98, 0xa3, 0xd5, 0xfb, 0x73, 0xc1, 0x57, 0x61, 0xdd, 0x28, 0x56, 0x75, 0x13 +.byte 0xae, 0x87, 0x8e, 0xe7, 0x0c, 0x51, 0x09, 0x10, 0x75, 0x88, 0x4c, 0xbc, 0x8d, 0xf9, 0x7b, 0x3c +.byte 0xd4, 0x22, 0x48, 0x1f, 0x2a, 0xdc, 0xeb, 0x6b, 0xbb, 0x44, 0xb1, 0xcb, 0x33, 0x71, 0x32, 0x46 +.byte 0xaf, 0xad, 0x4a, 0xf1, 0x8c, 0xe8, 0x74, 0x3a, 0xac, 0xe7, 0x1a, 0x22, 0x73, 0x80, 0xd2, 0x30 +.byte 0xf7, 0x25, 0x42, 0xc7, 0x22, 0x3b, 0x3b, 0x12, 0xad, 0x96, 0x2e, 0xc6, 0xc3, 0x76, 0x07, 0xaa +.byte 0x20, 0xb7, 0x35, 0x49, 0x57, 0xe9, 0x92, 0x49, 0xe8, 0x76, 0x16, 0x72, 0x31, 0x67, 0x2b, 0x96 +.byte 0x7e, 0x8a, 0xa3, 0xc7, 0x94, 0x56, 0x22, 0xbf, 0x6a, 0x4b, 0x7e, 0x01, 0x21, 0xb2, 0x23, 0x32 +.byte 0xdf, 0xe4, 0x9a, 0x44, 0x6d, 0x59, 0x5b, 0x5d, 0xf5, 0x00, 0xa0, 0x1c, 0x9b, 0xc6, 0x78, 0x97 +.byte 0x8d, 0x90, 0xff, 0x9b, 0xc8, 0xaa, 0xb4, 0xaf, 0x11, 0x51, 0x39, 0x5e, 0xd9, 0xfb, 0x67, 0xad +.byte 0xd5, 0x5b, 0x11, 0x9d, 0x32, 0x9a, 0x1b, 0xbd, 0xd5, 0xba, 0x5b, 0xa5, 0xc9, 0xcb, 0x25, 0x69 +.byte 0x53, 0x55, 0x27, 0x5c, 0xe0, 0xca, 0x36, 0xcb, 0x88, 0x61, 0xfb, 0x1e, 0xb7, 0xd0, 0xcb, 0xee +.byte 0x16, 0xfb, 0xd3, 0xa6, 0x4c, 0xde, 0x92, 0xa5, 0xd4, 0xe2, 0xdf, 0xf5, 0x06, 0x54, 0xde, 0x2e +.byte 0x9d, 0x4b, 0xb4, 0x93, 0x30, 0xaa, 0x81, 0xce, 0xdd, 0x1a, 0xdc, 0x51, 0x73, 0x0d, 0x4f, 0x70 +.byte 0xe9, 0xe5, 0xb6, 0x16, 0x21, 0x19, 0x79, 0xb2, 0xe6, 0x89, 0x0b, 0x75, 0x64, 0xca, 0xd5, 0xab +.byte 0xbc, 0x09, 0xc1, 0x18, 0xa1, 0xff, 0xd4, 0x54, 0xa1, 0x85, 0x3c, 0xfd, 0x14, 0x24, 0x03, 0xb2 +.byte 0x87, 0xd3, 0xa4, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x49, 0x00, 0x78, 0x30, 0x47, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43 +.byte 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x52, 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, 0x1f, 0x4f +.byte 0x33, 0x87, 0x33, 0x29, 0x8a, 0xa1, 0x84, 0xde, 0xcb, 0xc7, 0x21, 0x58, 0x41, 0x89, 0xea, 0x56 +.byte 0x9d, 0x2b, 0x4b, 0x85, 0xc6, 0x1d, 0x4c, 0x27, 0xbc, 0x7f, 0x26, 0x51, 0x72, 0x6f, 0xe2, 0x9f +.byte 0xd6, 0xa3, 0xca, 0xcc, 0x45, 0x14, 0x46, 0x8b, 0xad, 0xef, 0x7e, 0x86, 0x8c, 0xec, 0xb1, 0x7e +.byte 0x2f, 0xff, 0xa9, 0x71, 0x9d, 0x18, 0x84, 0x45, 0x04, 0x41, 0x55, 0x6e, 0x2b, 0xea, 0x26, 0x7f +.byte 0xbb, 0x90, 0x01, 0xe3, 0x4b, 0x19, 0xba, 0xe4, 0x54, 0x96, 0x45, 0x09, 0xb1, 0xd5, 0x6c, 0x91 +.byte 0x44, 0xad, 0x84, 0x13, 0x8e, 0x9a, 0x8c, 0x0d, 0x80, 0x0c, 0x32, 0xf6, 0xe0, 0x27, 0x00, 0x49 +.byte 0x00, 0x78, 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, 0x34, 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, 0xf3, 0x74, 0x73, 0xa7, 0x68, 0x8b, 0x60, 0xae, 0x43, 0xb8, 0x35, 0xc5, 0x81 +.byte 0x30, 0x7b, 0x4b, 0x49, 0x9d, 0xfb, 0xc1, 0x61, 0xce, 0xe6, 0xde, 0x46, 0xbd, 0x6b, 0xd5, 0x61 +.byte 0x18, 0x35, 0xae, 0x40, 0xdd, 0x73, 0xf7, 0x89, 0x91, 0x30, 0x5a, 0xeb, 0x3c, 0xee, 0x85, 0x7c +.byte 0xa2, 0x40, 0x76, 0x3b, 0xa9, 0xc6, 0xb8, 0x47, 0xd8, 0x2a, 0xe7, 0x92, 0x91, 0x6a, 0x73, 0xe9 +.byte 0xb1, 0x72, 0x39, 0x9f, 0x29, 0x9f, 0xa2, 0x98, 0xd3, 0x5f, 0x5e, 0x58, 0x86, 0x65, 0x0f, 0xa1 +.byte 0x84, 0x65, 0x06, 0xd1, 0xdc, 0x8b, 0xc9, 0xc7, 0x73, 0xc8, 0x8c, 0x6a, 0x2f, 0xe5, 0xc4, 0xab +.byte 0xd1, 0x1d, 0x8a, 0x00, 0x4a, 0x02, 0x26, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65 +.byte 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56 +.byte 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 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, 0xa0, 0xbe, 0x50, 0x10, 0x8e, 0xe9, 0xf2, 0x6c, 0x40, 0xb4, 0x04, 0x9c, 0x85, 0xb9 +.byte 0x31, 0xca, 0xdc, 0x2d, 0xe4, 0x11, 0xa9, 0x04, 0x3c, 0x1b, 0x55, 0xc1, 0xe7, 0x58, 0x30, 0x1d +.byte 0x24, 0xb4, 0xc3, 0xef, 0x85, 0xde, 0x8c, 0x2c, 0xe1, 0xc1, 0x3d, 0xdf, 0x82, 0xe6, 0x4f, 0xad +.byte 0x47, 0x87, 0x6c, 0xec, 0x5b, 0x49, 0xc1, 0x4a, 0xd5, 0xbb, 0x8f, 0xec, 0x87, 0xac, 0x7f, 0x82 +.byte 0x9a, 0x86, 0xec, 0x3d, 0x03, 0x99, 0x52, 0x01, 0xd2, 0x35, 0x9e, 0xac, 0xda, 0xf0, 0x53, 0xc9 +.byte 0x66, 0x3c, 0xd4, 0xac, 0x02, 0x01, 0xda, 0x24, 0xd3, 0x3b, 0xa8, 0x02, 0x46, 0xaf, 0xa4, 0x1c +.byte 0xe3, 0xf8, 0x73, 0x58, 0x76, 0xb7, 0xf6, 0x0e, 0x90, 0x0d, 0xb5, 0xf0, 0xcf, 0xcc, 0xfa, 0xf9 +.byte 0xc6, 0x4c, 0xe5, 0xc3, 0x86, 0x30, 0x0a, 0x8d, 0x17, 0x7e, 0x35, 0xeb, 0xc5, 0xdf, 0xbb, 0x0e +.byte 0x9c, 0xc0, 0x8d, 0x87, 0xe3, 0x88, 0x38, 0x85, 0x67, 0xfa, 0x3e, 0xc7, 0xab, 0xe0, 0x13, 0x9c +.byte 0x05, 0x18, 0x98, 0xcf, 0x93, 0xf5, 0xb1, 0x92, 0xb4, 0xfc, 0x23, 0xd3, 0xcf, 0xd5, 0xc4, 0x27 +.byte 0x49, 0xe0, 0x9e, 0x3c, 0x9b, 0x08, 0xa3, 0x8b, 0x5d, 0x2a, 0x21, 0xe0, 0xfc, 0x39, 0xaa, 0x53 +.byte 0xda, 0x7d, 0x7e, 0xcf, 0x1a, 0x09, 0x53, 0xbc, 0x5d, 0x05, 0x04, 0xcf, 0xa1, 0x4a, 0x8f, 0x8b +.byte 0x76, 0x82, 0x0d, 0xa1, 0xf8, 0xd2, 0xc7, 0x14, 0x77, 0x5b, 0x90, 0x36, 0x07, 0x81, 0x9b, 0x3e +.byte 0x06, 0xfa, 0x52, 0x5e, 0x63, 0xc5, 0xa6, 0x00, 0xfe, 0xa5, 0xe9, 0x52, 0x1b, 0x52, 0xb5, 0x92 +.byte 0x39, 0x72, 0x03, 0x09, 0x62, 0xbd, 0xb0, 0x60, 0x16, 0x6e, 0xa6, 0xdd, 0x25, 0xc2, 0x03, 0x66 +.byte 0xdd, 0xf3, 0x04, 0xd1, 0x40, 0xe2, 0x4e, 0x8b, 0x86, 0xf4, 0x6f, 0xe5, 0x83, 0xa0, 0x27, 0x84 +.byte 0x5e, 0x04, 0xc1, 0xf5, 0x90, 0xbd, 0x30, 0x3d, 0xc4, 0xef, 0xa8, 0x69, 0xbc, 0x38, 0x9b, 0xa4 +.byte 0xa4, 0x96, 0xd1, 0x62, 0xda, 0x69, 0xc0, 0x01, 0x96, 0xae, 0xcb, 0xc4, 0x51, 0x34, 0xea, 0x0c +.byte 0xaa, 0xff, 0x21, 0x8e, 0x59, 0x8f, 0x4a, 0x5c, 0xe4, 0x61, 0x9a, 0xa7, 0xd2, 0xe9, 0x2a, 0x78 +.byte 0x8d, 0x51, 0x3d, 0x3a, 0x15, 0xee, 0xa2, 0x59, 0x8e, 0xa9, 0x5c, 0xde, 0xc5, 0xf9, 0x90, 0x22 +.byte 0xe5, 0x88, 0x45, 0x71, 0xdd, 0x91, 0x99, 0x6c, 0x7a, 0x9f, 0x3d, 0x3d, 0x98, 0x7c, 0x5e, 0xf6 +.byte 0xbe, 0x16, 0x68, 0xa0, 0x5e, 0xae, 0x0b, 0x23, 0xfc, 0x5a, 0x0f, 0xaa, 0x22, 0x76, 0x2d, 0xc9 +.byte 0xa1, 0x10, 0x1d, 0xe4, 0xd3, 0x44, 0x23, 0x90, 0x88, 0x9f, 0xc6, 0x2a, 0xe6, 0xd7, 0xf5, 0x9a +.byte 0xb3, 0x58, 0x1e, 0x2f, 0x30, 0x89, 0x08, 0x1b, 0x54, 0xa2, 0xb5, 0x98, 0x23, 0xec, 0x08, 0x77 +.byte 0x1c, 0x95, 0x5d, 0x61, 0xd1, 0xcb, 0x89, 0x9c, 0x5f, 0xa2, 0x4a, 0x91, 0x9a, 0xef, 0x21, 0xaa +.byte 0x49, 0x16, 0x08, 0xa8, 0xbd, 0x61, 0x28, 0x31, 0xc9, 0x74, 0xad, 0x85, 0xf6, 0xd9, 0xc5, 0xb1 +.byte 0x8b, 0xd1, 0xe5, 0x10, 0x32, 0x4d, 0x5f, 0x8b, 0x20, 0x3a, 0x3c, 0x49, 0x1f, 0x33, 0x85, 0x59 +.byte 0x0d, 0xdb, 0xcb, 0x09, 0x75, 0x43, 0x69, 0x73, 0xfb, 0x6b, 0x71, 0x7d, 0xf0, 0xdf, 0xc4, 0x4c +.byte 0x7d, 0xc6, 0xa3, 0x2e, 0xc8, 0x95, 0x79, 0xcb, 0x73, 0xa2, 0x8e, 0x4e, 0x4d, 0x24, 0xfb, 0x5e +.byte 0xe4, 0x04, 0xbe, 0x72, 0x1b, 0xa6, 0x27, 0x2d, 0x49, 0x5a, 0x99, 0x7a, 0xd7, 0x5c, 0x09, 0x20 +.byte 0xb7, 0x7f, 0x94, 0xb9, 0x4f, 0xf1, 0x0d, 0x1c, 0x5e, 0x88, 0x42, 0x1b, 0x11, 0xb7, 0xe7, 0x91 +.byte 0xdb, 0x9e, 0x6c, 0xf4, 0x6a, 0xdf, 0x8c, 0x06, 0x98, 0x03, 0xad, 0xcc, 0x28, 0xef, 0xa5, 0x47 +.byte 0xf3, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4a, 0x02, 0x26, 0x30, 0x48, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69 +.byte 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15 +.byte 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x32, 0x20, 0x47, 0x33, 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, 0xa1, 0xae, 0x25, 0xb2, 0x01, 0x18, 0xdc, 0x57, 0x88, 0x3f +.byte 0x46, 0xeb, 0xf9, 0xaf, 0xe2, 0xeb, 0x23, 0x71, 0xe2, 0x9a, 0xd1, 0x61, 0x66, 0x21, 0x5f, 0xaa +.byte 0xaf, 0x27, 0x51, 0xe5, 0x6e, 0x1b, 0x16, 0xd4, 0x2d, 0x7d, 0x50, 0xb0, 0x53, 0x77, 0xbd, 0x78 +.byte 0x3a, 0x60, 0xe2, 0x64, 0x02, 0x9b, 0x7c, 0x86, 0x9b, 0xd6, 0x1a, 0x8e, 0xad, 0xff, 0x1f, 0x15 +.byte 0x7f, 0xd5, 0x95, 0x1e, 0x12, 0xcb, 0xe6, 0x14, 0x84, 0x04, 0xc1, 0xdf, 0x36, 0xb3, 0x16, 0x9f +.byte 0x8a, 0xe3, 0xc9, 0xdb, 0x98, 0x34, 0xce, 0xd8, 0x33, 0x17, 0x28, 0x46, 0xfc, 0xa7, 0xc9, 0xf0 +.byte 0xd2, 0xb4, 0xd5, 0x4d, 0x09, 0x72, 0x49, 0xf9, 0xf2, 0x87, 0xe3, 0xa9, 0xda, 0x7d, 0xa1, 0x7d +.byte 0x6b, 0xb2, 0x3a, 0x25, 0xa9, 0x6d, 0x52, 0x44, 0xac, 0xf8, 0xbe, 0x6e, 0xfb, 0xdc, 0xa6, 0x73 +.byte 0x91, 0x90, 0x61, 0xa6, 0x03, 0x14, 0x20, 0xf2, 0xe7, 0x87, 0xa3, 0x88, 0xad, 0xad, 0xa0, 0x8c +.byte 0xff, 0xa6, 0x0b, 0x25, 0x52, 0x25, 0xe7, 0x16, 0x01, 0xd5, 0xcb, 0xb8, 0x35, 0x81, 0x0c, 0xa3 +.byte 0x3b, 0xf0, 0xe1, 0xe1, 0xfc, 0x5a, 0x5d, 0xce, 0x80, 0x71, 0x6d, 0xf8, 0x49, 0xab, 0x3e, 0x3b +.byte 0xba, 0xb8, 0xd7, 0x80, 0x01, 0xfb, 0xa5, 0xeb, 0x5b, 0xb3, 0xc5, 0x5e, 0x60, 0x2a, 0x31, 0xa0 +.byte 0xaf, 0x37, 0xe8, 0x20, 0x3a, 0x9f, 0xa8, 0x32, 0x2c, 0x0c, 0xcc, 0x09, 0x1d, 0xd3, 0x9e, 0x8e +.byte 0x5d, 0xbc, 0x4c, 0x98, 0xee, 0xc5, 0x1a, 0x68, 0x7b, 0xec, 0x53, 0xa6, 0xe9, 0x14, 0x35, 0xa3 +.byte 0xdf, 0xcd, 0x80, 0x9f, 0x0c, 0x48, 0xfb, 0x1c, 0xf4, 0xf1, 0xbf, 0x4a, 0xb8, 0xfa, 0xd5, 0x8c +.byte 0x71, 0x4a, 0xc7, 0x1f, 0xad, 0xfe, 0x41, 0x9a, 0xb3, 0x83, 0x5d, 0xf2, 0x84, 0x56, 0xef, 0xa5 +.byte 0x57, 0x43, 0xce, 0x29, 0xad, 0x8c, 0xab, 0x55, 0xbf, 0xc4, 0xfb, 0x5b, 0x01, 0xdd, 0x23, 0x21 +.byte 0xa1, 0x58, 0x00, 0x8e, 0xc3, 0xd0, 0x6a, 0x13, 0xed, 0x13, 0xe3, 0x12, 0x2b, 0x80, 0xdc, 0x67 +.byte 0xe6, 0x95, 0xb2, 0xcd, 0x1e, 0x22, 0x6e, 0x2a, 0xf8, 0x41, 0xd4, 0xf2, 0xca, 0x14, 0x07, 0x8d +.byte 0x8a, 0x55, 0x12, 0xc6, 0x69, 0xf5, 0xb8, 0x86, 0x68, 0x2f, 0x53, 0x5e, 0xb0, 0xd2, 0xaa, 0x21 +.byte 0xc1, 0x98, 0xe6, 0x30, 0xe3, 0x67, 0x55, 0xc7, 0x9b, 0x6e, 0xac, 0x19, 0xa8, 0x55, 0xa6, 0x45 +.byte 0x06, 0xd0, 0x23, 0x3a, 0xdb, 0xeb, 0x65, 0x5d, 0x2a, 0x11, 0x11, 0xf0, 0x3b, 0x4f, 0xca, 0x6d +.byte 0xf4, 0x34, 0xc4, 0x71, 0xe4, 0xff, 0x00, 0x5a, 0xf6, 0x5c, 0xae, 0x23, 0x60, 0x85, 0x73, 0xf1 +.byte 0xe4, 0x10, 0xb1, 0x25, 0xae, 0xd5, 0x92, 0xbb, 0x13, 0xc1, 0x0c, 0xe0, 0x39, 0xda, 0xb4, 0x39 +.byte 0x57, 0xb5, 0xab, 0x35, 0xaa, 0x72, 0x21, 0x3b, 0x83, 0x35, 0xe7, 0x31, 0xdf, 0x7a, 0x21, 0x6e +.byte 0xb8, 0x32, 0x08, 0x7d, 0x1d, 0x32, 0x91, 0x15, 0x4a, 0x62, 0x72, 0xcf, 0xe3, 0x77, 0xa1, 0xbc +.byte 0xd5, 0x11, 0x1b, 0x76, 0x01, 0x67, 0x08, 0xe0, 0x41, 0x0b, 0xc3, 0xeb, 0x15, 0x6e, 0xf8, 0xa4 +.byte 0x19, 0xd9, 0xa2, 0xab, 0xaf, 0xe2, 0x27, 0x52, 0x56, 0x2b, 0x02, 0x8a, 0x2c, 0x14, 0x24, 0xf9 +.byte 0xbf, 0x42, 0x02, 0xbf, 0x26, 0xc8, 0xc6, 0x8f, 0xe0, 0x6e, 0x38, 0x7d, 0x53, 0x2d, 0xe5, 0xed +.byte 0x98, 0xb3, 0x95, 0x63, 0x68, 0x7f, 0xf9, 0x35, 0xf4, 0xdf, 0x88, 0xc5, 0x60, 0x35, 0x92, 0xc0 +.byte 0x7c, 0x69, 0x1c, 0x61, 0x95, 0x16, 0xd0, 0xeb, 0xde, 0x0b, 0xaf, 0x3e, 0x04, 0x10, 0x45, 0x65 +.byte 0x58, 0x50, 0x38, 0xaf, 0x48, 0xf2, 0x59, 0xb6, 0x16, 0xf2, 0x3c, 0x0d, 0x90, 0x02, 0xc6, 0x70 +.byte 0x2e, 0x01, 0xad, 0x3c, 0x15, 0xd7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4a, 0x02, 0x26, 0x30 +.byte 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19 +.byte 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69 +.byte 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x20, 0x47, 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, 0xcb, 0x0e, 0x10, 0x67, 0x8e +.byte 0xea, 0x14, 0x97, 0xa7, 0x32, 0x2a, 0x0a, 0x56, 0x36, 0x7f, 0x68, 0x4c, 0xc7, 0xb3, 0x6f, 0x3a +.byte 0x23, 0x14, 0x91, 0xff, 0x19, 0x7f, 0xa5, 0xca, 0xac, 0xee, 0xb3, 0x76, 0x9d, 0x7a, 0xe9, 0x8b +.byte 0x1b, 0xab, 0x6b, 0x31, 0xdb, 0xfa, 0x0b, 0x53, 0x4c, 0xaf, 0xc5, 0xa5, 0x1a, 0x79, 0x3c, 0x8a +.byte 0x4c, 0xff, 0xac, 0xdf, 0x25, 0xde, 0x4e, 0xd9, 0x82, 0x32, 0x0b, 0x44, 0xde, 0xca, 0xdb, 0x8c +.byte 0xac, 0xa3, 0x6e, 0x16, 0x83, 0x3b, 0xa6, 0x64, 0x4b, 0x32, 0x89, 0xfb, 0x16, 0x16, 0x38, 0x7e +.byte 0xeb, 0x43, 0xe2, 0xd3, 0x74, 0x4a, 0xc2, 0x62, 0x0a, 0x73, 0x0a, 0xdd, 0x49, 0xb3, 0x57, 0xd2 +.byte 0xb0, 0x0a, 0x85, 0x9d, 0x71, 0x3c, 0xde, 0xa3, 0xcb, 0xc0, 0x32, 0xf3, 0x01, 0x39, 0x20, 0x43 +.byte 0x1b, 0x35, 0xd1, 0x53, 0xb3, 0xb1, 0xee, 0xc5, 0x93, 0x69, 0x82, 0x3e, 0x16, 0xb5, 0x28, 0x46 +.byte 0xa1, 0xde, 0xea, 0x89, 0x09, 0xed, 0x43, 0xb8, 0x05, 0x46, 0x8a, 0x86, 0xf5, 0x59, 0x47, 0xbe +.byte 0x1b, 0x6f, 0x01, 0x21, 0x10, 0xb9, 0xfd, 0xa9, 0xd2, 0x28, 0xca, 0x10, 0x39, 0x09, 0xca, 0x13 +.byte 0x36, 0xcf, 0x9c, 0xad, 0xad, 0x40, 0x74, 0x79, 0x2b, 0x02, 0x3f, 0x34, 0xff, 0xfa, 0x20, 0x69 +.byte 0x7d, 0xd3, 0xee, 0x61, 0xf5, 0xba, 0xb3, 0xe7, 0x30, 0xd0, 0x37, 0x23, 0x86, 0x72, 0x61, 0x45 +.byte 0x29, 0x48, 0x59, 0x68, 0x6f, 0x77, 0xa6, 0x2e, 0x81, 0xbe, 0x07, 0x4d, 0x6f, 0xaf, 0xce, 0xc4 +.byte 0x45, 0x13, 0x91, 0x14, 0x70, 0x06, 0x8f, 0x1f, 0x9f, 0xf8, 0x87, 0x69, 0xb1, 0x0e, 0xef, 0xc3 +.byte 0x89, 0x19, 0xeb, 0xea, 0x1c, 0x61, 0xfc, 0x7a, 0x6c, 0x8a, 0xdc, 0xd6, 0x03, 0x0b, 0x9e, 0x26 +.byte 0xba, 0x12, 0xdd, 0xd4, 0x54, 0x39, 0xab, 0x26, 0xa3, 0x33, 0xea, 0x75, 0x81, 0xda, 0x2d, 0xcd +.byte 0x0f, 0x4f, 0xe4, 0x03, 0xd1, 0xef, 0x15, 0x97, 0x1b, 0x6b, 0x90, 0xc5, 0x02, 0x90, 0x93, 0x66 +.byte 0x02, 0x21, 0xb1, 0x47, 0xde, 0x8b, 0x9a, 0x4a, 0x80, 0xb9, 0x55, 0x8f, 0xb5, 0xa2, 0x2f, 0xc0 +.byte 0xd6, 0x33, 0x67, 0xda, 0x7e, 0xc4, 0xa7, 0xb4, 0x04, 0x44, 0xeb, 0x47, 0xfb, 0xe6, 0x58, 0xb9 +.byte 0xf7, 0x0c, 0xf0, 0x7b, 0x2b, 0xb1, 0xc0, 0x70, 0x29, 0xc3, 0x40, 0x62, 0x2d, 0x3b, 0x48, 0x69 +.byte 0xdc, 0x23, 0x3c, 0x48, 0xeb, 0x7b, 0x09, 0x79, 0xa9, 0x6d, 0xda, 0xa8, 0x30, 0x98, 0xcf, 0x80 +.byte 0x72, 0x03, 0x88, 0xa6, 0x5b, 0x46, 0xae, 0x72, 0x79, 0x7c, 0x08, 0x03, 0x21, 0x65, 0xae, 0xb7 +.byte 0xe1, 0x1c, 0xa5, 0xb1, 0x2a, 0xa2, 0x31, 0xde, 0x66, 0x04, 0xf7, 0xc0, 0x74, 0xe8, 0x71, 0xde +.byte 0xff, 0x3d, 0x59, 0xcc, 0x96, 0x26, 0x12, 0x8b, 0x85, 0x95, 0x57, 0x1a, 0xab, 0x6b, 0x75, 0x0b +.byte 0x44, 0x3d, 0x11, 0x28, 0x3c, 0x7b, 0x61, 0xb7, 0xe2, 0x8f, 0x67, 0x4f, 0xe5, 0xec, 0x3c, 0x4c +.byte 0x60, 0x80, 0x69, 0x57, 0x38, 0x1e, 0x01, 0x5b, 0x8d, 0x55, 0xe8, 0xc7, 0xdf, 0xc0, 0xcc, 0x77 +.byte 0x23, 0x34, 0x49, 0x75, 0x7c, 0xf6, 0x98, 0x11, 0xeb, 0x2d, 0xde, 0xed, 0x41, 0x2e, 0x14, 0x05 +.byte 0x02, 0x7f, 0xe0, 0xfe, 0x20, 0xeb, 0x35, 0xe7, 0x11, 0xac, 0x22, 0xce, 0x57, 0x3d, 0xde, 0xc9 +.byte 0x30, 0x6d, 0x10, 0x03, 0x85, 0xcd, 0xf1, 0xff, 0x8c, 0x16, 0xb5, 0xc1, 0xb2, 0x3e, 0x88, 0x6c +.byte 0x60, 0x7f, 0x90, 0x4f, 0x95, 0xf7, 0xf6, 0x2d, 0xad, 0x01, 0x39, 0x07, 0x04, 0xfa, 0x75, 0x80 +.byte 0x7d, 0xbf, 0x49, 0x50, 0xed, 0xef, 0xc9, 0xc4, 0x7c, 0x1c, 0xeb, 0x80, 0x7e, 0xdb, 0xb6, 0xd0 +.byte 0xdd, 0x13, 0xfe, 0xc9, 0xd3, 0x9c, 0xd7, 0xb2, 0x97, 0xa9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x4a, 0x00, 0x78, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x42, 0x52, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x76, 0x30 +.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00 +.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0xc6, 0xcb, 0xc7, 0x28, 0xd1, 0xfb, 0x84, 0xf5, 0x9a, 0xef, 0x42 +.byte 0x14, 0x20, 0xe1, 0x43, 0x6b, 0x6e, 0x75, 0xad, 0xfc, 0x2b, 0x03, 0x84, 0xd4, 0x76, 0x93, 0x25 +.byte 0xd7, 0x59, 0x3b, 0x41, 0x65, 0x6b, 0x1e, 0xe6, 0x34, 0x2a, 0xbb, 0x74, 0xf6, 0x12, 0xce, 0xe8 +.byte 0x6d, 0xe7, 0xab, 0xe4, 0x3c, 0x4e, 0x3f, 0x44, 0x08, 0x8b, 0xcd, 0x16, 0x71, 0xcb, 0xbf, 0x92 +.byte 0x99, 0xf4, 0xa4, 0xd7, 0x3c, 0x50, 0x54, 0x52, 0x90, 0x85, 0x83, 0x78, 0x94, 0x67, 0x67, 0xa3 +.byte 0x1c, 0x09, 0x19, 0x3d, 0x75, 0x34, 0x85, 0xde, 0xed, 0x60, 0x7d, 0xc7, 0x0c, 0xb4, 0x41, 0x52 +.byte 0xb9, 0x6e, 0xe5, 0xee, 0x42, 0x00, 0x4a, 0x00, 0x78, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31 +.byte 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53 +.byte 0x54, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 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, 0xf1, 0x0b, 0xdd, 0x86, 0x43 +.byte 0x20, 0x19, 0xdf, 0x97, 0x85, 0xe8, 0x22, 0x4a, 0x9b, 0xcf, 0x9d, 0x98, 0xbf, 0xb4, 0x05, 0x26 +.byte 0xc9, 0xcb, 0xe3, 0xa6, 0xd2, 0x8f, 0xc5, 0x9e, 0x78, 0x7b, 0x31, 0x89, 0xa9, 0x89, 0xad, 0x27 +.byte 0x3c, 0x65, 0x10, 0x82, 0xfc, 0xdf, 0xc3, 0x9d, 0x4e, 0xf0, 0x33, 0x23, 0xc4, 0xd2, 0x32, 0xf5 +.byte 0x1c, 0xb0, 0xdf, 0x33, 0x17, 0x5d, 0xc5, 0xf0, 0xb1, 0x8a, 0xf9, 0xef, 0xb9, 0xb7, 0x14, 0xca +.byte 0x29, 0x4a, 0xc2, 0x0f, 0xa9, 0x7f, 0x75, 0x65, 0x49, 0x2a, 0x30, 0x67, 0xf4, 0x64, 0xf7, 0xd6 +.byte 0x1a, 0x77, 0xda, 0xc3, 0xc2, 0x97, 0x61, 0x42, 0x7b, 0x49, 0xad, 0x00, 0x4a, 0x01, 0x26, 0x30 +.byte 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20 +.byte 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x53, 0x65, 0x63, 0x75, 0x72 +.byte 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x41, 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, 0xab, 0xa4, 0x81, 0xe5, 0x95, 0xcd +.byte 0xf5, 0xf6, 0x14, 0x8e, 0xc2, 0x4f, 0xca, 0xd4, 0xe2, 0x78, 0x95, 0x58, 0x9c, 0x41, 0xe1, 0x0d +.byte 0x99, 0x40, 0x24, 0x17, 0x39, 0x91, 0x33, 0x66, 0xe9, 0xbe, 0xe1, 0x83, 0xaf, 0x62, 0x5c, 0x89 +.byte 0xd1, 0xfc, 0x24, 0x5b, 0x61, 0xb3, 0xe0, 0x11, 0x11, 0x41, 0x1c, 0x1d, 0x6e, 0xf0, 0xb8, 0xbb +.byte 0xf8, 0xde, 0xa7, 0x81, 0xba, 0xa6, 0x48, 0xc6, 0x9f, 0x1d, 0xbd, 0xbe, 0x8e, 0xa9, 0x41, 0x3e +.byte 0xb8, 0x94, 0xed, 0x29, 0x1a, 0xd4, 0x8e, 0xd2, 0x03, 0x1d, 0x03, 0xef, 0x6d, 0x0d, 0x67, 0x1c +.byte 0x57, 0xd7, 0x06, 0xad, 0xca, 0xc8, 0xf5, 0xfe, 0x0e, 0xaf, 0x66, 0x25, 0x48, 0x04, 0x96, 0x0b +.byte 0x5d, 0xa3, 0xba, 0x16, 0xc3, 0x08, 0x4f, 0xd1, 0x46, 0xf8, 0x14, 0x5c, 0xf2, 0xc8, 0x5e, 0x01 +.byte 0x99, 0x6d, 0xfd, 0x88, 0xcc, 0x86, 0xa8, 0xc1, 0x6f, 0x31, 0x42, 0x6c, 0x52, 0x3e, 0x68, 0xcb +.byte 0xf3, 0x19, 0x34, 0xdf, 0xbb, 0x87, 0x18, 0x56, 0x80, 0x26, 0xc4, 0xd0, 0xdc, 0xc0, 0x6f, 0xdf +.byte 0xde, 0xa0, 0xc2, 0x91, 0x16, 0xa0, 0x64, 0x11, 0x4b, 0x44, 0xbc, 0x1e, 0xf6, 0xe7, 0xfa, 0x63 +.byte 0xde, 0x66, 0xac, 0x76, 0xa4, 0x71, 0xa3, 0xec, 0x36, 0x94, 0x68, 0x7a, 0x77, 0xa4, 0xb1, 0xe7 +.byte 0x0e, 0x2f, 0x81, 0x7a, 0xe2, 0xb5, 0x72, 0x86, 0xef, 0xa2, 0x6b, 0x8b, 0xf0, 0x0f, 0xdb, 0xd3 +.byte 0x59, 0x3f, 0xba, 0x72, 0xbc, 0x44, 0x24, 0x9c, 0xe3, 0x73, 0xb3, 0xf7, 0xaf, 0x57, 0x2f, 0x42 +.byte 0x26, 0x9d, 0xa9, 0x74, 0xba, 0x00, 0x52, 0xf2, 0x4b, 0xcd, 0x53, 0x7c, 0x47, 0x0b, 0x36, 0x85 +.byte 0x0e, 0x66, 0xa9, 0x08, 0x97, 0x16, 0x34, 0x57, 0xc1, 0x66, 0xf7, 0x80, 0xe3, 0xed, 0x70, 0x54 +.byte 0xc7, 0x93, 0xe0, 0x2e, 0x28, 0x15, 0x59, 0x87, 0xba, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x4c, 0x02, 0x26, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65 +.byte 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x1e, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65 +.byte 0x72, 0x63, 0x69, 0x61, 0x6c, 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 0xa7, 0x50, 0x19, 0xde, 0x3f, 0x99, 0x3d, 0xd4, 0x33, 0x46, 0xf1, 0x6f, 0x51, 0x61, 0x82, 0xb2 +.byte 0xa9, 0x4f, 0x8f, 0x67, 0x89, 0x5d, 0x84, 0xd9, 0x53, 0xdd, 0x0c, 0x28, 0xd9, 0xd7, 0xf0, 0xff +.byte 0xae, 0x95, 0x43, 0x72, 0x99, 0xf9, 0xb5, 0x5d, 0x7c, 0x8a, 0xc1, 0x42, 0xe1, 0x31, 0x50, 0x74 +.byte 0xd1, 0x81, 0x0d, 0x7c, 0xcd, 0x9b, 0x21, 0xab, 0x43, 0xe2, 0xac, 0xad, 0x5e, 0x86, 0x6e, 0xf3 +.byte 0x09, 0x8a, 0x1f, 0x5a, 0x32, 0xbd, 0xa2, 0xeb, 0x94, 0xf9, 0xe8, 0x5c, 0x0a, 0xec, 0xff, 0x98 +.byte 0xd2, 0xaf, 0x71, 0xb3, 0xb4, 0x53, 0x9f, 0x4e, 0x87, 0xef, 0x92, 0xbc, 0xbd, 0xec, 0x4f, 0x32 +.byte 0x30, 0x88, 0x4b, 0x17, 0x5e, 0x57, 0xc4, 0x53, 0xc2, 0xf6, 0x02, 0x97, 0x8d, 0xd9, 0x62, 0x2b +.byte 0xbf, 0x24, 0x1f, 0x62, 0x8d, 0xdf, 0xc3, 0xb8, 0x29, 0x4b, 0x49, 0x78, 0x3c, 0x93, 0x60, 0x88 +.byte 0x22, 0xfc, 0x99, 0xda, 0x36, 0xc8, 0xc2, 0xa2, 0xd4, 0x2c, 0x54, 0x00, 0x67, 0x35, 0x6e, 0x73 +.byte 0xbf, 0x02, 0x58, 0xf0, 0xa4, 0xdd, 0xe5, 0xb0, 0xa2, 0x26, 0x7a, 0xca, 0xe0, 0x36, 0xa5, 0x19 +.byte 0x16, 0xf5, 0xfd, 0xb7, 0xef, 0xae, 0x3f, 0x40, 0xf5, 0x6d, 0x5a, 0x04, 0xfd, 0xce, 0x34, 0xca +.byte 0x24, 0xdc, 0x74, 0x23, 0x1b, 0x5d, 0x33, 0x13, 0x12, 0x5d, 0xc4, 0x01, 0x25, 0xf6, 0x30, 0xdd +.byte 0x02, 0x5d, 0x9f, 0xe0, 0xd5, 0x47, 0xbd, 0xb4, 0xeb, 0x1b, 0xa1, 0xbb, 0x49, 0x49, 0xd8, 0x9f +.byte 0x5b, 0x02, 0xf3, 0x8a, 0xe4, 0x24, 0x90, 0xe4, 0x62, 0x4f, 0x4f, 0xc1, 0xaf, 0x8b, 0x0e, 0x74 +.byte 0x17, 0xa8, 0xd1, 0x72, 0x88, 0x6a, 0x7a, 0x01, 0x49, 0xcc, 0xb4, 0x46, 0x79, 0xc6, 0x17, 0xb1 +.byte 0xda, 0x98, 0x1e, 0x07, 0x59, 0xfa, 0x75, 0x21, 0x85, 0x65, 0xdd, 0x90, 0x56, 0xce, 0xfb, 0xab +.byte 0xa5, 0x60, 0x9d, 0xc4, 0x9d, 0xf9, 0x52, 0xb0, 0x8b, 0xbd, 0x87, 0xf9, 0x8f, 0x2b, 0x23, 0x0a +.byte 0x23, 0x76, 0x3b, 0xf7, 0x33, 0xe1, 0xc9, 0x00, 0xf3, 0x69, 0xf9, 0x4b, 0xa2, 0xe0, 0x4e, 0xbc +.byte 0x7e, 0x93, 0x39, 0x84, 0x07, 0xf7, 0x44, 0x70, 0x7e, 0xfe, 0x07, 0x5a, 0xe5, 0xb1, 0xac, 0xd1 +.byte 0x18, 0xcc, 0xf2, 0x35, 0xe5, 0x49, 0x49, 0x08, 0xca, 0x56, 0xc9, 0x3d, 0xfb, 0x0f, 0x18, 0x7d +.byte 0x8b, 0x3b, 0xc1, 0x13, 0xc2, 0x4d, 0x8f, 0xc9, 0x4f, 0x0e, 0x37, 0xe9, 0x1f, 0xa1, 0x0e, 0x6a +.byte 0xdf, 0x62, 0x2e, 0xcb, 0x35, 0x06, 0x51, 0x79, 0x2c, 0xc8, 0x25, 0x38, 0xf4, 0xfa, 0x4b, 0xa7 +.byte 0x89, 0x5c, 0x9c, 0xd2, 0xe3, 0x0d, 0x39, 0x86, 0x4a, 0x74, 0x7c, 0xd5, 0x59, 0x87, 0xc2, 0x3f +.byte 0x4e, 0x0c, 0x5c, 0x52, 0xf4, 0x3d, 0xf7, 0x52, 0x82, 0xf1, 0xea, 0xa3, 0xac, 0xfd, 0x49, 0x34 +.byte 0x1a, 0x28, 0xf3, 0x41, 0x88, 0x3a, 0x13, 0xee, 0xe8, 0xde, 0xff, 0x99, 0x1d, 0x5f, 0xba, 0xcb +.byte 0xe8, 0x1e, 0xf2, 0xb9, 0x50, 0x60, 0xc0, 0x31, 0xd3, 0x73, 0xe5, 0xef, 0xbe, 0xa0, 0xed, 0x33 +.byte 0x0b, 0x74, 0xbe, 0x20, 0x20, 0xc4, 0x67, 0x6c, 0xf0, 0x08, 0x03, 0x7a, 0x55, 0x80, 0x7f, 0x46 +.byte 0x4e, 0x96, 0xa7, 0xf4, 0x1e, 0x3e, 0xe1, 0xf6, 0xd8, 0x09, 0xe1, 0x33, 0x64, 0x2b, 0x63, 0xd7 +.byte 0x32, 0x5e, 0x9f, 0xf9, 0xc0, 0x7b, 0x0f, 0x78, 0x6f, 0x97, 0xbc, 0x93, 0x9a, 0xf9, 0x9c, 0x12 +.byte 0x90, 0x78, 0x7a, 0x80, 0x87, 0x15, 0xd7, 0x72, 0x74, 0x9c, 0x55, 0x74, 0x78, 0xb1, 0xba, 0xe1 +.byte 0x6e, 0x70, 0x04, 0xba, 0x4f, 0xa0, 0xba, 0x68, 0xc3, 0x7b, 0xff, 0x31, 0xf0, 0x73, 0x3d, 0x3d +.byte 0x94, 0x2a, 0xb1, 0x0b, 0x41, 0x0e, 0xa0, 0xfe, 0x4d, 0x88, 0x65, 0x6b, 0x79, 0x33, 0xb4, 0xd7 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4c, 0x01, 0x26, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43 +.byte 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x10, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x20, 0x43, 0x41, 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, 0xaf, 0x35, 0x2e, 0xd8, 0xac, 0x6c, 0x55, 0x69, 0x06, 0x71 +.byte 0xe5, 0x13, 0x68, 0x24, 0xb3, 0x4f, 0xd8, 0xcc, 0x21, 0x47, 0xf8, 0xf1, 0x60, 0x38, 0x89, 0x89 +.byte 0x03, 0xe9, 0xbd, 0xea, 0x5e, 0x46, 0x53, 0x09, 0xdc, 0x5c, 0xf5, 0x5a, 0xe8, 0xf7, 0x45, 0x2a +.byte 0x02, 0xeb, 0x31, 0x61, 0xd7, 0x29, 0x33, 0x4c, 0xce, 0xc7, 0x7c, 0x0a, 0x37, 0x7e, 0x0f, 0xba +.byte 0x32, 0x98, 0xe1, 0x1d, 0x97, 0xaf, 0x8f, 0xc7, 0xdc, 0xc9, 0x38, 0x96, 0xf3, 0xdb, 0x1a, 0xfc +.byte 0x51, 0xed, 0x68, 0xc6, 0xd0, 0x6e, 0xa4, 0x7c, 0x24, 0xd1, 0xae, 0x42, 0xc8, 0x96, 0x50, 0x63 +.byte 0x2e, 0xe0, 0xfe, 0x75, 0xfe, 0x98, 0xa7, 0x5f, 0x49, 0x2e, 0x95, 0xe3, 0x39, 0x33, 0x64, 0x8e +.byte 0x1e, 0xa4, 0x5f, 0x90, 0xd2, 0x67, 0x3c, 0xb2, 0xd9, 0xfe, 0x41, 0xb9, 0x55, 0xa7, 0x09, 0x8e +.byte 0x72, 0x05, 0x1e, 0x8b, 0xdd, 0x44, 0x85, 0x82, 0x42, 0xd0, 0x49, 0xc0, 0x1d, 0x60, 0xf0, 0xd1 +.byte 0x17, 0x2c, 0x95, 0xeb, 0xf6, 0xa5, 0xc1, 0x92, 0xa3, 0xc5, 0xc2, 0xa7, 0x08, 0x60, 0x0d, 0x60 +.byte 0x04, 0x10, 0x96, 0x79, 0x9e, 0x16, 0x34, 0xe6, 0xa9, 0xb6, 0xfa, 0x25, 0x45, 0x39, 0xc8, 0x1e +.byte 0x65, 0xf9, 0x93, 0xf5, 0xaa, 0xf1, 0x52, 0xdc, 0x99, 0x98, 0x3d, 0xa5, 0x86, 0x1a, 0x0c, 0x35 +.byte 0x33, 0xfa, 0x4b, 0xa5, 0x04, 0x06, 0x15, 0x1c, 0x31, 0x80, 0xef, 0xaa, 0x18, 0x6b, 0xc2, 0x7b +.byte 0xd7, 0xda, 0xce, 0xf9, 0x33, 0x20, 0xd5, 0xf5, 0xbd, 0x6a, 0x33, 0x2d, 0x81, 0x04, 0xfb, 0xb0 +.byte 0x5c, 0xd4, 0x9c, 0xa3, 0xe2, 0x5c, 0x1d, 0xe3, 0xa9, 0x42, 0x75, 0x5e, 0x7b, 0xd4, 0x77, 0xef +.byte 0x39, 0x54, 0xba, 0xc9, 0x0a, 0x18, 0x1b, 0x12, 0x99, 0x49, 0x2f, 0x88, 0x4b, 0xfd, 0x50, 0x62 +.byte 0xd1, 0x73, 0xe7, 0x8f, 0x7a, 0x43, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4e, 0x01, 0x26, 0x30 +.byte 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d +.byte 0x20, 0x52, 0x33, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c +.byte 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 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, 0xcc, 0x25 +.byte 0x76, 0x90, 0x79, 0x06, 0x78, 0x22, 0x16, 0xf5, 0xc0, 0x83, 0xb6, 0x84, 0xca, 0x28, 0x9e, 0xfd +.byte 0x05, 0x76, 0x11, 0xc5, 0xad, 0x88, 0x72, 0xfc, 0x46, 0x02, 0x43, 0xc7, 0xb2, 0x8a, 0x9d, 0x04 +.byte 0x5f, 0x24, 0xcb, 0x2e, 0x4b, 0xe1, 0x60, 0x82, 0x46, 0xe1, 0x52, 0xab, 0x0c, 0x81, 0x47, 0x70 +.byte 0x6c, 0xdd, 0x64, 0xd1, 0xeb, 0xf5, 0x2c, 0xa3, 0x0f, 0x82, 0x3d, 0x0c, 0x2b, 0xae, 0x97, 0xd7 +.byte 0xb6, 0x14, 0x86, 0x10, 0x79, 0xbb, 0x3b, 0x13, 0x80, 0x77, 0x8c, 0x08, 0xe1, 0x49, 0xd2, 0x6a +.byte 0x62, 0x2f, 0x1f, 0x5e, 0xfa, 0x96, 0x68, 0xdf, 0x89, 0x27, 0x95, 0x38, 0x9f, 0x06, 0xd7, 0x3e +.byte 0xc9, 0xcb, 0x26, 0x59, 0x0d, 0x73, 0xde, 0xb0, 0xc8, 0xe9, 0x26, 0x0e, 0x83, 0x15, 0xc6, 0xef +.byte 0x5b, 0x8b, 0xd2, 0x04, 0x60, 0xca, 0x49, 0xa6, 0x28, 0xf6, 0x69, 0x3b, 0xf6, 0xcb, 0xc8, 0x28 +.byte 0x91, 0xe5, 0x9d, 0x8a, 0x61, 0x57, 0x37, 0xac, 0x74, 0x14, 0xdc, 0x74, 0xe0, 0x3a, 0xee, 0x72 +.byte 0x2f, 0x2e, 0x9c, 0xfb, 0xd0, 0xbb, 0xbf, 0xf5, 0x3d, 0x00, 0xe1, 0x06, 0x33, 0xe8, 0x82, 0x2b +.byte 0xae, 0x53, 0xa6, 0x3a, 0x16, 0x73, 0x8c, 0xdd, 0x41, 0x0e, 0x20, 0x3a, 0xc0, 0xb4, 0xa7, 0xa1 +.byte 0xe9, 0xb2, 0x4f, 0x90, 0x2e, 0x32, 0x60, 0xe9, 0x57, 0xcb, 0xb9, 0x04, 0x92, 0x68, 0x68, 0xe5 +.byte 0x38, 0x26, 0x60, 0x75, 0xb2, 0x9f, 0x77, 0xff, 0x91, 0x14, 0xef, 0xae, 0x20, 0x49, 0xfc, 0xad +.byte 0x40, 0x15, 0x48, 0xd1, 0x02, 0x31, 0x61, 0x19, 0x5e, 0xb8, 0x97, 0xef, 0xad, 0x77, 0xb7, 0x64 +.byte 0x9a, 0x7a, 0xbf, 0x5f, 0xc1, 0x13, 0xef, 0x9b, 0x62, 0xfb, 0x0d, 0x6c, 0xe0, 0x54, 0x69, 0x16 +.byte 0xa9, 0x03, 0xda, 0x6e, 0xe9, 0x83, 0x93, 0x71, 0x76, 0xc6, 0x69, 0x85, 0x82, 0x17, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x4e, 0x02, 0x26, 0x30, 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x36, 0x31, 0x13, 0x30, 0x11, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e +.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 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, 0x95, 0x07, 0xe8, 0x73, 0xca, 0x66, 0xf9, 0xec, 0x14, 0xca +.byte 0x7b, 0x3c, 0xf7, 0x0d, 0x08, 0xf1, 0xb4, 0x45, 0x0b, 0x2c, 0x82, 0xb4, 0x48, 0xc6, 0xeb, 0x5b +.byte 0x3c, 0xae, 0x83, 0xb8, 0x41, 0x92, 0x33, 0x14, 0xa4, 0x6f, 0x7f, 0xe9, 0x2a, 0xcc, 0xc6, 0xb0 +.byte 0x88, 0x6b, 0xc5, 0xb6, 0x89, 0xd1, 0xc6, 0xb2, 0xff, 0x14, 0xce, 0x51, 0x14, 0x21, 0xec, 0x4a +.byte 0xdd, 0x1b, 0x5a, 0xc6, 0xd6, 0x87, 0xee, 0x4d, 0x3a, 0x15, 0x06, 0xed, 0x64, 0x66, 0x0b, 0x92 +.byte 0x80, 0xca, 0x44, 0xde, 0x73, 0x94, 0x4e, 0xf3, 0xa7, 0x89, 0x7f, 0x4f, 0x78, 0x63, 0x08, 0xc8 +.byte 0x12, 0x50, 0x6d, 0x42, 0x66, 0x2f, 0x4d, 0xb9, 0x79, 0x28, 0x4d, 0x52, 0x1a, 0x8a, 0x1a, 0x80 +.byte 0xb7, 0x19, 0x81, 0x0e, 0x7e, 0xc4, 0x8a, 0xbc, 0x64, 0x4c, 0x21, 0x1c, 0x43, 0x68, 0xd7, 0x3d +.byte 0x3c, 0x8a, 0xc5, 0xb2, 0x66, 0xd5, 0x90, 0x9a, 0xb7, 0x31, 0x06, 0xc5, 0xbe, 0xe2, 0x6d, 0x32 +.byte 0x06, 0xa6, 0x1e, 0xf9, 0xb9, 0xeb, 0xaa, 0xa3, 0xb8, 0xbf, 0xbe, 0x82, 0x63, 0x50, 0xd0, 0xf0 +.byte 0x18, 0x89, 0xdf, 0xe4, 0x0f, 0x79, 0xf5, 0xea, 0xa2, 0x1f, 0x2a, 0xd2, 0x70, 0x2e, 0x7b, 0xe7 +.byte 0xbc, 0x93, 0xbb, 0x6d, 0x53, 0xe2, 0x48, 0x7c, 0x8c, 0x10, 0x07, 0x38, 0xff, 0x66, 0xb2, 0x77 +.byte 0x61, 0x7e, 0xe0, 0xea, 0x8c, 0x3c, 0xaa, 0xb4, 0xa4, 0xf6, 0xf3, 0x95, 0x4a, 0x12, 0x07, 0x6d +.byte 0xfd, 0x8c, 0xb2, 0x89, 0xcf, 0xd0, 0xa0, 0x61, 0x77, 0xc8, 0x58, 0x74, 0xb0, 0xd4, 0x23, 0x3a +.byte 0xf7, 0x5d, 0x3a, 0xca, 0xa2, 0xdb, 0x9d, 0x09, 0xde, 0x5d, 0x44, 0x2d, 0x90, 0xf1, 0x81, 0xcd +.byte 0x57, 0x92, 0xfa, 0x7e, 0xbc, 0x50, 0x04, 0x63, 0x34, 0xdf, 0x6b, 0x93, 0x18, 0xbe, 0x6b, 0x36 +.byte 0xb2, 0x39, 0xe4, 0xac, 0x24, 0x36, 0xb7, 0xf0, 0xef, 0xb6, 0x1c, 0x13, 0x57, 0x93, 0xb6, 0xde +.byte 0xb2, 0xf8, 0xe2, 0x85, 0xb7, 0x73, 0xa2, 0xb8, 0x35, 0xaa, 0x45, 0xf2, 0xe0, 0x9d, 0x36, 0xa1 +.byte 0x6f, 0x54, 0x8a, 0xf1, 0x72, 0x56, 0x6e, 0x2e, 0x88, 0xc5, 0x51, 0x42, 0x44, 0x15, 0x94, 0xee +.byte 0xa3, 0xc5, 0x38, 0x96, 0x9b, 0x4e, 0x4e, 0x5a, 0x0b, 0x47, 0xf3, 0x06, 0x36, 0x49, 0x77, 0x30 +.byte 0xbc, 0x71, 0x37, 0xe5, 0xa6, 0xec, 0x21, 0x08, 0x75, 0xfc, 0xe6, 0x61, 0x16, 0x3f, 0x77, 0xd5 +.byte 0xd9, 0x91, 0x97, 0x84, 0x0a, 0x6c, 0xd4, 0x02, 0x4d, 0x74, 0xc0, 0x14, 0xed, 0xfd, 0x39, 0xfb +.byte 0x83, 0xf2, 0x5e, 0x14, 0xa1, 0x04, 0xb0, 0x0b, 0xe9, 0xfe, 0xee, 0x8f, 0xe1, 0x6e, 0x0b, 0xb2 +.byte 0x08, 0xb3, 0x61, 0x66, 0x09, 0x6a, 0xb1, 0x06, 0x3a, 0x65, 0x96, 0x59, 0xc0, 0xf0, 0x35, 0xfd +.byte 0xc9, 0xda, 0x28, 0x8d, 0x1a, 0x11, 0x87, 0x70, 0x81, 0x0a, 0xa8, 0x9a, 0x75, 0x1d, 0x9e, 0x3a +.byte 0x86, 0x05, 0x00, 0x9e, 0xdb, 0x80, 0xd6, 0x25, 0xf9, 0xdc, 0x05, 0x9e, 0x27, 0x59, 0x4c, 0x76 +.byte 0x39, 0x5b, 0xea, 0xf9, 0xa5, 0xa1, 0xd8, 0x83, 0x0f, 0xd1, 0xff, 0xdf, 0x30, 0x11, 0xf9, 0x85 +.byte 0xcf, 0x33, 0x48, 0xf5, 0xca, 0x6d, 0x64, 0x14, 0x2c, 0x7a, 0x58, 0x4f, 0xd3, 0x4b, 0x08, 0x49 +.byte 0xc5, 0x95, 0x64, 0x1a, 0x63, 0x0e, 0x79, 0x3d, 0xf5, 0xb3, 0x8c, 0xca, 0x58, 0xad, 0x9c, 0x42 +.byte 0x45, 0x79, 0x6e, 0x0e, 0x87, 0x19, 0x5c, 0x54, 0xb1, 0x65, 0xb6, 0xbf, 0x8c, 0x9b, 0xdc, 0x13 +.byte 0xe9, 0x0d, 0x6f, 0xb8, 0x2e, 0xdc, 0x67, 0x6e, 0xc9, 0x8b, 0x11, 0xb5, 0x84, 0x14, 0x8a, 0x00 +.byte 0x19, 0x70, 0x83, 0x79, 0x91, 0x97, 0x91, 0xd4, 0x1a, 0x27, 0xbf, 0x37, 0x1e, 0x32, 0x07, 0xd8 +.byte 0x14, 0x63, 0x3c, 0x28, 0x4c, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x02, 0x26, 0x30 +.byte 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x41, 0x54, 0x31, 0x23 +.byte 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65 +.byte 0x72, 0x63, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x47 +.byte 0x6d, 0x62, 0x48, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x47, 0x4c +.byte 0x4f, 0x42, 0x41, 0x4c, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x32, 0x30, 0x32, 0x30, 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, 0xae +.byte 0x2e, 0x56, 0xad, 0x1b, 0x1c, 0xef, 0xf6, 0x95, 0x8f, 0xa0, 0x77, 0x1b, 0x2b, 0xd3, 0x63, 0x8f +.byte 0x84, 0x4d, 0x45, 0xa2, 0x0f, 0x9f, 0x5b, 0x45, 0xab, 0x59, 0x7b, 0x51, 0x34, 0xf9, 0xec, 0x8b +.byte 0x8a, 0x78, 0xc5, 0xdd, 0x6b, 0xaf, 0xbd, 0xc4, 0xdf, 0x93, 0x45, 0x1e, 0xbf, 0x91, 0x38, 0x0b +.byte 0xae, 0x0e, 0x16, 0xe7, 0x41, 0x73, 0xf8, 0xdb, 0xbb, 0xd1, 0xb8, 0x51, 0xe0, 0xcb, 0x83, 0x3b +.byte 0x73, 0x38, 0x6e, 0x77, 0x8a, 0x0f, 0x59, 0x63, 0x26, 0xcd, 0xa7, 0x2a, 0xce, 0x54, 0xfb, 0xb8 +.byte 0xe2, 0xc0, 0x7c, 0x47, 0xce, 0x60, 0x7c, 0x3f, 0xb2, 0x73, 0xf2, 0xc0, 0x19, 0xb6, 0x8a, 0x92 +.byte 0x87, 0x35, 0x0d, 0x90, 0x28, 0xa2, 0xe4, 0x15, 0x04, 0x63, 0x3e, 0xba, 0xaf, 0xee, 0x7c, 0x5e +.byte 0xcc, 0xa6, 0x8b, 0x50, 0xb2, 0x38, 0xf7, 0x41, 0x63, 0xca, 0xce, 0xff, 0x69, 0x8f, 0x68, 0x0e +.byte 0x95, 0x36, 0xe5, 0xcc, 0xb9, 0x8c, 0x09, 0xca, 0x4b, 0xdd, 0x31, 0x90, 0x96, 0xc8, 0xcc, 0x1f +.byte 0xfd, 0x56, 0x96, 0x34, 0xdb, 0x8e, 0x1c, 0xea, 0x2c, 0xbe, 0x85, 0x2e, 0x63, 0xdd, 0xaa, 0xa9 +.byte 0x95, 0xd3, 0xfd, 0x29, 0x95, 0x13, 0xf0, 0xc8, 0x98, 0x93, 0xd9, 0x2d, 0x16, 0x47, 0x90, 0x11 +.byte 0x83, 0xa2, 0x3a, 0x22, 0xa2, 0x28, 0x57, 0xa2, 0xeb, 0xfe, 0xc0, 0x8c, 0x28, 0xa0, 0xa6, 0x7d +.byte 0xe7, 0x2a, 0x42, 0x3b, 0x82, 0x80, 0x63, 0xa5, 0x63, 0x1f, 0x19, 0xcc, 0x7c, 0xb2, 0x66, 0xa8 +.byte 0xc2, 0xd3, 0x6d, 0x37, 0x6f, 0xe2, 0x7e, 0x06, 0x51, 0xd9, 0x45, 0x84, 0x1f, 0x12, 0xce, 0x24 +.byte 0x52, 0x64, 0x85, 0x0b, 0x48, 0x80, 0x4e, 0x87, 0xb1, 0x22, 0x22, 0x30, 0xaa, 0xeb, 0xae, 0xbe +.byte 0xe0, 0x02, 0xe0, 0x40, 0xe8, 0xb0, 0x42, 0x80, 0x03, 0x51, 0xaa, 0xb4, 0x7e, 0xaa, 0x44, 0xd7 +.byte 0x43, 0x61, 0xf3, 0xa2, 0x6b, 0x16, 0x89, 0x49, 0xa4, 0xa3, 0xa4, 0x2b, 0x8a, 0x02, 0xc4, 0x78 +.byte 0xf4, 0x68, 0x8a, 0xc1, 0xe4, 0x7a, 0x36, 0xb1, 0x6f, 0x1b, 0x96, 0x1b, 0x77, 0x49, 0x8d, 0xd4 +.byte 0xc9, 0x06, 0x72, 0x8f, 0xcf, 0x53, 0xe3, 0xdc, 0x17, 0x85, 0x20, 0x4a, 0xdc, 0x98, 0x27, 0xd3 +.byte 0x91, 0x26, 0x2b, 0x47, 0x1e, 0x69, 0x07, 0xaf, 0xde, 0xa2, 0xe4, 0xe4, 0xd4, 0x6b, 0x0b, 0xb3 +.byte 0x5e, 0x7c, 0xd4, 0x24, 0x80, 0x47, 0x29, 0x69, 0x3b, 0x6e, 0xe8, 0xac, 0xfd, 0x40, 0xeb, 0xd8 +.byte 0xed, 0x71, 0x71, 0x2b, 0xf2, 0xe8, 0x58, 0x1d, 0xeb, 0x41, 0x97, 0x22, 0xc5, 0x1f, 0xd4, 0x39 +.byte 0xd0, 0x27, 0x8f, 0x87, 0xe3, 0x18, 0xf4, 0xe0, 0xa9, 0x46, 0x0d, 0xf5, 0x74, 0x3a, 0x82, 0x2e +.byte 0xd0, 0x6e, 0x2c, 0x91, 0xa3, 0x31, 0x5c, 0x3b, 0x46, 0xea, 0x7b, 0x04, 0x10, 0x56, 0x5e, 0x80 +.byte 0x1d, 0xf5, 0xa5, 0x65, 0xe8, 0x82, 0xfc, 0xe2, 0x07, 0x8c, 0x62, 0x45, 0xf5, 0x20, 0xde, 0x46 +.byte 0x70, 0x86, 0xa1, 0xbc, 0x93, 0xd3, 0x1e, 0x74, 0xa6, 0x6c, 0xb0, 0x2c, 0xf7, 0x03, 0x0c, 0x88 +.byte 0x0c, 0xcb, 0xd4, 0x72, 0x53, 0x86, 0xbc, 0x60, 0x46, 0xf3, 0x98, 0x6a, 0xc2, 0xf1, 0xbf, 0x43 +.byte 0xf9, 0x70, 0x20, 0x77, 0xca, 0x37, 0x41, 0x79, 0x55, 0x52, 0x63, 0x8d, 0x5b, 0x12, 0x9f, 0xc5 +.byte 0x68, 0xc4, 0x88, 0x9d, 0xac, 0xf2, 0x30, 0xab, 0xb7, 0xa3, 0x31, 0x97, 0x67, 0xad, 0x8f, 0x17 +.byte 0x0f, 0x6c, 0xc7, 0x73, 0xed, 0x24, 0x94, 0x6b, 0xc8, 0x83, 0x9a, 0xd0, 0x9a, 0x37, 0x49, 0x04 +.byte 0xab, 0xb1, 0x16, 0xc8, 0x6c, 0x49, 0x49, 0x2d, 0xab, 0xa1, 0xd0, 0x8c, 0x92, 0xf2, 0x41, 0x4a +.byte 0x79, 0x21, 0x25, 0xdb, 0x63, 0xd7, 0xb6, 0x9c, 0xa7, 0x7e, 0x42, 0x69, 0xfb, 0x3a, 0x63, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x01, 0x26, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x27 +.byte 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41 +.byte 0x20, 0x32, 0x20, 0x32, 0x30, 0x30, 0x39, 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, 0xd3, 0xb2, 0x4a, 0xcf, 0x7a, 0x47, 0xef, 0x75 +.byte 0x9b, 0x23, 0xfa, 0x3a, 0x2f, 0xd6, 0x50, 0x45, 0x89, 0x35, 0x3a, 0xc6, 0x6b, 0xdb, 0xfe, 0xdb +.byte 0x00, 0x68, 0xa8, 0xe0, 0x03, 0x11, 0x1d, 0x37, 0x50, 0x08, 0x9f, 0x4d, 0x4a, 0x68, 0x94, 0x35 +.byte 0xb3, 0x53, 0xd1, 0x94, 0x63, 0xa7, 0x20, 0x56, 0xaf, 0xde, 0x51, 0x78, 0xec, 0x2a, 0x3d, 0xf3 +.byte 0x48, 0x48, 0x50, 0x3e, 0x0a, 0xdf, 0x46, 0x55, 0x8b, 0x27, 0x6d, 0xc3, 0x10, 0x4d, 0x0d, 0x91 +.byte 0x52, 0x43, 0xd8, 0x87, 0xe0, 0x5d, 0x4e, 0x36, 0xb5, 0x21, 0xca, 0x5f, 0x39, 0x40, 0x04, 0x5f +.byte 0x5b, 0x7e, 0xcc, 0xa3, 0xc6, 0x2b, 0xa9, 0x40, 0x1e, 0xd9, 0x36, 0x84, 0xd6, 0x48, 0xf3, 0x92 +.byte 0x1e, 0x34, 0x46, 0x20, 0x24, 0xc1, 0xa4, 0x51, 0x8e, 0x4a, 0x1a, 0xef, 0x50, 0x3f, 0x69, 0x5d +.byte 0x19, 0x7f, 0x45, 0xc3, 0xc7, 0x01, 0x8f, 0x51, 0xc9, 0x23, 0xe8, 0x72, 0xae, 0xb4, 0xbc, 0x56 +.byte 0x09, 0x7f, 0x12, 0xcb, 0x1c, 0xb1, 0xaf, 0x29, 0x90, 0x0a, 0xc9, 0x55, 0xcc, 0x0f, 0xd3, 0xb4 +.byte 0x1a, 0xed, 0x47, 0x35, 0x5a, 0x4a, 0xed, 0x9c, 0x73, 0x04, 0x21, 0xd0, 0xaa, 0xbd, 0x0c, 0x13 +.byte 0xb5, 0x00, 0xca, 0x26, 0x6c, 0xc4, 0x6b, 0x0c, 0x94, 0x5a, 0x95, 0x94, 0xda, 0x50, 0x9a, 0xf1 +.byte 0xff, 0xa5, 0x2b, 0x66, 0x31, 0xa4, 0xc9, 0x38, 0xa0, 0xdf, 0x1d, 0x1f, 0xb8, 0x09, 0x2e, 0xf3 +.byte 0xa7, 0xe8, 0x67, 0x52, 0xab, 0x95, 0x1f, 0xe0, 0x46, 0x3e, 0xd8, 0xa4, 0xc3, 0xca, 0x5a, 0xc5 +.byte 0x31, 0x80, 0xe8, 0x48, 0x9a, 0x9f, 0x94, 0x69, 0xfe, 0x19, 0xdd, 0xd8, 0x73, 0x7c, 0x81, 0xca +.byte 0x96, 0xde, 0x8e, 0xed, 0xb3, 0x32, 0x05, 0x65, 0x84, 0x34, 0xe6, 0xe6, 0xfd, 0x57, 0x10, 0xb5 +.byte 0x5f, 0x76, 0xbf, 0x2f, 0xb0, 0x10, 0x0d, 0xc5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x02 +.byte 0x26, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x21, 0x49 +.byte 0x64, 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20 +.byte 0x53, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 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, 0xb6, 0x22, 0x94, 0xfc, 0xa4, 0x48, 0xaf, 0xe8, 0x47, 0x6b, 0x0a, 0xfb, 0x27, 0x76, 0xe4 +.byte 0xf2, 0x3f, 0x8a, 0x3b, 0x7a, 0x4a, 0x2c, 0x31, 0x2a, 0x8c, 0x8d, 0xb0, 0xa9, 0xc3, 0x31, 0x6b +.byte 0xa8, 0x77, 0x76, 0x84, 0x26, 0xb6, 0xac, 0x81, 0x42, 0x0d, 0x08, 0xeb, 0x55, 0x58, 0xbb, 0x7a +.byte 0xf8, 0xbc, 0x65, 0x7d, 0xf2, 0xa0, 0x6d, 0x8b, 0xa8, 0x47, 0xe9, 0x62, 0x76, 0x1e, 0x11, 0xee +.byte 0x08, 0x14, 0xd1, 0xb2, 0x44, 0x16, 0xf4, 0xea, 0xd0, 0xfa, 0x1e, 0x2f, 0x5e, 0xdb, 0xcb, 0x73 +.byte 0x41, 0xae, 0xbc, 0x00, 0xb0, 0x4a, 0x2b, 0x40, 0xb2, 0xac, 0xe1, 0x3b, 0x4b, 0xc2, 0x2d, 0x9d +.byte 0xe4, 0xa1, 0x9b, 0xec, 0x1a, 0x3a, 0x1e, 0xf0, 0x08, 0xb3, 0xd0, 0xe4, 0x24, 0x35, 0x07, 0x9f +.byte 0x9c, 0xb4, 0xc9, 0x52, 0x6d, 0xdb, 0x07, 0xca, 0x8f, 0xb5, 0x5b, 0xf0, 0x83, 0xf3, 0x4f, 0xc7 +.byte 0x2d, 0xa5, 0xc8, 0xad, 0xcb, 0x95, 0x20, 0xa4, 0x31, 0x28, 0x57, 0x58, 0x5a, 0xe4, 0x8d, 0x1b +.byte 0x9a, 0xab, 0x9e, 0x0d, 0x0c, 0xf2, 0x0a, 0x33, 0x39, 0x22, 0x39, 0x0a, 0x97, 0x2e, 0xf3, 0x53 +.byte 0x77, 0xb9, 0x44, 0x45, 0xfd, 0x84, 0xcb, 0x36, 0x20, 0x81, 0x59, 0x2d, 0x9a, 0x6f, 0x6d, 0x48 +.byte 0x48, 0x61, 0xca, 0x4c, 0xdf, 0x53, 0xd1, 0xaf, 0x52, 0xbc, 0x44, 0x9f, 0xab, 0x2f, 0x6b, 0x83 +.byte 0x72, 0xef, 0x75, 0x80, 0xda, 0x06, 0x33, 0x1b, 0x5d, 0xc8, 0xda, 0x63, 0xc6, 0x4d, 0xcd, 0xac +.byte 0x66, 0x31, 0xcd, 0xd1, 0xde, 0x3e, 0x87, 0x10, 0x36, 0xe1, 0xb9, 0xa4, 0x7a, 0xef, 0x60, 0x50 +.byte 0xb2, 0xcb, 0xca, 0xa6, 0x56, 0xe0, 0x37, 0xaf, 0xab, 0x34, 0x13, 0x39, 0x25, 0xe8, 0x39, 0x66 +.byte 0xe4, 0x98, 0x7a, 0xaa, 0x12, 0x98, 0x9c, 0x59, 0x66, 0x86, 0x3e, 0xad, 0xf1, 0xb0, 0xca, 0x3e +.byte 0x06, 0x0f, 0x7b, 0xf0, 0x11, 0x4b, 0x37, 0xa0, 0x44, 0x6d, 0x7b, 0xcb, 0xa8, 0x8c, 0x71, 0xf4 +.byte 0xd5, 0xb5, 0x91, 0x36, 0xcc, 0xf0, 0x15, 0xc6, 0x2b, 0xde, 0x51, 0x17, 0xb1, 0x97, 0x4c, 0x50 +.byte 0x3d, 0xb1, 0x95, 0x59, 0x7c, 0x05, 0x7d, 0x2d, 0x21, 0xd5, 0x00, 0xbf, 0x01, 0x67, 0xa2, 0x5e +.byte 0x7b, 0xa6, 0x5c, 0xf2, 0xf7, 0x22, 0xf1, 0x90, 0x0d, 0x93, 0xdb, 0xaa, 0x44, 0x51, 0x66, 0xcc +.byte 0x7d, 0x76, 0x03, 0xeb, 0x6a, 0xa8, 0x2a, 0x38, 0x19, 0x97, 0x76, 0x0d, 0x6b, 0x8a, 0x61, 0xf9 +.byte 0xbc, 0xf6, 0xee, 0x76, 0xfd, 0x70, 0x2b, 0xdd, 0x29, 0x3c, 0xf8, 0x0a, 0x1e, 0x5b, 0x42, 0x1c +.byte 0x8b, 0x56, 0x2f, 0x55, 0x1b, 0x1c, 0xa1, 0x2e, 0xb5, 0xc7, 0x16, 0xe6, 0xf8, 0xaa, 0x3c, 0x92 +.byte 0x8e, 0x69, 0xb6, 0x01, 0xc1, 0xb5, 0x86, 0x9d, 0x89, 0x0f, 0x0b, 0x38, 0x94, 0x54, 0xe8, 0xea +.byte 0xdc, 0x9e, 0x3d, 0x25, 0xbc, 0x53, 0x26, 0xed, 0xd5, 0xab, 0x39, 0xaa, 0xc5, 0x40, 0x4c, 0x54 +.byte 0xab, 0xb2, 0xb4, 0xd9, 0xd9, 0xf8, 0xd7, 0x72, 0xdb, 0x1c, 0xbc, 0x6d, 0xbd, 0x65, 0x5f, 0xef +.byte 0x88, 0x35, 0x2a, 0x66, 0x2f, 0xee, 0xf6, 0xb3, 0x65, 0xf0, 0x33, 0x8d, 0x7c, 0x98, 0x41, 0x69 +.byte 0x46, 0x0f, 0x43, 0x1c, 0x69, 0xfa, 0x9b, 0xb5, 0xd0, 0x61, 0x6a, 0xcd, 0xca, 0x4b, 0xd9, 0x4c +.byte 0x90, 0x46, 0xab, 0x15, 0x59, 0xa1, 0x47, 0x54, 0x29, 0x2e, 0x83, 0x28, 0x5f, 0x1c, 0xc2, 0xa2 +.byte 0xab, 0x72, 0x17, 0x00, 0x06, 0x8e, 0x45, 0xec, 0x8b, 0xe2, 0x33, 0x3d, 0x7f, 0xda, 0x19, 0x44 +.byte 0xe4, 0x62, 0x72, 0xc3, 0xdf, 0x22, 0xc6, 0xf2, 0x56, 0xd4, 0xdd, 0x5f, 0x95, 0x72, 0xed, 0x6d +.byte 0x5f, 0xf7, 0x48, 0x03, 0x5b, 0xfd, 0xc5, 0x2a, 0xa0, 0xf6, 0x73, 0x23, 0x84, 0x10, 0x1b, 0x01 +.byte 0xe7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x4f, 0x02, 0x26, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1c, 0x44, 0x69, 0x67 +.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x34, 0x30, 0x39 +.byte 0x36, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 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, 0xd0, 0xf4, 0xc9, 0x79, 0x11 +.byte 0x9d, 0xfd, 0xfc, 0x66, 0x81, 0xe7, 0xcc, 0xd5, 0xe4, 0xbc, 0xec, 0x81, 0x3e, 0x6a, 0x35, 0x8e +.byte 0x2e, 0xb7, 0xe7, 0xde, 0xaf, 0xf9, 0x07, 0x4d, 0xcf, 0x30, 0x9d, 0xea, 0x09, 0x0b, 0x99, 0xbd +.byte 0x6c, 0x57, 0xda, 0x18, 0x4a, 0xb8, 0x78, 0xac, 0x3a, 0x39, 0xa8, 0xa6, 0x48, 0xac, 0x2e, 0x72 +.byte 0xe5, 0xbd, 0xeb, 0xf1, 0x1a, 0xcd, 0xe7, 0xa4, 0x03, 0xa9, 0x3f, 0x11, 0xb4, 0xd8, 0x2f, 0x89 +.byte 0x16, 0xfb, 0x94, 0x01, 0x3d, 0xbb, 0x2f, 0xf8, 0x13, 0x05, 0xa1, 0x78, 0x1c, 0x8e, 0x28, 0xe0 +.byte 0x45, 0xe0, 0x83, 0xf4, 0x59, 0x1b, 0x95, 0xb3, 0xae, 0x7e, 0x03, 0x45, 0xe5, 0xbe, 0xc2, 0x42 +.byte 0xfe, 0xee, 0xf2, 0x3c, 0xb6, 0x85, 0x13, 0x98, 0x32, 0x9d, 0x16, 0xa8, 0x29, 0xc2, 0x0b, 0x1c +.byte 0x38, 0xdc, 0x9f, 0x31, 0x77, 0x5c, 0xbf, 0x27, 0xa3, 0xfc, 0x27, 0xac, 0xb7, 0x2b, 0xbd, 0x74 +.byte 0x9b, 0x17, 0x2d, 0xf2, 0x81, 0xda, 0x5d, 0xb0, 0xe1, 0x23, 0x17, 0x3e, 0x88, 0x4a, 0x12, 0x23 +.byte 0xd0, 0xea, 0xcf, 0x9d, 0xde, 0x03, 0x17, 0xb1, 0x42, 0x4a, 0xa0, 0x16, 0x4c, 0xa4, 0x6d, 0x93 +.byte 0xe9, 0x3f, 0x3a, 0xee, 0x3a, 0x7c, 0x9d, 0x58, 0x9d, 0xf4, 0x4e, 0x8f, 0xfc, 0x3b, 0x23, 0xc8 +.byte 0x6d, 0xb8, 0xe2, 0x05, 0xda, 0xcc, 0xeb, 0xec, 0xc3, 0x31, 0xf4, 0xd7, 0xa7, 0x29, 0x54, 0x80 +.byte 0xcf, 0x44, 0x5b, 0x4c, 0x6f, 0x30, 0x9e, 0xf3, 0xcc, 0xdd, 0x1f, 0x94, 0x43, 0x9d, 0x4d, 0x7f +.byte 0x70, 0x70, 0x0d, 0xd4, 0x3a, 0xd1, 0x37, 0xf0, 0x6c, 0x9d, 0x9b, 0xc0, 0x14, 0x93, 0x58, 0xef +.byte 0xcd, 0x41, 0x38, 0x75, 0xbc, 0x13, 0x03, 0x95, 0x7c, 0x7f, 0xe3, 0x5c, 0xe9, 0xd5, 0x0d, 0xd5 +.byte 0xe2, 0x7c, 0x10, 0x62, 0xaa, 0x6b, 0xf0, 0x3d, 0x76, 0xf3, 0x3f, 0xa3, 0xe8, 0xb0, 0xc1, 0xfd +.byte 0xef, 0xaa, 0x57, 0x4d, 0xac, 0x86, 0xa7, 0x18, 0xb4, 0x29, 0xc1, 0x2c, 0x0e, 0xbf, 0x64, 0xbe +.byte 0x29, 0x8c, 0xd8, 0x02, 0x2d, 0xcd, 0x5c, 0x2f, 0xf2, 0x7f, 0xef, 0x15, 0xf4, 0x0c, 0x15, 0xac +.byte 0x0a, 0xb0, 0xf1, 0xd3, 0x0d, 0x4f, 0x6a, 0x4d, 0x77, 0x97, 0x01, 0xa0, 0xf1, 0x66, 0xb7, 0xb7 +.byte 0xce, 0xef, 0xce, 0xec, 0xec, 0xa5, 0x75, 0xca, 0xac, 0xe3, 0xe1, 0x63, 0xf7, 0xb8, 0xa1, 0x04 +.byte 0xc8, 0xbc, 0x7b, 0x3f, 0x5d, 0x2d, 0x16, 0x22, 0x56, 0xed, 0x48, 0x49, 0xfe, 0xa7, 0x2f, 0x79 +.byte 0x30, 0x25, 0x9b, 0xba, 0x6b, 0x2d, 0x3f, 0x9d, 0x3b, 0xc4, 0x17, 0xe7, 0x1d, 0x2e, 0xfb, 0xf2 +.byte 0xcf, 0xa6, 0xfc, 0xe3, 0x14, 0x2c, 0x96, 0x98, 0x21, 0x8c, 0xb4, 0x91, 0xe9, 0x19, 0x60, 0x83 +.byte 0xf2, 0x30, 0x2b, 0x06, 0x73, 0x50, 0xd5, 0x98, 0x3b, 0x06, 0xe9, 0xc7, 0x8a, 0x0c, 0x60, 0x8c +.byte 0x28, 0xf8, 0x52, 0x9b, 0x6e, 0xe1, 0xf6, 0x4d, 0xbb, 0x06, 0x24, 0x9b, 0xd7, 0x2b, 0x26, 0x3f +.byte 0xfd, 0x2a, 0x2f, 0x71, 0xf5, 0xd6, 0x24, 0xbe, 0x7f, 0x31, 0x9e, 0x0f, 0x6d, 0xe8, 0x8f, 0x4f +.byte 0x4d, 0xa3, 0x3f, 0xff, 0x35, 0xea, 0xdf, 0x49, 0x5e, 0x41, 0x8f, 0x86, 0xf9, 0xf1, 0x77, 0x79 +.byte 0x4b, 0x1b, 0xb4, 0xa3, 0x5e, 0x2f, 0xfb, 0x46, 0x02, 0xd0, 0x66, 0x13, 0x5e, 0x5e, 0x85, 0x4f +.byte 0xce, 0xd8, 0x70, 0x88, 0x7b, 0xce, 0x01, 0xb5, 0x96, 0x97, 0xd7, 0xcd, 0x7d, 0xfd, 0x82, 0xf8 +.byte 0xc2, 0x24, 0xc1, 0xca, 0x01, 0x39, 0x4f, 0x8d, 0xa2, 0xc1, 0x14, 0x40, 0x1f, 0x9c, 0x66, 0xd5 +.byte 0x0c, 0x09, 0x46, 0xd6, 0xf2, 0xd0, 0xd1, 0x48, 0x76, 0x56, 0x3a, 0x43, 0xcb, 0xb6, 0x0a, 0x11 +.byte 0x39, 0xba, 0x8c, 0x13, 0x6c, 0x06, 0xb5, 0x9e, 0xcf, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x50, 0x02, 0x26, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x4e, 0x4f, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79 +.byte 0x70, 0x61, 0x73, 0x73, 0x20, 0x41, 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32 +.byte 0x37, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70 +.byte 0x61, 0x73, 0x73, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 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, 0xd7, 0xc7, 0x5e, 0xf7, 0xc1, 0x07, 0xd4, 0x77, 0xfb, 0x43, 0x21, 0xf4 +.byte 0xf4, 0xf5, 0x69, 0xe4, 0xee, 0x32, 0x01, 0xdb, 0xa3, 0x86, 0x1f, 0xe4, 0x59, 0x0d, 0xba, 0xe7 +.byte 0x75, 0x83, 0x52, 0xeb, 0xea, 0x1c, 0x61, 0x15, 0x48, 0xbb, 0x1d, 0x07, 0xca, 0x8c, 0xae, 0xb0 +.byte 0xdc, 0x96, 0x9d, 0xea, 0xc3, 0x60, 0x92, 0x86, 0x82, 0x28, 0x73, 0x9c, 0x56, 0x06, 0xff, 0x4b +.byte 0x64, 0xf0, 0x0c, 0x2a, 0x37, 0x49, 0xb5, 0xe5, 0xcf, 0x0c, 0x7c, 0xee, 0xf1, 0x4a, 0xbb, 0x73 +.byte 0x30, 0x65, 0xf3, 0xd5, 0x2f, 0x83, 0xb6, 0x7e, 0xe3, 0xe7, 0xf5, 0x9e, 0xab, 0x60, 0xf9, 0xd3 +.byte 0xf1, 0x9d, 0x92, 0x74, 0x8a, 0xe4, 0x1c, 0x96, 0xac, 0x5b, 0x80, 0xe9, 0xb5, 0xf4, 0x31, 0x87 +.byte 0xa3, 0x51, 0xfc, 0xc7, 0x7e, 0xa1, 0x6f, 0x8e, 0x53, 0x77, 0xd4, 0x97, 0xc1, 0x55, 0x33, 0x92 +.byte 0x3e, 0x18, 0x2f, 0x75, 0xd4, 0xad, 0x86, 0x49, 0xcb, 0x95, 0xaf, 0x54, 0x06, 0x6c, 0xd8, 0x06 +.byte 0x13, 0x8d, 0x5b, 0xff, 0xe1, 0x26, 0x19, 0x59, 0xc0, 0x24, 0xba, 0x81, 0x71, 0x79, 0x90, 0x44 +.byte 0x50, 0x68, 0x24, 0x94, 0x5f, 0xb8, 0xb3, 0x11, 0xf1, 0x29, 0x41, 0x61, 0xa3, 0x41, 0xcb, 0x23 +.byte 0x36, 0xd5, 0xc1, 0xf1, 0x32, 0x50, 0x10, 0x4e, 0x7f, 0xf4, 0x86, 0x93, 0xec, 0x84, 0xd3, 0x8e +.byte 0xbc, 0x4b, 0xbf, 0x5c, 0x01, 0x4e, 0x07, 0x3d, 0xdc, 0x14, 0x8a, 0x94, 0x0a, 0xa4, 0xea, 0x73 +.byte 0xfb, 0x0b, 0x51, 0xe8, 0x13, 0x07, 0x18, 0xfa, 0x0e, 0xf1, 0x2b, 0xd1, 0x54, 0x15, 0x7d, 0x3c +.byte 0xe1, 0xf7, 0xb4, 0x19, 0x42, 0x67, 0x62, 0x5e, 0x77, 0xe0, 0xa2, 0x55, 0xec, 0xb6, 0xd9, 0x69 +.byte 0x17, 0xd5, 0x3a, 0xaf, 0x44, 0xed, 0x4a, 0xc5, 0x9e, 0xe4, 0x7a, 0x27, 0x7c, 0xe5, 0x75, 0xd7 +.byte 0xaa, 0xcb, 0x25, 0xe7, 0xdf, 0x6b, 0x0a, 0xdb, 0x0f, 0x4d, 0x93, 0x4e, 0xa8, 0xa0, 0xcd, 0x7b +.byte 0x2e, 0xf2, 0x59, 0x01, 0x6a, 0xb7, 0x0d, 0xb8, 0x07, 0x81, 0x7e, 0x8b, 0x38, 0x1b, 0x38, 0xe6 +.byte 0x0a, 0x57, 0x99, 0x3d, 0xee, 0x21, 0xe8, 0xa3, 0xf5, 0x0c, 0x16, 0xdd, 0x8b, 0xec, 0x34, 0x8e +.byte 0x9c, 0x2a, 0x1c, 0x00, 0x15, 0x17, 0x8d, 0x68, 0x83, 0xd2, 0x70, 0x9f, 0x18, 0x08, 0xcd, 0x11 +.byte 0x68, 0xd5, 0xc9, 0x6b, 0x52, 0xcd, 0xc4, 0x46, 0x8f, 0xdc, 0xb5, 0xf3, 0xd8, 0x57, 0x73, 0x1e +.byte 0xe9, 0x94, 0x39, 0x04, 0xbf, 0xd3, 0xde, 0x38, 0xde, 0xb4, 0x53, 0xec, 0x69, 0x1c, 0xa2, 0x7e +.byte 0xc4, 0x8f, 0xe4, 0x1b, 0x70, 0xad, 0xf2, 0xa2, 0xf9, 0xfb, 0xf7, 0x16, 0x64, 0x66, 0x69, 0x9f +.byte 0x49, 0x51, 0xa2, 0xe2, 0x15, 0x18, 0x67, 0x06, 0x4a, 0x7f, 0xd5, 0x6c, 0xb5, 0x4d, 0xb3, 0x33 +.byte 0xe0, 0x61, 0xeb, 0x5d, 0xbe, 0xe9, 0x98, 0x0f, 0x32, 0xd7, 0x1d, 0x4b, 0x3c, 0x2e, 0x5a, 0x01 +.byte 0x52, 0x91, 0x09, 0xf2, 0xdf, 0xea, 0x8d, 0xd8, 0x06, 0x40, 0x63, 0xaa, 0x11, 0xe4, 0xfe, 0xc3 +.byte 0x37, 0x9e, 0x14, 0x52, 0x3f, 0xf4, 0xe2, 0xcc, 0xf2, 0x61, 0x93, 0xd1, 0xfd, 0x67, 0x6b, 0xd7 +.byte 0x52, 0xae, 0xbf, 0x68, 0xab, 0x40, 0x43, 0xa0, 0x57, 0x35, 0x53, 0x78, 0xf0, 0x53, 0xf8, 0x61 +.byte 0x42, 0x07, 0x64, 0xc6, 0xd7, 0x6f, 0x9b, 0x4c, 0x38, 0x0d, 0x63, 0xac, 0x62, 0xaf, 0x36, 0x8b +.byte 0xa2, 0x73, 0x0a, 0x0d, 0xf5, 0x21, 0xbd, 0x74, 0xaa, 0x4d, 0xea, 0x72, 0x03, 0x49, 0xdb, 0xc7 +.byte 0x5f, 0x1d, 0x62, 0x63, 0xc7, 0xfd, 0xdd, 0x91, 0xec, 0x33, 0xee, 0xf5, 0x6d, 0xb4, 0x6e, 0x30 +.byte 0x68, 0xde, 0xc8, 0xd6, 0x26, 0xb0, 0x75, 0x5e, 0x7b, 0xb4, 0x07, 0x20, 0x98, 0xa1, 0x76, 0x32 +.byte 0xb8, 0x4d, 0x6c, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x50, 0x02, 0x26, 0x30, 0x4e, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4f, 0x31, 0x1d, 0x30, 0x1b +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x41 +.byte 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32, 0x37, 0x31, 0x20, 0x30, 0x1e, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x43, 0x6c +.byte 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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, 0xa5, 0xda +.byte 0x0a, 0x95, 0x16, 0x50, 0xe3, 0x95, 0xf2, 0x5e, 0x9d, 0x76, 0x31, 0x06, 0x32, 0x7a, 0x9b, 0xf1 +.byte 0x10, 0x76, 0xb8, 0x00, 0x9a, 0xb5, 0x52, 0x36, 0xcd, 0x24, 0x47, 0xb0, 0x9f, 0x18, 0x64, 0xbc +.byte 0x9a, 0xf6, 0xfa, 0xd5, 0x79, 0xd8, 0x90, 0x62, 0x4c, 0x22, 0x2f, 0xde, 0x38, 0x3d, 0xd6, 0xe0 +.byte 0xa8, 0xe9, 0x1c, 0x2c, 0xdb, 0x78, 0x11, 0xe9, 0x8e, 0x68, 0x51, 0x15, 0x72, 0xc7, 0xf3, 0x33 +.byte 0x87, 0xe4, 0xa0, 0x5d, 0x0b, 0x5c, 0xe0, 0x57, 0x07, 0x2a, 0x30, 0xf5, 0xcd, 0xc4, 0x37, 0x77 +.byte 0x28, 0x4d, 0x18, 0x91, 0xe6, 0xbf, 0xd5, 0x52, 0xfd, 0x71, 0x2d, 0x70, 0x3e, 0xe7, 0xc6, 0xc4 +.byte 0x8a, 0xe3, 0xf0, 0x28, 0x0b, 0xf4, 0x76, 0x98, 0xa1, 0x8b, 0x87, 0x55, 0xb2, 0x3a, 0x13, 0xfc +.byte 0xb7, 0x3e, 0x27, 0x37, 0x8e, 0x22, 0xe3, 0xa8, 0x4f, 0x2a, 0xef, 0x60, 0xbb, 0x3d, 0xb7, 0x39 +.byte 0xc3, 0x0e, 0x01, 0x47, 0x99, 0x5d, 0x12, 0x4f, 0xdb, 0x43, 0xfa, 0x57, 0xa1, 0xed, 0xf9, 0x9d +.byte 0xbe, 0x11, 0x47, 0x26, 0x5b, 0x13, 0x98, 0xab, 0x5d, 0x16, 0x8a, 0xb0, 0x37, 0x1c, 0x57, 0x9d +.byte 0x45, 0xff, 0x88, 0x96, 0x36, 0xbf, 0xbb, 0xca, 0x07, 0x7b, 0x6f, 0x87, 0x63, 0xd7, 0xd0, 0x32 +.byte 0x6a, 0xd6, 0x5d, 0x6c, 0x0c, 0xf1, 0xb3, 0x6e, 0x39, 0xe2, 0x6b, 0x31, 0x2e, 0x39, 0x00, 0x27 +.byte 0x14, 0xde, 0x38, 0xc0, 0xec, 0x19, 0x66, 0x86, 0x12, 0xe8, 0x9d, 0x72, 0x16, 0x13, 0x64, 0x52 +.byte 0xc7, 0xa9, 0x37, 0x1c, 0xfd, 0x82, 0x30, 0xed, 0x84, 0x18, 0x1d, 0xf4, 0xae, 0x5c, 0xff, 0x70 +.byte 0x13, 0x00, 0xeb, 0xb1, 0xf5, 0x33, 0x7a, 0x4b, 0xd6, 0x55, 0xf8, 0x05, 0x8d, 0x4b, 0x69, 0xb0 +.byte 0xf5, 0xb3, 0x28, 0x36, 0x5c, 0x14, 0xc4, 0x51, 0x73, 0x4d, 0x6b, 0x0b, 0xf1, 0x34, 0x07, 0xdb +.byte 0x17, 0x39, 0xd7, 0xdc, 0x28, 0x7b, 0x6b, 0xf5, 0x9f, 0xf3, 0x2e, 0xc1, 0x4f, 0x17, 0x2a, 0x10 +.byte 0xf3, 0xcc, 0xca, 0xe8, 0xeb, 0xfd, 0x6b, 0xab, 0x2e, 0x9a, 0x9f, 0x2d, 0x82, 0x6e, 0x04, 0xd4 +.byte 0x52, 0x01, 0x93, 0x2d, 0x3d, 0x86, 0xfc, 0x7e, 0xfc, 0xdf, 0xef, 0x42, 0x1d, 0xa6, 0x6b, 0xef +.byte 0xb9, 0x20, 0xc6, 0xf7, 0xbd, 0xa0, 0xa7, 0x95, 0xfd, 0xa7, 0xe6, 0x89, 0x24, 0xd8, 0xcc, 0x8c +.byte 0x34, 0x6c, 0xe2, 0x23, 0x2f, 0xd9, 0x12, 0x1a, 0x21, 0xb9, 0x55, 0x91, 0x6f, 0x0b, 0x91, 0x79 +.byte 0x19, 0x0c, 0xad, 0x40, 0x88, 0x0b, 0x70, 0xe2, 0x7a, 0xd2, 0x0e, 0xd8, 0x68, 0x48, 0xbb, 0x82 +.byte 0x13, 0x39, 0x10, 0x58, 0xe9, 0xd8, 0x2a, 0x07, 0xc6, 0x12, 0xdb, 0x58, 0xdb, 0xd2, 0x3b, 0x55 +.byte 0x10, 0x47, 0x05, 0x15, 0x67, 0x62, 0x7e, 0x18, 0x63, 0xa6, 0x46, 0x3f, 0x09, 0x0e, 0x54, 0x32 +.byte 0x5e, 0xbf, 0x0d, 0x62, 0x7a, 0x27, 0xef, 0x80, 0xe8, 0xdb, 0xd9, 0x4b, 0x06, 0x5a, 0x37, 0x5a +.byte 0x25, 0xd0, 0x08, 0x12, 0x77, 0xd4, 0x6f, 0x09, 0x50, 0x97, 0x3d, 0xc8, 0x1d, 0xc3, 0xdf, 0x8c +.byte 0x45, 0x30, 0x56, 0xc6, 0xd3, 0x64, 0xab, 0x66, 0xf3, 0xc0, 0x5e, 0x96, 0x9c, 0xc3, 0xc4, 0xef +.byte 0xc3, 0x7c, 0x6b, 0x8b, 0x3a, 0x79, 0x7f, 0xb3, 0x49, 0xcf, 0x3d, 0xe2, 0x89, 0x9f, 0xa0, 0x30 +.byte 0x4b, 0x85, 0xb9, 0x9c, 0x94, 0x24, 0x79, 0x8f, 0x7d, 0x6b, 0xa9, 0x45, 0x68, 0x0f, 0x2b, 0xd0 +.byte 0xf1, 0xda, 0x1c, 0xcb, 0x69, 0xb8, 0xca, 0x49, 0x62, 0x6d, 0xc8, 0xd0, 0x63, 0x62, 0xdd, 0x60 +.byte 0x0f, 0x58, 0xaa, 0x8f, 0xa1, 0xbc, 0x05, 0xa5, 0x66, 0xa2, 0xcf, 0x1b, 0x76, 0xb2, 0x84, 0x64 +.byte 0xb1, 0x4c, 0x39, 0x52, 0xc0, 0x30, 0xba, 0xf0, 0x8c, 0x4b, 0x02, 0xb0, 0xb6, 0xb7, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x50, 0x00, 0x78, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31 +.byte 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1d, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 +.byte 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 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, 0xc1 +.byte 0x44, 0xa1, 0xcf, 0x11, 0x97, 0x50, 0x9a, 0xde, 0x23, 0x82, 0x35, 0x07, 0xcd, 0xd0, 0xcb, 0x18 +.byte 0x9d, 0xd2, 0xf1, 0x7f, 0x77, 0x35, 0x4f, 0x3b, 0xdd, 0x94, 0x72, 0x52, 0xed, 0xc2, 0x3b, 0xf8 +.byte 0xec, 0xfa, 0x7b, 0x6b, 0x58, 0x20, 0xec, 0x99, 0xae, 0xc9, 0xfc, 0x68, 0xb3, 0x75, 0xb9, 0xdb +.byte 0x09, 0xec, 0xc8, 0x13, 0xf5, 0x4e, 0xc6, 0x0a, 0x1d, 0x66, 0x30, 0x4c, 0xbb, 0x1f, 0x47, 0x0a +.byte 0x3c, 0x61, 0x10, 0x42, 0x29, 0x7c, 0xa5, 0x08, 0x0e, 0xe0, 0x22, 0xe9, 0xd3, 0x35, 0x68, 0xce +.byte 0x9b, 0x63, 0x9f, 0x84, 0xb5, 0x99, 0x4d, 0x58, 0xa0, 0x8e, 0xf5, 0x54, 0xe7, 0x95, 0xc9, 0x00 +.byte 0x51, 0x02, 0x26, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x54, 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75 +.byte 0x6e, 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f +.byte 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x12, 0x48, 0x69, 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20 +.byte 0x2d, 0x20, 0x47, 0x31, 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, 0xf4, 0x1e, 0x7f, 0x52, 0x73, 0x32, 0x0c, 0x73, 0xe4, 0xbd, 0x13 +.byte 0x74, 0xa3, 0xd4, 0x30, 0xa8, 0xd0, 0xae, 0x4b, 0xd8, 0xb6, 0xdf, 0x75, 0x47, 0x66, 0xf4, 0x7c +.byte 0xe7, 0x39, 0x04, 0x1e, 0x6a, 0x70, 0x20, 0xd2, 0x5a, 0x47, 0x72, 0x67, 0x55, 0xf4, 0xa5, 0xe8 +.byte 0x9d, 0xd5, 0x1e, 0x21, 0xa1, 0xf0, 0x67, 0xba, 0xcc, 0x21, 0x68, 0xbe, 0x44, 0x53, 0xbf, 0x8d +.byte 0xf9, 0xe2, 0xdc, 0x2f, 0x55, 0xc8, 0x37, 0x3f, 0x1f, 0xa4, 0xc0, 0x9c, 0xb3, 0xe4, 0x77, 0x5c +.byte 0xa0, 0x46, 0xfe, 0x77, 0xfa, 0x1a, 0xa0, 0x38, 0xea, 0xed, 0x9a, 0x72, 0xde, 0x2b, 0xbd, 0x94 +.byte 0x57, 0x3a, 0xba, 0xec, 0x79, 0xe7, 0x5f, 0x7d, 0x42, 0x64, 0x39, 0x7a, 0x26, 0x36, 0xf7, 0x24 +.byte 0xf0, 0xd5, 0x2f, 0xba, 0x95, 0x98, 0x11, 0x66, 0xad, 0x97, 0x35, 0xd6, 0x75, 0x01, 0x80, 0xe0 +.byte 0xaf, 0xf4, 0x84, 0x61, 0x8c, 0x0d, 0x1e, 0x5f, 0x7c, 0x87, 0x96, 0x5e, 0x41, 0xaf, 0xeb, 0x87 +.byte 0xea, 0xf8, 0x5d, 0xf1, 0x2e, 0x88, 0x05, 0x3e, 0x4c, 0x22, 0xbb, 0xda, 0x1f, 0x2a, 0xdd, 0x52 +.byte 0x46, 0x64, 0x39, 0xf3, 0x42, 0xce, 0xd9, 0x9e, 0x0c, 0xb3, 0xb0, 0x77, 0x97, 0x64, 0x9c, 0xc0 +.byte 0xf4, 0xa3, 0x2e, 0x1f, 0x95, 0x07, 0xb0, 0x17, 0xdf, 0x30, 0xdb, 0x00, 0x18, 0x96, 0x4c, 0xa1 +.byte 0x81, 0x4b, 0xdd, 0x04, 0x6d, 0x53, 0xa3, 0x3d, 0xfc, 0x07, 0xac, 0xd4, 0xc5, 0x37, 0x82, 0xeb +.byte 0xe4, 0x95, 0x08, 0x19, 0x28, 0x82, 0xd2, 0x42, 0x3a, 0xa3, 0xd8, 0x53, 0xec, 0x79, 0x89, 0x60 +.byte 0x48, 0x60, 0xc8, 0x72, 0x92, 0x50, 0xdc, 0x03, 0x8f, 0x83, 0x3f, 0xb2, 0x42, 0x57, 0x5a, 0xdb +.byte 0x6a, 0xe9, 0x11, 0x97, 0xdd, 0x85, 0x28, 0xbc, 0x30, 0x4c, 0xab, 0xe3, 0xc2, 0xb1, 0x45, 0x44 +.byte 0x47, 0x1f, 0xe0, 0x8a, 0x16, 0x07, 0x96, 0xd2, 0x21, 0x0f, 0x53, 0xc0, 0xed, 0xa9, 0x7e, 0xd4 +.byte 0x4e, 0xec, 0x9b, 0x09, 0xec, 0xaf, 0x42, 0xac, 0x30, 0xd6, 0xbf, 0xd1, 0x10, 0x45, 0xe0, 0xa6 +.byte 0x16, 0xb2, 0xa5, 0xc5, 0xd3, 0x4f, 0x73, 0x94, 0x33, 0x71, 0x02, 0xa1, 0x6a, 0xa3, 0xd6, 0x33 +.byte 0x97, 0x4f, 0x21, 0x63, 0x1e, 0x5b, 0x8f, 0xd9, 0xc1, 0x5e, 0x45, 0x71, 0x77, 0x0f, 0x81, 0x5d +.byte 0x5f, 0x21, 0x9a, 0xad, 0x83, 0xcc, 0xfa, 0x5e, 0xd6, 0x8d, 0x23, 0x5f, 0x1b, 0x3d, 0x41, 0xaf +.byte 0x20, 0x75, 0x66, 0x5a, 0x4a, 0xf6, 0x9f, 0xfb, 0xab, 0x18, 0xf7, 0x71, 0xc0, 0xb6, 0x1d, 0x31 +.byte 0xec, 0x3b, 0x20, 0xeb, 0xcb, 0xe2, 0xb8, 0xf5, 0xae, 0x92, 0xb2, 0xf7, 0xe1, 0x84, 0x4b, 0xf2 +.byte 0xa2, 0xf2, 0x93, 0x9a, 0x22, 0x9e, 0xd3, 0x14, 0x6f, 0x36, 0x54, 0xbd, 0x1f, 0x5e, 0x59, 0x15 +.byte 0xb9, 0x73, 0xa8, 0xc1, 0x7c, 0x6f, 0x7b, 0x62, 0xe9, 0x16, 0x6c, 0x47, 0x5a, 0x65, 0xf3, 0x0e +.byte 0x11, 0x9b, 0x46, 0xd9, 0xfd, 0x6d, 0xdc, 0xd6, 0x9c, 0xc0, 0xb4, 0x7d, 0xa5, 0xb0, 0xdd, 0x3f +.byte 0x56, 0x6f, 0xa1, 0xf9, 0xf6, 0xe4, 0x12, 0x48, 0xfd, 0x06, 0x7f, 0x12, 0x57, 0xb6, 0xa9, 0x23 +.byte 0x4f, 0x5b, 0x03, 0xc3, 0xe0, 0x71, 0x2a, 0x23, 0xb7, 0xf7, 0xb0, 0xb1, 0x3b, 0xbc, 0x98, 0xbd +.byte 0xd6, 0x98, 0xa8, 0x0c, 0x6b, 0xf6, 0x8e, 0x12, 0x67, 0xa6, 0xf2, 0xb2, 0x58, 0xe4, 0x02, 0x09 +.byte 0x13, 0x3c, 0xa9, 0xbb, 0x10, 0xb4, 0xd2, 0x30, 0x45, 0xf1, 0xec, 0xf7, 0x00, 0x11, 0xdf, 0x65 +.byte 0xf8, 0xdc, 0x2b, 0x43, 0x55, 0xbf, 0x16, 0x97, 0xc4, 0x0f, 0xd5, 0x2c, 0x61, 0x84, 0xaa, 0x72 +.byte 0x86, 0xfe, 0xe6, 0x3a, 0x7e, 0xc2, 0x3f, 0x7d, 0xee, 0xfc, 0x2f, 0x14, 0x3e, 0xe6, 0x85, 0xdd +.byte 0x50, 0x6f, 0xb7, 0x49, 0xed, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x51, 0x02, 0x26, 0x30, 0x4f +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30 +.byte 0x27, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74 +.byte 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72 +.byte 0x63, 0x68, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x0c, 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 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 0xad, 0xe8, 0x24, 0x73, 0xf4, 0x14, 0x37, 0xf3, 0x9b, 0x9e, 0x2b, 0x57, 0x28, 0x1c, 0x87, 0xbe +.byte 0xdc, 0xb7, 0xdf, 0x38, 0x90, 0x8c, 0x6e, 0x3c, 0xe6, 0x57, 0xa0, 0x78, 0xf7, 0x75, 0xc2, 0xa2 +.byte 0xfe, 0xf5, 0x6a, 0x6e, 0xf6, 0x00, 0x4f, 0x28, 0xdb, 0xde, 0x68, 0x86, 0x6c, 0x44, 0x93, 0xb6 +.byte 0xb1, 0x63, 0xfd, 0x14, 0x12, 0x6b, 0xbf, 0x1f, 0xd2, 0xea, 0x31, 0x9b, 0x21, 0x7e, 0xd1, 0x33 +.byte 0x3c, 0xba, 0x48, 0xf5, 0xdd, 0x79, 0xdf, 0xb3, 0xb8, 0xff, 0x12, 0xf1, 0x21, 0x9a, 0x4b, 0xc1 +.byte 0x8a, 0x86, 0x71, 0x69, 0x4a, 0x66, 0x66, 0x6c, 0x8f, 0x7e, 0x3c, 0x70, 0xbf, 0xad, 0x29, 0x22 +.byte 0x06, 0xf3, 0xe4, 0xc0, 0xe6, 0x80, 0xae, 0xe2, 0x4b, 0x8f, 0xb7, 0x99, 0x7e, 0x94, 0x03, 0x9f +.byte 0xd3, 0x47, 0x97, 0x7c, 0x99, 0x48, 0x23, 0x53, 0xe8, 0x38, 0xae, 0x4f, 0x0a, 0x6f, 0x83, 0x2e +.byte 0xd1, 0x49, 0x57, 0x8c, 0x80, 0x74, 0xb6, 0xda, 0x2f, 0xd0, 0x38, 0x8d, 0x7b, 0x03, 0x70, 0x21 +.byte 0x1b, 0x75, 0xf2, 0x30, 0x3c, 0xfa, 0x8f, 0xae, 0xdd, 0xda, 0x63, 0xab, 0xeb, 0x16, 0x4f, 0xc2 +.byte 0x8e, 0x11, 0x4b, 0x7e, 0xcf, 0x0b, 0xe8, 0xff, 0xb5, 0x77, 0x2e, 0xf4, 0xb2, 0x7b, 0x4a, 0xe0 +.byte 0x4c, 0x12, 0x25, 0x0c, 0x70, 0x8d, 0x03, 0x29, 0xa0, 0xe1, 0x53, 0x24, 0xec, 0x13, 0xd9, 0xee +.byte 0x19, 0xbf, 0x10, 0xb3, 0x4a, 0x8c, 0x3f, 0x89, 0xa3, 0x61, 0x51, 0xde, 0xac, 0x87, 0x07, 0x94 +.byte 0xf4, 0x63, 0x71, 0xec, 0x2e, 0xe2, 0x6f, 0x5b, 0x98, 0x81, 0xe1, 0x89, 0x5c, 0x34, 0x79, 0x6c +.byte 0x76, 0xef, 0x3b, 0x90, 0x62, 0x79, 0xe6, 0xdb, 0xa4, 0x9a, 0x2f, 0x26, 0xc5, 0xd0, 0x10, 0xe1 +.byte 0x0e, 0xde, 0xd9, 0x10, 0x8e, 0x16, 0xfb, 0xb7, 0xf7, 0xa8, 0xf7, 0xc7, 0xe5, 0x02, 0x07, 0x98 +.byte 0x8f, 0x36, 0x08, 0x95, 0xe7, 0xe2, 0x37, 0x96, 0x0d, 0x36, 0x75, 0x9e, 0xfb, 0x0e, 0x72, 0xb1 +.byte 0x1d, 0x9b, 0xbc, 0x03, 0xf9, 0x49, 0x05, 0xd8, 0x81, 0xdd, 0x05, 0xb4, 0x2a, 0xd6, 0x41, 0xe9 +.byte 0xac, 0x01, 0x76, 0x95, 0x0a, 0x0f, 0xd8, 0xdf, 0xd5, 0xbd, 0x12, 0x1f, 0x35, 0x2f, 0x28, 0x17 +.byte 0x6c, 0xd2, 0x98, 0xc1, 0xa8, 0x09, 0x64, 0x77, 0x6e, 0x47, 0x37, 0xba, 0xce, 0xac, 0x59, 0x5e +.byte 0x68, 0x9d, 0x7f, 0x72, 0xd6, 0x89, 0xc5, 0x06, 0x41, 0x29, 0x3e, 0x59, 0x3e, 0xdd, 0x26, 0xf5 +.byte 0x24, 0xc9, 0x11, 0xa7, 0x5a, 0xa3, 0x4c, 0x40, 0x1f, 0x46, 0xa1, 0x99, 0xb5, 0xa7, 0x3a, 0x51 +.byte 0x6e, 0x86, 0x3b, 0x9e, 0x7d, 0x72, 0xa7, 0x12, 0x05, 0x78, 0x59, 0xed, 0x3e, 0x51, 0x78, 0x15 +.byte 0x0b, 0x03, 0x8f, 0x8d, 0xd0, 0x2f, 0x05, 0xb2, 0x3e, 0x7b, 0x4a, 0x1c, 0x4b, 0x73, 0x05, 0x12 +.byte 0xfc, 0xc6, 0xea, 0xe0, 0x50, 0x13, 0x7c, 0x43, 0x93, 0x74, 0xb3, 0xca, 0x74, 0xe7, 0x8e, 0x1f +.byte 0x01, 0x08, 0xd0, 0x30, 0xd4, 0x5b, 0x71, 0x36, 0xb4, 0x07, 0xba, 0xc1, 0x30, 0x30, 0x5c, 0x48 +.byte 0xb7, 0x82, 0x3b, 0x98, 0xa6, 0x7d, 0x60, 0x8a, 0xa2, 0xa3, 0x29, 0x82, 0xcc, 0xba, 0xbd, 0x83 +.byte 0x04, 0x1b, 0xa2, 0x83, 0x03, 0x41, 0xa1, 0xd6, 0x05, 0xf1, 0x1b, 0xc2, 0xb6, 0xf0, 0xa8, 0x7c +.byte 0x86, 0x3b, 0x46, 0xa8, 0x48, 0x2a, 0x88, 0xdc, 0x76, 0x9a, 0x76, 0xbf, 0x1f, 0x6a, 0xa5, 0x3d +.byte 0x19, 0x8f, 0xeb, 0x38, 0xf3, 0x64, 0xde, 0xc8, 0x2b, 0x0d, 0x0a, 0x28, 0xff, 0xf7, 0xdb, 0xe2 +.byte 0x15, 0x42, 0xd4, 0x22, 0xd0, 0x27, 0x5d, 0xe1, 0x79, 0xfe, 0x18, 0xe7, 0x70, 0x88, 0xad, 0x4e +.byte 0xe6, 0xd9, 0x8b, 0x3a, 0xc6, 0xdd, 0x27, 0x51, 0x6e, 0xff, 0xbc, 0x64, 0xf5, 0x33, 0x43, 0x4f +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x51, 0x00, 0x78, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x53, 0x65, 0x63, 0x75 +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x47, 0x72 +.byte 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0c, 0x49, 0x53 +.byte 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x32, 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, 0xcd, 0x9b, 0xd5, 0x9f, 0x80, 0x83, 0x0a, 0xec, 0x09, 0x4a, 0xf3, 0x16, 0x4a, 0x3e +.byte 0x5c, 0xcf, 0x77, 0xac, 0xde, 0x67, 0x05, 0x0d, 0x1d, 0x07, 0xb6, 0xdc, 0x16, 0xfb, 0x5a, 0x8b +.byte 0x14, 0xdb, 0xe2, 0x71, 0x60, 0xc4, 0xba, 0x45, 0x95, 0x11, 0x89, 0x8e, 0xea, 0x06, 0xdf, 0xf7 +.byte 0x2a, 0x16, 0x1c, 0xa4, 0xb9, 0xc5, 0xc5, 0x32, 0xe0, 0x03, 0xe0, 0x1e, 0x82, 0x18, 0x38, 0x8b +.byte 0xd7, 0x45, 0xd8, 0x0a, 0x6a, 0x6e, 0xe6, 0x00, 0x77, 0xfb, 0x02, 0x51, 0x7d, 0x22, 0xd8, 0x0a +.byte 0x6e, 0x9a, 0x5b, 0x77, 0xdf, 0xf0, 0xfa, 0x41, 0xec, 0x39, 0xdc, 0x75, 0xca, 0x68, 0x07, 0x0c +.byte 0x1f, 0xea, 0x00, 0x52, 0x01, 0x26, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c +.byte 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2a, 0x30, 0x28 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x21, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41, 0x20, 0x32 +.byte 0x20, 0x45, 0x56, 0x20, 0x32, 0x30, 0x30, 0x39, 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, 0x99, 0xf1, 0x84, 0x34, 0x70, 0xba, 0x2f +.byte 0xb7, 0x30, 0xa0, 0x8e, 0xbd, 0x7c, 0x04, 0xcf, 0xbe, 0x62, 0xbc, 0x99, 0xfd, 0x82, 0x97, 0xd2 +.byte 0x7a, 0x0a, 0x67, 0x96, 0x38, 0x09, 0xf6, 0x10, 0x4e, 0x95, 0x22, 0x73, 0x99, 0x8d, 0xda, 0x15 +.byte 0x2d, 0xe7, 0x05, 0xfc, 0x19, 0x73, 0x22, 0xb7, 0x8e, 0x98, 0x00, 0xbc, 0x3c, 0x3d, 0xac, 0xa1 +.byte 0x6c, 0xfb, 0xd6, 0x79, 0x25, 0x4b, 0xad, 0xf0, 0xcc, 0x64, 0xda, 0x88, 0x3e, 0x29, 0xb8, 0x0f +.byte 0x09, 0xd3, 0x34, 0xdd, 0x33, 0xf5, 0x62, 0xd1, 0xe1, 0xcd, 0x19, 0xe9, 0xee, 0x18, 0x4f, 0x4c +.byte 0x58, 0xae, 0xe2, 0x1e, 0xd6, 0x0c, 0x5b, 0x15, 0x5a, 0xd8, 0x3a, 0xb8, 0xc4, 0x18, 0x64, 0x1e +.byte 0xe3, 0x33, 0xb2, 0xb5, 0x89, 0x77, 0x4e, 0x0c, 0xbf, 0xd9, 0x94, 0x6b, 0x13, 0x97, 0x6f, 0x12 +.byte 0xa3, 0xfe, 0x99, 0xa9, 0x04, 0xcc, 0x15, 0xec, 0x60, 0x68, 0x36, 0xed, 0x08, 0x7b, 0xb7, 0xf5 +.byte 0xbf, 0x93, 0xed, 0x66, 0x31, 0x83, 0x8c, 0xc6, 0x71, 0x34, 0x87, 0x4e, 0x17, 0xea, 0xaf, 0x8b +.byte 0x91, 0x8d, 0x1c, 0x56, 0x41, 0xae, 0x22, 0x37, 0x5e, 0x37, 0xf2, 0x1d, 0xd9, 0xd1, 0x2d, 0x0d +.byte 0x2f, 0x69, 0x51, 0xa7, 0xbe, 0x66, 0xa6, 0x8a, 0x3a, 0x2a, 0xbd, 0xc7, 0x1a, 0xb1, 0xe1, 0x14 +.byte 0xf0, 0xbe, 0x3a, 0x1d, 0xb9, 0xcf, 0x5b, 0xb1, 0x6a, 0xfe, 0xb4, 0xb1, 0x46, 0x20, 0xa2, 0xfb +.byte 0x1e, 0x3b, 0x70, 0xef, 0x93, 0x98, 0x7d, 0x8c, 0x73, 0x96, 0xf2, 0xc5, 0xef, 0x85, 0x70, 0xad +.byte 0x29, 0x26, 0xfc, 0x1e, 0x04, 0x3e, 0x1c, 0xa0, 0xd8, 0x0f, 0xcb, 0x52, 0x83, 0x62, 0x7c, 0xee +.byte 0x8b, 0x53, 0x95, 0x90, 0xa9, 0x57, 0xa2, 0xea, 0x61, 0x05, 0xd8, 0xf9, 0x4d, 0xc4, 0x27, 0xfa +.byte 0x6e, 0xad, 0xed, 0xf9, 0xd7, 0x51, 0xf7, 0x6b, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x52 +.byte 0x01, 0x26, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a +.byte 0x50, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0f, 0x53, 0x45, 0x43, 0x4f +.byte 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43 +.byte 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x43, 0x41, 0x31, 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, 0xb3, 0xb3, 0xfe, 0x7f, 0xd3, 0x6d, 0xb1, 0xef, 0x16, 0x7c, 0x57 +.byte 0xa5, 0x0c, 0x6d, 0x76, 0x8a, 0x2f, 0x4b, 0xbf, 0x64, 0xfb, 0x4c, 0xee, 0x8a, 0xf0, 0xf3, 0x29 +.byte 0x7c, 0xf5, 0xff, 0xee, 0x2a, 0xe0, 0xe9, 0xe9, 0xba, 0x5b, 0x64, 0x22, 0x9a, 0x9a, 0x6f, 0x2c +.byte 0x3a, 0x26, 0x69, 0x51, 0x05, 0x99, 0x26, 0xdc, 0xd5, 0x1c, 0x6a, 0x71, 0xc6, 0x9a, 0x7d, 0x1e +.byte 0x9d, 0xdd, 0x7c, 0x6c, 0xc6, 0x8c, 0x67, 0x67, 0x4a, 0x3e, 0xf8, 0x71, 0xb0, 0x19, 0x27, 0xa9 +.byte 0x09, 0x0c, 0xa6, 0x95, 0xbf, 0x4b, 0x8c, 0x0c, 0xfa, 0x55, 0x98, 0x3b, 0xd8, 0xe8, 0x22, 0xa1 +.byte 0x4b, 0x71, 0x38, 0x79, 0xac, 0x97, 0x92, 0x69, 0xb3, 0x89, 0x7e, 0xea, 0x21, 0x68, 0x06, 0x98 +.byte 0x14, 0x96, 0x87, 0xd2, 0x61, 0x36, 0xbc, 0x6d, 0x27, 0x56, 0x9e, 0x57, 0xee, 0xc0, 0xc0, 0x56 +.byte 0xfd, 0x32, 0xcf, 0xa4, 0xd9, 0x8e, 0xc2, 0x23, 0xd7, 0x8d, 0xa8, 0xf3, 0xd8, 0x25, 0xac, 0x97 +.byte 0xe4, 0x70, 0x38, 0xf4, 0xb6, 0x3a, 0xb4, 0x9d, 0x3b, 0x97, 0x26, 0x43, 0xa3, 0xa1, 0xbc, 0x49 +.byte 0x59, 0x72, 0x4c, 0x23, 0x30, 0x87, 0x01, 0x58, 0xf6, 0x4e, 0xbe, 0x1c, 0x68, 0x56, 0x66, 0xaf +.byte 0xcd, 0x41, 0x5d, 0xc8, 0xb3, 0x4d, 0x2a, 0x55, 0x46, 0xab, 0x1f, 0xda, 0x1e, 0xe2, 0x40, 0x3d +.byte 0xdb, 0xcd, 0x7d, 0xb9, 0x92, 0x80, 0x9c, 0x37, 0xdd, 0x0c, 0x96, 0x64, 0x9d, 0xdc, 0x22, 0xf7 +.byte 0x64, 0x8b, 0xdf, 0x61, 0xde, 0x15, 0x94, 0x52, 0x15, 0xa0, 0x7d, 0x52, 0xc9, 0x4b, 0xa8, 0x21 +.byte 0xc9, 0xc6, 0xb1, 0xed, 0xcb, 0xc3, 0x95, 0x60, 0xd1, 0x0f, 0xf0, 0xab, 0x70, 0xf8, 0xdf, 0xcb +.byte 0x4d, 0x7e, 0xec, 0xd6, 0xfa, 0xab, 0xd9, 0xbd, 0x7f, 0x54, 0xf2, 0xa5, 0xe9, 0x79, 0xfa, 0xd9 +.byte 0xd6, 0x76, 0x24, 0x28, 0x73, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x52, 0x00, 0x5b, 0x30, 0x50 +.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x2d, 0x20, 0x52, 0x34, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e +.byte 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0xb8, 0xc6, 0x79, 0xd3, 0x8f +.byte 0x6c, 0x25, 0x0e, 0x9f, 0x2e, 0x39, 0x19, 0x1c, 0x03, 0xa4, 0xae, 0x9a, 0xe5, 0x39, 0x07, 0x09 +.byte 0x16, 0xca, 0x63, 0xb1, 0xb9, 0x86, 0xf8, 0x8a, 0x57, 0xc1, 0x57, 0xce, 0x42, 0xfa, 0x73, 0xa1 +.byte 0xf7, 0x65, 0x42, 0xff, 0x1e, 0xc1, 0x00, 0xb2, 0x6e, 0x73, 0x0e, 0xff, 0xc7, 0x21, 0xe5, 0x18 +.byte 0xa4, 0xaa, 0xd9, 0x71, 0x3f, 0xa8, 0xd4, 0xb9, 0xce, 0x8c, 0x1d, 0x00, 0x52, 0x00, 0x78, 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, 0x35, 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, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05 +.byte 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x47, 0x45, 0x0e, 0x96, 0xfb, 0x7d, 0x5d +.byte 0xbf, 0xe9, 0x39, 0xd1, 0x21, 0xf8, 0x9f, 0x0b, 0xb6, 0xd5, 0x7b, 0x1e, 0x92, 0x3a, 0x48, 0x59 +.byte 0x1c, 0xf0, 0x62, 0x31, 0x2d, 0xc0, 0x7a, 0x28, 0xfe, 0x1a, 0xa7, 0x5c, 0xb3, 0xb6, 0xcc, 0x97 +.byte 0xe7, 0x45, 0xd4, 0x58, 0xfa, 0xd1, 0x77, 0x6d, 0x43, 0xa2, 0xc0, 0x87, 0x65, 0x34, 0x0a, 0x1f +.byte 0x7a, 0xdd, 0xeb, 0x3c, 0x33, 0xa1, 0xc5, 0x9d, 0x4d, 0xa4, 0x6f, 0x41, 0x95, 0x38, 0x7f, 0xc9 +.byte 0x1e, 0x84, 0xeb, 0xd1, 0x9e, 0x49, 0x92, 0x87, 0x94, 0x87, 0x0c, 0x3a, 0x85, 0x4a, 0x66, 0x9f +.byte 0x9d, 0x59, 0x93, 0x4d, 0x97, 0x61, 0x06, 0x86, 0x4a, 0x00, 0x53, 0x02, 0x26, 0x30, 0x51, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x42, 0x30, 0x40 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64 +.byte 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f +.byte 0x6e, 0x20, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69, 0x6f, 0x6e +.byte 0x61, 0x6c, 0x20, 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34, 0x30, 0x36, 0x38 +.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, 0xca, 0x96, 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2, 0x35, 0xe0, 0x7f, 0x4c, 0xda, 0xe0 +.byte 0xc3, 0x52, 0xd7, 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3, 0x43, 0x2a, 0xc4, 0x4f, 0x6a, 0xb2 +.byte 0xca, 0x1c, 0x5d, 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59, 0x57, 0xaf, 0xb5, 0x20, 0x42, 0xe4 +.byte 0x8b, 0x0f, 0xe6, 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5, 0x11, 0xe4, 0x62, 0xd7, 0x32, 0x71 +.byte 0x38, 0xd9, 0x04, 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f, 0x07, 0xdf, 0x63, 0x05, 0x5c, 0xe9 +.byte 0xbf, 0x94, 0x6f, 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51, 0xb0, 0xc1, 0x3c, 0xbb, 0xad, 0x37 +.byte 0x4a, 0x5c, 0xca, 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf, 0xc3, 0x84, 0x77, 0xfd, 0xa8, 0x50 +.byte 0xf4, 0xb1, 0xe7, 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a, 0x0a, 0x4e, 0x96, 0x69, 0x52, 0x02 +.byte 0xaa, 0x36, 0x98, 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37, 0x1f, 0xc9, 0x92, 0x37, 0x7f, 0xd7 +.byte 0x81, 0x2d, 0xe5, 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67, 0xf4, 0x3e, 0x66, 0xd1, 0xd3, 0xf4 +.byte 0x40, 0xcf, 0x5e, 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20, 0x18, 0x5a, 0xce, 0xf7, 0x72, 0x1b +.byte 0x25, 0x6c, 0x93, 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e, 0xaa, 0x87, 0x10, 0x23, 0x59, 0x5f +.byte 0x20, 0x05, 0x19, 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca, 0x5d, 0xfc, 0xd6, 0x2b, 0xb2, 0x92 +.byte 0x3c, 0x20, 0xcf, 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76, 0x7f, 0x76, 0xe5, 0xec, 0x1a, 0x86 +.byte 0x61, 0x33, 0x3e, 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e, 0xa2, 0xb9, 0x6a, 0x6f, 0xb9, 0x87 +.byte 0x26, 0x6f, 0x41, 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63, 0x0b, 0xf5, 0x93, 0x16, 0x1b, 0x19 +.byte 0x8f, 0xb2, 0xed, 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c, 0xdf, 0x19, 0x3d, 0x0f, 0x3e, 0x38 +.byte 0x23, 0xc9, 0x2f, 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55, 0xd6, 0x4e, 0xd0, 0x8d, 0x3c, 0xaf +.byte 0x4f, 0xa4, 0xf3, 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79, 0x08, 0xa1, 0xcb, 0x57, 0x31, 0xb4 +.byte 0x9c, 0xc8, 0x90, 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a, 0xfc, 0x47, 0xd8, 0xd1, 0x78, 0x96 +.byte 0x31, 0x1f, 0xba, 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63, 0x89, 0x5a, 0x24, 0x20, 0x76, 0xd8 +.byte 0xdf, 0xfd, 0xab, 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6, 0x27, 0x8a, 0x7d, 0x68, 0x29, 0xa3 +.byte 0xe7, 0x8a, 0xb8, 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d, 0x13, 0x24, 0x46, 0xf7, 0xc5, 0xe2 +.byte 0xd8, 0x9f, 0x8e, 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2, 0xe8, 0x72, 0xf5, 0xac, 0xee, 0x24 +.byte 0x10, 0xad, 0x2f, 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71, 0x47, 0xbe, 0x42, 0xdf, 0xbb, 0x01 +.byte 0xdb, 0xf4, 0x7f, 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3, 0xc9, 0x02, 0xa6, 0xb4, 0x52, 0xca +.byte 0x6e, 0x97, 0xfb, 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4, 0xbb, 0xfd, 0x9f, 0x28, 0xaa, 0x0d +.byte 0xd5, 0x45, 0xf3, 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f, 0x41, 0x67, 0x3c, 0x1e, 0x94, 0x64 +.byte 0xae, 0x7b, 0x0b, 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a, 0x97, 0x86, 0x64, 0x41, 0xd5, 0x3b +.byte 0x87, 0x0c, 0x6e, 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf, 0x39, 0x4d, 0xd4, 0x9e, 0x41, 0xb6 +.byte 0x8f, 0x96, 0x1d, 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78, 0x31, 0x68, 0x9e, 0x37, 0x06, 0x3b +.byte 0x80, 0x89, 0x45, 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3, 0x15, 0xe5, 0x1c, 0xf8, 0x92, 0x30 +.byte 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x53, 0x02, 0x26, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x42, 0x30, 0x40, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x20, 0x46 +.byte 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20 +.byte 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34, 0x30, 0x36, 0x38, 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, 0xca, 0x96 +.byte 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2, 0x35, 0xe0, 0x7f, 0x4c, 0xda, 0xe0, 0xc3, 0x52, 0xd7 +.byte 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3, 0x43, 0x2a, 0xc4, 0x4f, 0x6a, 0xb2, 0xca, 0x1c, 0x5d +.byte 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59, 0x57, 0xaf, 0xb5, 0x20, 0x42, 0xe4, 0x8b, 0x0f, 0xe6 +.byte 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5, 0x11, 0xe4, 0x62, 0xd7, 0x32, 0x71, 0x38, 0xd9, 0x04 +.byte 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f, 0x07, 0xdf, 0x63, 0x05, 0x5c, 0xe9, 0xbf, 0x94, 0x6f +.byte 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51, 0xb0, 0xc1, 0x3c, 0xbb, 0xad, 0x37, 0x4a, 0x5c, 0xca +.byte 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf, 0xc3, 0x84, 0x77, 0xfd, 0xa8, 0x50, 0xf4, 0xb1, 0xe7 +.byte 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a, 0x0a, 0x4e, 0x96, 0x69, 0x52, 0x02, 0xaa, 0x36, 0x98 +.byte 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37, 0x1f, 0xc9, 0x92, 0x37, 0x7f, 0xd7, 0x81, 0x2d, 0xe5 +.byte 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67, 0xf4, 0x3e, 0x66, 0xd1, 0xd3, 0xf4, 0x40, 0xcf, 0x5e +.byte 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20, 0x18, 0x5a, 0xce, 0xf7, 0x72, 0x1b, 0x25, 0x6c, 0x93 +.byte 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e, 0xaa, 0x87, 0x10, 0x23, 0x59, 0x5f, 0x20, 0x05, 0x19 +.byte 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca, 0x5d, 0xfc, 0xd6, 0x2b, 0xb2, 0x92, 0x3c, 0x20, 0xcf +.byte 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76, 0x7f, 0x76, 0xe5, 0xec, 0x1a, 0x86, 0x61, 0x33, 0x3e +.byte 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e, 0xa2, 0xb9, 0x6a, 0x6f, 0xb9, 0x87, 0x26, 0x6f, 0x41 +.byte 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63, 0x0b, 0xf5, 0x93, 0x16, 0x1b, 0x19, 0x8f, 0xb2, 0xed +.byte 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c, 0xdf, 0x19, 0x3d, 0x0f, 0x3e, 0x38, 0x23, 0xc9, 0x2f +.byte 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55, 0xd6, 0x4e, 0xd0, 0x8d, 0x3c, 0xaf, 0x4f, 0xa4, 0xf3 +.byte 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79, 0x08, 0xa1, 0xcb, 0x57, 0x31, 0xb4, 0x9c, 0xc8, 0x90 +.byte 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a, 0xfc, 0x47, 0xd8, 0xd1, 0x78, 0x96, 0x31, 0x1f, 0xba +.byte 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63, 0x89, 0x5a, 0x24, 0x20, 0x76, 0xd8, 0xdf, 0xfd, 0xab +.byte 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6, 0x27, 0x8a, 0x7d, 0x68, 0x29, 0xa3, 0xe7, 0x8a, 0xb8 +.byte 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d, 0x13, 0x24, 0x46, 0xf7, 0xc5, 0xe2, 0xd8, 0x9f, 0x8e +.byte 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2, 0xe8, 0x72, 0xf5, 0xac, 0xee, 0x24, 0x10, 0xad, 0x2f +.byte 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71, 0x47, 0xbe, 0x42, 0xdf, 0xbb, 0x01, 0xdb, 0xf4, 0x7f +.byte 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3, 0xc9, 0x02, 0xa6, 0xb4, 0x52, 0xca, 0x6e, 0x97, 0xfb +.byte 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4, 0xbb, 0xfd, 0x9f, 0x28, 0xaa, 0x0d, 0xd5, 0x45, 0xf3 +.byte 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f, 0x41, 0x67, 0x3c, 0x1e, 0x94, 0x64, 0xae, 0x7b, 0x0b +.byte 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a, 0x97, 0x86, 0x64, 0x41, 0xd5, 0x3b, 0x87, 0x0c, 0x6e +.byte 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf, 0x39, 0x4d, 0xd4, 0x9e, 0x41, 0xb6, 0x8f, 0x96, 0x1d +.byte 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78, 0x31, 0x68, 0x9e, 0x37, 0x06, 0x3b, 0x80, 0x89, 0x45 +.byte 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3, 0x15, 0xe5, 0x1c, 0xf8, 0x92, 0x30, 0xbb, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x53, 0x01, 0x26, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x1f, 0x4b, 0x72, 0x61, 0x6a, 0x6f, 0x77, 0x61, 0x20, 0x49, 0x7a, 0x62, 0x61, 0x20, 0x52, 0x6f +.byte 0x7a, 0x6c, 0x69, 0x63, 0x7a, 0x65, 0x6e, 0x69, 0x6f, 0x77, 0x61, 0x20, 0x53, 0x2e, 0x41, 0x2e +.byte 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0f, 0x53, 0x5a, 0x41, 0x46, 0x49 +.byte 0x52, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x32, 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, 0xb7, 0xbc, 0x3e, 0x50, 0xa8 +.byte 0x4b, 0xcd, 0x40, 0xb5, 0xce, 0x61, 0xe7, 0x96, 0xca, 0xb4, 0xa1, 0xda, 0x0c, 0x22, 0xb0, 0xfa +.byte 0xb5, 0x7b, 0x76, 0x00, 0x77, 0x8c, 0x0b, 0xcf, 0x7d, 0xa8, 0x86, 0xcc, 0x26, 0x51, 0xe4, 0x20 +.byte 0x3d, 0x85, 0x0c, 0xd6, 0x58, 0xe3, 0xe7, 0xf4, 0x2a, 0x18, 0x9d, 0xda, 0xd1, 0xae, 0x26, 0xee +.byte 0xeb, 0x53, 0xdc, 0xf4, 0x90, 0xd6, 0x13, 0x4a, 0x0c, 0x90, 0x3c, 0xc3, 0xf4, 0xda, 0xd2, 0x8e +.byte 0x0d, 0x92, 0x3a, 0xdc, 0xb1, 0xb1, 0xff, 0x38, 0xde, 0xc3, 0xba, 0x2d, 0x5f, 0x80, 0xb9, 0x02 +.byte 0xbd, 0x4a, 0x9d, 0x1b, 0x0f, 0xb4, 0xc3, 0xc2, 0xc1, 0x67, 0x03, 0xdd, 0xdc, 0x1b, 0x9c, 0x3d +.byte 0xb3, 0xb0, 0xde, 0x00, 0x1e, 0xa8, 0x34, 0x47, 0xbb, 0x9a, 0xeb, 0xfe, 0x0b, 0x14, 0xbd, 0x36 +.byte 0x84, 0xda, 0x0d, 0x20, 0xbf, 0xfa, 0x5b, 0xcb, 0xa9, 0x16, 0x20, 0xad, 0x39, 0x60, 0xee, 0x2f +.byte 0x75, 0xb6, 0xe7, 0x97, 0x9c, 0xf9, 0x3e, 0xfd, 0x7e, 0x4d, 0x6f, 0x4d, 0x2f, 0xef, 0x88, 0x0d +.byte 0x6a, 0xfa, 0xdd, 0xf1, 0x3d, 0x6e, 0x20, 0xa5, 0xa0, 0x12, 0xb4, 0x4d, 0x70, 0xb9, 0xce, 0xd7 +.byte 0x72, 0x3b, 0x89, 0x93, 0xa7, 0x80, 0x84, 0x1c, 0x27, 0x49, 0x72, 0x49, 0xb5, 0xff, 0x3b, 0x95 +.byte 0x9e, 0xc1, 0xcc, 0xc8, 0x01, 0xec, 0xe8, 0x0e, 0x8a, 0x0a, 0x96, 0xe7, 0xb3, 0xa6, 0x87, 0xe5 +.byte 0xd6, 0xf9, 0x05, 0x2b, 0x0d, 0x97, 0x40, 0x70, 0x3c, 0xba, 0xac, 0x75, 0x5a, 0x9c, 0xd5, 0x4d +.byte 0x9d, 0x02, 0x0a, 0xd2, 0x4b, 0x9b, 0x66, 0x4b, 0x46, 0x07, 0x17, 0x65, 0xad, 0x9f, 0x6c, 0x88 +.byte 0x00, 0xdc, 0x22, 0x89, 0xe0, 0xe1, 0x64, 0xd4, 0x67, 0xbc, 0x31, 0x79, 0x61, 0x3c, 0xbb, 0xca +.byte 0x41, 0xcd, 0x5c, 0x6a, 0x00, 0xc8, 0x3c, 0x38, 0x8e, 0x58, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x53, 0x02, 0x26, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x54, 0x41 +.byte 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x13, 0x54, 0x57, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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, 0xb0, 0x05, 0xdb, 0xc8, 0xeb, 0x8c, 0xc4, 0x6e +.byte 0x8a, 0x21, 0xef, 0x8e, 0x4d, 0x9c, 0x71, 0x0a, 0x1f, 0x52, 0x70, 0xed, 0x6d, 0x82, 0x9c, 0x97 +.byte 0xc5, 0xd7, 0x4c, 0x4e, 0x45, 0x49, 0xcb, 0x40, 0x42, 0xb5, 0x12, 0x34, 0x6c, 0x19, 0xc2, 0x74 +.byte 0xa4, 0x31, 0x5f, 0x85, 0x02, 0x97, 0xec, 0x43, 0x33, 0x0a, 0x53, 0xd2, 0x9c, 0x8c, 0x8e, 0xb7 +.byte 0xb8, 0x79, 0xdb, 0x2b, 0xd5, 0x6a, 0xf2, 0x8e, 0x66, 0xc4, 0xee, 0x2b, 0x01, 0x07, 0x92, 0xd4 +.byte 0xb3, 0xd0, 0x02, 0xdf, 0x50, 0xf6, 0x55, 0xaf, 0x66, 0x0e, 0xcb, 0xe0, 0x47, 0x60, 0x2f, 0x2b +.byte 0x32, 0x39, 0x35, 0x52, 0x3a, 0x28, 0x83, 0xf8, 0x7b, 0x16, 0xc6, 0x18, 0xb8, 0x62, 0xd6, 0x47 +.byte 0x25, 0x91, 0xce, 0xf0, 0x19, 0x12, 0x4d, 0xad, 0x63, 0xf5, 0xd3, 0x3f, 0x75, 0x5f, 0x29, 0xf0 +.byte 0xa1, 0x30, 0x1c, 0x2a, 0xa0, 0x98, 0xa6, 0x15, 0xbd, 0xee, 0xfd, 0x19, 0x36, 0xf0, 0xe2, 0x91 +.byte 0x43, 0x8f, 0xfa, 0xca, 0xd6, 0x10, 0x27, 0x49, 0x4c, 0xef, 0xdd, 0xc1, 0xf1, 0x85, 0x70, 0x9b +.byte 0xca, 0xea, 0xa8, 0x5a, 0x43, 0xfc, 0x6d, 0x86, 0x6f, 0x73, 0xe9, 0x37, 0x45, 0xa9, 0xf0, 0x36 +.byte 0xc7, 0xcc, 0x88, 0x75, 0x1e, 0xbb, 0x6c, 0x06, 0xff, 0x9b, 0x6b, 0x3e, 0x17, 0xec, 0x61, 0xaa +.byte 0x71, 0x7c, 0xc6, 0x1d, 0xa2, 0xf7, 0x49, 0xe9, 0x15, 0xb5, 0x3c, 0xd6, 0xa1, 0x61, 0xf5, 0x11 +.byte 0xf7, 0x05, 0x6f, 0x1d, 0xfd, 0x11, 0xbe, 0xd0, 0x30, 0x07, 0xc2, 0x29, 0xb0, 0x09, 0x4e, 0x26 +.byte 0xdc, 0xe3, 0xa2, 0xa8, 0x91, 0x6a, 0x1f, 0xc2, 0x91, 0x45, 0x88, 0x5c, 0xe5, 0x98, 0xb8, 0x71 +.byte 0xa5, 0x15, 0x19, 0xc9, 0x7c, 0x75, 0x11, 0xcc, 0x70, 0x74, 0x4f, 0x2d, 0x9b, 0x1d, 0x91, 0x44 +.byte 0xfd, 0x56, 0x28, 0xa0, 0xfe, 0xbb, 0x86, 0x6a, 0xc8, 0xfa, 0x5c, 0x0b, 0x58, 0xdc, 0xc6, 0x4b +.byte 0x76, 0xc8, 0xab, 0x22, 0xd9, 0x73, 0x0f, 0xa5, 0xf4, 0x5a, 0x02, 0x89, 0x3f, 0x4f, 0x9e, 0x22 +.byte 0x82, 0xee, 0xa2, 0x74, 0x53, 0x2a, 0x3d, 0x53, 0x27, 0x69, 0x1d, 0x6c, 0x8e, 0x32, 0x2c, 0x64 +.byte 0x00, 0x26, 0x63, 0x61, 0x36, 0x4e, 0xa3, 0x46, 0xb7, 0x3f, 0x7d, 0xb3, 0x2d, 0xac, 0x6d, 0x90 +.byte 0xa2, 0x95, 0xa2, 0xce, 0xcf, 0xda, 0x82, 0xe7, 0x07, 0x34, 0x19, 0x96, 0xe9, 0xb8, 0x21, 0xaa +.byte 0x29, 0x7e, 0xa6, 0x38, 0xbe, 0x8e, 0x29, 0x4a, 0x21, 0x66, 0x79, 0x1f, 0xb3, 0xc3, 0xb5, 0x09 +.byte 0x67, 0xde, 0xd6, 0xd4, 0x07, 0x46, 0xf3, 0x2a, 0xda, 0xe6, 0x22, 0x37, 0x60, 0xcb, 0x81, 0xb6 +.byte 0x0f, 0xa0, 0x0f, 0xe9, 0xc8, 0x95, 0x7f, 0xbf, 0x55, 0x91, 0x05, 0x7a, 0xcf, 0x3d, 0x15, 0xc0 +.byte 0x6f, 0xde, 0x09, 0x94, 0x01, 0x83, 0xd7, 0x34, 0x1b, 0xcc, 0x40, 0xa5, 0xf0, 0xb8, 0x9b, 0x67 +.byte 0xd5, 0x98, 0x91, 0x3b, 0xa7, 0x84, 0x78, 0x95, 0x26, 0xa4, 0x5a, 0x08, 0xf8, 0x2b, 0x74, 0xb4 +.byte 0x00, 0x04, 0x3c, 0xdf, 0xb8, 0x14, 0x8e, 0xe8, 0xdf, 0xa9, 0x8d, 0x6c, 0x67, 0x92, 0x33, 0x1d +.byte 0xc0, 0xb7, 0xd2, 0xec, 0x92, 0xc8, 0xbe, 0x09, 0xbf, 0x2c, 0x29, 0x05, 0x6f, 0x02, 0x6b, 0x9e +.byte 0xef, 0xbc, 0xbf, 0x2a, 0xbc, 0x5b, 0xc0, 0x50, 0x8f, 0x41, 0x70, 0x71, 0x87, 0xb2, 0x4d, 0xb7 +.byte 0x04, 0xa9, 0x84, 0xa3, 0x32, 0xaf, 0xae, 0xee, 0x6b, 0x17, 0x8b, 0xb2, 0xb1, 0xfe, 0x6c, 0xe1 +.byte 0x90, 0x8c, 0x88, 0xa8, 0x97, 0x48, 0xce, 0xc8, 0x4d, 0xcb, 0xf3, 0x06, 0xcf, 0x5f, 0x6a, 0x0a +.byte 0x42, 0xb1, 0x1e, 0x1e, 0x77, 0x2f, 0x8e, 0xa0, 0xe6, 0x92, 0x0e, 0x06, 0xfc, 0x05, 0x22, 0xd2 +.byte 0x26, 0xe1, 0x31, 0x51, 0x7d, 0x32, 0xdc, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x54, 0x02 +.byte 0x26, 0x30, 0x52, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x53, 0x4b +.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x42, 0x72, 0x61, 0x74, 0x69 +.byte 0x73, 0x6c, 0x61, 0x76, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a +.byte 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x61, 0x2e, 0x73, 0x2e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x10, 0x43, 0x41, 0x20, 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x52, 0x32, 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, 0xa2, 0xa3, 0xc4, 0x00, 0x09, 0xd6, 0x85, 0x5d, 0x2d, 0x6d +.byte 0x14, 0xf6, 0xc2, 0xc3, 0x73, 0x9e, 0x35, 0xc2, 0x71, 0x55, 0x7e, 0x81, 0xfb, 0xab, 0x46, 0x50 +.byte 0xe0, 0xc1, 0x7c, 0x49, 0x78, 0xe6, 0xab, 0x79, 0x58, 0x3c, 0xda, 0xff, 0x7c, 0x1c, 0x9f, 0xd8 +.byte 0x97, 0x02, 0x78, 0x3e, 0x6b, 0x41, 0x04, 0xe9, 0x41, 0xbd, 0xbe, 0x03, 0x2c, 0x45, 0xf6, 0x2f +.byte 0x64, 0xd4, 0xab, 0x5d, 0xa3, 0x47, 0x3d, 0x64, 0x9b, 0xe9, 0x68, 0x9a, 0xc6, 0xcc, 0x1b, 0x3f +.byte 0xba, 0xbe, 0xb2, 0x8b, 0x34, 0x02, 0x2e, 0x98, 0x55, 0x19, 0xfc, 0x8c, 0x6f, 0xaa, 0x5f, 0xda +.byte 0x4c, 0xce, 0x4d, 0x03, 0x21, 0xa3, 0xd8, 0xd2, 0x34, 0x93, 0x56, 0x96, 0xcb, 0x4c, 0x0c, 0x00 +.byte 0x16, 0x3c, 0x5f, 0x1a, 0xcd, 0xc8, 0xc7, 0x6c, 0xa6, 0xad, 0xd3, 0x31, 0xa7, 0xbc, 0xe8, 0xe5 +.byte 0xe1, 0x66, 0xd6, 0xd2, 0xfb, 0x03, 0xb4, 0x41, 0x65, 0xc9, 0x10, 0xae, 0x0e, 0x05, 0x63, 0xc6 +.byte 0x80, 0x6a, 0x69, 0x30, 0xfd, 0xd2, 0xee, 0x90, 0xef, 0x0d, 0x27, 0xdf, 0x9f, 0x95, 0x73, 0xf4 +.byte 0xe1, 0x25, 0xda, 0x6c, 0x16, 0xde, 0x41, 0x38, 0x34, 0xea, 0x8b, 0xfc, 0xd1, 0xe8, 0x04, 0x14 +.byte 0x61, 0x2d, 0x41, 0x7e, 0xac, 0xc7, 0x77, 0x4e, 0xcb, 0x51, 0x54, 0xfb, 0x5e, 0x92, 0x18, 0x1b +.byte 0x04, 0x5a, 0x68, 0xc6, 0xc9, 0xc4, 0xfa, 0xb7, 0x13, 0xa0, 0x98, 0xb7, 0x11, 0x2b, 0xb7, 0xd6 +.byte 0x57, 0xcc, 0x7c, 0x9e, 0x17, 0xd1, 0xcb, 0x25, 0xfe, 0x86, 0x4e, 0x24, 0x2e, 0x56, 0x0c, 0x78 +.byte 0x4d, 0x9e, 0x01, 0x12, 0xa6, 0x2b, 0xa7, 0x01, 0x65, 0x6e, 0x7c, 0x62, 0x1d, 0x84, 0x84, 0xdf +.byte 0xea, 0xc0, 0x6b, 0xb5, 0xa5, 0x2a, 0x95, 0x83, 0xc3, 0x53, 0x11, 0x0c, 0x73, 0x1d, 0x0b, 0xb2 +.byte 0x46, 0x90, 0xd1, 0x42, 0x3a, 0xce, 0x40, 0x6e, 0x95, 0xad, 0xff, 0xc6, 0x94, 0xad, 0x6e, 0x97 +.byte 0x84, 0x8e, 0x7d, 0x6f, 0x9e, 0x8a, 0x80, 0x0d, 0x49, 0x6d, 0x73, 0xe2, 0x7b, 0x92, 0x1e, 0xc3 +.byte 0xf3, 0xc1, 0xf3, 0xeb, 0x2e, 0x05, 0x6f, 0xd9, 0x1b, 0xcf, 0x37, 0x76, 0x04, 0xc8, 0xb4, 0x5a +.byte 0xe4, 0x17, 0xa7, 0xcb, 0xdd, 0x76, 0x1f, 0xd0, 0x19, 0x76, 0xe8, 0x2c, 0x05, 0xb3, 0xd6, 0x9c +.byte 0x34, 0xd8, 0x96, 0xdc, 0x61, 0x87, 0x91, 0x05, 0xe4, 0x44, 0x08, 0x33, 0xc1, 0xda, 0xb9, 0x08 +.byte 0x65, 0xd4, 0xae, 0xb2, 0x36, 0x0d, 0xeb, 0xba, 0x38, 0xba, 0x0c, 0xe5, 0x9b, 0x9e, 0xeb, 0x8d +.byte 0x66, 0xdd, 0x99, 0xcf, 0xd6, 0x89, 0x41, 0xf6, 0x04, 0x92, 0x8a, 0x29, 0x29, 0x6d, 0x6b, 0x3a +.byte 0x1c, 0xe7, 0x75, 0x7d, 0x02, 0x71, 0x0e, 0xf3, 0xc0, 0xe7, 0xbd, 0xcb, 0x19, 0xdd, 0x9d, 0x60 +.byte 0xb2, 0xc2, 0x66, 0x60, 0xb6, 0xb1, 0x04, 0xee, 0xc9, 0xe6, 0x86, 0xb9, 0x9a, 0x66, 0x40, 0xa8 +.byte 0xe7, 0x11, 0xed, 0x81, 0x45, 0x03, 0x8b, 0xf6, 0x67, 0x59, 0xe8, 0xc1, 0x06, 0x11, 0xbd, 0xdd +.byte 0xcf, 0x80, 0x02, 0x4f, 0x65, 0x40, 0x78, 0x5c, 0x47, 0x50, 0xc8, 0x9b, 0xe6, 0x1f, 0x81, 0x7b +.byte 0xe4, 0x44, 0xa8, 0x5b, 0x85, 0x9a, 0xe2, 0xde, 0x5a, 0xd5, 0xc7, 0xf9, 0x3a, 0x44, 0x66, 0x4b +.byte 0xe4, 0x32, 0x54, 0x7c, 0xe4, 0x6c, 0x9c, 0xb3, 0x0e, 0x3d, 0x17, 0xa2, 0xb2, 0x34, 0x12, 0xd6 +.byte 0x7e, 0xb2, 0xa8, 0x49, 0xbb, 0xd1, 0x7a, 0x28, 0x40, 0xbe, 0xa2, 0x16, 0x1f, 0xdf, 0xe4, 0x37 +.byte 0x1f, 0x11, 0x73, 0xfb, 0x90, 0x0a, 0x65, 0x43, 0xa2, 0x0d, 0x7c, 0xf8, 0x06, 0x01, 0x55, 0x33 +.byte 0x7d, 0xb0, 0x0d, 0xb8, 0xf4, 0xf5, 0xae, 0xa5, 0x42, 0x57, 0x7c, 0x36, 0x11, 0x8c, 0x7b, 0x5e +.byte 0xc4, 0x03, 0x9d, 0x8c, 0x79, 0x9d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x58, 0x02, 0x26, 0x30 +.byte 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x30 +.byte 0x30, 0x2e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x27, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x46 +.byte 0x69, 0x6e, 0x61, 0x6e, 0x63, 0x69, 0x61, 0x6c, 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, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0c, 0x43, 0x46, 0x43, 0x41, 0x20 +.byte 0x45, 0x56, 0x20, 0x52, 0x4f, 0x4f, 0x54, 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, 0xd7, 0x5d, 0x6b, 0xcd, 0x10, 0x3f, 0x1f, 0x05 +.byte 0x59, 0xd5, 0x05, 0x4d, 0x37, 0xb1, 0x0e, 0xec, 0x98, 0x2b, 0x8e, 0x15, 0x1d, 0xfa, 0x93, 0x4b +.byte 0x17, 0x82, 0x21, 0x71, 0x10, 0x52, 0xd7, 0x51, 0x64, 0x70, 0x16, 0xc2, 0x55, 0x69, 0x4d, 0x8e +.byte 0x15, 0x6d, 0x9f, 0xbf, 0x0c, 0x1b, 0xc2, 0xe0, 0xa3, 0x67, 0xd6, 0x0c, 0xac, 0xcf, 0x22, 0xae +.byte 0xaf, 0x77, 0x54, 0x2a, 0x4b, 0x4c, 0x8a, 0x53, 0x52, 0x7a, 0xc3, 0xee, 0x2e, 0xde, 0xb3, 0x71 +.byte 0x25, 0xc1, 0xe9, 0x5d, 0x3d, 0xee, 0xa1, 0x2f, 0xa3, 0xf7, 0x2a, 0x3c, 0xc9, 0x23, 0x1d, 0x6a +.byte 0xab, 0x1d, 0xa1, 0xa7, 0xf1, 0xf3, 0xec, 0xa0, 0xd5, 0x44, 0xcf, 0x15, 0xcf, 0x72, 0x2f, 0x1d +.byte 0x63, 0x97, 0xe8, 0x99, 0xf9, 0xfd, 0x93, 0xa4, 0x54, 0x80, 0x4c, 0x52, 0xd4, 0x52, 0xab, 0x2e +.byte 0x49, 0xdf, 0x90, 0xcd, 0xb8, 0x5f, 0xbe, 0x3f, 0xde, 0xa1, 0xca, 0x4d, 0x20, 0xd4, 0x25, 0xe8 +.byte 0x84, 0x29, 0x53, 0xb7, 0xb1, 0x88, 0x1f, 0xff, 0xfa, 0xda, 0x90, 0x9f, 0x0a, 0xa9, 0x2d, 0x41 +.byte 0x3f, 0xb1, 0xf1, 0x18, 0x29, 0xee, 0x16, 0x59, 0x2c, 0x34, 0x49, 0x1a, 0xa8, 0x06, 0xd7, 0xa8 +.byte 0x88, 0xd2, 0x03, 0x72, 0x7a, 0x32, 0xe2, 0xea, 0x68, 0x4d, 0x6e, 0x2c, 0x96, 0x65, 0x7b, 0xca +.byte 0x59, 0xfa, 0xf2, 0xe2, 0xdd, 0xee, 0x30, 0x2c, 0xfb, 0xcc, 0x46, 0xac, 0xc4, 0x63, 0xeb, 0x6f +.byte 0x7f, 0x36, 0x2b, 0x34, 0x73, 0x12, 0x94, 0x7f, 0xdf, 0xcc, 0x26, 0x9e, 0xf1, 0x72, 0x5d, 0x50 +.byte 0x65, 0x59, 0x8f, 0x69, 0xb3, 0x87, 0x5e, 0x32, 0x6f, 0xc3, 0x18, 0x8a, 0xb5, 0x95, 0x8f, 0xb0 +.byte 0x7a, 0x37, 0xde, 0x5a, 0x45, 0x3b, 0xc7, 0x36, 0xe1, 0xef, 0x67, 0xd1, 0x39, 0xd3, 0x97, 0x5b +.byte 0x73, 0x62, 0x19, 0x48, 0x2d, 0x87, 0x1c, 0x06, 0xfb, 0x74, 0x98, 0x20, 0x49, 0x73, 0xf0, 0x05 +.byte 0xd2, 0x1b, 0xb1, 0xa0, 0xa3, 0xb7, 0x1b, 0x70, 0xd3, 0x88, 0x69, 0xb9, 0x5a, 0xd6, 0x38, 0xf4 +.byte 0x62, 0xdc, 0x25, 0x8b, 0x78, 0xbf, 0xf8, 0xe8, 0x7e, 0xb8, 0x5c, 0xc9, 0x95, 0x4f, 0x5f, 0xa7 +.byte 0x2d, 0xb9, 0x20, 0x6b, 0xcf, 0x6b, 0xdd, 0xf5, 0x0d, 0xf4, 0x82, 0xb7, 0xf4, 0xb2, 0x66, 0x2e +.byte 0x10, 0x28, 0xf6, 0x97, 0x5a, 0x7b, 0x96, 0x16, 0x8f, 0x01, 0x19, 0x2d, 0x6c, 0x6e, 0x7f, 0x39 +.byte 0x58, 0x06, 0x64, 0x83, 0x01, 0x83, 0x83, 0xc3, 0x4d, 0x92, 0xdd, 0x32, 0xc6, 0x87, 0xa4, 0x37 +.byte 0xe9, 0x16, 0xce, 0xaa, 0x2d, 0x68, 0xaf, 0x0a, 0x81, 0x65, 0x3a, 0x70, 0xc1, 0x9b, 0xad, 0x4d +.byte 0x6d, 0x54, 0xca, 0x2a, 0x2d, 0x4b, 0x85, 0x1b, 0xb3, 0x80, 0xe6, 0x70, 0x45, 0x0d, 0x6b, 0x5e +.byte 0x35, 0xf0, 0x7f, 0x3b, 0xb8, 0x9c, 0xe4, 0x04, 0x70, 0x89, 0x12, 0x25, 0x93, 0xda, 0x0a, 0x99 +.byte 0x22, 0x60, 0x6a, 0x63, 0x60, 0x4e, 0x76, 0x06, 0x98, 0x4e, 0xbd, 0x83, 0xad, 0x1d, 0x58, 0x8a +.byte 0x25, 0x85, 0xd2, 0xc7, 0x65, 0x1e, 0x2d, 0x8e, 0xc6, 0xdf, 0xb6, 0xc6, 0xe1, 0x7f, 0x8a, 0x04 +.byte 0x21, 0x15, 0x29, 0x74, 0xf0, 0x3e, 0x9c, 0x90, 0x9d, 0x0c, 0x2e, 0xf1, 0x8a, 0x3e, 0x5a, 0xaa +.byte 0x0c, 0x09, 0x1e, 0xc7, 0xd5, 0x3c, 0xa3, 0xed, 0x97, 0xc3, 0x1e, 0x34, 0xfa, 0x38, 0xf9, 0x08 +.byte 0x0e, 0xe3, 0xc0, 0x5d, 0x2b, 0x83, 0xd1, 0x56, 0x6a, 0xc9, 0xb6, 0xa8, 0x54, 0x53, 0x2e, 0x78 +.byte 0x32, 0x67, 0x3d, 0x82, 0x7f, 0x74, 0xd0, 0xfb, 0xe1, 0xb6, 0x05, 0x60, 0xb9, 0x70, 0xdb, 0x8e +.byte 0x0b, 0xf9, 0x13, 0x58, 0x6f, 0x71, 0x60, 0x10, 0x52, 0x10, 0xb9, 0xc1, 0x41, 0x09, 0xef, 0x72 +.byte 0x1f, 0x67, 0x31, 0x78, 0xff, 0x96, 0x05, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x58, 0x01 +.byte 0x26, 0x30, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b +.byte 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x1c, 0x30, 0x1a, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 0x31, 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, 0xcf, 0xeb, 0xa9, 0xb9, 0xf1, 0x99 +.byte 0x05, 0xcc, 0xd8, 0x28, 0x21, 0x4a, 0xf3, 0x73, 0x34, 0x51, 0x84, 0x56, 0x10, 0xf5, 0xa0, 0x4f +.byte 0x2c, 0x12, 0xe3, 0xfa, 0x13, 0x9a, 0x27, 0xd0, 0xcf, 0xf9, 0x79, 0x1a, 0x74, 0x5f, 0x1d, 0x79 +.byte 0x39, 0xfc, 0x5b, 0xf8, 0x70, 0x8e, 0xe0, 0x92, 0x52, 0xf7, 0xe4, 0x25, 0xf9, 0x54, 0x83, 0xd9 +.byte 0x1d, 0xd3, 0xc8, 0x5a, 0x85, 0x3f, 0x5e, 0xc7, 0xb6, 0x07, 0xee, 0x3e, 0xc0, 0xce, 0x9a, 0xaf +.byte 0xac, 0x56, 0x42, 0x2a, 0x39, 0x25, 0x70, 0xd6, 0xbf, 0xb5, 0x7b, 0x36, 0xad, 0xac, 0xf6, 0x73 +.byte 0xdc, 0xcd, 0xd7, 0x1d, 0x8a, 0x83, 0xa5, 0xfb, 0x2b, 0x90, 0x15, 0x37, 0x6b, 0x1c, 0x26, 0x47 +.byte 0xdc, 0x3b, 0x29, 0x56, 0x93, 0x6a, 0xb3, 0xc1, 0x6a, 0x3a, 0x9d, 0x3d, 0xf5, 0xc1, 0x97, 0x38 +.byte 0x58, 0x05, 0x8b, 0x1c, 0x11, 0xe3, 0xe4, 0xb4, 0xb8, 0x5d, 0x85, 0x1d, 0x83, 0xfe, 0x78, 0x5f +.byte 0x0b, 0x45, 0x68, 0x18, 0x48, 0xa5, 0x46, 0x73, 0x34, 0x3b, 0xfe, 0x0f, 0xc8, 0x76, 0xbb, 0xc7 +.byte 0x18, 0xf3, 0x05, 0xd1, 0x86, 0xf3, 0x85, 0xed, 0xe7, 0xb9, 0xd9, 0x32, 0xad, 0x55, 0x88, 0xce +.byte 0xa6, 0xb6, 0x91, 0xb0, 0x4f, 0xac, 0x7e, 0x15, 0x23, 0x96, 0xf6, 0x3f, 0xf0, 0x20, 0x34, 0x16 +.byte 0xde, 0x0a, 0xc6, 0xc4, 0x04, 0x45, 0x79, 0x7f, 0xa7, 0xfd, 0xbe, 0xd2, 0xa9, 0xa5, 0xaf, 0x9c +.byte 0xc5, 0x23, 0x2a, 0xf7, 0x3c, 0x21, 0x6c, 0xbd, 0xaf, 0x8f, 0x4e, 0xc5, 0x3a, 0xb2, 0xf3, 0x34 +.byte 0x12, 0xfc, 0xdf, 0x80, 0x1a, 0x49, 0xa4, 0xd4, 0xa9, 0x95, 0xf7, 0x9e, 0x89, 0x5e, 0xa2, 0x89 +.byte 0xac, 0x94, 0xcb, 0xa8, 0x68, 0x9b, 0xaf, 0x8a, 0x65, 0x27, 0xcd, 0x89, 0xee, 0xdd, 0x8c, 0xb5 +.byte 0x6b, 0x29, 0x70, 0x43, 0xa0, 0x69, 0x0b, 0xe4, 0xb9, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x59, 0x01, 0x26, 0x30, 0x57, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x42, 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x10, 0x30 +.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31 +.byte 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x53, 0x69, 0x67, 0x6e, 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, 0xda, 0x0e, 0xe6 +.byte 0x99, 0x8d, 0xce, 0xa3, 0xe3, 0x4f, 0x8a, 0x7e, 0xfb, 0xf1, 0x8b, 0x83, 0x25, 0x6b, 0xea, 0x48 +.byte 0x1f, 0xf1, 0x2a, 0xb0, 0xb9, 0x95, 0x11, 0x04, 0xbd, 0xf0, 0x63, 0xd1, 0xe2, 0x67, 0x66, 0xcf +.byte 0x1c, 0xdd, 0xcf, 0x1b, 0x48, 0x2b, 0xee, 0x8d, 0x89, 0x8e, 0x9a, 0xaf, 0x29, 0x80, 0x65, 0xab +.byte 0xe9, 0xc7, 0x2d, 0x12, 0xcb, 0xab, 0x1c, 0x4c, 0x70, 0x07, 0xa1, 0x3d, 0x0a, 0x30, 0xcd, 0x15 +.byte 0x8d, 0x4f, 0xf8, 0xdd, 0xd4, 0x8c, 0x50, 0x15, 0x1c, 0xef, 0x50, 0xee, 0xc4, 0x2e, 0xf7, 0xfc +.byte 0xe9, 0x52, 0xf2, 0x91, 0x7d, 0xe0, 0x6d, 0xd5, 0x35, 0x30, 0x8e, 0x5e, 0x43, 0x73, 0xf2, 0x41 +.byte 0xe9, 0xd5, 0x6a, 0xe3, 0xb2, 0x89, 0x3a, 0x56, 0x39, 0x38, 0x6f, 0x06, 0x3c, 0x88, 0x69, 0x5b +.byte 0x2a, 0x4d, 0xc5, 0xa7, 0x54, 0xb8, 0x6c, 0x89, 0xcc, 0x9b, 0xf9, 0x3c, 0xca, 0xe5, 0xfd, 0x89 +.byte 0xf5, 0x12, 0x3c, 0x92, 0x78, 0x96, 0xd6, 0xdc, 0x74, 0x6e, 0x93, 0x44, 0x61, 0xd1, 0x8d, 0xc7 +.byte 0x46, 0xb2, 0x75, 0x0e, 0x86, 0xe8, 0x19, 0x8a, 0xd5, 0x6d, 0x6c, 0xd5, 0x78, 0x16, 0x95, 0xa2 +.byte 0xe9, 0xc8, 0x0a, 0x38, 0xeb, 0xf2, 0x24, 0x13, 0x4f, 0x73, 0x54, 0x93, 0x13, 0x85, 0x3a, 0x1b +.byte 0xbc, 0x1e, 0x34, 0xb5, 0x8b, 0x05, 0x8c, 0xb9, 0x77, 0x8b, 0xb1, 0xdb, 0x1f, 0x20, 0x91, 0xab +.byte 0x09, 0x53, 0x6e, 0x90, 0xce, 0x7b, 0x37, 0x74, 0xb9, 0x70, 0x47, 0x91, 0x22, 0x51, 0x63, 0x16 +.byte 0x79, 0xae, 0xb1, 0xae, 0x41, 0x26, 0x08, 0xc8, 0x19, 0x2b, 0xd1, 0x46, 0xaa, 0x48, 0xd6, 0x64 +.byte 0x2a, 0xd7, 0x83, 0x34, 0xff, 0x2c, 0x2a, 0xc1, 0x6c, 0x19, 0x43, 0x4a, 0x07, 0x85, 0xe7, 0xd3 +.byte 0x7c, 0xf6, 0x21, 0x68, 0xef, 0xea, 0xf2, 0x52, 0x9f, 0x7f, 0x93, 0x90, 0xcf, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x5a, 0x01, 0x26, 0x30, 0x58, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x22 +.byte 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x53, 0x65, 0x63 +.byte 0x75, 0x72, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x31, 0x31 +.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, 0xfd, 0x77, 0xaa, 0xa5, 0x1c, 0x90, 0x05, 0x3b, 0xcb, 0x4c, 0x9b, 0x33, 0x8b, 0x5a, 0x14 +.byte 0x45, 0xa4, 0xe7, 0x90, 0x16, 0xd1, 0xdf, 0x57, 0xd2, 0x21, 0x10, 0xa4, 0x17, 0xfd, 0xdf, 0xac +.byte 0xd6, 0x1f, 0xa7, 0xe4, 0xdb, 0x7c, 0xf7, 0xec, 0xdf, 0xb8, 0x03, 0xda, 0x94, 0x58, 0xfd, 0x5d +.byte 0x72, 0x7c, 0x8c, 0x3f, 0x5f, 0x01, 0x67, 0x74, 0x15, 0x96, 0xe3, 0x02, 0x3c, 0x87, 0xdb, 0xae +.byte 0xcb, 0x01, 0x8e, 0xc2, 0xf3, 0x66, 0xc6, 0x85, 0x45, 0xf4, 0x02, 0xc6, 0x3a, 0xb5, 0x62, 0xb2 +.byte 0xaf, 0xfa, 0x9c, 0xbf, 0xa4, 0xe6, 0xd4, 0x80, 0x30, 0x98, 0xf3, 0x0d, 0xb6, 0x93, 0x8f, 0xa9 +.byte 0xd4, 0xd8, 0x36, 0xf2, 0xb0, 0xfc, 0x8a, 0xca, 0x2c, 0xa1, 0x15, 0x33, 0x95, 0x31, 0xda, 0xc0 +.byte 0x1b, 0xf2, 0xee, 0x62, 0x99, 0x86, 0x63, 0x3f, 0xbf, 0xdd, 0x93, 0x2a, 0x83, 0xa8, 0x76, 0xb9 +.byte 0x13, 0x1f, 0xb7, 0xce, 0x4e, 0x42, 0x85, 0x8f, 0x22, 0xe7, 0x2e, 0x1a, 0xf2, 0x95, 0x09, 0xb2 +.byte 0x05, 0xb5, 0x44, 0x4e, 0x77, 0xa1, 0x20, 0xbd, 0xa9, 0xf2, 0x4e, 0x0a, 0x7d, 0x50, 0xad, 0xf5 +.byte 0x05, 0x0d, 0x45, 0x4f, 0x46, 0x71, 0xfd, 0x28, 0x3e, 0x53, 0xfb, 0x04, 0xd8, 0x2d, 0xd7, 0x65 +.byte 0x1d, 0x4a, 0x1b, 0xfa, 0xcf, 0x3b, 0xb0, 0x31, 0x9a, 0x35, 0x6e, 0xc8, 0x8b, 0x06, 0xd3, 0x00 +.byte 0x91, 0xf2, 0x94, 0x08, 0x65, 0x4c, 0xb1, 0x34, 0x06, 0x00, 0x7a, 0x89, 0xe2, 0xf0, 0xc7, 0x03 +.byte 0x59, 0xcf, 0xd5, 0xd6, 0xe8, 0xa7, 0x32, 0xb3, 0xe6, 0x98, 0x40, 0x86, 0xc5, 0xcd, 0x27, 0x12 +.byte 0x8b, 0xcc, 0x7b, 0xce, 0xb7, 0x11, 0x3c, 0x62, 0x60, 0x07, 0x23, 0x3e, 0x2b, 0x40, 0x6e, 0x94 +.byte 0x80, 0x09, 0x6d, 0xb6, 0xb3, 0x6f, 0x77, 0x6f, 0x35, 0x08, 0x50, 0xfb, 0x02, 0x87, 0xc5, 0x3e +.byte 0x89, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5c, 0x02, 0x26, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x1c, 0x30 +.byte 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x13, 0x30, 0x30, 0x30, 0x32, 0x20, 0x34, 0x38, 0x31 +.byte 0x34, 0x36, 0x33, 0x30, 0x38, 0x31, 0x30, 0x30, 0x30, 0x33, 0x36, 0x31, 0x19, 0x30, 0x17, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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, 0xcd, 0x18, 0x39, 0x65, 0x1a, 0x59, 0xb1, 0xea, 0x64 +.byte 0x16, 0x0e, 0x8c, 0x94, 0x24, 0x95, 0x7c, 0x83, 0xd3, 0xc5, 0x39, 0x26, 0xdc, 0x0c, 0xef, 0x16 +.byte 0x57, 0x8d, 0xd7, 0xd8, 0xac, 0xa3, 0x42, 0x7f, 0x82, 0xca, 0xed, 0xcd, 0x5b, 0xdb, 0x0e, 0xb7 +.byte 0x2d, 0xed, 0x45, 0x08, 0x17, 0xb2, 0xd9, 0xb3, 0xcb, 0xd6, 0x17, 0x52, 0x72, 0x28, 0xdb, 0x8e +.byte 0x4e, 0x9e, 0x8a, 0xb6, 0x0b, 0xf9, 0x9e, 0x84, 0x9a, 0x4d, 0x76, 0xde, 0x22, 0x29, 0x5c, 0xd2 +.byte 0xb3, 0xd2, 0x06, 0x3e, 0x30, 0x39, 0xa9, 0x74, 0xa3, 0x92, 0x56, 0x1c, 0xa1, 0x6f, 0x4c, 0x0a +.byte 0x20, 0x6d, 0x9f, 0x23, 0x7a, 0xb4, 0xc6, 0xda, 0x2c, 0xe4, 0x1d, 0x2c, 0xdc, 0xb3, 0x28, 0xd0 +.byte 0x13, 0xf2, 0x4c, 0x4e, 0x02, 0x49, 0xa1, 0x54, 0x40, 0x9e, 0xe6, 0xe5, 0x05, 0xa0, 0x2d, 0x84 +.byte 0xc8, 0xff, 0x98, 0x6c, 0xd0, 0xeb, 0x8a, 0x1a, 0x84, 0x08, 0x1e, 0xb7, 0x68, 0x23, 0xee, 0x23 +.byte 0xd5, 0x70, 0xce, 0x6d, 0x51, 0x69, 0x10, 0xee, 0xa1, 0x7a, 0xc2, 0xd1, 0x22, 0x31, 0xc2, 0x82 +.byte 0x85, 0xd2, 0xf2, 0x55, 0x76, 0x50, 0x7c, 0x25, 0x7a, 0xc9, 0x84, 0x5c, 0x0b, 0xac, 0xdd, 0x42 +.byte 0x4e, 0x2b, 0xe7, 0x82, 0xa2, 0x24, 0x89, 0xcb, 0x90, 0xb2, 0xd0, 0xee, 0x23, 0xba, 0x66, 0x4c +.byte 0xbb, 0x62, 0xa4, 0xf9, 0x53, 0x5a, 0x64, 0x7b, 0x7c, 0x98, 0xfa, 0xa3, 0x48, 0x9e, 0x0f, 0x95 +.byte 0xae, 0xa7, 0x18, 0xf4, 0x6a, 0xec, 0x2e, 0x03, 0x45, 0xaf, 0xf0, 0x74, 0xf8, 0x2a, 0xcd, 0x7a +.byte 0x5d, 0xd1, 0xbe, 0x44, 0x26, 0x32, 0x29, 0xf1, 0xf1, 0xf5, 0x6c, 0xcc, 0x7e, 0x02, 0x21, 0x0b +.byte 0x9f, 0x6f, 0xa4, 0x3f, 0xbe, 0x9d, 0x53, 0xe2, 0xcf, 0x7d, 0xa9, 0x2c, 0x7c, 0x58, 0x1a, 0x97 +.byte 0xe1, 0x3d, 0x37, 0x37, 0x18, 0x66, 0x28, 0xd2, 0x40, 0xc5, 0x51, 0x8a, 0x8c, 0xc3, 0x2d, 0xce +.byte 0x53, 0x88, 0x24, 0x58, 0x64, 0x30, 0x16, 0xc5, 0xaa, 0xe0, 0xd6, 0x0a, 0xa6, 0x40, 0xdf, 0x78 +.byte 0xf6, 0xf5, 0x04, 0x7c, 0x69, 0x13, 0x84, 0xbc, 0xd1, 0xd1, 0xa7, 0x06, 0xcf, 0x01, 0xf7, 0x68 +.byte 0xc0, 0xa8, 0x57, 0xbb, 0x3a, 0x61, 0xad, 0x04, 0x8c, 0x93, 0xe3, 0xad, 0xfc, 0xf0, 0xdb, 0x44 +.byte 0x6d, 0x59, 0xdc, 0x49, 0x59, 0xae, 0xac, 0x9a, 0x99, 0x36, 0x30, 0x41, 0x7b, 0x76, 0x33, 0x22 +.byte 0x87, 0xa3, 0xc2, 0x92, 0x86, 0x6e, 0xf9, 0x70, 0xee, 0xae, 0x87, 0x87, 0x95, 0x1b, 0xc4, 0x7a +.byte 0xbd, 0x31, 0xf3, 0xd4, 0xd2, 0xe5, 0x99, 0xff, 0xbe, 0x48, 0xec, 0x75, 0xf5, 0x78, 0x16, 0x1d +.byte 0xa6, 0x70, 0xc1, 0x7f, 0x3c, 0x1b, 0xa1, 0x92, 0xfb, 0xcf, 0xc8, 0x3c, 0xd6, 0xc5, 0x93, 0x0a +.byte 0x8f, 0xf5, 0x55, 0x3a, 0x76, 0x95, 0xce, 0x59, 0x98, 0x8a, 0x09, 0x95, 0x77, 0x32, 0x9a, 0x83 +.byte 0xba, 0x2c, 0x04, 0x3a, 0x97, 0xbd, 0xd4, 0x2f, 0xbe, 0xd7, 0x6c, 0x9b, 0xa2, 0xca, 0x7d, 0x6d +.byte 0x26, 0xc9, 0x55, 0xd5, 0xcf, 0xc3, 0x79, 0x52, 0x08, 0x09, 0x99, 0x07, 0x24, 0x2d, 0x64, 0x25 +.byte 0x6b, 0xa6, 0x21, 0x69, 0x9b, 0x6a, 0xdd, 0x74, 0x4d, 0x6b, 0x97, 0x7a, 0x41, 0xbd, 0xab, 0x17 +.byte 0xf9, 0x90, 0x17, 0x48, 0x8f, 0x36, 0xf9, 0x2d, 0xd5, 0xc5, 0xdb, 0xee, 0xaa, 0x85, 0x45, 0x41 +.byte 0xfa, 0xcd, 0x3a, 0x45, 0xb1, 0x68, 0xe6, 0x36, 0x4c, 0x9b, 0x90, 0x57, 0xec, 0x23, 0xb9, 0x87 +.byte 0x08, 0xc2, 0xc4, 0x09, 0xf1, 0x97, 0x86, 0x2a, 0x28, 0x4d, 0xe2, 0x74, 0xc0, 0xda, 0xc4, 0x8c +.byte 0xdb, 0xdf, 0xe2, 0xa1, 0x17, 0x59, 0xce, 0x24, 0x59, 0x74, 0x31, 0xda, 0x7f, 0xfd, 0x30, 0x6d +.byte 0xd9, 0xdc, 0xe1, 0x6a, 0xe1, 0xfc, 0x5f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x5c, 0x01, 0x26 +.byte 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x45, 0x31 +.byte 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d +.byte 0x6f, 0x72, 0x65, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x43, 0x79 +.byte 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x19, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x43, 0x79, 0x62 +.byte 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0xa3, 0x04, 0xbb +.byte 0x22, 0xab, 0x98, 0x3d, 0x57, 0xe8, 0x26, 0x72, 0x9a, 0xb5, 0x79, 0xd4, 0x29, 0xe2, 0xe1, 0xe8 +.byte 0x95, 0x80, 0xb1, 0xb0, 0xe3, 0x5b, 0x8e, 0x2b, 0x29, 0x9a, 0x64, 0xdf, 0xa1, 0x5d, 0xed, 0xb0 +.byte 0x09, 0x05, 0x6d, 0xdb, 0x28, 0x2e, 0xce, 0x62, 0xa2, 0x62, 0xfe, 0xb4, 0x88, 0xda, 0x12, 0xeb +.byte 0x38, 0xeb, 0x21, 0x9d, 0xc0, 0x41, 0x2b, 0x01, 0x52, 0x7b, 0x88, 0x77, 0xd3, 0x1c, 0x8f, 0xc7 +.byte 0xba, 0xb9, 0x88, 0xb5, 0x6a, 0x09, 0xe7, 0x73, 0xe8, 0x11, 0x40, 0xa7, 0xd1, 0xcc, 0xca, 0x62 +.byte 0x8d, 0x2d, 0xe5, 0x8f, 0x0b, 0xa6, 0x50, 0xd2, 0xa8, 0x50, 0xc3, 0x28, 0xea, 0xf5, 0xab, 0x25 +.byte 0x87, 0x8a, 0x9a, 0x96, 0x1c, 0xa9, 0x67, 0xb8, 0x3f, 0x0c, 0xd5, 0xf7, 0xf9, 0x52, 0x13, 0x2f +.byte 0xc2, 0x1b, 0xd5, 0x70, 0x70, 0xf0, 0x8f, 0xc0, 0x12, 0xca, 0x06, 0xcb, 0x9a, 0xe1, 0xd9, 0xca +.byte 0x33, 0x7a, 0x77, 0xd6, 0xf8, 0xec, 0xb9, 0xf1, 0x68, 0x44, 0x42, 0x48, 0x13, 0xd2, 0xc0, 0xc2 +.byte 0xa4, 0xae, 0x5e, 0x60, 0xfe, 0xb6, 0xa6, 0x05, 0xfc, 0xb4, 0xdd, 0x07, 0x59, 0x02, 0xd4, 0x59 +.byte 0x18, 0x98, 0x63, 0xf5, 0xa5, 0x63, 0xe0, 0x90, 0x0c, 0x7d, 0x5d, 0xb2, 0x06, 0x7a, 0xf3, 0x85 +.byte 0xea, 0xeb, 0xd4, 0x03, 0xae, 0x5e, 0x84, 0x3e, 0x5f, 0xff, 0x15, 0xed, 0x69, 0xbc, 0xf9, 0x39 +.byte 0x36, 0x72, 0x75, 0xcf, 0x77, 0x52, 0x4d, 0xf3, 0xc9, 0x90, 0x2c, 0xb9, 0x3d, 0xe5, 0xc9, 0x23 +.byte 0x53, 0x3f, 0x1f, 0x24, 0x98, 0x21, 0x5c, 0x07, 0x99, 0x29, 0xbd, 0xc6, 0x3a, 0xec, 0xe7, 0x6e +.byte 0x86, 0x3a, 0x6b, 0x97, 0x74, 0x63, 0x33, 0xbd, 0x68, 0x18, 0x31, 0xf0, 0x78, 0x8d, 0x76, 0xbf +.byte 0xfc, 0x9e, 0x8e, 0x5d, 0x2a, 0x86, 0xa7, 0x4d, 0x90, 0xdc, 0x27, 0x1a, 0x39, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x5c, 0x00, 0x78, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a +.byte 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63 +.byte 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20 +.byte 0x43, 0x33, 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, 0xfd, 0xa5, 0x61, 0xae, 0x7b, 0x26 +.byte 0x10, 0x1d, 0xe9, 0xb7, 0x22, 0x30, 0xae, 0x06, 0xf4, 0x81, 0xb3, 0xb1, 0x42, 0x71, 0x95, 0x39 +.byte 0xbc, 0xd3, 0x52, 0xe3, 0xaf, 0xaf, 0xf9, 0xf2, 0x97, 0x35, 0x92, 0x36, 0x46, 0x0e, 0x87, 0x95 +.byte 0x8d, 0xb9, 0x39, 0x5a, 0xe9, 0xbb, 0xdf, 0xd0, 0xfe, 0xc8, 0x07, 0x41, 0x3c, 0xbb, 0x55, 0x6f +.byte 0x83, 0xa3, 0x6a, 0xfb, 0x62, 0xb0, 0x81, 0x89, 0x02, 0x70, 0x7d, 0x48, 0xc5, 0x4a, 0xe3, 0xe9 +.byte 0x22, 0x54, 0x22, 0x4d, 0x93, 0xbb, 0x42, 0x0c, 0xaf, 0x77, 0x9c, 0x23, 0xa6, 0x7d, 0xd7, 0x61 +.byte 0x11, 0xce, 0x65, 0xc7, 0xf8, 0x7f, 0xfe, 0xf5, 0xf2, 0xa9, 0x00, 0x5f, 0x02, 0x26, 0x30, 0x5d +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30 +.byte 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c +.byte 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x53 +.byte 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63 +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x33, 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, 0xe3, 0xc9 +.byte 0x72, 0x49, 0xf7, 0x30, 0xde, 0x09, 0x7c, 0xa9, 0x40, 0x81, 0x58, 0xd3, 0xb4, 0x3a, 0xdd, 0xba +.byte 0x61, 0x0f, 0x93, 0x50, 0x6e, 0x69, 0x3c, 0x35, 0xc2, 0xee, 0x5b, 0x73, 0x90, 0x1b, 0x67, 0x4c +.byte 0x21, 0xec, 0x5f, 0x35, 0xbb, 0x39, 0x3e, 0x2b, 0x0a, 0x60, 0xef, 0xbb, 0x6d, 0x2b, 0x86, 0xfb +.byte 0x71, 0xa2, 0xc8, 0xac, 0xe4, 0x56, 0x94, 0xf9, 0xc9, 0xaf, 0xb1, 0x72, 0xd4, 0x20, 0xac, 0x74 +.byte 0xd2, 0xb8, 0x15, 0xad, 0x51, 0xfe, 0x85, 0x74, 0xa1, 0xb9, 0x10, 0xfe, 0x05, 0x80, 0xf9, 0x52 +.byte 0x93, 0xb3, 0x40, 0x3d, 0x75, 0x10, 0xac, 0xc0, 0x96, 0xb7, 0xa7, 0x7e, 0x76, 0xbc, 0xe3, 0x1b +.byte 0x52, 0x19, 0xce, 0x11, 0x1f, 0x0b, 0x04, 0x34, 0xf5, 0xd8, 0xf5, 0x69, 0x3c, 0x77, 0xf3, 0x64 +.byte 0xf4, 0x0d, 0xaa, 0x85, 0xde, 0xe0, 0x09, 0x50, 0x04, 0x17, 0x96, 0x84, 0xb7, 0xc8, 0x8a, 0xbc +.byte 0x4d, 0x72, 0xfc, 0x1c, 0xbb, 0xcf, 0xf3, 0x06, 0x4d, 0xf9, 0x9f, 0x64, 0xf7, 0x7e, 0xa6, 0x66 +.byte 0x86, 0x35, 0x71, 0xc8, 0x11, 0x80, 0x4c, 0xc1, 0x71, 0x40, 0x58, 0x1e, 0xbe, 0xa0, 0x73, 0xf6 +.byte 0xfc, 0x3e, 0x50, 0xe1, 0xe0, 0x2f, 0x26, 0x3d, 0x7e, 0x5c, 0x23, 0xb5, 0x79, 0x70, 0xde, 0xfa +.byte 0xe0, 0xd1, 0xa5, 0xd6, 0x0c, 0x41, 0x71, 0x7b, 0xf7, 0xea, 0x8c, 0x1c, 0x88, 0xc7, 0xec, 0x8b +.byte 0xf5, 0xd1, 0x2f, 0x55, 0x96, 0x46, 0x7c, 0x5a, 0x3b, 0x58, 0x3b, 0xfb, 0xba, 0xd8, 0x2d, 0xb5 +.byte 0x25, 0xda, 0x7a, 0x4e, 0xcf, 0x44, 0xae, 0x21, 0xa6, 0x9e, 0x98, 0xca, 0x20, 0x6e, 0x7c, 0xbb +.byte 0x88, 0x85, 0x5b, 0xfb, 0xc0, 0x10, 0x62, 0xbb, 0xf2, 0xf9, 0x27, 0x47, 0xef, 0xd1, 0x89, 0x39 +.byte 0x43, 0xc4, 0xdf, 0xde, 0xe1, 0x41, 0xbf, 0x54, 0x73, 0x20, 0x97, 0x2d, 0x6c, 0xda, 0xf3, 0xd4 +.byte 0x07, 0xa3, 0xe6, 0xb9, 0xd8, 0x6f, 0xae, 0xfc, 0x8c, 0x19, 0x2e, 0xd3, 0x67, 0x67, 0x2b, 0x95 +.byte 0xdb, 0x58, 0x5c, 0xb5, 0x6a, 0x02, 0xf3, 0xb8, 0x83, 0x5e, 0xb4, 0x6b, 0xbe, 0x41, 0x7e, 0x57 +.byte 0x09, 0x75, 0x44, 0x50, 0x55, 0xcd, 0x5a, 0x11, 0x61, 0x21, 0x0a, 0x61, 0xc2, 0xa9, 0x88, 0xfd +.byte 0x13, 0xbc, 0x2d, 0x89, 0x2f, 0xcd, 0x61, 0xe0, 0x95, 0xbe, 0xca, 0xb5, 0x7b, 0xe1, 0x7b, 0x34 +.byte 0x67, 0x0b, 0x1f, 0xb6, 0x0c, 0xc7, 0x7c, 0x1e, 0x19, 0x53, 0xca, 0xa7, 0xb1, 0x4a, 0x15, 0x20 +.byte 0x56, 0x14, 0x70, 0x3d, 0x2b, 0x82, 0x2c, 0x0f, 0x9d, 0x15, 0x1d, 0x47, 0x80, 0x47, 0xff, 0x78 +.byte 0x99, 0x0e, 0x31, 0xaf, 0x6f, 0x3e, 0x8f, 0xed, 0x86, 0x69, 0x1e, 0x7b, 0x18, 0x88, 0x14, 0xb2 +.byte 0xc2, 0xfc, 0x82, 0x33, 0x2e, 0x9c, 0x4b, 0x2d, 0xfb, 0x70, 0x3b, 0x71, 0xaa, 0x2b, 0x7b, 0x26 +.byte 0x27, 0xf3, 0x1a, 0xc2, 0xdc, 0xfb, 0x17, 0xb8, 0xa1, 0xea, 0xcb, 0xa0, 0xb4, 0xae, 0xd3, 0x94 +.byte 0x7e, 0x7a, 0xd0, 0xab, 0xc3, 0xec, 0x38, 0x2d, 0x11, 0x2e, 0x88, 0xbf, 0xd4, 0x3f, 0xad, 0x12 +.byte 0x3b, 0x42, 0xac, 0x8f, 0x02, 0x6e, 0x7d, 0xcc, 0xd1, 0x5f, 0x61, 0xbe, 0xa1, 0xbc, 0x3a, 0x6a +.byte 0x48, 0xea, 0x26, 0x55, 0x22, 0x16, 0x5d, 0x5f, 0x0d, 0xff, 0x27, 0x33, 0x9f, 0x18, 0x03, 0x74 +.byte 0x8a, 0x5b, 0x52, 0x20, 0x47, 0x6b, 0x45, 0x4d, 0x22, 0x77, 0x8c, 0x55, 0x27, 0xf0, 0xaf, 0x1e +.byte 0x8c, 0xc9, 0x83, 0x22, 0x54, 0xb7, 0x9a, 0xd0, 0x4f, 0xd9, 0xce, 0xfc, 0xd9, 0x2e, 0x1c, 0x96 +.byte 0x28, 0xb1, 0x02, 0xd3, 0x03, 0xbd, 0x25, 0x52, 0x1c, 0x34, 0x66, 0x4f, 0x23, 0xab, 0xf4, 0x77 +.byte 0x82, 0x96, 0x1d, 0xd1, 0x57, 0x30, 0x08, 0x11, 0x05, 0xfd, 0x57, 0xd1, 0xd9, 0xc7, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x00, 0x5f, 0x01, 0x26, 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, 0x00, 0x60, 0x02, 0x26 +.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, 0x00, 0x61, 0x01, 0x26, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x09, 0x54, 0x41, 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30 +.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31 +.byte 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x21, 0x54, 0x57, 0x43, 0x41, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 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, 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, 0xb0, 0x7e, 0x72, 0xb8 +.byte 0xa4, 0x03, 0x94, 0xe6, 0xa7, 0xde, 0x09, 0x38, 0x91, 0x4a, 0x11, 0x40, 0x87, 0xa7, 0x7c, 0x59 +.byte 0x64, 0x14, 0x7b, 0xb5, 0x11, 0x10, 0xdd, 0xfe, 0xbf, 0xd5, 0xc0, 0xbb, 0x56, 0xe2, 0x85, 0x25 +.byte 0xf4, 0x35, 0x72, 0x0f, 0xf8, 0x53, 0xd0, 0x41, 0xe1, 0x44, 0x01, 0xc2, 0xb4, 0x1c, 0xc3, 0x31 +.byte 0x42, 0x16, 0x47, 0x85, 0x33, 0x22, 0x76, 0xb2, 0x0a, 0x6f, 0x0f, 0xe5, 0x25, 0x50, 0x4f, 0x85 +.byte 0x86, 0xbe, 0xbf, 0x98, 0x2e, 0x10, 0x67, 0x1e, 0xbe, 0x11, 0x05, 0x86, 0x05, 0x90, 0xc4, 0x59 +.byte 0xd0, 0x7c, 0x78, 0x10, 0xb0, 0x80, 0x5c, 0xb7, 0xe1, 0xc7, 0x2b, 0x75, 0xcb, 0x7c, 0x9f, 0xae +.byte 0xb5, 0xd1, 0x9d, 0x23, 0x37, 0x63, 0xa7, 0xdc, 0x42, 0xa2, 0x2d, 0x92, 0x04, 0x1b, 0x50, 0xc1 +.byte 0x7b, 0xb8, 0x3e, 0x1b, 0xc9, 0x56, 0x04, 0x8b, 0x2f, 0x52, 0x9b, 0xad, 0xa9, 0x56, 0xe9, 0xc1 +.byte 0xff, 0xad, 0xa9, 0x58, 0x87, 0x30, 0xb6, 0x81, 0xf7, 0x97, 0x45, 0xfc, 0x19, 0x57, 0x3b, 0x2b +.byte 0x6f, 0xe4, 0x47, 0xf4, 0x99, 0x45, 0xfe, 0x1d, 0xf1, 0xf8, 0x97, 0xa3, 0x88, 0x1d, 0x37, 0x1c +.byte 0x5c, 0x8f, 0xe0, 0x76, 0x25, 0x9a, 0x50, 0xf8, 0xa0, 0x54, 0xff, 0x44, 0x90, 0x76, 0x23, 0xd2 +.byte 0x32, 0xc6, 0xc3, 0xab, 0x06, 0xbf, 0xfc, 0xfb, 0xbf, 0xf3, 0xad, 0x7d, 0x92, 0x62, 0x02, 0x5b +.byte 0x29, 0xd3, 0x35, 0xa3, 0x93, 0x9a, 0x43, 0x64, 0x60, 0x5d, 0xb2, 0xfa, 0x32, 0xff, 0x3b, 0x04 +.byte 0xaf, 0x4d, 0x40, 0x6a, 0xf9, 0xc7, 0xe3, 0xef, 0x23, 0xfd, 0x6b, 0xcb, 0xe5, 0x0f, 0x8b, 0x38 +.byte 0x0d, 0xee, 0x0a, 0xfc, 0xfe, 0x0f, 0x98, 0x9f, 0x30, 0x31, 0xdd, 0x6c, 0x52, 0x65, 0xf9, 0x8b +.byte 0x81, 0xbe, 0x22, 0xe1, 0x1c, 0x58, 0x03, 0xba, 0x91, 0x1b, 0x89, 0x07, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x63, 0x00, 0x78, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53 +.byte 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65 +.byte 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x2b, 0x30, 0x29, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43 +.byte 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x43, 0x43 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x31, 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 0xa4, 0xa5, 0x6f, 0x60, 0x03, 0x03, 0xc3, 0xbd, 0x31, 0xf4, 0xd3, 0x17, 0x9c, 0x2b, 0x84, 0x75 +.byte 0xac, 0xe5, 0xfd, 0x3d, 0x57, 0x6e, 0xd7, 0x63, 0xbf, 0xe6, 0x04, 0x89, 0x92, 0x8e, 0x81, 0x9c +.byte 0xe3, 0xe9, 0x47, 0x6e, 0xca, 0x90, 0x12, 0xc8, 0x13, 0xe0, 0xa7, 0x9d, 0xf7, 0x65, 0x74, 0x1f +.byte 0x6c, 0x10, 0xb2, 0xe8, 0xe4, 0xe9, 0xef, 0x6d, 0x85, 0x32, 0x99, 0x44, 0xb1, 0x5e, 0xfd, 0xcc +.byte 0x76, 0x10, 0xd8, 0x5b, 0xbd, 0xa2, 0xc6, 0xf9, 0xd6, 0x42, 0xe4, 0x57, 0x76, 0xdc, 0x90, 0xc2 +.byte 0x35, 0xa9, 0x4b, 0x88, 0x3c, 0x12, 0x47, 0x6d, 0x5c, 0xff, 0x49, 0x4f, 0x1a, 0x4a, 0x50, 0xb1 +.byte 0x00, 0x63, 0x02, 0x26, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x54, 0x4e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x41, 0x67 +.byte 0x65, 0x6e, 0x63, 0x65, 0x20, 0x4e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x65, 0x20, 0x64 +.byte 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x45, 0x6c, 0x65, 0x63, 0x74, 0x72, 0x6f, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x31, 0x19, 0x30, 0x17 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x54, 0x75, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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, 0xc3, 0xcd, 0xd3, 0xfc, 0xbd, 0x04, 0x53, 0xdd +.byte 0x0c, 0x20, 0x3a, 0xd5, 0x88, 0x2e, 0x05, 0x4b, 0x41, 0xf5, 0x83, 0x82, 0x7e, 0xf7, 0x59, 0x9f +.byte 0x9e, 0x9e, 0x63, 0xe8, 0x73, 0xda, 0xf6, 0x06, 0xa9, 0x4f, 0x1f, 0xb4, 0xf9, 0x0b, 0x1f, 0x39 +.byte 0x8c, 0x9a, 0x20, 0xd0, 0x7e, 0x06, 0xd4, 0xec, 0x34, 0xd9, 0x86, 0xbc, 0x75, 0x5b, 0x87, 0x88 +.byte 0xf0, 0xd2, 0xd9, 0xd4, 0xa3, 0x0a, 0xb2, 0x6c, 0x1b, 0xeb, 0x49, 0x2c, 0x3e, 0xac, 0x5d, 0xd8 +.byte 0x94, 0x03, 0xa0, 0xec, 0x34, 0xe5, 0x30, 0xc4, 0x35, 0x7d, 0xfb, 0x26, 0x4d, 0x1b, 0x6e, 0x30 +.byte 0x54, 0xd8, 0xf5, 0x80, 0x45, 0x9c, 0x39, 0xad, 0x9c, 0xc9, 0x25, 0x04, 0x4d, 0x9a, 0x90, 0x3e +.byte 0x4e, 0x40, 0x6e, 0x8a, 0x6b, 0xcd, 0x29, 0x67, 0xc6, 0xcc, 0x2d, 0xe0, 0x74, 0xe8, 0x05, 0x57 +.byte 0x0a, 0x48, 0x50, 0xfa, 0x7a, 0x43, 0xda, 0x7e, 0xec, 0x5b, 0x9a, 0x0e, 0x62, 0x76, 0xfe, 0xea +.byte 0x9d, 0x1d, 0x85, 0x72, 0xec, 0x11, 0xbb, 0x35, 0xe8, 0x1f, 0x27, 0xbf, 0xc1, 0xa1, 0xc7, 0xbb +.byte 0x48, 0x16, 0xdd, 0x56, 0xd7, 0xcc, 0x4e, 0xa0, 0xe1, 0xb9, 0xac, 0xdb, 0xd5, 0x83, 0x19, 0x1a +.byte 0x85, 0xd1, 0x94, 0x97, 0xd7, 0xca, 0xa3, 0x65, 0x0b, 0xf3, 0x38, 0xf9, 0x02, 0xae, 0xdd, 0xf6 +.byte 0x67, 0xcf, 0xc9, 0x3f, 0xf5, 0x8a, 0x2c, 0x47, 0x1a, 0x99, 0x6f, 0x05, 0x0d, 0xfd, 0xd0, 0x1d +.byte 0x82, 0x31, 0xfc, 0x29, 0xcc, 0x00, 0x58, 0x97, 0x91, 0x4c, 0x80, 0x00, 0x1c, 0x33, 0x85, 0x96 +.byte 0x2f, 0xcb, 0x41, 0xc2, 0x8b, 0x10, 0x84, 0xc3, 0x09, 0x24, 0x89, 0x1f, 0xb5, 0x0f, 0xd9, 0xd9 +.byte 0x77, 0x47, 0x18, 0x92, 0x94, 0x60, 0x5c, 0xc7, 0x99, 0x03, 0x3c, 0xfe, 0xf7, 0x95, 0xa7, 0x7d +.byte 0x50, 0xa1, 0x80, 0xc2, 0xa9, 0x83, 0xad, 0x58, 0x96, 0x55, 0x21, 0xdb, 0x86, 0x59, 0xd4, 0xaf +.byte 0xc6, 0xbc, 0xdd, 0x81, 0x6e, 0x07, 0xdb, 0x60, 0x62, 0xfe, 0xec, 0x10, 0x6e, 0xda, 0x68, 0x01 +.byte 0xf4, 0x83, 0x1b, 0xa9, 0x3e, 0xa2, 0x5b, 0x23, 0xd7, 0x64, 0xc6, 0xdf, 0xdc, 0xa2, 0x7d, 0xd8 +.byte 0x4b, 0xba, 0x82, 0xd2, 0x51, 0xf8, 0x66, 0xbf, 0x06, 0x46, 0xe4, 0x79, 0x2a, 0x26, 0x36, 0x79 +.byte 0x8f, 0x1f, 0x4e, 0x99, 0x1d, 0xb2, 0x8f, 0x0c, 0x0e, 0x1c, 0xff, 0xc9, 0x5d, 0xc0, 0xfd, 0x90 +.byte 0x10, 0xa6, 0xb1, 0x37, 0xf3, 0xcd, 0x3a, 0x24, 0x6e, 0xb4, 0x85, 0x90, 0xbf, 0x80, 0xb9, 0x0c +.byte 0x8c, 0xd5, 0x9b, 0xd6, 0xc8, 0xf1, 0x56, 0x3f, 0x1a, 0x80, 0x89, 0x7a, 0xa9, 0xe2, 0x1b, 0x32 +.byte 0x51, 0x2c, 0x3e, 0xf2, 0xdf, 0x7b, 0xf6, 0x5d, 0x7a, 0x29, 0x19, 0x8e, 0xe5, 0xc8, 0xbd, 0x36 +.byte 0x71, 0x8b, 0x5d, 0x4c, 0xc2, 0x1d, 0x3f, 0xad, 0x58, 0xa2, 0xcf, 0x3d, 0x70, 0x4d, 0xa6, 0x50 +.byte 0x98, 0x25, 0xdc, 0x23, 0xf9, 0xb8, 0x58, 0x41, 0x08, 0x71, 0xbf, 0x4f, 0xb8, 0x84, 0xa0, 0x8f +.byte 0x00, 0x54, 0x15, 0xfc, 0x91, 0x6d, 0x58, 0xa7, 0x96, 0x3b, 0xeb, 0x4b, 0x96, 0x27, 0xcd, 0x6b +.byte 0xa2, 0xa1, 0x86, 0xac, 0x0d, 0x7c, 0x54, 0xe6, 0x66, 0x4c, 0x66, 0x5f, 0x90, 0xbe, 0x21, 0x9a +.byte 0x02, 0x46, 0x2d, 0xe4, 0x83, 0xc2, 0x80, 0xb9, 0xcf, 0x4b, 0x3e, 0xe8, 0x7f, 0x3c, 0x01, 0xec +.byte 0x8f, 0x5e, 0xcd, 0x7f, 0xd2, 0x28, 0x42, 0x01, 0x95, 0x8a, 0xe2, 0x97, 0x3d, 0x10, 0x21, 0x7d +.byte 0xf6, 0x9d, 0x1c, 0xc5, 0x34, 0xa1, 0xec, 0x2c, 0x0e, 0x0a, 0x52, 0x2c, 0x12, 0x55, 0x70, 0x24 +.byte 0x3d, 0xcb, 0xc2, 0x14, 0x35, 0x43, 0x5d, 0x27, 0x4e, 0xbe, 0xc0, 0xbd, 0xaa, 0x7c, 0x96, 0xe7 +.byte 0xfc, 0x9e, 0x61, 0xad, 0x44, 0xd3, 0x00, 0x97, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x01 +.byte 0x26, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43 +.byte 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63 +.byte 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67 +.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 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, 0xe2, 0x3b, 0xe1, 0x11, 0x72, 0xde, 0xa8, 0xa4, 0xd3, 0xa3, 0x57 +.byte 0xaa, 0x50, 0xa2, 0x8f, 0x0b, 0x77, 0x90, 0xc9, 0xa2, 0xa5, 0xee, 0x12, 0xce, 0x96, 0x5b, 0x01 +.byte 0x09, 0x20, 0xcc, 0x01, 0x93, 0xa7, 0x4e, 0x30, 0xb7, 0x53, 0xf7, 0x43, 0xc4, 0x69, 0x00, 0x57 +.byte 0x9d, 0xe2, 0x8d, 0x22, 0xdd, 0x87, 0x06, 0x40, 0x00, 0x81, 0x09, 0xce, 0xce, 0x1b, 0x83, 0xbf +.byte 0xdf, 0xcd, 0x3b, 0x71, 0x46, 0xe2, 0xd6, 0x66, 0xc7, 0x05, 0xb3, 0x76, 0x27, 0x16, 0x8f, 0x7b +.byte 0x9e, 0x1e, 0x95, 0x7d, 0xee, 0xb7, 0x48, 0xa3, 0x08, 0xda, 0xd6, 0xaf, 0x7a, 0x0c, 0x39, 0x06 +.byte 0x65, 0x7f, 0x4a, 0x5d, 0x1f, 0xbc, 0x17, 0xf8, 0xab, 0xbe, 0xee, 0x28, 0xd7, 0x74, 0x7f, 0x7a +.byte 0x78, 0x99, 0x59, 0x85, 0x68, 0x6e, 0x5c, 0x23, 0x32, 0x4b, 0xbf, 0x4e, 0xc0, 0xe8, 0x5a, 0x6d +.byte 0xe3, 0x70, 0xbf, 0x77, 0x10, 0xbf, 0xfc, 0x01, 0xf6, 0x85, 0xd9, 0xa8, 0x44, 0x10, 0x58, 0x32 +.byte 0xa9, 0x75, 0x18, 0xd5, 0xd1, 0xa2, 0xbe, 0x47, 0xe2, 0x27, 0x6a, 0xf4, 0x9a, 0x33, 0xf8, 0x49 +.byte 0x08, 0x60, 0x8b, 0xd4, 0x5f, 0xb4, 0x3a, 0x84, 0xbf, 0xa1, 0xaa, 0x4a, 0x4c, 0x7d, 0x3e, 0xcf +.byte 0x4f, 0x5f, 0x6c, 0x76, 0x5e, 0xa0, 0x4b, 0x37, 0x91, 0x9e, 0xdc, 0x22, 0xe6, 0x6d, 0xce, 0x14 +.byte 0x1a, 0x8e, 0x6a, 0xcb, 0xfe, 0xcd, 0xb3, 0x14, 0x64, 0x17, 0xc7, 0x5b, 0x29, 0x9e, 0x32, 0xbf +.byte 0xf2, 0xee, 0xfa, 0xd3, 0x0b, 0x42, 0xd4, 0xab, 0xb7, 0x41, 0x32, 0xda, 0x0c, 0xd4, 0xef, 0xf8 +.byte 0x81, 0xd5, 0xbb, 0x8d, 0x58, 0x3f, 0xb5, 0x1b, 0xe8, 0x49, 0x28, 0xa2, 0x70, 0xda, 0x31, 0x04 +.byte 0xdd, 0xf7, 0xb2, 0x16, 0xf2, 0x4c, 0x0a, 0x4e, 0x07, 0xa8, 0xed, 0x4a, 0x3d, 0x5e, 0xb5, 0x7f +.byte 0xa3, 0x90, 0xc3, 0xaf, 0x27, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x01, 0x26, 0x30, 0x61 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30 +.byte 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74 +.byte 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77 +.byte 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31 +.byte 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 +.byte 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47 +.byte 0x32, 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, 0xbb, 0x37, 0xcd, 0x34, 0xdc, 0x7b, 0x6b, 0xc9, 0xb2, 0x68, 0x90, 0xad, 0x4a, 0x75 +.byte 0xff, 0x46, 0xba, 0x21, 0x0a, 0x08, 0x8d, 0xf5, 0x19, 0x54, 0xc9, 0xfb, 0x88, 0xdb, 0xf3, 0xae +.byte 0xf2, 0x3a, 0x89, 0x91, 0x3c, 0x7a, 0xe6, 0xab, 0x06, 0x1a, 0x6b, 0xcf, 0xac, 0x2d, 0xe8, 0x5e +.byte 0x09, 0x24, 0x44, 0xba, 0x62, 0x9a, 0x7e, 0xd6, 0xa3, 0xa8, 0x7e, 0xe0, 0x54, 0x75, 0x20, 0x05 +.byte 0xac, 0x50, 0xb7, 0x9c, 0x63, 0x1a, 0x6c, 0x30, 0xdc, 0xda, 0x1f, 0x19, 0xb1, 0xd7, 0x1e, 0xde +.byte 0xfd, 0xd7, 0xe0, 0xcb, 0x94, 0x83, 0x37, 0xae, 0xec, 0x1f, 0x43, 0x4e, 0xdd, 0x7b, 0x2c, 0xd2 +.byte 0xbd, 0x2e, 0xa5, 0x2f, 0xe4, 0xa9, 0xb8, 0xad, 0x3a, 0xd4, 0x99, 0xa4, 0xb6, 0x25, 0xe9, 0x9b +.byte 0x6b, 0x00, 0x60, 0x92, 0x60, 0xff, 0x4f, 0x21, 0x49, 0x18, 0xf7, 0x67, 0x90, 0xab, 0x61, 0x06 +.byte 0x9c, 0x8f, 0xf2, 0xba, 0xe9, 0xb4, 0xe9, 0x92, 0x32, 0x6b, 0xb5, 0xf3, 0x57, 0xe8, 0x5d, 0x1b +.byte 0xcd, 0x8c, 0x1d, 0xab, 0x95, 0x04, 0x95, 0x49, 0xf3, 0x35, 0x2d, 0x96, 0xe3, 0x49, 0x6d, 0xdd +.byte 0x77, 0xe3, 0xfb, 0x49, 0x4b, 0xb4, 0xac, 0x55, 0x07, 0xa9, 0x8f, 0x95, 0xb3, 0xb4, 0x23, 0xbb +.byte 0x4c, 0x6d, 0x45, 0xf0, 0xf6, 0xa9, 0xb2, 0x95, 0x30, 0xb4, 0xfd, 0x4c, 0x55, 0x8c, 0x27, 0x4a +.byte 0x57, 0x14, 0x7c, 0x82, 0x9d, 0xcd, 0x73, 0x92, 0xd3, 0x16, 0x4a, 0x06, 0x0c, 0x8c, 0x50, 0xd1 +.byte 0x8f, 0x1e, 0x09, 0xbe, 0x17, 0xa1, 0xe6, 0x21, 0xca, 0xfd, 0x83, 0xe5, 0x10, 0xbc, 0x83, 0xa5 +.byte 0x0a, 0xc4, 0x67, 0x28, 0xf6, 0x73, 0x14, 0x14, 0x3d, 0x46, 0x76, 0xc3, 0x87, 0x14, 0x89, 0x21 +.byte 0x34, 0x4d, 0xaf, 0x0f, 0x45, 0x0c, 0xa6, 0x49, 0xa1, 0xba, 0xbb, 0x9c, 0xc5, 0xb1, 0x33, 0x83 +.byte 0x29, 0x85, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x63, 0x00, 0x78, 0x30, 0x61, 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, 0x20, 0x30, 0x1e +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20 +.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 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, 0xdd, 0xa7, 0xd9, 0xbb, 0x8a, 0xb8, 0x0b, 0xfb, 0x0b, 0x7f +.byte 0x21, 0xd2, 0xf0, 0xbe, 0xbe, 0x73, 0xf3, 0x33, 0x5d, 0x1a, 0xbc, 0x34, 0xea, 0xde, 0xc6, 0x9b +.byte 0xbc, 0xd0, 0x95, 0xf6, 0xf0, 0xcc, 0xd0, 0x0b, 0xba, 0x61, 0x5b, 0x51, 0x46, 0x7e, 0x9e, 0x2d +.byte 0x9f, 0xee, 0x8e, 0x63, 0x0c, 0x17, 0xec, 0x07, 0x70, 0xf5, 0xcf, 0x84, 0x2e, 0x40, 0x83, 0x9c +.byte 0xe8, 0x3f, 0x41, 0x6d, 0x3b, 0xad, 0xd3, 0xa4, 0x14, 0x59, 0x36, 0x78, 0x9d, 0x03, 0x43, 0xee +.byte 0x10, 0x13, 0x6c, 0x72, 0xde, 0xae, 0x88, 0xa7, 0xa1, 0x6b, 0xb5, 0x43, 0xce, 0x67, 0xdc, 0x23 +.byte 0xff, 0x03, 0x1c, 0xa3, 0xe2, 0x3e, 0x00, 0x64, 0x02, 0x26, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x29, 0x47, 0x55, 0x41, 0x4e, 0x47, 0x20, 0x44, 0x4f, 0x4e, 0x47, 0x20, 0x43 +.byte 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f +.byte 0x52, 0x49, 0x54, 0x59, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x1f, 0x30 +.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x47, 0x44, 0x43, 0x41, 0x20, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x41, 0x55, 0x54, 0x48, 0x20, 0x52, 0x35, 0x20, 0x52, 0x4f, 0x4f, 0x54, 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, 0xd9 +.byte 0xa3, 0x16, 0xf0, 0xc8, 0x74, 0x74, 0x77, 0x9b, 0xef, 0x33, 0x0d, 0x3b, 0x06, 0x7e, 0x55, 0xfc +.byte 0xb5, 0x60, 0x8f, 0x76, 0x86, 0x12, 0x42, 0x7d, 0x56, 0x66, 0x3e, 0x88, 0x82, 0xed, 0x72, 0x63 +.byte 0x0e, 0x9e, 0x8b, 0xdd, 0x34, 0x2c, 0x02, 0x51, 0x51, 0xc3, 0x19, 0xfd, 0x59, 0x54, 0x84, 0xc9 +.byte 0xf1, 0x6b, 0xb3, 0x4c, 0xb0, 0xe9, 0xe8, 0x46, 0x5d, 0x38, 0xc6, 0xa2, 0xa7, 0x2e, 0x11, 0x57 +.byte 0xba, 0x82, 0x15, 0xa2, 0x9c, 0x8f, 0x6d, 0xb0, 0x99, 0x4a, 0x0a, 0xf2, 0xeb, 0x89, 0x70, 0x63 +.byte 0x4e, 0x79, 0xc4, 0xb7, 0x5b, 0xbd, 0xa2, 0x5d, 0xb1, 0xf2, 0x41, 0x02, 0x2b, 0xad, 0xa9, 0x3a +.byte 0xa3, 0xec, 0x79, 0x0a, 0xec, 0x5f, 0x3a, 0xe3, 0xfd, 0xef, 0x80, 0x3c, 0xad, 0x34, 0x9b, 0x1a +.byte 0xab, 0x88, 0x26, 0x7b, 0x56, 0xa2, 0x82, 0x86, 0x1f, 0xeb, 0x35, 0x89, 0x83, 0x7f, 0x5f, 0xae +.byte 0x29, 0x4e, 0x3d, 0xb6, 0x6e, 0xec, 0xae, 0xc1, 0xf0, 0x27, 0x9b, 0xae, 0xe3, 0xf4, 0xec, 0xef +.byte 0xae, 0x7f, 0xf7, 0x86, 0x3d, 0x72, 0x7a, 0xeb, 0xa5, 0xfb, 0x59, 0x4e, 0xa7, 0xeb, 0x95, 0x8c +.byte 0x22, 0x39, 0x79, 0xe1, 0x2d, 0x08, 0x8f, 0xcc, 0xbc, 0x91, 0xb8, 0x41, 0xf7, 0x14, 0xc1, 0x23 +.byte 0xa9, 0xc3, 0xad, 0x9a, 0x45, 0x44, 0xb3, 0xb2, 0xd7, 0x2c, 0xcd, 0xc6, 0x29, 0xe2, 0x50, 0x10 +.byte 0xae, 0x5c, 0xcb, 0x82, 0x8e, 0x17, 0x18, 0x36, 0x7d, 0x97, 0xe6, 0x88, 0x9a, 0xb0, 0x4d, 0x34 +.byte 0x09, 0xf4, 0x2c, 0xb9, 0x5a, 0x66, 0x2a, 0xb0, 0x17, 0x9b, 0x9e, 0x1e, 0x76, 0x9d, 0x4a, 0x66 +.byte 0x31, 0x41, 0xdf, 0x3f, 0xfb, 0xc5, 0x06, 0xef, 0x1b, 0xb6, 0x7e, 0x1a, 0x46, 0x36, 0xf7, 0x64 +.byte 0x63, 0x3b, 0xe3, 0x39, 0x18, 0x23, 0xe7, 0x67, 0x75, 0x14, 0xd5, 0x75, 0x57, 0x92, 0x37, 0xbd +.byte 0xbe, 0x6a, 0x1b, 0x26, 0x50, 0xf2, 0x36, 0x26, 0x06, 0x90, 0xc5, 0x70, 0x01, 0x64, 0x6d, 0x76 +.byte 0x66, 0xe1, 0x91, 0xdb, 0x6e, 0x07, 0xc0, 0x61, 0x80, 0x2e, 0xb2, 0x2e, 0x2f, 0x8c, 0x70, 0xa7 +.byte 0xd1, 0x3b, 0x3c, 0xb3, 0x91, 0xe4, 0x6e, 0xb6, 0xc4, 0x3b, 0x70, 0xf2, 0x6c, 0x92, 0x97, 0x09 +.byte 0xcd, 0x47, 0x7d, 0x18, 0xc0, 0xf3, 0xbb, 0x9e, 0x0f, 0xd6, 0x8b, 0xae, 0x07, 0xb6, 0x5a, 0x0f +.byte 0xce, 0x0b, 0x0c, 0x47, 0xa7, 0xe5, 0x3e, 0xb8, 0xbd, 0x7d, 0xc7, 0x9b, 0x35, 0xa0, 0x61, 0x97 +.byte 0x3a, 0x41, 0x75, 0x17, 0xcc, 0x2b, 0x96, 0x77, 0x2a, 0x92, 0x21, 0x1e, 0xd9, 0x95, 0x76, 0x20 +.byte 0x67, 0x68, 0xcf, 0x0d, 0xbd, 0xdf, 0xd6, 0x1f, 0x09, 0x6a, 0x9a, 0xe2, 0xcc, 0x73, 0x71, 0xa4 +.byte 0x2f, 0x7d, 0x12, 0x80, 0xb7, 0x53, 0x30, 0x46, 0x5e, 0x4b, 0x54, 0x99, 0x0f, 0x67, 0xc9, 0xa5 +.byte 0xc8, 0xf2, 0x20, 0xc1, 0x82, 0xec, 0x9d, 0x11, 0xdf, 0xc2, 0x02, 0xfb, 0x1a, 0x3b, 0xd1, 0xed +.byte 0x20, 0x9a, 0xef, 0x65, 0x64, 0x92, 0x10, 0x0d, 0x2a, 0xe2, 0xde, 0x70, 0xf1, 0x18, 0x67, 0x82 +.byte 0x8c, 0x61, 0xde, 0xb8, 0xbc, 0xd1, 0x2f, 0x9c, 0xfb, 0x0f, 0xd0, 0x2b, 0xed, 0x1b, 0x76, 0xb9 +.byte 0xe4, 0x39, 0x55, 0xf8, 0xf8, 0xa1, 0x1d, 0xb8, 0xaa, 0x80, 0x00, 0x4c, 0x82, 0xe7, 0xb2, 0x7f +.byte 0x09, 0xb8, 0xbc, 0x30, 0xa0, 0x2f, 0x0d, 0xf5, 0x52, 0x9e, 0x8e, 0xf7, 0x92, 0xb3, 0x0a, 0x00 +.byte 0x1d, 0x00, 0x54, 0x97, 0x06, 0xe0, 0xb1, 0x07, 0xd9, 0xc7, 0x0f, 0x5c, 0x65, 0x7d, 0x3c, 0x6d +.byte 0x59, 0x57, 0xe4, 0xed, 0xa5, 0x8d, 0xe9, 0x40, 0x53, 0x9f, 0x15, 0x4b, 0xa0, 0x71, 0xf6, 0x1a +.byte 0x21, 0xe3, 0xda, 0x70, 0x06, 0x21, 0x58, 0x14, 0x87, 0x85, 0x77, 0x79, 0xaa, 0x82, 0x79, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x64, 0x02, 0x26, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19 +.byte 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67 +.byte 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x18, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x65, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x34, 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, 0xbf, 0xe6, 0x90 +.byte 0x73, 0x68, 0xde, 0xbb, 0xe4, 0x5d, 0x4a, 0x3c, 0x30, 0x22, 0x30, 0x69, 0x33, 0xec, 0xc2, 0xa7 +.byte 0x25, 0x2e, 0xc9, 0x21, 0x3d, 0xf2, 0x8a, 0xd8, 0x59, 0xc2, 0xe1, 0x29, 0xa7, 0x3d, 0x58, 0xab +.byte 0x76, 0x9a, 0xcd, 0xae, 0x7b, 0x1b, 0x84, 0x0d, 0xc4, 0x30, 0x1f, 0xf3, 0x1b, 0xa4, 0x38, 0x16 +.byte 0xeb, 0x56, 0xc6, 0x97, 0x6d, 0x1d, 0xab, 0xb2, 0x79, 0xf2, 0xca, 0x11, 0xd2, 0xe4, 0x5f, 0xd6 +.byte 0x05, 0x3c, 0x52, 0x0f, 0x52, 0x1f, 0xc6, 0x9e, 0x15, 0xa5, 0x7e, 0xbe, 0x9f, 0xa9, 0x57, 0x16 +.byte 0x59, 0x55, 0x72, 0xaf, 0x68, 0x93, 0x70, 0xc2, 0xb2, 0xba, 0x75, 0x99, 0x6a, 0x73, 0x32, 0x94 +.byte 0xd1, 0x10, 0x44, 0x10, 0x2e, 0xdf, 0x82, 0xf3, 0x07, 0x84, 0xe6, 0x74, 0x3b, 0x6d, 0x71, 0xe2 +.byte 0x2d, 0x0c, 0x1b, 0xee, 0x20, 0xd5, 0xc9, 0x20, 0x1d, 0x63, 0x29, 0x2d, 0xce, 0xec, 0x5e, 0x4e +.byte 0xc8, 0x93, 0xf8, 0x21, 0x61, 0x9b, 0x34, 0xeb, 0x05, 0xc6, 0x5e, 0xec, 0x5b, 0x1a, 0xbc, 0xeb +.byte 0xc9, 0xcf, 0xcd, 0xac, 0x34, 0x40, 0x5f, 0xb1, 0x7a, 0x66, 0xee, 0x77, 0xc8, 0x48, 0xa8, 0x66 +.byte 0x57, 0x57, 0x9f, 0x54, 0x58, 0x8e, 0x0c, 0x2b, 0xb7, 0x4f, 0xa7, 0x30, 0xd9, 0x56, 0xee, 0xca +.byte 0x7b, 0x5d, 0xe3, 0xad, 0xc9, 0x4f, 0x5e, 0xe5, 0x35, 0xe7, 0x31, 0xcb, 0xda, 0x93, 0x5e, 0xdc +.byte 0x8e, 0x8f, 0x80, 0xda, 0xb6, 0x91, 0x98, 0x40, 0x90, 0x79, 0xc3, 0x78, 0xc7, 0xb6, 0xb1, 0xc4 +.byte 0xb5, 0x6a, 0x18, 0x38, 0x03, 0x10, 0x8d, 0xd8, 0xd4, 0x37, 0xa4, 0x2e, 0x05, 0x7d, 0x88, 0xf5 +.byte 0x82, 0x3e, 0x10, 0x91, 0x70, 0xab, 0x55, 0x82, 0x41, 0x32, 0xd7, 0xdb, 0x04, 0x73, 0x2a, 0x6e +.byte 0x91, 0x01, 0x7c, 0x21, 0x4c, 0xd4, 0xbc, 0xae, 0x1b, 0x03, 0x75, 0x5d, 0x78, 0x66, 0xd9, 0x3a +.byte 0x31, 0x44, 0x9a, 0x33, 0x40, 0xbf, 0x08, 0xd7, 0x5a, 0x49, 0xa4, 0xc2, 0xe6, 0xa9, 0xa0, 0x67 +.byte 0xdd, 0xa4, 0x27, 0xbc, 0xa1, 0x4f, 0x39, 0xb5, 0x11, 0x58, 0x17, 0xf7, 0x24, 0x5c, 0x46, 0x8f +.byte 0x64, 0xf7, 0xc1, 0x69, 0x88, 0x76, 0x98, 0x76, 0x3d, 0x59, 0x5d, 0x42, 0x76, 0x87, 0x89, 0x97 +.byte 0x69, 0x7a, 0x48, 0xf0, 0xe0, 0xa2, 0x12, 0x1b, 0x66, 0x9a, 0x74, 0xca, 0xde, 0x4b, 0x1e, 0xe7 +.byte 0x0e, 0x63, 0xae, 0xe6, 0xd4, 0xef, 0x92, 0x92, 0x3a, 0x9e, 0x3d, 0xdc, 0x00, 0xe4, 0x45, 0x25 +.byte 0x89, 0xb6, 0x9a, 0x44, 0x19, 0x2b, 0x7e, 0xc0, 0x94, 0xb4, 0xd2, 0x61, 0x6d, 0xeb, 0x33, 0xd9 +.byte 0xc5, 0xdf, 0x4b, 0x04, 0x00, 0xcc, 0x7d, 0x1c, 0x95, 0xc3, 0x8f, 0xf7, 0x21, 0xb2, 0xb2, 0x11 +.byte 0xb7, 0xbb, 0x7f, 0xf2, 0xd5, 0x8c, 0x70, 0x2c, 0x41, 0x60, 0xaa, 0xb1, 0x63, 0x18, 0x44, 0x95 +.byte 0x1a, 0x76, 0x62, 0x7e, 0xf6, 0x80, 0xb0, 0xfb, 0xe8, 0x64, 0xa6, 0x33, 0xd1, 0x89, 0x07, 0xe1 +.byte 0xbd, 0xb7, 0xe6, 0x43, 0xa4, 0x18, 0xb8, 0xa6, 0x77, 0x01, 0xe1, 0x0f, 0x94, 0x0c, 0x21, 0x1d +.byte 0xb2, 0x54, 0x29, 0x25, 0x89, 0x6c, 0xe5, 0x0e, 0x52, 0x51, 0x47, 0x74, 0xbe, 0x26, 0xac, 0xb6 +.byte 0x41, 0x75, 0xde, 0x7a, 0xac, 0x5f, 0x8d, 0x3f, 0xc9, 0xbc, 0xd3, 0x41, 0x11, 0x12, 0x5b, 0xe5 +.byte 0x10, 0x50, 0xeb, 0x31, 0xc5, 0xca, 0x72, 0x16, 0x22, 0x09, 0xdf, 0x7c, 0x4c, 0x75, 0x3f, 0x63 +.byte 0xec, 0x21, 0x5f, 0xc4, 0x20, 0x51, 0x6b, 0x6f, 0xb1, 0xab, 0x86, 0x8b, 0x4f, 0xc2, 0xd6, 0x45 +.byte 0x5f, 0x9d, 0x20, 0xfc, 0xa1, 0x1e, 0xc5, 0xc0, 0x8f, 0xa2, 0xb1, 0x7e, 0x0a, 0x26, 0x99, 0xf5 +.byte 0xe4, 0x69, 0x2f, 0x98, 0x1d, 0x2d, 0xf5, 0xd9, 0xa9, 0xb2, 0x1d, 0xe5, 0x1b, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x65, 0x01, 0x24, 0x30, 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18 +.byte 0x54, 0x68, 0x65, 0x20, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x47, 0x72, 0x6f +.byte 0x75, 0x70, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x43, 0x6c, 0x61, 0x73 +.byte 0x73, 0x20, 0x32, 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, 0x01, 0x20, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xde, 0x9d, 0xd7, 0xea +.byte 0x57, 0x18, 0x49, 0xa1, 0x5b, 0xeb, 0xd7, 0x5f, 0x48, 0x86, 0xea, 0xbe, 0xdd, 0xff, 0xe4, 0xef +.byte 0x67, 0x1c, 0xf4, 0x65, 0x68, 0xb3, 0x57, 0x71, 0xa0, 0x5e, 0x77, 0xbb, 0xed, 0x9b, 0x49, 0xe9 +.byte 0x70, 0x80, 0x3d, 0x56, 0x18, 0x63, 0x08, 0x6f, 0xda, 0xf2, 0xcc, 0xd0, 0x3f, 0x7f, 0x02, 0x54 +.byte 0x22, 0x54, 0x10, 0xd8, 0xb2, 0x81, 0xd4, 0xc0, 0x75, 0x3d, 0x4b, 0x7f, 0xc7, 0x77, 0xc3, 0x3e +.byte 0x78, 0xab, 0x1a, 0x03, 0xb5, 0x20, 0x6b, 0x2f, 0x6a, 0x2b, 0xb1, 0xc5, 0x88, 0x7e, 0xc4, 0xbb +.byte 0x1e, 0xb0, 0xc1, 0xd8, 0x45, 0x27, 0x6f, 0xaa, 0x37, 0x58, 0xf7, 0x87, 0x26, 0xd7, 0xd8, 0x2d +.byte 0xf6, 0xa9, 0x17, 0xb7, 0x1f, 0x72, 0x36, 0x4e, 0xa6, 0x17, 0x3f, 0x65, 0x98, 0x92, 0xdb, 0x2a +.byte 0x6e, 0x5d, 0xa2, 0xfe, 0x88, 0xe0, 0x0b, 0xde, 0x7f, 0xe5, 0x8d, 0x15, 0xe1, 0xeb, 0xcb, 0x3a +.byte 0xd5, 0xe2, 0x12, 0xa2, 0x13, 0x2d, 0xd8, 0x8e, 0xaf, 0x5f, 0x12, 0x3d, 0xa0, 0x08, 0x05, 0x08 +.byte 0xb6, 0x5c, 0xa5, 0x65, 0x38, 0x04, 0x45, 0x99, 0x1e, 0xa3, 0x60, 0x60, 0x74, 0xc5, 0x41, 0xa5 +.byte 0x72, 0x62, 0x1b, 0x62, 0xc5, 0x1f, 0x6f, 0x5f, 0x1a, 0x42, 0xbe, 0x02, 0x51, 0x65, 0xa8, 0xae +.byte 0x23, 0x18, 0x6a, 0xfc, 0x78, 0x03, 0xa9, 0x4d, 0x7f, 0x80, 0xc3, 0xfa, 0xab, 0x5a, 0xfc, 0xa1 +.byte 0x40, 0xa4, 0xca, 0x19, 0x16, 0xfe, 0xb2, 0xc8, 0xef, 0x5e, 0x73, 0x0d, 0xee, 0x77, 0xbd, 0x9a +.byte 0xf6, 0x79, 0x98, 0xbc, 0xb1, 0x07, 0x67, 0xa2, 0x15, 0x0d, 0xdd, 0xa0, 0x58, 0xc6, 0x44, 0x7b +.byte 0x0a, 0x3e, 0x62, 0x28, 0x5f, 0xba, 0x41, 0x07, 0x53, 0x58, 0xcf, 0x11, 0x7e, 0x38, 0x74, 0xc5 +.byte 0xf8, 0xff, 0xb5, 0x69, 0x90, 0x8f, 0x84, 0x74, 0xea, 0x97, 0x1b, 0xaf, 0x02, 0x01, 0x03, 0x00 +.byte 0x67, 0x01, 0x26, 0x30, 0x65, 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, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44 +.byte 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20 +.byte 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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, 0xad, 0x0e, 0x15, 0xce, 0xe4 +.byte 0x43, 0x80, 0x5c, 0xb1, 0x87, 0xf3, 0xb7, 0x60, 0xf9, 0x71, 0x12, 0xa5, 0xae, 0xdc, 0x26, 0x94 +.byte 0x88, 0xaa, 0xf4, 0xce, 0xf5, 0x20, 0x39, 0x28, 0x58, 0x60, 0x0c, 0xf8, 0x80, 0xda, 0xa9, 0x15 +.byte 0x95, 0x32, 0x61, 0x3c, 0xb5, 0xb1, 0x28, 0x84, 0x8a, 0x8a, 0xdc, 0x9f, 0x0a, 0x0c, 0x83, 0x17 +.byte 0x7a, 0x8f, 0x90, 0xac, 0x8a, 0xe7, 0x79, 0x53, 0x5c, 0x31, 0x84, 0x2a, 0xf6, 0x0f, 0x98, 0x32 +.byte 0x36, 0x76, 0xcc, 0xde, 0xdd, 0x3c, 0xa8, 0xa2, 0xef, 0x6a, 0xfb, 0x21, 0xf2, 0x52, 0x61, 0xdf +.byte 0x9f, 0x20, 0xd7, 0x1f, 0xe2, 0xb1, 0xd9, 0xfe, 0x18, 0x64, 0xd2, 0x12, 0x5b, 0x5f, 0xf9, 0x58 +.byte 0x18, 0x35, 0xbc, 0x47, 0xcd, 0xa1, 0x36, 0xf9, 0x6b, 0x7f, 0xd4, 0xb0, 0x38, 0x3e, 0xc1, 0x1b +.byte 0xc3, 0x8c, 0x33, 0xd9, 0xd8, 0x2f, 0x18, 0xfe, 0x28, 0x0f, 0xb3, 0xa7, 0x83, 0xd6, 0xc3, 0x6e +.byte 0x44, 0xc0, 0x61, 0x35, 0x96, 0x16, 0xfe, 0x59, 0x9c, 0x8b, 0x76, 0x6d, 0xd7, 0xf1, 0xa2, 0x4b +.byte 0x0d, 0x2b, 0xff, 0x0b, 0x72, 0xda, 0x9e, 0x60, 0xd0, 0x8e, 0x90, 0x35, 0xc6, 0x78, 0x55, 0x87 +.byte 0x20, 0xa1, 0xcf, 0xe5, 0x6d, 0x0a, 0xc8, 0x49, 0x7c, 0x31, 0x98, 0x33, 0x6c, 0x22, 0xe9, 0x87 +.byte 0xd0, 0x32, 0x5a, 0xa2, 0xba, 0x13, 0x82, 0x11, 0xed, 0x39, 0x17, 0x9d, 0x99, 0x3a, 0x72, 0xa1 +.byte 0xe6, 0xfa, 0xa4, 0xd9, 0xd5, 0x17, 0x31, 0x75, 0xae, 0x85, 0x7d, 0x22, 0xae, 0x3f, 0x01, 0x46 +.byte 0x86, 0xf6, 0x28, 0x79, 0xc8, 0xb1, 0xda, 0xe4, 0x57, 0x17, 0xc4, 0x7e, 0x1c, 0x0e, 0xb0, 0xb4 +.byte 0x92, 0xa6, 0x56, 0xb3, 0xbd, 0xb2, 0x97, 0xed, 0xaa, 0xa7, 0xf0, 0xb7, 0xc5, 0xa8, 0x3f, 0x95 +.byte 0x16, 0xd0, 0xff, 0xa1, 0x96, 0xeb, 0x08, 0x5f, 0x18, 0x77, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x67, 0x01, 0x26, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69 +.byte 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72 +.byte 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b +.byte 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64 +.byte 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0xd9, 0xe7, 0x28, 0x2f +.byte 0x52, 0x3f, 0x36, 0x72, 0x49, 0x88, 0x93, 0x34, 0xf3, 0xf8, 0x6a, 0x1e, 0x31, 0x54, 0x80, 0x9f +.byte 0xad, 0x54, 0x41, 0xb5, 0x47, 0xdf, 0x96, 0xa8, 0xd4, 0xaf, 0x80, 0x2d, 0xb9, 0x0a, 0xcf, 0x75 +.byte 0xfd, 0x89, 0xa5, 0x7d, 0x24, 0xfa, 0xe3, 0x22, 0x0c, 0x2b, 0xbc, 0x95, 0x17, 0x0b, 0x33, 0xbf +.byte 0x19, 0x4d, 0x41, 0x06, 0x90, 0x00, 0xbd, 0x0c, 0x4d, 0x10, 0xfe, 0x07, 0xb5, 0xe7, 0x1c, 0x6e +.byte 0x22, 0x55, 0x31, 0x65, 0x97, 0xbd, 0xd3, 0x17, 0xd2, 0x1e, 0x62, 0xf3, 0xdb, 0xea, 0x6c, 0x50 +.byte 0x8c, 0x3f, 0x84, 0x0c, 0x96, 0xcf, 0xb7, 0xcb, 0x03, 0xe0, 0xca, 0x6d, 0xa1, 0x14, 0x4c, 0x1b +.byte 0x89, 0xdd, 0xed, 0x00, 0xb0, 0x52, 0x7c, 0xaf, 0x91, 0x6c, 0xb1, 0x38, 0x13, 0xd1, 0xe9, 0x12 +.byte 0x08, 0xc0, 0x00, 0xb0, 0x1c, 0x2b, 0x11, 0xda, 0x77, 0x70, 0x36, 0x9b, 0xae, 0xce, 0x79, 0x87 +.byte 0xdc, 0x82, 0x70, 0xe6, 0x09, 0x74, 0x70, 0x55, 0x69, 0xaf, 0xa3, 0x68, 0x9f, 0xbf, 0xdd, 0xb6 +.byte 0x79, 0xb3, 0xf2, 0x9d, 0x70, 0x29, 0x55, 0xf4, 0xab, 0xff, 0x95, 0x61, 0xf3, 0xc9, 0x40, 0x6f +.byte 0x1d, 0xd1, 0xbe, 0x93, 0xbb, 0xd3, 0x88, 0x2a, 0xbb, 0x9d, 0xbf, 0x72, 0x5a, 0x56, 0x71, 0x3b +.byte 0x3f, 0xd4, 0xf3, 0xd1, 0x0a, 0xfe, 0x28, 0xef, 0xa3, 0xee, 0xd9, 0x99, 0xaf, 0x03, 0xd3, 0x8f +.byte 0x60, 0xb7, 0xf2, 0x92, 0xa1, 0xb1, 0xbd, 0x89, 0x89, 0x1f, 0x30, 0xcd, 0xc3, 0xa6, 0x2e, 0x62 +.byte 0x33, 0xae, 0x16, 0x02, 0x77, 0x44, 0x5a, 0xe7, 0x81, 0x0a, 0x3c, 0xa7, 0x44, 0x2e, 0x79, 0xb8 +.byte 0x3f, 0x04, 0xbc, 0x5c, 0xa0, 0x87, 0xe1, 0x1b, 0xaf, 0x51, 0x8e, 0xcd, 0xec, 0x2c, 0xfa, 0xf8 +.byte 0xfe, 0x6d, 0xf0, 0x3a, 0x7c, 0xaa, 0x8b, 0xe4, 0x67, 0x95, 0x31, 0x8d, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x67, 0x00, 0x78, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44 +.byte 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65 +.byte 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65 +.byte 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 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, 0x19, 0xe7, 0xbc, 0xac, 0x44, 0x65, 0xed, 0xcd, 0xb8, 0x3f, 0x58, 0xfb +.byte 0x8d, 0xb1, 0x57, 0xa9, 0x44, 0x2d, 0x05, 0x15, 0xf2, 0xef, 0x0b, 0xff, 0x10, 0x74, 0x9f, 0xb5 +.byte 0x62, 0x52, 0x5f, 0x66, 0x7e, 0x1f, 0xe5, 0xdc, 0x1b, 0x45, 0x79, 0x0b, 0xcc, 0xc6, 0x53, 0x0a +.byte 0x9d, 0x8d, 0x5d, 0x02, 0xd9, 0xa9, 0x59, 0xde, 0x02, 0x5a, 0xf6, 0x95, 0x2a, 0x0e, 0x8d, 0x38 +.byte 0x4a, 0x8a, 0x49, 0xc6, 0xbc, 0xc6, 0x03, 0x38, 0x07, 0x5f, 0x55, 0xda, 0x7e, 0x09, 0x6e, 0xe2 +.byte 0x7f, 0x5e, 0xd0, 0x45, 0x20, 0x0f, 0x59, 0x76, 0x10, 0xd6, 0xa0, 0x24, 0xf0, 0x2d, 0xde, 0x36 +.byte 0xf2, 0x6c, 0x29, 0x39, 0x00, 0x67, 0x00, 0x78, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x15, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70 +.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x2d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x45, 0x43, 0x43, 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, 0x32, 0x30, 0x31, 0x37, 0x30 +.byte 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81 +.byte 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xd4, 0xbc, 0x3d, 0x02, 0x42, 0x75, 0x41, 0x13, 0x23 +.byte 0xcd, 0x80, 0x04, 0x86, 0x02, 0x51, 0x2f, 0x6a, 0xa8, 0x81, 0x62, 0x0b, 0x65, 0xcc, 0xf6, 0xca +.byte 0x9d, 0x1e, 0x6f, 0x4a, 0x66, 0x51, 0xa2, 0x03, 0xd9, 0x9d, 0x91, 0xfa, 0xb6, 0x16, 0xb1, 0x8c +.byte 0x6e, 0xde, 0x7c, 0xcd, 0xdb, 0x79, 0xa6, 0x2f, 0xce, 0xbb, 0xce, 0x71, 0x2f, 0xe5, 0xa5, 0xab +.byte 0x28, 0xec, 0x63, 0x04, 0x66, 0x99, 0xf8, 0xfa, 0xf2, 0x93, 0x10, 0x05, 0xe1, 0x81, 0x28, 0x42 +.byte 0xe3, 0xc6, 0x68, 0xf4, 0xe6, 0x1b, 0x84, 0x60, 0x4a, 0x89, 0xaf, 0xed, 0x79, 0x0f, 0x3b, 0xce +.byte 0xf1, 0xf6, 0x44, 0xf5, 0x01, 0x78, 0xc0, 0x00, 0x67, 0x02, 0x26, 0x30, 0x65, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43 +.byte 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x52 +.byte 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 +.byte 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30 +.byte 0x31, 0x37, 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, 0xca, 0x5b, 0xbe, 0x94, 0x33, 0x8c, 0x29, 0x95, 0x91, 0x16, 0x0a, 0x95, 0xbd +.byte 0x47, 0x62, 0xc1, 0x89, 0xf3, 0x99, 0x36, 0xdf, 0x46, 0x90, 0xc9, 0xa5, 0xed, 0x78, 0x6a, 0x6f +.byte 0x47, 0x91, 0x68, 0xf8, 0x27, 0x67, 0x50, 0x33, 0x1d, 0xa1, 0xa6, 0xfb, 0xe0, 0xe5, 0x43, 0xa3 +.byte 0x84, 0x02, 0x57, 0x01, 0x5d, 0x9c, 0x48, 0x40, 0x82, 0x53, 0x10, 0xbc, 0xbf, 0xc7, 0x3b, 0x68 +.byte 0x90, 0xb6, 0x82, 0x2d, 0xe5, 0xf4, 0x65, 0xd0, 0xcc, 0x6d, 0x19, 0xcc, 0x95, 0xf9, 0x7b, 0xac +.byte 0x4a, 0x94, 0xad, 0x0e, 0xde, 0x4b, 0x43, 0x1d, 0x87, 0x07, 0x92, 0x13, 0x90, 0x80, 0x83, 0x64 +.byte 0x35, 0x39, 0x04, 0xfc, 0xe5, 0xe9, 0x6c, 0xb3, 0xb6, 0x1f, 0x50, 0x94, 0x38, 0x65, 0x50, 0x5c +.byte 0x17, 0x46, 0xb9, 0xb6, 0x85, 0xb5, 0x1c, 0xb5, 0x17, 0xe8, 0xd6, 0x45, 0x9d, 0xd8, 0xb2, 0x26 +.byte 0xb0, 0xca, 0xc4, 0x70, 0x4a, 0xae, 0x60, 0xa4, 0xdd, 0xb3, 0xd9, 0xec, 0xfc, 0x3b, 0xd5, 0x57 +.byte 0x72, 0xbc, 0x3f, 0xc8, 0xc9, 0xb2, 0xde, 0x4b, 0x6b, 0xf8, 0x23, 0x6c, 0x03, 0xc0, 0x05, 0xbd +.byte 0x95, 0xc7, 0xcd, 0x73, 0x3b, 0x66, 0x80, 0x64, 0xe3, 0x1a, 0xac, 0x2e, 0xf9, 0x47, 0x05, 0xf2 +.byte 0x06, 0xb6, 0x9b, 0x73, 0xf5, 0x78, 0x33, 0x5b, 0xc7, 0xa1, 0xfb, 0x27, 0x2a, 0xa1, 0xb4, 0x9a +.byte 0x91, 0x8c, 0x91, 0xd3, 0x3a, 0x82, 0x3e, 0x76, 0x40, 0xb4, 0xcd, 0x52, 0x61, 0x51, 0x70, 0x28 +.byte 0x3f, 0xc5, 0xc5, 0x5a, 0xf2, 0xc9, 0x8c, 0x49, 0xbb, 0x14, 0x5b, 0x4d, 0xc8, 0xff, 0x67, 0x4d +.byte 0x4c, 0x12, 0x96, 0xad, 0xf5, 0xfe, 0x78, 0xa8, 0x97, 0x87, 0xd7, 0xfd, 0x5e, 0x20, 0x80, 0xdc +.byte 0xa1, 0x4b, 0x22, 0xfb, 0xd4, 0x89, 0xad, 0xba, 0xce, 0x47, 0x97, 0x47, 0x55, 0x7b, 0x8f, 0x45 +.byte 0xc8, 0x67, 0x28, 0x84, 0x95, 0x1c, 0x68, 0x30, 0xef, 0xef, 0x49, 0xe0, 0x35, 0x7b, 0x64, 0xe7 +.byte 0x98, 0xb0, 0x94, 0xda, 0x4d, 0x85, 0x3b, 0x3e, 0x55, 0xc4, 0x28, 0xaf, 0x57, 0xf3, 0x9e, 0x13 +.byte 0xdb, 0x46, 0x27, 0x9f, 0x1e, 0xa2, 0x5e, 0x44, 0x83, 0xa4, 0xa5, 0xca, 0xd5, 0x13, 0xb3, 0x4b +.byte 0x3f, 0xc4, 0xe3, 0xc2, 0xe6, 0x86, 0x61, 0xa4, 0x52, 0x30, 0xb9, 0x7a, 0x20, 0x4f, 0x6f, 0x0f +.byte 0x38, 0x53, 0xcb, 0x33, 0x0c, 0x13, 0x2b, 0x8f, 0xd6, 0x9a, 0xbd, 0x2a, 0xc8, 0x2d, 0xb1, 0x1c +.byte 0x7d, 0x4b, 0x51, 0xca, 0x47, 0xd1, 0x48, 0x27, 0x72, 0x5d, 0x87, 0xeb, 0xd5, 0x45, 0xe6, 0x48 +.byte 0x65, 0x9d, 0xaf, 0x52, 0x90, 0xba, 0x5b, 0xa2, 0x18, 0x65, 0x57, 0x12, 0x9f, 0x68, 0xb9, 0xd4 +.byte 0x15, 0x6b, 0x94, 0xc4, 0x69, 0x22, 0x98, 0xf4, 0x33, 0xe0, 0xed, 0xf9, 0x51, 0x8e, 0x41, 0x50 +.byte 0xc9, 0x34, 0x4f, 0x76, 0x90, 0xac, 0xfc, 0x38, 0xc1, 0xd8, 0xe1, 0x7b, 0xb9, 0xe3, 0xe3, 0x94 +.byte 0xe1, 0x46, 0x69, 0xcb, 0x0e, 0x0a, 0x50, 0x6b, 0x13, 0xba, 0xac, 0x0f, 0x37, 0x5a, 0xb7, 0x12 +.byte 0xb5, 0x90, 0x81, 0x1e, 0x56, 0xae, 0x57, 0x22, 0x86, 0xd9, 0xc9, 0xd2, 0xd1, 0xd7, 0x51, 0xe3 +.byte 0xab, 0x3b, 0xc6, 0x55, 0xfd, 0x1e, 0x0e, 0xd3, 0x74, 0x0a, 0xd1, 0xda, 0xaa, 0xea, 0x69, 0xb8 +.byte 0x97, 0x28, 0x8f, 0x48, 0xc4, 0x07, 0xf8, 0x52, 0x43, 0x3a, 0xf4, 0xca, 0x55, 0x35, 0x2c, 0xb0 +.byte 0xa6, 0x6a, 0xc0, 0x9c, 0xf9, 0xf2, 0x81, 0xe1, 0x12, 0x6a, 0xc0, 0x45, 0xd9, 0x67, 0xb3, 0xce +.byte 0xff, 0x23, 0xa2, 0x89, 0x0a, 0x54, 0xd4, 0x14, 0xb9, 0x2a, 0xa8, 0xd7, 0xec, 0xf9, 0xab, 0xcd +.byte 0x25, 0x58, 0x32, 0x79, 0x8f, 0x90, 0x5b, 0x98, 0x39, 0xc4, 0x08, 0x06, 0xc1, 0xac, 0x7f, 0x0e +.byte 0x3d, 0x00, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x69, 0x01, 0x26, 0x30, 0x67, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30, 0x11, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49 +.byte 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75, 0x64, 0x68 +.byte 0x72, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20 +.byte 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x2d, 0x20, 0x47, 0x31, 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, 0x93, 0x4b, 0xbb, 0xe9, 0x66, 0x8a, 0xee, 0x9d, 0x5b, 0xd5 +.byte 0x34, 0x93, 0xd0, 0x1b, 0x1e, 0xc3, 0xe7, 0x9e, 0xb8, 0x64, 0x33, 0x7f, 0x63, 0x78, 0x68, 0xb4 +.byte 0xcd, 0x2e, 0x71, 0x75, 0xd7, 0x9b, 0x20, 0xc6, 0x4d, 0x29, 0xbc, 0xb6, 0x68, 0x60, 0x8a, 0xf7 +.byte 0x21, 0x9a, 0x56, 0x35, 0x5a, 0xf3, 0x76, 0xbd, 0xd8, 0xcd, 0x9a, 0xff, 0x93, 0x56, 0x4b, 0xa5 +.byte 0x59, 0x06, 0xa1, 0x93, 0x34, 0x29, 0xdd, 0x16, 0x34, 0x75, 0x4e, 0xf2, 0x81, 0xb4, 0xc7, 0x96 +.byte 0x4e, 0xad, 0x19, 0x15, 0x52, 0x4a, 0xfe, 0x3c, 0x70, 0x75, 0x70, 0xcd, 0xaf, 0x2b, 0xab, 0x15 +.byte 0x9a, 0x33, 0x3c, 0xaa, 0xb3, 0x8b, 0xaa, 0xcd, 0x43, 0xfd, 0xf5, 0xea, 0x70, 0xff, 0xed, 0xcf +.byte 0x11, 0x3b, 0x94, 0xce, 0x4e, 0x32, 0x16, 0xd3, 0x23, 0x40, 0x2a, 0x77, 0xb3, 0xaf, 0x3c, 0x01 +.byte 0x2c, 0x6c, 0xed, 0x99, 0x2c, 0x8b, 0xd9, 0x4e, 0x69, 0x98, 0xb2, 0xf7, 0x8f, 0x41, 0xb0, 0x32 +.byte 0x78, 0x61, 0xd6, 0x0d, 0x5f, 0xc3, 0xfa, 0xa2, 0x40, 0x92, 0x1d, 0x5c, 0x17, 0xe6, 0x70, 0x3e +.byte 0x35, 0xe7, 0xa2, 0xb7, 0xc2, 0x62, 0xe2, 0xab, 0xa4, 0x38, 0x4c, 0xb5, 0x39, 0x35, 0x6f, 0xea +.byte 0x03, 0x69, 0xfa, 0x3a, 0x54, 0x68, 0x85, 0x6d, 0xd6, 0xf2, 0x2f, 0x43, 0x55, 0x1e, 0x91, 0x0d +.byte 0x0e, 0xd8, 0xd5, 0x6a, 0xa4, 0x96, 0xd1, 0x13, 0x3c, 0x2c, 0x78, 0x50, 0xe8, 0x3a, 0x92, 0xd2 +.byte 0x17, 0x56, 0xe5, 0x35, 0x1a, 0x40, 0x1c, 0x3e, 0x8d, 0x2c, 0xed, 0x39, 0xdf, 0x42, 0xe0, 0x83 +.byte 0x41, 0x74, 0xdf, 0xa3, 0xcd, 0xc2, 0x86, 0x60, 0x48, 0x68, 0xe3, 0x69, 0x0b, 0x54, 0x00, 0x8b +.byte 0xe4, 0x76, 0x69, 0x21, 0x0d, 0x79, 0x4e, 0x34, 0x08, 0x5e, 0x14, 0xc2, 0xcc, 0xb1, 0xb7, 0xad +.byte 0xd7, 0x7c, 0x70, 0x8a, 0xc7, 0x85, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6a, 0x01, 0x24, 0x30 +.byte 0x68, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x25 +.byte 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65 +.byte 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c +.byte 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x29 +.byte 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20 +.byte 0x32, 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, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d +.byte 0x00, 0x30, 0x82, 0x01, 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb7, 0x32, 0xc8, 0xfe, 0xe9, 0x71 +.byte 0xa6, 0x04, 0x85, 0xad, 0x0c, 0x11, 0x64, 0xdf, 0xce, 0x4d, 0xef, 0xc8, 0x03, 0x18, 0x87, 0x3f +.byte 0xa1, 0xab, 0xfb, 0x3c, 0xa6, 0x9f, 0xf0, 0xc3, 0xa1, 0xda, 0xd4, 0xd8, 0x6e, 0x2b, 0x53, 0x90 +.byte 0xfb, 0x24, 0xa4, 0x3e, 0x84, 0xf0, 0x9e, 0xe8, 0x5f, 0xec, 0xe5, 0x27, 0x44, 0xf5, 0x28, 0xa6 +.byte 0x3f, 0x7b, 0xde, 0xe0, 0x2a, 0xf0, 0xc8, 0xaf, 0x53, 0x2f, 0x9e, 0xca, 0x05, 0x01, 0x93, 0x1e +.byte 0x8f, 0x66, 0x1c, 0x39, 0xa7, 0x4d, 0xfa, 0x5a, 0xb6, 0x73, 0x04, 0x25, 0x66, 0xeb, 0x77, 0x7f +.byte 0xe7, 0x59, 0xc6, 0x4a, 0x99, 0x25, 0x14, 0x54, 0xeb, 0x26, 0xc7, 0xf3, 0x7f, 0x19, 0xd5, 0x30 +.byte 0x70, 0x8f, 0xaf, 0xb0, 0x46, 0x2a, 0xff, 0xad, 0xeb, 0x29, 0xed, 0xd7, 0x9f, 0xaa, 0x04, 0x87 +.byte 0xa3, 0xd4, 0xf9, 0x89, 0xa5, 0x34, 0x5f, 0xdb, 0x43, 0x91, 0x82, 0x36, 0xd9, 0x66, 0x3c, 0xb1 +.byte 0xb8, 0xb9, 0x82, 0xfd, 0x9c, 0x3a, 0x3e, 0x10, 0xc8, 0x3b, 0xef, 0x06, 0x65, 0x66, 0x7a, 0x9b +.byte 0x19, 0x18, 0x3d, 0xff, 0x71, 0x51, 0x3c, 0x30, 0x2e, 0x5f, 0xbe, 0x3d, 0x77, 0x73, 0xb2, 0x5d +.byte 0x06, 0x6c, 0xc3, 0x23, 0x56, 0x9a, 0x2b, 0x85, 0x26, 0x92, 0x1c, 0xa7, 0x02, 0xb3, 0xe4, 0x3f +.byte 0x0d, 0xaf, 0x08, 0x79, 0x82, 0xb8, 0x36, 0x3d, 0xea, 0x9c, 0xd3, 0x35, 0xb3, 0xbc, 0x69, 0xca +.byte 0xf5, 0xcc, 0x9d, 0xe8, 0xfd, 0x64, 0x8d, 0x17, 0x80, 0x33, 0x6e, 0x5e, 0x4a, 0x5d, 0x99, 0xc9 +.byte 0x1e, 0x87, 0xb4, 0x9d, 0x1a, 0xc0, 0xd5, 0x6e, 0x13, 0x35, 0x23, 0x5e, 0xdf, 0x9b, 0x5f, 0x3d +.byte 0xef, 0xd6, 0xf7, 0x76, 0xc2, 0xea, 0x3e, 0xbb, 0x78, 0x0d, 0x1c, 0x42, 0x67, 0x6b, 0x04, 0xd8 +.byte 0xf8, 0xd6, 0xda, 0x6f, 0x8b, 0xf2, 0x44, 0xa0, 0x01, 0xab, 0x02, 0x01, 0x03, 0x00, 0x6b, 0x02 +.byte 0x26, 0x30, 0x69, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4b, 0x52 +.byte 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x4e, 0x41, 0x56, 0x45, 0x52 +.byte 0x20, 0x42, 0x55, 0x53, 0x49, 0x4e, 0x45, 0x53, 0x53, 0x20, 0x50, 0x4c, 0x41, 0x54, 0x46, 0x4f +.byte 0x52, 0x4d, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x29, 0x4e, 0x41, 0x56, 0x45, 0x52, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 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, 0xb6, 0xd4, 0xf1 +.byte 0x93, 0x5c, 0xb5, 0x40, 0x89, 0x0a, 0xab, 0x0d, 0x90, 0x5b, 0x50, 0x63, 0xae, 0x90, 0x94, 0x74 +.byte 0x17, 0x45, 0x72, 0xd6, 0x7b, 0x65, 0x5a, 0x29, 0x4b, 0xa7, 0x56, 0xa0, 0x4b, 0xb8, 0x2f, 0x42 +.byte 0x75, 0xe9, 0xd9, 0x7b, 0x24, 0x5a, 0x31, 0x65, 0xab, 0x17, 0x17, 0xd1, 0x33, 0x3a, 0xd9, 0x11 +.byte 0xdc, 0x40, 0x36, 0x87, 0xdf, 0xc7, 0x6a, 0xe9, 0x26, 0x5e, 0x59, 0x8a, 0x77, 0xe3, 0xe8, 0x48 +.byte 0x9c, 0x31, 0x16, 0xfa, 0x3e, 0x91, 0xb1, 0xca, 0xc9, 0xa3, 0xe2, 0x9f, 0xce, 0x21, 0x53, 0xa3 +.byte 0x02, 0x36, 0x30, 0xcb, 0x52, 0x02, 0xe5, 0xda, 0x32, 0x5d, 0xc3, 0xc5, 0xe6, 0xf9, 0xee, 0x11 +.byte 0xc7, 0x8b, 0xc9, 0x44, 0x1e, 0x84, 0x93, 0x18, 0x4a, 0xb4, 0x9f, 0xe5, 0x12, 0x64, 0x69, 0xd0 +.byte 0x26, 0x85, 0x62, 0x01, 0xb6, 0xc9, 0x02, 0x1d, 0xbe, 0x83, 0x51, 0xbb, 0x5c, 0xda, 0xf8, 0xad +.byte 0x15, 0x6a, 0x99, 0xf7, 0x92, 0x54, 0xf7, 0x34, 0x5b, 0xe9, 0xbf, 0xea, 0x29, 0x81, 0x12, 0xd4 +.byte 0x53, 0x91, 0x96, 0xb3, 0x91, 0x5a, 0xdd, 0xfe, 0x90, 0x73, 0x28, 0xfb, 0x30, 0x46, 0xb5, 0xca +.byte 0x08, 0x07, 0xc7, 0x71, 0x72, 0xc9, 0x66, 0xd3, 0x34, 0x97, 0xf6, 0x8c, 0xf4, 0x18, 0x4a, 0xe1 +.byte 0xd0, 0x3d, 0x5a, 0x45, 0xb6, 0x69, 0xa7, 0x29, 0xfb, 0x23, 0xce, 0x88, 0xd8, 0x12, 0x9c, 0x00 +.byte 0x48, 0xa8, 0xa6, 0x0f, 0xb3, 0x3b, 0x92, 0x8d, 0x71, 0x0e, 0x74, 0xc5, 0x8b, 0xc8, 0x4c, 0xf9 +.byte 0xf4, 0x9b, 0x8e, 0xb8, 0x3c, 0x69, 0xed, 0x6f, 0x3b, 0x50, 0x2f, 0x58, 0xed, 0xc4, 0xb0, 0xd0 +.byte 0x1c, 0x1b, 0x6a, 0x0c, 0xe2, 0xbc, 0x44, 0xaa, 0xd8, 0xcd, 0x14, 0x5d, 0x94, 0x78, 0x61, 0xbf +.byte 0x0e, 0x6e, 0xda, 0x2a, 0xbc, 0x2f, 0x0c, 0x0b, 0x71, 0xa6, 0xb3, 0x16, 0x3f, 0x9c, 0xe6, 0xf9 +.byte 0xcc, 0x9f, 0x53, 0x35, 0xe2, 0x03, 0xa0, 0xa0, 0x18, 0xbf, 0xbb, 0xf1, 0xbe, 0xf4, 0xd6, 0x8c +.byte 0x87, 0x0d, 0x42, 0xf7, 0x06, 0xb9, 0xf1, 0x6d, 0xed, 0x04, 0x94, 0xa8, 0xfe, 0xb6, 0xd3, 0x06 +.byte 0xc6, 0x40, 0x61, 0xdf, 0x9d, 0x9d, 0xf3, 0x54, 0x76, 0xce, 0x53, 0x3a, 0x01, 0xa6, 0x92, 0x41 +.byte 0xec, 0x04, 0xa3, 0x8f, 0x0d, 0xa2, 0xd5, 0x09, 0xca, 0xd6, 0xcb, 0x9a, 0xf1, 0xef, 0x43, 0x5d +.byte 0xc0, 0xab, 0xa5, 0x41, 0xcf, 0x5c, 0x53, 0x70, 0x70, 0xc9, 0x88, 0xa6, 0x2d, 0xd4, 0x6b, 0x61 +.byte 0x73, 0x50, 0x26, 0x86, 0x61, 0x0e, 0x5f, 0x1b, 0xc2, 0x2b, 0xe2, 0x8c, 0xd5, 0xbb, 0x9d, 0xc1 +.byte 0x03, 0x42, 0xba, 0x94, 0xda, 0x5f, 0xa9, 0xb0, 0xca, 0xcc, 0x4d, 0x0a, 0xef, 0x47, 0x69, 0x03 +.byte 0x2f, 0x22, 0xfb, 0xf1, 0x28, 0xce, 0xbf, 0x5d, 0x50, 0x65, 0xa8, 0x90, 0x6d, 0xb3, 0x74, 0xb0 +.byte 0x08, 0xc7, 0xac, 0xa8, 0xd1, 0xeb, 0x3e, 0x9c, 0xfc, 0x5d, 0x1a, 0x83, 0x2e, 0x2b, 0xcb, 0xb5 +.byte 0xf3, 0x44, 0x9d, 0x3a, 0xa7, 0x17, 0x61, 0x96, 0xa2, 0x71, 0xd3, 0x70, 0x96, 0x15, 0x4d, 0xb7 +.byte 0x4c, 0x73, 0xee, 0x19, 0x5c, 0xc5, 0x5b, 0x3e, 0x41, 0xfe, 0xac, 0x75, 0x60, 0x3b, 0x1b, 0x63 +.byte 0xce, 0x00, 0xdd, 0xda, 0x08, 0x90, 0x62, 0xb4, 0xe5, 0x2d, 0xee, 0x48, 0xa7, 0x6b, 0x17, 0x99 +.byte 0x54, 0xbe, 0x87, 0x4a, 0xe3, 0xa9, 0x5e, 0x04, 0x4c, 0xeb, 0x10, 0x6d, 0x54, 0xd6, 0xef, 0xf1 +.byte 0xe8, 0xf2, 0x62, 0x16, 0xcb, 0x80, 0x6b, 0xed, 0x3d, 0xed, 0xf5, 0x1f, 0x30, 0xa5, 0xae, 0x4b +.byte 0xc9, 0x13, 0xed, 0x8a, 0x01, 0x01, 0xc9, 0xb8, 0x51, 0x58, 0xc0, 0x66, 0x3a, 0xb1, 0x66, 0x4b +.byte 0xc4, 0xd5, 0x31, 0x02, 0x62, 0xe9, 0x74, 0x84, 0x0c, 0xdb, 0x4d, 0x46, 0x2d, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x6d, 0x00, 0x78, 0x30, 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a +.byte 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63 +.byte 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65 +.byte 0x64, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69 +.byte 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d +.byte 0x20, 0x47, 0x33, 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, 0x23, 0xa5, 0x0c, 0xb8, 0x2d +.byte 0x12, 0xf5, 0x28, 0xf3, 0xb1, 0xb2, 0xdd, 0xe2, 0x02, 0x12, 0x80, 0x9e, 0x39, 0x5f, 0x49, 0x4d +.byte 0x9f, 0xc9, 0x25, 0x34, 0x59, 0x74, 0xec, 0xbb, 0x06, 0x1c, 0xe7, 0xc0, 0x72, 0xaf, 0xe8, 0xae +.byte 0x2f, 0xe1, 0x41, 0x54, 0x87, 0x14, 0xa8, 0x4a, 0xb2, 0xe8, 0x7c, 0x82, 0xe6, 0x5b, 0x6a, 0xb5 +.byte 0xdc, 0xb3, 0x75, 0xce, 0x8b, 0x06, 0xd0, 0x86, 0x23, 0xbf, 0x46, 0xd5, 0x8e, 0x0f, 0x3f, 0x04 +.byte 0xf4, 0xd7, 0x1c, 0x92, 0x7e, 0xf6, 0xa5, 0x63, 0xc2, 0xf5, 0x5f, 0x8e, 0x2e, 0x4f, 0xa1, 0x18 +.byte 0x19, 0x02, 0x2b, 0x32, 0x0a, 0x82, 0x64, 0x7d, 0x16, 0x93, 0xd1, 0x00, 0x6d, 0x02, 0x26, 0x30 +.byte 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x54, 0x31, 0x0e +.byte 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x05, 0x4d, 0x69, 0x6c, 0x61, 0x6e, 0x31, 0x23 +.byte 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73 +.byte 0x20, 0x53, 0x2e, 0x70, 0x2e, 0x41, 0x2e, 0x2f, 0x30, 0x33, 0x33, 0x35, 0x38, 0x35, 0x32, 0x30 +.byte 0x39, 0x36, 0x37, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x41, 0x63 +.byte 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 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, 0xa7, 0xc6, 0xc4 +.byte 0xa5, 0x29, 0xa4, 0x2c, 0xef, 0xe5, 0x18, 0xc5, 0xb0, 0x50, 0xa3, 0x6f, 0x51, 0x3b, 0x9f, 0x0a +.byte 0x5a, 0xc9, 0xc2, 0x48, 0x38, 0x0a, 0xc2, 0x1c, 0xa0, 0x18, 0x7f, 0x91, 0xb5, 0x87, 0xb9, 0x40 +.byte 0x3f, 0xdd, 0x1d, 0x68, 0x1f, 0x08, 0x83, 0xd5, 0x2d, 0x1e, 0x88, 0xa0, 0xf8, 0x8f, 0x56, 0x8f +.byte 0x6d, 0x99, 0x02, 0x92, 0x90, 0x16, 0xd5, 0x5f, 0x08, 0x6c, 0x89, 0xd7, 0xe1, 0xac, 0xbc, 0x20 +.byte 0xc2, 0xb1, 0xe0, 0x83, 0x51, 0x8a, 0x69, 0x4d, 0x00, 0x96, 0x5a, 0x6f, 0x2f, 0xc0, 0x44, 0x7e +.byte 0xa3, 0x0e, 0xe4, 0x91, 0xcd, 0x58, 0xee, 0xdc, 0xfb, 0xc7, 0x1e, 0x45, 0x47, 0xdd, 0x27, 0xb9 +.byte 0x08, 0x01, 0x9f, 0xa6, 0x21, 0x1d, 0xf5, 0x41, 0x2d, 0x2f, 0x4c, 0xfd, 0x28, 0xad, 0xe0, 0x8a +.byte 0xad, 0x22, 0xb4, 0x56, 0x65, 0x8e, 0x86, 0x54, 0x8f, 0x93, 0x43, 0x29, 0xde, 0x39, 0x46, 0x78 +.byte 0xa3, 0x30, 0x23, 0xba, 0xcd, 0xf0, 0x7d, 0x13, 0x57, 0xc0, 0x5d, 0xd2, 0x83, 0x6b, 0x48, 0x4c +.byte 0xc4, 0xab, 0x9f, 0x80, 0x5a, 0x5b, 0x3a, 0xbd, 0xc9, 0xa7, 0x22, 0x3f, 0x80, 0x27, 0x33, 0x5b +.byte 0x0e, 0xb7, 0x8a, 0x0c, 0x5d, 0x07, 0x37, 0x08, 0xcb, 0x6c, 0xd2, 0x7a, 0x47, 0x22, 0x44, 0x35 +.byte 0xc5, 0xcc, 0xcc, 0x2e, 0x8e, 0xdd, 0x2a, 0xed, 0xb7, 0x7d, 0x66, 0x0d, 0x5f, 0x61, 0x51, 0x22 +.byte 0x55, 0x1b, 0xe3, 0x46, 0xe3, 0xe3, 0x3d, 0xd0, 0x35, 0x62, 0x9a, 0xdb, 0xaf, 0x14, 0xc8, 0x5b +.byte 0xa1, 0xcc, 0x89, 0x1b, 0xe1, 0x30, 0x26, 0xfc, 0xa0, 0x9b, 0x1f, 0x81, 0xa7, 0x47, 0x1f, 0x04 +.byte 0xeb, 0xa3, 0x39, 0x92, 0x06, 0x9f, 0x99, 0xd3, 0xbf, 0xd3, 0xea, 0x4f, 0x50, 0x9c, 0x19, 0xfe +.byte 0x96, 0x87, 0x1e, 0x3c, 0x65, 0xf6, 0xa3, 0x18, 0x24, 0x83, 0x86, 0x10, 0xe7, 0x54, 0x3e, 0xa8 +.byte 0x3a, 0x76, 0x24, 0x4f, 0x81, 0x21, 0xc5, 0xe3, 0x0f, 0x02, 0xf8, 0x93, 0x94, 0x47, 0x20, 0xbb +.byte 0xfe, 0xd4, 0x0e, 0xd3, 0x68, 0xb9, 0xdd, 0xc4, 0x7a, 0x84, 0x82, 0xe3, 0x53, 0x54, 0x79, 0xdd +.byte 0xdb, 0x9c, 0xd2, 0xf2, 0x07, 0x9b, 0x2e, 0xb6, 0xbc, 0x3e, 0xed, 0x85, 0x6d, 0xef, 0x25, 0x11 +.byte 0xf2, 0x97, 0x1a, 0x42, 0x61, 0xf7, 0x4a, 0x97, 0xe8, 0x8b, 0xb1, 0x10, 0x07, 0xfa, 0x65, 0x81 +.byte 0xb2, 0xa2, 0x39, 0xcf, 0xf7, 0x3c, 0xff, 0x18, 0xfb, 0xc6, 0xf1, 0x5a, 0x8b, 0x59, 0xe2, 0x02 +.byte 0xac, 0x7b, 0x92, 0xd0, 0x4e, 0x14, 0x4f, 0x59, 0x45, 0xf6, 0x0c, 0x5e, 0x28, 0x5f, 0xb0, 0xe8 +.byte 0x3f, 0x45, 0xcf, 0xcf, 0xaf, 0x9b, 0x6f, 0xfb, 0x84, 0xd3, 0x77, 0x5a, 0x95, 0x6f, 0xac, 0x94 +.byte 0x84, 0x9e, 0xee, 0xbc, 0xc0, 0x4a, 0x8f, 0x4a, 0x93, 0xf8, 0x44, 0x21, 0xe2, 0x31, 0x45, 0x61 +.byte 0x50, 0x4e, 0x10, 0xd8, 0xe3, 0x35, 0x7c, 0x4c, 0x19, 0xb4, 0xde, 0x05, 0xbf, 0xa3, 0x06, 0x9f +.byte 0xc8, 0xb5, 0xcd, 0xe4, 0x1f, 0xd7, 0x17, 0x06, 0x0d, 0x7a, 0x95, 0x74, 0x55, 0x0d, 0x68, 0x1a +.byte 0xfc, 0x10, 0x1b, 0x62, 0x64, 0x9d, 0x6d, 0xe0, 0x95, 0xa0, 0xc3, 0x94, 0x07, 0x57, 0x0d, 0x14 +.byte 0xe6, 0xbd, 0x05, 0xfb, 0xb8, 0x9f, 0xe6, 0xdf, 0x8b, 0xe2, 0xc6, 0xe7, 0x7e, 0x96, 0xf6, 0x53 +.byte 0xc5, 0x80, 0x34, 0x50, 0x28, 0x58, 0xf0, 0x12, 0x50, 0x71, 0x17, 0x30, 0xba, 0xe6, 0x78, 0x63 +.byte 0xbc, 0xf4, 0xb2, 0xad, 0x9b, 0x2b, 0xb2, 0xfe, 0xe1, 0x39, 0x8c, 0x5e, 0xba, 0x0b, 0x20, 0x94 +.byte 0xde, 0x7b, 0x83, 0xb8, 0xff, 0xe3, 0x56, 0x8d, 0xb7, 0x11, 0xe9, 0x3b, 0x8c, 0xf2, 0xb1, 0xc1 +.byte 0x5d, 0x9d, 0xa4, 0x0b, 0x4c, 0x2b, 0xd9, 0xb2, 0x18, 0xf5, 0xb5, 0x9f, 0x4b, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x6e, 0x00, 0x78, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e +.byte 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69 +.byte 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49 +.byte 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41, 0x31, 0x24 +.byte 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43, 0x41, 0x20 +.byte 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20 +.byte 0x32, 0x30, 0x32, 0x31, 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, 0x38, 0x08, 0xfe, 0xb1 +.byte 0xa0, 0x96, 0xd2, 0x7a, 0xac, 0xaf, 0x49, 0x3a, 0xd0, 0xc0, 0xe0, 0xc3, 0x3b, 0x28, 0xaa, 0xf1 +.byte 0x72, 0x6d, 0x65, 0x00, 0x47, 0x88, 0x84, 0xfc, 0x9a, 0x26, 0x6b, 0xaa, 0x4b, 0xba, 0x6c, 0x04 +.byte 0x0a, 0x88, 0x5e, 0x17, 0xf2, 0x55, 0x87, 0xfc, 0x30, 0xb0, 0x34, 0xe2, 0x34, 0x58, 0x57, 0x1a +.byte 0x84, 0x53, 0xe9, 0x30, 0xd9, 0xa9, 0xf2, 0x96, 0x74, 0xc3, 0x51, 0x1f, 0x58, 0x49, 0x31, 0xcc +.byte 0x98, 0x4e, 0x60, 0x11, 0x87, 0x75, 0xd3, 0x72, 0x94, 0x90, 0x4f, 0x9b, 0x10, 0x25, 0x2a, 0xa8 +.byte 0x78, 0x2d, 0xbe, 0x90, 0x41, 0x58, 0x90, 0x15, 0x72, 0xa7, 0xa1, 0xb7, 0x00, 0x6e, 0x02, 0x26 +.byte 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31 +.byte 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e +.byte 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20 +.byte 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43, 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53 +.byte 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 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, 0x8b +.byte 0xc2, 0xe7, 0xaf, 0x65, 0x9b, 0x05, 0x67, 0x96, 0xc9, 0x0d, 0x24, 0xb9, 0xd0, 0x0e, 0x64, 0xfc +.byte 0xce, 0xe2, 0x24, 0x18, 0x2c, 0x84, 0x7f, 0x77, 0x51, 0xcb, 0x04, 0x11, 0x36, 0xb8, 0x5e, 0xed +.byte 0x69, 0x71, 0xa7, 0x9e, 0xe4, 0x25, 0x09, 0x97, 0x67, 0xc1, 0x47, 0xc2, 0xcf, 0x91, 0x16, 0x36 +.byte 0x62, 0x3d, 0x38, 0x04, 0xe1, 0x51, 0x82, 0xff, 0xac, 0xd2, 0xb4, 0x69, 0xdd, 0x2e, 0xec, 0x11 +.byte 0xa3, 0x45, 0xee, 0x6b, 0x6b, 0x3b, 0x4c, 0xbf, 0x8c, 0x8d, 0xa4, 0x1e, 0x9d, 0x11, 0xb9, 0xe9 +.byte 0x38, 0xf9, 0x7a, 0x0e, 0x0c, 0x98, 0xe2, 0x23, 0x1d, 0xd1, 0x4e, 0x63, 0xd4, 0xe7, 0xb8, 0x41 +.byte 0x44, 0xfb, 0x6b, 0xaf, 0x6b, 0xda, 0x1f, 0xd3, 0xc5, 0x91, 0x88, 0x5b, 0xa4, 0x89, 0x92, 0xd1 +.byte 0x81, 0xe6, 0x8c, 0x39, 0x58, 0xa0, 0xd6, 0x69, 0x43, 0xa9, 0xad, 0x98, 0x52, 0x58, 0x6e, 0xdb +.byte 0x0a, 0xfb, 0x6b, 0xcf, 0x68, 0xfa, 0xe3, 0xa4, 0x5e, 0x3a, 0x45, 0x73, 0x98, 0x07, 0xea, 0x5f +.byte 0x02, 0x72, 0xde, 0x0c, 0xa5, 0xb3, 0x9f, 0xae, 0xa9, 0x1d, 0xb7, 0x1d, 0xb3, 0xfc, 0x8a, 0x59 +.byte 0xe7, 0x6e, 0x72, 0x65, 0xad, 0xf5, 0x30, 0x94, 0x23, 0x07, 0xf3, 0x82, 0x16, 0x4b, 0x35, 0x98 +.byte 0x9c, 0x53, 0xbb, 0x2f, 0xca, 0xe4, 0x5a, 0xd9, 0xc7, 0x8d, 0x1d, 0xfc, 0x98, 0x99, 0xfb, 0x2c +.byte 0xa4, 0x82, 0x6b, 0xf0, 0x2a, 0x1f, 0x8e, 0x0b, 0x5f, 0x71, 0x5c, 0x5c, 0xae, 0x42, 0x7b, 0x29 +.byte 0x89, 0x81, 0xcb, 0x03, 0xa3, 0x99, 0xca, 0x88, 0x9e, 0x0b, 0x40, 0x09, 0x41, 0x33, 0xdb, 0xe6 +.byte 0x58, 0x7a, 0xfd, 0xae, 0x99, 0x70, 0xc0, 0x5a, 0x0f, 0xd6, 0x13, 0x86, 0x71, 0x2f, 0x76, 0x69 +.byte 0xfc, 0x90, 0xdd, 0xdb, 0x2d, 0x6e, 0xd1, 0xf2, 0x9b, 0xf5, 0x1a, 0x6b, 0x9e, 0x6f, 0x15, 0x8c +.byte 0x7a, 0xf0, 0x4b, 0x28, 0xa0, 0x22, 0x38, 0x80, 0x24, 0x6c, 0x36, 0xa4, 0x3b, 0xf2, 0x30, 0x91 +.byte 0xf3, 0x78, 0x13, 0xcf, 0xc1, 0x3f, 0x35, 0xab, 0xf1, 0x1d, 0x11, 0x23, 0xb5, 0x43, 0x22, 0x9e +.byte 0x01, 0x92, 0xb7, 0x18, 0x02, 0xe5, 0x11, 0xd1, 0x82, 0xdb, 0x15, 0x00, 0xcc, 0x61, 0x37, 0xc1 +.byte 0x2a, 0x7c, 0x9a, 0xe1, 0xd0, 0xba, 0xb3, 0x50, 0x46, 0xee, 0x82, 0xac, 0x9d, 0x31, 0xf8, 0xfb +.byte 0x23, 0xe2, 0x03, 0x00, 0x48, 0x70, 0xa3, 0x09, 0x26, 0x79, 0x15, 0x53, 0x60, 0xf3, 0x38, 0x5c +.byte 0xad, 0x38, 0xea, 0x81, 0x00, 0x63, 0x14, 0xb9, 0x33, 0x5e, 0xdd, 0x0b, 0xdb, 0xa0, 0x45, 0x07 +.byte 0x1a, 0x33, 0x09, 0xf8, 0x4d, 0xb4, 0xa7, 0x02, 0xa6, 0x69, 0xf4, 0xc2, 0x59, 0x05, 0x88, 0x65 +.byte 0x85, 0x56, 0xae, 0x4b, 0xcb, 0xe0, 0xde, 0x3c, 0x7d, 0x2d, 0x1a, 0xc8, 0xe9, 0xfb, 0x1f, 0xa3 +.byte 0x61, 0x4a, 0xd6, 0x2a, 0x13, 0xad, 0x77, 0x4c, 0x1a, 0x18, 0x9b, 0x91, 0x0f, 0x58, 0xd8, 0x06 +.byte 0x54, 0xc5, 0x97, 0xf8, 0xaa, 0x3f, 0x20, 0x8a, 0xa6, 0x85, 0xa6, 0x77, 0xf6, 0xa6, 0xfc, 0x1c +.byte 0xe2, 0xee, 0x6e, 0x94, 0x33, 0x2a, 0x83, 0x50, 0x84, 0x0a, 0xe5, 0x4f, 0x86, 0xf8, 0x50, 0x45 +.byte 0x78, 0x00, 0x81, 0xeb, 0x5b, 0x68, 0xe3, 0x26, 0x8d, 0xcc, 0x7b, 0x5c, 0x51, 0xf4, 0x14, 0x2c +.byte 0x40, 0xbe, 0x1a, 0x60, 0x1d, 0x7a, 0x72, 0x61, 0x1d, 0x1f, 0x63, 0x2d, 0x88, 0xaa, 0xce, 0xa2 +.byte 0x45, 0x90, 0x08, 0xfc, 0x6b, 0xbe, 0xb3, 0x50, 0x2a, 0x5a, 0xfd, 0xa8, 0x48, 0x18, 0x46, 0xd6 +.byte 0x90, 0x40, 0x92, 0x90, 0x0a, 0x84, 0x5e, 0x68, 0x31, 0xf8, 0xeb, 0xed, 0x0d, 0xd3, 0x1d, 0xc6 +.byte 0x7d, 0x99, 0x18, 0x55, 0x56, 0x27, 0x65, 0x2e, 0x8d, 0x45, 0xc5, 0x24, 0xec, 0xce, 0xe3, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x6e, 0x01, 0x26, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19 +.byte 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67 +.byte 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x22, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x48, 0x69, 0x67 +.byte 0x68, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x45, 0x56, 0x20, 0x52 +.byte 0x6f, 0x6f, 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, 0xc6, 0xcc, 0xe5, 0x73, 0xe6, 0xfb, 0xd4, 0xbb, 0xe5 +.byte 0x2d, 0x2d, 0x32, 0xa6, 0xdf, 0xe5, 0x81, 0x3f, 0xc9, 0xcd, 0x25, 0x49, 0xb6, 0x71, 0x2a, 0xc3 +.byte 0xd5, 0x94, 0x34, 0x67, 0xa2, 0x0a, 0x1c, 0xb0, 0x5f, 0x69, 0xa6, 0x40, 0xb1, 0xc4, 0xb7, 0xb2 +.byte 0x8f, 0xd0, 0x98, 0xa4, 0xa9, 0x41, 0x59, 0x3a, 0xd3, 0xdc, 0x94, 0xd6, 0x3c, 0xdb, 0x74, 0x38 +.byte 0xa4, 0x4a, 0xcc, 0x4d, 0x25, 0x82, 0xf7, 0x4a, 0xa5, 0x53, 0x12, 0x38, 0xee, 0xf3, 0x49, 0x6d +.byte 0x71, 0x91, 0x7e, 0x63, 0xb6, 0xab, 0xa6, 0x5f, 0xc3, 0xa4, 0x84, 0xf8, 0x4f, 0x62, 0x51, 0xbe +.byte 0xf8, 0xc5, 0xec, 0xdb, 0x38, 0x92, 0xe3, 0x06, 0xe5, 0x08, 0x91, 0x0c, 0xc4, 0x28, 0x41, 0x55 +.byte 0xfb, 0xcb, 0x5a, 0x89, 0x15, 0x7e, 0x71, 0xe8, 0x35, 0xbf, 0x4d, 0x72, 0x09, 0x3d, 0xbe, 0x3a +.byte 0x38, 0x50, 0x5b, 0x77, 0x31, 0x1b, 0x8d, 0xb3, 0xc7, 0x24, 0x45, 0x9a, 0xa7, 0xac, 0x6d, 0x00 +.byte 0x14, 0x5a, 0x04, 0xb7, 0xba, 0x13, 0xeb, 0x51, 0x0a, 0x98, 0x41, 0x41, 0x22, 0x4e, 0x65, 0x61 +.byte 0x87, 0x81, 0x41, 0x50, 0xa6, 0x79, 0x5c, 0x89, 0xde, 0x19, 0x4a, 0x57, 0xd5, 0x2e, 0xe6, 0x5d +.byte 0x1c, 0x53, 0x2c, 0x7e, 0x98, 0xcd, 0x1a, 0x06, 0x16, 0xa4, 0x68, 0x73, 0xd0, 0x34, 0x04, 0x13 +.byte 0x5c, 0xa1, 0x71, 0xd3, 0x5a, 0x7c, 0x55, 0xdb, 0x5e, 0x64, 0xe1, 0x37, 0x87, 0x30, 0x56, 0x04 +.byte 0xe5, 0x11, 0xb4, 0x29, 0x80, 0x12, 0xf1, 0x79, 0x39, 0x88, 0xa2, 0x02, 0x11, 0x7c, 0x27, 0x66 +.byte 0xb7, 0x88, 0xb7, 0x78, 0xf2, 0xca, 0x0a, 0xa8, 0x38, 0xab, 0x0a, 0x64, 0xc2, 0xbf, 0x66, 0x5d +.byte 0x95, 0x84, 0xc1, 0xa1, 0x25, 0x1e, 0x87, 0x5d, 0x1a, 0x50, 0x0b, 0x20, 0x12, 0xcc, 0x41, 0xbb +.byte 0x6e, 0x0b, 0x51, 0x38, 0xb8, 0x4b, 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6f, 0x01, 0x26 +.byte 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31 +.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65 +.byte 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54 +.byte 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64 +.byte 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f +.byte 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c +.byte 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x42, 0x20, 0x43, 0x41, 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 0xd8, 0x17, 0xb7, 0x1c, 0x4a, 0x24, 0x2a, 0xd6, 0x97, 0xb1, 0xca, 0xe2, 0x1e, 0xfb, 0x7d, 0x38 +.byte 0xef, 0x98, 0xf5, 0xb2, 0x39, 0x98, 0x4e, 0x27, 0xb8, 0x11, 0x5d, 0x7b, 0xd2, 0x25, 0x94, 0x88 +.byte 0x82, 0x15, 0x26, 0x6a, 0x1b, 0x31, 0xbb, 0xa8, 0x5b, 0x21, 0x21, 0x2b, 0xd8, 0x0f, 0x4e, 0x9f +.byte 0x5a, 0xf1, 0xb1, 0x5a, 0xe4, 0x79, 0xd6, 0x32, 0x23, 0x2b, 0xe1, 0x53, 0xcc, 0x99, 0x45, 0x5c +.byte 0x7b, 0x4f, 0xad, 0xbc, 0xbf, 0x87, 0x4a, 0x0b, 0x4b, 0x97, 0x5a, 0xa8, 0xf6, 0x48, 0xec, 0x7d +.byte 0x7b, 0x0d, 0xcd, 0x21, 0x06, 0xdf, 0x9e, 0x15, 0xfd, 0x41, 0x8a, 0x48, 0xb7, 0x20, 0xf4, 0xa1 +.byte 0x7a, 0x1b, 0x57, 0xd4, 0x5d, 0x50, 0xff, 0xba, 0x67, 0xd8, 0x23, 0x99, 0x1f, 0xc8, 0x3f, 0xe3 +.byte 0xde, 0xff, 0x6f, 0x5b, 0x77, 0xb1, 0x6b, 0x6e, 0xb8, 0xc9, 0x64, 0xf7, 0xe1, 0xca, 0x41, 0x46 +.byte 0x0e, 0x29, 0x71, 0xd0, 0xb9, 0x23, 0xfc, 0xc9, 0x81, 0x5f, 0x4e, 0xf7, 0x6f, 0xdf, 0xbf, 0x84 +.byte 0xad, 0x73, 0x64, 0xbb, 0xb7, 0x42, 0x8e, 0x69, 0xf6, 0xd4, 0x76, 0x1d, 0x7e, 0x9d, 0xa7, 0xb8 +.byte 0x57, 0x8a, 0x51, 0x67, 0x72, 0xd7, 0xd4, 0xa8, 0xb8, 0x95, 0x54, 0x40, 0x73, 0x03, 0xf6, 0xea +.byte 0xf4, 0xeb, 0xfe, 0x28, 0x42, 0x77, 0x3f, 0x9d, 0x23, 0x1b, 0xb2, 0xb6, 0x3d, 0x80, 0x14, 0x07 +.byte 0x4c, 0x2e, 0x4f, 0xf7, 0xd5, 0x0a, 0x16, 0x0d, 0xbd, 0x66, 0x43, 0x37, 0x7e, 0x23, 0x43, 0x79 +.byte 0xc3, 0x40, 0x86, 0xf5, 0x4c, 0x29, 0xda, 0x8e, 0x9a, 0xad, 0x0d, 0xa5, 0x04, 0x87, 0x88, 0x1e +.byte 0x85, 0xe3, 0xe9, 0x53, 0xd5, 0x9b, 0xc8, 0x8b, 0x03, 0x63, 0x78, 0xeb, 0xe0, 0x19, 0x4a, 0x6e +.byte 0xbb, 0x2f, 0x6b, 0x33, 0x64, 0x58, 0x93, 0xad, 0x69, 0xbf, 0x8f, 0x1b, 0xef, 0x82, 0x48, 0xc7 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x6f, 0x00, 0x78, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64 +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28 +.byte 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57 +.byte 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x47, 0x43, 0x20, 0x43, 0x41, 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 0x4c, 0xe9, 0x50, 0xc0, 0xc6, 0x0f, 0x72, 0x18, 0xbc, 0xd8, 0xf1, 0xba, 0xb3, 0x89, 0xe2, 0x79 +.byte 0x4a, 0xa3, 0x16, 0xa7, 0x6b, 0x54, 0x24, 0xdb, 0x51, 0xff, 0xea, 0xf4, 0x09, 0x24, 0xc3, 0x0b +.byte 0x22, 0x9f, 0xcb, 0x6a, 0x27, 0x82, 0x81, 0x0d, 0xd2, 0xc0, 0xaf, 0x31, 0xe4, 0x74, 0x82, 0x6e +.byte 0xca, 0x25, 0xd9, 0x8c, 0x75, 0x9d, 0xf1, 0xdb, 0xd0, 0x9a, 0xa2, 0x4b, 0x21, 0x7e, 0x16, 0xa7 +.byte 0x63, 0x90, 0xd2, 0x39, 0xd4, 0xb1, 0x87, 0x78, 0x5f, 0x18, 0x96, 0x0f, 0x50, 0x1b, 0x35, 0x37 +.byte 0x0f, 0x6a, 0xc6, 0xdc, 0xd9, 0x13, 0x4d, 0xa4, 0x8e, 0x90, 0x37, 0xe6, 0xbd, 0x5b, 0x31, 0x91 +.byte 0x00, 0x71, 0x02, 0x26, 0x30, 0x6f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x48, 0x4b, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x09, 0x48, 0x6f +.byte 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x07 +.byte 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31, 0x16, 0x30, 0x14, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50 +.byte 0x6f, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x48, 0x6f +.byte 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x33, 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, 0xb3, 0x88, 0xd7, 0xea, 0xce, 0x0f, 0x20, 0x4e, 0xbe, 0xe6 +.byte 0xd6, 0x03, 0x6d, 0xee, 0x59, 0xfc, 0xc2, 0x57, 0xdf, 0x29, 0x68, 0xa1, 0x83, 0x0e, 0x3e, 0x68 +.byte 0xc7, 0x68, 0x58, 0x9c, 0x1c, 0x60, 0x4b, 0x89, 0x43, 0x0c, 0xb9, 0xd4, 0x15, 0xb2, 0xee, 0xc1 +.byte 0x4e, 0x75, 0xe9, 0xb5, 0xa7, 0xef, 0xe5, 0xe9, 0x35, 0x99, 0xe4, 0xcc, 0x1c, 0xe7, 0x4b, 0x5f +.byte 0x8d, 0x33, 0x30, 0x20, 0x33, 0x53, 0xd9, 0xa6, 0xbb, 0xd5, 0x3e, 0x13, 0x8e, 0xe9, 0x1f, 0x87 +.byte 0x49, 0xad, 0x50, 0x2d, 0x50, 0xca, 0x18, 0xbe, 0x01, 0x58, 0xa2, 0x13, 0x70, 0x96, 0xbb, 0x89 +.byte 0x88, 0x56, 0x80, 0x5c, 0xf8, 0xbd, 0x2c, 0x3c, 0xe1, 0x4c, 0x57, 0x88, 0xbb, 0xd3, 0xb9, 0x95 +.byte 0xef, 0xcb, 0xc7, 0xf6, 0xda, 0x31, 0x74, 0x28, 0xa6, 0xe6, 0x54, 0x89, 0xf5, 0x41, 0x31, 0xca +.byte 0xe5, 0x26, 0x1a, 0xcd, 0x82, 0xe0, 0x70, 0xda, 0x3b, 0x29, 0xbb, 0xd5, 0x03, 0xf5, 0x99, 0xba +.byte 0x55, 0xf5, 0x64, 0xd1, 0x60, 0x0e, 0xb3, 0x89, 0x49, 0xb8, 0x8a, 0x2f, 0x05, 0xd2, 0x84, 0x45 +.byte 0x28, 0x7c, 0x8f, 0x68, 0x50, 0x12, 0x78, 0xfc, 0x0b, 0xb5, 0x53, 0xcb, 0xc2, 0x98, 0x1c, 0x84 +.byte 0xa3, 0x9e, 0xb0, 0xbe, 0x23, 0xa4, 0xda, 0xdc, 0xc8, 0x2b, 0x1e, 0xda, 0x6e, 0x45, 0x1e, 0x89 +.byte 0x98, 0xda, 0xf9, 0x00, 0x2e, 0x06, 0xe9, 0x0c, 0x3b, 0x70, 0xd5, 0x50, 0x25, 0x88, 0x99, 0xcb +.byte 0xcd, 0x73, 0x60, 0xf7, 0xd5, 0xff, 0x35, 0x67, 0xc5, 0xa1, 0xbc, 0x5e, 0xab, 0xcd, 0x4a, 0xb8 +.byte 0x45, 0xeb, 0xc8, 0x68, 0x1e, 0x0d, 0x0d, 0x14, 0x46, 0x12, 0xe3, 0xd2, 0x64, 0x62, 0x8a, 0x42 +.byte 0x98, 0xbc, 0xb4, 0xc6, 0x08, 0x08, 0xf8, 0xfd, 0xa8, 0x4c, 0x64, 0x9c, 0x76, 0x01, 0xbd, 0x2f +.byte 0xa9, 0x6c, 0x33, 0x0f, 0xd8, 0x3f, 0x28, 0xb8, 0x3c, 0x69, 0x01, 0x42, 0x86, 0x7e, 0x69, 0xc1 +.byte 0xc9, 0x06, 0xca, 0xe5, 0x7a, 0x46, 0x65, 0xe9, 0xc2, 0xd6, 0x50, 0x41, 0x2e, 0x3f, 0xb7, 0xe4 +.byte 0xed, 0x6c, 0xd7, 0xbf, 0x26, 0x01, 0x11, 0xa2, 0x16, 0x29, 0x4a, 0x6b, 0x34, 0x06, 0x90, 0xec +.byte 0x13, 0xd2, 0xb6, 0xfb, 0x6a, 0x76, 0xd2, 0x3c, 0xed, 0xf0, 0xd6, 0x2d, 0xdd, 0xe1, 0x15, 0xec +.byte 0xa3, 0x9b, 0x2f, 0x2c, 0xc9, 0x3e, 0x2b, 0xe4, 0x69, 0x3b, 0xff, 0x72, 0x25, 0xb1, 0x36, 0x86 +.byte 0x5b, 0xc7, 0x7f, 0x6b, 0x8b, 0x55, 0x1b, 0x4a, 0xc5, 0x20, 0x61, 0x3d, 0xae, 0xcb, 0x50, 0xe1 +.byte 0x08, 0x3a, 0xbe, 0xb0, 0x8f, 0x63, 0x41, 0x53, 0x30, 0x08, 0x59, 0x3c, 0x98, 0x1d, 0x77, 0xba +.byte 0x63, 0x91, 0x7a, 0xca, 0x10, 0x50, 0x60, 0xbf, 0xf0, 0xd7, 0xbc, 0x95, 0x87, 0x8f, 0x97, 0xc5 +.byte 0xfe, 0x97, 0x6a, 0x01, 0x94, 0xa3, 0x7c, 0x5b, 0x85, 0x1d, 0x2a, 0x39, 0x3a, 0xd0, 0x54, 0xa1 +.byte 0xd1, 0x39, 0x71, 0x9d, 0xfd, 0x21, 0xf9, 0xb5, 0x7b, 0xf0, 0xe2, 0xe0, 0x02, 0x8f, 0x6e, 0x96 +.byte 0x24, 0x25, 0x2c, 0xa0, 0x1e, 0x2c, 0xa8, 0xc4, 0x89, 0xa7, 0xef, 0xed, 0x99, 0x06, 0x2f, 0xb6 +.byte 0x0a, 0x4c, 0x4f, 0xdb, 0xa2, 0xcc, 0x37, 0x1a, 0xaf, 0x47, 0x85, 0x2d, 0x8a, 0x5f, 0xc4, 0x34 +.byte 0x34, 0x4c, 0x00, 0xfd, 0x18, 0x93, 0x67, 0x13, 0xd1, 0x37, 0xe6, 0x48, 0xb4, 0x8b, 0x06, 0xc5 +.byte 0x57, 0x7b, 0x19, 0x86, 0x0a, 0x79, 0xcb, 0x00, 0xc9, 0x52, 0xaf, 0x42, 0xff, 0x37, 0x8f, 0xe1 +.byte 0xa3, 0x1e, 0x7a, 0x3d, 0x50, 0xab, 0x63, 0x06, 0xe7, 0x15, 0xb5, 0x3f, 0xb6, 0x45, 0x37, 0x94 +.byte 0x37, 0xb1, 0x7e, 0xf2, 0x48, 0xc3, 0x7f, 0xc5, 0x75, 0xfe, 0x97, 0x8d, 0x45, 0x8f, 0x1a, 0xa7 +.byte 0x1a, 0x72, 0x28, 0x1a, 0x40, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x73, 0x00, 0x5b, 0x30 +.byte 0x71, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11 +.byte 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73 +.byte 0x74, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d, 0x4d, 0x69, 0x63, 0x72 +.byte 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55 +.byte 0x04, 0x61, 0x0c, 0x0e, 0x56, 0x41, 0x54, 0x48, 0x55, 0x2d, 0x32, 0x33, 0x35, 0x38, 0x34, 0x34 +.byte 0x39, 0x37, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x15, 0x65, 0x2d, 0x53 +.byte 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30 +.byte 0x31, 0x37, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x96, 0xdc, 0x3d +.byte 0x8a, 0xd8, 0xb0, 0x7b, 0x6f, 0xc6, 0x27, 0xbe, 0x44, 0x90, 0xb1, 0xb3, 0x56, 0x15, 0x7b, 0x8e +.byte 0x43, 0x24, 0x7d, 0x1a, 0x84, 0x59, 0xee, 0x63, 0x68, 0xb2, 0xc6, 0x5e, 0x87, 0xd0, 0x15, 0x48 +.byte 0x1e, 0xa8, 0x90, 0xad, 0xbd, 0x53, 0xa2, 0xda, 0xde, 0x3a, 0x90, 0xa6, 0x60, 0x5f, 0x68, 0x32 +.byte 0xb5, 0x86, 0x41, 0xdf, 0x87, 0x5b, 0x2c, 0x7b, 0xc5, 0xfe, 0x7c, 0x7a, 0xda, 0x00, 0x76, 0x00 +.byte 0x78, 0x30, 0x74, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c +.byte 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73, 0x65, 0x63 +.byte 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53 +.byte 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65 +.byte 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x19, 0x30, 0x17 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x45, 0x43 +.byte 0x2d, 0x33, 0x38, 0x34, 0x20, 0x43, 0x41, 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, 0xc4 +.byte 0x28, 0x8e, 0xab, 0x18, 0x5b, 0x6a, 0xbe, 0x6e, 0x64, 0x37, 0x63, 0xe4, 0xcd, 0xec, 0xab, 0x3a +.byte 0xf7, 0xcc, 0xa1, 0xb8, 0x0e, 0x82, 0x49, 0xd7, 0x86, 0x29, 0x9f, 0xa1, 0x94, 0xf2, 0xe3, 0x60 +.byte 0x78, 0x98, 0x81, 0x78, 0x06, 0x4d, 0xf2, 0xec, 0x9a, 0x0e, 0x57, 0x60, 0x83, 0x9f, 0xb4, 0xe6 +.byte 0x17, 0x2f, 0x1a, 0xb3, 0x5d, 0x02, 0x5b, 0x89, 0x23, 0x3c, 0xc2, 0x11, 0x05, 0x2a, 0xa7, 0x88 +.byte 0x13, 0x18, 0xf3, 0x50, 0x84, 0xd7, 0xbd, 0x34, 0x2c, 0x27, 0x89, 0x55, 0xff, 0xce, 0x4c, 0xe7 +.byte 0xdf, 0xa6, 0x1f, 0x28, 0xc4, 0xf0, 0x54, 0xc3, 0xb9, 0x7c, 0xb7, 0x53, 0xad, 0xeb, 0xc2, 0x00 +.byte 0x7a, 0x00, 0x78, 0x30, 0x78, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x46, 0x4e, 0x4d +.byte 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x05 +.byte 0x43, 0x65, 0x72, 0x65, 0x73, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0f +.byte 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x51, 0x32, 0x38, 0x32, 0x36, 0x30, 0x30, 0x34, 0x4a, 0x31 +.byte 0x2c, 0x30, 0x2a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x23, 0x41, 0x43, 0x20, 0x52, 0x41, 0x49 +.byte 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x20, 0x53, 0x45, 0x52, 0x56, 0x49 +.byte 0x44, 0x4f, 0x52, 0x45, 0x53, 0x20, 0x53, 0x45, 0x47, 0x55, 0x52, 0x4f, 0x53, 0x30, 0x76, 0x30 +.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00 +.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0xf6, 0xba, 0x57, 0x53, 0xc8, 0xca, 0xab, 0xdf, 0x36, 0x4a, 0x52 +.byte 0x21, 0xe4, 0x97, 0xd2, 0x83, 0x67, 0x9e, 0xf0, 0x65, 0x51, 0xd0, 0x5e, 0x87, 0xc7, 0x47, 0xb1 +.byte 0x59, 0xf2, 0x57, 0x47, 0x9b, 0x00, 0x02, 0x93, 0x44, 0x17, 0x69, 0xdb, 0x42, 0xc7, 0xb1, 0xb2 +.byte 0x3a, 0x18, 0x0e, 0xb4, 0x5d, 0x8c, 0xb3, 0x66, 0x5d, 0xa1, 0x34, 0xf9, 0x36, 0x2c, 0x49, 0xdb +.byte 0xf3, 0x46, 0xfc, 0xb3, 0x44, 0x69, 0x44, 0x13, 0x66, 0xfd, 0xd7, 0xc5, 0xfd, 0xaf, 0x36, 0x4d +.byte 0xce, 0x03, 0x4d, 0x07, 0x71, 0xcf, 0xaf, 0x6a, 0x05, 0xd2, 0xa2, 0x43, 0x5a, 0x0a, 0x52, 0x6f +.byte 0x01, 0x03, 0x4e, 0x8e, 0x8b, 0x00, 0x7c, 0x02, 0x26, 0x30, 0x7a, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x20, 0x53 +.byte 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 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, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16, 0x43 +.byte 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 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, 0xd1, 0x2d, 0x8e, 0xbb, 0xb7, 0x36, 0xea, 0x6d, 0x37, 0x91 +.byte 0x9f, 0x4e, 0x93, 0xa7, 0x05, 0xe4, 0x29, 0x03, 0x25, 0xce, 0x1c, 0x82, 0xf7, 0x7c, 0x99, 0x9f +.byte 0x41, 0x06, 0xcd, 0xed, 0xa3, 0xba, 0xc0, 0xdb, 0x09, 0x2c, 0xc1, 0x7c, 0xdf, 0x29, 0x7e, 0x4b +.byte 0x65, 0x2f, 0x93, 0xa7, 0xd4, 0x01, 0x6b, 0x03, 0x28, 0x18, 0xa3, 0xd8, 0x9d, 0x05, 0xc1, 0x2a +.byte 0xd8, 0x45, 0xf1, 0x91, 0xde, 0xdf, 0x3b, 0xd0, 0x80, 0x02, 0x8c, 0xcf, 0x38, 0x0f, 0xea, 0xa7 +.byte 0x5c, 0x78, 0x11, 0xa4, 0xc1, 0xc8, 0x85, 0x5c, 0x25, 0xd3, 0xd3, 0xb2, 0xe7, 0x25, 0xcf, 0x11 +.byte 0x54, 0x97, 0xab, 0x35, 0xc0, 0x1e, 0x76, 0x1c, 0xef, 0x00, 0x53, 0x9f, 0x39, 0xdc, 0x14, 0xa5 +.byte 0x2c, 0x22, 0x25, 0xb3, 0x72, 0x72, 0xfc, 0x8d, 0xb3, 0xe5, 0x3e, 0x08, 0x1e, 0x14, 0x2a, 0x37 +.byte 0x0b, 0x88, 0x3c, 0xca, 0xb0, 0xf4, 0xc8, 0xc2, 0xa1, 0xae, 0xbc, 0xc1, 0xbe, 0x29, 0x67, 0x55 +.byte 0xe2, 0xfc, 0xad, 0x59, 0x5c, 0xfe, 0xbd, 0x57, 0x2c, 0xb0, 0x90, 0x8d, 0xc2, 0xed, 0x37, 0xb6 +.byte 0x7c, 0x99, 0x88, 0xb5, 0xd5, 0x03, 0x9a, 0x3d, 0x15, 0x0d, 0x3d, 0x3a, 0xa8, 0xa8, 0x45, 0xf0 +.byte 0x95, 0x4e, 0x25, 0x59, 0x1d, 0xcd, 0x98, 0x69, 0xbb, 0xd3, 0xcc, 0x32, 0xc9, 0x8d, 0xef, 0x81 +.byte 0xfe, 0xad, 0x7d, 0x89, 0xbb, 0xba, 0x60, 0x13, 0xca, 0x65, 0x95, 0x67, 0xa0, 0xf3, 0x19, 0xf6 +.byte 0x03, 0x56, 0xd4, 0x6a, 0xd3, 0x27, 0xe2, 0xa1, 0xad, 0x83, 0xf0, 0x4a, 0x12, 0x22, 0x77, 0x1c +.byte 0x05, 0x73, 0xe2, 0x19, 0x71, 0x42, 0xc0, 0xec, 0x75, 0x46, 0x9a, 0x90, 0x58, 0xe0, 0x6a, 0x8e +.byte 0x2b, 0xa5, 0x46, 0x30, 0x04, 0x8e, 0x19, 0xb2, 0x17, 0xe3, 0xbe, 0xa9, 0xba, 0x7f, 0x56, 0xf1 +.byte 0x24, 0x03, 0xd7, 0xb2, 0x21, 0x28, 0x76, 0x0e, 0x36, 0x30, 0x4c, 0x79, 0xd5, 0x41, 0x9a, 0x9a +.byte 0xa8, 0xb8, 0x35, 0xba, 0x0c, 0x3a, 0xf2, 0x44, 0x1b, 0x20, 0x88, 0xf7, 0xc5, 0x25, 0xd7, 0x3d +.byte 0xc6, 0xe3, 0x3e, 0x43, 0xdd, 0x87, 0xfe, 0xc4, 0xea, 0xf5, 0x53, 0x3e, 0x4c, 0x65, 0xff, 0x3b +.byte 0x4a, 0xcb, 0x78, 0x5a, 0x6b, 0x17, 0x5f, 0x0d, 0xc7, 0xc3, 0x4f, 0x4e, 0x9a, 0x2a, 0xa2, 0xed +.byte 0x57, 0x4d, 0x22, 0xe2, 0x46, 0x9a, 0x3f, 0x0f, 0x91, 0x34, 0x24, 0x7d, 0x55, 0xe3, 0x8c, 0x95 +.byte 0x37, 0xd3, 0x1a, 0xf0, 0x09, 0x2b, 0x2c, 0xd2, 0xc9, 0x8d, 0xb4, 0x0d, 0x00, 0xab, 0x67, 0x29 +.byte 0x28, 0xd8, 0x01, 0xf5, 0x19, 0x04, 0xb6, 0x1d, 0xbe, 0x76, 0xfe, 0x72, 0x5c, 0xc4, 0x85, 0xca +.byte 0xd2, 0x80, 0x41, 0xdf, 0x05, 0xa8, 0xa3, 0xd5, 0x84, 0x90, 0x4f, 0x0b, 0xf3, 0xe0, 0x3f, 0x9b +.byte 0x19, 0xd2, 0x37, 0x89, 0x3f, 0xf2, 0x7b, 0x52, 0x1c, 0x8c, 0xf6, 0xe1, 0xf7, 0x3c, 0x07, 0x97 +.byte 0x8c, 0x0e, 0xa2, 0x59, 0x81, 0x0c, 0xb2, 0x90, 0x3d, 0xd3, 0xe3, 0x59, 0x46, 0xed, 0x0f, 0xa9 +.byte 0xa7, 0xde, 0x80, 0x6b, 0x5a, 0xaa, 0x07, 0xb6, 0x19, 0xcb, 0xbc, 0x57, 0xf3, 0x97, 0x21, 0x7a +.byte 0x0c, 0xb1, 0x2b, 0x74, 0x3e, 0xeb, 0xda, 0xa7, 0x67, 0x2d, 0x4c, 0xc4, 0x98, 0x9e, 0x36, 0x09 +.byte 0x76, 0x66, 0x66, 0xfc, 0x1a, 0x3f, 0xea, 0x48, 0x54, 0x1c, 0xbe, 0x30, 0xbd, 0x80, 0x50, 0xbf +.byte 0x7c, 0xb5, 0xce, 0x00, 0xf6, 0x0c, 0x61, 0xd9, 0xe7, 0x24, 0x03, 0xe0, 0xe3, 0x01, 0x81, 0x0e +.byte 0xbd, 0xd8, 0x85, 0x34, 0x88, 0xbd, 0xb2, 0x36, 0xa8, 0x7b, 0x5c, 0x08, 0xe5, 0x44, 0x80, 0x8c +.byte 0x6f, 0xf8, 0x2f, 0xd5, 0x21, 0xca, 0x1d, 0x1c, 0xd0, 0xfb, 0xc4, 0xb5, 0x87, 0xd1, 0x3a, 0x4e +.byte 0xc7, 0x76, 0xb5, 0x35, 0x48, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x7d, 0x01, 0x26, 0x30 +.byte 0x7b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b +.byte 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 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, 0x0c, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30 +.byte 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x43, 0x6f, 0x6d, 0x6f, 0x64, 0x6f, 0x20, 0x43 +.byte 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x18, 0x41, 0x41, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 +.byte 0x61, 0x74, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 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, 0xbe, 0x40, 0x9d +.byte 0xf4, 0x6e, 0xe1, 0xea, 0x76, 0x87, 0x1c, 0x4d, 0x45, 0x44, 0x8e, 0xbe, 0x46, 0xc8, 0x83, 0x06 +.byte 0x9d, 0xc1, 0x2a, 0xfe, 0x18, 0x1f, 0x8e, 0xe4, 0x02, 0xfa, 0xf3, 0xab, 0x5d, 0x50, 0x8a, 0x16 +.byte 0x31, 0x0b, 0x9a, 0x06, 0xd0, 0xc5, 0x70, 0x22, 0xcd, 0x49, 0x2d, 0x54, 0x63, 0xcc, 0xb6, 0x6e +.byte 0x68, 0x46, 0x0b, 0x53, 0xea, 0xcb, 0x4c, 0x24, 0xc0, 0xbc, 0x72, 0x4e, 0xea, 0xf1, 0x15, 0xae +.byte 0xf4, 0x54, 0x9a, 0x12, 0x0a, 0xc3, 0x7a, 0xb2, 0x33, 0x60, 0xe2, 0xda, 0x89, 0x55, 0xf3, 0x22 +.byte 0x58, 0xf3, 0xde, 0xdc, 0xcf, 0xef, 0x83, 0x86, 0xa2, 0x8c, 0x94, 0x4f, 0x9f, 0x68, 0xf2, 0x98 +.byte 0x90, 0x46, 0x84, 0x27, 0xc7, 0x76, 0xbf, 0xe3, 0xcc, 0x35, 0x2c, 0x8b, 0x5e, 0x07, 0x64, 0x65 +.byte 0x82, 0xc0, 0x48, 0xb0, 0xa8, 0x91, 0xf9, 0x61, 0x9f, 0x76, 0x20, 0x50, 0xa8, 0x91, 0xc7, 0x66 +.byte 0xb5, 0xeb, 0x78, 0x62, 0x03, 0x56, 0xf0, 0x8a, 0x1a, 0x13, 0xea, 0x31, 0xa3, 0x1e, 0xa0, 0x99 +.byte 0xfd, 0x38, 0xf6, 0xf6, 0x27, 0x32, 0x58, 0x6f, 0x07, 0xf5, 0x6b, 0xb8, 0xfb, 0x14, 0x2b, 0xaf +.byte 0xb7, 0xaa, 0xcc, 0xd6, 0x63, 0x5f, 0x73, 0x8c, 0xda, 0x05, 0x99, 0xa8, 0x38, 0xa8, 0xcb, 0x17 +.byte 0x78, 0x36, 0x51, 0xac, 0xe9, 0x9e, 0xf4, 0x78, 0x3a, 0x8d, 0xcf, 0x0f, 0xd9, 0x42, 0xe2, 0x98 +.byte 0x0c, 0xab, 0x2f, 0x9f, 0x0e, 0x01, 0xde, 0xef, 0x9f, 0x99, 0x49, 0xf1, 0x2d, 0xdf, 0xac, 0x74 +.byte 0x4d, 0x1b, 0x98, 0xb5, 0x47, 0xc5, 0xe5, 0x29, 0xd1, 0xf9, 0x90, 0x18, 0xc7, 0x62, 0x9c, 0xbe +.byte 0x83, 0xc7, 0x26, 0x7b, 0x3e, 0x8a, 0x25, 0xc7, 0xc0, 0xdd, 0x9d, 0xe6, 0x35, 0x68, 0x10, 0x20 +.byte 0x9d, 0x8f, 0xd8, 0xde, 0xd2, 0xc3, 0x84, 0x9c, 0x0d, 0x5e, 0xe8, 0x2f, 0xc9, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x7e, 0x00, 0x78, 0x30, 0x7c, 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, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53, 0x53, 0x4c, 0x2e +.byte 0x63, 0x6f, 0x6d, 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 0x20, 0x45, 0x43, 0x43, 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, 0x45, 0x6e, 0xa9, 0x50 +.byte 0xc4, 0xa6, 0x23, 0x36, 0x9e, 0x5f, 0x28, 0x8d, 0x17, 0xcb, 0x96, 0x22, 0x64, 0x3f, 0xdc, 0x7a +.byte 0x8e, 0x1d, 0xcc, 0x08, 0xb3, 0xa2, 0x71, 0x24, 0xba, 0x8e, 0x49, 0xb9, 0x04, 0x1b, 0x47, 0x96 +.byte 0x58, 0xab, 0x2d, 0x95, 0xc8, 0xed, 0x9e, 0x08, 0x35, 0xc8, 0x27, 0xeb, 0x89, 0x8c, 0x53, 0x58 +.byte 0xeb, 0x62, 0x8a, 0xfe, 0xf0, 0x5b, 0x0f, 0x6b, 0x31, 0x52, 0x63, 0x41, 0x3b, 0x89, 0xcd, 0xec +.byte 0xec, 0xb6, 0x8d, 0x19, 0xd3, 0x34, 0x07, 0xdc, 0xbb, 0xc6, 0x06, 0x7f, 0xc2, 0x45, 0x95, 0xec +.byte 0xcb, 0x7f, 0xa8, 0x23, 0xe0, 0x09, 0xe9, 0x81, 0xfa, 0xf3, 0x47, 0xd3, 0x00, 0x7e, 0x02, 0x26 +.byte 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31 +.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f +.byte 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20 +.byte 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x31, 0x30, 0x2f, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 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, 0x52, 0x53, 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, 0xf9 +.byte 0x0f, 0xdd, 0xa3, 0x2b, 0x7d, 0xcb, 0xd0, 0x2a, 0xfe, 0xec, 0x67, 0x85, 0xa6, 0xe7, 0x2e, 0x1b +.byte 0xba, 0x77, 0xe1, 0xe3, 0xf5, 0xaf, 0xa4, 0xec, 0xfa, 0x4a, 0x5d, 0x91, 0xc4, 0x57, 0x47, 0x6b +.byte 0x18, 0x77, 0x6b, 0x76, 0xf2, 0xfd, 0x93, 0xe4, 0x3d, 0x0f, 0xc2, 0x16, 0x9e, 0x0b, 0x66, 0xc3 +.byte 0x56, 0x94, 0x9e, 0x17, 0x83, 0x85, 0xce, 0x56, 0xef, 0xf2, 0x16, 0xfd, 0x00, 0x62, 0xf5, 0x22 +.byte 0x09, 0x54, 0xe8, 0x65, 0x17, 0x4e, 0x41, 0xb9, 0xe0, 0x4f, 0x46, 0x97, 0xaa, 0x1b, 0xc8, 0xb8 +.byte 0x6e, 0x62, 0x5e, 0x69, 0xb1, 0x5f, 0xdb, 0x2a, 0x02, 0x7e, 0xfc, 0x6c, 0xca, 0xf3, 0x41, 0xd8 +.byte 0xed, 0xd0, 0xe8, 0xfc, 0x3f, 0x61, 0x48, 0xed, 0xb0, 0x03, 0x14, 0x1d, 0x10, 0x0e, 0x4b, 0x19 +.byte 0xe0, 0xbb, 0x4e, 0xec, 0x86, 0x65, 0xff, 0x36, 0xf3, 0x5e, 0x67, 0x02, 0x0b, 0x9d, 0x86, 0x55 +.byte 0x61, 0xfd, 0x7a, 0x38, 0xed, 0xfe, 0xe2, 0x19, 0x00, 0xb7, 0x6f, 0xa1, 0x50, 0x62, 0x75, 0x74 +.byte 0x3c, 0xa0, 0xfa, 0xc8, 0x25, 0x92, 0xb4, 0x6e, 0x7a, 0x22, 0xc7, 0xf8, 0x1e, 0xa1, 0xe3, 0xb2 +.byte 0xdd, 0x91, 0x31, 0xab, 0x2b, 0x1d, 0x04, 0xff, 0xa5, 0x4a, 0x04, 0x37, 0xe9, 0x85, 0xa4, 0x33 +.byte 0x2b, 0xfd, 0xe2, 0xd6, 0x55, 0x34, 0x7c, 0x19, 0xa4, 0x4a, 0x68, 0xc7, 0xb2, 0xa8, 0xd3, 0xb7 +.byte 0xca, 0xa1, 0x93, 0x88, 0xeb, 0xc1, 0x97, 0xbc, 0x8c, 0xf9, 0x1d, 0xd9, 0x22, 0x84, 0x24, 0x74 +.byte 0xc7, 0x04, 0x3d, 0x6a, 0xa9, 0x29, 0x93, 0xcc, 0xeb, 0xb8, 0x5b, 0xe1, 0xfe, 0x5f, 0x25, 0xaa +.byte 0x34, 0x58, 0xc8, 0xc1, 0x23, 0x54, 0x9d, 0x1b, 0x98, 0x11, 0xc3, 0x38, 0x9c, 0x7e, 0x3d, 0x86 +.byte 0x6c, 0xa5, 0x0f, 0x40, 0x86, 0x7c, 0x02, 0xf4, 0x5c, 0x02, 0x4f, 0x28, 0xcb, 0xae, 0x71, 0x9f +.byte 0x0f, 0x3a, 0xc8, 0x33, 0xfe, 0x11, 0x25, 0x35, 0xea, 0xfc, 0xba, 0xc5, 0x60, 0x3d, 0xd9, 0x7c +.byte 0x18, 0xd5, 0xb2, 0xa9, 0xd3, 0x75, 0x78, 0x03, 0x72, 0x22, 0xca, 0x3a, 0xc3, 0x1f, 0xef, 0x2c +.byte 0xe5, 0x2e, 0xa9, 0xfa, 0x9e, 0x2c, 0xb6, 0x51, 0x46, 0xfd, 0xaf, 0x03, 0xd6, 0xea, 0x60, 0x68 +.byte 0xea, 0x85, 0x16, 0x36, 0x6b, 0x85, 0xe9, 0x1e, 0xc0, 0xb3, 0xdd, 0xc4, 0x24, 0xdc, 0x80, 0x2a +.byte 0x81, 0x41, 0x6d, 0x94, 0x3e, 0xc8, 0xe0, 0xc9, 0x81, 0x41, 0x00, 0x9e, 0x5e, 0xbf, 0x7f, 0xc5 +.byte 0x08, 0x98, 0xa2, 0x18, 0x2c, 0x42, 0x40, 0xb3, 0xf9, 0x6f, 0x38, 0x27, 0x4b, 0x4e, 0x80, 0xf4 +.byte 0x3d, 0x81, 0x47, 0xe0, 0x88, 0x7c, 0xea, 0x1c, 0xce, 0xb5, 0x75, 0x5c, 0x51, 0x2e, 0x1c, 0x2b +.byte 0x7f, 0x1a, 0x72, 0x28, 0xe7, 0x00, 0xb5, 0xd1, 0x74, 0xc6, 0xd7, 0xe4, 0x9f, 0xad, 0x07, 0x93 +.byte 0xb6, 0x53, 0x35, 0x35, 0xfc, 0x37, 0xe4, 0xc3, 0xf6, 0x5d, 0x16, 0xbe, 0x21, 0x73, 0xde, 0x92 +.byte 0x0a, 0xf8, 0xa0, 0x63, 0x6a, 0xbc, 0x96, 0x92, 0x6a, 0x3e, 0xf8, 0xbc, 0x65, 0x55, 0x9b, 0xde +.byte 0xf5, 0x0d, 0x89, 0x26, 0x04, 0xfc, 0x25, 0x1a, 0xa6, 0x25, 0x69, 0xcb, 0xc2, 0x6d, 0xca, 0x7c +.byte 0xe2, 0x59, 0x5f, 0x97, 0xac, 0xeb, 0xef, 0x2e, 0xc8, 0xbc, 0xd7, 0x1b, 0x59, 0x3c, 0x2b, 0xcc +.byte 0xf2, 0x19, 0xc8, 0x93, 0x6b, 0x27, 0x63, 0x19, 0xcf, 0xfc, 0xe9, 0x26, 0xf8, 0xca, 0x71, 0x9b +.byte 0x7f, 0x93, 0xfe, 0x34, 0x67, 0x84, 0x4e, 0x99, 0xeb, 0xfc, 0xb3, 0x78, 0x09, 0x33, 0x70, 0xba +.byte 0x66, 0xa6, 0x76, 0xed, 0x1b, 0x73, 0xeb, 0x1a, 0xa5, 0x0d, 0xc4, 0x22, 0x13, 0x20, 0x94, 0x56 +.byte 0x0a, 0x4e, 0x2c, 0x6c, 0x4e, 0xb1, 0xfd, 0xcf, 0x9c, 0x09, 0xba, 0xa2, 0x33, 0xed, 0x87, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x80, 0x01, 0x26, 0x30, 0x7e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f +.byte 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 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, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x43 +.byte 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65 +.byte 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41, 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, 0xe3, 0xfb, 0x7d, 0xa3, 0x72, 0xba, 0xc2 +.byte 0xf0, 0xc9, 0x14, 0x87, 0xf5, 0x6b, 0x01, 0x4e, 0xe1, 0x6e, 0x40, 0x07, 0xba, 0x6d, 0x27, 0x5d +.byte 0x7f, 0xf7, 0x5b, 0x2d, 0xb3, 0x5a, 0xc7, 0x51, 0x5f, 0xab, 0xa4, 0x32, 0xa6, 0x61, 0x87, 0xb6 +.byte 0x6e, 0x0f, 0x86, 0xd2, 0x30, 0x02, 0x97, 0xf8, 0xd7, 0x69, 0x57, 0xa1, 0x18, 0x39, 0x5d, 0x6a +.byte 0x64, 0x79, 0xc6, 0x01, 0x59, 0xac, 0x3c, 0x31, 0x4a, 0x38, 0x7c, 0xd2, 0x04, 0xd2, 0x4b, 0x28 +.byte 0xe8, 0x20, 0x5f, 0x3b, 0x07, 0xa2, 0xcc, 0x4d, 0x73, 0xdb, 0xf3, 0xae, 0x4f, 0xc7, 0x56, 0xd5 +.byte 0x5a, 0xa7, 0x96, 0x89, 0xfa, 0xf3, 0xab, 0x68, 0xd4, 0x23, 0x86, 0x59, 0x27, 0xcf, 0x09, 0x27 +.byte 0xbc, 0xac, 0x6e, 0x72, 0x83, 0x1c, 0x30, 0x72, 0xdf, 0xe0, 0xa2, 0xe9, 0xd2, 0xe1, 0x74, 0x75 +.byte 0x19, 0xbd, 0x2a, 0x9e, 0x7b, 0x15, 0x54, 0x04, 0x1b, 0xd7, 0x43, 0x39, 0xad, 0x55, 0x28, 0xc5 +.byte 0xe2, 0x1a, 0xbb, 0xf4, 0xc0, 0xe4, 0xae, 0x38, 0x49, 0x33, 0xcc, 0x76, 0x85, 0x9f, 0x39, 0x45 +.byte 0xd2, 0xa4, 0x9e, 0xf2, 0x12, 0x8c, 0x51, 0xf8, 0x7c, 0xe4, 0x2d, 0x7f, 0xf5, 0xac, 0x5f, 0xeb +.byte 0x16, 0x9f, 0xb1, 0x2d, 0xd1, 0xba, 0xcc, 0x91, 0x42, 0x77, 0x4c, 0x25, 0xc9, 0x90, 0x38, 0x6f +.byte 0xdb, 0xf0, 0xcc, 0xfb, 0x8e, 0x1e, 0x97, 0x59, 0x3e, 0xd5, 0x60, 0x4e, 0xe6, 0x05, 0x28, 0xed +.byte 0x49, 0x79, 0x13, 0x4b, 0xba, 0x48, 0xdb, 0x2f, 0xf9, 0x72, 0xd3, 0x39, 0xca, 0xfe, 0x1f, 0xd8 +.byte 0x34, 0x72, 0xf5, 0xb4, 0x40, 0xcf, 0x31, 0x01, 0xc3, 0xec, 0xde, 0x11, 0x2d, 0x17, 0x5d, 0x1f +.byte 0xb8, 0x50, 0xd1, 0x5e, 0x19, 0xa7, 0x69, 0xde, 0x07, 0x33, 0x28, 0xca, 0x50, 0x95, 0xf9, 0xa7 +.byte 0x54, 0xcb, 0x54, 0x86, 0x50, 0x45, 0xa9, 0xf9, 0x49, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x81 +.byte 0x00, 0x78, 0x30, 0x7f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61 +.byte 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73 +.byte 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53 +.byte 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x34, 0x30 +.byte 0x32, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2b, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20 +.byte 0x45, 0x56, 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 0x45, 0x43, 0x43, 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, 0xaa, 0x12, 0x47, 0x90, 0x98 +.byte 0x1b, 0xfb, 0xef, 0xc3, 0x40, 0x07, 0x83, 0x20, 0x4e, 0xf1, 0x30, 0x82, 0xa2, 0x06, 0xd1, 0xf2 +.byte 0x92, 0x86, 0x61, 0xf2, 0xf6, 0x21, 0x68, 0xca, 0x00, 0xc4, 0xc7, 0xea, 0x43, 0x00, 0x54, 0x86 +.byte 0xdc, 0xfd, 0x1f, 0xdf, 0x00, 0xb8, 0x41, 0x62, 0x5c, 0xdc, 0x70, 0x16, 0x32, 0xde, 0x1f, 0x99 +.byte 0xd4, 0xcc, 0xc5, 0x07, 0xc8, 0x08, 0x1f, 0x61, 0x16, 0x07, 0x51, 0x3d, 0x7d, 0x5c, 0x07, 0x53 +.byte 0xe3, 0x35, 0x38, 0x8c, 0xdf, 0xcd, 0x9f, 0xd9, 0x2e, 0x0d, 0x4a, 0xb6, 0x19, 0x2e, 0x5a, 0x70 +.byte 0x5a, 0x06, 0xed, 0xbe, 0xf0, 0xa1, 0xb0, 0xca, 0xd0, 0x09, 0x29, 0x00, 0x83, 0x02, 0x26, 0x30 +.byte 0x81, 0x80, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31 +.byte 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74 +.byte 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53 +.byte 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65 +.byte 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x24, 0x30, 0x22 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41 +.byte 0x20, 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, 0xbd, 0xf9, 0x78, 0xf8, 0xe6, 0xd5, 0x80, 0x0c, 0x64, 0x9d, 0x86, 0x1b, 0x96 +.byte 0x64, 0x67, 0x3f, 0x22, 0x3a, 0x1e, 0x75, 0x01, 0x7d, 0xef, 0xfb, 0x5c, 0x67, 0x8c, 0xc9, 0xcc +.byte 0x5c, 0x6b, 0xa9, 0x91, 0xe6, 0xb9, 0x42, 0xe5, 0x20, 0x4b, 0x9b, 0xda, 0x9b, 0x7b, 0xb9, 0x99 +.byte 0x5d, 0xd9, 0x9b, 0x80, 0x4b, 0xd7, 0x84, 0x40, 0x2b, 0x27, 0xd3, 0xe8, 0xba, 0x30, 0xbb, 0x3e +.byte 0x09, 0x1a, 0xa7, 0x49, 0x95, 0xef, 0x2b, 0x40, 0x24, 0xc2, 0x97, 0xc7, 0xa7, 0xee, 0x9b, 0x25 +.byte 0xef, 0xa8, 0x0a, 0x00, 0x97, 0x85, 0x5a, 0xaa, 0x9d, 0xdc, 0x29, 0xc9, 0xe2, 0x35, 0x07, 0xeb +.byte 0x70, 0x4d, 0x4a, 0xd6, 0xc1, 0xb3, 0x56, 0xb8, 0xa1, 0x41, 0x38, 0x9b, 0xd1, 0xfb, 0x31, 0x7f +.byte 0x8f, 0xe0, 0x5f, 0xe1, 0xb1, 0x3f, 0x0f, 0x8e, 0x16, 0x49, 0x60, 0xd7, 0x06, 0x8d, 0x18, 0xf9 +.byte 0xaa, 0x26, 0x10, 0xab, 0x2a, 0xd3, 0xd0, 0xd1, 0x67, 0x8d, 0x1b, 0x46, 0xbe, 0x47, 0x30, 0xd5 +.byte 0x2e, 0x72, 0xd1, 0xc5, 0x63, 0xda, 0xe7, 0x63, 0x79, 0x44, 0x7e, 0x4b, 0x63, 0x24, 0x89, 0x86 +.byte 0x2e, 0x34, 0x3f, 0x29, 0x4c, 0x52, 0x8b, 0x2a, 0xa7, 0xc0, 0xe2, 0x91, 0x28, 0x89, 0xb9, 0xc0 +.byte 0x5b, 0xf9, 0x1d, 0xd9, 0xe7, 0x27, 0xad, 0xff, 0x9a, 0x02, 0x97, 0xc1, 0xc6, 0x50, 0x92, 0x9b +.byte 0x02, 0x2c, 0xbd, 0xa9, 0xb9, 0x34, 0x59, 0x0a, 0xbf, 0x84, 0x4a, 0xff, 0xdf, 0xfe, 0xb3, 0x9f +.byte 0xeb, 0xd9, 0x9e, 0xe0, 0x98, 0x23, 0xec, 0xa6, 0x6b, 0x77, 0x16, 0x2a, 0xdb, 0xcc, 0xad, 0x3b +.byte 0x1c, 0xa4, 0x87, 0xdc, 0x46, 0x73, 0x5e, 0x19, 0x62, 0x68, 0x45, 0x57, 0xe4, 0x90, 0x82, 0x42 +.byte 0xbb, 0x42, 0xd6, 0xf0, 0x61, 0xe0, 0xc1, 0xa3, 0x3d, 0x66, 0xa3, 0x5d, 0xf4, 0x18, 0xee, 0x88 +.byte 0xc9, 0x8d, 0x17, 0x45, 0x29, 0x99, 0x32, 0x75, 0x02, 0x31, 0xee, 0x29, 0x26, 0xc8, 0x6b, 0x02 +.byte 0xe6, 0xb5, 0x62, 0x45, 0x7f, 0x37, 0x15, 0x5a, 0x23, 0x68, 0x89, 0xd4, 0x3e, 0xde, 0x4e, 0x27 +.byte 0xb0, 0xf0, 0x40, 0x0c, 0xbc, 0x4d, 0x17, 0xcb, 0x4d, 0xa2, 0xb3, 0x1e, 0xd0, 0x06, 0x5a, 0xdd +.byte 0xf6, 0x93, 0xcf, 0x57, 0x75, 0x99, 0xf5, 0xfa, 0x86, 0x1a, 0x67, 0x78, 0xb3, 0xbf, 0x96, 0xfe +.byte 0x34, 0xdc, 0xbd, 0xe7, 0x52, 0x56, 0xe5, 0xb3, 0xe5, 0x75, 0x7b, 0xd7, 0x41, 0x91, 0x05, 0xdc +.byte 0x5d, 0x69, 0xe3, 0x95, 0x0d, 0x43, 0xb9, 0xfc, 0x83, 0x96, 0x39, 0x95, 0x7b, 0x6c, 0x80, 0x5a +.byte 0x4f, 0x13, 0x72, 0xc6, 0xd7, 0x7d, 0x29, 0x7a, 0x44, 0xba, 0x52, 0xa4, 0x2a, 0xd5, 0x41, 0x46 +.byte 0x09, 0x20, 0xfe, 0x22, 0xa0, 0xb6, 0x5b, 0x30, 0x8d, 0xbc, 0x89, 0x0c, 0xd5, 0xd7, 0x70, 0xf8 +.byte 0x87, 0x52, 0xfd, 0xda, 0xef, 0xac, 0x51, 0x2e, 0x07, 0xb3, 0x4e, 0xfe, 0xd0, 0x09, 0xda, 0x70 +.byte 0xef, 0x98, 0xfa, 0x56, 0xe6, 0x6d, 0xdb, 0xb5, 0x57, 0x4b, 0xdc, 0xe5, 0x2c, 0x25, 0x15, 0xc8 +.byte 0x9e, 0x2e, 0x78, 0x4e, 0xf8, 0xda, 0x9c, 0x9e, 0x86, 0x2c, 0xca, 0x57, 0xf3, 0x1a, 0xe5, 0xc8 +.byte 0x92, 0x8b, 0x1a, 0x82, 0x96, 0x7a, 0xc3, 0xbc, 0x50, 0x12, 0x69, 0xd8, 0x0e, 0x5a, 0x46, 0x8b +.byte 0x3a, 0xeb, 0x26, 0xfa, 0x23, 0xc9, 0xb6, 0xb0, 0x81, 0xbe, 0x42, 0x00, 0xa4, 0xf8, 0xd6, 0xfe +.byte 0x30, 0x2e, 0xc7, 0xd2, 0x46, 0xf6, 0xe5, 0x8e, 0x75, 0xfd, 0xf2, 0xcc, 0xb9, 0xd0, 0x87, 0x5b +.byte 0xcc, 0x06, 0x10, 0x60, 0xbb, 0x83, 0x35, 0xb7, 0x5e, 0x67, 0xde, 0x47, 0xec, 0x99, 0x48, 0xf1 +.byte 0xa4, 0xa1, 0x15, 0xfe, 0xad, 0x8c, 0x62, 0x8e, 0x39, 0x55, 0x4f, 0x39, 0x16, 0xb9, 0xb1, 0x63 +.byte 0x9d, 0xff, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x83, 0x00, 0x78, 0x30, 0x81, 0x80, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x0f, 0x30, 0x0d +.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x6e, 0x6b, 0x61, 0x72, 0x61, 0x31, 0x19, 0x30 +.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20 +.byte 0x45, 0x42, 0x47, 0x20, 0x41, 0x2e, 0x53, 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x14, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x1d, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x45, 0x43, 0x43, 0x20, 0x76, 0x33, 0x30 +.byte 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81 +.byte 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x8e, 0x98, 0x29, 0xbf, 0xc7, 0x10, 0x1e, 0x27, 0xdb +.byte 0xab, 0x03, 0xcc, 0x28, 0x2c, 0xd8, 0x5e, 0x48, 0x19, 0x10, 0x29, 0xcc, 0xcb, 0x59, 0x81, 0xcc +.byte 0x8c, 0xb8, 0x92, 0x17, 0x89, 0x83, 0x2a, 0x92, 0xf6, 0xc3, 0xa4, 0x1d, 0x4c, 0x62, 0xd5, 0x9f +.byte 0xd6, 0xa0, 0x46, 0xdc, 0x1c, 0xbc, 0x76, 0xc1, 0xe3, 0x47, 0xd0, 0x5b, 0x13, 0xda, 0xe7, 0xa5 +.byte 0xb3, 0x66, 0x48, 0xe7, 0x21, 0x9a, 0x4a, 0x4f, 0x86, 0x0a, 0x7d, 0x6c, 0xea, 0x4d, 0x32, 0x80 +.byte 0x0a, 0xb2, 0x7a, 0x09, 0x9b, 0x69, 0x4b, 0x98, 0x81, 0xe2, 0x2e, 0xec, 0x02, 0x70, 0x96, 0x1f +.byte 0xfd, 0xf5, 0x46, 0xce, 0xca, 0xdc, 0x82, 0x00, 0x83, 0x02, 0x26, 0x30, 0x81, 0x80, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x6e, 0x6b, 0x61, 0x72, 0x61, 0x31, 0x19, 0x30, 0x17 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x45 +.byte 0x42, 0x47, 0x20, 0x41, 0x2e, 0x53, 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x14, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x1d, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x52, 0x53, 0x41, 0x20, 0x76, 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, 0xa2 +.byte 0x66, 0xf0, 0x89, 0xb7, 0x72, 0x7b, 0xee, 0x09, 0xc9, 0x63, 0xd2, 0xd3, 0x43, 0xdd, 0x5e, 0xc3 +.byte 0xa6, 0x84, 0x38, 0x4a, 0xf1, 0x8d, 0x81, 0xbb, 0x14, 0xbd, 0x47, 0xe8, 0x40, 0x17, 0xf3, 0x3d +.byte 0xc3, 0x78, 0x45, 0x72, 0xa6, 0x2e, 0x90, 0xde, 0x9a, 0x3a, 0xd4, 0x20, 0x71, 0xca, 0xbc, 0x9f +.byte 0x1d, 0x4b, 0x97, 0x0a, 0xc7, 0x31, 0xba, 0x3e, 0xd7, 0xfe, 0x25, 0xa9, 0x2a, 0x8e, 0x36, 0xf4 +.byte 0xd1, 0x2f, 0xc7, 0xb7, 0xa9, 0x5d, 0x33, 0xdc, 0x30, 0x70, 0xf8, 0x40, 0x6c, 0x4b, 0xb2, 0xa6 +.byte 0x31, 0x61, 0xd1, 0x34, 0x3c, 0x3d, 0x31, 0x7a, 0xc7, 0xaf, 0xc4, 0xa7, 0xa7, 0x84, 0xe1, 0x97 +.byte 0xa4, 0xe8, 0x4b, 0xf6, 0x17, 0x7c, 0xee, 0x3c, 0x07, 0xed, 0xe2, 0x8a, 0x57, 0xdc, 0xb6, 0xfb +.byte 0xf8, 0x43, 0x25, 0x50, 0xea, 0x27, 0x81, 0xa8, 0x86, 0xbc, 0x8f, 0x52, 0x4a, 0x96, 0x3a, 0x60 +.byte 0x1a, 0x96, 0xbb, 0xfd, 0x73, 0xf4, 0x85, 0xfd, 0x83, 0xfd, 0x7f, 0x84, 0x6d, 0x34, 0x6c, 0x7f +.byte 0x6a, 0xb7, 0x4b, 0x01, 0x03, 0xbf, 0xad, 0x69, 0xb7, 0xd7, 0x32, 0xd9, 0xf5, 0x57, 0x6a, 0xe9 +.byte 0x86, 0x82, 0x3e, 0xa5, 0x66, 0x31, 0xb3, 0x16, 0x3d, 0xc2, 0xf3, 0x26, 0x60, 0x32, 0xd3, 0x52 +.byte 0x1e, 0xb0, 0x6c, 0xa4, 0x37, 0x3e, 0xf4, 0xf5, 0xaf, 0xeb, 0xe1, 0xdf, 0x80, 0x06, 0xcf, 0x2a +.byte 0x41, 0xe7, 0x66, 0x09, 0xe1, 0x4b, 0x97, 0xe7, 0x77, 0xbd, 0x21, 0x6d, 0x29, 0xb6, 0x67, 0xc3 +.byte 0x2d, 0x7e, 0xed, 0xd6, 0x79, 0x65, 0xd1, 0xcf, 0x3a, 0xb6, 0xd1, 0xb1, 0x5e, 0x56, 0x61, 0x50 +.byte 0x7a, 0x5a, 0xce, 0x4e, 0x50, 0x31, 0x80, 0x03, 0x98, 0x47, 0xe7, 0xe4, 0x18, 0x7c, 0x44, 0x5a +.byte 0xc6, 0xa4, 0xb3, 0x3b, 0xc6, 0xc6, 0xc3, 0x3a, 0xf0, 0x6c, 0xc3, 0x8b, 0xc8, 0xa4, 0x91, 0x05 +.byte 0xf3, 0xf5, 0xd9, 0xb6, 0xaa, 0x06, 0xa1, 0xb7, 0xab, 0xe4, 0xb1, 0xea, 0x21, 0x14, 0x5c, 0x83 +.byte 0xa4, 0xfc, 0xff, 0xb6, 0x50, 0xd3, 0x8c, 0x12, 0x26, 0x99, 0x76, 0x70, 0xe9, 0xc0, 0x0f, 0xa6 +.byte 0x74, 0xfc, 0xbb, 0xd0, 0x1b, 0x78, 0xce, 0x72, 0x92, 0xe2, 0x28, 0x9c, 0xbc, 0xe6, 0xe9, 0x09 +.byte 0xd8, 0x3a, 0xd3, 0x89, 0xe6, 0xbe, 0x2e, 0x77, 0xdf, 0x01, 0x0a, 0x6f, 0x96, 0xf6, 0xe5, 0x8d +.byte 0x3c, 0x4d, 0x52, 0x76, 0x1a, 0x56, 0xe1, 0x73, 0x7e, 0x17, 0xac, 0x3d, 0xad, 0x6c, 0xa3, 0x52 +.byte 0x12, 0x18, 0x70, 0xe6, 0x80, 0x4e, 0x33, 0xf2, 0x7e, 0x26, 0x32, 0xac, 0x05, 0x8d, 0x38, 0xa4 +.byte 0xe6, 0x76, 0x3c, 0x9f, 0x10, 0x69, 0x0e, 0x6d, 0x9d, 0xd2, 0xc1, 0x79, 0x20, 0x6b, 0x5b, 0xcf +.byte 0x33, 0x8d, 0xd1, 0x94, 0x76, 0x35, 0xe7, 0x5d, 0x55, 0xc7, 0xb7, 0xac, 0x28, 0xab, 0x46, 0xcc +.byte 0xe7, 0x3b, 0x21, 0xb5, 0x0a, 0x0a, 0xe4, 0x4a, 0x59, 0xdc, 0x81, 0x35, 0x4b, 0x44, 0x95, 0x12 +.byte 0x0a, 0x67, 0xa5, 0xa1, 0xff, 0x5b, 0x00, 0x07, 0xd2, 0xc0, 0xcc, 0xf9, 0x3f, 0xfc, 0x9f, 0x33 +.byte 0xf2, 0x00, 0xf8, 0x8c, 0x6c, 0x87, 0x9d, 0x06, 0x2d, 0xf1, 0xef, 0xe3, 0xe6, 0x06, 0xfa, 0xc5 +.byte 0x66, 0x13, 0x5b, 0xfc, 0x50, 0x07, 0x9e, 0x71, 0x86, 0xb2, 0xda, 0x6f, 0x74, 0x30, 0xcf, 0x93 +.byte 0x53, 0xe8, 0xdc, 0x22, 0xd6, 0xde, 0x20, 0x1f, 0x61, 0x8d, 0xa3, 0x2e, 0xa3, 0x78, 0x32, 0x90 +.byte 0x6c, 0xdc, 0xac, 0x32, 0xb5, 0x05, 0xe4, 0xf5, 0x3c, 0x33, 0x0d, 0xd6, 0xe0, 0x87, 0x77, 0x17 +.byte 0x4c, 0x9d, 0xb0, 0xd8, 0x09, 0xa8, 0x0d, 0x57, 0xf7, 0x44, 0x85, 0xf0, 0xc8, 0x04, 0xbe, 0x5c +.byte 0x5d, 0x5a, 0xe3, 0x17, 0x8e, 0x54, 0x63, 0x69, 0x7f, 0x49, 0x74, 0x64, 0x05, 0x8c, 0xa3, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x84, 0x01, 0x26, 0x30, 0x81, 0x81, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 +.byte 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68 +.byte 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07 +.byte 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69 +.byte 0x74, 0x65, 0x64, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x43, 0x4f +.byte 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 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, 0xd0, 0x40, 0x8b +.byte 0x8b, 0x72, 0xe3, 0x91, 0x1b, 0xf7, 0x51, 0xc1, 0x1b, 0x54, 0x04, 0x98, 0xd3, 0xa9, 0xbf, 0xc1 +.byte 0xe6, 0x8a, 0x5d, 0x3b, 0x87, 0xfb, 0xbb, 0x88, 0xce, 0x0d, 0xe3, 0x2f, 0x3f, 0x06, 0x96, 0xf0 +.byte 0xa2, 0x29, 0x50, 0x99, 0xae, 0xdb, 0x3b, 0xa1, 0x57, 0xb0, 0x74, 0x51, 0x71, 0xcd, 0xed, 0x42 +.byte 0x91, 0x4d, 0x41, 0xfe, 0xa9, 0xc8, 0xd8, 0x6a, 0x86, 0x77, 0x44, 0xbb, 0x59, 0x66, 0x97, 0x50 +.byte 0x5e, 0xb4, 0xd4, 0x2c, 0x70, 0x44, 0xcf, 0xda, 0x37, 0x95, 0x42, 0x69, 0x3c, 0x30, 0xc4, 0x71 +.byte 0xb3, 0x52, 0xf0, 0x21, 0x4d, 0xa1, 0xd8, 0xba, 0x39, 0x7c, 0x1c, 0x9e, 0xa3, 0x24, 0x9d, 0xf2 +.byte 0x83, 0x16, 0x98, 0xaa, 0x16, 0x7c, 0x43, 0x9b, 0x15, 0x5b, 0xb7, 0xae, 0x34, 0x91, 0xfe, 0xd4 +.byte 0x62, 0x26, 0x18, 0x46, 0x9a, 0x3f, 0xeb, 0xc1, 0xf9, 0xf1, 0x90, 0x57, 0xeb, 0xac, 0x7a, 0x0d +.byte 0x8b, 0xdb, 0x72, 0x30, 0x6a, 0x66, 0xd5, 0xe0, 0x46, 0xa3, 0x70, 0xdc, 0x68, 0xd9, 0xff, 0x04 +.byte 0x48, 0x89, 0x77, 0xde, 0xb5, 0xe9, 0xfb, 0x67, 0x6d, 0x41, 0xe9, 0xbc, 0x39, 0xbd, 0x32, 0xd9 +.byte 0x62, 0x02, 0xf1, 0xb1, 0xa8, 0x3d, 0x6e, 0x37, 0x9c, 0xe2, 0x2f, 0xe2, 0xd3, 0xa2, 0x26, 0x8b +.byte 0xc6, 0xb8, 0x55, 0x43, 0x88, 0xe1, 0x23, 0x3e, 0xa5, 0xd2, 0x24, 0x39, 0x6a, 0x47, 0xab, 0x00 +.byte 0xd4, 0xa1, 0xb3, 0xa9, 0x25, 0xfe, 0x0d, 0x3f, 0xa7, 0x1d, 0xba, 0xd3, 0x51, 0xc1, 0x0b, 0xa4 +.byte 0xda, 0xac, 0x38, 0xef, 0x55, 0x50, 0x24, 0x05, 0x65, 0x46, 0x93, 0x34, 0x4f, 0x2d, 0x8d, 0xad +.byte 0xc6, 0xd4, 0x21, 0x19, 0xd2, 0x8e, 0xca, 0x05, 0x61, 0x71, 0x07, 0x73, 0x47, 0xe5, 0x8a, 0x19 +.byte 0x12, 0xbd, 0x04, 0x4d, 0xce, 0x4e, 0x9c, 0xa5, 0x48, 0xac, 0xbb, 0x26, 0xf7, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x00, 0x85, 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72 +.byte 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47 +.byte 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d +.byte 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65 +.byte 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54 +.byte 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 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, 0xaa, 0x5f, 0xda, 0x1b +.byte 0x5f, 0xe8, 0x73, 0x91, 0xe5, 0xda, 0x5c, 0xf4, 0xa2, 0xe6, 0x47, 0xe5, 0xf3, 0x68, 0x55, 0x60 +.byte 0x05, 0x1d, 0x02, 0xa4, 0xb3, 0x9b, 0x59, 0xf3, 0x1e, 0x8a, 0xaf, 0x34, 0xad, 0xfc, 0x0d, 0xc2 +.byte 0xd9, 0x48, 0x19, 0xee, 0x69, 0x8f, 0xc9, 0x20, 0xfc, 0x21, 0xaa, 0x07, 0x19, 0xed, 0xb0, 0x5c +.byte 0xac, 0x65, 0xc7, 0x5f, 0xed, 0x02, 0x7c, 0x7b, 0x7c, 0x2d, 0x1b, 0xd6, 0xba, 0xb9, 0x80, 0xc2 +.byte 0x18, 0x82, 0x16, 0x84, 0xfa, 0x66, 0xb0, 0x08, 0xc6, 0x54, 0x23, 0x81, 0xe4, 0xcd, 0xb9, 0x49 +.byte 0x3f, 0xf6, 0x4f, 0x6e, 0x37, 0x48, 0x28, 0x38, 0x0f, 0xc5, 0xbe, 0xe7, 0x68, 0x70, 0xfd, 0x39 +.byte 0x97, 0x4d, 0xd2, 0xc7, 0x98, 0x91, 0x50, 0xaa, 0xc4, 0x44, 0xb3, 0x23, 0x7d, 0x39, 0x47, 0xe9 +.byte 0x52, 0x62, 0xd6, 0x12, 0x93, 0x5e, 0xb7, 0x31, 0x96, 0x42, 0x05, 0xfb, 0x76, 0xa7, 0x1e, 0xa3 +.byte 0xf5, 0xc2, 0xfc, 0xe9, 0x7a, 0xc5, 0x6c, 0xa9, 0x71, 0x4f, 0xea, 0xcb, 0x78, 0xbc, 0x60, 0xaf +.byte 0xc7, 0xde, 0xf4, 0xd9, 0xcb, 0xbe, 0x7e, 0x33, 0xa5, 0x6e, 0x94, 0x83, 0xf0, 0x34, 0xfa, 0x21 +.byte 0xab, 0xea, 0x8e, 0x72, 0xa0, 0x3f, 0xa4, 0xde, 0x30, 0x5b, 0xef, 0x86, 0x4d, 0x6a, 0x95, 0x5b +.byte 0x43, 0x44, 0xa8, 0x10, 0x15, 0x1c, 0xe5, 0x01, 0x57, 0xc5, 0x98, 0xf1, 0xe6, 0x06, 0x28, 0x91 +.byte 0xaa, 0x20, 0xc5, 0xb7, 0x53, 0x26, 0x51, 0x43, 0xb2, 0x0b, 0x11, 0x95, 0x58, 0xe1, 0xc0, 0x0f +.byte 0x76, 0xd9, 0xc0, 0x8d, 0x7c, 0x81, 0xf3, 0x72, 0x70, 0x9e, 0x6f, 0xfe, 0x1a, 0x8e, 0xd9, 0x5f +.byte 0x35, 0xc6, 0xb2, 0x6f, 0x34, 0x7c, 0xbe, 0x48, 0x4f, 0xe2, 0x5a, 0x39, 0xd7, 0xd8, 0x9d, 0x78 +.byte 0x9e, 0x9f, 0x86, 0x3e, 0x03, 0x5e, 0x19, 0x8b, 0x44, 0xa2, 0xd5, 0xc7, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x85, 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22 +.byte 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70 +.byte 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d +.byte 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53 +.byte 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e +.byte 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d +.byte 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 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, 0xbd, 0x75, 0x93, 0xf0, 0x62 +.byte 0x22, 0x6f, 0x24, 0xae, 0xe0, 0x7a, 0x76, 0xac, 0x7d, 0xbd, 0xd9, 0x24, 0xd5, 0xb8, 0xb7, 0xfc +.byte 0xcd, 0xf0, 0x42, 0xe0, 0xeb, 0x78, 0x88, 0x56, 0x5e, 0x9b, 0x9a, 0x54, 0x1d, 0x4d, 0x0c, 0x8a +.byte 0xf6, 0xd3, 0xcf, 0x70, 0xf4, 0x52, 0xb5, 0xd8, 0x93, 0x04, 0xe3, 0x46, 0x86, 0x71, 0x41, 0x4a +.byte 0x2b, 0xf0, 0x2a, 0x2c, 0x55, 0x03, 0xd6, 0x48, 0xc3, 0xe0, 0x39, 0x38, 0xed, 0xf2, 0x5c, 0x3c +.byte 0x3f, 0x44, 0xbc, 0x93, 0x3d, 0x61, 0xab, 0x4e, 0xcd, 0x0d, 0xbe, 0xf0, 0x20, 0x27, 0x58, 0x0e +.byte 0x44, 0x7f, 0x04, 0x1a, 0x87, 0xa5, 0xd7, 0x96, 0x14, 0x36, 0x90, 0xd0, 0x49, 0x7b, 0xa1, 0x75 +.byte 0xfb, 0x1a, 0x6b, 0x73, 0xb1, 0xf8, 0xce, 0xa9, 0x09, 0x2c, 0xf2, 0x53, 0xd5, 0xc3, 0x14, 0x44 +.byte 0xb8, 0x86, 0xa5, 0xf6, 0x8b, 0x2b, 0x39, 0xda, 0xa3, 0x33, 0x54, 0xd9, 0xfa, 0x72, 0x1a, 0xf7 +.byte 0x22, 0x15, 0x1c, 0x88, 0x91, 0x6b, 0x7f, 0x66, 0xe5, 0xc3, 0x6a, 0x80, 0xb0, 0x24, 0xf3, 0xdf +.byte 0x86, 0x45, 0x88, 0xfd, 0x19, 0x7f, 0x75, 0x87, 0x1f, 0x1f, 0xb1, 0x1b, 0x0a, 0x73, 0x24, 0x5b +.byte 0xb9, 0x65, 0xe0, 0x2c, 0x54, 0xc8, 0x60, 0xd3, 0x66, 0x17, 0x3f, 0xe1, 0xcc, 0x54, 0x33, 0x73 +.byte 0x91, 0x02, 0x3a, 0xa6, 0x7f, 0x7b, 0x76, 0x39, 0xa2, 0x1f, 0x96, 0xb6, 0x38, 0xae, 0xb5, 0xc8 +.byte 0x93, 0x74, 0x1d, 0x9e, 0xb9, 0xb4, 0xe5, 0x60, 0x9d, 0x2f, 0x56, 0xd1, 0xe0, 0xeb, 0x5e, 0x5b +.byte 0x4c, 0x12, 0x70, 0x0c, 0x6c, 0x44, 0x20, 0xab, 0x11, 0xd8, 0xf4, 0x19, 0xf6, 0xd2, 0x9c, 0x52 +.byte 0x37, 0xe7, 0xfa, 0xb6, 0xc2, 0x31, 0x3b, 0x4a, 0xd4, 0x14, 0x99, 0xad, 0xc7, 0x1a, 0xf5, 0x5d +.byte 0x5f, 0xfa, 0x07, 0xb8, 0x7c, 0x0d, 0x1f, 0xd6, 0x83, 0x1e, 0xb3, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x00, 0x85, 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42 +.byte 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x0d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31 +.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73 +.byte 0x65, 0x63, 0x20, 0x65, 0x2d, 0x53, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x30, 0x39, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x09, 0x01, 0x16, 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40, 0x65, 0x2d +.byte 0x73, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x2e, 0x68, 0x75, 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, 0xe9, 0xf8, 0x8f, 0xf3, 0x63, 0xad +.byte 0xda, 0x86, 0xd8, 0xa7, 0xe0, 0x42, 0xfb, 0xcf, 0x91, 0xde, 0xa6, 0x26, 0xf8, 0x99, 0xa5, 0x63 +.byte 0x70, 0xad, 0x9b, 0xae, 0xca, 0x33, 0x40, 0x7d, 0x6d, 0x96, 0x6e, 0xa1, 0x0e, 0x44, 0xee, 0xe1 +.byte 0x13, 0x9d, 0x94, 0x42, 0x52, 0x9a, 0xbd, 0x75, 0x85, 0x74, 0x2c, 0xa8, 0x0e, 0x1d, 0x93, 0xb6 +.byte 0x18, 0xb7, 0x8c, 0x2c, 0xa8, 0xcf, 0xfb, 0x5c, 0x71, 0xb9, 0xda, 0xec, 0xfe, 0xe8, 0x7e, 0x8f +.byte 0xe4, 0x2f, 0x1d, 0xb2, 0xa8, 0x75, 0x87, 0xd8, 0xb7, 0xa1, 0xe5, 0x3b, 0xcf, 0x99, 0x4a, 0x46 +.byte 0xd0, 0x83, 0x19, 0x7d, 0xc0, 0xa1, 0x12, 0x1c, 0x95, 0x6d, 0x4a, 0xf4, 0xd8, 0xc7, 0xa5, 0x4d +.byte 0x33, 0x2e, 0x85, 0x39, 0x40, 0x75, 0x7e, 0x14, 0x7c, 0x80, 0x12, 0x98, 0x50, 0xc7, 0x41, 0x67 +.byte 0xb8, 0xa0, 0x80, 0x61, 0x54, 0xa6, 0x6c, 0x4e, 0x1f, 0xe0, 0x9d, 0x0e, 0x07, 0xe9, 0xc9, 0xba +.byte 0x33, 0xe7, 0xfe, 0xc0, 0x55, 0x28, 0x2c, 0x02, 0x80, 0xa7, 0x19, 0xf5, 0x9e, 0xdc, 0x55, 0x53 +.byte 0x03, 0x97, 0x7b, 0x07, 0x48, 0xff, 0x99, 0xfb, 0x37, 0x8a, 0x24, 0xc4, 0x59, 0xcc, 0x50, 0x10 +.byte 0x63, 0x8e, 0xaa, 0xa9, 0x1a, 0xb0, 0x84, 0x1a, 0x86, 0xf9, 0x5f, 0xbb, 0xb1, 0x50, 0x6e, 0xa4 +.byte 0xd1, 0x0a, 0xcc, 0xd5, 0x71, 0x7e, 0x1f, 0xa7, 0x1b, 0x7c, 0xf5, 0x53, 0x6e, 0x22, 0x5f, 0xcb +.byte 0x2b, 0xe6, 0xd4, 0x7c, 0x5d, 0xae, 0xd6, 0xc2, 0xc6, 0x4c, 0xe5, 0x05, 0x01, 0xd9, 0xed, 0x57 +.byte 0xfc, 0xc1, 0x23, 0x79, 0xfc, 0xfa, 0xc8, 0x24, 0x83, 0x95, 0xf3, 0xb5, 0x6a, 0x51, 0x01, 0xd0 +.byte 0x77, 0xd6, 0xe9, 0x12, 0xa1, 0xf9, 0x1a, 0x83, 0xfb, 0x82, 0x1b, 0xb9, 0xb0, 0x97, 0xf4, 0x76 +.byte 0x06, 0x33, 0x43, 0x49, 0xa0, 0xff, 0x0b, 0xb5, 0xfa, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00 +.byte 0x85, 0x02, 0x26, 0x30, 0x81, 0x82, 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 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2e, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f +.byte 0x6d, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0x20, 0x52, 0x53, 0x41, 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, 0x8f, 0x36, 0x65, 0x40, 0xe1, 0xd6, 0x4d +.byte 0xc0, 0xd7, 0xb4, 0xe9, 0x46, 0xda, 0x6b, 0xea, 0x33, 0x47, 0xcd, 0x4c, 0xf9, 0x7d, 0x7d, 0xbe +.byte 0xbd, 0x2d, 0x3d, 0xf0, 0xdb, 0x78, 0xe1, 0x86, 0xa5, 0xd9, 0xba, 0x09, 0x57, 0x68, 0xed, 0x57 +.byte 0x3e, 0xa0, 0xd0, 0x08, 0x41, 0x83, 0xe7, 0x28, 0x41, 0x24, 0x1f, 0xe3, 0x72, 0x15, 0xd0, 0x01 +.byte 0x1a, 0xfb, 0x5e, 0x70, 0x23, 0xb2, 0xcb, 0x9f, 0x39, 0xe3, 0xcf, 0xc5, 0x4e, 0xc6, 0x92, 0x6d +.byte 0x26, 0xc6, 0x7b, 0xbb, 0xb3, 0xda, 0x27, 0x9d, 0x0a, 0x86, 0xe9, 0x81, 0x37, 0x05, 0xfe, 0xf0 +.byte 0x71, 0x71, 0xec, 0xc3, 0x1c, 0xe9, 0x63, 0xa2, 0x17, 0x14, 0x9d, 0xef, 0x1b, 0x67, 0xd3, 0x85 +.byte 0x55, 0x02, 0x02, 0xd6, 0x49, 0xc9, 0xcc, 0x5a, 0xe1, 0xb1, 0xf7, 0x6f, 0x32, 0x9f, 0xc9, 0xd4 +.byte 0x3b, 0x88, 0x41, 0xa8, 0x9c, 0xbd, 0xcb, 0xab, 0xdb, 0x6d, 0x7b, 0x09, 0x1f, 0xa2, 0x4c, 0x72 +.byte 0x90, 0xda, 0x2b, 0x08, 0xfc, 0xcf, 0x3c, 0x54, 0xce, 0x67, 0x0f, 0xa8, 0xcf, 0x5d, 0x96, 0x19 +.byte 0x0b, 0xc4, 0xe3, 0x72, 0xeb, 0xad, 0xd1, 0x7d, 0x1d, 0x27, 0xef, 0x92, 0xeb, 0x10, 0xbf, 0x5b +.byte 0xeb, 0x3b, 0xaf, 0xcf, 0x80, 0xdd, 0xc1, 0xd2, 0x96, 0x04, 0x5b, 0x7a, 0x7e, 0xa4, 0xa9, 0x3c +.byte 0x38, 0x76, 0xa4, 0x62, 0x8e, 0xa0, 0x39, 0x5e, 0xea, 0x77, 0xcf, 0x5d, 0x00, 0x59, 0x8f, 0x66 +.byte 0x2c, 0x3e, 0x07, 0xa2, 0xa3, 0x05, 0x26, 0x11, 0x69, 0x97, 0xea, 0x85, 0xb7, 0x0f, 0x96, 0x0b +.byte 0x4b, 0xc8, 0x40, 0xe1, 0x50, 0xba, 0x2e, 0x8a, 0xcb, 0xf7, 0x0f, 0x9a, 0x22, 0xe7, 0x7f, 0x9a +.byte 0x37, 0x13, 0xcd, 0xf2, 0x4d, 0x13, 0x6b, 0x21, 0xd1, 0xc0, 0xcc, 0x22, 0xf2, 0xa1, 0x46, 0xf6 +.byte 0x44, 0x69, 0x9c, 0xca, 0x61, 0x35, 0x07, 0x00, 0x6f, 0xd6, 0x61, 0x08, 0x11, 0xea, 0xba, 0xb8 +.byte 0xf6, 0xe9, 0xb3, 0x60, 0xe5, 0x4d, 0xb9, 0xec, 0x9f, 0x14, 0x66, 0xc9, 0x57, 0x58, 0xdb, 0xcd +.byte 0x87, 0x69, 0xf8, 0x8a, 0x86, 0x12, 0x03, 0x47, 0xbf, 0x66, 0x13, 0x76, 0xac, 0x77, 0x7d, 0x34 +.byte 0x24, 0x85, 0x83, 0xcd, 0xd7, 0xaa, 0x9c, 0x90, 0x1a, 0x9f, 0x21, 0x2c, 0x7f, 0x78, 0xb7, 0x64 +.byte 0xb8, 0xd8, 0xe8, 0xa6, 0xf4, 0x78, 0xb3, 0x55, 0xcb, 0x84, 0xd2, 0x32, 0xc4, 0x78, 0xae, 0xa3 +.byte 0x8f, 0x61, 0xdd, 0xce, 0x08, 0x53, 0xad, 0xec, 0x88, 0xfc, 0x15, 0xe4, 0x9a, 0x0d, 0xe6, 0x9f +.byte 0x1a, 0x77, 0xce, 0x4c, 0x8f, 0xb8, 0x14, 0x15, 0x3d, 0x62, 0x9c, 0x86, 0x38, 0x06, 0x00, 0x66 +.byte 0x12, 0xe4, 0x59, 0x76, 0x5a, 0x53, 0xc0, 0x02, 0x98, 0xa2, 0x10, 0x2b, 0x68, 0x44, 0x7b, 0x8e +.byte 0x79, 0xce, 0x33, 0x4a, 0x76, 0xaa, 0x5b, 0x81, 0x16, 0x1b, 0xb5, 0x8a, 0xd8, 0xd0, 0x00, 0x7b +.byte 0x5e, 0x62, 0xb4, 0x09, 0xd6, 0x86, 0x63, 0x0e, 0xa6, 0x05, 0x95, 0x49, 0xba, 0x28, 0x8b, 0x88 +.byte 0x93, 0xb2, 0x34, 0x1c, 0xd8, 0xa4, 0x55, 0x6e, 0xb7, 0x1c, 0xd0, 0xde, 0x99, 0x55, 0x3b, 0x23 +.byte 0xf4, 0x22, 0xe0, 0xf9, 0x29, 0x66, 0x26, 0xec, 0x20, 0x50, 0x77, 0xdb, 0x4a, 0x0b, 0x8f, 0xbe +.byte 0xe5, 0x02, 0x60, 0x70, 0x41, 0x5e, 0xd4, 0xae, 0x50, 0x39, 0x22, 0x14, 0x26, 0xcb, 0xb2, 0x3b +.byte 0x73, 0x74, 0x55, 0x47, 0x07, 0x79, 0x81, 0x39, 0xa8, 0x30, 0x13, 0x44, 0xe5, 0x04, 0x8a, 0xae +.byte 0x96, 0x13, 0x25, 0x42, 0x0f, 0xb9, 0x53, 0xc4, 0x9b, 0xfc, 0xcd, 0xe4, 0x1c, 0xde, 0x3c, 0xfa +.byte 0xab, 0xd6, 0x06, 0x4a, 0x1f, 0x67, 0xa6, 0x98, 0x30, 0x1c, 0xdd, 0x2c, 0xdb, 0xdc, 0x18, 0x95 +.byte 0x57, 0x66, 0xc6, 0xff, 0x5c, 0x8b, 0x56, 0xf5, 0x77, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x85 +.byte 0x01, 0x26, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x15, 0x77, 0x77, 0x77 +.byte 0x2e, 0x78, 0x72, 0x61, 0x6d, 0x70, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x2e, 0x63 +.byte 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x58, 0x52, 0x61 +.byte 0x6d, 0x70, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x53, 0x65, 0x72, 0x76 +.byte 0x69, 0x63, 0x65, 0x73, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x24, 0x58, 0x52, 0x61, 0x6d, 0x70, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 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, 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, 0x98, 0x24, 0x1e, 0xbd, 0x15, 0xb4, 0xba, 0xdf +.byte 0xc7, 0x8c, 0xa5, 0x27, 0xb6, 0x38, 0x0b, 0x69, 0xf3, 0xb6, 0x4e, 0xa8, 0x2c, 0x2e, 0x21, 0x1d +.byte 0x5c, 0x44, 0xdf, 0x21, 0x5d, 0x7e, 0x23, 0x74, 0xfe, 0x5e, 0x7e, 0xb4, 0x4a, 0xb7, 0xa6, 0xad +.byte 0x1f, 0xae, 0xe0, 0x06, 0x16, 0xe2, 0x9b, 0x5b, 0xd9, 0x67, 0x74, 0x6b, 0x5d, 0x80, 0x8f, 0x29 +.byte 0x9d, 0x86, 0x1b, 0xd9, 0x9c, 0x0d, 0x98, 0x6d, 0x76, 0x10, 0x28, 0x58, 0xe4, 0x65, 0xb0, 0x7f +.byte 0x4a, 0x98, 0x79, 0x9f, 0xe0, 0xc3, 0x31, 0x7e, 0x80, 0x2b, 0xb5, 0x8c, 0xc0, 0x40, 0x3b, 0x11 +.byte 0x86, 0xd0, 0xcb, 0xa2, 0x86, 0x36, 0x60, 0xa4, 0xd5, 0x30, 0x82, 0x6d, 0xd9, 0x6e, 0xd0, 0x0f +.byte 0x12, 0x04, 0x33, 0x97, 0x5f, 0x4f, 0x61, 0x5a, 0xf0, 0xe4, 0xf9, 0x91, 0xab, 0xe7, 0x1d, 0x3b +.byte 0xbc, 0xe8, 0xcf, 0xf4, 0x6b, 0x2d, 0x34, 0x7c, 0xe2, 0x48, 0x61, 0x1c, 0x8e, 0xf3, 0x61, 0x44 +.byte 0xcc, 0x6f, 0xa0, 0x4a, 0xa9, 0x94, 0xb0, 0x4d, 0xda, 0xe7, 0xa9, 0x34, 0x7a, 0x72, 0x38, 0xa8 +.byte 0x41, 0xcc, 0x3c, 0x94, 0x11, 0x7d, 0xeb, 0xc8, 0xa6, 0x8c, 0xb7, 0x86, 0xcb, 0xca, 0x33, 0x3b +.byte 0xd9, 0x3d, 0x37, 0x8b, 0xfb, 0x7a, 0x3e, 0x86, 0x2c, 0xe7, 0x73, 0xd7, 0x0a, 0x57, 0xac, 0x64 +.byte 0x9b, 0x19, 0xeb, 0xf4, 0x0f, 0x04, 0x08, 0x8a, 0xac, 0x03, 0x17, 0x19, 0x64, 0xf4, 0x5a, 0x25 +.byte 0x22, 0x8d, 0x34, 0x2c, 0xb2, 0xf6, 0x68, 0x1d, 0x12, 0x6d, 0xd3, 0x8a, 0x1e, 0x14, 0xda, 0xc4 +.byte 0x8f, 0xa6, 0xe2, 0x23, 0x85, 0xd5, 0x7a, 0x0d, 0xbd, 0x6a, 0xe0, 0xe9, 0xec, 0xec, 0x17, 0xbb +.byte 0x42, 0x1b, 0x67, 0xaa, 0x25, 0xed, 0x45, 0x83, 0x21, 0xfc, 0xc1, 0xc9, 0x7c, 0xd5, 0x62, 0x3e +.byte 0xfa, 0xf2, 0xc5, 0x2d, 0xd3, 0xfd, 0xd4, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x86, 0x01 +.byte 0x26, 0x30, 0x81, 0x83, 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, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x11, 0x47, 0x6f, 0x44, 0x61, 0x64, 0x64, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2c, 0x20 +.byte 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x28, 0x47 +.byte 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 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, 0x2d, 0x20, 0x47, 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, 0xbf, 0x71, 0x62, 0x08, 0xf1, 0xfa, 0x59, 0x34 +.byte 0xf7, 0x1b, 0xc9, 0x18, 0xa3, 0xf7, 0x80, 0x49, 0x58, 0xe9, 0x22, 0x83, 0x13, 0xa6, 0xc5, 0x20 +.byte 0x43, 0x01, 0x3b, 0x84, 0xf1, 0xe6, 0x85, 0x49, 0x9f, 0x27, 0xea, 0xf6, 0x84, 0x1b, 0x4e, 0xa0 +.byte 0xb4, 0xdb, 0x70, 0x98, 0xc7, 0x32, 0x01, 0xb1, 0x05, 0x3e, 0x07, 0x4e, 0xee, 0xf4, 0xfa, 0x4f +.byte 0x2f, 0x59, 0x30, 0x22, 0xe7, 0xab, 0x19, 0x56, 0x6b, 0xe2, 0x80, 0x07, 0xfc, 0xf3, 0x16, 0x75 +.byte 0x80, 0x39, 0x51, 0x7b, 0xe5, 0xf9, 0x35, 0xb6, 0x74, 0x4e, 0xa9, 0x8d, 0x82, 0x13, 0xe4, 0xb6 +.byte 0x3f, 0xa9, 0x03, 0x83, 0xfa, 0xa2, 0xbe, 0x8a, 0x15, 0x6a, 0x7f, 0xde, 0x0b, 0xc3, 0xb6, 0x19 +.byte 0x14, 0x05, 0xca, 0xea, 0xc3, 0xa8, 0x04, 0x94, 0x3b, 0x46, 0x7c, 0x32, 0x0d, 0xf3, 0x00, 0x66 +.byte 0x22, 0xc8, 0x8d, 0x69, 0x6d, 0x36, 0x8c, 0x11, 0x18, 0xb7, 0xd3, 0xb2, 0x1c, 0x60, 0xb4, 0x38 +.byte 0xfa, 0x02, 0x8c, 0xce, 0xd3, 0xdd, 0x46, 0x07, 0xde, 0x0a, 0x3e, 0xeb, 0x5d, 0x7c, 0xc8, 0x7c +.byte 0xfb, 0xb0, 0x2b, 0x53, 0xa4, 0x92, 0x62, 0x69, 0x51, 0x25, 0x05, 0x61, 0x1a, 0x44, 0x81, 0x8c +.byte 0x2c, 0xa9, 0x43, 0x96, 0x23, 0xdf, 0xac, 0x3a, 0x81, 0x9a, 0x0e, 0x29, 0xc5, 0x1c, 0xa9, 0xe9 +.byte 0x5d, 0x1e, 0xb6, 0x9e, 0x9e, 0x30, 0x0a, 0x39, 0xce, 0xf1, 0x88, 0x80, 0xfb, 0x4b, 0x5d, 0xcc +.byte 0x32, 0xec, 0x85, 0x62, 0x43, 0x25, 0x34, 0x02, 0x56, 0x27, 0x01, 0x91, 0xb4, 0x3b, 0x70, 0x2a +.byte 0x3f, 0x6e, 0xb1, 0xe8, 0x9c, 0x88, 0x01, 0x7d, 0x9f, 0xd4, 0xf9, 0xdb, 0x53, 0x6d, 0x60, 0x9d +.byte 0xbf, 0x2c, 0xe7, 0x58, 0xab, 0xb8, 0x5f, 0x46, 0xfc, 0xce, 0xc4, 0x1b, 0x03, 0x3c, 0x09, 0xeb +.byte 0x49, 0x31, 0x5c, 0x69, 0x46, 0xb3, 0xe0, 0x47, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x87, 0x02 +.byte 0x26, 0x30, 0x81, 0x84, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x05, 0x13, 0x09, 0x47 +.byte 0x36, 0x33, 0x32, 0x38, 0x37, 0x35, 0x31, 0x30, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1e +.byte 0x41, 0x4e, 0x46, 0x20, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x31, 0x14 +.byte 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0b, 0x41, 0x4e, 0x46, 0x20, 0x43, 0x41, 0x20 +.byte 0x52, 0x61, 0x69, 0x7a, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x41 +.byte 0x4e, 0x46, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 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, 0xdb, 0xeb, 0x6b, 0x2b, 0xe6, 0x64, 0x54 +.byte 0x95, 0x82, 0x90, 0xa3, 0x72, 0xa4, 0x19, 0x01, 0x9d, 0x9c, 0x0b, 0x81, 0x5f, 0x73, 0x49, 0xba +.byte 0xa7, 0xac, 0xf3, 0x04, 0x4e, 0x7b, 0x96, 0x0b, 0xec, 0x11, 0xe0, 0x5b, 0xa6, 0x1c, 0xce, 0x1b +.byte 0xd2, 0x0d, 0x83, 0x1c, 0x2b, 0xb8, 0x9e, 0x1d, 0x7e, 0x45, 0x32, 0x60, 0x0f, 0x07, 0xe9, 0x77 +.byte 0x58, 0x7e, 0x9f, 0x6a, 0xc8, 0x61, 0x4e, 0xb6, 0x26, 0xc1, 0x4c, 0x8d, 0xff, 0x4c, 0xef, 0x34 +.byte 0xb2, 0x1f, 0x65, 0xd8, 0xb9, 0x78, 0xf5, 0xad, 0xa9, 0x71, 0xb9, 0xef, 0x4f, 0x58, 0x1d, 0xa5 +.byte 0xde, 0x74, 0x20, 0x97, 0xa1, 0xed, 0x68, 0x4c, 0xde, 0x92, 0x17, 0x4b, 0xbc, 0xab, 0xff, 0x65 +.byte 0x9a, 0x9e, 0xfb, 0x47, 0xd9, 0x57, 0x72, 0xf3, 0x09, 0xa1, 0xae, 0x76, 0x44, 0x13, 0x6e, 0x9c +.byte 0x2d, 0x44, 0x39, 0xbc, 0xf9, 0xc7, 0x3b, 0xa4, 0x58, 0x3d, 0x41, 0xbd, 0xb4, 0xc2, 0x49, 0xa3 +.byte 0xc8, 0x0d, 0xd2, 0x97, 0x2f, 0x07, 0x65, 0x52, 0x00, 0xa7, 0x6e, 0xc8, 0xaf, 0x68, 0xec, 0xf4 +.byte 0x14, 0x96, 0xb6, 0x57, 0x1f, 0x56, 0xc3, 0x39, 0x9f, 0x2b, 0x6d, 0xe4, 0xf3, 0x3e, 0xf6, 0x35 +.byte 0x64, 0xda, 0x0c, 0x1c, 0xa1, 0x84, 0x4b, 0x2f, 0x4b, 0x4b, 0xe2, 0x2c, 0x24, 0x9d, 0x6d, 0x93 +.byte 0x40, 0xeb, 0xb5, 0x23, 0x8e, 0x32, 0xca, 0x6f, 0x45, 0xd3, 0xa8, 0x89, 0x7b, 0x1e, 0xcf, 0x1e +.byte 0xfa, 0x5b, 0x43, 0x8b, 0xcd, 0xcd, 0xa8, 0x0f, 0x6a, 0xca, 0x0c, 0x5e, 0xb9, 0x9e, 0x47, 0x8f +.byte 0xf0, 0xd9, 0xb6, 0x0a, 0x0b, 0x58, 0x65, 0x17, 0x33, 0xb9, 0x23, 0xe4, 0x77, 0x19, 0x7d, 0xcb +.byte 0x4a, 0x2e, 0x92, 0x7b, 0x4f, 0x2f, 0x10, 0x77, 0xb1, 0x8d, 0x2f, 0x68, 0x9c, 0x62, 0xcc, 0xe0 +.byte 0x50, 0xf8, 0xec, 0x91, 0xa7, 0x54, 0x4c, 0x57, 0x09, 0xd5, 0x76, 0x63, 0xc5, 0xe8, 0x65, 0x1e +.byte 0xee, 0x6d, 0x6a, 0xcf, 0x09, 0x9d, 0xfa, 0x7c, 0x4f, 0xad, 0x60, 0x08, 0xfd, 0x56, 0x99, 0x0f +.byte 0x15, 0x2c, 0x7b, 0xa9, 0x80, 0xab, 0x8c, 0x61, 0x8f, 0x4a, 0x07, 0x76, 0x42, 0xde, 0x3d, 0xf4 +.byte 0xdd, 0xb2, 0x24, 0x33, 0x5b, 0xb8, 0xb5, 0xa3, 0x44, 0xc9, 0xac, 0x7f, 0x77, 0x3c, 0x1d, 0x23 +.byte 0xec, 0x82, 0xa9, 0xa6, 0xe2, 0xc8, 0x06, 0x4c, 0x02, 0xfe, 0xac, 0x5c, 0x99, 0x99, 0x0b, 0x2f +.byte 0x10, 0x8a, 0xa6, 0xf4, 0x7f, 0xd5, 0x87, 0x74, 0x0d, 0x59, 0x49, 0x45, 0xf6, 0xf0, 0x71, 0x5c +.byte 0x39, 0x29, 0xd6, 0xbf, 0x4a, 0x23, 0x8b, 0xf5, 0x5f, 0x01, 0x63, 0xd2, 0x87, 0x73, 0x28, 0xb5 +.byte 0x4b, 0x0a, 0xf5, 0xf8, 0xab, 0x82, 0x2c, 0x7e, 0x73, 0x25, 0x32, 0x1d, 0x0b, 0x63, 0x0a, 0x17 +.byte 0x81, 0x00, 0xff, 0xb6, 0x76, 0x5e, 0xe7, 0xb4, 0xb1, 0x40, 0xca, 0x21, 0xbb, 0xd5, 0x80, 0x51 +.byte 0xe5, 0x48, 0x52, 0x67, 0x2c, 0xd2, 0x61, 0x89, 0x07, 0x0d, 0x0f, 0xce, 0x42, 0x77, 0xc0, 0x44 +.byte 0x73, 0x9c, 0x44, 0x50, 0xa0, 0xdb, 0x10, 0x0a, 0x2d, 0x95, 0x1c, 0x81, 0xaf, 0xe4, 0x1c, 0xe5 +.byte 0x14, 0x1e, 0xf1, 0x36, 0x41, 0x01, 0x02, 0x2f, 0x7d, 0x73, 0xa7, 0xde, 0x42, 0xcc, 0x4c, 0xe9 +.byte 0x89, 0x0d, 0x56, 0xf7, 0x9f, 0x91, 0xd4, 0x03, 0xc6, 0x6c, 0xc9, 0x8f, 0xdb, 0xd8, 0x1c, 0xe0 +.byte 0x40, 0x98, 0x5d, 0x66, 0x99, 0x98, 0x80, 0x6e, 0x2d, 0xff, 0x01, 0xc5, 0xce, 0xcb, 0x46, 0x1f +.byte 0xac, 0x02, 0xc6, 0x43, 0xe6, 0xae, 0xa2, 0x84, 0x3c, 0xc5, 0x4e, 0x1e, 0x3d, 0x6d, 0xc9, 0x14 +.byte 0x4c, 0xe3, 0x2e, 0x41, 0xbb, 0xca, 0x39, 0xbf, 0x36, 0x3c, 0x2a, 0x19, 0xaa, 0x41, 0x87, 0x4e +.byte 0xa5, 0xce, 0x4b, 0x32, 0x79, 0xdd, 0x90, 0x49, 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x88 +.byte 0x00, 0x78, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 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, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72 +.byte 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f +.byte 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30 +.byte 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x45 +.byte 0x43, 0x43, 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, 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, 0x03, 0x47, 0x7b, 0x2f, 0x75, 0xc9, 0x82, 0x15, 0x85, 0xfb, 0x75, 0xe4, 0x91, 0x16 +.byte 0xd4, 0xab, 0x62, 0x99, 0xf5, 0x3e, 0x52, 0x0b, 0x06, 0xce, 0x41, 0x00, 0x7f, 0x97, 0xe1, 0x0a +.byte 0x24, 0x3c, 0x1d, 0x01, 0x04, 0xee, 0x3d, 0xd2, 0x8d, 0x09, 0x97, 0x0c, 0xe0, 0x75, 0xe4, 0xfa +.byte 0xfb, 0x77, 0x8a, 0x2a, 0xf5, 0x03, 0x60, 0x4b, 0x36, 0x8b, 0x16, 0x23, 0x16, 0xad, 0x09, 0x71 +.byte 0xf4, 0x4a, 0xf4, 0x28, 0x50, 0xb4, 0xfe, 0x88, 0x1c, 0x6e, 0x3f, 0x6c, 0x2f, 0x2f, 0x09, 0x59 +.byte 0x5b, 0xa5, 0x5b, 0x0b, 0x33, 0x99, 0xe2, 0xc3, 0x3d, 0x89, 0xf9, 0x6a, 0x2c, 0xef, 0xb2, 0xd3 +.byte 0x06, 0xe9, 0x00, 0x88, 0x02, 0x26, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13 +.byte 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73 +.byte 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61 +.byte 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11 +.byte 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65 +.byte 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f +.byte 0x44, 0x4f, 0x20, 0x52, 0x53, 0x41, 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, 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, 0x91 +.byte 0xe8, 0x54, 0x92, 0xd2, 0x0a, 0x56, 0xb1, 0xac, 0x0d, 0x24, 0xdd, 0xc5, 0xcf, 0x44, 0x67, 0x74 +.byte 0x99, 0x2b, 0x37, 0xa3, 0x7d, 0x23, 0x70, 0x00, 0x71, 0xbc, 0x53, 0xdf, 0xc4, 0xfa, 0x2a, 0x12 +.byte 0x8f, 0x4b, 0x7f, 0x10, 0x56, 0xbd, 0x9f, 0x70, 0x72, 0xb7, 0x61, 0x7f, 0xc9, 0x4b, 0x0f, 0x17 +.byte 0xa7, 0x3d, 0xe3, 0xb0, 0x04, 0x61, 0xee, 0xff, 0x11, 0x97, 0xc7, 0xf4, 0x86, 0x3e, 0x0a, 0xfa +.byte 0x3e, 0x5c, 0xf9, 0x93, 0xe6, 0x34, 0x7a, 0xd9, 0x14, 0x6b, 0xe7, 0x9c, 0xb3, 0x85, 0xa0, 0x82 +.byte 0x7a, 0x76, 0xaf, 0x71, 0x90, 0xd7, 0xec, 0xfd, 0x0d, 0xfa, 0x9c, 0x6c, 0xfa, 0xdf, 0xb0, 0x82 +.byte 0xf4, 0x14, 0x7e, 0xf9, 0xbe, 0xc4, 0xa6, 0x2f, 0x4f, 0x7f, 0x99, 0x7f, 0xb5, 0xfc, 0x67, 0x43 +.byte 0x72, 0xbd, 0x0c, 0x00, 0xd6, 0x89, 0xeb, 0x6b, 0x2c, 0xd3, 0xed, 0x8f, 0x98, 0x1c, 0x14, 0xab +.byte 0x7e, 0xe5, 0xe3, 0x6e, 0xfc, 0xd8, 0xa8, 0xe4, 0x92, 0x24, 0xda, 0x43, 0x6b, 0x62, 0xb8, 0x55 +.byte 0xfd, 0xea, 0xc1, 0xbc, 0x6c, 0xb6, 0x8b, 0xf3, 0x0e, 0x8d, 0x9a, 0xe4, 0x9b, 0x6c, 0x69, 0x99 +.byte 0xf8, 0x78, 0x48, 0x30, 0x45, 0xd5, 0xad, 0xe1, 0x0d, 0x3c, 0x45, 0x60, 0xfc, 0x32, 0x96, 0x51 +.byte 0x27, 0xbc, 0x67, 0xc3, 0xca, 0x2e, 0xb6, 0x6b, 0xea, 0x46, 0xc7, 0xc7, 0x20, 0xa0, 0xb1, 0x1f +.byte 0x65, 0xde, 0x48, 0x08, 0xba, 0xa4, 0x4e, 0xa9, 0xf2, 0x83, 0x46, 0x37, 0x84, 0xeb, 0xe8, 0xcc +.byte 0x81, 0x48, 0x43, 0x67, 0x4e, 0x72, 0x2a, 0x9b, 0x5c, 0xbd, 0x4c, 0x1b, 0x28, 0x8a, 0x5c, 0x22 +.byte 0x7b, 0xb4, 0xab, 0x98, 0xd9, 0xee, 0xe0, 0x51, 0x83, 0xc3, 0x09, 0x46, 0x4e, 0x6d, 0x3e, 0x99 +.byte 0xfa, 0x95, 0x17, 0xda, 0x7c, 0x33, 0x57, 0x41, 0x3c, 0x8d, 0x51, 0xed, 0x0b, 0xb6, 0x5c, 0xaf +.byte 0x2c, 0x63, 0x1a, 0xdf, 0x57, 0xc8, 0x3f, 0xbc, 0xe9, 0x5d, 0xc4, 0x9b, 0xaf, 0x45, 0x99, 0xe2 +.byte 0xa3, 0x5a, 0x24, 0xb4, 0xba, 0xa9, 0x56, 0x3d, 0xcf, 0x6f, 0xaa, 0xff, 0x49, 0x58, 0xbe, 0xf0 +.byte 0xa8, 0xff, 0xf4, 0xb8, 0xad, 0xe9, 0x37, 0xfb, 0xba, 0xb8, 0xf4, 0x0b, 0x3a, 0xf9, 0xe8, 0x43 +.byte 0x42, 0x1e, 0x89, 0xd8, 0x84, 0xcb, 0x13, 0xf1, 0xd9, 0xbb, 0xe1, 0x89, 0x60, 0xb8, 0x8c, 0x28 +.byte 0x56, 0xac, 0x14, 0x1d, 0x9c, 0x0a, 0xe7, 0x71, 0xeb, 0xcf, 0x0e, 0xdd, 0x3d, 0xa9, 0x96, 0xa1 +.byte 0x48, 0xbd, 0x3c, 0xf7, 0xaf, 0xb5, 0x0d, 0x22, 0x4c, 0xc0, 0x11, 0x81, 0xec, 0x56, 0x3b, 0xf6 +.byte 0xd3, 0xa2, 0xe2, 0x5b, 0xb7, 0xb2, 0x04, 0x22, 0x52, 0x95, 0x80, 0x93, 0x69, 0xe8, 0x8e, 0x4c +.byte 0x65, 0xf1, 0x91, 0x03, 0x2d, 0x70, 0x74, 0x02, 0xea, 0x8b, 0x67, 0x15, 0x29, 0x69, 0x52, 0x02 +.byte 0xbb, 0xd7, 0xdf, 0x50, 0x6a, 0x55, 0x46, 0xbf, 0xa0, 0xa3, 0x28, 0x61, 0x7f, 0x70, 0xd0, 0xc3 +.byte 0xa2, 0xaa, 0x2c, 0x21, 0xaa, 0x47, 0xce, 0x28, 0x9c, 0x06, 0x45, 0x76, 0xbf, 0x82, 0x18, 0x27 +.byte 0xb4, 0xd5, 0xae, 0xb4, 0xcb, 0x50, 0xe6, 0x6b, 0xf4, 0x4c, 0x86, 0x71, 0x30, 0xe9, 0xa6, 0xdf +.byte 0x16, 0x86, 0xe0, 0xd8, 0xff, 0x40, 0xdd, 0xfb, 0xd0, 0x42, 0x88, 0x7f, 0xa3, 0x33, 0x3a, 0x2e +.byte 0x5c, 0x1e, 0x41, 0x11, 0x81, 0x63, 0xce, 0x18, 0x71, 0x6b, 0x2b, 0xec, 0xa6, 0x8a, 0xb7, 0x31 +.byte 0x5c, 0x3a, 0x6a, 0x47, 0xe0, 0xc3, 0x79, 0x59, 0xd6, 0x20, 0x1a, 0xaf, 0xf2, 0x6a, 0x98, 0xaa +.byte 0x72, 0xbc, 0x57, 0x4a, 0xd2, 0x4b, 0x9d, 0xbb, 0x10, 0xfc, 0xb0, 0x4c, 0x41, 0xe5, 0xed, 0x1d +.byte 0x3d, 0x5e, 0x28, 0x9d, 0x9c, 0xcc, 0xbf, 0xb3, 0x51, 0xda, 0xa7, 0x47, 0xe5, 0x84, 0x53, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x00, 0x8b, 0x02, 0x26, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04 +.byte 0x08, 0x0c, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30 +.byte 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76 +.byte 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e +.byte 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 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, 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, 0xb9, 0x5d, 0x51, 0x28, 0x4b, 0x3c, 0x37, 0x92, 0xd1, 0x82, 0xce, 0xbd +.byte 0x1d, 0xbd, 0xcd, 0xdd, 0xb8, 0xab, 0xcf, 0x0a, 0x3e, 0xe1, 0x5d, 0xe5, 0xdc, 0xaa, 0x09, 0xb9 +.byte 0x57, 0x02, 0x3e, 0xe6, 0x63, 0x61, 0xdf, 0xf2, 0x0f, 0x82, 0x63, 0xae, 0xa3, 0xf7, 0xac, 0x73 +.byte 0xd1, 0x7c, 0xe7, 0xb3, 0x0b, 0xaf, 0x08, 0x00, 0x09, 0x59, 0x7f, 0xcd, 0x29, 0x2a, 0x88, 0x93 +.byte 0x87, 0x17, 0x18, 0x80, 0xed, 0x88, 0xb2, 0xb4, 0xb6, 0x10, 0x1f, 0x2d, 0xd6, 0x5f, 0x55, 0xa2 +.byte 0x13, 0x5d, 0xd1, 0xc6, 0xeb, 0x06, 0x56, 0x89, 0x88, 0xfe, 0xac, 0x32, 0x9d, 0xfd, 0x5c, 0xc3 +.byte 0x05, 0xc7, 0x6e, 0xee, 0x86, 0x89, 0xba, 0x88, 0x03, 0x9d, 0x72, 0x21, 0x86, 0x90, 0xae, 0x8f +.byte 0x03, 0xa5, 0xdc, 0x9f, 0x88, 0x28, 0xcb, 0xa3, 0x92, 0x49, 0x0f, 0xec, 0xd0, 0x0f, 0xe2, 0x6d +.byte 0x44, 0x4f, 0x80, 0x6a, 0xb2, 0xd4, 0xe7, 0xa0, 0x0a, 0x53, 0x01, 0xba, 0x8e, 0x97, 0x91, 0x76 +.byte 0x6e, 0xbc, 0xfc, 0xd5, 0x6b, 0x36, 0xe6, 0x40, 0x88, 0xd6, 0x7b, 0x2f, 0x5f, 0x05, 0xe8, 0x2c +.byte 0x6d, 0x11, 0xf3, 0xe7, 0xb2, 0xbe, 0x92, 0x44, 0x4c, 0xd2, 0x97, 0xa4, 0xfe, 0xd2, 0x72, 0x81 +.byte 0x43, 0x07, 0x9c, 0xe9, 0x11, 0x3e, 0xf5, 0x8b, 0x1a, 0x59, 0x7d, 0x1f, 0x68, 0x58, 0xdd, 0x04 +.byte 0x00, 0x2c, 0x96, 0xf3, 0x43, 0xb3, 0x7e, 0x98, 0x19, 0x74, 0xd9, 0x9c, 0x73, 0xd9, 0x18, 0xbe +.byte 0x41, 0xc7, 0x34, 0x79, 0xd9, 0xf4, 0x62, 0xc2, 0x43, 0xb9, 0xb3, 0x27, 0xb0, 0x22, 0xcb, 0xf9 +.byte 0x3d, 0x52, 0xc7, 0x30, 0x47, 0xb3, 0xc9, 0x3e, 0xb8, 0x6a, 0xe2, 0xe7, 0xe8, 0x81, 0x70, 0x5e +.byte 0x42, 0x8b, 0x4f, 0x26, 0xa5, 0xfe, 0x3a, 0xc2, 0x20, 0x6e, 0xbb, 0xf8, 0x16, 0x8e, 0xcd, 0x0c +.byte 0xa9, 0xb4, 0x1b, 0x6c, 0x76, 0x10, 0xe1, 0x58, 0x79, 0x46, 0x3e, 0x54, 0xce, 0x80, 0xa8, 0x57 +.byte 0x09, 0x37, 0x29, 0x1b, 0x99, 0x13, 0x8f, 0x0c, 0xc8, 0xd6, 0x2c, 0x1c, 0xfb, 0x05, 0xe8, 0x08 +.byte 0x95, 0x3d, 0x65, 0x46, 0xdc, 0xee, 0xcd, 0x69, 0xe2, 0x4d, 0x8f, 0x87, 0x28, 0x4e, 0x34, 0x0b +.byte 0x3e, 0xcf, 0x14, 0xd9, 0xbb, 0xdd, 0xb6, 0x50, 0x9a, 0xad, 0x77, 0xd4, 0x19, 0xd6, 0xda, 0x1a +.byte 0x88, 0xc8, 0x4e, 0x1b, 0x27, 0x75, 0xd8, 0xb2, 0x08, 0xf1, 0xae, 0x83, 0x30, 0xb9, 0x11, 0x0e +.byte 0xcd, 0x87, 0xf0, 0x84, 0x8d, 0x15, 0x72, 0x7c, 0xa1, 0xef, 0xcc, 0xf2, 0x88, 0x61, 0xba, 0xf4 +.byte 0x69, 0xbb, 0x0c, 0x8c, 0x0b, 0x75, 0x57, 0x04, 0xb8, 0x4e, 0x2a, 0x14, 0x2e, 0x3d, 0x0f, 0x1c +.byte 0x1e, 0x32, 0xa6, 0x62, 0x36, 0xee, 0x66, 0xe2, 0x22, 0xb8, 0x05, 0x40, 0x63, 0x10, 0x22, 0xf3 +.byte 0x33, 0x1d, 0x74, 0x72, 0x8a, 0x2c, 0xf5, 0x39, 0x29, 0xa0, 0xd3, 0xe7, 0x1b, 0x80, 0x84, 0x2d +.byte 0xc5, 0x3d, 0xe3, 0x4d, 0xb1, 0xfd, 0x1a, 0x6f, 0xba, 0x65, 0x07, 0x3b, 0x58, 0xec, 0x42, 0x45 +.byte 0x26, 0xfb, 0xd8, 0xda, 0x25, 0x72, 0xc4, 0xf6, 0x00, 0xb1, 0x22, 0x79, 0xbd, 0xe3, 0x7c, 0x59 +.byte 0x62, 0x4a, 0x9c, 0x05, 0x6f, 0x3d, 0xce, 0xe6, 0xd6, 0x47, 0x63, 0x99, 0xc6, 0x24, 0x6f, 0x72 +.byte 0x12, 0xc8, 0xac, 0x7f, 0x90, 0xb4, 0x0b, 0x91, 0x70, 0xe8, 0xb7, 0xe6, 0x16, 0x10, 0x71, 0x17 +.byte 0xce, 0xde, 0x06, 0x4f, 0x48, 0x41, 0x7d, 0x35, 0x4a, 0xa3, 0x89, 0xf2, 0xc9, 0x4b, 0x7b, 0x41 +.byte 0x11, 0x6d, 0x67, 0xb7, 0x08, 0x98, 0x4c, 0xe5, 0x11, 0x19, 0xae, 0x42, 0x80, 0xdc, 0xfb, 0x90 +.byte 0x05, 0xd4, 0xf8, 0x50, 0xca, 0xbe, 0xe4, 0xad, 0xc7, 0xc2, 0x94, 0xd7, 0x16, 0x9d, 0xe6, 0x17 +.byte 0x8f, 0xaf, 0x36, 0xfb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x8b, 0x00, 0x78, 0x30, 0x81, 0x88 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30 +.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73 +.byte 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72 +.byte 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54 +.byte 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43 +.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, 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 0x1a, 0xac, 0x54, 0x5a, 0xa9, 0xf9, 0x68, 0x23, 0xe7, 0x7a, 0xd5, 0x24, 0x6f, 0x53, 0xc6, 0x5a +.byte 0xd8, 0x4b, 0xab, 0xc6, 0xd5, 0xb6, 0xd1, 0xe6, 0x73, 0x71, 0xae, 0xdd, 0x9c, 0xd6, 0x0c, 0x61 +.byte 0xfd, 0xdb, 0xa0, 0x89, 0x03, 0xb8, 0x05, 0x14, 0xec, 0x57, 0xce, 0xee, 0x5d, 0x3f, 0xe2, 0x21 +.byte 0xb3, 0xce, 0xf7, 0xd4, 0x8a, 0x79, 0xe0, 0xa3, 0x83, 0x7e, 0x2d, 0x97, 0xd0, 0x61, 0xc4, 0xf1 +.byte 0x99, 0xdc, 0x25, 0x91, 0x63, 0xab, 0x7f, 0x30, 0xa3, 0xb4, 0x70, 0xe2, 0xc7, 0xa1, 0x33, 0x9c +.byte 0xf3, 0xbf, 0x2e, 0x5c, 0x53, 0xb1, 0x5f, 0xb3, 0x7d, 0x32, 0x7f, 0x8a, 0x34, 0xe3, 0x79, 0x79 +.byte 0x00, 0x8b, 0x02, 0x26, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e +.byte 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31 +.byte 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53 +.byte 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31 +.byte 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x52, 0x53, 0x41, 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, 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 0x80, 0x12, 0x65, 0x17, 0x36, 0x0e, 0xc3, 0xdb, 0x08, 0xb3, 0xd0, 0xac, 0x57, 0x0d, 0x76, 0xed +.byte 0xcd, 0x27, 0xd3, 0x4c, 0xad, 0x50, 0x83, 0x61, 0xe2, 0xaa, 0x20, 0x4d, 0x09, 0x2d, 0x64, 0x09 +.byte 0xdc, 0xce, 0x89, 0x9f, 0xcc, 0x3d, 0xa9, 0xec, 0xf6, 0xcf, 0xc1, 0xdc, 0xf1, 0xd3, 0xb1, 0xd6 +.byte 0x7b, 0x37, 0x28, 0x11, 0x2b, 0x47, 0xda, 0x39, 0xc6, 0xbc, 0x3a, 0x19, 0xb4, 0x5f, 0xa6, 0xbd +.byte 0x7d, 0x9d, 0xa3, 0x63, 0x42, 0xb6, 0x76, 0xf2, 0xa9, 0x3b, 0x2b, 0x91, 0xf8, 0xe2, 0x6f, 0xd0 +.byte 0xec, 0x16, 0x20, 0x90, 0x09, 0x3e, 0xe2, 0xe8, 0x74, 0xc9, 0x18, 0xb4, 0x91, 0xd4, 0x62, 0x64 +.byte 0xdb, 0x7f, 0xa3, 0x06, 0xf1, 0x88, 0x18, 0x6a, 0x90, 0x22, 0x3c, 0xbc, 0xfe, 0x13, 0xf0, 0x87 +.byte 0x14, 0x7b, 0xf6, 0xe4, 0x1f, 0x8e, 0xd4, 0xe4, 0x51, 0xc6, 0x11, 0x67, 0x46, 0x08, 0x51, 0xcb +.byte 0x86, 0x14, 0x54, 0x3f, 0xbc, 0x33, 0xfe, 0x7e, 0x6c, 0x9c, 0xff, 0x16, 0x9d, 0x18, 0xbd, 0x51 +.byte 0x8e, 0x35, 0xa6, 0xa7, 0x66, 0xc8, 0x72, 0x67, 0xdb, 0x21, 0x66, 0xb1, 0xd4, 0x9b, 0x78, 0x03 +.byte 0xc0, 0x50, 0x3a, 0xe8, 0xcc, 0xf0, 0xdc, 0xbc, 0x9e, 0x4c, 0xfe, 0xaf, 0x05, 0x96, 0x35, 0x1f +.byte 0x57, 0x5a, 0xb7, 0xff, 0xce, 0xf9, 0x3d, 0xb7, 0x2c, 0xb6, 0xf6, 0x54, 0xdd, 0xc8, 0xe7, 0x12 +.byte 0x3a, 0x4d, 0xae, 0x4c, 0x8a, 0xb7, 0x5c, 0x9a, 0xb4, 0xb7, 0x20, 0x3d, 0xca, 0x7f, 0x22, 0x34 +.byte 0xae, 0x7e, 0x3b, 0x68, 0x66, 0x01, 0x44, 0xe7, 0x01, 0x4e, 0x46, 0x53, 0x9b, 0x33, 0x60, 0xf7 +.byte 0x94, 0xbe, 0x53, 0x37, 0x90, 0x73, 0x43, 0xf3, 0x32, 0xc3, 0x53, 0xef, 0xdb, 0xaa, 0xfe, 0x74 +.byte 0x4e, 0x69, 0xc7, 0x6b, 0x8c, 0x60, 0x93, 0xde, 0xc4, 0xc7, 0x0c, 0xdf, 0xe1, 0x32, 0xae, 0xcc +.byte 0x93, 0x3b, 0x51, 0x78, 0x95, 0x67, 0x8b, 0xee, 0x3d, 0x56, 0xfe, 0x0c, 0xd0, 0x69, 0x0f, 0x1b +.byte 0x0f, 0xf3, 0x25, 0x26, 0x6b, 0x33, 0x6d, 0xf7, 0x6e, 0x47, 0xfa, 0x73, 0x43, 0xe5, 0x7e, 0x0e +.byte 0xa5, 0x66, 0xb1, 0x29, 0x7c, 0x32, 0x84, 0x63, 0x55, 0x89, 0xc4, 0x0d, 0xc1, 0x93, 0x54, 0x30 +.byte 0x19, 0x13, 0xac, 0xd3, 0x7d, 0x37, 0xa7, 0xeb, 0x5d, 0x3a, 0x6c, 0x35, 0x5c, 0xdb, 0x41, 0xd7 +.byte 0x12, 0xda, 0xa9, 0x49, 0x0b, 0xdf, 0xd8, 0x80, 0x8a, 0x09, 0x93, 0x62, 0x8e, 0xb5, 0x66, 0xcf +.byte 0x25, 0x88, 0xcd, 0x84, 0xb8, 0xb1, 0x3f, 0xa4, 0x39, 0x0f, 0xd9, 0x02, 0x9e, 0xeb, 0x12, 0x4c +.byte 0x95, 0x7c, 0xf3, 0x6b, 0x05, 0xa9, 0x5e, 0x16, 0x83, 0xcc, 0xb8, 0x67, 0xe2, 0xe8, 0x13, 0x9d +.byte 0xcc, 0x5b, 0x82, 0xd3, 0x4c, 0xb3, 0xed, 0x5b, 0xff, 0xde, 0xe5, 0x73, 0xac, 0x23, 0x3b, 0x2d +.byte 0x00, 0xbf, 0x35, 0x55, 0x74, 0x09, 0x49, 0xd8, 0x49, 0x58, 0x1a, 0x7f, 0x92, 0x36, 0xe6, 0x51 +.byte 0x92, 0x0e, 0xf3, 0x26, 0x7d, 0x1c, 0x4d, 0x17, 0xbc, 0xc9, 0xec, 0x43, 0x26, 0xd0, 0xbf, 0x41 +.byte 0x5f, 0x40, 0xa9, 0x44, 0x44, 0xf4, 0x99, 0xe7, 0x57, 0x87, 0x9e, 0x50, 0x1f, 0x57, 0x54, 0xa8 +.byte 0x3e, 0xfd, 0x74, 0x63, 0x2f, 0xb1, 0x50, 0x65, 0x09, 0xe6, 0x58, 0x42, 0x2e, 0x43, 0x1a, 0x4c +.byte 0xb4, 0xf0, 0x25, 0x47, 0x59, 0xfa, 0x04, 0x1e, 0x93, 0xd4, 0x26, 0x46, 0x4a, 0x50, 0x81, 0xb2 +.byte 0xde, 0xbe, 0x78, 0xb7, 0xfc, 0x67, 0x15, 0xe1, 0xc9, 0x57, 0x84, 0x1e, 0x0f, 0x63, 0xd6, 0xe9 +.byte 0x62, 0xba, 0xd6, 0x5f, 0x55, 0x2e, 0xea, 0x5c, 0xc6, 0x28, 0x08, 0x04, 0x25, 0x39, 0xb8, 0x0e +.byte 0x2b, 0xa9, 0xf2, 0x4c, 0x97, 0x1c, 0x07, 0x3f, 0x0d, 0x52, 0xf5, 0xed, 0xef, 0x2f, 0x82, 0x0f +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0x92, 0x01, 0x26, 0x30, 0x81, 0x8f, 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, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66 +.byte 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65 +.byte 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 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, 0xbd, 0xed, 0xc1, 0x03 +.byte 0xfc, 0xf6, 0x8f, 0xfc, 0x02, 0xb1, 0x6f, 0x5b, 0x9f, 0x48, 0xd9, 0x9d, 0x79, 0xe2, 0xa2, 0xb7 +.byte 0x03, 0x61, 0x56, 0x18, 0xc3, 0x47, 0xb6, 0xd7, 0xca, 0x3d, 0x35, 0x2e, 0x89, 0x43, 0xf7, 0xa1 +.byte 0x69, 0x9b, 0xde, 0x8a, 0x1a, 0xfd, 0x13, 0x20, 0x9c, 0xb4, 0x49, 0x77, 0x32, 0x29, 0x56, 0xfd +.byte 0xb9, 0xec, 0x8c, 0xdd, 0x22, 0xfa, 0x72, 0xdc, 0x27, 0x61, 0x97, 0xee, 0xf6, 0x5a, 0x84, 0xec +.byte 0x6e, 0x19, 0xb9, 0x89, 0x2c, 0xdc, 0x84, 0x5b, 0xd5, 0x74, 0xfb, 0x6b, 0x5f, 0xc5, 0x89, 0xa5 +.byte 0x10, 0x52, 0x89, 0x46, 0x55, 0xf4, 0xb8, 0x75, 0x1c, 0xe6, 0x7f, 0xe4, 0x54, 0xae, 0x4b, 0xf8 +.byte 0x55, 0x72, 0x57, 0x02, 0x19, 0xf8, 0x17, 0x71, 0x59, 0xeb, 0x1e, 0x28, 0x07, 0x74, 0xc5, 0x9d +.byte 0x48, 0xbe, 0x6c, 0xb4, 0xf4, 0xa4, 0xb0, 0xf3, 0x64, 0x37, 0x79, 0x92, 0xc0, 0xec, 0x46, 0x5e +.byte 0x7f, 0xe1, 0x6d, 0x53, 0x4c, 0x62, 0xaf, 0xcd, 0x1f, 0x0b, 0x63, 0xbb, 0x3a, 0x9d, 0xfb, 0xfc +.byte 0x79, 0x00, 0x98, 0x61, 0x74, 0xcf, 0x26, 0x82, 0x40, 0x63, 0xf3, 0xb2, 0x72, 0x6a, 0x19, 0x0d +.byte 0x99, 0xca, 0xd4, 0x0e, 0x75, 0xcc, 0x37, 0xfb, 0x8b, 0x89, 0xc1, 0x59, 0xf1, 0x62, 0x7f, 0x5f +.byte 0xb3, 0x5f, 0x65, 0x30, 0xf8, 0xa7, 0xb7, 0x4d, 0x76, 0x5a, 0x1e, 0x76, 0x5e, 0x34, 0xc0, 0xe8 +.byte 0x96, 0x56, 0x99, 0x8a, 0xb3, 0xf0, 0x7f, 0xa4, 0xcd, 0xbd, 0xdc, 0x32, 0x31, 0x7c, 0x91, 0xcf +.byte 0xe0, 0x5f, 0x11, 0xf8, 0x6b, 0xaa, 0x49, 0x5c, 0xd1, 0x99, 0x94, 0xd1, 0xa2, 0xe3, 0x63, 0x5b +.byte 0x09, 0x76, 0xb5, 0x56, 0x62, 0xe1, 0x4b, 0x74, 0x1d, 0x96, 0xd4, 0x26, 0xd4, 0x08, 0x04, 0x59 +.byte 0xd0, 0x98, 0x0e, 0x0e, 0xe6, 0xde, 0xfc, 0xc3, 0xec, 0x1f, 0x90, 0xf1, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0x94, 0x00, 0x5b, 0x30, 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08 +.byte 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x13, 0x07, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48 +.byte 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30 +.byte 0x38, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76 +.byte 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x32, 0x35 +.byte 0x36, 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, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07 +.byte 0x03, 0x42, 0x00, 0x04, 0x7e, 0xfb, 0x6c, 0xe6, 0x23, 0xe3, 0x73, 0x32, 0x08, 0xca, 0x60, 0xe6 +.byte 0x53, 0x9c, 0xba, 0x74, 0x8d, 0x18, 0xb0, 0x78, 0x90, 0x52, 0x80, 0xdd, 0x38, 0xc0, 0x4a, 0x1d +.byte 0xd1, 0xa8, 0xcc, 0x93, 0xa4, 0x97, 0x06, 0x38, 0xca, 0x0d, 0x15, 0x62, 0xc6, 0x8e, 0x01, 0x2a +.byte 0x65, 0x9d, 0xaa, 0xdf, 0x34, 0x91, 0x2e, 0x81, 0xc1, 0xe4, 0x33, 0x92, 0x31, 0xc4, 0xfd, 0x09 +.byte 0x3a, 0xa6, 0x3f, 0xad, 0x00, 0x94, 0x00, 0x78, 0x30, 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04 +.byte 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30 +.byte 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76 +.byte 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e +.byte 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20 +.byte 0x50, 0x33, 0x38, 0x34, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 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, 0x6b, 0xda, 0x0d, 0x75, 0x35, 0x08, 0x31, 0x47, 0x05, 0xae, 0x45, 0x99 +.byte 0x55, 0xf1, 0x11, 0x13, 0x2e, 0x4a, 0xf8, 0x10, 0x31, 0x23, 0xa3, 0x7e, 0x83, 0xd3, 0x7f, 0x28 +.byte 0x08, 0x3a, 0x26, 0x1a, 0x3a, 0xcf, 0x97, 0x82, 0x1f, 0x80, 0xb7, 0x27, 0x09, 0x8f, 0xd1, 0x8e +.byte 0x30, 0xc4, 0x0a, 0x9b, 0x0e, 0xac, 0x58, 0x04, 0xab, 0xf7, 0x36, 0x7d, 0x94, 0x23, 0xa4, 0x9b +.byte 0x0a, 0x8a, 0x8b, 0xab, 0xeb, 0xfd, 0x39, 0x25, 0x66, 0xf1, 0x5e, 0xfe, 0x8c, 0xae, 0x8d, 0x41 +.byte 0x79, 0x9d, 0x09, 0x60, 0xce, 0x28, 0xa9, 0xd3, 0x8a, 0x6d, 0xf3, 0xd6, 0x45, 0xd4, 0xf2, 0x98 +.byte 0x84, 0x38, 0x65, 0xa0, 0x00, 0x9b, 0x01, 0x26, 0x30, 0x81, 0x98, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04 +.byte 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03 +.byte 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31 +.byte 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69 +.byte 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73 +.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3b, 0x30, 0x39, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x32, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69 +.byte 0x63, 0x65, 0x73, 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, 0xd5, 0x0c, 0x3a, 0xc4, 0x2a, 0xf9, 0x4e, 0xe2, 0xf5, 0xbe, 0x19, 0x97 +.byte 0x5f, 0x8e, 0x88, 0x53, 0xb1, 0x1f, 0x3f, 0xcb, 0xcf, 0x9f, 0x20, 0x13, 0x6d, 0x29, 0x3a, 0xc8 +.byte 0x0f, 0x7d, 0x3c, 0xf7, 0x6b, 0x76, 0x38, 0x63, 0xd9, 0x36, 0x60, 0xa8, 0x9b, 0x5e, 0x5c, 0x00 +.byte 0x80, 0xb2, 0x2f, 0x59, 0x7f, 0xf6, 0x87, 0xf9, 0x25, 0x43, 0x86, 0xe7, 0x69, 0x1b, 0x52, 0x9a +.byte 0x90, 0xe1, 0x71, 0xe3, 0xd8, 0x2d, 0x0d, 0x4e, 0x6f, 0xf6, 0xc8, 0x49, 0xd9, 0xb6, 0xf3, 0x1a +.byte 0x56, 0xae, 0x2b, 0xb6, 0x74, 0x14, 0xeb, 0xcf, 0xfb, 0x26, 0xe3, 0x1a, 0xba, 0x1d, 0x96, 0x2e +.byte 0x6a, 0x3b, 0x58, 0x94, 0x89, 0x47, 0x56, 0xff, 0x25, 0xa0, 0x93, 0x70, 0x53, 0x83, 0xda, 0x84 +.byte 0x74, 0x14, 0xc3, 0x67, 0x9e, 0x04, 0x68, 0x3a, 0xdf, 0x8e, 0x40, 0x5a, 0x1d, 0x4a, 0x4e, 0xcf +.byte 0x43, 0x91, 0x3b, 0xe7, 0x56, 0xd6, 0x00, 0x70, 0xcb, 0x52, 0xee, 0x7b, 0x7d, 0xae, 0x3a, 0xe7 +.byte 0xbc, 0x31, 0xf9, 0x45, 0xf6, 0xc2, 0x60, 0xcf, 0x13, 0x59, 0x02, 0x2b, 0x80, 0xcc, 0x34, 0x47 +.byte 0xdf, 0xb9, 0xde, 0x90, 0x65, 0x6d, 0x02, 0xcf, 0x2c, 0x91, 0xa6, 0xa6, 0xe7, 0xde, 0x85, 0x18 +.byte 0x49, 0x7c, 0x66, 0x4e, 0xa3, 0x3a, 0x6d, 0xa9, 0xb5, 0xee, 0x34, 0x2e, 0xba, 0x0d, 0x03, 0xb8 +.byte 0x33, 0xdf, 0x47, 0xeb, 0xb1, 0x6b, 0x8d, 0x25, 0xd9, 0x9b, 0xce, 0x81, 0xd1, 0x45, 0x46, 0x32 +.byte 0x96, 0x70, 0x87, 0xde, 0x02, 0x0e, 0x49, 0x43, 0x85, 0xb6, 0x6c, 0x73, 0xbb, 0x64, 0xea, 0x61 +.byte 0x41, 0xac, 0xc9, 0xd4, 0x54, 0xdf, 0x87, 0x2f, 0xc7, 0x22, 0xb2, 0x26, 0xcc, 0x9f, 0x59, 0x54 +.byte 0x68, 0x9f, 0xfc, 0xbe, 0x2a, 0x2f, 0xc4, 0x55, 0x1c, 0x75, 0x40, 0x60, 0x17, 0x85, 0x02, 0x55 +.byte 0x39, 0x8b, 0x7f, 0x05, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xa9, 0x02, 0x26, 0x30, 0x81, 0xa6 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30 +.byte 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44 +.byte 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69 +.byte 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52 +.byte 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x31, 0x40, 0x30, 0x3e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x37, 0x48 +.byte 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63 +.byte 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e +.byte 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43 +.byte 0x41, 0x20, 0x32, 0x30, 0x31, 0x35, 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, 0xc2, 0xf8, 0xa9, 0x3f, 0x1b, 0x89, 0xfc, 0x3c, 0x3c +.byte 0x04, 0x5d, 0x3d, 0x90, 0x36, 0xb0, 0x91, 0x3a, 0x79, 0x3c, 0x66, 0x5a, 0xef, 0x6d, 0x39, 0x01 +.byte 0x49, 0x1a, 0xb4, 0xb7, 0xcf, 0x7f, 0x4d, 0x23, 0x53, 0xb7, 0x90, 0x00, 0xe3, 0x13, 0x2a, 0x28 +.byte 0xa6, 0x31, 0xf1, 0x91, 0x00, 0xe3, 0x28, 0xec, 0xae, 0x21, 0x41, 0xce, 0x1f, 0xda, 0xfd, 0x7d +.byte 0x12, 0x5b, 0x01, 0x83, 0x0f, 0xb9, 0xb0, 0x5f, 0x99, 0xe1, 0xf2, 0x12, 0x83, 0x80, 0x4d, 0x06 +.byte 0x3e, 0xdf, 0xac, 0xaf, 0xe7, 0xa1, 0x88, 0x6b, 0x31, 0xaf, 0xf0, 0x8b, 0xd0, 0x18, 0x33, 0xb8 +.byte 0xdb, 0x45, 0x6a, 0x34, 0xf4, 0x02, 0x80, 0x24, 0x28, 0x0a, 0x02, 0x15, 0x95, 0x5e, 0x76, 0x2a +.byte 0x0d, 0x99, 0x3a, 0x14, 0x5b, 0xf6, 0xcb, 0xcb, 0x53, 0xbc, 0x13, 0x4d, 0x01, 0x88, 0x37, 0x94 +.byte 0x25, 0x1b, 0x42, 0xbc, 0x22, 0xd8, 0x8e, 0xa3, 0x96, 0x5e, 0x3a, 0xd9, 0x32, 0xdb, 0x3e, 0xe8 +.byte 0xf0, 0x10, 0x65, 0xed, 0x74, 0xe1, 0x2f, 0xa7, 0x7c, 0xaf, 0x27, 0x34, 0xbb, 0x29, 0x7d, 0x9b +.byte 0xb6, 0xcf, 0x09, 0xc8, 0xe5, 0xd3, 0x0a, 0xfc, 0x88, 0x65, 0x65, 0x74, 0x0a, 0xdc, 0x73, 0x1c +.byte 0x5c, 0xcd, 0x40, 0xb1, 0x1c, 0xd4, 0xb6, 0x84, 0x8c, 0x4c, 0x50, 0xcf, 0x68, 0x8e, 0xa8, 0x59 +.byte 0xae, 0xc2, 0x27, 0x4e, 0x82, 0xa2, 0x35, 0xdd, 0x14, 0xf4, 0x1f, 0xff, 0xb2, 0x77, 0xd5, 0x87 +.byte 0x2f, 0xaa, 0x6e, 0x7d, 0x24, 0x27, 0xe7, 0xc6, 0xcb, 0x26, 0xe6, 0xe5, 0xfe, 0x67, 0x07, 0x63 +.byte 0xd8, 0x45, 0x0d, 0xdd, 0x3a, 0x59, 0x65, 0x39, 0x58, 0x7a, 0x92, 0x99, 0x72, 0x3d, 0x9c, 0x84 +.byte 0x5e, 0x88, 0x21, 0xb8, 0xd5, 0xf4, 0x2c, 0xfc, 0xd9, 0x70, 0x52, 0x4f, 0x78, 0xb8, 0xbd, 0x3c +.byte 0x2b, 0x8b, 0x95, 0x98, 0xf5, 0xb3, 0xd1, 0x68, 0xcf, 0x20, 0x14, 0x7e, 0x4c, 0x5c, 0x5f, 0xe7 +.byte 0x8b, 0xe5, 0xf5, 0x35, 0x81, 0x19, 0x37, 0xd7, 0x11, 0x08, 0xb7, 0x66, 0xbe, 0xd3, 0x4a, 0xce +.byte 0x83, 0x57, 0x00, 0x3a, 0xc3, 0x81, 0xf8, 0x17, 0xcb, 0x92, 0x36, 0x5d, 0xd1, 0xa3, 0xd8, 0x75 +.byte 0x1b, 0xe1, 0x8b, 0x27, 0xea, 0x7a, 0x48, 0x41, 0xfd, 0x45, 0x19, 0x06, 0xad, 0x27, 0x99, 0x4e +.byte 0xc1, 0x70, 0x47, 0xdd, 0xb5, 0x9f, 0x81, 0x53, 0x12, 0xe5, 0xb1, 0x8c, 0x48, 0x5d, 0x31, 0x43 +.byte 0x17, 0xe3, 0x8c, 0xc6, 0x7a, 0x63, 0x96, 0x4b, 0x29, 0x30, 0x4e, 0x84, 0x4e, 0x62, 0x19, 0x5e +.byte 0x3c, 0xce, 0x97, 0x90, 0xa5, 0x7f, 0x01, 0xeb, 0x9d, 0xe0, 0xf8, 0x8b, 0x89, 0xdd, 0x25, 0x98 +.byte 0x3d, 0x92, 0xb6, 0x7e, 0xef, 0xd9, 0xf1, 0x51, 0x51, 0x7d, 0x2d, 0x26, 0xc8, 0x69, 0x59, 0x61 +.byte 0xe0, 0xac, 0x6a, 0xb8, 0x2a, 0x36, 0x11, 0x04, 0x7a, 0x50, 0xbd, 0x32, 0x84, 0xbe, 0x2f, 0xdc +.byte 0x72, 0xd5, 0xd7, 0x1d, 0x16, 0x47, 0xe4, 0x47, 0x66, 0x20, 0x3f, 0xf4, 0x96, 0xc5, 0xaf, 0x8e +.byte 0x01, 0x7a, 0xa5, 0x0f, 0x7a, 0x64, 0xf5, 0x0d, 0x18, 0x87, 0xd9, 0xae, 0x88, 0xd5, 0xfa, 0x84 +.byte 0xc1, 0x3a, 0xc0, 0x69, 0x28, 0x2d, 0xf2, 0x0d, 0x68, 0x51, 0xaa, 0xe3, 0xa5, 0x77, 0xc6, 0xa4 +.byte 0x90, 0x0e, 0xa1, 0x37, 0x8b, 0x31, 0x23, 0x47, 0xc1, 0x09, 0x08, 0xeb, 0x6e, 0xf7, 0x78, 0x9b +.byte 0xd7, 0x82, 0xfc, 0x84, 0x20, 0x99, 0x49, 0x19, 0xb6, 0x12, 0x46, 0xb1, 0xfb, 0x45, 0x55, 0x16 +.byte 0xa9, 0xa3, 0x65, 0xac, 0x9c, 0x07, 0x0f, 0xea, 0x6b, 0xdc, 0x1f, 0x2e, 0x06, 0x72, 0xec, 0x86 +.byte 0x88, 0x12, 0xe4, 0x2d, 0xdb, 0x5f, 0x05, 0x2f, 0xe4, 0xf0, 0x03, 0xd3, 0x26, 0x33, 0xe7, 0x80 +.byte 0xc2, 0xcd, 0x42, 0xa1, 0x17, 0x34, 0x0b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xaa, 0x01, 0x26 +.byte 0x30, 0x81, 0xa7, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55 +.byte 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70 +.byte 0x65, 0x73, 0x74, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x4e, 0x65 +.byte 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x4b, 0x66, 0x74, 0x2e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x0c, 0x2e, 0x54, 0x61, 0x6e, 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3 +.byte 0xa1, 0x6e, 0x79, 0x6b, 0x69, 0x61, 0x64, 0xc3, 0xb3, 0x6b, 0x20, 0x28, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63 +.byte 0x65, 0x73, 0x29, 0x31, 0x35, 0x30, 0x33, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2c, 0x4e, 0x65 +.byte 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x41, 0x72, 0x61, 0x6e, 0x79, 0x20, 0x28, 0x43, 0x6c, 0x61 +.byte 0x73, 0x73, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x29, 0x20, 0x46, 0xc5, 0x91, 0x74, 0x61, 0x6e, 0xc3 +.byte 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1, 0x6e, 0x79, 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, 0xc4, 0x24, 0x5e, 0x73, 0xbe +.byte 0x4b, 0x6d, 0x14, 0xc3, 0xa1, 0xf4, 0xe3, 0x97, 0x90, 0x6e, 0xd2, 0x30, 0x45, 0x1e, 0x3c, 0xee +.byte 0x67, 0xd9, 0x64, 0xe0, 0x1a, 0x8a, 0x7f, 0xca, 0x30, 0xca, 0x83, 0xe3, 0x20, 0xc1, 0xe3, 0xf4 +.byte 0x3a, 0xd3, 0x94, 0x5f, 0x1a, 0x7c, 0x5b, 0x6d, 0xbf, 0x30, 0x4f, 0x84, 0x27, 0xf6, 0x9f, 0x1f +.byte 0x49, 0xbc, 0xc6, 0x99, 0x0a, 0x90, 0xf2, 0x0f, 0xf5, 0x7f, 0x43, 0x84, 0x37, 0x63, 0x51, 0x8b +.byte 0x7a, 0xa5, 0x70, 0xfc, 0x7a, 0x58, 0xcd, 0x8e, 0x9b, 0xed, 0xc3, 0x46, 0x6c, 0x84, 0x70, 0x5d +.byte 0xda, 0xf3, 0x01, 0x90, 0x23, 0xfc, 0x4e, 0x30, 0xa9, 0x7e, 0xe1, 0x27, 0x63, 0xe7, 0xed, 0x64 +.byte 0x3c, 0xa0, 0xb8, 0xc9, 0x33, 0x63, 0xfe, 0x16, 0x90, 0xff, 0xb0, 0xb8, 0xfd, 0xd7, 0xa8, 0xc0 +.byte 0xc0, 0x94, 0x43, 0x0b, 0xb6, 0xd5, 0x59, 0xa6, 0x9e, 0x56, 0xd0, 0x24, 0x1f, 0x70, 0x79, 0xaf +.byte 0xdb, 0x39, 0x54, 0x0d, 0x65, 0x75, 0xd9, 0x15, 0x41, 0x94, 0x01, 0xaf, 0x5e, 0xec, 0xf6, 0x8d +.byte 0xf1, 0xff, 0xad, 0x64, 0xfe, 0x20, 0x9a, 0xd7, 0x5c, 0xeb, 0xfe, 0xa6, 0x1f, 0x08, 0x64, 0xa3 +.byte 0x8b, 0x76, 0x55, 0xad, 0x1e, 0x3b, 0x28, 0x60, 0x2e, 0x87, 0x25, 0xe8, 0xaa, 0xaf, 0x1f, 0xc6 +.byte 0x64, 0x46, 0x20, 0xb7, 0x70, 0x7f, 0x3c, 0xde, 0x48, 0xdb, 0x96, 0x53, 0xb7, 0x39, 0x77, 0xe4 +.byte 0x1a, 0xe2, 0xc7, 0x16, 0x84, 0x76, 0x97, 0x5b, 0x2f, 0xbb, 0x19, 0x15, 0x85, 0xf8, 0x69, 0x85 +.byte 0xf5, 0x99, 0xa7, 0xa9, 0xf2, 0x34, 0xa7, 0xa9, 0xb6, 0xa6, 0x03, 0xfc, 0x6f, 0x86, 0x3d, 0x54 +.byte 0x7c, 0x76, 0x04, 0x9b, 0x6b, 0xf9, 0x40, 0x5d, 0x00, 0x34, 0xc7, 0x2e, 0x99, 0x75, 0x9d, 0xe5 +.byte 0x88, 0x03, 0xaa, 0x4d, 0xf8, 0x03, 0xd2, 0x42, 0x76, 0xc0, 0x1b, 0x02, 0x03, 0x00, 0xa8, 0x8b +.byte 0x00, 0xad, 0x00, 0x78, 0x30, 0x81, 0xaa, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41 +.byte 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b +.byte 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69 +.byte 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49 +.byte 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x44, 0x30, 0x42, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41 +.byte 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65 +.byte 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e +.byte 0x73, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31 +.byte 0x35, 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, 0x92, 0xa0, 0x41, 0xe8, 0x4b, 0x82, 0x84 +.byte 0x5c, 0xe2, 0xf8, 0x31, 0x11, 0x99, 0x86, 0x64, 0x4e, 0x09, 0x25, 0x2f, 0x9d, 0x41, 0x2f, 0x0a +.byte 0xae, 0x35, 0x4f, 0x74, 0x95, 0xb2, 0x51, 0x64, 0x6b, 0x8d, 0x6b, 0xe6, 0x3f, 0x70, 0x95, 0xf0 +.byte 0x05, 0x44, 0x47, 0xa6, 0x72, 0x38, 0x50, 0x76, 0x95, 0x02, 0x5a, 0x8e, 0xae, 0x28, 0x9e, 0xf9 +.byte 0x2d, 0x4e, 0x99, 0xef, 0x2c, 0x48, 0x6f, 0x4c, 0x25, 0x29, 0xe8, 0xd1, 0x71, 0x5b, 0xdf, 0x1d +.byte 0xc1, 0x75, 0x37, 0xb4, 0xd7, 0xfa, 0x7b, 0x7a, 0x42, 0x9c, 0x6a, 0x0a, 0x56, 0x5a, 0x7c, 0x69 +.byte 0x0b, 0xaa, 0x80, 0x09, 0x24, 0x6c, 0x7e, 0xc1, 0x46, 0x00, 0xb3, 0x01, 0x26, 0x30, 0x81, 0xb0 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30 +.byte 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c +.byte 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30 +.byte 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f +.byte 0x43, 0x50, 0x53, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61 +.byte 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65 +.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x16, 0x28, 0x63, 0x29, 0x20, 0x32 +.byte 0x30, 0x30, 0x36, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x24, 0x45, 0x6e, 0x74, 0x72 +.byte 0x75, 0x73, 0x74, 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, 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, 0xb6, 0x95, 0xb6, 0x43, 0x42, 0xfa, 0xc6, 0x6d, 0x2a, 0x6f, 0x48, 0xdf, 0x94, 0x4c, 0x39 +.byte 0x57, 0x05, 0xee, 0xc3, 0x79, 0x11, 0x41, 0x68, 0x36, 0xed, 0xec, 0xfe, 0x9a, 0x01, 0x8f, 0xa1 +.byte 0x38, 0x28, 0xfc, 0xf7, 0x10, 0x46, 0x66, 0x2e, 0x4d, 0x1e, 0x1a, 0xb1, 0x1a, 0x4e, 0xc6, 0xd1 +.byte 0xc0, 0x95, 0x88, 0xb0, 0xc9, 0xff, 0x31, 0x8b, 0x33, 0x03, 0xdb, 0xb7, 0x83, 0x7b, 0x3e, 0x20 +.byte 0x84, 0x5e, 0xed, 0xb2, 0x56, 0x28, 0xa7, 0xf8, 0xe0, 0xb9, 0x40, 0x71, 0x37, 0xc5, 0xcb, 0x47 +.byte 0x0e, 0x97, 0x2a, 0x68, 0xc0, 0x22, 0x95, 0x62, 0x15, 0xdb, 0x47, 0xd9, 0xf5, 0xd0, 0x2b, 0xff +.byte 0x82, 0x4b, 0xc9, 0xad, 0x3e, 0xde, 0x4c, 0xdb, 0x90, 0x80, 0x50, 0x3f, 0x09, 0x8a, 0x84, 0x00 +.byte 0xec, 0x30, 0x0a, 0x3d, 0x18, 0xcd, 0xfb, 0xfd, 0x2a, 0x59, 0x9a, 0x23, 0x95, 0x17, 0x2c, 0x45 +.byte 0x9e, 0x1f, 0x6e, 0x43, 0x79, 0x6d, 0x0c, 0x5c, 0x98, 0xfe, 0x48, 0xa7, 0xc5, 0x23, 0x47, 0x5c +.byte 0x5e, 0xfd, 0x6e, 0xe7, 0x1e, 0xb4, 0xf6, 0x68, 0x45, 0xd1, 0x86, 0x83, 0x5b, 0xa2, 0x8a, 0x8d +.byte 0xb1, 0xe3, 0x29, 0x80, 0xfe, 0x25, 0x71, 0x88, 0xad, 0xbe, 0xbc, 0x8f, 0xac, 0x52, 0x96, 0x4b +.byte 0xaa, 0x51, 0x8d, 0xe4, 0x13, 0x31, 0x19, 0xe8, 0x4e, 0x4d, 0x9f, 0xdb, 0xac, 0xb3, 0x6a, 0xd5 +.byte 0xbc, 0x39, 0x54, 0x71, 0xca, 0x7a, 0x7a, 0x7f, 0x90, 0xdd, 0x7d, 0x1d, 0x80, 0xd9, 0x81, 0xbb +.byte 0x59, 0x26, 0xc2, 0x11, 0xfe, 0xe6, 0x93, 0xe2, 0xf7, 0x80, 0xe4, 0x65, 0xfb, 0x34, 0x37, 0x0e +.byte 0x29, 0x80, 0x70, 0x4d, 0xaf, 0x38, 0x86, 0x2e, 0x9e, 0x7f, 0x57, 0xaf, 0x9e, 0x17, 0xae, 0xeb +.byte 0x1c, 0xcb, 0x28, 0x21, 0x5f, 0xb6, 0x1c, 0xd8, 0xe7, 0xa2, 0x04, 0x22, 0xf9, 0xd3, 0xda, 0xd8 +.byte 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xb5, 0x02, 0x26, 0x30, 0x81, 0xb2, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03 +.byte 0x55, 0x04, 0x07, 0x0c, 0x06, 0x41, 0x6e, 0x6b, 0x61, 0x72, 0x61, 0x31, 0x40, 0x30, 0x3e, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x37, 0x45, 0x2d, 0x54, 0x75, 0xc4, 0x9f, 0x72, 0x61, 0x20, 0x45 +.byte 0x42, 0x47, 0x20, 0x42, 0x69, 0x6c, 0x69, 0xc5, 0x9f, 0x69, 0x6d, 0x20, 0x54, 0x65, 0x6b, 0x6e +.byte 0x6f, 0x6c, 0x6f, 0x6a, 0x69, 0x6c, 0x65, 0x72, 0x69, 0x20, 0x76, 0x65, 0x20, 0x48, 0x69, 0x7a +.byte 0x6d, 0x65, 0x74, 0x6c, 0x65, 0x72, 0x69, 0x20, 0x41, 0x2e, 0xc5, 0x9e, 0x2e, 0x31, 0x26, 0x30 +.byte 0x24, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x1d, 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 0x20 +.byte 0x53, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x79, 0x6f, 0x6e, 0x20, 0x4d, 0x65 +.byte 0x72, 0x6b, 0x65, 0x7a, 0x69, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1f +.byte 0x45, 0x2d, 0x54, 0x75, 0x67, 0x72, 0x61, 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, 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 0xe2, 0xf5, 0x3f, 0x93, 0x05, 0x51, 0x1e, 0x85, 0x62, 0x54, 0x5e, 0x7a, 0x0b, 0xf5, 0x18, 0x07 +.byte 0x83, 0xae, 0x7e, 0xaf, 0x7c, 0xf7, 0xd4, 0x8a, 0x6b, 0xa5, 0x63, 0x43, 0x39, 0xb9, 0x4b, 0xf7 +.byte 0xc3, 0xc6, 0x64, 0x89, 0x3d, 0x94, 0x2e, 0x54, 0x80, 0x52, 0x39, 0x39, 0x07, 0x4b, 0x4b, 0xdd +.byte 0x85, 0x07, 0x76, 0x87, 0xcc, 0xbf, 0x2f, 0x95, 0x4c, 0xcc, 0x7d, 0xa7, 0x3d, 0xbc, 0x47, 0x0f +.byte 0x98, 0x70, 0xf8, 0x8c, 0x85, 0x1e, 0x74, 0x8e, 0x92, 0x6d, 0x1b, 0x40, 0xd1, 0x99, 0x0d, 0xbb +.byte 0x75, 0x6e, 0xc8, 0xa9, 0x6b, 0x9a, 0xc0, 0x84, 0x31, 0xaf, 0xca, 0x43, 0xcb, 0xeb, 0x2b, 0x34 +.byte 0xe8, 0x8f, 0x97, 0x6b, 0x01, 0x9b, 0xd5, 0x0e, 0x4a, 0x08, 0xaa, 0x5b, 0x92, 0x74, 0x85, 0x43 +.byte 0xd3, 0x80, 0xae, 0xa1, 0x88, 0x5b, 0xae, 0xb3, 0xea, 0x5e, 0xcb, 0x16, 0x9a, 0x77, 0x44, 0xc8 +.byte 0xa1, 0xf6, 0x54, 0x68, 0xce, 0xde, 0x8f, 0x97, 0x2b, 0xba, 0x5b, 0x40, 0x02, 0x0c, 0x64, 0x17 +.byte 0xc0, 0xb5, 0x93, 0xcd, 0xe1, 0xf1, 0x13, 0x66, 0xce, 0x0c, 0x79, 0xef, 0xd1, 0x91, 0x28, 0xab +.byte 0x5f, 0xa0, 0x12, 0x52, 0x30, 0x73, 0x19, 0x8e, 0x8f, 0xe1, 0x8c, 0x07, 0xa2, 0xc3, 0xbb, 0x4a +.byte 0xf0, 0xea, 0x1f, 0x15, 0xa8, 0xee, 0x25, 0xcc, 0xa4, 0x46, 0xf8, 0x1b, 0x22, 0xef, 0xb3, 0x0e +.byte 0x43, 0xba, 0x2c, 0x24, 0xb8, 0xc5, 0x2c, 0x5c, 0xd4, 0x1c, 0xf8, 0x5d, 0x64, 0xbd, 0xc3, 0x93 +.byte 0x5e, 0x28, 0xa7, 0x3f, 0x27, 0xf1, 0x8e, 0x1e, 0xd3, 0x2a, 0x50, 0x05, 0xa3, 0x55, 0xd9, 0xcb +.byte 0xe7, 0x39, 0x53, 0xc0, 0x98, 0x9e, 0x8c, 0x54, 0x62, 0x8b, 0x26, 0xb0, 0xf7, 0x7d, 0x8d, 0x7c +.byte 0xe4, 0xc6, 0x9e, 0x66, 0x42, 0x55, 0x82, 0x47, 0xe7, 0xb2, 0x58, 0x8d, 0x66, 0xf7, 0x07, 0x7c +.byte 0x2e, 0x36, 0xe6, 0x50, 0x1c, 0x3f, 0xdb, 0x43, 0x24, 0xc5, 0xbf, 0x86, 0x47, 0x79, 0xb3, 0x79 +.byte 0x1c, 0xf7, 0x5a, 0xf4, 0x13, 0xec, 0x6c, 0xf8, 0x3f, 0xe2, 0x59, 0x1f, 0x95, 0xee, 0x42, 0x3e +.byte 0xb9, 0xad, 0xa8, 0x32, 0x85, 0x49, 0x97, 0x46, 0xfe, 0x4b, 0x31, 0x8f, 0x5a, 0xcb, 0xad, 0x74 +.byte 0x47, 0x1f, 0xe9, 0x91, 0xb7, 0xdf, 0x28, 0x04, 0x22, 0xa0, 0xd4, 0x0f, 0x5d, 0xe2, 0x79, 0x4f +.byte 0xea, 0x6c, 0x85, 0x86, 0xbd, 0xa8, 0xa6, 0xce, 0xe4, 0xfa, 0xc3, 0xe1, 0xb3, 0xae, 0xde, 0x3c +.byte 0x51, 0xee, 0xcb, 0x13, 0x7c, 0x01, 0x7f, 0x84, 0x0e, 0x5d, 0x51, 0x94, 0x9e, 0x13, 0x0c, 0xb6 +.byte 0x2e, 0xa5, 0x4c, 0xf9, 0x39, 0x70, 0x36, 0x6f, 0x96, 0xca, 0x2e, 0x0c, 0x44, 0x55, 0xc5, 0xca +.byte 0xfa, 0x5d, 0x02, 0xa3, 0xdf, 0xd6, 0x64, 0x8c, 0x5a, 0xb3, 0x01, 0x0a, 0xa9, 0xb5, 0x0a, 0x47 +.byte 0x17, 0xff, 0xef, 0x91, 0x40, 0x2a, 0x8e, 0xa1, 0x46, 0x3a, 0x31, 0x98, 0xe5, 0x11, 0xfc, 0xcc +.byte 0xbb, 0x49, 0x56, 0x8a, 0xfc, 0xb9, 0xd0, 0x61, 0x9a, 0x6f, 0x65, 0x6c, 0xe6, 0xc3, 0xcb, 0x3e +.byte 0x75, 0x49, 0xfe, 0x8f, 0xa7, 0xe2, 0x89, 0xc5, 0x67, 0xd7, 0x9d, 0x46, 0x13, 0x4e, 0x31, 0x76 +.byte 0x3b, 0x24, 0xb3, 0x9e, 0x11, 0x65, 0x86, 0xab, 0x7f, 0xef, 0x1d, 0xd4, 0xf8, 0xbc, 0xe7, 0xac +.byte 0x5a, 0x5c, 0xb7, 0x5a, 0x47, 0x5c, 0x55, 0xce, 0x55, 0xb4, 0x22, 0x71, 0x5b, 0x5b, 0x0b, 0xf0 +.byte 0xcf, 0xdc, 0xa0, 0x61, 0x64, 0xea, 0xa9, 0xd7, 0x68, 0x0a, 0x63, 0xa7, 0xe0, 0x0d, 0x3f, 0xa0 +.byte 0xaf, 0xd3, 0xaa, 0xd2, 0x7e, 0xef, 0x51, 0xa0, 0xe6, 0x51, 0x2b, 0x55, 0x92, 0x15, 0x17, 0x53 +.byte 0xcb, 0xb7, 0x66, 0x0e, 0x66, 0x4c, 0xf8, 0xf9, 0x75, 0x4c, 0x90, 0xe7, 0x12, 0x70, 0xc7, 0x45 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xb7, 0x01, 0x26, 0x30, 0x81, 0xb4, 0x31, 0x14, 0x30, 0x12 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e +.byte 0x65, 0x74, 0x31, 0x40, 0x30, 0x3e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x14, 0x37, 0x77, 0x77, 0x77 +.byte 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50, 0x53 +.byte 0x5f, 0x32, 0x30, 0x34, 0x38, 0x20, 0x69, 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x20, 0x62, 0x79 +.byte 0x20, 0x72, 0x65, 0x66, 0x2e, 0x20, 0x28, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x20, 0x6c, 0x69 +.byte 0x61, 0x62, 0x2e, 0x29, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1c, 0x28 +.byte 0x63, 0x29, 0x20, 0x31, 0x39, 0x39, 0x39, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e +.byte 0x6e, 0x65, 0x74, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x33, 0x30, 0x31, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65 +.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, 0x28, 0x32, 0x30, 0x34, 0x38, 0x29 +.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, 0xad, 0x4d, 0x4b, 0xa9, 0x12, 0x86, 0xb2, 0xea, 0xa3, 0x20, 0x07, 0x15, 0x16, 0x64, 0x2a +.byte 0x2b, 0x4b, 0xd1, 0xbf, 0x0b, 0x4a, 0x4d, 0x8e, 0xed, 0x80, 0x76, 0xa5, 0x67, 0xb7, 0x78, 0x40 +.byte 0xc0, 0x73, 0x42, 0xc8, 0x68, 0xc0, 0xdb, 0x53, 0x2b, 0xdd, 0x5e, 0xb8, 0x76, 0x98, 0x35, 0x93 +.byte 0x8b, 0x1a, 0x9d, 0x7c, 0x13, 0x3a, 0x0e, 0x1f, 0x5b, 0xb7, 0x1e, 0xcf, 0xe5, 0x24, 0x14, 0x1e +.byte 0xb1, 0x81, 0xa9, 0x8d, 0x7d, 0xb8, 0xcc, 0x6b, 0x4b, 0x03, 0xf1, 0x02, 0x0c, 0xdc, 0xab, 0xa5 +.byte 0x40, 0x24, 0x00, 0x7f, 0x74, 0x94, 0xa1, 0x9d, 0x08, 0x29, 0xb3, 0x88, 0x0b, 0xf5, 0x87, 0x77 +.byte 0x9d, 0x55, 0xcd, 0xe4, 0xc3, 0x7e, 0xd7, 0x6a, 0x64, 0xab, 0x85, 0x14, 0x86, 0x95, 0x5b, 0x97 +.byte 0x32, 0x50, 0x6f, 0x3d, 0xc8, 0xba, 0x66, 0x0c, 0xe3, 0xfc, 0xbd, 0xb8, 0x49, 0xc1, 0x76, 0x89 +.byte 0x49, 0x19, 0xfd, 0xc0, 0xa8, 0xbd, 0x89, 0xa3, 0x67, 0x2f, 0xc6, 0x9f, 0xbc, 0x71, 0x19, 0x60 +.byte 0xb8, 0x2d, 0xe9, 0x2c, 0xc9, 0x90, 0x76, 0x66, 0x7b, 0x94, 0xe2, 0xaf, 0x78, 0xd6, 0x65, 0x53 +.byte 0x5d, 0x3c, 0xd6, 0x9c, 0xb2, 0xcf, 0x29, 0x03, 0xf9, 0x2f, 0xa4, 0x50, 0xb2, 0xd4, 0x48, 0xce +.byte 0x05, 0x32, 0x55, 0x8a, 0xfd, 0xb2, 0x64, 0x4c, 0x0e, 0xe4, 0x98, 0x07, 0x75, 0xdb, 0x7f, 0xdf +.byte 0xb9, 0x08, 0x55, 0x60, 0x85, 0x30, 0x29, 0xf9, 0x7b, 0x48, 0xa4, 0x69, 0x86, 0xe3, 0x35, 0x3f +.byte 0x1e, 0x86, 0x5d, 0x7a, 0x7a, 0x15, 0xbd, 0xef, 0x00, 0x8e, 0x15, 0x22, 0x54, 0x17, 0x00, 0x90 +.byte 0x26, 0x93, 0xbc, 0x0e, 0x49, 0x68, 0x91, 0xbf, 0xf8, 0x47, 0xd3, 0x9d, 0x95, 0x42, 0xc1, 0x0e +.byte 0x4d, 0xdf, 0x6f, 0x26, 0xcf, 0xc3, 0x18, 0x21, 0x62, 0x66, 0x43, 0x70, 0xd6, 0xd5, 0xc0, 0x07 +.byte 0xe1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xc1, 0x01, 0x26, 0x30, 0x81, 0xbe, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65 +.byte 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74 +.byte 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37 +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x39, 0x20 +.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20 +.byte 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75 +.byte 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x29, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 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, 0xba, 0x84, 0xb6, 0x72 +.byte 0xdb, 0x9e, 0x0c, 0x6b, 0xe2, 0x99, 0xe9, 0x30, 0x01, 0xa7, 0x76, 0xea, 0x32, 0xb8, 0x95, 0x41 +.byte 0x1a, 0xc9, 0xda, 0x61, 0x4e, 0x58, 0x72, 0xcf, 0xfe, 0xf6, 0x82, 0x79, 0xbf, 0x73, 0x61, 0x06 +.byte 0x0a, 0xa5, 0x27, 0xd8, 0xb3, 0x5f, 0xd3, 0x45, 0x4e, 0x1c, 0x72, 0xd6, 0x4e, 0x32, 0xf2, 0x72 +.byte 0x8a, 0x0f, 0xf7, 0x83, 0x19, 0xd0, 0x6a, 0x80, 0x80, 0x00, 0x45, 0x1e, 0xb0, 0xc7, 0xe7, 0x9a +.byte 0xbf, 0x12, 0x57, 0x27, 0x1c, 0xa3, 0x68, 0x2f, 0x0a, 0x87, 0xbd, 0x6a, 0x6b, 0x0e, 0x5e, 0x65 +.byte 0xf3, 0x1c, 0x77, 0xd5, 0xd4, 0x85, 0x8d, 0x70, 0x21, 0xb4, 0xb3, 0x32, 0xe7, 0x8b, 0xa2, 0xd5 +.byte 0x86, 0x39, 0x02, 0xb1, 0xb8, 0xd2, 0x47, 0xce, 0xe4, 0xc9, 0x49, 0xc4, 0x3b, 0xa7, 0xde, 0xfb +.byte 0x54, 0x7d, 0x57, 0xbe, 0xf0, 0xe8, 0x6e, 0xc2, 0x79, 0xb2, 0x3a, 0x0b, 0x55, 0xe2, 0x50, 0x98 +.byte 0x16, 0x32, 0x13, 0x5c, 0x2f, 0x78, 0x56, 0xc1, 0xc2, 0x94, 0xb3, 0xf2, 0x5a, 0xe4, 0x27, 0x9a +.byte 0x9f, 0x24, 0xd7, 0xc6, 0xec, 0xd0, 0x9b, 0x25, 0x82, 0xe3, 0xcc, 0xc2, 0xc4, 0x45, 0xc5, 0x8c +.byte 0x97, 0x7a, 0x06, 0x6b, 0x2a, 0x11, 0x9f, 0xa9, 0x0a, 0x6e, 0x48, 0x3b, 0x6f, 0xdb, 0xd4, 0x11 +.byte 0x19, 0x42, 0xf7, 0x8f, 0x07, 0xbf, 0xf5, 0x53, 0x5f, 0x9c, 0x3e, 0xf4, 0x17, 0x2c, 0xe6, 0x69 +.byte 0xac, 0x4e, 0x32, 0x4c, 0x62, 0x77, 0xea, 0xb7, 0xe8, 0xe5, 0xbb, 0x34, 0xbc, 0x19, 0x8b, 0xae +.byte 0x9c, 0x51, 0xe7, 0xb7, 0x7e, 0xb5, 0x53, 0xb1, 0x33, 0x22, 0xe5, 0x6d, 0xcf, 0x70, 0x3c, 0x1a +.byte 0xfa, 0xe2, 0x9b, 0x67, 0xb6, 0x83, 0xf4, 0x8d, 0xa5, 0xaf, 0x62, 0x4c, 0x4d, 0xe0, 0x58, 0xac +.byte 0x64, 0x34, 0x12, 0x03, 0xf8, 0xb6, 0x8d, 0x94, 0x63, 0x24, 0xa4, 0x71, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x00, 0xc1, 0x02, 0x26, 0x30, 0x81, 0xbe, 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, 0x28, 0x30 +.byte 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e +.byte 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61 +.byte 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x31, 0x35, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75 +.byte 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e +.byte 0x6c, 0x79, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x45, 0x6e, 0x74 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 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, 0x20, 0x2d, 0x20, 0x47, 0x34, 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, 0xb1, 0xec, 0x2c, 0x42, 0xee, 0xe2, 0xd1, 0x30, 0xff +.byte 0xa5, 0x92, 0x47, 0xe2, 0x2d, 0xc3, 0xba, 0x64, 0x97, 0x6d, 0xca, 0xf7, 0x0d, 0xb5, 0x59, 0xc1 +.byte 0xb3, 0xcb, 0xa8, 0x68, 0x19, 0xd8, 0xaf, 0x84, 0x6d, 0x30, 0x70, 0x5d, 0x7e, 0xf3, 0x2e, 0xd2 +.byte 0x53, 0x99, 0xe1, 0xfe, 0x1f, 0x5e, 0xd9, 0x48, 0xaf, 0x5d, 0x13, 0x8d, 0xdb, 0xff, 0x63, 0x33 +.byte 0x4d, 0xd3, 0x00, 0x02, 0xbc, 0xc4, 0xf8, 0xd1, 0x06, 0x08, 0x94, 0x79, 0x58, 0x8a, 0x15, 0xde +.byte 0x29, 0xb3, 0xfd, 0xfd, 0xc4, 0x4f, 0xe8, 0xaa, 0xe2, 0xa0, 0x3b, 0x79, 0xcd, 0xbf, 0x6b, 0x43 +.byte 0x32, 0xdd, 0xd9, 0x74, 0x10, 0xb9, 0xf7, 0xf4, 0x68, 0xd4, 0xbb, 0xd0, 0x87, 0xd5, 0xaa, 0x4b +.byte 0x8a, 0x2a, 0x6f, 0x2a, 0x04, 0xb5, 0xb2, 0xa6, 0xc7, 0xa0, 0x7a, 0xe6, 0x48, 0xab, 0xd2, 0xd1 +.byte 0x59, 0xcc, 0xd6, 0x7e, 0x23, 0xe6, 0x97, 0x6c, 0xf0, 0x42, 0xe5, 0xdc, 0x51, 0x4b, 0x15, 0x41 +.byte 0xed, 0x49, 0x4a, 0xc9, 0xde, 0x10, 0x97, 0xd6, 0x76, 0xc1, 0xef, 0xa5, 0xb5, 0x36, 0x14, 0x97 +.byte 0x35, 0xd8, 0x78, 0x22, 0x35, 0x52, 0xef, 0x43, 0xbd, 0xdb, 0x27, 0xdb, 0x61, 0x56, 0x82, 0x34 +.byte 0xdc, 0xcb, 0x88, 0x60, 0x0c, 0x0b, 0x5a, 0xe5, 0x2c, 0x01, 0xc6, 0x54, 0xaf, 0xd7, 0xaa, 0xc1 +.byte 0x10, 0x7b, 0xd2, 0x05, 0x5a, 0xb8, 0x40, 0x9e, 0x86, 0xa7, 0xc3, 0x90, 0x86, 0x02, 0x56, 0x52 +.byte 0x09, 0x7a, 0x9c, 0xd2, 0x27, 0x82, 0x53, 0x4a, 0x65, 0x52, 0x6a, 0xf5, 0x3c, 0xe7, 0xa8, 0xf2 +.byte 0x9c, 0xaf, 0x8b, 0xbd, 0xd3, 0x0e, 0xd4, 0xd4, 0x5e, 0x6e, 0x87, 0x9e, 0x6a, 0x3d, 0x45, 0x1d +.byte 0xd1, 0x5d, 0x1b, 0xf4, 0xe9, 0x0a, 0xac, 0x60, 0x99, 0xfb, 0x89, 0xb4, 0xff, 0x98, 0x2c, 0xcf +.byte 0x7c, 0x1d, 0xe9, 0x02, 0xaa, 0x04, 0x9a, 0x1e, 0xb8, 0xdc, 0x88, 0x6e, 0x25, 0xb3, 0x6c, 0x66 +.byte 0xf7, 0x3c, 0x90, 0xf3, 0x57, 0xc1, 0xb3, 0x2f, 0xf5, 0x6d, 0xf2, 0xfb, 0xca, 0xa1, 0xf8, 0x29 +.byte 0x9d, 0x46, 0x8b, 0xb3, 0x6a, 0xf6, 0xe6, 0x67, 0x07, 0xbe, 0x2c, 0x67, 0x0a, 0x2a, 0x1f, 0x5a +.byte 0xb2, 0x3e, 0x57, 0xc4, 0xd3, 0x21, 0x21, 0x63, 0x65, 0x52, 0x91, 0x1b, 0xb1, 0x99, 0x8e, 0x79 +.byte 0x7e, 0xe6, 0xeb, 0x8d, 0x00, 0xd9, 0x5a, 0xaa, 0xea, 0x73, 0xe8, 0xa4, 0x82, 0x02, 0x47, 0x96 +.byte 0xfe, 0x5b, 0x8e, 0x54, 0x61, 0xa3, 0xeb, 0x2f, 0x4b, 0x30, 0xb0, 0x8b, 0x23, 0x75, 0x72, 0x7c +.byte 0x21, 0x3c, 0xc8, 0xf6, 0xf1, 0x74, 0xd4, 0x1c, 0x7b, 0xa3, 0x05, 0x55, 0xee, 0xbb, 0x4d, 0x3b +.byte 0x32, 0xbe, 0x9a, 0x77, 0x66, 0x9e, 0xac, 0x69, 0x90, 0x22, 0x07, 0x1f, 0x61, 0x3a, 0x96, 0xbe +.byte 0xe5, 0x9a, 0x4f, 0xcc, 0x05, 0x3c, 0x28, 0x59, 0xd3, 0xc1, 0x0c, 0x54, 0xa8, 0x59, 0x61, 0xbd +.byte 0xc8, 0x72, 0x4c, 0xe8, 0xdc, 0x9f, 0x87, 0x7f, 0xbd, 0x9c, 0x48, 0x36, 0x5e, 0x95, 0xa3, 0x0e +.byte 0xb9, 0x38, 0x24, 0x55, 0xfc, 0x75, 0x66, 0xeb, 0x02, 0xe3, 0x08, 0x34, 0x29, 0x4a, 0xc6, 0xe3 +.byte 0x2b, 0x2f, 0x33, 0xa0, 0xda, 0xa3, 0x86, 0xa5, 0x12, 0x97, 0xfd, 0x80, 0x2b, 0xda, 0x14, 0x42 +.byte 0xe3, 0x92, 0xbd, 0x3e, 0xf2, 0x5d, 0x5e, 0x67, 0x74, 0x2e, 0x1c, 0x88, 0x47, 0x29, 0x34, 0x5f +.byte 0xe2, 0x32, 0xa8, 0x9c, 0x25, 0x37, 0x8c, 0xba, 0x98, 0x00, 0x97, 0x8b, 0x49, 0x96, 0x1e, 0xfd +.byte 0x25, 0x8a, 0xac, 0xdc, 0xda, 0xd8, 0x5d, 0x74, 0x6e, 0x66, 0xb0, 0xff, 0x44, 0xdf, 0xa1, 0x18 +.byte 0xc6, 0xbe, 0x48, 0x2f, 0x37, 0x94, 0x78, 0xf8, 0x95, 0x4a, 0x3f, 0x7f, 0x13, 0x5e, 0x5d, 0x59 +.byte 0xfd, 0x74, 0x86, 0x43, 0x63, 0x73, 0x49, 0x02, 0x03, 0x01, 0x00, 0x01, 0x00, 0xc2, 0x00, 0x78 +.byte 0x30, 0x81, 0xbf, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75 +.byte 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75 +.byte 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72 +.byte 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29 +.byte 0x20, 0x32, 0x30, 0x31, 0x32, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49 +.byte 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x33, 0x30 +.byte 0x31, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x45 +.byte 0x43, 0x31, 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, 0x84, 0x13, 0xc9, 0xd0, 0xba, 0x6d +.byte 0x41, 0x7b, 0xe2, 0x6c, 0xd0, 0xeb, 0x55, 0x5f, 0x66, 0x02, 0x1a, 0x24, 0xf4, 0x5b, 0x89, 0x69 +.byte 0x47, 0xe3, 0xb8, 0xc2, 0x7d, 0xf1, 0xf2, 0x02, 0xc5, 0x9f, 0xa0, 0xf6, 0x5b, 0xd5, 0x8b, 0x06 +.byte 0x19, 0x86, 0x4f, 0x53, 0x10, 0x6d, 0x07, 0x24, 0x27, 0xa1, 0xa0, 0xf8, 0xd5, 0x47, 0x19, 0x61 +.byte 0x4c, 0x7d, 0xca, 0x93, 0x27, 0xea, 0x74, 0x0c, 0xef, 0x6f, 0x96, 0x09, 0xfe, 0x63, 0xec, 0x70 +.byte 0x5d, 0x36, 0xad, 0x67, 0x77, 0xae, 0xc9, 0x9d, 0x7c, 0x55, 0x44, 0x3a, 0xa2, 0x63, 0x51, 0x1f +.byte 0xf5, 0xe3, 0x62, 0xd4, 0xa9, 0x47, 0x07, 0x3e, 0xcc, 0x20, 0x00, 0xd5, 0x01, 0x26, 0x30, 0x81 +.byte 0xd2, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x18 +.byte 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0f, 0x47, 0x65, 0x62, 0x7a, 0x65, 0x20, 0x2d +.byte 0x20, 0x4b, 0x6f, 0x63, 0x61, 0x65, 0x6c, 0x69, 0x31, 0x42, 0x30, 0x40, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x39, 0x54, 0x75, 0x72, 0x6b, 0x69, 0x79, 0x65, 0x20, 0x42, 0x69, 0x6c, 0x69, 0x6d +.byte 0x73, 0x65, 0x6c, 0x20, 0x76, 0x65, 0x20, 0x54, 0x65, 0x6b, 0x6e, 0x6f, 0x6c, 0x6f, 0x6a, 0x69 +.byte 0x6b, 0x20, 0x41, 0x72, 0x61, 0x73, 0x74, 0x69, 0x72, 0x6d, 0x61, 0x20, 0x4b, 0x75, 0x72, 0x75 +.byte 0x6d, 0x75, 0x20, 0x2d, 0x20, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x31, 0x2d, 0x30, 0x2b +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x24, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x79, 0x6f, 0x6e, 0x20, 0x4d, 0x65, 0x72, 0x6b, 0x65, 0x7a +.byte 0x69, 0x20, 0x2d, 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x31, 0x36, 0x30, 0x34, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x20, 0x4b, 0x61 +.byte 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x20, 0x53, 0x53, 0x4c, 0x20, 0x4b, 0x6f, 0x6b, 0x20, 0x53, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x69, 0x20, 0x2d, 0x20, 0x53, 0x75, 0x72, 0x75 +.byte 0x6d, 0x20, 0x31, 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, 0xaf, 0x75, 0x30, 0x33, 0xaa, 0xbb, 0x6b, 0xd3, 0x99, 0x2c, 0x12, 0x37 +.byte 0x84, 0xd9, 0x8d, 0x7b, 0x97, 0x80, 0xd3, 0x6e, 0xe7, 0xff, 0x9b, 0x50, 0x95, 0x3e, 0x90, 0x95 +.byte 0x56, 0x42, 0xd7, 0x19, 0x7c, 0x26, 0x84, 0x8d, 0x92, 0xfa, 0x01, 0x1d, 0x3a, 0x0f, 0xe2, 0x64 +.byte 0x38, 0xb7, 0x8c, 0xbc, 0xe8, 0x88, 0xf9, 0x8b, 0x24, 0xab, 0x2e, 0xa3, 0xf5, 0x37, 0xe4, 0x40 +.byte 0x8e, 0x18, 0x25, 0x79, 0x83, 0x75, 0x1f, 0x3b, 0xff, 0x6c, 0xa8, 0xc5, 0xc6, 0x56, 0xf8, 0xb4 +.byte 0xed, 0x8a, 0x44, 0xa3, 0xab, 0x6c, 0x4c, 0xfc, 0x1d, 0xd0, 0xdc, 0xef, 0x68, 0xbd, 0xcf, 0xe4 +.byte 0xaa, 0xce, 0xf0, 0x55, 0xf7, 0xa2, 0x34, 0xd4, 0x83, 0x6b, 0x37, 0x7c, 0x1c, 0xc2, 0xfe, 0xb5 +.byte 0x03, 0xec, 0x57, 0xce, 0xbc, 0xb4, 0xb5, 0xc5, 0xed, 0x00, 0x0f, 0x53, 0x37, 0x2a, 0x4d, 0xf4 +.byte 0x4f, 0x0c, 0x83, 0xfb, 0x86, 0xcf, 0xcb, 0xfe, 0x8c, 0x4e, 0xbd, 0x87, 0xf9, 0xa7, 0x8b, 0x21 +.byte 0x57, 0x9c, 0x7a, 0xdf, 0x03, 0x67, 0x89, 0x2c, 0x9d, 0x97, 0x61, 0xa7, 0x10, 0xb8, 0x55, 0x90 +.byte 0x7f, 0x0e, 0x2d, 0x27, 0x38, 0x74, 0xdf, 0xe7, 0xfd, 0xda, 0x4e, 0x12, 0xe3, 0x4d, 0x15, 0x22 +.byte 0x02, 0xc8, 0xe0, 0xe0, 0xfc, 0x0f, 0xad, 0x8a, 0xd7, 0xc9, 0x54, 0x50, 0xcc, 0x3b, 0x0f, 0xca +.byte 0x16, 0x80, 0x84, 0xd0, 0x51, 0x56, 0xc3, 0x8e, 0x56, 0x7f, 0x89, 0x22, 0x33, 0x2f, 0xe6, 0x85 +.byte 0x0a, 0xbd, 0xa5, 0xa8, 0x1b, 0x36, 0xde, 0xd3, 0xdc, 0x2c, 0x6d, 0x3b, 0xc7, 0x13, 0xbd, 0x59 +.byte 0x23, 0x2c, 0xe6, 0xe5, 0xa4, 0xf7, 0xd8, 0x0b, 0xed, 0xea, 0x90, 0x40, 0x44, 0xa8, 0x95, 0xbb +.byte 0x93, 0xd5, 0xd0, 0x80, 0x34, 0xb6, 0x46, 0x78, 0x0e, 0x1f, 0x00, 0x93, 0x46, 0xe1, 0xee, 0xe9 +.byte 0xf9, 0xec, 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: +.word 64057 diff --git a/ESPIDFNEW/debug.log b/ESPIDFNEW/debug.log new file mode 100644 index 0000000..dc66512 --- /dev/null +++ b/ESPIDFNEW/debug.log @@ -0,0 +1,3 @@ +2024-06-25 22:37:39,283 - Debug Adapter (main) - CRITICAL - Debug adapter -> Extension: DEBUG_ADAPTER_STARTED +2024-06-25 22:37:39,286 - Debug Adapter (main) - CRITICAL - Debug adapter -> Extension: DEBUG_ADAPTER_READY2CONNECT +2024-06-25 22:37:45,037 - Debug Adapter (main) - CRITICAL - Debug adapter -> Extension: DEBUG_ADAPTER_STOPPED diff --git a/ESPIDFNEW/dependencies.lock b/ESPIDFNEW/dependencies.lock new file mode 100644 index 0000000..2ad065a --- /dev/null +++ b/ESPIDFNEW/dependencies.lock @@ -0,0 +1,15 @@ +dependencies: + espressif/esp-dsp: + component_hash: 3e7bbd487f1357a1d4944d0c85966d049501ea281b8a4c7f93f7cfedd5b7f23d + source: + service_url: https://api.components.espressif.com/ + type: service + version: 1.4.12 + idf: + component_hash: null + source: + type: idf + version: 5.2.2 +manifest_hash: 3766f9d49e3f6325ca522943d75978bcdf632e92d763c2cd10d8b5d84a59f39e +target: esp32 +version: 1.0.0 diff --git a/ESPIDFNEW/html/dacsettings.html b/ESPIDFNEW/html/dacsettings.html new file mode 100644 index 0000000..8151e5f --- /dev/null +++ b/ESPIDFNEW/html/dacsettings.html @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + +
addressvalue
Alfreds FutterkisteMaria Anders
Centro comercial MoctezumaFrancisco Chang
\ No newline at end of file diff --git a/ESPIDFNEW/html/fileToCString.h.exe b/ESPIDFNEW/html/fileToCString.h.exe new file mode 100644 index 0000000..a6209e1 Binary files /dev/null and b/ESPIDFNEW/html/fileToCString.h.exe differ diff --git a/ESPIDFNEW/html/filter.html b/ESPIDFNEW/html/filter.html new file mode 100644 index 0000000..326f7d1 --- /dev/null +++ b/ESPIDFNEW/html/filter.html @@ -0,0 +1,46 @@ + + + + +
+ +
+ +
+ +
+ +
+ +
+ + \ No newline at end of file diff --git a/ESPIDFNEW/html/filter.html.h b/ESPIDFNEW/html/filter.html.h new file mode 100644 index 0000000..42a08ca --- /dev/null +++ b/ESPIDFNEW/html/filter.html.h @@ -0,0 +1,50 @@ +#pragma once + +char filter_HTML_String[] = +"\n" +"\n" +"\n" +"\n" +"
\n" +" \n" +"
\n" +" \n" +"
\n" +" \n" +"
\n" +" \n" +"
\n" +" \n" +"
\n" +"\n" +" \n" +; \ No newline at end of file diff --git a/ESPIDFNEW/html/volume.html b/ESPIDFNEW/html/volume.html new file mode 100644 index 0000000..08540d6 --- /dev/null +++ b/ESPIDFNEW/html/volume.html @@ -0,0 +1,39 @@ +
+ +
+
+ +
+ +

channel 1:

+

channel 2:

+ + + \ No newline at end of file diff --git a/ESPIDFNEW/html/volume.html.h b/ESPIDFNEW/html/volume.html.h new file mode 100644 index 0000000..4163abb --- /dev/null +++ b/ESPIDFNEW/html/volume.html.h @@ -0,0 +1,43 @@ +#pragma once + +char volume_HTML_String[] = +"
\n" +" \n" +"
\n" +"
\n" +" \n" +"
\n" +"\n" +"

channel 1:

\n" +"

channel 2:

\n" +"\n" +" \n" +" \n" +; \ No newline at end of file diff --git a/ESPIDFNEW/html/wifi.html b/ESPIDFNEW/html/wifi.html new file mode 100644 index 0000000..0e50078 --- /dev/null +++ b/ESPIDFNEW/html/wifi.html @@ -0,0 +1,13 @@ + + + +
+
+
+
+

+ +
+ + + diff --git a/ESPIDFNEW/main/CMakeLists.txt b/ESPIDFNEW/main/CMakeLists.txt new file mode 100644 index 0000000..568f3a3 --- /dev/null +++ b/ESPIDFNEW/main/CMakeLists.txt @@ -0,0 +1,3 @@ + +idf_component_register(SRCS "station_example_main.c" "http_control.c" "filter/butterworthdesign.c" "filter/signalpath.c" "button.c" "power/husb238.c" "flash.c" "ssd1306/ssd1306.c" + INCLUDE_DIRS "../html" "filter") diff --git a/ESPIDFNEW/main/button.c b/ESPIDFNEW/main/button.c new file mode 100644 index 0000000..08a831b --- /dev/null +++ b/ESPIDFNEW/main/button.c @@ -0,0 +1,160 @@ +#include "button.h" +#include +#include +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/queue.h" +#include "driver/gpio.h" +#include + +static QueueHandle_t callbackQueue = NULL; +static QueueHandle_t parameterQueue = NULL; +static int64_t pinHistory[32] = {0}; + +#ifndef GPIO_IN_REG +#define GPIO_IN_REG 0x6000403c +#endif + +static void IRAM_ATTR rotaryPinChange(void *arg) +{ + rotaryPins *encoder = (rotaryPins *)arg; + + static char oldpinA = 0; + static char oldpinB = 0; + uint32_t io = REG_READ(GPIO_IN_REG); + char pinA = (io >> encoder->PIN1) & 0x01; + char pinB = (io >> encoder->PIN2) & 0x01; + + static uint8_t state = 0; + + switch (state) + { + + case 0: + // PINA Fallng CW + if (oldpinA == 1 && pinA == 0 && pinB) + { + state++; + } + else if (oldpinB == 1 && pinB == 0 && pinA) + { + state++; + } + + break; + + case 1: + // PINB Falling CW + if (oldpinB == 1 && pinB == 0 && !pinA) + { + state++; + } + else if (oldpinA == 1 && pinA == 0 && !pinB) + { + state++; + } + + break; + // PINA Rising + case 2: + if (oldpinA == 0 && pinA == 1 && !pinB) + { + state++; + } + else if (oldpinB == 0 && pinB == 1 && !pinA) + { + state++; + } + + break; + // PINB RISING + case 3: + if (oldpinB == 0 && pinB == 1 && pinA) + { + state = 0; + xQueueSendFromISR(callbackQueue, &encoder->CWCallback, NULL); + xQueueSendFromISR(parameterQueue, encoder, NULL); + } + else if (oldpinA == 0 && pinA == 1 && pinB) + { + state = 0; + xQueueSendFromISR(callbackQueue, &encoder->CCWCallback, NULL); + xQueueSendFromISR(parameterQueue, encoder, NULL); + } + + break; + default: + break; + } + + oldpinA = pinA; + oldpinB = pinB; +} + +static void IRAM_ATTR buttonPress(void *arg) +{ + rotaryPins *encoder = (rotaryPins *)arg; + uint64_t time = esp_timer_get_time(); + + if (time - encoder->lastButtonCall > 1000) + { + xQueueSendFromISR(callbackQueue, &encoder->buttonCallback, NULL); + xQueueSendFromISR(parameterQueue, encoder, NULL); + encoder->lastButtonCall = time; + } +} + +static void printStatus(void *arg) +{ + rotaryCallback callbackFunc; + rotaryPins *rotStruct; + for (;;) + { + if (xQueueReceive(callbackQueue, &callbackFunc, portMAX_DELAY) && xQueueReceive(parameterQueue, &rotStruct, portMAX_DELAY)) + { + if (callbackFunc) + callbackFunc(rotStruct); + } + vTaskDelay(20/portTICK_PERIOD_MS); + } +} + +void registerInterrupt(rotaryPins *rot) +{ + rot->ioMask = ((1ULL << rot->PIN1) | (1ULL << rot->PIN2) | (1ULL << rot->BUT)); + + // zero-initialize the config structure. + gpio_config_t io_conf = {}; + + // interrupt of rising edge + io_conf.intr_type = GPIO_INTR_ANYEDGE; + // bit mask of the pins, use GPIO4/5 here + io_conf.pin_bit_mask = rot->ioMask; + // set as input mode + io_conf.mode = GPIO_MODE_INPUT; + // enable pull-up mode + io_conf.pull_up_en = 1; + io_conf.pull_down_en = 0; + gpio_config(&io_conf); + + gpio_set_intr_type(rot->BUT,GPIO_INTR_POSEDGE); + + // create a queue to handle gpio event from isr + callbackQueue = xQueueCreate(10, sizeof(rotaryCallback)); + parameterQueue = xQueueCreate(10, sizeof(rotaryPins *)); + // start gpio task + xTaskCreate(printStatus, "rotaryQueueHandler", 2048, NULL, 10, NULL); + + // install gpio isr service + gpio_install_isr_service(ESP_INTR_FLAG_DEFAULT); + // hook isr handler for specific gpio pin + gpio_isr_handler_add(rot->PIN1, rotaryPinChange, (void *)rot); + // hook isr handler for specific gpio pin + gpio_isr_handler_add(rot->PIN2, rotaryPinChange, (void *)rot); + + gpio_isr_handler_add(rot->BUT, buttonPress, (void *)rot); + + esp_timer_early_init(); +} \ No newline at end of file diff --git a/ESPIDFNEW/main/button.h b/ESPIDFNEW/main/button.h new file mode 100644 index 0000000..35eea9d --- /dev/null +++ b/ESPIDFNEW/main/button.h @@ -0,0 +1,31 @@ +#pragma once + + +#include + +typedef void (*rotaryCallback)(void *arg); + +typedef struct rotaryPins +{ + uint8_t PIN1; + uint8_t PIN2; + uint8_t BUT; + uint32_t ioMask; + rotaryCallback CWCallback; + rotaryCallback CCWCallback; + rotaryCallback buttonCallback; + uint64_t lastButtonCall; + void *arg; +}rotaryPins; + + +#define GPIO_INPUT_PIN_SEL ((1ULL< +#include +#include +#include +#include "butterworthdesign.h" +#include "filter.html.h" + +static filterDesign sp_Filters[MAXCHANNELS] = {{0}}; + +#define PI 3.14159265 + +// channel starts at 0 +filterDesign *createFilter(filterType type, int order, int sampleRate, int cutOffFrequency, int channel) +{ + filterDesign *filter = sp_Filters + channel; + if(filter->initialized == 2654646132) + freeFilter(filter); + filter->type = type; + filter->order = order; + filter->sampleRate = sampleRate; + filter->cutOffFrequency = cutOffFrequency; + filter->noPoles = order / 2; + int n = filter->noPoles; + + float a = tan(PI * (float)cutOffFrequency / (float)sampleRate); + float a2 = a * a; + filter->A = (float *)malloc(n * sizeof(float)); + filter->d1 = (float *)malloc(n * sizeof(float)); + filter->d2 = (float *)malloc(n * sizeof(float)); + filter->w0 = (float *)calloc(n, sizeof(float)); + filter->w1 = (float *)calloc(n, sizeof(float)); + filter->w2 = (float *)calloc(n, sizeof(float)); + float r; + float s; + + for (int i = 0; i < n; ++i) + { + r = sin(PI * (2.0 * i + 1.0) / (4.0 * n)); + s = a2 + 2.0 * a * r + 1.0; + if (filter->type == filter_lpf) + filter->A[i] = a2 / s; + else + filter->A[i] = 1.0 / s; + filter->d1[i] = 2.0 * (1 - a2) / s; + filter->d2[i] = -(a2 - 2.0 * a * r + 1.0) / s; + } + filter->initialized = 2654646132; + return filter; +} + +void IRAM_ATTR runFilter(float *input, float *output, int noSamples, void *data) +{ + filterDesign *filter = (filterDesign*)data; + + float lpf = filter->type == filter_lpf ? 1.0 : -1.0; + for (int j = 0; j < noSamples; ++j) + { + float x = input[j]; + for (int i = 0; i < filter->noPoles; ++i) + { + + filter->w0[i] = filter->d1[i] * filter->w1[i] + filter->d2[i] * filter->w2[i] + x; + x = filter->A[i] * (filter->w0[i] + lpf * 2.0 * filter->w1[i] + filter->w2[i]); + filter->w2[i] = filter->w1[i]; + filter->w1[i] = filter->w0[i]; + } + output[j] = x; + } +} + +void freeFilter(filterDesign *filter) +{ + free(filter->A); + free(filter->d1); + free(filter->d2); + free(filter->w0); + free(filter->w1); + free(filter->w2); +} + +char *getFilterJson(int channel, char *buffer, int bufferSize) +{ + filterDesign *filter = sp_Filters + channel; + if (filter->order == 0) + snprintf(buffer, bufferSize, "{\"order\":0,\"frequency\":0,\"filtertype\":\"0\"}"); + else + snprintf(buffer, bufferSize, "{\"order\":%d,\"frequency\":%d,\"filtertype\":\"%d\"}", filter->order, filter->cutOffFrequency, filter->type); + + return buffer; +} + +esp_err_t http_getFilter(httpd_req_t *req) +{ + char buffer[100] = "Invalid channel"; + int uriLen = strlen(req->uri); + char channelNo = req->uri[uriLen - 1] - 0x31; + if (channelNo < MAXCHANNELS) + getFilterJson(channelNo, buffer, 100); + httpd_resp_send(req, buffer, HTTPD_RESP_USE_STRLEN); + return ESP_OK; +} + +esp_err_t http_filter(httpd_req_t *req) +{ + httpd_resp_send(req, filter_HTML_String, HTTPD_RESP_USE_STRLEN); + return ESP_OK; +} + +esp_err_t http_filter_submit(httpd_req_t *req) +{ + char buffer[100]; + if (httpd_req_get_url_query_str(req, buffer, 100) == ESP_OK) + { + char param[20]; + httpd_query_key_value(buffer, "channel", param, 10); + int channelNo = atoi(param); + if(channelNo > MAXCHANNELS) + { + httpd_resp_send(req, "Invalid channel", HTTPD_RESP_USE_STRLEN); + return ESP_OK; + } + httpd_query_key_value(req->uri, "order", param, 10); + int order = atoi(param); + httpd_query_key_value(req->uri, "frequency", param, 10); + int frequency = atoi(param); + httpd_query_key_value(req->uri, "filter", param, 10); + int filter = atoi(param); + createFilter(filter,order,44100,frequency,channelNo); + } + + /* Send a simple response */ + const char resp[] = "Filter Saved "; + httpd_resp_send(req, resp, HTTPD_RESP_USE_STRLEN); + return ESP_OK; +} + +const httpd_uri_t uri_filter_get = { + .uri = "/filter/channel*", + .method = HTTP_GET, + .handler = http_getFilter, + .user_ctx = NULL}; + +const httpd_uri_t uri_filter_submit = { + .uri = "/filter/submit", + .method = HTTP_GET, + .handler = http_filter_submit, + .user_ctx = NULL}; + +const httpd_uri_t uri_filter = { + .uri = "/filter", + .method = HTTP_GET, + .handler = http_filter, + .user_ctx = NULL}; + +void filter_registerHTTPHandlers(httpd_handle_t *server) +{ + httpd_register_uri_handler(*server, &uri_filter_get); + httpd_register_uri_handler(*server, &uri_filter); + httpd_register_uri_handler(*server, &uri_filter_submit); +} diff --git a/ESPIDFNEW/main/filter/butterworthdesign.h b/ESPIDFNEW/main/filter/butterworthdesign.h new file mode 100644 index 0000000..7910f1f --- /dev/null +++ b/ESPIDFNEW/main/filter/butterworthdesign.h @@ -0,0 +1,35 @@ +#pragma once +#include "esp_http_server.h" + +#define MAXCHANNELS 2 + +typedef enum filterType +{ + filter_lpf, + filter_hpf +} filterType; + +typedef struct filterDesign +{ + int initialized; + int order; + int sampleRate; + int cutOffFrequency; + int noPoles; + filterType type; + float *A; + float *d1; + float *d2; + float *w0; + float *w1; + float *w2; + +} filterDesign; + +filterDesign *createFilter(filterType type, int order, int sampleRate, int cutOffFrequency,int channel); +void IRAM_ATTR runFilter(float *input, float *output, int noSamples, void *filter); +void freeFilter(filterDesign *filter); + + +void filter_registerHTTPHandlers(httpd_handle_t *server); + diff --git a/ESPIDFNEW/main/filter/signalpath.c b/ESPIDFNEW/main/filter/signalpath.c new file mode 100644 index 0000000..bc02ccb --- /dev/null +++ b/ESPIDFNEW/main/filter/signalpath.c @@ -0,0 +1,56 @@ + +#include "signalpath.h" + +float * runSignalPath(signalStep *root,float *in, float *out, int buffSize) +{ + int noSteps = 0; + float *tIn = in; + float *tOut = out; + int newBufSize = buffSize; + while(root != 0) + { + newBufSize = root->function(in,out,newBufSize,root->userParam); + float *temp = in; + in = out; + out = temp; + root = root->nxt; + } + + return tOut; +} + +//PCM in, single channel stream out +int extractChannelFromStereo(float *in,float *out,int buffSize,void *channel) +{ + char channelOffset =*(char*)channel; + for(int i =0;i +#include "../html/volume.html.h" + +/* Our URI handler function to be called during GET /uri request */ +esp_err_t get_handler(httpd_req_t *req) +{ + /* Send a simple response */ + const char resp[] = "URI GET Response"; + httpd_resp_send(req, resp, HTTPD_RESP_USE_STRLEN); + return ESP_OK; +} + +esp_err_t index_handler(httpd_req_t *req) +{ + /* Send a simple response */ + httpd_resp_send(req, volume_HTML_String, HTTPD_RESP_USE_STRLEN); + return ESP_OK; +} + +esp_err_t volumeChangeCB(httpd_req_t *req) +{ + char buffer[100]; + if (httpd_req_get_url_query_str(req, buffer, 100) == ESP_OK) + { + char param[20]; + httpd_query_key_value(buffer, "channel", param, 10); + int channelNo = atoi(param); + httpd_query_key_value(req->uri, "value", param, 10); + int volume = atoi(param); + + ESP_LOGI("HTTP", "Channel %d: %d", channelNo, volume); + } + else + { + char buffer[100]; + snprintf(buffer,100,"{\"channel1\":%d,\"channel2\":%d}",0,0); + httpd_resp_send(req, buffer, HTTPD_RESP_USE_STRLEN); + return ESP_OK; + } + + /* Send a simple response */ + const char resp[] = "200 OK"; + httpd_resp_send(req, resp, HTTPD_RESP_USE_STRLEN); + return ESP_OK; +} + +esp_err_t getVolumeLevel(httpd_req_t *req) +{ + int uriLen =strlen(req->uri); + char channelNo =req->uri[uriLen-1]; + switch(channelNo) + { + case '1': + httpd_resp_send(req, "0", HTTPD_RESP_USE_STRLEN); + break; + case '2': + httpd_resp_send(req, "0", HTTPD_RESP_USE_STRLEN); + break; + default: + httpd_resp_send(req, "ERROR", HTTPD_RESP_USE_STRLEN); + break; + } + return ESP_OK; +} + +/* Our URI handler function to be called during POST /uri request */ +esp_err_t post_handler(httpd_req_t *req) +{ + /* Destination buffer for content of HTTP POST request. + * httpd_req_recv() accepts char* only, but content could + * as well be any binary data (needs type casting). + * In case of string data, null termination will be absent, and + * content length would give length of string */ + char content[100]; + + /* Truncate if content length larger than the buffer */ + size_t recv_size = MIN(req->content_len, sizeof(content)); + + int ret = httpd_req_recv(req, content, recv_size); + if (ret <= 0) + { /* 0 return value indicates connection closed */ + /* Check if timeout occurred */ + if (ret == HTTPD_SOCK_ERR_TIMEOUT) + { + /* In case of timeout one can choose to retry calling + * httpd_req_recv(), but to keep it simple, here we + * respond with an HTTP 408 (Request Timeout) error */ + httpd_resp_send_408(req); + } + /* In case of error, returning ESP_FAIL will + * ensure that the underlying socket is closed */ + return ESP_FAIL; + } + + /* Send a simple response */ + const char resp[] = "URI POST Response"; + httpd_resp_send(req, resp, HTTPD_RESP_USE_STRLEN); + return ESP_OK; +} + +/* URI handler structure for GET /uri */ +httpd_uri_t uri_get = { + .uri = "/uri", + .method = HTTP_GET, + .handler = get_handler, + .user_ctx = NULL}; + +/* URI handler structure for POST /uri */ +httpd_uri_t uri_post = { + .uri = "/uri", + .method = HTTP_POST, + .handler = post_handler, + .user_ctx = NULL}; + +httpd_uri_t index_get = { + .uri = "/", + .method = HTTP_GET, + .handler = index_handler, + .user_ctx = NULL}; + +httpd_uri_t volumeChangeGet = { + .uri = "/volume", + .method = HTTP_GET, + .handler = volumeChangeCB, + .user_ctx = NULL}; + +httpd_uri_t channel1_volume_get = { + .uri = "/volume/channel*", + .method = HTTP_GET, + .handler = getVolumeLevel, + .user_ctx = NULL}; + +/* Function for starting the webserver */ +httpd_handle_t start_webserver(void) +{ + /* Generate default configuration */ + httpd_config_t config = HTTPD_DEFAULT_CONFIG(); + + /* Empty handle to esp_http_server */ + httpd_handle_t server = NULL; + + config.uri_match_fn = httpd_uri_match_wildcard; + config.max_uri_handlers = 16; + + /* Start the httpd server */ + if (httpd_start(&server, &config) == ESP_OK) + { + /* Register URI handlers */ + httpd_register_uri_handler(server, &index_get); + httpd_register_uri_handler(server, &volumeChangeGet); + httpd_register_uri_handler(server, &channel1_volume_get); + } + /* If server failed to start, handle will be NULL */ + return server; +} + +/* Function for stopping the webserver */ +void stop_webserver(httpd_handle_t server) +{ + if (server) + { + /* Stop the httpd server */ + httpd_stop(server); + } +} \ No newline at end of file diff --git a/ESPIDFNEW/main/http_control.h b/ESPIDFNEW/main/http_control.h new file mode 100644 index 0000000..e8fcacf --- /dev/null +++ b/ESPIDFNEW/main/http_control.h @@ -0,0 +1,8 @@ +#pragma once + +#include "esp_http_server.h" + + +#define MIN(x,y) (x > y) ? y : x; +httpd_handle_t start_webserver(void); +void stop_webserver(httpd_handle_t server); diff --git a/ESPIDFNEW/main/i2s/i2s.c b/ESPIDFNEW/main/i2s/i2s.c new file mode 100644 index 0000000..180f13d --- /dev/null +++ b/ESPIDFNEW/main/i2s/i2s.c @@ -0,0 +1,45 @@ +#include + +i2s_port_t i2s_num = I2S_NUM_0; // i2s port number (Built-in DAC functions are only supported on I2S0 for current ESP32 chip, purportedly) +i2s_config_t i2s_config; +unsigned char i2s_running = 0; +static unsigned char audioBufferFilled=0; + +void configure_i2s(int newSampleRate, uint16_t newDmaBufLen) +{ + + ESP_LOGE(TAG, "Setup I2S hardware"); + ESP_LOGE(TAG, "Sample rate: %d", newSampleRate); + ESP_LOGE(TAG, "noSamples per packet %d", newDmaBufLen); + static const i2s_pin_config_t pin_config = { + .bck_io_num = 15, + .ws_io_num = 13, + .data_out_num = 2, + .mck_io_num = I2S_PIN_NO_CHANGE, + .data_in_num = I2S_PIN_NO_CHANGE}; + + i2s_config.mode = (i2s_mode_t)(I2S_MODE_MASTER | I2S_MODE_TX); + i2s_config.sample_rate = newSampleRate; // This must match VBAN Outgoing Stream SampleRate parameter + i2s_config.bits_per_sample = I2S_BITS_PER_SAMPLE_32BIT; // apparently built-in DAC only enabled on I2S0 which only allows 16bit? + i2s_config.channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT; + i2s_config.communication_format = (i2s_comm_format_t)(I2S_COMM_FORMAT_STAND_MSB); + i2s_config.intr_alloc_flags = ESP_INTR_FLAG_LEVEL1; // default interrupt priority + i2s_config.dma_buf_count = DMA_BUFF_COUNT; + i2s_config.dma_buf_len = newDmaBufLen; + i2s_config.use_apll = false; + // i2s_config.tx_desc_auto_clear = true; + + if (i2s_running == 255) + { + ESP_ERROR_CHECK(i2s_stop(i2s_num)); + ESP_ERROR_CHECK(i2s_driver_uninstall(i2s_num)); + } + + ESP_ERROR_CHECK(i2s_driver_install(i2s_num, &i2s_config, 0, NULL)); // install and start i2s driver + ESP_ERROR_CHECK(i2s_set_pin(i2s_num, &pin_config)); + // ESP_ERROR_CHECK( i2s_set_dac_mode(I2S_DAC_CHANNEL_LEFT_EN) ); // RIGHT=GPIO25, LEFT=GPIO26 + ESP_ERROR_CHECK(i2s_zero_dma_buffer(i2s_num)); + i2s_set_clk(i2s_num, newSampleRate, 32, I2S_CHANNEL_STEREO); + i2s_running = 255; + audioBufferFilled = 0; +} \ No newline at end of file diff --git a/ESPIDFNEW/main/i2s/i2s.h b/ESPIDFNEW/main/i2s/i2s.h new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/main/idf_component.yml b/ESPIDFNEW/main/idf_component.yml new file mode 100644 index 0000000..fd5ea50 --- /dev/null +++ b/ESPIDFNEW/main/idf_component.yml @@ -0,0 +1,17 @@ +## IDF Component Manager Manifest File +dependencies: + espressif/esp-dsp: "^1.4.12" + ## Required IDF version + idf: + version: ">=4.1.0" + # # Put list of dependencies here + # # For components maintained by Espressif: + # component: "~1.0.0" + # # For 3rd party components: + # username/component: ">=1.0.0,<2.0.0" + # username2/component2: + # version: "~1.0.0" + # # For transient dependencies `public` flag can be set. + # # `public` flag doesn't have an effect dependencies of the `main` component. + # # All dependencies of `main` are public by default. + # public: true diff --git a/ESPIDFNEW/main/main.c b/ESPIDFNEW/main/main.c new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/main/power/husb238.c b/ESPIDFNEW/main/power/husb238.c new file mode 100644 index 0000000..4bba2dc --- /dev/null +++ b/ESPIDFNEW/main/power/husb238.c @@ -0,0 +1,138 @@ +#include "husb238.h" +#include +#include "portmacro.h" +#include "esp_log.h" + +static uint8_t husb_registers[10]; + +void init_i2c() +{ + int i2c_master_port = 0; + i2c_config_t conf = { + .mode = I2C_MODE_MASTER, + .sda_io_num = 12, // select GPIO specific to your project + .sda_pullup_en = GPIO_PULLUP_ENABLE, + .scl_io_num = 14, // select GPIO specific to your project + .scl_pullup_en = GPIO_PULLUP_ENABLE, + .master.clk_speed = 400000, // select frequency specific to your project + // .clk_flags = 0, /*!< Optional, you can use I2C_SCLK_SRC_FLAG_* flags to choose i2c source clock here. */ + }; + ESP_ERROR_CHECK(i2c_param_config(i2c_master_port, &conf)); + ESP_ERROR_CHECK(i2c_driver_install(i2c_master_port, I2C_MODE_MASTER, 0, 0, 0)); +} + +void husb238_init(int i2c_master_port) +{ + unsigned char addressToRead = 0; + i2c_master_write_read_device(i2c_master_port, HUSB238_I2CADDR_DEFAULT, &addressToRead, 1, husb_registers, 10, 100); + + for(int i = 0; i<10;i++) + { + ESP_LOGE(HUSB238TAG,"address %d-0x%02x",i,husb_registers[i]); + } +} + +void husb238_requestVoltage(int i2c_master_port,HUSB238_PDSelection voltage) +{ + uint8_t bytesToWrite[2] = {HUSB238_SRC_PDO,(voltage<<4)&0xf0}; + i2c_master_write_to_device(i2c_master_port,HUSB238_I2CADDR_DEFAULT,bytesToWrite,2,100/portTICK_PERIOD_MS); + + bytesToWrite[0] = HUSB238_GO_COMMAND; + bytesToWrite[1] = 0x01; + i2c_master_write_to_device(i2c_master_port,HUSB238_I2CADDR_DEFAULT,bytesToWrite,2,100/portTICK_PERIOD_MS); + + husb238_init(i2c_master_port); +} + +float husb238_getMaxCurrent(int i2c_master_port,HUSB238_PDSelection voltage) +{ + husb238_init(i2c_master_port); + + uint8_t currentOption; + + switch (voltage) + { + case PD_SRC_5V: + currentOption = husb_registers[2]; + break; + case PD_SRC_9V: + currentOption = husb_registers[3]; + break; + case PD_SRC_12V: + currentOption = husb_registers[4]; + break; + case PD_SRC_15V: + currentOption = husb_registers[5]; + break; + case PD_SRC_18V: + currentOption = husb_registers[6]; + break; + case PD_SRC_20V: + currentOption = husb_registers[7]; + break; + + default: + return -1.0; + break; + } + + if(!(currentOption &0x80)) + return -1.0; + + + switch (currentOption) + { + case CURRENT_0_5_A: + return 0.5; + break; + case CURRENT_0_7_A: + return 0.7; + break; + case CURRENT_1_0_A: + return 1.0; + break; + case CURRENT_1_25_A: + return 1.25; + break; + case CURRENT_1_5_A: + return 1.5; + break; + case CURRENT_1_75_A: + return 1.75; + break; + case CURRENT_2_0_A: + return 2.0; + break; + case CURRENT_2_25_A: + return 2.25; + break; + case CURRENT_2_50_A: + return 2.5; + break; + case CURRENT_2_75_A: + return 2.75; + break; + case CURRENT_3_0_A: + return 3.0; + break; + case CURRENT_3_25_A: + return 3.25; + break; + case CURRENT_3_5_A: + return 3.5; + break; + case CURRENT_4_0_A: + return 4.0; + break; + case CURRENT_4_5_A: + return 4.5; + break; + case CURRENT_5_0_A: + return 5.0; + break; + + default: + break; + } + return -1.0; +} \ No newline at end of file diff --git a/ESPIDFNEW/main/power/husb238.h b/ESPIDFNEW/main/power/husb238.h new file mode 100644 index 0000000..1b6cb6a --- /dev/null +++ b/ESPIDFNEW/main/power/husb238.h @@ -0,0 +1,90 @@ +#ifndef _husb238_h_ +#define _husb238_h_ + +#include "driver/i2c.h" + +#define HUSB238TAG "USBPD" + +/** Default HUSB238 I2C address. */ +#define HUSB238_I2CADDR_DEFAULT 0x08 ///< I2C address + +#define HUSB238_PD_STATUS0 0x00 ///< Register value for PD_STATUS0 in HUSB238 +#define HUSB238_PD_STATUS1 0x01 ///< Register value for PD_STATUS1 in HUSB238 +#define HUSB238_SRC_PDO_5V 0x02 ///< Register value for SRC_PDO_5V in HUSB238 +#define HUSB238_SRC_PDO_9V 0x03 ///< Register value for SRC_PDO_9V in HUSB238 +#define HUSB238_SRC_PDO_12V 0x04 ///< Register value for SRC_PDO_12V in HUSB238 +#define HUSB238_SRC_PDO_15V 0x05 ///< Register value for SRC_PDO_15V in HUSB238 +#define HUSB238_SRC_PDO_18V 0x06 ///< Register value for SRC_PDO_18V in HUSB238 +#define HUSB238_SRC_PDO_20V 0x07 ///< Register value for SRC_PDO_20V in HUSB238 +#define HUSB238_SRC_PDO 0x08 ///< Register value for SRC_PDO in HUSB238 +#define HUSB238_GO_COMMAND 0x09 ///< Register value for GO_COMMAND in HUSB238 + +/** Available currents per PD output */ +typedef enum _husb_currents { + CURRENT_0_5_A = 0b0000, ///< 0.5A + CURRENT_0_7_A = 0b0001, ///< 0.7A + CURRENT_1_0_A = 0b0010, ///< 1.0A + CURRENT_1_25_A = 0b0011, ///< 1.25A + CURRENT_1_5_A = 0b0100, ///< 1.5A + CURRENT_1_75_A = 0b0101, ///< 1.75A + CURRENT_2_0_A = 0b0110, ///< 2.0A + CURRENT_2_25_A = 0b0111, ///< 2.25A + CURRENT_2_50_A = 0b1000, ///< 2.50A + CURRENT_2_75_A = 0b1001, ///< 2.75A + CURRENT_3_0_A = 0b1010, ///< 3.0A + CURRENT_3_25_A = 0b1011, ///< 3.25A + CURRENT_3_5_A = 0b1100, ///< 3.5A + CURRENT_4_0_A = 0b1101, ///< 4.0A + CURRENT_4_5_A = 0b1110, ///< 4.5A + CURRENT_5_0_A = 0b1111 ///< 5.0A +} HUSB238_CurrentSetting; + +/** Available voltages for PD output */ +typedef enum _husb_voltages { + UNATTACHED = 0b0000, ///< Unattached + PD_5V = 0b0001, ///< 5V + PD_9V = 0b0010, ///< 9V + PD_12V = 0b0011, ///< 12V + PD_15V = 0b0100, ///< 15V + PD_18V = 0b0101, ///< 18V + PD_20V = 0b0110 ///< 20V +} HUSB238_VoltageSetting; + +/** Responses to PD query */ +typedef enum _husb_response_codes { + NO_RESPONSE = 0b000, ///< No response + SUCCESS = 0b001, ///< Success + INVALID_CMD_OR_ARG = 0b011, ///< Invalid command or argument + CMD_NOT_SUPPORTED = 0b100, ///< Command not supported + TRANSACTION_FAIL_NO_GOOD_CRC = + 0b101 ///< Transaction fail. No GoodCRC is received after sending +} HUSB238_ResponseCodes; + +/** Default 5V output current */ +typedef enum _husb_5v_current_contract { + CURRENT5V_DEFAULT = 0b00, ///< Default current + CURRENT5V_1_5_A = 0b01, ///< 1.5A + CURRENT5V_2_4_A = 0b10, ///< 2.4A + CURRENT5V_3_A = 0b11 ///< 3A +} HUSB238_5VCurrentContract; + +/** What voltage is selected for PD sink */ +typedef enum _husb_pd_selection { + PD_NOT_SELECTED = 0b0000, ///< Not selected + PD_SRC_5V = 0b0001, ///< SRC_PDO_5V + PD_SRC_9V = 0b0010, ///< SRC_PDO_9V + PD_SRC_12V = 0b0011, ///< SRC_PDO_12V + PD_SRC_15V = 0b1000, ///< SRC_PDO_15V + PD_SRC_18V = 0b1001, ///< SRC_PDO_18V + PD_SRC_20V = 0b1010 ///< SRC_PDO_20V +} HUSB238_PDSelection; + + +void husb238_init(int i2c_master_port); +void husb238_requestVoltage(int i2c_master_port,HUSB238_PDSelection voltage); +float husb238_getMaxCurrent(int i2c_master_port,HUSB238_PDSelection voltage); + + +void init_i2c(); + +#endif //_husb238_h_ \ No newline at end of file diff --git a/ESPIDFNEW/main/project_include.cmake b/ESPIDFNEW/main/project_include.cmake new file mode 100644 index 0000000..bc85eea --- /dev/null +++ b/ESPIDFNEW/main/project_include.cmake @@ -0,0 +1 @@ +idf_build_set_property(COMPILE_OPTIONS "-Wno-format-nonliteral;-Wno-format-security;-Wformat=0" APPEND) diff --git a/ESPIDFNEW/main/ssd1306/ssd1306.c b/ESPIDFNEW/main/ssd1306/ssd1306.c new file mode 100644 index 0000000..92a8008 --- /dev/null +++ b/ESPIDFNEW/main/ssd1306/ssd1306.c @@ -0,0 +1,348 @@ +#include "SSD1306.h" +#include "driver/i2c.h" +#include "portmacro.h" +#include "esp_log.h" +#include "freertos/FreeRTOS.h" + +static char I2C_addr = 0; +static int I2CHandle = NULL; +static uint8_t SSD1306FrameBuffer[SSD1306BUFFERSIZE]; + +static uint8_t SSD1306CursorX = 0; +static uint8_t SSD1306CursorY = 0; + +static uint8_t SSD1306OffsetX = 0; +static uint8_t SSD1306OffsetY = 0; + +static uint8_t SSD1306Width = SSD1306_WIDTH; +static uint8_t SSD1306Height = SSD1306_HEIGHT; + +static uint8_t SSD1306Changed = 0; + + +void SSD1306_Init(int i2c_master_port, char address) +{ + I2CHandle = i2c_master_port; + I2C_addr = address; + if(!I2CHandle) + return; + SSD1306_Reset(); + + vTaskDelay(100/portTICK_PERIOD_MS); + + //init display + SSD1306_SetDisplayOn(0); + SSD1306_WriteCMD(0x20); //Set Mem Addressing + SSD1306_WriteCMD(0x00); + + SSD1306_WriteCMD(0xB0);//Set Page start + + SSD1306_WriteCMD(0xC0); //Set COM Output Scan Direction + + + SSD1306_WriteCMD(0x00); //---set low column address + SSD1306_WriteCMD(0x10); //---set high column address + + SSD1306_WriteCMD(0x40); //--set start line address - CHECK + + SSD1306_SetContrast(0xFF); + + SSD1306_WriteCMD(0xA1); //--set segment re-map 0 to 127 - CHECK + + + SSD1306_WriteCMD(0xA6); //--set normal color + + +// Set multiplex ratio. + SSD1306_WriteCMD(0xA8); + + SSD1306_WriteCMD(0x1F); // Seems to work for 128px high displays too. + + + SSD1306_WriteCMD(0xA4); //0xa4,Output follows RAM content;0xa5,Output ignores RAM content + + SSD1306_WriteCMD(0xD3); //-set display offset - CHECK + SSD1306_WriteCMD(0x00); //-not offset + + SSD1306_WriteCMD(0xD5); //--set display clock divide ratio/oscillator frequency + SSD1306_WriteCMD(0xF0); //--set divide ratio + + SSD1306_WriteCMD(0xD9); //--set pre-charge period + SSD1306_WriteCMD(0x22); // + + SSD1306_WriteCMD(0xDA); //--set com pins hardware configuration - CHECK + + SSD1306_WriteCMD(0x02); + + SSD1306_WriteCMD(0xDB); //--set vcomh + SSD1306_WriteCMD(0x20); //0x20,0.77xVcc + + SSD1306_WriteCMD(0x8D); //--set DC-DC enable + SSD1306_WriteCMD(0x14); // + SSD1306_SetDisplayOn(1); //--turn on SSD1306 panel + + + //Set buffer to 0; + for(uint16_t i =0; i < SSD1306BUFFERSIZE; i++) + SSD1306FrameBuffer[i] = 0; +} + +void SSD1306_UpdateScreen() +{ + if(!I2CHandle) + return; + if(!SSD1306Changed) + return; + SSD1306Changed = 0; + + for(uint8_t i = 0; i < SSD1306_HEIGHT/8; i++) { + SSD1306_WriteCMD(0xB0 + i); // Set the current RAM page address. + SSD1306_WriteCMD(0x00); + SSD1306_WriteCMD(0x10); + SSD1306_WriteData(&SSD1306FrameBuffer[SSD1306_WIDTH*i],SSD1306_WIDTH); + } +} + +void SSD1306_WriteCMD(unsigned char cmd) +{ + if(!I2CHandle) + return; + i2c_master_write_to_device(I2CHandle,I2C_addr,&cmd,1,100/portTICK_PERIOD_MS); +} + +void SSD1306_WriteData(unsigned char *data,unsigned char len) +{ + if(!I2CHandle) + return; + i2c_master_write_to_device(I2CHandle,I2C_addr,data,len,100/portTICK_PERIOD_MS); +} + + +void SSD1306_WriteChar(char c) +{ + if(!I2CHandle) + return; + //First check if we have enough space to draw the character + //Font size is 8x8 + //first we check width + //The display is rotated 90* so we this is weird... + if((SSD1306CursorX+1)*8 > SSD1306Height-SSD1306OffsetX) + { + //We do not fit so jump to the next line and set cursor back to 0 + SSD1306CursorY ++; + SSD1306CursorX = SSD1306OffsetX; + } + //if we do not fit at the bottom jump to top + if((SSD1306CursorY+1)+8 > SSD1306Width-SSD1306OffsetY) + { + SSD1306CursorX = SSD1306OffsetX; + SSD1306CursorY = SSD1306OffsetY; + } + + + + uint16_t offset = (SSD1306CursorY*8)+(SSD1306CursorX*128); + for(uint16_t i =0 ; i < 8;i++) + { + SSD1306FrameBuffer[i+offset] = Font6x8[(c-32)*8+i]; + } + SSD1306CursorX++; + + SSD1306Changed =1; +} + + +void SSD1306_WriteString(char *c, char len) +{ + if(!I2CHandle) + return; + uint8_t i =0; + for(i=0;i + +#define SSD1306_WIDTH 128 +#define SSD1306_HEIGHT 32 +#define SSD1306BUFFERSIZE SSD1306_WIDTH * SSD1306_HEIGHT / 8 + +void SSD1306_Init(int i2c_master_port, char address); +void SSD1306_WriteCMD(unsigned char reg); +void SSD1306_WriteData(unsigned char *data,unsigned char len); + +void SSD1306_UpdateScreen(); +void SSD1306_WriteChar(char c); +void SSD1306_SetCursor(char x,char y); +void SSD1306_WriteString(char *c, char len); + +void SSD1306_SetTextArea(char offsetX, char width, char offsetY, char height); +void SSD1306_SetPixel(char x, char y, char value); +void SSD1306_LoadImage(char x, char y, char ** data, char width,char height); + +void SSD1306_Reset(); +void SSD1306_SetContrast(char contrast); +void SSD1306_SetDisplayOn(char OnOff); + +void SSD1306_Clear(); + + +extern uint8_t Font6x8[]; + +/* +static const uint8_t Font6x8 [] = { +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // sp +0x20, 0x20, 0x20, 0x20, 0x20, 0x00, 0x20, 0x00, // ! +0x50, 0x50, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, // " +0x50, 0x50, 0xf8, 0x50, 0xf8, 0x50, 0x50, 0x00, // # +0x20, 0x78, 0xa0, 0x70, 0x28, 0xf0, 0x20, 0x00, // $ +0xc0, 0xc8, 0x10, 0x20, 0x40, 0x98, 0x18, 0x00, // % +0x40, 0xa0, 0xa0, 0x40, 0xa8, 0x90, 0x68, 0x00, // & +0x30, 0x30, 0x20, 0x40, 0x00, 0x00, 0x00, 0x00, // ' +0x10, 0x20, 0x40, 0x40, 0x40, 0x20, 0x10, 0x00, // ( +0x40, 0x20, 0x10, 0x10, 0x10, 0x20, 0x40, 0x00, // ) +0x20, 0xa8, 0x70, 0xf8, 0x70, 0xa8, 0x20, 0x00, // * +0x00, 0x20, 0x20, 0xf8, 0x20, 0x20, 0x00, 0x00, // + +0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x20, 0x00, // , +0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // - +0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, // . +0x00, 0x08, 0x10, 0x20, 0x40, 0x80, 0x00, 0x00, // / +0x70, 0x88, 0x98, 0xa8, 0xc8, 0x88, 0x70, 0x00, // 0 +0x20, 0x60, 0x20, 0x20, 0x20, 0x20, 0x70, 0x00, // 1 +0x70, 0x88, 0x08, 0x70, 0x80, 0x80, 0xf8, 0x00, // 2 +0xf8, 0x08, 0x10, 0x30, 0x08, 0x88, 0x70, 0x00, // 3 +0x10, 0x30, 0x50, 0x90, 0xf8, 0x10, 0x10, 0x00, // 4 +0xf8, 0x80, 0xf0, 0x08, 0x08, 0x88, 0x70, 0x00, // 5 +0x38, 0x40, 0x80, 0xf0, 0x88, 0x88, 0x70, 0x00, // 6 +0xf8, 0x08, 0x08, 0x10, 0x20, 0x40, 0x80, 0x00, // 7 +0x70, 0x88, 0x88, 0x70, 0x88, 0x88, 0x70, 0x00, // 8 +0x70, 0x88, 0x88, 0x78, 0x08, 0x10, 0xe0, 0x00, // 9 +0x00, 0x00, 0x20, 0x00, 0x20, 0x00, 0x00, 0x00, // : +0x00, 0x00, 0x20, 0x00, 0x20, 0x20, 0x40, 0x00, // ; +0x08, 0x10, 0x20, 0x40, 0x20, 0x10, 0x08, 0x00, // < +0x00, 0x00, 0xf8, 0x00, 0xf8, 0x00, 0x00, 0x00, // = +0x40, 0x20, 0x10, 0x08, 0x10, 0x20, 0x40, 0x00, // > +0x70, 0x88, 0x08, 0x30, 0x20, 0x00, 0x20, 0x00, // ? +0x70, 0x88, 0xa8, 0xb8, 0xb0, 0x80, 0x78, 0x00, // @ +0x20, 0x50, 0x88, 0x88, 0xf8, 0x88, 0x88, 0x00, // A +0xf0, 0x88, 0x88, 0xf0, 0x88, 0x88, 0xf0, 0x00, // B +0x70, 0x88, 0x80, 0x80, 0x80, 0x88, 0x70, 0x00, // C +0xf0, 0x88, 0x88, 0x88, 0x88, 0x88, 0xf0, 0x00, // D +0xf8, 0x80, 0x80, 0xf0, 0x80, 0x80, 0xf8, 0x00, // E +0xf8, 0x80, 0x80, 0xf0, 0x80, 0x80, 0x80, 0x00, // F +0x78, 0x88, 0x80, 0x80, 0x98, 0x88, 0x78, 0x00, // G +0x88, 0x88, 0x88, 0xf8, 0x88, 0x88, 0x88, 0x00, // H +0x70, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x00, // I +0x38, 0x10, 0x10, 0x10, 0x10, 0x90, 0x60, 0x00, // J +0x88, 0x90, 0xa0, 0xc0, 0xa0, 0x90, 0x88, 0x00, // K +0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0xf8, 0x00, // L +0x88, 0xd8, 0xa8, 0xa8, 0xa8, 0x88, 0x88, 0x00, // M +0x88, 0x88, 0xc8, 0xa8, 0x98, 0x88, 0x88, 0x00, // N +0x70, 0x88, 0x88, 0x88, 0x88, 0x88, 0x70, 0x00, // O +0xf0, 0x88, 0x88, 0xf0, 0x80, 0x80, 0x80, 0x00, // P +0x70, 0x88, 0x88, 0x88, 0xa8, 0x90, 0x68, 0x00, // Q +0xf0, 0x88, 0x88, 0xf0, 0xa0, 0x90, 0x88, 0x00, // R +0x70, 0x88, 0x80, 0x70, 0x08, 0x88, 0x70, 0x00, // S +0xf8, 0xa8, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00, // T +0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x70, 0x00, // U +0x88, 0x88, 0x88, 0x88, 0x88, 0x50, 0x20, 0x00, // V +0x88, 0x88, 0x88, 0xa8, 0xa8, 0xa8, 0x50, 0x00, // W +0x88, 0x88, 0x50, 0x20, 0x50, 0x88, 0x88, 0x00, // X +0x88, 0x88, 0x50, 0x20, 0x20, 0x20, 0x20, 0x00, // Y +0xf8, 0x08, 0x10, 0x70, 0x40, 0x80, 0xf8, 0x00, // Z +0x78, 0x40, 0x40, 0x40, 0x40, 0x40, 0x78, 0x00, // [ +0x00, 0x80, 0x40, 0x20, 0x10, 0x08, 0x00, 0x00, // \ +0x78, 0x08, 0x08, 0x08, 0x08, 0x08, 0x78, 0x00, // ] +0x20, 0x50, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, // ^ +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, // _ +0x60, 0x60, 0x20, 0x10, 0x00, 0x00, 0x00, 0x00, // ` +0x00, 0x00, 0x60, 0x10, 0x70, 0x90, 0x78, 0x00, // a +0x80, 0x80, 0xb0, 0xc8, 0x88, 0xc8, 0xb0, 0x00, // b +0x00, 0x00, 0x70, 0x88, 0x80, 0x88, 0x70, 0x00, // c +0x08, 0x08, 0x68, 0x98, 0x88, 0x98, 0x68, 0x00, // d +0x00, 0x00, 0x70, 0x88, 0xf8, 0x80, 0x70, 0x00, // e +0x10, 0x28, 0x20, 0x70, 0x20, 0x20, 0x20, 0x00, // f +0x00, 0x00, 0x70, 0x98, 0x98, 0x68, 0x08, 0x00, // g +0x80, 0x80, 0xb0, 0xc8, 0x88, 0x88, 0x88, 0x00, // h +0x20, 0x00, 0x60, 0x20, 0x20, 0x20, 0x70, 0x00, // i +0x10, 0x00, 0x10, 0x10, 0x10, 0x90, 0x60, 0x00, // j +0x80, 0x80, 0x90, 0xa0, 0xc0, 0xa0, 0x90, 0x00, // k +0x60, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x00, // l +0x00, 0x00, 0xd0, 0xa8, 0xa8, 0xa8, 0xa8, 0x00, // m +0x00, 0x00, 0xb0, 0xc8, 0x88, 0x88, 0x88, 0x00, // n +0x00, 0x00, 0x70, 0x88, 0x88, 0x88, 0x70, 0x00, // o +0x00, 0x00, 0xb0, 0xc8, 0xc8, 0xb0, 0x80, 0x00, // p +0x00, 0x00, 0x68, 0x98, 0x98, 0x68, 0x08, 0x00, // q +0x00, 0x00, 0xb0, 0xc8, 0x80, 0x80, 0x80, 0x00, // r +0x00, 0x00, 0x78, 0x80, 0x70, 0x08, 0xf0, 0x00, // s +0x20, 0x20, 0xf8, 0x20, 0x20, 0x28, 0x10, 0x00, // t +0x00, 0x00, 0x88, 0x88, 0x88, 0x98, 0x68, 0x00, // u +0x00, 0x00, 0x88, 0x88, 0x88, 0x50, 0x20, 0x00, // v +0x00, 0x00, 0x88, 0x88, 0xa8, 0xa8, 0x50, 0x00, // w +0x00, 0x00, 0x88, 0x50, 0x20, 0x50, 0x88, 0x00, // x +0x00, 0x00, 0x88, 0x88, 0x78, 0x08, 0x88, 0x00, // y +0x00, 0x00, 0xf8, 0x10, 0x20, 0x40, 0xf8, 0x00, // z +0x10, 0x20, 0x20, 0x40, 0x20, 0x20, 0x10, 0x00, // { +0x20, 0x20, 0x20, 0x00, 0x20, 0x20, 0x20, 0x00, // | +0x40, 0x20, 0x20, 0x10, 0x20, 0x20, 0x40, 0x00, // } +0x40, 0xa8, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, // ~ +};*/ + +#endif \ No newline at end of file diff --git a/ESPIDFNEW/main/station_example_main.c b/ESPIDFNEW/main/station_example_main.c new file mode 100644 index 0000000..bb9b7e4 --- /dev/null +++ b/ESPIDFNEW/main/station_example_main.c @@ -0,0 +1,507 @@ +/* WiFi station Example + + This example code is in the Public Domain (or CC0 licensed, at your option.) + + Unless required by applicable law or agreed to in writing, this + software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied. +*/ +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/event_groups.h" +#include "esp_system.h" +#include "esp_wifi.h" +#include "esp_event.h" +#include "esp_log.h" +#include "esp_netif.h" +#include "nvs_flash.h" + +#include "lwip/err.h" +#include "lwip/sys.h" +#include "lwip/sockets.h" +#include +#include "vban/vban.h" +#include + +#include +#include "http_control.h" +#include "esp_dsp.h" + +#include "filter/butterworthdesign.h" +//#include "filter/signalpath.h" +#define DMA_BUFF_COUNT 16 + + +static filterDesign *lpfFilter; + +/* The examples use WiFi configuration that you can set via project configuration menu + + If you'd rather not, just change the below entries to strings with + the config you want - ie #define EXAMPLE_WIFI_SSID "mywifissid" +*/ +#define EXAMPLE_ESP_WIFI_SSID "Toetersnoet_Audio" +#define EXAMPLE_ESP_WIFI_PASS "nybui9823rkjcsdv" +#define EXAMPLE_ESP_MAXIMUM_RETRY 3 +#define PORT 6980 + +#define ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD WIFI_AUTH_WPA2_PSK + +/* FreeRTOS event group to signal when we are connected*/ +static EventGroupHandle_t s_wifi_event_group; + +/* The event group allows multiple bits for each event, but we only care about two events: + * - we are connected to the AP with an IP + * - we failed to connect after the maximum amount of retries */ +#define WIFI_CONNECTED_BIT BIT0 +#define WIFI_FAIL_BIT BIT1 + +static const char *TAG = "wifi station"; + +static int s_retry_num = 0; + +static unsigned char s_noChannels = 2; +static VBAN_SAMPLERATE s_sampleRate = SR_44100; +static VBAN_CODEC s_codec = CODEC_PCM; +static VBAN_DATATYPE s_datatype = DATATYPE_INT16; +static unsigned char s_samplesPerPacket = 0; +static char s_streamname[17] = "Stream1"; +static unsigned int s_framecounter = 0; + +static unsigned int s_validPacketCounter = 0; +static unsigned int s_droppedPacketCounter = 0; + +static float coeffs_lpf[5]; +static float w_lpf[5] = {0, 0}; + +#include + +i2s_port_t i2s_num = I2S_NUM_0; // i2s port number (Built-in DAC functions are only supported on I2S0 for current ESP32 chip, purportedly) +i2s_config_t i2s_config; +unsigned char i2s_running = 0; +static unsigned char audioBufferFilled=0; + +void configure_i2s(int newSampleRate, uint16_t newDmaBufLen) +{ + + ESP_LOGE(TAG, "Setup I2S hardware"); + ESP_LOGE(TAG, "Sample rate: %d", newSampleRate); + ESP_LOGE(TAG, "noSamples per packet %d", newDmaBufLen); + static const i2s_pin_config_t pin_config = { + .bck_io_num = 15, + .ws_io_num = 13, + .data_out_num = 2, + .mck_io_num = I2S_PIN_NO_CHANGE, + .data_in_num = I2S_PIN_NO_CHANGE}; + + i2s_config.mode = (i2s_mode_t)(I2S_MODE_MASTER | I2S_MODE_TX); + i2s_config.sample_rate = newSampleRate; // This must match VBAN Outgoing Stream SampleRate parameter + i2s_config.bits_per_sample = I2S_BITS_PER_SAMPLE_32BIT; // apparently built-in DAC only enabled on I2S0 which only allows 16bit? + i2s_config.channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT; + i2s_config.communication_format = (i2s_comm_format_t)(I2S_COMM_FORMAT_STAND_MSB); + i2s_config.intr_alloc_flags = ESP_INTR_FLAG_LEVEL1; // default interrupt priority + i2s_config.dma_buf_count = DMA_BUFF_COUNT; + i2s_config.dma_buf_len = newDmaBufLen; + i2s_config.use_apll = false; + // i2s_config.tx_desc_auto_clear = true; + + if (i2s_running == 255) + { + ESP_ERROR_CHECK(i2s_stop(i2s_num)); + ESP_ERROR_CHECK(i2s_driver_uninstall(i2s_num)); + } + + ESP_ERROR_CHECK(i2s_driver_install(i2s_num, &i2s_config, 0, NULL)); // install and start i2s driver + ESP_ERROR_CHECK(i2s_set_pin(i2s_num, &pin_config)); + // ESP_ERROR_CHECK( i2s_set_dac_mode(I2S_DAC_CHANNEL_LEFT_EN) ); // RIGHT=GPIO25, LEFT=GPIO26 + ESP_ERROR_CHECK(i2s_zero_dma_buffer(i2s_num)); + i2s_set_clk(i2s_num, newSampleRate, 32, I2S_CHANNEL_STEREO); + i2s_running = 255; + audioBufferFilled = 0; +} + + + +static void IRAM_ATTR vban_decode(char *buffer, int buffersize) +{ + static uint32_t outBuf[512]; + static float leftOut[256]; + static float rightOut[256]; + + VBAN_HEADER *header = (VBAN_HEADER *)buffer; + + if (header->vban != VBAN_MARKER) + { + ESP_LOGE(TAG, "Invalid vban packet received"); + return; + } + + // ESP_LOGE(TAG, "Valid vban packet received"); + + s_noChannels = header->format_nbc + 1; + memcpy(s_streamname, header->streamname, 16); + s_sampleRate = (VBAN_SAMPLERATE)header->format_SR; + s_datatype = (VBAN_DATATYPE)(header->format_bit & 0xf); + s_framecounter = header->noFrame; + int noSamples = header->format_nbs + 1; + + int16_t *data = (buffer + sizeof(VBAN_HEADER)); + + if (i2s_running != 255) + { + ESP_LOGE(TAG, "Stream: %s", s_streamname); + configure_i2s(VBAN_SRList[s_sampleRate], noSamples); + } + + //filter needs floating point and separated channels + for (int i = 0; i < noSamples; i++) + { + leftOut[i] = (float)(data[i*2]/(float)0x7fff); + rightOut[i] = (float)(data[i*2+1]/(float)0x7fff); + } + + //ESP_LOGE("DSP","%d %f",data[0],leftOut[0]); + runFilter(rightOut,leftOut,noSamples,lpfFilter); + //ESP_ERROR_CHECK(dsps_biquad_f32_ae32(leftOut,rightOut,noSamples,coeffs_lpf,w_lpf)); + + for (int i = 0; i < noSamples; i++) + { + outBuf[i*2 +1] = (leftOut[i]+1.0)*0x7fffffff; + outBuf[i*2] = (rightOut[i]+1.0)*0x7fffffff; + } + + size_t bytesWritten; + + if(audioBufferFilled > DMA_BUFF_COUNT/4) + ESP_ERROR_CHECK(i2s_write(i2s_num, outBuf, noSamples * 4 * s_noChannels, &bytesWritten, portMAX_DELAY)); + else + audioBufferFilled++; + +} + +static void udp_server_task(void *pvParameters) +{ + char rx_buffer[1600]; + char addr_str[128]; + int addr_family = (int)pvParameters; + int ip_protocol = 0; + struct sockaddr_in6 dest_addr; + + while (1) + { + + struct sockaddr_in *dest_addr_ip4 = (struct sockaddr_in *)&dest_addr; + dest_addr_ip4->sin_addr.s_addr = htonl(INADDR_ANY); + dest_addr_ip4->sin_family = AF_INET; + dest_addr_ip4->sin_port = htons(PORT); + ip_protocol = IPPROTO_IP; + + int sock = socket(addr_family, SOCK_DGRAM, ip_protocol); + if (sock < 0) + { + ESP_LOGE(TAG, "Unable to create socket: errno %d", errno); + break; + } + ESP_LOGI(TAG, "Socket created"); + + // Set timeout + struct timeval timeout; + timeout.tv_sec = 5; + timeout.tv_usec = 0; + setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, &timeout, sizeof timeout); + + int err = bind(sock, (struct sockaddr *)&dest_addr, sizeof(dest_addr)); + if (err < 0) + { + ESP_LOGE(TAG, "Socket unable to bind: errno %d", errno); + } + ESP_LOGI(TAG, "Socket bound, port %d", PORT); + + struct sockaddr_storage source_addr; // Large enough for both IPv4 or IPv6 + socklen_t socklen = sizeof(source_addr); + + uint32_t packetCounter = 0; + ESP_LOGI(TAG, "Waiting for data"); + while (1) + { + + int len = recvfrom(sock, rx_buffer, sizeof(rx_buffer) - 1, 0, (struct sockaddr *)&source_addr, &socklen); + + // Error occurred during receiving + if (len < 0) + { + ESP_LOGE(TAG, "recvfrom failed: errno %d", errno); + ESP_LOGE(TAG, "Received %x packets", packetCounter); + //stop i2s + if(i2s_running) + i2s_stop(i2s_num); + i2s_running = 0; + audioBufferFilled = 0; + packetCounter = 0; + break; + } + // Data received + else + { + packetCounter++; + // Get the sender's ip address as string + vban_decode(rx_buffer, len); + // inet_ntoa_r(((struct sockaddr_in *)&source_addr)->sin_addr, addr_str, sizeof(addr_str) - 1); + } + } + + if (sock != -1) + { + ESP_LOGE(TAG, "Shutting down socket and restarting..."); + shutdown(sock, 0); + close(sock); + } + } + vTaskDelete(NULL); +} + +static void event_handler(void *arg, esp_event_base_t event_base, + int32_t event_id, void *event_data) +{ + if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_START) + { + esp_wifi_connect(); + } + else if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_DISCONNECTED) + { + if (s_retry_num < EXAMPLE_ESP_MAXIMUM_RETRY) + { + esp_wifi_connect(); + s_retry_num++; + ESP_LOGI(TAG, "retry to connect to the AP"); + } + else + { + xEventGroupSetBits(s_wifi_event_group, WIFI_FAIL_BIT); + } + ESP_LOGI(TAG, "connect to the AP fail"); + } + else if (event_base == IP_EVENT && event_id == IP_EVENT_STA_GOT_IP) + { + ip_event_got_ip_t *event = (ip_event_got_ip_t *)event_data; + ESP_LOGI(TAG, "got ip:" IPSTR, IP2STR(&event->ip_info.ip)); + s_retry_num = 0; + xEventGroupSetBits(s_wifi_event_group, WIFI_CONNECTED_BIT); + } +} + +void wifi_init_sta(void) +{ + s_wifi_event_group = xEventGroupCreate(); + + ESP_ERROR_CHECK(esp_netif_init()); + + esp_netif_t *esp_netif = NULL; + esp_netif = esp_netif_next(esp_netif); + esp_netif_set_hostname(esp_netif, "Speaker1"); + + ESP_ERROR_CHECK(esp_event_loop_create_default()); + esp_netif_create_default_wifi_sta(); + + wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); + ESP_ERROR_CHECK(esp_wifi_init(&cfg)); + + esp_event_handler_instance_t instance_any_id; + esp_event_handler_instance_t instance_got_ip; + ESP_ERROR_CHECK(esp_event_handler_instance_register(WIFI_EVENT, + ESP_EVENT_ANY_ID, + &event_handler, + NULL, + &instance_any_id)); + ESP_ERROR_CHECK(esp_event_handler_instance_register(IP_EVENT, + IP_EVENT_STA_GOT_IP, + &event_handler, + NULL, + &instance_got_ip)); + + wifi_config_t wifi_config = { + .sta = { + .ssid = EXAMPLE_ESP_WIFI_SSID, + .password = EXAMPLE_ESP_WIFI_PASS, + /* Setting a password implies station will connect to all security modes including WEP/WPA. + * However these modes are deprecated and not advisable to be used. Incase your Access point + * doesn't support WPA2, these mode can be enabled by commenting below line */ + .threshold.authmode = ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD, + .sae_pwe_h2e = WPA3_SAE_PWE_BOTH, + }, + }; + ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_STA)); + ESP_ERROR_CHECK(esp_wifi_set_config(WIFI_IF_STA, &wifi_config)); + ESP_ERROR_CHECK(esp_wifi_start()); + + ESP_LOGI(TAG, "wifi_init_sta finished."); + + /* Waiting until either the connection is established (WIFI_CONNECTED_BIT) or connection failed for the maximum + * number of re-tries (WIFI_FAIL_BIT). The bits are set by event_handler() (see above) */ + EventBits_t bits = xEventGroupWaitBits(s_wifi_event_group, + WIFI_CONNECTED_BIT | WIFI_FAIL_BIT, + pdFALSE, + pdFALSE, + portMAX_DELAY); + + /* xEventGroupWaitBits() returns the bits before the call returned, hence we can test which event actually + * happened. */ + if (bits & WIFI_CONNECTED_BIT) + { + ESP_LOGI(TAG, "connected to ap SSID:%s password:%s", + EXAMPLE_ESP_WIFI_SSID, EXAMPLE_ESP_WIFI_PASS); + } + else if (bits & WIFI_FAIL_BIT) + { + ESP_LOGI(TAG, "Failed to connect to SSID:%s, password:%s", + EXAMPLE_ESP_WIFI_SSID, EXAMPLE_ESP_WIFI_PASS); + } + else + { + ESP_LOGE(TAG, "UNEXPECTED EVENT"); + } + + /* The event will not be processed after unregister */ + ESP_ERROR_CHECK(esp_event_handler_instance_unregister(IP_EVENT, IP_EVENT_STA_GOT_IP, instance_got_ip)); + ESP_ERROR_CHECK(esp_event_handler_instance_unregister(WIFI_EVENT, ESP_EVENT_ANY_ID, instance_any_id)); + vEventGroupDelete(s_wifi_event_group); +} + +#include "driver/i2c.h" +unsigned char dacSettings[31]; +static void getDACStatus() +{ + int i2c_master_port = 0; + i2c_config_t conf = { + .mode = I2C_MODE_MASTER, + .sda_io_num = 16, // select GPIO specific to your project + .sda_pullup_en = GPIO_PULLUP_ENABLE, + .scl_io_num = 14, // select GPIO specific to your project + .scl_pullup_en = GPIO_PULLUP_ENABLE, + .master.clk_speed = 400000, // select frequency specific to your project + // .clk_flags = 0, /*!< Optional, you can use I2C_SCLK_SRC_FLAG_* flags to choose i2c source clock here. */ + }; + + ESP_ERROR_CHECK(i2c_param_config(i2c_master_port, &conf)); + ESP_ERROR_CHECK(i2c_driver_install(i2c_master_port, I2C_MODE_MASTER, 0, 0, 0)); + + unsigned char addressToRead = 0x0f; + unsigned char reply=40; + uint8_t write_buf[2] = {0x0f, reply}; + ESP_ERROR_CHECK(i2c_master_write_to_device(i2c_master_port,0x48,write_buf,2,100)); + write_buf[0] = 0x10; + ESP_ERROR_CHECK(i2c_master_write_to_device(i2c_master_port,0x48,write_buf,2,100)); + + //i2c_master_write_read_device(i2c_master_port, 0x48, &addressToRead, 1, reply, 1, 100); + for(int i = 0; i<30;i++) + { + addressToRead = i; + //i2c_master_write_read_device(i2c_master_port, 0x48, &addressToRead, 1, dacSettings+i, 1, 100); + //ESP_LOGE(TAG,"address %d-,%d",i,dacSettings[i]); + } + + ESP_LOGE(TAG,"reply %d",reply); +} + + + + + +static void createFilterbtw() +{ + lpfFilter = createFilter(filter_lpf,2,44100,1000,0); + //lpfFilter = createFilter(filter_hpf,2,44100,1000,1); + //ESP_ERROR_CHECK(dsps_biquad_gen_lpf_f32(coeffs_lpf,0.009,0.707)); +} + +static void printStats() +{ + + while(1) + { + char pBuffer[2048] = {0}; + vTaskGetRunTimeStats(pBuffer); + printf("%s\n\r",(pBuffer)); + vTaskDelay(5000/portTICK_PERIOD_MS); + } +} + +#include "button.h" + +rotaryPins volume; + +void cwcallback(void *arg) +{ + printf("CW\n"); +} + +void ccwcallback(void *arg) +{ + printf("CCW\n"); +} + +void buttonCallback(void *arg) +{ + printf("buttonPress\n"); +} + +#include "power/husb238.h" + +void app_main(void) +{ + i2s_running = 0; + + ESP_LOGI(TAG, "ESP_WIFI_MODE_STA"); + ESP_ERROR_CHECK(esp_netif_init()); + + + /* This helper function configures Wi-Fi or Ethernet, as selected in menuconfig. + * Read "Establishing Wi-Fi or Ethernet Connection" section in + * examples/protocols/README.md for more information about this function. + */ + + wifi_init_sta(); + //getDACStatus(); + httpd_handle_t server = start_webserver(); + createFilterbtw(); + + volume.CWCallback = cwcallback; + volume.CCWCallback = ccwcallback; + volume.buttonCallback = buttonCallback; + + volume.PIN1 = 19; + volume.PIN2 = 21; + volume.BUT = 22; + + registerInterrupt(&volume); + + filter_registerHTTPHandlers(&server); + xTaskCreatePinnedToCore(udp_server_task, "udp_server", 8192, (void *)AF_INET, 10, NULL,0); + //init_i2c(); + //husb238_init(0); + //husb238_requestVoltage(0,PD_SRC_15V); + //xTaskCreate(printStats,"stats",4096,NULL,0,0); + + /* + int frequency = 220; + int samplRate = 44100; + int noSamples = samplRate / frequency; + configure_i2s(44100,noSamples*2); + //fill the buffer with initial 1000 hz sine wave + //100 hz is sine wave in samplerate/1000 samples + + for (int i = 0; i < noSamples; i++) + { + unsigned int temp =sin((3.14159*2)*(i/(float)noSamples))*0x8fffffff + 0x8fffffff; + outBuf[i*2] = temp; + outBuf[(i * 2) + 1] = temp; + } + size_t bytesWritten; + while(1) + { + ESP_ERROR_CHECK(i2s_write(i2s_num,outBuf,noSamples*2*4,&bytesWritten,100 )); + vTaskDelay(5000/portTICK_RATE_MS); + } + */ +} diff --git a/ESPIDFNEW/main/vban/vban.h b/ESPIDFNEW/main/vban/vban.h new file mode 100644 index 0000000..37b80d1 --- /dev/null +++ b/ESPIDFNEW/main/vban/vban.h @@ -0,0 +1,138 @@ +#pragma once + +#include + +#define MTU_SIZE 1500 +#define VBAN_MAX_PACKET MTU_SIZE - sizeof(VBAN_HEADER) -28 + +//typedef unsigned int uint32_t ; +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; + +#define VBAN_MARKER 0x4e414256 + + +#pragma pack(1) +typedef struct VBAN_HEADER +{ + uint32_t vban; // contains 'V' 'B', 'A', 'N' + uint8_t format_SR; // SR index (see SRList above) + uint8_t format_nbs; // nb sample per frame (1 to 256) + uint8_t format_nbc; // nb channel (1 to 256) + uint8_t format_bit; // mask = 0x07 (see DATATYPE table below) + char streamname[16]; // stream name + uint32_t noFrame; // growing frame number +} VBAN_HEADER; +#pragma pack() + +#define VBAN_CODEC_PCM 0x00 +#define VBAN_CODEC_VBCA 0x10 //VB-AUDIO AOIP CODEC +#define VBAN_CODEC_VBCV 0x20 //VB-AUDIO VOIP CODEC +#define VBAN_CODEC_UNDEFINED_1 0x30 +#define VBAN_CODEC_UNDEFINED_2 0x40 +#define VBAN_CODEC_UNDEFINED_3 0x50 +#define VBAN_CODEC_UNDEFINED_4 0x60 +#define VBAN_CODEC_UNDEFINED_5 0x70 +#define VBAN_CODEC_UNDEFINED_6 0x80 +#define VBAN_CODEC_UNDEFINED_7 0x90 +#define VBAN_CODEC_UNDEFINED_8 0xA0 +#define VBAN_CODEC_UNDEFINED_9 0xB0 +#define VBAN_CODEC_UNDEFINED_10 0xC0 +#define VBAN_CODEC_UNDEFINED_11 0xD0 +#define VBAN_CODEC_UNDEFINED_12 0xE0 +#define VBAN_CODEC_USER 0xF0 + +typedef enum VBAN_CODEC +{ + CODEC_PCM = 0x00, + CODEC_VBCA = 0x10, + CODEC_VBCV = 0x20, + CODEC_UNDEF1 = 0x30, + CODEC_UNDEF2 = 0x40, + CODEC_UNDEF3 = 0x50, + CODEC_UNDEF4 = 0x60, + CODEC_UNDEF5 = 0x70, + CODEC_UNDEF6 = 0x80, + CODEC_UNDEF7 = 0x90, + CODEC_UNDEF8 = 0xA0, + CODEC_UNDEF9 = 0xB0, + CODEC_UNDEF10 = 0xC0, + CODEC_UNDEF11 = 0xD0, + CODEC_UNDEF12 = 0xE0, + CODEC_USER = 0xF0 + +}VBAN_CODEC; + +#define VBAN_DATATYPE_BYTE8 0x00 +#define VBAN_DATATYPE_INT16 0x01 +#define VBAN_DATATYPE_INT24 0x02 +#define VBAN_DATATYPE_INT32 0x03 +#define VBAN_DATATYPE_FLOAT32 0x04 +#define VBAN_DATATYPE_FLOAT64 0x05 +#define VBAN_DATATYPE_12BITS 0x06 +#define VBAN_DATATYPE_10BITS 0x07 + +typedef enum VBAN_DATATYPE +{ + DATATYPE_BYTE8 = 0x00, + DATATYPE_INT16 = 0x01, + DATATYPE_INT24 = 0x02, + DATATYPE_INT32 = 0x03, + DATATYPE_FLOAT32= 0x04, + DATATYPE_FLOAT64= 0x05, + DATATYPE_12BITS =0x06, + DATATYPE_10BITS =0x07 +}VBAN_DATATYPE; + +#define VBAN_PROTOCOL_AUDIO 0x00 +#define VBAN_PROTOCOL_SERIAL 0x20 +#define VBAN_PROTOCOL_TXT 0x40 +#define VBAN_PROTOCOL_SERVICE 0x60 +#define VBAN_PROTOCOL_UNDEFINED_1 0x80 +#define VBAN_PROTOCOL_UNDEFINED_2 0xA0 +#define VBAN_PROTOCOL_UNDEFINED_3 0xC0 +#define VBAN_PROTOCOL_USER 0xE0 + +typedef enum VBAN_PROTOCOL +{ + PROTOCOL_AUDIO = 0x00, + PROTOCOL_SERIAL = 0x20, + PROTOCOL_TXT = 0x40, + PROTOCOL_SERVICE = 0x60, + PROTOCOL_UNDEFINED_1 = 0x80, + PROTOCOL_UNDEFINED_2 = 0xA0, + PROTOCOL_UNDEFINED_3 = 0xC0, + PROTOCOL_USER = 0xE0 +}VBAN_PROTOCOL; + + +#define VBAN_SR_MAXNUMBER 21 +static long VBAN_SRList[VBAN_SR_MAXNUMBER] = +{ 6000, 12000, 24000, 48000, 96000, 192000, 384000, +8000, 16000, 32000, 64000, 128000, 256000, 512000, +11025, 22050, 44100, 88200, 176400, 352800, 705600 }; + +typedef enum VBAN_SAMPLERATE +{ + SR_6000, + SR_12000, + SR_24000, + SR_48000, + SR_96000, + SR_192000, + SR_384000, + SR_8000, + SR_16000, + SR_32000, + SR_64000, + SR_128000, + SR_256000, + SR_512000, + SR_11025, + SR_22050, + SR_44100, + SR_88200, + SR_176400, + SR_352800, + SR_705600 +}VBAN_SAMPLERATE; \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/.component_hash b/ESPIDFNEW/managed_components/espressif__esp-dsp/.component_hash new file mode 100644 index 0000000..72e46b3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/.component_hash @@ -0,0 +1 @@ +3e7bbd487f1357a1d4944d0c85966d049501ea281b8a4c7f93f7cfedd5b7f23d \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/.gitignore b/ESPIDFNEW/managed_components/espressif__esp-dsp/.gitignore new file mode 100644 index 0000000..3b9dd3c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/.gitignore @@ -0,0 +1,60 @@ +.config +*.o +*.pyc + +# gtags +GTAGS +GRTAGS +GPATH + +# emacs +.dir-locals.el + +# emacs temp file suffixes +*~ +.#* +\#*# + +# eclipse setting +.settings + +# MacOS directory files +.DS_Store + +# Example project files +examples/**/sdkconfig +examples/**/sdkconfig.old +examples/**/build +examples/**/dependencies.lock +exmaples/**/managed_components + +# Test app files +test_app/build +test_app/sdkconfig +test_app/sdkconfig.old +test_app/dependencies.lock + +# Doc build artifacts +docs/_build/ +docs/doxygen-warning-log.txt +docs/sphinx-warning-log.txt +docs/sphinx-warning-log-sanitized.txt +docs/xml/ +docs/xml_in/ +docs/man/ +docs/doxygen_sqlite3.db + +TEST_LOGS + + +# gcov coverage reports +*.gcda +*.gcno +coverage.info +coverage_report/ + +# VS Code Settings +.vscode/ + +# incorrect build locations +build/ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/.pre-commit-config.yaml b/ESPIDFNEW/managed_components/espressif__esp-dsp/.pre-commit-config.yaml new file mode 100644 index 0000000..1fbd966 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/.pre-commit-config.yaml @@ -0,0 +1,19 @@ +repos: +- repo: https://github.com/espressif/astyle_py + rev: v1.0.5 + hooks: + - id: astyle_py + args: ['--style=otbs', '--attach-namespaces', '--attach-classes', '--indent=spaces=4', '--convert-tabs', '--align-pointer=name', '--align-reference=name', '--keep-one-line-statements', '--pad-header', '--pad-oper'] + +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.3.0 + hooks: + - id: trailing-whitespace + types_or: [c, c++] + - id: end-of-file-fixer + types_or: [c, c++] + - id: check-merge-conflict + - id: mixed-line-ending + types_or: [c, c++] + args: ['--fix=lf'] + description: Forces to replace line ending by the UNIX 'lf' character diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/CHANGELOG.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/CHANGELOG.md new file mode 100644 index 0000000..c1ce51c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/CHANGELOG.md @@ -0,0 +1,111 @@ +# Esp-dsp Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +### Added +- ci: add pre-commit hooks + +### Changed + +### Removed + +## [1.4.11] 2024-02-21 + +### Added +- Fixed point functions mul/add/sub for esp32 and esp32s3 + +## [1.4.10] 2023-11-30 + +### Added +- Demo application for ESP32-S3-BOX-Lite Board + +## [1.4.9] 2023-11-09 + +### Added +- New methods for Mat class to support sub-matrix operations + +## [1.4.8] 2023-10-16 + +### Added +- Audio amplifier application for the esp32-LyraT board + +## [1.4.7] 2023-07-13 + +### Changed +- Demo applications added to the component manager as examples + +## [1.4.6] 2023-07-11 + +### Added +- FIR f32 decimation filter optimized for esp32s3 + +### Changed +- In dsps_fird_init_f32() function the parameter start_pos removed +- In dsps_fird_f32() function the coefficients order changed to backward order + +## [1.4.5] 2023-07-11 + +### Added +- Application for Azure IoT board +- Add Esp32-LyraT board application + +## [1.4.4] 2023-07-03 + +### Changed +- Update documentation build + +## [1.4.1] 2023-06-30 + +### Fixed +- Add Bi-Quad for esp32s3 into common CMakeLists.txt + + +## [1.4.0] 2023-03-29 + +### Added +- Complex signal generator dsps_cplx_gen() +- FIR f32 filter optimized for esp32s3 +- Memcpy and Memset optimized for esp32s3 + +### Fixed +- Fix in tests to pass +- Minimum coeffcient length for fird_s16 +- Include malloc.h into dsps_fft4r_fc32_ansi.c +- Fix for calculation length for dsps_corr_f32_axxx + +### Changed + +### Removed + +## [1.3.0] 2023-03-10 + +### Added + +- Fixed point FIR filter with decimation +- Update tag to 1.2.1 for component manager +- Extend dsp_power_of_two() to 32-bit value + +### Fixed + +- add various links to idf_component.yml, exclude unnecessary files +- cmake: update component CMakeLists.txt file syntax to IDF v4.x+ +- docs: move instructions for contributors into CONTRIBUTING.md +- docs: update README.md to use IDF component manager for installation +- drop IDF v4.0 and v4.1 support, add a CI build with IDF release/v5.0 +- examples: remove GNU Make instructions from README files +- examples: allow examples to be installed from the component manager +- Fix for fft_cplx2reC_f32 function +- Wno-format-fix related errors +- Wrong path for extra component directory + +### Changed + +### Removed + +## [1.2.0] 2022-09-22 + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/CMakeLists.txt new file mode 100644 index 0000000..253d682 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/CMakeLists.txt @@ -0,0 +1,193 @@ +set(srcs "modules/common/misc/dsps_pwroftwo.cpp" + "modules/common/misc/aes3_tie_log.c" + "modules/dotprod/float/dsps_dotprod_f32_ae32.S" + "modules/dotprod/float/dsps_dotprod_f32_m_ae32.S" + "modules/dotprod/float/dsps_dotprode_f32_ae32.S" + "modules/dotprod/float/dsps_dotprode_f32_m_ae32.S" + "modules/dotprod/float/dsps_dotprod_f32_ansi.c" + "modules/dotprod/float/dsps_dotprode_f32_ansi.c" + "modules/dotprod/float/dsps_dotprod_f32_aes3.S" + + "modules/dotprod/fixed/dsps_dotprod_s16_ae32.S" + "modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S" + "modules/dotprod/fixed/dsps_dotprod_s16_ansi.c" + + "modules/dotprod/float/dspi_dotprod_f32_ansi.c" + "modules/dotprod/float/dspi_dotprod_off_f32_ansi.c" + "modules/dotprod/fixed/dspi_dotprod_s16_ansi.c" + "modules/dotprod/fixed/dspi_dotprod_u16_ansi.c" + "modules/dotprod/fixed/dspi_dotprod_s8_ansi.c" + "modules/dotprod/fixed/dspi_dotprod_u8_ansi.c" + "modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c" + "modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c" + "modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c" + "modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c" + + "modules/dotprod/fixed/dspi_dotprod_s16_aes3.S" + "modules/dotprod/fixed/dspi_dotprod_u16_aes3.S" + "modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S" + "modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S" + "modules/dotprod/fixed/dspi_dotprod_s8_aes3.S" + "modules/dotprod/fixed/dspi_dotprod_u8_aes3.S" + "modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S" + "modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S" + + "modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S" + "modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S" + "modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S" + "modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S" + "modules/matrix/mul/float/dspm_mult_f32_ae32.S" + "modules/matrix/mul/float/dspm_mult_f32_aes3.S" + "modules/matrix/mul/float/dspm_mult_f32_ansi.c" + "modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c" + "modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S" + "modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S" + "modules/matrix/mul/fixed/dspm_mult_s16_ae32.S" + "modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S" + "modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S" + "modules/matrix/mul/fixed/dspm_mult_s16_ansi.c" + "modules/matrix/mul/fixed/dspm_mult_s16_aes3.S" + "modules/matrix/add/float/dspm_add_f32_ansi.c" + "modules/matrix/add/float/dspm_add_f32_ae32.S" + "modules/matrix/addc/float/dspm_addc_f32_ansi.c" + "modules/matrix/addc/float/dspm_addc_f32_ae32.S" + "modules/matrix/mulc/float/dspm_mulc_f32_ansi.c" + "modules/matrix/mulc/float/dspm_mulc_f32_ae32.S" + "modules/matrix/sub/float/dspm_sub_f32_ansi.c" + "modules/matrix/sub/float/dspm_sub_f32_ae32.S" + "modules/matrix/mat/mat.cpp" + + "modules/math/mulc/float/dsps_mulc_f32_ansi.c" + "modules/math/addc/float/dsps_addc_f32_ansi.c" + "modules/math/mulc/fixed/dsps_mulc_s16_ansi.c" + "modules/math/mulc/fixed/dsps_mulc_s16_ae32.S" + "modules/math/add/float/dsps_add_f32_ansi.c" + "modules/math/add/fixed/dsps_add_s16_ansi.c" + "modules/math/add/fixed/dsps_add_s16_ae32.S" + "modules/math/add/fixed/dsps_add_s16_aes3.S" + "modules/math/add/fixed/dsps_add_s8_ansi.c" + "modules/math/add/fixed/dsps_add_s8_aes3.S" + + "modules/math/sub/float/dsps_sub_f32_ansi.c" + "modules/math/sub/fixed/dsps_sub_s16_ansi.c" + "modules/math/sub/fixed/dsps_sub_s16_ae32.S" + "modules/math/sub/fixed/dsps_sub_s16_aes3.S" + "modules/math/sub/fixed/dsps_sub_s8_ansi.c" + "modules/math/sub/fixed/dsps_sub_s8_aes3.S" + + "modules/math/mul/float/dsps_mul_f32_ansi.c" + "modules/math/mul/fixed/dsps_mul_s16_ansi.c" + "modules/math/mul/fixed/dsps_mul_s16_ae32.S" + "modules/math/mul/fixed/dsps_mul_s16_aes3.S" + "modules/math/mul/fixed/dsps_mul_s8_ansi.c" + "modules/math/mul/fixed/dsps_mul_s8_aes3.S" + + "modules/math/mulc/float/dsps_mulc_f32_ae32.S" + "modules/math/addc/float/dsps_addc_f32_ae32.S" + "modules/math/add/float/dsps_add_f32_ae32.S" + "modules/math/sub/float/dsps_sub_f32_ae32.S" + "modules/math/mul/float/dsps_mul_f32_ae32.S" + "modules/math/sqrt/float/dsps_sqrt_f32_ansi.c" + + "modules/fft/float/dsps_fft2r_fc32_ae32_.S" + "modules/fft/float/dsps_fft2r_fc32_aes3_.S" + "modules/fft/float/dsps_fft2r_fc32_ansi.c" + "modules/fft/float/dsps_fft2r_fc32_ae32.c" + "modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S" + "modules/fft/float/dsps_fft4r_fc32_ansi.c" + "modules/fft/float/dsps_fft4r_fc32_ae32.c" + "modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c" + "modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c" + "modules/fft/fixed/dsps_fft2r_sc16_ae32.S" + "modules/fft/fixed/dsps_fft2r_sc16_ansi.c" + "modules/fft/fixed/dsps_fft2r_sc16_aes3.S" + + "modules/dct/float/dsps_dct_f32.c" + "modules/support/snr/float/dsps_snr_f32.cpp" + "modules/support/sfdr/float/dsps_sfdr_f32.cpp" + "modules/support/misc/dsps_d_gen.c" + "modules/support/misc/dsps_h_gen.c" + "modules/support/misc/dsps_tone_gen.c" + "modules/support/cplx_gen/dsps_cplx_gen.c" + "modules/support/cplx_gen/dsps_cplx_gen.S" + "modules/support/cplx_gen/dsps_cplx_gen_init.c" + "modules/support/mem/esp32s3/dsps_memset_aes3.S" + "modules/support/mem/esp32s3/dsps_memcpy_aes3.S" + "modules/support/view/dsps_view.cpp" + "modules/windows/hann/float/dsps_wind_hann_f32.c" + "modules/windows/blackman/float/dsps_wind_blackman_f32.c" + "modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c" + "modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c" + "modules/windows/nuttall/float/dsps_wind_nuttall_f32.c" + "modules/windows/flat_top/float/dsps_wind_flat_top_f32.c" + "modules/conv/float/dsps_conv_f32_ansi.c" + "modules/conv/float/dsps_conv_f32_ae32.S" + "modules/conv/float/dsps_corr_f32_ansi.c" + "modules/conv/float/dsps_corr_f32_ae32.S" + "modules/conv/float/dsps_ccorr_f32_ansi.c" + "modules/conv/float/dsps_ccorr_f32_ae32.S" + "modules/iir/biquad/dsps_biquad_f32_ae32.S" + "modules/iir/biquad/dsps_biquad_f32_aes3.S" + "modules/iir/biquad/dsps_biquad_f32_ansi.c" + "modules/iir/biquad/dsps_biquad_gen_f32.c" + "modules/fir/float/dsps_fir_f32_ae32.S" + "modules/fir/float/dsps_fir_f32_aes3.S" + "modules/fir/float/dsps_fird_f32_ae32.S" + "modules/fir/float/dsps_fird_f32_aes3.S" + "modules/fir/float/dsps_fir_f32_ansi.c" + "modules/fir/float/dsps_fir_init_f32.c" + "modules/fir/float/dsps_fird_f32_ansi.c" + "modules/fir/float/dsps_fird_init_f32.c" + "modules/fir/fixed/dsps_fird_init_s16.c" + "modules/fir/fixed/dsps_fird_s16_ansi.c" + "modules/fir/fixed/dsps_fird_s16_ae32.S" + "modules/fir/fixed/dsps_fir_s16_m_ae32.S" + "modules/fir/fixed/dsps_fird_s16_aes3.S" +# EKF files + "modules/kalman/ekf/common/ekf.cpp" + "modules/kalman/ekf_imu13states/ekf_imu13states.cpp" + ) + + + +set(include_dirs "modules/dotprod/include" + "modules/support/include" + "modules/support/mem/include" + "modules/windows/include" + "modules/windows/hann/include" + "modules/windows/blackman/include" + "modules/windows/blackman_harris/include" + "modules/windows/blackman_nuttall/include" + "modules/windows/nuttall/include" + "modules/windows/flat_top/include" + "modules/iir/include" + "modules/fir/include" + "modules/math/include" + "modules/math/add/include" + "modules/math/sub/include" + "modules/math/mul/include" + "modules/math/addc/include" + "modules/math/mulc/include" + "modules/math/sqrt/include" + "modules/matrix/mul/include" + "modules/matrix/add/include" + "modules/matrix/addc/include" + "modules/matrix/mulc/include" + "modules/matrix/sub/include" + "modules/matrix/include" + "modules/fft/include" + "modules/dct/include" + "modules/conv/include" + "modules/common/include" + "modules/matrix/mul/test/include" +# EKF files + "modules/kalman/ekf/include" + "modules/kalman/ekf_imu13states/include" +) + +set(priv_include_dirs "modules/dotprod/float" + "modules/dotprod/fixed") + +idf_component_register(SRCS ${srcs} + INCLUDE_DIRS ${include_dirs} + PRIV_INCLUDE_DIRS ${priv_include_dirs}) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/CONTRIBUTING.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/CONTRIBUTING.md new file mode 100644 index 0000000..de4f83c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/CONTRIBUTING.md @@ -0,0 +1,70 @@ +# Contributing + +Contributions to ESP-DSP project in the form of pull requests, bug reports, and feature requests are welcome! + +This document covers various topics related to contributions to the ESP-DSP projects. Please read it if you plan to submit a PR! + +## CLA + +We require accepting the contributor's license agreement for all pull requests. When opening a pull request the first time you will be prompted to sign the CLA by the [CLA Assistant](https://cla-assistant.io/) service. + +## Large-scale Changes + +If you'd like to propose a change to the existing APIs or a large-scale refactoring of the implementation, we recommend opening an issue first to discuss this. + +## Pre-commit hooks + +ESP-DSP project uses [pre-commit hooks](https://pre-commit.com/) to perform code formatting and other checks when you run `git commit`. + +To install pre-commit hooks, run `pip install pre-commit && pre-commit install`. + +## Updating the Benchmarks Table + +The benchmarks table [esp-dsp-benchmarks.rst](docs/esp-dsp-benchmarks.rst) contains benchmarks for ESP32 and ESP32-S3 CPUs. The benchmarks are collected with compiler optimizations for speed (-Os) and for size (-O2). This table may need to be updated if you have changed the implementations of some of the functions. + +To build this table: + +- Build the test application in the `test_app` directory. +- Run "DSP Benchmarks data" test and copy the output into the CSV file [docs/esp_bm_results.csv](docs/esp_bm_results.csv). +- Run the [docs/build_bm_table.py](docs/build_bm_table.py) script to update the benchmarks table [esp-dsp-benchmarks.rst](docs/esp-dsp-benchmarks.rst). + +If you have added new functions, modify the [benchmarks test](test/test_dsp.c) to call these new functions. + +## Supported IDF Versions + +The component is expected to be usable with multiple supported IDF versions. You can find the list in the [CI workflow file](.gitlab-ci.yml). + +Note that for compatibility reasons, the component has to support the legacy GNU Make build system which was present up until ESP-IDF v5.0. Remember to add or update `component.mk` and `Makefile` files when adding or changing examples. GNU Make support can be removed from ESP-DSP when IDF v4.4 maintenance period expires. + +## Releasing a new version + +Maintainers should follow the steps below to release a new version of ESP-DSP component. Assuming the new version is `vX.Y.Z`: + +1. Ensure you are on the latest `master` branch, then create a new branch: + ```bash + git checkout master + git pull --ff-only origin master + git checkout -b update_version_vX.Y.Z + ``` +1. Update the version in [idf_component.yml](idf_component.yml): + ```yml + version: "X.Y.Z" + ``` +1. Commit the changes: + ```bash + git add idf_component.yml + git commit -s -m "version: update to vX.Y.Z" + ``` +1. Create the new tag: + ```bash + git tag -s -a -m "vX.Y.Z" vX.Y.Z + ``` +1. Push the tag and the branch to the internal repository: + ```bash + git push origin update_version_vX.Y.Z + git push origin vX.Y.Z + ``` +1. Create the merge request, get it reviewed and merged. +1. CI will automatically push the tag to Github and will upload the new version to the IDF Component Registry. +1. Go to https://github.com/espressif/esp-dsp/releases and create a release from the tag vX.Y.Z. +1. Write the release notes and publish the release. diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/Kconfig b/ESPIDFNEW/managed_components/espressif__esp-dsp/Kconfig new file mode 100644 index 0000000..bf1c698 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/Kconfig @@ -0,0 +1,61 @@ +menu "DSP Library" + + +config DSP_OPTIMIZATIONS_SUPPORTED + bool + default y + depends on IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3 + +choice DSP_OPTIMIZATION + bool "DSP Optimization" + default DSP_OPTIMIZED if DSP_OPTIMIZATIONS_SUPPORTED + default DSP_ANSI + help + An ANSI C version could be used for verification and debug purpose, + or for chips where an optimized version is not available. + +config DSP_ANSI + bool "ANSI C" +config DSP_OPTIMIZED + bool "Optimized" + depends on DSP_OPTIMIZATIONS_SUPPORTED +endchoice + +config DSP_OPTIMIZATION + int + default 0 if DSP_ANSI + default 1 if DSP_OPTIMIZED + +choice DSP_MAX_FFT_SIZE + bool "Maximum FFT length" + default DSP_MAX_FFT_SIZE_4096 + help + This is default FFT size for internal usage. + +config DSP_MAX_FFT_SIZE_512 + bool "512" +config DSP_MAX_FFT_SIZE_1024 + bool "1024" +config DSP_MAX_FFT_SIZE_2048 + bool "2048" +config DSP_MAX_FFT_SIZE_4096 + bool "4096" +config DSP_MAX_FFT_SIZE_8192 + bool "8192" +config DSP_MAX_FFT_SIZE_16384 + bool "16384" +config DSP_MAX_FFT_SIZE_32768 + bool "32768" +endchoice + +config DSP_MAX_FFT_SIZE + int + default 512 if DSP_MAX_FFT_SIZE_512 + default 1024 if DSP_MAX_FFT_SIZE_1024 + default 2048 if DSP_MAX_FFT_SIZE_2048 + default 4096 if DSP_MAX_FFT_SIZE_4096 + default 8192 if DSP_MAX_FFT_SIZE_8192 + default 16384 if DSP_MAX_FFT_SIZE_16384 + default 32768 if DSP_MAX_FFT_SIZE_32768 + +endmenu diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/LICENSE b/ESPIDFNEW/managed_components/espressif__esp-dsp/LICENSE new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/README.md new file mode 100644 index 0000000..cbd60c2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/README.md @@ -0,0 +1,82 @@ +[![Component Registry](https://components.espressif.com/components/espressif/esp-dsp/badge.svg)](https://components.espressif.com/components/espressif/esp-dsp) + +# Espressif DSP Library + +ESP-DSP is the official DSP library for [ESP32](https://espressif.com/en/products/hardware/esp32/overview) and [ESP32-S3](https://espressif.com/en/products/hardware/esp32s3/overview) chips. + +## Overview + +ESP-DSP is intended to be used as an [ESP-IDF](https://github.com/espressif/esp-idf) component. For the introduction to ESP-IDF, refer to the [ESP-IDF Programming Guide](https://docs.espressif.com/projects/esp-idf/en/latest/). + +The ESP-DSP library includes implementations of the following functions: +- Matrix multiplication: [reference](https://docs.espressif.com/projects/esp-dsp/en/latest/esp-dsp-apis.html#matrix-operations-apis) +- Dot product: [reference](https://docs.espressif.com/projects/esp-dsp/en/latest/esp-dsp-apis.html#dot-product), [example](https://github.com/espressif/esp-dsp/tree/master/examples/dotprod) +- FFT: [reference](https://docs.espressif.com/projects/esp-dsp/en/latest/esp-dsp-apis.html#fft), [example](https://github.com/espressif/esp-dsp/tree/master/examples/fft) +- IIR: [reference](https://docs.espressif.com/projects/esp-dsp/en/latest/esp-dsp-apis.html#iir), [example](https://github.com/espressif/esp-dsp/tree/master/examples/iir) +- FIR: [reference](https://docs.espressif.com/projects/esp-dsp/en/latest/esp-dsp-apis.html#fir) +- Vector math operations: [reference](https://docs.espressif.com/projects/esp-dsp/en/latest/esp-dsp-apis.html#math) +- Kalman filter: [reference](https://docs.espressif.com/projects/esp-dsp/en/latest/esp-dsp-apis.html#kalman) + +Many of the library functions are written in assembly and are optimized for the CPU configuration used in the ESP32. In addition to the optimized implementations, reference implementations written in ANSI C are provided. + +Function implementations are provided for single precision floating point (32-bit float), and 16-bit signed integers. + +## Documentation + +- [ESP-DSP Overview](https://docs.espressif.com/projects/esp-dsp/en/latest/esp-dsp-library.html) +- [ESP-DSP API Reference](https://docs.espressif.com/projects/esp-dsp/en/latest/esp-dsp-apis.html) +- [ESP-DSP Benchmarks](https://docs.espressif.com/projects/esp-dsp/en/latest/esp-dsp-benchmarks.html) + +Documentation found in the above links is automatically generated from the contents of this repository. If you find that some information is missing or incomplete, please report an issue. + +## Installation and Usage + +The ESP-DSP library is a component for the [ESP-IDF build system](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html). + +The recommended way to use the component is to install it from the [IDF Component Registry](https://components.espressif.com/components/espressif/esp-dsp). + +### Adding ESP-DSP component to an existing project + +In the project directory, run: +```bash +idf.py add-dependency "espressif/esp-dsp" +``` +This will add the esp-dsp component as a dependency to the `main` component of your project. You can also add it by editing the `idf_component.yml` file manually. + +### Downloading ESP-DSP examples + +You can download the example projects from the IDF Component Registry website or use the `idf.py create-project-from-example` command. For example: + +```bash +idf.py create-project-from-example "espressif/esp-dsp:basic_math" +``` + +Please refer to the [IDF Component Registry](https://components.espressif.com/components/espressif/esp-dsp) for the download links and the instructions. + +You can also use Git to clone this repository and find all the examples in the `examples/` subdirectory. For the list of the examples, please see [README.md](examples/README.md) in the examples directory. + +### Building and running ESP-DSP examples + +Build, flash and monitor as this is usually done for ESP-IDF projects: + +```bash +idf.py -p PORT flash monitor +``` + +where `PORT` is the UART port name of your development board, such as `/dev/ttyUSB0` or `COM1`. + +Note that you need to set up ESP-IDF before building the project. Refer to the [ESP-IDF Getting Started Guide](https://docs.espressif.com/projects/esp-idf/en/latest/get-started/index.html) if you don't have the environment set up yet. + +## Reporting Issues + +If you have found an issue in ESP-DSP, or wish to submit an enhancement request, please use the [Issues](https://github.com/espressif/esp-dsp/issues) section on Github. + +For general questions related to this library, please use the [esp32.com forum](https://esp32.com/). + +## Contributing to ESP-DSP + +Please check [CONTRIBUTING.md](CONTRIBUTING.md) if you'd like to contribute to ESP-DSP. + +## Copyrights and License + +All original source code in this repository is Copyright (C) 2018-2023 Espressif Systems. This source code is licensed under the Apache License 2.0 as described in the file LICENSE. diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/README.md new file mode 100644 index 0000000..d66a24e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/README.md @@ -0,0 +1,20 @@ +# ESP-DSP Applications + +This directory contains a range of applications for ESP-DSP library. + +These applications are intended to demonstrate part of ESP-DSP functionality (e.g. initialization, execution) and to provide examples of fully working projects built using ESP-DSP component + +See the [README.md](../README.md) file in the upper level directory for more information about ESP-DSP. + +# Applications Layout + +The applications are grouped into subdirectories by category. Each category directory contains one or more projects: + +* [ESP32-Azure IoT kit](./azure_board_apps/README.md) applications + * [3d graphics](./azure_board_apps/apps/3d_graphics/README.md) application + * [Kalman filter](./azure_board_apps/apps/kalman_filter/README.md) application + +* [LyraT Board](./lyrat_board_app/README.md) application +* [ESP32-S3-BOX-Lite](./spectrum_box_lite/README.md) application + + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/.gitignore b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/.gitignore new file mode 100644 index 0000000..63720e9 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/.gitignore @@ -0,0 +1,5 @@ +**/build/ +**/sdkconfig +**/sdkconfig.old +**/dependencies.lock +**/managed_components/** diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/README.md new file mode 100644 index 0000000..dfdfdc2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/README.md @@ -0,0 +1,29 @@ +# ESP-DSP ESP32-Azure IoT kit demo applications + +The demo applications are developed for ESP32-Azure IoT kit development board and are demonstrating usage of matrices with ESP-DPS Mat class, Kalman filter and basic +3D projection with matrices + +### [3D Graphics demo](apps/3d_graphics) +* a simple rotation of a selected 3D objects is shown on the display +* demonstrating usage the Mat class, matrices and operations with matrices + +
+ +
+ +### [Kalman filter demo](apps/kalman_filter/) +* a selected 3D object is following movements of the development board with IMU sensors +* the sensors outputs are processed by the Kalman filter +* demonstrating usage the Mat class, matrices, operations with matrices and Kalman filter + +
+ +
+ +### [3D graphics](graphics/img_to_3d_matrix/example/) + +Simple 3D graphics is used in the both demos, to display the 3D on the monochromatic display. The Graphics is using transformation matrices to rotate, scale and translate (move) 3D objects, to show the matrix calculation capabilities of the ESP-DSP repository. + +## Used components +* [ESP-DSP](https://github.com/espressif/esp-dsp): matrices, Mat class, Kalman filter +* [ESP-BSP](https://github.com/espressif/esp-bsp): ESP32-Azure IoT kit \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/3d_graphics.gif b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/3d_graphics.gif new file mode 100644 index 0000000..36d1d2a Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/3d_graphics.gif differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/CMakeLists.txt new file mode 100644 index 0000000..2c972d8 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/CMakeLists.txt @@ -0,0 +1,8 @@ +# For more information about build system see +# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html +# The following five 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.5) +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +add_compile_options("-Wno-format") +project(esp-dsp-azure-board-app-3d-graphics) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/README.md new file mode 100644 index 0000000..32f906d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/README.md @@ -0,0 +1,27 @@ +# ESP-DSP ESP32-Azure IoT kit 3d graphics demo application + +The demo is developed for [ESP32-Azure IoT kit](https://github.com/espressif/esp-bsp/tree/master/esp32_azure_iot_kit) development board and is demonstrating the usage of matrices with `ESP-DSP` `Mat` class, Kalman filter and basic 3D graphics. + +The 3D Graphics demo displays a 2D graphics, converted to 3D as a 3D rotating object, on the development board's display. Button press changes the rotation direction of the 3D object. Run the menuconfig using the following command: + + idf.py mencuonfig + +In the menuconfig's menu item `Demo user configuration` select which 3D object to display. It's either a 3D cube, or ESP logo, or a user-defined graphics. Getting the user-defined graphics is described in an [example](../../graphics/img_to_3d_matrix/example/) + +## Running the demo + +To start the demo, run the following command: + + idf.py build flash monitor + +The expected output is the following: + + I (570) 3D image demo: Selected 3D image - ESP Logo + I (570) 3D image demo: Showing ESP text + I (6730) 3D image demo: Showing 3D image + +Note, that the first line `Selected 3D image` from the expected output depends on the user's Kconfing menu selection + +
+ +
diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/3d_graphics_demo.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/3d_graphics_demo.cpp new file mode 100644 index 0000000..dccc366 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/3d_graphics_demo.cpp @@ -0,0 +1,240 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "esp_log.h" +#include "ssd1306.h" +#include "bsp/esp-bsp.h" +#include "esp_dsp.h" +#include "cube_matrix.h" +#include "esp_logo.h" +#include "esp_text.h" +#include "graphics_support.h" +#include "image_to_3d_matrix.h" + +static ssd1306_handle_t ssd1306_dev = NULL; +static bool button_pressed = true; + +dspm::Mat perspective_matrix(MATRIX_SIZE, MATRIX_SIZE); + +extern "C" void app_main(); + +/** + * @brief Initialize 3d image structure + * + * Assigns a 3d image to be displayed to the 3d image structure based on the Kconfig menu result. + * The Kconfig menu is operated by a user + * + * @param image: 3d image structure + */ +static void init_3d_matrix_struct(image_3d_matrix_t *image) +{ +#ifdef CONFIG_3D_OBJECT_ESP_LOGO + image->matrix = image_3d_matrix_esp_logo; + image->matrix_len = ((sizeof(image_3d_matrix_esp_logo)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - ESP Logo"); +#elif CONFIG_3D_OBJECT_CUSTOM + image->matrix = image_to_3d_matrix_custom; + image->matrix_len = ((sizeof(image_to_3d_matrix_custom)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - User's custom image"); +#elif CONFIG_3D_OBJECT_CUBE + image->matrix = cube_vectors_3d; + image->matrix_len = ((sizeof(cube_vectors_3d)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - 3D cube"); +#endif +} + +/** + * @brief Initialize display + */ +static void app_ssd1306_init(void) +{ + ssd1306_dev = ssd1306_create((i2c_port_t)BSP_I2C_NUM, SSD1306_I2C_ADDRESS); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Display a 3d image + * + * If the object is the 3d cube, connect the projected cube points by lines and display the lines + * For any other 3d object lit pixels on the display from provided XY coordinates + * + * @param projected_image: 3d matrix from Mat class after projection + */ +static void display_3d_image(dspm::Mat projected_image) +{ + ssd1306_clear_screen(ssd1306_dev, 0); + + if (OBJECT_3D_CUBE) { + // For the 3D cube, only the 6 points of the cube are transformed + // Cube edges, connecting transformed 3D cube points are connected with lines here + for (uint8_t cube_point = 0; cube_point < CUBE_EDGES; cube_point++) { + ssd1306_draw_line(ssd1306_dev, + (int16_t)projected_image(cube_dict_line_begin[cube_point], 0), + (int16_t)projected_image(cube_dict_line_begin[cube_point], 1), + (int16_t)projected_image(cube_dict_line_end[cube_point], 0), + (int16_t)projected_image(cube_dict_line_end[cube_point], 1)); + } + } else { + // Every other 3D image is drawn here pixel by pixel + for (uint32_t pixel = 0; pixel < projected_image.rows; pixel++ ) { + ssd1306_fill_point(ssd1306_dev, projected_image(pixel, 0), projected_image(pixel, 1), 1); + } + } + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Display ESPRESSIF text + * + * To demonstrate usage of the translation and scaling matrices + */ +static void dispaly_esp_text(void) +{ + image_3d_matrix_t esp_text; + esp_text.matrix = image_3d_array_esp_text; + esp_text.matrix_len = ((sizeof(image_3d_array_esp_text)) / sizeof(float)) / MATRIX_SIZE; + int16_t shift_x = -SSD1606_X_CENTER; + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat transformed_image(esp_text.matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat matrix_3d((float *)esp_text.matrix[0], esp_text.matrix_len, MATRIX_SIZE); + + ESP_LOGI("3D image demo", "Showing ESP text"); + + for (int i = 0; i < 52; i++) { + update_translation_matrix(T, true, (float)shift_x, (float)SSD1606_Y_CENTER, 0); + transformed_image = matrix_3d * T; + + ssd1306_clear_screen(ssd1306_dev, 0); + for (uint32_t point = 0; point < transformed_image.rows; point++ ) { + ssd1306_fill_point(ssd1306_dev, transformed_image(point, 0), transformed_image(point, 1), 1); + } + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(50 / portTICK_PERIOD_MS); + + shift_x += 5; + } + + ssd1306_clear_screen(ssd1306_dev, 0); + ssd1306_draw_bitmap(ssd1306_dev, 0, 24, &image_bmp_array_esp_text[0], 128, 24); + ssd1306_refresh_gram(ssd1306_dev); + + update_translation_matrix(T, true, (float)SSD1606_X_CENTER, (float)SSD1606_Y_CENTER, 0); + vTaskDelay(100 / portTICK_PERIOD_MS); + + float scale = 1; + for (int i = 0; i < 20; i++) { + update_scaling_matrix(T, false, scale, scale, 1); + transformed_image = matrix_3d * T; + + ssd1306_clear_screen(ssd1306_dev, 0); + for (uint32_t point = 0; point < transformed_image.rows; point++ ) { + ssd1306_fill_point(ssd1306_dev, transformed_image(point, 0), transformed_image(point, 1), 1); + } + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(50 / portTICK_PERIOD_MS); + + if (i < 10) { + scale -= 0.05; + } else { + scale += 0.05; + } + } +} + +/** + * @brief RTOS task to draw a 3d image. + * + * Updates 3d matrices, prepares the final 3d matrix to be displayed on the display + * + * @param arg: pointer to RTOS task arguments, 3d image structure in this case + */ +static void draw_3d_image_task(void *arg) +{ + float rot_y = 0, rot_x = 0; + const float angle_increment = 4; + image_3d_matrix_t *image = (image_3d_matrix_t *)arg; + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat transformed_image(image->matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat projected_image(image->matrix_len, MATRIX_SIZE); // 3D image matrix after projection + dspm::Mat matrix_3d((float *)image->matrix[0], image->matrix_len, MATRIX_SIZE); + + if (OBJECT_3D_CUBE) { + rot_x = 45; + } + + while (1) { + if (button_pressed) { + rot_y += angle_increment; + if (rot_y >= 360) { + rot_y -= 360; + } + } else { + rot_y -= angle_increment; + if (rot_y <= 0) { + rot_y += 360; + } + } + + // Apply rotation in all the axes to the transformation matrix + update_rotation_matrix(T, rot_x, rot_y, 0); + // Apply translation to the transformation matrix + update_translation_matrix(T, true, ((float)SSD1606_X_CENTER), ((float)SSD1606_Y_CENTER), 0); + + // explanation for the matrix multiplication is for the 3D cube scenario, applies for all of the objects + // where matrix rows for the transformed image and the projected image are set according to the specific 3d object + + // matrix mul cube_matirx(8x4) * transformation_matrix(4x4) = transformed_cube(8x4) + transformed_image = matrix_3d * T; + // matrix mul transformed_cube(8x4) * perspective_matrix(4x4) = projected_cube(8x4) + projected_image = transformed_image * perspective_matrix; + + display_3d_image(projected_image); + vTaskDelay(20 / portTICK_PERIOD_MS); + } +} + +void app_main(void) +{ + static bool button_prev_val = false; + image_3d_matrix_t image; + ekf_imu13states *ekf13 = new ekf_imu13states(); + ekf13->Init(); + + // Init all board components + bsp_i2c_init(); + app_ssd1306_init(); // display init + bsp_leds_init(); // LEDs init + bsp_i2c_set_clk_speed(I2C_CLK_600KHZ); // Set I2C to 600kHz + + init_perspective_matrix(perspective_matrix); + init_3d_matrix_struct(&image); + + dispaly_esp_text(); + vTaskDelay(1000 / portTICK_PERIOD_MS); + + xTaskCreate(draw_3d_image_task, "draw_3d_image", 2048, &image, 4, NULL); + ESP_LOGI("3D image demo", "Showing 3D image"); + + while (1) { + if (bsp_button_get()) { + button_pressed = !button_pressed; + } + + if (button_prev_val != button_pressed) { + button_prev_val = button_pressed; + if (button_pressed) { + bsp_led_set(BSP_LED_AZURE, true); + } else { + bsp_led_set(BSP_LED_AZURE, false); + } + } + vTaskDelay(100 / portTICK_PERIOD_MS); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/CMakeLists.txt new file mode 100644 index 0000000..fd342d6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/CMakeLists.txt @@ -0,0 +1,8 @@ +idf_component_register(SRCS "3d_graphics_demo.cpp" + "../../../graphics/3d_matrix/3d_matrix_data/esp_logo.c" + "../../../graphics/3d_matrix/3d_matrix_data/esp_text.c" + "../../../graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c" + "../../../graphics/3d_matrix/3d_matrix_src/graphics_support.cpp" + INCLUDE_DIRS "." + "../../../graphics/3d_matrix/3d_matrix_data" + "../../../graphics/3d_matrix/3d_matrix_src") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/Kconfig.projbuild b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/Kconfig.projbuild new file mode 100644 index 0000000..d36ede0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/Kconfig.projbuild @@ -0,0 +1,19 @@ +menu "Demo user configuration" + choice + prompt "Select 3D object" + config 3D_OBJECT_CUBE + bool "3D cube" + help + 3D graphics to be displayed is cube + + config 3D_OBJECT_ESP_LOGO + bool "3D ESP Logo" + help + 3D graphics to be displayed is ESP Logo + + config 3D_OBJECT_CUSTOM + bool "User-defined graphics" + help + 3D graphics to be displayed is a user-defined graphics + endchoice +endmenu \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/idf_component.yml new file mode 100644 index 0000000..a36c39c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/3d_graphics/main/idf_component.yml @@ -0,0 +1,8 @@ +## IDF Component Manager Manifest File +description: ESP-DSP azure board application 3d graphics +dependencies: + espressif/esp32_azure_iot_kit: "*" + espressif/esp-dsp: + version: "*" + override_path: "../../../../../../esp-dsp" + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/CMakeLists.txt new file mode 100644 index 0000000..94d8c35 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/CMakeLists.txt @@ -0,0 +1,8 @@ +# For more information about build system see +# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html +# The following five 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.5) +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +add_compile_options("-Wno-format") +project(esp-dsp-azure-board-app-kalman-filter) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/README.md new file mode 100644 index 0000000..eb664ba --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/README.md @@ -0,0 +1,59 @@ +# ESP-DSP ESP32-Azure IoT kit Kalman filter demo application + +The demo is developed for [ESP32-Azure IoT kit](https://github.com/espressif/esp-bsp/tree/master/esp32_azure_iot_kit) development board and is demonstrating the usage of matrices with `ESP-DSP` `Mat` class, Kalman filter and basic 3D graphics. + +The Kalman filter demo displays a 2D graphics, converted to 3D as a 3D object, on the development board's display. The 3D object follows the movements of the development board, where the Kalman filter is used for processing the output signals of the IMU sensors accommodated on the development board. The 3D object rotation is calculated by the Kalman filter class methods. All 3 IMU sensors present on the dev board (accelerometer, gyroscope and magnetometer) are used for sensing the development board's position. + + +If the board is inactive (no, or very low rotation is detected) for a set period of time, the demo enters an "Idle" state, in which a 3D rotating object is displayed. Once a certain set level of the board's rotation is detected, the demo enters a normal, "Active", state. + +For the project settings, run the menuconfig using the following command: + + idf.py mencuonfig + +In the menuconfig's menu item `Demo user configuration` select which 3D object to display. It's either 3D cube, or ESP logo, or a user-defined graphics. Getting the user-defined 3D object is described in the [3D Graphics demo](../3d_graphics) + +## Kalman filter +#### Calibration + +The filter must be calibrated before the first run, which takes several minutes. But the calibration process before each run can be omitted by calibrating the filter once, saving Kalman's filter state vectors to the NVS, and loading those vectors back into the Kalman filter before the run. In addition, every 5 minutes a current state vectors are saved into the flash memory. + +## Running the demo + +To start the demo, run the following command: + + idf.py build flash monitor + +The expected output is the following: + + I (589) Kalman filter demo: Selected 3D image - 3D cube + I (590) Kalman filter demo: Filter state vectors present in the NVS + I (592) Kalman filter demo: Loading state vectors into the filter structure + I (604) Kalman filter demo: State vectors loaded from the NVS + I (606) Barometer: disabled + I (619) Board status: board put to active mode + I (95780) Board status: board put to idle mode + I (300619) Kalman filter demo: State vectors saved to NVS + +Note, that the first line `Selected 3D image` from the expected output depends on the user's Kconfing menu selection + +To start the demo and run the initial Kalman filter calibration, one must erase the flash memory, to remove the previously stored Kalman filter's state vectors. To do so, run the following command: + + idf.py erase_flash build flash monitor + +The expected output is the following: + + I (592) Kalman filter demo: Selected 3D image - 3D cube + I (595) Kalman filter demo: Filter state vectors not present in the NVS + I (595) Kalman filter demo: Starting Kalman filter calibration loop + I (100699) Kalman filter demo: Exiting Kalman filter calibration loop + I (100894) Kalman filter demo: Estimated gyroscope bias error [deg/sec]: -0.020715 -0.000431 -0.022452 + I (100900) Kalman filter demo: State vectors saved to the NVS + I (100900) Barometer: disabled + I (100911) Board status: board put to active mode + I (196072) Board status: board put to idle mode + I (400912) Kalman filter demo: State vectors saved to NVS + +
+ +
\ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/kalman_filter.gif b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/kalman_filter.gif new file mode 100644 index 0000000..2467b5f Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/kalman_filter.gif differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/CMakeLists.txt new file mode 100644 index 0000000..dc7e9bf --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/CMakeLists.txt @@ -0,0 +1,7 @@ +idf_component_register(SRCS "kalman_filter_demo.cpp" + "../../../graphics/3d_matrix/3d_matrix_data/esp_logo.c" + "../../../graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c" + "../../../graphics/3d_matrix/3d_matrix_src/graphics_support.cpp" + INCLUDE_DIRS "." + "../../../graphics/3d_matrix/3d_matrix_data" + "../../../graphics/3d_matrix/3d_matrix_src") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/Kconfig.projbuild b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/Kconfig.projbuild new file mode 100644 index 0000000..d36ede0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/Kconfig.projbuild @@ -0,0 +1,19 @@ +menu "Demo user configuration" + choice + prompt "Select 3D object" + config 3D_OBJECT_CUBE + bool "3D cube" + help + 3D graphics to be displayed is cube + + config 3D_OBJECT_ESP_LOGO + bool "3D ESP Logo" + help + 3D graphics to be displayed is ESP Logo + + config 3D_OBJECT_CUSTOM + bool "User-defined graphics" + help + 3D graphics to be displayed is a user-defined graphics + endchoice +endmenu \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/idf_component.yml new file mode 100644 index 0000000..cf57d1e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/idf_component.yml @@ -0,0 +1,8 @@ +## IDF Component Manager Manifest File +description: ESP-DSP azure board application Kalman filter +dependencies: + espressif/esp32_azure_iot_kit: "*" + espressif/esp-dsp: + version: "*" + override_path: "../../../../../../esp-dsp" + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/kalman_filter_demo.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/kalman_filter_demo.cpp new file mode 100644 index 0000000..2cc49c6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/apps/kalman_filter/main/kalman_filter_demo.cpp @@ -0,0 +1,608 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "mpu6050.h" +#include "ssd1306.h" +#include "mag3110.h" +#include "fbm320.h" +#include "bsp/esp-bsp.h" +#include "esp_log.h" +#include "esp_timer.h" +#include "esp_idf_version.h" // for backward compatibility of esp-timer +#include "nvs.h" +#include "nvs_flash.h" +#include "graphics_support.h" +#include "cube_matrix.h" +#include "esp_dsp.h" +#include "ekf_imu13states.h" +#include "esp_logo.h" +#include "image_to_3d_matrix.h" + +#define STORAGE_NAMESPACE "kalman_filter" +#define USE_BAROMETER 0 + +static ssd1306_handle_t ssd1306_dev = NULL; +static mpu6050_handle_t mpu6050_dev = NULL; +static mag3110_handle_t mag3110_dev = NULL; +static fbm320_handle_t fbm320_dev = NULL; + +static bool kalman_filter_calibrated = false; +static bool board_inactive = true; + +dspm::Mat perspective_matrix(MATRIX_SIZE, MATRIX_SIZE); + +extern "C" void app_main(); + +/** + * @brief Initialize magnetometer + */ +static void app_mag3110_init(void) +{ + esp_err_t ret; + mag3110_dev = mag3110_create((i2c_port_t)BSP_I2C_NUM); + mag3110_start_raw(mag3110_dev, MAG3110_DR_OS_80_16); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize display + */ +static void app_ssd1306_init(void) +{ + ssd1306_dev = ssd1306_create((i2c_port_t)BSP_I2C_NUM, SSD1306_I2C_ADDRESS); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Initialize accelerometer and gyroscope + */ +static void mpu6050_init(void) +{ + esp_err_t ret; + mpu6050_dev = mpu6050_create((i2c_port_t)BSP_I2C_NUM, MPU6050_I2C_ADDRESS); + ret = mpu6050_config(mpu6050_dev, ACCE_FS_8G, GYRO_FS_2000DPS); + assert(ESP_OK == ret); + ret = mpu6050_wake_up(mpu6050_dev); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize pressure sensor + */ +static void app_fbm320_init(void) +{ + esp_err_t ret; + fbm320_dev = fbm320_create((i2c_port_t)BSP_I2C_NUM, FBM320_I2C_ADDRESS_1); + ret = fbm320_init(fbm320_dev); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize NVS flash memory + */ +static void init_nvs_flash_memory(void) +{ + esp_err_t err = nvs_flash_init(); + if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) { + // NVS partition was truncated and needs to be erased + // Retry nvs_flash_init + ESP_ERROR_CHECK(nvs_flash_erase()); + err = nvs_flash_init(); + } + ESP_ERROR_CHECK( err ); +} + +/** + * @brief Initialize 3d image structure + * + * Assigns a 3d image to be displayed to the 3d image structure based on the Kconfig menu result. + * The Kconfig menu is operated by a user + * + * @param image: pointer to 3d image structure + * @param ekf13: kalman filter object + */ +static void init_3d_matrix_struct(image_3d_matrix_kalman_t *image, ekf_imu13states *ekf13) +{ +#ifdef CONFIG_3D_OBJECT_ESP_LOGO + image->matrix = image_3d_matrix_esp_logo; + image->matrix_len = ((sizeof(image_3d_matrix_esp_logo)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - ESP Logo"); +#elif CONFIG_3D_OBJECT_CUSTOM + image->matrix = image_to_3d_matrix_custom; + image->matrix_len = ((sizeof(image_to_3d_matrix_custom)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - User's custom image"); +#elif CONFIG_3D_OBJECT_CUBE + image->matrix = cube_vectors_3d; + image->matrix_len = ((sizeof(cube_vectors_3d)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - 3D cube"); +#endif + image->ekf13 = ekf13; +} + +/** + * @brief Display a 3d image + * + * If the object is the 3d cube, connect the projected cube points by lines and display the lines + * For any other 3d object lit pixels on the display from provided XY coordinates + * + * @param projected_image: 3d matrix from Mat class after projection + */ +static void display_3d_image(dspm::Mat projected_image) +{ + ssd1306_clear_screen(ssd1306_dev, 0); + + if (OBJECT_3D_CUBE) { + // For the 3D cube, only the 6 points of the cube are transformed + // Cube edges, connecting transformed 3D cube points are connected with lines here + for (uint8_t cube_point = 0; cube_point < CUBE_EDGES; cube_point++) { + ssd1306_draw_line(ssd1306_dev, + (int16_t)projected_image(cube_dict_line_begin[cube_point], 0), + (int16_t)projected_image(cube_dict_line_begin[cube_point], 1), + (int16_t)projected_image(cube_dict_line_end[cube_point], 0), + (int16_t)projected_image(cube_dict_line_end[cube_point], 1)); + } + } else { + // Every other 3D image is drawn here pixel by pixel + for (uint32_t pixel = 0; pixel < projected_image.rows; pixel++ ) { + ssd1306_fill_point(ssd1306_dev, projected_image(pixel, 0), projected_image(pixel, 1), 1); + } + } + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Draw a 3d image + * + * Updates 3d matrices and prepares the final 3d matrix to be displayed on the display. + * Board inactivity check - decides which board mode to display (active or inactive), based on the board movements. + * + * @param ekf13: kalman filter object + * @param transformed_image: 3d matrix holding a 3d image after transformation + * @param projected_image: 3d matrix holding a 3d image after projection + * @param matrix_3d: 3d matrix holding the original 3d image, without any transformation + */ +static void draw_3d_image(ekf_imu13states *ekf13, dspm::Mat &transformed_image, dspm::Mat &projected_image, dspm::Mat &matrix_3d) +{ + static const float movement_treshold = 0.0001; // threshold to decide between Idle and Active state of the board + static float inactive_rotation = 0; // rotation angle (in degrees) for Idle state + static unsigned int inactivity_count = 0; + static const unsigned int inactivity_count_treshold = 75; + static unsigned int inactivity_check = 0; // activity of the board is being checked once in N calls of the function + static float prev_state_arr[3] = {0, 0, 0}; // holds the previous state of the Euler angles, to compare the diff + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat R1 = ekf::quat2rotm(ekf13->X.data); // matrix(3x1) that holds x, y, z rotation data + dspm::Mat eul_angles = ekf::rotm2eul(R1); + + // check if the board is active or not every N calls of the function + if (!(inactivity_check++ % 10)) { + dspm::Mat prev_state_mat(prev_state_arr, 3, 1); + dspm::Mat diff = eul_angles - prev_state_mat; + prev_state_mat = eul_angles; + + float max_diff = fabs(diff(0, 0) * diff(1, 0) * diff(2, 0)); + + // wake-up the board if the current board movement crosses the threshold + if (board_inactive && (max_diff > movement_treshold)) { + board_inactive = false; + ESP_LOGI("Board status", "board put to active mode"); + } + + // if the board is awake, and the current movement of the board is lower than the threshold - the board is + // being moved with - run the inactivity_counter + // after some time (if the movement of the board has been lower than the threshold) put the board to idle mode + else if (!board_inactive && (max_diff < movement_treshold)) { + if (inactivity_count > inactivity_count_treshold) { + board_inactive = true; + inactivity_count = 0; + ESP_LOGI("Board status", "board put to idle mode"); + update_perspective_matrix(perspective_matrix, 90); + } + inactivity_count++; + } + + // if the board is awake and the current movement of the board is higher than the threshold clear the inactivity_counter + else if (!board_inactive && (max_diff >= movement_treshold)) { + inactivity_count = 0; + } + } + + if (board_inactive) { + // board idle state - display a rotating cube + update_rotation_matrix(T, inactive_rotation += 3.0, 10.0, 10.0); + } else { + // board active state - 3D object follows movements of the board + eul_angles(2, 0) = -eul_angles(2, 0); + dspm::Mat R = ekf::eul2rotm(eul_angles.data); + + // Enlarge rotation matrix from 3x3 to 4x4 + // Copy rotation matrix R(3x3) to transformation matrix T_m(4x4) + for (int row = 0; row < R.rows; row++) { + for (int col = 0; col < R.cols; col++) { + T(row, col) = R(row, col); + } + } + } + + // explanation for the matrix multiplication is for the 3D cube scenario, applies for all of the objects + // where matrix rows for the transformed image and the projected image are set according to the specific 3d object + + // matrix mul cube_matirx(8x4) * transformation_matrix(4x4) = transformed_cube(8x4) + transformed_image = matrix_3d * T; + // matrix mul transformed_cube(8x4) * perspective_matrix(4x4) = projected_cube(8x4) + projected_image = transformed_image * perspective_matrix; + display_3d_image(projected_image); +} + +/** + * @brief Kalman filter RTOS task (or ESP timer callback) + * + * Takes IMU sensors measurements to be processed by the Kalman filter + * Function is used as: + * RTOS task - during normal Kalman filter operation + * ESP Timer callback function - during Kalman filter calibration process + * + * @param arg: pointer to RTOS task arguments, 3d image structure in this case + */ +static void kalman_filter_task(void *arg) +{ + mpu6050_acce_value_t acce_sample; + mpu6050_gyro_value_t gyro_sample; + mag3110_result_t mag_sample; + + image_3d_matrix_kalman_t *kalman_filter_args = (image_3d_matrix_kalman_t *)arg; + ekf_imu13states *ekf13 = kalman_filter_args->ekf13; + dspm::Mat transformed_image(kalman_filter_args->matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat projected_image(kalman_filter_args->matrix_len, MATRIX_SIZE); // 3D image matrix after projection + dspm::Mat matrix_3d((float *)kalman_filter_args->matrix[0], kalman_filter_args->matrix_len, MATRIX_SIZE); + + // Covariance matrix for Kalman filter, set specifically for this development board IMU sensors + float R_m[10] = {0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.000001, 0.000001, 0.000001, 0.000001}; + update_perspective_matrix(perspective_matrix, 90); + + while (1) { + // dt calculation + static float prev_time = 0; + const float current_time = xthal_get_ccount(); + float dt = 0; + + // Crystal count difference conversion to Dt time constant + if (current_time > prev_time) { + dt = current_time - prev_time; + dt = dt / 240000000.0; + } + prev_time = current_time; + + // Get all the sensors values + mpu6050_get_acce(mpu6050_dev, &acce_sample); + mpu6050_get_gyro(mpu6050_dev, &gyro_sample); + mag3110_get_magnetic_induction(mag3110_dev, &mag_sample); + + // Make arrays from the sensors values + float gyro_input_arr[3] = {gyro_sample.gyro_x, gyro_sample.gyro_y, gyro_sample.gyro_z}; + float accel_input_arr[3] = {acce_sample.acce_x, acce_sample.acce_y, acce_sample.acce_z}; + float mag_input_arr[3] = {(float)mag_sample.x, (float)mag_sample.y, (float)mag_sample.z}; + + // Accel and Mag data to Mat class + dspm::Mat gyro_input_mat(gyro_input_arr, 3, 1); + dspm::Mat accel_input_mat(accel_input_arr, 3, 1); + dspm::Mat mag_input_mat(mag_input_arr, 3, 1); + + // Normalize vectors + dspm::Mat accel_norm = accel_input_mat / accel_input_mat.norm(); + dspm::Mat magn_norm = mag_input_mat / mag_input_mat.norm(); + gyro_input_mat *= DEG_TO_RAD; + + ekf13->Process(gyro_input_mat.data, dt); + ekf13->UpdateRefMeasurementMagn(accel_norm.data, magn_norm.data, R_m); + + if (kalman_filter_calibrated) { + // Use the function as RTOS task for the filter calculation + draw_3d_image(ekf13, transformed_image, projected_image, matrix_3d); + vTaskDelay(20 / portTICK_PERIOD_MS); + } else { + // Use the function as a callback for kalman_filter_calibration_timer + break; + } + } +} + +/** + * @brief Kalman filter calibration procedure + * + * The Kalman filter must be calibrated before the very first run. The state of the Kalman filter is saved + * into NVS after the calibration. + * The calibration is run, only if no Kalman filter state is saved in the NVS. Which occurs after erasing + * the flash memory. Power cycling the board does not remove the Kalman filter state from the NVS. + * + * @param image: pointer to 3d image structure + */ +static void kalman_filter_calibration(image_3d_matrix_kalman_t *image) +{ + ekf_imu13states *ekf13 = image->ekf13; + esp_err_t ret; + nvs_handle_t nvs_handle_kalman; + size_t state_vectors_size = 13 * 14; + float *state_vectors = (float *)malloc(state_vectors_size * sizeof(float)); + + ret = nvs_open(STORAGE_NAMESPACE, NVS_READWRITE, &nvs_handle_kalman); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) opening NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + // Read previously saved blob, if available + size_t required_size = 0; // value will default to 0, if not set yet in NVS + ret = nvs_get_blob(nvs_handle_kalman, "state_vectors", NULL, &required_size); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) reading data from NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + if (required_size > 0) { + ESP_LOGI("Kalman filter demo", "Filter state vectors present in the NVS"); + ESP_LOGI("Kalman filter demo", "Loading state vectors into the filter structure"); + + size_t state_vectors_size_addr = state_vectors_size * sizeof(float); + ret = nvs_get_blob(nvs_handle_kalman, "state_vectors", state_vectors, &state_vectors_size_addr); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) reading data from NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + ekf13->P.data[i] = state_vectors[i]; + } else { + ekf13->X.data[i - (state_vectors_size - 13)] = state_vectors[i]; + } + } + + ESP_LOGI("Kalman filter demo", "State vectors loaded from the NVS"); + nvs_close(nvs_handle_kalman); + + } else { + ESP_LOGI("Kalman filter demo", "Filter state vectors not present in the NVS"); + const float kalman_timer_period_us = 100000; + + // ESP timer for the Kalman filter calibration + const esp_timer_create_args_t kalman_calibration_timer_config = { + .callback = kalman_filter_task, + .arg = image, + .dispatch_method = ESP_TIMER_TASK, + .name = "kalman_filter_calibration_timer", +#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 3, 0) + .skip_unhandled_events = true, +#endif + }; + + esp_timer_handle_t kalman_calibration_timer = NULL; + ret = esp_timer_create(&kalman_calibration_timer_config, &kalman_calibration_timer); + assert(ESP_OK == ret); + ssd1306_clear_screen(ssd1306_dev, 0x00); + + ESP_LOGI("Kalman filter demo", "Starting Kalman filter calibration loop"); + + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_draw_string(ssd1306_dev, 0, 16, (const uint8_t *)"Kalman filter", 16, 1); + ssd1306_draw_string(ssd1306_dev, 0, 32, (const uint8_t *)"calibration", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + + ret = esp_timer_start_periodic(kalman_calibration_timer, kalman_timer_period_us); + assert(ESP_OK == ret); + vTaskDelay(100000 / portTICK_PERIOD_MS); + + ret = esp_timer_stop(kalman_calibration_timer); + assert(ESP_OK == ret); + ret = esp_timer_delete(kalman_calibration_timer); + assert(ESP_OK == ret); + ESP_LOGI("Kalman filter demo", "Exiting Kalman filter calibration loop"); + ssd1306_draw_string(ssd1306_dev, 0, 48, (const uint8_t *)"Done!", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(100 / portTICK_PERIOD_MS); + + dspm::Mat estimated_error(&ekf13->X.data[4], 3, 1); + + ESP_LOGI("Kalman filter demo", "Estimated gyroscope bias error [deg/sec]: %.6f\t%.6f\t%.6f", + estimated_error.data[0], estimated_error.data[1], estimated_error.data[2]); + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + state_vectors[i] = ekf13->P.data[i]; + } else { + state_vectors[i] = ekf13->X.data[i - (state_vectors_size - 13)]; + } + } + + ret = nvs_set_blob(nvs_handle_kalman, "state_vectors", state_vectors, state_vectors_size * sizeof(float)); + assert(ESP_OK == ret); + ret = nvs_commit(nvs_handle_kalman); + assert(ESP_OK == ret); + nvs_close(nvs_handle_kalman); + ESP_LOGI("Kalman filter demo", "State vectors saved to the NVS"); + } + // Set the initial state of the X vector + ekf13->X(0, 0) = 1; + ekf13->X(0, 1) = 0; + ekf13->X(0, 2) = 0; + ekf13->X(0, 3) = 0; + free(state_vectors); + kalman_filter_calibrated = true; +} + +/** + * @brief RTOS task to periodically save the filter state + * + * The Kalman filter state is periodically saved into the NVS, each 5 min. So a recent Kalman filter state + * could be loaded into the Kalman filter object after a power cycle. + * + * @param arg: pointer to RTOS task arguments, Kalman filter object in this case + */ +static void save_state_vectors_task(void *arg) +{ + esp_err_t ret; + size_t state_vectors_size = 13 * 14; + nvs_handle_t nvs_handle_kalman; + ekf_imu13states *ekf13 = (ekf_imu13states *)arg; + vTaskDelay((60000 * 5) / portTICK_PERIOD_MS); // 5min + + while (1) { + float *state_vectors = (float *)malloc(state_vectors_size * sizeof(float)); + + ret = nvs_open(STORAGE_NAMESPACE, NVS_READWRITE, &nvs_handle_kalman); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) opening NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + state_vectors[i] = ekf13->P.data[i]; + } else { + state_vectors[i] = ekf13->X.data[i - (state_vectors_size - 13)]; + } + } + + ret = nvs_set_blob(nvs_handle_kalman, "state_vectors", state_vectors, state_vectors_size * sizeof(float)); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) writing data to NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + ret = nvs_commit(nvs_handle_kalman); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) commiting data to NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + nvs_close(nvs_handle_kalman); + ESP_LOGI("Kalman filter demo", "State vectors saved to NVS"); + free(state_vectors); + vTaskDelay((60000 * 5) / portTICK_PERIOD_MS); // Save the State vectors each 5 min + } +} + +/** + * @brief ROTS task to read a pressure + * + * Pressure is measured periodically to better average out a stable value of pressure + * + * @param arg: pointer to RTOS task arguments, pointer to the pressure variable in this case + */ +static void get_pressure_task(void *arg) +{ + int32_t real_p, real_t; + float *pressure_ptr = (float *)arg; + float pressure_global = *pressure_ptr; + + int call_count = 0; + int call_count1 = 0; + float pressure_initial = pressure_global; + float last_pressure = pressure_global; + float baro_image = pressure_global; + bool changed = false; + + while (1) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure_global = (0.999 * pressure_global) + (0.001 * ((float)real_p) / 1000.0); + call_count1++; + } + + if (board_inactive) { + pressure_initial = pressure_global; + last_pressure = pressure_global; + baro_image = pressure_global; + } else { + call_count++; + if (fabs(pressure_global - last_pressure) > 0.0005) { // cahnge more than 0.5 Pa + last_pressure = pressure_global; + baro_image = (0.9 * baro_image) + (0.1 * last_pressure); + changed = true; + } + + if ((!(call_count % 10)) && changed) { + float fov = 90 + (1000.0 * ((float)(pressure_initial - baro_image))); + update_perspective_matrix(perspective_matrix, fov); + changed = false; + } + } + vTaskDelay(100 / portTICK_PERIOD_MS); + } +} + +/** + * @brief read the initial value of pressure + */ +float get_initial_pressure(void) +{ + float pressure; + int32_t real_p, real_t; + int averagning_loop_count = 500; + + ESP_LOGI("Barometer", "Averagining initial barometer pressure"); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_draw_string(ssd1306_dev, 0, 16, (const uint8_t *)"Barometer", 16, 1); + ssd1306_draw_string(ssd1306_dev, 0, 32, (const uint8_t *)"averaging", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + + // take the first pressure measurement + while (1) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure = ((float)real_p) / 1000.0; // pressure in kPa + break; + } + } + + // average first N measurements + while (averagning_loop_count--) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure = (0.999 * pressure) + (0.001 * ((float)real_p) / 1000.0); + vTaskDelay(100 / portTICK_PERIOD_MS); + } + } + + ESP_LOGI("Barometer", "Initial value set"); + ssd1306_draw_string(ssd1306_dev, 0, 48, (const uint8_t *)"Done!", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + return (pressure); +} + +void app_main(void) +{ + image_3d_matrix_kalman_t image; + ekf_imu13states *ekf13 = new ekf_imu13states(); + ekf13->Init(); + + // Init all board components + bsp_i2c_init(); + app_ssd1306_init(); // display init + mpu6050_init(); // gyro, acc init + app_mag3110_init(); // magnetometer init + app_fbm320_init(); // barometer init + bsp_leds_init(); // LEDs init + init_nvs_flash_memory(); // Non-Volatile Storage + + init_perspective_matrix(perspective_matrix); + init_3d_matrix_struct(&image, ekf13); + kalman_filter_calibration(&image); + + // Use a barometer for measuring the altitude + if (USE_BAROMETER) { + float init_pressure = get_initial_pressure(); + xTaskCreate(get_pressure_task, "get_pressure_task", 2048 * 4, &init_pressure, 4, NULL); + } else { + ESP_LOGI("Barometer", "disabled"); + } + + xTaskCreate(kalman_filter_task, "kalman_filter_task", 2048 * 4, &image, 5, NULL); + xTaskCreate(save_state_vectors_task, "save_state_vectors", 2048, ekf13, 6, NULL); + + while (1) { + vTaskDelay(10000 / portTICK_PERIOD_MS); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/.gitignore b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/.gitignore new file mode 100644 index 0000000..4d06cd1 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/.gitignore @@ -0,0 +1,3 @@ +img_to_3d_matrix/converted_image/** +img_to_3d_matrix/example/*.c +img_to_3d_matrix/example/*.h \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/cube_matrix.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/cube_matrix.h new file mode 100644 index 0000000..bb72305 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/cube_matrix.h @@ -0,0 +1,51 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include +#include "graphics_support.h" +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +#define CUBE_POINTS 8 +#define CUBE_EDGES 12 +#define CUBE_SIDE (SSD1606_Y_CENTER / 2) + +// X Y Z coordinates of the cube centered to (0, 0, 0) +const float cube_vectors_3d[CUBE_POINTS][MATRIX_SIZE] = + // X Y Z W +{ {-CUBE_SIDE, -CUBE_SIDE, -CUBE_SIDE, 1}, // -1, -1, -1 + {-CUBE_SIDE, -CUBE_SIDE, CUBE_SIDE, 1}, // -1, -1, 1 + {-CUBE_SIDE, CUBE_SIDE, -CUBE_SIDE, 1}, // -1, 1, -1 + {-CUBE_SIDE, CUBE_SIDE, CUBE_SIDE, 1}, // -1, 1, 1 + { CUBE_SIDE, -CUBE_SIDE, -CUBE_SIDE, 1}, // 1, -1, -1 + { CUBE_SIDE, -CUBE_SIDE, CUBE_SIDE, 1}, // 1, -1, 1 + { CUBE_SIDE, CUBE_SIDE, -CUBE_SIDE, 1}, // 1, 1, -1 + { CUBE_SIDE, CUBE_SIDE, CUBE_SIDE, 1} // 1, 1, 1 +}; + +// Dictionary for 3d cube edges displaying +// Cube edges cube_vectors_3d[3] <-> cube_vectors_3d[1] +// cube_vectors_3d[3] <-> cube_vectors_3d[7] +// cube_vectors_3d[5] <-> cube_vectors_3d[7] +// cube_vectors_3d[5] <-> cube_vectors_3d[1].... +const uint8_t cube_dict_line_begin[CUBE_EDGES] = {3, 3, 5, 5, 2, 2, 4, 4, 3, 7, 1, 5}; +const uint8_t cube_dict_line_end[CUBE_EDGES] = {1, 7, 7, 1, 0, 6, 6, 0, 2, 6, 0, 4}; + +#ifdef CONFIG_3D_OBJECT_CUBE +#define OBJECT_3D_CUBE 1 +#else +#define OBJECT_3D_CUBE 0 +#endif + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.c new file mode 100644 index 0000000..c8e0dd6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.c @@ -0,0 +1,290 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "esp_logo.h" + +#ifdef CONFIG_3D_OBJECT_ESP_LOGO + +const uint8_t image_bmp_array_esp_logo[512] = { + + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xf0, 0x00, 0x00, + 0x00, 0x00, 0x0f, 0xc0, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x0c, 0x1f, 0xfc, 0x07, 0xfe, 0x00, 0x00, + 0x00, 0x0c, 0x3f, 0xff, 0x03, 0xff, 0x00, 0x00, 0x00, 0x18, 0x7f, 0xff, 0xc0, 0xff, 0xc0, 0x00, + 0x00, 0x38, 0x7f, 0xff, 0xf0, 0x7f, 0xe0, 0x00, 0x00, 0x70, 0x7f, 0xff, 0xf8, 0x3f, 0xe0, 0x00, + 0x00, 0x60, 0x7f, 0xff, 0xfe, 0x0f, 0xf0, 0x00, 0x00, 0xe0, 0x01, 0xff, 0xff, 0x07, 0xf8, 0x00, + 0x00, 0xc0, 0x00, 0x3f, 0xff, 0x83, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x07, 0xff, 0xe1, 0xfc, 0x00, + 0x01, 0x81, 0xfc, 0x01, 0xff, 0xf0, 0xfe, 0x00, 0x01, 0x87, 0xff, 0xc0, 0x7f, 0xf8, 0xfe, 0x00, + 0x03, 0x0f, 0xff, 0xf0, 0x3f, 0xf8, 0x7e, 0x00, 0x03, 0x1f, 0xff, 0xfc, 0x1f, 0xfc, 0x3f, 0x00, + 0x03, 0x1f, 0xff, 0xff, 0x07, 0xfe, 0x1f, 0x00, 0x03, 0x3f, 0xff, 0xff, 0x83, 0xff, 0x1f, 0x00, + 0x06, 0x3f, 0xff, 0xff, 0xc1, 0xff, 0x0f, 0x00, 0x06, 0x3f, 0xff, 0xff, 0xe0, 0xff, 0x8f, 0x80, + 0x06, 0x7f, 0x83, 0xff, 0xf0, 0xff, 0xc7, 0x80, 0x06, 0x7f, 0x80, 0x7f, 0xf8, 0x7f, 0xc7, 0x80, + 0x06, 0x7f, 0xc0, 0x1f, 0xfc, 0x3f, 0xe3, 0x80, 0x06, 0x3f, 0xfc, 0x0f, 0xfe, 0x3f, 0xe3, 0x80, + 0x06, 0x3f, 0xff, 0x07, 0xff, 0x1f, 0xf1, 0x80, 0x06, 0x3f, 0xff, 0xc3, 0xff, 0x0f, 0xf0, 0x00, + 0x06, 0x1f, 0xff, 0xe1, 0xff, 0x8f, 0xf0, 0x00, 0x07, 0x0f, 0xff, 0xf0, 0xff, 0x8f, 0xf8, 0x00, + 0x03, 0x07, 0xff, 0xf8, 0x7f, 0xc7, 0xf8, 0x00, 0x03, 0x01, 0xff, 0xfc, 0x3f, 0xc7, 0xf8, 0x00, + 0x03, 0x00, 0x3f, 0xfe, 0x3f, 0xc7, 0xf8, 0x00, 0x01, 0x80, 0x07, 0xfe, 0x1f, 0xe3, 0xfc, 0x00, + 0x01, 0x80, 0x03, 0xff, 0x1f, 0xe3, 0xfc, 0x00, 0x01, 0xc0, 0x01, 0xff, 0x1f, 0xe3, 0xfc, 0x00, + 0x00, 0xc0, 0x78, 0xff, 0x0f, 0xe3, 0xfc, 0x00, 0x00, 0xe0, 0xfc, 0x7f, 0x8f, 0xf1, 0xf8, 0x00, + 0x00, 0x61, 0xfc, 0x7f, 0x8f, 0xf1, 0xf0, 0x00, 0x00, 0x71, 0xfc, 0x7f, 0x8f, 0xf1, 0xf0, 0x00, + 0x00, 0x39, 0xfc, 0x7f, 0x8f, 0xf1, 0xe0, 0x00, 0x00, 0x19, 0xfc, 0x7f, 0x8f, 0xf0, 0x00, 0x00, + 0x00, 0x1c, 0xf8, 0x7f, 0x8f, 0xf0, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x7f, 0x8f, 0xf0, 0x10, 0x00, + 0x00, 0x07, 0x00, 0x7f, 0x8f, 0xf0, 0x38, 0x00, 0x00, 0x03, 0xc0, 0xff, 0x0f, 0xe0, 0x70, 0x00, + 0x00, 0x01, 0xe0, 0x7f, 0x0f, 0xc0, 0xe0, 0x00, 0x00, 0x00, 0x78, 0x1f, 0x00, 0x03, 0xc0, 0x00, + 0x00, 0x00, 0x3e, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x7e, 0x00, 0x00, + 0x00, 0x00, 0x03, 0xfc, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + +}; + +const float image_3d_matrix_esp_logo[1427][4] = { + + {-2.0, -25.0, 0, 1}, {-1.0, -25.0, 0, 1}, {0.0, -25.0, 0, 1}, {1.0, -25.0, 0, 1}, {2.0, -25.0, 0, 1}, {3.0, -25.0, 0, 1}, + {4.0, -25.0, 0, 1}, {5.0, -25.0, 0, 1}, {6.0, -25.0, 0, 1}, {-2.0, -24.0, 0, 1}, {-1.0, -24.0, 0, 1}, {0.0, -24.0, 0, 1}, + {1.0, -24.0, 0, 1}, {2.0, -24.0, 0, 1}, {3.0, -24.0, 0, 1}, {4.0, -24.0, 0, 1}, {5.0, -24.0, 0, 1}, {6.0, -24.0, 0, 1}, + {7.0, -24.0, 0, 1}, {8.0, -24.0, 0, 1}, {9.0, -24.0, 0, 1}, {1.0, -23.0, 0, 1}, {2.0, -23.0, 0, 1}, {3.0, -23.0, 0, 1}, + {4.0, -23.0, 0, 1}, {5.0, -23.0, 0, 1}, {6.0, -23.0, 0, 1}, {7.0, -23.0, 0, 1}, {8.0, -23.0, 0, 1}, {9.0, -23.0, 0, 1}, + {10.0, -23.0, 0, 1}, {11.0, -23.0, 0, 1}, {-12.0, -22.0, 0, 1}, {-11.0, -22.0, 0, 1}, {-10.0, -22.0, 0, 1}, {-9.0, -22.0, 0, 1}, + {-8.0, -22.0, 0, 1}, {-7.0, -22.0, 0, 1}, {3.0, -22.0, 0, 1}, {4.0, -22.0, 0, 1}, {5.0, -22.0, 0, 1}, {6.0, -22.0, 0, 1}, + {7.0, -22.0, 0, 1}, {8.0, -22.0, 0, 1}, {9.0, -22.0, 0, 1}, {10.0, -22.0, 0, 1}, {11.0, -22.0, 0, 1}, {12.0, -22.0, 0, 1}, + {13.0, -22.0, 0, 1}, {-20.0, -21.0, 0, 1}, {-19.0, -21.0, 0, 1}, {-13.0, -21.0, 0, 1}, {-12.0, -21.0, 0, 1}, {-11.0, -21.0, 0, 1}, + {-10.0, -21.0, 0, 1}, {-9.0, -21.0, 0, 1}, {-8.0, -21.0, 0, 1}, {-7.0, -21.0, 0, 1}, {-6.0, -21.0, 0, 1}, {-5.0, -21.0, 0, 1}, + {-4.0, -21.0, 0, 1}, {-3.0, -21.0, 0, 1}, {5.0, -21.0, 0, 1}, {6.0, -21.0, 0, 1}, {7.0, -21.0, 0, 1}, {8.0, -21.0, 0, 1}, + {9.0, -21.0, 0, 1}, {10.0, -21.0, 0, 1}, {11.0, -21.0, 0, 1}, {12.0, -21.0, 0, 1}, {13.0, -21.0, 0, 1}, {14.0, -21.0, 0, 1}, + {-20.0, -20.0, 0, 1}, {-19.0, -20.0, 0, 1}, {-14.0, -20.0, 0, 1}, {-13.0, -20.0, 0, 1}, {-12.0, -20.0, 0, 1}, {-11.0, -20.0, 0, 1}, + {-10.0, -20.0, 0, 1}, {-9.0, -20.0, 0, 1}, {-8.0, -20.0, 0, 1}, {-7.0, -20.0, 0, 1}, {-6.0, -20.0, 0, 1}, {-5.0, -20.0, 0, 1}, + {-4.0, -20.0, 0, 1}, {-3.0, -20.0, 0, 1}, {-2.0, -20.0, 0, 1}, {-1.0, -20.0, 0, 1}, {6.0, -20.0, 0, 1}, {7.0, -20.0, 0, 1}, + {8.0, -20.0, 0, 1}, {9.0, -20.0, 0, 1}, {10.0, -20.0, 0, 1}, {11.0, -20.0, 0, 1}, {12.0, -20.0, 0, 1}, {13.0, -20.0, 0, 1}, + {14.0, -20.0, 0, 1}, {15.0, -20.0, 0, 1}, {-21.0, -19.0, 0, 1}, {-20.0, -19.0, 0, 1}, {-15.0, -19.0, 0, 1}, {-14.0, -19.0, 0, 1}, + {-13.0, -19.0, 0, 1}, {-12.0, -19.0, 0, 1}, {-11.0, -19.0, 0, 1}, {-10.0, -19.0, 0, 1}, {-9.0, -19.0, 0, 1}, {-8.0, -19.0, 0, 1}, + {-7.0, -19.0, 0, 1}, {-6.0, -19.0, 0, 1}, {-5.0, -19.0, 0, 1}, {-4.0, -19.0, 0, 1}, {-3.0, -19.0, 0, 1}, {-2.0, -19.0, 0, 1}, + {-1.0, -19.0, 0, 1}, {0.0, -19.0, 0, 1}, {1.0, -19.0, 0, 1}, {8.0, -19.0, 0, 1}, {9.0, -19.0, 0, 1}, {10.0, -19.0, 0, 1}, + {11.0, -19.0, 0, 1}, {12.0, -19.0, 0, 1}, {13.0, -19.0, 0, 1}, {14.0, -19.0, 0, 1}, {15.0, -19.0, 0, 1}, {16.0, -19.0, 0, 1}, + {17.0, -19.0, 0, 1}, {-22.0, -18.0, 0, 1}, {-21.0, -18.0, 0, 1}, {-20.0, -18.0, 0, 1}, {-15.0, -18.0, 0, 1}, {-14.0, -18.0, 0, 1}, + {-13.0, -18.0, 0, 1}, {-12.0, -18.0, 0, 1}, {-11.0, -18.0, 0, 1}, {-10.0, -18.0, 0, 1}, {-9.0, -18.0, 0, 1}, {-8.0, -18.0, 0, 1}, + {-7.0, -18.0, 0, 1}, {-6.0, -18.0, 0, 1}, {-5.0, -18.0, 0, 1}, {-4.0, -18.0, 0, 1}, {-3.0, -18.0, 0, 1}, {-2.0, -18.0, 0, 1}, + {-1.0, -18.0, 0, 1}, {0.0, -18.0, 0, 1}, {1.0, -18.0, 0, 1}, {2.0, -18.0, 0, 1}, {3.0, -18.0, 0, 1}, {9.0, -18.0, 0, 1}, + {10.0, -18.0, 0, 1}, {11.0, -18.0, 0, 1}, {12.0, -18.0, 0, 1}, {13.0, -18.0, 0, 1}, {14.0, -18.0, 0, 1}, {15.0, -18.0, 0, 1}, + {16.0, -18.0, 0, 1}, {17.0, -18.0, 0, 1}, {18.0, -18.0, 0, 1}, {-23.0, -17.0, 0, 1}, {-22.0, -17.0, 0, 1}, {-21.0, -17.0, 0, 1}, + {-15.0, -17.0, 0, 1}, {-14.0, -17.0, 0, 1}, {-13.0, -17.0, 0, 1}, {-12.0, -17.0, 0, 1}, {-11.0, -17.0, 0, 1}, {-10.0, -17.0, 0, 1}, + {-9.0, -17.0, 0, 1}, {-8.0, -17.0, 0, 1}, {-7.0, -17.0, 0, 1}, {-6.0, -17.0, 0, 1}, {-5.0, -17.0, 0, 1}, {-4.0, -17.0, 0, 1}, + {-3.0, -17.0, 0, 1}, {-2.0, -17.0, 0, 1}, {-1.0, -17.0, 0, 1}, {0.0, -17.0, 0, 1}, {1.0, -17.0, 0, 1}, {2.0, -17.0, 0, 1}, + {3.0, -17.0, 0, 1}, {4.0, -17.0, 0, 1}, {10.0, -17.0, 0, 1}, {11.0, -17.0, 0, 1}, {12.0, -17.0, 0, 1}, {13.0, -17.0, 0, 1}, + {14.0, -17.0, 0, 1}, {15.0, -17.0, 0, 1}, {16.0, -17.0, 0, 1}, {17.0, -17.0, 0, 1}, {18.0, -17.0, 0, 1}, {-23.0, -16.0, 0, 1}, + {-22.0, -16.0, 0, 1}, {-15.0, -16.0, 0, 1}, {-14.0, -16.0, 0, 1}, {-13.0, -16.0, 0, 1}, {-12.0, -16.0, 0, 1}, {-11.0, -16.0, 0, 1}, + {-10.0, -16.0, 0, 1}, {-9.0, -16.0, 0, 1}, {-8.0, -16.0, 0, 1}, {-7.0, -16.0, 0, 1}, {-6.0, -16.0, 0, 1}, {-5.0, -16.0, 0, 1}, + {-4.0, -16.0, 0, 1}, {-3.0, -16.0, 0, 1}, {-2.0, -16.0, 0, 1}, {-1.0, -16.0, 0, 1}, {0.0, -16.0, 0, 1}, {1.0, -16.0, 0, 1}, + {2.0, -16.0, 0, 1}, {3.0, -16.0, 0, 1}, {4.0, -16.0, 0, 1}, {5.0, -16.0, 0, 1}, {6.0, -16.0, 0, 1}, {12.0, -16.0, 0, 1}, + {13.0, -16.0, 0, 1}, {14.0, -16.0, 0, 1}, {15.0, -16.0, 0, 1}, {16.0, -16.0, 0, 1}, {17.0, -16.0, 0, 1}, {18.0, -16.0, 0, 1}, + {19.0, -16.0, 0, 1}, {-24.0, -15.0, 0, 1}, {-23.0, -15.0, 0, 1}, {-22.0, -15.0, 0, 1}, {-9.0, -15.0, 0, 1}, {-8.0, -15.0, 0, 1}, + {-7.0, -15.0, 0, 1}, {-6.0, -15.0, 0, 1}, {-5.0, -15.0, 0, 1}, {-4.0, -15.0, 0, 1}, {-3.0, -15.0, 0, 1}, {-2.0, -15.0, 0, 1}, + {-1.0, -15.0, 0, 1}, {0.0, -15.0, 0, 1}, {1.0, -15.0, 0, 1}, {2.0, -15.0, 0, 1}, {3.0, -15.0, 0, 1}, {4.0, -15.0, 0, 1}, + {5.0, -15.0, 0, 1}, {6.0, -15.0, 0, 1}, {7.0, -15.0, 0, 1}, {13.0, -15.0, 0, 1}, {14.0, -15.0, 0, 1}, {15.0, -15.0, 0, 1}, + {16.0, -15.0, 0, 1}, {17.0, -15.0, 0, 1}, {18.0, -15.0, 0, 1}, {19.0, -15.0, 0, 1}, {20.0, -15.0, 0, 1}, {-24.0, -14.0, 0, 1}, + {-23.0, -14.0, 0, 1}, {-6.0, -14.0, 0, 1}, {-5.0, -14.0, 0, 1}, {-4.0, -14.0, 0, 1}, {-3.0, -14.0, 0, 1}, {-2.0, -14.0, 0, 1}, + {-1.0, -14.0, 0, 1}, {0.0, -14.0, 0, 1}, {1.0, -14.0, 0, 1}, {2.0, -14.0, 0, 1}, {3.0, -14.0, 0, 1}, {4.0, -14.0, 0, 1}, + {5.0, -14.0, 0, 1}, {6.0, -14.0, 0, 1}, {7.0, -14.0, 0, 1}, {8.0, -14.0, 0, 1}, {14.0, -14.0, 0, 1}, {15.0, -14.0, 0, 1}, + {16.0, -14.0, 0, 1}, {17.0, -14.0, 0, 1}, {18.0, -14.0, 0, 1}, {19.0, -14.0, 0, 1}, {20.0, -14.0, 0, 1}, {21.0, -14.0, 0, 1}, + {-25.0, -13.0, 0, 1}, {-24.0, -13.0, 0, 1}, {-23.0, -13.0, 0, 1}, {-3.0, -13.0, 0, 1}, {-2.0, -13.0, 0, 1}, {-1.0, -13.0, 0, 1}, + {0.0, -13.0, 0, 1}, {1.0, -13.0, 0, 1}, {2.0, -13.0, 0, 1}, {3.0, -13.0, 0, 1}, {4.0, -13.0, 0, 1}, {5.0, -13.0, 0, 1}, + {6.0, -13.0, 0, 1}, {7.0, -13.0, 0, 1}, {8.0, -13.0, 0, 1}, {9.0, -13.0, 0, 1}, {10.0, -13.0, 0, 1}, {15.0, -13.0, 0, 1}, + {16.0, -13.0, 0, 1}, {17.0, -13.0, 0, 1}, {18.0, -13.0, 0, 1}, {19.0, -13.0, 0, 1}, {20.0, -13.0, 0, 1}, {21.0, -13.0, 0, 1}, + {-25.0, -12.0, 0, 1}, {-24.0, -12.0, 0, 1}, {-17.0, -12.0, 0, 1}, {-16.0, -12.0, 0, 1}, {-15.0, -12.0, 0, 1}, {-14.0, -12.0, 0, 1}, + {-13.0, -12.0, 0, 1}, {-12.0, -12.0, 0, 1}, {-11.0, -12.0, 0, 1}, {-1.0, -12.0, 0, 1}, {0.0, -12.0, 0, 1}, {1.0, -12.0, 0, 1}, + {2.0, -12.0, 0, 1}, {3.0, -12.0, 0, 1}, {4.0, -12.0, 0, 1}, {5.0, -12.0, 0, 1}, {6.0, -12.0, 0, 1}, {7.0, -12.0, 0, 1}, + {8.0, -12.0, 0, 1}, {9.0, -12.0, 0, 1}, {10.0, -12.0, 0, 1}, {11.0, -12.0, 0, 1}, {16.0, -12.0, 0, 1}, {17.0, -12.0, 0, 1}, + {18.0, -12.0, 0, 1}, {19.0, -12.0, 0, 1}, {20.0, -12.0, 0, 1}, {21.0, -12.0, 0, 1}, {22.0, -12.0, 0, 1}, {-25.0, -11.0, 0, 1}, + {-24.0, -11.0, 0, 1}, {-19.0, -11.0, 0, 1}, {-18.0, -11.0, 0, 1}, {-17.0, -11.0, 0, 1}, {-16.0, -11.0, 0, 1}, {-15.0, -11.0, 0, 1}, + {-14.0, -11.0, 0, 1}, {-13.0, -11.0, 0, 1}, {-12.0, -11.0, 0, 1}, {-11.0, -11.0, 0, 1}, {-10.0, -11.0, 0, 1}, {-9.0, -11.0, 0, 1}, + {-8.0, -11.0, 0, 1}, {-7.0, -11.0, 0, 1}, {1.0, -11.0, 0, 1}, {2.0, -11.0, 0, 1}, {3.0, -11.0, 0, 1}, {4.0, -11.0, 0, 1}, + {5.0, -11.0, 0, 1}, {6.0, -11.0, 0, 1}, {7.0, -11.0, 0, 1}, {8.0, -11.0, 0, 1}, {9.0, -11.0, 0, 1}, {10.0, -11.0, 0, 1}, + {11.0, -11.0, 0, 1}, {12.0, -11.0, 0, 1}, {16.0, -11.0, 0, 1}, {17.0, -11.0, 0, 1}, {18.0, -11.0, 0, 1}, {19.0, -11.0, 0, 1}, + {20.0, -11.0, 0, 1}, {21.0, -11.0, 0, 1}, {22.0, -11.0, 0, 1}, {-26.0, -10.0, 0, 1}, {-25.0, -10.0, 0, 1}, {-20.0, -10.0, 0, 1}, + {-19.0, -10.0, 0, 1}, {-18.0, -10.0, 0, 1}, {-17.0, -10.0, 0, 1}, {-16.0, -10.0, 0, 1}, {-15.0, -10.0, 0, 1}, {-14.0, -10.0, 0, 1}, + {-13.0, -10.0, 0, 1}, {-12.0, -10.0, 0, 1}, {-11.0, -10.0, 0, 1}, {-10.0, -10.0, 0, 1}, {-9.0, -10.0, 0, 1}, {-8.0, -10.0, 0, 1}, + {-7.0, -10.0, 0, 1}, {-6.0, -10.0, 0, 1}, {-5.0, -10.0, 0, 1}, {2.0, -10.0, 0, 1}, {3.0, -10.0, 0, 1}, {4.0, -10.0, 0, 1}, + {5.0, -10.0, 0, 1}, {6.0, -10.0, 0, 1}, {7.0, -10.0, 0, 1}, {8.0, -10.0, 0, 1}, {9.0, -10.0, 0, 1}, {10.0, -10.0, 0, 1}, + {11.0, -10.0, 0, 1}, {12.0, -10.0, 0, 1}, {17.0, -10.0, 0, 1}, {18.0, -10.0, 0, 1}, {19.0, -10.0, 0, 1}, {20.0, -10.0, 0, 1}, + {21.0, -10.0, 0, 1}, {22.0, -10.0, 0, 1}, {-26.0, -9.0, 0, 1}, {-25.0, -9.0, 0, 1}, {-21.0, -9.0, 0, 1}, {-20.0, -9.0, 0, 1}, + {-19.0, -9.0, 0, 1}, {-18.0, -9.0, 0, 1}, {-17.0, -9.0, 0, 1}, {-16.0, -9.0, 0, 1}, {-15.0, -9.0, 0, 1}, {-14.0, -9.0, 0, 1}, + {-13.0, -9.0, 0, 1}, {-12.0, -9.0, 0, 1}, {-11.0, -9.0, 0, 1}, {-10.0, -9.0, 0, 1}, {-9.0, -9.0, 0, 1}, {-8.0, -9.0, 0, 1}, + {-7.0, -9.0, 0, 1}, {-6.0, -9.0, 0, 1}, {-5.0, -9.0, 0, 1}, {-4.0, -9.0, 0, 1}, {-3.0, -9.0, 0, 1}, {3.0, -9.0, 0, 1}, + {4.0, -9.0, 0, 1}, {5.0, -9.0, 0, 1}, {6.0, -9.0, 0, 1}, {7.0, -9.0, 0, 1}, {8.0, -9.0, 0, 1}, {9.0, -9.0, 0, 1}, + {10.0, -9.0, 0, 1}, {11.0, -9.0, 0, 1}, {12.0, -9.0, 0, 1}, {13.0, -9.0, 0, 1}, {18.0, -9.0, 0, 1}, {19.0, -9.0, 0, 1}, + {20.0, -9.0, 0, 1}, {21.0, -9.0, 0, 1}, {22.0, -9.0, 0, 1}, {23.0, -9.0, 0, 1}, {-26.0, -8.0, 0, 1}, {-25.0, -8.0, 0, 1}, + {-21.0, -8.0, 0, 1}, {-20.0, -8.0, 0, 1}, {-19.0, -8.0, 0, 1}, {-18.0, -8.0, 0, 1}, {-17.0, -8.0, 0, 1}, {-16.0, -8.0, 0, 1}, + {-15.0, -8.0, 0, 1}, {-14.0, -8.0, 0, 1}, {-13.0, -8.0, 0, 1}, {-12.0, -8.0, 0, 1}, {-11.0, -8.0, 0, 1}, {-10.0, -8.0, 0, 1}, + {-9.0, -8.0, 0, 1}, {-8.0, -8.0, 0, 1}, {-7.0, -8.0, 0, 1}, {-6.0, -8.0, 0, 1}, {-5.0, -8.0, 0, 1}, {-4.0, -8.0, 0, 1}, + {-3.0, -8.0, 0, 1}, {-2.0, -8.0, 0, 1}, {-1.0, -8.0, 0, 1}, {5.0, -8.0, 0, 1}, {6.0, -8.0, 0, 1}, {7.0, -8.0, 0, 1}, + {8.0, -8.0, 0, 1}, {9.0, -8.0, 0, 1}, {10.0, -8.0, 0, 1}, {11.0, -8.0, 0, 1}, {12.0, -8.0, 0, 1}, {13.0, -8.0, 0, 1}, + {14.0, -8.0, 0, 1}, {19.0, -8.0, 0, 1}, {20.0, -8.0, 0, 1}, {21.0, -8.0, 0, 1}, {22.0, -8.0, 0, 1}, {23.0, -8.0, 0, 1}, + {-26.0, -7.0, 0, 1}, {-25.0, -7.0, 0, 1}, {-22.0, -7.0, 0, 1}, {-21.0, -7.0, 0, 1}, {-20.0, -7.0, 0, 1}, {-19.0, -7.0, 0, 1}, + {-18.0, -7.0, 0, 1}, {-17.0, -7.0, 0, 1}, {-16.0, -7.0, 0, 1}, {-15.0, -7.0, 0, 1}, {-14.0, -7.0, 0, 1}, {-13.0, -7.0, 0, 1}, + {-12.0, -7.0, 0, 1}, {-11.0, -7.0, 0, 1}, {-10.0, -7.0, 0, 1}, {-9.0, -7.0, 0, 1}, {-8.0, -7.0, 0, 1}, {-7.0, -7.0, 0, 1}, + {-6.0, -7.0, 0, 1}, {-5.0, -7.0, 0, 1}, {-4.0, -7.0, 0, 1}, {-3.0, -7.0, 0, 1}, {-2.0, -7.0, 0, 1}, {-1.0, -7.0, 0, 1}, + {0.0, -7.0, 0, 1}, {6.0, -7.0, 0, 1}, {7.0, -7.0, 0, 1}, {8.0, -7.0, 0, 1}, {9.0, -7.0, 0, 1}, {10.0, -7.0, 0, 1}, + {11.0, -7.0, 0, 1}, {12.0, -7.0, 0, 1}, {13.0, -7.0, 0, 1}, {14.0, -7.0, 0, 1}, {15.0, -7.0, 0, 1}, {19.0, -7.0, 0, 1}, + {20.0, -7.0, 0, 1}, {21.0, -7.0, 0, 1}, {22.0, -7.0, 0, 1}, {23.0, -7.0, 0, 1}, {-27.0, -6.0, 0, 1}, {-26.0, -6.0, 0, 1}, + {-22.0, -6.0, 0, 1}, {-21.0, -6.0, 0, 1}, {-20.0, -6.0, 0, 1}, {-19.0, -6.0, 0, 1}, {-18.0, -6.0, 0, 1}, {-17.0, -6.0, 0, 1}, + {-16.0, -6.0, 0, 1}, {-15.0, -6.0, 0, 1}, {-14.0, -6.0, 0, 1}, {-13.0, -6.0, 0, 1}, {-12.0, -6.0, 0, 1}, {-11.0, -6.0, 0, 1}, + {-10.0, -6.0, 0, 1}, {-9.0, -6.0, 0, 1}, {-8.0, -6.0, 0, 1}, {-7.0, -6.0, 0, 1}, {-6.0, -6.0, 0, 1}, {-5.0, -6.0, 0, 1}, + {-4.0, -6.0, 0, 1}, {-3.0, -6.0, 0, 1}, {-2.0, -6.0, 0, 1}, {-1.0, -6.0, 0, 1}, {0.0, -6.0, 0, 1}, {1.0, -6.0, 0, 1}, + {7.0, -6.0, 0, 1}, {8.0, -6.0, 0, 1}, {9.0, -6.0, 0, 1}, {10.0, -6.0, 0, 1}, {11.0, -6.0, 0, 1}, {12.0, -6.0, 0, 1}, + {13.0, -6.0, 0, 1}, {14.0, -6.0, 0, 1}, {15.0, -6.0, 0, 1}, {20.0, -6.0, 0, 1}, {21.0, -6.0, 0, 1}, {22.0, -6.0, 0, 1}, + {23.0, -6.0, 0, 1}, {-27.0, -5.0, 0, 1}, {-26.0, -5.0, 0, 1}, {-22.0, -5.0, 0, 1}, {-21.0, -5.0, 0, 1}, {-20.0, -5.0, 0, 1}, + {-19.0, -5.0, 0, 1}, {-18.0, -5.0, 0, 1}, {-17.0, -5.0, 0, 1}, {-16.0, -5.0, 0, 1}, {-15.0, -5.0, 0, 1}, {-14.0, -5.0, 0, 1}, + {-13.0, -5.0, 0, 1}, {-12.0, -5.0, 0, 1}, {-11.0, -5.0, 0, 1}, {-10.0, -5.0, 0, 1}, {-9.0, -5.0, 0, 1}, {-8.0, -5.0, 0, 1}, + {-7.0, -5.0, 0, 1}, {-6.0, -5.0, 0, 1}, {-5.0, -5.0, 0, 1}, {-4.0, -5.0, 0, 1}, {-3.0, -5.0, 0, 1}, {-2.0, -5.0, 0, 1}, + {-1.0, -5.0, 0, 1}, {0.0, -5.0, 0, 1}, {1.0, -5.0, 0, 1}, {2.0, -5.0, 0, 1}, {8.0, -5.0, 0, 1}, {9.0, -5.0, 0, 1}, + {10.0, -5.0, 0, 1}, {11.0, -5.0, 0, 1}, {12.0, -5.0, 0, 1}, {13.0, -5.0, 0, 1}, {14.0, -5.0, 0, 1}, {15.0, -5.0, 0, 1}, + {16.0, -5.0, 0, 1}, {20.0, -5.0, 0, 1}, {21.0, -5.0, 0, 1}, {22.0, -5.0, 0, 1}, {23.0, -5.0, 0, 1}, {24.0, -5.0, 0, 1}, + {-27.0, -4.0, 0, 1}, {-26.0, -4.0, 0, 1}, {-23.0, -4.0, 0, 1}, {-22.0, -4.0, 0, 1}, {-21.0, -4.0, 0, 1}, {-20.0, -4.0, 0, 1}, + {-19.0, -4.0, 0, 1}, {-18.0, -4.0, 0, 1}, {-17.0, -4.0, 0, 1}, {-16.0, -4.0, 0, 1}, {-10.0, -4.0, 0, 1}, {-9.0, -4.0, 0, 1}, + {-8.0, -4.0, 0, 1}, {-7.0, -4.0, 0, 1}, {-6.0, -4.0, 0, 1}, {-5.0, -4.0, 0, 1}, {-4.0, -4.0, 0, 1}, {-3.0, -4.0, 0, 1}, + {-2.0, -4.0, 0, 1}, {-1.0, -4.0, 0, 1}, {0.0, -4.0, 0, 1}, {1.0, -4.0, 0, 1}, {2.0, -4.0, 0, 1}, {3.0, -4.0, 0, 1}, + {8.0, -4.0, 0, 1}, {9.0, -4.0, 0, 1}, {10.0, -4.0, 0, 1}, {11.0, -4.0, 0, 1}, {12.0, -4.0, 0, 1}, {13.0, -4.0, 0, 1}, + {14.0, -4.0, 0, 1}, {15.0, -4.0, 0, 1}, {16.0, -4.0, 0, 1}, {17.0, -4.0, 0, 1}, {21.0, -4.0, 0, 1}, {22.0, -4.0, 0, 1}, + {23.0, -4.0, 0, 1}, {24.0, -4.0, 0, 1}, {-27.0, -3.0, 0, 1}, {-26.0, -3.0, 0, 1}, {-23.0, -3.0, 0, 1}, {-22.0, -3.0, 0, 1}, + {-21.0, -3.0, 0, 1}, {-20.0, -3.0, 0, 1}, {-19.0, -3.0, 0, 1}, {-18.0, -3.0, 0, 1}, {-17.0, -3.0, 0, 1}, {-16.0, -3.0, 0, 1}, + {-7.0, -3.0, 0, 1}, {-6.0, -3.0, 0, 1}, {-5.0, -3.0, 0, 1}, {-4.0, -3.0, 0, 1}, {-3.0, -3.0, 0, 1}, {-2.0, -3.0, 0, 1}, + {-1.0, -3.0, 0, 1}, {0.0, -3.0, 0, 1}, {1.0, -3.0, 0, 1}, {2.0, -3.0, 0, 1}, {3.0, -3.0, 0, 1}, {4.0, -3.0, 0, 1}, + {9.0, -3.0, 0, 1}, {10.0, -3.0, 0, 1}, {11.0, -3.0, 0, 1}, {12.0, -3.0, 0, 1}, {13.0, -3.0, 0, 1}, {14.0, -3.0, 0, 1}, + {15.0, -3.0, 0, 1}, {16.0, -3.0, 0, 1}, {17.0, -3.0, 0, 1}, {21.0, -3.0, 0, 1}, {22.0, -3.0, 0, 1}, {23.0, -3.0, 0, 1}, + {24.0, -3.0, 0, 1}, {-27.0, -2.0, 0, 1}, {-26.0, -2.0, 0, 1}, {-23.0, -2.0, 0, 1}, {-22.0, -2.0, 0, 1}, {-21.0, -2.0, 0, 1}, + {-20.0, -2.0, 0, 1}, {-19.0, -2.0, 0, 1}, {-18.0, -2.0, 0, 1}, {-17.0, -2.0, 0, 1}, {-16.0, -2.0, 0, 1}, {-15.0, -2.0, 0, 1}, + {-5.0, -2.0, 0, 1}, {-4.0, -2.0, 0, 1}, {-3.0, -2.0, 0, 1}, {-2.0, -2.0, 0, 1}, {-1.0, -2.0, 0, 1}, {0.0, -2.0, 0, 1}, + {1.0, -2.0, 0, 1}, {2.0, -2.0, 0, 1}, {3.0, -2.0, 0, 1}, {4.0, -2.0, 0, 1}, {5.0, -2.0, 0, 1}, {10.0, -2.0, 0, 1}, + {11.0, -2.0, 0, 1}, {12.0, -2.0, 0, 1}, {13.0, -2.0, 0, 1}, {14.0, -2.0, 0, 1}, {15.0, -2.0, 0, 1}, {16.0, -2.0, 0, 1}, + {17.0, -2.0, 0, 1}, {18.0, -2.0, 0, 1}, {22.0, -2.0, 0, 1}, {23.0, -2.0, 0, 1}, {24.0, -2.0, 0, 1}, {-27.0, -1.0, 0, 1}, + {-26.0, -1.0, 0, 1}, {-22.0, -1.0, 0, 1}, {-21.0, -1.0, 0, 1}, {-20.0, -1.0, 0, 1}, {-19.0, -1.0, 0, 1}, {-18.0, -1.0, 0, 1}, + {-17.0, -1.0, 0, 1}, {-16.0, -1.0, 0, 1}, {-15.0, -1.0, 0, 1}, {-14.0, -1.0, 0, 1}, {-13.0, -1.0, 0, 1}, {-12.0, -1.0, 0, 1}, + {-11.0, -1.0, 0, 1}, {-4.0, -1.0, 0, 1}, {-3.0, -1.0, 0, 1}, {-2.0, -1.0, 0, 1}, {-1.0, -1.0, 0, 1}, {0.0, -1.0, 0, 1}, + {1.0, -1.0, 0, 1}, {2.0, -1.0, 0, 1}, {3.0, -1.0, 0, 1}, {4.0, -1.0, 0, 1}, {5.0, -1.0, 0, 1}, {6.0, -1.0, 0, 1}, + {10.0, -1.0, 0, 1}, {11.0, -1.0, 0, 1}, {12.0, -1.0, 0, 1}, {13.0, -1.0, 0, 1}, {14.0, -1.0, 0, 1}, {15.0, -1.0, 0, 1}, + {16.0, -1.0, 0, 1}, {17.0, -1.0, 0, 1}, {18.0, -1.0, 0, 1}, {22.0, -1.0, 0, 1}, {23.0, -1.0, 0, 1}, {24.0, -1.0, 0, 1}, + {-27.0, 0.0, 0, 1}, {-26.0, 0.0, 0, 1}, {-22.0, 0.0, 0, 1}, {-21.0, 0.0, 0, 1}, {-20.0, 0.0, 0, 1}, {-19.0, 0.0, 0, 1}, + {-18.0, 0.0, 0, 1}, {-17.0, 0.0, 0, 1}, {-16.0, 0.0, 0, 1}, {-15.0, 0.0, 0, 1}, {-14.0, 0.0, 0, 1}, {-13.0, 0.0, 0, 1}, + {-12.0, 0.0, 0, 1}, {-11.0, 0.0, 0, 1}, {-10.0, 0.0, 0, 1}, {-9.0, 0.0, 0, 1}, {-3.0, 0.0, 0, 1}, {-2.0, 0.0, 0, 1}, + {-1.0, 0.0, 0, 1}, {0.0, 0.0, 0, 1}, {1.0, 0.0, 0, 1}, {2.0, 0.0, 0, 1}, {3.0, 0.0, 0, 1}, {4.0, 0.0, 0, 1}, + {5.0, 0.0, 0, 1}, {6.0, 0.0, 0, 1}, {7.0, 0.0, 0, 1}, {11.0, 0.0, 0, 1}, {12.0, 0.0, 0, 1}, {13.0, 0.0, 0, 1}, + {14.0, 0.0, 0, 1}, {15.0, 0.0, 0, 1}, {16.0, 0.0, 0, 1}, {17.0, 0.0, 0, 1}, {18.0, 0.0, 0, 1}, {19.0, 0.0, 0, 1}, + {23.0, 0.0, 0, 1}, {24.0, 0.0, 0, 1}, {-27.0, 1.0, 0, 1}, {-26.0, 1.0, 0, 1}, {-22.0, 1.0, 0, 1}, {-21.0, 1.0, 0, 1}, + {-20.0, 1.0, 0, 1}, {-19.0, 1.0, 0, 1}, {-18.0, 1.0, 0, 1}, {-17.0, 1.0, 0, 1}, {-16.0, 1.0, 0, 1}, {-15.0, 1.0, 0, 1}, + {-14.0, 1.0, 0, 1}, {-13.0, 1.0, 0, 1}, {-12.0, 1.0, 0, 1}, {-11.0, 1.0, 0, 1}, {-10.0, 1.0, 0, 1}, {-9.0, 1.0, 0, 1}, + {-8.0, 1.0, 0, 1}, {-7.0, 1.0, 0, 1}, {-2.0, 1.0, 0, 1}, {-1.0, 1.0, 0, 1}, {0.0, 1.0, 0, 1}, {1.0, 1.0, 0, 1}, + {2.0, 1.0, 0, 1}, {3.0, 1.0, 0, 1}, {4.0, 1.0, 0, 1}, {5.0, 1.0, 0, 1}, {6.0, 1.0, 0, 1}, {7.0, 1.0, 0, 1}, + {12.0, 1.0, 0, 1}, {13.0, 1.0, 0, 1}, {14.0, 1.0, 0, 1}, {15.0, 1.0, 0, 1}, {16.0, 1.0, 0, 1}, {17.0, 1.0, 0, 1}, + {18.0, 1.0, 0, 1}, {19.0, 1.0, 0, 1}, {-27.0, 2.0, 0, 1}, {-26.0, 2.0, 0, 1}, {-21.0, 2.0, 0, 1}, {-20.0, 2.0, 0, 1}, + {-19.0, 2.0, 0, 1}, {-18.0, 2.0, 0, 1}, {-17.0, 2.0, 0, 1}, {-16.0, 2.0, 0, 1}, {-15.0, 2.0, 0, 1}, {-14.0, 2.0, 0, 1}, + {-13.0, 2.0, 0, 1}, {-12.0, 2.0, 0, 1}, {-11.0, 2.0, 0, 1}, {-10.0, 2.0, 0, 1}, {-9.0, 2.0, 0, 1}, {-8.0, 2.0, 0, 1}, + {-7.0, 2.0, 0, 1}, {-6.0, 2.0, 0, 1}, {-1.0, 2.0, 0, 1}, {0.0, 2.0, 0, 1}, {1.0, 2.0, 0, 1}, {2.0, 2.0, 0, 1}, + {3.0, 2.0, 0, 1}, {4.0, 2.0, 0, 1}, {5.0, 2.0, 0, 1}, {6.0, 2.0, 0, 1}, {7.0, 2.0, 0, 1}, {8.0, 2.0, 0, 1}, + {12.0, 2.0, 0, 1}, {13.0, 2.0, 0, 1}, {14.0, 2.0, 0, 1}, {15.0, 2.0, 0, 1}, {16.0, 2.0, 0, 1}, {17.0, 2.0, 0, 1}, + {18.0, 2.0, 0, 1}, {19.0, 2.0, 0, 1}, {-27.0, 3.0, 0, 1}, {-26.0, 3.0, 0, 1}, {-25.0, 3.0, 0, 1}, {-20.0, 3.0, 0, 1}, + {-19.0, 3.0, 0, 1}, {-18.0, 3.0, 0, 1}, {-17.0, 3.0, 0, 1}, {-16.0, 3.0, 0, 1}, {-15.0, 3.0, 0, 1}, {-14.0, 3.0, 0, 1}, + {-13.0, 3.0, 0, 1}, {-12.0, 3.0, 0, 1}, {-11.0, 3.0, 0, 1}, {-10.0, 3.0, 0, 1}, {-9.0, 3.0, 0, 1}, {-8.0, 3.0, 0, 1}, + {-7.0, 3.0, 0, 1}, {-6.0, 3.0, 0, 1}, {-5.0, 3.0, 0, 1}, {0.0, 3.0, 0, 1}, {1.0, 3.0, 0, 1}, {2.0, 3.0, 0, 1}, + {3.0, 3.0, 0, 1}, {4.0, 3.0, 0, 1}, {5.0, 3.0, 0, 1}, {6.0, 3.0, 0, 1}, {7.0, 3.0, 0, 1}, {8.0, 3.0, 0, 1}, + {12.0, 3.0, 0, 1}, {13.0, 3.0, 0, 1}, {14.0, 3.0, 0, 1}, {15.0, 3.0, 0, 1}, {16.0, 3.0, 0, 1}, {17.0, 3.0, 0, 1}, + {18.0, 3.0, 0, 1}, {19.0, 3.0, 0, 1}, {20.0, 3.0, 0, 1}, {-26.0, 4.0, 0, 1}, {-25.0, 4.0, 0, 1}, {-19.0, 4.0, 0, 1}, + {-18.0, 4.0, 0, 1}, {-17.0, 4.0, 0, 1}, {-16.0, 4.0, 0, 1}, {-15.0, 4.0, 0, 1}, {-14.0, 4.0, 0, 1}, {-13.0, 4.0, 0, 1}, + {-12.0, 4.0, 0, 1}, {-11.0, 4.0, 0, 1}, {-10.0, 4.0, 0, 1}, {-9.0, 4.0, 0, 1}, {-8.0, 4.0, 0, 1}, {-7.0, 4.0, 0, 1}, + {-6.0, 4.0, 0, 1}, {-5.0, 4.0, 0, 1}, {-4.0, 4.0, 0, 1}, {1.0, 4.0, 0, 1}, {2.0, 4.0, 0, 1}, {3.0, 4.0, 0, 1}, + {4.0, 4.0, 0, 1}, {5.0, 4.0, 0, 1}, {6.0, 4.0, 0, 1}, {7.0, 4.0, 0, 1}, {8.0, 4.0, 0, 1}, {9.0, 4.0, 0, 1}, + {13.0, 4.0, 0, 1}, {14.0, 4.0, 0, 1}, {15.0, 4.0, 0, 1}, {16.0, 4.0, 0, 1}, {17.0, 4.0, 0, 1}, {18.0, 4.0, 0, 1}, + {19.0, 4.0, 0, 1}, {20.0, 4.0, 0, 1}, {-26.0, 5.0, 0, 1}, {-25.0, 5.0, 0, 1}, {-17.0, 5.0, 0, 1}, {-16.0, 5.0, 0, 1}, + {-15.0, 5.0, 0, 1}, {-14.0, 5.0, 0, 1}, {-13.0, 5.0, 0, 1}, {-12.0, 5.0, 0, 1}, {-11.0, 5.0, 0, 1}, {-10.0, 5.0, 0, 1}, + {-9.0, 5.0, 0, 1}, {-8.0, 5.0, 0, 1}, {-7.0, 5.0, 0, 1}, {-6.0, 5.0, 0, 1}, {-5.0, 5.0, 0, 1}, {-4.0, 5.0, 0, 1}, + {-3.0, 5.0, 0, 1}, {2.0, 5.0, 0, 1}, {3.0, 5.0, 0, 1}, {4.0, 5.0, 0, 1}, {5.0, 5.0, 0, 1}, {6.0, 5.0, 0, 1}, + {7.0, 5.0, 0, 1}, {8.0, 5.0, 0, 1}, {9.0, 5.0, 0, 1}, {13.0, 5.0, 0, 1}, {14.0, 5.0, 0, 1}, {15.0, 5.0, 0, 1}, + {16.0, 5.0, 0, 1}, {17.0, 5.0, 0, 1}, {18.0, 5.0, 0, 1}, {19.0, 5.0, 0, 1}, {20.0, 5.0, 0, 1}, {-26.0, 6.0, 0, 1}, + {-25.0, 6.0, 0, 1}, {-14.0, 6.0, 0, 1}, {-13.0, 6.0, 0, 1}, {-12.0, 6.0, 0, 1}, {-11.0, 6.0, 0, 1}, {-10.0, 6.0, 0, 1}, + {-9.0, 6.0, 0, 1}, {-8.0, 6.0, 0, 1}, {-7.0, 6.0, 0, 1}, {-6.0, 6.0, 0, 1}, {-5.0, 6.0, 0, 1}, {-4.0, 6.0, 0, 1}, + {-3.0, 6.0, 0, 1}, {-2.0, 6.0, 0, 1}, {2.0, 6.0, 0, 1}, {3.0, 6.0, 0, 1}, {4.0, 6.0, 0, 1}, {5.0, 6.0, 0, 1}, + {6.0, 6.0, 0, 1}, {7.0, 6.0, 0, 1}, {8.0, 6.0, 0, 1}, {9.0, 6.0, 0, 1}, {13.0, 6.0, 0, 1}, {14.0, 6.0, 0, 1}, + {15.0, 6.0, 0, 1}, {16.0, 6.0, 0, 1}, {17.0, 6.0, 0, 1}, {18.0, 6.0, 0, 1}, {19.0, 6.0, 0, 1}, {20.0, 6.0, 0, 1}, + {-25.0, 7.0, 0, 1}, {-24.0, 7.0, 0, 1}, {-11.0, 7.0, 0, 1}, {-10.0, 7.0, 0, 1}, {-9.0, 7.0, 0, 1}, {-8.0, 7.0, 0, 1}, + {-7.0, 7.0, 0, 1}, {-6.0, 7.0, 0, 1}, {-5.0, 7.0, 0, 1}, {-4.0, 7.0, 0, 1}, {-3.0, 7.0, 0, 1}, {-2.0, 7.0, 0, 1}, + {3.0, 7.0, 0, 1}, {4.0, 7.0, 0, 1}, {5.0, 7.0, 0, 1}, {6.0, 7.0, 0, 1}, {7.0, 7.0, 0, 1}, {8.0, 7.0, 0, 1}, + {9.0, 7.0, 0, 1}, {10.0, 7.0, 0, 1}, {14.0, 7.0, 0, 1}, {15.0, 7.0, 0, 1}, {16.0, 7.0, 0, 1}, {17.0, 7.0, 0, 1}, + {18.0, 7.0, 0, 1}, {19.0, 7.0, 0, 1}, {20.0, 7.0, 0, 1}, {21.0, 7.0, 0, 1}, {-25.0, 8.0, 0, 1}, {-24.0, 8.0, 0, 1}, + {-10.0, 8.0, 0, 1}, {-9.0, 8.0, 0, 1}, {-8.0, 8.0, 0, 1}, {-7.0, 8.0, 0, 1}, {-6.0, 8.0, 0, 1}, {-5.0, 8.0, 0, 1}, + {-4.0, 8.0, 0, 1}, {-3.0, 8.0, 0, 1}, {-2.0, 8.0, 0, 1}, {-1.0, 8.0, 0, 1}, {3.0, 8.0, 0, 1}, {4.0, 8.0, 0, 1}, + {5.0, 8.0, 0, 1}, {6.0, 8.0, 0, 1}, {7.0, 8.0, 0, 1}, {8.0, 8.0, 0, 1}, {9.0, 8.0, 0, 1}, {10.0, 8.0, 0, 1}, + {14.0, 8.0, 0, 1}, {15.0, 8.0, 0, 1}, {16.0, 8.0, 0, 1}, {17.0, 8.0, 0, 1}, {18.0, 8.0, 0, 1}, {19.0, 8.0, 0, 1}, + {20.0, 8.0, 0, 1}, {21.0, 8.0, 0, 1}, {-25.0, 9.0, 0, 1}, {-24.0, 9.0, 0, 1}, {-23.0, 9.0, 0, 1}, {-9.0, 9.0, 0, 1}, + {-8.0, 9.0, 0, 1}, {-7.0, 9.0, 0, 1}, {-6.0, 9.0, 0, 1}, {-5.0, 9.0, 0, 1}, {-4.0, 9.0, 0, 1}, {-3.0, 9.0, 0, 1}, + {-2.0, 9.0, 0, 1}, {-1.0, 9.0, 0, 1}, {3.0, 9.0, 0, 1}, {4.0, 9.0, 0, 1}, {5.0, 9.0, 0, 1}, {6.0, 9.0, 0, 1}, + {7.0, 9.0, 0, 1}, {8.0, 9.0, 0, 1}, {9.0, 9.0, 0, 1}, {10.0, 9.0, 0, 1}, {14.0, 9.0, 0, 1}, {15.0, 9.0, 0, 1}, + {16.0, 9.0, 0, 1}, {17.0, 9.0, 0, 1}, {18.0, 9.0, 0, 1}, {19.0, 9.0, 0, 1}, {20.0, 9.0, 0, 1}, {21.0, 9.0, 0, 1}, + {-24.0, 10.0, 0, 1}, {-23.0, 10.0, 0, 1}, {-15.0, 10.0, 0, 1}, {-14.0, 10.0, 0, 1}, {-13.0, 10.0, 0, 1}, {-12.0, 10.0, 0, 1}, + {-8.0, 10.0, 0, 1}, {-7.0, 10.0, 0, 1}, {-6.0, 10.0, 0, 1}, {-5.0, 10.0, 0, 1}, {-4.0, 10.0, 0, 1}, {-3.0, 10.0, 0, 1}, + {-2.0, 10.0, 0, 1}, {-1.0, 10.0, 0, 1}, {4.0, 10.0, 0, 1}, {5.0, 10.0, 0, 1}, {6.0, 10.0, 0, 1}, {7.0, 10.0, 0, 1}, + {8.0, 10.0, 0, 1}, {9.0, 10.0, 0, 1}, {10.0, 10.0, 0, 1}, {14.0, 10.0, 0, 1}, {15.0, 10.0, 0, 1}, {16.0, 10.0, 0, 1}, + {17.0, 10.0, 0, 1}, {18.0, 10.0, 0, 1}, {19.0, 10.0, 0, 1}, {20.0, 10.0, 0, 1}, {21.0, 10.0, 0, 1}, {-24.0, 11.0, 0, 1}, + {-23.0, 11.0, 0, 1}, {-22.0, 11.0, 0, 1}, {-16.0, 11.0, 0, 1}, {-15.0, 11.0, 0, 1}, {-14.0, 11.0, 0, 1}, {-13.0, 11.0, 0, 1}, + {-12.0, 11.0, 0, 1}, {-11.0, 11.0, 0, 1}, {-7.0, 11.0, 0, 1}, {-6.0, 11.0, 0, 1}, {-5.0, 11.0, 0, 1}, {-4.0, 11.0, 0, 1}, + {-3.0, 11.0, 0, 1}, {-2.0, 11.0, 0, 1}, {-1.0, 11.0, 0, 1}, {0.0, 11.0, 0, 1}, {4.0, 11.0, 0, 1}, {5.0, 11.0, 0, 1}, + {6.0, 11.0, 0, 1}, {7.0, 11.0, 0, 1}, {8.0, 11.0, 0, 1}, {9.0, 11.0, 0, 1}, {10.0, 11.0, 0, 1}, {11.0, 11.0, 0, 1}, + {15.0, 11.0, 0, 1}, {16.0, 11.0, 0, 1}, {17.0, 11.0, 0, 1}, {18.0, 11.0, 0, 1}, {19.0, 11.0, 0, 1}, {20.0, 11.0, 0, 1}, + {-23.0, 12.0, 0, 1}, {-22.0, 12.0, 0, 1}, {-17.0, 12.0, 0, 1}, {-16.0, 12.0, 0, 1}, {-15.0, 12.0, 0, 1}, {-14.0, 12.0, 0, 1}, + {-13.0, 12.0, 0, 1}, {-12.0, 12.0, 0, 1}, {-11.0, 12.0, 0, 1}, {-7.0, 12.0, 0, 1}, {-6.0, 12.0, 0, 1}, {-5.0, 12.0, 0, 1}, + {-4.0, 12.0, 0, 1}, {-3.0, 12.0, 0, 1}, {-2.0, 12.0, 0, 1}, {-1.0, 12.0, 0, 1}, {0.0, 12.0, 0, 1}, {4.0, 12.0, 0, 1}, + {5.0, 12.0, 0, 1}, {6.0, 12.0, 0, 1}, {7.0, 12.0, 0, 1}, {8.0, 12.0, 0, 1}, {9.0, 12.0, 0, 1}, {10.0, 12.0, 0, 1}, + {11.0, 12.0, 0, 1}, {15.0, 12.0, 0, 1}, {16.0, 12.0, 0, 1}, {17.0, 12.0, 0, 1}, {18.0, 12.0, 0, 1}, {19.0, 12.0, 0, 1}, + {-23.0, 13.0, 0, 1}, {-22.0, 13.0, 0, 1}, {-21.0, 13.0, 0, 1}, {-17.0, 13.0, 0, 1}, {-16.0, 13.0, 0, 1}, {-15.0, 13.0, 0, 1}, + {-14.0, 13.0, 0, 1}, {-13.0, 13.0, 0, 1}, {-12.0, 13.0, 0, 1}, {-11.0, 13.0, 0, 1}, {-7.0, 13.0, 0, 1}, {-6.0, 13.0, 0, 1}, + {-5.0, 13.0, 0, 1}, {-4.0, 13.0, 0, 1}, {-3.0, 13.0, 0, 1}, {-2.0, 13.0, 0, 1}, {-1.0, 13.0, 0, 1}, {0.0, 13.0, 0, 1}, + {4.0, 13.0, 0, 1}, {5.0, 13.0, 0, 1}, {6.0, 13.0, 0, 1}, {7.0, 13.0, 0, 1}, {8.0, 13.0, 0, 1}, {9.0, 13.0, 0, 1}, + {10.0, 13.0, 0, 1}, {11.0, 13.0, 0, 1}, {15.0, 13.0, 0, 1}, {16.0, 13.0, 0, 1}, {17.0, 13.0, 0, 1}, {18.0, 13.0, 0, 1}, + {19.0, 13.0, 0, 1}, {-22.0, 14.0, 0, 1}, {-21.0, 14.0, 0, 1}, {-20.0, 14.0, 0, 1}, {-17.0, 14.0, 0, 1}, {-16.0, 14.0, 0, 1}, + {-15.0, 14.0, 0, 1}, {-14.0, 14.0, 0, 1}, {-13.0, 14.0, 0, 1}, {-12.0, 14.0, 0, 1}, {-11.0, 14.0, 0, 1}, {-7.0, 14.0, 0, 1}, + {-6.0, 14.0, 0, 1}, {-5.0, 14.0, 0, 1}, {-4.0, 14.0, 0, 1}, {-3.0, 14.0, 0, 1}, {-2.0, 14.0, 0, 1}, {-1.0, 14.0, 0, 1}, + {0.0, 14.0, 0, 1}, {4.0, 14.0, 0, 1}, {5.0, 14.0, 0, 1}, {6.0, 14.0, 0, 1}, {7.0, 14.0, 0, 1}, {8.0, 14.0, 0, 1}, + {9.0, 14.0, 0, 1}, {10.0, 14.0, 0, 1}, {11.0, 14.0, 0, 1}, {15.0, 14.0, 0, 1}, {16.0, 14.0, 0, 1}, {17.0, 14.0, 0, 1}, + {18.0, 14.0, 0, 1}, {-21.0, 15.0, 0, 1}, {-20.0, 15.0, 0, 1}, {-17.0, 15.0, 0, 1}, {-16.0, 15.0, 0, 1}, {-15.0, 15.0, 0, 1}, + {-14.0, 15.0, 0, 1}, {-13.0, 15.0, 0, 1}, {-12.0, 15.0, 0, 1}, {-11.0, 15.0, 0, 1}, {-7.0, 15.0, 0, 1}, {-6.0, 15.0, 0, 1}, + {-5.0, 15.0, 0, 1}, {-4.0, 15.0, 0, 1}, {-3.0, 15.0, 0, 1}, {-2.0, 15.0, 0, 1}, {-1.0, 15.0, 0, 1}, {0.0, 15.0, 0, 1}, + {4.0, 15.0, 0, 1}, {5.0, 15.0, 0, 1}, {6.0, 15.0, 0, 1}, {7.0, 15.0, 0, 1}, {8.0, 15.0, 0, 1}, {9.0, 15.0, 0, 1}, + {10.0, 15.0, 0, 1}, {11.0, 15.0, 0, 1}, {-21.0, 16.0, 0, 1}, {-20.0, 16.0, 0, 1}, {-19.0, 16.0, 0, 1}, {-16.0, 16.0, 0, 1}, + {-15.0, 16.0, 0, 1}, {-14.0, 16.0, 0, 1}, {-13.0, 16.0, 0, 1}, {-12.0, 16.0, 0, 1}, {-7.0, 16.0, 0, 1}, {-6.0, 16.0, 0, 1}, + {-5.0, 16.0, 0, 1}, {-4.0, 16.0, 0, 1}, {-3.0, 16.0, 0, 1}, {-2.0, 16.0, 0, 1}, {-1.0, 16.0, 0, 1}, {0.0, 16.0, 0, 1}, + {4.0, 16.0, 0, 1}, {5.0, 16.0, 0, 1}, {6.0, 16.0, 0, 1}, {7.0, 16.0, 0, 1}, {8.0, 16.0, 0, 1}, {9.0, 16.0, 0, 1}, + {10.0, 16.0, 0, 1}, {11.0, 16.0, 0, 1}, {-20.0, 17.0, 0, 1}, {-19.0, 17.0, 0, 1}, {-18.0, 17.0, 0, 1}, {-7.0, 17.0, 0, 1}, + {-6.0, 17.0, 0, 1}, {-5.0, 17.0, 0, 1}, {-4.0, 17.0, 0, 1}, {-3.0, 17.0, 0, 1}, {-2.0, 17.0, 0, 1}, {-1.0, 17.0, 0, 1}, + {0.0, 17.0, 0, 1}, {4.0, 17.0, 0, 1}, {5.0, 17.0, 0, 1}, {6.0, 17.0, 0, 1}, {7.0, 17.0, 0, 1}, {8.0, 17.0, 0, 1}, + {9.0, 17.0, 0, 1}, {10.0, 17.0, 0, 1}, {11.0, 17.0, 0, 1}, {19.0, 17.0, 0, 1}, {-19.0, 18.0, 0, 1}, {-18.0, 18.0, 0, 1}, + {-17.0, 18.0, 0, 1}, {-7.0, 18.0, 0, 1}, {-6.0, 18.0, 0, 1}, {-5.0, 18.0, 0, 1}, {-4.0, 18.0, 0, 1}, {-3.0, 18.0, 0, 1}, + {-2.0, 18.0, 0, 1}, {-1.0, 18.0, 0, 1}, {0.0, 18.0, 0, 1}, {4.0, 18.0, 0, 1}, {5.0, 18.0, 0, 1}, {6.0, 18.0, 0, 1}, + {7.0, 18.0, 0, 1}, {8.0, 18.0, 0, 1}, {9.0, 18.0, 0, 1}, {10.0, 18.0, 0, 1}, {11.0, 18.0, 0, 1}, {18.0, 18.0, 0, 1}, + {19.0, 18.0, 0, 1}, {20.0, 18.0, 0, 1}, {-18.0, 19.0, 0, 1}, {-17.0, 19.0, 0, 1}, {-16.0, 19.0, 0, 1}, {-15.0, 19.0, 0, 1}, + {-8.0, 19.0, 0, 1}, {-7.0, 19.0, 0, 1}, {-6.0, 19.0, 0, 1}, {-5.0, 19.0, 0, 1}, {-4.0, 19.0, 0, 1}, {-3.0, 19.0, 0, 1}, + {-2.0, 19.0, 0, 1}, {-1.0, 19.0, 0, 1}, {4.0, 19.0, 0, 1}, {5.0, 19.0, 0, 1}, {6.0, 19.0, 0, 1}, {7.0, 19.0, 0, 1}, + {8.0, 19.0, 0, 1}, {9.0, 19.0, 0, 1}, {10.0, 19.0, 0, 1}, {17.0, 19.0, 0, 1}, {18.0, 19.0, 0, 1}, {19.0, 19.0, 0, 1}, + {-17.0, 20.0, 0, 1}, {-16.0, 20.0, 0, 1}, {-15.0, 20.0, 0, 1}, {-14.0, 20.0, 0, 1}, {-7.0, 20.0, 0, 1}, {-6.0, 20.0, 0, 1}, + {-5.0, 20.0, 0, 1}, {-4.0, 20.0, 0, 1}, {-3.0, 20.0, 0, 1}, {-2.0, 20.0, 0, 1}, {-1.0, 20.0, 0, 1}, {4.0, 20.0, 0, 1}, + {5.0, 20.0, 0, 1}, {6.0, 20.0, 0, 1}, {7.0, 20.0, 0, 1}, {8.0, 20.0, 0, 1}, {9.0, 20.0, 0, 1}, {16.0, 20.0, 0, 1}, + {17.0, 20.0, 0, 1}, {18.0, 20.0, 0, 1}, {-15.0, 21.0, 0, 1}, {-14.0, 21.0, 0, 1}, {-13.0, 21.0, 0, 1}, {-12.0, 21.0, 0, 1}, + {-5.0, 21.0, 0, 1}, {-4.0, 21.0, 0, 1}, {-3.0, 21.0, 0, 1}, {-2.0, 21.0, 0, 1}, {-1.0, 21.0, 0, 1}, {14.0, 21.0, 0, 1}, + {15.0, 21.0, 0, 1}, {16.0, 21.0, 0, 1}, {17.0, 21.0, 0, 1}, {-14.0, 22.0, 0, 1}, {-13.0, 22.0, 0, 1}, {-12.0, 22.0, 0, 1}, + {-11.0, 22.0, 0, 1}, {-10.0, 22.0, 0, 1}, {12.0, 22.0, 0, 1}, {13.0, 22.0, 0, 1}, {14.0, 22.0, 0, 1}, {15.0, 22.0, 0, 1}, + {-12.0, 23.0, 0, 1}, {-11.0, 23.0, 0, 1}, {-10.0, 23.0, 0, 1}, {-9.0, 23.0, 0, 1}, {-8.0, 23.0, 0, 1}, {9.0, 23.0, 0, 1}, + {10.0, 23.0, 0, 1}, {11.0, 23.0, 0, 1}, {12.0, 23.0, 0, 1}, {13.0, 23.0, 0, 1}, {14.0, 23.0, 0, 1}, {-10.0, 24.0, 0, 1}, + {-9.0, 24.0, 0, 1}, {-8.0, 24.0, 0, 1}, {-7.0, 24.0, 0, 1}, {-6.0, 24.0, 0, 1}, {-5.0, 24.0, 0, 1}, {-4.0, 24.0, 0, 1}, + {-3.0, 24.0, 0, 1}, {5.0, 24.0, 0, 1}, {6.0, 24.0, 0, 1}, {7.0, 24.0, 0, 1}, {8.0, 24.0, 0, 1}, {9.0, 24.0, 0, 1}, + {10.0, 24.0, 0, 1}, {11.0, 24.0, 0, 1}, {12.0, 24.0, 0, 1}, {-7.0, 25.0, 0, 1}, {-6.0, 25.0, 0, 1}, {-5.0, 25.0, 0, 1}, + {-4.0, 25.0, 0, 1}, {-3.0, 25.0, 0, 1}, {-2.0, 25.0, 0, 1}, {-1.0, 25.0, 0, 1}, {0.0, 25.0, 0, 1}, {1.0, 25.0, 0, 1}, + {2.0, 25.0, 0, 1}, {3.0, 25.0, 0, 1}, {4.0, 25.0, 0, 1}, {5.0, 25.0, 0, 1}, {6.0, 25.0, 0, 1}, {7.0, 25.0, 0, 1}, + {8.0, 25.0, 0, 1}, {9.0, 25.0, 0, 1}, {-3.0, 26.0, 0, 1}, {-2.0, 26.0, 0, 1}, {-1.0, 26.0, 0, 1}, {0.0, 26.0, 0, 1}, + {1.0, 26.0, 0, 1}, {2.0, 26.0, 0, 1}, {3.0, 26.0, 0, 1}, {4.0, 26.0, 0, 1}, {5.0, 26.0, 0, 1} +}; + +#endif // CONFIG_3D_OBJECT_ESP_LOGO diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.h new file mode 100644 index 0000000..87a43b0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.h @@ -0,0 +1,21 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t image_bmp_array_esp_logo[512]; +extern const float image_3d_matrix_esp_logo[1427][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.c new file mode 100644 index 0000000..6cacfea --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.c @@ -0,0 +1,252 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "esp_text.h" + +const uint8_t image_bmp_array_esp_text[384] = { + + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3f, 0xf8, 0x7f, 0xf1, 0xff, 0xe1, 0xff, 0xe0, 0x7f, 0xe0, 0xff, 0xc1, 0xff, 0xc7, 0x07, 0xfe, + 0x7f, 0xf8, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xe1, 0xff, 0xc3, 0xff, 0xc7, 0x0f, 0xfe, + 0x7f, 0xf8, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xe3, 0xff, 0xc3, 0xff, 0xc7, 0x1f, 0xfe, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x79, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1e, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x7f, 0xf0, 0xff, 0xe1, 0xe0, 0x79, 0xe0, 0x71, 0xff, 0xc3, 0xff, 0x83, 0xff, 0x87, 0x1f, 0xfc, + 0x7f, 0xf0, 0xff, 0xf1, 0xff, 0xf9, 0xff, 0xf1, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc7, 0x1f, 0xfc, + 0x7f, 0xf0, 0x7f, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xc1, 0xff, 0xe1, 0xff, 0xc7, 0x1f, 0xfc, + 0x70, 0x00, 0x00, 0x79, 0xff, 0xf1, 0xff, 0xe1, 0xc0, 0x00, 0x01, 0xe0, 0x03, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xff, 0xc1, 0xe1, 0xe1, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0xe1, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x7f, 0xf8, 0xff, 0xf1, 0xe0, 0x01, 0xe0, 0x79, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xc7, 0x1c, 0x00, + 0x7f, 0xf8, 0xff, 0xf1, 0xe0, 0x01, 0xe0, 0x38, 0xff, 0xe3, 0xff, 0xc7, 0xff, 0xc7, 0x1c, 0x00, + 0x3f, 0xf8, 0xff, 0xe1, 0xe0, 0x01, 0xe0, 0x38, 0xff, 0xe3, 0xff, 0x87, 0xff, 0x87, 0x1c, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + +}; + +const float image_3d_array_esp_text[1271][4] = { + + {-62.0, -11.0, 0, 1}, {-61.0, -11.0, 0, 1}, {-60.0, -11.0, 0, 1}, {-59.0, -11.0, 0, 1}, {-58.0, -11.0, 0, 1}, {-57.0, -11.0, 0, 1}, + {-56.0, -11.0, 0, 1}, {-55.0, -11.0, 0, 1}, {-54.0, -11.0, 0, 1}, {-53.0, -11.0, 0, 1}, {-52.0, -11.0, 0, 1}, {-47.0, -11.0, 0, 1}, + {-46.0, -11.0, 0, 1}, {-45.0, -11.0, 0, 1}, {-44.0, -11.0, 0, 1}, {-43.0, -11.0, 0, 1}, {-42.0, -11.0, 0, 1}, {-41.0, -11.0, 0, 1}, + {-40.0, -11.0, 0, 1}, {-39.0, -11.0, 0, 1}, {-38.0, -11.0, 0, 1}, {-37.0, -11.0, 0, 1}, {-33.0, -11.0, 0, 1}, {-32.0, -11.0, 0, 1}, + {-31.0, -11.0, 0, 1}, {-30.0, -11.0, 0, 1}, {-29.0, -11.0, 0, 1}, {-28.0, -11.0, 0, 1}, {-27.0, -11.0, 0, 1}, {-26.0, -11.0, 0, 1}, + {-25.0, -11.0, 0, 1}, {-24.0, -11.0, 0, 1}, {-23.0, -11.0, 0, 1}, {-22.0, -11.0, 0, 1}, {-17.0, -11.0, 0, 1}, {-16.0, -11.0, 0, 1}, + {-15.0, -11.0, 0, 1}, {-14.0, -11.0, 0, 1}, {-13.0, -11.0, 0, 1}, {-12.0, -11.0, 0, 1}, {-11.0, -11.0, 0, 1}, {-10.0, -11.0, 0, 1}, + {-9.0, -11.0, 0, 1}, {-8.0, -11.0, 0, 1}, {-7.0, -11.0, 0, 1}, {-6.0, -11.0, 0, 1}, {1.0, -11.0, 0, 1}, {2.0, -11.0, 0, 1}, + {3.0, -11.0, 0, 1}, {4.0, -11.0, 0, 1}, {5.0, -11.0, 0, 1}, {6.0, -11.0, 0, 1}, {7.0, -11.0, 0, 1}, {8.0, -11.0, 0, 1}, + {9.0, -11.0, 0, 1}, {10.0, -11.0, 0, 1}, {16.0, -11.0, 0, 1}, {17.0, -11.0, 0, 1}, {18.0, -11.0, 0, 1}, {19.0, -11.0, 0, 1}, + {20.0, -11.0, 0, 1}, {21.0, -11.0, 0, 1}, {22.0, -11.0, 0, 1}, {23.0, -11.0, 0, 1}, {24.0, -11.0, 0, 1}, {25.0, -11.0, 0, 1}, + {31.0, -11.0, 0, 1}, {32.0, -11.0, 0, 1}, {33.0, -11.0, 0, 1}, {34.0, -11.0, 0, 1}, {35.0, -11.0, 0, 1}, {36.0, -11.0, 0, 1}, + {37.0, -11.0, 0, 1}, {38.0, -11.0, 0, 1}, {39.0, -11.0, 0, 1}, {40.0, -11.0, 0, 1}, {41.0, -11.0, 0, 1}, {45.0, -11.0, 0, 1}, + {46.0, -11.0, 0, 1}, {47.0, -11.0, 0, 1}, {53.0, -11.0, 0, 1}, {54.0, -11.0, 0, 1}, {55.0, -11.0, 0, 1}, {56.0, -11.0, 0, 1}, + {57.0, -11.0, 0, 1}, {58.0, -11.0, 0, 1}, {59.0, -11.0, 0, 1}, {60.0, -11.0, 0, 1}, {61.0, -11.0, 0, 1}, {62.0, -11.0, 0, 1}, + {-63.0, -10.0, 0, 1}, {-62.0, -10.0, 0, 1}, {-61.0, -10.0, 0, 1}, {-60.0, -10.0, 0, 1}, {-59.0, -10.0, 0, 1}, {-58.0, -10.0, 0, 1}, + {-57.0, -10.0, 0, 1}, {-56.0, -10.0, 0, 1}, {-55.0, -10.0, 0, 1}, {-54.0, -10.0, 0, 1}, {-53.0, -10.0, 0, 1}, {-52.0, -10.0, 0, 1}, + {-48.0, -10.0, 0, 1}, {-47.0, -10.0, 0, 1}, {-46.0, -10.0, 0, 1}, {-45.0, -10.0, 0, 1}, {-44.0, -10.0, 0, 1}, {-43.0, -10.0, 0, 1}, + {-42.0, -10.0, 0, 1}, {-41.0, -10.0, 0, 1}, {-40.0, -10.0, 0, 1}, {-39.0, -10.0, 0, 1}, {-38.0, -10.0, 0, 1}, {-37.0, -10.0, 0, 1}, + {-33.0, -10.0, 0, 1}, {-32.0, -10.0, 0, 1}, {-31.0, -10.0, 0, 1}, {-30.0, -10.0, 0, 1}, {-29.0, -10.0, 0, 1}, {-28.0, -10.0, 0, 1}, + {-27.0, -10.0, 0, 1}, {-26.0, -10.0, 0, 1}, {-25.0, -10.0, 0, 1}, {-24.0, -10.0, 0, 1}, {-23.0, -10.0, 0, 1}, {-22.0, -10.0, 0, 1}, + {-21.0, -10.0, 0, 1}, {-17.0, -10.0, 0, 1}, {-16.0, -10.0, 0, 1}, {-15.0, -10.0, 0, 1}, {-14.0, -10.0, 0, 1}, {-13.0, -10.0, 0, 1}, + {-12.0, -10.0, 0, 1}, {-11.0, -10.0, 0, 1}, {-10.0, -10.0, 0, 1}, {-9.0, -10.0, 0, 1}, {-8.0, -10.0, 0, 1}, {-7.0, -10.0, 0, 1}, + {-6.0, -10.0, 0, 1}, {-5.0, -10.0, 0, 1}, {0.0, -10.0, 0, 1}, {1.0, -10.0, 0, 1}, {2.0, -10.0, 0, 1}, {3.0, -10.0, 0, 1}, + {4.0, -10.0, 0, 1}, {5.0, -10.0, 0, 1}, {6.0, -10.0, 0, 1}, {7.0, -10.0, 0, 1}, {8.0, -10.0, 0, 1}, {9.0, -10.0, 0, 1}, + {10.0, -10.0, 0, 1}, {15.0, -10.0, 0, 1}, {16.0, -10.0, 0, 1}, {17.0, -10.0, 0, 1}, {18.0, -10.0, 0, 1}, {19.0, -10.0, 0, 1}, + {20.0, -10.0, 0, 1}, {21.0, -10.0, 0, 1}, {22.0, -10.0, 0, 1}, {23.0, -10.0, 0, 1}, {24.0, -10.0, 0, 1}, {25.0, -10.0, 0, 1}, + {30.0, -10.0, 0, 1}, {31.0, -10.0, 0, 1}, {32.0, -10.0, 0, 1}, {33.0, -10.0, 0, 1}, {34.0, -10.0, 0, 1}, {35.0, -10.0, 0, 1}, + {36.0, -10.0, 0, 1}, {37.0, -10.0, 0, 1}, {38.0, -10.0, 0, 1}, {39.0, -10.0, 0, 1}, {40.0, -10.0, 0, 1}, {41.0, -10.0, 0, 1}, + {45.0, -10.0, 0, 1}, {46.0, -10.0, 0, 1}, {47.0, -10.0, 0, 1}, {52.0, -10.0, 0, 1}, {53.0, -10.0, 0, 1}, {54.0, -10.0, 0, 1}, + {55.0, -10.0, 0, 1}, {56.0, -10.0, 0, 1}, {57.0, -10.0, 0, 1}, {58.0, -10.0, 0, 1}, {59.0, -10.0, 0, 1}, {60.0, -10.0, 0, 1}, + {61.0, -10.0, 0, 1}, {62.0, -10.0, 0, 1}, {-63.0, -9.0, 0, 1}, {-62.0, -9.0, 0, 1}, {-61.0, -9.0, 0, 1}, {-60.0, -9.0, 0, 1}, + {-59.0, -9.0, 0, 1}, {-58.0, -9.0, 0, 1}, {-57.0, -9.0, 0, 1}, {-56.0, -9.0, 0, 1}, {-55.0, -9.0, 0, 1}, {-54.0, -9.0, 0, 1}, + {-53.0, -9.0, 0, 1}, {-52.0, -9.0, 0, 1}, {-48.0, -9.0, 0, 1}, {-47.0, -9.0, 0, 1}, {-46.0, -9.0, 0, 1}, {-45.0, -9.0, 0, 1}, + {-44.0, -9.0, 0, 1}, {-43.0, -9.0, 0, 1}, {-42.0, -9.0, 0, 1}, {-41.0, -9.0, 0, 1}, {-40.0, -9.0, 0, 1}, {-39.0, -9.0, 0, 1}, + {-38.0, -9.0, 0, 1}, {-37.0, -9.0, 0, 1}, {-33.0, -9.0, 0, 1}, {-32.0, -9.0, 0, 1}, {-31.0, -9.0, 0, 1}, {-30.0, -9.0, 0, 1}, + {-29.0, -9.0, 0, 1}, {-28.0, -9.0, 0, 1}, {-27.0, -9.0, 0, 1}, {-26.0, -9.0, 0, 1}, {-25.0, -9.0, 0, 1}, {-24.0, -9.0, 0, 1}, + {-23.0, -9.0, 0, 1}, {-22.0, -9.0, 0, 1}, {-21.0, -9.0, 0, 1}, {-17.0, -9.0, 0, 1}, {-16.0, -9.0, 0, 1}, {-15.0, -9.0, 0, 1}, + {-14.0, -9.0, 0, 1}, {-13.0, -9.0, 0, 1}, {-12.0, -9.0, 0, 1}, {-11.0, -9.0, 0, 1}, {-10.0, -9.0, 0, 1}, {-9.0, -9.0, 0, 1}, + {-8.0, -9.0, 0, 1}, {-7.0, -9.0, 0, 1}, {-6.0, -9.0, 0, 1}, {-5.0, -9.0, 0, 1}, {-1.0, -9.0, 0, 1}, {0.0, -9.0, 0, 1}, + {1.0, -9.0, 0, 1}, {2.0, -9.0, 0, 1}, {3.0, -9.0, 0, 1}, {4.0, -9.0, 0, 1}, {5.0, -9.0, 0, 1}, {6.0, -9.0, 0, 1}, + {7.0, -9.0, 0, 1}, {8.0, -9.0, 0, 1}, {9.0, -9.0, 0, 1}, {10.0, -9.0, 0, 1}, {14.0, -9.0, 0, 1}, {15.0, -9.0, 0, 1}, + {16.0, -9.0, 0, 1}, {17.0, -9.0, 0, 1}, {18.0, -9.0, 0, 1}, {19.0, -9.0, 0, 1}, {20.0, -9.0, 0, 1}, {21.0, -9.0, 0, 1}, + {22.0, -9.0, 0, 1}, {23.0, -9.0, 0, 1}, {24.0, -9.0, 0, 1}, {25.0, -9.0, 0, 1}, {30.0, -9.0, 0, 1}, {31.0, -9.0, 0, 1}, + {32.0, -9.0, 0, 1}, {33.0, -9.0, 0, 1}, {34.0, -9.0, 0, 1}, {35.0, -9.0, 0, 1}, {36.0, -9.0, 0, 1}, {37.0, -9.0, 0, 1}, + {38.0, -9.0, 0, 1}, {39.0, -9.0, 0, 1}, {40.0, -9.0, 0, 1}, {41.0, -9.0, 0, 1}, {45.0, -9.0, 0, 1}, {46.0, -9.0, 0, 1}, + {47.0, -9.0, 0, 1}, {51.0, -9.0, 0, 1}, {52.0, -9.0, 0, 1}, {53.0, -9.0, 0, 1}, {54.0, -9.0, 0, 1}, {55.0, -9.0, 0, 1}, + {56.0, -9.0, 0, 1}, {57.0, -9.0, 0, 1}, {58.0, -9.0, 0, 1}, {59.0, -9.0, 0, 1}, {60.0, -9.0, 0, 1}, {61.0, -9.0, 0, 1}, + {62.0, -9.0, 0, 1}, {-63.0, -8.0, 0, 1}, {-62.0, -8.0, 0, 1}, {-61.0, -8.0, 0, 1}, {-48.0, -8.0, 0, 1}, {-47.0, -8.0, 0, 1}, + {-46.0, -8.0, 0, 1}, {-33.0, -8.0, 0, 1}, {-32.0, -8.0, 0, 1}, {-31.0, -8.0, 0, 1}, {-30.0, -8.0, 0, 1}, {-23.0, -8.0, 0, 1}, + {-22.0, -8.0, 0, 1}, {-21.0, -8.0, 0, 1}, {-20.0, -8.0, 0, 1}, {-17.0, -8.0, 0, 1}, {-16.0, -8.0, 0, 1}, {-15.0, -8.0, 0, 1}, + {-14.0, -8.0, 0, 1}, {-7.0, -8.0, 0, 1}, {-6.0, -8.0, 0, 1}, {-5.0, -8.0, 0, 1}, {-1.0, -8.0, 0, 1}, {0.0, -8.0, 0, 1}, + {1.0, -8.0, 0, 1}, {14.0, -8.0, 0, 1}, {15.0, -8.0, 0, 1}, {16.0, -8.0, 0, 1}, {29.0, -8.0, 0, 1}, {30.0, -8.0, 0, 1}, + {31.0, -8.0, 0, 1}, {32.0, -8.0, 0, 1}, {45.0, -8.0, 0, 1}, {46.0, -8.0, 0, 1}, {47.0, -8.0, 0, 1}, {51.0, -8.0, 0, 1}, + {52.0, -8.0, 0, 1}, {53.0, -8.0, 0, 1}, {54.0, -8.0, 0, 1}, {-63.0, -7.0, 0, 1}, {-62.0, -7.0, 0, 1}, {-61.0, -7.0, 0, 1}, + {-48.0, -7.0, 0, 1}, {-47.0, -7.0, 0, 1}, {-46.0, -7.0, 0, 1}, {-33.0, -7.0, 0, 1}, {-32.0, -7.0, 0, 1}, {-31.0, -7.0, 0, 1}, + {-30.0, -7.0, 0, 1}, {-22.0, -7.0, 0, 1}, {-21.0, -7.0, 0, 1}, {-20.0, -7.0, 0, 1}, {-17.0, -7.0, 0, 1}, {-16.0, -7.0, 0, 1}, + {-15.0, -7.0, 0, 1}, {-14.0, -7.0, 0, 1}, {-7.0, -7.0, 0, 1}, {-6.0, -7.0, 0, 1}, {-5.0, -7.0, 0, 1}, {-1.0, -7.0, 0, 1}, + {0.0, -7.0, 0, 1}, {1.0, -7.0, 0, 1}, {14.0, -7.0, 0, 1}, {15.0, -7.0, 0, 1}, {16.0, -7.0, 0, 1}, {29.0, -7.0, 0, 1}, + {30.0, -7.0, 0, 1}, {31.0, -7.0, 0, 1}, {32.0, -7.0, 0, 1}, {45.0, -7.0, 0, 1}, {46.0, -7.0, 0, 1}, {47.0, -7.0, 0, 1}, + {51.0, -7.0, 0, 1}, {52.0, -7.0, 0, 1}, {53.0, -7.0, 0, 1}, {-63.0, -6.0, 0, 1}, {-62.0, -6.0, 0, 1}, {-61.0, -6.0, 0, 1}, + {-48.0, -6.0, 0, 1}, {-47.0, -6.0, 0, 1}, {-46.0, -6.0, 0, 1}, {-33.0, -6.0, 0, 1}, {-32.0, -6.0, 0, 1}, {-31.0, -6.0, 0, 1}, + {-30.0, -6.0, 0, 1}, {-22.0, -6.0, 0, 1}, {-21.0, -6.0, 0, 1}, {-20.0, -6.0, 0, 1}, {-17.0, -6.0, 0, 1}, {-16.0, -6.0, 0, 1}, + {-15.0, -6.0, 0, 1}, {-14.0, -6.0, 0, 1}, {-7.0, -6.0, 0, 1}, {-6.0, -6.0, 0, 1}, {-5.0, -6.0, 0, 1}, {-1.0, -6.0, 0, 1}, + {0.0, -6.0, 0, 1}, {1.0, -6.0, 0, 1}, {14.0, -6.0, 0, 1}, {15.0, -6.0, 0, 1}, {16.0, -6.0, 0, 1}, {29.0, -6.0, 0, 1}, + {30.0, -6.0, 0, 1}, {31.0, -6.0, 0, 1}, {32.0, -6.0, 0, 1}, {45.0, -6.0, 0, 1}, {46.0, -6.0, 0, 1}, {47.0, -6.0, 0, 1}, + {51.0, -6.0, 0, 1}, {52.0, -6.0, 0, 1}, {53.0, -6.0, 0, 1}, {-63.0, -5.0, 0, 1}, {-62.0, -5.0, 0, 1}, {-61.0, -5.0, 0, 1}, + {-48.0, -5.0, 0, 1}, {-47.0, -5.0, 0, 1}, {-46.0, -5.0, 0, 1}, {-33.0, -5.0, 0, 1}, {-32.0, -5.0, 0, 1}, {-31.0, -5.0, 0, 1}, + {-30.0, -5.0, 0, 1}, {-22.0, -5.0, 0, 1}, {-21.0, -5.0, 0, 1}, {-20.0, -5.0, 0, 1}, {-17.0, -5.0, 0, 1}, {-16.0, -5.0, 0, 1}, + {-15.0, -5.0, 0, 1}, {-14.0, -5.0, 0, 1}, {-7.0, -5.0, 0, 1}, {-6.0, -5.0, 0, 1}, {-5.0, -5.0, 0, 1}, {-1.0, -5.0, 0, 1}, + {0.0, -5.0, 0, 1}, {1.0, -5.0, 0, 1}, {14.0, -5.0, 0, 1}, {15.0, -5.0, 0, 1}, {16.0, -5.0, 0, 1}, {29.0, -5.0, 0, 1}, + {30.0, -5.0, 0, 1}, {31.0, -5.0, 0, 1}, {32.0, -5.0, 0, 1}, {45.0, -5.0, 0, 1}, {46.0, -5.0, 0, 1}, {47.0, -5.0, 0, 1}, + {51.0, -5.0, 0, 1}, {52.0, -5.0, 0, 1}, {53.0, -5.0, 0, 1}, {-63.0, -4.0, 0, 1}, {-62.0, -4.0, 0, 1}, {-61.0, -4.0, 0, 1}, + {-48.0, -4.0, 0, 1}, {-47.0, -4.0, 0, 1}, {-46.0, -4.0, 0, 1}, {-33.0, -4.0, 0, 1}, {-32.0, -4.0, 0, 1}, {-31.0, -4.0, 0, 1}, + {-30.0, -4.0, 0, 1}, {-22.0, -4.0, 0, 1}, {-21.0, -4.0, 0, 1}, {-20.0, -4.0, 0, 1}, {-17.0, -4.0, 0, 1}, {-16.0, -4.0, 0, 1}, + {-15.0, -4.0, 0, 1}, {-14.0, -4.0, 0, 1}, {-7.0, -4.0, 0, 1}, {-6.0, -4.0, 0, 1}, {-5.0, -4.0, 0, 1}, {-1.0, -4.0, 0, 1}, + {0.0, -4.0, 0, 1}, {1.0, -4.0, 0, 1}, {14.0, -4.0, 0, 1}, {15.0, -4.0, 0, 1}, {16.0, -4.0, 0, 1}, {29.0, -4.0, 0, 1}, + {30.0, -4.0, 0, 1}, {31.0, -4.0, 0, 1}, {32.0, -4.0, 0, 1}, {45.0, -4.0, 0, 1}, {46.0, -4.0, 0, 1}, {47.0, -4.0, 0, 1}, + {51.0, -4.0, 0, 1}, {52.0, -4.0, 0, 1}, {53.0, -4.0, 0, 1}, {-63.0, -3.0, 0, 1}, {-62.0, -3.0, 0, 1}, {-61.0, -3.0, 0, 1}, + {-48.0, -3.0, 0, 1}, {-47.0, -3.0, 0, 1}, {-46.0, -3.0, 0, 1}, {-33.0, -3.0, 0, 1}, {-32.0, -3.0, 0, 1}, {-31.0, -3.0, 0, 1}, + {-30.0, -3.0, 0, 1}, {-22.0, -3.0, 0, 1}, {-21.0, -3.0, 0, 1}, {-20.0, -3.0, 0, 1}, {-17.0, -3.0, 0, 1}, {-16.0, -3.0, 0, 1}, + {-15.0, -3.0, 0, 1}, {-14.0, -3.0, 0, 1}, {-7.0, -3.0, 0, 1}, {-6.0, -3.0, 0, 1}, {-5.0, -3.0, 0, 1}, {-1.0, -3.0, 0, 1}, + {0.0, -3.0, 0, 1}, {1.0, -3.0, 0, 1}, {14.0, -3.0, 0, 1}, {15.0, -3.0, 0, 1}, {16.0, -3.0, 0, 1}, {29.0, -3.0, 0, 1}, + {30.0, -3.0, 0, 1}, {31.0, -3.0, 0, 1}, {32.0, -3.0, 0, 1}, {45.0, -3.0, 0, 1}, {46.0, -3.0, 0, 1}, {47.0, -3.0, 0, 1}, + {51.0, -3.0, 0, 1}, {52.0, -3.0, 0, 1}, {53.0, -3.0, 0, 1}, {-63.0, -2.0, 0, 1}, {-62.0, -2.0, 0, 1}, {-61.0, -2.0, 0, 1}, + {-60.0, -2.0, 0, 1}, {-59.0, -2.0, 0, 1}, {-58.0, -2.0, 0, 1}, {-57.0, -2.0, 0, 1}, {-56.0, -2.0, 0, 1}, {-55.0, -2.0, 0, 1}, + {-54.0, -2.0, 0, 1}, {-53.0, -2.0, 0, 1}, {-48.0, -2.0, 0, 1}, {-47.0, -2.0, 0, 1}, {-46.0, -2.0, 0, 1}, {-45.0, -2.0, 0, 1}, + {-44.0, -2.0, 0, 1}, {-43.0, -2.0, 0, 1}, {-42.0, -2.0, 0, 1}, {-41.0, -2.0, 0, 1}, {-40.0, -2.0, 0, 1}, {-39.0, -2.0, 0, 1}, + {-38.0, -2.0, 0, 1}, {-33.0, -2.0, 0, 1}, {-32.0, -2.0, 0, 1}, {-31.0, -2.0, 0, 1}, {-30.0, -2.0, 0, 1}, {-23.0, -2.0, 0, 1}, + {-22.0, -2.0, 0, 1}, {-21.0, -2.0, 0, 1}, {-20.0, -2.0, 0, 1}, {-17.0, -2.0, 0, 1}, {-16.0, -2.0, 0, 1}, {-15.0, -2.0, 0, 1}, + {-14.0, -2.0, 0, 1}, {-7.0, -2.0, 0, 1}, {-6.0, -2.0, 0, 1}, {-5.0, -2.0, 0, 1}, {-1.0, -2.0, 0, 1}, {0.0, -2.0, 0, 1}, + {1.0, -2.0, 0, 1}, {2.0, -2.0, 0, 1}, {3.0, -2.0, 0, 1}, {4.0, -2.0, 0, 1}, {5.0, -2.0, 0, 1}, {6.0, -2.0, 0, 1}, + {7.0, -2.0, 0, 1}, {8.0, -2.0, 0, 1}, {9.0, -2.0, 0, 1}, {14.0, -2.0, 0, 1}, {15.0, -2.0, 0, 1}, {16.0, -2.0, 0, 1}, + {17.0, -2.0, 0, 1}, {18.0, -2.0, 0, 1}, {19.0, -2.0, 0, 1}, {20.0, -2.0, 0, 1}, {21.0, -2.0, 0, 1}, {22.0, -2.0, 0, 1}, + {23.0, -2.0, 0, 1}, {24.0, -2.0, 0, 1}, {30.0, -2.0, 0, 1}, {31.0, -2.0, 0, 1}, {32.0, -2.0, 0, 1}, {33.0, -2.0, 0, 1}, + {34.0, -2.0, 0, 1}, {35.0, -2.0, 0, 1}, {36.0, -2.0, 0, 1}, {37.0, -2.0, 0, 1}, {38.0, -2.0, 0, 1}, {39.0, -2.0, 0, 1}, + {40.0, -2.0, 0, 1}, {45.0, -2.0, 0, 1}, {46.0, -2.0, 0, 1}, {47.0, -2.0, 0, 1}, {51.0, -2.0, 0, 1}, {52.0, -2.0, 0, 1}, + {53.0, -2.0, 0, 1}, {54.0, -2.0, 0, 1}, {55.0, -2.0, 0, 1}, {56.0, -2.0, 0, 1}, {57.0, -2.0, 0, 1}, {58.0, -2.0, 0, 1}, + {59.0, -2.0, 0, 1}, {60.0, -2.0, 0, 1}, {61.0, -2.0, 0, 1}, {-63.0, -1.0, 0, 1}, {-62.0, -1.0, 0, 1}, {-61.0, -1.0, 0, 1}, + {-60.0, -1.0, 0, 1}, {-59.0, -1.0, 0, 1}, {-58.0, -1.0, 0, 1}, {-57.0, -1.0, 0, 1}, {-56.0, -1.0, 0, 1}, {-55.0, -1.0, 0, 1}, + {-54.0, -1.0, 0, 1}, {-53.0, -1.0, 0, 1}, {-48.0, -1.0, 0, 1}, {-47.0, -1.0, 0, 1}, {-46.0, -1.0, 0, 1}, {-45.0, -1.0, 0, 1}, + {-44.0, -1.0, 0, 1}, {-43.0, -1.0, 0, 1}, {-42.0, -1.0, 0, 1}, {-41.0, -1.0, 0, 1}, {-40.0, -1.0, 0, 1}, {-39.0, -1.0, 0, 1}, + {-38.0, -1.0, 0, 1}, {-37.0, -1.0, 0, 1}, {-33.0, -1.0, 0, 1}, {-32.0, -1.0, 0, 1}, {-31.0, -1.0, 0, 1}, {-30.0, -1.0, 0, 1}, + {-29.0, -1.0, 0, 1}, {-28.0, -1.0, 0, 1}, {-27.0, -1.0, 0, 1}, {-26.0, -1.0, 0, 1}, {-25.0, -1.0, 0, 1}, {-24.0, -1.0, 0, 1}, + {-23.0, -1.0, 0, 1}, {-22.0, -1.0, 0, 1}, {-21.0, -1.0, 0, 1}, {-20.0, -1.0, 0, 1}, {-17.0, -1.0, 0, 1}, {-16.0, -1.0, 0, 1}, + {-15.0, -1.0, 0, 1}, {-14.0, -1.0, 0, 1}, {-13.0, -1.0, 0, 1}, {-12.0, -1.0, 0, 1}, {-11.0, -1.0, 0, 1}, {-10.0, -1.0, 0, 1}, + {-9.0, -1.0, 0, 1}, {-8.0, -1.0, 0, 1}, {-7.0, -1.0, 0, 1}, {-6.0, -1.0, 0, 1}, {-5.0, -1.0, 0, 1}, {-1.0, -1.0, 0, 1}, + {0.0, -1.0, 0, 1}, {1.0, -1.0, 0, 1}, {2.0, -1.0, 0, 1}, {3.0, -1.0, 0, 1}, {4.0, -1.0, 0, 1}, {5.0, -1.0, 0, 1}, + {6.0, -1.0, 0, 1}, {7.0, -1.0, 0, 1}, {8.0, -1.0, 0, 1}, {9.0, -1.0, 0, 1}, {14.0, -1.0, 0, 1}, {15.0, -1.0, 0, 1}, + {16.0, -1.0, 0, 1}, {17.0, -1.0, 0, 1}, {18.0, -1.0, 0, 1}, {19.0, -1.0, 0, 1}, {20.0, -1.0, 0, 1}, {21.0, -1.0, 0, 1}, + {22.0, -1.0, 0, 1}, {23.0, -1.0, 0, 1}, {24.0, -1.0, 0, 1}, {25.0, -1.0, 0, 1}, {30.0, -1.0, 0, 1}, {31.0, -1.0, 0, 1}, + {32.0, -1.0, 0, 1}, {33.0, -1.0, 0, 1}, {34.0, -1.0, 0, 1}, {35.0, -1.0, 0, 1}, {36.0, -1.0, 0, 1}, {37.0, -1.0, 0, 1}, + {38.0, -1.0, 0, 1}, {39.0, -1.0, 0, 1}, {40.0, -1.0, 0, 1}, {41.0, -1.0, 0, 1}, {45.0, -1.0, 0, 1}, {46.0, -1.0, 0, 1}, + {47.0, -1.0, 0, 1}, {51.0, -1.0, 0, 1}, {52.0, -1.0, 0, 1}, {53.0, -1.0, 0, 1}, {54.0, -1.0, 0, 1}, {55.0, -1.0, 0, 1}, + {56.0, -1.0, 0, 1}, {57.0, -1.0, 0, 1}, {58.0, -1.0, 0, 1}, {59.0, -1.0, 0, 1}, {60.0, -1.0, 0, 1}, {61.0, -1.0, 0, 1}, + {-63.0, 0.0, 0, 1}, {-62.0, 0.0, 0, 1}, {-61.0, 0.0, 0, 1}, {-60.0, 0.0, 0, 1}, {-59.0, 0.0, 0, 1}, {-58.0, 0.0, 0, 1}, + {-57.0, 0.0, 0, 1}, {-56.0, 0.0, 0, 1}, {-55.0, 0.0, 0, 1}, {-54.0, 0.0, 0, 1}, {-53.0, 0.0, 0, 1}, {-47.0, 0.0, 0, 1}, + {-46.0, 0.0, 0, 1}, {-45.0, 0.0, 0, 1}, {-44.0, 0.0, 0, 1}, {-43.0, 0.0, 0, 1}, {-42.0, 0.0, 0, 1}, {-41.0, 0.0, 0, 1}, + {-40.0, 0.0, 0, 1}, {-39.0, 0.0, 0, 1}, {-38.0, 0.0, 0, 1}, {-37.0, 0.0, 0, 1}, {-33.0, 0.0, 0, 1}, {-32.0, 0.0, 0, 1}, + {-31.0, 0.0, 0, 1}, {-30.0, 0.0, 0, 1}, {-29.0, 0.0, 0, 1}, {-28.0, 0.0, 0, 1}, {-27.0, 0.0, 0, 1}, {-26.0, 0.0, 0, 1}, + {-25.0, 0.0, 0, 1}, {-24.0, 0.0, 0, 1}, {-23.0, 0.0, 0, 1}, {-22.0, 0.0, 0, 1}, {-21.0, 0.0, 0, 1}, {-17.0, 0.0, 0, 1}, + {-16.0, 0.0, 0, 1}, {-15.0, 0.0, 0, 1}, {-14.0, 0.0, 0, 1}, {-13.0, 0.0, 0, 1}, {-12.0, 0.0, 0, 1}, {-11.0, 0.0, 0, 1}, + {-10.0, 0.0, 0, 1}, {-9.0, 0.0, 0, 1}, {-8.0, 0.0, 0, 1}, {-7.0, 0.0, 0, 1}, {-6.0, 0.0, 0, 1}, {-5.0, 0.0, 0, 1}, + {-1.0, 0.0, 0, 1}, {0.0, 0.0, 0, 1}, {1.0, 0.0, 0, 1}, {2.0, 0.0, 0, 1}, {3.0, 0.0, 0, 1}, {4.0, 0.0, 0, 1}, + {5.0, 0.0, 0, 1}, {6.0, 0.0, 0, 1}, {7.0, 0.0, 0, 1}, {8.0, 0.0, 0, 1}, {9.0, 0.0, 0, 1}, {15.0, 0.0, 0, 1}, + {16.0, 0.0, 0, 1}, {17.0, 0.0, 0, 1}, {18.0, 0.0, 0, 1}, {19.0, 0.0, 0, 1}, {20.0, 0.0, 0, 1}, {21.0, 0.0, 0, 1}, + {22.0, 0.0, 0, 1}, {23.0, 0.0, 0, 1}, {24.0, 0.0, 0, 1}, {25.0, 0.0, 0, 1}, {26.0, 0.0, 0, 1}, {31.0, 0.0, 0, 1}, + {32.0, 0.0, 0, 1}, {33.0, 0.0, 0, 1}, {34.0, 0.0, 0, 1}, {35.0, 0.0, 0, 1}, {36.0, 0.0, 0, 1}, {37.0, 0.0, 0, 1}, + {38.0, 0.0, 0, 1}, {39.0, 0.0, 0, 1}, {40.0, 0.0, 0, 1}, {41.0, 0.0, 0, 1}, {45.0, 0.0, 0, 1}, {46.0, 0.0, 0, 1}, + {47.0, 0.0, 0, 1}, {51.0, 0.0, 0, 1}, {52.0, 0.0, 0, 1}, {53.0, 0.0, 0, 1}, {54.0, 0.0, 0, 1}, {55.0, 0.0, 0, 1}, + {56.0, 0.0, 0, 1}, {57.0, 0.0, 0, 1}, {58.0, 0.0, 0, 1}, {59.0, 0.0, 0, 1}, {60.0, 0.0, 0, 1}, {61.0, 0.0, 0, 1}, + {-63.0, 1.0, 0, 1}, {-62.0, 1.0, 0, 1}, {-61.0, 1.0, 0, 1}, {-39.0, 1.0, 0, 1}, {-38.0, 1.0, 0, 1}, {-37.0, 1.0, 0, 1}, + {-36.0, 1.0, 0, 1}, {-33.0, 1.0, 0, 1}, {-32.0, 1.0, 0, 1}, {-31.0, 1.0, 0, 1}, {-30.0, 1.0, 0, 1}, {-29.0, 1.0, 0, 1}, + {-28.0, 1.0, 0, 1}, {-27.0, 1.0, 0, 1}, {-26.0, 1.0, 0, 1}, {-25.0, 1.0, 0, 1}, {-24.0, 1.0, 0, 1}, {-23.0, 1.0, 0, 1}, + {-22.0, 1.0, 0, 1}, {-21.0, 1.0, 0, 1}, {-17.0, 1.0, 0, 1}, {-16.0, 1.0, 0, 1}, {-15.0, 1.0, 0, 1}, {-14.0, 1.0, 0, 1}, + {-13.0, 1.0, 0, 1}, {-12.0, 1.0, 0, 1}, {-11.0, 1.0, 0, 1}, {-10.0, 1.0, 0, 1}, {-9.0, 1.0, 0, 1}, {-8.0, 1.0, 0, 1}, + {-7.0, 1.0, 0, 1}, {-6.0, 1.0, 0, 1}, {-1.0, 1.0, 0, 1}, {0.0, 1.0, 0, 1}, {1.0, 1.0, 0, 1}, {23.0, 1.0, 0, 1}, + {24.0, 1.0, 0, 1}, {25.0, 1.0, 0, 1}, {26.0, 1.0, 0, 1}, {38.0, 1.0, 0, 1}, {39.0, 1.0, 0, 1}, {40.0, 1.0, 0, 1}, + {41.0, 1.0, 0, 1}, {45.0, 1.0, 0, 1}, {46.0, 1.0, 0, 1}, {47.0, 1.0, 0, 1}, {51.0, 1.0, 0, 1}, {52.0, 1.0, 0, 1}, + {53.0, 1.0, 0, 1}, {-63.0, 2.0, 0, 1}, {-62.0, 2.0, 0, 1}, {-61.0, 2.0, 0, 1}, {-39.0, 2.0, 0, 1}, {-38.0, 2.0, 0, 1}, + {-37.0, 2.0, 0, 1}, {-36.0, 2.0, 0, 1}, {-33.0, 2.0, 0, 1}, {-32.0, 2.0, 0, 1}, {-31.0, 2.0, 0, 1}, {-30.0, 2.0, 0, 1}, + {-29.0, 2.0, 0, 1}, {-28.0, 2.0, 0, 1}, {-27.0, 2.0, 0, 1}, {-26.0, 2.0, 0, 1}, {-25.0, 2.0, 0, 1}, {-24.0, 2.0, 0, 1}, + {-23.0, 2.0, 0, 1}, {-17.0, 2.0, 0, 1}, {-16.0, 2.0, 0, 1}, {-15.0, 2.0, 0, 1}, {-14.0, 2.0, 0, 1}, {-9.0, 2.0, 0, 1}, + {-8.0, 2.0, 0, 1}, {-7.0, 2.0, 0, 1}, {-6.0, 2.0, 0, 1}, {-1.0, 2.0, 0, 1}, {0.0, 2.0, 0, 1}, {1.0, 2.0, 0, 1}, + {24.0, 2.0, 0, 1}, {25.0, 2.0, 0, 1}, {26.0, 2.0, 0, 1}, {39.0, 2.0, 0, 1}, {40.0, 2.0, 0, 1}, {41.0, 2.0, 0, 1}, + {45.0, 2.0, 0, 1}, {46.0, 2.0, 0, 1}, {47.0, 2.0, 0, 1}, {51.0, 2.0, 0, 1}, {52.0, 2.0, 0, 1}, {53.0, 2.0, 0, 1}, + {-63.0, 3.0, 0, 1}, {-62.0, 3.0, 0, 1}, {-61.0, 3.0, 0, 1}, {-39.0, 3.0, 0, 1}, {-38.0, 3.0, 0, 1}, {-37.0, 3.0, 0, 1}, + {-36.0, 3.0, 0, 1}, {-33.0, 3.0, 0, 1}, {-32.0, 3.0, 0, 1}, {-31.0, 3.0, 0, 1}, {-30.0, 3.0, 0, 1}, {-17.0, 3.0, 0, 1}, + {-16.0, 3.0, 0, 1}, {-15.0, 3.0, 0, 1}, {-14.0, 3.0, 0, 1}, {-8.0, 3.0, 0, 1}, {-7.0, 3.0, 0, 1}, {-6.0, 3.0, 0, 1}, + {-1.0, 3.0, 0, 1}, {0.0, 3.0, 0, 1}, {1.0, 3.0, 0, 1}, {24.0, 3.0, 0, 1}, {25.0, 3.0, 0, 1}, {26.0, 3.0, 0, 1}, + {39.0, 3.0, 0, 1}, {40.0, 3.0, 0, 1}, {41.0, 3.0, 0, 1}, {45.0, 3.0, 0, 1}, {46.0, 3.0, 0, 1}, {47.0, 3.0, 0, 1}, + {51.0, 3.0, 0, 1}, {52.0, 3.0, 0, 1}, {53.0, 3.0, 0, 1}, {-63.0, 4.0, 0, 1}, {-62.0, 4.0, 0, 1}, {-61.0, 4.0, 0, 1}, + {-39.0, 4.0, 0, 1}, {-38.0, 4.0, 0, 1}, {-37.0, 4.0, 0, 1}, {-36.0, 4.0, 0, 1}, {-33.0, 4.0, 0, 1}, {-32.0, 4.0, 0, 1}, + {-31.0, 4.0, 0, 1}, {-30.0, 4.0, 0, 1}, {-17.0, 4.0, 0, 1}, {-16.0, 4.0, 0, 1}, {-15.0, 4.0, 0, 1}, {-14.0, 4.0, 0, 1}, + {-7.0, 4.0, 0, 1}, {-6.0, 4.0, 0, 1}, {-5.0, 4.0, 0, 1}, {-1.0, 4.0, 0, 1}, {0.0, 4.0, 0, 1}, {1.0, 4.0, 0, 1}, + {24.0, 4.0, 0, 1}, {25.0, 4.0, 0, 1}, {26.0, 4.0, 0, 1}, {39.0, 4.0, 0, 1}, {40.0, 4.0, 0, 1}, {41.0, 4.0, 0, 1}, + {45.0, 4.0, 0, 1}, {46.0, 4.0, 0, 1}, {47.0, 4.0, 0, 1}, {51.0, 4.0, 0, 1}, {52.0, 4.0, 0, 1}, {53.0, 4.0, 0, 1}, + {-63.0, 5.0, 0, 1}, {-62.0, 5.0, 0, 1}, {-61.0, 5.0, 0, 1}, {-39.0, 5.0, 0, 1}, {-38.0, 5.0, 0, 1}, {-37.0, 5.0, 0, 1}, + {-36.0, 5.0, 0, 1}, {-33.0, 5.0, 0, 1}, {-32.0, 5.0, 0, 1}, {-31.0, 5.0, 0, 1}, {-30.0, 5.0, 0, 1}, {-17.0, 5.0, 0, 1}, + {-16.0, 5.0, 0, 1}, {-15.0, 5.0, 0, 1}, {-14.0, 5.0, 0, 1}, {-7.0, 5.0, 0, 1}, {-6.0, 5.0, 0, 1}, {-5.0, 5.0, 0, 1}, + {-1.0, 5.0, 0, 1}, {0.0, 5.0, 0, 1}, {1.0, 5.0, 0, 1}, {24.0, 5.0, 0, 1}, {25.0, 5.0, 0, 1}, {26.0, 5.0, 0, 1}, + {39.0, 5.0, 0, 1}, {40.0, 5.0, 0, 1}, {41.0, 5.0, 0, 1}, {45.0, 5.0, 0, 1}, {46.0, 5.0, 0, 1}, {47.0, 5.0, 0, 1}, + {51.0, 5.0, 0, 1}, {52.0, 5.0, 0, 1}, {53.0, 5.0, 0, 1}, {-63.0, 6.0, 0, 1}, {-62.0, 6.0, 0, 1}, {-61.0, 6.0, 0, 1}, + {-39.0, 6.0, 0, 1}, {-38.0, 6.0, 0, 1}, {-37.0, 6.0, 0, 1}, {-36.0, 6.0, 0, 1}, {-33.0, 6.0, 0, 1}, {-32.0, 6.0, 0, 1}, + {-31.0, 6.0, 0, 1}, {-30.0, 6.0, 0, 1}, {-17.0, 6.0, 0, 1}, {-16.0, 6.0, 0, 1}, {-15.0, 6.0, 0, 1}, {-14.0, 6.0, 0, 1}, + {-7.0, 6.0, 0, 1}, {-6.0, 6.0, 0, 1}, {-5.0, 6.0, 0, 1}, {-1.0, 6.0, 0, 1}, {0.0, 6.0, 0, 1}, {1.0, 6.0, 0, 1}, + {24.0, 6.0, 0, 1}, {25.0, 6.0, 0, 1}, {26.0, 6.0, 0, 1}, {39.0, 6.0, 0, 1}, {40.0, 6.0, 0, 1}, {41.0, 6.0, 0, 1}, + {45.0, 6.0, 0, 1}, {46.0, 6.0, 0, 1}, {47.0, 6.0, 0, 1}, {51.0, 6.0, 0, 1}, {52.0, 6.0, 0, 1}, {53.0, 6.0, 0, 1}, + {-63.0, 7.0, 0, 1}, {-62.0, 7.0, 0, 1}, {-61.0, 7.0, 0, 1}, {-39.0, 7.0, 0, 1}, {-38.0, 7.0, 0, 1}, {-37.0, 7.0, 0, 1}, + {-36.0, 7.0, 0, 1}, {-33.0, 7.0, 0, 1}, {-32.0, 7.0, 0, 1}, {-31.0, 7.0, 0, 1}, {-30.0, 7.0, 0, 1}, {-17.0, 7.0, 0, 1}, + {-16.0, 7.0, 0, 1}, {-15.0, 7.0, 0, 1}, {-14.0, 7.0, 0, 1}, {-7.0, 7.0, 0, 1}, {-6.0, 7.0, 0, 1}, {-5.0, 7.0, 0, 1}, + {-1.0, 7.0, 0, 1}, {0.0, 7.0, 0, 1}, {1.0, 7.0, 0, 1}, {24.0, 7.0, 0, 1}, {25.0, 7.0, 0, 1}, {26.0, 7.0, 0, 1}, + {39.0, 7.0, 0, 1}, {40.0, 7.0, 0, 1}, {41.0, 7.0, 0, 1}, {45.0, 7.0, 0, 1}, {46.0, 7.0, 0, 1}, {47.0, 7.0, 0, 1}, + {51.0, 7.0, 0, 1}, {52.0, 7.0, 0, 1}, {53.0, 7.0, 0, 1}, {-63.0, 8.0, 0, 1}, {-62.0, 8.0, 0, 1}, {-61.0, 8.0, 0, 1}, + {-60.0, 8.0, 0, 1}, {-59.0, 8.0, 0, 1}, {-58.0, 8.0, 0, 1}, {-57.0, 8.0, 0, 1}, {-56.0, 8.0, 0, 1}, {-55.0, 8.0, 0, 1}, + {-54.0, 8.0, 0, 1}, {-53.0, 8.0, 0, 1}, {-52.0, 8.0, 0, 1}, {-48.0, 8.0, 0, 1}, {-47.0, 8.0, 0, 1}, {-46.0, 8.0, 0, 1}, + {-45.0, 8.0, 0, 1}, {-44.0, 8.0, 0, 1}, {-43.0, 8.0, 0, 1}, {-42.0, 8.0, 0, 1}, {-41.0, 8.0, 0, 1}, {-40.0, 8.0, 0, 1}, + {-39.0, 8.0, 0, 1}, {-38.0, 8.0, 0, 1}, {-37.0, 8.0, 0, 1}, {-33.0, 8.0, 0, 1}, {-32.0, 8.0, 0, 1}, {-31.0, 8.0, 0, 1}, + {-30.0, 8.0, 0, 1}, {-17.0, 8.0, 0, 1}, {-16.0, 8.0, 0, 1}, {-15.0, 8.0, 0, 1}, {-14.0, 8.0, 0, 1}, {-7.0, 8.0, 0, 1}, + {-6.0, 8.0, 0, 1}, {-5.0, 8.0, 0, 1}, {-4.0, 8.0, 0, 1}, {-1.0, 8.0, 0, 1}, {0.0, 8.0, 0, 1}, {1.0, 8.0, 0, 1}, + {2.0, 8.0, 0, 1}, {3.0, 8.0, 0, 1}, {4.0, 8.0, 0, 1}, {5.0, 8.0, 0, 1}, {6.0, 8.0, 0, 1}, {7.0, 8.0, 0, 1}, + {8.0, 8.0, 0, 1}, {9.0, 8.0, 0, 1}, {10.0, 8.0, 0, 1}, {14.0, 8.0, 0, 1}, {15.0, 8.0, 0, 1}, {16.0, 8.0, 0, 1}, + {17.0, 8.0, 0, 1}, {18.0, 8.0, 0, 1}, {19.0, 8.0, 0, 1}, {20.0, 8.0, 0, 1}, {21.0, 8.0, 0, 1}, {22.0, 8.0, 0, 1}, + {23.0, 8.0, 0, 1}, {24.0, 8.0, 0, 1}, {25.0, 8.0, 0, 1}, {26.0, 8.0, 0, 1}, {29.0, 8.0, 0, 1}, {30.0, 8.0, 0, 1}, + {31.0, 8.0, 0, 1}, {32.0, 8.0, 0, 1}, {33.0, 8.0, 0, 1}, {34.0, 8.0, 0, 1}, {35.0, 8.0, 0, 1}, {36.0, 8.0, 0, 1}, + {37.0, 8.0, 0, 1}, {38.0, 8.0, 0, 1}, {39.0, 8.0, 0, 1}, {40.0, 8.0, 0, 1}, {41.0, 8.0, 0, 1}, {45.0, 8.0, 0, 1}, + {46.0, 8.0, 0, 1}, {47.0, 8.0, 0, 1}, {51.0, 8.0, 0, 1}, {52.0, 8.0, 0, 1}, {53.0, 8.0, 0, 1}, {-63.0, 9.0, 0, 1}, + {-62.0, 9.0, 0, 1}, {-61.0, 9.0, 0, 1}, {-60.0, 9.0, 0, 1}, {-59.0, 9.0, 0, 1}, {-58.0, 9.0, 0, 1}, {-57.0, 9.0, 0, 1}, + {-56.0, 9.0, 0, 1}, {-55.0, 9.0, 0, 1}, {-54.0, 9.0, 0, 1}, {-53.0, 9.0, 0, 1}, {-52.0, 9.0, 0, 1}, {-48.0, 9.0, 0, 1}, + {-47.0, 9.0, 0, 1}, {-46.0, 9.0, 0, 1}, {-45.0, 9.0, 0, 1}, {-44.0, 9.0, 0, 1}, {-43.0, 9.0, 0, 1}, {-42.0, 9.0, 0, 1}, + {-41.0, 9.0, 0, 1}, {-40.0, 9.0, 0, 1}, {-39.0, 9.0, 0, 1}, {-38.0, 9.0, 0, 1}, {-37.0, 9.0, 0, 1}, {-33.0, 9.0, 0, 1}, + {-32.0, 9.0, 0, 1}, {-31.0, 9.0, 0, 1}, {-30.0, 9.0, 0, 1}, {-17.0, 9.0, 0, 1}, {-16.0, 9.0, 0, 1}, {-15.0, 9.0, 0, 1}, + {-14.0, 9.0, 0, 1}, {-6.0, 9.0, 0, 1}, {-5.0, 9.0, 0, 1}, {-4.0, 9.0, 0, 1}, {0.0, 9.0, 0, 1}, {1.0, 9.0, 0, 1}, + {2.0, 9.0, 0, 1}, {3.0, 9.0, 0, 1}, {4.0, 9.0, 0, 1}, {5.0, 9.0, 0, 1}, {6.0, 9.0, 0, 1}, {7.0, 9.0, 0, 1}, + {8.0, 9.0, 0, 1}, {9.0, 9.0, 0, 1}, {10.0, 9.0, 0, 1}, {14.0, 9.0, 0, 1}, {15.0, 9.0, 0, 1}, {16.0, 9.0, 0, 1}, + {17.0, 9.0, 0, 1}, {18.0, 9.0, 0, 1}, {19.0, 9.0, 0, 1}, {20.0, 9.0, 0, 1}, {21.0, 9.0, 0, 1}, {22.0, 9.0, 0, 1}, + {23.0, 9.0, 0, 1}, {24.0, 9.0, 0, 1}, {25.0, 9.0, 0, 1}, {29.0, 9.0, 0, 1}, {30.0, 9.0, 0, 1}, {31.0, 9.0, 0, 1}, + {32.0, 9.0, 0, 1}, {33.0, 9.0, 0, 1}, {34.0, 9.0, 0, 1}, {35.0, 9.0, 0, 1}, {36.0, 9.0, 0, 1}, {37.0, 9.0, 0, 1}, + {38.0, 9.0, 0, 1}, {39.0, 9.0, 0, 1}, {40.0, 9.0, 0, 1}, {41.0, 9.0, 0, 1}, {45.0, 9.0, 0, 1}, {46.0, 9.0, 0, 1}, + {47.0, 9.0, 0, 1}, {51.0, 9.0, 0, 1}, {52.0, 9.0, 0, 1}, {53.0, 9.0, 0, 1}, {-62.0, 10.0, 0, 1}, {-61.0, 10.0, 0, 1}, + {-60.0, 10.0, 0, 1}, {-59.0, 10.0, 0, 1}, {-58.0, 10.0, 0, 1}, {-57.0, 10.0, 0, 1}, {-56.0, 10.0, 0, 1}, {-55.0, 10.0, 0, 1}, + {-54.0, 10.0, 0, 1}, {-53.0, 10.0, 0, 1}, {-52.0, 10.0, 0, 1}, {-48.0, 10.0, 0, 1}, {-47.0, 10.0, 0, 1}, {-46.0, 10.0, 0, 1}, + {-45.0, 10.0, 0, 1}, {-44.0, 10.0, 0, 1}, {-43.0, 10.0, 0, 1}, {-42.0, 10.0, 0, 1}, {-41.0, 10.0, 0, 1}, {-40.0, 10.0, 0, 1}, + {-39.0, 10.0, 0, 1}, {-38.0, 10.0, 0, 1}, {-33.0, 10.0, 0, 1}, {-32.0, 10.0, 0, 1}, {-31.0, 10.0, 0, 1}, {-30.0, 10.0, 0, 1}, + {-17.0, 10.0, 0, 1}, {-16.0, 10.0, 0, 1}, {-15.0, 10.0, 0, 1}, {-14.0, 10.0, 0, 1}, {-6.0, 10.0, 0, 1}, {-5.0, 10.0, 0, 1}, + {-4.0, 10.0, 0, 1}, {0.0, 10.0, 0, 1}, {1.0, 10.0, 0, 1}, {2.0, 10.0, 0, 1}, {3.0, 10.0, 0, 1}, {4.0, 10.0, 0, 1}, + {5.0, 10.0, 0, 1}, {6.0, 10.0, 0, 1}, {7.0, 10.0, 0, 1}, {8.0, 10.0, 0, 1}, {9.0, 10.0, 0, 1}, {10.0, 10.0, 0, 1}, + {14.0, 10.0, 0, 1}, {15.0, 10.0, 0, 1}, {16.0, 10.0, 0, 1}, {17.0, 10.0, 0, 1}, {18.0, 10.0, 0, 1}, {19.0, 10.0, 0, 1}, + {20.0, 10.0, 0, 1}, {21.0, 10.0, 0, 1}, {22.0, 10.0, 0, 1}, {23.0, 10.0, 0, 1}, {24.0, 10.0, 0, 1}, {29.0, 10.0, 0, 1}, + {30.0, 10.0, 0, 1}, {31.0, 10.0, 0, 1}, {32.0, 10.0, 0, 1}, {33.0, 10.0, 0, 1}, {34.0, 10.0, 0, 1}, {35.0, 10.0, 0, 1}, + {36.0, 10.0, 0, 1}, {37.0, 10.0, 0, 1}, {38.0, 10.0, 0, 1}, {39.0, 10.0, 0, 1}, {40.0, 10.0, 0, 1}, {45.0, 10.0, 0, 1}, + {46.0, 10.0, 0, 1}, {47.0, 10.0, 0, 1}, {51.0, 10.0, 0, 1}, {52.0, 10.0, 0, 1}, {53.0, 10.0, 0, 1} +}; diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.h new file mode 100644 index 0000000..e4e2333 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.h @@ -0,0 +1,16 @@ +// File generated by image_to_3d_array.py + +#pragma once + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t image_bmp_array_esp_text[384]; +extern const float image_3d_array_esp_text[1271][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c new file mode 100644 index 0000000..bca06f0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c @@ -0,0 +1,338 @@ +// File generated by ImgTo3D.py +// Image file converted to 3D matrix cpu_logo.png + +#include "image_to_3d_matrix.h" + +#ifdef CONFIG_3D_OBJECT_CUSTOM + +const uint8_t image_to_bmp_array_custom[512] = { + + 0x00, 0x00, 0x0e, 0x1c, 0x38, 0x70, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xfe, + 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0x00, 0x1e, 0x0f, 0xff, 0xff, 0xf0, 0x78, 0x00, + 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, + 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfe, 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, + 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfc, 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, + 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfe, + 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfe, + 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, + 0x7f, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xfc, 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, + 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xfe, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3c, 0x7c, 0x78, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x1c, 0x38, 0x70, 0x00, 0x00 + +}; + +const float image_to_3d_matrix_custom[1732][4] = { + + {-12.0, -32.0, 0, 1}, {-11.0, -32.0, 0, 1}, {-10.0, -32.0, 0, 1}, {-5.0, -32.0, 0, 1}, {-4.0, -32.0, 0, 1}, {-3.0, -32.0, 0, 1}, + {2.0, -32.0, 0, 1}, {3.0, -32.0, 0, 1}, {4.0, -32.0, 0, 1}, {9.0, -32.0, 0, 1}, {10.0, -32.0, 0, 1}, {11.0, -32.0, 0, 1}, + {-13.0, -31.0, 0, 1}, {-12.0, -31.0, 0, 1}, {-11.0, -31.0, 0, 1}, {-10.0, -31.0, 0, 1}, {-6.0, -31.0, 0, 1}, {-5.0, -31.0, 0, 1}, + {-4.0, -31.0, 0, 1}, {-3.0, -31.0, 0, 1}, {-2.0, -31.0, 0, 1}, {1.0, -31.0, 0, 1}, {2.0, -31.0, 0, 1}, {3.0, -31.0, 0, 1}, + {4.0, -31.0, 0, 1}, {5.0, -31.0, 0, 1}, {8.0, -31.0, 0, 1}, {9.0, -31.0, 0, 1}, {10.0, -31.0, 0, 1}, {11.0, -31.0, 0, 1}, + {12.0, -31.0, 0, 1}, {-13.0, -30.0, 0, 1}, {-12.0, -30.0, 0, 1}, {-11.0, -30.0, 0, 1}, {-10.0, -30.0, 0, 1}, {-6.0, -30.0, 0, 1}, + {-5.0, -30.0, 0, 1}, {-4.0, -30.0, 0, 1}, {-3.0, -30.0, 0, 1}, {-2.0, -30.0, 0, 1}, {1.0, -30.0, 0, 1}, {2.0, -30.0, 0, 1}, + {3.0, -30.0, 0, 1}, {4.0, -30.0, 0, 1}, {5.0, -30.0, 0, 1}, {8.0, -30.0, 0, 1}, {9.0, -30.0, 0, 1}, {10.0, -30.0, 0, 1}, + {11.0, -30.0, 0, 1}, {12.0, -30.0, 0, 1}, {-13.0, -29.0, 0, 1}, {-12.0, -29.0, 0, 1}, {-11.0, -29.0, 0, 1}, {-10.0, -29.0, 0, 1}, + {-6.0, -29.0, 0, 1}, {-5.0, -29.0, 0, 1}, {-4.0, -29.0, 0, 1}, {-3.0, -29.0, 0, 1}, {-2.0, -29.0, 0, 1}, {1.0, -29.0, 0, 1}, + {2.0, -29.0, 0, 1}, {3.0, -29.0, 0, 1}, {4.0, -29.0, 0, 1}, {5.0, -29.0, 0, 1}, {8.0, -29.0, 0, 1}, {9.0, -29.0, 0, 1}, + {10.0, -29.0, 0, 1}, {11.0, -29.0, 0, 1}, {12.0, -29.0, 0, 1}, {-13.0, -28.0, 0, 1}, {-12.0, -28.0, 0, 1}, {-11.0, -28.0, 0, 1}, + {-10.0, -28.0, 0, 1}, {-6.0, -28.0, 0, 1}, {-5.0, -28.0, 0, 1}, {-4.0, -28.0, 0, 1}, {-3.0, -28.0, 0, 1}, {-2.0, -28.0, 0, 1}, + {1.0, -28.0, 0, 1}, {2.0, -28.0, 0, 1}, {3.0, -28.0, 0, 1}, {4.0, -28.0, 0, 1}, {5.0, -28.0, 0, 1}, {8.0, -28.0, 0, 1}, + {9.0, -28.0, 0, 1}, {10.0, -28.0, 0, 1}, {11.0, -28.0, 0, 1}, {12.0, -28.0, 0, 1}, {-13.0, -27.0, 0, 1}, {-12.0, -27.0, 0, 1}, + {-11.0, -27.0, 0, 1}, {-10.0, -27.0, 0, 1}, {-6.0, -27.0, 0, 1}, {-5.0, -27.0, 0, 1}, {-4.0, -27.0, 0, 1}, {-3.0, -27.0, 0, 1}, + {-2.0, -27.0, 0, 1}, {1.0, -27.0, 0, 1}, {2.0, -27.0, 0, 1}, {3.0, -27.0, 0, 1}, {4.0, -27.0, 0, 1}, {5.0, -27.0, 0, 1}, + {8.0, -27.0, 0, 1}, {9.0, -27.0, 0, 1}, {10.0, -27.0, 0, 1}, {11.0, -27.0, 0, 1}, {12.0, -27.0, 0, 1}, {-13.0, -26.0, 0, 1}, + {-12.0, -26.0, 0, 1}, {-11.0, -26.0, 0, 1}, {-10.0, -26.0, 0, 1}, {-6.0, -26.0, 0, 1}, {-5.0, -26.0, 0, 1}, {-4.0, -26.0, 0, 1}, + {-3.0, -26.0, 0, 1}, {-2.0, -26.0, 0, 1}, {1.0, -26.0, 0, 1}, {2.0, -26.0, 0, 1}, {3.0, -26.0, 0, 1}, {4.0, -26.0, 0, 1}, + {5.0, -26.0, 0, 1}, {8.0, -26.0, 0, 1}, {9.0, -26.0, 0, 1}, {10.0, -26.0, 0, 1}, {11.0, -26.0, 0, 1}, {12.0, -26.0, 0, 1}, + {-13.0, -25.0, 0, 1}, {-12.0, -25.0, 0, 1}, {-11.0, -25.0, 0, 1}, {-10.0, -25.0, 0, 1}, {-6.0, -25.0, 0, 1}, {-5.0, -25.0, 0, 1}, + {-4.0, -25.0, 0, 1}, {-3.0, -25.0, 0, 1}, {-2.0, -25.0, 0, 1}, {1.0, -25.0, 0, 1}, {2.0, -25.0, 0, 1}, {3.0, -25.0, 0, 1}, + {4.0, -25.0, 0, 1}, {5.0, -25.0, 0, 1}, {8.0, -25.0, 0, 1}, {9.0, -25.0, 0, 1}, {10.0, -25.0, 0, 1}, {11.0, -25.0, 0, 1}, + {12.0, -25.0, 0, 1}, {-13.0, -24.0, 0, 1}, {-12.0, -24.0, 0, 1}, {-11.0, -24.0, 0, 1}, {-10.0, -24.0, 0, 1}, {-6.0, -24.0, 0, 1}, + {-5.0, -24.0, 0, 1}, {-4.0, -24.0, 0, 1}, {-3.0, -24.0, 0, 1}, {-2.0, -24.0, 0, 1}, {1.0, -24.0, 0, 1}, {2.0, -24.0, 0, 1}, + {3.0, -24.0, 0, 1}, {4.0, -24.0, 0, 1}, {5.0, -24.0, 0, 1}, {8.0, -24.0, 0, 1}, {9.0, -24.0, 0, 1}, {10.0, -24.0, 0, 1}, + {11.0, -24.0, 0, 1}, {12.0, -24.0, 0, 1}, {-13.0, -23.0, 0, 1}, {-12.0, -23.0, 0, 1}, {-11.0, -23.0, 0, 1}, {-10.0, -23.0, 0, 1}, + {-6.0, -23.0, 0, 1}, {-5.0, -23.0, 0, 1}, {-4.0, -23.0, 0, 1}, {-3.0, -23.0, 0, 1}, {-2.0, -23.0, 0, 1}, {1.0, -23.0, 0, 1}, + {2.0, -23.0, 0, 1}, {3.0, -23.0, 0, 1}, {4.0, -23.0, 0, 1}, {5.0, -23.0, 0, 1}, {8.0, -23.0, 0, 1}, {9.0, -23.0, 0, 1}, + {10.0, -23.0, 0, 1}, {11.0, -23.0, 0, 1}, {12.0, -23.0, 0, 1}, {-13.0, -22.0, 0, 1}, {-12.0, -22.0, 0, 1}, {-11.0, -22.0, 0, 1}, + {-10.0, -22.0, 0, 1}, {-6.0, -22.0, 0, 1}, {-5.0, -22.0, 0, 1}, {-4.0, -22.0, 0, 1}, {-3.0, -22.0, 0, 1}, {-2.0, -22.0, 0, 1}, + {1.0, -22.0, 0, 1}, {2.0, -22.0, 0, 1}, {3.0, -22.0, 0, 1}, {4.0, -22.0, 0, 1}, {5.0, -22.0, 0, 1}, {8.0, -22.0, 0, 1}, + {9.0, -22.0, 0, 1}, {10.0, -22.0, 0, 1}, {11.0, -22.0, 0, 1}, {12.0, -22.0, 0, 1}, {-21.0, -21.0, 0, 1}, {-20.0, -21.0, 0, 1}, + {-19.0, -21.0, 0, 1}, {-18.0, -21.0, 0, 1}, {-17.0, -21.0, 0, 1}, {-16.0, -21.0, 0, 1}, {-15.0, -21.0, 0, 1}, {-14.0, -21.0, 0, 1}, + {-13.0, -21.0, 0, 1}, {-12.0, -21.0, 0, 1}, {-11.0, -21.0, 0, 1}, {-10.0, -21.0, 0, 1}, {-9.0, -21.0, 0, 1}, {-8.0, -21.0, 0, 1}, + {-7.0, -21.0, 0, 1}, {-6.0, -21.0, 0, 1}, {-5.0, -21.0, 0, 1}, {-4.0, -21.0, 0, 1}, {-3.0, -21.0, 0, 1}, {-2.0, -21.0, 0, 1}, + {-1.0, -21.0, 0, 1}, {0.0, -21.0, 0, 1}, {1.0, -21.0, 0, 1}, {2.0, -21.0, 0, 1}, {3.0, -21.0, 0, 1}, {4.0, -21.0, 0, 1}, + {5.0, -21.0, 0, 1}, {6.0, -21.0, 0, 1}, {7.0, -21.0, 0, 1}, {8.0, -21.0, 0, 1}, {9.0, -21.0, 0, 1}, {10.0, -21.0, 0, 1}, + {11.0, -21.0, 0, 1}, {12.0, -21.0, 0, 1}, {13.0, -21.0, 0, 1}, {14.0, -21.0, 0, 1}, {15.0, -21.0, 0, 1}, {16.0, -21.0, 0, 1}, + {17.0, -21.0, 0, 1}, {18.0, -21.0, 0, 1}, {19.0, -21.0, 0, 1}, {20.0, -21.0, 0, 1}, {-21.0, -20.0, 0, 1}, {-20.0, -20.0, 0, 1}, + {-19.0, -20.0, 0, 1}, {-18.0, -20.0, 0, 1}, {-17.0, -20.0, 0, 1}, {-16.0, -20.0, 0, 1}, {-15.0, -20.0, 0, 1}, {-14.0, -20.0, 0, 1}, + {-13.0, -20.0, 0, 1}, {-12.0, -20.0, 0, 1}, {-11.0, -20.0, 0, 1}, {-10.0, -20.0, 0, 1}, {-9.0, -20.0, 0, 1}, {-8.0, -20.0, 0, 1}, + {-7.0, -20.0, 0, 1}, {-6.0, -20.0, 0, 1}, {-5.0, -20.0, 0, 1}, {-4.0, -20.0, 0, 1}, {-3.0, -20.0, 0, 1}, {-2.0, -20.0, 0, 1}, + {-1.0, -20.0, 0, 1}, {0.0, -20.0, 0, 1}, {1.0, -20.0, 0, 1}, {2.0, -20.0, 0, 1}, {3.0, -20.0, 0, 1}, {4.0, -20.0, 0, 1}, + {5.0, -20.0, 0, 1}, {6.0, -20.0, 0, 1}, {7.0, -20.0, 0, 1}, {8.0, -20.0, 0, 1}, {9.0, -20.0, 0, 1}, {10.0, -20.0, 0, 1}, + {11.0, -20.0, 0, 1}, {12.0, -20.0, 0, 1}, {13.0, -20.0, 0, 1}, {14.0, -20.0, 0, 1}, {15.0, -20.0, 0, 1}, {16.0, -20.0, 0, 1}, + {17.0, -20.0, 0, 1}, {18.0, -20.0, 0, 1}, {19.0, -20.0, 0, 1}, {20.0, -20.0, 0, 1}, {-21.0, -19.0, 0, 1}, {-20.0, -19.0, 0, 1}, + {-19.0, -19.0, 0, 1}, {-18.0, -19.0, 0, 1}, {-17.0, -19.0, 0, 1}, {-16.0, -19.0, 0, 1}, {-15.0, -19.0, 0, 1}, {-14.0, -19.0, 0, 1}, + {-13.0, -19.0, 0, 1}, {-12.0, -19.0, 0, 1}, {-11.0, -19.0, 0, 1}, {-10.0, -19.0, 0, 1}, {-9.0, -19.0, 0, 1}, {-8.0, -19.0, 0, 1}, + {-7.0, -19.0, 0, 1}, {-6.0, -19.0, 0, 1}, {-5.0, -19.0, 0, 1}, {-4.0, -19.0, 0, 1}, {-3.0, -19.0, 0, 1}, {-2.0, -19.0, 0, 1}, + {-1.0, -19.0, 0, 1}, {0.0, -19.0, 0, 1}, {1.0, -19.0, 0, 1}, {2.0, -19.0, 0, 1}, {3.0, -19.0, 0, 1}, {4.0, -19.0, 0, 1}, + {5.0, -19.0, 0, 1}, {6.0, -19.0, 0, 1}, {7.0, -19.0, 0, 1}, {8.0, -19.0, 0, 1}, {9.0, -19.0, 0, 1}, {10.0, -19.0, 0, 1}, + {11.0, -19.0, 0, 1}, {12.0, -19.0, 0, 1}, {13.0, -19.0, 0, 1}, {14.0, -19.0, 0, 1}, {15.0, -19.0, 0, 1}, {16.0, -19.0, 0, 1}, + {17.0, -19.0, 0, 1}, {18.0, -19.0, 0, 1}, {19.0, -19.0, 0, 1}, {20.0, -19.0, 0, 1}, {-21.0, -18.0, 0, 1}, {-20.0, -18.0, 0, 1}, + {-19.0, -18.0, 0, 1}, {-18.0, -18.0, 0, 1}, {-17.0, -18.0, 0, 1}, {-16.0, -18.0, 0, 1}, {-15.0, -18.0, 0, 1}, {-14.0, -18.0, 0, 1}, + {-13.0, -18.0, 0, 1}, {-12.0, -18.0, 0, 1}, {-11.0, -18.0, 0, 1}, {-10.0, -18.0, 0, 1}, {-9.0, -18.0, 0, 1}, {-8.0, -18.0, 0, 1}, + {-7.0, -18.0, 0, 1}, {-6.0, -18.0, 0, 1}, {-5.0, -18.0, 0, 1}, {-4.0, -18.0, 0, 1}, {-3.0, -18.0, 0, 1}, {-2.0, -18.0, 0, 1}, + {-1.0, -18.0, 0, 1}, {0.0, -18.0, 0, 1}, {1.0, -18.0, 0, 1}, {2.0, -18.0, 0, 1}, {3.0, -18.0, 0, 1}, {4.0, -18.0, 0, 1}, + {5.0, -18.0, 0, 1}, {6.0, -18.0, 0, 1}, {7.0, -18.0, 0, 1}, {8.0, -18.0, 0, 1}, {9.0, -18.0, 0, 1}, {10.0, -18.0, 0, 1}, + {11.0, -18.0, 0, 1}, {12.0, -18.0, 0, 1}, {13.0, -18.0, 0, 1}, {14.0, -18.0, 0, 1}, {15.0, -18.0, 0, 1}, {16.0, -18.0, 0, 1}, + {17.0, -18.0, 0, 1}, {18.0, -18.0, 0, 1}, {19.0, -18.0, 0, 1}, {20.0, -18.0, 0, 1}, {-21.0, -17.0, 0, 1}, {-20.0, -17.0, 0, 1}, + {-19.0, -17.0, 0, 1}, {-18.0, -17.0, 0, 1}, {17.0, -17.0, 0, 1}, {18.0, -17.0, 0, 1}, {19.0, -17.0, 0, 1}, {20.0, -17.0, 0, 1}, + {-21.0, -16.0, 0, 1}, {-20.0, -16.0, 0, 1}, {-19.0, -16.0, 0, 1}, {-18.0, -16.0, 0, 1}, {17.0, -16.0, 0, 1}, {18.0, -16.0, 0, 1}, + {19.0, -16.0, 0, 1}, {20.0, -16.0, 0, 1}, {-21.0, -15.0, 0, 1}, {-20.0, -15.0, 0, 1}, {-19.0, -15.0, 0, 1}, {-18.0, -15.0, 0, 1}, + {17.0, -15.0, 0, 1}, {18.0, -15.0, 0, 1}, {19.0, -15.0, 0, 1}, {20.0, -15.0, 0, 1}, {-21.0, -14.0, 0, 1}, {-20.0, -14.0, 0, 1}, + {-19.0, -14.0, 0, 1}, {-18.0, -14.0, 0, 1}, {17.0, -14.0, 0, 1}, {18.0, -14.0, 0, 1}, {19.0, -14.0, 0, 1}, {20.0, -14.0, 0, 1}, + {-31.0, -13.0, 0, 1}, {-30.0, -13.0, 0, 1}, {-29.0, -13.0, 0, 1}, {-28.0, -13.0, 0, 1}, {-27.0, -13.0, 0, 1}, {-26.0, -13.0, 0, 1}, + {-25.0, -13.0, 0, 1}, {-24.0, -13.0, 0, 1}, {-23.0, -13.0, 0, 1}, {-22.0, -13.0, 0, 1}, {-21.0, -13.0, 0, 1}, {-20.0, -13.0, 0, 1}, + {-19.0, -13.0, 0, 1}, {-18.0, -13.0, 0, 1}, {17.0, -13.0, 0, 1}, {18.0, -13.0, 0, 1}, {19.0, -13.0, 0, 1}, {20.0, -13.0, 0, 1}, + {21.0, -13.0, 0, 1}, {22.0, -13.0, 0, 1}, {23.0, -13.0, 0, 1}, {24.0, -13.0, 0, 1}, {25.0, -13.0, 0, 1}, {26.0, -13.0, 0, 1}, + {27.0, -13.0, 0, 1}, {28.0, -13.0, 0, 1}, {29.0, -13.0, 0, 1}, {30.0, -13.0, 0, 1}, {-32.0, -12.0, 0, 1}, {-31.0, -12.0, 0, 1}, + {-30.0, -12.0, 0, 1}, {-29.0, -12.0, 0, 1}, {-28.0, -12.0, 0, 1}, {-27.0, -12.0, 0, 1}, {-26.0, -12.0, 0, 1}, {-25.0, -12.0, 0, 1}, + {-24.0, -12.0, 0, 1}, {-23.0, -12.0, 0, 1}, {-22.0, -12.0, 0, 1}, {-21.0, -12.0, 0, 1}, {-20.0, -12.0, 0, 1}, {-19.0, -12.0, 0, 1}, + {-18.0, -12.0, 0, 1}, {-12.0, -12.0, 0, 1}, {-11.0, -12.0, 0, 1}, {-10.0, -12.0, 0, 1}, {-9.0, -12.0, 0, 1}, {-8.0, -12.0, 0, 1}, + {-7.0, -12.0, 0, 1}, {-6.0, -12.0, 0, 1}, {-5.0, -12.0, 0, 1}, {-4.0, -12.0, 0, 1}, {-3.0, -12.0, 0, 1}, {-2.0, -12.0, 0, 1}, + {-1.0, -12.0, 0, 1}, {0.0, -12.0, 0, 1}, {1.0, -12.0, 0, 1}, {2.0, -12.0, 0, 1}, {3.0, -12.0, 0, 1}, {4.0, -12.0, 0, 1}, + {5.0, -12.0, 0, 1}, {6.0, -12.0, 0, 1}, {7.0, -12.0, 0, 1}, {8.0, -12.0, 0, 1}, {9.0, -12.0, 0, 1}, {10.0, -12.0, 0, 1}, + {11.0, -12.0, 0, 1}, {17.0, -12.0, 0, 1}, {18.0, -12.0, 0, 1}, {19.0, -12.0, 0, 1}, {20.0, -12.0, 0, 1}, {21.0, -12.0, 0, 1}, + {22.0, -12.0, 0, 1}, {23.0, -12.0, 0, 1}, {24.0, -12.0, 0, 1}, {25.0, -12.0, 0, 1}, {26.0, -12.0, 0, 1}, {27.0, -12.0, 0, 1}, + {28.0, -12.0, 0, 1}, {29.0, -12.0, 0, 1}, {30.0, -12.0, 0, 1}, {31.0, -12.0, 0, 1}, {-32.0, -11.0, 0, 1}, {-31.0, -11.0, 0, 1}, + {-30.0, -11.0, 0, 1}, {-29.0, -11.0, 0, 1}, {-28.0, -11.0, 0, 1}, {-27.0, -11.0, 0, 1}, {-26.0, -11.0, 0, 1}, {-25.0, -11.0, 0, 1}, + {-24.0, -11.0, 0, 1}, {-23.0, -11.0, 0, 1}, {-22.0, -11.0, 0, 1}, {-21.0, -11.0, 0, 1}, {-20.0, -11.0, 0, 1}, {-19.0, -11.0, 0, 1}, + {-18.0, -11.0, 0, 1}, {-12.0, -11.0, 0, 1}, {-11.0, -11.0, 0, 1}, {-10.0, -11.0, 0, 1}, {-9.0, -11.0, 0, 1}, {-8.0, -11.0, 0, 1}, + {-7.0, -11.0, 0, 1}, {-6.0, -11.0, 0, 1}, {-5.0, -11.0, 0, 1}, {-4.0, -11.0, 0, 1}, {-3.0, -11.0, 0, 1}, {-2.0, -11.0, 0, 1}, + {-1.0, -11.0, 0, 1}, {0.0, -11.0, 0, 1}, {1.0, -11.0, 0, 1}, {2.0, -11.0, 0, 1}, {3.0, -11.0, 0, 1}, {4.0, -11.0, 0, 1}, + {5.0, -11.0, 0, 1}, {6.0, -11.0, 0, 1}, {7.0, -11.0, 0, 1}, {8.0, -11.0, 0, 1}, {9.0, -11.0, 0, 1}, {10.0, -11.0, 0, 1}, + {11.0, -11.0, 0, 1}, {17.0, -11.0, 0, 1}, {18.0, -11.0, 0, 1}, {19.0, -11.0, 0, 1}, {20.0, -11.0, 0, 1}, {21.0, -11.0, 0, 1}, + {22.0, -11.0, 0, 1}, {23.0, -11.0, 0, 1}, {24.0, -11.0, 0, 1}, {25.0, -11.0, 0, 1}, {26.0, -11.0, 0, 1}, {27.0, -11.0, 0, 1}, + {28.0, -11.0, 0, 1}, {29.0, -11.0, 0, 1}, {30.0, -11.0, 0, 1}, {31.0, -11.0, 0, 1}, {-32.0, -10.0, 0, 1}, {-31.0, -10.0, 0, 1}, + {-30.0, -10.0, 0, 1}, {-29.0, -10.0, 0, 1}, {-28.0, -10.0, 0, 1}, {-27.0, -10.0, 0, 1}, {-26.0, -10.0, 0, 1}, {-25.0, -10.0, 0, 1}, + {-24.0, -10.0, 0, 1}, {-23.0, -10.0, 0, 1}, {-22.0, -10.0, 0, 1}, {-21.0, -10.0, 0, 1}, {-20.0, -10.0, 0, 1}, {-19.0, -10.0, 0, 1}, + {-18.0, -10.0, 0, 1}, {-12.0, -10.0, 0, 1}, {-11.0, -10.0, 0, 1}, {-10.0, -10.0, 0, 1}, {-9.0, -10.0, 0, 1}, {-8.0, -10.0, 0, 1}, + {-7.0, -10.0, 0, 1}, {-6.0, -10.0, 0, 1}, {-5.0, -10.0, 0, 1}, {-4.0, -10.0, 0, 1}, {-3.0, -10.0, 0, 1}, {-2.0, -10.0, 0, 1}, + {-1.0, -10.0, 0, 1}, {0.0, -10.0, 0, 1}, {1.0, -10.0, 0, 1}, {2.0, -10.0, 0, 1}, {3.0, -10.0, 0, 1}, {4.0, -10.0, 0, 1}, + {5.0, -10.0, 0, 1}, {6.0, -10.0, 0, 1}, {7.0, -10.0, 0, 1}, {8.0, -10.0, 0, 1}, {9.0, -10.0, 0, 1}, {10.0, -10.0, 0, 1}, + {11.0, -10.0, 0, 1}, {17.0, -10.0, 0, 1}, {18.0, -10.0, 0, 1}, {19.0, -10.0, 0, 1}, {20.0, -10.0, 0, 1}, {21.0, -10.0, 0, 1}, + {22.0, -10.0, 0, 1}, {23.0, -10.0, 0, 1}, {24.0, -10.0, 0, 1}, {25.0, -10.0, 0, 1}, {26.0, -10.0, 0, 1}, {27.0, -10.0, 0, 1}, + {28.0, -10.0, 0, 1}, {29.0, -10.0, 0, 1}, {30.0, -10.0, 0, 1}, {31.0, -10.0, 0, 1}, {-21.0, -9.0, 0, 1}, {-20.0, -9.0, 0, 1}, + {-19.0, -9.0, 0, 1}, {-18.0, -9.0, 0, 1}, {-12.0, -9.0, 0, 1}, {-11.0, -9.0, 0, 1}, {-10.0, -9.0, 0, 1}, {-9.0, -9.0, 0, 1}, + {-8.0, -9.0, 0, 1}, {-7.0, -9.0, 0, 1}, {-6.0, -9.0, 0, 1}, {-5.0, -9.0, 0, 1}, {-4.0, -9.0, 0, 1}, {-3.0, -9.0, 0, 1}, + {-2.0, -9.0, 0, 1}, {-1.0, -9.0, 0, 1}, {0.0, -9.0, 0, 1}, {1.0, -9.0, 0, 1}, {2.0, -9.0, 0, 1}, {3.0, -9.0, 0, 1}, + {4.0, -9.0, 0, 1}, {5.0, -9.0, 0, 1}, {6.0, -9.0, 0, 1}, {7.0, -9.0, 0, 1}, {8.0, -9.0, 0, 1}, {9.0, -9.0, 0, 1}, + {10.0, -9.0, 0, 1}, {11.0, -9.0, 0, 1}, {17.0, -9.0, 0, 1}, {18.0, -9.0, 0, 1}, {19.0, -9.0, 0, 1}, {20.0, -9.0, 0, 1}, + {-21.0, -8.0, 0, 1}, {-20.0, -8.0, 0, 1}, {-19.0, -8.0, 0, 1}, {-18.0, -8.0, 0, 1}, {-12.0, -8.0, 0, 1}, {-11.0, -8.0, 0, 1}, + {-10.0, -8.0, 0, 1}, {-9.0, -8.0, 0, 1}, {8.0, -8.0, 0, 1}, {9.0, -8.0, 0, 1}, {10.0, -8.0, 0, 1}, {11.0, -8.0, 0, 1}, + {17.0, -8.0, 0, 1}, {18.0, -8.0, 0, 1}, {19.0, -8.0, 0, 1}, {20.0, -8.0, 0, 1}, {-21.0, -7.0, 0, 1}, {-20.0, -7.0, 0, 1}, + {-19.0, -7.0, 0, 1}, {-18.0, -7.0, 0, 1}, {-12.0, -7.0, 0, 1}, {-11.0, -7.0, 0, 1}, {-10.0, -7.0, 0, 1}, {-9.0, -7.0, 0, 1}, + {8.0, -7.0, 0, 1}, {9.0, -7.0, 0, 1}, {10.0, -7.0, 0, 1}, {11.0, -7.0, 0, 1}, {17.0, -7.0, 0, 1}, {18.0, -7.0, 0, 1}, + {19.0, -7.0, 0, 1}, {20.0, -7.0, 0, 1}, {-31.0, -6.0, 0, 1}, {-30.0, -6.0, 0, 1}, {-29.0, -6.0, 0, 1}, {-28.0, -6.0, 0, 1}, + {-27.0, -6.0, 0, 1}, {-26.0, -6.0, 0, 1}, {-25.0, -6.0, 0, 1}, {-24.0, -6.0, 0, 1}, {-23.0, -6.0, 0, 1}, {-22.0, -6.0, 0, 1}, + {-21.0, -6.0, 0, 1}, {-20.0, -6.0, 0, 1}, {-19.0, -6.0, 0, 1}, {-18.0, -6.0, 0, 1}, {-12.0, -6.0, 0, 1}, {-11.0, -6.0, 0, 1}, + {-10.0, -6.0, 0, 1}, {-9.0, -6.0, 0, 1}, {8.0, -6.0, 0, 1}, {9.0, -6.0, 0, 1}, {10.0, -6.0, 0, 1}, {11.0, -6.0, 0, 1}, + {17.0, -6.0, 0, 1}, {18.0, -6.0, 0, 1}, {19.0, -6.0, 0, 1}, {20.0, -6.0, 0, 1}, {21.0, -6.0, 0, 1}, {22.0, -6.0, 0, 1}, + {23.0, -6.0, 0, 1}, {24.0, -6.0, 0, 1}, {25.0, -6.0, 0, 1}, {26.0, -6.0, 0, 1}, {27.0, -6.0, 0, 1}, {28.0, -6.0, 0, 1}, + {29.0, -6.0, 0, 1}, {30.0, -6.0, 0, 1}, {-32.0, -5.0, 0, 1}, {-31.0, -5.0, 0, 1}, {-30.0, -5.0, 0, 1}, {-29.0, -5.0, 0, 1}, + {-28.0, -5.0, 0, 1}, {-27.0, -5.0, 0, 1}, {-26.0, -5.0, 0, 1}, {-25.0, -5.0, 0, 1}, {-24.0, -5.0, 0, 1}, {-23.0, -5.0, 0, 1}, + {-22.0, -5.0, 0, 1}, {-21.0, -5.0, 0, 1}, {-20.0, -5.0, 0, 1}, {-19.0, -5.0, 0, 1}, {-18.0, -5.0, 0, 1}, {-12.0, -5.0, 0, 1}, + {-11.0, -5.0, 0, 1}, {-10.0, -5.0, 0, 1}, {-9.0, -5.0, 0, 1}, {8.0, -5.0, 0, 1}, {9.0, -5.0, 0, 1}, {10.0, -5.0, 0, 1}, + {11.0, -5.0, 0, 1}, {17.0, -5.0, 0, 1}, {18.0, -5.0, 0, 1}, {19.0, -5.0, 0, 1}, {20.0, -5.0, 0, 1}, {21.0, -5.0, 0, 1}, + {22.0, -5.0, 0, 1}, {23.0, -5.0, 0, 1}, {24.0, -5.0, 0, 1}, {25.0, -5.0, 0, 1}, {26.0, -5.0, 0, 1}, {27.0, -5.0, 0, 1}, + {28.0, -5.0, 0, 1}, {29.0, -5.0, 0, 1}, {30.0, -5.0, 0, 1}, {31.0, -5.0, 0, 1}, {-32.0, -4.0, 0, 1}, {-31.0, -4.0, 0, 1}, + {-30.0, -4.0, 0, 1}, {-29.0, -4.0, 0, 1}, {-28.0, -4.0, 0, 1}, {-27.0, -4.0, 0, 1}, {-26.0, -4.0, 0, 1}, {-25.0, -4.0, 0, 1}, + {-24.0, -4.0, 0, 1}, {-23.0, -4.0, 0, 1}, {-22.0, -4.0, 0, 1}, {-21.0, -4.0, 0, 1}, {-20.0, -4.0, 0, 1}, {-19.0, -4.0, 0, 1}, + {-18.0, -4.0, 0, 1}, {-12.0, -4.0, 0, 1}, {-11.0, -4.0, 0, 1}, {-10.0, -4.0, 0, 1}, {-9.0, -4.0, 0, 1}, {8.0, -4.0, 0, 1}, + {9.0, -4.0, 0, 1}, {10.0, -4.0, 0, 1}, {11.0, -4.0, 0, 1}, {17.0, -4.0, 0, 1}, {18.0, -4.0, 0, 1}, {19.0, -4.0, 0, 1}, + {20.0, -4.0, 0, 1}, {21.0, -4.0, 0, 1}, {22.0, -4.0, 0, 1}, {23.0, -4.0, 0, 1}, {24.0, -4.0, 0, 1}, {25.0, -4.0, 0, 1}, + {26.0, -4.0, 0, 1}, {27.0, -4.0, 0, 1}, {28.0, -4.0, 0, 1}, {29.0, -4.0, 0, 1}, {30.0, -4.0, 0, 1}, {31.0, -4.0, 0, 1}, + {-32.0, -3.0, 0, 1}, {-31.0, -3.0, 0, 1}, {-30.0, -3.0, 0, 1}, {-29.0, -3.0, 0, 1}, {-28.0, -3.0, 0, 1}, {-27.0, -3.0, 0, 1}, + {-26.0, -3.0, 0, 1}, {-25.0, -3.0, 0, 1}, {-24.0, -3.0, 0, 1}, {-23.0, -3.0, 0, 1}, {-22.0, -3.0, 0, 1}, {-21.0, -3.0, 0, 1}, + {-20.0, -3.0, 0, 1}, {-19.0, -3.0, 0, 1}, {-18.0, -3.0, 0, 1}, {-12.0, -3.0, 0, 1}, {-11.0, -3.0, 0, 1}, {-10.0, -3.0, 0, 1}, + {-9.0, -3.0, 0, 1}, {8.0, -3.0, 0, 1}, {9.0, -3.0, 0, 1}, {10.0, -3.0, 0, 1}, {11.0, -3.0, 0, 1}, {17.0, -3.0, 0, 1}, + {18.0, -3.0, 0, 1}, {19.0, -3.0, 0, 1}, {20.0, -3.0, 0, 1}, {21.0, -3.0, 0, 1}, {22.0, -3.0, 0, 1}, {23.0, -3.0, 0, 1}, + {24.0, -3.0, 0, 1}, {25.0, -3.0, 0, 1}, {26.0, -3.0, 0, 1}, {27.0, -3.0, 0, 1}, {28.0, -3.0, 0, 1}, {29.0, -3.0, 0, 1}, + {30.0, -3.0, 0, 1}, {31.0, -3.0, 0, 1}, {-31.0, -2.0, 0, 1}, {-30.0, -2.0, 0, 1}, {-29.0, -2.0, 0, 1}, {-28.0, -2.0, 0, 1}, + {-27.0, -2.0, 0, 1}, {-26.0, -2.0, 0, 1}, {-25.0, -2.0, 0, 1}, {-24.0, -2.0, 0, 1}, {-23.0, -2.0, 0, 1}, {-22.0, -2.0, 0, 1}, + {-21.0, -2.0, 0, 1}, {-20.0, -2.0, 0, 1}, {-19.0, -2.0, 0, 1}, {-18.0, -2.0, 0, 1}, {-12.0, -2.0, 0, 1}, {-11.0, -2.0, 0, 1}, + {-10.0, -2.0, 0, 1}, {-9.0, -2.0, 0, 1}, {8.0, -2.0, 0, 1}, {9.0, -2.0, 0, 1}, {10.0, -2.0, 0, 1}, {11.0, -2.0, 0, 1}, + {17.0, -2.0, 0, 1}, {18.0, -2.0, 0, 1}, {19.0, -2.0, 0, 1}, {20.0, -2.0, 0, 1}, {21.0, -2.0, 0, 1}, {22.0, -2.0, 0, 1}, + {23.0, -2.0, 0, 1}, {24.0, -2.0, 0, 1}, {25.0, -2.0, 0, 1}, {26.0, -2.0, 0, 1}, {27.0, -2.0, 0, 1}, {28.0, -2.0, 0, 1}, + {29.0, -2.0, 0, 1}, {-21.0, -1.0, 0, 1}, {-20.0, -1.0, 0, 1}, {-19.0, -1.0, 0, 1}, {-18.0, -1.0, 0, 1}, {-12.0, -1.0, 0, 1}, + {-11.0, -1.0, 0, 1}, {-10.0, -1.0, 0, 1}, {-9.0, -1.0, 0, 1}, {8.0, -1.0, 0, 1}, {9.0, -1.0, 0, 1}, {10.0, -1.0, 0, 1}, + {11.0, -1.0, 0, 1}, {17.0, -1.0, 0, 1}, {18.0, -1.0, 0, 1}, {19.0, -1.0, 0, 1}, {20.0, -1.0, 0, 1}, {-21.0, 0.0, 0, 1}, + {-20.0, 0.0, 0, 1}, {-19.0, 0.0, 0, 1}, {-18.0, 0.0, 0, 1}, {-12.0, 0.0, 0, 1}, {-11.0, 0.0, 0, 1}, {-10.0, 0.0, 0, 1}, + {-9.0, 0.0, 0, 1}, {8.0, 0.0, 0, 1}, {9.0, 0.0, 0, 1}, {10.0, 0.0, 0, 1}, {11.0, 0.0, 0, 1}, {17.0, 0.0, 0, 1}, + {18.0, 0.0, 0, 1}, {19.0, 0.0, 0, 1}, {20.0, 0.0, 0, 1}, {-31.0, 1.0, 0, 1}, {-30.0, 1.0, 0, 1}, {-29.0, 1.0, 0, 1}, + {-28.0, 1.0, 0, 1}, {-27.0, 1.0, 0, 1}, {-26.0, 1.0, 0, 1}, {-25.0, 1.0, 0, 1}, {-24.0, 1.0, 0, 1}, {-23.0, 1.0, 0, 1}, + {-22.0, 1.0, 0, 1}, {-21.0, 1.0, 0, 1}, {-20.0, 1.0, 0, 1}, {-19.0, 1.0, 0, 1}, {-18.0, 1.0, 0, 1}, {-12.0, 1.0, 0, 1}, + {-11.0, 1.0, 0, 1}, {-10.0, 1.0, 0, 1}, {-9.0, 1.0, 0, 1}, {8.0, 1.0, 0, 1}, {9.0, 1.0, 0, 1}, {10.0, 1.0, 0, 1}, + {11.0, 1.0, 0, 1}, {17.0, 1.0, 0, 1}, {18.0, 1.0, 0, 1}, {19.0, 1.0, 0, 1}, {20.0, 1.0, 0, 1}, {21.0, 1.0, 0, 1}, + {22.0, 1.0, 0, 1}, {23.0, 1.0, 0, 1}, {24.0, 1.0, 0, 1}, {25.0, 1.0, 0, 1}, {26.0, 1.0, 0, 1}, {27.0, 1.0, 0, 1}, + {28.0, 1.0, 0, 1}, {29.0, 1.0, 0, 1}, {30.0, 1.0, 0, 1}, {-32.0, 2.0, 0, 1}, {-31.0, 2.0, 0, 1}, {-30.0, 2.0, 0, 1}, + {-29.0, 2.0, 0, 1}, {-28.0, 2.0, 0, 1}, {-27.0, 2.0, 0, 1}, {-26.0, 2.0, 0, 1}, {-25.0, 2.0, 0, 1}, {-24.0, 2.0, 0, 1}, + {-23.0, 2.0, 0, 1}, {-22.0, 2.0, 0, 1}, {-21.0, 2.0, 0, 1}, {-20.0, 2.0, 0, 1}, {-19.0, 2.0, 0, 1}, {-18.0, 2.0, 0, 1}, + {-12.0, 2.0, 0, 1}, {-11.0, 2.0, 0, 1}, {-10.0, 2.0, 0, 1}, {-9.0, 2.0, 0, 1}, {8.0, 2.0, 0, 1}, {9.0, 2.0, 0, 1}, + {10.0, 2.0, 0, 1}, {11.0, 2.0, 0, 1}, {17.0, 2.0, 0, 1}, {18.0, 2.0, 0, 1}, {19.0, 2.0, 0, 1}, {20.0, 2.0, 0, 1}, + {21.0, 2.0, 0, 1}, {22.0, 2.0, 0, 1}, {23.0, 2.0, 0, 1}, {24.0, 2.0, 0, 1}, {25.0, 2.0, 0, 1}, {26.0, 2.0, 0, 1}, + {27.0, 2.0, 0, 1}, {28.0, 2.0, 0, 1}, {29.0, 2.0, 0, 1}, {30.0, 2.0, 0, 1}, {31.0, 2.0, 0, 1}, {-32.0, 3.0, 0, 1}, + {-31.0, 3.0, 0, 1}, {-30.0, 3.0, 0, 1}, {-29.0, 3.0, 0, 1}, {-28.0, 3.0, 0, 1}, {-27.0, 3.0, 0, 1}, {-26.0, 3.0, 0, 1}, + {-25.0, 3.0, 0, 1}, {-24.0, 3.0, 0, 1}, {-23.0, 3.0, 0, 1}, {-22.0, 3.0, 0, 1}, {-21.0, 3.0, 0, 1}, {-20.0, 3.0, 0, 1}, + {-19.0, 3.0, 0, 1}, {-18.0, 3.0, 0, 1}, {-12.0, 3.0, 0, 1}, {-11.0, 3.0, 0, 1}, {-10.0, 3.0, 0, 1}, {-9.0, 3.0, 0, 1}, + {8.0, 3.0, 0, 1}, {9.0, 3.0, 0, 1}, {10.0, 3.0, 0, 1}, {11.0, 3.0, 0, 1}, {17.0, 3.0, 0, 1}, {18.0, 3.0, 0, 1}, + {19.0, 3.0, 0, 1}, {20.0, 3.0, 0, 1}, {21.0, 3.0, 0, 1}, {22.0, 3.0, 0, 1}, {23.0, 3.0, 0, 1}, {24.0, 3.0, 0, 1}, + {25.0, 3.0, 0, 1}, {26.0, 3.0, 0, 1}, {27.0, 3.0, 0, 1}, {28.0, 3.0, 0, 1}, {29.0, 3.0, 0, 1}, {30.0, 3.0, 0, 1}, + {31.0, 3.0, 0, 1}, {-32.0, 4.0, 0, 1}, {-31.0, 4.0, 0, 1}, {-30.0, 4.0, 0, 1}, {-29.0, 4.0, 0, 1}, {-28.0, 4.0, 0, 1}, + {-27.0, 4.0, 0, 1}, {-26.0, 4.0, 0, 1}, {-25.0, 4.0, 0, 1}, {-24.0, 4.0, 0, 1}, {-23.0, 4.0, 0, 1}, {-22.0, 4.0, 0, 1}, + {-21.0, 4.0, 0, 1}, {-20.0, 4.0, 0, 1}, {-19.0, 4.0, 0, 1}, {-18.0, 4.0, 0, 1}, {-12.0, 4.0, 0, 1}, {-11.0, 4.0, 0, 1}, + {-10.0, 4.0, 0, 1}, {-9.0, 4.0, 0, 1}, {8.0, 4.0, 0, 1}, {9.0, 4.0, 0, 1}, {10.0, 4.0, 0, 1}, {11.0, 4.0, 0, 1}, + {17.0, 4.0, 0, 1}, {18.0, 4.0, 0, 1}, {19.0, 4.0, 0, 1}, {20.0, 4.0, 0, 1}, {21.0, 4.0, 0, 1}, {22.0, 4.0, 0, 1}, + {23.0, 4.0, 0, 1}, {24.0, 4.0, 0, 1}, {25.0, 4.0, 0, 1}, {26.0, 4.0, 0, 1}, {27.0, 4.0, 0, 1}, {28.0, 4.0, 0, 1}, + {29.0, 4.0, 0, 1}, {30.0, 4.0, 0, 1}, {31.0, 4.0, 0, 1}, {-31.0, 5.0, 0, 1}, {-30.0, 5.0, 0, 1}, {-29.0, 5.0, 0, 1}, + {-28.0, 5.0, 0, 1}, {-27.0, 5.0, 0, 1}, {-26.0, 5.0, 0, 1}, {-25.0, 5.0, 0, 1}, {-24.0, 5.0, 0, 1}, {-23.0, 5.0, 0, 1}, + {-22.0, 5.0, 0, 1}, {-21.0, 5.0, 0, 1}, {-20.0, 5.0, 0, 1}, {-19.0, 5.0, 0, 1}, {-18.0, 5.0, 0, 1}, {-12.0, 5.0, 0, 1}, + {-11.0, 5.0, 0, 1}, {-10.0, 5.0, 0, 1}, {-9.0, 5.0, 0, 1}, {8.0, 5.0, 0, 1}, {9.0, 5.0, 0, 1}, {10.0, 5.0, 0, 1}, + {11.0, 5.0, 0, 1}, {17.0, 5.0, 0, 1}, {18.0, 5.0, 0, 1}, {19.0, 5.0, 0, 1}, {20.0, 5.0, 0, 1}, {21.0, 5.0, 0, 1}, + {22.0, 5.0, 0, 1}, {23.0, 5.0, 0, 1}, {24.0, 5.0, 0, 1}, {25.0, 5.0, 0, 1}, {26.0, 5.0, 0, 1}, {27.0, 5.0, 0, 1}, + {28.0, 5.0, 0, 1}, {29.0, 5.0, 0, 1}, {30.0, 5.0, 0, 1}, {-21.0, 6.0, 0, 1}, {-20.0, 6.0, 0, 1}, {-19.0, 6.0, 0, 1}, + {-18.0, 6.0, 0, 1}, {-12.0, 6.0, 0, 1}, {-11.0, 6.0, 0, 1}, {-10.0, 6.0, 0, 1}, {-9.0, 6.0, 0, 1}, {8.0, 6.0, 0, 1}, + {9.0, 6.0, 0, 1}, {10.0, 6.0, 0, 1}, {11.0, 6.0, 0, 1}, {17.0, 6.0, 0, 1}, {18.0, 6.0, 0, 1}, {19.0, 6.0, 0, 1}, + {20.0, 6.0, 0, 1}, {-21.0, 7.0, 0, 1}, {-20.0, 7.0, 0, 1}, {-19.0, 7.0, 0, 1}, {-18.0, 7.0, 0, 1}, {-12.0, 7.0, 0, 1}, + {-11.0, 7.0, 0, 1}, {-10.0, 7.0, 0, 1}, {-9.0, 7.0, 0, 1}, {8.0, 7.0, 0, 1}, {9.0, 7.0, 0, 1}, {10.0, 7.0, 0, 1}, + {11.0, 7.0, 0, 1}, {17.0, 7.0, 0, 1}, {18.0, 7.0, 0, 1}, {19.0, 7.0, 0, 1}, {20.0, 7.0, 0, 1}, {-31.0, 8.0, 0, 1}, + {-30.0, 8.0, 0, 1}, {-29.0, 8.0, 0, 1}, {-28.0, 8.0, 0, 1}, {-27.0, 8.0, 0, 1}, {-26.0, 8.0, 0, 1}, {-25.0, 8.0, 0, 1}, + {-24.0, 8.0, 0, 1}, {-23.0, 8.0, 0, 1}, {-22.0, 8.0, 0, 1}, {-21.0, 8.0, 0, 1}, {-20.0, 8.0, 0, 1}, {-19.0, 8.0, 0, 1}, + {-18.0, 8.0, 0, 1}, {-12.0, 8.0, 0, 1}, {-11.0, 8.0, 0, 1}, {-10.0, 8.0, 0, 1}, {-9.0, 8.0, 0, 1}, {-8.0, 8.0, 0, 1}, + {-7.0, 8.0, 0, 1}, {-6.0, 8.0, 0, 1}, {-5.0, 8.0, 0, 1}, {-4.0, 8.0, 0, 1}, {-3.0, 8.0, 0, 1}, {-2.0, 8.0, 0, 1}, + {-1.0, 8.0, 0, 1}, {0.0, 8.0, 0, 1}, {1.0, 8.0, 0, 1}, {2.0, 8.0, 0, 1}, {3.0, 8.0, 0, 1}, {4.0, 8.0, 0, 1}, + {5.0, 8.0, 0, 1}, {6.0, 8.0, 0, 1}, {7.0, 8.0, 0, 1}, {8.0, 8.0, 0, 1}, {9.0, 8.0, 0, 1}, {10.0, 8.0, 0, 1}, + {11.0, 8.0, 0, 1}, {17.0, 8.0, 0, 1}, {18.0, 8.0, 0, 1}, {19.0, 8.0, 0, 1}, {20.0, 8.0, 0, 1}, {21.0, 8.0, 0, 1}, + {22.0, 8.0, 0, 1}, {23.0, 8.0, 0, 1}, {24.0, 8.0, 0, 1}, {25.0, 8.0, 0, 1}, {26.0, 8.0, 0, 1}, {27.0, 8.0, 0, 1}, + {28.0, 8.0, 0, 1}, {29.0, 8.0, 0, 1}, {-32.0, 9.0, 0, 1}, {-31.0, 9.0, 0, 1}, {-30.0, 9.0, 0, 1}, {-29.0, 9.0, 0, 1}, + {-28.0, 9.0, 0, 1}, {-27.0, 9.0, 0, 1}, {-26.0, 9.0, 0, 1}, {-25.0, 9.0, 0, 1}, {-24.0, 9.0, 0, 1}, {-23.0, 9.0, 0, 1}, + {-22.0, 9.0, 0, 1}, {-21.0, 9.0, 0, 1}, {-20.0, 9.0, 0, 1}, {-19.0, 9.0, 0, 1}, {-18.0, 9.0, 0, 1}, {-12.0, 9.0, 0, 1}, + {-11.0, 9.0, 0, 1}, {-10.0, 9.0, 0, 1}, {-9.0, 9.0, 0, 1}, {-8.0, 9.0, 0, 1}, {-7.0, 9.0, 0, 1}, {-6.0, 9.0, 0, 1}, + {-5.0, 9.0, 0, 1}, {-4.0, 9.0, 0, 1}, {-3.0, 9.0, 0, 1}, {-2.0, 9.0, 0, 1}, {-1.0, 9.0, 0, 1}, {0.0, 9.0, 0, 1}, + {1.0, 9.0, 0, 1}, {2.0, 9.0, 0, 1}, {3.0, 9.0, 0, 1}, {4.0, 9.0, 0, 1}, {5.0, 9.0, 0, 1}, {6.0, 9.0, 0, 1}, + {7.0, 9.0, 0, 1}, {8.0, 9.0, 0, 1}, {9.0, 9.0, 0, 1}, {10.0, 9.0, 0, 1}, {11.0, 9.0, 0, 1}, {17.0, 9.0, 0, 1}, + {18.0, 9.0, 0, 1}, {19.0, 9.0, 0, 1}, {20.0, 9.0, 0, 1}, {21.0, 9.0, 0, 1}, {22.0, 9.0, 0, 1}, {23.0, 9.0, 0, 1}, + {24.0, 9.0, 0, 1}, {25.0, 9.0, 0, 1}, {26.0, 9.0, 0, 1}, {27.0, 9.0, 0, 1}, {28.0, 9.0, 0, 1}, {29.0, 9.0, 0, 1}, + {30.0, 9.0, 0, 1}, {31.0, 9.0, 0, 1}, {-32.0, 10.0, 0, 1}, {-31.0, 10.0, 0, 1}, {-30.0, 10.0, 0, 1}, {-29.0, 10.0, 0, 1}, + {-28.0, 10.0, 0, 1}, {-27.0, 10.0, 0, 1}, {-26.0, 10.0, 0, 1}, {-25.0, 10.0, 0, 1}, {-24.0, 10.0, 0, 1}, {-23.0, 10.0, 0, 1}, + {-22.0, 10.0, 0, 1}, {-21.0, 10.0, 0, 1}, {-20.0, 10.0, 0, 1}, {-19.0, 10.0, 0, 1}, {-18.0, 10.0, 0, 1}, {-12.0, 10.0, 0, 1}, + {-11.0, 10.0, 0, 1}, {-10.0, 10.0, 0, 1}, {-9.0, 10.0, 0, 1}, {-8.0, 10.0, 0, 1}, {-7.0, 10.0, 0, 1}, {-6.0, 10.0, 0, 1}, + {-5.0, 10.0, 0, 1}, {-4.0, 10.0, 0, 1}, {-3.0, 10.0, 0, 1}, {-2.0, 10.0, 0, 1}, {-1.0, 10.0, 0, 1}, {0.0, 10.0, 0, 1}, + {1.0, 10.0, 0, 1}, {2.0, 10.0, 0, 1}, {3.0, 10.0, 0, 1}, {4.0, 10.0, 0, 1}, {5.0, 10.0, 0, 1}, {6.0, 10.0, 0, 1}, + {7.0, 10.0, 0, 1}, {8.0, 10.0, 0, 1}, {9.0, 10.0, 0, 1}, {10.0, 10.0, 0, 1}, {11.0, 10.0, 0, 1}, {17.0, 10.0, 0, 1}, + {18.0, 10.0, 0, 1}, {19.0, 10.0, 0, 1}, {20.0, 10.0, 0, 1}, {21.0, 10.0, 0, 1}, {22.0, 10.0, 0, 1}, {23.0, 10.0, 0, 1}, + {24.0, 10.0, 0, 1}, {25.0, 10.0, 0, 1}, {26.0, 10.0, 0, 1}, {27.0, 10.0, 0, 1}, {28.0, 10.0, 0, 1}, {29.0, 10.0, 0, 1}, + {30.0, 10.0, 0, 1}, {31.0, 10.0, 0, 1}, {-32.0, 11.0, 0, 1}, {-31.0, 11.0, 0, 1}, {-30.0, 11.0, 0, 1}, {-29.0, 11.0, 0, 1}, + {-28.0, 11.0, 0, 1}, {-27.0, 11.0, 0, 1}, {-26.0, 11.0, 0, 1}, {-25.0, 11.0, 0, 1}, {-24.0, 11.0, 0, 1}, {-23.0, 11.0, 0, 1}, + {-22.0, 11.0, 0, 1}, {-21.0, 11.0, 0, 1}, {-20.0, 11.0, 0, 1}, {-19.0, 11.0, 0, 1}, {-18.0, 11.0, 0, 1}, {-12.0, 11.0, 0, 1}, + {-11.0, 11.0, 0, 1}, {-10.0, 11.0, 0, 1}, {-9.0, 11.0, 0, 1}, {-8.0, 11.0, 0, 1}, {-7.0, 11.0, 0, 1}, {-6.0, 11.0, 0, 1}, + {-5.0, 11.0, 0, 1}, {-4.0, 11.0, 0, 1}, {-3.0, 11.0, 0, 1}, {-2.0, 11.0, 0, 1}, {-1.0, 11.0, 0, 1}, {0.0, 11.0, 0, 1}, + {1.0, 11.0, 0, 1}, {2.0, 11.0, 0, 1}, {3.0, 11.0, 0, 1}, {4.0, 11.0, 0, 1}, {5.0, 11.0, 0, 1}, {6.0, 11.0, 0, 1}, + {7.0, 11.0, 0, 1}, {8.0, 11.0, 0, 1}, {9.0, 11.0, 0, 1}, {10.0, 11.0, 0, 1}, {11.0, 11.0, 0, 1}, {17.0, 11.0, 0, 1}, + {18.0, 11.0, 0, 1}, {19.0, 11.0, 0, 1}, {20.0, 11.0, 0, 1}, {21.0, 11.0, 0, 1}, {22.0, 11.0, 0, 1}, {23.0, 11.0, 0, 1}, + {24.0, 11.0, 0, 1}, {25.0, 11.0, 0, 1}, {26.0, 11.0, 0, 1}, {27.0, 11.0, 0, 1}, {28.0, 11.0, 0, 1}, {29.0, 11.0, 0, 1}, + {30.0, 11.0, 0, 1}, {31.0, 11.0, 0, 1}, {-31.0, 12.0, 0, 1}, {-30.0, 12.0, 0, 1}, {-29.0, 12.0, 0, 1}, {-28.0, 12.0, 0, 1}, + {-27.0, 12.0, 0, 1}, {-26.0, 12.0, 0, 1}, {-25.0, 12.0, 0, 1}, {-24.0, 12.0, 0, 1}, {-23.0, 12.0, 0, 1}, {-22.0, 12.0, 0, 1}, + {-21.0, 12.0, 0, 1}, {-20.0, 12.0, 0, 1}, {-19.0, 12.0, 0, 1}, {-18.0, 12.0, 0, 1}, {17.0, 12.0, 0, 1}, {18.0, 12.0, 0, 1}, + {19.0, 12.0, 0, 1}, {20.0, 12.0, 0, 1}, {21.0, 12.0, 0, 1}, {22.0, 12.0, 0, 1}, {23.0, 12.0, 0, 1}, {24.0, 12.0, 0, 1}, + {25.0, 12.0, 0, 1}, {26.0, 12.0, 0, 1}, {27.0, 12.0, 0, 1}, {28.0, 12.0, 0, 1}, {29.0, 12.0, 0, 1}, {30.0, 12.0, 0, 1}, + {-21.0, 13.0, 0, 1}, {-20.0, 13.0, 0, 1}, {-19.0, 13.0, 0, 1}, {-18.0, 13.0, 0, 1}, {17.0, 13.0, 0, 1}, {18.0, 13.0, 0, 1}, + {19.0, 13.0, 0, 1}, {20.0, 13.0, 0, 1}, {-21.0, 14.0, 0, 1}, {-20.0, 14.0, 0, 1}, {-19.0, 14.0, 0, 1}, {-18.0, 14.0, 0, 1}, + {17.0, 14.0, 0, 1}, {18.0, 14.0, 0, 1}, {19.0, 14.0, 0, 1}, {20.0, 14.0, 0, 1}, {-21.0, 15.0, 0, 1}, {-20.0, 15.0, 0, 1}, + {-19.0, 15.0, 0, 1}, {-18.0, 15.0, 0, 1}, {17.0, 15.0, 0, 1}, {18.0, 15.0, 0, 1}, {19.0, 15.0, 0, 1}, {20.0, 15.0, 0, 1}, + {-21.0, 16.0, 0, 1}, {-20.0, 16.0, 0, 1}, {-19.0, 16.0, 0, 1}, {-18.0, 16.0, 0, 1}, {17.0, 16.0, 0, 1}, {18.0, 16.0, 0, 1}, + {19.0, 16.0, 0, 1}, {20.0, 16.0, 0, 1}, {-21.0, 17.0, 0, 1}, {-20.0, 17.0, 0, 1}, {-19.0, 17.0, 0, 1}, {-18.0, 17.0, 0, 1}, + {-17.0, 17.0, 0, 1}, {-16.0, 17.0, 0, 1}, {-15.0, 17.0, 0, 1}, {-14.0, 17.0, 0, 1}, {-13.0, 17.0, 0, 1}, {-12.0, 17.0, 0, 1}, + {-11.0, 17.0, 0, 1}, {-10.0, 17.0, 0, 1}, {-9.0, 17.0, 0, 1}, {-8.0, 17.0, 0, 1}, {-7.0, 17.0, 0, 1}, {-6.0, 17.0, 0, 1}, + {-5.0, 17.0, 0, 1}, {-4.0, 17.0, 0, 1}, {-3.0, 17.0, 0, 1}, {-2.0, 17.0, 0, 1}, {-1.0, 17.0, 0, 1}, {0.0, 17.0, 0, 1}, + {1.0, 17.0, 0, 1}, {2.0, 17.0, 0, 1}, {3.0, 17.0, 0, 1}, {4.0, 17.0, 0, 1}, {5.0, 17.0, 0, 1}, {6.0, 17.0, 0, 1}, + {7.0, 17.0, 0, 1}, {8.0, 17.0, 0, 1}, {9.0, 17.0, 0, 1}, {10.0, 17.0, 0, 1}, {11.0, 17.0, 0, 1}, {12.0, 17.0, 0, 1}, + {13.0, 17.0, 0, 1}, {14.0, 17.0, 0, 1}, {15.0, 17.0, 0, 1}, {16.0, 17.0, 0, 1}, {17.0, 17.0, 0, 1}, {18.0, 17.0, 0, 1}, + {19.0, 17.0, 0, 1}, {20.0, 17.0, 0, 1}, {-21.0, 18.0, 0, 1}, {-20.0, 18.0, 0, 1}, {-19.0, 18.0, 0, 1}, {-18.0, 18.0, 0, 1}, + {-17.0, 18.0, 0, 1}, {-16.0, 18.0, 0, 1}, {-15.0, 18.0, 0, 1}, {-14.0, 18.0, 0, 1}, {-13.0, 18.0, 0, 1}, {-12.0, 18.0, 0, 1}, + {-11.0, 18.0, 0, 1}, {-10.0, 18.0, 0, 1}, {-9.0, 18.0, 0, 1}, {-8.0, 18.0, 0, 1}, {-7.0, 18.0, 0, 1}, {-6.0, 18.0, 0, 1}, + {-5.0, 18.0, 0, 1}, {-4.0, 18.0, 0, 1}, {-3.0, 18.0, 0, 1}, {-2.0, 18.0, 0, 1}, {-1.0, 18.0, 0, 1}, {0.0, 18.0, 0, 1}, + {1.0, 18.0, 0, 1}, {2.0, 18.0, 0, 1}, {3.0, 18.0, 0, 1}, {4.0, 18.0, 0, 1}, {5.0, 18.0, 0, 1}, {6.0, 18.0, 0, 1}, + {7.0, 18.0, 0, 1}, {8.0, 18.0, 0, 1}, {9.0, 18.0, 0, 1}, {10.0, 18.0, 0, 1}, {11.0, 18.0, 0, 1}, {12.0, 18.0, 0, 1}, + {13.0, 18.0, 0, 1}, {14.0, 18.0, 0, 1}, {15.0, 18.0, 0, 1}, {16.0, 18.0, 0, 1}, {17.0, 18.0, 0, 1}, {18.0, 18.0, 0, 1}, + {19.0, 18.0, 0, 1}, {20.0, 18.0, 0, 1}, {-21.0, 19.0, 0, 1}, {-20.0, 19.0, 0, 1}, {-19.0, 19.0, 0, 1}, {-18.0, 19.0, 0, 1}, + {-17.0, 19.0, 0, 1}, {-16.0, 19.0, 0, 1}, {-15.0, 19.0, 0, 1}, {-14.0, 19.0, 0, 1}, {-13.0, 19.0, 0, 1}, {-12.0, 19.0, 0, 1}, + {-11.0, 19.0, 0, 1}, {-10.0, 19.0, 0, 1}, {-9.0, 19.0, 0, 1}, {-8.0, 19.0, 0, 1}, {-7.0, 19.0, 0, 1}, {-6.0, 19.0, 0, 1}, + {-5.0, 19.0, 0, 1}, {-4.0, 19.0, 0, 1}, {-3.0, 19.0, 0, 1}, {-2.0, 19.0, 0, 1}, {-1.0, 19.0, 0, 1}, {0.0, 19.0, 0, 1}, + {1.0, 19.0, 0, 1}, {2.0, 19.0, 0, 1}, {3.0, 19.0, 0, 1}, {4.0, 19.0, 0, 1}, {5.0, 19.0, 0, 1}, {6.0, 19.0, 0, 1}, + {7.0, 19.0, 0, 1}, {8.0, 19.0, 0, 1}, {9.0, 19.0, 0, 1}, {10.0, 19.0, 0, 1}, {11.0, 19.0, 0, 1}, {12.0, 19.0, 0, 1}, + {13.0, 19.0, 0, 1}, {14.0, 19.0, 0, 1}, {15.0, 19.0, 0, 1}, {16.0, 19.0, 0, 1}, {17.0, 19.0, 0, 1}, {18.0, 19.0, 0, 1}, + {19.0, 19.0, 0, 1}, {20.0, 19.0, 0, 1}, {-21.0, 20.0, 0, 1}, {-20.0, 20.0, 0, 1}, {-19.0, 20.0, 0, 1}, {-18.0, 20.0, 0, 1}, + {-17.0, 20.0, 0, 1}, {-16.0, 20.0, 0, 1}, {-15.0, 20.0, 0, 1}, {-14.0, 20.0, 0, 1}, {-13.0, 20.0, 0, 1}, {-12.0, 20.0, 0, 1}, + {-11.0, 20.0, 0, 1}, {-10.0, 20.0, 0, 1}, {-9.0, 20.0, 0, 1}, {-8.0, 20.0, 0, 1}, {-7.0, 20.0, 0, 1}, {-6.0, 20.0, 0, 1}, + {-5.0, 20.0, 0, 1}, {-4.0, 20.0, 0, 1}, {-3.0, 20.0, 0, 1}, {-2.0, 20.0, 0, 1}, {-1.0, 20.0, 0, 1}, {0.0, 20.0, 0, 1}, + {1.0, 20.0, 0, 1}, {2.0, 20.0, 0, 1}, {3.0, 20.0, 0, 1}, {4.0, 20.0, 0, 1}, {5.0, 20.0, 0, 1}, {6.0, 20.0, 0, 1}, + {7.0, 20.0, 0, 1}, {8.0, 20.0, 0, 1}, {9.0, 20.0, 0, 1}, {10.0, 20.0, 0, 1}, {11.0, 20.0, 0, 1}, {12.0, 20.0, 0, 1}, + {13.0, 20.0, 0, 1}, {14.0, 20.0, 0, 1}, {15.0, 20.0, 0, 1}, {16.0, 20.0, 0, 1}, {17.0, 20.0, 0, 1}, {18.0, 20.0, 0, 1}, + {19.0, 20.0, 0, 1}, {20.0, 20.0, 0, 1}, {-13.0, 21.0, 0, 1}, {-12.0, 21.0, 0, 1}, {-11.0, 21.0, 0, 1}, {-10.0, 21.0, 0, 1}, + {-6.0, 21.0, 0, 1}, {-5.0, 21.0, 0, 1}, {-4.0, 21.0, 0, 1}, {-3.0, 21.0, 0, 1}, {-2.0, 21.0, 0, 1}, {1.0, 21.0, 0, 1}, + {2.0, 21.0, 0, 1}, {3.0, 21.0, 0, 1}, {4.0, 21.0, 0, 1}, {5.0, 21.0, 0, 1}, {8.0, 21.0, 0, 1}, {9.0, 21.0, 0, 1}, + {10.0, 21.0, 0, 1}, {11.0, 21.0, 0, 1}, {12.0, 21.0, 0, 1}, {-13.0, 22.0, 0, 1}, {-12.0, 22.0, 0, 1}, {-11.0, 22.0, 0, 1}, + {-10.0, 22.0, 0, 1}, {-6.0, 22.0, 0, 1}, {-5.0, 22.0, 0, 1}, {-4.0, 22.0, 0, 1}, {-3.0, 22.0, 0, 1}, {-2.0, 22.0, 0, 1}, + {1.0, 22.0, 0, 1}, {2.0, 22.0, 0, 1}, {3.0, 22.0, 0, 1}, {4.0, 22.0, 0, 1}, {5.0, 22.0, 0, 1}, {8.0, 22.0, 0, 1}, + {9.0, 22.0, 0, 1}, {10.0, 22.0, 0, 1}, {11.0, 22.0, 0, 1}, {12.0, 22.0, 0, 1}, {-13.0, 23.0, 0, 1}, {-12.0, 23.0, 0, 1}, + {-11.0, 23.0, 0, 1}, {-10.0, 23.0, 0, 1}, {-6.0, 23.0, 0, 1}, {-5.0, 23.0, 0, 1}, {-4.0, 23.0, 0, 1}, {-3.0, 23.0, 0, 1}, + {-2.0, 23.0, 0, 1}, {1.0, 23.0, 0, 1}, {2.0, 23.0, 0, 1}, {3.0, 23.0, 0, 1}, {4.0, 23.0, 0, 1}, {5.0, 23.0, 0, 1}, + {8.0, 23.0, 0, 1}, {9.0, 23.0, 0, 1}, {10.0, 23.0, 0, 1}, {11.0, 23.0, 0, 1}, {12.0, 23.0, 0, 1}, {-13.0, 24.0, 0, 1}, + {-12.0, 24.0, 0, 1}, {-11.0, 24.0, 0, 1}, {-10.0, 24.0, 0, 1}, {-6.0, 24.0, 0, 1}, {-5.0, 24.0, 0, 1}, {-4.0, 24.0, 0, 1}, + {-3.0, 24.0, 0, 1}, {-2.0, 24.0, 0, 1}, {1.0, 24.0, 0, 1}, {2.0, 24.0, 0, 1}, {3.0, 24.0, 0, 1}, {4.0, 24.0, 0, 1}, + {5.0, 24.0, 0, 1}, {8.0, 24.0, 0, 1}, {9.0, 24.0, 0, 1}, {10.0, 24.0, 0, 1}, {11.0, 24.0, 0, 1}, {12.0, 24.0, 0, 1}, + {-13.0, 25.0, 0, 1}, {-12.0, 25.0, 0, 1}, {-11.0, 25.0, 0, 1}, {-10.0, 25.0, 0, 1}, {-6.0, 25.0, 0, 1}, {-5.0, 25.0, 0, 1}, + {-4.0, 25.0, 0, 1}, {-3.0, 25.0, 0, 1}, {-2.0, 25.0, 0, 1}, {1.0, 25.0, 0, 1}, {2.0, 25.0, 0, 1}, {3.0, 25.0, 0, 1}, + {4.0, 25.0, 0, 1}, {5.0, 25.0, 0, 1}, {8.0, 25.0, 0, 1}, {9.0, 25.0, 0, 1}, {10.0, 25.0, 0, 1}, {11.0, 25.0, 0, 1}, + {12.0, 25.0, 0, 1}, {-13.0, 26.0, 0, 1}, {-12.0, 26.0, 0, 1}, {-11.0, 26.0, 0, 1}, {-10.0, 26.0, 0, 1}, {-6.0, 26.0, 0, 1}, + {-5.0, 26.0, 0, 1}, {-4.0, 26.0, 0, 1}, {-3.0, 26.0, 0, 1}, {-2.0, 26.0, 0, 1}, {1.0, 26.0, 0, 1}, {2.0, 26.0, 0, 1}, + {3.0, 26.0, 0, 1}, {4.0, 26.0, 0, 1}, {5.0, 26.0, 0, 1}, {8.0, 26.0, 0, 1}, {9.0, 26.0, 0, 1}, {10.0, 26.0, 0, 1}, + {11.0, 26.0, 0, 1}, {12.0, 26.0, 0, 1}, {-13.0, 27.0, 0, 1}, {-12.0, 27.0, 0, 1}, {-11.0, 27.0, 0, 1}, {-10.0, 27.0, 0, 1}, + {-6.0, 27.0, 0, 1}, {-5.0, 27.0, 0, 1}, {-4.0, 27.0, 0, 1}, {-3.0, 27.0, 0, 1}, {-2.0, 27.0, 0, 1}, {1.0, 27.0, 0, 1}, + {2.0, 27.0, 0, 1}, {3.0, 27.0, 0, 1}, {4.0, 27.0, 0, 1}, {5.0, 27.0, 0, 1}, {8.0, 27.0, 0, 1}, {9.0, 27.0, 0, 1}, + {10.0, 27.0, 0, 1}, {11.0, 27.0, 0, 1}, {12.0, 27.0, 0, 1}, {-13.0, 28.0, 0, 1}, {-12.0, 28.0, 0, 1}, {-11.0, 28.0, 0, 1}, + {-10.0, 28.0, 0, 1}, {-6.0, 28.0, 0, 1}, {-5.0, 28.0, 0, 1}, {-4.0, 28.0, 0, 1}, {-3.0, 28.0, 0, 1}, {-2.0, 28.0, 0, 1}, + {1.0, 28.0, 0, 1}, {2.0, 28.0, 0, 1}, {3.0, 28.0, 0, 1}, {4.0, 28.0, 0, 1}, {5.0, 28.0, 0, 1}, {8.0, 28.0, 0, 1}, + {9.0, 28.0, 0, 1}, {10.0, 28.0, 0, 1}, {11.0, 28.0, 0, 1}, {12.0, 28.0, 0, 1}, {-13.0, 29.0, 0, 1}, {-12.0, 29.0, 0, 1}, + {-11.0, 29.0, 0, 1}, {-10.0, 29.0, 0, 1}, {-6.0, 29.0, 0, 1}, {-5.0, 29.0, 0, 1}, {-4.0, 29.0, 0, 1}, {-3.0, 29.0, 0, 1}, + {-2.0, 29.0, 0, 1}, {1.0, 29.0, 0, 1}, {2.0, 29.0, 0, 1}, {3.0, 29.0, 0, 1}, {4.0, 29.0, 0, 1}, {5.0, 29.0, 0, 1}, + {8.0, 29.0, 0, 1}, {9.0, 29.0, 0, 1}, {10.0, 29.0, 0, 1}, {11.0, 29.0, 0, 1}, {12.0, 29.0, 0, 1}, {-13.0, 30.0, 0, 1}, + {-12.0, 30.0, 0, 1}, {-11.0, 30.0, 0, 1}, {-10.0, 30.0, 0, 1}, {-6.0, 30.0, 0, 1}, {-5.0, 30.0, 0, 1}, {-4.0, 30.0, 0, 1}, + {-3.0, 30.0, 0, 1}, {1.0, 30.0, 0, 1}, {2.0, 30.0, 0, 1}, {3.0, 30.0, 0, 1}, {4.0, 30.0, 0, 1}, {5.0, 30.0, 0, 1}, + {9.0, 30.0, 0, 1}, {10.0, 30.0, 0, 1}, {11.0, 30.0, 0, 1}, {12.0, 30.0, 0, 1}, {-12.0, 31.0, 0, 1}, {-11.0, 31.0, 0, 1}, + {-10.0, 31.0, 0, 1}, {-5.0, 31.0, 0, 1}, {-4.0, 31.0, 0, 1}, {-3.0, 31.0, 0, 1}, {2.0, 31.0, 0, 1}, {3.0, 31.0, 0, 1}, + {4.0, 31.0, 0, 1}, {9.0, 31.0, 0, 1}, {10.0, 31.0, 0, 1}, {11.0, 31.0, 0, 1} +}; + +#endif // CONFIG_3D_OBJECT_CUSTOM diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.h new file mode 100644 index 0000000..5f43b49 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.h @@ -0,0 +1,18 @@ +// File generated by ImgTo3D.py +// Image file converted to 3D matrix: cpu_logo.png + +#pragma once + +#include +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t image_to_bmp_array_custom[512]; +extern const float image_to_3d_matrix_custom[1732][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.cpp new file mode 100644 index 0000000..f533506 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.cpp @@ -0,0 +1,114 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "graphics_support.h" + + +void init_perspective_matrix(dspm::Mat &P_m) +{ + const float fov = 90; // field of view in degrees + const float near = 0.0001; + const float far = 1; + + const float S = 1 / (tan((fov / 2) * DEG_TO_RAD)); + + // Initialize matrix to zero + for (int row = 0; row < P_m.rows; row++) { + for (int col = 0; col < P_m.cols; col++) { + P_m(row, col) = 0; + } + } + + P_m(0, 0) = S; + P_m(1, 1) = S; + P_m(2, 2) = -far / (far - near); + P_m(3, 2) = (-far * near) / (far - near); + P_m(2, 3) = -1; + P_m(3, 3) = 1; +} + +void update_perspective_matrix(dspm::Mat &P_m, float fov) +{ + const float near = 0.0001; + const float far = 1; + + const float S = 1 / (tan((fov / 2) * DEG_TO_RAD)); + + // Initialize matrix to zero + for (int row = 0; row < P_m.rows; row++) { + for (int col = 0; col < P_m.cols; col++) { + P_m(row, col) = 0; + } + } + + P_m(0, 0) = S; + P_m(1, 1) = S; + P_m(2, 2) = -far / (far - near); + P_m(3, 2) = (-far * near) / (far - near); + P_m(2, 3) = -1; + P_m(3, 3) = 1; + + P_m(3, 0) = (float)SSD1606_X_CENTER; + P_m(3, 1) = (float)SSD1606_Y_CENTER; +} + +void update_scaling_matrix(dspm::Mat &T_m, bool keep_diagonal, float scale_x, float scale_y, float scale_z) +{ + if (keep_diagonal) { // Multiply the diagonal values of the transformation matrix with the scaling + T_m(0, 0) *= scale_x; // (in case a rotation is already applied) + T_m(1, 1) *= scale_y; + T_m(2, 2) *= scale_z; + } else { + T_m(0, 0) = scale_x; + T_m(1, 1) = scale_y; + T_m(2, 2) = scale_z; + } +} + +void update_translation_matrix(dspm::Mat &T_m, bool row, float move_x, float move_y, float move_z) +{ + if (row) { // update values in 4-th row, if translation matrix is the second multiplier + T_m(3, 0) = move_x; + T_m(3, 1) = move_y; + T_m(3, 2) = move_z; + } else { // update values in 4-th collum, if translation matrix is the first multiplier + T_m(0, 3) = move_x; + T_m(1, 3) = move_y; + T_m(2, 3) = move_z; + } +} + + +void update_rotation_matrix(dspm::Mat &T_m, float rot_x, float rot_y, float rot_z) +{ + dspm::Mat rotation_data(3, 1); // matrix(3x1) that holds x, y, z rotation data + rotation_data(0, 0) = DEG_TO_RAD * rot_x; // rotation data x + rotation_data(1, 0) = DEG_TO_RAD * rot_y; // rotation data y + rotation_data(2, 0) = DEG_TO_RAD * rot_z; // rotation data z + + // Create and populate rotation matrix R(3x3). Then inverse it + dspm::Mat R = ekf::eul2rotm(rotation_data.data).inverse(); + + // Enlarge rotation matrix from 3x3 to 4x4 + for (int row = 0; row < R.rows; row++) { // Copy rotation matrix R(3x3) to transformation matrix T_m(4x4) + for (int col = 0; col < R.cols; col++) { + T_m(row, col) = R(row, col); + } + } +} + +void print_matrix(dspm::Mat matrix) +{ + for (int rows = 0; rows < matrix.rows; rows++) { + for (int cols = 0; cols < matrix.cols; cols++) { + std::cout << matrix(rows, cols) << ", \t"; + } + std::cout << std::endl; + } + std::cout << std::endl << std::endl; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.h new file mode 100644 index 0000000..5bfd03a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.h @@ -0,0 +1,128 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include "esp_dsp.h" +#include "ekf_imu13states.h" + + +#ifdef __cplusplus +extern "C" +{ +#endif + +#include + +#define DEG_TO_RAD 0.01745329252f // Degrees to radians conversion +#define RAD_TO_DEG 57.29577951f // Radians to degrees conversion +#define MATRIX_SIZE 4 // 4x4 matrices are used +#define SSD1306_WIDTH 128 // Display widh in pixels +#define SSD1306_HEIGHT 64 // DIsplay height +#define SSD1606_X_CENTER (SSD1306_WIDTH / 2) // Width center point +#define SSD1606_Y_CENTER (SSD1306_HEIGHT / 2) // Height center point + +/** + * @brief Data struct of 3d image matrix + * + * This structure is used to hold a 3d coordinates of a monochromatic image centered to the origin of the + * cartesian space (0, 0, 0), that has ben processed by the image_to_3d_array.py. + */ +typedef struct image_3d_matrix_s { + const float (*matrix)[MATRIX_SIZE]; /*!< matrix holding xyz coordinates for each point of the converted image.*/ + uint32_t matrix_len; /*!< image matrix length.*/ +} image_3d_matrix_t; + +/** + * @brief Data struct of 3d image matrix with kalman filter object + * + * This structure is used to hold a 3d coordinates of a monochromatic image centered to the origin of the + * cartesian space (0, 0, 0), that has ben processed by the image_to_3d_array.py. + * Kalman filter object is added to the matrix, for the purpose of RTOS task arguments. + */ +typedef struct image_3d_matrix_kalman_s { + const float (*matrix)[MATRIX_SIZE]; /*!< matrix holding xyz coordinates for each point of the converted image.*/ + uint32_t matrix_len; /*!< image matrix length.*/ + ekf_imu13states *ekf13; /*!< kalman filter object.*/ +} image_3d_matrix_kalman_t; + + +/** + * @brief initialize perspective projection matrix + * + * Function initializes Mat class object holding perspective projection matrix. + * + * @param P_m: perspective projection matrix object from the Mat class + */ +void init_perspective_matrix(dspm::Mat &P_m); + + +/** + * @brief update scaling matrix + * + * Function updates scaling part of the transformation matrix. + * + * @param T_m: transformation matrix object from the Mat class + * @param keep_diagonal: if true: diagonal row of the transformation matrix T_m will be mulitplied with the scaling values + * if false: diagonal row of the transformation matrix T_m will be substituted with new scaling values + * @param scale_x: scaling value for x coordinate of the vector + * @param scale_y: scaling value for y coordinate of the vector + * @param scale_z: scaling value for z coordinate of the vector + */ +void update_scaling_matrix(dspm::Mat &T_m, bool keep_diagonal, float scale_x, float scale_y, float scale_z); + + +/** + * @brief update translation matrix + * + * Function updates translation part of the transformation matrix. + * + * @param T_m: transformation matrix object from the Mat class + * @param row: if true: translation values will be placed to the 3rd row of the transformation matrix T_m + * if false: translation values will be placed to the 3rd col of the transformation matrix T_m + * @param move_x: translation value for x coordinate of the vector + * @param move_y: translation value for y coordinate of the vector + * @param move_z: translation value for z coordinate of the vector + */ +void update_translation_matrix(dspm::Mat &T_m, bool row, float move_x, float move_y, float move_z); + + +/** + * @brief update rotation matrix + * + * Function updates rotation part of the tranformation matrix + * + * @param T_m: transformation matrix object from the Mat class + * @param rot_x: rotation angle for x direction of the vector + * @param rot_y: rotation angle for y direction of the vector + * @param rot_z: rotation angle for z direction of the vector + */ +void update_rotation_matrix(dspm::Mat &T_m, float rot_x, float rot_y, float rot_z); + + +/** + * @brief update perspective matrix + * + * Function updates perspective matrix with a new value of field of view + * + * @param P_m: perspective projection matrix object from the Mat class + * @param fov: field of view in degrees + */ +void update_perspective_matrix(dspm::Mat &P_m, float fov); + + +/** + * @brief printf matrix to the terminal output + * + * Print matrix for debug purposes + * + * @param matrix: matrix to be printed + */ +void print_matrix(dspm::Mat matrix); + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/ImgTo3D.py b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/ImgTo3D.py new file mode 100644 index 0000000..3f9baf2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/ImgTo3D.py @@ -0,0 +1,390 @@ +# SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD +# SPDX-License-Identifier: CC0-1.0 + +import sys +import os +import subprocess + +PIL_INSTALLED = True +PYTHON_FILE_NAME = os.path.basename(__file__) # name of the Python file itself +OUTPUT_FILE_NAME = "image_to_3d_matrix" # generated output .c and .h file names +OUTPUT_3D_MATRIX_NAME = "image_to_3d_matrix_custom" # generated output 3D matrix in the .c and .h file +OUTPUT_BMP_ARRAY_NAME = "image_to_bmp_array_custom" # generated output BMP array in the .c and .h file +TEMPLATE_FILE_NAME = "template_img_to_3d" # name of the .c and .h template files + +ESP_IOT_AZURE_DISPLAY_WIDTH = 128 # ESP_IOT_AZURE board display width +ESP_IOT_AZURE_DISPLAY_HEIGHT = 64 # ESP_IOT_AZURE board display height + +try: + from PIL import Image, ImageOps +except ImportError as e: + PIL_INSTALLED = False + print(e) + +if not PIL_INSTALLED: + print("Installing Pillow package by running command -m pip install --upgrade Pillow") + try: + subprocess.check_call([sys.executable, "-m", "pip", "install", "--upgrade", "Pillow"]) + except subprocess.CalledProcessError as e: + print(e) + + +class Image3DMatrix: + """ class for 3d image matrix """ + def __init__(self): + self.terminal_args = sys.argv # get command line arguments + self.img_path = None # path to the image + self.img_name = None # image name + self.img_ext = None # image extension + self.img_width = None # image target width + self.img_height = None # image target height + self.img_invert = False # invert monochromatic + self.img_include_bmp = False # include BMP form of the image + self.converted_img_dir = None # location to save the converted image + self.result_dir = None # location to save the .c and .h files + self.templates_dir = None # location where template files are saved + self.z_dist = 0 # Z distance of the 3D matrix + self.get_termianl_input() + + def get_optional_args(self): + """ take optional arguments from the terminal, if there are any """ + + # take all the optional arguments + if len(self.terminal_args) > 4: + opt_args = self.terminal_args[4:len(self.terminal_args)] + + # check the optional arguments "invert" "bmp" and z_dist + for arg in opt_args: + if arg.isdecimal(): + self.z_dist = int(arg) + elif arg.lower() == "invert": + self.img_invert = True + elif arg.lower() == "bmp": + self.img_include_bmp = True + + @staticmethod + def check_if_img_file_exists(path: str): + """ check, if provided image file path from terminal input is valid and an image file exits """ + + # check if a file exists on the provided absolute path + if os.path.isabs(path): + if not os.path.isfile(path): + print(f"Provided file {path} does not exist") + sys.exit() + + # check if a file exists on the provided relative path + else: + absolute_path = os.path.join(os.getcwd(), path) + if not os.path.isfile(absolute_path): + print(f"Provided file {path} does not exist") + sys.exit() + else: + return absolute_path + + return path + + @staticmethod + def check_if_templates_exist(): + """ Check if template .c and .h files exist """ + + # check if templates folder exists + templates_dir = os.path.join(os.getcwd(), "templates") + if not os.path.exists(templates_dir): + print(f"templates folder does not exist at location: {templates_dir}") + sys.exit() + + # check if template .c file exists + template_c_file = os.path.join(templates_dir, f"{TEMPLATE_FILE_NAME}.c") + if not os.path.isfile(template_c_file): + print(f".c template file does not exist at location {template_c_file}") + sys.exit() + + # check if template .h file exists + template_h_file = os.path.join(templates_dir, f"{TEMPLATE_FILE_NAME}.h") + if not os.path.isfile(template_h_file): + print(f".h template file does not exist at location {template_h_file}") + sys.exit() + + return templates_dir + + def get_img_name_extension(self): + """ extract image file name and image file extension """ + + img_file = os.path.basename(self.img_path) # image file with extension + self.img_name = os.path.splitext(img_file)[0] # extract file name + + # Extract the file extension, to CAPS and remove the first character being dot + self.img_ext = os.path.splitext(img_file)[1].upper()[1:] + + @staticmethod + def check_if_is_img(path: str, filename: str): + """ check if the provided file is an image and if its extension is supported """ + + # check if a file (which exits) is an image file + if not path.lower().endswith(('.png', '.jpg', '.jpeg', '.tiff', '.bmp', '.gif')): + print(f"provided file {filename} is not a supported image file") + sys.exit() + + @staticmethod + def check_pixels(height: str, width: str): + """ check if the provided result image height and width are decimal numbers """ + + # check if provided resulting image width and height are decimal numbers + if not height.isdecimal() and width.isdecimal(): + print(f"Provided image target width {width} and/or height {height} not valid") + sys.exit() + + @staticmethod + def check_if_pixels_in_range(height: int, width: int): + """ check if the provided result image height and width are in a valid range """ + + # check if the height and width are in the display's range + if (height > ESP_IOT_AZURE_DISPLAY_HEIGHT + 1 or width > ESP_IOT_AZURE_DISPLAY_WIDTH + 1 or + height < 1 or width < 1): + print(f"Provided image target width {width} and/or height {height} \ + is out of range of the display's dimensions ({ESP_IOT_AZURE_DISPLAY_WIDTH}x{ESP_IOT_AZURE_DISPLAY_HEIGHT})") + sys.exit() + + if height % 2 or width % 2: + print(f"Provided image target width {width} and height {height} must be even") + sys.exit() + + def create_paths(self): + """ create paths for the result files """ + + # if running from the example folder, leave the results there + # if running from anywhere else, change cwd to dir, where the python is located + cwd = os.getcwd() # current working directory + abspath = os.path.abspath(__file__) # get the absolute path of the python script + python_dir = os.path.dirname(abspath) # get the absolute path of the folder, in which the python script is located + + if os.path.join("img_to_3d_matrix", "example") not in cwd: + os.chdir(python_dir) # go to a directory where the python is located + + # create an absolute path for the folder in which the image after conversion will be saved + self.converted_img_dir = os.path.join(os.getcwd(), "converted_image") + if not os.path.exists(self.converted_img_dir): + # if the path does not exist, create it + os.makedirs(self.converted_img_dir) + + # create an absolute path for the folder, to which the resulting .c and .h files will be saved + self.result_dir = os.path.join(os.path.dirname(os.getcwd()), "3d_matrix", "3d_matrix_data") + if not os.path.exists(self.result_dir): + # if the path does not exist, use the current path instead + self.result_dir = os.getcwd() + + if os.path.join("img_to_3d_matrix", "example") in cwd: + os.chdir(python_dir) # go to a directory where the python is located + + def get_termianl_input(self): + """ get input parameters from terminal """ + + if ((len(self.terminal_args) == 2) and (str(self.terminal_args[1]) == "--help")): + query = '\n'.join([ + f"\npython {PYTHON_FILE_NAME} -image_path -image_width -image_height -z_distance -invert -bmp\n\n" + "-image_path absolute or relative path to an image to be processed", + "-image_width width (in pixels) of the resulting 3D image", + "-image_height height (in pixels) of the resulting 3D image", + "-z_distance (optional) Z distance (in pixels) of the resulting 3D image, leave blank otherwise", + "-invert (optional) to invert colors, leave blank otherwise", + "-bmp (optional) to include BMP from of the provided image, leave blank otherwise"]) + print(query) + sys.exit() + + elif len(self.terminal_args) < 4: + print(f"Too few arguments run following command for help\npython {PYTHON_FILE_NAME} --help") + sys.exit() + + else: + self.img_path = self.terminal_args[1] + self.img_width = self.terminal_args[2] + self.img_height = self.terminal_args[3] + + self.get_optional_args() + self.img_path = self.check_if_img_file_exists(self.img_path) + self.get_img_name_extension() + self.check_if_is_img(self.img_path, self.img_name) + self.check_pixels(self.img_height, self.img_width) + self.img_height = int(self.img_height) + self.img_width = int(self.img_width) + self.check_if_pixels_in_range(self.img_height, self.img_width) + self.create_paths() + self.templates_dir = self.check_if_templates_exist() + + +def fromat_comas_spaces(element_index: int, array_len: int, elements_per_line: int, c_file): + """ Formating of the spaces, commas and new lines for arrays in the .c file """ + + # Dont put comma after the last array member + if element_index != array_len: + c_file.write(",") + + # new line after each elements_per_line + if not element_index % elements_per_line: + c_file.write("\n") + + # start a new line with tab + if element_index != array_len: + c_file.write(" ") + + # put space after each coma + # except after the last array member and before a new line + else: + if element_index != array_len: + c_file.write(" ") + + +def ouptput_files_gen(img3d: Image3DMatrix, bmp_arr: list, matrix_arr: list): + """ write 3d matrix array and optional BMP array to .c and .h files """ + + # generate a c file and save it to the main folder (if exists in the file structure) + output_c_file_name = f"{OUTPUT_FILE_NAME}.c" + with open(os.path.join(img3d.templates_dir, f"{TEMPLATE_FILE_NAME}.c"), "r", encoding="utf8") as c_template_file: + with open(os.path.join(img3d.result_dir, output_c_file_name), "w+", encoding="utf8") as c_file: + + c_file.write(f"// File generated by {PYTHON_FILE_NAME}\n") # write first line to c_file + c_file.write(f"// Image file converted to 3D matrix {img3d.img_name}.{img3d.img_ext.lower()}\n") + next(c_template_file) + next(c_template_file) # skip first 2 lines from c_template_file + for line in c_template_file: + + if "const" in line: + # include BMP form if requested + if img3d.img_include_bmp: + c_file.write(f"const uint8_t {OUTPUT_BMP_ARRAY_NAME}[{len(bmp_arr)}] = {{\n\n ") + for index, bmp_byte in enumerate(bmp_arr, start=1): + c_file.write(f"0x{bmp_byte:02x}") + fromat_comas_spaces(index, len(bmp_arr), 16, c_file) + c_file.write("\n};\n\n") + + # write 3d matrix form + c_file.write(f"const float {OUTPUT_3D_MATRIX_NAME}[{len(matrix_arr)}][4] = {{\n\n ") + for index, line in enumerate(matrix_arr, start=1): + line_joined = ', '.join(map(str, line)) + c_file.write(f"{{{line_joined}}}") + fromat_comas_spaces(index, len(matrix_arr), 6, c_file) + c_file.write("\n};\n") + next(c_template_file) + continue + + # copy line from c_template_file to c_file + c_file.write(line) + + c_file.close() + c_template_file.close() + + # generate an h file and save it to the main folder (if exists in the file structure) + output_h_file_name = f"{OUTPUT_FILE_NAME}.h" + with open(os.path.join(img3d.templates_dir, f"{TEMPLATE_FILE_NAME}.h"), "r", encoding="utf8") as h_template_file: + with open(os.path.join(img3d.result_dir, output_h_file_name), "w+", encoding="utf8") as h_file: + + h_file.write(f"// File generated by {PYTHON_FILE_NAME}\n") # write first line to h_file + h_file.write(f"// Image file converted to 3D matrix: {img3d.img_name}.{img3d.img_ext.lower()}\n") + next(h_template_file) + next(h_template_file) # skip first 2 lines from h_template_file + for line in h_template_file: + + if "extern const" in line: + # include BMP header if requested + if img3d.img_include_bmp: + h_file.write(f"extern const uint8_t {OUTPUT_BMP_ARRAY_NAME}[{len(bmp_arr)}];\n") + + # include 3d matrix header + h_file.write(f"extern const float {OUTPUT_3D_MATRIX_NAME}[{len(matrix_arr)}][4];\n") + next(h_template_file) + continue + + h_file.write(line) + + h_file.close() + h_template_file.close() + + query = '\n'.join([ + "\nOutput files generation done!", + f"Output files {output_c_file_name} {output_h_file_name}", + f"Output files location {img3d.result_dir}"]) + print(query) + + +def create_matrix(img3d: Image3DMatrix, pixels: list, bmp_img_array: list, matrix_img_array: list): + """ Create a 3D matrix and optional BMP form of the converted image """ + + multiplier = pow(2, 7) + byte = 0 + + # convert pixels to both, bmp and 3d from + for index, pixel in enumerate(pixels, start=1): + if pixel: + byte += multiplier + y_coord = int((index - 1) / img3d.img_width) + x_coord = (index - 1) - (y_coord * img3d.img_width) - (img3d.img_width / 2) + y_coord = y_coord - (img3d.img_height / 2) + matrix_img_array.append((x_coord, y_coord, img3d.z_dist, 1)) + + multiplier >>= 1 + + if not index % 8: + multiplier = pow(2, 7) + bmp_img_array.append(byte) + byte = 0 + + +def convert_img(img3d: Image3DMatrix): + """ image conversion to list of monochromatic pixels """ + + # open an image and convert the image to monochromatic + img = Image.open(img3d.img_path) + img = img.convert(mode="1", dither=Image.NONE) + + # if requested, invert black and white + if img3d.img_invert: + img = ImageOps.invert(img) + + # resize the image and get the width and height of the resized image, to check + img = img.resize((int(img3d.img_width), int(img3d.img_height)), resample=Image.NEAREST) + res_width, res_height = img.size + + # get image pixels as a list, after converting the image to monochromatic - pixels are either 0 or 255 + pixels = list(img.getdata()) + + # check if the resized image has the same dimensions as the required dimensions + if (res_width, res_height) != (img3d.img_width, img3d.img_height): + query = '\n'.join([ + "Image conversion was not successful!", + f"Required width and height: {img3d.img_width} {img3d.img_height}", + f"Real width and height: {res_width} {res_height}"]) + print(query) + sys.exit() + else: + # if converted correctly, save the converted image + if img3d.img_invert: + invert = "_invert_conv." + else: + invert = "_conv." + + converted_img_name = ''.join([img3d.img_name, invert, img3d.img_ext.lower()]) + converted_img_location = os.path.join(img3d.converted_img_dir, converted_img_name) + img.save(converted_img_location, format=img3d.img_ext, subsampling=0, quality=100) + query = '\n'.join([ + "Image conversion done!", + f"Converted image {converted_img_name}", + f"Converted image location {os.path.join(img3d.converted_img_dir)}"]) + print(query) + return pixels + + +def main(): + """ main function of the image_to_3d_matrix """ + + img3d = Image3DMatrix() + pixels = convert_img(img3d) + + bmp_img_array = list() + matrix_img_array = list() + create_matrix(img3d, pixels, bmp_img_array, matrix_img_array) + ouptput_files_gen(img3d, bmp_img_array, matrix_img_array) + print("\nAll done!") + + +if __name__ == '__main__': + main() diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/README.md new file mode 100644 index 0000000..c225009 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/README.md @@ -0,0 +1,105 @@ +# Getting the 3D matrix +`ImgTo3D.py` generates a 3D matrix for the monochromatic display, from a provided 2D graphics - image. As the output, `.c` and `.h` files containing the 3D matrix, are already included in the project structure, to `CMakeList.txt` and `.cpp` files. The output arrays are named `image_to_3d_matrix_custom` and `image_to_bmp_array_custom` by default. The converted image is saved for a preview. + +The script can be called by following commands: + + python ImgTo3D.py image_path image_width image_height + +* `ImgTo3D.py` - absolute path to the python file +* `image_path` - absolute or relative path to the image, to be converted +* `image_width` - resulting width of the converted image (in pixels) +* `image_height` - resulting height of the converted image (in pixels) + +The python script converts the provided image first to a monochromatic image, then resizes the image according to the provided dimensions, then converts the image to a 3D matrix and finally saves the 3D into a `.c` file. + + python ImgTo3D.py --help + +Run for help - prints hints, how to run the file and information about the arguments. + +### Optional arguments + python ImgTo3D.py image_path image_width image_height z_dist invert bmp + +* `z_dist` puts a distance (in pixels) into the Z direction of each matrix row - each 3D point. 0 is used otherwise +* `invert` inverts black and white in the converted monochromatic image, causing inverting pixels that will be lit on the display +* `bmp` includes a BMP form of the converted image into the output `.c` and `.h` files + +The optional arguments can be added in any sequence. + +# Example + +To get example results, in the example folder, run the script from the example folder like so: + + /example $ python ../ImgTo3D.py cpu_logo.png 64 64 invert bmp + +To get the results already integrated into the project, run the script from any other location: + + /any_location $ python abs_path/ImgTo3D.py cpu_logo.png 64 64 bmp invert + +Converts `cpu_logo.png` image into a 3D matrix with dimensions of `64x64` pixels, with inverted colors and the BMP is included into the output file. + +## Output files + +python script produces the following output: + +* `converted_image/cpu_logo_invert_conv.png` image after the conversion (monochromatic and resized image) +* `image_to_3d_matrix.c` c file with 3D and BMP matrices in `const` arrays +* `image_to_3d_matrix.h` h file with 3D and BMP arrays declarations in `extern const` + +The output `.c` and `.h` files are based on template files `template_img_to_3d.c` and `template_img_to_3d.h`. From which, only the variables declarations are changed according to the converted image. + +The expected output from the python script is the following: + + Image conversion done! + Converted image cpu_logo_invert_conv.png + Converted image location ${workspaceFolder}/graphics/img_to_3d_matrix/example/converted_image + + Output files generation done! + Output files image_to_3d_matrix.c image_to_3d_matrix.h + Output files location ${workspaceFolder}/graphics/img_to_3d_matrix/example + + All done! + +## Image conversion output example + +
+ + + + + + + + + + + + + + + +
+

+ Converted image (64x64) +

+
+

+ Inverted colors (64x64) +

+
+
+ +
+
+
+ +
+
+

+ Original image (256x256) +

+
+
+ +
+
+
\ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_conv.png b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_conv.png new file mode 100644 index 0000000..58a8452 Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_conv.png differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_invert_conv.png b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_invert_conv.png new file mode 100644 index 0000000..a7970e5 Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_invert_conv.png differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/image/cpu_logo.png b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/image/cpu_logo.png new file mode 100644 index 0000000..bd8e95e Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/example/image/cpu_logo.png differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.c new file mode 100644 index 0000000..dd206d3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.c @@ -0,0 +1,11 @@ +// template file - template_img_to_3d.c +// arrays declarations will be modified by python script ImgTo3D.py + +#include "image_to_3d_matrix.h" + +#ifdef CONFIG_3D_OBJECT_CUSTOM + +const uint8_t TEMPLATE_ARRAY_BMP_IMAGE[NUM_OF_BYTES] = {}; +const float TEMPLATE_ARRAY_IMAGE_TO_3D_MATRIX[NUM_OF_POINTS][4] = {}; + +#endif // CONFIG_3D_OBJECT_CUSTOM diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.h new file mode 100644 index 0000000..4dba986 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.h @@ -0,0 +1,18 @@ +// template file - template_img_to_3d.h +// arrays declarations will be modified by python script ImgTo3D.py + +#pragma once + +#include +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t TEMPLATE_ARRAY_BMP_IMAGE[NUM_OF_BYTES]; +extern const float TEMPLATE_ARRAY_IMAGE_TO_3D_MATRIX[NUM_OF_POINTS][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/CMakeLists.txt new file mode 100644 index 0000000..577afcd --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/CMakeLists.txt @@ -0,0 +1,7 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(audio-lyraT) +spiffs_create_partition_image(storage spiffs FLASH_IN_PROJECT) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/README.md new file mode 100644 index 0000000..2fe8abf --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/README.md @@ -0,0 +1,71 @@ +# ESP-DSP LyraT Board audio processing application + +The demo applications are developed for the ESP32-LyraT development board and demonstrate the usage of IIR filters from the ESP-DSP library. +This example showcases how to use IIR filter functionality to process audio stream data. +To hear the audio please connect headphones or speakers to the ESP32-LyraT audio output. +The example performs the following steps: + +1. Read samples from a file + * read samples from file + * write audio samples to the triple buffer +2. Process audio samples + * process volume/bass/treble + * apply digital limiter to the audio data + * control audio buffer overflow +3. Pass samples to the audio codec + +To control the volume/bass/treble, please select the value by press 'Set' button and adjust the value by '+/-' buttons. + +## The Triple Audio Buffer + +In audion processing, it's possible to have situation when one task write data to the processing buffer (processing task), and another task read data from the same buffer, and still in reading process. +Triple buffering is a technique used in audio processing to minimize latency and ensure smooth playback. It involves using three buffers to store audio data. Here's a description of how it works: + +* Buffer A: This buffer holds the audio data that is currently being processed by the audio system. It is typically filled with samples from the audio source and processed in real-time. + +* Buffer B: When Buffer A is full, the audio system begins reading from Buffer A and starts processing the data. At the same time, Buffer B is filled with new audio samples from the source. + +* Buffer C: Once Buffer B is full, the audio system switches its attention to Buffer B and continues processing data. Buffer C is then filled with the latest audio samples. + +The cycle continues, with the audio system always processing the data from a buffer while the other two buffers are being filled. This approach helps ensure a continuous and uninterrupted audio playback, as there is always a buffer ready to be processed. It reduces the chances of audio glitches or dropouts caused by delays in reading or processing the audio data. + +Triple buffering is particularly useful when working with real-time audio processing applications, where low latency and uninterrupted playback are crucial. + +## Audio Processing Flow + +The audio processing flow contains next blocks: +1. Audio processing task + * Read data from file and store to the triple buffer + * Read from triple buffer and concert data from int16_t to float + * Process bass + * Process treble + * Process volume + * Apply digital limiter + * Convert data from float to int16_t and store to the triple buffer +2. Audio output task + * Write data from triple buffer to audio codec +3. Buttons control task + * React on buttons and adjust the control values + * Calculates IIR filter coefficients + +## How to use the example + +### Hardware required + +This example require LyraT development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py flash monitor +``` + +(To exit the serial monitor, type ``Ctrl-]``.) + +See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects. diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/main/CMakeLists.txt new file mode 100644 index 0000000..e789f5c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "audio_amp_main.c") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/main/audio_amp_main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/main/audio_amp_main.c new file mode 100644 index 0000000..480534a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/main/audio_amp_main.c @@ -0,0 +1,382 @@ +/* + * SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: CC0-1.0 + */ + +#include +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/queue.h" +#include "esp_log.h" +#include "esp_dsp.h" +#include "bsp/esp-bsp.h" +#include +#include + +// Buffer for reading/writing to I2S driver. Same length as SPIFFS buffer and I2S buffer, for optimal read/write performance. +// Recording audio data path: +// I2S peripheral -> I2S buffer (DMA) -> App buffer (RAM) -> SPIFFS buffer -> External SPI Flash. +// Vice versa for playback. +#define BUFFER_SIZE (64) +#define SAMPLE_RATE (16000) // For recording +#define DEFAULT_VOLUME (100) + +// Globals +static const char *TAG = "example"; +static QueueHandle_t audio_button_q = NULL; + +static void btn_handler(void *button_handle, void *usr_data) +{ + int button_pressed = (int)usr_data; + xQueueSend(audio_button_q, &button_pressed, 0); +} + +// Very simple WAV header, ignores most fields +typedef struct __attribute__((packed)) +{ + uint8_t ignore_0[22]; + uint16_t num_channels; + uint32_t sample_rate; + uint8_t ignore_1[6]; + uint16_t bits_per_sample; + uint8_t ignore_2[4]; + uint32_t data_size; + uint8_t data[]; +} dumb_wav_header_t; + +typedef enum audio_set { + AUDIO_VOLUME, + AUDIO_BASS, + AUDIO_TREBLE, +} audio_set_t; + +static esp_codec_dev_handle_t spk_codec_dev = NULL; +static FILE *play_file = NULL; +// Pointer to a file that is going to be played +static const char play_filename[] = BSP_SPIFFS_MOUNT_POINT"/16bit_mono_44_1_khz.wav"; + +// Definition for all tasks +static void buttons_process_task(void *arg); +static void audio_read_task(void *arg); +static void audio_process_task(void *arg); + + +// Wave file header +static dumb_wav_header_t wav_header; +static audio_set_t current_set = AUDIO_VOLUME; + +// Data for IIR filters +float iir_coeffs_lpf[5]; +float iir_w_lpf[5] = {0, 0}; + +float iir_coeffs_hpf[5]; +float iir_w_hpf[5] = {0, 0}; + +// IIR filters parameters +// Parameters for low-pass filter (LPF) +float lpf_gain = 0; +float lpf_qFactor = 0.5; +float lpf_freq = 0.01; + +// Parameters for high-pass filter (HPF) +float hpf_gain = 0; +float hpf_qFactor = 1; +float hpf_freq = 0.15; + +// Volume control definitions +float full_volume = 1; +// Volume in dB +int full_volume_db = -12; +// Digital limiter envelope value +float full_envelope = 0; + +// processing audio buffer +float processing_audio_buffer[BUFFER_SIZE] = {0}; + +// The triple_audio_buffer contains tree data arrays sizeof BUFFER_SIZE, for writing audio data to the codec +int16_t triple_audio_buffer[3 * BUFFER_SIZE] = {0}; +// The write index shows the audio buffer that will be used to write data to the codec +int audio_buffer_write_index = 0; +// The read index shows the audio buffer that will be used to fill data from the data source to the processing buffer +int audio_buffer_read_index = 0; + +// Semaphore to synchronize the read and write +static SemaphoreHandle_t sync_read_task; + +// Convert input int16_t Q15 values array to the float values array +static void convert_short2float(int16_t *int16_data, float *float_data, int len) +{ + float multiplier = 1.0 / (float)(INT16_MAX + 1); + for (int i = 0 ; i < len ; i++) { + float_data[i] = (float)int16_data[i] * multiplier; + } +} + +// Convert input float values to the int16_t Q15 values array +static void convert_float2short(float *float_data, int16_t *int16_data, int len) +{ + float multiplier = (float)(INT16_MAX + 1); + for (int i = 0 ; i < len ; i++) { + int16_data[i] = (int16_t)((float)multiplier * (float)float_data[i]); + } +} + +// In the audio processing the valid output audio values for the floating point format should be in range +/- 1.0, +// because these values will be converted to the 0x8000 and 0x7fff int16_t values, and will be accepted by the codec. +// With additional amplification, for example bass, treble, and for other processing, it is possible that the audio +// signal will reach the maximum values and will make an overflow at the DAC. +// To avoid this situation the digital limiter analyze the output values and control the full amplification gain. +// +void digitalLimiter(float *input_signal, float *output_signal, int signal_length, float threshold, float attack_value, float release_value, float *in_envelope) +{ + float envelope = *in_envelope; + for (int i = 0; i < signal_length; i++) { + // Calculate envelope + float abs_input = fabsf(input_signal[i]); + if (abs_input > envelope) { + envelope = envelope * (1 - attack_value) + attack_value * abs_input; + } else { + envelope = envelope * (1 - release_value) + release_value * abs_input; + } + + // Apply compression + if (envelope > threshold) { + output_signal[i] = input_signal[i] * (threshold / envelope); + } else { + output_signal[i] = input_signal[i]; + } + } + *in_envelope = envelope; +} + +static void audio_process_task(void *arg) +{ + // Init codeac and apply the initial volume to maximum + spk_codec_dev = bsp_audio_codec_speaker_init(); + assert(spk_codec_dev); + esp_codec_dev_set_out_vol(spk_codec_dev, DEFAULT_VOLUME); + + // Open file and het the WAV header to set up the sample frequency, amount of channels and resolution + play_file = fopen(play_filename, "rb"); + if (play_file == NULL) { + ESP_LOGW(TAG, "%s file does not exist!", play_filename); + } + // Read WAV header + if (fread((void *)&wav_header, 1, sizeof(wav_header), play_file) != sizeof(wav_header)) { + ESP_LOGW(TAG, "Error in reading file"); + return; + } + + ESP_LOGI(TAG, "Number of channels: %" PRIu16 "", wav_header.num_channels); + ESP_LOGI(TAG, "Bits per sample: %" PRIu16 "", wav_header.bits_per_sample); + ESP_LOGI(TAG, "Sample rate: %" PRIu32 "", wav_header.sample_rate); + ESP_LOGI(TAG, "Data size: %" PRIu32 "", wav_header.data_size); + esp_codec_dev_sample_info_t fs = { + .sample_rate = wav_header.sample_rate, + .channel = wav_header.num_channels, + .bits_per_sample = wav_header.bits_per_sample, + }; + if (spk_codec_dev != NULL) { + int result = esp_codec_dev_open(spk_codec_dev, &fs); + } + // Calculate initial volume value + full_volume = exp10f((float)full_volume_db / 20); + // Calculate initial state for LPF + dsps_biquad_gen_lowShelf_f32(iir_coeffs_lpf, lpf_freq, lpf_gain, lpf_qFactor); + // Calculate initial state for HPF + dsps_biquad_gen_highShelf_f32(iir_coeffs_hpf, hpf_freq, hpf_gain, hpf_qFactor); + + BaseType_t ret = xTaskCreate(buttons_process_task, "buttons_process_task", 4096, NULL, 4, NULL); + assert(ret == pdPASS); + + sync_read_task = xSemaphoreCreateCounting(1, 0); + + ret = xTaskCreate(audio_read_task, "audio_read_task", 4096, NULL, 7, NULL); + assert(ret == pdPASS); + vTaskDelay(1); + + ESP_LOGW(TAG, "To select volume/bass/treble please use the 'Set' button. And adjust the value with +/- buttons."); + + for (;;) { + /* Get data from SPIFFS and send it to codec */ + int16_t *wav_bytes = &triple_audio_buffer[audio_buffer_write_index * BUFFER_SIZE]; + // Write samples to audio codec + esp_codec_dev_write(spk_codec_dev, wav_bytes, BUFFER_SIZE * sizeof(int16_t)); + audio_buffer_write_index++; + if (audio_buffer_write_index >= 3) { + audio_buffer_write_index = 0; + } + // Check the triple buffer overflow + if (audio_buffer_write_index == audio_buffer_read_index) { + // Call delay to switch the task to fill the buffer + vTaskDelay(1); + // Check and indicate overflow status + if (audio_buffer_write_index == audio_buffer_read_index) { + ESP_LOGW(TAG, "Audio buffer overflow!"); + } + } + // Generate synt event to read task: + xSemaphoreGive(sync_read_task); + } +} + +// The audio_read_task is responsible to read data from the file and fill it to the audio buffer. +// The audio buffer is places inside of triple buffer, to avoid overflow situation in case if +// the processing task busy for a while. +static void audio_read_task(void *arg) +{ + while (1) { + // Wait the sync semaphore + if (xSemaphoreTake(sync_read_task, 100)) { + // Get the pointer to the current audio buffer + int16_t *wav_buffer = &triple_audio_buffer[audio_buffer_read_index * BUFFER_SIZE]; + // Read the data from the file + uint32_t bytes_read_from_spiffs = fread(wav_buffer, sizeof(int16_t), BUFFER_SIZE, play_file); + // Convert input samples from int16 to float for processing + convert_short2float((int16_t *)wav_buffer, processing_audio_buffer, BUFFER_SIZE); + // Apply bass + dsps_biquad_f32(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, iir_coeffs_lpf, iir_w_lpf); + // Apply treble + dsps_biquad_f32(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, iir_coeffs_hpf, iir_w_hpf); + // Apply voluve + dsps_mulc_f32_ansi(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, full_volume, 1, 1); + // Apply limiter + digitalLimiter(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, 0.5, 0.5, 0.0001, &full_envelope); + // Convert from float to int16 for audio codec + convert_float2short(processing_audio_buffer, (int16_t *)wav_buffer, BUFFER_SIZE); + + if (bytes_read_from_spiffs != BUFFER_SIZE) { + // Rewind the file and read the WAV header + rewind(play_file); + fread((void *)&wav_header, 1, sizeof(wav_header), play_file); + // Read data to the audio buffer + bytes_read_from_spiffs = fread(wav_buffer, sizeof(int16_t), BUFFER_SIZE, play_file); + } + audio_buffer_read_index++; + if (audio_buffer_read_index >= 3) { + audio_buffer_read_index = 0; + } + } else { + // Error in case of timeout + ESP_LOGE(TAG, "Audio timeout!"); + } + } +} + +static void buttons_process_task(void *arg) +{ + while (1) { + int btn_index = 0; + if (xQueueReceive(audio_button_q, &btn_index, portMAX_DELAY) == pdTRUE) { + switch (btn_index) { + case BSP_BUTTON_SET: { + current_set += 1; + if (current_set > 2) { + current_set = AUDIO_VOLUME; + } + switch (current_set) { + case AUDIO_VOLUME: + ESP_LOGW(TAG, "Select volume"); + break; + case AUDIO_BASS: + ESP_LOGW(TAG, "Select bass"); + break; + case AUDIO_TREBLE: + ESP_LOGW(TAG, "Select treble"); + break; + default: + break; + } + break; + } + case BSP_BUTTON_VOLDOWN: { + switch (current_set) { + case AUDIO_VOLUME: + full_volume_db -= 3; + if (full_volume_db < -36) { + full_volume_db = -36; + } + full_volume = exp10f((float)full_volume_db / 20); + ESP_LOGI(TAG, "Volume Down: %i dB", full_volume_db); + break; + case AUDIO_BASS: + lpf_gain -= 1; + if (lpf_gain < -12) { + lpf_gain = -12; + } + ESP_LOGI(TAG, "Bass Down: %i", (int)lpf_gain); + dsps_biquad_gen_lowShelf_f32(iir_coeffs_lpf, lpf_freq, lpf_gain, lpf_qFactor); + break; + case AUDIO_TREBLE: + hpf_gain -= 1; + if (hpf_gain < -12) { + hpf_gain = -12; + } + ESP_LOGI(TAG, "Treble Down: %i", (int)hpf_gain); + dsps_biquad_gen_highShelf_f32(iir_coeffs_hpf, hpf_freq, hpf_gain, hpf_qFactor); + break; + default: + break; + } + break; + } + case BSP_BUTTON_VOLUP: { + switch (current_set) { + case AUDIO_VOLUME: + full_volume_db += 3; + if (full_volume_db > 0) { + full_volume_db = 0; + } + full_volume = exp10f((float)full_volume_db / 20); + ESP_LOGI(TAG, "Volume Up: %i dB", full_volume_db); + break; + case AUDIO_BASS: + lpf_gain += 1; + if (lpf_gain > 12) { + lpf_gain = 12; + } + ESP_LOGI(TAG, "Bass Up: %i", (int)lpf_gain); + dsps_biquad_gen_lowShelf_f32(iir_coeffs_lpf, lpf_freq, lpf_gain, lpf_qFactor); + break; + case AUDIO_TREBLE: + hpf_gain += 1; + if (hpf_gain > 12) { + hpf_gain = 12; + } + ESP_LOGI(TAG, "Treble Up: %i", (int)hpf_gain); + dsps_biquad_gen_highShelf_f32(iir_coeffs_hpf, hpf_freq, hpf_gain, hpf_qFactor); + break; + default: + break; + } + break; + } + default: + ESP_LOGI(TAG, "No function for this button"); + break; + } + } + } +} + +void app_main(void) +{ + ESP_ERROR_CHECK(bsp_spiffs_mount()); + + // Create FreeRTOS tasks and queues + audio_button_q = xQueueCreate(10, sizeof(int)); + assert (audio_button_q != NULL); + + BaseType_t ret = xTaskCreate(audio_process_task, "audio_process_task", 4096, NULL, 6, NULL); + assert(ret == pdPASS); + + // Init audio buttons + button_handle_t btns[BSP_BUTTON_NUM]; + ESP_ERROR_CHECK(bsp_iot_button_create(btns, NULL, BSP_BUTTON_NUM)); + for (int i = 0; i < BSP_BUTTON_NUM; i++) { + ESP_ERROR_CHECK(iot_button_register_cb(btns[i], BUTTON_PRESS_DOWN, btn_handler, (void *) i)); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/main/idf_component.yml new file mode 100644 index 0000000..836b286 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/main/idf_component.yml @@ -0,0 +1,5 @@ +dependencies: + espressif/esp32_lyrat: "^1.0.0" + espressif/esp-dsp: + version: '*' + override_path: "../../../../esp-dsp" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/partitions.csv b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/partitions.csv new file mode 100644 index 0000000..8982158 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/partitions.csv @@ -0,0 +1,6 @@ +# Name, Type, SubType, Offset, Size, Flags +# Note: if you change the phy_init or app partition offset, make sure to change the offset in Kconfig.projbuild +nvs, data, nvs, 0x9000, 0x6000, +phy_init, data, phy, 0xf000, 0x1000, +factory, app, factory, 0x10000, 1M, +storage, data, spiffs, , 0x2f0000, diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/sdkconfig.defaults b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/sdkconfig.defaults new file mode 100644 index 0000000..77ceed5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/sdkconfig.defaults @@ -0,0 +1,8 @@ +# This file was generated using idf.py save-defconfig. It can be edited manually. +# Espressif IoT Development Framework (ESP-IDF) Project Minimal Configuration +# +CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y +CONFIG_PARTITION_TABLE_CUSTOM=y +CONFIG_SPIRAM=y +CONFIG_SPIRAM_USE_MEMMAP=y +CONFIG_SPIFFS_PAGE_SIZE=1024 diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/spiffs/16bit_mono_44_1_khz.wav b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/spiffs/16bit_mono_44_1_khz.wav new file mode 100644 index 0000000..b27b090 Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/lyrat_board_app/spiffs/16bit_mono_44_1_khz.wav differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/CMakeLists.txt new file mode 100644 index 0000000..6913a71 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/CMakeLists.txt @@ -0,0 +1,8 @@ +# For more information about build system see +# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html +# The following five 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) +project(spectrum_box_lite) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/README.md new file mode 100644 index 0000000..35a8a88 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/README.md @@ -0,0 +1,45 @@ +# ESP-DSP ESP32-S3-BOX-Lite Board demo application + +The demo applications are developed for the ESP32-S3-BOX-Lite development board and demonstrate the usage of FFT functions from the ESP-DSP library. +This example showcases how to use FFT functionality to process audio stream data. +The application record sound from two microphones and show the spectrum from them at display as 2D plot. + +## Audio Processing Flow + +The audio processing flow contains next blocks: +1. Audio processing task + * Read left and right channel data from the microphone + * Apply window multiplication to both channels + * Process FFT and apply bit reverse + * Split complex spectrum from two channels to two spectrums of two real channels + * Calculate absolute spectrum and convert it to dB + * Calculate moving average of the spectrum +2. Image Display Task + * Read data from the + * Write data from triple buffer to audio codec + +## How to use the example + +Just flash the application to the ESP32-S3-BOX-Lite development board, and play some music around or start to speak to the board microphones. +The display will show the real-time spectrum. +The microphone sensitivity could be adjusted in the code. + +### Hardware required + +This example does not require any special hardware, and can be run on any common development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py flash monitor +``` + +(To exit the serial monitor, type ``Ctrl-]``.) + +See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects. diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/main/CMakeLists.txt new file mode 100644 index 0000000..cf2c455 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/main/CMakeLists.txt @@ -0,0 +1,2 @@ +idf_component_register(SRCS "main.c" + INCLUDE_DIRS ".") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/main/idf_component.yml new file mode 100644 index 0000000..401fa2f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/main/idf_component.yml @@ -0,0 +1,6 @@ +dependencies: + espressif/esp-box-lite: "^2.0.3" + lvgl/lvgl: "^8.3.10" + espressif/esp-dsp: + version: '*' + override_path: "../../../../esp-dsp" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/main/main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/main/main.c new file mode 100644 index 0000000..f482d32 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/main/main.c @@ -0,0 +1,269 @@ +/* + * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: CC0-1.0 + */ + +#include +#include + +#include "bsp/esp-bsp.h" +#include "esp_log.h" +#include "esp_dsp.h" + +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/semphr.h" + +#include "esp_system.h" +#include "esp_err.h" +#include "esp_log.h" +#include "esp_timer.h" +#include + +// Amount of audio channels +#define I2S_CHANNEL_NUM (2) +// Microphone Sample rate +#define SAMPLE_RATE (10000) + +#define BITS_PER_CHANNEL 16 +// Input buffer size +#define BUFFER_PROCESS_SIZE 512 + +static const char *TAG = "main"; + +// Buffer to process output spectrum +static float result_data[BUFFER_PROCESS_SIZE]; + +// Microphone read task +static void microphone_read_task(void *arg) +{ + esp_codec_dev_handle_t mic_codec_dev = NULL; + // Init board microphone + mic_codec_dev = bsp_audio_codec_microphone_init(); + if (mic_codec_dev == NULL) { + ESP_LOGE(TAG, "Not possible to initialize microphone!"); + return; + } + + // Init esp-dsp library to use fft functionality + esp_err_t ret = dsps_fft2r_init_sc16(NULL, CONFIG_DSP_MAX_FFT_SIZE); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Not possible to initialize FFT esp-dsp from library!"); + return; + } + + esp_codec_dev_sample_info_t fs = { + .sample_rate = SAMPLE_RATE, + .channel = I2S_CHANNEL_NUM, + .channel_mask = 0, + .bits_per_sample = BITS_PER_CHANNEL, + }; + + int result = esp_codec_dev_open(mic_codec_dev, &fs); + if (result != ESP_OK) { + ESP_LOGE(TAG, "Not possible to open microphone!"); + return; + } + // Set input microphone gain (from 1 to 100) + ESP_LOGI(TAG, "Adjust microphone input volume in the code here..."); + result |= esp_codec_dev_set_in_gain(mic_codec_dev, 20.0); + if (result != ESP_OK) { + ESP_LOGE(TAG, "Not possible to set up microphone gain!"); + return; + } + + int audio_chunksize = BUFFER_PROCESS_SIZE; + + // Allocate audio buffer and check for result + int16_t *audio_buffer = (int16_t *)memalign(16, (audio_chunksize + 16) * sizeof(int16_t) * I2S_CHANNEL_NUM); + // Allocate buffer for window + int16_t *wind_buffer = (int16_t *)memalign(16, (audio_chunksize + 16) * sizeof(int16_t) * I2S_CHANNEL_NUM); + // Generate window and convert it to int16_t + dsps_wind_blackman_harris_f32(result_data, audio_chunksize); + for (int i = 0 ; i < audio_chunksize; i++) { + wind_buffer[i * 2 + 0] = (int16_t)(result_data[i] * 32767); + wind_buffer[i * 2 + 1] = wind_buffer[i * 2 + 0]; + } + + while (true) { + + // Read audio data from I2S bus + result = esp_codec_dev_read(mic_codec_dev, audio_buffer, audio_chunksize * sizeof(int16_t) * I2S_CHANNEL_NUM); + // Multiply input stream with window coefficients + dsps_mul_s16_ansi(audio_buffer, wind_buffer, audio_buffer, audio_chunksize * 2, 1, 1, 1, 15); + + // Call FFT bit reverse + dsps_fft2r_sc16_ae32(audio_buffer, audio_chunksize); + dsps_bit_rev_sc16_ansi(audio_buffer, audio_chunksize); + // Convert spectrum from two input channels to two + // spectrums for two channels. + dsps_cplx2reC_sc16(audio_buffer, audio_chunksize); + + // The output data array presented as moving average for input in dB + for (int i = 0 ; i < audio_chunksize ; i++) { + float spectrum_sqr = audio_buffer[i * 2 + 0] * audio_buffer[i * 2 + 0] + audio_buffer[i * 2 + 1] * audio_buffer[i * 2 + 1]; + float spectrum_dB = 10 * log10f(0.1 + spectrum_sqr); + // Multiply with sime coefficient for better view data on screen + spectrum_dB = 4 * spectrum_dB; + // Apply moving average of spectrum + result_data[i] = 0.8 * result_data[i] + 0.2 * spectrum_dB; + } + vTaskDelay(10); + } +} + +// Screen image width +#define X_AXIS_SIZE (320) +// Screen image height +#define Y_AXIS_SIZE (240) + +static uint8_t screen_rgb_data[X_AXIS_SIZE * Y_AXIS_SIZE * LV_IMG_PX_SIZE_ALPHA_BYTE]; + +static const lv_img_dsc_t img_screen_rgb = { + .header.always_zero = 0, + .header.w = X_AXIS_SIZE, + .header.h = Y_AXIS_SIZE, + .data_size = X_AXIS_SIZE * Y_AXIS_SIZE * LV_IMG_PX_SIZE_ALPHA_BYTE, + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = screen_rgb_data, +}; + +// The function convert value to RGB565 color value +static int8_t colors[3][3] = { {0, 0, 31}, {0, 63, 0}, {31, 0, 0} }; +static uint16_t convert_to_rgb(uint8_t minval, uint8_t maxval, int8_t val) +{ + uint16_t result; + + float i_f = (float)(val - minval) / (float)(maxval - minval) * 2; + + int Ii = i_f; + float If = i_f - Ii; + + int8_t *c1 = colors[Ii]; + int8_t *c2 = colors[Ii + 1]; + uint16_t res_colors[3]; + + res_colors[0] = c1[0] + If * (c2[0] - c1[0]); + res_colors[1] = c1[1] + If * (c2[1] - c1[1]); + res_colors[2] = c1[2] + If * (c2[2] - c1[2]); + result = res_colors[2] | (res_colors[1] << 5) | (res_colors[0] << 11); + return result; +} + +// Init screen with blue values +static void spectrum2d_picture_init() +{ + for (int y = 0 ; y < img_screen_rgb.header.h ; y++) { + for (int x = 0 ; x < img_screen_rgb.header.w ; x++) { + screen_rgb_data[(y * img_screen_rgb.header.w + x)*LV_IMG_PX_SIZE_ALPHA_BYTE + 0] = 0x0; + screen_rgb_data[(y * img_screen_rgb.header.w + x)*LV_IMG_PX_SIZE_ALPHA_BYTE + 1] = 0x1f; + screen_rgb_data[(y * img_screen_rgb.header.w + x)*LV_IMG_PX_SIZE_ALPHA_BYTE + 2] = 0xff; + } + } +} + +// Add spectrum data to the screen +static void spectrum2d_picture() +{ + for (int y = 0 ; y < (img_screen_rgb.header.h - 1) ; y++) { + for (int x = 0 ; x < img_screen_rgb.header.w ; x++) { + for (int i = 0 ; i < LV_IMG_PX_SIZE_ALPHA_BYTE ; i++) { + screen_rgb_data[(y * img_screen_rgb.header.w + x)*LV_IMG_PX_SIZE_ALPHA_BYTE + i] = screen_rgb_data[((y + 1) * img_screen_rgb.header.w + x) * LV_IMG_PX_SIZE_ALPHA_BYTE + i]; + } + } + } + + // Add left channel to the screen + // The order of the values inverted + for (int x = 0 ; x < img_screen_rgb.header.w / 2 ; x++) { + // Get inverted index value + int in_index = img_screen_rgb.header.w / 2 - x - 1; + float data = result_data[in_index]; + + // Limit input data + if (data > 127) { + data = 127; + } + if (data < 0) { + data = 0; + } + + // Convert input value in dB to the color + uint16_t color_val = convert_to_rgb(0, 128, data); + // Split 16 bit value to two bytes, to change the bytes order + uint8_t *ref_val = (uint8_t *)&color_val; + int out_index = x; + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 0] = ref_val[1]; + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 1] = ref_val[0]; + // Set alpha value + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 2] = 0xff; + } + + // Add right channel to the screen + for (int x = 0 ; x < img_screen_rgb.header.w / 2 ; x++) { + // Get index of right channel + int in_index = BUFFER_PROCESS_SIZE / 2 + x; + float data = result_data[in_index]; + + // Limit input data + if (data > 127) { + data = 127; + } + if (data < 0) { + data = 0; + } + + // Convert input value in dB to the color + uint16_t color_val = convert_to_rgb(0, 128, data); + // Split 16 bit value to two bytes, to change the bytes order + uint8_t *ref_val = (uint8_t *)&color_val; + int out_index = img_screen_rgb.header.w / 2 + x; + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 0] = ref_val[1]; + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 1] = ref_val[0]; + // Set alpha value + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 2] = 0xff; + } +} + +static void image_display_task(void *arg) +{ + // LV_IMG_DECLARE(img_screen_rgb); + lv_obj_t *img1 = lv_img_create(lv_scr_act()); + lv_img_set_src(img1, &img_screen_rgb); + spectrum2d_picture_init(); + lv_obj_align(img1, LV_ALIGN_CENTER, 0, 0); + + for (;;) { + // Update image with new spectrum values + spectrum2d_picture(); + // Update screen with new image + lv_obj_align(img1, LV_ALIGN_CENTER, 0, 0); + // Free CPU for a while + vTaskDelay(1); + } +} + +void app_main(void) +{ + /* Initialize I2C (for touch and audio) */ + bsp_i2c_init(); + + /* Initialize display and LVGL */ + bsp_display_start(); + + /* Set display brightness to 100% */ + bsp_display_backlight_on(); + + int ret_val = xTaskCreatePinnedToCore(µphone_read_task, "Microphone read Task", 8 * 1024, NULL, 3, NULL, 0); + if (ret_val != pdPASS) { + ESP_LOGE(TAG, "Not possible to allocate microphone task, ret_val = %i", ret_val); + return; + } + + ret_val = xTaskCreatePinnedToCore(&image_display_task, "Draw task", 10 * 1024, NULL, 5, NULL, 1); + if (ret_val != pdPASS) { + ESP_LOGE(TAG, "Not possible to allocate microphone task, ret_val= %i", ret_val); + return; + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/sdkconfig.defaults b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/sdkconfig.defaults new file mode 100644 index 0000000..f39915f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/applications/spectrum_box_lite/sdkconfig.defaults @@ -0,0 +1,66 @@ +# This file was generated using idf.py save-defconfig. It can be edited manually. +# Espressif IoT Development Framework (ESP-IDF) 5.3.0 Project Minimal Configuration +# +CONFIG_IDF_TARGET="esp32s3" +CONFIG_ESPTOOLPY_FLASHMODE_QIO=y +CONFIG_ESPTOOLPY_FLASHSIZE_16MB=y +CONFIG_SPIRAM=y +CONFIG_SPIRAM_MODE_OCT=y +CONFIG_SPIRAM_SPEED_80M=y +CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB=y +CONFIG_ESP32S3_DATA_CACHE_64KB=y +CONFIG_ESP32S3_DATA_CACHE_LINE_64B=y +CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y +CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG=y +CONFIG_ESP_INT_WDT=n +CONFIG_ESP_TASK_WDT_EN=n +CONFIG_BSP_LCD_DRAW_BUF_HEIGHT=10 +CONFIG_LV_CONF_MINIMAL=y +CONFIG_LV_MEM_CUSTOM=y +CONFIG_LV_USE_ASSERT_NULL=y +CONFIG_LV_USE_ASSERT_MALLOC=y +CONFIG_LV_USE_PERF_MONITOR=y +CONFIG_LV_FONT_UNSCII_8=n +CONFIG_LV_FONT_DEFAULT_MONTSERRAT_14=y +CONFIG_LV_TXT_ENC_UTF8=y +CONFIG_LV_USE_ARC=y +CONFIG_LV_USE_BTN=y +CONFIG_LV_USE_BTNMATRIX=y +CONFIG_LV_USE_CANVAS=y +CONFIG_LV_USE_CHECKBOX=y +CONFIG_LV_USE_DROPDOWN=y +CONFIG_LV_USE_LINE=y +CONFIG_LV_USE_ROLLER=y +CONFIG_LV_USE_SLIDER=y +CONFIG_LV_USE_SWITCH=y +CONFIG_LV_USE_TEXTAREA=y +CONFIG_LV_USE_TABLE=y +CONFIG_LV_USE_ANIMIMG=y +CONFIG_LV_USE_CALENDAR=y +CONFIG_LV_USE_CHART=y +CONFIG_LV_USE_COLORWHEEL=y +CONFIG_LV_USE_IMGBTN=y +CONFIG_LV_USE_KEYBOARD=y +CONFIG_LV_USE_LED=y +CONFIG_LV_USE_LIST=y +CONFIG_LV_USE_MENU=y +CONFIG_LV_USE_METER=y +CONFIG_LV_USE_MSGBOX=y +CONFIG_LV_USE_SPAN=y +CONFIG_LV_USE_SPINBOX=y +CONFIG_LV_USE_SPINNER=y +CONFIG_LV_USE_TABVIEW=y +CONFIG_LV_USE_TILEVIEW=y +CONFIG_LV_USE_WIN=y +CONFIG_LV_USE_THEME_DEFAULT=y +CONFIG_LV_USE_THEME_BASIC=y +CONFIG_LV_USE_FLEX=y +CONFIG_LV_USE_GRID=y +CONFIG_LV_USE_FS_POSIX=y +CONFIG_LV_FS_POSIX_LETTER=83 +CONFIG_LV_USE_PNG=y +CONFIG_LV_USE_BMP=y +CONFIG_LV_USE_SJPG=y +CONFIG_LV_USE_GIF=y +CONFIG_LV_USE_SNAPSHOT=y +CONFIG_LV_BUILD_EXAMPLES=y diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/build_all.sh b/ESPIDFNEW/managed_components/espressif__esp-dsp/build_all.sh new file mode 100644 index 0000000..4434dd4 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/build_all.sh @@ -0,0 +1,84 @@ +#!/bin/bash +# +# Build the test app and all examples from the examples directory. +# Expects EXAMPLE_TARGETS and TEST_TARGETS environment variables to be set. +# Each variable is the list of IDF_TARGET values to build the examples and +# the test app for, respectively. +# +# ----------------------------------------------------------------------------- +# Safety settings (see https://gist.github.com/ilg-ul/383869cbb01f61a51c4d). + +if [[ -n "${DEBUG_SHELL}" ]] +then + set -x # Activate the expand mode if DEBUG is anything but empty. +fi + +if [[ -z "${EXAMPLE_TARGETS}" || -z "${TEST_TARGETS}" ]] +then + echo "EXAMPLE_TARGETS and TEST_TARGETS environment variables must be set before calling this script" + exit 1 +fi + +if [[ -z "${SKIP_GNU_MAKE_BUILD}" ]] +then + echo "SKIP_GNU_MAKE_BUILD not set, will build with GNU Make based build system as well." + export SKIP_GNU_MAKE_BUILD=0 +fi + +set -o errexit # Exit if command failed. +set -o pipefail # Exit if pipe failed. +set -o nounset # Exit if variable not set. + + +STARS='***************************************************' + +# ----------------------------------------------------------------------------- + +die() { + echo "${1:-"Unknown Error"}" 1>&2 + exit 1 +} + +# build_for_targets +# call this in the project directory +function build_for_targets +{ + target_list="$1" + for IDF_TARGET in ${target_list} + do + export IDF_TARGET + if [[ "${IDF_TARGET}" = "esp32" ]] && [[ "${SKIP_GNU_MAKE_BUILD}" = "0" ]] + then + echo "${STARS}" + echo "Building in $PWD with Make" + # -j option will be set via MAKEFLAGS in .gitlab-ci.yml + # shellcheck disable=SC2015 + make defconfig && make || die "Make build in ${PWD} has failed" + rm -rf build + fi + + echo "${STARS}" + echo "Building in $PWD with CMake for ${IDF_TARGET}" + rm -f sdkconfig + idf.py set-target "${IDF_TARGET}" + idf.py build || die "CMake build in ${PWD} has failed for ${IDF_TARGET}" + idf.py fullclean || true + done +} + +# Build the test app +echo "${STARS}" +pushd test_app +build_for_targets "${TEST_TARGETS}" +popd + +# Build the examples +pushd examples +EXAMPLES=$(find . -maxdepth 1 -mindepth 1 -type d | cut -d '/' -f 2) +for NAME in ${EXAMPLES} +do + pushd "${NAME}" + build_for_targets "${EXAMPLE_TARGETS}" + popd +done +popd diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/README.md new file mode 100644 index 0000000..a0091ec --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/README.md @@ -0,0 +1,20 @@ +# ESP-DSP Examples + +This directory contains a range of examples for ESP-DSP library. + +These examples are intended to demonstrate part of ESP-DSP functionality (e.g. initialization, execution) and to provide code that you can copy and adapt into your own projects. + +See the [README.md](../README.md) file in the upper level directory for more information about ESP-DSP. + +# Example Layout + +The examples are grouped into subdirectories by category. Each category directory contains one or more example projects: + +* [Dot Product Calculation](./dotprod/README.md) Example +* [Basic Math Operations](./basic_math/README.md) Example +* [FFT](./fft/README.md) Example +* [Matrix](./matrix/README.md) Example +* [FFT Window](./fft_window/README.md) Example +* [IIR Filter](./iir/README.md) Example +* [Kalman Filter](./kalman/README.md) Example +* [FIR Filter](.fir/README.md) Example diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/README.md new file mode 100644 index 0000000..d66a24e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/README.md @@ -0,0 +1,20 @@ +# ESP-DSP Applications + +This directory contains a range of applications for ESP-DSP library. + +These applications are intended to demonstrate part of ESP-DSP functionality (e.g. initialization, execution) and to provide examples of fully working projects built using ESP-DSP component + +See the [README.md](../README.md) file in the upper level directory for more information about ESP-DSP. + +# Applications Layout + +The applications are grouped into subdirectories by category. Each category directory contains one or more projects: + +* [ESP32-Azure IoT kit](./azure_board_apps/README.md) applications + * [3d graphics](./azure_board_apps/apps/3d_graphics/README.md) application + * [Kalman filter](./azure_board_apps/apps/kalman_filter/README.md) application + +* [LyraT Board](./lyrat_board_app/README.md) application +* [ESP32-S3-BOX-Lite](./spectrum_box_lite/README.md) application + + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/.gitignore b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/.gitignore new file mode 100644 index 0000000..63720e9 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/.gitignore @@ -0,0 +1,5 @@ +**/build/ +**/sdkconfig +**/sdkconfig.old +**/dependencies.lock +**/managed_components/** diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/README.md new file mode 100644 index 0000000..dfdfdc2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/README.md @@ -0,0 +1,29 @@ +# ESP-DSP ESP32-Azure IoT kit demo applications + +The demo applications are developed for ESP32-Azure IoT kit development board and are demonstrating usage of matrices with ESP-DPS Mat class, Kalman filter and basic +3D projection with matrices + +### [3D Graphics demo](apps/3d_graphics) +* a simple rotation of a selected 3D objects is shown on the display +* demonstrating usage the Mat class, matrices and operations with matrices + +
+ +
+ +### [Kalman filter demo](apps/kalman_filter/) +* a selected 3D object is following movements of the development board with IMU sensors +* the sensors outputs are processed by the Kalman filter +* demonstrating usage the Mat class, matrices, operations with matrices and Kalman filter + +
+ +
+ +### [3D graphics](graphics/img_to_3d_matrix/example/) + +Simple 3D graphics is used in the both demos, to display the 3D on the monochromatic display. The Graphics is using transformation matrices to rotate, scale and translate (move) 3D objects, to show the matrix calculation capabilities of the ESP-DSP repository. + +## Used components +* [ESP-DSP](https://github.com/espressif/esp-dsp): matrices, Mat class, Kalman filter +* [ESP-BSP](https://github.com/espressif/esp-bsp): ESP32-Azure IoT kit \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/3d_graphics.gif b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/3d_graphics.gif new file mode 100644 index 0000000..36d1d2a Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/3d_graphics.gif differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/CMakeLists.txt new file mode 100644 index 0000000..2c972d8 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/CMakeLists.txt @@ -0,0 +1,8 @@ +# For more information about build system see +# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html +# The following five 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.5) +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +add_compile_options("-Wno-format") +project(esp-dsp-azure-board-app-3d-graphics) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/README.md new file mode 100644 index 0000000..32f906d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/README.md @@ -0,0 +1,27 @@ +# ESP-DSP ESP32-Azure IoT kit 3d graphics demo application + +The demo is developed for [ESP32-Azure IoT kit](https://github.com/espressif/esp-bsp/tree/master/esp32_azure_iot_kit) development board and is demonstrating the usage of matrices with `ESP-DSP` `Mat` class, Kalman filter and basic 3D graphics. + +The 3D Graphics demo displays a 2D graphics, converted to 3D as a 3D rotating object, on the development board's display. Button press changes the rotation direction of the 3D object. Run the menuconfig using the following command: + + idf.py mencuonfig + +In the menuconfig's menu item `Demo user configuration` select which 3D object to display. It's either a 3D cube, or ESP logo, or a user-defined graphics. Getting the user-defined graphics is described in an [example](../../graphics/img_to_3d_matrix/example/) + +## Running the demo + +To start the demo, run the following command: + + idf.py build flash monitor + +The expected output is the following: + + I (570) 3D image demo: Selected 3D image - ESP Logo + I (570) 3D image demo: Showing ESP text + I (6730) 3D image demo: Showing 3D image + +Note, that the first line `Selected 3D image` from the expected output depends on the user's Kconfing menu selection + +
+ +
diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/3d_graphics_demo.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/3d_graphics_demo.cpp new file mode 100644 index 0000000..dccc366 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/3d_graphics_demo.cpp @@ -0,0 +1,240 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "esp_log.h" +#include "ssd1306.h" +#include "bsp/esp-bsp.h" +#include "esp_dsp.h" +#include "cube_matrix.h" +#include "esp_logo.h" +#include "esp_text.h" +#include "graphics_support.h" +#include "image_to_3d_matrix.h" + +static ssd1306_handle_t ssd1306_dev = NULL; +static bool button_pressed = true; + +dspm::Mat perspective_matrix(MATRIX_SIZE, MATRIX_SIZE); + +extern "C" void app_main(); + +/** + * @brief Initialize 3d image structure + * + * Assigns a 3d image to be displayed to the 3d image structure based on the Kconfig menu result. + * The Kconfig menu is operated by a user + * + * @param image: 3d image structure + */ +static void init_3d_matrix_struct(image_3d_matrix_t *image) +{ +#ifdef CONFIG_3D_OBJECT_ESP_LOGO + image->matrix = image_3d_matrix_esp_logo; + image->matrix_len = ((sizeof(image_3d_matrix_esp_logo)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - ESP Logo"); +#elif CONFIG_3D_OBJECT_CUSTOM + image->matrix = image_to_3d_matrix_custom; + image->matrix_len = ((sizeof(image_to_3d_matrix_custom)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - User's custom image"); +#elif CONFIG_3D_OBJECT_CUBE + image->matrix = cube_vectors_3d; + image->matrix_len = ((sizeof(cube_vectors_3d)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - 3D cube"); +#endif +} + +/** + * @brief Initialize display + */ +static void app_ssd1306_init(void) +{ + ssd1306_dev = ssd1306_create((i2c_port_t)BSP_I2C_NUM, SSD1306_I2C_ADDRESS); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Display a 3d image + * + * If the object is the 3d cube, connect the projected cube points by lines and display the lines + * For any other 3d object lit pixels on the display from provided XY coordinates + * + * @param projected_image: 3d matrix from Mat class after projection + */ +static void display_3d_image(dspm::Mat projected_image) +{ + ssd1306_clear_screen(ssd1306_dev, 0); + + if (OBJECT_3D_CUBE) { + // For the 3D cube, only the 6 points of the cube are transformed + // Cube edges, connecting transformed 3D cube points are connected with lines here + for (uint8_t cube_point = 0; cube_point < CUBE_EDGES; cube_point++) { + ssd1306_draw_line(ssd1306_dev, + (int16_t)projected_image(cube_dict_line_begin[cube_point], 0), + (int16_t)projected_image(cube_dict_line_begin[cube_point], 1), + (int16_t)projected_image(cube_dict_line_end[cube_point], 0), + (int16_t)projected_image(cube_dict_line_end[cube_point], 1)); + } + } else { + // Every other 3D image is drawn here pixel by pixel + for (uint32_t pixel = 0; pixel < projected_image.rows; pixel++ ) { + ssd1306_fill_point(ssd1306_dev, projected_image(pixel, 0), projected_image(pixel, 1), 1); + } + } + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Display ESPRESSIF text + * + * To demonstrate usage of the translation and scaling matrices + */ +static void dispaly_esp_text(void) +{ + image_3d_matrix_t esp_text; + esp_text.matrix = image_3d_array_esp_text; + esp_text.matrix_len = ((sizeof(image_3d_array_esp_text)) / sizeof(float)) / MATRIX_SIZE; + int16_t shift_x = -SSD1606_X_CENTER; + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat transformed_image(esp_text.matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat matrix_3d((float *)esp_text.matrix[0], esp_text.matrix_len, MATRIX_SIZE); + + ESP_LOGI("3D image demo", "Showing ESP text"); + + for (int i = 0; i < 52; i++) { + update_translation_matrix(T, true, (float)shift_x, (float)SSD1606_Y_CENTER, 0); + transformed_image = matrix_3d * T; + + ssd1306_clear_screen(ssd1306_dev, 0); + for (uint32_t point = 0; point < transformed_image.rows; point++ ) { + ssd1306_fill_point(ssd1306_dev, transformed_image(point, 0), transformed_image(point, 1), 1); + } + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(50 / portTICK_PERIOD_MS); + + shift_x += 5; + } + + ssd1306_clear_screen(ssd1306_dev, 0); + ssd1306_draw_bitmap(ssd1306_dev, 0, 24, &image_bmp_array_esp_text[0], 128, 24); + ssd1306_refresh_gram(ssd1306_dev); + + update_translation_matrix(T, true, (float)SSD1606_X_CENTER, (float)SSD1606_Y_CENTER, 0); + vTaskDelay(100 / portTICK_PERIOD_MS); + + float scale = 1; + for (int i = 0; i < 20; i++) { + update_scaling_matrix(T, false, scale, scale, 1); + transformed_image = matrix_3d * T; + + ssd1306_clear_screen(ssd1306_dev, 0); + for (uint32_t point = 0; point < transformed_image.rows; point++ ) { + ssd1306_fill_point(ssd1306_dev, transformed_image(point, 0), transformed_image(point, 1), 1); + } + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(50 / portTICK_PERIOD_MS); + + if (i < 10) { + scale -= 0.05; + } else { + scale += 0.05; + } + } +} + +/** + * @brief RTOS task to draw a 3d image. + * + * Updates 3d matrices, prepares the final 3d matrix to be displayed on the display + * + * @param arg: pointer to RTOS task arguments, 3d image structure in this case + */ +static void draw_3d_image_task(void *arg) +{ + float rot_y = 0, rot_x = 0; + const float angle_increment = 4; + image_3d_matrix_t *image = (image_3d_matrix_t *)arg; + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat transformed_image(image->matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat projected_image(image->matrix_len, MATRIX_SIZE); // 3D image matrix after projection + dspm::Mat matrix_3d((float *)image->matrix[0], image->matrix_len, MATRIX_SIZE); + + if (OBJECT_3D_CUBE) { + rot_x = 45; + } + + while (1) { + if (button_pressed) { + rot_y += angle_increment; + if (rot_y >= 360) { + rot_y -= 360; + } + } else { + rot_y -= angle_increment; + if (rot_y <= 0) { + rot_y += 360; + } + } + + // Apply rotation in all the axes to the transformation matrix + update_rotation_matrix(T, rot_x, rot_y, 0); + // Apply translation to the transformation matrix + update_translation_matrix(T, true, ((float)SSD1606_X_CENTER), ((float)SSD1606_Y_CENTER), 0); + + // explanation for the matrix multiplication is for the 3D cube scenario, applies for all of the objects + // where matrix rows for the transformed image and the projected image are set according to the specific 3d object + + // matrix mul cube_matirx(8x4) * transformation_matrix(4x4) = transformed_cube(8x4) + transformed_image = matrix_3d * T; + // matrix mul transformed_cube(8x4) * perspective_matrix(4x4) = projected_cube(8x4) + projected_image = transformed_image * perspective_matrix; + + display_3d_image(projected_image); + vTaskDelay(20 / portTICK_PERIOD_MS); + } +} + +void app_main(void) +{ + static bool button_prev_val = false; + image_3d_matrix_t image; + ekf_imu13states *ekf13 = new ekf_imu13states(); + ekf13->Init(); + + // Init all board components + bsp_i2c_init(); + app_ssd1306_init(); // display init + bsp_leds_init(); // LEDs init + bsp_i2c_set_clk_speed(I2C_CLK_600KHZ); // Set I2C to 600kHz + + init_perspective_matrix(perspective_matrix); + init_3d_matrix_struct(&image); + + dispaly_esp_text(); + vTaskDelay(1000 / portTICK_PERIOD_MS); + + xTaskCreate(draw_3d_image_task, "draw_3d_image", 2048, &image, 4, NULL); + ESP_LOGI("3D image demo", "Showing 3D image"); + + while (1) { + if (bsp_button_get()) { + button_pressed = !button_pressed; + } + + if (button_prev_val != button_pressed) { + button_prev_val = button_pressed; + if (button_pressed) { + bsp_led_set(BSP_LED_AZURE, true); + } else { + bsp_led_set(BSP_LED_AZURE, false); + } + } + vTaskDelay(100 / portTICK_PERIOD_MS); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/CMakeLists.txt new file mode 100644 index 0000000..fd342d6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/CMakeLists.txt @@ -0,0 +1,8 @@ +idf_component_register(SRCS "3d_graphics_demo.cpp" + "../../../graphics/3d_matrix/3d_matrix_data/esp_logo.c" + "../../../graphics/3d_matrix/3d_matrix_data/esp_text.c" + "../../../graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c" + "../../../graphics/3d_matrix/3d_matrix_src/graphics_support.cpp" + INCLUDE_DIRS "." + "../../../graphics/3d_matrix/3d_matrix_data" + "../../../graphics/3d_matrix/3d_matrix_src") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/Kconfig.projbuild b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/Kconfig.projbuild new file mode 100644 index 0000000..d36ede0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/Kconfig.projbuild @@ -0,0 +1,19 @@ +menu "Demo user configuration" + choice + prompt "Select 3D object" + config 3D_OBJECT_CUBE + bool "3D cube" + help + 3D graphics to be displayed is cube + + config 3D_OBJECT_ESP_LOGO + bool "3D ESP Logo" + help + 3D graphics to be displayed is ESP Logo + + config 3D_OBJECT_CUSTOM + bool "User-defined graphics" + help + 3D graphics to be displayed is a user-defined graphics + endchoice +endmenu \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/idf_component.yml new file mode 100644 index 0000000..a36c39c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/3d_graphics/main/idf_component.yml @@ -0,0 +1,8 @@ +## IDF Component Manager Manifest File +description: ESP-DSP azure board application 3d graphics +dependencies: + espressif/esp32_azure_iot_kit: "*" + espressif/esp-dsp: + version: "*" + override_path: "../../../../../../esp-dsp" + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/CMakeLists.txt new file mode 100644 index 0000000..94d8c35 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/CMakeLists.txt @@ -0,0 +1,8 @@ +# For more information about build system see +# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html +# The following five 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.5) +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +add_compile_options("-Wno-format") +project(esp-dsp-azure-board-app-kalman-filter) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/README.md new file mode 100644 index 0000000..eb664ba --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/README.md @@ -0,0 +1,59 @@ +# ESP-DSP ESP32-Azure IoT kit Kalman filter demo application + +The demo is developed for [ESP32-Azure IoT kit](https://github.com/espressif/esp-bsp/tree/master/esp32_azure_iot_kit) development board and is demonstrating the usage of matrices with `ESP-DSP` `Mat` class, Kalman filter and basic 3D graphics. + +The Kalman filter demo displays a 2D graphics, converted to 3D as a 3D object, on the development board's display. The 3D object follows the movements of the development board, where the Kalman filter is used for processing the output signals of the IMU sensors accommodated on the development board. The 3D object rotation is calculated by the Kalman filter class methods. All 3 IMU sensors present on the dev board (accelerometer, gyroscope and magnetometer) are used for sensing the development board's position. + + +If the board is inactive (no, or very low rotation is detected) for a set period of time, the demo enters an "Idle" state, in which a 3D rotating object is displayed. Once a certain set level of the board's rotation is detected, the demo enters a normal, "Active", state. + +For the project settings, run the menuconfig using the following command: + + idf.py mencuonfig + +In the menuconfig's menu item `Demo user configuration` select which 3D object to display. It's either 3D cube, or ESP logo, or a user-defined graphics. Getting the user-defined 3D object is described in the [3D Graphics demo](../3d_graphics) + +## Kalman filter +#### Calibration + +The filter must be calibrated before the first run, which takes several minutes. But the calibration process before each run can be omitted by calibrating the filter once, saving Kalman's filter state vectors to the NVS, and loading those vectors back into the Kalman filter before the run. In addition, every 5 minutes a current state vectors are saved into the flash memory. + +## Running the demo + +To start the demo, run the following command: + + idf.py build flash monitor + +The expected output is the following: + + I (589) Kalman filter demo: Selected 3D image - 3D cube + I (590) Kalman filter demo: Filter state vectors present in the NVS + I (592) Kalman filter demo: Loading state vectors into the filter structure + I (604) Kalman filter demo: State vectors loaded from the NVS + I (606) Barometer: disabled + I (619) Board status: board put to active mode + I (95780) Board status: board put to idle mode + I (300619) Kalman filter demo: State vectors saved to NVS + +Note, that the first line `Selected 3D image` from the expected output depends on the user's Kconfing menu selection + +To start the demo and run the initial Kalman filter calibration, one must erase the flash memory, to remove the previously stored Kalman filter's state vectors. To do so, run the following command: + + idf.py erase_flash build flash monitor + +The expected output is the following: + + I (592) Kalman filter demo: Selected 3D image - 3D cube + I (595) Kalman filter demo: Filter state vectors not present in the NVS + I (595) Kalman filter demo: Starting Kalman filter calibration loop + I (100699) Kalman filter demo: Exiting Kalman filter calibration loop + I (100894) Kalman filter demo: Estimated gyroscope bias error [deg/sec]: -0.020715 -0.000431 -0.022452 + I (100900) Kalman filter demo: State vectors saved to the NVS + I (100900) Barometer: disabled + I (100911) Board status: board put to active mode + I (196072) Board status: board put to idle mode + I (400912) Kalman filter demo: State vectors saved to NVS + +
+ +
\ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/kalman_filter.gif b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/kalman_filter.gif new file mode 100644 index 0000000..2467b5f Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/kalman_filter.gif differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/CMakeLists.txt new file mode 100644 index 0000000..dc7e9bf --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/CMakeLists.txt @@ -0,0 +1,7 @@ +idf_component_register(SRCS "kalman_filter_demo.cpp" + "../../../graphics/3d_matrix/3d_matrix_data/esp_logo.c" + "../../../graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c" + "../../../graphics/3d_matrix/3d_matrix_src/graphics_support.cpp" + INCLUDE_DIRS "." + "../../../graphics/3d_matrix/3d_matrix_data" + "../../../graphics/3d_matrix/3d_matrix_src") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/Kconfig.projbuild b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/Kconfig.projbuild new file mode 100644 index 0000000..d36ede0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/Kconfig.projbuild @@ -0,0 +1,19 @@ +menu "Demo user configuration" + choice + prompt "Select 3D object" + config 3D_OBJECT_CUBE + bool "3D cube" + help + 3D graphics to be displayed is cube + + config 3D_OBJECT_ESP_LOGO + bool "3D ESP Logo" + help + 3D graphics to be displayed is ESP Logo + + config 3D_OBJECT_CUSTOM + bool "User-defined graphics" + help + 3D graphics to be displayed is a user-defined graphics + endchoice +endmenu \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/idf_component.yml new file mode 100644 index 0000000..cf57d1e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/idf_component.yml @@ -0,0 +1,8 @@ +## IDF Component Manager Manifest File +description: ESP-DSP azure board application Kalman filter +dependencies: + espressif/esp32_azure_iot_kit: "*" + espressif/esp-dsp: + version: "*" + override_path: "../../../../../../esp-dsp" + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/kalman_filter_demo.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/kalman_filter_demo.cpp new file mode 100644 index 0000000..2cc49c6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/apps/kalman_filter/main/kalman_filter_demo.cpp @@ -0,0 +1,608 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "mpu6050.h" +#include "ssd1306.h" +#include "mag3110.h" +#include "fbm320.h" +#include "bsp/esp-bsp.h" +#include "esp_log.h" +#include "esp_timer.h" +#include "esp_idf_version.h" // for backward compatibility of esp-timer +#include "nvs.h" +#include "nvs_flash.h" +#include "graphics_support.h" +#include "cube_matrix.h" +#include "esp_dsp.h" +#include "ekf_imu13states.h" +#include "esp_logo.h" +#include "image_to_3d_matrix.h" + +#define STORAGE_NAMESPACE "kalman_filter" +#define USE_BAROMETER 0 + +static ssd1306_handle_t ssd1306_dev = NULL; +static mpu6050_handle_t mpu6050_dev = NULL; +static mag3110_handle_t mag3110_dev = NULL; +static fbm320_handle_t fbm320_dev = NULL; + +static bool kalman_filter_calibrated = false; +static bool board_inactive = true; + +dspm::Mat perspective_matrix(MATRIX_SIZE, MATRIX_SIZE); + +extern "C" void app_main(); + +/** + * @brief Initialize magnetometer + */ +static void app_mag3110_init(void) +{ + esp_err_t ret; + mag3110_dev = mag3110_create((i2c_port_t)BSP_I2C_NUM); + mag3110_start_raw(mag3110_dev, MAG3110_DR_OS_80_16); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize display + */ +static void app_ssd1306_init(void) +{ + ssd1306_dev = ssd1306_create((i2c_port_t)BSP_I2C_NUM, SSD1306_I2C_ADDRESS); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Initialize accelerometer and gyroscope + */ +static void mpu6050_init(void) +{ + esp_err_t ret; + mpu6050_dev = mpu6050_create((i2c_port_t)BSP_I2C_NUM, MPU6050_I2C_ADDRESS); + ret = mpu6050_config(mpu6050_dev, ACCE_FS_8G, GYRO_FS_2000DPS); + assert(ESP_OK == ret); + ret = mpu6050_wake_up(mpu6050_dev); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize pressure sensor + */ +static void app_fbm320_init(void) +{ + esp_err_t ret; + fbm320_dev = fbm320_create((i2c_port_t)BSP_I2C_NUM, FBM320_I2C_ADDRESS_1); + ret = fbm320_init(fbm320_dev); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize NVS flash memory + */ +static void init_nvs_flash_memory(void) +{ + esp_err_t err = nvs_flash_init(); + if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) { + // NVS partition was truncated and needs to be erased + // Retry nvs_flash_init + ESP_ERROR_CHECK(nvs_flash_erase()); + err = nvs_flash_init(); + } + ESP_ERROR_CHECK( err ); +} + +/** + * @brief Initialize 3d image structure + * + * Assigns a 3d image to be displayed to the 3d image structure based on the Kconfig menu result. + * The Kconfig menu is operated by a user + * + * @param image: pointer to 3d image structure + * @param ekf13: kalman filter object + */ +static void init_3d_matrix_struct(image_3d_matrix_kalman_t *image, ekf_imu13states *ekf13) +{ +#ifdef CONFIG_3D_OBJECT_ESP_LOGO + image->matrix = image_3d_matrix_esp_logo; + image->matrix_len = ((sizeof(image_3d_matrix_esp_logo)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - ESP Logo"); +#elif CONFIG_3D_OBJECT_CUSTOM + image->matrix = image_to_3d_matrix_custom; + image->matrix_len = ((sizeof(image_to_3d_matrix_custom)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - User's custom image"); +#elif CONFIG_3D_OBJECT_CUBE + image->matrix = cube_vectors_3d; + image->matrix_len = ((sizeof(cube_vectors_3d)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - 3D cube"); +#endif + image->ekf13 = ekf13; +} + +/** + * @brief Display a 3d image + * + * If the object is the 3d cube, connect the projected cube points by lines and display the lines + * For any other 3d object lit pixels on the display from provided XY coordinates + * + * @param projected_image: 3d matrix from Mat class after projection + */ +static void display_3d_image(dspm::Mat projected_image) +{ + ssd1306_clear_screen(ssd1306_dev, 0); + + if (OBJECT_3D_CUBE) { + // For the 3D cube, only the 6 points of the cube are transformed + // Cube edges, connecting transformed 3D cube points are connected with lines here + for (uint8_t cube_point = 0; cube_point < CUBE_EDGES; cube_point++) { + ssd1306_draw_line(ssd1306_dev, + (int16_t)projected_image(cube_dict_line_begin[cube_point], 0), + (int16_t)projected_image(cube_dict_line_begin[cube_point], 1), + (int16_t)projected_image(cube_dict_line_end[cube_point], 0), + (int16_t)projected_image(cube_dict_line_end[cube_point], 1)); + } + } else { + // Every other 3D image is drawn here pixel by pixel + for (uint32_t pixel = 0; pixel < projected_image.rows; pixel++ ) { + ssd1306_fill_point(ssd1306_dev, projected_image(pixel, 0), projected_image(pixel, 1), 1); + } + } + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Draw a 3d image + * + * Updates 3d matrices and prepares the final 3d matrix to be displayed on the display. + * Board inactivity check - decides which board mode to display (active or inactive), based on the board movements. + * + * @param ekf13: kalman filter object + * @param transformed_image: 3d matrix holding a 3d image after transformation + * @param projected_image: 3d matrix holding a 3d image after projection + * @param matrix_3d: 3d matrix holding the original 3d image, without any transformation + */ +static void draw_3d_image(ekf_imu13states *ekf13, dspm::Mat &transformed_image, dspm::Mat &projected_image, dspm::Mat &matrix_3d) +{ + static const float movement_treshold = 0.0001; // threshold to decide between Idle and Active state of the board + static float inactive_rotation = 0; // rotation angle (in degrees) for Idle state + static unsigned int inactivity_count = 0; + static const unsigned int inactivity_count_treshold = 75; + static unsigned int inactivity_check = 0; // activity of the board is being checked once in N calls of the function + static float prev_state_arr[3] = {0, 0, 0}; // holds the previous state of the Euler angles, to compare the diff + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat R1 = ekf::quat2rotm(ekf13->X.data); // matrix(3x1) that holds x, y, z rotation data + dspm::Mat eul_angles = ekf::rotm2eul(R1); + + // check if the board is active or not every N calls of the function + if (!(inactivity_check++ % 10)) { + dspm::Mat prev_state_mat(prev_state_arr, 3, 1); + dspm::Mat diff = eul_angles - prev_state_mat; + prev_state_mat = eul_angles; + + float max_diff = fabs(diff(0, 0) * diff(1, 0) * diff(2, 0)); + + // wake-up the board if the current board movement crosses the threshold + if (board_inactive && (max_diff > movement_treshold)) { + board_inactive = false; + ESP_LOGI("Board status", "board put to active mode"); + } + + // if the board is awake, and the current movement of the board is lower than the threshold - the board is + // being moved with - run the inactivity_counter + // after some time (if the movement of the board has been lower than the threshold) put the board to idle mode + else if (!board_inactive && (max_diff < movement_treshold)) { + if (inactivity_count > inactivity_count_treshold) { + board_inactive = true; + inactivity_count = 0; + ESP_LOGI("Board status", "board put to idle mode"); + update_perspective_matrix(perspective_matrix, 90); + } + inactivity_count++; + } + + // if the board is awake and the current movement of the board is higher than the threshold clear the inactivity_counter + else if (!board_inactive && (max_diff >= movement_treshold)) { + inactivity_count = 0; + } + } + + if (board_inactive) { + // board idle state - display a rotating cube + update_rotation_matrix(T, inactive_rotation += 3.0, 10.0, 10.0); + } else { + // board active state - 3D object follows movements of the board + eul_angles(2, 0) = -eul_angles(2, 0); + dspm::Mat R = ekf::eul2rotm(eul_angles.data); + + // Enlarge rotation matrix from 3x3 to 4x4 + // Copy rotation matrix R(3x3) to transformation matrix T_m(4x4) + for (int row = 0; row < R.rows; row++) { + for (int col = 0; col < R.cols; col++) { + T(row, col) = R(row, col); + } + } + } + + // explanation for the matrix multiplication is for the 3D cube scenario, applies for all of the objects + // where matrix rows for the transformed image and the projected image are set according to the specific 3d object + + // matrix mul cube_matirx(8x4) * transformation_matrix(4x4) = transformed_cube(8x4) + transformed_image = matrix_3d * T; + // matrix mul transformed_cube(8x4) * perspective_matrix(4x4) = projected_cube(8x4) + projected_image = transformed_image * perspective_matrix; + display_3d_image(projected_image); +} + +/** + * @brief Kalman filter RTOS task (or ESP timer callback) + * + * Takes IMU sensors measurements to be processed by the Kalman filter + * Function is used as: + * RTOS task - during normal Kalman filter operation + * ESP Timer callback function - during Kalman filter calibration process + * + * @param arg: pointer to RTOS task arguments, 3d image structure in this case + */ +static void kalman_filter_task(void *arg) +{ + mpu6050_acce_value_t acce_sample; + mpu6050_gyro_value_t gyro_sample; + mag3110_result_t mag_sample; + + image_3d_matrix_kalman_t *kalman_filter_args = (image_3d_matrix_kalman_t *)arg; + ekf_imu13states *ekf13 = kalman_filter_args->ekf13; + dspm::Mat transformed_image(kalman_filter_args->matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat projected_image(kalman_filter_args->matrix_len, MATRIX_SIZE); // 3D image matrix after projection + dspm::Mat matrix_3d((float *)kalman_filter_args->matrix[0], kalman_filter_args->matrix_len, MATRIX_SIZE); + + // Covariance matrix for Kalman filter, set specifically for this development board IMU sensors + float R_m[10] = {0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.000001, 0.000001, 0.000001, 0.000001}; + update_perspective_matrix(perspective_matrix, 90); + + while (1) { + // dt calculation + static float prev_time = 0; + const float current_time = xthal_get_ccount(); + float dt = 0; + + // Crystal count difference conversion to Dt time constant + if (current_time > prev_time) { + dt = current_time - prev_time; + dt = dt / 240000000.0; + } + prev_time = current_time; + + // Get all the sensors values + mpu6050_get_acce(mpu6050_dev, &acce_sample); + mpu6050_get_gyro(mpu6050_dev, &gyro_sample); + mag3110_get_magnetic_induction(mag3110_dev, &mag_sample); + + // Make arrays from the sensors values + float gyro_input_arr[3] = {gyro_sample.gyro_x, gyro_sample.gyro_y, gyro_sample.gyro_z}; + float accel_input_arr[3] = {acce_sample.acce_x, acce_sample.acce_y, acce_sample.acce_z}; + float mag_input_arr[3] = {(float)mag_sample.x, (float)mag_sample.y, (float)mag_sample.z}; + + // Accel and Mag data to Mat class + dspm::Mat gyro_input_mat(gyro_input_arr, 3, 1); + dspm::Mat accel_input_mat(accel_input_arr, 3, 1); + dspm::Mat mag_input_mat(mag_input_arr, 3, 1); + + // Normalize vectors + dspm::Mat accel_norm = accel_input_mat / accel_input_mat.norm(); + dspm::Mat magn_norm = mag_input_mat / mag_input_mat.norm(); + gyro_input_mat *= DEG_TO_RAD; + + ekf13->Process(gyro_input_mat.data, dt); + ekf13->UpdateRefMeasurementMagn(accel_norm.data, magn_norm.data, R_m); + + if (kalman_filter_calibrated) { + // Use the function as RTOS task for the filter calculation + draw_3d_image(ekf13, transformed_image, projected_image, matrix_3d); + vTaskDelay(20 / portTICK_PERIOD_MS); + } else { + // Use the function as a callback for kalman_filter_calibration_timer + break; + } + } +} + +/** + * @brief Kalman filter calibration procedure + * + * The Kalman filter must be calibrated before the very first run. The state of the Kalman filter is saved + * into NVS after the calibration. + * The calibration is run, only if no Kalman filter state is saved in the NVS. Which occurs after erasing + * the flash memory. Power cycling the board does not remove the Kalman filter state from the NVS. + * + * @param image: pointer to 3d image structure + */ +static void kalman_filter_calibration(image_3d_matrix_kalman_t *image) +{ + ekf_imu13states *ekf13 = image->ekf13; + esp_err_t ret; + nvs_handle_t nvs_handle_kalman; + size_t state_vectors_size = 13 * 14; + float *state_vectors = (float *)malloc(state_vectors_size * sizeof(float)); + + ret = nvs_open(STORAGE_NAMESPACE, NVS_READWRITE, &nvs_handle_kalman); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) opening NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + // Read previously saved blob, if available + size_t required_size = 0; // value will default to 0, if not set yet in NVS + ret = nvs_get_blob(nvs_handle_kalman, "state_vectors", NULL, &required_size); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) reading data from NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + if (required_size > 0) { + ESP_LOGI("Kalman filter demo", "Filter state vectors present in the NVS"); + ESP_LOGI("Kalman filter demo", "Loading state vectors into the filter structure"); + + size_t state_vectors_size_addr = state_vectors_size * sizeof(float); + ret = nvs_get_blob(nvs_handle_kalman, "state_vectors", state_vectors, &state_vectors_size_addr); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) reading data from NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + ekf13->P.data[i] = state_vectors[i]; + } else { + ekf13->X.data[i - (state_vectors_size - 13)] = state_vectors[i]; + } + } + + ESP_LOGI("Kalman filter demo", "State vectors loaded from the NVS"); + nvs_close(nvs_handle_kalman); + + } else { + ESP_LOGI("Kalman filter demo", "Filter state vectors not present in the NVS"); + const float kalman_timer_period_us = 100000; + + // ESP timer for the Kalman filter calibration + const esp_timer_create_args_t kalman_calibration_timer_config = { + .callback = kalman_filter_task, + .arg = image, + .dispatch_method = ESP_TIMER_TASK, + .name = "kalman_filter_calibration_timer", +#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 3, 0) + .skip_unhandled_events = true, +#endif + }; + + esp_timer_handle_t kalman_calibration_timer = NULL; + ret = esp_timer_create(&kalman_calibration_timer_config, &kalman_calibration_timer); + assert(ESP_OK == ret); + ssd1306_clear_screen(ssd1306_dev, 0x00); + + ESP_LOGI("Kalman filter demo", "Starting Kalman filter calibration loop"); + + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_draw_string(ssd1306_dev, 0, 16, (const uint8_t *)"Kalman filter", 16, 1); + ssd1306_draw_string(ssd1306_dev, 0, 32, (const uint8_t *)"calibration", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + + ret = esp_timer_start_periodic(kalman_calibration_timer, kalman_timer_period_us); + assert(ESP_OK == ret); + vTaskDelay(100000 / portTICK_PERIOD_MS); + + ret = esp_timer_stop(kalman_calibration_timer); + assert(ESP_OK == ret); + ret = esp_timer_delete(kalman_calibration_timer); + assert(ESP_OK == ret); + ESP_LOGI("Kalman filter demo", "Exiting Kalman filter calibration loop"); + ssd1306_draw_string(ssd1306_dev, 0, 48, (const uint8_t *)"Done!", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(100 / portTICK_PERIOD_MS); + + dspm::Mat estimated_error(&ekf13->X.data[4], 3, 1); + + ESP_LOGI("Kalman filter demo", "Estimated gyroscope bias error [deg/sec]: %.6f\t%.6f\t%.6f", + estimated_error.data[0], estimated_error.data[1], estimated_error.data[2]); + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + state_vectors[i] = ekf13->P.data[i]; + } else { + state_vectors[i] = ekf13->X.data[i - (state_vectors_size - 13)]; + } + } + + ret = nvs_set_blob(nvs_handle_kalman, "state_vectors", state_vectors, state_vectors_size * sizeof(float)); + assert(ESP_OK == ret); + ret = nvs_commit(nvs_handle_kalman); + assert(ESP_OK == ret); + nvs_close(nvs_handle_kalman); + ESP_LOGI("Kalman filter demo", "State vectors saved to the NVS"); + } + // Set the initial state of the X vector + ekf13->X(0, 0) = 1; + ekf13->X(0, 1) = 0; + ekf13->X(0, 2) = 0; + ekf13->X(0, 3) = 0; + free(state_vectors); + kalman_filter_calibrated = true; +} + +/** + * @brief RTOS task to periodically save the filter state + * + * The Kalman filter state is periodically saved into the NVS, each 5 min. So a recent Kalman filter state + * could be loaded into the Kalman filter object after a power cycle. + * + * @param arg: pointer to RTOS task arguments, Kalman filter object in this case + */ +static void save_state_vectors_task(void *arg) +{ + esp_err_t ret; + size_t state_vectors_size = 13 * 14; + nvs_handle_t nvs_handle_kalman; + ekf_imu13states *ekf13 = (ekf_imu13states *)arg; + vTaskDelay((60000 * 5) / portTICK_PERIOD_MS); // 5min + + while (1) { + float *state_vectors = (float *)malloc(state_vectors_size * sizeof(float)); + + ret = nvs_open(STORAGE_NAMESPACE, NVS_READWRITE, &nvs_handle_kalman); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) opening NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + state_vectors[i] = ekf13->P.data[i]; + } else { + state_vectors[i] = ekf13->X.data[i - (state_vectors_size - 13)]; + } + } + + ret = nvs_set_blob(nvs_handle_kalman, "state_vectors", state_vectors, state_vectors_size * sizeof(float)); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) writing data to NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + ret = nvs_commit(nvs_handle_kalman); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) commiting data to NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + nvs_close(nvs_handle_kalman); + ESP_LOGI("Kalman filter demo", "State vectors saved to NVS"); + free(state_vectors); + vTaskDelay((60000 * 5) / portTICK_PERIOD_MS); // Save the State vectors each 5 min + } +} + +/** + * @brief ROTS task to read a pressure + * + * Pressure is measured periodically to better average out a stable value of pressure + * + * @param arg: pointer to RTOS task arguments, pointer to the pressure variable in this case + */ +static void get_pressure_task(void *arg) +{ + int32_t real_p, real_t; + float *pressure_ptr = (float *)arg; + float pressure_global = *pressure_ptr; + + int call_count = 0; + int call_count1 = 0; + float pressure_initial = pressure_global; + float last_pressure = pressure_global; + float baro_image = pressure_global; + bool changed = false; + + while (1) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure_global = (0.999 * pressure_global) + (0.001 * ((float)real_p) / 1000.0); + call_count1++; + } + + if (board_inactive) { + pressure_initial = pressure_global; + last_pressure = pressure_global; + baro_image = pressure_global; + } else { + call_count++; + if (fabs(pressure_global - last_pressure) > 0.0005) { // cahnge more than 0.5 Pa + last_pressure = pressure_global; + baro_image = (0.9 * baro_image) + (0.1 * last_pressure); + changed = true; + } + + if ((!(call_count % 10)) && changed) { + float fov = 90 + (1000.0 * ((float)(pressure_initial - baro_image))); + update_perspective_matrix(perspective_matrix, fov); + changed = false; + } + } + vTaskDelay(100 / portTICK_PERIOD_MS); + } +} + +/** + * @brief read the initial value of pressure + */ +float get_initial_pressure(void) +{ + float pressure; + int32_t real_p, real_t; + int averagning_loop_count = 500; + + ESP_LOGI("Barometer", "Averagining initial barometer pressure"); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_draw_string(ssd1306_dev, 0, 16, (const uint8_t *)"Barometer", 16, 1); + ssd1306_draw_string(ssd1306_dev, 0, 32, (const uint8_t *)"averaging", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + + // take the first pressure measurement + while (1) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure = ((float)real_p) / 1000.0; // pressure in kPa + break; + } + } + + // average first N measurements + while (averagning_loop_count--) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure = (0.999 * pressure) + (0.001 * ((float)real_p) / 1000.0); + vTaskDelay(100 / portTICK_PERIOD_MS); + } + } + + ESP_LOGI("Barometer", "Initial value set"); + ssd1306_draw_string(ssd1306_dev, 0, 48, (const uint8_t *)"Done!", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + return (pressure); +} + +void app_main(void) +{ + image_3d_matrix_kalman_t image; + ekf_imu13states *ekf13 = new ekf_imu13states(); + ekf13->Init(); + + // Init all board components + bsp_i2c_init(); + app_ssd1306_init(); // display init + mpu6050_init(); // gyro, acc init + app_mag3110_init(); // magnetometer init + app_fbm320_init(); // barometer init + bsp_leds_init(); // LEDs init + init_nvs_flash_memory(); // Non-Volatile Storage + + init_perspective_matrix(perspective_matrix); + init_3d_matrix_struct(&image, ekf13); + kalman_filter_calibration(&image); + + // Use a barometer for measuring the altitude + if (USE_BAROMETER) { + float init_pressure = get_initial_pressure(); + xTaskCreate(get_pressure_task, "get_pressure_task", 2048 * 4, &init_pressure, 4, NULL); + } else { + ESP_LOGI("Barometer", "disabled"); + } + + xTaskCreate(kalman_filter_task, "kalman_filter_task", 2048 * 4, &image, 5, NULL); + xTaskCreate(save_state_vectors_task, "save_state_vectors", 2048, ekf13, 6, NULL); + + while (1) { + vTaskDelay(10000 / portTICK_PERIOD_MS); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/.gitignore b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/.gitignore new file mode 100644 index 0000000..4d06cd1 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/.gitignore @@ -0,0 +1,3 @@ +img_to_3d_matrix/converted_image/** +img_to_3d_matrix/example/*.c +img_to_3d_matrix/example/*.h \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/cube_matrix.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/cube_matrix.h new file mode 100644 index 0000000..bb72305 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/cube_matrix.h @@ -0,0 +1,51 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include +#include "graphics_support.h" +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +#define CUBE_POINTS 8 +#define CUBE_EDGES 12 +#define CUBE_SIDE (SSD1606_Y_CENTER / 2) + +// X Y Z coordinates of the cube centered to (0, 0, 0) +const float cube_vectors_3d[CUBE_POINTS][MATRIX_SIZE] = + // X Y Z W +{ {-CUBE_SIDE, -CUBE_SIDE, -CUBE_SIDE, 1}, // -1, -1, -1 + {-CUBE_SIDE, -CUBE_SIDE, CUBE_SIDE, 1}, // -1, -1, 1 + {-CUBE_SIDE, CUBE_SIDE, -CUBE_SIDE, 1}, // -1, 1, -1 + {-CUBE_SIDE, CUBE_SIDE, CUBE_SIDE, 1}, // -1, 1, 1 + { CUBE_SIDE, -CUBE_SIDE, -CUBE_SIDE, 1}, // 1, -1, -1 + { CUBE_SIDE, -CUBE_SIDE, CUBE_SIDE, 1}, // 1, -1, 1 + { CUBE_SIDE, CUBE_SIDE, -CUBE_SIDE, 1}, // 1, 1, -1 + { CUBE_SIDE, CUBE_SIDE, CUBE_SIDE, 1} // 1, 1, 1 +}; + +// Dictionary for 3d cube edges displaying +// Cube edges cube_vectors_3d[3] <-> cube_vectors_3d[1] +// cube_vectors_3d[3] <-> cube_vectors_3d[7] +// cube_vectors_3d[5] <-> cube_vectors_3d[7] +// cube_vectors_3d[5] <-> cube_vectors_3d[1].... +const uint8_t cube_dict_line_begin[CUBE_EDGES] = {3, 3, 5, 5, 2, 2, 4, 4, 3, 7, 1, 5}; +const uint8_t cube_dict_line_end[CUBE_EDGES] = {1, 7, 7, 1, 0, 6, 6, 0, 2, 6, 0, 4}; + +#ifdef CONFIG_3D_OBJECT_CUBE +#define OBJECT_3D_CUBE 1 +#else +#define OBJECT_3D_CUBE 0 +#endif + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.c new file mode 100644 index 0000000..c8e0dd6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.c @@ -0,0 +1,290 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "esp_logo.h" + +#ifdef CONFIG_3D_OBJECT_ESP_LOGO + +const uint8_t image_bmp_array_esp_logo[512] = { + + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xf0, 0x00, 0x00, + 0x00, 0x00, 0x0f, 0xc0, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x0c, 0x1f, 0xfc, 0x07, 0xfe, 0x00, 0x00, + 0x00, 0x0c, 0x3f, 0xff, 0x03, 0xff, 0x00, 0x00, 0x00, 0x18, 0x7f, 0xff, 0xc0, 0xff, 0xc0, 0x00, + 0x00, 0x38, 0x7f, 0xff, 0xf0, 0x7f, 0xe0, 0x00, 0x00, 0x70, 0x7f, 0xff, 0xf8, 0x3f, 0xe0, 0x00, + 0x00, 0x60, 0x7f, 0xff, 0xfe, 0x0f, 0xf0, 0x00, 0x00, 0xe0, 0x01, 0xff, 0xff, 0x07, 0xf8, 0x00, + 0x00, 0xc0, 0x00, 0x3f, 0xff, 0x83, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x07, 0xff, 0xe1, 0xfc, 0x00, + 0x01, 0x81, 0xfc, 0x01, 0xff, 0xf0, 0xfe, 0x00, 0x01, 0x87, 0xff, 0xc0, 0x7f, 0xf8, 0xfe, 0x00, + 0x03, 0x0f, 0xff, 0xf0, 0x3f, 0xf8, 0x7e, 0x00, 0x03, 0x1f, 0xff, 0xfc, 0x1f, 0xfc, 0x3f, 0x00, + 0x03, 0x1f, 0xff, 0xff, 0x07, 0xfe, 0x1f, 0x00, 0x03, 0x3f, 0xff, 0xff, 0x83, 0xff, 0x1f, 0x00, + 0x06, 0x3f, 0xff, 0xff, 0xc1, 0xff, 0x0f, 0x00, 0x06, 0x3f, 0xff, 0xff, 0xe0, 0xff, 0x8f, 0x80, + 0x06, 0x7f, 0x83, 0xff, 0xf0, 0xff, 0xc7, 0x80, 0x06, 0x7f, 0x80, 0x7f, 0xf8, 0x7f, 0xc7, 0x80, + 0x06, 0x7f, 0xc0, 0x1f, 0xfc, 0x3f, 0xe3, 0x80, 0x06, 0x3f, 0xfc, 0x0f, 0xfe, 0x3f, 0xe3, 0x80, + 0x06, 0x3f, 0xff, 0x07, 0xff, 0x1f, 0xf1, 0x80, 0x06, 0x3f, 0xff, 0xc3, 0xff, 0x0f, 0xf0, 0x00, + 0x06, 0x1f, 0xff, 0xe1, 0xff, 0x8f, 0xf0, 0x00, 0x07, 0x0f, 0xff, 0xf0, 0xff, 0x8f, 0xf8, 0x00, + 0x03, 0x07, 0xff, 0xf8, 0x7f, 0xc7, 0xf8, 0x00, 0x03, 0x01, 0xff, 0xfc, 0x3f, 0xc7, 0xf8, 0x00, + 0x03, 0x00, 0x3f, 0xfe, 0x3f, 0xc7, 0xf8, 0x00, 0x01, 0x80, 0x07, 0xfe, 0x1f, 0xe3, 0xfc, 0x00, + 0x01, 0x80, 0x03, 0xff, 0x1f, 0xe3, 0xfc, 0x00, 0x01, 0xc0, 0x01, 0xff, 0x1f, 0xe3, 0xfc, 0x00, + 0x00, 0xc0, 0x78, 0xff, 0x0f, 0xe3, 0xfc, 0x00, 0x00, 0xe0, 0xfc, 0x7f, 0x8f, 0xf1, 0xf8, 0x00, + 0x00, 0x61, 0xfc, 0x7f, 0x8f, 0xf1, 0xf0, 0x00, 0x00, 0x71, 0xfc, 0x7f, 0x8f, 0xf1, 0xf0, 0x00, + 0x00, 0x39, 0xfc, 0x7f, 0x8f, 0xf1, 0xe0, 0x00, 0x00, 0x19, 0xfc, 0x7f, 0x8f, 0xf0, 0x00, 0x00, + 0x00, 0x1c, 0xf8, 0x7f, 0x8f, 0xf0, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x7f, 0x8f, 0xf0, 0x10, 0x00, + 0x00, 0x07, 0x00, 0x7f, 0x8f, 0xf0, 0x38, 0x00, 0x00, 0x03, 0xc0, 0xff, 0x0f, 0xe0, 0x70, 0x00, + 0x00, 0x01, 0xe0, 0x7f, 0x0f, 0xc0, 0xe0, 0x00, 0x00, 0x00, 0x78, 0x1f, 0x00, 0x03, 0xc0, 0x00, + 0x00, 0x00, 0x3e, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x7e, 0x00, 0x00, + 0x00, 0x00, 0x03, 0xfc, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + +}; + +const float image_3d_matrix_esp_logo[1427][4] = { + + {-2.0, -25.0, 0, 1}, {-1.0, -25.0, 0, 1}, {0.0, -25.0, 0, 1}, {1.0, -25.0, 0, 1}, {2.0, -25.0, 0, 1}, {3.0, -25.0, 0, 1}, + {4.0, -25.0, 0, 1}, {5.0, -25.0, 0, 1}, {6.0, -25.0, 0, 1}, {-2.0, -24.0, 0, 1}, {-1.0, -24.0, 0, 1}, {0.0, -24.0, 0, 1}, + {1.0, -24.0, 0, 1}, {2.0, -24.0, 0, 1}, {3.0, -24.0, 0, 1}, {4.0, -24.0, 0, 1}, {5.0, -24.0, 0, 1}, {6.0, -24.0, 0, 1}, + {7.0, -24.0, 0, 1}, {8.0, -24.0, 0, 1}, {9.0, -24.0, 0, 1}, {1.0, -23.0, 0, 1}, {2.0, -23.0, 0, 1}, {3.0, -23.0, 0, 1}, + {4.0, -23.0, 0, 1}, {5.0, -23.0, 0, 1}, {6.0, -23.0, 0, 1}, {7.0, -23.0, 0, 1}, {8.0, -23.0, 0, 1}, {9.0, -23.0, 0, 1}, + {10.0, -23.0, 0, 1}, {11.0, -23.0, 0, 1}, {-12.0, -22.0, 0, 1}, {-11.0, -22.0, 0, 1}, {-10.0, -22.0, 0, 1}, {-9.0, -22.0, 0, 1}, + {-8.0, -22.0, 0, 1}, {-7.0, -22.0, 0, 1}, {3.0, -22.0, 0, 1}, {4.0, -22.0, 0, 1}, {5.0, -22.0, 0, 1}, {6.0, -22.0, 0, 1}, + {7.0, -22.0, 0, 1}, {8.0, -22.0, 0, 1}, {9.0, -22.0, 0, 1}, {10.0, -22.0, 0, 1}, {11.0, -22.0, 0, 1}, {12.0, -22.0, 0, 1}, + {13.0, -22.0, 0, 1}, {-20.0, -21.0, 0, 1}, {-19.0, -21.0, 0, 1}, {-13.0, -21.0, 0, 1}, {-12.0, -21.0, 0, 1}, {-11.0, -21.0, 0, 1}, + {-10.0, -21.0, 0, 1}, {-9.0, -21.0, 0, 1}, {-8.0, -21.0, 0, 1}, {-7.0, -21.0, 0, 1}, {-6.0, -21.0, 0, 1}, {-5.0, -21.0, 0, 1}, + {-4.0, -21.0, 0, 1}, {-3.0, -21.0, 0, 1}, {5.0, -21.0, 0, 1}, {6.0, -21.0, 0, 1}, {7.0, -21.0, 0, 1}, {8.0, -21.0, 0, 1}, + {9.0, -21.0, 0, 1}, {10.0, -21.0, 0, 1}, {11.0, -21.0, 0, 1}, {12.0, -21.0, 0, 1}, {13.0, -21.0, 0, 1}, {14.0, -21.0, 0, 1}, + {-20.0, -20.0, 0, 1}, {-19.0, -20.0, 0, 1}, {-14.0, -20.0, 0, 1}, {-13.0, -20.0, 0, 1}, {-12.0, -20.0, 0, 1}, {-11.0, -20.0, 0, 1}, + {-10.0, -20.0, 0, 1}, {-9.0, -20.0, 0, 1}, {-8.0, -20.0, 0, 1}, {-7.0, -20.0, 0, 1}, {-6.0, -20.0, 0, 1}, {-5.0, -20.0, 0, 1}, + {-4.0, -20.0, 0, 1}, {-3.0, -20.0, 0, 1}, {-2.0, -20.0, 0, 1}, {-1.0, -20.0, 0, 1}, {6.0, -20.0, 0, 1}, {7.0, -20.0, 0, 1}, + {8.0, -20.0, 0, 1}, {9.0, -20.0, 0, 1}, {10.0, -20.0, 0, 1}, {11.0, -20.0, 0, 1}, {12.0, -20.0, 0, 1}, {13.0, -20.0, 0, 1}, + {14.0, -20.0, 0, 1}, {15.0, -20.0, 0, 1}, {-21.0, -19.0, 0, 1}, {-20.0, -19.0, 0, 1}, {-15.0, -19.0, 0, 1}, {-14.0, -19.0, 0, 1}, + {-13.0, -19.0, 0, 1}, {-12.0, -19.0, 0, 1}, {-11.0, -19.0, 0, 1}, {-10.0, -19.0, 0, 1}, {-9.0, -19.0, 0, 1}, {-8.0, -19.0, 0, 1}, + {-7.0, -19.0, 0, 1}, {-6.0, -19.0, 0, 1}, {-5.0, -19.0, 0, 1}, {-4.0, -19.0, 0, 1}, {-3.0, -19.0, 0, 1}, {-2.0, -19.0, 0, 1}, + {-1.0, -19.0, 0, 1}, {0.0, -19.0, 0, 1}, {1.0, -19.0, 0, 1}, {8.0, -19.0, 0, 1}, {9.0, -19.0, 0, 1}, {10.0, -19.0, 0, 1}, + {11.0, -19.0, 0, 1}, {12.0, -19.0, 0, 1}, {13.0, -19.0, 0, 1}, {14.0, -19.0, 0, 1}, {15.0, -19.0, 0, 1}, {16.0, -19.0, 0, 1}, + {17.0, -19.0, 0, 1}, {-22.0, -18.0, 0, 1}, {-21.0, -18.0, 0, 1}, {-20.0, -18.0, 0, 1}, {-15.0, -18.0, 0, 1}, {-14.0, -18.0, 0, 1}, + {-13.0, -18.0, 0, 1}, {-12.0, -18.0, 0, 1}, {-11.0, -18.0, 0, 1}, {-10.0, -18.0, 0, 1}, {-9.0, -18.0, 0, 1}, {-8.0, -18.0, 0, 1}, + {-7.0, -18.0, 0, 1}, {-6.0, -18.0, 0, 1}, {-5.0, -18.0, 0, 1}, {-4.0, -18.0, 0, 1}, {-3.0, -18.0, 0, 1}, {-2.0, -18.0, 0, 1}, + {-1.0, -18.0, 0, 1}, {0.0, -18.0, 0, 1}, {1.0, -18.0, 0, 1}, {2.0, -18.0, 0, 1}, {3.0, -18.0, 0, 1}, {9.0, -18.0, 0, 1}, + {10.0, -18.0, 0, 1}, {11.0, -18.0, 0, 1}, {12.0, -18.0, 0, 1}, {13.0, -18.0, 0, 1}, {14.0, -18.0, 0, 1}, {15.0, -18.0, 0, 1}, + {16.0, -18.0, 0, 1}, {17.0, -18.0, 0, 1}, {18.0, -18.0, 0, 1}, {-23.0, -17.0, 0, 1}, {-22.0, -17.0, 0, 1}, {-21.0, -17.0, 0, 1}, + {-15.0, -17.0, 0, 1}, {-14.0, -17.0, 0, 1}, {-13.0, -17.0, 0, 1}, {-12.0, -17.0, 0, 1}, {-11.0, -17.0, 0, 1}, {-10.0, -17.0, 0, 1}, + {-9.0, -17.0, 0, 1}, {-8.0, -17.0, 0, 1}, {-7.0, -17.0, 0, 1}, {-6.0, -17.0, 0, 1}, {-5.0, -17.0, 0, 1}, {-4.0, -17.0, 0, 1}, + {-3.0, -17.0, 0, 1}, {-2.0, -17.0, 0, 1}, {-1.0, -17.0, 0, 1}, {0.0, -17.0, 0, 1}, {1.0, -17.0, 0, 1}, {2.0, -17.0, 0, 1}, + {3.0, -17.0, 0, 1}, {4.0, -17.0, 0, 1}, {10.0, -17.0, 0, 1}, {11.0, -17.0, 0, 1}, {12.0, -17.0, 0, 1}, {13.0, -17.0, 0, 1}, + {14.0, -17.0, 0, 1}, {15.0, -17.0, 0, 1}, {16.0, -17.0, 0, 1}, {17.0, -17.0, 0, 1}, {18.0, -17.0, 0, 1}, {-23.0, -16.0, 0, 1}, + {-22.0, -16.0, 0, 1}, {-15.0, -16.0, 0, 1}, {-14.0, -16.0, 0, 1}, {-13.0, -16.0, 0, 1}, {-12.0, -16.0, 0, 1}, {-11.0, -16.0, 0, 1}, + {-10.0, -16.0, 0, 1}, {-9.0, -16.0, 0, 1}, {-8.0, -16.0, 0, 1}, {-7.0, -16.0, 0, 1}, {-6.0, -16.0, 0, 1}, {-5.0, -16.0, 0, 1}, + {-4.0, -16.0, 0, 1}, {-3.0, -16.0, 0, 1}, {-2.0, -16.0, 0, 1}, {-1.0, -16.0, 0, 1}, {0.0, -16.0, 0, 1}, {1.0, -16.0, 0, 1}, + {2.0, -16.0, 0, 1}, {3.0, -16.0, 0, 1}, {4.0, -16.0, 0, 1}, {5.0, -16.0, 0, 1}, {6.0, -16.0, 0, 1}, {12.0, -16.0, 0, 1}, + {13.0, -16.0, 0, 1}, {14.0, -16.0, 0, 1}, {15.0, -16.0, 0, 1}, {16.0, -16.0, 0, 1}, {17.0, -16.0, 0, 1}, {18.0, -16.0, 0, 1}, + {19.0, -16.0, 0, 1}, {-24.0, -15.0, 0, 1}, {-23.0, -15.0, 0, 1}, {-22.0, -15.0, 0, 1}, {-9.0, -15.0, 0, 1}, {-8.0, -15.0, 0, 1}, + {-7.0, -15.0, 0, 1}, {-6.0, -15.0, 0, 1}, {-5.0, -15.0, 0, 1}, {-4.0, -15.0, 0, 1}, {-3.0, -15.0, 0, 1}, {-2.0, -15.0, 0, 1}, + {-1.0, -15.0, 0, 1}, {0.0, -15.0, 0, 1}, {1.0, -15.0, 0, 1}, {2.0, -15.0, 0, 1}, {3.0, -15.0, 0, 1}, {4.0, -15.0, 0, 1}, + {5.0, -15.0, 0, 1}, {6.0, -15.0, 0, 1}, {7.0, -15.0, 0, 1}, {13.0, -15.0, 0, 1}, {14.0, -15.0, 0, 1}, {15.0, -15.0, 0, 1}, + {16.0, -15.0, 0, 1}, {17.0, -15.0, 0, 1}, {18.0, -15.0, 0, 1}, {19.0, -15.0, 0, 1}, {20.0, -15.0, 0, 1}, {-24.0, -14.0, 0, 1}, + {-23.0, -14.0, 0, 1}, {-6.0, -14.0, 0, 1}, {-5.0, -14.0, 0, 1}, {-4.0, -14.0, 0, 1}, {-3.0, -14.0, 0, 1}, {-2.0, -14.0, 0, 1}, + {-1.0, -14.0, 0, 1}, {0.0, -14.0, 0, 1}, {1.0, -14.0, 0, 1}, {2.0, -14.0, 0, 1}, {3.0, -14.0, 0, 1}, {4.0, -14.0, 0, 1}, + {5.0, -14.0, 0, 1}, {6.0, -14.0, 0, 1}, {7.0, -14.0, 0, 1}, {8.0, -14.0, 0, 1}, {14.0, -14.0, 0, 1}, {15.0, -14.0, 0, 1}, + {16.0, -14.0, 0, 1}, {17.0, -14.0, 0, 1}, {18.0, -14.0, 0, 1}, {19.0, -14.0, 0, 1}, {20.0, -14.0, 0, 1}, {21.0, -14.0, 0, 1}, + {-25.0, -13.0, 0, 1}, {-24.0, -13.0, 0, 1}, {-23.0, -13.0, 0, 1}, {-3.0, -13.0, 0, 1}, {-2.0, -13.0, 0, 1}, {-1.0, -13.0, 0, 1}, + {0.0, -13.0, 0, 1}, {1.0, -13.0, 0, 1}, {2.0, -13.0, 0, 1}, {3.0, -13.0, 0, 1}, {4.0, -13.0, 0, 1}, {5.0, -13.0, 0, 1}, + {6.0, -13.0, 0, 1}, {7.0, -13.0, 0, 1}, {8.0, -13.0, 0, 1}, {9.0, -13.0, 0, 1}, {10.0, -13.0, 0, 1}, {15.0, -13.0, 0, 1}, + {16.0, -13.0, 0, 1}, {17.0, -13.0, 0, 1}, {18.0, -13.0, 0, 1}, {19.0, -13.0, 0, 1}, {20.0, -13.0, 0, 1}, {21.0, -13.0, 0, 1}, + {-25.0, -12.0, 0, 1}, {-24.0, -12.0, 0, 1}, {-17.0, -12.0, 0, 1}, {-16.0, -12.0, 0, 1}, {-15.0, -12.0, 0, 1}, {-14.0, -12.0, 0, 1}, + {-13.0, -12.0, 0, 1}, {-12.0, -12.0, 0, 1}, {-11.0, -12.0, 0, 1}, {-1.0, -12.0, 0, 1}, {0.0, -12.0, 0, 1}, {1.0, -12.0, 0, 1}, + {2.0, -12.0, 0, 1}, {3.0, -12.0, 0, 1}, {4.0, -12.0, 0, 1}, {5.0, -12.0, 0, 1}, {6.0, -12.0, 0, 1}, {7.0, -12.0, 0, 1}, + {8.0, -12.0, 0, 1}, {9.0, -12.0, 0, 1}, {10.0, -12.0, 0, 1}, {11.0, -12.0, 0, 1}, {16.0, -12.0, 0, 1}, {17.0, -12.0, 0, 1}, + {18.0, -12.0, 0, 1}, {19.0, -12.0, 0, 1}, {20.0, -12.0, 0, 1}, {21.0, -12.0, 0, 1}, {22.0, -12.0, 0, 1}, {-25.0, -11.0, 0, 1}, + {-24.0, -11.0, 0, 1}, {-19.0, -11.0, 0, 1}, {-18.0, -11.0, 0, 1}, {-17.0, -11.0, 0, 1}, {-16.0, -11.0, 0, 1}, {-15.0, -11.0, 0, 1}, + {-14.0, -11.0, 0, 1}, {-13.0, -11.0, 0, 1}, {-12.0, -11.0, 0, 1}, {-11.0, -11.0, 0, 1}, {-10.0, -11.0, 0, 1}, {-9.0, -11.0, 0, 1}, + {-8.0, -11.0, 0, 1}, {-7.0, -11.0, 0, 1}, {1.0, -11.0, 0, 1}, {2.0, -11.0, 0, 1}, {3.0, -11.0, 0, 1}, {4.0, -11.0, 0, 1}, + {5.0, -11.0, 0, 1}, {6.0, -11.0, 0, 1}, {7.0, -11.0, 0, 1}, {8.0, -11.0, 0, 1}, {9.0, -11.0, 0, 1}, {10.0, -11.0, 0, 1}, + {11.0, -11.0, 0, 1}, {12.0, -11.0, 0, 1}, {16.0, -11.0, 0, 1}, {17.0, -11.0, 0, 1}, {18.0, -11.0, 0, 1}, {19.0, -11.0, 0, 1}, + {20.0, -11.0, 0, 1}, {21.0, -11.0, 0, 1}, {22.0, -11.0, 0, 1}, {-26.0, -10.0, 0, 1}, {-25.0, -10.0, 0, 1}, {-20.0, -10.0, 0, 1}, + {-19.0, -10.0, 0, 1}, {-18.0, -10.0, 0, 1}, {-17.0, -10.0, 0, 1}, {-16.0, -10.0, 0, 1}, {-15.0, -10.0, 0, 1}, {-14.0, -10.0, 0, 1}, + {-13.0, -10.0, 0, 1}, {-12.0, -10.0, 0, 1}, {-11.0, -10.0, 0, 1}, {-10.0, -10.0, 0, 1}, {-9.0, -10.0, 0, 1}, {-8.0, -10.0, 0, 1}, + {-7.0, -10.0, 0, 1}, {-6.0, -10.0, 0, 1}, {-5.0, -10.0, 0, 1}, {2.0, -10.0, 0, 1}, {3.0, -10.0, 0, 1}, {4.0, -10.0, 0, 1}, + {5.0, -10.0, 0, 1}, {6.0, -10.0, 0, 1}, {7.0, -10.0, 0, 1}, {8.0, -10.0, 0, 1}, {9.0, -10.0, 0, 1}, {10.0, -10.0, 0, 1}, + {11.0, -10.0, 0, 1}, {12.0, -10.0, 0, 1}, {17.0, -10.0, 0, 1}, {18.0, -10.0, 0, 1}, {19.0, -10.0, 0, 1}, {20.0, -10.0, 0, 1}, + {21.0, -10.0, 0, 1}, {22.0, -10.0, 0, 1}, {-26.0, -9.0, 0, 1}, {-25.0, -9.0, 0, 1}, {-21.0, -9.0, 0, 1}, {-20.0, -9.0, 0, 1}, + {-19.0, -9.0, 0, 1}, {-18.0, -9.0, 0, 1}, {-17.0, -9.0, 0, 1}, {-16.0, -9.0, 0, 1}, {-15.0, -9.0, 0, 1}, {-14.0, -9.0, 0, 1}, + {-13.0, -9.0, 0, 1}, {-12.0, -9.0, 0, 1}, {-11.0, -9.0, 0, 1}, {-10.0, -9.0, 0, 1}, {-9.0, -9.0, 0, 1}, {-8.0, -9.0, 0, 1}, + {-7.0, -9.0, 0, 1}, {-6.0, -9.0, 0, 1}, {-5.0, -9.0, 0, 1}, {-4.0, -9.0, 0, 1}, {-3.0, -9.0, 0, 1}, {3.0, -9.0, 0, 1}, + {4.0, -9.0, 0, 1}, {5.0, -9.0, 0, 1}, {6.0, -9.0, 0, 1}, {7.0, -9.0, 0, 1}, {8.0, -9.0, 0, 1}, {9.0, -9.0, 0, 1}, + {10.0, -9.0, 0, 1}, {11.0, -9.0, 0, 1}, {12.0, -9.0, 0, 1}, {13.0, -9.0, 0, 1}, {18.0, -9.0, 0, 1}, {19.0, -9.0, 0, 1}, + {20.0, -9.0, 0, 1}, {21.0, -9.0, 0, 1}, {22.0, -9.0, 0, 1}, {23.0, -9.0, 0, 1}, {-26.0, -8.0, 0, 1}, {-25.0, -8.0, 0, 1}, + {-21.0, -8.0, 0, 1}, {-20.0, -8.0, 0, 1}, {-19.0, -8.0, 0, 1}, {-18.0, -8.0, 0, 1}, {-17.0, -8.0, 0, 1}, {-16.0, -8.0, 0, 1}, + {-15.0, -8.0, 0, 1}, {-14.0, -8.0, 0, 1}, {-13.0, -8.0, 0, 1}, {-12.0, -8.0, 0, 1}, {-11.0, -8.0, 0, 1}, {-10.0, -8.0, 0, 1}, + {-9.0, -8.0, 0, 1}, {-8.0, -8.0, 0, 1}, {-7.0, -8.0, 0, 1}, {-6.0, -8.0, 0, 1}, {-5.0, -8.0, 0, 1}, {-4.0, -8.0, 0, 1}, + {-3.0, -8.0, 0, 1}, {-2.0, -8.0, 0, 1}, {-1.0, -8.0, 0, 1}, {5.0, -8.0, 0, 1}, {6.0, -8.0, 0, 1}, {7.0, -8.0, 0, 1}, + {8.0, -8.0, 0, 1}, {9.0, -8.0, 0, 1}, {10.0, -8.0, 0, 1}, {11.0, -8.0, 0, 1}, {12.0, -8.0, 0, 1}, {13.0, -8.0, 0, 1}, + {14.0, -8.0, 0, 1}, {19.0, -8.0, 0, 1}, {20.0, -8.0, 0, 1}, {21.0, -8.0, 0, 1}, {22.0, -8.0, 0, 1}, {23.0, -8.0, 0, 1}, + {-26.0, -7.0, 0, 1}, {-25.0, -7.0, 0, 1}, {-22.0, -7.0, 0, 1}, {-21.0, -7.0, 0, 1}, {-20.0, -7.0, 0, 1}, {-19.0, -7.0, 0, 1}, + {-18.0, -7.0, 0, 1}, {-17.0, -7.0, 0, 1}, {-16.0, -7.0, 0, 1}, {-15.0, -7.0, 0, 1}, {-14.0, -7.0, 0, 1}, {-13.0, -7.0, 0, 1}, + {-12.0, -7.0, 0, 1}, {-11.0, -7.0, 0, 1}, {-10.0, -7.0, 0, 1}, {-9.0, -7.0, 0, 1}, {-8.0, -7.0, 0, 1}, {-7.0, -7.0, 0, 1}, + {-6.0, -7.0, 0, 1}, {-5.0, -7.0, 0, 1}, {-4.0, -7.0, 0, 1}, {-3.0, -7.0, 0, 1}, {-2.0, -7.0, 0, 1}, {-1.0, -7.0, 0, 1}, + {0.0, -7.0, 0, 1}, {6.0, -7.0, 0, 1}, {7.0, -7.0, 0, 1}, {8.0, -7.0, 0, 1}, {9.0, -7.0, 0, 1}, {10.0, -7.0, 0, 1}, + {11.0, -7.0, 0, 1}, {12.0, -7.0, 0, 1}, {13.0, -7.0, 0, 1}, {14.0, -7.0, 0, 1}, {15.0, -7.0, 0, 1}, {19.0, -7.0, 0, 1}, + {20.0, -7.0, 0, 1}, {21.0, -7.0, 0, 1}, {22.0, -7.0, 0, 1}, {23.0, -7.0, 0, 1}, {-27.0, -6.0, 0, 1}, {-26.0, -6.0, 0, 1}, + {-22.0, -6.0, 0, 1}, {-21.0, -6.0, 0, 1}, {-20.0, -6.0, 0, 1}, {-19.0, -6.0, 0, 1}, {-18.0, -6.0, 0, 1}, {-17.0, -6.0, 0, 1}, + {-16.0, -6.0, 0, 1}, {-15.0, -6.0, 0, 1}, {-14.0, -6.0, 0, 1}, {-13.0, -6.0, 0, 1}, {-12.0, -6.0, 0, 1}, {-11.0, -6.0, 0, 1}, + {-10.0, -6.0, 0, 1}, {-9.0, -6.0, 0, 1}, {-8.0, -6.0, 0, 1}, {-7.0, -6.0, 0, 1}, {-6.0, -6.0, 0, 1}, {-5.0, -6.0, 0, 1}, + {-4.0, -6.0, 0, 1}, {-3.0, -6.0, 0, 1}, {-2.0, -6.0, 0, 1}, {-1.0, -6.0, 0, 1}, {0.0, -6.0, 0, 1}, {1.0, -6.0, 0, 1}, + {7.0, -6.0, 0, 1}, {8.0, -6.0, 0, 1}, {9.0, -6.0, 0, 1}, {10.0, -6.0, 0, 1}, {11.0, -6.0, 0, 1}, {12.0, -6.0, 0, 1}, + {13.0, -6.0, 0, 1}, {14.0, -6.0, 0, 1}, {15.0, -6.0, 0, 1}, {20.0, -6.0, 0, 1}, {21.0, -6.0, 0, 1}, {22.0, -6.0, 0, 1}, + {23.0, -6.0, 0, 1}, {-27.0, -5.0, 0, 1}, {-26.0, -5.0, 0, 1}, {-22.0, -5.0, 0, 1}, {-21.0, -5.0, 0, 1}, {-20.0, -5.0, 0, 1}, + {-19.0, -5.0, 0, 1}, {-18.0, -5.0, 0, 1}, {-17.0, -5.0, 0, 1}, {-16.0, -5.0, 0, 1}, {-15.0, -5.0, 0, 1}, {-14.0, -5.0, 0, 1}, + {-13.0, -5.0, 0, 1}, {-12.0, -5.0, 0, 1}, {-11.0, -5.0, 0, 1}, {-10.0, -5.0, 0, 1}, {-9.0, -5.0, 0, 1}, {-8.0, -5.0, 0, 1}, + {-7.0, -5.0, 0, 1}, {-6.0, -5.0, 0, 1}, {-5.0, -5.0, 0, 1}, {-4.0, -5.0, 0, 1}, {-3.0, -5.0, 0, 1}, {-2.0, -5.0, 0, 1}, + {-1.0, -5.0, 0, 1}, {0.0, -5.0, 0, 1}, {1.0, -5.0, 0, 1}, {2.0, -5.0, 0, 1}, {8.0, -5.0, 0, 1}, {9.0, -5.0, 0, 1}, + {10.0, -5.0, 0, 1}, {11.0, -5.0, 0, 1}, {12.0, -5.0, 0, 1}, {13.0, -5.0, 0, 1}, {14.0, -5.0, 0, 1}, {15.0, -5.0, 0, 1}, + {16.0, -5.0, 0, 1}, {20.0, -5.0, 0, 1}, {21.0, -5.0, 0, 1}, {22.0, -5.0, 0, 1}, {23.0, -5.0, 0, 1}, {24.0, -5.0, 0, 1}, + {-27.0, -4.0, 0, 1}, {-26.0, -4.0, 0, 1}, {-23.0, -4.0, 0, 1}, {-22.0, -4.0, 0, 1}, {-21.0, -4.0, 0, 1}, {-20.0, -4.0, 0, 1}, + {-19.0, -4.0, 0, 1}, {-18.0, -4.0, 0, 1}, {-17.0, -4.0, 0, 1}, {-16.0, -4.0, 0, 1}, {-10.0, -4.0, 0, 1}, {-9.0, -4.0, 0, 1}, + {-8.0, -4.0, 0, 1}, {-7.0, -4.0, 0, 1}, {-6.0, -4.0, 0, 1}, {-5.0, -4.0, 0, 1}, {-4.0, -4.0, 0, 1}, {-3.0, -4.0, 0, 1}, + {-2.0, -4.0, 0, 1}, {-1.0, -4.0, 0, 1}, {0.0, -4.0, 0, 1}, {1.0, -4.0, 0, 1}, {2.0, -4.0, 0, 1}, {3.0, -4.0, 0, 1}, + {8.0, -4.0, 0, 1}, {9.0, -4.0, 0, 1}, {10.0, -4.0, 0, 1}, {11.0, -4.0, 0, 1}, {12.0, -4.0, 0, 1}, {13.0, -4.0, 0, 1}, + {14.0, -4.0, 0, 1}, {15.0, -4.0, 0, 1}, {16.0, -4.0, 0, 1}, {17.0, -4.0, 0, 1}, {21.0, -4.0, 0, 1}, {22.0, -4.0, 0, 1}, + {23.0, -4.0, 0, 1}, {24.0, -4.0, 0, 1}, {-27.0, -3.0, 0, 1}, {-26.0, -3.0, 0, 1}, {-23.0, -3.0, 0, 1}, {-22.0, -3.0, 0, 1}, + {-21.0, -3.0, 0, 1}, {-20.0, -3.0, 0, 1}, {-19.0, -3.0, 0, 1}, {-18.0, -3.0, 0, 1}, {-17.0, -3.0, 0, 1}, {-16.0, -3.0, 0, 1}, + {-7.0, -3.0, 0, 1}, {-6.0, -3.0, 0, 1}, {-5.0, -3.0, 0, 1}, {-4.0, -3.0, 0, 1}, {-3.0, -3.0, 0, 1}, {-2.0, -3.0, 0, 1}, + {-1.0, -3.0, 0, 1}, {0.0, -3.0, 0, 1}, {1.0, -3.0, 0, 1}, {2.0, -3.0, 0, 1}, {3.0, -3.0, 0, 1}, {4.0, -3.0, 0, 1}, + {9.0, -3.0, 0, 1}, {10.0, -3.0, 0, 1}, {11.0, -3.0, 0, 1}, {12.0, -3.0, 0, 1}, {13.0, -3.0, 0, 1}, {14.0, -3.0, 0, 1}, + {15.0, -3.0, 0, 1}, {16.0, -3.0, 0, 1}, {17.0, -3.0, 0, 1}, {21.0, -3.0, 0, 1}, {22.0, -3.0, 0, 1}, {23.0, -3.0, 0, 1}, + {24.0, -3.0, 0, 1}, {-27.0, -2.0, 0, 1}, {-26.0, -2.0, 0, 1}, {-23.0, -2.0, 0, 1}, {-22.0, -2.0, 0, 1}, {-21.0, -2.0, 0, 1}, + {-20.0, -2.0, 0, 1}, {-19.0, -2.0, 0, 1}, {-18.0, -2.0, 0, 1}, {-17.0, -2.0, 0, 1}, {-16.0, -2.0, 0, 1}, {-15.0, -2.0, 0, 1}, + {-5.0, -2.0, 0, 1}, {-4.0, -2.0, 0, 1}, {-3.0, -2.0, 0, 1}, {-2.0, -2.0, 0, 1}, {-1.0, -2.0, 0, 1}, {0.0, -2.0, 0, 1}, + {1.0, -2.0, 0, 1}, {2.0, -2.0, 0, 1}, {3.0, -2.0, 0, 1}, {4.0, -2.0, 0, 1}, {5.0, -2.0, 0, 1}, {10.0, -2.0, 0, 1}, + {11.0, -2.0, 0, 1}, {12.0, -2.0, 0, 1}, {13.0, -2.0, 0, 1}, {14.0, -2.0, 0, 1}, {15.0, -2.0, 0, 1}, {16.0, -2.0, 0, 1}, + {17.0, -2.0, 0, 1}, {18.0, -2.0, 0, 1}, {22.0, -2.0, 0, 1}, {23.0, -2.0, 0, 1}, {24.0, -2.0, 0, 1}, {-27.0, -1.0, 0, 1}, + {-26.0, -1.0, 0, 1}, {-22.0, -1.0, 0, 1}, {-21.0, -1.0, 0, 1}, {-20.0, -1.0, 0, 1}, {-19.0, -1.0, 0, 1}, {-18.0, -1.0, 0, 1}, + {-17.0, -1.0, 0, 1}, {-16.0, -1.0, 0, 1}, {-15.0, -1.0, 0, 1}, {-14.0, -1.0, 0, 1}, {-13.0, -1.0, 0, 1}, {-12.0, -1.0, 0, 1}, + {-11.0, -1.0, 0, 1}, {-4.0, -1.0, 0, 1}, {-3.0, -1.0, 0, 1}, {-2.0, -1.0, 0, 1}, {-1.0, -1.0, 0, 1}, {0.0, -1.0, 0, 1}, + {1.0, -1.0, 0, 1}, {2.0, -1.0, 0, 1}, {3.0, -1.0, 0, 1}, {4.0, -1.0, 0, 1}, {5.0, -1.0, 0, 1}, {6.0, -1.0, 0, 1}, + {10.0, -1.0, 0, 1}, {11.0, -1.0, 0, 1}, {12.0, -1.0, 0, 1}, {13.0, -1.0, 0, 1}, {14.0, -1.0, 0, 1}, {15.0, -1.0, 0, 1}, + {16.0, -1.0, 0, 1}, {17.0, -1.0, 0, 1}, {18.0, -1.0, 0, 1}, {22.0, -1.0, 0, 1}, {23.0, -1.0, 0, 1}, {24.0, -1.0, 0, 1}, + {-27.0, 0.0, 0, 1}, {-26.0, 0.0, 0, 1}, {-22.0, 0.0, 0, 1}, {-21.0, 0.0, 0, 1}, {-20.0, 0.0, 0, 1}, {-19.0, 0.0, 0, 1}, + {-18.0, 0.0, 0, 1}, {-17.0, 0.0, 0, 1}, {-16.0, 0.0, 0, 1}, {-15.0, 0.0, 0, 1}, {-14.0, 0.0, 0, 1}, {-13.0, 0.0, 0, 1}, + {-12.0, 0.0, 0, 1}, {-11.0, 0.0, 0, 1}, {-10.0, 0.0, 0, 1}, {-9.0, 0.0, 0, 1}, {-3.0, 0.0, 0, 1}, {-2.0, 0.0, 0, 1}, + {-1.0, 0.0, 0, 1}, {0.0, 0.0, 0, 1}, {1.0, 0.0, 0, 1}, {2.0, 0.0, 0, 1}, {3.0, 0.0, 0, 1}, {4.0, 0.0, 0, 1}, + {5.0, 0.0, 0, 1}, {6.0, 0.0, 0, 1}, {7.0, 0.0, 0, 1}, {11.0, 0.0, 0, 1}, {12.0, 0.0, 0, 1}, {13.0, 0.0, 0, 1}, + {14.0, 0.0, 0, 1}, {15.0, 0.0, 0, 1}, {16.0, 0.0, 0, 1}, {17.0, 0.0, 0, 1}, {18.0, 0.0, 0, 1}, {19.0, 0.0, 0, 1}, + {23.0, 0.0, 0, 1}, {24.0, 0.0, 0, 1}, {-27.0, 1.0, 0, 1}, {-26.0, 1.0, 0, 1}, {-22.0, 1.0, 0, 1}, {-21.0, 1.0, 0, 1}, + {-20.0, 1.0, 0, 1}, {-19.0, 1.0, 0, 1}, {-18.0, 1.0, 0, 1}, {-17.0, 1.0, 0, 1}, {-16.0, 1.0, 0, 1}, {-15.0, 1.0, 0, 1}, + {-14.0, 1.0, 0, 1}, {-13.0, 1.0, 0, 1}, {-12.0, 1.0, 0, 1}, {-11.0, 1.0, 0, 1}, {-10.0, 1.0, 0, 1}, {-9.0, 1.0, 0, 1}, + {-8.0, 1.0, 0, 1}, {-7.0, 1.0, 0, 1}, {-2.0, 1.0, 0, 1}, {-1.0, 1.0, 0, 1}, {0.0, 1.0, 0, 1}, {1.0, 1.0, 0, 1}, + {2.0, 1.0, 0, 1}, {3.0, 1.0, 0, 1}, {4.0, 1.0, 0, 1}, {5.0, 1.0, 0, 1}, {6.0, 1.0, 0, 1}, {7.0, 1.0, 0, 1}, + {12.0, 1.0, 0, 1}, {13.0, 1.0, 0, 1}, {14.0, 1.0, 0, 1}, {15.0, 1.0, 0, 1}, {16.0, 1.0, 0, 1}, {17.0, 1.0, 0, 1}, + {18.0, 1.0, 0, 1}, {19.0, 1.0, 0, 1}, {-27.0, 2.0, 0, 1}, {-26.0, 2.0, 0, 1}, {-21.0, 2.0, 0, 1}, {-20.0, 2.0, 0, 1}, + {-19.0, 2.0, 0, 1}, {-18.0, 2.0, 0, 1}, {-17.0, 2.0, 0, 1}, {-16.0, 2.0, 0, 1}, {-15.0, 2.0, 0, 1}, {-14.0, 2.0, 0, 1}, + {-13.0, 2.0, 0, 1}, {-12.0, 2.0, 0, 1}, {-11.0, 2.0, 0, 1}, {-10.0, 2.0, 0, 1}, {-9.0, 2.0, 0, 1}, {-8.0, 2.0, 0, 1}, + {-7.0, 2.0, 0, 1}, {-6.0, 2.0, 0, 1}, {-1.0, 2.0, 0, 1}, {0.0, 2.0, 0, 1}, {1.0, 2.0, 0, 1}, {2.0, 2.0, 0, 1}, + {3.0, 2.0, 0, 1}, {4.0, 2.0, 0, 1}, {5.0, 2.0, 0, 1}, {6.0, 2.0, 0, 1}, {7.0, 2.0, 0, 1}, {8.0, 2.0, 0, 1}, + {12.0, 2.0, 0, 1}, {13.0, 2.0, 0, 1}, {14.0, 2.0, 0, 1}, {15.0, 2.0, 0, 1}, {16.0, 2.0, 0, 1}, {17.0, 2.0, 0, 1}, + {18.0, 2.0, 0, 1}, {19.0, 2.0, 0, 1}, {-27.0, 3.0, 0, 1}, {-26.0, 3.0, 0, 1}, {-25.0, 3.0, 0, 1}, {-20.0, 3.0, 0, 1}, + {-19.0, 3.0, 0, 1}, {-18.0, 3.0, 0, 1}, {-17.0, 3.0, 0, 1}, {-16.0, 3.0, 0, 1}, {-15.0, 3.0, 0, 1}, {-14.0, 3.0, 0, 1}, + {-13.0, 3.0, 0, 1}, {-12.0, 3.0, 0, 1}, {-11.0, 3.0, 0, 1}, {-10.0, 3.0, 0, 1}, {-9.0, 3.0, 0, 1}, {-8.0, 3.0, 0, 1}, + {-7.0, 3.0, 0, 1}, {-6.0, 3.0, 0, 1}, {-5.0, 3.0, 0, 1}, {0.0, 3.0, 0, 1}, {1.0, 3.0, 0, 1}, {2.0, 3.0, 0, 1}, + {3.0, 3.0, 0, 1}, {4.0, 3.0, 0, 1}, {5.0, 3.0, 0, 1}, {6.0, 3.0, 0, 1}, {7.0, 3.0, 0, 1}, {8.0, 3.0, 0, 1}, + {12.0, 3.0, 0, 1}, {13.0, 3.0, 0, 1}, {14.0, 3.0, 0, 1}, {15.0, 3.0, 0, 1}, {16.0, 3.0, 0, 1}, {17.0, 3.0, 0, 1}, + {18.0, 3.0, 0, 1}, {19.0, 3.0, 0, 1}, {20.0, 3.0, 0, 1}, {-26.0, 4.0, 0, 1}, {-25.0, 4.0, 0, 1}, {-19.0, 4.0, 0, 1}, + {-18.0, 4.0, 0, 1}, {-17.0, 4.0, 0, 1}, {-16.0, 4.0, 0, 1}, {-15.0, 4.0, 0, 1}, {-14.0, 4.0, 0, 1}, {-13.0, 4.0, 0, 1}, + {-12.0, 4.0, 0, 1}, {-11.0, 4.0, 0, 1}, {-10.0, 4.0, 0, 1}, {-9.0, 4.0, 0, 1}, {-8.0, 4.0, 0, 1}, {-7.0, 4.0, 0, 1}, + {-6.0, 4.0, 0, 1}, {-5.0, 4.0, 0, 1}, {-4.0, 4.0, 0, 1}, {1.0, 4.0, 0, 1}, {2.0, 4.0, 0, 1}, {3.0, 4.0, 0, 1}, + {4.0, 4.0, 0, 1}, {5.0, 4.0, 0, 1}, {6.0, 4.0, 0, 1}, {7.0, 4.0, 0, 1}, {8.0, 4.0, 0, 1}, {9.0, 4.0, 0, 1}, + {13.0, 4.0, 0, 1}, {14.0, 4.0, 0, 1}, {15.0, 4.0, 0, 1}, {16.0, 4.0, 0, 1}, {17.0, 4.0, 0, 1}, {18.0, 4.0, 0, 1}, + {19.0, 4.0, 0, 1}, {20.0, 4.0, 0, 1}, {-26.0, 5.0, 0, 1}, {-25.0, 5.0, 0, 1}, {-17.0, 5.0, 0, 1}, {-16.0, 5.0, 0, 1}, + {-15.0, 5.0, 0, 1}, {-14.0, 5.0, 0, 1}, {-13.0, 5.0, 0, 1}, {-12.0, 5.0, 0, 1}, {-11.0, 5.0, 0, 1}, {-10.0, 5.0, 0, 1}, + {-9.0, 5.0, 0, 1}, {-8.0, 5.0, 0, 1}, {-7.0, 5.0, 0, 1}, {-6.0, 5.0, 0, 1}, {-5.0, 5.0, 0, 1}, {-4.0, 5.0, 0, 1}, + {-3.0, 5.0, 0, 1}, {2.0, 5.0, 0, 1}, {3.0, 5.0, 0, 1}, {4.0, 5.0, 0, 1}, {5.0, 5.0, 0, 1}, {6.0, 5.0, 0, 1}, + {7.0, 5.0, 0, 1}, {8.0, 5.0, 0, 1}, {9.0, 5.0, 0, 1}, {13.0, 5.0, 0, 1}, {14.0, 5.0, 0, 1}, {15.0, 5.0, 0, 1}, + {16.0, 5.0, 0, 1}, {17.0, 5.0, 0, 1}, {18.0, 5.0, 0, 1}, {19.0, 5.0, 0, 1}, {20.0, 5.0, 0, 1}, {-26.0, 6.0, 0, 1}, + {-25.0, 6.0, 0, 1}, {-14.0, 6.0, 0, 1}, {-13.0, 6.0, 0, 1}, {-12.0, 6.0, 0, 1}, {-11.0, 6.0, 0, 1}, {-10.0, 6.0, 0, 1}, + {-9.0, 6.0, 0, 1}, {-8.0, 6.0, 0, 1}, {-7.0, 6.0, 0, 1}, {-6.0, 6.0, 0, 1}, {-5.0, 6.0, 0, 1}, {-4.0, 6.0, 0, 1}, + {-3.0, 6.0, 0, 1}, {-2.0, 6.0, 0, 1}, {2.0, 6.0, 0, 1}, {3.0, 6.0, 0, 1}, {4.0, 6.0, 0, 1}, {5.0, 6.0, 0, 1}, + {6.0, 6.0, 0, 1}, {7.0, 6.0, 0, 1}, {8.0, 6.0, 0, 1}, {9.0, 6.0, 0, 1}, {13.0, 6.0, 0, 1}, {14.0, 6.0, 0, 1}, + {15.0, 6.0, 0, 1}, {16.0, 6.0, 0, 1}, {17.0, 6.0, 0, 1}, {18.0, 6.0, 0, 1}, {19.0, 6.0, 0, 1}, {20.0, 6.0, 0, 1}, + {-25.0, 7.0, 0, 1}, {-24.0, 7.0, 0, 1}, {-11.0, 7.0, 0, 1}, {-10.0, 7.0, 0, 1}, {-9.0, 7.0, 0, 1}, {-8.0, 7.0, 0, 1}, + {-7.0, 7.0, 0, 1}, {-6.0, 7.0, 0, 1}, {-5.0, 7.0, 0, 1}, {-4.0, 7.0, 0, 1}, {-3.0, 7.0, 0, 1}, {-2.0, 7.0, 0, 1}, + {3.0, 7.0, 0, 1}, {4.0, 7.0, 0, 1}, {5.0, 7.0, 0, 1}, {6.0, 7.0, 0, 1}, {7.0, 7.0, 0, 1}, {8.0, 7.0, 0, 1}, + {9.0, 7.0, 0, 1}, {10.0, 7.0, 0, 1}, {14.0, 7.0, 0, 1}, {15.0, 7.0, 0, 1}, {16.0, 7.0, 0, 1}, {17.0, 7.0, 0, 1}, + {18.0, 7.0, 0, 1}, {19.0, 7.0, 0, 1}, {20.0, 7.0, 0, 1}, {21.0, 7.0, 0, 1}, {-25.0, 8.0, 0, 1}, {-24.0, 8.0, 0, 1}, + {-10.0, 8.0, 0, 1}, {-9.0, 8.0, 0, 1}, {-8.0, 8.0, 0, 1}, {-7.0, 8.0, 0, 1}, {-6.0, 8.0, 0, 1}, {-5.0, 8.0, 0, 1}, + {-4.0, 8.0, 0, 1}, {-3.0, 8.0, 0, 1}, {-2.0, 8.0, 0, 1}, {-1.0, 8.0, 0, 1}, {3.0, 8.0, 0, 1}, {4.0, 8.0, 0, 1}, + {5.0, 8.0, 0, 1}, {6.0, 8.0, 0, 1}, {7.0, 8.0, 0, 1}, {8.0, 8.0, 0, 1}, {9.0, 8.0, 0, 1}, {10.0, 8.0, 0, 1}, + {14.0, 8.0, 0, 1}, {15.0, 8.0, 0, 1}, {16.0, 8.0, 0, 1}, {17.0, 8.0, 0, 1}, {18.0, 8.0, 0, 1}, {19.0, 8.0, 0, 1}, + {20.0, 8.0, 0, 1}, {21.0, 8.0, 0, 1}, {-25.0, 9.0, 0, 1}, {-24.0, 9.0, 0, 1}, {-23.0, 9.0, 0, 1}, {-9.0, 9.0, 0, 1}, + {-8.0, 9.0, 0, 1}, {-7.0, 9.0, 0, 1}, {-6.0, 9.0, 0, 1}, {-5.0, 9.0, 0, 1}, {-4.0, 9.0, 0, 1}, {-3.0, 9.0, 0, 1}, + {-2.0, 9.0, 0, 1}, {-1.0, 9.0, 0, 1}, {3.0, 9.0, 0, 1}, {4.0, 9.0, 0, 1}, {5.0, 9.0, 0, 1}, {6.0, 9.0, 0, 1}, + {7.0, 9.0, 0, 1}, {8.0, 9.0, 0, 1}, {9.0, 9.0, 0, 1}, {10.0, 9.0, 0, 1}, {14.0, 9.0, 0, 1}, {15.0, 9.0, 0, 1}, + {16.0, 9.0, 0, 1}, {17.0, 9.0, 0, 1}, {18.0, 9.0, 0, 1}, {19.0, 9.0, 0, 1}, {20.0, 9.0, 0, 1}, {21.0, 9.0, 0, 1}, + {-24.0, 10.0, 0, 1}, {-23.0, 10.0, 0, 1}, {-15.0, 10.0, 0, 1}, {-14.0, 10.0, 0, 1}, {-13.0, 10.0, 0, 1}, {-12.0, 10.0, 0, 1}, + {-8.0, 10.0, 0, 1}, {-7.0, 10.0, 0, 1}, {-6.0, 10.0, 0, 1}, {-5.0, 10.0, 0, 1}, {-4.0, 10.0, 0, 1}, {-3.0, 10.0, 0, 1}, + {-2.0, 10.0, 0, 1}, {-1.0, 10.0, 0, 1}, {4.0, 10.0, 0, 1}, {5.0, 10.0, 0, 1}, {6.0, 10.0, 0, 1}, {7.0, 10.0, 0, 1}, + {8.0, 10.0, 0, 1}, {9.0, 10.0, 0, 1}, {10.0, 10.0, 0, 1}, {14.0, 10.0, 0, 1}, {15.0, 10.0, 0, 1}, {16.0, 10.0, 0, 1}, + {17.0, 10.0, 0, 1}, {18.0, 10.0, 0, 1}, {19.0, 10.0, 0, 1}, {20.0, 10.0, 0, 1}, {21.0, 10.0, 0, 1}, {-24.0, 11.0, 0, 1}, + {-23.0, 11.0, 0, 1}, {-22.0, 11.0, 0, 1}, {-16.0, 11.0, 0, 1}, {-15.0, 11.0, 0, 1}, {-14.0, 11.0, 0, 1}, {-13.0, 11.0, 0, 1}, + {-12.0, 11.0, 0, 1}, {-11.0, 11.0, 0, 1}, {-7.0, 11.0, 0, 1}, {-6.0, 11.0, 0, 1}, {-5.0, 11.0, 0, 1}, {-4.0, 11.0, 0, 1}, + {-3.0, 11.0, 0, 1}, {-2.0, 11.0, 0, 1}, {-1.0, 11.0, 0, 1}, {0.0, 11.0, 0, 1}, {4.0, 11.0, 0, 1}, {5.0, 11.0, 0, 1}, + {6.0, 11.0, 0, 1}, {7.0, 11.0, 0, 1}, {8.0, 11.0, 0, 1}, {9.0, 11.0, 0, 1}, {10.0, 11.0, 0, 1}, {11.0, 11.0, 0, 1}, + {15.0, 11.0, 0, 1}, {16.0, 11.0, 0, 1}, {17.0, 11.0, 0, 1}, {18.0, 11.0, 0, 1}, {19.0, 11.0, 0, 1}, {20.0, 11.0, 0, 1}, + {-23.0, 12.0, 0, 1}, {-22.0, 12.0, 0, 1}, {-17.0, 12.0, 0, 1}, {-16.0, 12.0, 0, 1}, {-15.0, 12.0, 0, 1}, {-14.0, 12.0, 0, 1}, + {-13.0, 12.0, 0, 1}, {-12.0, 12.0, 0, 1}, {-11.0, 12.0, 0, 1}, {-7.0, 12.0, 0, 1}, {-6.0, 12.0, 0, 1}, {-5.0, 12.0, 0, 1}, + {-4.0, 12.0, 0, 1}, {-3.0, 12.0, 0, 1}, {-2.0, 12.0, 0, 1}, {-1.0, 12.0, 0, 1}, {0.0, 12.0, 0, 1}, {4.0, 12.0, 0, 1}, + {5.0, 12.0, 0, 1}, {6.0, 12.0, 0, 1}, {7.0, 12.0, 0, 1}, {8.0, 12.0, 0, 1}, {9.0, 12.0, 0, 1}, {10.0, 12.0, 0, 1}, + {11.0, 12.0, 0, 1}, {15.0, 12.0, 0, 1}, {16.0, 12.0, 0, 1}, {17.0, 12.0, 0, 1}, {18.0, 12.0, 0, 1}, {19.0, 12.0, 0, 1}, + {-23.0, 13.0, 0, 1}, {-22.0, 13.0, 0, 1}, {-21.0, 13.0, 0, 1}, {-17.0, 13.0, 0, 1}, {-16.0, 13.0, 0, 1}, {-15.0, 13.0, 0, 1}, + {-14.0, 13.0, 0, 1}, {-13.0, 13.0, 0, 1}, {-12.0, 13.0, 0, 1}, {-11.0, 13.0, 0, 1}, {-7.0, 13.0, 0, 1}, {-6.0, 13.0, 0, 1}, + {-5.0, 13.0, 0, 1}, {-4.0, 13.0, 0, 1}, {-3.0, 13.0, 0, 1}, {-2.0, 13.0, 0, 1}, {-1.0, 13.0, 0, 1}, {0.0, 13.0, 0, 1}, + {4.0, 13.0, 0, 1}, {5.0, 13.0, 0, 1}, {6.0, 13.0, 0, 1}, {7.0, 13.0, 0, 1}, {8.0, 13.0, 0, 1}, {9.0, 13.0, 0, 1}, + {10.0, 13.0, 0, 1}, {11.0, 13.0, 0, 1}, {15.0, 13.0, 0, 1}, {16.0, 13.0, 0, 1}, {17.0, 13.0, 0, 1}, {18.0, 13.0, 0, 1}, + {19.0, 13.0, 0, 1}, {-22.0, 14.0, 0, 1}, {-21.0, 14.0, 0, 1}, {-20.0, 14.0, 0, 1}, {-17.0, 14.0, 0, 1}, {-16.0, 14.0, 0, 1}, + {-15.0, 14.0, 0, 1}, {-14.0, 14.0, 0, 1}, {-13.0, 14.0, 0, 1}, {-12.0, 14.0, 0, 1}, {-11.0, 14.0, 0, 1}, {-7.0, 14.0, 0, 1}, + {-6.0, 14.0, 0, 1}, {-5.0, 14.0, 0, 1}, {-4.0, 14.0, 0, 1}, {-3.0, 14.0, 0, 1}, {-2.0, 14.0, 0, 1}, {-1.0, 14.0, 0, 1}, + {0.0, 14.0, 0, 1}, {4.0, 14.0, 0, 1}, {5.0, 14.0, 0, 1}, {6.0, 14.0, 0, 1}, {7.0, 14.0, 0, 1}, {8.0, 14.0, 0, 1}, + {9.0, 14.0, 0, 1}, {10.0, 14.0, 0, 1}, {11.0, 14.0, 0, 1}, {15.0, 14.0, 0, 1}, {16.0, 14.0, 0, 1}, {17.0, 14.0, 0, 1}, + {18.0, 14.0, 0, 1}, {-21.0, 15.0, 0, 1}, {-20.0, 15.0, 0, 1}, {-17.0, 15.0, 0, 1}, {-16.0, 15.0, 0, 1}, {-15.0, 15.0, 0, 1}, + {-14.0, 15.0, 0, 1}, {-13.0, 15.0, 0, 1}, {-12.0, 15.0, 0, 1}, {-11.0, 15.0, 0, 1}, {-7.0, 15.0, 0, 1}, {-6.0, 15.0, 0, 1}, + {-5.0, 15.0, 0, 1}, {-4.0, 15.0, 0, 1}, {-3.0, 15.0, 0, 1}, {-2.0, 15.0, 0, 1}, {-1.0, 15.0, 0, 1}, {0.0, 15.0, 0, 1}, + {4.0, 15.0, 0, 1}, {5.0, 15.0, 0, 1}, {6.0, 15.0, 0, 1}, {7.0, 15.0, 0, 1}, {8.0, 15.0, 0, 1}, {9.0, 15.0, 0, 1}, + {10.0, 15.0, 0, 1}, {11.0, 15.0, 0, 1}, {-21.0, 16.0, 0, 1}, {-20.0, 16.0, 0, 1}, {-19.0, 16.0, 0, 1}, {-16.0, 16.0, 0, 1}, + {-15.0, 16.0, 0, 1}, {-14.0, 16.0, 0, 1}, {-13.0, 16.0, 0, 1}, {-12.0, 16.0, 0, 1}, {-7.0, 16.0, 0, 1}, {-6.0, 16.0, 0, 1}, + {-5.0, 16.0, 0, 1}, {-4.0, 16.0, 0, 1}, {-3.0, 16.0, 0, 1}, {-2.0, 16.0, 0, 1}, {-1.0, 16.0, 0, 1}, {0.0, 16.0, 0, 1}, + {4.0, 16.0, 0, 1}, {5.0, 16.0, 0, 1}, {6.0, 16.0, 0, 1}, {7.0, 16.0, 0, 1}, {8.0, 16.0, 0, 1}, {9.0, 16.0, 0, 1}, + {10.0, 16.0, 0, 1}, {11.0, 16.0, 0, 1}, {-20.0, 17.0, 0, 1}, {-19.0, 17.0, 0, 1}, {-18.0, 17.0, 0, 1}, {-7.0, 17.0, 0, 1}, + {-6.0, 17.0, 0, 1}, {-5.0, 17.0, 0, 1}, {-4.0, 17.0, 0, 1}, {-3.0, 17.0, 0, 1}, {-2.0, 17.0, 0, 1}, {-1.0, 17.0, 0, 1}, + {0.0, 17.0, 0, 1}, {4.0, 17.0, 0, 1}, {5.0, 17.0, 0, 1}, {6.0, 17.0, 0, 1}, {7.0, 17.0, 0, 1}, {8.0, 17.0, 0, 1}, + {9.0, 17.0, 0, 1}, {10.0, 17.0, 0, 1}, {11.0, 17.0, 0, 1}, {19.0, 17.0, 0, 1}, {-19.0, 18.0, 0, 1}, {-18.0, 18.0, 0, 1}, + {-17.0, 18.0, 0, 1}, {-7.0, 18.0, 0, 1}, {-6.0, 18.0, 0, 1}, {-5.0, 18.0, 0, 1}, {-4.0, 18.0, 0, 1}, {-3.0, 18.0, 0, 1}, + {-2.0, 18.0, 0, 1}, {-1.0, 18.0, 0, 1}, {0.0, 18.0, 0, 1}, {4.0, 18.0, 0, 1}, {5.0, 18.0, 0, 1}, {6.0, 18.0, 0, 1}, + {7.0, 18.0, 0, 1}, {8.0, 18.0, 0, 1}, {9.0, 18.0, 0, 1}, {10.0, 18.0, 0, 1}, {11.0, 18.0, 0, 1}, {18.0, 18.0, 0, 1}, + {19.0, 18.0, 0, 1}, {20.0, 18.0, 0, 1}, {-18.0, 19.0, 0, 1}, {-17.0, 19.0, 0, 1}, {-16.0, 19.0, 0, 1}, {-15.0, 19.0, 0, 1}, + {-8.0, 19.0, 0, 1}, {-7.0, 19.0, 0, 1}, {-6.0, 19.0, 0, 1}, {-5.0, 19.0, 0, 1}, {-4.0, 19.0, 0, 1}, {-3.0, 19.0, 0, 1}, + {-2.0, 19.0, 0, 1}, {-1.0, 19.0, 0, 1}, {4.0, 19.0, 0, 1}, {5.0, 19.0, 0, 1}, {6.0, 19.0, 0, 1}, {7.0, 19.0, 0, 1}, + {8.0, 19.0, 0, 1}, {9.0, 19.0, 0, 1}, {10.0, 19.0, 0, 1}, {17.0, 19.0, 0, 1}, {18.0, 19.0, 0, 1}, {19.0, 19.0, 0, 1}, + {-17.0, 20.0, 0, 1}, {-16.0, 20.0, 0, 1}, {-15.0, 20.0, 0, 1}, {-14.0, 20.0, 0, 1}, {-7.0, 20.0, 0, 1}, {-6.0, 20.0, 0, 1}, + {-5.0, 20.0, 0, 1}, {-4.0, 20.0, 0, 1}, {-3.0, 20.0, 0, 1}, {-2.0, 20.0, 0, 1}, {-1.0, 20.0, 0, 1}, {4.0, 20.0, 0, 1}, + {5.0, 20.0, 0, 1}, {6.0, 20.0, 0, 1}, {7.0, 20.0, 0, 1}, {8.0, 20.0, 0, 1}, {9.0, 20.0, 0, 1}, {16.0, 20.0, 0, 1}, + {17.0, 20.0, 0, 1}, {18.0, 20.0, 0, 1}, {-15.0, 21.0, 0, 1}, {-14.0, 21.0, 0, 1}, {-13.0, 21.0, 0, 1}, {-12.0, 21.0, 0, 1}, + {-5.0, 21.0, 0, 1}, {-4.0, 21.0, 0, 1}, {-3.0, 21.0, 0, 1}, {-2.0, 21.0, 0, 1}, {-1.0, 21.0, 0, 1}, {14.0, 21.0, 0, 1}, + {15.0, 21.0, 0, 1}, {16.0, 21.0, 0, 1}, {17.0, 21.0, 0, 1}, {-14.0, 22.0, 0, 1}, {-13.0, 22.0, 0, 1}, {-12.0, 22.0, 0, 1}, + {-11.0, 22.0, 0, 1}, {-10.0, 22.0, 0, 1}, {12.0, 22.0, 0, 1}, {13.0, 22.0, 0, 1}, {14.0, 22.0, 0, 1}, {15.0, 22.0, 0, 1}, + {-12.0, 23.0, 0, 1}, {-11.0, 23.0, 0, 1}, {-10.0, 23.0, 0, 1}, {-9.0, 23.0, 0, 1}, {-8.0, 23.0, 0, 1}, {9.0, 23.0, 0, 1}, + {10.0, 23.0, 0, 1}, {11.0, 23.0, 0, 1}, {12.0, 23.0, 0, 1}, {13.0, 23.0, 0, 1}, {14.0, 23.0, 0, 1}, {-10.0, 24.0, 0, 1}, + {-9.0, 24.0, 0, 1}, {-8.0, 24.0, 0, 1}, {-7.0, 24.0, 0, 1}, {-6.0, 24.0, 0, 1}, {-5.0, 24.0, 0, 1}, {-4.0, 24.0, 0, 1}, + {-3.0, 24.0, 0, 1}, {5.0, 24.0, 0, 1}, {6.0, 24.0, 0, 1}, {7.0, 24.0, 0, 1}, {8.0, 24.0, 0, 1}, {9.0, 24.0, 0, 1}, + {10.0, 24.0, 0, 1}, {11.0, 24.0, 0, 1}, {12.0, 24.0, 0, 1}, {-7.0, 25.0, 0, 1}, {-6.0, 25.0, 0, 1}, {-5.0, 25.0, 0, 1}, + {-4.0, 25.0, 0, 1}, {-3.0, 25.0, 0, 1}, {-2.0, 25.0, 0, 1}, {-1.0, 25.0, 0, 1}, {0.0, 25.0, 0, 1}, {1.0, 25.0, 0, 1}, + {2.0, 25.0, 0, 1}, {3.0, 25.0, 0, 1}, {4.0, 25.0, 0, 1}, {5.0, 25.0, 0, 1}, {6.0, 25.0, 0, 1}, {7.0, 25.0, 0, 1}, + {8.0, 25.0, 0, 1}, {9.0, 25.0, 0, 1}, {-3.0, 26.0, 0, 1}, {-2.0, 26.0, 0, 1}, {-1.0, 26.0, 0, 1}, {0.0, 26.0, 0, 1}, + {1.0, 26.0, 0, 1}, {2.0, 26.0, 0, 1}, {3.0, 26.0, 0, 1}, {4.0, 26.0, 0, 1}, {5.0, 26.0, 0, 1} +}; + +#endif // CONFIG_3D_OBJECT_ESP_LOGO diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.h new file mode 100644 index 0000000..87a43b0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.h @@ -0,0 +1,21 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t image_bmp_array_esp_logo[512]; +extern const float image_3d_matrix_esp_logo[1427][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.c new file mode 100644 index 0000000..6cacfea --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.c @@ -0,0 +1,252 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "esp_text.h" + +const uint8_t image_bmp_array_esp_text[384] = { + + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3f, 0xf8, 0x7f, 0xf1, 0xff, 0xe1, 0xff, 0xe0, 0x7f, 0xe0, 0xff, 0xc1, 0xff, 0xc7, 0x07, 0xfe, + 0x7f, 0xf8, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xe1, 0xff, 0xc3, 0xff, 0xc7, 0x0f, 0xfe, + 0x7f, 0xf8, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xe3, 0xff, 0xc3, 0xff, 0xc7, 0x1f, 0xfe, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x79, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1e, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x7f, 0xf0, 0xff, 0xe1, 0xe0, 0x79, 0xe0, 0x71, 0xff, 0xc3, 0xff, 0x83, 0xff, 0x87, 0x1f, 0xfc, + 0x7f, 0xf0, 0xff, 0xf1, 0xff, 0xf9, 0xff, 0xf1, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc7, 0x1f, 0xfc, + 0x7f, 0xf0, 0x7f, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xc1, 0xff, 0xe1, 0xff, 0xc7, 0x1f, 0xfc, + 0x70, 0x00, 0x00, 0x79, 0xff, 0xf1, 0xff, 0xe1, 0xc0, 0x00, 0x01, 0xe0, 0x03, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xff, 0xc1, 0xe1, 0xe1, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0xe1, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x7f, 0xf8, 0xff, 0xf1, 0xe0, 0x01, 0xe0, 0x79, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xc7, 0x1c, 0x00, + 0x7f, 0xf8, 0xff, 0xf1, 0xe0, 0x01, 0xe0, 0x38, 0xff, 0xe3, 0xff, 0xc7, 0xff, 0xc7, 0x1c, 0x00, + 0x3f, 0xf8, 0xff, 0xe1, 0xe0, 0x01, 0xe0, 0x38, 0xff, 0xe3, 0xff, 0x87, 0xff, 0x87, 0x1c, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + +}; + +const float image_3d_array_esp_text[1271][4] = { + + {-62.0, -11.0, 0, 1}, {-61.0, -11.0, 0, 1}, {-60.0, -11.0, 0, 1}, {-59.0, -11.0, 0, 1}, {-58.0, -11.0, 0, 1}, {-57.0, -11.0, 0, 1}, + {-56.0, -11.0, 0, 1}, {-55.0, -11.0, 0, 1}, {-54.0, -11.0, 0, 1}, {-53.0, -11.0, 0, 1}, {-52.0, -11.0, 0, 1}, {-47.0, -11.0, 0, 1}, + {-46.0, -11.0, 0, 1}, {-45.0, -11.0, 0, 1}, {-44.0, -11.0, 0, 1}, {-43.0, -11.0, 0, 1}, {-42.0, -11.0, 0, 1}, {-41.0, -11.0, 0, 1}, + {-40.0, -11.0, 0, 1}, {-39.0, -11.0, 0, 1}, {-38.0, -11.0, 0, 1}, {-37.0, -11.0, 0, 1}, {-33.0, -11.0, 0, 1}, {-32.0, -11.0, 0, 1}, + {-31.0, -11.0, 0, 1}, {-30.0, -11.0, 0, 1}, {-29.0, -11.0, 0, 1}, {-28.0, -11.0, 0, 1}, {-27.0, -11.0, 0, 1}, {-26.0, -11.0, 0, 1}, + {-25.0, -11.0, 0, 1}, {-24.0, -11.0, 0, 1}, {-23.0, -11.0, 0, 1}, {-22.0, -11.0, 0, 1}, {-17.0, -11.0, 0, 1}, {-16.0, -11.0, 0, 1}, + {-15.0, -11.0, 0, 1}, {-14.0, -11.0, 0, 1}, {-13.0, -11.0, 0, 1}, {-12.0, -11.0, 0, 1}, {-11.0, -11.0, 0, 1}, {-10.0, -11.0, 0, 1}, + {-9.0, -11.0, 0, 1}, {-8.0, -11.0, 0, 1}, {-7.0, -11.0, 0, 1}, {-6.0, -11.0, 0, 1}, {1.0, -11.0, 0, 1}, {2.0, -11.0, 0, 1}, + {3.0, -11.0, 0, 1}, {4.0, -11.0, 0, 1}, {5.0, -11.0, 0, 1}, {6.0, -11.0, 0, 1}, {7.0, -11.0, 0, 1}, {8.0, -11.0, 0, 1}, + {9.0, -11.0, 0, 1}, {10.0, -11.0, 0, 1}, {16.0, -11.0, 0, 1}, {17.0, -11.0, 0, 1}, {18.0, -11.0, 0, 1}, {19.0, -11.0, 0, 1}, + {20.0, -11.0, 0, 1}, {21.0, -11.0, 0, 1}, {22.0, -11.0, 0, 1}, {23.0, -11.0, 0, 1}, {24.0, -11.0, 0, 1}, {25.0, -11.0, 0, 1}, + {31.0, -11.0, 0, 1}, {32.0, -11.0, 0, 1}, {33.0, -11.0, 0, 1}, {34.0, -11.0, 0, 1}, {35.0, -11.0, 0, 1}, {36.0, -11.0, 0, 1}, + {37.0, -11.0, 0, 1}, {38.0, -11.0, 0, 1}, {39.0, -11.0, 0, 1}, {40.0, -11.0, 0, 1}, {41.0, -11.0, 0, 1}, {45.0, -11.0, 0, 1}, + {46.0, -11.0, 0, 1}, {47.0, -11.0, 0, 1}, {53.0, -11.0, 0, 1}, {54.0, -11.0, 0, 1}, {55.0, -11.0, 0, 1}, {56.0, -11.0, 0, 1}, + {57.0, -11.0, 0, 1}, {58.0, -11.0, 0, 1}, {59.0, -11.0, 0, 1}, {60.0, -11.0, 0, 1}, {61.0, -11.0, 0, 1}, {62.0, -11.0, 0, 1}, + {-63.0, -10.0, 0, 1}, {-62.0, -10.0, 0, 1}, {-61.0, -10.0, 0, 1}, {-60.0, -10.0, 0, 1}, {-59.0, -10.0, 0, 1}, {-58.0, -10.0, 0, 1}, + {-57.0, -10.0, 0, 1}, {-56.0, -10.0, 0, 1}, {-55.0, -10.0, 0, 1}, {-54.0, -10.0, 0, 1}, {-53.0, -10.0, 0, 1}, {-52.0, -10.0, 0, 1}, + {-48.0, -10.0, 0, 1}, {-47.0, -10.0, 0, 1}, {-46.0, -10.0, 0, 1}, {-45.0, -10.0, 0, 1}, {-44.0, -10.0, 0, 1}, {-43.0, -10.0, 0, 1}, + {-42.0, -10.0, 0, 1}, {-41.0, -10.0, 0, 1}, {-40.0, -10.0, 0, 1}, {-39.0, -10.0, 0, 1}, {-38.0, -10.0, 0, 1}, {-37.0, -10.0, 0, 1}, + {-33.0, -10.0, 0, 1}, {-32.0, -10.0, 0, 1}, {-31.0, -10.0, 0, 1}, {-30.0, -10.0, 0, 1}, {-29.0, -10.0, 0, 1}, {-28.0, -10.0, 0, 1}, + {-27.0, -10.0, 0, 1}, {-26.0, -10.0, 0, 1}, {-25.0, -10.0, 0, 1}, {-24.0, -10.0, 0, 1}, {-23.0, -10.0, 0, 1}, {-22.0, -10.0, 0, 1}, + {-21.0, -10.0, 0, 1}, {-17.0, -10.0, 0, 1}, {-16.0, -10.0, 0, 1}, {-15.0, -10.0, 0, 1}, {-14.0, -10.0, 0, 1}, {-13.0, -10.0, 0, 1}, + {-12.0, -10.0, 0, 1}, {-11.0, -10.0, 0, 1}, {-10.0, -10.0, 0, 1}, {-9.0, -10.0, 0, 1}, {-8.0, -10.0, 0, 1}, {-7.0, -10.0, 0, 1}, + {-6.0, -10.0, 0, 1}, {-5.0, -10.0, 0, 1}, {0.0, -10.0, 0, 1}, {1.0, -10.0, 0, 1}, {2.0, -10.0, 0, 1}, {3.0, -10.0, 0, 1}, + {4.0, -10.0, 0, 1}, {5.0, -10.0, 0, 1}, {6.0, -10.0, 0, 1}, {7.0, -10.0, 0, 1}, {8.0, -10.0, 0, 1}, {9.0, -10.0, 0, 1}, + {10.0, -10.0, 0, 1}, {15.0, -10.0, 0, 1}, {16.0, -10.0, 0, 1}, {17.0, -10.0, 0, 1}, {18.0, -10.0, 0, 1}, {19.0, -10.0, 0, 1}, + {20.0, -10.0, 0, 1}, {21.0, -10.0, 0, 1}, {22.0, -10.0, 0, 1}, {23.0, -10.0, 0, 1}, {24.0, -10.0, 0, 1}, {25.0, -10.0, 0, 1}, + {30.0, -10.0, 0, 1}, {31.0, -10.0, 0, 1}, {32.0, -10.0, 0, 1}, {33.0, -10.0, 0, 1}, {34.0, -10.0, 0, 1}, {35.0, -10.0, 0, 1}, + {36.0, -10.0, 0, 1}, {37.0, -10.0, 0, 1}, {38.0, -10.0, 0, 1}, {39.0, -10.0, 0, 1}, {40.0, -10.0, 0, 1}, {41.0, -10.0, 0, 1}, + {45.0, -10.0, 0, 1}, {46.0, -10.0, 0, 1}, {47.0, -10.0, 0, 1}, {52.0, -10.0, 0, 1}, {53.0, -10.0, 0, 1}, {54.0, -10.0, 0, 1}, + {55.0, -10.0, 0, 1}, {56.0, -10.0, 0, 1}, {57.0, -10.0, 0, 1}, {58.0, -10.0, 0, 1}, {59.0, -10.0, 0, 1}, {60.0, -10.0, 0, 1}, + {61.0, -10.0, 0, 1}, {62.0, -10.0, 0, 1}, {-63.0, -9.0, 0, 1}, {-62.0, -9.0, 0, 1}, {-61.0, -9.0, 0, 1}, {-60.0, -9.0, 0, 1}, + {-59.0, -9.0, 0, 1}, {-58.0, -9.0, 0, 1}, {-57.0, -9.0, 0, 1}, {-56.0, -9.0, 0, 1}, {-55.0, -9.0, 0, 1}, {-54.0, -9.0, 0, 1}, + {-53.0, -9.0, 0, 1}, {-52.0, -9.0, 0, 1}, {-48.0, -9.0, 0, 1}, {-47.0, -9.0, 0, 1}, {-46.0, -9.0, 0, 1}, {-45.0, -9.0, 0, 1}, + {-44.0, -9.0, 0, 1}, {-43.0, -9.0, 0, 1}, {-42.0, -9.0, 0, 1}, {-41.0, -9.0, 0, 1}, {-40.0, -9.0, 0, 1}, {-39.0, -9.0, 0, 1}, + {-38.0, -9.0, 0, 1}, {-37.0, -9.0, 0, 1}, {-33.0, -9.0, 0, 1}, {-32.0, -9.0, 0, 1}, {-31.0, -9.0, 0, 1}, {-30.0, -9.0, 0, 1}, + {-29.0, -9.0, 0, 1}, {-28.0, -9.0, 0, 1}, {-27.0, -9.0, 0, 1}, {-26.0, -9.0, 0, 1}, {-25.0, -9.0, 0, 1}, {-24.0, -9.0, 0, 1}, + {-23.0, -9.0, 0, 1}, {-22.0, -9.0, 0, 1}, {-21.0, -9.0, 0, 1}, {-17.0, -9.0, 0, 1}, {-16.0, -9.0, 0, 1}, {-15.0, -9.0, 0, 1}, + {-14.0, -9.0, 0, 1}, {-13.0, -9.0, 0, 1}, {-12.0, -9.0, 0, 1}, {-11.0, -9.0, 0, 1}, {-10.0, -9.0, 0, 1}, {-9.0, -9.0, 0, 1}, + {-8.0, -9.0, 0, 1}, {-7.0, -9.0, 0, 1}, {-6.0, -9.0, 0, 1}, {-5.0, -9.0, 0, 1}, {-1.0, -9.0, 0, 1}, {0.0, -9.0, 0, 1}, + {1.0, -9.0, 0, 1}, {2.0, -9.0, 0, 1}, {3.0, -9.0, 0, 1}, {4.0, -9.0, 0, 1}, {5.0, -9.0, 0, 1}, {6.0, -9.0, 0, 1}, + {7.0, -9.0, 0, 1}, {8.0, -9.0, 0, 1}, {9.0, -9.0, 0, 1}, {10.0, -9.0, 0, 1}, {14.0, -9.0, 0, 1}, {15.0, -9.0, 0, 1}, + {16.0, -9.0, 0, 1}, {17.0, -9.0, 0, 1}, {18.0, -9.0, 0, 1}, {19.0, -9.0, 0, 1}, {20.0, -9.0, 0, 1}, {21.0, -9.0, 0, 1}, + {22.0, -9.0, 0, 1}, {23.0, -9.0, 0, 1}, {24.0, -9.0, 0, 1}, {25.0, -9.0, 0, 1}, {30.0, -9.0, 0, 1}, {31.0, -9.0, 0, 1}, + {32.0, -9.0, 0, 1}, {33.0, -9.0, 0, 1}, {34.0, -9.0, 0, 1}, {35.0, -9.0, 0, 1}, {36.0, -9.0, 0, 1}, {37.0, -9.0, 0, 1}, + {38.0, -9.0, 0, 1}, {39.0, -9.0, 0, 1}, {40.0, -9.0, 0, 1}, {41.0, -9.0, 0, 1}, {45.0, -9.0, 0, 1}, {46.0, -9.0, 0, 1}, + {47.0, -9.0, 0, 1}, {51.0, -9.0, 0, 1}, {52.0, -9.0, 0, 1}, {53.0, -9.0, 0, 1}, {54.0, -9.0, 0, 1}, {55.0, -9.0, 0, 1}, + {56.0, -9.0, 0, 1}, {57.0, -9.0, 0, 1}, {58.0, -9.0, 0, 1}, {59.0, -9.0, 0, 1}, {60.0, -9.0, 0, 1}, {61.0, -9.0, 0, 1}, + {62.0, -9.0, 0, 1}, {-63.0, -8.0, 0, 1}, {-62.0, -8.0, 0, 1}, {-61.0, -8.0, 0, 1}, {-48.0, -8.0, 0, 1}, {-47.0, -8.0, 0, 1}, + {-46.0, -8.0, 0, 1}, {-33.0, -8.0, 0, 1}, {-32.0, -8.0, 0, 1}, {-31.0, -8.0, 0, 1}, {-30.0, -8.0, 0, 1}, {-23.0, -8.0, 0, 1}, + {-22.0, -8.0, 0, 1}, {-21.0, -8.0, 0, 1}, {-20.0, -8.0, 0, 1}, {-17.0, -8.0, 0, 1}, {-16.0, -8.0, 0, 1}, {-15.0, -8.0, 0, 1}, + {-14.0, -8.0, 0, 1}, {-7.0, -8.0, 0, 1}, {-6.0, -8.0, 0, 1}, {-5.0, -8.0, 0, 1}, {-1.0, -8.0, 0, 1}, {0.0, -8.0, 0, 1}, + {1.0, -8.0, 0, 1}, {14.0, -8.0, 0, 1}, {15.0, -8.0, 0, 1}, {16.0, -8.0, 0, 1}, {29.0, -8.0, 0, 1}, {30.0, -8.0, 0, 1}, + {31.0, -8.0, 0, 1}, {32.0, -8.0, 0, 1}, {45.0, -8.0, 0, 1}, {46.0, -8.0, 0, 1}, {47.0, -8.0, 0, 1}, {51.0, -8.0, 0, 1}, + {52.0, -8.0, 0, 1}, {53.0, -8.0, 0, 1}, {54.0, -8.0, 0, 1}, {-63.0, -7.0, 0, 1}, {-62.0, -7.0, 0, 1}, {-61.0, -7.0, 0, 1}, + {-48.0, -7.0, 0, 1}, {-47.0, -7.0, 0, 1}, {-46.0, -7.0, 0, 1}, {-33.0, -7.0, 0, 1}, {-32.0, -7.0, 0, 1}, {-31.0, -7.0, 0, 1}, + {-30.0, -7.0, 0, 1}, {-22.0, -7.0, 0, 1}, {-21.0, -7.0, 0, 1}, {-20.0, -7.0, 0, 1}, {-17.0, -7.0, 0, 1}, {-16.0, -7.0, 0, 1}, + {-15.0, -7.0, 0, 1}, {-14.0, -7.0, 0, 1}, {-7.0, -7.0, 0, 1}, {-6.0, -7.0, 0, 1}, {-5.0, -7.0, 0, 1}, {-1.0, -7.0, 0, 1}, + {0.0, -7.0, 0, 1}, {1.0, -7.0, 0, 1}, {14.0, -7.0, 0, 1}, {15.0, -7.0, 0, 1}, {16.0, -7.0, 0, 1}, {29.0, -7.0, 0, 1}, + {30.0, -7.0, 0, 1}, {31.0, -7.0, 0, 1}, {32.0, -7.0, 0, 1}, {45.0, -7.0, 0, 1}, {46.0, -7.0, 0, 1}, {47.0, -7.0, 0, 1}, + {51.0, -7.0, 0, 1}, {52.0, -7.0, 0, 1}, {53.0, -7.0, 0, 1}, {-63.0, -6.0, 0, 1}, {-62.0, -6.0, 0, 1}, {-61.0, -6.0, 0, 1}, + {-48.0, -6.0, 0, 1}, {-47.0, -6.0, 0, 1}, {-46.0, -6.0, 0, 1}, {-33.0, -6.0, 0, 1}, {-32.0, -6.0, 0, 1}, {-31.0, -6.0, 0, 1}, + {-30.0, -6.0, 0, 1}, {-22.0, -6.0, 0, 1}, {-21.0, -6.0, 0, 1}, {-20.0, -6.0, 0, 1}, {-17.0, -6.0, 0, 1}, {-16.0, -6.0, 0, 1}, + {-15.0, -6.0, 0, 1}, {-14.0, -6.0, 0, 1}, {-7.0, -6.0, 0, 1}, {-6.0, -6.0, 0, 1}, {-5.0, -6.0, 0, 1}, {-1.0, -6.0, 0, 1}, + {0.0, -6.0, 0, 1}, {1.0, -6.0, 0, 1}, {14.0, -6.0, 0, 1}, {15.0, -6.0, 0, 1}, {16.0, -6.0, 0, 1}, {29.0, -6.0, 0, 1}, + {30.0, -6.0, 0, 1}, {31.0, -6.0, 0, 1}, {32.0, -6.0, 0, 1}, {45.0, -6.0, 0, 1}, {46.0, -6.0, 0, 1}, {47.0, -6.0, 0, 1}, + {51.0, -6.0, 0, 1}, {52.0, -6.0, 0, 1}, {53.0, -6.0, 0, 1}, {-63.0, -5.0, 0, 1}, {-62.0, -5.0, 0, 1}, {-61.0, -5.0, 0, 1}, + {-48.0, -5.0, 0, 1}, {-47.0, -5.0, 0, 1}, {-46.0, -5.0, 0, 1}, {-33.0, -5.0, 0, 1}, {-32.0, -5.0, 0, 1}, {-31.0, -5.0, 0, 1}, + {-30.0, -5.0, 0, 1}, {-22.0, -5.0, 0, 1}, {-21.0, -5.0, 0, 1}, {-20.0, -5.0, 0, 1}, {-17.0, -5.0, 0, 1}, {-16.0, -5.0, 0, 1}, + {-15.0, -5.0, 0, 1}, {-14.0, -5.0, 0, 1}, {-7.0, -5.0, 0, 1}, {-6.0, -5.0, 0, 1}, {-5.0, -5.0, 0, 1}, {-1.0, -5.0, 0, 1}, + {0.0, -5.0, 0, 1}, {1.0, -5.0, 0, 1}, {14.0, -5.0, 0, 1}, {15.0, -5.0, 0, 1}, {16.0, -5.0, 0, 1}, {29.0, -5.0, 0, 1}, + {30.0, -5.0, 0, 1}, {31.0, -5.0, 0, 1}, {32.0, -5.0, 0, 1}, {45.0, -5.0, 0, 1}, {46.0, -5.0, 0, 1}, {47.0, -5.0, 0, 1}, + {51.0, -5.0, 0, 1}, {52.0, -5.0, 0, 1}, {53.0, -5.0, 0, 1}, {-63.0, -4.0, 0, 1}, {-62.0, -4.0, 0, 1}, {-61.0, -4.0, 0, 1}, + {-48.0, -4.0, 0, 1}, {-47.0, -4.0, 0, 1}, {-46.0, -4.0, 0, 1}, {-33.0, -4.0, 0, 1}, {-32.0, -4.0, 0, 1}, {-31.0, -4.0, 0, 1}, + {-30.0, -4.0, 0, 1}, {-22.0, -4.0, 0, 1}, {-21.0, -4.0, 0, 1}, {-20.0, -4.0, 0, 1}, {-17.0, -4.0, 0, 1}, {-16.0, -4.0, 0, 1}, + {-15.0, -4.0, 0, 1}, {-14.0, -4.0, 0, 1}, {-7.0, -4.0, 0, 1}, {-6.0, -4.0, 0, 1}, {-5.0, -4.0, 0, 1}, {-1.0, -4.0, 0, 1}, + {0.0, -4.0, 0, 1}, {1.0, -4.0, 0, 1}, {14.0, -4.0, 0, 1}, {15.0, -4.0, 0, 1}, {16.0, -4.0, 0, 1}, {29.0, -4.0, 0, 1}, + {30.0, -4.0, 0, 1}, {31.0, -4.0, 0, 1}, {32.0, -4.0, 0, 1}, {45.0, -4.0, 0, 1}, {46.0, -4.0, 0, 1}, {47.0, -4.0, 0, 1}, + {51.0, -4.0, 0, 1}, {52.0, -4.0, 0, 1}, {53.0, -4.0, 0, 1}, {-63.0, -3.0, 0, 1}, {-62.0, -3.0, 0, 1}, {-61.0, -3.0, 0, 1}, + {-48.0, -3.0, 0, 1}, {-47.0, -3.0, 0, 1}, {-46.0, -3.0, 0, 1}, {-33.0, -3.0, 0, 1}, {-32.0, -3.0, 0, 1}, {-31.0, -3.0, 0, 1}, + {-30.0, -3.0, 0, 1}, {-22.0, -3.0, 0, 1}, {-21.0, -3.0, 0, 1}, {-20.0, -3.0, 0, 1}, {-17.0, -3.0, 0, 1}, {-16.0, -3.0, 0, 1}, + {-15.0, -3.0, 0, 1}, {-14.0, -3.0, 0, 1}, {-7.0, -3.0, 0, 1}, {-6.0, -3.0, 0, 1}, {-5.0, -3.0, 0, 1}, {-1.0, -3.0, 0, 1}, + {0.0, -3.0, 0, 1}, {1.0, -3.0, 0, 1}, {14.0, -3.0, 0, 1}, {15.0, -3.0, 0, 1}, {16.0, -3.0, 0, 1}, {29.0, -3.0, 0, 1}, + {30.0, -3.0, 0, 1}, {31.0, -3.0, 0, 1}, {32.0, -3.0, 0, 1}, {45.0, -3.0, 0, 1}, {46.0, -3.0, 0, 1}, {47.0, -3.0, 0, 1}, + {51.0, -3.0, 0, 1}, {52.0, -3.0, 0, 1}, {53.0, -3.0, 0, 1}, {-63.0, -2.0, 0, 1}, {-62.0, -2.0, 0, 1}, {-61.0, -2.0, 0, 1}, + {-60.0, -2.0, 0, 1}, {-59.0, -2.0, 0, 1}, {-58.0, -2.0, 0, 1}, {-57.0, -2.0, 0, 1}, {-56.0, -2.0, 0, 1}, {-55.0, -2.0, 0, 1}, + {-54.0, -2.0, 0, 1}, {-53.0, -2.0, 0, 1}, {-48.0, -2.0, 0, 1}, {-47.0, -2.0, 0, 1}, {-46.0, -2.0, 0, 1}, {-45.0, -2.0, 0, 1}, + {-44.0, -2.0, 0, 1}, {-43.0, -2.0, 0, 1}, {-42.0, -2.0, 0, 1}, {-41.0, -2.0, 0, 1}, {-40.0, -2.0, 0, 1}, {-39.0, -2.0, 0, 1}, + {-38.0, -2.0, 0, 1}, {-33.0, -2.0, 0, 1}, {-32.0, -2.0, 0, 1}, {-31.0, -2.0, 0, 1}, {-30.0, -2.0, 0, 1}, {-23.0, -2.0, 0, 1}, + {-22.0, -2.0, 0, 1}, {-21.0, -2.0, 0, 1}, {-20.0, -2.0, 0, 1}, {-17.0, -2.0, 0, 1}, {-16.0, -2.0, 0, 1}, {-15.0, -2.0, 0, 1}, + {-14.0, -2.0, 0, 1}, {-7.0, -2.0, 0, 1}, {-6.0, -2.0, 0, 1}, {-5.0, -2.0, 0, 1}, {-1.0, -2.0, 0, 1}, {0.0, -2.0, 0, 1}, + {1.0, -2.0, 0, 1}, {2.0, -2.0, 0, 1}, {3.0, -2.0, 0, 1}, {4.0, -2.0, 0, 1}, {5.0, -2.0, 0, 1}, {6.0, -2.0, 0, 1}, + {7.0, -2.0, 0, 1}, {8.0, -2.0, 0, 1}, {9.0, -2.0, 0, 1}, {14.0, -2.0, 0, 1}, {15.0, -2.0, 0, 1}, {16.0, -2.0, 0, 1}, + {17.0, -2.0, 0, 1}, {18.0, -2.0, 0, 1}, {19.0, -2.0, 0, 1}, {20.0, -2.0, 0, 1}, {21.0, -2.0, 0, 1}, {22.0, -2.0, 0, 1}, + {23.0, -2.0, 0, 1}, {24.0, -2.0, 0, 1}, {30.0, -2.0, 0, 1}, {31.0, -2.0, 0, 1}, {32.0, -2.0, 0, 1}, {33.0, -2.0, 0, 1}, + {34.0, -2.0, 0, 1}, {35.0, -2.0, 0, 1}, {36.0, -2.0, 0, 1}, {37.0, -2.0, 0, 1}, {38.0, -2.0, 0, 1}, {39.0, -2.0, 0, 1}, + {40.0, -2.0, 0, 1}, {45.0, -2.0, 0, 1}, {46.0, -2.0, 0, 1}, {47.0, -2.0, 0, 1}, {51.0, -2.0, 0, 1}, {52.0, -2.0, 0, 1}, + {53.0, -2.0, 0, 1}, {54.0, -2.0, 0, 1}, {55.0, -2.0, 0, 1}, {56.0, -2.0, 0, 1}, {57.0, -2.0, 0, 1}, {58.0, -2.0, 0, 1}, + {59.0, -2.0, 0, 1}, {60.0, -2.0, 0, 1}, {61.0, -2.0, 0, 1}, {-63.0, -1.0, 0, 1}, {-62.0, -1.0, 0, 1}, {-61.0, -1.0, 0, 1}, + {-60.0, -1.0, 0, 1}, {-59.0, -1.0, 0, 1}, {-58.0, -1.0, 0, 1}, {-57.0, -1.0, 0, 1}, {-56.0, -1.0, 0, 1}, {-55.0, -1.0, 0, 1}, + {-54.0, -1.0, 0, 1}, {-53.0, -1.0, 0, 1}, {-48.0, -1.0, 0, 1}, {-47.0, -1.0, 0, 1}, {-46.0, -1.0, 0, 1}, {-45.0, -1.0, 0, 1}, + {-44.0, -1.0, 0, 1}, {-43.0, -1.0, 0, 1}, {-42.0, -1.0, 0, 1}, {-41.0, -1.0, 0, 1}, {-40.0, -1.0, 0, 1}, {-39.0, -1.0, 0, 1}, + {-38.0, -1.0, 0, 1}, {-37.0, -1.0, 0, 1}, {-33.0, -1.0, 0, 1}, {-32.0, -1.0, 0, 1}, {-31.0, -1.0, 0, 1}, {-30.0, -1.0, 0, 1}, + {-29.0, -1.0, 0, 1}, {-28.0, -1.0, 0, 1}, {-27.0, -1.0, 0, 1}, {-26.0, -1.0, 0, 1}, {-25.0, -1.0, 0, 1}, {-24.0, -1.0, 0, 1}, + {-23.0, -1.0, 0, 1}, {-22.0, -1.0, 0, 1}, {-21.0, -1.0, 0, 1}, {-20.0, -1.0, 0, 1}, {-17.0, -1.0, 0, 1}, {-16.0, -1.0, 0, 1}, + {-15.0, -1.0, 0, 1}, {-14.0, -1.0, 0, 1}, {-13.0, -1.0, 0, 1}, {-12.0, -1.0, 0, 1}, {-11.0, -1.0, 0, 1}, {-10.0, -1.0, 0, 1}, + {-9.0, -1.0, 0, 1}, {-8.0, -1.0, 0, 1}, {-7.0, -1.0, 0, 1}, {-6.0, -1.0, 0, 1}, {-5.0, -1.0, 0, 1}, {-1.0, -1.0, 0, 1}, + {0.0, -1.0, 0, 1}, {1.0, -1.0, 0, 1}, {2.0, -1.0, 0, 1}, {3.0, -1.0, 0, 1}, {4.0, -1.0, 0, 1}, {5.0, -1.0, 0, 1}, + {6.0, -1.0, 0, 1}, {7.0, -1.0, 0, 1}, {8.0, -1.0, 0, 1}, {9.0, -1.0, 0, 1}, {14.0, -1.0, 0, 1}, {15.0, -1.0, 0, 1}, + {16.0, -1.0, 0, 1}, {17.0, -1.0, 0, 1}, {18.0, -1.0, 0, 1}, {19.0, -1.0, 0, 1}, {20.0, -1.0, 0, 1}, {21.0, -1.0, 0, 1}, + {22.0, -1.0, 0, 1}, {23.0, -1.0, 0, 1}, {24.0, -1.0, 0, 1}, {25.0, -1.0, 0, 1}, {30.0, -1.0, 0, 1}, {31.0, -1.0, 0, 1}, + {32.0, -1.0, 0, 1}, {33.0, -1.0, 0, 1}, {34.0, -1.0, 0, 1}, {35.0, -1.0, 0, 1}, {36.0, -1.0, 0, 1}, {37.0, -1.0, 0, 1}, + {38.0, -1.0, 0, 1}, {39.0, -1.0, 0, 1}, {40.0, -1.0, 0, 1}, {41.0, -1.0, 0, 1}, {45.0, -1.0, 0, 1}, {46.0, -1.0, 0, 1}, + {47.0, -1.0, 0, 1}, {51.0, -1.0, 0, 1}, {52.0, -1.0, 0, 1}, {53.0, -1.0, 0, 1}, {54.0, -1.0, 0, 1}, {55.0, -1.0, 0, 1}, + {56.0, -1.0, 0, 1}, {57.0, -1.0, 0, 1}, {58.0, -1.0, 0, 1}, {59.0, -1.0, 0, 1}, {60.0, -1.0, 0, 1}, {61.0, -1.0, 0, 1}, + {-63.0, 0.0, 0, 1}, {-62.0, 0.0, 0, 1}, {-61.0, 0.0, 0, 1}, {-60.0, 0.0, 0, 1}, {-59.0, 0.0, 0, 1}, {-58.0, 0.0, 0, 1}, + {-57.0, 0.0, 0, 1}, {-56.0, 0.0, 0, 1}, {-55.0, 0.0, 0, 1}, {-54.0, 0.0, 0, 1}, {-53.0, 0.0, 0, 1}, {-47.0, 0.0, 0, 1}, + {-46.0, 0.0, 0, 1}, {-45.0, 0.0, 0, 1}, {-44.0, 0.0, 0, 1}, {-43.0, 0.0, 0, 1}, {-42.0, 0.0, 0, 1}, {-41.0, 0.0, 0, 1}, + {-40.0, 0.0, 0, 1}, {-39.0, 0.0, 0, 1}, {-38.0, 0.0, 0, 1}, {-37.0, 0.0, 0, 1}, {-33.0, 0.0, 0, 1}, {-32.0, 0.0, 0, 1}, + {-31.0, 0.0, 0, 1}, {-30.0, 0.0, 0, 1}, {-29.0, 0.0, 0, 1}, {-28.0, 0.0, 0, 1}, {-27.0, 0.0, 0, 1}, {-26.0, 0.0, 0, 1}, + {-25.0, 0.0, 0, 1}, {-24.0, 0.0, 0, 1}, {-23.0, 0.0, 0, 1}, {-22.0, 0.0, 0, 1}, {-21.0, 0.0, 0, 1}, {-17.0, 0.0, 0, 1}, + {-16.0, 0.0, 0, 1}, {-15.0, 0.0, 0, 1}, {-14.0, 0.0, 0, 1}, {-13.0, 0.0, 0, 1}, {-12.0, 0.0, 0, 1}, {-11.0, 0.0, 0, 1}, + {-10.0, 0.0, 0, 1}, {-9.0, 0.0, 0, 1}, {-8.0, 0.0, 0, 1}, {-7.0, 0.0, 0, 1}, {-6.0, 0.0, 0, 1}, {-5.0, 0.0, 0, 1}, + {-1.0, 0.0, 0, 1}, {0.0, 0.0, 0, 1}, {1.0, 0.0, 0, 1}, {2.0, 0.0, 0, 1}, {3.0, 0.0, 0, 1}, {4.0, 0.0, 0, 1}, + {5.0, 0.0, 0, 1}, {6.0, 0.0, 0, 1}, {7.0, 0.0, 0, 1}, {8.0, 0.0, 0, 1}, {9.0, 0.0, 0, 1}, {15.0, 0.0, 0, 1}, + {16.0, 0.0, 0, 1}, {17.0, 0.0, 0, 1}, {18.0, 0.0, 0, 1}, {19.0, 0.0, 0, 1}, {20.0, 0.0, 0, 1}, {21.0, 0.0, 0, 1}, + {22.0, 0.0, 0, 1}, {23.0, 0.0, 0, 1}, {24.0, 0.0, 0, 1}, {25.0, 0.0, 0, 1}, {26.0, 0.0, 0, 1}, {31.0, 0.0, 0, 1}, + {32.0, 0.0, 0, 1}, {33.0, 0.0, 0, 1}, {34.0, 0.0, 0, 1}, {35.0, 0.0, 0, 1}, {36.0, 0.0, 0, 1}, {37.0, 0.0, 0, 1}, + {38.0, 0.0, 0, 1}, {39.0, 0.0, 0, 1}, {40.0, 0.0, 0, 1}, {41.0, 0.0, 0, 1}, {45.0, 0.0, 0, 1}, {46.0, 0.0, 0, 1}, + {47.0, 0.0, 0, 1}, {51.0, 0.0, 0, 1}, {52.0, 0.0, 0, 1}, {53.0, 0.0, 0, 1}, {54.0, 0.0, 0, 1}, {55.0, 0.0, 0, 1}, + {56.0, 0.0, 0, 1}, {57.0, 0.0, 0, 1}, {58.0, 0.0, 0, 1}, {59.0, 0.0, 0, 1}, {60.0, 0.0, 0, 1}, {61.0, 0.0, 0, 1}, + {-63.0, 1.0, 0, 1}, {-62.0, 1.0, 0, 1}, {-61.0, 1.0, 0, 1}, {-39.0, 1.0, 0, 1}, {-38.0, 1.0, 0, 1}, {-37.0, 1.0, 0, 1}, + {-36.0, 1.0, 0, 1}, {-33.0, 1.0, 0, 1}, {-32.0, 1.0, 0, 1}, {-31.0, 1.0, 0, 1}, {-30.0, 1.0, 0, 1}, {-29.0, 1.0, 0, 1}, + {-28.0, 1.0, 0, 1}, {-27.0, 1.0, 0, 1}, {-26.0, 1.0, 0, 1}, {-25.0, 1.0, 0, 1}, {-24.0, 1.0, 0, 1}, {-23.0, 1.0, 0, 1}, + {-22.0, 1.0, 0, 1}, {-21.0, 1.0, 0, 1}, {-17.0, 1.0, 0, 1}, {-16.0, 1.0, 0, 1}, {-15.0, 1.0, 0, 1}, {-14.0, 1.0, 0, 1}, + {-13.0, 1.0, 0, 1}, {-12.0, 1.0, 0, 1}, {-11.0, 1.0, 0, 1}, {-10.0, 1.0, 0, 1}, {-9.0, 1.0, 0, 1}, {-8.0, 1.0, 0, 1}, + {-7.0, 1.0, 0, 1}, {-6.0, 1.0, 0, 1}, {-1.0, 1.0, 0, 1}, {0.0, 1.0, 0, 1}, {1.0, 1.0, 0, 1}, {23.0, 1.0, 0, 1}, + {24.0, 1.0, 0, 1}, {25.0, 1.0, 0, 1}, {26.0, 1.0, 0, 1}, {38.0, 1.0, 0, 1}, {39.0, 1.0, 0, 1}, {40.0, 1.0, 0, 1}, + {41.0, 1.0, 0, 1}, {45.0, 1.0, 0, 1}, {46.0, 1.0, 0, 1}, {47.0, 1.0, 0, 1}, {51.0, 1.0, 0, 1}, {52.0, 1.0, 0, 1}, + {53.0, 1.0, 0, 1}, {-63.0, 2.0, 0, 1}, {-62.0, 2.0, 0, 1}, {-61.0, 2.0, 0, 1}, {-39.0, 2.0, 0, 1}, {-38.0, 2.0, 0, 1}, + {-37.0, 2.0, 0, 1}, {-36.0, 2.0, 0, 1}, {-33.0, 2.0, 0, 1}, {-32.0, 2.0, 0, 1}, {-31.0, 2.0, 0, 1}, {-30.0, 2.0, 0, 1}, + {-29.0, 2.0, 0, 1}, {-28.0, 2.0, 0, 1}, {-27.0, 2.0, 0, 1}, {-26.0, 2.0, 0, 1}, {-25.0, 2.0, 0, 1}, {-24.0, 2.0, 0, 1}, + {-23.0, 2.0, 0, 1}, {-17.0, 2.0, 0, 1}, {-16.0, 2.0, 0, 1}, {-15.0, 2.0, 0, 1}, {-14.0, 2.0, 0, 1}, {-9.0, 2.0, 0, 1}, + {-8.0, 2.0, 0, 1}, {-7.0, 2.0, 0, 1}, {-6.0, 2.0, 0, 1}, {-1.0, 2.0, 0, 1}, {0.0, 2.0, 0, 1}, {1.0, 2.0, 0, 1}, + {24.0, 2.0, 0, 1}, {25.0, 2.0, 0, 1}, {26.0, 2.0, 0, 1}, {39.0, 2.0, 0, 1}, {40.0, 2.0, 0, 1}, {41.0, 2.0, 0, 1}, + {45.0, 2.0, 0, 1}, {46.0, 2.0, 0, 1}, {47.0, 2.0, 0, 1}, {51.0, 2.0, 0, 1}, {52.0, 2.0, 0, 1}, {53.0, 2.0, 0, 1}, + {-63.0, 3.0, 0, 1}, {-62.0, 3.0, 0, 1}, {-61.0, 3.0, 0, 1}, {-39.0, 3.0, 0, 1}, {-38.0, 3.0, 0, 1}, {-37.0, 3.0, 0, 1}, + {-36.0, 3.0, 0, 1}, {-33.0, 3.0, 0, 1}, {-32.0, 3.0, 0, 1}, {-31.0, 3.0, 0, 1}, {-30.0, 3.0, 0, 1}, {-17.0, 3.0, 0, 1}, + {-16.0, 3.0, 0, 1}, {-15.0, 3.0, 0, 1}, {-14.0, 3.0, 0, 1}, {-8.0, 3.0, 0, 1}, {-7.0, 3.0, 0, 1}, {-6.0, 3.0, 0, 1}, + {-1.0, 3.0, 0, 1}, {0.0, 3.0, 0, 1}, {1.0, 3.0, 0, 1}, {24.0, 3.0, 0, 1}, {25.0, 3.0, 0, 1}, {26.0, 3.0, 0, 1}, + {39.0, 3.0, 0, 1}, {40.0, 3.0, 0, 1}, {41.0, 3.0, 0, 1}, {45.0, 3.0, 0, 1}, {46.0, 3.0, 0, 1}, {47.0, 3.0, 0, 1}, + {51.0, 3.0, 0, 1}, {52.0, 3.0, 0, 1}, {53.0, 3.0, 0, 1}, {-63.0, 4.0, 0, 1}, {-62.0, 4.0, 0, 1}, {-61.0, 4.0, 0, 1}, + {-39.0, 4.0, 0, 1}, {-38.0, 4.0, 0, 1}, {-37.0, 4.0, 0, 1}, {-36.0, 4.0, 0, 1}, {-33.0, 4.0, 0, 1}, {-32.0, 4.0, 0, 1}, + {-31.0, 4.0, 0, 1}, {-30.0, 4.0, 0, 1}, {-17.0, 4.0, 0, 1}, {-16.0, 4.0, 0, 1}, {-15.0, 4.0, 0, 1}, {-14.0, 4.0, 0, 1}, + {-7.0, 4.0, 0, 1}, {-6.0, 4.0, 0, 1}, {-5.0, 4.0, 0, 1}, {-1.0, 4.0, 0, 1}, {0.0, 4.0, 0, 1}, {1.0, 4.0, 0, 1}, + {24.0, 4.0, 0, 1}, {25.0, 4.0, 0, 1}, {26.0, 4.0, 0, 1}, {39.0, 4.0, 0, 1}, {40.0, 4.0, 0, 1}, {41.0, 4.0, 0, 1}, + {45.0, 4.0, 0, 1}, {46.0, 4.0, 0, 1}, {47.0, 4.0, 0, 1}, {51.0, 4.0, 0, 1}, {52.0, 4.0, 0, 1}, {53.0, 4.0, 0, 1}, + {-63.0, 5.0, 0, 1}, {-62.0, 5.0, 0, 1}, {-61.0, 5.0, 0, 1}, {-39.0, 5.0, 0, 1}, {-38.0, 5.0, 0, 1}, {-37.0, 5.0, 0, 1}, + {-36.0, 5.0, 0, 1}, {-33.0, 5.0, 0, 1}, {-32.0, 5.0, 0, 1}, {-31.0, 5.0, 0, 1}, {-30.0, 5.0, 0, 1}, {-17.0, 5.0, 0, 1}, + {-16.0, 5.0, 0, 1}, {-15.0, 5.0, 0, 1}, {-14.0, 5.0, 0, 1}, {-7.0, 5.0, 0, 1}, {-6.0, 5.0, 0, 1}, {-5.0, 5.0, 0, 1}, + {-1.0, 5.0, 0, 1}, {0.0, 5.0, 0, 1}, {1.0, 5.0, 0, 1}, {24.0, 5.0, 0, 1}, {25.0, 5.0, 0, 1}, {26.0, 5.0, 0, 1}, + {39.0, 5.0, 0, 1}, {40.0, 5.0, 0, 1}, {41.0, 5.0, 0, 1}, {45.0, 5.0, 0, 1}, {46.0, 5.0, 0, 1}, {47.0, 5.0, 0, 1}, + {51.0, 5.0, 0, 1}, {52.0, 5.0, 0, 1}, {53.0, 5.0, 0, 1}, {-63.0, 6.0, 0, 1}, {-62.0, 6.0, 0, 1}, {-61.0, 6.0, 0, 1}, + {-39.0, 6.0, 0, 1}, {-38.0, 6.0, 0, 1}, {-37.0, 6.0, 0, 1}, {-36.0, 6.0, 0, 1}, {-33.0, 6.0, 0, 1}, {-32.0, 6.0, 0, 1}, + {-31.0, 6.0, 0, 1}, {-30.0, 6.0, 0, 1}, {-17.0, 6.0, 0, 1}, {-16.0, 6.0, 0, 1}, {-15.0, 6.0, 0, 1}, {-14.0, 6.0, 0, 1}, + {-7.0, 6.0, 0, 1}, {-6.0, 6.0, 0, 1}, {-5.0, 6.0, 0, 1}, {-1.0, 6.0, 0, 1}, {0.0, 6.0, 0, 1}, {1.0, 6.0, 0, 1}, + {24.0, 6.0, 0, 1}, {25.0, 6.0, 0, 1}, {26.0, 6.0, 0, 1}, {39.0, 6.0, 0, 1}, {40.0, 6.0, 0, 1}, {41.0, 6.0, 0, 1}, + {45.0, 6.0, 0, 1}, {46.0, 6.0, 0, 1}, {47.0, 6.0, 0, 1}, {51.0, 6.0, 0, 1}, {52.0, 6.0, 0, 1}, {53.0, 6.0, 0, 1}, + {-63.0, 7.0, 0, 1}, {-62.0, 7.0, 0, 1}, {-61.0, 7.0, 0, 1}, {-39.0, 7.0, 0, 1}, {-38.0, 7.0, 0, 1}, {-37.0, 7.0, 0, 1}, + {-36.0, 7.0, 0, 1}, {-33.0, 7.0, 0, 1}, {-32.0, 7.0, 0, 1}, {-31.0, 7.0, 0, 1}, {-30.0, 7.0, 0, 1}, {-17.0, 7.0, 0, 1}, + {-16.0, 7.0, 0, 1}, {-15.0, 7.0, 0, 1}, {-14.0, 7.0, 0, 1}, {-7.0, 7.0, 0, 1}, {-6.0, 7.0, 0, 1}, {-5.0, 7.0, 0, 1}, + {-1.0, 7.0, 0, 1}, {0.0, 7.0, 0, 1}, {1.0, 7.0, 0, 1}, {24.0, 7.0, 0, 1}, {25.0, 7.0, 0, 1}, {26.0, 7.0, 0, 1}, + {39.0, 7.0, 0, 1}, {40.0, 7.0, 0, 1}, {41.0, 7.0, 0, 1}, {45.0, 7.0, 0, 1}, {46.0, 7.0, 0, 1}, {47.0, 7.0, 0, 1}, + {51.0, 7.0, 0, 1}, {52.0, 7.0, 0, 1}, {53.0, 7.0, 0, 1}, {-63.0, 8.0, 0, 1}, {-62.0, 8.0, 0, 1}, {-61.0, 8.0, 0, 1}, + {-60.0, 8.0, 0, 1}, {-59.0, 8.0, 0, 1}, {-58.0, 8.0, 0, 1}, {-57.0, 8.0, 0, 1}, {-56.0, 8.0, 0, 1}, {-55.0, 8.0, 0, 1}, + {-54.0, 8.0, 0, 1}, {-53.0, 8.0, 0, 1}, {-52.0, 8.0, 0, 1}, {-48.0, 8.0, 0, 1}, {-47.0, 8.0, 0, 1}, {-46.0, 8.0, 0, 1}, + {-45.0, 8.0, 0, 1}, {-44.0, 8.0, 0, 1}, {-43.0, 8.0, 0, 1}, {-42.0, 8.0, 0, 1}, {-41.0, 8.0, 0, 1}, {-40.0, 8.0, 0, 1}, + {-39.0, 8.0, 0, 1}, {-38.0, 8.0, 0, 1}, {-37.0, 8.0, 0, 1}, {-33.0, 8.0, 0, 1}, {-32.0, 8.0, 0, 1}, {-31.0, 8.0, 0, 1}, + {-30.0, 8.0, 0, 1}, {-17.0, 8.0, 0, 1}, {-16.0, 8.0, 0, 1}, {-15.0, 8.0, 0, 1}, {-14.0, 8.0, 0, 1}, {-7.0, 8.0, 0, 1}, + {-6.0, 8.0, 0, 1}, {-5.0, 8.0, 0, 1}, {-4.0, 8.0, 0, 1}, {-1.0, 8.0, 0, 1}, {0.0, 8.0, 0, 1}, {1.0, 8.0, 0, 1}, + {2.0, 8.0, 0, 1}, {3.0, 8.0, 0, 1}, {4.0, 8.0, 0, 1}, {5.0, 8.0, 0, 1}, {6.0, 8.0, 0, 1}, {7.0, 8.0, 0, 1}, + {8.0, 8.0, 0, 1}, {9.0, 8.0, 0, 1}, {10.0, 8.0, 0, 1}, {14.0, 8.0, 0, 1}, {15.0, 8.0, 0, 1}, {16.0, 8.0, 0, 1}, + {17.0, 8.0, 0, 1}, {18.0, 8.0, 0, 1}, {19.0, 8.0, 0, 1}, {20.0, 8.0, 0, 1}, {21.0, 8.0, 0, 1}, {22.0, 8.0, 0, 1}, + {23.0, 8.0, 0, 1}, {24.0, 8.0, 0, 1}, {25.0, 8.0, 0, 1}, {26.0, 8.0, 0, 1}, {29.0, 8.0, 0, 1}, {30.0, 8.0, 0, 1}, + {31.0, 8.0, 0, 1}, {32.0, 8.0, 0, 1}, {33.0, 8.0, 0, 1}, {34.0, 8.0, 0, 1}, {35.0, 8.0, 0, 1}, {36.0, 8.0, 0, 1}, + {37.0, 8.0, 0, 1}, {38.0, 8.0, 0, 1}, {39.0, 8.0, 0, 1}, {40.0, 8.0, 0, 1}, {41.0, 8.0, 0, 1}, {45.0, 8.0, 0, 1}, + {46.0, 8.0, 0, 1}, {47.0, 8.0, 0, 1}, {51.0, 8.0, 0, 1}, {52.0, 8.0, 0, 1}, {53.0, 8.0, 0, 1}, {-63.0, 9.0, 0, 1}, + {-62.0, 9.0, 0, 1}, {-61.0, 9.0, 0, 1}, {-60.0, 9.0, 0, 1}, {-59.0, 9.0, 0, 1}, {-58.0, 9.0, 0, 1}, {-57.0, 9.0, 0, 1}, + {-56.0, 9.0, 0, 1}, {-55.0, 9.0, 0, 1}, {-54.0, 9.0, 0, 1}, {-53.0, 9.0, 0, 1}, {-52.0, 9.0, 0, 1}, {-48.0, 9.0, 0, 1}, + {-47.0, 9.0, 0, 1}, {-46.0, 9.0, 0, 1}, {-45.0, 9.0, 0, 1}, {-44.0, 9.0, 0, 1}, {-43.0, 9.0, 0, 1}, {-42.0, 9.0, 0, 1}, + {-41.0, 9.0, 0, 1}, {-40.0, 9.0, 0, 1}, {-39.0, 9.0, 0, 1}, {-38.0, 9.0, 0, 1}, {-37.0, 9.0, 0, 1}, {-33.0, 9.0, 0, 1}, + {-32.0, 9.0, 0, 1}, {-31.0, 9.0, 0, 1}, {-30.0, 9.0, 0, 1}, {-17.0, 9.0, 0, 1}, {-16.0, 9.0, 0, 1}, {-15.0, 9.0, 0, 1}, + {-14.0, 9.0, 0, 1}, {-6.0, 9.0, 0, 1}, {-5.0, 9.0, 0, 1}, {-4.0, 9.0, 0, 1}, {0.0, 9.0, 0, 1}, {1.0, 9.0, 0, 1}, + {2.0, 9.0, 0, 1}, {3.0, 9.0, 0, 1}, {4.0, 9.0, 0, 1}, {5.0, 9.0, 0, 1}, {6.0, 9.0, 0, 1}, {7.0, 9.0, 0, 1}, + {8.0, 9.0, 0, 1}, {9.0, 9.0, 0, 1}, {10.0, 9.0, 0, 1}, {14.0, 9.0, 0, 1}, {15.0, 9.0, 0, 1}, {16.0, 9.0, 0, 1}, + {17.0, 9.0, 0, 1}, {18.0, 9.0, 0, 1}, {19.0, 9.0, 0, 1}, {20.0, 9.0, 0, 1}, {21.0, 9.0, 0, 1}, {22.0, 9.0, 0, 1}, + {23.0, 9.0, 0, 1}, {24.0, 9.0, 0, 1}, {25.0, 9.0, 0, 1}, {29.0, 9.0, 0, 1}, {30.0, 9.0, 0, 1}, {31.0, 9.0, 0, 1}, + {32.0, 9.0, 0, 1}, {33.0, 9.0, 0, 1}, {34.0, 9.0, 0, 1}, {35.0, 9.0, 0, 1}, {36.0, 9.0, 0, 1}, {37.0, 9.0, 0, 1}, + {38.0, 9.0, 0, 1}, {39.0, 9.0, 0, 1}, {40.0, 9.0, 0, 1}, {41.0, 9.0, 0, 1}, {45.0, 9.0, 0, 1}, {46.0, 9.0, 0, 1}, + {47.0, 9.0, 0, 1}, {51.0, 9.0, 0, 1}, {52.0, 9.0, 0, 1}, {53.0, 9.0, 0, 1}, {-62.0, 10.0, 0, 1}, {-61.0, 10.0, 0, 1}, + {-60.0, 10.0, 0, 1}, {-59.0, 10.0, 0, 1}, {-58.0, 10.0, 0, 1}, {-57.0, 10.0, 0, 1}, {-56.0, 10.0, 0, 1}, {-55.0, 10.0, 0, 1}, + {-54.0, 10.0, 0, 1}, {-53.0, 10.0, 0, 1}, {-52.0, 10.0, 0, 1}, {-48.0, 10.0, 0, 1}, {-47.0, 10.0, 0, 1}, {-46.0, 10.0, 0, 1}, + {-45.0, 10.0, 0, 1}, {-44.0, 10.0, 0, 1}, {-43.0, 10.0, 0, 1}, {-42.0, 10.0, 0, 1}, {-41.0, 10.0, 0, 1}, {-40.0, 10.0, 0, 1}, + {-39.0, 10.0, 0, 1}, {-38.0, 10.0, 0, 1}, {-33.0, 10.0, 0, 1}, {-32.0, 10.0, 0, 1}, {-31.0, 10.0, 0, 1}, {-30.0, 10.0, 0, 1}, + {-17.0, 10.0, 0, 1}, {-16.0, 10.0, 0, 1}, {-15.0, 10.0, 0, 1}, {-14.0, 10.0, 0, 1}, {-6.0, 10.0, 0, 1}, {-5.0, 10.0, 0, 1}, + {-4.0, 10.0, 0, 1}, {0.0, 10.0, 0, 1}, {1.0, 10.0, 0, 1}, {2.0, 10.0, 0, 1}, {3.0, 10.0, 0, 1}, {4.0, 10.0, 0, 1}, + {5.0, 10.0, 0, 1}, {6.0, 10.0, 0, 1}, {7.0, 10.0, 0, 1}, {8.0, 10.0, 0, 1}, {9.0, 10.0, 0, 1}, {10.0, 10.0, 0, 1}, + {14.0, 10.0, 0, 1}, {15.0, 10.0, 0, 1}, {16.0, 10.0, 0, 1}, {17.0, 10.0, 0, 1}, {18.0, 10.0, 0, 1}, {19.0, 10.0, 0, 1}, + {20.0, 10.0, 0, 1}, {21.0, 10.0, 0, 1}, {22.0, 10.0, 0, 1}, {23.0, 10.0, 0, 1}, {24.0, 10.0, 0, 1}, {29.0, 10.0, 0, 1}, + {30.0, 10.0, 0, 1}, {31.0, 10.0, 0, 1}, {32.0, 10.0, 0, 1}, {33.0, 10.0, 0, 1}, {34.0, 10.0, 0, 1}, {35.0, 10.0, 0, 1}, + {36.0, 10.0, 0, 1}, {37.0, 10.0, 0, 1}, {38.0, 10.0, 0, 1}, {39.0, 10.0, 0, 1}, {40.0, 10.0, 0, 1}, {45.0, 10.0, 0, 1}, + {46.0, 10.0, 0, 1}, {47.0, 10.0, 0, 1}, {51.0, 10.0, 0, 1}, {52.0, 10.0, 0, 1}, {53.0, 10.0, 0, 1} +}; diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.h new file mode 100644 index 0000000..e4e2333 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.h @@ -0,0 +1,16 @@ +// File generated by image_to_3d_array.py + +#pragma once + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t image_bmp_array_esp_text[384]; +extern const float image_3d_array_esp_text[1271][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c new file mode 100644 index 0000000..bca06f0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c @@ -0,0 +1,338 @@ +// File generated by ImgTo3D.py +// Image file converted to 3D matrix cpu_logo.png + +#include "image_to_3d_matrix.h" + +#ifdef CONFIG_3D_OBJECT_CUSTOM + +const uint8_t image_to_bmp_array_custom[512] = { + + 0x00, 0x00, 0x0e, 0x1c, 0x38, 0x70, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xfe, + 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0x00, 0x1e, 0x0f, 0xff, 0xff, 0xf0, 0x78, 0x00, + 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, + 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfe, 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, + 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfc, 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, + 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfe, + 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfe, + 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, + 0x7f, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xfc, 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, + 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xfe, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3c, 0x7c, 0x78, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x1c, 0x38, 0x70, 0x00, 0x00 + +}; + +const float image_to_3d_matrix_custom[1732][4] = { + + {-12.0, -32.0, 0, 1}, {-11.0, -32.0, 0, 1}, {-10.0, -32.0, 0, 1}, {-5.0, -32.0, 0, 1}, {-4.0, -32.0, 0, 1}, {-3.0, -32.0, 0, 1}, + {2.0, -32.0, 0, 1}, {3.0, -32.0, 0, 1}, {4.0, -32.0, 0, 1}, {9.0, -32.0, 0, 1}, {10.0, -32.0, 0, 1}, {11.0, -32.0, 0, 1}, + {-13.0, -31.0, 0, 1}, {-12.0, -31.0, 0, 1}, {-11.0, -31.0, 0, 1}, {-10.0, -31.0, 0, 1}, {-6.0, -31.0, 0, 1}, {-5.0, -31.0, 0, 1}, + {-4.0, -31.0, 0, 1}, {-3.0, -31.0, 0, 1}, {-2.0, -31.0, 0, 1}, {1.0, -31.0, 0, 1}, {2.0, -31.0, 0, 1}, {3.0, -31.0, 0, 1}, + {4.0, -31.0, 0, 1}, {5.0, -31.0, 0, 1}, {8.0, -31.0, 0, 1}, {9.0, -31.0, 0, 1}, {10.0, -31.0, 0, 1}, {11.0, -31.0, 0, 1}, + {12.0, -31.0, 0, 1}, {-13.0, -30.0, 0, 1}, {-12.0, -30.0, 0, 1}, {-11.0, -30.0, 0, 1}, {-10.0, -30.0, 0, 1}, {-6.0, -30.0, 0, 1}, + {-5.0, -30.0, 0, 1}, {-4.0, -30.0, 0, 1}, {-3.0, -30.0, 0, 1}, {-2.0, -30.0, 0, 1}, {1.0, -30.0, 0, 1}, {2.0, -30.0, 0, 1}, + {3.0, -30.0, 0, 1}, {4.0, -30.0, 0, 1}, {5.0, -30.0, 0, 1}, {8.0, -30.0, 0, 1}, {9.0, -30.0, 0, 1}, {10.0, -30.0, 0, 1}, + {11.0, -30.0, 0, 1}, {12.0, -30.0, 0, 1}, {-13.0, -29.0, 0, 1}, {-12.0, -29.0, 0, 1}, {-11.0, -29.0, 0, 1}, {-10.0, -29.0, 0, 1}, + {-6.0, -29.0, 0, 1}, {-5.0, -29.0, 0, 1}, {-4.0, -29.0, 0, 1}, {-3.0, -29.0, 0, 1}, {-2.0, -29.0, 0, 1}, {1.0, -29.0, 0, 1}, + {2.0, -29.0, 0, 1}, {3.0, -29.0, 0, 1}, {4.0, -29.0, 0, 1}, {5.0, -29.0, 0, 1}, {8.0, -29.0, 0, 1}, {9.0, -29.0, 0, 1}, + {10.0, -29.0, 0, 1}, {11.0, -29.0, 0, 1}, {12.0, -29.0, 0, 1}, {-13.0, -28.0, 0, 1}, {-12.0, -28.0, 0, 1}, {-11.0, -28.0, 0, 1}, + {-10.0, -28.0, 0, 1}, {-6.0, -28.0, 0, 1}, {-5.0, -28.0, 0, 1}, {-4.0, -28.0, 0, 1}, {-3.0, -28.0, 0, 1}, {-2.0, -28.0, 0, 1}, + {1.0, -28.0, 0, 1}, {2.0, -28.0, 0, 1}, {3.0, -28.0, 0, 1}, {4.0, -28.0, 0, 1}, {5.0, -28.0, 0, 1}, {8.0, -28.0, 0, 1}, + {9.0, -28.0, 0, 1}, {10.0, -28.0, 0, 1}, {11.0, -28.0, 0, 1}, {12.0, -28.0, 0, 1}, {-13.0, -27.0, 0, 1}, {-12.0, -27.0, 0, 1}, + {-11.0, -27.0, 0, 1}, {-10.0, -27.0, 0, 1}, {-6.0, -27.0, 0, 1}, {-5.0, -27.0, 0, 1}, {-4.0, -27.0, 0, 1}, {-3.0, -27.0, 0, 1}, + {-2.0, -27.0, 0, 1}, {1.0, -27.0, 0, 1}, {2.0, -27.0, 0, 1}, {3.0, -27.0, 0, 1}, {4.0, -27.0, 0, 1}, {5.0, -27.0, 0, 1}, + {8.0, -27.0, 0, 1}, {9.0, -27.0, 0, 1}, {10.0, -27.0, 0, 1}, {11.0, -27.0, 0, 1}, {12.0, -27.0, 0, 1}, {-13.0, -26.0, 0, 1}, + {-12.0, -26.0, 0, 1}, {-11.0, -26.0, 0, 1}, {-10.0, -26.0, 0, 1}, {-6.0, -26.0, 0, 1}, {-5.0, -26.0, 0, 1}, {-4.0, -26.0, 0, 1}, + {-3.0, -26.0, 0, 1}, {-2.0, -26.0, 0, 1}, {1.0, -26.0, 0, 1}, {2.0, -26.0, 0, 1}, {3.0, -26.0, 0, 1}, {4.0, -26.0, 0, 1}, + {5.0, -26.0, 0, 1}, {8.0, -26.0, 0, 1}, {9.0, -26.0, 0, 1}, {10.0, -26.0, 0, 1}, {11.0, -26.0, 0, 1}, {12.0, -26.0, 0, 1}, + {-13.0, -25.0, 0, 1}, {-12.0, -25.0, 0, 1}, {-11.0, -25.0, 0, 1}, {-10.0, -25.0, 0, 1}, {-6.0, -25.0, 0, 1}, {-5.0, -25.0, 0, 1}, + {-4.0, -25.0, 0, 1}, {-3.0, -25.0, 0, 1}, {-2.0, -25.0, 0, 1}, {1.0, -25.0, 0, 1}, {2.0, -25.0, 0, 1}, {3.0, -25.0, 0, 1}, + {4.0, -25.0, 0, 1}, {5.0, -25.0, 0, 1}, {8.0, -25.0, 0, 1}, {9.0, -25.0, 0, 1}, {10.0, -25.0, 0, 1}, {11.0, -25.0, 0, 1}, + {12.0, -25.0, 0, 1}, {-13.0, -24.0, 0, 1}, {-12.0, -24.0, 0, 1}, {-11.0, -24.0, 0, 1}, {-10.0, -24.0, 0, 1}, {-6.0, -24.0, 0, 1}, + {-5.0, -24.0, 0, 1}, {-4.0, -24.0, 0, 1}, {-3.0, -24.0, 0, 1}, {-2.0, -24.0, 0, 1}, {1.0, -24.0, 0, 1}, {2.0, -24.0, 0, 1}, + {3.0, -24.0, 0, 1}, {4.0, -24.0, 0, 1}, {5.0, -24.0, 0, 1}, {8.0, -24.0, 0, 1}, {9.0, -24.0, 0, 1}, {10.0, -24.0, 0, 1}, + {11.0, -24.0, 0, 1}, {12.0, -24.0, 0, 1}, {-13.0, -23.0, 0, 1}, {-12.0, -23.0, 0, 1}, {-11.0, -23.0, 0, 1}, {-10.0, -23.0, 0, 1}, + {-6.0, -23.0, 0, 1}, {-5.0, -23.0, 0, 1}, {-4.0, -23.0, 0, 1}, {-3.0, -23.0, 0, 1}, {-2.0, -23.0, 0, 1}, {1.0, -23.0, 0, 1}, + {2.0, -23.0, 0, 1}, {3.0, -23.0, 0, 1}, {4.0, -23.0, 0, 1}, {5.0, -23.0, 0, 1}, {8.0, -23.0, 0, 1}, {9.0, -23.0, 0, 1}, + {10.0, -23.0, 0, 1}, {11.0, -23.0, 0, 1}, {12.0, -23.0, 0, 1}, {-13.0, -22.0, 0, 1}, {-12.0, -22.0, 0, 1}, {-11.0, -22.0, 0, 1}, + {-10.0, -22.0, 0, 1}, {-6.0, -22.0, 0, 1}, {-5.0, -22.0, 0, 1}, {-4.0, -22.0, 0, 1}, {-3.0, -22.0, 0, 1}, {-2.0, -22.0, 0, 1}, + {1.0, -22.0, 0, 1}, {2.0, -22.0, 0, 1}, {3.0, -22.0, 0, 1}, {4.0, -22.0, 0, 1}, {5.0, -22.0, 0, 1}, {8.0, -22.0, 0, 1}, + {9.0, -22.0, 0, 1}, {10.0, -22.0, 0, 1}, {11.0, -22.0, 0, 1}, {12.0, -22.0, 0, 1}, {-21.0, -21.0, 0, 1}, {-20.0, -21.0, 0, 1}, + {-19.0, -21.0, 0, 1}, {-18.0, -21.0, 0, 1}, {-17.0, -21.0, 0, 1}, {-16.0, -21.0, 0, 1}, {-15.0, -21.0, 0, 1}, {-14.0, -21.0, 0, 1}, + {-13.0, -21.0, 0, 1}, {-12.0, -21.0, 0, 1}, {-11.0, -21.0, 0, 1}, {-10.0, -21.0, 0, 1}, {-9.0, -21.0, 0, 1}, {-8.0, -21.0, 0, 1}, + {-7.0, -21.0, 0, 1}, {-6.0, -21.0, 0, 1}, {-5.0, -21.0, 0, 1}, {-4.0, -21.0, 0, 1}, {-3.0, -21.0, 0, 1}, {-2.0, -21.0, 0, 1}, + {-1.0, -21.0, 0, 1}, {0.0, -21.0, 0, 1}, {1.0, -21.0, 0, 1}, {2.0, -21.0, 0, 1}, {3.0, -21.0, 0, 1}, {4.0, -21.0, 0, 1}, + {5.0, -21.0, 0, 1}, {6.0, -21.0, 0, 1}, {7.0, -21.0, 0, 1}, {8.0, -21.0, 0, 1}, {9.0, -21.0, 0, 1}, {10.0, -21.0, 0, 1}, + {11.0, -21.0, 0, 1}, {12.0, -21.0, 0, 1}, {13.0, -21.0, 0, 1}, {14.0, -21.0, 0, 1}, {15.0, -21.0, 0, 1}, {16.0, -21.0, 0, 1}, + {17.0, -21.0, 0, 1}, {18.0, -21.0, 0, 1}, {19.0, -21.0, 0, 1}, {20.0, -21.0, 0, 1}, {-21.0, -20.0, 0, 1}, {-20.0, -20.0, 0, 1}, + {-19.0, -20.0, 0, 1}, {-18.0, -20.0, 0, 1}, {-17.0, -20.0, 0, 1}, {-16.0, -20.0, 0, 1}, {-15.0, -20.0, 0, 1}, {-14.0, -20.0, 0, 1}, + {-13.0, -20.0, 0, 1}, {-12.0, -20.0, 0, 1}, {-11.0, -20.0, 0, 1}, {-10.0, -20.0, 0, 1}, {-9.0, -20.0, 0, 1}, {-8.0, -20.0, 0, 1}, + {-7.0, -20.0, 0, 1}, {-6.0, -20.0, 0, 1}, {-5.0, -20.0, 0, 1}, {-4.0, -20.0, 0, 1}, {-3.0, -20.0, 0, 1}, {-2.0, -20.0, 0, 1}, + {-1.0, -20.0, 0, 1}, {0.0, -20.0, 0, 1}, {1.0, -20.0, 0, 1}, {2.0, -20.0, 0, 1}, {3.0, -20.0, 0, 1}, {4.0, -20.0, 0, 1}, + {5.0, -20.0, 0, 1}, {6.0, -20.0, 0, 1}, {7.0, -20.0, 0, 1}, {8.0, -20.0, 0, 1}, {9.0, -20.0, 0, 1}, {10.0, -20.0, 0, 1}, + {11.0, -20.0, 0, 1}, {12.0, -20.0, 0, 1}, {13.0, -20.0, 0, 1}, {14.0, -20.0, 0, 1}, {15.0, -20.0, 0, 1}, {16.0, -20.0, 0, 1}, + {17.0, -20.0, 0, 1}, {18.0, -20.0, 0, 1}, {19.0, -20.0, 0, 1}, {20.0, -20.0, 0, 1}, {-21.0, -19.0, 0, 1}, {-20.0, -19.0, 0, 1}, + {-19.0, -19.0, 0, 1}, {-18.0, -19.0, 0, 1}, {-17.0, -19.0, 0, 1}, {-16.0, -19.0, 0, 1}, {-15.0, -19.0, 0, 1}, {-14.0, -19.0, 0, 1}, + {-13.0, -19.0, 0, 1}, {-12.0, -19.0, 0, 1}, {-11.0, -19.0, 0, 1}, {-10.0, -19.0, 0, 1}, {-9.0, -19.0, 0, 1}, {-8.0, -19.0, 0, 1}, + {-7.0, -19.0, 0, 1}, {-6.0, -19.0, 0, 1}, {-5.0, -19.0, 0, 1}, {-4.0, -19.0, 0, 1}, {-3.0, -19.0, 0, 1}, {-2.0, -19.0, 0, 1}, + {-1.0, -19.0, 0, 1}, {0.0, -19.0, 0, 1}, {1.0, -19.0, 0, 1}, {2.0, -19.0, 0, 1}, {3.0, -19.0, 0, 1}, {4.0, -19.0, 0, 1}, + {5.0, -19.0, 0, 1}, {6.0, -19.0, 0, 1}, {7.0, -19.0, 0, 1}, {8.0, -19.0, 0, 1}, {9.0, -19.0, 0, 1}, {10.0, -19.0, 0, 1}, + {11.0, -19.0, 0, 1}, {12.0, -19.0, 0, 1}, {13.0, -19.0, 0, 1}, {14.0, -19.0, 0, 1}, {15.0, -19.0, 0, 1}, {16.0, -19.0, 0, 1}, + {17.0, -19.0, 0, 1}, {18.0, -19.0, 0, 1}, {19.0, -19.0, 0, 1}, {20.0, -19.0, 0, 1}, {-21.0, -18.0, 0, 1}, {-20.0, -18.0, 0, 1}, + {-19.0, -18.0, 0, 1}, {-18.0, -18.0, 0, 1}, {-17.0, -18.0, 0, 1}, {-16.0, -18.0, 0, 1}, {-15.0, -18.0, 0, 1}, {-14.0, -18.0, 0, 1}, + {-13.0, -18.0, 0, 1}, {-12.0, -18.0, 0, 1}, {-11.0, -18.0, 0, 1}, {-10.0, -18.0, 0, 1}, {-9.0, -18.0, 0, 1}, {-8.0, -18.0, 0, 1}, + {-7.0, -18.0, 0, 1}, {-6.0, -18.0, 0, 1}, {-5.0, -18.0, 0, 1}, {-4.0, -18.0, 0, 1}, {-3.0, -18.0, 0, 1}, {-2.0, -18.0, 0, 1}, + {-1.0, -18.0, 0, 1}, {0.0, -18.0, 0, 1}, {1.0, -18.0, 0, 1}, {2.0, -18.0, 0, 1}, {3.0, -18.0, 0, 1}, {4.0, -18.0, 0, 1}, + {5.0, -18.0, 0, 1}, {6.0, -18.0, 0, 1}, {7.0, -18.0, 0, 1}, {8.0, -18.0, 0, 1}, {9.0, -18.0, 0, 1}, {10.0, -18.0, 0, 1}, + {11.0, -18.0, 0, 1}, {12.0, -18.0, 0, 1}, {13.0, -18.0, 0, 1}, {14.0, -18.0, 0, 1}, {15.0, -18.0, 0, 1}, {16.0, -18.0, 0, 1}, + {17.0, -18.0, 0, 1}, {18.0, -18.0, 0, 1}, {19.0, -18.0, 0, 1}, {20.0, -18.0, 0, 1}, {-21.0, -17.0, 0, 1}, {-20.0, -17.0, 0, 1}, + {-19.0, -17.0, 0, 1}, {-18.0, -17.0, 0, 1}, {17.0, -17.0, 0, 1}, {18.0, -17.0, 0, 1}, {19.0, -17.0, 0, 1}, {20.0, -17.0, 0, 1}, + {-21.0, -16.0, 0, 1}, {-20.0, -16.0, 0, 1}, {-19.0, -16.0, 0, 1}, {-18.0, -16.0, 0, 1}, {17.0, -16.0, 0, 1}, {18.0, -16.0, 0, 1}, + {19.0, -16.0, 0, 1}, {20.0, -16.0, 0, 1}, {-21.0, -15.0, 0, 1}, {-20.0, -15.0, 0, 1}, {-19.0, -15.0, 0, 1}, {-18.0, -15.0, 0, 1}, + {17.0, -15.0, 0, 1}, {18.0, -15.0, 0, 1}, {19.0, -15.0, 0, 1}, {20.0, -15.0, 0, 1}, {-21.0, -14.0, 0, 1}, {-20.0, -14.0, 0, 1}, + {-19.0, -14.0, 0, 1}, {-18.0, -14.0, 0, 1}, {17.0, -14.0, 0, 1}, {18.0, -14.0, 0, 1}, {19.0, -14.0, 0, 1}, {20.0, -14.0, 0, 1}, + {-31.0, -13.0, 0, 1}, {-30.0, -13.0, 0, 1}, {-29.0, -13.0, 0, 1}, {-28.0, -13.0, 0, 1}, {-27.0, -13.0, 0, 1}, {-26.0, -13.0, 0, 1}, + {-25.0, -13.0, 0, 1}, {-24.0, -13.0, 0, 1}, {-23.0, -13.0, 0, 1}, {-22.0, -13.0, 0, 1}, {-21.0, -13.0, 0, 1}, {-20.0, -13.0, 0, 1}, + {-19.0, -13.0, 0, 1}, {-18.0, -13.0, 0, 1}, {17.0, -13.0, 0, 1}, {18.0, -13.0, 0, 1}, {19.0, -13.0, 0, 1}, {20.0, -13.0, 0, 1}, + {21.0, -13.0, 0, 1}, {22.0, -13.0, 0, 1}, {23.0, -13.0, 0, 1}, {24.0, -13.0, 0, 1}, {25.0, -13.0, 0, 1}, {26.0, -13.0, 0, 1}, + {27.0, -13.0, 0, 1}, {28.0, -13.0, 0, 1}, {29.0, -13.0, 0, 1}, {30.0, -13.0, 0, 1}, {-32.0, -12.0, 0, 1}, {-31.0, -12.0, 0, 1}, + {-30.0, -12.0, 0, 1}, {-29.0, -12.0, 0, 1}, {-28.0, -12.0, 0, 1}, {-27.0, -12.0, 0, 1}, {-26.0, -12.0, 0, 1}, {-25.0, -12.0, 0, 1}, + {-24.0, -12.0, 0, 1}, {-23.0, -12.0, 0, 1}, {-22.0, -12.0, 0, 1}, {-21.0, -12.0, 0, 1}, {-20.0, -12.0, 0, 1}, {-19.0, -12.0, 0, 1}, + {-18.0, -12.0, 0, 1}, {-12.0, -12.0, 0, 1}, {-11.0, -12.0, 0, 1}, {-10.0, -12.0, 0, 1}, {-9.0, -12.0, 0, 1}, {-8.0, -12.0, 0, 1}, + {-7.0, -12.0, 0, 1}, {-6.0, -12.0, 0, 1}, {-5.0, -12.0, 0, 1}, {-4.0, -12.0, 0, 1}, {-3.0, -12.0, 0, 1}, {-2.0, -12.0, 0, 1}, + {-1.0, -12.0, 0, 1}, {0.0, -12.0, 0, 1}, {1.0, -12.0, 0, 1}, {2.0, -12.0, 0, 1}, {3.0, -12.0, 0, 1}, {4.0, -12.0, 0, 1}, + {5.0, -12.0, 0, 1}, {6.0, -12.0, 0, 1}, {7.0, -12.0, 0, 1}, {8.0, -12.0, 0, 1}, {9.0, -12.0, 0, 1}, {10.0, -12.0, 0, 1}, + {11.0, -12.0, 0, 1}, {17.0, -12.0, 0, 1}, {18.0, -12.0, 0, 1}, {19.0, -12.0, 0, 1}, {20.0, -12.0, 0, 1}, {21.0, -12.0, 0, 1}, + {22.0, -12.0, 0, 1}, {23.0, -12.0, 0, 1}, {24.0, -12.0, 0, 1}, {25.0, -12.0, 0, 1}, {26.0, -12.0, 0, 1}, {27.0, -12.0, 0, 1}, + {28.0, -12.0, 0, 1}, {29.0, -12.0, 0, 1}, {30.0, -12.0, 0, 1}, {31.0, -12.0, 0, 1}, {-32.0, -11.0, 0, 1}, {-31.0, -11.0, 0, 1}, + {-30.0, -11.0, 0, 1}, {-29.0, -11.0, 0, 1}, {-28.0, -11.0, 0, 1}, {-27.0, -11.0, 0, 1}, {-26.0, -11.0, 0, 1}, {-25.0, -11.0, 0, 1}, + {-24.0, -11.0, 0, 1}, {-23.0, -11.0, 0, 1}, {-22.0, -11.0, 0, 1}, {-21.0, -11.0, 0, 1}, {-20.0, -11.0, 0, 1}, {-19.0, -11.0, 0, 1}, + {-18.0, -11.0, 0, 1}, {-12.0, -11.0, 0, 1}, {-11.0, -11.0, 0, 1}, {-10.0, -11.0, 0, 1}, {-9.0, -11.0, 0, 1}, {-8.0, -11.0, 0, 1}, + {-7.0, -11.0, 0, 1}, {-6.0, -11.0, 0, 1}, {-5.0, -11.0, 0, 1}, {-4.0, -11.0, 0, 1}, {-3.0, -11.0, 0, 1}, {-2.0, -11.0, 0, 1}, + {-1.0, -11.0, 0, 1}, {0.0, -11.0, 0, 1}, {1.0, -11.0, 0, 1}, {2.0, -11.0, 0, 1}, {3.0, -11.0, 0, 1}, {4.0, -11.0, 0, 1}, + {5.0, -11.0, 0, 1}, {6.0, -11.0, 0, 1}, {7.0, -11.0, 0, 1}, {8.0, -11.0, 0, 1}, {9.0, -11.0, 0, 1}, {10.0, -11.0, 0, 1}, + {11.0, -11.0, 0, 1}, {17.0, -11.0, 0, 1}, {18.0, -11.0, 0, 1}, {19.0, -11.0, 0, 1}, {20.0, -11.0, 0, 1}, {21.0, -11.0, 0, 1}, + {22.0, -11.0, 0, 1}, {23.0, -11.0, 0, 1}, {24.0, -11.0, 0, 1}, {25.0, -11.0, 0, 1}, {26.0, -11.0, 0, 1}, {27.0, -11.0, 0, 1}, + {28.0, -11.0, 0, 1}, {29.0, -11.0, 0, 1}, {30.0, -11.0, 0, 1}, {31.0, -11.0, 0, 1}, {-32.0, -10.0, 0, 1}, {-31.0, -10.0, 0, 1}, + {-30.0, -10.0, 0, 1}, {-29.0, -10.0, 0, 1}, {-28.0, -10.0, 0, 1}, {-27.0, -10.0, 0, 1}, {-26.0, -10.0, 0, 1}, {-25.0, -10.0, 0, 1}, + {-24.0, -10.0, 0, 1}, {-23.0, -10.0, 0, 1}, {-22.0, -10.0, 0, 1}, {-21.0, -10.0, 0, 1}, {-20.0, -10.0, 0, 1}, {-19.0, -10.0, 0, 1}, + {-18.0, -10.0, 0, 1}, {-12.0, -10.0, 0, 1}, {-11.0, -10.0, 0, 1}, {-10.0, -10.0, 0, 1}, {-9.0, -10.0, 0, 1}, {-8.0, -10.0, 0, 1}, + {-7.0, -10.0, 0, 1}, {-6.0, -10.0, 0, 1}, {-5.0, -10.0, 0, 1}, {-4.0, -10.0, 0, 1}, {-3.0, -10.0, 0, 1}, {-2.0, -10.0, 0, 1}, + {-1.0, -10.0, 0, 1}, {0.0, -10.0, 0, 1}, {1.0, -10.0, 0, 1}, {2.0, -10.0, 0, 1}, {3.0, -10.0, 0, 1}, {4.0, -10.0, 0, 1}, + {5.0, -10.0, 0, 1}, {6.0, -10.0, 0, 1}, {7.0, -10.0, 0, 1}, {8.0, -10.0, 0, 1}, {9.0, -10.0, 0, 1}, {10.0, -10.0, 0, 1}, + {11.0, -10.0, 0, 1}, {17.0, -10.0, 0, 1}, {18.0, -10.0, 0, 1}, {19.0, -10.0, 0, 1}, {20.0, -10.0, 0, 1}, {21.0, -10.0, 0, 1}, + {22.0, -10.0, 0, 1}, {23.0, -10.0, 0, 1}, {24.0, -10.0, 0, 1}, {25.0, -10.0, 0, 1}, {26.0, -10.0, 0, 1}, {27.0, -10.0, 0, 1}, + {28.0, -10.0, 0, 1}, {29.0, -10.0, 0, 1}, {30.0, -10.0, 0, 1}, {31.0, -10.0, 0, 1}, {-21.0, -9.0, 0, 1}, {-20.0, -9.0, 0, 1}, + {-19.0, -9.0, 0, 1}, {-18.0, -9.0, 0, 1}, {-12.0, -9.0, 0, 1}, {-11.0, -9.0, 0, 1}, {-10.0, -9.0, 0, 1}, {-9.0, -9.0, 0, 1}, + {-8.0, -9.0, 0, 1}, {-7.0, -9.0, 0, 1}, {-6.0, -9.0, 0, 1}, {-5.0, -9.0, 0, 1}, {-4.0, -9.0, 0, 1}, {-3.0, -9.0, 0, 1}, + {-2.0, -9.0, 0, 1}, {-1.0, -9.0, 0, 1}, {0.0, -9.0, 0, 1}, {1.0, -9.0, 0, 1}, {2.0, -9.0, 0, 1}, {3.0, -9.0, 0, 1}, + {4.0, -9.0, 0, 1}, {5.0, -9.0, 0, 1}, {6.0, -9.0, 0, 1}, {7.0, -9.0, 0, 1}, {8.0, -9.0, 0, 1}, {9.0, -9.0, 0, 1}, + {10.0, -9.0, 0, 1}, {11.0, -9.0, 0, 1}, {17.0, -9.0, 0, 1}, {18.0, -9.0, 0, 1}, {19.0, -9.0, 0, 1}, {20.0, -9.0, 0, 1}, + {-21.0, -8.0, 0, 1}, {-20.0, -8.0, 0, 1}, {-19.0, -8.0, 0, 1}, {-18.0, -8.0, 0, 1}, {-12.0, -8.0, 0, 1}, {-11.0, -8.0, 0, 1}, + {-10.0, -8.0, 0, 1}, {-9.0, -8.0, 0, 1}, {8.0, -8.0, 0, 1}, {9.0, -8.0, 0, 1}, {10.0, -8.0, 0, 1}, {11.0, -8.0, 0, 1}, + {17.0, -8.0, 0, 1}, {18.0, -8.0, 0, 1}, {19.0, -8.0, 0, 1}, {20.0, -8.0, 0, 1}, {-21.0, -7.0, 0, 1}, {-20.0, -7.0, 0, 1}, + {-19.0, -7.0, 0, 1}, {-18.0, -7.0, 0, 1}, {-12.0, -7.0, 0, 1}, {-11.0, -7.0, 0, 1}, {-10.0, -7.0, 0, 1}, {-9.0, -7.0, 0, 1}, + {8.0, -7.0, 0, 1}, {9.0, -7.0, 0, 1}, {10.0, -7.0, 0, 1}, {11.0, -7.0, 0, 1}, {17.0, -7.0, 0, 1}, {18.0, -7.0, 0, 1}, + {19.0, -7.0, 0, 1}, {20.0, -7.0, 0, 1}, {-31.0, -6.0, 0, 1}, {-30.0, -6.0, 0, 1}, {-29.0, -6.0, 0, 1}, {-28.0, -6.0, 0, 1}, + {-27.0, -6.0, 0, 1}, {-26.0, -6.0, 0, 1}, {-25.0, -6.0, 0, 1}, {-24.0, -6.0, 0, 1}, {-23.0, -6.0, 0, 1}, {-22.0, -6.0, 0, 1}, + {-21.0, -6.0, 0, 1}, {-20.0, -6.0, 0, 1}, {-19.0, -6.0, 0, 1}, {-18.0, -6.0, 0, 1}, {-12.0, -6.0, 0, 1}, {-11.0, -6.0, 0, 1}, + {-10.0, -6.0, 0, 1}, {-9.0, -6.0, 0, 1}, {8.0, -6.0, 0, 1}, {9.0, -6.0, 0, 1}, {10.0, -6.0, 0, 1}, {11.0, -6.0, 0, 1}, + {17.0, -6.0, 0, 1}, {18.0, -6.0, 0, 1}, {19.0, -6.0, 0, 1}, {20.0, -6.0, 0, 1}, {21.0, -6.0, 0, 1}, {22.0, -6.0, 0, 1}, + {23.0, -6.0, 0, 1}, {24.0, -6.0, 0, 1}, {25.0, -6.0, 0, 1}, {26.0, -6.0, 0, 1}, {27.0, -6.0, 0, 1}, {28.0, -6.0, 0, 1}, + {29.0, -6.0, 0, 1}, {30.0, -6.0, 0, 1}, {-32.0, -5.0, 0, 1}, {-31.0, -5.0, 0, 1}, {-30.0, -5.0, 0, 1}, {-29.0, -5.0, 0, 1}, + {-28.0, -5.0, 0, 1}, {-27.0, -5.0, 0, 1}, {-26.0, -5.0, 0, 1}, {-25.0, -5.0, 0, 1}, {-24.0, -5.0, 0, 1}, {-23.0, -5.0, 0, 1}, + {-22.0, -5.0, 0, 1}, {-21.0, -5.0, 0, 1}, {-20.0, -5.0, 0, 1}, {-19.0, -5.0, 0, 1}, {-18.0, -5.0, 0, 1}, {-12.0, -5.0, 0, 1}, + {-11.0, -5.0, 0, 1}, {-10.0, -5.0, 0, 1}, {-9.0, -5.0, 0, 1}, {8.0, -5.0, 0, 1}, {9.0, -5.0, 0, 1}, {10.0, -5.0, 0, 1}, + {11.0, -5.0, 0, 1}, {17.0, -5.0, 0, 1}, {18.0, -5.0, 0, 1}, {19.0, -5.0, 0, 1}, {20.0, -5.0, 0, 1}, {21.0, -5.0, 0, 1}, + {22.0, -5.0, 0, 1}, {23.0, -5.0, 0, 1}, {24.0, -5.0, 0, 1}, {25.0, -5.0, 0, 1}, {26.0, -5.0, 0, 1}, {27.0, -5.0, 0, 1}, + {28.0, -5.0, 0, 1}, {29.0, -5.0, 0, 1}, {30.0, -5.0, 0, 1}, {31.0, -5.0, 0, 1}, {-32.0, -4.0, 0, 1}, {-31.0, -4.0, 0, 1}, + {-30.0, -4.0, 0, 1}, {-29.0, -4.0, 0, 1}, {-28.0, -4.0, 0, 1}, {-27.0, -4.0, 0, 1}, {-26.0, -4.0, 0, 1}, {-25.0, -4.0, 0, 1}, + {-24.0, -4.0, 0, 1}, {-23.0, -4.0, 0, 1}, {-22.0, -4.0, 0, 1}, {-21.0, -4.0, 0, 1}, {-20.0, -4.0, 0, 1}, {-19.0, -4.0, 0, 1}, + {-18.0, -4.0, 0, 1}, {-12.0, -4.0, 0, 1}, {-11.0, -4.0, 0, 1}, {-10.0, -4.0, 0, 1}, {-9.0, -4.0, 0, 1}, {8.0, -4.0, 0, 1}, + {9.0, -4.0, 0, 1}, {10.0, -4.0, 0, 1}, {11.0, -4.0, 0, 1}, {17.0, -4.0, 0, 1}, {18.0, -4.0, 0, 1}, {19.0, -4.0, 0, 1}, + {20.0, -4.0, 0, 1}, {21.0, -4.0, 0, 1}, {22.0, -4.0, 0, 1}, {23.0, -4.0, 0, 1}, {24.0, -4.0, 0, 1}, {25.0, -4.0, 0, 1}, + {26.0, -4.0, 0, 1}, {27.0, -4.0, 0, 1}, {28.0, -4.0, 0, 1}, {29.0, -4.0, 0, 1}, {30.0, -4.0, 0, 1}, {31.0, -4.0, 0, 1}, + {-32.0, -3.0, 0, 1}, {-31.0, -3.0, 0, 1}, {-30.0, -3.0, 0, 1}, {-29.0, -3.0, 0, 1}, {-28.0, -3.0, 0, 1}, {-27.0, -3.0, 0, 1}, + {-26.0, -3.0, 0, 1}, {-25.0, -3.0, 0, 1}, {-24.0, -3.0, 0, 1}, {-23.0, -3.0, 0, 1}, {-22.0, -3.0, 0, 1}, {-21.0, -3.0, 0, 1}, + {-20.0, -3.0, 0, 1}, {-19.0, -3.0, 0, 1}, {-18.0, -3.0, 0, 1}, {-12.0, -3.0, 0, 1}, {-11.0, -3.0, 0, 1}, {-10.0, -3.0, 0, 1}, + {-9.0, -3.0, 0, 1}, {8.0, -3.0, 0, 1}, {9.0, -3.0, 0, 1}, {10.0, -3.0, 0, 1}, {11.0, -3.0, 0, 1}, {17.0, -3.0, 0, 1}, + {18.0, -3.0, 0, 1}, {19.0, -3.0, 0, 1}, {20.0, -3.0, 0, 1}, {21.0, -3.0, 0, 1}, {22.0, -3.0, 0, 1}, {23.0, -3.0, 0, 1}, + {24.0, -3.0, 0, 1}, {25.0, -3.0, 0, 1}, {26.0, -3.0, 0, 1}, {27.0, -3.0, 0, 1}, {28.0, -3.0, 0, 1}, {29.0, -3.0, 0, 1}, + {30.0, -3.0, 0, 1}, {31.0, -3.0, 0, 1}, {-31.0, -2.0, 0, 1}, {-30.0, -2.0, 0, 1}, {-29.0, -2.0, 0, 1}, {-28.0, -2.0, 0, 1}, + {-27.0, -2.0, 0, 1}, {-26.0, -2.0, 0, 1}, {-25.0, -2.0, 0, 1}, {-24.0, -2.0, 0, 1}, {-23.0, -2.0, 0, 1}, {-22.0, -2.0, 0, 1}, + {-21.0, -2.0, 0, 1}, {-20.0, -2.0, 0, 1}, {-19.0, -2.0, 0, 1}, {-18.0, -2.0, 0, 1}, {-12.0, -2.0, 0, 1}, {-11.0, -2.0, 0, 1}, + {-10.0, -2.0, 0, 1}, {-9.0, -2.0, 0, 1}, {8.0, -2.0, 0, 1}, {9.0, -2.0, 0, 1}, {10.0, -2.0, 0, 1}, {11.0, -2.0, 0, 1}, + {17.0, -2.0, 0, 1}, {18.0, -2.0, 0, 1}, {19.0, -2.0, 0, 1}, {20.0, -2.0, 0, 1}, {21.0, -2.0, 0, 1}, {22.0, -2.0, 0, 1}, + {23.0, -2.0, 0, 1}, {24.0, -2.0, 0, 1}, {25.0, -2.0, 0, 1}, {26.0, -2.0, 0, 1}, {27.0, -2.0, 0, 1}, {28.0, -2.0, 0, 1}, + {29.0, -2.0, 0, 1}, {-21.0, -1.0, 0, 1}, {-20.0, -1.0, 0, 1}, {-19.0, -1.0, 0, 1}, {-18.0, -1.0, 0, 1}, {-12.0, -1.0, 0, 1}, + {-11.0, -1.0, 0, 1}, {-10.0, -1.0, 0, 1}, {-9.0, -1.0, 0, 1}, {8.0, -1.0, 0, 1}, {9.0, -1.0, 0, 1}, {10.0, -1.0, 0, 1}, + {11.0, -1.0, 0, 1}, {17.0, -1.0, 0, 1}, {18.0, -1.0, 0, 1}, {19.0, -1.0, 0, 1}, {20.0, -1.0, 0, 1}, {-21.0, 0.0, 0, 1}, + {-20.0, 0.0, 0, 1}, {-19.0, 0.0, 0, 1}, {-18.0, 0.0, 0, 1}, {-12.0, 0.0, 0, 1}, {-11.0, 0.0, 0, 1}, {-10.0, 0.0, 0, 1}, + {-9.0, 0.0, 0, 1}, {8.0, 0.0, 0, 1}, {9.0, 0.0, 0, 1}, {10.0, 0.0, 0, 1}, {11.0, 0.0, 0, 1}, {17.0, 0.0, 0, 1}, + {18.0, 0.0, 0, 1}, {19.0, 0.0, 0, 1}, {20.0, 0.0, 0, 1}, {-31.0, 1.0, 0, 1}, {-30.0, 1.0, 0, 1}, {-29.0, 1.0, 0, 1}, + {-28.0, 1.0, 0, 1}, {-27.0, 1.0, 0, 1}, {-26.0, 1.0, 0, 1}, {-25.0, 1.0, 0, 1}, {-24.0, 1.0, 0, 1}, {-23.0, 1.0, 0, 1}, + {-22.0, 1.0, 0, 1}, {-21.0, 1.0, 0, 1}, {-20.0, 1.0, 0, 1}, {-19.0, 1.0, 0, 1}, {-18.0, 1.0, 0, 1}, {-12.0, 1.0, 0, 1}, + {-11.0, 1.0, 0, 1}, {-10.0, 1.0, 0, 1}, {-9.0, 1.0, 0, 1}, {8.0, 1.0, 0, 1}, {9.0, 1.0, 0, 1}, {10.0, 1.0, 0, 1}, + {11.0, 1.0, 0, 1}, {17.0, 1.0, 0, 1}, {18.0, 1.0, 0, 1}, {19.0, 1.0, 0, 1}, {20.0, 1.0, 0, 1}, {21.0, 1.0, 0, 1}, + {22.0, 1.0, 0, 1}, {23.0, 1.0, 0, 1}, {24.0, 1.0, 0, 1}, {25.0, 1.0, 0, 1}, {26.0, 1.0, 0, 1}, {27.0, 1.0, 0, 1}, + {28.0, 1.0, 0, 1}, {29.0, 1.0, 0, 1}, {30.0, 1.0, 0, 1}, {-32.0, 2.0, 0, 1}, {-31.0, 2.0, 0, 1}, {-30.0, 2.0, 0, 1}, + {-29.0, 2.0, 0, 1}, {-28.0, 2.0, 0, 1}, {-27.0, 2.0, 0, 1}, {-26.0, 2.0, 0, 1}, {-25.0, 2.0, 0, 1}, {-24.0, 2.0, 0, 1}, + {-23.0, 2.0, 0, 1}, {-22.0, 2.0, 0, 1}, {-21.0, 2.0, 0, 1}, {-20.0, 2.0, 0, 1}, {-19.0, 2.0, 0, 1}, {-18.0, 2.0, 0, 1}, + {-12.0, 2.0, 0, 1}, {-11.0, 2.0, 0, 1}, {-10.0, 2.0, 0, 1}, {-9.0, 2.0, 0, 1}, {8.0, 2.0, 0, 1}, {9.0, 2.0, 0, 1}, + {10.0, 2.0, 0, 1}, {11.0, 2.0, 0, 1}, {17.0, 2.0, 0, 1}, {18.0, 2.0, 0, 1}, {19.0, 2.0, 0, 1}, {20.0, 2.0, 0, 1}, + {21.0, 2.0, 0, 1}, {22.0, 2.0, 0, 1}, {23.0, 2.0, 0, 1}, {24.0, 2.0, 0, 1}, {25.0, 2.0, 0, 1}, {26.0, 2.0, 0, 1}, + {27.0, 2.0, 0, 1}, {28.0, 2.0, 0, 1}, {29.0, 2.0, 0, 1}, {30.0, 2.0, 0, 1}, {31.0, 2.0, 0, 1}, {-32.0, 3.0, 0, 1}, + {-31.0, 3.0, 0, 1}, {-30.0, 3.0, 0, 1}, {-29.0, 3.0, 0, 1}, {-28.0, 3.0, 0, 1}, {-27.0, 3.0, 0, 1}, {-26.0, 3.0, 0, 1}, + {-25.0, 3.0, 0, 1}, {-24.0, 3.0, 0, 1}, {-23.0, 3.0, 0, 1}, {-22.0, 3.0, 0, 1}, {-21.0, 3.0, 0, 1}, {-20.0, 3.0, 0, 1}, + {-19.0, 3.0, 0, 1}, {-18.0, 3.0, 0, 1}, {-12.0, 3.0, 0, 1}, {-11.0, 3.0, 0, 1}, {-10.0, 3.0, 0, 1}, {-9.0, 3.0, 0, 1}, + {8.0, 3.0, 0, 1}, {9.0, 3.0, 0, 1}, {10.0, 3.0, 0, 1}, {11.0, 3.0, 0, 1}, {17.0, 3.0, 0, 1}, {18.0, 3.0, 0, 1}, + {19.0, 3.0, 0, 1}, {20.0, 3.0, 0, 1}, {21.0, 3.0, 0, 1}, {22.0, 3.0, 0, 1}, {23.0, 3.0, 0, 1}, {24.0, 3.0, 0, 1}, + {25.0, 3.0, 0, 1}, {26.0, 3.0, 0, 1}, {27.0, 3.0, 0, 1}, {28.0, 3.0, 0, 1}, {29.0, 3.0, 0, 1}, {30.0, 3.0, 0, 1}, + {31.0, 3.0, 0, 1}, {-32.0, 4.0, 0, 1}, {-31.0, 4.0, 0, 1}, {-30.0, 4.0, 0, 1}, {-29.0, 4.0, 0, 1}, {-28.0, 4.0, 0, 1}, + {-27.0, 4.0, 0, 1}, {-26.0, 4.0, 0, 1}, {-25.0, 4.0, 0, 1}, {-24.0, 4.0, 0, 1}, {-23.0, 4.0, 0, 1}, {-22.0, 4.0, 0, 1}, + {-21.0, 4.0, 0, 1}, {-20.0, 4.0, 0, 1}, {-19.0, 4.0, 0, 1}, {-18.0, 4.0, 0, 1}, {-12.0, 4.0, 0, 1}, {-11.0, 4.0, 0, 1}, + {-10.0, 4.0, 0, 1}, {-9.0, 4.0, 0, 1}, {8.0, 4.0, 0, 1}, {9.0, 4.0, 0, 1}, {10.0, 4.0, 0, 1}, {11.0, 4.0, 0, 1}, + {17.0, 4.0, 0, 1}, {18.0, 4.0, 0, 1}, {19.0, 4.0, 0, 1}, {20.0, 4.0, 0, 1}, {21.0, 4.0, 0, 1}, {22.0, 4.0, 0, 1}, + {23.0, 4.0, 0, 1}, {24.0, 4.0, 0, 1}, {25.0, 4.0, 0, 1}, {26.0, 4.0, 0, 1}, {27.0, 4.0, 0, 1}, {28.0, 4.0, 0, 1}, + {29.0, 4.0, 0, 1}, {30.0, 4.0, 0, 1}, {31.0, 4.0, 0, 1}, {-31.0, 5.0, 0, 1}, {-30.0, 5.0, 0, 1}, {-29.0, 5.0, 0, 1}, + {-28.0, 5.0, 0, 1}, {-27.0, 5.0, 0, 1}, {-26.0, 5.0, 0, 1}, {-25.0, 5.0, 0, 1}, {-24.0, 5.0, 0, 1}, {-23.0, 5.0, 0, 1}, + {-22.0, 5.0, 0, 1}, {-21.0, 5.0, 0, 1}, {-20.0, 5.0, 0, 1}, {-19.0, 5.0, 0, 1}, {-18.0, 5.0, 0, 1}, {-12.0, 5.0, 0, 1}, + {-11.0, 5.0, 0, 1}, {-10.0, 5.0, 0, 1}, {-9.0, 5.0, 0, 1}, {8.0, 5.0, 0, 1}, {9.0, 5.0, 0, 1}, {10.0, 5.0, 0, 1}, + {11.0, 5.0, 0, 1}, {17.0, 5.0, 0, 1}, {18.0, 5.0, 0, 1}, {19.0, 5.0, 0, 1}, {20.0, 5.0, 0, 1}, {21.0, 5.0, 0, 1}, + {22.0, 5.0, 0, 1}, {23.0, 5.0, 0, 1}, {24.0, 5.0, 0, 1}, {25.0, 5.0, 0, 1}, {26.0, 5.0, 0, 1}, {27.0, 5.0, 0, 1}, + {28.0, 5.0, 0, 1}, {29.0, 5.0, 0, 1}, {30.0, 5.0, 0, 1}, {-21.0, 6.0, 0, 1}, {-20.0, 6.0, 0, 1}, {-19.0, 6.0, 0, 1}, + {-18.0, 6.0, 0, 1}, {-12.0, 6.0, 0, 1}, {-11.0, 6.0, 0, 1}, {-10.0, 6.0, 0, 1}, {-9.0, 6.0, 0, 1}, {8.0, 6.0, 0, 1}, + {9.0, 6.0, 0, 1}, {10.0, 6.0, 0, 1}, {11.0, 6.0, 0, 1}, {17.0, 6.0, 0, 1}, {18.0, 6.0, 0, 1}, {19.0, 6.0, 0, 1}, + {20.0, 6.0, 0, 1}, {-21.0, 7.0, 0, 1}, {-20.0, 7.0, 0, 1}, {-19.0, 7.0, 0, 1}, {-18.0, 7.0, 0, 1}, {-12.0, 7.0, 0, 1}, + {-11.0, 7.0, 0, 1}, {-10.0, 7.0, 0, 1}, {-9.0, 7.0, 0, 1}, {8.0, 7.0, 0, 1}, {9.0, 7.0, 0, 1}, {10.0, 7.0, 0, 1}, + {11.0, 7.0, 0, 1}, {17.0, 7.0, 0, 1}, {18.0, 7.0, 0, 1}, {19.0, 7.0, 0, 1}, {20.0, 7.0, 0, 1}, {-31.0, 8.0, 0, 1}, + {-30.0, 8.0, 0, 1}, {-29.0, 8.0, 0, 1}, {-28.0, 8.0, 0, 1}, {-27.0, 8.0, 0, 1}, {-26.0, 8.0, 0, 1}, {-25.0, 8.0, 0, 1}, + {-24.0, 8.0, 0, 1}, {-23.0, 8.0, 0, 1}, {-22.0, 8.0, 0, 1}, {-21.0, 8.0, 0, 1}, {-20.0, 8.0, 0, 1}, {-19.0, 8.0, 0, 1}, + {-18.0, 8.0, 0, 1}, {-12.0, 8.0, 0, 1}, {-11.0, 8.0, 0, 1}, {-10.0, 8.0, 0, 1}, {-9.0, 8.0, 0, 1}, {-8.0, 8.0, 0, 1}, + {-7.0, 8.0, 0, 1}, {-6.0, 8.0, 0, 1}, {-5.0, 8.0, 0, 1}, {-4.0, 8.0, 0, 1}, {-3.0, 8.0, 0, 1}, {-2.0, 8.0, 0, 1}, + {-1.0, 8.0, 0, 1}, {0.0, 8.0, 0, 1}, {1.0, 8.0, 0, 1}, {2.0, 8.0, 0, 1}, {3.0, 8.0, 0, 1}, {4.0, 8.0, 0, 1}, + {5.0, 8.0, 0, 1}, {6.0, 8.0, 0, 1}, {7.0, 8.0, 0, 1}, {8.0, 8.0, 0, 1}, {9.0, 8.0, 0, 1}, {10.0, 8.0, 0, 1}, + {11.0, 8.0, 0, 1}, {17.0, 8.0, 0, 1}, {18.0, 8.0, 0, 1}, {19.0, 8.0, 0, 1}, {20.0, 8.0, 0, 1}, {21.0, 8.0, 0, 1}, + {22.0, 8.0, 0, 1}, {23.0, 8.0, 0, 1}, {24.0, 8.0, 0, 1}, {25.0, 8.0, 0, 1}, {26.0, 8.0, 0, 1}, {27.0, 8.0, 0, 1}, + {28.0, 8.0, 0, 1}, {29.0, 8.0, 0, 1}, {-32.0, 9.0, 0, 1}, {-31.0, 9.0, 0, 1}, {-30.0, 9.0, 0, 1}, {-29.0, 9.0, 0, 1}, + {-28.0, 9.0, 0, 1}, {-27.0, 9.0, 0, 1}, {-26.0, 9.0, 0, 1}, {-25.0, 9.0, 0, 1}, {-24.0, 9.0, 0, 1}, {-23.0, 9.0, 0, 1}, + {-22.0, 9.0, 0, 1}, {-21.0, 9.0, 0, 1}, {-20.0, 9.0, 0, 1}, {-19.0, 9.0, 0, 1}, {-18.0, 9.0, 0, 1}, {-12.0, 9.0, 0, 1}, + {-11.0, 9.0, 0, 1}, {-10.0, 9.0, 0, 1}, {-9.0, 9.0, 0, 1}, {-8.0, 9.0, 0, 1}, {-7.0, 9.0, 0, 1}, {-6.0, 9.0, 0, 1}, + {-5.0, 9.0, 0, 1}, {-4.0, 9.0, 0, 1}, {-3.0, 9.0, 0, 1}, {-2.0, 9.0, 0, 1}, {-1.0, 9.0, 0, 1}, {0.0, 9.0, 0, 1}, + {1.0, 9.0, 0, 1}, {2.0, 9.0, 0, 1}, {3.0, 9.0, 0, 1}, {4.0, 9.0, 0, 1}, {5.0, 9.0, 0, 1}, {6.0, 9.0, 0, 1}, + {7.0, 9.0, 0, 1}, {8.0, 9.0, 0, 1}, {9.0, 9.0, 0, 1}, {10.0, 9.0, 0, 1}, {11.0, 9.0, 0, 1}, {17.0, 9.0, 0, 1}, + {18.0, 9.0, 0, 1}, {19.0, 9.0, 0, 1}, {20.0, 9.0, 0, 1}, {21.0, 9.0, 0, 1}, {22.0, 9.0, 0, 1}, {23.0, 9.0, 0, 1}, + {24.0, 9.0, 0, 1}, {25.0, 9.0, 0, 1}, {26.0, 9.0, 0, 1}, {27.0, 9.0, 0, 1}, {28.0, 9.0, 0, 1}, {29.0, 9.0, 0, 1}, + {30.0, 9.0, 0, 1}, {31.0, 9.0, 0, 1}, {-32.0, 10.0, 0, 1}, {-31.0, 10.0, 0, 1}, {-30.0, 10.0, 0, 1}, {-29.0, 10.0, 0, 1}, + {-28.0, 10.0, 0, 1}, {-27.0, 10.0, 0, 1}, {-26.0, 10.0, 0, 1}, {-25.0, 10.0, 0, 1}, {-24.0, 10.0, 0, 1}, {-23.0, 10.0, 0, 1}, + {-22.0, 10.0, 0, 1}, {-21.0, 10.0, 0, 1}, {-20.0, 10.0, 0, 1}, {-19.0, 10.0, 0, 1}, {-18.0, 10.0, 0, 1}, {-12.0, 10.0, 0, 1}, + {-11.0, 10.0, 0, 1}, {-10.0, 10.0, 0, 1}, {-9.0, 10.0, 0, 1}, {-8.0, 10.0, 0, 1}, {-7.0, 10.0, 0, 1}, {-6.0, 10.0, 0, 1}, + {-5.0, 10.0, 0, 1}, {-4.0, 10.0, 0, 1}, {-3.0, 10.0, 0, 1}, {-2.0, 10.0, 0, 1}, {-1.0, 10.0, 0, 1}, {0.0, 10.0, 0, 1}, + {1.0, 10.0, 0, 1}, {2.0, 10.0, 0, 1}, {3.0, 10.0, 0, 1}, {4.0, 10.0, 0, 1}, {5.0, 10.0, 0, 1}, {6.0, 10.0, 0, 1}, + {7.0, 10.0, 0, 1}, {8.0, 10.0, 0, 1}, {9.0, 10.0, 0, 1}, {10.0, 10.0, 0, 1}, {11.0, 10.0, 0, 1}, {17.0, 10.0, 0, 1}, + {18.0, 10.0, 0, 1}, {19.0, 10.0, 0, 1}, {20.0, 10.0, 0, 1}, {21.0, 10.0, 0, 1}, {22.0, 10.0, 0, 1}, {23.0, 10.0, 0, 1}, + {24.0, 10.0, 0, 1}, {25.0, 10.0, 0, 1}, {26.0, 10.0, 0, 1}, {27.0, 10.0, 0, 1}, {28.0, 10.0, 0, 1}, {29.0, 10.0, 0, 1}, + {30.0, 10.0, 0, 1}, {31.0, 10.0, 0, 1}, {-32.0, 11.0, 0, 1}, {-31.0, 11.0, 0, 1}, {-30.0, 11.0, 0, 1}, {-29.0, 11.0, 0, 1}, + {-28.0, 11.0, 0, 1}, {-27.0, 11.0, 0, 1}, {-26.0, 11.0, 0, 1}, {-25.0, 11.0, 0, 1}, {-24.0, 11.0, 0, 1}, {-23.0, 11.0, 0, 1}, + {-22.0, 11.0, 0, 1}, {-21.0, 11.0, 0, 1}, {-20.0, 11.0, 0, 1}, {-19.0, 11.0, 0, 1}, {-18.0, 11.0, 0, 1}, {-12.0, 11.0, 0, 1}, + {-11.0, 11.0, 0, 1}, {-10.0, 11.0, 0, 1}, {-9.0, 11.0, 0, 1}, {-8.0, 11.0, 0, 1}, {-7.0, 11.0, 0, 1}, {-6.0, 11.0, 0, 1}, + {-5.0, 11.0, 0, 1}, {-4.0, 11.0, 0, 1}, {-3.0, 11.0, 0, 1}, {-2.0, 11.0, 0, 1}, {-1.0, 11.0, 0, 1}, {0.0, 11.0, 0, 1}, + {1.0, 11.0, 0, 1}, {2.0, 11.0, 0, 1}, {3.0, 11.0, 0, 1}, {4.0, 11.0, 0, 1}, {5.0, 11.0, 0, 1}, {6.0, 11.0, 0, 1}, + {7.0, 11.0, 0, 1}, {8.0, 11.0, 0, 1}, {9.0, 11.0, 0, 1}, {10.0, 11.0, 0, 1}, {11.0, 11.0, 0, 1}, {17.0, 11.0, 0, 1}, + {18.0, 11.0, 0, 1}, {19.0, 11.0, 0, 1}, {20.0, 11.0, 0, 1}, {21.0, 11.0, 0, 1}, {22.0, 11.0, 0, 1}, {23.0, 11.0, 0, 1}, + {24.0, 11.0, 0, 1}, {25.0, 11.0, 0, 1}, {26.0, 11.0, 0, 1}, {27.0, 11.0, 0, 1}, {28.0, 11.0, 0, 1}, {29.0, 11.0, 0, 1}, + {30.0, 11.0, 0, 1}, {31.0, 11.0, 0, 1}, {-31.0, 12.0, 0, 1}, {-30.0, 12.0, 0, 1}, {-29.0, 12.0, 0, 1}, {-28.0, 12.0, 0, 1}, + {-27.0, 12.0, 0, 1}, {-26.0, 12.0, 0, 1}, {-25.0, 12.0, 0, 1}, {-24.0, 12.0, 0, 1}, {-23.0, 12.0, 0, 1}, {-22.0, 12.0, 0, 1}, + {-21.0, 12.0, 0, 1}, {-20.0, 12.0, 0, 1}, {-19.0, 12.0, 0, 1}, {-18.0, 12.0, 0, 1}, {17.0, 12.0, 0, 1}, {18.0, 12.0, 0, 1}, + {19.0, 12.0, 0, 1}, {20.0, 12.0, 0, 1}, {21.0, 12.0, 0, 1}, {22.0, 12.0, 0, 1}, {23.0, 12.0, 0, 1}, {24.0, 12.0, 0, 1}, + {25.0, 12.0, 0, 1}, {26.0, 12.0, 0, 1}, {27.0, 12.0, 0, 1}, {28.0, 12.0, 0, 1}, {29.0, 12.0, 0, 1}, {30.0, 12.0, 0, 1}, + {-21.0, 13.0, 0, 1}, {-20.0, 13.0, 0, 1}, {-19.0, 13.0, 0, 1}, {-18.0, 13.0, 0, 1}, {17.0, 13.0, 0, 1}, {18.0, 13.0, 0, 1}, + {19.0, 13.0, 0, 1}, {20.0, 13.0, 0, 1}, {-21.0, 14.0, 0, 1}, {-20.0, 14.0, 0, 1}, {-19.0, 14.0, 0, 1}, {-18.0, 14.0, 0, 1}, + {17.0, 14.0, 0, 1}, {18.0, 14.0, 0, 1}, {19.0, 14.0, 0, 1}, {20.0, 14.0, 0, 1}, {-21.0, 15.0, 0, 1}, {-20.0, 15.0, 0, 1}, + {-19.0, 15.0, 0, 1}, {-18.0, 15.0, 0, 1}, {17.0, 15.0, 0, 1}, {18.0, 15.0, 0, 1}, {19.0, 15.0, 0, 1}, {20.0, 15.0, 0, 1}, + {-21.0, 16.0, 0, 1}, {-20.0, 16.0, 0, 1}, {-19.0, 16.0, 0, 1}, {-18.0, 16.0, 0, 1}, {17.0, 16.0, 0, 1}, {18.0, 16.0, 0, 1}, + {19.0, 16.0, 0, 1}, {20.0, 16.0, 0, 1}, {-21.0, 17.0, 0, 1}, {-20.0, 17.0, 0, 1}, {-19.0, 17.0, 0, 1}, {-18.0, 17.0, 0, 1}, + {-17.0, 17.0, 0, 1}, {-16.0, 17.0, 0, 1}, {-15.0, 17.0, 0, 1}, {-14.0, 17.0, 0, 1}, {-13.0, 17.0, 0, 1}, {-12.0, 17.0, 0, 1}, + {-11.0, 17.0, 0, 1}, {-10.0, 17.0, 0, 1}, {-9.0, 17.0, 0, 1}, {-8.0, 17.0, 0, 1}, {-7.0, 17.0, 0, 1}, {-6.0, 17.0, 0, 1}, + {-5.0, 17.0, 0, 1}, {-4.0, 17.0, 0, 1}, {-3.0, 17.0, 0, 1}, {-2.0, 17.0, 0, 1}, {-1.0, 17.0, 0, 1}, {0.0, 17.0, 0, 1}, + {1.0, 17.0, 0, 1}, {2.0, 17.0, 0, 1}, {3.0, 17.0, 0, 1}, {4.0, 17.0, 0, 1}, {5.0, 17.0, 0, 1}, {6.0, 17.0, 0, 1}, + {7.0, 17.0, 0, 1}, {8.0, 17.0, 0, 1}, {9.0, 17.0, 0, 1}, {10.0, 17.0, 0, 1}, {11.0, 17.0, 0, 1}, {12.0, 17.0, 0, 1}, + {13.0, 17.0, 0, 1}, {14.0, 17.0, 0, 1}, {15.0, 17.0, 0, 1}, {16.0, 17.0, 0, 1}, {17.0, 17.0, 0, 1}, {18.0, 17.0, 0, 1}, + {19.0, 17.0, 0, 1}, {20.0, 17.0, 0, 1}, {-21.0, 18.0, 0, 1}, {-20.0, 18.0, 0, 1}, {-19.0, 18.0, 0, 1}, {-18.0, 18.0, 0, 1}, + {-17.0, 18.0, 0, 1}, {-16.0, 18.0, 0, 1}, {-15.0, 18.0, 0, 1}, {-14.0, 18.0, 0, 1}, {-13.0, 18.0, 0, 1}, {-12.0, 18.0, 0, 1}, + {-11.0, 18.0, 0, 1}, {-10.0, 18.0, 0, 1}, {-9.0, 18.0, 0, 1}, {-8.0, 18.0, 0, 1}, {-7.0, 18.0, 0, 1}, {-6.0, 18.0, 0, 1}, + {-5.0, 18.0, 0, 1}, {-4.0, 18.0, 0, 1}, {-3.0, 18.0, 0, 1}, {-2.0, 18.0, 0, 1}, {-1.0, 18.0, 0, 1}, {0.0, 18.0, 0, 1}, + {1.0, 18.0, 0, 1}, {2.0, 18.0, 0, 1}, {3.0, 18.0, 0, 1}, {4.0, 18.0, 0, 1}, {5.0, 18.0, 0, 1}, {6.0, 18.0, 0, 1}, + {7.0, 18.0, 0, 1}, {8.0, 18.0, 0, 1}, {9.0, 18.0, 0, 1}, {10.0, 18.0, 0, 1}, {11.0, 18.0, 0, 1}, {12.0, 18.0, 0, 1}, + {13.0, 18.0, 0, 1}, {14.0, 18.0, 0, 1}, {15.0, 18.0, 0, 1}, {16.0, 18.0, 0, 1}, {17.0, 18.0, 0, 1}, {18.0, 18.0, 0, 1}, + {19.0, 18.0, 0, 1}, {20.0, 18.0, 0, 1}, {-21.0, 19.0, 0, 1}, {-20.0, 19.0, 0, 1}, {-19.0, 19.0, 0, 1}, {-18.0, 19.0, 0, 1}, + {-17.0, 19.0, 0, 1}, {-16.0, 19.0, 0, 1}, {-15.0, 19.0, 0, 1}, {-14.0, 19.0, 0, 1}, {-13.0, 19.0, 0, 1}, {-12.0, 19.0, 0, 1}, + {-11.0, 19.0, 0, 1}, {-10.0, 19.0, 0, 1}, {-9.0, 19.0, 0, 1}, {-8.0, 19.0, 0, 1}, {-7.0, 19.0, 0, 1}, {-6.0, 19.0, 0, 1}, + {-5.0, 19.0, 0, 1}, {-4.0, 19.0, 0, 1}, {-3.0, 19.0, 0, 1}, {-2.0, 19.0, 0, 1}, {-1.0, 19.0, 0, 1}, {0.0, 19.0, 0, 1}, + {1.0, 19.0, 0, 1}, {2.0, 19.0, 0, 1}, {3.0, 19.0, 0, 1}, {4.0, 19.0, 0, 1}, {5.0, 19.0, 0, 1}, {6.0, 19.0, 0, 1}, + {7.0, 19.0, 0, 1}, {8.0, 19.0, 0, 1}, {9.0, 19.0, 0, 1}, {10.0, 19.0, 0, 1}, {11.0, 19.0, 0, 1}, {12.0, 19.0, 0, 1}, + {13.0, 19.0, 0, 1}, {14.0, 19.0, 0, 1}, {15.0, 19.0, 0, 1}, {16.0, 19.0, 0, 1}, {17.0, 19.0, 0, 1}, {18.0, 19.0, 0, 1}, + {19.0, 19.0, 0, 1}, {20.0, 19.0, 0, 1}, {-21.0, 20.0, 0, 1}, {-20.0, 20.0, 0, 1}, {-19.0, 20.0, 0, 1}, {-18.0, 20.0, 0, 1}, + {-17.0, 20.0, 0, 1}, {-16.0, 20.0, 0, 1}, {-15.0, 20.0, 0, 1}, {-14.0, 20.0, 0, 1}, {-13.0, 20.0, 0, 1}, {-12.0, 20.0, 0, 1}, + {-11.0, 20.0, 0, 1}, {-10.0, 20.0, 0, 1}, {-9.0, 20.0, 0, 1}, {-8.0, 20.0, 0, 1}, {-7.0, 20.0, 0, 1}, {-6.0, 20.0, 0, 1}, + {-5.0, 20.0, 0, 1}, {-4.0, 20.0, 0, 1}, {-3.0, 20.0, 0, 1}, {-2.0, 20.0, 0, 1}, {-1.0, 20.0, 0, 1}, {0.0, 20.0, 0, 1}, + {1.0, 20.0, 0, 1}, {2.0, 20.0, 0, 1}, {3.0, 20.0, 0, 1}, {4.0, 20.0, 0, 1}, {5.0, 20.0, 0, 1}, {6.0, 20.0, 0, 1}, + {7.0, 20.0, 0, 1}, {8.0, 20.0, 0, 1}, {9.0, 20.0, 0, 1}, {10.0, 20.0, 0, 1}, {11.0, 20.0, 0, 1}, {12.0, 20.0, 0, 1}, + {13.0, 20.0, 0, 1}, {14.0, 20.0, 0, 1}, {15.0, 20.0, 0, 1}, {16.0, 20.0, 0, 1}, {17.0, 20.0, 0, 1}, {18.0, 20.0, 0, 1}, + {19.0, 20.0, 0, 1}, {20.0, 20.0, 0, 1}, {-13.0, 21.0, 0, 1}, {-12.0, 21.0, 0, 1}, {-11.0, 21.0, 0, 1}, {-10.0, 21.0, 0, 1}, + {-6.0, 21.0, 0, 1}, {-5.0, 21.0, 0, 1}, {-4.0, 21.0, 0, 1}, {-3.0, 21.0, 0, 1}, {-2.0, 21.0, 0, 1}, {1.0, 21.0, 0, 1}, + {2.0, 21.0, 0, 1}, {3.0, 21.0, 0, 1}, {4.0, 21.0, 0, 1}, {5.0, 21.0, 0, 1}, {8.0, 21.0, 0, 1}, {9.0, 21.0, 0, 1}, + {10.0, 21.0, 0, 1}, {11.0, 21.0, 0, 1}, {12.0, 21.0, 0, 1}, {-13.0, 22.0, 0, 1}, {-12.0, 22.0, 0, 1}, {-11.0, 22.0, 0, 1}, + {-10.0, 22.0, 0, 1}, {-6.0, 22.0, 0, 1}, {-5.0, 22.0, 0, 1}, {-4.0, 22.0, 0, 1}, {-3.0, 22.0, 0, 1}, {-2.0, 22.0, 0, 1}, + {1.0, 22.0, 0, 1}, {2.0, 22.0, 0, 1}, {3.0, 22.0, 0, 1}, {4.0, 22.0, 0, 1}, {5.0, 22.0, 0, 1}, {8.0, 22.0, 0, 1}, + {9.0, 22.0, 0, 1}, {10.0, 22.0, 0, 1}, {11.0, 22.0, 0, 1}, {12.0, 22.0, 0, 1}, {-13.0, 23.0, 0, 1}, {-12.0, 23.0, 0, 1}, + {-11.0, 23.0, 0, 1}, {-10.0, 23.0, 0, 1}, {-6.0, 23.0, 0, 1}, {-5.0, 23.0, 0, 1}, {-4.0, 23.0, 0, 1}, {-3.0, 23.0, 0, 1}, + {-2.0, 23.0, 0, 1}, {1.0, 23.0, 0, 1}, {2.0, 23.0, 0, 1}, {3.0, 23.0, 0, 1}, {4.0, 23.0, 0, 1}, {5.0, 23.0, 0, 1}, + {8.0, 23.0, 0, 1}, {9.0, 23.0, 0, 1}, {10.0, 23.0, 0, 1}, {11.0, 23.0, 0, 1}, {12.0, 23.0, 0, 1}, {-13.0, 24.0, 0, 1}, + {-12.0, 24.0, 0, 1}, {-11.0, 24.0, 0, 1}, {-10.0, 24.0, 0, 1}, {-6.0, 24.0, 0, 1}, {-5.0, 24.0, 0, 1}, {-4.0, 24.0, 0, 1}, + {-3.0, 24.0, 0, 1}, {-2.0, 24.0, 0, 1}, {1.0, 24.0, 0, 1}, {2.0, 24.0, 0, 1}, {3.0, 24.0, 0, 1}, {4.0, 24.0, 0, 1}, + {5.0, 24.0, 0, 1}, {8.0, 24.0, 0, 1}, {9.0, 24.0, 0, 1}, {10.0, 24.0, 0, 1}, {11.0, 24.0, 0, 1}, {12.0, 24.0, 0, 1}, + {-13.0, 25.0, 0, 1}, {-12.0, 25.0, 0, 1}, {-11.0, 25.0, 0, 1}, {-10.0, 25.0, 0, 1}, {-6.0, 25.0, 0, 1}, {-5.0, 25.0, 0, 1}, + {-4.0, 25.0, 0, 1}, {-3.0, 25.0, 0, 1}, {-2.0, 25.0, 0, 1}, {1.0, 25.0, 0, 1}, {2.0, 25.0, 0, 1}, {3.0, 25.0, 0, 1}, + {4.0, 25.0, 0, 1}, {5.0, 25.0, 0, 1}, {8.0, 25.0, 0, 1}, {9.0, 25.0, 0, 1}, {10.0, 25.0, 0, 1}, {11.0, 25.0, 0, 1}, + {12.0, 25.0, 0, 1}, {-13.0, 26.0, 0, 1}, {-12.0, 26.0, 0, 1}, {-11.0, 26.0, 0, 1}, {-10.0, 26.0, 0, 1}, {-6.0, 26.0, 0, 1}, + {-5.0, 26.0, 0, 1}, {-4.0, 26.0, 0, 1}, {-3.0, 26.0, 0, 1}, {-2.0, 26.0, 0, 1}, {1.0, 26.0, 0, 1}, {2.0, 26.0, 0, 1}, + {3.0, 26.0, 0, 1}, {4.0, 26.0, 0, 1}, {5.0, 26.0, 0, 1}, {8.0, 26.0, 0, 1}, {9.0, 26.0, 0, 1}, {10.0, 26.0, 0, 1}, + {11.0, 26.0, 0, 1}, {12.0, 26.0, 0, 1}, {-13.0, 27.0, 0, 1}, {-12.0, 27.0, 0, 1}, {-11.0, 27.0, 0, 1}, {-10.0, 27.0, 0, 1}, + {-6.0, 27.0, 0, 1}, {-5.0, 27.0, 0, 1}, {-4.0, 27.0, 0, 1}, {-3.0, 27.0, 0, 1}, {-2.0, 27.0, 0, 1}, {1.0, 27.0, 0, 1}, + {2.0, 27.0, 0, 1}, {3.0, 27.0, 0, 1}, {4.0, 27.0, 0, 1}, {5.0, 27.0, 0, 1}, {8.0, 27.0, 0, 1}, {9.0, 27.0, 0, 1}, + {10.0, 27.0, 0, 1}, {11.0, 27.0, 0, 1}, {12.0, 27.0, 0, 1}, {-13.0, 28.0, 0, 1}, {-12.0, 28.0, 0, 1}, {-11.0, 28.0, 0, 1}, + {-10.0, 28.0, 0, 1}, {-6.0, 28.0, 0, 1}, {-5.0, 28.0, 0, 1}, {-4.0, 28.0, 0, 1}, {-3.0, 28.0, 0, 1}, {-2.0, 28.0, 0, 1}, + {1.0, 28.0, 0, 1}, {2.0, 28.0, 0, 1}, {3.0, 28.0, 0, 1}, {4.0, 28.0, 0, 1}, {5.0, 28.0, 0, 1}, {8.0, 28.0, 0, 1}, + {9.0, 28.0, 0, 1}, {10.0, 28.0, 0, 1}, {11.0, 28.0, 0, 1}, {12.0, 28.0, 0, 1}, {-13.0, 29.0, 0, 1}, {-12.0, 29.0, 0, 1}, + {-11.0, 29.0, 0, 1}, {-10.0, 29.0, 0, 1}, {-6.0, 29.0, 0, 1}, {-5.0, 29.0, 0, 1}, {-4.0, 29.0, 0, 1}, {-3.0, 29.0, 0, 1}, + {-2.0, 29.0, 0, 1}, {1.0, 29.0, 0, 1}, {2.0, 29.0, 0, 1}, {3.0, 29.0, 0, 1}, {4.0, 29.0, 0, 1}, {5.0, 29.0, 0, 1}, + {8.0, 29.0, 0, 1}, {9.0, 29.0, 0, 1}, {10.0, 29.0, 0, 1}, {11.0, 29.0, 0, 1}, {12.0, 29.0, 0, 1}, {-13.0, 30.0, 0, 1}, + {-12.0, 30.0, 0, 1}, {-11.0, 30.0, 0, 1}, {-10.0, 30.0, 0, 1}, {-6.0, 30.0, 0, 1}, {-5.0, 30.0, 0, 1}, {-4.0, 30.0, 0, 1}, + {-3.0, 30.0, 0, 1}, {1.0, 30.0, 0, 1}, {2.0, 30.0, 0, 1}, {3.0, 30.0, 0, 1}, {4.0, 30.0, 0, 1}, {5.0, 30.0, 0, 1}, + {9.0, 30.0, 0, 1}, {10.0, 30.0, 0, 1}, {11.0, 30.0, 0, 1}, {12.0, 30.0, 0, 1}, {-12.0, 31.0, 0, 1}, {-11.0, 31.0, 0, 1}, + {-10.0, 31.0, 0, 1}, {-5.0, 31.0, 0, 1}, {-4.0, 31.0, 0, 1}, {-3.0, 31.0, 0, 1}, {2.0, 31.0, 0, 1}, {3.0, 31.0, 0, 1}, + {4.0, 31.0, 0, 1}, {9.0, 31.0, 0, 1}, {10.0, 31.0, 0, 1}, {11.0, 31.0, 0, 1} +}; + +#endif // CONFIG_3D_OBJECT_CUSTOM diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.h new file mode 100644 index 0000000..5f43b49 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.h @@ -0,0 +1,18 @@ +// File generated by ImgTo3D.py +// Image file converted to 3D matrix: cpu_logo.png + +#pragma once + +#include +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t image_to_bmp_array_custom[512]; +extern const float image_to_3d_matrix_custom[1732][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.cpp new file mode 100644 index 0000000..f533506 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.cpp @@ -0,0 +1,114 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "graphics_support.h" + + +void init_perspective_matrix(dspm::Mat &P_m) +{ + const float fov = 90; // field of view in degrees + const float near = 0.0001; + const float far = 1; + + const float S = 1 / (tan((fov / 2) * DEG_TO_RAD)); + + // Initialize matrix to zero + for (int row = 0; row < P_m.rows; row++) { + for (int col = 0; col < P_m.cols; col++) { + P_m(row, col) = 0; + } + } + + P_m(0, 0) = S; + P_m(1, 1) = S; + P_m(2, 2) = -far / (far - near); + P_m(3, 2) = (-far * near) / (far - near); + P_m(2, 3) = -1; + P_m(3, 3) = 1; +} + +void update_perspective_matrix(dspm::Mat &P_m, float fov) +{ + const float near = 0.0001; + const float far = 1; + + const float S = 1 / (tan((fov / 2) * DEG_TO_RAD)); + + // Initialize matrix to zero + for (int row = 0; row < P_m.rows; row++) { + for (int col = 0; col < P_m.cols; col++) { + P_m(row, col) = 0; + } + } + + P_m(0, 0) = S; + P_m(1, 1) = S; + P_m(2, 2) = -far / (far - near); + P_m(3, 2) = (-far * near) / (far - near); + P_m(2, 3) = -1; + P_m(3, 3) = 1; + + P_m(3, 0) = (float)SSD1606_X_CENTER; + P_m(3, 1) = (float)SSD1606_Y_CENTER; +} + +void update_scaling_matrix(dspm::Mat &T_m, bool keep_diagonal, float scale_x, float scale_y, float scale_z) +{ + if (keep_diagonal) { // Multiply the diagonal values of the transformation matrix with the scaling + T_m(0, 0) *= scale_x; // (in case a rotation is already applied) + T_m(1, 1) *= scale_y; + T_m(2, 2) *= scale_z; + } else { + T_m(0, 0) = scale_x; + T_m(1, 1) = scale_y; + T_m(2, 2) = scale_z; + } +} + +void update_translation_matrix(dspm::Mat &T_m, bool row, float move_x, float move_y, float move_z) +{ + if (row) { // update values in 4-th row, if translation matrix is the second multiplier + T_m(3, 0) = move_x; + T_m(3, 1) = move_y; + T_m(3, 2) = move_z; + } else { // update values in 4-th collum, if translation matrix is the first multiplier + T_m(0, 3) = move_x; + T_m(1, 3) = move_y; + T_m(2, 3) = move_z; + } +} + + +void update_rotation_matrix(dspm::Mat &T_m, float rot_x, float rot_y, float rot_z) +{ + dspm::Mat rotation_data(3, 1); // matrix(3x1) that holds x, y, z rotation data + rotation_data(0, 0) = DEG_TO_RAD * rot_x; // rotation data x + rotation_data(1, 0) = DEG_TO_RAD * rot_y; // rotation data y + rotation_data(2, 0) = DEG_TO_RAD * rot_z; // rotation data z + + // Create and populate rotation matrix R(3x3). Then inverse it + dspm::Mat R = ekf::eul2rotm(rotation_data.data).inverse(); + + // Enlarge rotation matrix from 3x3 to 4x4 + for (int row = 0; row < R.rows; row++) { // Copy rotation matrix R(3x3) to transformation matrix T_m(4x4) + for (int col = 0; col < R.cols; col++) { + T_m(row, col) = R(row, col); + } + } +} + +void print_matrix(dspm::Mat matrix) +{ + for (int rows = 0; rows < matrix.rows; rows++) { + for (int cols = 0; cols < matrix.cols; cols++) { + std::cout << matrix(rows, cols) << ", \t"; + } + std::cout << std::endl; + } + std::cout << std::endl << std::endl; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.h new file mode 100644 index 0000000..5bfd03a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.h @@ -0,0 +1,128 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include "esp_dsp.h" +#include "ekf_imu13states.h" + + +#ifdef __cplusplus +extern "C" +{ +#endif + +#include + +#define DEG_TO_RAD 0.01745329252f // Degrees to radians conversion +#define RAD_TO_DEG 57.29577951f // Radians to degrees conversion +#define MATRIX_SIZE 4 // 4x4 matrices are used +#define SSD1306_WIDTH 128 // Display widh in pixels +#define SSD1306_HEIGHT 64 // DIsplay height +#define SSD1606_X_CENTER (SSD1306_WIDTH / 2) // Width center point +#define SSD1606_Y_CENTER (SSD1306_HEIGHT / 2) // Height center point + +/** + * @brief Data struct of 3d image matrix + * + * This structure is used to hold a 3d coordinates of a monochromatic image centered to the origin of the + * cartesian space (0, 0, 0), that has ben processed by the image_to_3d_array.py. + */ +typedef struct image_3d_matrix_s { + const float (*matrix)[MATRIX_SIZE]; /*!< matrix holding xyz coordinates for each point of the converted image.*/ + uint32_t matrix_len; /*!< image matrix length.*/ +} image_3d_matrix_t; + +/** + * @brief Data struct of 3d image matrix with kalman filter object + * + * This structure is used to hold a 3d coordinates of a monochromatic image centered to the origin of the + * cartesian space (0, 0, 0), that has ben processed by the image_to_3d_array.py. + * Kalman filter object is added to the matrix, for the purpose of RTOS task arguments. + */ +typedef struct image_3d_matrix_kalman_s { + const float (*matrix)[MATRIX_SIZE]; /*!< matrix holding xyz coordinates for each point of the converted image.*/ + uint32_t matrix_len; /*!< image matrix length.*/ + ekf_imu13states *ekf13; /*!< kalman filter object.*/ +} image_3d_matrix_kalman_t; + + +/** + * @brief initialize perspective projection matrix + * + * Function initializes Mat class object holding perspective projection matrix. + * + * @param P_m: perspective projection matrix object from the Mat class + */ +void init_perspective_matrix(dspm::Mat &P_m); + + +/** + * @brief update scaling matrix + * + * Function updates scaling part of the transformation matrix. + * + * @param T_m: transformation matrix object from the Mat class + * @param keep_diagonal: if true: diagonal row of the transformation matrix T_m will be mulitplied with the scaling values + * if false: diagonal row of the transformation matrix T_m will be substituted with new scaling values + * @param scale_x: scaling value for x coordinate of the vector + * @param scale_y: scaling value for y coordinate of the vector + * @param scale_z: scaling value for z coordinate of the vector + */ +void update_scaling_matrix(dspm::Mat &T_m, bool keep_diagonal, float scale_x, float scale_y, float scale_z); + + +/** + * @brief update translation matrix + * + * Function updates translation part of the transformation matrix. + * + * @param T_m: transformation matrix object from the Mat class + * @param row: if true: translation values will be placed to the 3rd row of the transformation matrix T_m + * if false: translation values will be placed to the 3rd col of the transformation matrix T_m + * @param move_x: translation value for x coordinate of the vector + * @param move_y: translation value for y coordinate of the vector + * @param move_z: translation value for z coordinate of the vector + */ +void update_translation_matrix(dspm::Mat &T_m, bool row, float move_x, float move_y, float move_z); + + +/** + * @brief update rotation matrix + * + * Function updates rotation part of the tranformation matrix + * + * @param T_m: transformation matrix object from the Mat class + * @param rot_x: rotation angle for x direction of the vector + * @param rot_y: rotation angle for y direction of the vector + * @param rot_z: rotation angle for z direction of the vector + */ +void update_rotation_matrix(dspm::Mat &T_m, float rot_x, float rot_y, float rot_z); + + +/** + * @brief update perspective matrix + * + * Function updates perspective matrix with a new value of field of view + * + * @param P_m: perspective projection matrix object from the Mat class + * @param fov: field of view in degrees + */ +void update_perspective_matrix(dspm::Mat &P_m, float fov); + + +/** + * @brief printf matrix to the terminal output + * + * Print matrix for debug purposes + * + * @param matrix: matrix to be printed + */ +void print_matrix(dspm::Mat matrix); + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/ImgTo3D.py b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/ImgTo3D.py new file mode 100644 index 0000000..3f9baf2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/ImgTo3D.py @@ -0,0 +1,390 @@ +# SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD +# SPDX-License-Identifier: CC0-1.0 + +import sys +import os +import subprocess + +PIL_INSTALLED = True +PYTHON_FILE_NAME = os.path.basename(__file__) # name of the Python file itself +OUTPUT_FILE_NAME = "image_to_3d_matrix" # generated output .c and .h file names +OUTPUT_3D_MATRIX_NAME = "image_to_3d_matrix_custom" # generated output 3D matrix in the .c and .h file +OUTPUT_BMP_ARRAY_NAME = "image_to_bmp_array_custom" # generated output BMP array in the .c and .h file +TEMPLATE_FILE_NAME = "template_img_to_3d" # name of the .c and .h template files + +ESP_IOT_AZURE_DISPLAY_WIDTH = 128 # ESP_IOT_AZURE board display width +ESP_IOT_AZURE_DISPLAY_HEIGHT = 64 # ESP_IOT_AZURE board display height + +try: + from PIL import Image, ImageOps +except ImportError as e: + PIL_INSTALLED = False + print(e) + +if not PIL_INSTALLED: + print("Installing Pillow package by running command -m pip install --upgrade Pillow") + try: + subprocess.check_call([sys.executable, "-m", "pip", "install", "--upgrade", "Pillow"]) + except subprocess.CalledProcessError as e: + print(e) + + +class Image3DMatrix: + """ class for 3d image matrix """ + def __init__(self): + self.terminal_args = sys.argv # get command line arguments + self.img_path = None # path to the image + self.img_name = None # image name + self.img_ext = None # image extension + self.img_width = None # image target width + self.img_height = None # image target height + self.img_invert = False # invert monochromatic + self.img_include_bmp = False # include BMP form of the image + self.converted_img_dir = None # location to save the converted image + self.result_dir = None # location to save the .c and .h files + self.templates_dir = None # location where template files are saved + self.z_dist = 0 # Z distance of the 3D matrix + self.get_termianl_input() + + def get_optional_args(self): + """ take optional arguments from the terminal, if there are any """ + + # take all the optional arguments + if len(self.terminal_args) > 4: + opt_args = self.terminal_args[4:len(self.terminal_args)] + + # check the optional arguments "invert" "bmp" and z_dist + for arg in opt_args: + if arg.isdecimal(): + self.z_dist = int(arg) + elif arg.lower() == "invert": + self.img_invert = True + elif arg.lower() == "bmp": + self.img_include_bmp = True + + @staticmethod + def check_if_img_file_exists(path: str): + """ check, if provided image file path from terminal input is valid and an image file exits """ + + # check if a file exists on the provided absolute path + if os.path.isabs(path): + if not os.path.isfile(path): + print(f"Provided file {path} does not exist") + sys.exit() + + # check if a file exists on the provided relative path + else: + absolute_path = os.path.join(os.getcwd(), path) + if not os.path.isfile(absolute_path): + print(f"Provided file {path} does not exist") + sys.exit() + else: + return absolute_path + + return path + + @staticmethod + def check_if_templates_exist(): + """ Check if template .c and .h files exist """ + + # check if templates folder exists + templates_dir = os.path.join(os.getcwd(), "templates") + if not os.path.exists(templates_dir): + print(f"templates folder does not exist at location: {templates_dir}") + sys.exit() + + # check if template .c file exists + template_c_file = os.path.join(templates_dir, f"{TEMPLATE_FILE_NAME}.c") + if not os.path.isfile(template_c_file): + print(f".c template file does not exist at location {template_c_file}") + sys.exit() + + # check if template .h file exists + template_h_file = os.path.join(templates_dir, f"{TEMPLATE_FILE_NAME}.h") + if not os.path.isfile(template_h_file): + print(f".h template file does not exist at location {template_h_file}") + sys.exit() + + return templates_dir + + def get_img_name_extension(self): + """ extract image file name and image file extension """ + + img_file = os.path.basename(self.img_path) # image file with extension + self.img_name = os.path.splitext(img_file)[0] # extract file name + + # Extract the file extension, to CAPS and remove the first character being dot + self.img_ext = os.path.splitext(img_file)[1].upper()[1:] + + @staticmethod + def check_if_is_img(path: str, filename: str): + """ check if the provided file is an image and if its extension is supported """ + + # check if a file (which exits) is an image file + if not path.lower().endswith(('.png', '.jpg', '.jpeg', '.tiff', '.bmp', '.gif')): + print(f"provided file {filename} is not a supported image file") + sys.exit() + + @staticmethod + def check_pixels(height: str, width: str): + """ check if the provided result image height and width are decimal numbers """ + + # check if provided resulting image width and height are decimal numbers + if not height.isdecimal() and width.isdecimal(): + print(f"Provided image target width {width} and/or height {height} not valid") + sys.exit() + + @staticmethod + def check_if_pixels_in_range(height: int, width: int): + """ check if the provided result image height and width are in a valid range """ + + # check if the height and width are in the display's range + if (height > ESP_IOT_AZURE_DISPLAY_HEIGHT + 1 or width > ESP_IOT_AZURE_DISPLAY_WIDTH + 1 or + height < 1 or width < 1): + print(f"Provided image target width {width} and/or height {height} \ + is out of range of the display's dimensions ({ESP_IOT_AZURE_DISPLAY_WIDTH}x{ESP_IOT_AZURE_DISPLAY_HEIGHT})") + sys.exit() + + if height % 2 or width % 2: + print(f"Provided image target width {width} and height {height} must be even") + sys.exit() + + def create_paths(self): + """ create paths for the result files """ + + # if running from the example folder, leave the results there + # if running from anywhere else, change cwd to dir, where the python is located + cwd = os.getcwd() # current working directory + abspath = os.path.abspath(__file__) # get the absolute path of the python script + python_dir = os.path.dirname(abspath) # get the absolute path of the folder, in which the python script is located + + if os.path.join("img_to_3d_matrix", "example") not in cwd: + os.chdir(python_dir) # go to a directory where the python is located + + # create an absolute path for the folder in which the image after conversion will be saved + self.converted_img_dir = os.path.join(os.getcwd(), "converted_image") + if not os.path.exists(self.converted_img_dir): + # if the path does not exist, create it + os.makedirs(self.converted_img_dir) + + # create an absolute path for the folder, to which the resulting .c and .h files will be saved + self.result_dir = os.path.join(os.path.dirname(os.getcwd()), "3d_matrix", "3d_matrix_data") + if not os.path.exists(self.result_dir): + # if the path does not exist, use the current path instead + self.result_dir = os.getcwd() + + if os.path.join("img_to_3d_matrix", "example") in cwd: + os.chdir(python_dir) # go to a directory where the python is located + + def get_termianl_input(self): + """ get input parameters from terminal """ + + if ((len(self.terminal_args) == 2) and (str(self.terminal_args[1]) == "--help")): + query = '\n'.join([ + f"\npython {PYTHON_FILE_NAME} -image_path -image_width -image_height -z_distance -invert -bmp\n\n" + "-image_path absolute or relative path to an image to be processed", + "-image_width width (in pixels) of the resulting 3D image", + "-image_height height (in pixels) of the resulting 3D image", + "-z_distance (optional) Z distance (in pixels) of the resulting 3D image, leave blank otherwise", + "-invert (optional) to invert colors, leave blank otherwise", + "-bmp (optional) to include BMP from of the provided image, leave blank otherwise"]) + print(query) + sys.exit() + + elif len(self.terminal_args) < 4: + print(f"Too few arguments run following command for help\npython {PYTHON_FILE_NAME} --help") + sys.exit() + + else: + self.img_path = self.terminal_args[1] + self.img_width = self.terminal_args[2] + self.img_height = self.terminal_args[3] + + self.get_optional_args() + self.img_path = self.check_if_img_file_exists(self.img_path) + self.get_img_name_extension() + self.check_if_is_img(self.img_path, self.img_name) + self.check_pixels(self.img_height, self.img_width) + self.img_height = int(self.img_height) + self.img_width = int(self.img_width) + self.check_if_pixels_in_range(self.img_height, self.img_width) + self.create_paths() + self.templates_dir = self.check_if_templates_exist() + + +def fromat_comas_spaces(element_index: int, array_len: int, elements_per_line: int, c_file): + """ Formating of the spaces, commas and new lines for arrays in the .c file """ + + # Dont put comma after the last array member + if element_index != array_len: + c_file.write(",") + + # new line after each elements_per_line + if not element_index % elements_per_line: + c_file.write("\n") + + # start a new line with tab + if element_index != array_len: + c_file.write(" ") + + # put space after each coma + # except after the last array member and before a new line + else: + if element_index != array_len: + c_file.write(" ") + + +def ouptput_files_gen(img3d: Image3DMatrix, bmp_arr: list, matrix_arr: list): + """ write 3d matrix array and optional BMP array to .c and .h files """ + + # generate a c file and save it to the main folder (if exists in the file structure) + output_c_file_name = f"{OUTPUT_FILE_NAME}.c" + with open(os.path.join(img3d.templates_dir, f"{TEMPLATE_FILE_NAME}.c"), "r", encoding="utf8") as c_template_file: + with open(os.path.join(img3d.result_dir, output_c_file_name), "w+", encoding="utf8") as c_file: + + c_file.write(f"// File generated by {PYTHON_FILE_NAME}\n") # write first line to c_file + c_file.write(f"// Image file converted to 3D matrix {img3d.img_name}.{img3d.img_ext.lower()}\n") + next(c_template_file) + next(c_template_file) # skip first 2 lines from c_template_file + for line in c_template_file: + + if "const" in line: + # include BMP form if requested + if img3d.img_include_bmp: + c_file.write(f"const uint8_t {OUTPUT_BMP_ARRAY_NAME}[{len(bmp_arr)}] = {{\n\n ") + for index, bmp_byte in enumerate(bmp_arr, start=1): + c_file.write(f"0x{bmp_byte:02x}") + fromat_comas_spaces(index, len(bmp_arr), 16, c_file) + c_file.write("\n};\n\n") + + # write 3d matrix form + c_file.write(f"const float {OUTPUT_3D_MATRIX_NAME}[{len(matrix_arr)}][4] = {{\n\n ") + for index, line in enumerate(matrix_arr, start=1): + line_joined = ', '.join(map(str, line)) + c_file.write(f"{{{line_joined}}}") + fromat_comas_spaces(index, len(matrix_arr), 6, c_file) + c_file.write("\n};\n") + next(c_template_file) + continue + + # copy line from c_template_file to c_file + c_file.write(line) + + c_file.close() + c_template_file.close() + + # generate an h file and save it to the main folder (if exists in the file structure) + output_h_file_name = f"{OUTPUT_FILE_NAME}.h" + with open(os.path.join(img3d.templates_dir, f"{TEMPLATE_FILE_NAME}.h"), "r", encoding="utf8") as h_template_file: + with open(os.path.join(img3d.result_dir, output_h_file_name), "w+", encoding="utf8") as h_file: + + h_file.write(f"// File generated by {PYTHON_FILE_NAME}\n") # write first line to h_file + h_file.write(f"// Image file converted to 3D matrix: {img3d.img_name}.{img3d.img_ext.lower()}\n") + next(h_template_file) + next(h_template_file) # skip first 2 lines from h_template_file + for line in h_template_file: + + if "extern const" in line: + # include BMP header if requested + if img3d.img_include_bmp: + h_file.write(f"extern const uint8_t {OUTPUT_BMP_ARRAY_NAME}[{len(bmp_arr)}];\n") + + # include 3d matrix header + h_file.write(f"extern const float {OUTPUT_3D_MATRIX_NAME}[{len(matrix_arr)}][4];\n") + next(h_template_file) + continue + + h_file.write(line) + + h_file.close() + h_template_file.close() + + query = '\n'.join([ + "\nOutput files generation done!", + f"Output files {output_c_file_name} {output_h_file_name}", + f"Output files location {img3d.result_dir}"]) + print(query) + + +def create_matrix(img3d: Image3DMatrix, pixels: list, bmp_img_array: list, matrix_img_array: list): + """ Create a 3D matrix and optional BMP form of the converted image """ + + multiplier = pow(2, 7) + byte = 0 + + # convert pixels to both, bmp and 3d from + for index, pixel in enumerate(pixels, start=1): + if pixel: + byte += multiplier + y_coord = int((index - 1) / img3d.img_width) + x_coord = (index - 1) - (y_coord * img3d.img_width) - (img3d.img_width / 2) + y_coord = y_coord - (img3d.img_height / 2) + matrix_img_array.append((x_coord, y_coord, img3d.z_dist, 1)) + + multiplier >>= 1 + + if not index % 8: + multiplier = pow(2, 7) + bmp_img_array.append(byte) + byte = 0 + + +def convert_img(img3d: Image3DMatrix): + """ image conversion to list of monochromatic pixels """ + + # open an image and convert the image to monochromatic + img = Image.open(img3d.img_path) + img = img.convert(mode="1", dither=Image.NONE) + + # if requested, invert black and white + if img3d.img_invert: + img = ImageOps.invert(img) + + # resize the image and get the width and height of the resized image, to check + img = img.resize((int(img3d.img_width), int(img3d.img_height)), resample=Image.NEAREST) + res_width, res_height = img.size + + # get image pixels as a list, after converting the image to monochromatic - pixels are either 0 or 255 + pixels = list(img.getdata()) + + # check if the resized image has the same dimensions as the required dimensions + if (res_width, res_height) != (img3d.img_width, img3d.img_height): + query = '\n'.join([ + "Image conversion was not successful!", + f"Required width and height: {img3d.img_width} {img3d.img_height}", + f"Real width and height: {res_width} {res_height}"]) + print(query) + sys.exit() + else: + # if converted correctly, save the converted image + if img3d.img_invert: + invert = "_invert_conv." + else: + invert = "_conv." + + converted_img_name = ''.join([img3d.img_name, invert, img3d.img_ext.lower()]) + converted_img_location = os.path.join(img3d.converted_img_dir, converted_img_name) + img.save(converted_img_location, format=img3d.img_ext, subsampling=0, quality=100) + query = '\n'.join([ + "Image conversion done!", + f"Converted image {converted_img_name}", + f"Converted image location {os.path.join(img3d.converted_img_dir)}"]) + print(query) + return pixels + + +def main(): + """ main function of the image_to_3d_matrix """ + + img3d = Image3DMatrix() + pixels = convert_img(img3d) + + bmp_img_array = list() + matrix_img_array = list() + create_matrix(img3d, pixels, bmp_img_array, matrix_img_array) + ouptput_files_gen(img3d, bmp_img_array, matrix_img_array) + print("\nAll done!") + + +if __name__ == '__main__': + main() diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/README.md new file mode 100644 index 0000000..c225009 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/README.md @@ -0,0 +1,105 @@ +# Getting the 3D matrix +`ImgTo3D.py` generates a 3D matrix for the monochromatic display, from a provided 2D graphics - image. As the output, `.c` and `.h` files containing the 3D matrix, are already included in the project structure, to `CMakeList.txt` and `.cpp` files. The output arrays are named `image_to_3d_matrix_custom` and `image_to_bmp_array_custom` by default. The converted image is saved for a preview. + +The script can be called by following commands: + + python ImgTo3D.py image_path image_width image_height + +* `ImgTo3D.py` - absolute path to the python file +* `image_path` - absolute or relative path to the image, to be converted +* `image_width` - resulting width of the converted image (in pixels) +* `image_height` - resulting height of the converted image (in pixels) + +The python script converts the provided image first to a monochromatic image, then resizes the image according to the provided dimensions, then converts the image to a 3D matrix and finally saves the 3D into a `.c` file. + + python ImgTo3D.py --help + +Run for help - prints hints, how to run the file and information about the arguments. + +### Optional arguments + python ImgTo3D.py image_path image_width image_height z_dist invert bmp + +* `z_dist` puts a distance (in pixels) into the Z direction of each matrix row - each 3D point. 0 is used otherwise +* `invert` inverts black and white in the converted monochromatic image, causing inverting pixels that will be lit on the display +* `bmp` includes a BMP form of the converted image into the output `.c` and `.h` files + +The optional arguments can be added in any sequence. + +# Example + +To get example results, in the example folder, run the script from the example folder like so: + + /example $ python ../ImgTo3D.py cpu_logo.png 64 64 invert bmp + +To get the results already integrated into the project, run the script from any other location: + + /any_location $ python abs_path/ImgTo3D.py cpu_logo.png 64 64 bmp invert + +Converts `cpu_logo.png` image into a 3D matrix with dimensions of `64x64` pixels, with inverted colors and the BMP is included into the output file. + +## Output files + +python script produces the following output: + +* `converted_image/cpu_logo_invert_conv.png` image after the conversion (monochromatic and resized image) +* `image_to_3d_matrix.c` c file with 3D and BMP matrices in `const` arrays +* `image_to_3d_matrix.h` h file with 3D and BMP arrays declarations in `extern const` + +The output `.c` and `.h` files are based on template files `template_img_to_3d.c` and `template_img_to_3d.h`. From which, only the variables declarations are changed according to the converted image. + +The expected output from the python script is the following: + + Image conversion done! + Converted image cpu_logo_invert_conv.png + Converted image location ${workspaceFolder}/graphics/img_to_3d_matrix/example/converted_image + + Output files generation done! + Output files image_to_3d_matrix.c image_to_3d_matrix.h + Output files location ${workspaceFolder}/graphics/img_to_3d_matrix/example + + All done! + +## Image conversion output example + +
+ + + + + + + + + + + + + + + +
+

+ Converted image (64x64) +

+
+

+ Inverted colors (64x64) +

+
+
+ +
+
+
+ +
+
+

+ Original image (256x256) +

+
+
+ +
+
+
\ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_conv.png b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_conv.png new file mode 100644 index 0000000..58a8452 Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_conv.png differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_invert_conv.png b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_invert_conv.png new file mode 100644 index 0000000..a7970e5 Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_invert_conv.png differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/image/cpu_logo.png b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/image/cpu_logo.png new file mode 100644 index 0000000..bd8e95e Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/example/image/cpu_logo.png differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.c new file mode 100644 index 0000000..dd206d3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.c @@ -0,0 +1,11 @@ +// template file - template_img_to_3d.c +// arrays declarations will be modified by python script ImgTo3D.py + +#include "image_to_3d_matrix.h" + +#ifdef CONFIG_3D_OBJECT_CUSTOM + +const uint8_t TEMPLATE_ARRAY_BMP_IMAGE[NUM_OF_BYTES] = {}; +const float TEMPLATE_ARRAY_IMAGE_TO_3D_MATRIX[NUM_OF_POINTS][4] = {}; + +#endif // CONFIG_3D_OBJECT_CUSTOM diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.h new file mode 100644 index 0000000..4dba986 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.h @@ -0,0 +1,18 @@ +// template file - template_img_to_3d.h +// arrays declarations will be modified by python script ImgTo3D.py + +#pragma once + +#include +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t TEMPLATE_ARRAY_BMP_IMAGE[NUM_OF_BYTES]; +extern const float TEMPLATE_ARRAY_IMAGE_TO_3D_MATRIX[NUM_OF_POINTS][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/CMakeLists.txt new file mode 100644 index 0000000..577afcd --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/CMakeLists.txt @@ -0,0 +1,7 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(audio-lyraT) +spiffs_create_partition_image(storage spiffs FLASH_IN_PROJECT) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/README.md new file mode 100644 index 0000000..2fe8abf --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/README.md @@ -0,0 +1,71 @@ +# ESP-DSP LyraT Board audio processing application + +The demo applications are developed for the ESP32-LyraT development board and demonstrate the usage of IIR filters from the ESP-DSP library. +This example showcases how to use IIR filter functionality to process audio stream data. +To hear the audio please connect headphones or speakers to the ESP32-LyraT audio output. +The example performs the following steps: + +1. Read samples from a file + * read samples from file + * write audio samples to the triple buffer +2. Process audio samples + * process volume/bass/treble + * apply digital limiter to the audio data + * control audio buffer overflow +3. Pass samples to the audio codec + +To control the volume/bass/treble, please select the value by press 'Set' button and adjust the value by '+/-' buttons. + +## The Triple Audio Buffer + +In audion processing, it's possible to have situation when one task write data to the processing buffer (processing task), and another task read data from the same buffer, and still in reading process. +Triple buffering is a technique used in audio processing to minimize latency and ensure smooth playback. It involves using three buffers to store audio data. Here's a description of how it works: + +* Buffer A: This buffer holds the audio data that is currently being processed by the audio system. It is typically filled with samples from the audio source and processed in real-time. + +* Buffer B: When Buffer A is full, the audio system begins reading from Buffer A and starts processing the data. At the same time, Buffer B is filled with new audio samples from the source. + +* Buffer C: Once Buffer B is full, the audio system switches its attention to Buffer B and continues processing data. Buffer C is then filled with the latest audio samples. + +The cycle continues, with the audio system always processing the data from a buffer while the other two buffers are being filled. This approach helps ensure a continuous and uninterrupted audio playback, as there is always a buffer ready to be processed. It reduces the chances of audio glitches or dropouts caused by delays in reading or processing the audio data. + +Triple buffering is particularly useful when working with real-time audio processing applications, where low latency and uninterrupted playback are crucial. + +## Audio Processing Flow + +The audio processing flow contains next blocks: +1. Audio processing task + * Read data from file and store to the triple buffer + * Read from triple buffer and concert data from int16_t to float + * Process bass + * Process treble + * Process volume + * Apply digital limiter + * Convert data from float to int16_t and store to the triple buffer +2. Audio output task + * Write data from triple buffer to audio codec +3. Buttons control task + * React on buttons and adjust the control values + * Calculates IIR filter coefficients + +## How to use the example + +### Hardware required + +This example require LyraT development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py flash monitor +``` + +(To exit the serial monitor, type ``Ctrl-]``.) + +See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects. diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/main/CMakeLists.txt new file mode 100644 index 0000000..e789f5c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "audio_amp_main.c") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/main/audio_amp_main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/main/audio_amp_main.c new file mode 100644 index 0000000..480534a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/main/audio_amp_main.c @@ -0,0 +1,382 @@ +/* + * SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: CC0-1.0 + */ + +#include +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/queue.h" +#include "esp_log.h" +#include "esp_dsp.h" +#include "bsp/esp-bsp.h" +#include +#include + +// Buffer for reading/writing to I2S driver. Same length as SPIFFS buffer and I2S buffer, for optimal read/write performance. +// Recording audio data path: +// I2S peripheral -> I2S buffer (DMA) -> App buffer (RAM) -> SPIFFS buffer -> External SPI Flash. +// Vice versa for playback. +#define BUFFER_SIZE (64) +#define SAMPLE_RATE (16000) // For recording +#define DEFAULT_VOLUME (100) + +// Globals +static const char *TAG = "example"; +static QueueHandle_t audio_button_q = NULL; + +static void btn_handler(void *button_handle, void *usr_data) +{ + int button_pressed = (int)usr_data; + xQueueSend(audio_button_q, &button_pressed, 0); +} + +// Very simple WAV header, ignores most fields +typedef struct __attribute__((packed)) +{ + uint8_t ignore_0[22]; + uint16_t num_channels; + uint32_t sample_rate; + uint8_t ignore_1[6]; + uint16_t bits_per_sample; + uint8_t ignore_2[4]; + uint32_t data_size; + uint8_t data[]; +} dumb_wav_header_t; + +typedef enum audio_set { + AUDIO_VOLUME, + AUDIO_BASS, + AUDIO_TREBLE, +} audio_set_t; + +static esp_codec_dev_handle_t spk_codec_dev = NULL; +static FILE *play_file = NULL; +// Pointer to a file that is going to be played +static const char play_filename[] = BSP_SPIFFS_MOUNT_POINT"/16bit_mono_44_1_khz.wav"; + +// Definition for all tasks +static void buttons_process_task(void *arg); +static void audio_read_task(void *arg); +static void audio_process_task(void *arg); + + +// Wave file header +static dumb_wav_header_t wav_header; +static audio_set_t current_set = AUDIO_VOLUME; + +// Data for IIR filters +float iir_coeffs_lpf[5]; +float iir_w_lpf[5] = {0, 0}; + +float iir_coeffs_hpf[5]; +float iir_w_hpf[5] = {0, 0}; + +// IIR filters parameters +// Parameters for low-pass filter (LPF) +float lpf_gain = 0; +float lpf_qFactor = 0.5; +float lpf_freq = 0.01; + +// Parameters for high-pass filter (HPF) +float hpf_gain = 0; +float hpf_qFactor = 1; +float hpf_freq = 0.15; + +// Volume control definitions +float full_volume = 1; +// Volume in dB +int full_volume_db = -12; +// Digital limiter envelope value +float full_envelope = 0; + +// processing audio buffer +float processing_audio_buffer[BUFFER_SIZE] = {0}; + +// The triple_audio_buffer contains tree data arrays sizeof BUFFER_SIZE, for writing audio data to the codec +int16_t triple_audio_buffer[3 * BUFFER_SIZE] = {0}; +// The write index shows the audio buffer that will be used to write data to the codec +int audio_buffer_write_index = 0; +// The read index shows the audio buffer that will be used to fill data from the data source to the processing buffer +int audio_buffer_read_index = 0; + +// Semaphore to synchronize the read and write +static SemaphoreHandle_t sync_read_task; + +// Convert input int16_t Q15 values array to the float values array +static void convert_short2float(int16_t *int16_data, float *float_data, int len) +{ + float multiplier = 1.0 / (float)(INT16_MAX + 1); + for (int i = 0 ; i < len ; i++) { + float_data[i] = (float)int16_data[i] * multiplier; + } +} + +// Convert input float values to the int16_t Q15 values array +static void convert_float2short(float *float_data, int16_t *int16_data, int len) +{ + float multiplier = (float)(INT16_MAX + 1); + for (int i = 0 ; i < len ; i++) { + int16_data[i] = (int16_t)((float)multiplier * (float)float_data[i]); + } +} + +// In the audio processing the valid output audio values for the floating point format should be in range +/- 1.0, +// because these values will be converted to the 0x8000 and 0x7fff int16_t values, and will be accepted by the codec. +// With additional amplification, for example bass, treble, and for other processing, it is possible that the audio +// signal will reach the maximum values and will make an overflow at the DAC. +// To avoid this situation the digital limiter analyze the output values and control the full amplification gain. +// +void digitalLimiter(float *input_signal, float *output_signal, int signal_length, float threshold, float attack_value, float release_value, float *in_envelope) +{ + float envelope = *in_envelope; + for (int i = 0; i < signal_length; i++) { + // Calculate envelope + float abs_input = fabsf(input_signal[i]); + if (abs_input > envelope) { + envelope = envelope * (1 - attack_value) + attack_value * abs_input; + } else { + envelope = envelope * (1 - release_value) + release_value * abs_input; + } + + // Apply compression + if (envelope > threshold) { + output_signal[i] = input_signal[i] * (threshold / envelope); + } else { + output_signal[i] = input_signal[i]; + } + } + *in_envelope = envelope; +} + +static void audio_process_task(void *arg) +{ + // Init codeac and apply the initial volume to maximum + spk_codec_dev = bsp_audio_codec_speaker_init(); + assert(spk_codec_dev); + esp_codec_dev_set_out_vol(spk_codec_dev, DEFAULT_VOLUME); + + // Open file and het the WAV header to set up the sample frequency, amount of channels and resolution + play_file = fopen(play_filename, "rb"); + if (play_file == NULL) { + ESP_LOGW(TAG, "%s file does not exist!", play_filename); + } + // Read WAV header + if (fread((void *)&wav_header, 1, sizeof(wav_header), play_file) != sizeof(wav_header)) { + ESP_LOGW(TAG, "Error in reading file"); + return; + } + + ESP_LOGI(TAG, "Number of channels: %" PRIu16 "", wav_header.num_channels); + ESP_LOGI(TAG, "Bits per sample: %" PRIu16 "", wav_header.bits_per_sample); + ESP_LOGI(TAG, "Sample rate: %" PRIu32 "", wav_header.sample_rate); + ESP_LOGI(TAG, "Data size: %" PRIu32 "", wav_header.data_size); + esp_codec_dev_sample_info_t fs = { + .sample_rate = wav_header.sample_rate, + .channel = wav_header.num_channels, + .bits_per_sample = wav_header.bits_per_sample, + }; + if (spk_codec_dev != NULL) { + int result = esp_codec_dev_open(spk_codec_dev, &fs); + } + // Calculate initial volume value + full_volume = exp10f((float)full_volume_db / 20); + // Calculate initial state for LPF + dsps_biquad_gen_lowShelf_f32(iir_coeffs_lpf, lpf_freq, lpf_gain, lpf_qFactor); + // Calculate initial state for HPF + dsps_biquad_gen_highShelf_f32(iir_coeffs_hpf, hpf_freq, hpf_gain, hpf_qFactor); + + BaseType_t ret = xTaskCreate(buttons_process_task, "buttons_process_task", 4096, NULL, 4, NULL); + assert(ret == pdPASS); + + sync_read_task = xSemaphoreCreateCounting(1, 0); + + ret = xTaskCreate(audio_read_task, "audio_read_task", 4096, NULL, 7, NULL); + assert(ret == pdPASS); + vTaskDelay(1); + + ESP_LOGW(TAG, "To select volume/bass/treble please use the 'Set' button. And adjust the value with +/- buttons."); + + for (;;) { + /* Get data from SPIFFS and send it to codec */ + int16_t *wav_bytes = &triple_audio_buffer[audio_buffer_write_index * BUFFER_SIZE]; + // Write samples to audio codec + esp_codec_dev_write(spk_codec_dev, wav_bytes, BUFFER_SIZE * sizeof(int16_t)); + audio_buffer_write_index++; + if (audio_buffer_write_index >= 3) { + audio_buffer_write_index = 0; + } + // Check the triple buffer overflow + if (audio_buffer_write_index == audio_buffer_read_index) { + // Call delay to switch the task to fill the buffer + vTaskDelay(1); + // Check and indicate overflow status + if (audio_buffer_write_index == audio_buffer_read_index) { + ESP_LOGW(TAG, "Audio buffer overflow!"); + } + } + // Generate synt event to read task: + xSemaphoreGive(sync_read_task); + } +} + +// The audio_read_task is responsible to read data from the file and fill it to the audio buffer. +// The audio buffer is places inside of triple buffer, to avoid overflow situation in case if +// the processing task busy for a while. +static void audio_read_task(void *arg) +{ + while (1) { + // Wait the sync semaphore + if (xSemaphoreTake(sync_read_task, 100)) { + // Get the pointer to the current audio buffer + int16_t *wav_buffer = &triple_audio_buffer[audio_buffer_read_index * BUFFER_SIZE]; + // Read the data from the file + uint32_t bytes_read_from_spiffs = fread(wav_buffer, sizeof(int16_t), BUFFER_SIZE, play_file); + // Convert input samples from int16 to float for processing + convert_short2float((int16_t *)wav_buffer, processing_audio_buffer, BUFFER_SIZE); + // Apply bass + dsps_biquad_f32(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, iir_coeffs_lpf, iir_w_lpf); + // Apply treble + dsps_biquad_f32(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, iir_coeffs_hpf, iir_w_hpf); + // Apply voluve + dsps_mulc_f32_ansi(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, full_volume, 1, 1); + // Apply limiter + digitalLimiter(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, 0.5, 0.5, 0.0001, &full_envelope); + // Convert from float to int16 for audio codec + convert_float2short(processing_audio_buffer, (int16_t *)wav_buffer, BUFFER_SIZE); + + if (bytes_read_from_spiffs != BUFFER_SIZE) { + // Rewind the file and read the WAV header + rewind(play_file); + fread((void *)&wav_header, 1, sizeof(wav_header), play_file); + // Read data to the audio buffer + bytes_read_from_spiffs = fread(wav_buffer, sizeof(int16_t), BUFFER_SIZE, play_file); + } + audio_buffer_read_index++; + if (audio_buffer_read_index >= 3) { + audio_buffer_read_index = 0; + } + } else { + // Error in case of timeout + ESP_LOGE(TAG, "Audio timeout!"); + } + } +} + +static void buttons_process_task(void *arg) +{ + while (1) { + int btn_index = 0; + if (xQueueReceive(audio_button_q, &btn_index, portMAX_DELAY) == pdTRUE) { + switch (btn_index) { + case BSP_BUTTON_SET: { + current_set += 1; + if (current_set > 2) { + current_set = AUDIO_VOLUME; + } + switch (current_set) { + case AUDIO_VOLUME: + ESP_LOGW(TAG, "Select volume"); + break; + case AUDIO_BASS: + ESP_LOGW(TAG, "Select bass"); + break; + case AUDIO_TREBLE: + ESP_LOGW(TAG, "Select treble"); + break; + default: + break; + } + break; + } + case BSP_BUTTON_VOLDOWN: { + switch (current_set) { + case AUDIO_VOLUME: + full_volume_db -= 3; + if (full_volume_db < -36) { + full_volume_db = -36; + } + full_volume = exp10f((float)full_volume_db / 20); + ESP_LOGI(TAG, "Volume Down: %i dB", full_volume_db); + break; + case AUDIO_BASS: + lpf_gain -= 1; + if (lpf_gain < -12) { + lpf_gain = -12; + } + ESP_LOGI(TAG, "Bass Down: %i", (int)lpf_gain); + dsps_biquad_gen_lowShelf_f32(iir_coeffs_lpf, lpf_freq, lpf_gain, lpf_qFactor); + break; + case AUDIO_TREBLE: + hpf_gain -= 1; + if (hpf_gain < -12) { + hpf_gain = -12; + } + ESP_LOGI(TAG, "Treble Down: %i", (int)hpf_gain); + dsps_biquad_gen_highShelf_f32(iir_coeffs_hpf, hpf_freq, hpf_gain, hpf_qFactor); + break; + default: + break; + } + break; + } + case BSP_BUTTON_VOLUP: { + switch (current_set) { + case AUDIO_VOLUME: + full_volume_db += 3; + if (full_volume_db > 0) { + full_volume_db = 0; + } + full_volume = exp10f((float)full_volume_db / 20); + ESP_LOGI(TAG, "Volume Up: %i dB", full_volume_db); + break; + case AUDIO_BASS: + lpf_gain += 1; + if (lpf_gain > 12) { + lpf_gain = 12; + } + ESP_LOGI(TAG, "Bass Up: %i", (int)lpf_gain); + dsps_biquad_gen_lowShelf_f32(iir_coeffs_lpf, lpf_freq, lpf_gain, lpf_qFactor); + break; + case AUDIO_TREBLE: + hpf_gain += 1; + if (hpf_gain > 12) { + hpf_gain = 12; + } + ESP_LOGI(TAG, "Treble Up: %i", (int)hpf_gain); + dsps_biquad_gen_highShelf_f32(iir_coeffs_hpf, hpf_freq, hpf_gain, hpf_qFactor); + break; + default: + break; + } + break; + } + default: + ESP_LOGI(TAG, "No function for this button"); + break; + } + } + } +} + +void app_main(void) +{ + ESP_ERROR_CHECK(bsp_spiffs_mount()); + + // Create FreeRTOS tasks and queues + audio_button_q = xQueueCreate(10, sizeof(int)); + assert (audio_button_q != NULL); + + BaseType_t ret = xTaskCreate(audio_process_task, "audio_process_task", 4096, NULL, 6, NULL); + assert(ret == pdPASS); + + // Init audio buttons + button_handle_t btns[BSP_BUTTON_NUM]; + ESP_ERROR_CHECK(bsp_iot_button_create(btns, NULL, BSP_BUTTON_NUM)); + for (int i = 0; i < BSP_BUTTON_NUM; i++) { + ESP_ERROR_CHECK(iot_button_register_cb(btns[i], BUTTON_PRESS_DOWN, btn_handler, (void *) i)); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/main/idf_component.yml new file mode 100644 index 0000000..836b286 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/main/idf_component.yml @@ -0,0 +1,5 @@ +dependencies: + espressif/esp32_lyrat: "^1.0.0" + espressif/esp-dsp: + version: '*' + override_path: "../../../../esp-dsp" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/partitions.csv b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/partitions.csv new file mode 100644 index 0000000..8982158 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/partitions.csv @@ -0,0 +1,6 @@ +# Name, Type, SubType, Offset, Size, Flags +# Note: if you change the phy_init or app partition offset, make sure to change the offset in Kconfig.projbuild +nvs, data, nvs, 0x9000, 0x6000, +phy_init, data, phy, 0xf000, 0x1000, +factory, app, factory, 0x10000, 1M, +storage, data, spiffs, , 0x2f0000, diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/sdkconfig.defaults b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/sdkconfig.defaults new file mode 100644 index 0000000..77ceed5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/sdkconfig.defaults @@ -0,0 +1,8 @@ +# This file was generated using idf.py save-defconfig. It can be edited manually. +# Espressif IoT Development Framework (ESP-IDF) Project Minimal Configuration +# +CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y +CONFIG_PARTITION_TABLE_CUSTOM=y +CONFIG_SPIRAM=y +CONFIG_SPIRAM_USE_MEMMAP=y +CONFIG_SPIFFS_PAGE_SIZE=1024 diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/spiffs/16bit_mono_44_1_khz.wav b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/spiffs/16bit_mono_44_1_khz.wav new file mode 100644 index 0000000..b27b090 Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/lyrat_board_app/spiffs/16bit_mono_44_1_khz.wav differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/CMakeLists.txt new file mode 100644 index 0000000..6913a71 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/CMakeLists.txt @@ -0,0 +1,8 @@ +# For more information about build system see +# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html +# The following five 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) +project(spectrum_box_lite) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/README.md new file mode 100644 index 0000000..35a8a88 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/README.md @@ -0,0 +1,45 @@ +# ESP-DSP ESP32-S3-BOX-Lite Board demo application + +The demo applications are developed for the ESP32-S3-BOX-Lite development board and demonstrate the usage of FFT functions from the ESP-DSP library. +This example showcases how to use FFT functionality to process audio stream data. +The application record sound from two microphones and show the spectrum from them at display as 2D plot. + +## Audio Processing Flow + +The audio processing flow contains next blocks: +1. Audio processing task + * Read left and right channel data from the microphone + * Apply window multiplication to both channels + * Process FFT and apply bit reverse + * Split complex spectrum from two channels to two spectrums of two real channels + * Calculate absolute spectrum and convert it to dB + * Calculate moving average of the spectrum +2. Image Display Task + * Read data from the + * Write data from triple buffer to audio codec + +## How to use the example + +Just flash the application to the ESP32-S3-BOX-Lite development board, and play some music around or start to speak to the board microphones. +The display will show the real-time spectrum. +The microphone sensitivity could be adjusted in the code. + +### Hardware required + +This example does not require any special hardware, and can be run on any common development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py flash monitor +``` + +(To exit the serial monitor, type ``Ctrl-]``.) + +See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects. diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/main/CMakeLists.txt new file mode 100644 index 0000000..cf2c455 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/main/CMakeLists.txt @@ -0,0 +1,2 @@ +idf_component_register(SRCS "main.c" + INCLUDE_DIRS ".") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/main/idf_component.yml new file mode 100644 index 0000000..401fa2f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/main/idf_component.yml @@ -0,0 +1,6 @@ +dependencies: + espressif/esp-box-lite: "^2.0.3" + lvgl/lvgl: "^8.3.10" + espressif/esp-dsp: + version: '*' + override_path: "../../../../esp-dsp" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/main/main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/main/main.c new file mode 100644 index 0000000..f482d32 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/main/main.c @@ -0,0 +1,269 @@ +/* + * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: CC0-1.0 + */ + +#include +#include + +#include "bsp/esp-bsp.h" +#include "esp_log.h" +#include "esp_dsp.h" + +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/semphr.h" + +#include "esp_system.h" +#include "esp_err.h" +#include "esp_log.h" +#include "esp_timer.h" +#include + +// Amount of audio channels +#define I2S_CHANNEL_NUM (2) +// Microphone Sample rate +#define SAMPLE_RATE (10000) + +#define BITS_PER_CHANNEL 16 +// Input buffer size +#define BUFFER_PROCESS_SIZE 512 + +static const char *TAG = "main"; + +// Buffer to process output spectrum +static float result_data[BUFFER_PROCESS_SIZE]; + +// Microphone read task +static void microphone_read_task(void *arg) +{ + esp_codec_dev_handle_t mic_codec_dev = NULL; + // Init board microphone + mic_codec_dev = bsp_audio_codec_microphone_init(); + if (mic_codec_dev == NULL) { + ESP_LOGE(TAG, "Not possible to initialize microphone!"); + return; + } + + // Init esp-dsp library to use fft functionality + esp_err_t ret = dsps_fft2r_init_sc16(NULL, CONFIG_DSP_MAX_FFT_SIZE); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Not possible to initialize FFT esp-dsp from library!"); + return; + } + + esp_codec_dev_sample_info_t fs = { + .sample_rate = SAMPLE_RATE, + .channel = I2S_CHANNEL_NUM, + .channel_mask = 0, + .bits_per_sample = BITS_PER_CHANNEL, + }; + + int result = esp_codec_dev_open(mic_codec_dev, &fs); + if (result != ESP_OK) { + ESP_LOGE(TAG, "Not possible to open microphone!"); + return; + } + // Set input microphone gain (from 1 to 100) + ESP_LOGI(TAG, "Adjust microphone input volume in the code here..."); + result |= esp_codec_dev_set_in_gain(mic_codec_dev, 20.0); + if (result != ESP_OK) { + ESP_LOGE(TAG, "Not possible to set up microphone gain!"); + return; + } + + int audio_chunksize = BUFFER_PROCESS_SIZE; + + // Allocate audio buffer and check for result + int16_t *audio_buffer = (int16_t *)memalign(16, (audio_chunksize + 16) * sizeof(int16_t) * I2S_CHANNEL_NUM); + // Allocate buffer for window + int16_t *wind_buffer = (int16_t *)memalign(16, (audio_chunksize + 16) * sizeof(int16_t) * I2S_CHANNEL_NUM); + // Generate window and convert it to int16_t + dsps_wind_blackman_harris_f32(result_data, audio_chunksize); + for (int i = 0 ; i < audio_chunksize; i++) { + wind_buffer[i * 2 + 0] = (int16_t)(result_data[i] * 32767); + wind_buffer[i * 2 + 1] = wind_buffer[i * 2 + 0]; + } + + while (true) { + + // Read audio data from I2S bus + result = esp_codec_dev_read(mic_codec_dev, audio_buffer, audio_chunksize * sizeof(int16_t) * I2S_CHANNEL_NUM); + // Multiply input stream with window coefficients + dsps_mul_s16_ansi(audio_buffer, wind_buffer, audio_buffer, audio_chunksize * 2, 1, 1, 1, 15); + + // Call FFT bit reverse + dsps_fft2r_sc16_ae32(audio_buffer, audio_chunksize); + dsps_bit_rev_sc16_ansi(audio_buffer, audio_chunksize); + // Convert spectrum from two input channels to two + // spectrums for two channels. + dsps_cplx2reC_sc16(audio_buffer, audio_chunksize); + + // The output data array presented as moving average for input in dB + for (int i = 0 ; i < audio_chunksize ; i++) { + float spectrum_sqr = audio_buffer[i * 2 + 0] * audio_buffer[i * 2 + 0] + audio_buffer[i * 2 + 1] * audio_buffer[i * 2 + 1]; + float spectrum_dB = 10 * log10f(0.1 + spectrum_sqr); + // Multiply with sime coefficient for better view data on screen + spectrum_dB = 4 * spectrum_dB; + // Apply moving average of spectrum + result_data[i] = 0.8 * result_data[i] + 0.2 * spectrum_dB; + } + vTaskDelay(10); + } +} + +// Screen image width +#define X_AXIS_SIZE (320) +// Screen image height +#define Y_AXIS_SIZE (240) + +static uint8_t screen_rgb_data[X_AXIS_SIZE * Y_AXIS_SIZE * LV_IMG_PX_SIZE_ALPHA_BYTE]; + +static const lv_img_dsc_t img_screen_rgb = { + .header.always_zero = 0, + .header.w = X_AXIS_SIZE, + .header.h = Y_AXIS_SIZE, + .data_size = X_AXIS_SIZE * Y_AXIS_SIZE * LV_IMG_PX_SIZE_ALPHA_BYTE, + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = screen_rgb_data, +}; + +// The function convert value to RGB565 color value +static int8_t colors[3][3] = { {0, 0, 31}, {0, 63, 0}, {31, 0, 0} }; +static uint16_t convert_to_rgb(uint8_t minval, uint8_t maxval, int8_t val) +{ + uint16_t result; + + float i_f = (float)(val - minval) / (float)(maxval - minval) * 2; + + int Ii = i_f; + float If = i_f - Ii; + + int8_t *c1 = colors[Ii]; + int8_t *c2 = colors[Ii + 1]; + uint16_t res_colors[3]; + + res_colors[0] = c1[0] + If * (c2[0] - c1[0]); + res_colors[1] = c1[1] + If * (c2[1] - c1[1]); + res_colors[2] = c1[2] + If * (c2[2] - c1[2]); + result = res_colors[2] | (res_colors[1] << 5) | (res_colors[0] << 11); + return result; +} + +// Init screen with blue values +static void spectrum2d_picture_init() +{ + for (int y = 0 ; y < img_screen_rgb.header.h ; y++) { + for (int x = 0 ; x < img_screen_rgb.header.w ; x++) { + screen_rgb_data[(y * img_screen_rgb.header.w + x)*LV_IMG_PX_SIZE_ALPHA_BYTE + 0] = 0x0; + screen_rgb_data[(y * img_screen_rgb.header.w + x)*LV_IMG_PX_SIZE_ALPHA_BYTE + 1] = 0x1f; + screen_rgb_data[(y * img_screen_rgb.header.w + x)*LV_IMG_PX_SIZE_ALPHA_BYTE + 2] = 0xff; + } + } +} + +// Add spectrum data to the screen +static void spectrum2d_picture() +{ + for (int y = 0 ; y < (img_screen_rgb.header.h - 1) ; y++) { + for (int x = 0 ; x < img_screen_rgb.header.w ; x++) { + for (int i = 0 ; i < LV_IMG_PX_SIZE_ALPHA_BYTE ; i++) { + screen_rgb_data[(y * img_screen_rgb.header.w + x)*LV_IMG_PX_SIZE_ALPHA_BYTE + i] = screen_rgb_data[((y + 1) * img_screen_rgb.header.w + x) * LV_IMG_PX_SIZE_ALPHA_BYTE + i]; + } + } + } + + // Add left channel to the screen + // The order of the values inverted + for (int x = 0 ; x < img_screen_rgb.header.w / 2 ; x++) { + // Get inverted index value + int in_index = img_screen_rgb.header.w / 2 - x - 1; + float data = result_data[in_index]; + + // Limit input data + if (data > 127) { + data = 127; + } + if (data < 0) { + data = 0; + } + + // Convert input value in dB to the color + uint16_t color_val = convert_to_rgb(0, 128, data); + // Split 16 bit value to two bytes, to change the bytes order + uint8_t *ref_val = (uint8_t *)&color_val; + int out_index = x; + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 0] = ref_val[1]; + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 1] = ref_val[0]; + // Set alpha value + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 2] = 0xff; + } + + // Add right channel to the screen + for (int x = 0 ; x < img_screen_rgb.header.w / 2 ; x++) { + // Get index of right channel + int in_index = BUFFER_PROCESS_SIZE / 2 + x; + float data = result_data[in_index]; + + // Limit input data + if (data > 127) { + data = 127; + } + if (data < 0) { + data = 0; + } + + // Convert input value in dB to the color + uint16_t color_val = convert_to_rgb(0, 128, data); + // Split 16 bit value to two bytes, to change the bytes order + uint8_t *ref_val = (uint8_t *)&color_val; + int out_index = img_screen_rgb.header.w / 2 + x; + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 0] = ref_val[1]; + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 1] = ref_val[0]; + // Set alpha value + screen_rgb_data[((img_screen_rgb.header.h - 1)*img_screen_rgb.header.w + out_index)*LV_IMG_PX_SIZE_ALPHA_BYTE + 2] = 0xff; + } +} + +static void image_display_task(void *arg) +{ + // LV_IMG_DECLARE(img_screen_rgb); + lv_obj_t *img1 = lv_img_create(lv_scr_act()); + lv_img_set_src(img1, &img_screen_rgb); + spectrum2d_picture_init(); + lv_obj_align(img1, LV_ALIGN_CENTER, 0, 0); + + for (;;) { + // Update image with new spectrum values + spectrum2d_picture(); + // Update screen with new image + lv_obj_align(img1, LV_ALIGN_CENTER, 0, 0); + // Free CPU for a while + vTaskDelay(1); + } +} + +void app_main(void) +{ + /* Initialize I2C (for touch and audio) */ + bsp_i2c_init(); + + /* Initialize display and LVGL */ + bsp_display_start(); + + /* Set display brightness to 100% */ + bsp_display_backlight_on(); + + int ret_val = xTaskCreatePinnedToCore(µphone_read_task, "Microphone read Task", 8 * 1024, NULL, 3, NULL, 0); + if (ret_val != pdPASS) { + ESP_LOGE(TAG, "Not possible to allocate microphone task, ret_val = %i", ret_val); + return; + } + + ret_val = xTaskCreatePinnedToCore(&image_display_task, "Draw task", 10 * 1024, NULL, 5, NULL, 1); + if (ret_val != pdPASS) { + ESP_LOGE(TAG, "Not possible to allocate microphone task, ret_val= %i", ret_val); + return; + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/sdkconfig.defaults b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/sdkconfig.defaults new file mode 100644 index 0000000..f39915f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/applications/spectrum_box_lite/sdkconfig.defaults @@ -0,0 +1,66 @@ +# This file was generated using idf.py save-defconfig. It can be edited manually. +# Espressif IoT Development Framework (ESP-IDF) 5.3.0 Project Minimal Configuration +# +CONFIG_IDF_TARGET="esp32s3" +CONFIG_ESPTOOLPY_FLASHMODE_QIO=y +CONFIG_ESPTOOLPY_FLASHSIZE_16MB=y +CONFIG_SPIRAM=y +CONFIG_SPIRAM_MODE_OCT=y +CONFIG_SPIRAM_SPEED_80M=y +CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB=y +CONFIG_ESP32S3_DATA_CACHE_64KB=y +CONFIG_ESP32S3_DATA_CACHE_LINE_64B=y +CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y +CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG=y +CONFIG_ESP_INT_WDT=n +CONFIG_ESP_TASK_WDT_EN=n +CONFIG_BSP_LCD_DRAW_BUF_HEIGHT=10 +CONFIG_LV_CONF_MINIMAL=y +CONFIG_LV_MEM_CUSTOM=y +CONFIG_LV_USE_ASSERT_NULL=y +CONFIG_LV_USE_ASSERT_MALLOC=y +CONFIG_LV_USE_PERF_MONITOR=y +CONFIG_LV_FONT_UNSCII_8=n +CONFIG_LV_FONT_DEFAULT_MONTSERRAT_14=y +CONFIG_LV_TXT_ENC_UTF8=y +CONFIG_LV_USE_ARC=y +CONFIG_LV_USE_BTN=y +CONFIG_LV_USE_BTNMATRIX=y +CONFIG_LV_USE_CANVAS=y +CONFIG_LV_USE_CHECKBOX=y +CONFIG_LV_USE_DROPDOWN=y +CONFIG_LV_USE_LINE=y +CONFIG_LV_USE_ROLLER=y +CONFIG_LV_USE_SLIDER=y +CONFIG_LV_USE_SWITCH=y +CONFIG_LV_USE_TEXTAREA=y +CONFIG_LV_USE_TABLE=y +CONFIG_LV_USE_ANIMIMG=y +CONFIG_LV_USE_CALENDAR=y +CONFIG_LV_USE_CHART=y +CONFIG_LV_USE_COLORWHEEL=y +CONFIG_LV_USE_IMGBTN=y +CONFIG_LV_USE_KEYBOARD=y +CONFIG_LV_USE_LED=y +CONFIG_LV_USE_LIST=y +CONFIG_LV_USE_MENU=y +CONFIG_LV_USE_METER=y +CONFIG_LV_USE_MSGBOX=y +CONFIG_LV_USE_SPAN=y +CONFIG_LV_USE_SPINBOX=y +CONFIG_LV_USE_SPINNER=y +CONFIG_LV_USE_TABVIEW=y +CONFIG_LV_USE_TILEVIEW=y +CONFIG_LV_USE_WIN=y +CONFIG_LV_USE_THEME_DEFAULT=y +CONFIG_LV_USE_THEME_BASIC=y +CONFIG_LV_USE_FLEX=y +CONFIG_LV_USE_GRID=y +CONFIG_LV_USE_FS_POSIX=y +CONFIG_LV_FS_POSIX_LETTER=83 +CONFIG_LV_USE_PNG=y +CONFIG_LV_USE_BMP=y +CONFIG_LV_USE_SJPG=y +CONFIG_LV_USE_GIF=y +CONFIG_LV_USE_SNAPSHOT=y +CONFIG_LV_BUILD_EXAMPLES=y diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/3d_graphics.gif b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/3d_graphics.gif new file mode 100644 index 0000000..36d1d2a Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/3d_graphics.gif differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/CMakeLists.txt new file mode 100644 index 0000000..2c972d8 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/CMakeLists.txt @@ -0,0 +1,8 @@ +# For more information about build system see +# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html +# The following five 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.5) +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +add_compile_options("-Wno-format") +project(esp-dsp-azure-board-app-3d-graphics) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/README.md new file mode 100644 index 0000000..32f906d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/README.md @@ -0,0 +1,27 @@ +# ESP-DSP ESP32-Azure IoT kit 3d graphics demo application + +The demo is developed for [ESP32-Azure IoT kit](https://github.com/espressif/esp-bsp/tree/master/esp32_azure_iot_kit) development board and is demonstrating the usage of matrices with `ESP-DSP` `Mat` class, Kalman filter and basic 3D graphics. + +The 3D Graphics demo displays a 2D graphics, converted to 3D as a 3D rotating object, on the development board's display. Button press changes the rotation direction of the 3D object. Run the menuconfig using the following command: + + idf.py mencuonfig + +In the menuconfig's menu item `Demo user configuration` select which 3D object to display. It's either a 3D cube, or ESP logo, or a user-defined graphics. Getting the user-defined graphics is described in an [example](../../graphics/img_to_3d_matrix/example/) + +## Running the demo + +To start the demo, run the following command: + + idf.py build flash monitor + +The expected output is the following: + + I (570) 3D image demo: Selected 3D image - ESP Logo + I (570) 3D image demo: Showing ESP text + I (6730) 3D image demo: Showing 3D image + +Note, that the first line `Selected 3D image` from the expected output depends on the user's Kconfing menu selection + +
+ +
diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/3d_graphics_demo.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/3d_graphics_demo.cpp new file mode 100644 index 0000000..dccc366 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/3d_graphics_demo.cpp @@ -0,0 +1,240 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "esp_log.h" +#include "ssd1306.h" +#include "bsp/esp-bsp.h" +#include "esp_dsp.h" +#include "cube_matrix.h" +#include "esp_logo.h" +#include "esp_text.h" +#include "graphics_support.h" +#include "image_to_3d_matrix.h" + +static ssd1306_handle_t ssd1306_dev = NULL; +static bool button_pressed = true; + +dspm::Mat perspective_matrix(MATRIX_SIZE, MATRIX_SIZE); + +extern "C" void app_main(); + +/** + * @brief Initialize 3d image structure + * + * Assigns a 3d image to be displayed to the 3d image structure based on the Kconfig menu result. + * The Kconfig menu is operated by a user + * + * @param image: 3d image structure + */ +static void init_3d_matrix_struct(image_3d_matrix_t *image) +{ +#ifdef CONFIG_3D_OBJECT_ESP_LOGO + image->matrix = image_3d_matrix_esp_logo; + image->matrix_len = ((sizeof(image_3d_matrix_esp_logo)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - ESP Logo"); +#elif CONFIG_3D_OBJECT_CUSTOM + image->matrix = image_to_3d_matrix_custom; + image->matrix_len = ((sizeof(image_to_3d_matrix_custom)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - User's custom image"); +#elif CONFIG_3D_OBJECT_CUBE + image->matrix = cube_vectors_3d; + image->matrix_len = ((sizeof(cube_vectors_3d)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - 3D cube"); +#endif +} + +/** + * @brief Initialize display + */ +static void app_ssd1306_init(void) +{ + ssd1306_dev = ssd1306_create((i2c_port_t)BSP_I2C_NUM, SSD1306_I2C_ADDRESS); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Display a 3d image + * + * If the object is the 3d cube, connect the projected cube points by lines and display the lines + * For any other 3d object lit pixels on the display from provided XY coordinates + * + * @param projected_image: 3d matrix from Mat class after projection + */ +static void display_3d_image(dspm::Mat projected_image) +{ + ssd1306_clear_screen(ssd1306_dev, 0); + + if (OBJECT_3D_CUBE) { + // For the 3D cube, only the 6 points of the cube are transformed + // Cube edges, connecting transformed 3D cube points are connected with lines here + for (uint8_t cube_point = 0; cube_point < CUBE_EDGES; cube_point++) { + ssd1306_draw_line(ssd1306_dev, + (int16_t)projected_image(cube_dict_line_begin[cube_point], 0), + (int16_t)projected_image(cube_dict_line_begin[cube_point], 1), + (int16_t)projected_image(cube_dict_line_end[cube_point], 0), + (int16_t)projected_image(cube_dict_line_end[cube_point], 1)); + } + } else { + // Every other 3D image is drawn here pixel by pixel + for (uint32_t pixel = 0; pixel < projected_image.rows; pixel++ ) { + ssd1306_fill_point(ssd1306_dev, projected_image(pixel, 0), projected_image(pixel, 1), 1); + } + } + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Display ESPRESSIF text + * + * To demonstrate usage of the translation and scaling matrices + */ +static void dispaly_esp_text(void) +{ + image_3d_matrix_t esp_text; + esp_text.matrix = image_3d_array_esp_text; + esp_text.matrix_len = ((sizeof(image_3d_array_esp_text)) / sizeof(float)) / MATRIX_SIZE; + int16_t shift_x = -SSD1606_X_CENTER; + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat transformed_image(esp_text.matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat matrix_3d((float *)esp_text.matrix[0], esp_text.matrix_len, MATRIX_SIZE); + + ESP_LOGI("3D image demo", "Showing ESP text"); + + for (int i = 0; i < 52; i++) { + update_translation_matrix(T, true, (float)shift_x, (float)SSD1606_Y_CENTER, 0); + transformed_image = matrix_3d * T; + + ssd1306_clear_screen(ssd1306_dev, 0); + for (uint32_t point = 0; point < transformed_image.rows; point++ ) { + ssd1306_fill_point(ssd1306_dev, transformed_image(point, 0), transformed_image(point, 1), 1); + } + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(50 / portTICK_PERIOD_MS); + + shift_x += 5; + } + + ssd1306_clear_screen(ssd1306_dev, 0); + ssd1306_draw_bitmap(ssd1306_dev, 0, 24, &image_bmp_array_esp_text[0], 128, 24); + ssd1306_refresh_gram(ssd1306_dev); + + update_translation_matrix(T, true, (float)SSD1606_X_CENTER, (float)SSD1606_Y_CENTER, 0); + vTaskDelay(100 / portTICK_PERIOD_MS); + + float scale = 1; + for (int i = 0; i < 20; i++) { + update_scaling_matrix(T, false, scale, scale, 1); + transformed_image = matrix_3d * T; + + ssd1306_clear_screen(ssd1306_dev, 0); + for (uint32_t point = 0; point < transformed_image.rows; point++ ) { + ssd1306_fill_point(ssd1306_dev, transformed_image(point, 0), transformed_image(point, 1), 1); + } + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(50 / portTICK_PERIOD_MS); + + if (i < 10) { + scale -= 0.05; + } else { + scale += 0.05; + } + } +} + +/** + * @brief RTOS task to draw a 3d image. + * + * Updates 3d matrices, prepares the final 3d matrix to be displayed on the display + * + * @param arg: pointer to RTOS task arguments, 3d image structure in this case + */ +static void draw_3d_image_task(void *arg) +{ + float rot_y = 0, rot_x = 0; + const float angle_increment = 4; + image_3d_matrix_t *image = (image_3d_matrix_t *)arg; + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat transformed_image(image->matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat projected_image(image->matrix_len, MATRIX_SIZE); // 3D image matrix after projection + dspm::Mat matrix_3d((float *)image->matrix[0], image->matrix_len, MATRIX_SIZE); + + if (OBJECT_3D_CUBE) { + rot_x = 45; + } + + while (1) { + if (button_pressed) { + rot_y += angle_increment; + if (rot_y >= 360) { + rot_y -= 360; + } + } else { + rot_y -= angle_increment; + if (rot_y <= 0) { + rot_y += 360; + } + } + + // Apply rotation in all the axes to the transformation matrix + update_rotation_matrix(T, rot_x, rot_y, 0); + // Apply translation to the transformation matrix + update_translation_matrix(T, true, ((float)SSD1606_X_CENTER), ((float)SSD1606_Y_CENTER), 0); + + // explanation for the matrix multiplication is for the 3D cube scenario, applies for all of the objects + // where matrix rows for the transformed image and the projected image are set according to the specific 3d object + + // matrix mul cube_matirx(8x4) * transformation_matrix(4x4) = transformed_cube(8x4) + transformed_image = matrix_3d * T; + // matrix mul transformed_cube(8x4) * perspective_matrix(4x4) = projected_cube(8x4) + projected_image = transformed_image * perspective_matrix; + + display_3d_image(projected_image); + vTaskDelay(20 / portTICK_PERIOD_MS); + } +} + +void app_main(void) +{ + static bool button_prev_val = false; + image_3d_matrix_t image; + ekf_imu13states *ekf13 = new ekf_imu13states(); + ekf13->Init(); + + // Init all board components + bsp_i2c_init(); + app_ssd1306_init(); // display init + bsp_leds_init(); // LEDs init + bsp_i2c_set_clk_speed(I2C_CLK_600KHZ); // Set I2C to 600kHz + + init_perspective_matrix(perspective_matrix); + init_3d_matrix_struct(&image); + + dispaly_esp_text(); + vTaskDelay(1000 / portTICK_PERIOD_MS); + + xTaskCreate(draw_3d_image_task, "draw_3d_image", 2048, &image, 4, NULL); + ESP_LOGI("3D image demo", "Showing 3D image"); + + while (1) { + if (bsp_button_get()) { + button_pressed = !button_pressed; + } + + if (button_prev_val != button_pressed) { + button_prev_val = button_pressed; + if (button_pressed) { + bsp_led_set(BSP_LED_AZURE, true); + } else { + bsp_led_set(BSP_LED_AZURE, false); + } + } + vTaskDelay(100 / portTICK_PERIOD_MS); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/CMakeLists.txt new file mode 100644 index 0000000..fd342d6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/CMakeLists.txt @@ -0,0 +1,8 @@ +idf_component_register(SRCS "3d_graphics_demo.cpp" + "../../../graphics/3d_matrix/3d_matrix_data/esp_logo.c" + "../../../graphics/3d_matrix/3d_matrix_data/esp_text.c" + "../../../graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c" + "../../../graphics/3d_matrix/3d_matrix_src/graphics_support.cpp" + INCLUDE_DIRS "." + "../../../graphics/3d_matrix/3d_matrix_data" + "../../../graphics/3d_matrix/3d_matrix_src") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/Kconfig.projbuild b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/Kconfig.projbuild new file mode 100644 index 0000000..d36ede0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/Kconfig.projbuild @@ -0,0 +1,19 @@ +menu "Demo user configuration" + choice + prompt "Select 3D object" + config 3D_OBJECT_CUBE + bool "3D cube" + help + 3D graphics to be displayed is cube + + config 3D_OBJECT_ESP_LOGO + bool "3D ESP Logo" + help + 3D graphics to be displayed is ESP Logo + + config 3D_OBJECT_CUSTOM + bool "User-defined graphics" + help + 3D graphics to be displayed is a user-defined graphics + endchoice +endmenu \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/idf_component.yml new file mode 100644 index 0000000..a36c39c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/3d_graphics/main/idf_component.yml @@ -0,0 +1,8 @@ +## IDF Component Manager Manifest File +description: ESP-DSP azure board application 3d graphics +dependencies: + espressif/esp32_azure_iot_kit: "*" + espressif/esp-dsp: + version: "*" + override_path: "../../../../../../esp-dsp" + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/CMakeLists.txt new file mode 100644 index 0000000..94d8c35 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/CMakeLists.txt @@ -0,0 +1,8 @@ +# For more information about build system see +# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html +# The following five 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.5) +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +add_compile_options("-Wno-format") +project(esp-dsp-azure-board-app-kalman-filter) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/README.md new file mode 100644 index 0000000..eb664ba --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/README.md @@ -0,0 +1,59 @@ +# ESP-DSP ESP32-Azure IoT kit Kalman filter demo application + +The demo is developed for [ESP32-Azure IoT kit](https://github.com/espressif/esp-bsp/tree/master/esp32_azure_iot_kit) development board and is demonstrating the usage of matrices with `ESP-DSP` `Mat` class, Kalman filter and basic 3D graphics. + +The Kalman filter demo displays a 2D graphics, converted to 3D as a 3D object, on the development board's display. The 3D object follows the movements of the development board, where the Kalman filter is used for processing the output signals of the IMU sensors accommodated on the development board. The 3D object rotation is calculated by the Kalman filter class methods. All 3 IMU sensors present on the dev board (accelerometer, gyroscope and magnetometer) are used for sensing the development board's position. + + +If the board is inactive (no, or very low rotation is detected) for a set period of time, the demo enters an "Idle" state, in which a 3D rotating object is displayed. Once a certain set level of the board's rotation is detected, the demo enters a normal, "Active", state. + +For the project settings, run the menuconfig using the following command: + + idf.py mencuonfig + +In the menuconfig's menu item `Demo user configuration` select which 3D object to display. It's either 3D cube, or ESP logo, or a user-defined graphics. Getting the user-defined 3D object is described in the [3D Graphics demo](../3d_graphics) + +## Kalman filter +#### Calibration + +The filter must be calibrated before the first run, which takes several minutes. But the calibration process before each run can be omitted by calibrating the filter once, saving Kalman's filter state vectors to the NVS, and loading those vectors back into the Kalman filter before the run. In addition, every 5 minutes a current state vectors are saved into the flash memory. + +## Running the demo + +To start the demo, run the following command: + + idf.py build flash monitor + +The expected output is the following: + + I (589) Kalman filter demo: Selected 3D image - 3D cube + I (590) Kalman filter demo: Filter state vectors present in the NVS + I (592) Kalman filter demo: Loading state vectors into the filter structure + I (604) Kalman filter demo: State vectors loaded from the NVS + I (606) Barometer: disabled + I (619) Board status: board put to active mode + I (95780) Board status: board put to idle mode + I (300619) Kalman filter demo: State vectors saved to NVS + +Note, that the first line `Selected 3D image` from the expected output depends on the user's Kconfing menu selection + +To start the demo and run the initial Kalman filter calibration, one must erase the flash memory, to remove the previously stored Kalman filter's state vectors. To do so, run the following command: + + idf.py erase_flash build flash monitor + +The expected output is the following: + + I (592) Kalman filter demo: Selected 3D image - 3D cube + I (595) Kalman filter demo: Filter state vectors not present in the NVS + I (595) Kalman filter demo: Starting Kalman filter calibration loop + I (100699) Kalman filter demo: Exiting Kalman filter calibration loop + I (100894) Kalman filter demo: Estimated gyroscope bias error [deg/sec]: -0.020715 -0.000431 -0.022452 + I (100900) Kalman filter demo: State vectors saved to the NVS + I (100900) Barometer: disabled + I (100911) Board status: board put to active mode + I (196072) Board status: board put to idle mode + I (400912) Kalman filter demo: State vectors saved to NVS + +
+ +
\ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/kalman_filter.gif b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/kalman_filter.gif new file mode 100644 index 0000000..2467b5f Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/kalman_filter.gif differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/CMakeLists.txt new file mode 100644 index 0000000..dc7e9bf --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/CMakeLists.txt @@ -0,0 +1,7 @@ +idf_component_register(SRCS "kalman_filter_demo.cpp" + "../../../graphics/3d_matrix/3d_matrix_data/esp_logo.c" + "../../../graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c" + "../../../graphics/3d_matrix/3d_matrix_src/graphics_support.cpp" + INCLUDE_DIRS "." + "../../../graphics/3d_matrix/3d_matrix_data" + "../../../graphics/3d_matrix/3d_matrix_src") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/Kconfig.projbuild b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/Kconfig.projbuild new file mode 100644 index 0000000..d36ede0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/Kconfig.projbuild @@ -0,0 +1,19 @@ +menu "Demo user configuration" + choice + prompt "Select 3D object" + config 3D_OBJECT_CUBE + bool "3D cube" + help + 3D graphics to be displayed is cube + + config 3D_OBJECT_ESP_LOGO + bool "3D ESP Logo" + help + 3D graphics to be displayed is ESP Logo + + config 3D_OBJECT_CUSTOM + bool "User-defined graphics" + help + 3D graphics to be displayed is a user-defined graphics + endchoice +endmenu \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/idf_component.yml new file mode 100644 index 0000000..cf57d1e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/idf_component.yml @@ -0,0 +1,8 @@ +## IDF Component Manager Manifest File +description: ESP-DSP azure board application Kalman filter +dependencies: + espressif/esp32_azure_iot_kit: "*" + espressif/esp-dsp: + version: "*" + override_path: "../../../../../../esp-dsp" + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/kalman_filter_demo.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/kalman_filter_demo.cpp new file mode 100644 index 0000000..2cc49c6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/apps/kalman_filter/main/kalman_filter_demo.cpp @@ -0,0 +1,608 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "mpu6050.h" +#include "ssd1306.h" +#include "mag3110.h" +#include "fbm320.h" +#include "bsp/esp-bsp.h" +#include "esp_log.h" +#include "esp_timer.h" +#include "esp_idf_version.h" // for backward compatibility of esp-timer +#include "nvs.h" +#include "nvs_flash.h" +#include "graphics_support.h" +#include "cube_matrix.h" +#include "esp_dsp.h" +#include "ekf_imu13states.h" +#include "esp_logo.h" +#include "image_to_3d_matrix.h" + +#define STORAGE_NAMESPACE "kalman_filter" +#define USE_BAROMETER 0 + +static ssd1306_handle_t ssd1306_dev = NULL; +static mpu6050_handle_t mpu6050_dev = NULL; +static mag3110_handle_t mag3110_dev = NULL; +static fbm320_handle_t fbm320_dev = NULL; + +static bool kalman_filter_calibrated = false; +static bool board_inactive = true; + +dspm::Mat perspective_matrix(MATRIX_SIZE, MATRIX_SIZE); + +extern "C" void app_main(); + +/** + * @brief Initialize magnetometer + */ +static void app_mag3110_init(void) +{ + esp_err_t ret; + mag3110_dev = mag3110_create((i2c_port_t)BSP_I2C_NUM); + mag3110_start_raw(mag3110_dev, MAG3110_DR_OS_80_16); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize display + */ +static void app_ssd1306_init(void) +{ + ssd1306_dev = ssd1306_create((i2c_port_t)BSP_I2C_NUM, SSD1306_I2C_ADDRESS); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Initialize accelerometer and gyroscope + */ +static void mpu6050_init(void) +{ + esp_err_t ret; + mpu6050_dev = mpu6050_create((i2c_port_t)BSP_I2C_NUM, MPU6050_I2C_ADDRESS); + ret = mpu6050_config(mpu6050_dev, ACCE_FS_8G, GYRO_FS_2000DPS); + assert(ESP_OK == ret); + ret = mpu6050_wake_up(mpu6050_dev); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize pressure sensor + */ +static void app_fbm320_init(void) +{ + esp_err_t ret; + fbm320_dev = fbm320_create((i2c_port_t)BSP_I2C_NUM, FBM320_I2C_ADDRESS_1); + ret = fbm320_init(fbm320_dev); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize NVS flash memory + */ +static void init_nvs_flash_memory(void) +{ + esp_err_t err = nvs_flash_init(); + if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) { + // NVS partition was truncated and needs to be erased + // Retry nvs_flash_init + ESP_ERROR_CHECK(nvs_flash_erase()); + err = nvs_flash_init(); + } + ESP_ERROR_CHECK( err ); +} + +/** + * @brief Initialize 3d image structure + * + * Assigns a 3d image to be displayed to the 3d image structure based on the Kconfig menu result. + * The Kconfig menu is operated by a user + * + * @param image: pointer to 3d image structure + * @param ekf13: kalman filter object + */ +static void init_3d_matrix_struct(image_3d_matrix_kalman_t *image, ekf_imu13states *ekf13) +{ +#ifdef CONFIG_3D_OBJECT_ESP_LOGO + image->matrix = image_3d_matrix_esp_logo; + image->matrix_len = ((sizeof(image_3d_matrix_esp_logo)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - ESP Logo"); +#elif CONFIG_3D_OBJECT_CUSTOM + image->matrix = image_to_3d_matrix_custom; + image->matrix_len = ((sizeof(image_to_3d_matrix_custom)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - User's custom image"); +#elif CONFIG_3D_OBJECT_CUBE + image->matrix = cube_vectors_3d; + image->matrix_len = ((sizeof(cube_vectors_3d)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - 3D cube"); +#endif + image->ekf13 = ekf13; +} + +/** + * @brief Display a 3d image + * + * If the object is the 3d cube, connect the projected cube points by lines and display the lines + * For any other 3d object lit pixels on the display from provided XY coordinates + * + * @param projected_image: 3d matrix from Mat class after projection + */ +static void display_3d_image(dspm::Mat projected_image) +{ + ssd1306_clear_screen(ssd1306_dev, 0); + + if (OBJECT_3D_CUBE) { + // For the 3D cube, only the 6 points of the cube are transformed + // Cube edges, connecting transformed 3D cube points are connected with lines here + for (uint8_t cube_point = 0; cube_point < CUBE_EDGES; cube_point++) { + ssd1306_draw_line(ssd1306_dev, + (int16_t)projected_image(cube_dict_line_begin[cube_point], 0), + (int16_t)projected_image(cube_dict_line_begin[cube_point], 1), + (int16_t)projected_image(cube_dict_line_end[cube_point], 0), + (int16_t)projected_image(cube_dict_line_end[cube_point], 1)); + } + } else { + // Every other 3D image is drawn here pixel by pixel + for (uint32_t pixel = 0; pixel < projected_image.rows; pixel++ ) { + ssd1306_fill_point(ssd1306_dev, projected_image(pixel, 0), projected_image(pixel, 1), 1); + } + } + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Draw a 3d image + * + * Updates 3d matrices and prepares the final 3d matrix to be displayed on the display. + * Board inactivity check - decides which board mode to display (active or inactive), based on the board movements. + * + * @param ekf13: kalman filter object + * @param transformed_image: 3d matrix holding a 3d image after transformation + * @param projected_image: 3d matrix holding a 3d image after projection + * @param matrix_3d: 3d matrix holding the original 3d image, without any transformation + */ +static void draw_3d_image(ekf_imu13states *ekf13, dspm::Mat &transformed_image, dspm::Mat &projected_image, dspm::Mat &matrix_3d) +{ + static const float movement_treshold = 0.0001; // threshold to decide between Idle and Active state of the board + static float inactive_rotation = 0; // rotation angle (in degrees) for Idle state + static unsigned int inactivity_count = 0; + static const unsigned int inactivity_count_treshold = 75; + static unsigned int inactivity_check = 0; // activity of the board is being checked once in N calls of the function + static float prev_state_arr[3] = {0, 0, 0}; // holds the previous state of the Euler angles, to compare the diff + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat R1 = ekf::quat2rotm(ekf13->X.data); // matrix(3x1) that holds x, y, z rotation data + dspm::Mat eul_angles = ekf::rotm2eul(R1); + + // check if the board is active or not every N calls of the function + if (!(inactivity_check++ % 10)) { + dspm::Mat prev_state_mat(prev_state_arr, 3, 1); + dspm::Mat diff = eul_angles - prev_state_mat; + prev_state_mat = eul_angles; + + float max_diff = fabs(diff(0, 0) * diff(1, 0) * diff(2, 0)); + + // wake-up the board if the current board movement crosses the threshold + if (board_inactive && (max_diff > movement_treshold)) { + board_inactive = false; + ESP_LOGI("Board status", "board put to active mode"); + } + + // if the board is awake, and the current movement of the board is lower than the threshold - the board is + // being moved with - run the inactivity_counter + // after some time (if the movement of the board has been lower than the threshold) put the board to idle mode + else if (!board_inactive && (max_diff < movement_treshold)) { + if (inactivity_count > inactivity_count_treshold) { + board_inactive = true; + inactivity_count = 0; + ESP_LOGI("Board status", "board put to idle mode"); + update_perspective_matrix(perspective_matrix, 90); + } + inactivity_count++; + } + + // if the board is awake and the current movement of the board is higher than the threshold clear the inactivity_counter + else if (!board_inactive && (max_diff >= movement_treshold)) { + inactivity_count = 0; + } + } + + if (board_inactive) { + // board idle state - display a rotating cube + update_rotation_matrix(T, inactive_rotation += 3.0, 10.0, 10.0); + } else { + // board active state - 3D object follows movements of the board + eul_angles(2, 0) = -eul_angles(2, 0); + dspm::Mat R = ekf::eul2rotm(eul_angles.data); + + // Enlarge rotation matrix from 3x3 to 4x4 + // Copy rotation matrix R(3x3) to transformation matrix T_m(4x4) + for (int row = 0; row < R.rows; row++) { + for (int col = 0; col < R.cols; col++) { + T(row, col) = R(row, col); + } + } + } + + // explanation for the matrix multiplication is for the 3D cube scenario, applies for all of the objects + // where matrix rows for the transformed image and the projected image are set according to the specific 3d object + + // matrix mul cube_matirx(8x4) * transformation_matrix(4x4) = transformed_cube(8x4) + transformed_image = matrix_3d * T; + // matrix mul transformed_cube(8x4) * perspective_matrix(4x4) = projected_cube(8x4) + projected_image = transformed_image * perspective_matrix; + display_3d_image(projected_image); +} + +/** + * @brief Kalman filter RTOS task (or ESP timer callback) + * + * Takes IMU sensors measurements to be processed by the Kalman filter + * Function is used as: + * RTOS task - during normal Kalman filter operation + * ESP Timer callback function - during Kalman filter calibration process + * + * @param arg: pointer to RTOS task arguments, 3d image structure in this case + */ +static void kalman_filter_task(void *arg) +{ + mpu6050_acce_value_t acce_sample; + mpu6050_gyro_value_t gyro_sample; + mag3110_result_t mag_sample; + + image_3d_matrix_kalman_t *kalman_filter_args = (image_3d_matrix_kalman_t *)arg; + ekf_imu13states *ekf13 = kalman_filter_args->ekf13; + dspm::Mat transformed_image(kalman_filter_args->matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat projected_image(kalman_filter_args->matrix_len, MATRIX_SIZE); // 3D image matrix after projection + dspm::Mat matrix_3d((float *)kalman_filter_args->matrix[0], kalman_filter_args->matrix_len, MATRIX_SIZE); + + // Covariance matrix for Kalman filter, set specifically for this development board IMU sensors + float R_m[10] = {0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.000001, 0.000001, 0.000001, 0.000001}; + update_perspective_matrix(perspective_matrix, 90); + + while (1) { + // dt calculation + static float prev_time = 0; + const float current_time = xthal_get_ccount(); + float dt = 0; + + // Crystal count difference conversion to Dt time constant + if (current_time > prev_time) { + dt = current_time - prev_time; + dt = dt / 240000000.0; + } + prev_time = current_time; + + // Get all the sensors values + mpu6050_get_acce(mpu6050_dev, &acce_sample); + mpu6050_get_gyro(mpu6050_dev, &gyro_sample); + mag3110_get_magnetic_induction(mag3110_dev, &mag_sample); + + // Make arrays from the sensors values + float gyro_input_arr[3] = {gyro_sample.gyro_x, gyro_sample.gyro_y, gyro_sample.gyro_z}; + float accel_input_arr[3] = {acce_sample.acce_x, acce_sample.acce_y, acce_sample.acce_z}; + float mag_input_arr[3] = {(float)mag_sample.x, (float)mag_sample.y, (float)mag_sample.z}; + + // Accel and Mag data to Mat class + dspm::Mat gyro_input_mat(gyro_input_arr, 3, 1); + dspm::Mat accel_input_mat(accel_input_arr, 3, 1); + dspm::Mat mag_input_mat(mag_input_arr, 3, 1); + + // Normalize vectors + dspm::Mat accel_norm = accel_input_mat / accel_input_mat.norm(); + dspm::Mat magn_norm = mag_input_mat / mag_input_mat.norm(); + gyro_input_mat *= DEG_TO_RAD; + + ekf13->Process(gyro_input_mat.data, dt); + ekf13->UpdateRefMeasurementMagn(accel_norm.data, magn_norm.data, R_m); + + if (kalman_filter_calibrated) { + // Use the function as RTOS task for the filter calculation + draw_3d_image(ekf13, transformed_image, projected_image, matrix_3d); + vTaskDelay(20 / portTICK_PERIOD_MS); + } else { + // Use the function as a callback for kalman_filter_calibration_timer + break; + } + } +} + +/** + * @brief Kalman filter calibration procedure + * + * The Kalman filter must be calibrated before the very first run. The state of the Kalman filter is saved + * into NVS after the calibration. + * The calibration is run, only if no Kalman filter state is saved in the NVS. Which occurs after erasing + * the flash memory. Power cycling the board does not remove the Kalman filter state from the NVS. + * + * @param image: pointer to 3d image structure + */ +static void kalman_filter_calibration(image_3d_matrix_kalman_t *image) +{ + ekf_imu13states *ekf13 = image->ekf13; + esp_err_t ret; + nvs_handle_t nvs_handle_kalman; + size_t state_vectors_size = 13 * 14; + float *state_vectors = (float *)malloc(state_vectors_size * sizeof(float)); + + ret = nvs_open(STORAGE_NAMESPACE, NVS_READWRITE, &nvs_handle_kalman); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) opening NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + // Read previously saved blob, if available + size_t required_size = 0; // value will default to 0, if not set yet in NVS + ret = nvs_get_blob(nvs_handle_kalman, "state_vectors", NULL, &required_size); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) reading data from NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + if (required_size > 0) { + ESP_LOGI("Kalman filter demo", "Filter state vectors present in the NVS"); + ESP_LOGI("Kalman filter demo", "Loading state vectors into the filter structure"); + + size_t state_vectors_size_addr = state_vectors_size * sizeof(float); + ret = nvs_get_blob(nvs_handle_kalman, "state_vectors", state_vectors, &state_vectors_size_addr); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) reading data from NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + ekf13->P.data[i] = state_vectors[i]; + } else { + ekf13->X.data[i - (state_vectors_size - 13)] = state_vectors[i]; + } + } + + ESP_LOGI("Kalman filter demo", "State vectors loaded from the NVS"); + nvs_close(nvs_handle_kalman); + + } else { + ESP_LOGI("Kalman filter demo", "Filter state vectors not present in the NVS"); + const float kalman_timer_period_us = 100000; + + // ESP timer for the Kalman filter calibration + const esp_timer_create_args_t kalman_calibration_timer_config = { + .callback = kalman_filter_task, + .arg = image, + .dispatch_method = ESP_TIMER_TASK, + .name = "kalman_filter_calibration_timer", +#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 3, 0) + .skip_unhandled_events = true, +#endif + }; + + esp_timer_handle_t kalman_calibration_timer = NULL; + ret = esp_timer_create(&kalman_calibration_timer_config, &kalman_calibration_timer); + assert(ESP_OK == ret); + ssd1306_clear_screen(ssd1306_dev, 0x00); + + ESP_LOGI("Kalman filter demo", "Starting Kalman filter calibration loop"); + + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_draw_string(ssd1306_dev, 0, 16, (const uint8_t *)"Kalman filter", 16, 1); + ssd1306_draw_string(ssd1306_dev, 0, 32, (const uint8_t *)"calibration", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + + ret = esp_timer_start_periodic(kalman_calibration_timer, kalman_timer_period_us); + assert(ESP_OK == ret); + vTaskDelay(100000 / portTICK_PERIOD_MS); + + ret = esp_timer_stop(kalman_calibration_timer); + assert(ESP_OK == ret); + ret = esp_timer_delete(kalman_calibration_timer); + assert(ESP_OK == ret); + ESP_LOGI("Kalman filter demo", "Exiting Kalman filter calibration loop"); + ssd1306_draw_string(ssd1306_dev, 0, 48, (const uint8_t *)"Done!", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(100 / portTICK_PERIOD_MS); + + dspm::Mat estimated_error(&ekf13->X.data[4], 3, 1); + + ESP_LOGI("Kalman filter demo", "Estimated gyroscope bias error [deg/sec]: %.6f\t%.6f\t%.6f", + estimated_error.data[0], estimated_error.data[1], estimated_error.data[2]); + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + state_vectors[i] = ekf13->P.data[i]; + } else { + state_vectors[i] = ekf13->X.data[i - (state_vectors_size - 13)]; + } + } + + ret = nvs_set_blob(nvs_handle_kalman, "state_vectors", state_vectors, state_vectors_size * sizeof(float)); + assert(ESP_OK == ret); + ret = nvs_commit(nvs_handle_kalman); + assert(ESP_OK == ret); + nvs_close(nvs_handle_kalman); + ESP_LOGI("Kalman filter demo", "State vectors saved to the NVS"); + } + // Set the initial state of the X vector + ekf13->X(0, 0) = 1; + ekf13->X(0, 1) = 0; + ekf13->X(0, 2) = 0; + ekf13->X(0, 3) = 0; + free(state_vectors); + kalman_filter_calibrated = true; +} + +/** + * @brief RTOS task to periodically save the filter state + * + * The Kalman filter state is periodically saved into the NVS, each 5 min. So a recent Kalman filter state + * could be loaded into the Kalman filter object after a power cycle. + * + * @param arg: pointer to RTOS task arguments, Kalman filter object in this case + */ +static void save_state_vectors_task(void *arg) +{ + esp_err_t ret; + size_t state_vectors_size = 13 * 14; + nvs_handle_t nvs_handle_kalman; + ekf_imu13states *ekf13 = (ekf_imu13states *)arg; + vTaskDelay((60000 * 5) / portTICK_PERIOD_MS); // 5min + + while (1) { + float *state_vectors = (float *)malloc(state_vectors_size * sizeof(float)); + + ret = nvs_open(STORAGE_NAMESPACE, NVS_READWRITE, &nvs_handle_kalman); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) opening NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + state_vectors[i] = ekf13->P.data[i]; + } else { + state_vectors[i] = ekf13->X.data[i - (state_vectors_size - 13)]; + } + } + + ret = nvs_set_blob(nvs_handle_kalman, "state_vectors", state_vectors, state_vectors_size * sizeof(float)); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) writing data to NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + ret = nvs_commit(nvs_handle_kalman); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) commiting data to NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + nvs_close(nvs_handle_kalman); + ESP_LOGI("Kalman filter demo", "State vectors saved to NVS"); + free(state_vectors); + vTaskDelay((60000 * 5) / portTICK_PERIOD_MS); // Save the State vectors each 5 min + } +} + +/** + * @brief ROTS task to read a pressure + * + * Pressure is measured periodically to better average out a stable value of pressure + * + * @param arg: pointer to RTOS task arguments, pointer to the pressure variable in this case + */ +static void get_pressure_task(void *arg) +{ + int32_t real_p, real_t; + float *pressure_ptr = (float *)arg; + float pressure_global = *pressure_ptr; + + int call_count = 0; + int call_count1 = 0; + float pressure_initial = pressure_global; + float last_pressure = pressure_global; + float baro_image = pressure_global; + bool changed = false; + + while (1) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure_global = (0.999 * pressure_global) + (0.001 * ((float)real_p) / 1000.0); + call_count1++; + } + + if (board_inactive) { + pressure_initial = pressure_global; + last_pressure = pressure_global; + baro_image = pressure_global; + } else { + call_count++; + if (fabs(pressure_global - last_pressure) > 0.0005) { // cahnge more than 0.5 Pa + last_pressure = pressure_global; + baro_image = (0.9 * baro_image) + (0.1 * last_pressure); + changed = true; + } + + if ((!(call_count % 10)) && changed) { + float fov = 90 + (1000.0 * ((float)(pressure_initial - baro_image))); + update_perspective_matrix(perspective_matrix, fov); + changed = false; + } + } + vTaskDelay(100 / portTICK_PERIOD_MS); + } +} + +/** + * @brief read the initial value of pressure + */ +float get_initial_pressure(void) +{ + float pressure; + int32_t real_p, real_t; + int averagning_loop_count = 500; + + ESP_LOGI("Barometer", "Averagining initial barometer pressure"); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_draw_string(ssd1306_dev, 0, 16, (const uint8_t *)"Barometer", 16, 1); + ssd1306_draw_string(ssd1306_dev, 0, 32, (const uint8_t *)"averaging", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + + // take the first pressure measurement + while (1) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure = ((float)real_p) / 1000.0; // pressure in kPa + break; + } + } + + // average first N measurements + while (averagning_loop_count--) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure = (0.999 * pressure) + (0.001 * ((float)real_p) / 1000.0); + vTaskDelay(100 / portTICK_PERIOD_MS); + } + } + + ESP_LOGI("Barometer", "Initial value set"); + ssd1306_draw_string(ssd1306_dev, 0, 48, (const uint8_t *)"Done!", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + return (pressure); +} + +void app_main(void) +{ + image_3d_matrix_kalman_t image; + ekf_imu13states *ekf13 = new ekf_imu13states(); + ekf13->Init(); + + // Init all board components + bsp_i2c_init(); + app_ssd1306_init(); // display init + mpu6050_init(); // gyro, acc init + app_mag3110_init(); // magnetometer init + app_fbm320_init(); // barometer init + bsp_leds_init(); // LEDs init + init_nvs_flash_memory(); // Non-Volatile Storage + + init_perspective_matrix(perspective_matrix); + init_3d_matrix_struct(&image, ekf13); + kalman_filter_calibration(&image); + + // Use a barometer for measuring the altitude + if (USE_BAROMETER) { + float init_pressure = get_initial_pressure(); + xTaskCreate(get_pressure_task, "get_pressure_task", 2048 * 4, &init_pressure, 4, NULL); + } else { + ESP_LOGI("Barometer", "disabled"); + } + + xTaskCreate(kalman_filter_task, "kalman_filter_task", 2048 * 4, &image, 5, NULL); + xTaskCreate(save_state_vectors_task, "save_state_vectors", 2048, ekf13, 6, NULL); + + while (1) { + vTaskDelay(10000 / portTICK_PERIOD_MS); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/.gitignore b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/.gitignore new file mode 100644 index 0000000..63720e9 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/.gitignore @@ -0,0 +1,5 @@ +**/build/ +**/sdkconfig +**/sdkconfig.old +**/dependencies.lock +**/managed_components/** diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/README.md new file mode 100644 index 0000000..dfdfdc2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/README.md @@ -0,0 +1,29 @@ +# ESP-DSP ESP32-Azure IoT kit demo applications + +The demo applications are developed for ESP32-Azure IoT kit development board and are demonstrating usage of matrices with ESP-DPS Mat class, Kalman filter and basic +3D projection with matrices + +### [3D Graphics demo](apps/3d_graphics) +* a simple rotation of a selected 3D objects is shown on the display +* demonstrating usage the Mat class, matrices and operations with matrices + +
+ +
+ +### [Kalman filter demo](apps/kalman_filter/) +* a selected 3D object is following movements of the development board with IMU sensors +* the sensors outputs are processed by the Kalman filter +* demonstrating usage the Mat class, matrices, operations with matrices and Kalman filter + +
+ +
+ +### [3D graphics](graphics/img_to_3d_matrix/example/) + +Simple 3D graphics is used in the both demos, to display the 3D on the monochromatic display. The Graphics is using transformation matrices to rotate, scale and translate (move) 3D objects, to show the matrix calculation capabilities of the ESP-DSP repository. + +## Used components +* [ESP-DSP](https://github.com/espressif/esp-dsp): matrices, Mat class, Kalman filter +* [ESP-BSP](https://github.com/espressif/esp-bsp): ESP32-Azure IoT kit \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/3d_graphics.gif b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/3d_graphics.gif new file mode 100644 index 0000000..36d1d2a Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/3d_graphics.gif differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/CMakeLists.txt new file mode 100644 index 0000000..2c972d8 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/CMakeLists.txt @@ -0,0 +1,8 @@ +# For more information about build system see +# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html +# The following five 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.5) +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +add_compile_options("-Wno-format") +project(esp-dsp-azure-board-app-3d-graphics) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/README.md new file mode 100644 index 0000000..32f906d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/README.md @@ -0,0 +1,27 @@ +# ESP-DSP ESP32-Azure IoT kit 3d graphics demo application + +The demo is developed for [ESP32-Azure IoT kit](https://github.com/espressif/esp-bsp/tree/master/esp32_azure_iot_kit) development board and is demonstrating the usage of matrices with `ESP-DSP` `Mat` class, Kalman filter and basic 3D graphics. + +The 3D Graphics demo displays a 2D graphics, converted to 3D as a 3D rotating object, on the development board's display. Button press changes the rotation direction of the 3D object. Run the menuconfig using the following command: + + idf.py mencuonfig + +In the menuconfig's menu item `Demo user configuration` select which 3D object to display. It's either a 3D cube, or ESP logo, or a user-defined graphics. Getting the user-defined graphics is described in an [example](../../graphics/img_to_3d_matrix/example/) + +## Running the demo + +To start the demo, run the following command: + + idf.py build flash monitor + +The expected output is the following: + + I (570) 3D image demo: Selected 3D image - ESP Logo + I (570) 3D image demo: Showing ESP text + I (6730) 3D image demo: Showing 3D image + +Note, that the first line `Selected 3D image` from the expected output depends on the user's Kconfing menu selection + +
+ +
diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/3d_graphics_demo.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/3d_graphics_demo.cpp new file mode 100644 index 0000000..dccc366 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/3d_graphics_demo.cpp @@ -0,0 +1,240 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "esp_log.h" +#include "ssd1306.h" +#include "bsp/esp-bsp.h" +#include "esp_dsp.h" +#include "cube_matrix.h" +#include "esp_logo.h" +#include "esp_text.h" +#include "graphics_support.h" +#include "image_to_3d_matrix.h" + +static ssd1306_handle_t ssd1306_dev = NULL; +static bool button_pressed = true; + +dspm::Mat perspective_matrix(MATRIX_SIZE, MATRIX_SIZE); + +extern "C" void app_main(); + +/** + * @brief Initialize 3d image structure + * + * Assigns a 3d image to be displayed to the 3d image structure based on the Kconfig menu result. + * The Kconfig menu is operated by a user + * + * @param image: 3d image structure + */ +static void init_3d_matrix_struct(image_3d_matrix_t *image) +{ +#ifdef CONFIG_3D_OBJECT_ESP_LOGO + image->matrix = image_3d_matrix_esp_logo; + image->matrix_len = ((sizeof(image_3d_matrix_esp_logo)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - ESP Logo"); +#elif CONFIG_3D_OBJECT_CUSTOM + image->matrix = image_to_3d_matrix_custom; + image->matrix_len = ((sizeof(image_to_3d_matrix_custom)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - User's custom image"); +#elif CONFIG_3D_OBJECT_CUBE + image->matrix = cube_vectors_3d; + image->matrix_len = ((sizeof(cube_vectors_3d)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("3D image demo", "Selected 3D image - 3D cube"); +#endif +} + +/** + * @brief Initialize display + */ +static void app_ssd1306_init(void) +{ + ssd1306_dev = ssd1306_create((i2c_port_t)BSP_I2C_NUM, SSD1306_I2C_ADDRESS); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Display a 3d image + * + * If the object is the 3d cube, connect the projected cube points by lines and display the lines + * For any other 3d object lit pixels on the display from provided XY coordinates + * + * @param projected_image: 3d matrix from Mat class after projection + */ +static void display_3d_image(dspm::Mat projected_image) +{ + ssd1306_clear_screen(ssd1306_dev, 0); + + if (OBJECT_3D_CUBE) { + // For the 3D cube, only the 6 points of the cube are transformed + // Cube edges, connecting transformed 3D cube points are connected with lines here + for (uint8_t cube_point = 0; cube_point < CUBE_EDGES; cube_point++) { + ssd1306_draw_line(ssd1306_dev, + (int16_t)projected_image(cube_dict_line_begin[cube_point], 0), + (int16_t)projected_image(cube_dict_line_begin[cube_point], 1), + (int16_t)projected_image(cube_dict_line_end[cube_point], 0), + (int16_t)projected_image(cube_dict_line_end[cube_point], 1)); + } + } else { + // Every other 3D image is drawn here pixel by pixel + for (uint32_t pixel = 0; pixel < projected_image.rows; pixel++ ) { + ssd1306_fill_point(ssd1306_dev, projected_image(pixel, 0), projected_image(pixel, 1), 1); + } + } + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Display ESPRESSIF text + * + * To demonstrate usage of the translation and scaling matrices + */ +static void dispaly_esp_text(void) +{ + image_3d_matrix_t esp_text; + esp_text.matrix = image_3d_array_esp_text; + esp_text.matrix_len = ((sizeof(image_3d_array_esp_text)) / sizeof(float)) / MATRIX_SIZE; + int16_t shift_x = -SSD1606_X_CENTER; + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat transformed_image(esp_text.matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat matrix_3d((float *)esp_text.matrix[0], esp_text.matrix_len, MATRIX_SIZE); + + ESP_LOGI("3D image demo", "Showing ESP text"); + + for (int i = 0; i < 52; i++) { + update_translation_matrix(T, true, (float)shift_x, (float)SSD1606_Y_CENTER, 0); + transformed_image = matrix_3d * T; + + ssd1306_clear_screen(ssd1306_dev, 0); + for (uint32_t point = 0; point < transformed_image.rows; point++ ) { + ssd1306_fill_point(ssd1306_dev, transformed_image(point, 0), transformed_image(point, 1), 1); + } + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(50 / portTICK_PERIOD_MS); + + shift_x += 5; + } + + ssd1306_clear_screen(ssd1306_dev, 0); + ssd1306_draw_bitmap(ssd1306_dev, 0, 24, &image_bmp_array_esp_text[0], 128, 24); + ssd1306_refresh_gram(ssd1306_dev); + + update_translation_matrix(T, true, (float)SSD1606_X_CENTER, (float)SSD1606_Y_CENTER, 0); + vTaskDelay(100 / portTICK_PERIOD_MS); + + float scale = 1; + for (int i = 0; i < 20; i++) { + update_scaling_matrix(T, false, scale, scale, 1); + transformed_image = matrix_3d * T; + + ssd1306_clear_screen(ssd1306_dev, 0); + for (uint32_t point = 0; point < transformed_image.rows; point++ ) { + ssd1306_fill_point(ssd1306_dev, transformed_image(point, 0), transformed_image(point, 1), 1); + } + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(50 / portTICK_PERIOD_MS); + + if (i < 10) { + scale -= 0.05; + } else { + scale += 0.05; + } + } +} + +/** + * @brief RTOS task to draw a 3d image. + * + * Updates 3d matrices, prepares the final 3d matrix to be displayed on the display + * + * @param arg: pointer to RTOS task arguments, 3d image structure in this case + */ +static void draw_3d_image_task(void *arg) +{ + float rot_y = 0, rot_x = 0; + const float angle_increment = 4; + image_3d_matrix_t *image = (image_3d_matrix_t *)arg; + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat transformed_image(image->matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat projected_image(image->matrix_len, MATRIX_SIZE); // 3D image matrix after projection + dspm::Mat matrix_3d((float *)image->matrix[0], image->matrix_len, MATRIX_SIZE); + + if (OBJECT_3D_CUBE) { + rot_x = 45; + } + + while (1) { + if (button_pressed) { + rot_y += angle_increment; + if (rot_y >= 360) { + rot_y -= 360; + } + } else { + rot_y -= angle_increment; + if (rot_y <= 0) { + rot_y += 360; + } + } + + // Apply rotation in all the axes to the transformation matrix + update_rotation_matrix(T, rot_x, rot_y, 0); + // Apply translation to the transformation matrix + update_translation_matrix(T, true, ((float)SSD1606_X_CENTER), ((float)SSD1606_Y_CENTER), 0); + + // explanation for the matrix multiplication is for the 3D cube scenario, applies for all of the objects + // where matrix rows for the transformed image and the projected image are set according to the specific 3d object + + // matrix mul cube_matirx(8x4) * transformation_matrix(4x4) = transformed_cube(8x4) + transformed_image = matrix_3d * T; + // matrix mul transformed_cube(8x4) * perspective_matrix(4x4) = projected_cube(8x4) + projected_image = transformed_image * perspective_matrix; + + display_3d_image(projected_image); + vTaskDelay(20 / portTICK_PERIOD_MS); + } +} + +void app_main(void) +{ + static bool button_prev_val = false; + image_3d_matrix_t image; + ekf_imu13states *ekf13 = new ekf_imu13states(); + ekf13->Init(); + + // Init all board components + bsp_i2c_init(); + app_ssd1306_init(); // display init + bsp_leds_init(); // LEDs init + bsp_i2c_set_clk_speed(I2C_CLK_600KHZ); // Set I2C to 600kHz + + init_perspective_matrix(perspective_matrix); + init_3d_matrix_struct(&image); + + dispaly_esp_text(); + vTaskDelay(1000 / portTICK_PERIOD_MS); + + xTaskCreate(draw_3d_image_task, "draw_3d_image", 2048, &image, 4, NULL); + ESP_LOGI("3D image demo", "Showing 3D image"); + + while (1) { + if (bsp_button_get()) { + button_pressed = !button_pressed; + } + + if (button_prev_val != button_pressed) { + button_prev_val = button_pressed; + if (button_pressed) { + bsp_led_set(BSP_LED_AZURE, true); + } else { + bsp_led_set(BSP_LED_AZURE, false); + } + } + vTaskDelay(100 / portTICK_PERIOD_MS); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/CMakeLists.txt new file mode 100644 index 0000000..fd342d6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/CMakeLists.txt @@ -0,0 +1,8 @@ +idf_component_register(SRCS "3d_graphics_demo.cpp" + "../../../graphics/3d_matrix/3d_matrix_data/esp_logo.c" + "../../../graphics/3d_matrix/3d_matrix_data/esp_text.c" + "../../../graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c" + "../../../graphics/3d_matrix/3d_matrix_src/graphics_support.cpp" + INCLUDE_DIRS "." + "../../../graphics/3d_matrix/3d_matrix_data" + "../../../graphics/3d_matrix/3d_matrix_src") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/Kconfig.projbuild b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/Kconfig.projbuild new file mode 100644 index 0000000..d36ede0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/Kconfig.projbuild @@ -0,0 +1,19 @@ +menu "Demo user configuration" + choice + prompt "Select 3D object" + config 3D_OBJECT_CUBE + bool "3D cube" + help + 3D graphics to be displayed is cube + + config 3D_OBJECT_ESP_LOGO + bool "3D ESP Logo" + help + 3D graphics to be displayed is ESP Logo + + config 3D_OBJECT_CUSTOM + bool "User-defined graphics" + help + 3D graphics to be displayed is a user-defined graphics + endchoice +endmenu \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/idf_component.yml new file mode 100644 index 0000000..a36c39c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/3d_graphics/main/idf_component.yml @@ -0,0 +1,8 @@ +## IDF Component Manager Manifest File +description: ESP-DSP azure board application 3d graphics +dependencies: + espressif/esp32_azure_iot_kit: "*" + espressif/esp-dsp: + version: "*" + override_path: "../../../../../../esp-dsp" + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/CMakeLists.txt new file mode 100644 index 0000000..94d8c35 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/CMakeLists.txt @@ -0,0 +1,8 @@ +# For more information about build system see +# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html +# The following five 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.5) +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +add_compile_options("-Wno-format") +project(esp-dsp-azure-board-app-kalman-filter) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/README.md new file mode 100644 index 0000000..eb664ba --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/README.md @@ -0,0 +1,59 @@ +# ESP-DSP ESP32-Azure IoT kit Kalman filter demo application + +The demo is developed for [ESP32-Azure IoT kit](https://github.com/espressif/esp-bsp/tree/master/esp32_azure_iot_kit) development board and is demonstrating the usage of matrices with `ESP-DSP` `Mat` class, Kalman filter and basic 3D graphics. + +The Kalman filter demo displays a 2D graphics, converted to 3D as a 3D object, on the development board's display. The 3D object follows the movements of the development board, where the Kalman filter is used for processing the output signals of the IMU sensors accommodated on the development board. The 3D object rotation is calculated by the Kalman filter class methods. All 3 IMU sensors present on the dev board (accelerometer, gyroscope and magnetometer) are used for sensing the development board's position. + + +If the board is inactive (no, or very low rotation is detected) for a set period of time, the demo enters an "Idle" state, in which a 3D rotating object is displayed. Once a certain set level of the board's rotation is detected, the demo enters a normal, "Active", state. + +For the project settings, run the menuconfig using the following command: + + idf.py mencuonfig + +In the menuconfig's menu item `Demo user configuration` select which 3D object to display. It's either 3D cube, or ESP logo, or a user-defined graphics. Getting the user-defined 3D object is described in the [3D Graphics demo](../3d_graphics) + +## Kalman filter +#### Calibration + +The filter must be calibrated before the first run, which takes several minutes. But the calibration process before each run can be omitted by calibrating the filter once, saving Kalman's filter state vectors to the NVS, and loading those vectors back into the Kalman filter before the run. In addition, every 5 minutes a current state vectors are saved into the flash memory. + +## Running the demo + +To start the demo, run the following command: + + idf.py build flash monitor + +The expected output is the following: + + I (589) Kalman filter demo: Selected 3D image - 3D cube + I (590) Kalman filter demo: Filter state vectors present in the NVS + I (592) Kalman filter demo: Loading state vectors into the filter structure + I (604) Kalman filter demo: State vectors loaded from the NVS + I (606) Barometer: disabled + I (619) Board status: board put to active mode + I (95780) Board status: board put to idle mode + I (300619) Kalman filter demo: State vectors saved to NVS + +Note, that the first line `Selected 3D image` from the expected output depends on the user's Kconfing menu selection + +To start the demo and run the initial Kalman filter calibration, one must erase the flash memory, to remove the previously stored Kalman filter's state vectors. To do so, run the following command: + + idf.py erase_flash build flash monitor + +The expected output is the following: + + I (592) Kalman filter demo: Selected 3D image - 3D cube + I (595) Kalman filter demo: Filter state vectors not present in the NVS + I (595) Kalman filter demo: Starting Kalman filter calibration loop + I (100699) Kalman filter demo: Exiting Kalman filter calibration loop + I (100894) Kalman filter demo: Estimated gyroscope bias error [deg/sec]: -0.020715 -0.000431 -0.022452 + I (100900) Kalman filter demo: State vectors saved to the NVS + I (100900) Barometer: disabled + I (100911) Board status: board put to active mode + I (196072) Board status: board put to idle mode + I (400912) Kalman filter demo: State vectors saved to NVS + +
+ +
\ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/kalman_filter.gif b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/kalman_filter.gif new file mode 100644 index 0000000..2467b5f Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/kalman_filter.gif differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/CMakeLists.txt new file mode 100644 index 0000000..dc7e9bf --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/CMakeLists.txt @@ -0,0 +1,7 @@ +idf_component_register(SRCS "kalman_filter_demo.cpp" + "../../../graphics/3d_matrix/3d_matrix_data/esp_logo.c" + "../../../graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c" + "../../../graphics/3d_matrix/3d_matrix_src/graphics_support.cpp" + INCLUDE_DIRS "." + "../../../graphics/3d_matrix/3d_matrix_data" + "../../../graphics/3d_matrix/3d_matrix_src") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/Kconfig.projbuild b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/Kconfig.projbuild new file mode 100644 index 0000000..d36ede0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/Kconfig.projbuild @@ -0,0 +1,19 @@ +menu "Demo user configuration" + choice + prompt "Select 3D object" + config 3D_OBJECT_CUBE + bool "3D cube" + help + 3D graphics to be displayed is cube + + config 3D_OBJECT_ESP_LOGO + bool "3D ESP Logo" + help + 3D graphics to be displayed is ESP Logo + + config 3D_OBJECT_CUSTOM + bool "User-defined graphics" + help + 3D graphics to be displayed is a user-defined graphics + endchoice +endmenu \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/idf_component.yml new file mode 100644 index 0000000..cf57d1e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/idf_component.yml @@ -0,0 +1,8 @@ +## IDF Component Manager Manifest File +description: ESP-DSP azure board application Kalman filter +dependencies: + espressif/esp32_azure_iot_kit: "*" + espressif/esp-dsp: + version: "*" + override_path: "../../../../../../esp-dsp" + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/kalman_filter_demo.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/kalman_filter_demo.cpp new file mode 100644 index 0000000..2cc49c6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/apps/kalman_filter/main/kalman_filter_demo.cpp @@ -0,0 +1,608 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "mpu6050.h" +#include "ssd1306.h" +#include "mag3110.h" +#include "fbm320.h" +#include "bsp/esp-bsp.h" +#include "esp_log.h" +#include "esp_timer.h" +#include "esp_idf_version.h" // for backward compatibility of esp-timer +#include "nvs.h" +#include "nvs_flash.h" +#include "graphics_support.h" +#include "cube_matrix.h" +#include "esp_dsp.h" +#include "ekf_imu13states.h" +#include "esp_logo.h" +#include "image_to_3d_matrix.h" + +#define STORAGE_NAMESPACE "kalman_filter" +#define USE_BAROMETER 0 + +static ssd1306_handle_t ssd1306_dev = NULL; +static mpu6050_handle_t mpu6050_dev = NULL; +static mag3110_handle_t mag3110_dev = NULL; +static fbm320_handle_t fbm320_dev = NULL; + +static bool kalman_filter_calibrated = false; +static bool board_inactive = true; + +dspm::Mat perspective_matrix(MATRIX_SIZE, MATRIX_SIZE); + +extern "C" void app_main(); + +/** + * @brief Initialize magnetometer + */ +static void app_mag3110_init(void) +{ + esp_err_t ret; + mag3110_dev = mag3110_create((i2c_port_t)BSP_I2C_NUM); + mag3110_start_raw(mag3110_dev, MAG3110_DR_OS_80_16); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize display + */ +static void app_ssd1306_init(void) +{ + ssd1306_dev = ssd1306_create((i2c_port_t)BSP_I2C_NUM, SSD1306_I2C_ADDRESS); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Initialize accelerometer and gyroscope + */ +static void mpu6050_init(void) +{ + esp_err_t ret; + mpu6050_dev = mpu6050_create((i2c_port_t)BSP_I2C_NUM, MPU6050_I2C_ADDRESS); + ret = mpu6050_config(mpu6050_dev, ACCE_FS_8G, GYRO_FS_2000DPS); + assert(ESP_OK == ret); + ret = mpu6050_wake_up(mpu6050_dev); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize pressure sensor + */ +static void app_fbm320_init(void) +{ + esp_err_t ret; + fbm320_dev = fbm320_create((i2c_port_t)BSP_I2C_NUM, FBM320_I2C_ADDRESS_1); + ret = fbm320_init(fbm320_dev); + assert(ESP_OK == ret); +} + +/** + * @brief Initialize NVS flash memory + */ +static void init_nvs_flash_memory(void) +{ + esp_err_t err = nvs_flash_init(); + if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) { + // NVS partition was truncated and needs to be erased + // Retry nvs_flash_init + ESP_ERROR_CHECK(nvs_flash_erase()); + err = nvs_flash_init(); + } + ESP_ERROR_CHECK( err ); +} + +/** + * @brief Initialize 3d image structure + * + * Assigns a 3d image to be displayed to the 3d image structure based on the Kconfig menu result. + * The Kconfig menu is operated by a user + * + * @param image: pointer to 3d image structure + * @param ekf13: kalman filter object + */ +static void init_3d_matrix_struct(image_3d_matrix_kalman_t *image, ekf_imu13states *ekf13) +{ +#ifdef CONFIG_3D_OBJECT_ESP_LOGO + image->matrix = image_3d_matrix_esp_logo; + image->matrix_len = ((sizeof(image_3d_matrix_esp_logo)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - ESP Logo"); +#elif CONFIG_3D_OBJECT_CUSTOM + image->matrix = image_to_3d_matrix_custom; + image->matrix_len = ((sizeof(image_to_3d_matrix_custom)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - User's custom image"); +#elif CONFIG_3D_OBJECT_CUBE + image->matrix = cube_vectors_3d; + image->matrix_len = ((sizeof(cube_vectors_3d)) / sizeof(float)) / MATRIX_SIZE; + ESP_LOGI("Kalman filter demo", "Selected 3D image - 3D cube"); +#endif + image->ekf13 = ekf13; +} + +/** + * @brief Display a 3d image + * + * If the object is the 3d cube, connect the projected cube points by lines and display the lines + * For any other 3d object lit pixels on the display from provided XY coordinates + * + * @param projected_image: 3d matrix from Mat class after projection + */ +static void display_3d_image(dspm::Mat projected_image) +{ + ssd1306_clear_screen(ssd1306_dev, 0); + + if (OBJECT_3D_CUBE) { + // For the 3D cube, only the 6 points of the cube are transformed + // Cube edges, connecting transformed 3D cube points are connected with lines here + for (uint8_t cube_point = 0; cube_point < CUBE_EDGES; cube_point++) { + ssd1306_draw_line(ssd1306_dev, + (int16_t)projected_image(cube_dict_line_begin[cube_point], 0), + (int16_t)projected_image(cube_dict_line_begin[cube_point], 1), + (int16_t)projected_image(cube_dict_line_end[cube_point], 0), + (int16_t)projected_image(cube_dict_line_end[cube_point], 1)); + } + } else { + // Every other 3D image is drawn here pixel by pixel + for (uint32_t pixel = 0; pixel < projected_image.rows; pixel++ ) { + ssd1306_fill_point(ssd1306_dev, projected_image(pixel, 0), projected_image(pixel, 1), 1); + } + } + ssd1306_refresh_gram(ssd1306_dev); +} + +/** + * @brief Draw a 3d image + * + * Updates 3d matrices and prepares the final 3d matrix to be displayed on the display. + * Board inactivity check - decides which board mode to display (active or inactive), based on the board movements. + * + * @param ekf13: kalman filter object + * @param transformed_image: 3d matrix holding a 3d image after transformation + * @param projected_image: 3d matrix holding a 3d image after projection + * @param matrix_3d: 3d matrix holding the original 3d image, without any transformation + */ +static void draw_3d_image(ekf_imu13states *ekf13, dspm::Mat &transformed_image, dspm::Mat &projected_image, dspm::Mat &matrix_3d) +{ + static const float movement_treshold = 0.0001; // threshold to decide between Idle and Active state of the board + static float inactive_rotation = 0; // rotation angle (in degrees) for Idle state + static unsigned int inactivity_count = 0; + static const unsigned int inactivity_count_treshold = 75; + static unsigned int inactivity_check = 0; // activity of the board is being checked once in N calls of the function + static float prev_state_arr[3] = {0, 0, 0}; // holds the previous state of the Euler angles, to compare the diff + + dspm::Mat T = dspm::Mat::eye(MATRIX_SIZE); // Transformation matrix + dspm::Mat R1 = ekf::quat2rotm(ekf13->X.data); // matrix(3x1) that holds x, y, z rotation data + dspm::Mat eul_angles = ekf::rotm2eul(R1); + + // check if the board is active or not every N calls of the function + if (!(inactivity_check++ % 10)) { + dspm::Mat prev_state_mat(prev_state_arr, 3, 1); + dspm::Mat diff = eul_angles - prev_state_mat; + prev_state_mat = eul_angles; + + float max_diff = fabs(diff(0, 0) * diff(1, 0) * diff(2, 0)); + + // wake-up the board if the current board movement crosses the threshold + if (board_inactive && (max_diff > movement_treshold)) { + board_inactive = false; + ESP_LOGI("Board status", "board put to active mode"); + } + + // if the board is awake, and the current movement of the board is lower than the threshold - the board is + // being moved with - run the inactivity_counter + // after some time (if the movement of the board has been lower than the threshold) put the board to idle mode + else if (!board_inactive && (max_diff < movement_treshold)) { + if (inactivity_count > inactivity_count_treshold) { + board_inactive = true; + inactivity_count = 0; + ESP_LOGI("Board status", "board put to idle mode"); + update_perspective_matrix(perspective_matrix, 90); + } + inactivity_count++; + } + + // if the board is awake and the current movement of the board is higher than the threshold clear the inactivity_counter + else if (!board_inactive && (max_diff >= movement_treshold)) { + inactivity_count = 0; + } + } + + if (board_inactive) { + // board idle state - display a rotating cube + update_rotation_matrix(T, inactive_rotation += 3.0, 10.0, 10.0); + } else { + // board active state - 3D object follows movements of the board + eul_angles(2, 0) = -eul_angles(2, 0); + dspm::Mat R = ekf::eul2rotm(eul_angles.data); + + // Enlarge rotation matrix from 3x3 to 4x4 + // Copy rotation matrix R(3x3) to transformation matrix T_m(4x4) + for (int row = 0; row < R.rows; row++) { + for (int col = 0; col < R.cols; col++) { + T(row, col) = R(row, col); + } + } + } + + // explanation for the matrix multiplication is for the 3D cube scenario, applies for all of the objects + // where matrix rows for the transformed image and the projected image are set according to the specific 3d object + + // matrix mul cube_matirx(8x4) * transformation_matrix(4x4) = transformed_cube(8x4) + transformed_image = matrix_3d * T; + // matrix mul transformed_cube(8x4) * perspective_matrix(4x4) = projected_cube(8x4) + projected_image = transformed_image * perspective_matrix; + display_3d_image(projected_image); +} + +/** + * @brief Kalman filter RTOS task (or ESP timer callback) + * + * Takes IMU sensors measurements to be processed by the Kalman filter + * Function is used as: + * RTOS task - during normal Kalman filter operation + * ESP Timer callback function - during Kalman filter calibration process + * + * @param arg: pointer to RTOS task arguments, 3d image structure in this case + */ +static void kalman_filter_task(void *arg) +{ + mpu6050_acce_value_t acce_sample; + mpu6050_gyro_value_t gyro_sample; + mag3110_result_t mag_sample; + + image_3d_matrix_kalman_t *kalman_filter_args = (image_3d_matrix_kalman_t *)arg; + ekf_imu13states *ekf13 = kalman_filter_args->ekf13; + dspm::Mat transformed_image(kalman_filter_args->matrix_len, MATRIX_SIZE); // 3D image matrix after transformation + dspm::Mat projected_image(kalman_filter_args->matrix_len, MATRIX_SIZE); // 3D image matrix after projection + dspm::Mat matrix_3d((float *)kalman_filter_args->matrix[0], kalman_filter_args->matrix_len, MATRIX_SIZE); + + // Covariance matrix for Kalman filter, set specifically for this development board IMU sensors + float R_m[10] = {0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.0001, 0.000001, 0.000001, 0.000001, 0.000001}; + update_perspective_matrix(perspective_matrix, 90); + + while (1) { + // dt calculation + static float prev_time = 0; + const float current_time = xthal_get_ccount(); + float dt = 0; + + // Crystal count difference conversion to Dt time constant + if (current_time > prev_time) { + dt = current_time - prev_time; + dt = dt / 240000000.0; + } + prev_time = current_time; + + // Get all the sensors values + mpu6050_get_acce(mpu6050_dev, &acce_sample); + mpu6050_get_gyro(mpu6050_dev, &gyro_sample); + mag3110_get_magnetic_induction(mag3110_dev, &mag_sample); + + // Make arrays from the sensors values + float gyro_input_arr[3] = {gyro_sample.gyro_x, gyro_sample.gyro_y, gyro_sample.gyro_z}; + float accel_input_arr[3] = {acce_sample.acce_x, acce_sample.acce_y, acce_sample.acce_z}; + float mag_input_arr[3] = {(float)mag_sample.x, (float)mag_sample.y, (float)mag_sample.z}; + + // Accel and Mag data to Mat class + dspm::Mat gyro_input_mat(gyro_input_arr, 3, 1); + dspm::Mat accel_input_mat(accel_input_arr, 3, 1); + dspm::Mat mag_input_mat(mag_input_arr, 3, 1); + + // Normalize vectors + dspm::Mat accel_norm = accel_input_mat / accel_input_mat.norm(); + dspm::Mat magn_norm = mag_input_mat / mag_input_mat.norm(); + gyro_input_mat *= DEG_TO_RAD; + + ekf13->Process(gyro_input_mat.data, dt); + ekf13->UpdateRefMeasurementMagn(accel_norm.data, magn_norm.data, R_m); + + if (kalman_filter_calibrated) { + // Use the function as RTOS task for the filter calculation + draw_3d_image(ekf13, transformed_image, projected_image, matrix_3d); + vTaskDelay(20 / portTICK_PERIOD_MS); + } else { + // Use the function as a callback for kalman_filter_calibration_timer + break; + } + } +} + +/** + * @brief Kalman filter calibration procedure + * + * The Kalman filter must be calibrated before the very first run. The state of the Kalman filter is saved + * into NVS after the calibration. + * The calibration is run, only if no Kalman filter state is saved in the NVS. Which occurs after erasing + * the flash memory. Power cycling the board does not remove the Kalman filter state from the NVS. + * + * @param image: pointer to 3d image structure + */ +static void kalman_filter_calibration(image_3d_matrix_kalman_t *image) +{ + ekf_imu13states *ekf13 = image->ekf13; + esp_err_t ret; + nvs_handle_t nvs_handle_kalman; + size_t state_vectors_size = 13 * 14; + float *state_vectors = (float *)malloc(state_vectors_size * sizeof(float)); + + ret = nvs_open(STORAGE_NAMESPACE, NVS_READWRITE, &nvs_handle_kalman); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) opening NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + // Read previously saved blob, if available + size_t required_size = 0; // value will default to 0, if not set yet in NVS + ret = nvs_get_blob(nvs_handle_kalman, "state_vectors", NULL, &required_size); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) reading data from NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + if (required_size > 0) { + ESP_LOGI("Kalman filter demo", "Filter state vectors present in the NVS"); + ESP_LOGI("Kalman filter demo", "Loading state vectors into the filter structure"); + + size_t state_vectors_size_addr = state_vectors_size * sizeof(float); + ret = nvs_get_blob(nvs_handle_kalman, "state_vectors", state_vectors, &state_vectors_size_addr); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) reading data from NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + ekf13->P.data[i] = state_vectors[i]; + } else { + ekf13->X.data[i - (state_vectors_size - 13)] = state_vectors[i]; + } + } + + ESP_LOGI("Kalman filter demo", "State vectors loaded from the NVS"); + nvs_close(nvs_handle_kalman); + + } else { + ESP_LOGI("Kalman filter demo", "Filter state vectors not present in the NVS"); + const float kalman_timer_period_us = 100000; + + // ESP timer for the Kalman filter calibration + const esp_timer_create_args_t kalman_calibration_timer_config = { + .callback = kalman_filter_task, + .arg = image, + .dispatch_method = ESP_TIMER_TASK, + .name = "kalman_filter_calibration_timer", +#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 3, 0) + .skip_unhandled_events = true, +#endif + }; + + esp_timer_handle_t kalman_calibration_timer = NULL; + ret = esp_timer_create(&kalman_calibration_timer_config, &kalman_calibration_timer); + assert(ESP_OK == ret); + ssd1306_clear_screen(ssd1306_dev, 0x00); + + ESP_LOGI("Kalman filter demo", "Starting Kalman filter calibration loop"); + + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_draw_string(ssd1306_dev, 0, 16, (const uint8_t *)"Kalman filter", 16, 1); + ssd1306_draw_string(ssd1306_dev, 0, 32, (const uint8_t *)"calibration", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + + ret = esp_timer_start_periodic(kalman_calibration_timer, kalman_timer_period_us); + assert(ESP_OK == ret); + vTaskDelay(100000 / portTICK_PERIOD_MS); + + ret = esp_timer_stop(kalman_calibration_timer); + assert(ESP_OK == ret); + ret = esp_timer_delete(kalman_calibration_timer); + assert(ESP_OK == ret); + ESP_LOGI("Kalman filter demo", "Exiting Kalman filter calibration loop"); + ssd1306_draw_string(ssd1306_dev, 0, 48, (const uint8_t *)"Done!", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + vTaskDelay(100 / portTICK_PERIOD_MS); + + dspm::Mat estimated_error(&ekf13->X.data[4], 3, 1); + + ESP_LOGI("Kalman filter demo", "Estimated gyroscope bias error [deg/sec]: %.6f\t%.6f\t%.6f", + estimated_error.data[0], estimated_error.data[1], estimated_error.data[2]); + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + state_vectors[i] = ekf13->P.data[i]; + } else { + state_vectors[i] = ekf13->X.data[i - (state_vectors_size - 13)]; + } + } + + ret = nvs_set_blob(nvs_handle_kalman, "state_vectors", state_vectors, state_vectors_size * sizeof(float)); + assert(ESP_OK == ret); + ret = nvs_commit(nvs_handle_kalman); + assert(ESP_OK == ret); + nvs_close(nvs_handle_kalman); + ESP_LOGI("Kalman filter demo", "State vectors saved to the NVS"); + } + // Set the initial state of the X vector + ekf13->X(0, 0) = 1; + ekf13->X(0, 1) = 0; + ekf13->X(0, 2) = 0; + ekf13->X(0, 3) = 0; + free(state_vectors); + kalman_filter_calibrated = true; +} + +/** + * @brief RTOS task to periodically save the filter state + * + * The Kalman filter state is periodically saved into the NVS, each 5 min. So a recent Kalman filter state + * could be loaded into the Kalman filter object after a power cycle. + * + * @param arg: pointer to RTOS task arguments, Kalman filter object in this case + */ +static void save_state_vectors_task(void *arg) +{ + esp_err_t ret; + size_t state_vectors_size = 13 * 14; + nvs_handle_t nvs_handle_kalman; + ekf_imu13states *ekf13 = (ekf_imu13states *)arg; + vTaskDelay((60000 * 5) / portTICK_PERIOD_MS); // 5min + + while (1) { + float *state_vectors = (float *)malloc(state_vectors_size * sizeof(float)); + + ret = nvs_open(STORAGE_NAMESPACE, NVS_READWRITE, &nvs_handle_kalman); + if (ret != ESP_OK) { + ESP_LOGE("NVS error", "(%s) opening NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + for (int i = 0; i < state_vectors_size; i++) { + if (i < state_vectors_size - 13) { + state_vectors[i] = ekf13->P.data[i]; + } else { + state_vectors[i] = ekf13->X.data[i - (state_vectors_size - 13)]; + } + } + + ret = nvs_set_blob(nvs_handle_kalman, "state_vectors", state_vectors, state_vectors_size * sizeof(float)); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) writing data to NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + + ret = nvs_commit(nvs_handle_kalman); + if (ret != ESP_OK && ret != ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGE("NVS error", "(%s) commiting data to NVS!\n", esp_err_to_name(ret)); + assert(ESP_OK == ret); + } + nvs_close(nvs_handle_kalman); + ESP_LOGI("Kalman filter demo", "State vectors saved to NVS"); + free(state_vectors); + vTaskDelay((60000 * 5) / portTICK_PERIOD_MS); // Save the State vectors each 5 min + } +} + +/** + * @brief ROTS task to read a pressure + * + * Pressure is measured periodically to better average out a stable value of pressure + * + * @param arg: pointer to RTOS task arguments, pointer to the pressure variable in this case + */ +static void get_pressure_task(void *arg) +{ + int32_t real_p, real_t; + float *pressure_ptr = (float *)arg; + float pressure_global = *pressure_ptr; + + int call_count = 0; + int call_count1 = 0; + float pressure_initial = pressure_global; + float last_pressure = pressure_global; + float baro_image = pressure_global; + bool changed = false; + + while (1) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure_global = (0.999 * pressure_global) + (0.001 * ((float)real_p) / 1000.0); + call_count1++; + } + + if (board_inactive) { + pressure_initial = pressure_global; + last_pressure = pressure_global; + baro_image = pressure_global; + } else { + call_count++; + if (fabs(pressure_global - last_pressure) > 0.0005) { // cahnge more than 0.5 Pa + last_pressure = pressure_global; + baro_image = (0.9 * baro_image) + (0.1 * last_pressure); + changed = true; + } + + if ((!(call_count % 10)) && changed) { + float fov = 90 + (1000.0 * ((float)(pressure_initial - baro_image))); + update_perspective_matrix(perspective_matrix, fov); + changed = false; + } + } + vTaskDelay(100 / portTICK_PERIOD_MS); + } +} + +/** + * @brief read the initial value of pressure + */ +float get_initial_pressure(void) +{ + float pressure; + int32_t real_p, real_t; + int averagning_loop_count = 500; + + ESP_LOGI("Barometer", "Averagining initial barometer pressure"); + ssd1306_clear_screen(ssd1306_dev, 0x00); + ssd1306_draw_string(ssd1306_dev, 0, 16, (const uint8_t *)"Barometer", 16, 1); + ssd1306_draw_string(ssd1306_dev, 0, 32, (const uint8_t *)"averaging", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + + // take the first pressure measurement + while (1) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure = ((float)real_p) / 1000.0; // pressure in kPa + break; + } + } + + // average first N measurements + while (averagning_loop_count--) { + if (ESP_OK == fbm320_get_data(fbm320_dev, FBM320_MEAS_PRESS_OSR_4096, &real_t, &real_p)) { + pressure = (0.999 * pressure) + (0.001 * ((float)real_p) / 1000.0); + vTaskDelay(100 / portTICK_PERIOD_MS); + } + } + + ESP_LOGI("Barometer", "Initial value set"); + ssd1306_draw_string(ssd1306_dev, 0, 48, (const uint8_t *)"Done!", 16, 1); + ssd1306_refresh_gram(ssd1306_dev); + return (pressure); +} + +void app_main(void) +{ + image_3d_matrix_kalman_t image; + ekf_imu13states *ekf13 = new ekf_imu13states(); + ekf13->Init(); + + // Init all board components + bsp_i2c_init(); + app_ssd1306_init(); // display init + mpu6050_init(); // gyro, acc init + app_mag3110_init(); // magnetometer init + app_fbm320_init(); // barometer init + bsp_leds_init(); // LEDs init + init_nvs_flash_memory(); // Non-Volatile Storage + + init_perspective_matrix(perspective_matrix); + init_3d_matrix_struct(&image, ekf13); + kalman_filter_calibration(&image); + + // Use a barometer for measuring the altitude + if (USE_BAROMETER) { + float init_pressure = get_initial_pressure(); + xTaskCreate(get_pressure_task, "get_pressure_task", 2048 * 4, &init_pressure, 4, NULL); + } else { + ESP_LOGI("Barometer", "disabled"); + } + + xTaskCreate(kalman_filter_task, "kalman_filter_task", 2048 * 4, &image, 5, NULL); + xTaskCreate(save_state_vectors_task, "save_state_vectors", 2048, ekf13, 6, NULL); + + while (1) { + vTaskDelay(10000 / portTICK_PERIOD_MS); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/.gitignore b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/.gitignore new file mode 100644 index 0000000..4d06cd1 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/.gitignore @@ -0,0 +1,3 @@ +img_to_3d_matrix/converted_image/** +img_to_3d_matrix/example/*.c +img_to_3d_matrix/example/*.h \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/cube_matrix.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/cube_matrix.h new file mode 100644 index 0000000..bb72305 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/cube_matrix.h @@ -0,0 +1,51 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include +#include "graphics_support.h" +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +#define CUBE_POINTS 8 +#define CUBE_EDGES 12 +#define CUBE_SIDE (SSD1606_Y_CENTER / 2) + +// X Y Z coordinates of the cube centered to (0, 0, 0) +const float cube_vectors_3d[CUBE_POINTS][MATRIX_SIZE] = + // X Y Z W +{ {-CUBE_SIDE, -CUBE_SIDE, -CUBE_SIDE, 1}, // -1, -1, -1 + {-CUBE_SIDE, -CUBE_SIDE, CUBE_SIDE, 1}, // -1, -1, 1 + {-CUBE_SIDE, CUBE_SIDE, -CUBE_SIDE, 1}, // -1, 1, -1 + {-CUBE_SIDE, CUBE_SIDE, CUBE_SIDE, 1}, // -1, 1, 1 + { CUBE_SIDE, -CUBE_SIDE, -CUBE_SIDE, 1}, // 1, -1, -1 + { CUBE_SIDE, -CUBE_SIDE, CUBE_SIDE, 1}, // 1, -1, 1 + { CUBE_SIDE, CUBE_SIDE, -CUBE_SIDE, 1}, // 1, 1, -1 + { CUBE_SIDE, CUBE_SIDE, CUBE_SIDE, 1} // 1, 1, 1 +}; + +// Dictionary for 3d cube edges displaying +// Cube edges cube_vectors_3d[3] <-> cube_vectors_3d[1] +// cube_vectors_3d[3] <-> cube_vectors_3d[7] +// cube_vectors_3d[5] <-> cube_vectors_3d[7] +// cube_vectors_3d[5] <-> cube_vectors_3d[1].... +const uint8_t cube_dict_line_begin[CUBE_EDGES] = {3, 3, 5, 5, 2, 2, 4, 4, 3, 7, 1, 5}; +const uint8_t cube_dict_line_end[CUBE_EDGES] = {1, 7, 7, 1, 0, 6, 6, 0, 2, 6, 0, 4}; + +#ifdef CONFIG_3D_OBJECT_CUBE +#define OBJECT_3D_CUBE 1 +#else +#define OBJECT_3D_CUBE 0 +#endif + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.c new file mode 100644 index 0000000..c8e0dd6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.c @@ -0,0 +1,290 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "esp_logo.h" + +#ifdef CONFIG_3D_OBJECT_ESP_LOGO + +const uint8_t image_bmp_array_esp_logo[512] = { + + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xf0, 0x00, 0x00, + 0x00, 0x00, 0x0f, 0xc0, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x0c, 0x1f, 0xfc, 0x07, 0xfe, 0x00, 0x00, + 0x00, 0x0c, 0x3f, 0xff, 0x03, 0xff, 0x00, 0x00, 0x00, 0x18, 0x7f, 0xff, 0xc0, 0xff, 0xc0, 0x00, + 0x00, 0x38, 0x7f, 0xff, 0xf0, 0x7f, 0xe0, 0x00, 0x00, 0x70, 0x7f, 0xff, 0xf8, 0x3f, 0xe0, 0x00, + 0x00, 0x60, 0x7f, 0xff, 0xfe, 0x0f, 0xf0, 0x00, 0x00, 0xe0, 0x01, 0xff, 0xff, 0x07, 0xf8, 0x00, + 0x00, 0xc0, 0x00, 0x3f, 0xff, 0x83, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x07, 0xff, 0xe1, 0xfc, 0x00, + 0x01, 0x81, 0xfc, 0x01, 0xff, 0xf0, 0xfe, 0x00, 0x01, 0x87, 0xff, 0xc0, 0x7f, 0xf8, 0xfe, 0x00, + 0x03, 0x0f, 0xff, 0xf0, 0x3f, 0xf8, 0x7e, 0x00, 0x03, 0x1f, 0xff, 0xfc, 0x1f, 0xfc, 0x3f, 0x00, + 0x03, 0x1f, 0xff, 0xff, 0x07, 0xfe, 0x1f, 0x00, 0x03, 0x3f, 0xff, 0xff, 0x83, 0xff, 0x1f, 0x00, + 0x06, 0x3f, 0xff, 0xff, 0xc1, 0xff, 0x0f, 0x00, 0x06, 0x3f, 0xff, 0xff, 0xe0, 0xff, 0x8f, 0x80, + 0x06, 0x7f, 0x83, 0xff, 0xf0, 0xff, 0xc7, 0x80, 0x06, 0x7f, 0x80, 0x7f, 0xf8, 0x7f, 0xc7, 0x80, + 0x06, 0x7f, 0xc0, 0x1f, 0xfc, 0x3f, 0xe3, 0x80, 0x06, 0x3f, 0xfc, 0x0f, 0xfe, 0x3f, 0xe3, 0x80, + 0x06, 0x3f, 0xff, 0x07, 0xff, 0x1f, 0xf1, 0x80, 0x06, 0x3f, 0xff, 0xc3, 0xff, 0x0f, 0xf0, 0x00, + 0x06, 0x1f, 0xff, 0xe1, 0xff, 0x8f, 0xf0, 0x00, 0x07, 0x0f, 0xff, 0xf0, 0xff, 0x8f, 0xf8, 0x00, + 0x03, 0x07, 0xff, 0xf8, 0x7f, 0xc7, 0xf8, 0x00, 0x03, 0x01, 0xff, 0xfc, 0x3f, 0xc7, 0xf8, 0x00, + 0x03, 0x00, 0x3f, 0xfe, 0x3f, 0xc7, 0xf8, 0x00, 0x01, 0x80, 0x07, 0xfe, 0x1f, 0xe3, 0xfc, 0x00, + 0x01, 0x80, 0x03, 0xff, 0x1f, 0xe3, 0xfc, 0x00, 0x01, 0xc0, 0x01, 0xff, 0x1f, 0xe3, 0xfc, 0x00, + 0x00, 0xc0, 0x78, 0xff, 0x0f, 0xe3, 0xfc, 0x00, 0x00, 0xe0, 0xfc, 0x7f, 0x8f, 0xf1, 0xf8, 0x00, + 0x00, 0x61, 0xfc, 0x7f, 0x8f, 0xf1, 0xf0, 0x00, 0x00, 0x71, 0xfc, 0x7f, 0x8f, 0xf1, 0xf0, 0x00, + 0x00, 0x39, 0xfc, 0x7f, 0x8f, 0xf1, 0xe0, 0x00, 0x00, 0x19, 0xfc, 0x7f, 0x8f, 0xf0, 0x00, 0x00, + 0x00, 0x1c, 0xf8, 0x7f, 0x8f, 0xf0, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x7f, 0x8f, 0xf0, 0x10, 0x00, + 0x00, 0x07, 0x00, 0x7f, 0x8f, 0xf0, 0x38, 0x00, 0x00, 0x03, 0xc0, 0xff, 0x0f, 0xe0, 0x70, 0x00, + 0x00, 0x01, 0xe0, 0x7f, 0x0f, 0xc0, 0xe0, 0x00, 0x00, 0x00, 0x78, 0x1f, 0x00, 0x03, 0xc0, 0x00, + 0x00, 0x00, 0x3e, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x7e, 0x00, 0x00, + 0x00, 0x00, 0x03, 0xfc, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + +}; + +const float image_3d_matrix_esp_logo[1427][4] = { + + {-2.0, -25.0, 0, 1}, {-1.0, -25.0, 0, 1}, {0.0, -25.0, 0, 1}, {1.0, -25.0, 0, 1}, {2.0, -25.0, 0, 1}, {3.0, -25.0, 0, 1}, + {4.0, -25.0, 0, 1}, {5.0, -25.0, 0, 1}, {6.0, -25.0, 0, 1}, {-2.0, -24.0, 0, 1}, {-1.0, -24.0, 0, 1}, {0.0, -24.0, 0, 1}, + {1.0, -24.0, 0, 1}, {2.0, -24.0, 0, 1}, {3.0, -24.0, 0, 1}, {4.0, -24.0, 0, 1}, {5.0, -24.0, 0, 1}, {6.0, -24.0, 0, 1}, + {7.0, -24.0, 0, 1}, {8.0, -24.0, 0, 1}, {9.0, -24.0, 0, 1}, {1.0, -23.0, 0, 1}, {2.0, -23.0, 0, 1}, {3.0, -23.0, 0, 1}, + {4.0, -23.0, 0, 1}, {5.0, -23.0, 0, 1}, {6.0, -23.0, 0, 1}, {7.0, -23.0, 0, 1}, {8.0, -23.0, 0, 1}, {9.0, -23.0, 0, 1}, + {10.0, -23.0, 0, 1}, {11.0, -23.0, 0, 1}, {-12.0, -22.0, 0, 1}, {-11.0, -22.0, 0, 1}, {-10.0, -22.0, 0, 1}, {-9.0, -22.0, 0, 1}, + {-8.0, -22.0, 0, 1}, {-7.0, -22.0, 0, 1}, {3.0, -22.0, 0, 1}, {4.0, -22.0, 0, 1}, {5.0, -22.0, 0, 1}, {6.0, -22.0, 0, 1}, + {7.0, -22.0, 0, 1}, {8.0, -22.0, 0, 1}, {9.0, -22.0, 0, 1}, {10.0, -22.0, 0, 1}, {11.0, -22.0, 0, 1}, {12.0, -22.0, 0, 1}, + {13.0, -22.0, 0, 1}, {-20.0, -21.0, 0, 1}, {-19.0, -21.0, 0, 1}, {-13.0, -21.0, 0, 1}, {-12.0, -21.0, 0, 1}, {-11.0, -21.0, 0, 1}, + {-10.0, -21.0, 0, 1}, {-9.0, -21.0, 0, 1}, {-8.0, -21.0, 0, 1}, {-7.0, -21.0, 0, 1}, {-6.0, -21.0, 0, 1}, {-5.0, -21.0, 0, 1}, + {-4.0, -21.0, 0, 1}, {-3.0, -21.0, 0, 1}, {5.0, -21.0, 0, 1}, {6.0, -21.0, 0, 1}, {7.0, -21.0, 0, 1}, {8.0, -21.0, 0, 1}, + {9.0, -21.0, 0, 1}, {10.0, -21.0, 0, 1}, {11.0, -21.0, 0, 1}, {12.0, -21.0, 0, 1}, {13.0, -21.0, 0, 1}, {14.0, -21.0, 0, 1}, + {-20.0, -20.0, 0, 1}, {-19.0, -20.0, 0, 1}, {-14.0, -20.0, 0, 1}, {-13.0, -20.0, 0, 1}, {-12.0, -20.0, 0, 1}, {-11.0, -20.0, 0, 1}, + {-10.0, -20.0, 0, 1}, {-9.0, -20.0, 0, 1}, {-8.0, -20.0, 0, 1}, {-7.0, -20.0, 0, 1}, {-6.0, -20.0, 0, 1}, {-5.0, -20.0, 0, 1}, + {-4.0, -20.0, 0, 1}, {-3.0, -20.0, 0, 1}, {-2.0, -20.0, 0, 1}, {-1.0, -20.0, 0, 1}, {6.0, -20.0, 0, 1}, {7.0, -20.0, 0, 1}, + {8.0, -20.0, 0, 1}, {9.0, -20.0, 0, 1}, {10.0, -20.0, 0, 1}, {11.0, -20.0, 0, 1}, {12.0, -20.0, 0, 1}, {13.0, -20.0, 0, 1}, + {14.0, -20.0, 0, 1}, {15.0, -20.0, 0, 1}, {-21.0, -19.0, 0, 1}, {-20.0, -19.0, 0, 1}, {-15.0, -19.0, 0, 1}, {-14.0, -19.0, 0, 1}, + {-13.0, -19.0, 0, 1}, {-12.0, -19.0, 0, 1}, {-11.0, -19.0, 0, 1}, {-10.0, -19.0, 0, 1}, {-9.0, -19.0, 0, 1}, {-8.0, -19.0, 0, 1}, + {-7.0, -19.0, 0, 1}, {-6.0, -19.0, 0, 1}, {-5.0, -19.0, 0, 1}, {-4.0, -19.0, 0, 1}, {-3.0, -19.0, 0, 1}, {-2.0, -19.0, 0, 1}, + {-1.0, -19.0, 0, 1}, {0.0, -19.0, 0, 1}, {1.0, -19.0, 0, 1}, {8.0, -19.0, 0, 1}, {9.0, -19.0, 0, 1}, {10.0, -19.0, 0, 1}, + {11.0, -19.0, 0, 1}, {12.0, -19.0, 0, 1}, {13.0, -19.0, 0, 1}, {14.0, -19.0, 0, 1}, {15.0, -19.0, 0, 1}, {16.0, -19.0, 0, 1}, + {17.0, -19.0, 0, 1}, {-22.0, -18.0, 0, 1}, {-21.0, -18.0, 0, 1}, {-20.0, -18.0, 0, 1}, {-15.0, -18.0, 0, 1}, {-14.0, -18.0, 0, 1}, + {-13.0, -18.0, 0, 1}, {-12.0, -18.0, 0, 1}, {-11.0, -18.0, 0, 1}, {-10.0, -18.0, 0, 1}, {-9.0, -18.0, 0, 1}, {-8.0, -18.0, 0, 1}, + {-7.0, -18.0, 0, 1}, {-6.0, -18.0, 0, 1}, {-5.0, -18.0, 0, 1}, {-4.0, -18.0, 0, 1}, {-3.0, -18.0, 0, 1}, {-2.0, -18.0, 0, 1}, + {-1.0, -18.0, 0, 1}, {0.0, -18.0, 0, 1}, {1.0, -18.0, 0, 1}, {2.0, -18.0, 0, 1}, {3.0, -18.0, 0, 1}, {9.0, -18.0, 0, 1}, + {10.0, -18.0, 0, 1}, {11.0, -18.0, 0, 1}, {12.0, -18.0, 0, 1}, {13.0, -18.0, 0, 1}, {14.0, -18.0, 0, 1}, {15.0, -18.0, 0, 1}, + {16.0, -18.0, 0, 1}, {17.0, -18.0, 0, 1}, {18.0, -18.0, 0, 1}, {-23.0, -17.0, 0, 1}, {-22.0, -17.0, 0, 1}, {-21.0, -17.0, 0, 1}, + {-15.0, -17.0, 0, 1}, {-14.0, -17.0, 0, 1}, {-13.0, -17.0, 0, 1}, {-12.0, -17.0, 0, 1}, {-11.0, -17.0, 0, 1}, {-10.0, -17.0, 0, 1}, + {-9.0, -17.0, 0, 1}, {-8.0, -17.0, 0, 1}, {-7.0, -17.0, 0, 1}, {-6.0, -17.0, 0, 1}, {-5.0, -17.0, 0, 1}, {-4.0, -17.0, 0, 1}, + {-3.0, -17.0, 0, 1}, {-2.0, -17.0, 0, 1}, {-1.0, -17.0, 0, 1}, {0.0, -17.0, 0, 1}, {1.0, -17.0, 0, 1}, {2.0, -17.0, 0, 1}, + {3.0, -17.0, 0, 1}, {4.0, -17.0, 0, 1}, {10.0, -17.0, 0, 1}, {11.0, -17.0, 0, 1}, {12.0, -17.0, 0, 1}, {13.0, -17.0, 0, 1}, + {14.0, -17.0, 0, 1}, {15.0, -17.0, 0, 1}, {16.0, -17.0, 0, 1}, {17.0, -17.0, 0, 1}, {18.0, -17.0, 0, 1}, {-23.0, -16.0, 0, 1}, + {-22.0, -16.0, 0, 1}, {-15.0, -16.0, 0, 1}, {-14.0, -16.0, 0, 1}, {-13.0, -16.0, 0, 1}, {-12.0, -16.0, 0, 1}, {-11.0, -16.0, 0, 1}, + {-10.0, -16.0, 0, 1}, {-9.0, -16.0, 0, 1}, {-8.0, -16.0, 0, 1}, {-7.0, -16.0, 0, 1}, {-6.0, -16.0, 0, 1}, {-5.0, -16.0, 0, 1}, + {-4.0, -16.0, 0, 1}, {-3.0, -16.0, 0, 1}, {-2.0, -16.0, 0, 1}, {-1.0, -16.0, 0, 1}, {0.0, -16.0, 0, 1}, {1.0, -16.0, 0, 1}, + {2.0, -16.0, 0, 1}, {3.0, -16.0, 0, 1}, {4.0, -16.0, 0, 1}, {5.0, -16.0, 0, 1}, {6.0, -16.0, 0, 1}, {12.0, -16.0, 0, 1}, + {13.0, -16.0, 0, 1}, {14.0, -16.0, 0, 1}, {15.0, -16.0, 0, 1}, {16.0, -16.0, 0, 1}, {17.0, -16.0, 0, 1}, {18.0, -16.0, 0, 1}, + {19.0, -16.0, 0, 1}, {-24.0, -15.0, 0, 1}, {-23.0, -15.0, 0, 1}, {-22.0, -15.0, 0, 1}, {-9.0, -15.0, 0, 1}, {-8.0, -15.0, 0, 1}, + {-7.0, -15.0, 0, 1}, {-6.0, -15.0, 0, 1}, {-5.0, -15.0, 0, 1}, {-4.0, -15.0, 0, 1}, {-3.0, -15.0, 0, 1}, {-2.0, -15.0, 0, 1}, + {-1.0, -15.0, 0, 1}, {0.0, -15.0, 0, 1}, {1.0, -15.0, 0, 1}, {2.0, -15.0, 0, 1}, {3.0, -15.0, 0, 1}, {4.0, -15.0, 0, 1}, + {5.0, -15.0, 0, 1}, {6.0, -15.0, 0, 1}, {7.0, -15.0, 0, 1}, {13.0, -15.0, 0, 1}, {14.0, -15.0, 0, 1}, {15.0, -15.0, 0, 1}, + {16.0, -15.0, 0, 1}, {17.0, -15.0, 0, 1}, {18.0, -15.0, 0, 1}, {19.0, -15.0, 0, 1}, {20.0, -15.0, 0, 1}, {-24.0, -14.0, 0, 1}, + {-23.0, -14.0, 0, 1}, {-6.0, -14.0, 0, 1}, {-5.0, -14.0, 0, 1}, {-4.0, -14.0, 0, 1}, {-3.0, -14.0, 0, 1}, {-2.0, -14.0, 0, 1}, + {-1.0, -14.0, 0, 1}, {0.0, -14.0, 0, 1}, {1.0, -14.0, 0, 1}, {2.0, -14.0, 0, 1}, {3.0, -14.0, 0, 1}, {4.0, -14.0, 0, 1}, + {5.0, -14.0, 0, 1}, {6.0, -14.0, 0, 1}, {7.0, -14.0, 0, 1}, {8.0, -14.0, 0, 1}, {14.0, -14.0, 0, 1}, {15.0, -14.0, 0, 1}, + {16.0, -14.0, 0, 1}, {17.0, -14.0, 0, 1}, {18.0, -14.0, 0, 1}, {19.0, -14.0, 0, 1}, {20.0, -14.0, 0, 1}, {21.0, -14.0, 0, 1}, + {-25.0, -13.0, 0, 1}, {-24.0, -13.0, 0, 1}, {-23.0, -13.0, 0, 1}, {-3.0, -13.0, 0, 1}, {-2.0, -13.0, 0, 1}, {-1.0, -13.0, 0, 1}, + {0.0, -13.0, 0, 1}, {1.0, -13.0, 0, 1}, {2.0, -13.0, 0, 1}, {3.0, -13.0, 0, 1}, {4.0, -13.0, 0, 1}, {5.0, -13.0, 0, 1}, + {6.0, -13.0, 0, 1}, {7.0, -13.0, 0, 1}, {8.0, -13.0, 0, 1}, {9.0, -13.0, 0, 1}, {10.0, -13.0, 0, 1}, {15.0, -13.0, 0, 1}, + {16.0, -13.0, 0, 1}, {17.0, -13.0, 0, 1}, {18.0, -13.0, 0, 1}, {19.0, -13.0, 0, 1}, {20.0, -13.0, 0, 1}, {21.0, -13.0, 0, 1}, + {-25.0, -12.0, 0, 1}, {-24.0, -12.0, 0, 1}, {-17.0, -12.0, 0, 1}, {-16.0, -12.0, 0, 1}, {-15.0, -12.0, 0, 1}, {-14.0, -12.0, 0, 1}, + {-13.0, -12.0, 0, 1}, {-12.0, -12.0, 0, 1}, {-11.0, -12.0, 0, 1}, {-1.0, -12.0, 0, 1}, {0.0, -12.0, 0, 1}, {1.0, -12.0, 0, 1}, + {2.0, -12.0, 0, 1}, {3.0, -12.0, 0, 1}, {4.0, -12.0, 0, 1}, {5.0, -12.0, 0, 1}, {6.0, -12.0, 0, 1}, {7.0, -12.0, 0, 1}, + {8.0, -12.0, 0, 1}, {9.0, -12.0, 0, 1}, {10.0, -12.0, 0, 1}, {11.0, -12.0, 0, 1}, {16.0, -12.0, 0, 1}, {17.0, -12.0, 0, 1}, + {18.0, -12.0, 0, 1}, {19.0, -12.0, 0, 1}, {20.0, -12.0, 0, 1}, {21.0, -12.0, 0, 1}, {22.0, -12.0, 0, 1}, {-25.0, -11.0, 0, 1}, + {-24.0, -11.0, 0, 1}, {-19.0, -11.0, 0, 1}, {-18.0, -11.0, 0, 1}, {-17.0, -11.0, 0, 1}, {-16.0, -11.0, 0, 1}, {-15.0, -11.0, 0, 1}, + {-14.0, -11.0, 0, 1}, {-13.0, -11.0, 0, 1}, {-12.0, -11.0, 0, 1}, {-11.0, -11.0, 0, 1}, {-10.0, -11.0, 0, 1}, {-9.0, -11.0, 0, 1}, + {-8.0, -11.0, 0, 1}, {-7.0, -11.0, 0, 1}, {1.0, -11.0, 0, 1}, {2.0, -11.0, 0, 1}, {3.0, -11.0, 0, 1}, {4.0, -11.0, 0, 1}, + {5.0, -11.0, 0, 1}, {6.0, -11.0, 0, 1}, {7.0, -11.0, 0, 1}, {8.0, -11.0, 0, 1}, {9.0, -11.0, 0, 1}, {10.0, -11.0, 0, 1}, + {11.0, -11.0, 0, 1}, {12.0, -11.0, 0, 1}, {16.0, -11.0, 0, 1}, {17.0, -11.0, 0, 1}, {18.0, -11.0, 0, 1}, {19.0, -11.0, 0, 1}, + {20.0, -11.0, 0, 1}, {21.0, -11.0, 0, 1}, {22.0, -11.0, 0, 1}, {-26.0, -10.0, 0, 1}, {-25.0, -10.0, 0, 1}, {-20.0, -10.0, 0, 1}, + {-19.0, -10.0, 0, 1}, {-18.0, -10.0, 0, 1}, {-17.0, -10.0, 0, 1}, {-16.0, -10.0, 0, 1}, {-15.0, -10.0, 0, 1}, {-14.0, -10.0, 0, 1}, + {-13.0, -10.0, 0, 1}, {-12.0, -10.0, 0, 1}, {-11.0, -10.0, 0, 1}, {-10.0, -10.0, 0, 1}, {-9.0, -10.0, 0, 1}, {-8.0, -10.0, 0, 1}, + {-7.0, -10.0, 0, 1}, {-6.0, -10.0, 0, 1}, {-5.0, -10.0, 0, 1}, {2.0, -10.0, 0, 1}, {3.0, -10.0, 0, 1}, {4.0, -10.0, 0, 1}, + {5.0, -10.0, 0, 1}, {6.0, -10.0, 0, 1}, {7.0, -10.0, 0, 1}, {8.0, -10.0, 0, 1}, {9.0, -10.0, 0, 1}, {10.0, -10.0, 0, 1}, + {11.0, -10.0, 0, 1}, {12.0, -10.0, 0, 1}, {17.0, -10.0, 0, 1}, {18.0, -10.0, 0, 1}, {19.0, -10.0, 0, 1}, {20.0, -10.0, 0, 1}, + {21.0, -10.0, 0, 1}, {22.0, -10.0, 0, 1}, {-26.0, -9.0, 0, 1}, {-25.0, -9.0, 0, 1}, {-21.0, -9.0, 0, 1}, {-20.0, -9.0, 0, 1}, + {-19.0, -9.0, 0, 1}, {-18.0, -9.0, 0, 1}, {-17.0, -9.0, 0, 1}, {-16.0, -9.0, 0, 1}, {-15.0, -9.0, 0, 1}, {-14.0, -9.0, 0, 1}, + {-13.0, -9.0, 0, 1}, {-12.0, -9.0, 0, 1}, {-11.0, -9.0, 0, 1}, {-10.0, -9.0, 0, 1}, {-9.0, -9.0, 0, 1}, {-8.0, -9.0, 0, 1}, + {-7.0, -9.0, 0, 1}, {-6.0, -9.0, 0, 1}, {-5.0, -9.0, 0, 1}, {-4.0, -9.0, 0, 1}, {-3.0, -9.0, 0, 1}, {3.0, -9.0, 0, 1}, + {4.0, -9.0, 0, 1}, {5.0, -9.0, 0, 1}, {6.0, -9.0, 0, 1}, {7.0, -9.0, 0, 1}, {8.0, -9.0, 0, 1}, {9.0, -9.0, 0, 1}, + {10.0, -9.0, 0, 1}, {11.0, -9.0, 0, 1}, {12.0, -9.0, 0, 1}, {13.0, -9.0, 0, 1}, {18.0, -9.0, 0, 1}, {19.0, -9.0, 0, 1}, + {20.0, -9.0, 0, 1}, {21.0, -9.0, 0, 1}, {22.0, -9.0, 0, 1}, {23.0, -9.0, 0, 1}, {-26.0, -8.0, 0, 1}, {-25.0, -8.0, 0, 1}, + {-21.0, -8.0, 0, 1}, {-20.0, -8.0, 0, 1}, {-19.0, -8.0, 0, 1}, {-18.0, -8.0, 0, 1}, {-17.0, -8.0, 0, 1}, {-16.0, -8.0, 0, 1}, + {-15.0, -8.0, 0, 1}, {-14.0, -8.0, 0, 1}, {-13.0, -8.0, 0, 1}, {-12.0, -8.0, 0, 1}, {-11.0, -8.0, 0, 1}, {-10.0, -8.0, 0, 1}, + {-9.0, -8.0, 0, 1}, {-8.0, -8.0, 0, 1}, {-7.0, -8.0, 0, 1}, {-6.0, -8.0, 0, 1}, {-5.0, -8.0, 0, 1}, {-4.0, -8.0, 0, 1}, + {-3.0, -8.0, 0, 1}, {-2.0, -8.0, 0, 1}, {-1.0, -8.0, 0, 1}, {5.0, -8.0, 0, 1}, {6.0, -8.0, 0, 1}, {7.0, -8.0, 0, 1}, + {8.0, -8.0, 0, 1}, {9.0, -8.0, 0, 1}, {10.0, -8.0, 0, 1}, {11.0, -8.0, 0, 1}, {12.0, -8.0, 0, 1}, {13.0, -8.0, 0, 1}, + {14.0, -8.0, 0, 1}, {19.0, -8.0, 0, 1}, {20.0, -8.0, 0, 1}, {21.0, -8.0, 0, 1}, {22.0, -8.0, 0, 1}, {23.0, -8.0, 0, 1}, + {-26.0, -7.0, 0, 1}, {-25.0, -7.0, 0, 1}, {-22.0, -7.0, 0, 1}, {-21.0, -7.0, 0, 1}, {-20.0, -7.0, 0, 1}, {-19.0, -7.0, 0, 1}, + {-18.0, -7.0, 0, 1}, {-17.0, -7.0, 0, 1}, {-16.0, -7.0, 0, 1}, {-15.0, -7.0, 0, 1}, {-14.0, -7.0, 0, 1}, {-13.0, -7.0, 0, 1}, + {-12.0, -7.0, 0, 1}, {-11.0, -7.0, 0, 1}, {-10.0, -7.0, 0, 1}, {-9.0, -7.0, 0, 1}, {-8.0, -7.0, 0, 1}, {-7.0, -7.0, 0, 1}, + {-6.0, -7.0, 0, 1}, {-5.0, -7.0, 0, 1}, {-4.0, -7.0, 0, 1}, {-3.0, -7.0, 0, 1}, {-2.0, -7.0, 0, 1}, {-1.0, -7.0, 0, 1}, + {0.0, -7.0, 0, 1}, {6.0, -7.0, 0, 1}, {7.0, -7.0, 0, 1}, {8.0, -7.0, 0, 1}, {9.0, -7.0, 0, 1}, {10.0, -7.0, 0, 1}, + {11.0, -7.0, 0, 1}, {12.0, -7.0, 0, 1}, {13.0, -7.0, 0, 1}, {14.0, -7.0, 0, 1}, {15.0, -7.0, 0, 1}, {19.0, -7.0, 0, 1}, + {20.0, -7.0, 0, 1}, {21.0, -7.0, 0, 1}, {22.0, -7.0, 0, 1}, {23.0, -7.0, 0, 1}, {-27.0, -6.0, 0, 1}, {-26.0, -6.0, 0, 1}, + {-22.0, -6.0, 0, 1}, {-21.0, -6.0, 0, 1}, {-20.0, -6.0, 0, 1}, {-19.0, -6.0, 0, 1}, {-18.0, -6.0, 0, 1}, {-17.0, -6.0, 0, 1}, + {-16.0, -6.0, 0, 1}, {-15.0, -6.0, 0, 1}, {-14.0, -6.0, 0, 1}, {-13.0, -6.0, 0, 1}, {-12.0, -6.0, 0, 1}, {-11.0, -6.0, 0, 1}, + {-10.0, -6.0, 0, 1}, {-9.0, -6.0, 0, 1}, {-8.0, -6.0, 0, 1}, {-7.0, -6.0, 0, 1}, {-6.0, -6.0, 0, 1}, {-5.0, -6.0, 0, 1}, + {-4.0, -6.0, 0, 1}, {-3.0, -6.0, 0, 1}, {-2.0, -6.0, 0, 1}, {-1.0, -6.0, 0, 1}, {0.0, -6.0, 0, 1}, {1.0, -6.0, 0, 1}, + {7.0, -6.0, 0, 1}, {8.0, -6.0, 0, 1}, {9.0, -6.0, 0, 1}, {10.0, -6.0, 0, 1}, {11.0, -6.0, 0, 1}, {12.0, -6.0, 0, 1}, + {13.0, -6.0, 0, 1}, {14.0, -6.0, 0, 1}, {15.0, -6.0, 0, 1}, {20.0, -6.0, 0, 1}, {21.0, -6.0, 0, 1}, {22.0, -6.0, 0, 1}, + {23.0, -6.0, 0, 1}, {-27.0, -5.0, 0, 1}, {-26.0, -5.0, 0, 1}, {-22.0, -5.0, 0, 1}, {-21.0, -5.0, 0, 1}, {-20.0, -5.0, 0, 1}, + {-19.0, -5.0, 0, 1}, {-18.0, -5.0, 0, 1}, {-17.0, -5.0, 0, 1}, {-16.0, -5.0, 0, 1}, {-15.0, -5.0, 0, 1}, {-14.0, -5.0, 0, 1}, + {-13.0, -5.0, 0, 1}, {-12.0, -5.0, 0, 1}, {-11.0, -5.0, 0, 1}, {-10.0, -5.0, 0, 1}, {-9.0, -5.0, 0, 1}, {-8.0, -5.0, 0, 1}, + {-7.0, -5.0, 0, 1}, {-6.0, -5.0, 0, 1}, {-5.0, -5.0, 0, 1}, {-4.0, -5.0, 0, 1}, {-3.0, -5.0, 0, 1}, {-2.0, -5.0, 0, 1}, + {-1.0, -5.0, 0, 1}, {0.0, -5.0, 0, 1}, {1.0, -5.0, 0, 1}, {2.0, -5.0, 0, 1}, {8.0, -5.0, 0, 1}, {9.0, -5.0, 0, 1}, + {10.0, -5.0, 0, 1}, {11.0, -5.0, 0, 1}, {12.0, -5.0, 0, 1}, {13.0, -5.0, 0, 1}, {14.0, -5.0, 0, 1}, {15.0, -5.0, 0, 1}, + {16.0, -5.0, 0, 1}, {20.0, -5.0, 0, 1}, {21.0, -5.0, 0, 1}, {22.0, -5.0, 0, 1}, {23.0, -5.0, 0, 1}, {24.0, -5.0, 0, 1}, + {-27.0, -4.0, 0, 1}, {-26.0, -4.0, 0, 1}, {-23.0, -4.0, 0, 1}, {-22.0, -4.0, 0, 1}, {-21.0, -4.0, 0, 1}, {-20.0, -4.0, 0, 1}, + {-19.0, -4.0, 0, 1}, {-18.0, -4.0, 0, 1}, {-17.0, -4.0, 0, 1}, {-16.0, -4.0, 0, 1}, {-10.0, -4.0, 0, 1}, {-9.0, -4.0, 0, 1}, + {-8.0, -4.0, 0, 1}, {-7.0, -4.0, 0, 1}, {-6.0, -4.0, 0, 1}, {-5.0, -4.0, 0, 1}, {-4.0, -4.0, 0, 1}, {-3.0, -4.0, 0, 1}, + {-2.0, -4.0, 0, 1}, {-1.0, -4.0, 0, 1}, {0.0, -4.0, 0, 1}, {1.0, -4.0, 0, 1}, {2.0, -4.0, 0, 1}, {3.0, -4.0, 0, 1}, + {8.0, -4.0, 0, 1}, {9.0, -4.0, 0, 1}, {10.0, -4.0, 0, 1}, {11.0, -4.0, 0, 1}, {12.0, -4.0, 0, 1}, {13.0, -4.0, 0, 1}, + {14.0, -4.0, 0, 1}, {15.0, -4.0, 0, 1}, {16.0, -4.0, 0, 1}, {17.0, -4.0, 0, 1}, {21.0, -4.0, 0, 1}, {22.0, -4.0, 0, 1}, + {23.0, -4.0, 0, 1}, {24.0, -4.0, 0, 1}, {-27.0, -3.0, 0, 1}, {-26.0, -3.0, 0, 1}, {-23.0, -3.0, 0, 1}, {-22.0, -3.0, 0, 1}, + {-21.0, -3.0, 0, 1}, {-20.0, -3.0, 0, 1}, {-19.0, -3.0, 0, 1}, {-18.0, -3.0, 0, 1}, {-17.0, -3.0, 0, 1}, {-16.0, -3.0, 0, 1}, + {-7.0, -3.0, 0, 1}, {-6.0, -3.0, 0, 1}, {-5.0, -3.0, 0, 1}, {-4.0, -3.0, 0, 1}, {-3.0, -3.0, 0, 1}, {-2.0, -3.0, 0, 1}, + {-1.0, -3.0, 0, 1}, {0.0, -3.0, 0, 1}, {1.0, -3.0, 0, 1}, {2.0, -3.0, 0, 1}, {3.0, -3.0, 0, 1}, {4.0, -3.0, 0, 1}, + {9.0, -3.0, 0, 1}, {10.0, -3.0, 0, 1}, {11.0, -3.0, 0, 1}, {12.0, -3.0, 0, 1}, {13.0, -3.0, 0, 1}, {14.0, -3.0, 0, 1}, + {15.0, -3.0, 0, 1}, {16.0, -3.0, 0, 1}, {17.0, -3.0, 0, 1}, {21.0, -3.0, 0, 1}, {22.0, -3.0, 0, 1}, {23.0, -3.0, 0, 1}, + {24.0, -3.0, 0, 1}, {-27.0, -2.0, 0, 1}, {-26.0, -2.0, 0, 1}, {-23.0, -2.0, 0, 1}, {-22.0, -2.0, 0, 1}, {-21.0, -2.0, 0, 1}, + {-20.0, -2.0, 0, 1}, {-19.0, -2.0, 0, 1}, {-18.0, -2.0, 0, 1}, {-17.0, -2.0, 0, 1}, {-16.0, -2.0, 0, 1}, {-15.0, -2.0, 0, 1}, + {-5.0, -2.0, 0, 1}, {-4.0, -2.0, 0, 1}, {-3.0, -2.0, 0, 1}, {-2.0, -2.0, 0, 1}, {-1.0, -2.0, 0, 1}, {0.0, -2.0, 0, 1}, + {1.0, -2.0, 0, 1}, {2.0, -2.0, 0, 1}, {3.0, -2.0, 0, 1}, {4.0, -2.0, 0, 1}, {5.0, -2.0, 0, 1}, {10.0, -2.0, 0, 1}, + {11.0, -2.0, 0, 1}, {12.0, -2.0, 0, 1}, {13.0, -2.0, 0, 1}, {14.0, -2.0, 0, 1}, {15.0, -2.0, 0, 1}, {16.0, -2.0, 0, 1}, + {17.0, -2.0, 0, 1}, {18.0, -2.0, 0, 1}, {22.0, -2.0, 0, 1}, {23.0, -2.0, 0, 1}, {24.0, -2.0, 0, 1}, {-27.0, -1.0, 0, 1}, + {-26.0, -1.0, 0, 1}, {-22.0, -1.0, 0, 1}, {-21.0, -1.0, 0, 1}, {-20.0, -1.0, 0, 1}, {-19.0, -1.0, 0, 1}, {-18.0, -1.0, 0, 1}, + {-17.0, -1.0, 0, 1}, {-16.0, -1.0, 0, 1}, {-15.0, -1.0, 0, 1}, {-14.0, -1.0, 0, 1}, {-13.0, -1.0, 0, 1}, {-12.0, -1.0, 0, 1}, + {-11.0, -1.0, 0, 1}, {-4.0, -1.0, 0, 1}, {-3.0, -1.0, 0, 1}, {-2.0, -1.0, 0, 1}, {-1.0, -1.0, 0, 1}, {0.0, -1.0, 0, 1}, + {1.0, -1.0, 0, 1}, {2.0, -1.0, 0, 1}, {3.0, -1.0, 0, 1}, {4.0, -1.0, 0, 1}, {5.0, -1.0, 0, 1}, {6.0, -1.0, 0, 1}, + {10.0, -1.0, 0, 1}, {11.0, -1.0, 0, 1}, {12.0, -1.0, 0, 1}, {13.0, -1.0, 0, 1}, {14.0, -1.0, 0, 1}, {15.0, -1.0, 0, 1}, + {16.0, -1.0, 0, 1}, {17.0, -1.0, 0, 1}, {18.0, -1.0, 0, 1}, {22.0, -1.0, 0, 1}, {23.0, -1.0, 0, 1}, {24.0, -1.0, 0, 1}, + {-27.0, 0.0, 0, 1}, {-26.0, 0.0, 0, 1}, {-22.0, 0.0, 0, 1}, {-21.0, 0.0, 0, 1}, {-20.0, 0.0, 0, 1}, {-19.0, 0.0, 0, 1}, + {-18.0, 0.0, 0, 1}, {-17.0, 0.0, 0, 1}, {-16.0, 0.0, 0, 1}, {-15.0, 0.0, 0, 1}, {-14.0, 0.0, 0, 1}, {-13.0, 0.0, 0, 1}, + {-12.0, 0.0, 0, 1}, {-11.0, 0.0, 0, 1}, {-10.0, 0.0, 0, 1}, {-9.0, 0.0, 0, 1}, {-3.0, 0.0, 0, 1}, {-2.0, 0.0, 0, 1}, + {-1.0, 0.0, 0, 1}, {0.0, 0.0, 0, 1}, {1.0, 0.0, 0, 1}, {2.0, 0.0, 0, 1}, {3.0, 0.0, 0, 1}, {4.0, 0.0, 0, 1}, + {5.0, 0.0, 0, 1}, {6.0, 0.0, 0, 1}, {7.0, 0.0, 0, 1}, {11.0, 0.0, 0, 1}, {12.0, 0.0, 0, 1}, {13.0, 0.0, 0, 1}, + {14.0, 0.0, 0, 1}, {15.0, 0.0, 0, 1}, {16.0, 0.0, 0, 1}, {17.0, 0.0, 0, 1}, {18.0, 0.0, 0, 1}, {19.0, 0.0, 0, 1}, + {23.0, 0.0, 0, 1}, {24.0, 0.0, 0, 1}, {-27.0, 1.0, 0, 1}, {-26.0, 1.0, 0, 1}, {-22.0, 1.0, 0, 1}, {-21.0, 1.0, 0, 1}, + {-20.0, 1.0, 0, 1}, {-19.0, 1.0, 0, 1}, {-18.0, 1.0, 0, 1}, {-17.0, 1.0, 0, 1}, {-16.0, 1.0, 0, 1}, {-15.0, 1.0, 0, 1}, + {-14.0, 1.0, 0, 1}, {-13.0, 1.0, 0, 1}, {-12.0, 1.0, 0, 1}, {-11.0, 1.0, 0, 1}, {-10.0, 1.0, 0, 1}, {-9.0, 1.0, 0, 1}, + {-8.0, 1.0, 0, 1}, {-7.0, 1.0, 0, 1}, {-2.0, 1.0, 0, 1}, {-1.0, 1.0, 0, 1}, {0.0, 1.0, 0, 1}, {1.0, 1.0, 0, 1}, + {2.0, 1.0, 0, 1}, {3.0, 1.0, 0, 1}, {4.0, 1.0, 0, 1}, {5.0, 1.0, 0, 1}, {6.0, 1.0, 0, 1}, {7.0, 1.0, 0, 1}, + {12.0, 1.0, 0, 1}, {13.0, 1.0, 0, 1}, {14.0, 1.0, 0, 1}, {15.0, 1.0, 0, 1}, {16.0, 1.0, 0, 1}, {17.0, 1.0, 0, 1}, + {18.0, 1.0, 0, 1}, {19.0, 1.0, 0, 1}, {-27.0, 2.0, 0, 1}, {-26.0, 2.0, 0, 1}, {-21.0, 2.0, 0, 1}, {-20.0, 2.0, 0, 1}, + {-19.0, 2.0, 0, 1}, {-18.0, 2.0, 0, 1}, {-17.0, 2.0, 0, 1}, {-16.0, 2.0, 0, 1}, {-15.0, 2.0, 0, 1}, {-14.0, 2.0, 0, 1}, + {-13.0, 2.0, 0, 1}, {-12.0, 2.0, 0, 1}, {-11.0, 2.0, 0, 1}, {-10.0, 2.0, 0, 1}, {-9.0, 2.0, 0, 1}, {-8.0, 2.0, 0, 1}, + {-7.0, 2.0, 0, 1}, {-6.0, 2.0, 0, 1}, {-1.0, 2.0, 0, 1}, {0.0, 2.0, 0, 1}, {1.0, 2.0, 0, 1}, {2.0, 2.0, 0, 1}, + {3.0, 2.0, 0, 1}, {4.0, 2.0, 0, 1}, {5.0, 2.0, 0, 1}, {6.0, 2.0, 0, 1}, {7.0, 2.0, 0, 1}, {8.0, 2.0, 0, 1}, + {12.0, 2.0, 0, 1}, {13.0, 2.0, 0, 1}, {14.0, 2.0, 0, 1}, {15.0, 2.0, 0, 1}, {16.0, 2.0, 0, 1}, {17.0, 2.0, 0, 1}, + {18.0, 2.0, 0, 1}, {19.0, 2.0, 0, 1}, {-27.0, 3.0, 0, 1}, {-26.0, 3.0, 0, 1}, {-25.0, 3.0, 0, 1}, {-20.0, 3.0, 0, 1}, + {-19.0, 3.0, 0, 1}, {-18.0, 3.0, 0, 1}, {-17.0, 3.0, 0, 1}, {-16.0, 3.0, 0, 1}, {-15.0, 3.0, 0, 1}, {-14.0, 3.0, 0, 1}, + {-13.0, 3.0, 0, 1}, {-12.0, 3.0, 0, 1}, {-11.0, 3.0, 0, 1}, {-10.0, 3.0, 0, 1}, {-9.0, 3.0, 0, 1}, {-8.0, 3.0, 0, 1}, + {-7.0, 3.0, 0, 1}, {-6.0, 3.0, 0, 1}, {-5.0, 3.0, 0, 1}, {0.0, 3.0, 0, 1}, {1.0, 3.0, 0, 1}, {2.0, 3.0, 0, 1}, + {3.0, 3.0, 0, 1}, {4.0, 3.0, 0, 1}, {5.0, 3.0, 0, 1}, {6.0, 3.0, 0, 1}, {7.0, 3.0, 0, 1}, {8.0, 3.0, 0, 1}, + {12.0, 3.0, 0, 1}, {13.0, 3.0, 0, 1}, {14.0, 3.0, 0, 1}, {15.0, 3.0, 0, 1}, {16.0, 3.0, 0, 1}, {17.0, 3.0, 0, 1}, + {18.0, 3.0, 0, 1}, {19.0, 3.0, 0, 1}, {20.0, 3.0, 0, 1}, {-26.0, 4.0, 0, 1}, {-25.0, 4.0, 0, 1}, {-19.0, 4.0, 0, 1}, + {-18.0, 4.0, 0, 1}, {-17.0, 4.0, 0, 1}, {-16.0, 4.0, 0, 1}, {-15.0, 4.0, 0, 1}, {-14.0, 4.0, 0, 1}, {-13.0, 4.0, 0, 1}, + {-12.0, 4.0, 0, 1}, {-11.0, 4.0, 0, 1}, {-10.0, 4.0, 0, 1}, {-9.0, 4.0, 0, 1}, {-8.0, 4.0, 0, 1}, {-7.0, 4.0, 0, 1}, + {-6.0, 4.0, 0, 1}, {-5.0, 4.0, 0, 1}, {-4.0, 4.0, 0, 1}, {1.0, 4.0, 0, 1}, {2.0, 4.0, 0, 1}, {3.0, 4.0, 0, 1}, + {4.0, 4.0, 0, 1}, {5.0, 4.0, 0, 1}, {6.0, 4.0, 0, 1}, {7.0, 4.0, 0, 1}, {8.0, 4.0, 0, 1}, {9.0, 4.0, 0, 1}, + {13.0, 4.0, 0, 1}, {14.0, 4.0, 0, 1}, {15.0, 4.0, 0, 1}, {16.0, 4.0, 0, 1}, {17.0, 4.0, 0, 1}, {18.0, 4.0, 0, 1}, + {19.0, 4.0, 0, 1}, {20.0, 4.0, 0, 1}, {-26.0, 5.0, 0, 1}, {-25.0, 5.0, 0, 1}, {-17.0, 5.0, 0, 1}, {-16.0, 5.0, 0, 1}, + {-15.0, 5.0, 0, 1}, {-14.0, 5.0, 0, 1}, {-13.0, 5.0, 0, 1}, {-12.0, 5.0, 0, 1}, {-11.0, 5.0, 0, 1}, {-10.0, 5.0, 0, 1}, + {-9.0, 5.0, 0, 1}, {-8.0, 5.0, 0, 1}, {-7.0, 5.0, 0, 1}, {-6.0, 5.0, 0, 1}, {-5.0, 5.0, 0, 1}, {-4.0, 5.0, 0, 1}, + {-3.0, 5.0, 0, 1}, {2.0, 5.0, 0, 1}, {3.0, 5.0, 0, 1}, {4.0, 5.0, 0, 1}, {5.0, 5.0, 0, 1}, {6.0, 5.0, 0, 1}, + {7.0, 5.0, 0, 1}, {8.0, 5.0, 0, 1}, {9.0, 5.0, 0, 1}, {13.0, 5.0, 0, 1}, {14.0, 5.0, 0, 1}, {15.0, 5.0, 0, 1}, + {16.0, 5.0, 0, 1}, {17.0, 5.0, 0, 1}, {18.0, 5.0, 0, 1}, {19.0, 5.0, 0, 1}, {20.0, 5.0, 0, 1}, {-26.0, 6.0, 0, 1}, + {-25.0, 6.0, 0, 1}, {-14.0, 6.0, 0, 1}, {-13.0, 6.0, 0, 1}, {-12.0, 6.0, 0, 1}, {-11.0, 6.0, 0, 1}, {-10.0, 6.0, 0, 1}, + {-9.0, 6.0, 0, 1}, {-8.0, 6.0, 0, 1}, {-7.0, 6.0, 0, 1}, {-6.0, 6.0, 0, 1}, {-5.0, 6.0, 0, 1}, {-4.0, 6.0, 0, 1}, + {-3.0, 6.0, 0, 1}, {-2.0, 6.0, 0, 1}, {2.0, 6.0, 0, 1}, {3.0, 6.0, 0, 1}, {4.0, 6.0, 0, 1}, {5.0, 6.0, 0, 1}, + {6.0, 6.0, 0, 1}, {7.0, 6.0, 0, 1}, {8.0, 6.0, 0, 1}, {9.0, 6.0, 0, 1}, {13.0, 6.0, 0, 1}, {14.0, 6.0, 0, 1}, + {15.0, 6.0, 0, 1}, {16.0, 6.0, 0, 1}, {17.0, 6.0, 0, 1}, {18.0, 6.0, 0, 1}, {19.0, 6.0, 0, 1}, {20.0, 6.0, 0, 1}, + {-25.0, 7.0, 0, 1}, {-24.0, 7.0, 0, 1}, {-11.0, 7.0, 0, 1}, {-10.0, 7.0, 0, 1}, {-9.0, 7.0, 0, 1}, {-8.0, 7.0, 0, 1}, + {-7.0, 7.0, 0, 1}, {-6.0, 7.0, 0, 1}, {-5.0, 7.0, 0, 1}, {-4.0, 7.0, 0, 1}, {-3.0, 7.0, 0, 1}, {-2.0, 7.0, 0, 1}, + {3.0, 7.0, 0, 1}, {4.0, 7.0, 0, 1}, {5.0, 7.0, 0, 1}, {6.0, 7.0, 0, 1}, {7.0, 7.0, 0, 1}, {8.0, 7.0, 0, 1}, + {9.0, 7.0, 0, 1}, {10.0, 7.0, 0, 1}, {14.0, 7.0, 0, 1}, {15.0, 7.0, 0, 1}, {16.0, 7.0, 0, 1}, {17.0, 7.0, 0, 1}, + {18.0, 7.0, 0, 1}, {19.0, 7.0, 0, 1}, {20.0, 7.0, 0, 1}, {21.0, 7.0, 0, 1}, {-25.0, 8.0, 0, 1}, {-24.0, 8.0, 0, 1}, + {-10.0, 8.0, 0, 1}, {-9.0, 8.0, 0, 1}, {-8.0, 8.0, 0, 1}, {-7.0, 8.0, 0, 1}, {-6.0, 8.0, 0, 1}, {-5.0, 8.0, 0, 1}, + {-4.0, 8.0, 0, 1}, {-3.0, 8.0, 0, 1}, {-2.0, 8.0, 0, 1}, {-1.0, 8.0, 0, 1}, {3.0, 8.0, 0, 1}, {4.0, 8.0, 0, 1}, + {5.0, 8.0, 0, 1}, {6.0, 8.0, 0, 1}, {7.0, 8.0, 0, 1}, {8.0, 8.0, 0, 1}, {9.0, 8.0, 0, 1}, {10.0, 8.0, 0, 1}, + {14.0, 8.0, 0, 1}, {15.0, 8.0, 0, 1}, {16.0, 8.0, 0, 1}, {17.0, 8.0, 0, 1}, {18.0, 8.0, 0, 1}, {19.0, 8.0, 0, 1}, + {20.0, 8.0, 0, 1}, {21.0, 8.0, 0, 1}, {-25.0, 9.0, 0, 1}, {-24.0, 9.0, 0, 1}, {-23.0, 9.0, 0, 1}, {-9.0, 9.0, 0, 1}, + {-8.0, 9.0, 0, 1}, {-7.0, 9.0, 0, 1}, {-6.0, 9.0, 0, 1}, {-5.0, 9.0, 0, 1}, {-4.0, 9.0, 0, 1}, {-3.0, 9.0, 0, 1}, + {-2.0, 9.0, 0, 1}, {-1.0, 9.0, 0, 1}, {3.0, 9.0, 0, 1}, {4.0, 9.0, 0, 1}, {5.0, 9.0, 0, 1}, {6.0, 9.0, 0, 1}, + {7.0, 9.0, 0, 1}, {8.0, 9.0, 0, 1}, {9.0, 9.0, 0, 1}, {10.0, 9.0, 0, 1}, {14.0, 9.0, 0, 1}, {15.0, 9.0, 0, 1}, + {16.0, 9.0, 0, 1}, {17.0, 9.0, 0, 1}, {18.0, 9.0, 0, 1}, {19.0, 9.0, 0, 1}, {20.0, 9.0, 0, 1}, {21.0, 9.0, 0, 1}, + {-24.0, 10.0, 0, 1}, {-23.0, 10.0, 0, 1}, {-15.0, 10.0, 0, 1}, {-14.0, 10.0, 0, 1}, {-13.0, 10.0, 0, 1}, {-12.0, 10.0, 0, 1}, + {-8.0, 10.0, 0, 1}, {-7.0, 10.0, 0, 1}, {-6.0, 10.0, 0, 1}, {-5.0, 10.0, 0, 1}, {-4.0, 10.0, 0, 1}, {-3.0, 10.0, 0, 1}, + {-2.0, 10.0, 0, 1}, {-1.0, 10.0, 0, 1}, {4.0, 10.0, 0, 1}, {5.0, 10.0, 0, 1}, {6.0, 10.0, 0, 1}, {7.0, 10.0, 0, 1}, + {8.0, 10.0, 0, 1}, {9.0, 10.0, 0, 1}, {10.0, 10.0, 0, 1}, {14.0, 10.0, 0, 1}, {15.0, 10.0, 0, 1}, {16.0, 10.0, 0, 1}, + {17.0, 10.0, 0, 1}, {18.0, 10.0, 0, 1}, {19.0, 10.0, 0, 1}, {20.0, 10.0, 0, 1}, {21.0, 10.0, 0, 1}, {-24.0, 11.0, 0, 1}, + {-23.0, 11.0, 0, 1}, {-22.0, 11.0, 0, 1}, {-16.0, 11.0, 0, 1}, {-15.0, 11.0, 0, 1}, {-14.0, 11.0, 0, 1}, {-13.0, 11.0, 0, 1}, + {-12.0, 11.0, 0, 1}, {-11.0, 11.0, 0, 1}, {-7.0, 11.0, 0, 1}, {-6.0, 11.0, 0, 1}, {-5.0, 11.0, 0, 1}, {-4.0, 11.0, 0, 1}, + {-3.0, 11.0, 0, 1}, {-2.0, 11.0, 0, 1}, {-1.0, 11.0, 0, 1}, {0.0, 11.0, 0, 1}, {4.0, 11.0, 0, 1}, {5.0, 11.0, 0, 1}, + {6.0, 11.0, 0, 1}, {7.0, 11.0, 0, 1}, {8.0, 11.0, 0, 1}, {9.0, 11.0, 0, 1}, {10.0, 11.0, 0, 1}, {11.0, 11.0, 0, 1}, + {15.0, 11.0, 0, 1}, {16.0, 11.0, 0, 1}, {17.0, 11.0, 0, 1}, {18.0, 11.0, 0, 1}, {19.0, 11.0, 0, 1}, {20.0, 11.0, 0, 1}, + {-23.0, 12.0, 0, 1}, {-22.0, 12.0, 0, 1}, {-17.0, 12.0, 0, 1}, {-16.0, 12.0, 0, 1}, {-15.0, 12.0, 0, 1}, {-14.0, 12.0, 0, 1}, + {-13.0, 12.0, 0, 1}, {-12.0, 12.0, 0, 1}, {-11.0, 12.0, 0, 1}, {-7.0, 12.0, 0, 1}, {-6.0, 12.0, 0, 1}, {-5.0, 12.0, 0, 1}, + {-4.0, 12.0, 0, 1}, {-3.0, 12.0, 0, 1}, {-2.0, 12.0, 0, 1}, {-1.0, 12.0, 0, 1}, {0.0, 12.0, 0, 1}, {4.0, 12.0, 0, 1}, + {5.0, 12.0, 0, 1}, {6.0, 12.0, 0, 1}, {7.0, 12.0, 0, 1}, {8.0, 12.0, 0, 1}, {9.0, 12.0, 0, 1}, {10.0, 12.0, 0, 1}, + {11.0, 12.0, 0, 1}, {15.0, 12.0, 0, 1}, {16.0, 12.0, 0, 1}, {17.0, 12.0, 0, 1}, {18.0, 12.0, 0, 1}, {19.0, 12.0, 0, 1}, + {-23.0, 13.0, 0, 1}, {-22.0, 13.0, 0, 1}, {-21.0, 13.0, 0, 1}, {-17.0, 13.0, 0, 1}, {-16.0, 13.0, 0, 1}, {-15.0, 13.0, 0, 1}, + {-14.0, 13.0, 0, 1}, {-13.0, 13.0, 0, 1}, {-12.0, 13.0, 0, 1}, {-11.0, 13.0, 0, 1}, {-7.0, 13.0, 0, 1}, {-6.0, 13.0, 0, 1}, + {-5.0, 13.0, 0, 1}, {-4.0, 13.0, 0, 1}, {-3.0, 13.0, 0, 1}, {-2.0, 13.0, 0, 1}, {-1.0, 13.0, 0, 1}, {0.0, 13.0, 0, 1}, + {4.0, 13.0, 0, 1}, {5.0, 13.0, 0, 1}, {6.0, 13.0, 0, 1}, {7.0, 13.0, 0, 1}, {8.0, 13.0, 0, 1}, {9.0, 13.0, 0, 1}, + {10.0, 13.0, 0, 1}, {11.0, 13.0, 0, 1}, {15.0, 13.0, 0, 1}, {16.0, 13.0, 0, 1}, {17.0, 13.0, 0, 1}, {18.0, 13.0, 0, 1}, + {19.0, 13.0, 0, 1}, {-22.0, 14.0, 0, 1}, {-21.0, 14.0, 0, 1}, {-20.0, 14.0, 0, 1}, {-17.0, 14.0, 0, 1}, {-16.0, 14.0, 0, 1}, + {-15.0, 14.0, 0, 1}, {-14.0, 14.0, 0, 1}, {-13.0, 14.0, 0, 1}, {-12.0, 14.0, 0, 1}, {-11.0, 14.0, 0, 1}, {-7.0, 14.0, 0, 1}, + {-6.0, 14.0, 0, 1}, {-5.0, 14.0, 0, 1}, {-4.0, 14.0, 0, 1}, {-3.0, 14.0, 0, 1}, {-2.0, 14.0, 0, 1}, {-1.0, 14.0, 0, 1}, + {0.0, 14.0, 0, 1}, {4.0, 14.0, 0, 1}, {5.0, 14.0, 0, 1}, {6.0, 14.0, 0, 1}, {7.0, 14.0, 0, 1}, {8.0, 14.0, 0, 1}, + {9.0, 14.0, 0, 1}, {10.0, 14.0, 0, 1}, {11.0, 14.0, 0, 1}, {15.0, 14.0, 0, 1}, {16.0, 14.0, 0, 1}, {17.0, 14.0, 0, 1}, + {18.0, 14.0, 0, 1}, {-21.0, 15.0, 0, 1}, {-20.0, 15.0, 0, 1}, {-17.0, 15.0, 0, 1}, {-16.0, 15.0, 0, 1}, {-15.0, 15.0, 0, 1}, + {-14.0, 15.0, 0, 1}, {-13.0, 15.0, 0, 1}, {-12.0, 15.0, 0, 1}, {-11.0, 15.0, 0, 1}, {-7.0, 15.0, 0, 1}, {-6.0, 15.0, 0, 1}, + {-5.0, 15.0, 0, 1}, {-4.0, 15.0, 0, 1}, {-3.0, 15.0, 0, 1}, {-2.0, 15.0, 0, 1}, {-1.0, 15.0, 0, 1}, {0.0, 15.0, 0, 1}, + {4.0, 15.0, 0, 1}, {5.0, 15.0, 0, 1}, {6.0, 15.0, 0, 1}, {7.0, 15.0, 0, 1}, {8.0, 15.0, 0, 1}, {9.0, 15.0, 0, 1}, + {10.0, 15.0, 0, 1}, {11.0, 15.0, 0, 1}, {-21.0, 16.0, 0, 1}, {-20.0, 16.0, 0, 1}, {-19.0, 16.0, 0, 1}, {-16.0, 16.0, 0, 1}, + {-15.0, 16.0, 0, 1}, {-14.0, 16.0, 0, 1}, {-13.0, 16.0, 0, 1}, {-12.0, 16.0, 0, 1}, {-7.0, 16.0, 0, 1}, {-6.0, 16.0, 0, 1}, + {-5.0, 16.0, 0, 1}, {-4.0, 16.0, 0, 1}, {-3.0, 16.0, 0, 1}, {-2.0, 16.0, 0, 1}, {-1.0, 16.0, 0, 1}, {0.0, 16.0, 0, 1}, + {4.0, 16.0, 0, 1}, {5.0, 16.0, 0, 1}, {6.0, 16.0, 0, 1}, {7.0, 16.0, 0, 1}, {8.0, 16.0, 0, 1}, {9.0, 16.0, 0, 1}, + {10.0, 16.0, 0, 1}, {11.0, 16.0, 0, 1}, {-20.0, 17.0, 0, 1}, {-19.0, 17.0, 0, 1}, {-18.0, 17.0, 0, 1}, {-7.0, 17.0, 0, 1}, + {-6.0, 17.0, 0, 1}, {-5.0, 17.0, 0, 1}, {-4.0, 17.0, 0, 1}, {-3.0, 17.0, 0, 1}, {-2.0, 17.0, 0, 1}, {-1.0, 17.0, 0, 1}, + {0.0, 17.0, 0, 1}, {4.0, 17.0, 0, 1}, {5.0, 17.0, 0, 1}, {6.0, 17.0, 0, 1}, {7.0, 17.0, 0, 1}, {8.0, 17.0, 0, 1}, + {9.0, 17.0, 0, 1}, {10.0, 17.0, 0, 1}, {11.0, 17.0, 0, 1}, {19.0, 17.0, 0, 1}, {-19.0, 18.0, 0, 1}, {-18.0, 18.0, 0, 1}, + {-17.0, 18.0, 0, 1}, {-7.0, 18.0, 0, 1}, {-6.0, 18.0, 0, 1}, {-5.0, 18.0, 0, 1}, {-4.0, 18.0, 0, 1}, {-3.0, 18.0, 0, 1}, + {-2.0, 18.0, 0, 1}, {-1.0, 18.0, 0, 1}, {0.0, 18.0, 0, 1}, {4.0, 18.0, 0, 1}, {5.0, 18.0, 0, 1}, {6.0, 18.0, 0, 1}, + {7.0, 18.0, 0, 1}, {8.0, 18.0, 0, 1}, {9.0, 18.0, 0, 1}, {10.0, 18.0, 0, 1}, {11.0, 18.0, 0, 1}, {18.0, 18.0, 0, 1}, + {19.0, 18.0, 0, 1}, {20.0, 18.0, 0, 1}, {-18.0, 19.0, 0, 1}, {-17.0, 19.0, 0, 1}, {-16.0, 19.0, 0, 1}, {-15.0, 19.0, 0, 1}, + {-8.0, 19.0, 0, 1}, {-7.0, 19.0, 0, 1}, {-6.0, 19.0, 0, 1}, {-5.0, 19.0, 0, 1}, {-4.0, 19.0, 0, 1}, {-3.0, 19.0, 0, 1}, + {-2.0, 19.0, 0, 1}, {-1.0, 19.0, 0, 1}, {4.0, 19.0, 0, 1}, {5.0, 19.0, 0, 1}, {6.0, 19.0, 0, 1}, {7.0, 19.0, 0, 1}, + {8.0, 19.0, 0, 1}, {9.0, 19.0, 0, 1}, {10.0, 19.0, 0, 1}, {17.0, 19.0, 0, 1}, {18.0, 19.0, 0, 1}, {19.0, 19.0, 0, 1}, + {-17.0, 20.0, 0, 1}, {-16.0, 20.0, 0, 1}, {-15.0, 20.0, 0, 1}, {-14.0, 20.0, 0, 1}, {-7.0, 20.0, 0, 1}, {-6.0, 20.0, 0, 1}, + {-5.0, 20.0, 0, 1}, {-4.0, 20.0, 0, 1}, {-3.0, 20.0, 0, 1}, {-2.0, 20.0, 0, 1}, {-1.0, 20.0, 0, 1}, {4.0, 20.0, 0, 1}, + {5.0, 20.0, 0, 1}, {6.0, 20.0, 0, 1}, {7.0, 20.0, 0, 1}, {8.0, 20.0, 0, 1}, {9.0, 20.0, 0, 1}, {16.0, 20.0, 0, 1}, + {17.0, 20.0, 0, 1}, {18.0, 20.0, 0, 1}, {-15.0, 21.0, 0, 1}, {-14.0, 21.0, 0, 1}, {-13.0, 21.0, 0, 1}, {-12.0, 21.0, 0, 1}, + {-5.0, 21.0, 0, 1}, {-4.0, 21.0, 0, 1}, {-3.0, 21.0, 0, 1}, {-2.0, 21.0, 0, 1}, {-1.0, 21.0, 0, 1}, {14.0, 21.0, 0, 1}, + {15.0, 21.0, 0, 1}, {16.0, 21.0, 0, 1}, {17.0, 21.0, 0, 1}, {-14.0, 22.0, 0, 1}, {-13.0, 22.0, 0, 1}, {-12.0, 22.0, 0, 1}, + {-11.0, 22.0, 0, 1}, {-10.0, 22.0, 0, 1}, {12.0, 22.0, 0, 1}, {13.0, 22.0, 0, 1}, {14.0, 22.0, 0, 1}, {15.0, 22.0, 0, 1}, + {-12.0, 23.0, 0, 1}, {-11.0, 23.0, 0, 1}, {-10.0, 23.0, 0, 1}, {-9.0, 23.0, 0, 1}, {-8.0, 23.0, 0, 1}, {9.0, 23.0, 0, 1}, + {10.0, 23.0, 0, 1}, {11.0, 23.0, 0, 1}, {12.0, 23.0, 0, 1}, {13.0, 23.0, 0, 1}, {14.0, 23.0, 0, 1}, {-10.0, 24.0, 0, 1}, + {-9.0, 24.0, 0, 1}, {-8.0, 24.0, 0, 1}, {-7.0, 24.0, 0, 1}, {-6.0, 24.0, 0, 1}, {-5.0, 24.0, 0, 1}, {-4.0, 24.0, 0, 1}, + {-3.0, 24.0, 0, 1}, {5.0, 24.0, 0, 1}, {6.0, 24.0, 0, 1}, {7.0, 24.0, 0, 1}, {8.0, 24.0, 0, 1}, {9.0, 24.0, 0, 1}, + {10.0, 24.0, 0, 1}, {11.0, 24.0, 0, 1}, {12.0, 24.0, 0, 1}, {-7.0, 25.0, 0, 1}, {-6.0, 25.0, 0, 1}, {-5.0, 25.0, 0, 1}, + {-4.0, 25.0, 0, 1}, {-3.0, 25.0, 0, 1}, {-2.0, 25.0, 0, 1}, {-1.0, 25.0, 0, 1}, {0.0, 25.0, 0, 1}, {1.0, 25.0, 0, 1}, + {2.0, 25.0, 0, 1}, {3.0, 25.0, 0, 1}, {4.0, 25.0, 0, 1}, {5.0, 25.0, 0, 1}, {6.0, 25.0, 0, 1}, {7.0, 25.0, 0, 1}, + {8.0, 25.0, 0, 1}, {9.0, 25.0, 0, 1}, {-3.0, 26.0, 0, 1}, {-2.0, 26.0, 0, 1}, {-1.0, 26.0, 0, 1}, {0.0, 26.0, 0, 1}, + {1.0, 26.0, 0, 1}, {2.0, 26.0, 0, 1}, {3.0, 26.0, 0, 1}, {4.0, 26.0, 0, 1}, {5.0, 26.0, 0, 1} +}; + +#endif // CONFIG_3D_OBJECT_ESP_LOGO diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.h new file mode 100644 index 0000000..87a43b0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_logo.h @@ -0,0 +1,21 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t image_bmp_array_esp_logo[512]; +extern const float image_3d_matrix_esp_logo[1427][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.c new file mode 100644 index 0000000..6cacfea --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.c @@ -0,0 +1,252 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "esp_text.h" + +const uint8_t image_bmp_array_esp_text[384] = { + + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3f, 0xf8, 0x7f, 0xf1, 0xff, 0xe1, 0xff, 0xe0, 0x7f, 0xe0, 0xff, 0xc1, 0xff, 0xc7, 0x07, 0xfe, + 0x7f, 0xf8, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xe1, 0xff, 0xc3, 0xff, 0xc7, 0x0f, 0xfe, + 0x7f, 0xf8, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xe3, 0xff, 0xc3, 0xff, 0xc7, 0x1f, 0xfe, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x79, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1e, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x70, 0x00, 0xe0, 0x01, 0xe0, 0x39, 0xe0, 0x71, 0xc0, 0x03, 0x80, 0x07, 0x80, 0x07, 0x1c, 0x00, + 0x7f, 0xf0, 0xff, 0xe1, 0xe0, 0x79, 0xe0, 0x71, 0xff, 0xc3, 0xff, 0x83, 0xff, 0x87, 0x1f, 0xfc, + 0x7f, 0xf0, 0xff, 0xf1, 0xff, 0xf9, 0xff, 0xf1, 0xff, 0xc3, 0xff, 0xc3, 0xff, 0xc7, 0x1f, 0xfc, + 0x7f, 0xf0, 0x7f, 0xf1, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xc1, 0xff, 0xe1, 0xff, 0xc7, 0x1f, 0xfc, + 0x70, 0x00, 0x00, 0x79, 0xff, 0xf1, 0xff, 0xe1, 0xc0, 0x00, 0x01, 0xe0, 0x03, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xff, 0xc1, 0xe1, 0xe1, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0xe1, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x70, 0x00, 0x00, 0x79, 0xe0, 0x01, 0xe0, 0x71, 0xc0, 0x00, 0x00, 0xe0, 0x01, 0xc7, 0x1c, 0x00, + 0x7f, 0xf8, 0xff, 0xf1, 0xe0, 0x01, 0xe0, 0x79, 0xff, 0xe3, 0xff, 0xe7, 0xff, 0xc7, 0x1c, 0x00, + 0x7f, 0xf8, 0xff, 0xf1, 0xe0, 0x01, 0xe0, 0x38, 0xff, 0xe3, 0xff, 0xc7, 0xff, 0xc7, 0x1c, 0x00, + 0x3f, 0xf8, 0xff, 0xe1, 0xe0, 0x01, 0xe0, 0x38, 0xff, 0xe3, 0xff, 0x87, 0xff, 0x87, 0x1c, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + +}; + +const float image_3d_array_esp_text[1271][4] = { + + {-62.0, -11.0, 0, 1}, {-61.0, -11.0, 0, 1}, {-60.0, -11.0, 0, 1}, {-59.0, -11.0, 0, 1}, {-58.0, -11.0, 0, 1}, {-57.0, -11.0, 0, 1}, + {-56.0, -11.0, 0, 1}, {-55.0, -11.0, 0, 1}, {-54.0, -11.0, 0, 1}, {-53.0, -11.0, 0, 1}, {-52.0, -11.0, 0, 1}, {-47.0, -11.0, 0, 1}, + {-46.0, -11.0, 0, 1}, {-45.0, -11.0, 0, 1}, {-44.0, -11.0, 0, 1}, {-43.0, -11.0, 0, 1}, {-42.0, -11.0, 0, 1}, {-41.0, -11.0, 0, 1}, + {-40.0, -11.0, 0, 1}, {-39.0, -11.0, 0, 1}, {-38.0, -11.0, 0, 1}, {-37.0, -11.0, 0, 1}, {-33.0, -11.0, 0, 1}, {-32.0, -11.0, 0, 1}, + {-31.0, -11.0, 0, 1}, {-30.0, -11.0, 0, 1}, {-29.0, -11.0, 0, 1}, {-28.0, -11.0, 0, 1}, {-27.0, -11.0, 0, 1}, {-26.0, -11.0, 0, 1}, + {-25.0, -11.0, 0, 1}, {-24.0, -11.0, 0, 1}, {-23.0, -11.0, 0, 1}, {-22.0, -11.0, 0, 1}, {-17.0, -11.0, 0, 1}, {-16.0, -11.0, 0, 1}, + {-15.0, -11.0, 0, 1}, {-14.0, -11.0, 0, 1}, {-13.0, -11.0, 0, 1}, {-12.0, -11.0, 0, 1}, {-11.0, -11.0, 0, 1}, {-10.0, -11.0, 0, 1}, + {-9.0, -11.0, 0, 1}, {-8.0, -11.0, 0, 1}, {-7.0, -11.0, 0, 1}, {-6.0, -11.0, 0, 1}, {1.0, -11.0, 0, 1}, {2.0, -11.0, 0, 1}, + {3.0, -11.0, 0, 1}, {4.0, -11.0, 0, 1}, {5.0, -11.0, 0, 1}, {6.0, -11.0, 0, 1}, {7.0, -11.0, 0, 1}, {8.0, -11.0, 0, 1}, + {9.0, -11.0, 0, 1}, {10.0, -11.0, 0, 1}, {16.0, -11.0, 0, 1}, {17.0, -11.0, 0, 1}, {18.0, -11.0, 0, 1}, {19.0, -11.0, 0, 1}, + {20.0, -11.0, 0, 1}, {21.0, -11.0, 0, 1}, {22.0, -11.0, 0, 1}, {23.0, -11.0, 0, 1}, {24.0, -11.0, 0, 1}, {25.0, -11.0, 0, 1}, + {31.0, -11.0, 0, 1}, {32.0, -11.0, 0, 1}, {33.0, -11.0, 0, 1}, {34.0, -11.0, 0, 1}, {35.0, -11.0, 0, 1}, {36.0, -11.0, 0, 1}, + {37.0, -11.0, 0, 1}, {38.0, -11.0, 0, 1}, {39.0, -11.0, 0, 1}, {40.0, -11.0, 0, 1}, {41.0, -11.0, 0, 1}, {45.0, -11.0, 0, 1}, + {46.0, -11.0, 0, 1}, {47.0, -11.0, 0, 1}, {53.0, -11.0, 0, 1}, {54.0, -11.0, 0, 1}, {55.0, -11.0, 0, 1}, {56.0, -11.0, 0, 1}, + {57.0, -11.0, 0, 1}, {58.0, -11.0, 0, 1}, {59.0, -11.0, 0, 1}, {60.0, -11.0, 0, 1}, {61.0, -11.0, 0, 1}, {62.0, -11.0, 0, 1}, + {-63.0, -10.0, 0, 1}, {-62.0, -10.0, 0, 1}, {-61.0, -10.0, 0, 1}, {-60.0, -10.0, 0, 1}, {-59.0, -10.0, 0, 1}, {-58.0, -10.0, 0, 1}, + {-57.0, -10.0, 0, 1}, {-56.0, -10.0, 0, 1}, {-55.0, -10.0, 0, 1}, {-54.0, -10.0, 0, 1}, {-53.0, -10.0, 0, 1}, {-52.0, -10.0, 0, 1}, + {-48.0, -10.0, 0, 1}, {-47.0, -10.0, 0, 1}, {-46.0, -10.0, 0, 1}, {-45.0, -10.0, 0, 1}, {-44.0, -10.0, 0, 1}, {-43.0, -10.0, 0, 1}, + {-42.0, -10.0, 0, 1}, {-41.0, -10.0, 0, 1}, {-40.0, -10.0, 0, 1}, {-39.0, -10.0, 0, 1}, {-38.0, -10.0, 0, 1}, {-37.0, -10.0, 0, 1}, + {-33.0, -10.0, 0, 1}, {-32.0, -10.0, 0, 1}, {-31.0, -10.0, 0, 1}, {-30.0, -10.0, 0, 1}, {-29.0, -10.0, 0, 1}, {-28.0, -10.0, 0, 1}, + {-27.0, -10.0, 0, 1}, {-26.0, -10.0, 0, 1}, {-25.0, -10.0, 0, 1}, {-24.0, -10.0, 0, 1}, {-23.0, -10.0, 0, 1}, {-22.0, -10.0, 0, 1}, + {-21.0, -10.0, 0, 1}, {-17.0, -10.0, 0, 1}, {-16.0, -10.0, 0, 1}, {-15.0, -10.0, 0, 1}, {-14.0, -10.0, 0, 1}, {-13.0, -10.0, 0, 1}, + {-12.0, -10.0, 0, 1}, {-11.0, -10.0, 0, 1}, {-10.0, -10.0, 0, 1}, {-9.0, -10.0, 0, 1}, {-8.0, -10.0, 0, 1}, {-7.0, -10.0, 0, 1}, + {-6.0, -10.0, 0, 1}, {-5.0, -10.0, 0, 1}, {0.0, -10.0, 0, 1}, {1.0, -10.0, 0, 1}, {2.0, -10.0, 0, 1}, {3.0, -10.0, 0, 1}, + {4.0, -10.0, 0, 1}, {5.0, -10.0, 0, 1}, {6.0, -10.0, 0, 1}, {7.0, -10.0, 0, 1}, {8.0, -10.0, 0, 1}, {9.0, -10.0, 0, 1}, + {10.0, -10.0, 0, 1}, {15.0, -10.0, 0, 1}, {16.0, -10.0, 0, 1}, {17.0, -10.0, 0, 1}, {18.0, -10.0, 0, 1}, {19.0, -10.0, 0, 1}, + {20.0, -10.0, 0, 1}, {21.0, -10.0, 0, 1}, {22.0, -10.0, 0, 1}, {23.0, -10.0, 0, 1}, {24.0, -10.0, 0, 1}, {25.0, -10.0, 0, 1}, + {30.0, -10.0, 0, 1}, {31.0, -10.0, 0, 1}, {32.0, -10.0, 0, 1}, {33.0, -10.0, 0, 1}, {34.0, -10.0, 0, 1}, {35.0, -10.0, 0, 1}, + {36.0, -10.0, 0, 1}, {37.0, -10.0, 0, 1}, {38.0, -10.0, 0, 1}, {39.0, -10.0, 0, 1}, {40.0, -10.0, 0, 1}, {41.0, -10.0, 0, 1}, + {45.0, -10.0, 0, 1}, {46.0, -10.0, 0, 1}, {47.0, -10.0, 0, 1}, {52.0, -10.0, 0, 1}, {53.0, -10.0, 0, 1}, {54.0, -10.0, 0, 1}, + {55.0, -10.0, 0, 1}, {56.0, -10.0, 0, 1}, {57.0, -10.0, 0, 1}, {58.0, -10.0, 0, 1}, {59.0, -10.0, 0, 1}, {60.0, -10.0, 0, 1}, + {61.0, -10.0, 0, 1}, {62.0, -10.0, 0, 1}, {-63.0, -9.0, 0, 1}, {-62.0, -9.0, 0, 1}, {-61.0, -9.0, 0, 1}, {-60.0, -9.0, 0, 1}, + {-59.0, -9.0, 0, 1}, {-58.0, -9.0, 0, 1}, {-57.0, -9.0, 0, 1}, {-56.0, -9.0, 0, 1}, {-55.0, -9.0, 0, 1}, {-54.0, -9.0, 0, 1}, + {-53.0, -9.0, 0, 1}, {-52.0, -9.0, 0, 1}, {-48.0, -9.0, 0, 1}, {-47.0, -9.0, 0, 1}, {-46.0, -9.0, 0, 1}, {-45.0, -9.0, 0, 1}, + {-44.0, -9.0, 0, 1}, {-43.0, -9.0, 0, 1}, {-42.0, -9.0, 0, 1}, {-41.0, -9.0, 0, 1}, {-40.0, -9.0, 0, 1}, {-39.0, -9.0, 0, 1}, + {-38.0, -9.0, 0, 1}, {-37.0, -9.0, 0, 1}, {-33.0, -9.0, 0, 1}, {-32.0, -9.0, 0, 1}, {-31.0, -9.0, 0, 1}, {-30.0, -9.0, 0, 1}, + {-29.0, -9.0, 0, 1}, {-28.0, -9.0, 0, 1}, {-27.0, -9.0, 0, 1}, {-26.0, -9.0, 0, 1}, {-25.0, -9.0, 0, 1}, {-24.0, -9.0, 0, 1}, + {-23.0, -9.0, 0, 1}, {-22.0, -9.0, 0, 1}, {-21.0, -9.0, 0, 1}, {-17.0, -9.0, 0, 1}, {-16.0, -9.0, 0, 1}, {-15.0, -9.0, 0, 1}, + {-14.0, -9.0, 0, 1}, {-13.0, -9.0, 0, 1}, {-12.0, -9.0, 0, 1}, {-11.0, -9.0, 0, 1}, {-10.0, -9.0, 0, 1}, {-9.0, -9.0, 0, 1}, + {-8.0, -9.0, 0, 1}, {-7.0, -9.0, 0, 1}, {-6.0, -9.0, 0, 1}, {-5.0, -9.0, 0, 1}, {-1.0, -9.0, 0, 1}, {0.0, -9.0, 0, 1}, + {1.0, -9.0, 0, 1}, {2.0, -9.0, 0, 1}, {3.0, -9.0, 0, 1}, {4.0, -9.0, 0, 1}, {5.0, -9.0, 0, 1}, {6.0, -9.0, 0, 1}, + {7.0, -9.0, 0, 1}, {8.0, -9.0, 0, 1}, {9.0, -9.0, 0, 1}, {10.0, -9.0, 0, 1}, {14.0, -9.0, 0, 1}, {15.0, -9.0, 0, 1}, + {16.0, -9.0, 0, 1}, {17.0, -9.0, 0, 1}, {18.0, -9.0, 0, 1}, {19.0, -9.0, 0, 1}, {20.0, -9.0, 0, 1}, {21.0, -9.0, 0, 1}, + {22.0, -9.0, 0, 1}, {23.0, -9.0, 0, 1}, {24.0, -9.0, 0, 1}, {25.0, -9.0, 0, 1}, {30.0, -9.0, 0, 1}, {31.0, -9.0, 0, 1}, + {32.0, -9.0, 0, 1}, {33.0, -9.0, 0, 1}, {34.0, -9.0, 0, 1}, {35.0, -9.0, 0, 1}, {36.0, -9.0, 0, 1}, {37.0, -9.0, 0, 1}, + {38.0, -9.0, 0, 1}, {39.0, -9.0, 0, 1}, {40.0, -9.0, 0, 1}, {41.0, -9.0, 0, 1}, {45.0, -9.0, 0, 1}, {46.0, -9.0, 0, 1}, + {47.0, -9.0, 0, 1}, {51.0, -9.0, 0, 1}, {52.0, -9.0, 0, 1}, {53.0, -9.0, 0, 1}, {54.0, -9.0, 0, 1}, {55.0, -9.0, 0, 1}, + {56.0, -9.0, 0, 1}, {57.0, -9.0, 0, 1}, {58.0, -9.0, 0, 1}, {59.0, -9.0, 0, 1}, {60.0, -9.0, 0, 1}, {61.0, -9.0, 0, 1}, + {62.0, -9.0, 0, 1}, {-63.0, -8.0, 0, 1}, {-62.0, -8.0, 0, 1}, {-61.0, -8.0, 0, 1}, {-48.0, -8.0, 0, 1}, {-47.0, -8.0, 0, 1}, + {-46.0, -8.0, 0, 1}, {-33.0, -8.0, 0, 1}, {-32.0, -8.0, 0, 1}, {-31.0, -8.0, 0, 1}, {-30.0, -8.0, 0, 1}, {-23.0, -8.0, 0, 1}, + {-22.0, -8.0, 0, 1}, {-21.0, -8.0, 0, 1}, {-20.0, -8.0, 0, 1}, {-17.0, -8.0, 0, 1}, {-16.0, -8.0, 0, 1}, {-15.0, -8.0, 0, 1}, + {-14.0, -8.0, 0, 1}, {-7.0, -8.0, 0, 1}, {-6.0, -8.0, 0, 1}, {-5.0, -8.0, 0, 1}, {-1.0, -8.0, 0, 1}, {0.0, -8.0, 0, 1}, + {1.0, -8.0, 0, 1}, {14.0, -8.0, 0, 1}, {15.0, -8.0, 0, 1}, {16.0, -8.0, 0, 1}, {29.0, -8.0, 0, 1}, {30.0, -8.0, 0, 1}, + {31.0, -8.0, 0, 1}, {32.0, -8.0, 0, 1}, {45.0, -8.0, 0, 1}, {46.0, -8.0, 0, 1}, {47.0, -8.0, 0, 1}, {51.0, -8.0, 0, 1}, + {52.0, -8.0, 0, 1}, {53.0, -8.0, 0, 1}, {54.0, -8.0, 0, 1}, {-63.0, -7.0, 0, 1}, {-62.0, -7.0, 0, 1}, {-61.0, -7.0, 0, 1}, + {-48.0, -7.0, 0, 1}, {-47.0, -7.0, 0, 1}, {-46.0, -7.0, 0, 1}, {-33.0, -7.0, 0, 1}, {-32.0, -7.0, 0, 1}, {-31.0, -7.0, 0, 1}, + {-30.0, -7.0, 0, 1}, {-22.0, -7.0, 0, 1}, {-21.0, -7.0, 0, 1}, {-20.0, -7.0, 0, 1}, {-17.0, -7.0, 0, 1}, {-16.0, -7.0, 0, 1}, + {-15.0, -7.0, 0, 1}, {-14.0, -7.0, 0, 1}, {-7.0, -7.0, 0, 1}, {-6.0, -7.0, 0, 1}, {-5.0, -7.0, 0, 1}, {-1.0, -7.0, 0, 1}, + {0.0, -7.0, 0, 1}, {1.0, -7.0, 0, 1}, {14.0, -7.0, 0, 1}, {15.0, -7.0, 0, 1}, {16.0, -7.0, 0, 1}, {29.0, -7.0, 0, 1}, + {30.0, -7.0, 0, 1}, {31.0, -7.0, 0, 1}, {32.0, -7.0, 0, 1}, {45.0, -7.0, 0, 1}, {46.0, -7.0, 0, 1}, {47.0, -7.0, 0, 1}, + {51.0, -7.0, 0, 1}, {52.0, -7.0, 0, 1}, {53.0, -7.0, 0, 1}, {-63.0, -6.0, 0, 1}, {-62.0, -6.0, 0, 1}, {-61.0, -6.0, 0, 1}, + {-48.0, -6.0, 0, 1}, {-47.0, -6.0, 0, 1}, {-46.0, -6.0, 0, 1}, {-33.0, -6.0, 0, 1}, {-32.0, -6.0, 0, 1}, {-31.0, -6.0, 0, 1}, + {-30.0, -6.0, 0, 1}, {-22.0, -6.0, 0, 1}, {-21.0, -6.0, 0, 1}, {-20.0, -6.0, 0, 1}, {-17.0, -6.0, 0, 1}, {-16.0, -6.0, 0, 1}, + {-15.0, -6.0, 0, 1}, {-14.0, -6.0, 0, 1}, {-7.0, -6.0, 0, 1}, {-6.0, -6.0, 0, 1}, {-5.0, -6.0, 0, 1}, {-1.0, -6.0, 0, 1}, + {0.0, -6.0, 0, 1}, {1.0, -6.0, 0, 1}, {14.0, -6.0, 0, 1}, {15.0, -6.0, 0, 1}, {16.0, -6.0, 0, 1}, {29.0, -6.0, 0, 1}, + {30.0, -6.0, 0, 1}, {31.0, -6.0, 0, 1}, {32.0, -6.0, 0, 1}, {45.0, -6.0, 0, 1}, {46.0, -6.0, 0, 1}, {47.0, -6.0, 0, 1}, + {51.0, -6.0, 0, 1}, {52.0, -6.0, 0, 1}, {53.0, -6.0, 0, 1}, {-63.0, -5.0, 0, 1}, {-62.0, -5.0, 0, 1}, {-61.0, -5.0, 0, 1}, + {-48.0, -5.0, 0, 1}, {-47.0, -5.0, 0, 1}, {-46.0, -5.0, 0, 1}, {-33.0, -5.0, 0, 1}, {-32.0, -5.0, 0, 1}, {-31.0, -5.0, 0, 1}, + {-30.0, -5.0, 0, 1}, {-22.0, -5.0, 0, 1}, {-21.0, -5.0, 0, 1}, {-20.0, -5.0, 0, 1}, {-17.0, -5.0, 0, 1}, {-16.0, -5.0, 0, 1}, + {-15.0, -5.0, 0, 1}, {-14.0, -5.0, 0, 1}, {-7.0, -5.0, 0, 1}, {-6.0, -5.0, 0, 1}, {-5.0, -5.0, 0, 1}, {-1.0, -5.0, 0, 1}, + {0.0, -5.0, 0, 1}, {1.0, -5.0, 0, 1}, {14.0, -5.0, 0, 1}, {15.0, -5.0, 0, 1}, {16.0, -5.0, 0, 1}, {29.0, -5.0, 0, 1}, + {30.0, -5.0, 0, 1}, {31.0, -5.0, 0, 1}, {32.0, -5.0, 0, 1}, {45.0, -5.0, 0, 1}, {46.0, -5.0, 0, 1}, {47.0, -5.0, 0, 1}, + {51.0, -5.0, 0, 1}, {52.0, -5.0, 0, 1}, {53.0, -5.0, 0, 1}, {-63.0, -4.0, 0, 1}, {-62.0, -4.0, 0, 1}, {-61.0, -4.0, 0, 1}, + {-48.0, -4.0, 0, 1}, {-47.0, -4.0, 0, 1}, {-46.0, -4.0, 0, 1}, {-33.0, -4.0, 0, 1}, {-32.0, -4.0, 0, 1}, {-31.0, -4.0, 0, 1}, + {-30.0, -4.0, 0, 1}, {-22.0, -4.0, 0, 1}, {-21.0, -4.0, 0, 1}, {-20.0, -4.0, 0, 1}, {-17.0, -4.0, 0, 1}, {-16.0, -4.0, 0, 1}, + {-15.0, -4.0, 0, 1}, {-14.0, -4.0, 0, 1}, {-7.0, -4.0, 0, 1}, {-6.0, -4.0, 0, 1}, {-5.0, -4.0, 0, 1}, {-1.0, -4.0, 0, 1}, + {0.0, -4.0, 0, 1}, {1.0, -4.0, 0, 1}, {14.0, -4.0, 0, 1}, {15.0, -4.0, 0, 1}, {16.0, -4.0, 0, 1}, {29.0, -4.0, 0, 1}, + {30.0, -4.0, 0, 1}, {31.0, -4.0, 0, 1}, {32.0, -4.0, 0, 1}, {45.0, -4.0, 0, 1}, {46.0, -4.0, 0, 1}, {47.0, -4.0, 0, 1}, + {51.0, -4.0, 0, 1}, {52.0, -4.0, 0, 1}, {53.0, -4.0, 0, 1}, {-63.0, -3.0, 0, 1}, {-62.0, -3.0, 0, 1}, {-61.0, -3.0, 0, 1}, + {-48.0, -3.0, 0, 1}, {-47.0, -3.0, 0, 1}, {-46.0, -3.0, 0, 1}, {-33.0, -3.0, 0, 1}, {-32.0, -3.0, 0, 1}, {-31.0, -3.0, 0, 1}, + {-30.0, -3.0, 0, 1}, {-22.0, -3.0, 0, 1}, {-21.0, -3.0, 0, 1}, {-20.0, -3.0, 0, 1}, {-17.0, -3.0, 0, 1}, {-16.0, -3.0, 0, 1}, + {-15.0, -3.0, 0, 1}, {-14.0, -3.0, 0, 1}, {-7.0, -3.0, 0, 1}, {-6.0, -3.0, 0, 1}, {-5.0, -3.0, 0, 1}, {-1.0, -3.0, 0, 1}, + {0.0, -3.0, 0, 1}, {1.0, -3.0, 0, 1}, {14.0, -3.0, 0, 1}, {15.0, -3.0, 0, 1}, {16.0, -3.0, 0, 1}, {29.0, -3.0, 0, 1}, + {30.0, -3.0, 0, 1}, {31.0, -3.0, 0, 1}, {32.0, -3.0, 0, 1}, {45.0, -3.0, 0, 1}, {46.0, -3.0, 0, 1}, {47.0, -3.0, 0, 1}, + {51.0, -3.0, 0, 1}, {52.0, -3.0, 0, 1}, {53.0, -3.0, 0, 1}, {-63.0, -2.0, 0, 1}, {-62.0, -2.0, 0, 1}, {-61.0, -2.0, 0, 1}, + {-60.0, -2.0, 0, 1}, {-59.0, -2.0, 0, 1}, {-58.0, -2.0, 0, 1}, {-57.0, -2.0, 0, 1}, {-56.0, -2.0, 0, 1}, {-55.0, -2.0, 0, 1}, + {-54.0, -2.0, 0, 1}, {-53.0, -2.0, 0, 1}, {-48.0, -2.0, 0, 1}, {-47.0, -2.0, 0, 1}, {-46.0, -2.0, 0, 1}, {-45.0, -2.0, 0, 1}, + {-44.0, -2.0, 0, 1}, {-43.0, -2.0, 0, 1}, {-42.0, -2.0, 0, 1}, {-41.0, -2.0, 0, 1}, {-40.0, -2.0, 0, 1}, {-39.0, -2.0, 0, 1}, + {-38.0, -2.0, 0, 1}, {-33.0, -2.0, 0, 1}, {-32.0, -2.0, 0, 1}, {-31.0, -2.0, 0, 1}, {-30.0, -2.0, 0, 1}, {-23.0, -2.0, 0, 1}, + {-22.0, -2.0, 0, 1}, {-21.0, -2.0, 0, 1}, {-20.0, -2.0, 0, 1}, {-17.0, -2.0, 0, 1}, {-16.0, -2.0, 0, 1}, {-15.0, -2.0, 0, 1}, + {-14.0, -2.0, 0, 1}, {-7.0, -2.0, 0, 1}, {-6.0, -2.0, 0, 1}, {-5.0, -2.0, 0, 1}, {-1.0, -2.0, 0, 1}, {0.0, -2.0, 0, 1}, + {1.0, -2.0, 0, 1}, {2.0, -2.0, 0, 1}, {3.0, -2.0, 0, 1}, {4.0, -2.0, 0, 1}, {5.0, -2.0, 0, 1}, {6.0, -2.0, 0, 1}, + {7.0, -2.0, 0, 1}, {8.0, -2.0, 0, 1}, {9.0, -2.0, 0, 1}, {14.0, -2.0, 0, 1}, {15.0, -2.0, 0, 1}, {16.0, -2.0, 0, 1}, + {17.0, -2.0, 0, 1}, {18.0, -2.0, 0, 1}, {19.0, -2.0, 0, 1}, {20.0, -2.0, 0, 1}, {21.0, -2.0, 0, 1}, {22.0, -2.0, 0, 1}, + {23.0, -2.0, 0, 1}, {24.0, -2.0, 0, 1}, {30.0, -2.0, 0, 1}, {31.0, -2.0, 0, 1}, {32.0, -2.0, 0, 1}, {33.0, -2.0, 0, 1}, + {34.0, -2.0, 0, 1}, {35.0, -2.0, 0, 1}, {36.0, -2.0, 0, 1}, {37.0, -2.0, 0, 1}, {38.0, -2.0, 0, 1}, {39.0, -2.0, 0, 1}, + {40.0, -2.0, 0, 1}, {45.0, -2.0, 0, 1}, {46.0, -2.0, 0, 1}, {47.0, -2.0, 0, 1}, {51.0, -2.0, 0, 1}, {52.0, -2.0, 0, 1}, + {53.0, -2.0, 0, 1}, {54.0, -2.0, 0, 1}, {55.0, -2.0, 0, 1}, {56.0, -2.0, 0, 1}, {57.0, -2.0, 0, 1}, {58.0, -2.0, 0, 1}, + {59.0, -2.0, 0, 1}, {60.0, -2.0, 0, 1}, {61.0, -2.0, 0, 1}, {-63.0, -1.0, 0, 1}, {-62.0, -1.0, 0, 1}, {-61.0, -1.0, 0, 1}, + {-60.0, -1.0, 0, 1}, {-59.0, -1.0, 0, 1}, {-58.0, -1.0, 0, 1}, {-57.0, -1.0, 0, 1}, {-56.0, -1.0, 0, 1}, {-55.0, -1.0, 0, 1}, + {-54.0, -1.0, 0, 1}, {-53.0, -1.0, 0, 1}, {-48.0, -1.0, 0, 1}, {-47.0, -1.0, 0, 1}, {-46.0, -1.0, 0, 1}, {-45.0, -1.0, 0, 1}, + {-44.0, -1.0, 0, 1}, {-43.0, -1.0, 0, 1}, {-42.0, -1.0, 0, 1}, {-41.0, -1.0, 0, 1}, {-40.0, -1.0, 0, 1}, {-39.0, -1.0, 0, 1}, + {-38.0, -1.0, 0, 1}, {-37.0, -1.0, 0, 1}, {-33.0, -1.0, 0, 1}, {-32.0, -1.0, 0, 1}, {-31.0, -1.0, 0, 1}, {-30.0, -1.0, 0, 1}, + {-29.0, -1.0, 0, 1}, {-28.0, -1.0, 0, 1}, {-27.0, -1.0, 0, 1}, {-26.0, -1.0, 0, 1}, {-25.0, -1.0, 0, 1}, {-24.0, -1.0, 0, 1}, + {-23.0, -1.0, 0, 1}, {-22.0, -1.0, 0, 1}, {-21.0, -1.0, 0, 1}, {-20.0, -1.0, 0, 1}, {-17.0, -1.0, 0, 1}, {-16.0, -1.0, 0, 1}, + {-15.0, -1.0, 0, 1}, {-14.0, -1.0, 0, 1}, {-13.0, -1.0, 0, 1}, {-12.0, -1.0, 0, 1}, {-11.0, -1.0, 0, 1}, {-10.0, -1.0, 0, 1}, + {-9.0, -1.0, 0, 1}, {-8.0, -1.0, 0, 1}, {-7.0, -1.0, 0, 1}, {-6.0, -1.0, 0, 1}, {-5.0, -1.0, 0, 1}, {-1.0, -1.0, 0, 1}, + {0.0, -1.0, 0, 1}, {1.0, -1.0, 0, 1}, {2.0, -1.0, 0, 1}, {3.0, -1.0, 0, 1}, {4.0, -1.0, 0, 1}, {5.0, -1.0, 0, 1}, + {6.0, -1.0, 0, 1}, {7.0, -1.0, 0, 1}, {8.0, -1.0, 0, 1}, {9.0, -1.0, 0, 1}, {14.0, -1.0, 0, 1}, {15.0, -1.0, 0, 1}, + {16.0, -1.0, 0, 1}, {17.0, -1.0, 0, 1}, {18.0, -1.0, 0, 1}, {19.0, -1.0, 0, 1}, {20.0, -1.0, 0, 1}, {21.0, -1.0, 0, 1}, + {22.0, -1.0, 0, 1}, {23.0, -1.0, 0, 1}, {24.0, -1.0, 0, 1}, {25.0, -1.0, 0, 1}, {30.0, -1.0, 0, 1}, {31.0, -1.0, 0, 1}, + {32.0, -1.0, 0, 1}, {33.0, -1.0, 0, 1}, {34.0, -1.0, 0, 1}, {35.0, -1.0, 0, 1}, {36.0, -1.0, 0, 1}, {37.0, -1.0, 0, 1}, + {38.0, -1.0, 0, 1}, {39.0, -1.0, 0, 1}, {40.0, -1.0, 0, 1}, {41.0, -1.0, 0, 1}, {45.0, -1.0, 0, 1}, {46.0, -1.0, 0, 1}, + {47.0, -1.0, 0, 1}, {51.0, -1.0, 0, 1}, {52.0, -1.0, 0, 1}, {53.0, -1.0, 0, 1}, {54.0, -1.0, 0, 1}, {55.0, -1.0, 0, 1}, + {56.0, -1.0, 0, 1}, {57.0, -1.0, 0, 1}, {58.0, -1.0, 0, 1}, {59.0, -1.0, 0, 1}, {60.0, -1.0, 0, 1}, {61.0, -1.0, 0, 1}, + {-63.0, 0.0, 0, 1}, {-62.0, 0.0, 0, 1}, {-61.0, 0.0, 0, 1}, {-60.0, 0.0, 0, 1}, {-59.0, 0.0, 0, 1}, {-58.0, 0.0, 0, 1}, + {-57.0, 0.0, 0, 1}, {-56.0, 0.0, 0, 1}, {-55.0, 0.0, 0, 1}, {-54.0, 0.0, 0, 1}, {-53.0, 0.0, 0, 1}, {-47.0, 0.0, 0, 1}, + {-46.0, 0.0, 0, 1}, {-45.0, 0.0, 0, 1}, {-44.0, 0.0, 0, 1}, {-43.0, 0.0, 0, 1}, {-42.0, 0.0, 0, 1}, {-41.0, 0.0, 0, 1}, + {-40.0, 0.0, 0, 1}, {-39.0, 0.0, 0, 1}, {-38.0, 0.0, 0, 1}, {-37.0, 0.0, 0, 1}, {-33.0, 0.0, 0, 1}, {-32.0, 0.0, 0, 1}, + {-31.0, 0.0, 0, 1}, {-30.0, 0.0, 0, 1}, {-29.0, 0.0, 0, 1}, {-28.0, 0.0, 0, 1}, {-27.0, 0.0, 0, 1}, {-26.0, 0.0, 0, 1}, + {-25.0, 0.0, 0, 1}, {-24.0, 0.0, 0, 1}, {-23.0, 0.0, 0, 1}, {-22.0, 0.0, 0, 1}, {-21.0, 0.0, 0, 1}, {-17.0, 0.0, 0, 1}, + {-16.0, 0.0, 0, 1}, {-15.0, 0.0, 0, 1}, {-14.0, 0.0, 0, 1}, {-13.0, 0.0, 0, 1}, {-12.0, 0.0, 0, 1}, {-11.0, 0.0, 0, 1}, + {-10.0, 0.0, 0, 1}, {-9.0, 0.0, 0, 1}, {-8.0, 0.0, 0, 1}, {-7.0, 0.0, 0, 1}, {-6.0, 0.0, 0, 1}, {-5.0, 0.0, 0, 1}, + {-1.0, 0.0, 0, 1}, {0.0, 0.0, 0, 1}, {1.0, 0.0, 0, 1}, {2.0, 0.0, 0, 1}, {3.0, 0.0, 0, 1}, {4.0, 0.0, 0, 1}, + {5.0, 0.0, 0, 1}, {6.0, 0.0, 0, 1}, {7.0, 0.0, 0, 1}, {8.0, 0.0, 0, 1}, {9.0, 0.0, 0, 1}, {15.0, 0.0, 0, 1}, + {16.0, 0.0, 0, 1}, {17.0, 0.0, 0, 1}, {18.0, 0.0, 0, 1}, {19.0, 0.0, 0, 1}, {20.0, 0.0, 0, 1}, {21.0, 0.0, 0, 1}, + {22.0, 0.0, 0, 1}, {23.0, 0.0, 0, 1}, {24.0, 0.0, 0, 1}, {25.0, 0.0, 0, 1}, {26.0, 0.0, 0, 1}, {31.0, 0.0, 0, 1}, + {32.0, 0.0, 0, 1}, {33.0, 0.0, 0, 1}, {34.0, 0.0, 0, 1}, {35.0, 0.0, 0, 1}, {36.0, 0.0, 0, 1}, {37.0, 0.0, 0, 1}, + {38.0, 0.0, 0, 1}, {39.0, 0.0, 0, 1}, {40.0, 0.0, 0, 1}, {41.0, 0.0, 0, 1}, {45.0, 0.0, 0, 1}, {46.0, 0.0, 0, 1}, + {47.0, 0.0, 0, 1}, {51.0, 0.0, 0, 1}, {52.0, 0.0, 0, 1}, {53.0, 0.0, 0, 1}, {54.0, 0.0, 0, 1}, {55.0, 0.0, 0, 1}, + {56.0, 0.0, 0, 1}, {57.0, 0.0, 0, 1}, {58.0, 0.0, 0, 1}, {59.0, 0.0, 0, 1}, {60.0, 0.0, 0, 1}, {61.0, 0.0, 0, 1}, + {-63.0, 1.0, 0, 1}, {-62.0, 1.0, 0, 1}, {-61.0, 1.0, 0, 1}, {-39.0, 1.0, 0, 1}, {-38.0, 1.0, 0, 1}, {-37.0, 1.0, 0, 1}, + {-36.0, 1.0, 0, 1}, {-33.0, 1.0, 0, 1}, {-32.0, 1.0, 0, 1}, {-31.0, 1.0, 0, 1}, {-30.0, 1.0, 0, 1}, {-29.0, 1.0, 0, 1}, + {-28.0, 1.0, 0, 1}, {-27.0, 1.0, 0, 1}, {-26.0, 1.0, 0, 1}, {-25.0, 1.0, 0, 1}, {-24.0, 1.0, 0, 1}, {-23.0, 1.0, 0, 1}, + {-22.0, 1.0, 0, 1}, {-21.0, 1.0, 0, 1}, {-17.0, 1.0, 0, 1}, {-16.0, 1.0, 0, 1}, {-15.0, 1.0, 0, 1}, {-14.0, 1.0, 0, 1}, + {-13.0, 1.0, 0, 1}, {-12.0, 1.0, 0, 1}, {-11.0, 1.0, 0, 1}, {-10.0, 1.0, 0, 1}, {-9.0, 1.0, 0, 1}, {-8.0, 1.0, 0, 1}, + {-7.0, 1.0, 0, 1}, {-6.0, 1.0, 0, 1}, {-1.0, 1.0, 0, 1}, {0.0, 1.0, 0, 1}, {1.0, 1.0, 0, 1}, {23.0, 1.0, 0, 1}, + {24.0, 1.0, 0, 1}, {25.0, 1.0, 0, 1}, {26.0, 1.0, 0, 1}, {38.0, 1.0, 0, 1}, {39.0, 1.0, 0, 1}, {40.0, 1.0, 0, 1}, + {41.0, 1.0, 0, 1}, {45.0, 1.0, 0, 1}, {46.0, 1.0, 0, 1}, {47.0, 1.0, 0, 1}, {51.0, 1.0, 0, 1}, {52.0, 1.0, 0, 1}, + {53.0, 1.0, 0, 1}, {-63.0, 2.0, 0, 1}, {-62.0, 2.0, 0, 1}, {-61.0, 2.0, 0, 1}, {-39.0, 2.0, 0, 1}, {-38.0, 2.0, 0, 1}, + {-37.0, 2.0, 0, 1}, {-36.0, 2.0, 0, 1}, {-33.0, 2.0, 0, 1}, {-32.0, 2.0, 0, 1}, {-31.0, 2.0, 0, 1}, {-30.0, 2.0, 0, 1}, + {-29.0, 2.0, 0, 1}, {-28.0, 2.0, 0, 1}, {-27.0, 2.0, 0, 1}, {-26.0, 2.0, 0, 1}, {-25.0, 2.0, 0, 1}, {-24.0, 2.0, 0, 1}, + {-23.0, 2.0, 0, 1}, {-17.0, 2.0, 0, 1}, {-16.0, 2.0, 0, 1}, {-15.0, 2.0, 0, 1}, {-14.0, 2.0, 0, 1}, {-9.0, 2.0, 0, 1}, + {-8.0, 2.0, 0, 1}, {-7.0, 2.0, 0, 1}, {-6.0, 2.0, 0, 1}, {-1.0, 2.0, 0, 1}, {0.0, 2.0, 0, 1}, {1.0, 2.0, 0, 1}, + {24.0, 2.0, 0, 1}, {25.0, 2.0, 0, 1}, {26.0, 2.0, 0, 1}, {39.0, 2.0, 0, 1}, {40.0, 2.0, 0, 1}, {41.0, 2.0, 0, 1}, + {45.0, 2.0, 0, 1}, {46.0, 2.0, 0, 1}, {47.0, 2.0, 0, 1}, {51.0, 2.0, 0, 1}, {52.0, 2.0, 0, 1}, {53.0, 2.0, 0, 1}, + {-63.0, 3.0, 0, 1}, {-62.0, 3.0, 0, 1}, {-61.0, 3.0, 0, 1}, {-39.0, 3.0, 0, 1}, {-38.0, 3.0, 0, 1}, {-37.0, 3.0, 0, 1}, + {-36.0, 3.0, 0, 1}, {-33.0, 3.0, 0, 1}, {-32.0, 3.0, 0, 1}, {-31.0, 3.0, 0, 1}, {-30.0, 3.0, 0, 1}, {-17.0, 3.0, 0, 1}, + {-16.0, 3.0, 0, 1}, {-15.0, 3.0, 0, 1}, {-14.0, 3.0, 0, 1}, {-8.0, 3.0, 0, 1}, {-7.0, 3.0, 0, 1}, {-6.0, 3.0, 0, 1}, + {-1.0, 3.0, 0, 1}, {0.0, 3.0, 0, 1}, {1.0, 3.0, 0, 1}, {24.0, 3.0, 0, 1}, {25.0, 3.0, 0, 1}, {26.0, 3.0, 0, 1}, + {39.0, 3.0, 0, 1}, {40.0, 3.0, 0, 1}, {41.0, 3.0, 0, 1}, {45.0, 3.0, 0, 1}, {46.0, 3.0, 0, 1}, {47.0, 3.0, 0, 1}, + {51.0, 3.0, 0, 1}, {52.0, 3.0, 0, 1}, {53.0, 3.0, 0, 1}, {-63.0, 4.0, 0, 1}, {-62.0, 4.0, 0, 1}, {-61.0, 4.0, 0, 1}, + {-39.0, 4.0, 0, 1}, {-38.0, 4.0, 0, 1}, {-37.0, 4.0, 0, 1}, {-36.0, 4.0, 0, 1}, {-33.0, 4.0, 0, 1}, {-32.0, 4.0, 0, 1}, + {-31.0, 4.0, 0, 1}, {-30.0, 4.0, 0, 1}, {-17.0, 4.0, 0, 1}, {-16.0, 4.0, 0, 1}, {-15.0, 4.0, 0, 1}, {-14.0, 4.0, 0, 1}, + {-7.0, 4.0, 0, 1}, {-6.0, 4.0, 0, 1}, {-5.0, 4.0, 0, 1}, {-1.0, 4.0, 0, 1}, {0.0, 4.0, 0, 1}, {1.0, 4.0, 0, 1}, + {24.0, 4.0, 0, 1}, {25.0, 4.0, 0, 1}, {26.0, 4.0, 0, 1}, {39.0, 4.0, 0, 1}, {40.0, 4.0, 0, 1}, {41.0, 4.0, 0, 1}, + {45.0, 4.0, 0, 1}, {46.0, 4.0, 0, 1}, {47.0, 4.0, 0, 1}, {51.0, 4.0, 0, 1}, {52.0, 4.0, 0, 1}, {53.0, 4.0, 0, 1}, + {-63.0, 5.0, 0, 1}, {-62.0, 5.0, 0, 1}, {-61.0, 5.0, 0, 1}, {-39.0, 5.0, 0, 1}, {-38.0, 5.0, 0, 1}, {-37.0, 5.0, 0, 1}, + {-36.0, 5.0, 0, 1}, {-33.0, 5.0, 0, 1}, {-32.0, 5.0, 0, 1}, {-31.0, 5.0, 0, 1}, {-30.0, 5.0, 0, 1}, {-17.0, 5.0, 0, 1}, + {-16.0, 5.0, 0, 1}, {-15.0, 5.0, 0, 1}, {-14.0, 5.0, 0, 1}, {-7.0, 5.0, 0, 1}, {-6.0, 5.0, 0, 1}, {-5.0, 5.0, 0, 1}, + {-1.0, 5.0, 0, 1}, {0.0, 5.0, 0, 1}, {1.0, 5.0, 0, 1}, {24.0, 5.0, 0, 1}, {25.0, 5.0, 0, 1}, {26.0, 5.0, 0, 1}, + {39.0, 5.0, 0, 1}, {40.0, 5.0, 0, 1}, {41.0, 5.0, 0, 1}, {45.0, 5.0, 0, 1}, {46.0, 5.0, 0, 1}, {47.0, 5.0, 0, 1}, + {51.0, 5.0, 0, 1}, {52.0, 5.0, 0, 1}, {53.0, 5.0, 0, 1}, {-63.0, 6.0, 0, 1}, {-62.0, 6.0, 0, 1}, {-61.0, 6.0, 0, 1}, + {-39.0, 6.0, 0, 1}, {-38.0, 6.0, 0, 1}, {-37.0, 6.0, 0, 1}, {-36.0, 6.0, 0, 1}, {-33.0, 6.0, 0, 1}, {-32.0, 6.0, 0, 1}, + {-31.0, 6.0, 0, 1}, {-30.0, 6.0, 0, 1}, {-17.0, 6.0, 0, 1}, {-16.0, 6.0, 0, 1}, {-15.0, 6.0, 0, 1}, {-14.0, 6.0, 0, 1}, + {-7.0, 6.0, 0, 1}, {-6.0, 6.0, 0, 1}, {-5.0, 6.0, 0, 1}, {-1.0, 6.0, 0, 1}, {0.0, 6.0, 0, 1}, {1.0, 6.0, 0, 1}, + {24.0, 6.0, 0, 1}, {25.0, 6.0, 0, 1}, {26.0, 6.0, 0, 1}, {39.0, 6.0, 0, 1}, {40.0, 6.0, 0, 1}, {41.0, 6.0, 0, 1}, + {45.0, 6.0, 0, 1}, {46.0, 6.0, 0, 1}, {47.0, 6.0, 0, 1}, {51.0, 6.0, 0, 1}, {52.0, 6.0, 0, 1}, {53.0, 6.0, 0, 1}, + {-63.0, 7.0, 0, 1}, {-62.0, 7.0, 0, 1}, {-61.0, 7.0, 0, 1}, {-39.0, 7.0, 0, 1}, {-38.0, 7.0, 0, 1}, {-37.0, 7.0, 0, 1}, + {-36.0, 7.0, 0, 1}, {-33.0, 7.0, 0, 1}, {-32.0, 7.0, 0, 1}, {-31.0, 7.0, 0, 1}, {-30.0, 7.0, 0, 1}, {-17.0, 7.0, 0, 1}, + {-16.0, 7.0, 0, 1}, {-15.0, 7.0, 0, 1}, {-14.0, 7.0, 0, 1}, {-7.0, 7.0, 0, 1}, {-6.0, 7.0, 0, 1}, {-5.0, 7.0, 0, 1}, + {-1.0, 7.0, 0, 1}, {0.0, 7.0, 0, 1}, {1.0, 7.0, 0, 1}, {24.0, 7.0, 0, 1}, {25.0, 7.0, 0, 1}, {26.0, 7.0, 0, 1}, + {39.0, 7.0, 0, 1}, {40.0, 7.0, 0, 1}, {41.0, 7.0, 0, 1}, {45.0, 7.0, 0, 1}, {46.0, 7.0, 0, 1}, {47.0, 7.0, 0, 1}, + {51.0, 7.0, 0, 1}, {52.0, 7.0, 0, 1}, {53.0, 7.0, 0, 1}, {-63.0, 8.0, 0, 1}, {-62.0, 8.0, 0, 1}, {-61.0, 8.0, 0, 1}, + {-60.0, 8.0, 0, 1}, {-59.0, 8.0, 0, 1}, {-58.0, 8.0, 0, 1}, {-57.0, 8.0, 0, 1}, {-56.0, 8.0, 0, 1}, {-55.0, 8.0, 0, 1}, + {-54.0, 8.0, 0, 1}, {-53.0, 8.0, 0, 1}, {-52.0, 8.0, 0, 1}, {-48.0, 8.0, 0, 1}, {-47.0, 8.0, 0, 1}, {-46.0, 8.0, 0, 1}, + {-45.0, 8.0, 0, 1}, {-44.0, 8.0, 0, 1}, {-43.0, 8.0, 0, 1}, {-42.0, 8.0, 0, 1}, {-41.0, 8.0, 0, 1}, {-40.0, 8.0, 0, 1}, + {-39.0, 8.0, 0, 1}, {-38.0, 8.0, 0, 1}, {-37.0, 8.0, 0, 1}, {-33.0, 8.0, 0, 1}, {-32.0, 8.0, 0, 1}, {-31.0, 8.0, 0, 1}, + {-30.0, 8.0, 0, 1}, {-17.0, 8.0, 0, 1}, {-16.0, 8.0, 0, 1}, {-15.0, 8.0, 0, 1}, {-14.0, 8.0, 0, 1}, {-7.0, 8.0, 0, 1}, + {-6.0, 8.0, 0, 1}, {-5.0, 8.0, 0, 1}, {-4.0, 8.0, 0, 1}, {-1.0, 8.0, 0, 1}, {0.0, 8.0, 0, 1}, {1.0, 8.0, 0, 1}, + {2.0, 8.0, 0, 1}, {3.0, 8.0, 0, 1}, {4.0, 8.0, 0, 1}, {5.0, 8.0, 0, 1}, {6.0, 8.0, 0, 1}, {7.0, 8.0, 0, 1}, + {8.0, 8.0, 0, 1}, {9.0, 8.0, 0, 1}, {10.0, 8.0, 0, 1}, {14.0, 8.0, 0, 1}, {15.0, 8.0, 0, 1}, {16.0, 8.0, 0, 1}, + {17.0, 8.0, 0, 1}, {18.0, 8.0, 0, 1}, {19.0, 8.0, 0, 1}, {20.0, 8.0, 0, 1}, {21.0, 8.0, 0, 1}, {22.0, 8.0, 0, 1}, + {23.0, 8.0, 0, 1}, {24.0, 8.0, 0, 1}, {25.0, 8.0, 0, 1}, {26.0, 8.0, 0, 1}, {29.0, 8.0, 0, 1}, {30.0, 8.0, 0, 1}, + {31.0, 8.0, 0, 1}, {32.0, 8.0, 0, 1}, {33.0, 8.0, 0, 1}, {34.0, 8.0, 0, 1}, {35.0, 8.0, 0, 1}, {36.0, 8.0, 0, 1}, + {37.0, 8.0, 0, 1}, {38.0, 8.0, 0, 1}, {39.0, 8.0, 0, 1}, {40.0, 8.0, 0, 1}, {41.0, 8.0, 0, 1}, {45.0, 8.0, 0, 1}, + {46.0, 8.0, 0, 1}, {47.0, 8.0, 0, 1}, {51.0, 8.0, 0, 1}, {52.0, 8.0, 0, 1}, {53.0, 8.0, 0, 1}, {-63.0, 9.0, 0, 1}, + {-62.0, 9.0, 0, 1}, {-61.0, 9.0, 0, 1}, {-60.0, 9.0, 0, 1}, {-59.0, 9.0, 0, 1}, {-58.0, 9.0, 0, 1}, {-57.0, 9.0, 0, 1}, + {-56.0, 9.0, 0, 1}, {-55.0, 9.0, 0, 1}, {-54.0, 9.0, 0, 1}, {-53.0, 9.0, 0, 1}, {-52.0, 9.0, 0, 1}, {-48.0, 9.0, 0, 1}, + {-47.0, 9.0, 0, 1}, {-46.0, 9.0, 0, 1}, {-45.0, 9.0, 0, 1}, {-44.0, 9.0, 0, 1}, {-43.0, 9.0, 0, 1}, {-42.0, 9.0, 0, 1}, + {-41.0, 9.0, 0, 1}, {-40.0, 9.0, 0, 1}, {-39.0, 9.0, 0, 1}, {-38.0, 9.0, 0, 1}, {-37.0, 9.0, 0, 1}, {-33.0, 9.0, 0, 1}, + {-32.0, 9.0, 0, 1}, {-31.0, 9.0, 0, 1}, {-30.0, 9.0, 0, 1}, {-17.0, 9.0, 0, 1}, {-16.0, 9.0, 0, 1}, {-15.0, 9.0, 0, 1}, + {-14.0, 9.0, 0, 1}, {-6.0, 9.0, 0, 1}, {-5.0, 9.0, 0, 1}, {-4.0, 9.0, 0, 1}, {0.0, 9.0, 0, 1}, {1.0, 9.0, 0, 1}, + {2.0, 9.0, 0, 1}, {3.0, 9.0, 0, 1}, {4.0, 9.0, 0, 1}, {5.0, 9.0, 0, 1}, {6.0, 9.0, 0, 1}, {7.0, 9.0, 0, 1}, + {8.0, 9.0, 0, 1}, {9.0, 9.0, 0, 1}, {10.0, 9.0, 0, 1}, {14.0, 9.0, 0, 1}, {15.0, 9.0, 0, 1}, {16.0, 9.0, 0, 1}, + {17.0, 9.0, 0, 1}, {18.0, 9.0, 0, 1}, {19.0, 9.0, 0, 1}, {20.0, 9.0, 0, 1}, {21.0, 9.0, 0, 1}, {22.0, 9.0, 0, 1}, + {23.0, 9.0, 0, 1}, {24.0, 9.0, 0, 1}, {25.0, 9.0, 0, 1}, {29.0, 9.0, 0, 1}, {30.0, 9.0, 0, 1}, {31.0, 9.0, 0, 1}, + {32.0, 9.0, 0, 1}, {33.0, 9.0, 0, 1}, {34.0, 9.0, 0, 1}, {35.0, 9.0, 0, 1}, {36.0, 9.0, 0, 1}, {37.0, 9.0, 0, 1}, + {38.0, 9.0, 0, 1}, {39.0, 9.0, 0, 1}, {40.0, 9.0, 0, 1}, {41.0, 9.0, 0, 1}, {45.0, 9.0, 0, 1}, {46.0, 9.0, 0, 1}, + {47.0, 9.0, 0, 1}, {51.0, 9.0, 0, 1}, {52.0, 9.0, 0, 1}, {53.0, 9.0, 0, 1}, {-62.0, 10.0, 0, 1}, {-61.0, 10.0, 0, 1}, + {-60.0, 10.0, 0, 1}, {-59.0, 10.0, 0, 1}, {-58.0, 10.0, 0, 1}, {-57.0, 10.0, 0, 1}, {-56.0, 10.0, 0, 1}, {-55.0, 10.0, 0, 1}, + {-54.0, 10.0, 0, 1}, {-53.0, 10.0, 0, 1}, {-52.0, 10.0, 0, 1}, {-48.0, 10.0, 0, 1}, {-47.0, 10.0, 0, 1}, {-46.0, 10.0, 0, 1}, + {-45.0, 10.0, 0, 1}, {-44.0, 10.0, 0, 1}, {-43.0, 10.0, 0, 1}, {-42.0, 10.0, 0, 1}, {-41.0, 10.0, 0, 1}, {-40.0, 10.0, 0, 1}, + {-39.0, 10.0, 0, 1}, {-38.0, 10.0, 0, 1}, {-33.0, 10.0, 0, 1}, {-32.0, 10.0, 0, 1}, {-31.0, 10.0, 0, 1}, {-30.0, 10.0, 0, 1}, + {-17.0, 10.0, 0, 1}, {-16.0, 10.0, 0, 1}, {-15.0, 10.0, 0, 1}, {-14.0, 10.0, 0, 1}, {-6.0, 10.0, 0, 1}, {-5.0, 10.0, 0, 1}, + {-4.0, 10.0, 0, 1}, {0.0, 10.0, 0, 1}, {1.0, 10.0, 0, 1}, {2.0, 10.0, 0, 1}, {3.0, 10.0, 0, 1}, {4.0, 10.0, 0, 1}, + {5.0, 10.0, 0, 1}, {6.0, 10.0, 0, 1}, {7.0, 10.0, 0, 1}, {8.0, 10.0, 0, 1}, {9.0, 10.0, 0, 1}, {10.0, 10.0, 0, 1}, + {14.0, 10.0, 0, 1}, {15.0, 10.0, 0, 1}, {16.0, 10.0, 0, 1}, {17.0, 10.0, 0, 1}, {18.0, 10.0, 0, 1}, {19.0, 10.0, 0, 1}, + {20.0, 10.0, 0, 1}, {21.0, 10.0, 0, 1}, {22.0, 10.0, 0, 1}, {23.0, 10.0, 0, 1}, {24.0, 10.0, 0, 1}, {29.0, 10.0, 0, 1}, + {30.0, 10.0, 0, 1}, {31.0, 10.0, 0, 1}, {32.0, 10.0, 0, 1}, {33.0, 10.0, 0, 1}, {34.0, 10.0, 0, 1}, {35.0, 10.0, 0, 1}, + {36.0, 10.0, 0, 1}, {37.0, 10.0, 0, 1}, {38.0, 10.0, 0, 1}, {39.0, 10.0, 0, 1}, {40.0, 10.0, 0, 1}, {45.0, 10.0, 0, 1}, + {46.0, 10.0, 0, 1}, {47.0, 10.0, 0, 1}, {51.0, 10.0, 0, 1}, {52.0, 10.0, 0, 1}, {53.0, 10.0, 0, 1} +}; diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.h new file mode 100644 index 0000000..e4e2333 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/esp_text.h @@ -0,0 +1,16 @@ +// File generated by image_to_3d_array.py + +#pragma once + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t image_bmp_array_esp_text[384]; +extern const float image_3d_array_esp_text[1271][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c new file mode 100644 index 0000000..bca06f0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.c @@ -0,0 +1,338 @@ +// File generated by ImgTo3D.py +// Image file converted to 3D matrix cpu_logo.png + +#include "image_to_3d_matrix.h" + +#ifdef CONFIG_3D_OBJECT_CUSTOM + +const uint8_t image_to_bmp_array_custom[512] = { + + 0x00, 0x00, 0x0e, 0x1c, 0x38, 0x70, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xfe, + 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0x00, 0x1e, 0x0f, 0xff, 0xff, 0xf0, 0x78, 0x00, + 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, + 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfe, 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, + 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfc, 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, + 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfe, + 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xff, 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0xf0, 0x7f, 0xfe, + 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, 0x00, 0x1e, 0x0f, 0x00, 0x00, 0xf0, 0x78, 0x00, + 0x7f, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xfc, 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, + 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xf0, 0x7f, 0xff, + 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xfe, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, + 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x3e, 0x7c, 0xf8, 0x00, 0x00, + 0x00, 0x00, 0x1e, 0x3c, 0x7c, 0x78, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x1c, 0x38, 0x70, 0x00, 0x00 + +}; + +const float image_to_3d_matrix_custom[1732][4] = { + + {-12.0, -32.0, 0, 1}, {-11.0, -32.0, 0, 1}, {-10.0, -32.0, 0, 1}, {-5.0, -32.0, 0, 1}, {-4.0, -32.0, 0, 1}, {-3.0, -32.0, 0, 1}, + {2.0, -32.0, 0, 1}, {3.0, -32.0, 0, 1}, {4.0, -32.0, 0, 1}, {9.0, -32.0, 0, 1}, {10.0, -32.0, 0, 1}, {11.0, -32.0, 0, 1}, + {-13.0, -31.0, 0, 1}, {-12.0, -31.0, 0, 1}, {-11.0, -31.0, 0, 1}, {-10.0, -31.0, 0, 1}, {-6.0, -31.0, 0, 1}, {-5.0, -31.0, 0, 1}, + {-4.0, -31.0, 0, 1}, {-3.0, -31.0, 0, 1}, {-2.0, -31.0, 0, 1}, {1.0, -31.0, 0, 1}, {2.0, -31.0, 0, 1}, {3.0, -31.0, 0, 1}, + {4.0, -31.0, 0, 1}, {5.0, -31.0, 0, 1}, {8.0, -31.0, 0, 1}, {9.0, -31.0, 0, 1}, {10.0, -31.0, 0, 1}, {11.0, -31.0, 0, 1}, + {12.0, -31.0, 0, 1}, {-13.0, -30.0, 0, 1}, {-12.0, -30.0, 0, 1}, {-11.0, -30.0, 0, 1}, {-10.0, -30.0, 0, 1}, {-6.0, -30.0, 0, 1}, + {-5.0, -30.0, 0, 1}, {-4.0, -30.0, 0, 1}, {-3.0, -30.0, 0, 1}, {-2.0, -30.0, 0, 1}, {1.0, -30.0, 0, 1}, {2.0, -30.0, 0, 1}, + {3.0, -30.0, 0, 1}, {4.0, -30.0, 0, 1}, {5.0, -30.0, 0, 1}, {8.0, -30.0, 0, 1}, {9.0, -30.0, 0, 1}, {10.0, -30.0, 0, 1}, + {11.0, -30.0, 0, 1}, {12.0, -30.0, 0, 1}, {-13.0, -29.0, 0, 1}, {-12.0, -29.0, 0, 1}, {-11.0, -29.0, 0, 1}, {-10.0, -29.0, 0, 1}, + {-6.0, -29.0, 0, 1}, {-5.0, -29.0, 0, 1}, {-4.0, -29.0, 0, 1}, {-3.0, -29.0, 0, 1}, {-2.0, -29.0, 0, 1}, {1.0, -29.0, 0, 1}, + {2.0, -29.0, 0, 1}, {3.0, -29.0, 0, 1}, {4.0, -29.0, 0, 1}, {5.0, -29.0, 0, 1}, {8.0, -29.0, 0, 1}, {9.0, -29.0, 0, 1}, + {10.0, -29.0, 0, 1}, {11.0, -29.0, 0, 1}, {12.0, -29.0, 0, 1}, {-13.0, -28.0, 0, 1}, {-12.0, -28.0, 0, 1}, {-11.0, -28.0, 0, 1}, + {-10.0, -28.0, 0, 1}, {-6.0, -28.0, 0, 1}, {-5.0, -28.0, 0, 1}, {-4.0, -28.0, 0, 1}, {-3.0, -28.0, 0, 1}, {-2.0, -28.0, 0, 1}, + {1.0, -28.0, 0, 1}, {2.0, -28.0, 0, 1}, {3.0, -28.0, 0, 1}, {4.0, -28.0, 0, 1}, {5.0, -28.0, 0, 1}, {8.0, -28.0, 0, 1}, + {9.0, -28.0, 0, 1}, {10.0, -28.0, 0, 1}, {11.0, -28.0, 0, 1}, {12.0, -28.0, 0, 1}, {-13.0, -27.0, 0, 1}, {-12.0, -27.0, 0, 1}, + {-11.0, -27.0, 0, 1}, {-10.0, -27.0, 0, 1}, {-6.0, -27.0, 0, 1}, {-5.0, -27.0, 0, 1}, {-4.0, -27.0, 0, 1}, {-3.0, -27.0, 0, 1}, + {-2.0, -27.0, 0, 1}, {1.0, -27.0, 0, 1}, {2.0, -27.0, 0, 1}, {3.0, -27.0, 0, 1}, {4.0, -27.0, 0, 1}, {5.0, -27.0, 0, 1}, + {8.0, -27.0, 0, 1}, {9.0, -27.0, 0, 1}, {10.0, -27.0, 0, 1}, {11.0, -27.0, 0, 1}, {12.0, -27.0, 0, 1}, {-13.0, -26.0, 0, 1}, + {-12.0, -26.0, 0, 1}, {-11.0, -26.0, 0, 1}, {-10.0, -26.0, 0, 1}, {-6.0, -26.0, 0, 1}, {-5.0, -26.0, 0, 1}, {-4.0, -26.0, 0, 1}, + {-3.0, -26.0, 0, 1}, {-2.0, -26.0, 0, 1}, {1.0, -26.0, 0, 1}, {2.0, -26.0, 0, 1}, {3.0, -26.0, 0, 1}, {4.0, -26.0, 0, 1}, + {5.0, -26.0, 0, 1}, {8.0, -26.0, 0, 1}, {9.0, -26.0, 0, 1}, {10.0, -26.0, 0, 1}, {11.0, -26.0, 0, 1}, {12.0, -26.0, 0, 1}, + {-13.0, -25.0, 0, 1}, {-12.0, -25.0, 0, 1}, {-11.0, -25.0, 0, 1}, {-10.0, -25.0, 0, 1}, {-6.0, -25.0, 0, 1}, {-5.0, -25.0, 0, 1}, + {-4.0, -25.0, 0, 1}, {-3.0, -25.0, 0, 1}, {-2.0, -25.0, 0, 1}, {1.0, -25.0, 0, 1}, {2.0, -25.0, 0, 1}, {3.0, -25.0, 0, 1}, + {4.0, -25.0, 0, 1}, {5.0, -25.0, 0, 1}, {8.0, -25.0, 0, 1}, {9.0, -25.0, 0, 1}, {10.0, -25.0, 0, 1}, {11.0, -25.0, 0, 1}, + {12.0, -25.0, 0, 1}, {-13.0, -24.0, 0, 1}, {-12.0, -24.0, 0, 1}, {-11.0, -24.0, 0, 1}, {-10.0, -24.0, 0, 1}, {-6.0, -24.0, 0, 1}, + {-5.0, -24.0, 0, 1}, {-4.0, -24.0, 0, 1}, {-3.0, -24.0, 0, 1}, {-2.0, -24.0, 0, 1}, {1.0, -24.0, 0, 1}, {2.0, -24.0, 0, 1}, + {3.0, -24.0, 0, 1}, {4.0, -24.0, 0, 1}, {5.0, -24.0, 0, 1}, {8.0, -24.0, 0, 1}, {9.0, -24.0, 0, 1}, {10.0, -24.0, 0, 1}, + {11.0, -24.0, 0, 1}, {12.0, -24.0, 0, 1}, {-13.0, -23.0, 0, 1}, {-12.0, -23.0, 0, 1}, {-11.0, -23.0, 0, 1}, {-10.0, -23.0, 0, 1}, + {-6.0, -23.0, 0, 1}, {-5.0, -23.0, 0, 1}, {-4.0, -23.0, 0, 1}, {-3.0, -23.0, 0, 1}, {-2.0, -23.0, 0, 1}, {1.0, -23.0, 0, 1}, + {2.0, -23.0, 0, 1}, {3.0, -23.0, 0, 1}, {4.0, -23.0, 0, 1}, {5.0, -23.0, 0, 1}, {8.0, -23.0, 0, 1}, {9.0, -23.0, 0, 1}, + {10.0, -23.0, 0, 1}, {11.0, -23.0, 0, 1}, {12.0, -23.0, 0, 1}, {-13.0, -22.0, 0, 1}, {-12.0, -22.0, 0, 1}, {-11.0, -22.0, 0, 1}, + {-10.0, -22.0, 0, 1}, {-6.0, -22.0, 0, 1}, {-5.0, -22.0, 0, 1}, {-4.0, -22.0, 0, 1}, {-3.0, -22.0, 0, 1}, {-2.0, -22.0, 0, 1}, + {1.0, -22.0, 0, 1}, {2.0, -22.0, 0, 1}, {3.0, -22.0, 0, 1}, {4.0, -22.0, 0, 1}, {5.0, -22.0, 0, 1}, {8.0, -22.0, 0, 1}, + {9.0, -22.0, 0, 1}, {10.0, -22.0, 0, 1}, {11.0, -22.0, 0, 1}, {12.0, -22.0, 0, 1}, {-21.0, -21.0, 0, 1}, {-20.0, -21.0, 0, 1}, + {-19.0, -21.0, 0, 1}, {-18.0, -21.0, 0, 1}, {-17.0, -21.0, 0, 1}, {-16.0, -21.0, 0, 1}, {-15.0, -21.0, 0, 1}, {-14.0, -21.0, 0, 1}, + {-13.0, -21.0, 0, 1}, {-12.0, -21.0, 0, 1}, {-11.0, -21.0, 0, 1}, {-10.0, -21.0, 0, 1}, {-9.0, -21.0, 0, 1}, {-8.0, -21.0, 0, 1}, + {-7.0, -21.0, 0, 1}, {-6.0, -21.0, 0, 1}, {-5.0, -21.0, 0, 1}, {-4.0, -21.0, 0, 1}, {-3.0, -21.0, 0, 1}, {-2.0, -21.0, 0, 1}, + {-1.0, -21.0, 0, 1}, {0.0, -21.0, 0, 1}, {1.0, -21.0, 0, 1}, {2.0, -21.0, 0, 1}, {3.0, -21.0, 0, 1}, {4.0, -21.0, 0, 1}, + {5.0, -21.0, 0, 1}, {6.0, -21.0, 0, 1}, {7.0, -21.0, 0, 1}, {8.0, -21.0, 0, 1}, {9.0, -21.0, 0, 1}, {10.0, -21.0, 0, 1}, + {11.0, -21.0, 0, 1}, {12.0, -21.0, 0, 1}, {13.0, -21.0, 0, 1}, {14.0, -21.0, 0, 1}, {15.0, -21.0, 0, 1}, {16.0, -21.0, 0, 1}, + {17.0, -21.0, 0, 1}, {18.0, -21.0, 0, 1}, {19.0, -21.0, 0, 1}, {20.0, -21.0, 0, 1}, {-21.0, -20.0, 0, 1}, {-20.0, -20.0, 0, 1}, + {-19.0, -20.0, 0, 1}, {-18.0, -20.0, 0, 1}, {-17.0, -20.0, 0, 1}, {-16.0, -20.0, 0, 1}, {-15.0, -20.0, 0, 1}, {-14.0, -20.0, 0, 1}, + {-13.0, -20.0, 0, 1}, {-12.0, -20.0, 0, 1}, {-11.0, -20.0, 0, 1}, {-10.0, -20.0, 0, 1}, {-9.0, -20.0, 0, 1}, {-8.0, -20.0, 0, 1}, + {-7.0, -20.0, 0, 1}, {-6.0, -20.0, 0, 1}, {-5.0, -20.0, 0, 1}, {-4.0, -20.0, 0, 1}, {-3.0, -20.0, 0, 1}, {-2.0, -20.0, 0, 1}, + {-1.0, -20.0, 0, 1}, {0.0, -20.0, 0, 1}, {1.0, -20.0, 0, 1}, {2.0, -20.0, 0, 1}, {3.0, -20.0, 0, 1}, {4.0, -20.0, 0, 1}, + {5.0, -20.0, 0, 1}, {6.0, -20.0, 0, 1}, {7.0, -20.0, 0, 1}, {8.0, -20.0, 0, 1}, {9.0, -20.0, 0, 1}, {10.0, -20.0, 0, 1}, + {11.0, -20.0, 0, 1}, {12.0, -20.0, 0, 1}, {13.0, -20.0, 0, 1}, {14.0, -20.0, 0, 1}, {15.0, -20.0, 0, 1}, {16.0, -20.0, 0, 1}, + {17.0, -20.0, 0, 1}, {18.0, -20.0, 0, 1}, {19.0, -20.0, 0, 1}, {20.0, -20.0, 0, 1}, {-21.0, -19.0, 0, 1}, {-20.0, -19.0, 0, 1}, + {-19.0, -19.0, 0, 1}, {-18.0, -19.0, 0, 1}, {-17.0, -19.0, 0, 1}, {-16.0, -19.0, 0, 1}, {-15.0, -19.0, 0, 1}, {-14.0, -19.0, 0, 1}, + {-13.0, -19.0, 0, 1}, {-12.0, -19.0, 0, 1}, {-11.0, -19.0, 0, 1}, {-10.0, -19.0, 0, 1}, {-9.0, -19.0, 0, 1}, {-8.0, -19.0, 0, 1}, + {-7.0, -19.0, 0, 1}, {-6.0, -19.0, 0, 1}, {-5.0, -19.0, 0, 1}, {-4.0, -19.0, 0, 1}, {-3.0, -19.0, 0, 1}, {-2.0, -19.0, 0, 1}, + {-1.0, -19.0, 0, 1}, {0.0, -19.0, 0, 1}, {1.0, -19.0, 0, 1}, {2.0, -19.0, 0, 1}, {3.0, -19.0, 0, 1}, {4.0, -19.0, 0, 1}, + {5.0, -19.0, 0, 1}, {6.0, -19.0, 0, 1}, {7.0, -19.0, 0, 1}, {8.0, -19.0, 0, 1}, {9.0, -19.0, 0, 1}, {10.0, -19.0, 0, 1}, + {11.0, -19.0, 0, 1}, {12.0, -19.0, 0, 1}, {13.0, -19.0, 0, 1}, {14.0, -19.0, 0, 1}, {15.0, -19.0, 0, 1}, {16.0, -19.0, 0, 1}, + {17.0, -19.0, 0, 1}, {18.0, -19.0, 0, 1}, {19.0, -19.0, 0, 1}, {20.0, -19.0, 0, 1}, {-21.0, -18.0, 0, 1}, {-20.0, -18.0, 0, 1}, + {-19.0, -18.0, 0, 1}, {-18.0, -18.0, 0, 1}, {-17.0, -18.0, 0, 1}, {-16.0, -18.0, 0, 1}, {-15.0, -18.0, 0, 1}, {-14.0, -18.0, 0, 1}, + {-13.0, -18.0, 0, 1}, {-12.0, -18.0, 0, 1}, {-11.0, -18.0, 0, 1}, {-10.0, -18.0, 0, 1}, {-9.0, -18.0, 0, 1}, {-8.0, -18.0, 0, 1}, + {-7.0, -18.0, 0, 1}, {-6.0, -18.0, 0, 1}, {-5.0, -18.0, 0, 1}, {-4.0, -18.0, 0, 1}, {-3.0, -18.0, 0, 1}, {-2.0, -18.0, 0, 1}, + {-1.0, -18.0, 0, 1}, {0.0, -18.0, 0, 1}, {1.0, -18.0, 0, 1}, {2.0, -18.0, 0, 1}, {3.0, -18.0, 0, 1}, {4.0, -18.0, 0, 1}, + {5.0, -18.0, 0, 1}, {6.0, -18.0, 0, 1}, {7.0, -18.0, 0, 1}, {8.0, -18.0, 0, 1}, {9.0, -18.0, 0, 1}, {10.0, -18.0, 0, 1}, + {11.0, -18.0, 0, 1}, {12.0, -18.0, 0, 1}, {13.0, -18.0, 0, 1}, {14.0, -18.0, 0, 1}, {15.0, -18.0, 0, 1}, {16.0, -18.0, 0, 1}, + {17.0, -18.0, 0, 1}, {18.0, -18.0, 0, 1}, {19.0, -18.0, 0, 1}, {20.0, -18.0, 0, 1}, {-21.0, -17.0, 0, 1}, {-20.0, -17.0, 0, 1}, + {-19.0, -17.0, 0, 1}, {-18.0, -17.0, 0, 1}, {17.0, -17.0, 0, 1}, {18.0, -17.0, 0, 1}, {19.0, -17.0, 0, 1}, {20.0, -17.0, 0, 1}, + {-21.0, -16.0, 0, 1}, {-20.0, -16.0, 0, 1}, {-19.0, -16.0, 0, 1}, {-18.0, -16.0, 0, 1}, {17.0, -16.0, 0, 1}, {18.0, -16.0, 0, 1}, + {19.0, -16.0, 0, 1}, {20.0, -16.0, 0, 1}, {-21.0, -15.0, 0, 1}, {-20.0, -15.0, 0, 1}, {-19.0, -15.0, 0, 1}, {-18.0, -15.0, 0, 1}, + {17.0, -15.0, 0, 1}, {18.0, -15.0, 0, 1}, {19.0, -15.0, 0, 1}, {20.0, -15.0, 0, 1}, {-21.0, -14.0, 0, 1}, {-20.0, -14.0, 0, 1}, + {-19.0, -14.0, 0, 1}, {-18.0, -14.0, 0, 1}, {17.0, -14.0, 0, 1}, {18.0, -14.0, 0, 1}, {19.0, -14.0, 0, 1}, {20.0, -14.0, 0, 1}, + {-31.0, -13.0, 0, 1}, {-30.0, -13.0, 0, 1}, {-29.0, -13.0, 0, 1}, {-28.0, -13.0, 0, 1}, {-27.0, -13.0, 0, 1}, {-26.0, -13.0, 0, 1}, + {-25.0, -13.0, 0, 1}, {-24.0, -13.0, 0, 1}, {-23.0, -13.0, 0, 1}, {-22.0, -13.0, 0, 1}, {-21.0, -13.0, 0, 1}, {-20.0, -13.0, 0, 1}, + {-19.0, -13.0, 0, 1}, {-18.0, -13.0, 0, 1}, {17.0, -13.0, 0, 1}, {18.0, -13.0, 0, 1}, {19.0, -13.0, 0, 1}, {20.0, -13.0, 0, 1}, + {21.0, -13.0, 0, 1}, {22.0, -13.0, 0, 1}, {23.0, -13.0, 0, 1}, {24.0, -13.0, 0, 1}, {25.0, -13.0, 0, 1}, {26.0, -13.0, 0, 1}, + {27.0, -13.0, 0, 1}, {28.0, -13.0, 0, 1}, {29.0, -13.0, 0, 1}, {30.0, -13.0, 0, 1}, {-32.0, -12.0, 0, 1}, {-31.0, -12.0, 0, 1}, + {-30.0, -12.0, 0, 1}, {-29.0, -12.0, 0, 1}, {-28.0, -12.0, 0, 1}, {-27.0, -12.0, 0, 1}, {-26.0, -12.0, 0, 1}, {-25.0, -12.0, 0, 1}, + {-24.0, -12.0, 0, 1}, {-23.0, -12.0, 0, 1}, {-22.0, -12.0, 0, 1}, {-21.0, -12.0, 0, 1}, {-20.0, -12.0, 0, 1}, {-19.0, -12.0, 0, 1}, + {-18.0, -12.0, 0, 1}, {-12.0, -12.0, 0, 1}, {-11.0, -12.0, 0, 1}, {-10.0, -12.0, 0, 1}, {-9.0, -12.0, 0, 1}, {-8.0, -12.0, 0, 1}, + {-7.0, -12.0, 0, 1}, {-6.0, -12.0, 0, 1}, {-5.0, -12.0, 0, 1}, {-4.0, -12.0, 0, 1}, {-3.0, -12.0, 0, 1}, {-2.0, -12.0, 0, 1}, + {-1.0, -12.0, 0, 1}, {0.0, -12.0, 0, 1}, {1.0, -12.0, 0, 1}, {2.0, -12.0, 0, 1}, {3.0, -12.0, 0, 1}, {4.0, -12.0, 0, 1}, + {5.0, -12.0, 0, 1}, {6.0, -12.0, 0, 1}, {7.0, -12.0, 0, 1}, {8.0, -12.0, 0, 1}, {9.0, -12.0, 0, 1}, {10.0, -12.0, 0, 1}, + {11.0, -12.0, 0, 1}, {17.0, -12.0, 0, 1}, {18.0, -12.0, 0, 1}, {19.0, -12.0, 0, 1}, {20.0, -12.0, 0, 1}, {21.0, -12.0, 0, 1}, + {22.0, -12.0, 0, 1}, {23.0, -12.0, 0, 1}, {24.0, -12.0, 0, 1}, {25.0, -12.0, 0, 1}, {26.0, -12.0, 0, 1}, {27.0, -12.0, 0, 1}, + {28.0, -12.0, 0, 1}, {29.0, -12.0, 0, 1}, {30.0, -12.0, 0, 1}, {31.0, -12.0, 0, 1}, {-32.0, -11.0, 0, 1}, {-31.0, -11.0, 0, 1}, + {-30.0, -11.0, 0, 1}, {-29.0, -11.0, 0, 1}, {-28.0, -11.0, 0, 1}, {-27.0, -11.0, 0, 1}, {-26.0, -11.0, 0, 1}, {-25.0, -11.0, 0, 1}, + {-24.0, -11.0, 0, 1}, {-23.0, -11.0, 0, 1}, {-22.0, -11.0, 0, 1}, {-21.0, -11.0, 0, 1}, {-20.0, -11.0, 0, 1}, {-19.0, -11.0, 0, 1}, + {-18.0, -11.0, 0, 1}, {-12.0, -11.0, 0, 1}, {-11.0, -11.0, 0, 1}, {-10.0, -11.0, 0, 1}, {-9.0, -11.0, 0, 1}, {-8.0, -11.0, 0, 1}, + {-7.0, -11.0, 0, 1}, {-6.0, -11.0, 0, 1}, {-5.0, -11.0, 0, 1}, {-4.0, -11.0, 0, 1}, {-3.0, -11.0, 0, 1}, {-2.0, -11.0, 0, 1}, + {-1.0, -11.0, 0, 1}, {0.0, -11.0, 0, 1}, {1.0, -11.0, 0, 1}, {2.0, -11.0, 0, 1}, {3.0, -11.0, 0, 1}, {4.0, -11.0, 0, 1}, + {5.0, -11.0, 0, 1}, {6.0, -11.0, 0, 1}, {7.0, -11.0, 0, 1}, {8.0, -11.0, 0, 1}, {9.0, -11.0, 0, 1}, {10.0, -11.0, 0, 1}, + {11.0, -11.0, 0, 1}, {17.0, -11.0, 0, 1}, {18.0, -11.0, 0, 1}, {19.0, -11.0, 0, 1}, {20.0, -11.0, 0, 1}, {21.0, -11.0, 0, 1}, + {22.0, -11.0, 0, 1}, {23.0, -11.0, 0, 1}, {24.0, -11.0, 0, 1}, {25.0, -11.0, 0, 1}, {26.0, -11.0, 0, 1}, {27.0, -11.0, 0, 1}, + {28.0, -11.0, 0, 1}, {29.0, -11.0, 0, 1}, {30.0, -11.0, 0, 1}, {31.0, -11.0, 0, 1}, {-32.0, -10.0, 0, 1}, {-31.0, -10.0, 0, 1}, + {-30.0, -10.0, 0, 1}, {-29.0, -10.0, 0, 1}, {-28.0, -10.0, 0, 1}, {-27.0, -10.0, 0, 1}, {-26.0, -10.0, 0, 1}, {-25.0, -10.0, 0, 1}, + {-24.0, -10.0, 0, 1}, {-23.0, -10.0, 0, 1}, {-22.0, -10.0, 0, 1}, {-21.0, -10.0, 0, 1}, {-20.0, -10.0, 0, 1}, {-19.0, -10.0, 0, 1}, + {-18.0, -10.0, 0, 1}, {-12.0, -10.0, 0, 1}, {-11.0, -10.0, 0, 1}, {-10.0, -10.0, 0, 1}, {-9.0, -10.0, 0, 1}, {-8.0, -10.0, 0, 1}, + {-7.0, -10.0, 0, 1}, {-6.0, -10.0, 0, 1}, {-5.0, -10.0, 0, 1}, {-4.0, -10.0, 0, 1}, {-3.0, -10.0, 0, 1}, {-2.0, -10.0, 0, 1}, + {-1.0, -10.0, 0, 1}, {0.0, -10.0, 0, 1}, {1.0, -10.0, 0, 1}, {2.0, -10.0, 0, 1}, {3.0, -10.0, 0, 1}, {4.0, -10.0, 0, 1}, + {5.0, -10.0, 0, 1}, {6.0, -10.0, 0, 1}, {7.0, -10.0, 0, 1}, {8.0, -10.0, 0, 1}, {9.0, -10.0, 0, 1}, {10.0, -10.0, 0, 1}, + {11.0, -10.0, 0, 1}, {17.0, -10.0, 0, 1}, {18.0, -10.0, 0, 1}, {19.0, -10.0, 0, 1}, {20.0, -10.0, 0, 1}, {21.0, -10.0, 0, 1}, + {22.0, -10.0, 0, 1}, {23.0, -10.0, 0, 1}, {24.0, -10.0, 0, 1}, {25.0, -10.0, 0, 1}, {26.0, -10.0, 0, 1}, {27.0, -10.0, 0, 1}, + {28.0, -10.0, 0, 1}, {29.0, -10.0, 0, 1}, {30.0, -10.0, 0, 1}, {31.0, -10.0, 0, 1}, {-21.0, -9.0, 0, 1}, {-20.0, -9.0, 0, 1}, + {-19.0, -9.0, 0, 1}, {-18.0, -9.0, 0, 1}, {-12.0, -9.0, 0, 1}, {-11.0, -9.0, 0, 1}, {-10.0, -9.0, 0, 1}, {-9.0, -9.0, 0, 1}, + {-8.0, -9.0, 0, 1}, {-7.0, -9.0, 0, 1}, {-6.0, -9.0, 0, 1}, {-5.0, -9.0, 0, 1}, {-4.0, -9.0, 0, 1}, {-3.0, -9.0, 0, 1}, + {-2.0, -9.0, 0, 1}, {-1.0, -9.0, 0, 1}, {0.0, -9.0, 0, 1}, {1.0, -9.0, 0, 1}, {2.0, -9.0, 0, 1}, {3.0, -9.0, 0, 1}, + {4.0, -9.0, 0, 1}, {5.0, -9.0, 0, 1}, {6.0, -9.0, 0, 1}, {7.0, -9.0, 0, 1}, {8.0, -9.0, 0, 1}, {9.0, -9.0, 0, 1}, + {10.0, -9.0, 0, 1}, {11.0, -9.0, 0, 1}, {17.0, -9.0, 0, 1}, {18.0, -9.0, 0, 1}, {19.0, -9.0, 0, 1}, {20.0, -9.0, 0, 1}, + {-21.0, -8.0, 0, 1}, {-20.0, -8.0, 0, 1}, {-19.0, -8.0, 0, 1}, {-18.0, -8.0, 0, 1}, {-12.0, -8.0, 0, 1}, {-11.0, -8.0, 0, 1}, + {-10.0, -8.0, 0, 1}, {-9.0, -8.0, 0, 1}, {8.0, -8.0, 0, 1}, {9.0, -8.0, 0, 1}, {10.0, -8.0, 0, 1}, {11.0, -8.0, 0, 1}, + {17.0, -8.0, 0, 1}, {18.0, -8.0, 0, 1}, {19.0, -8.0, 0, 1}, {20.0, -8.0, 0, 1}, {-21.0, -7.0, 0, 1}, {-20.0, -7.0, 0, 1}, + {-19.0, -7.0, 0, 1}, {-18.0, -7.0, 0, 1}, {-12.0, -7.0, 0, 1}, {-11.0, -7.0, 0, 1}, {-10.0, -7.0, 0, 1}, {-9.0, -7.0, 0, 1}, + {8.0, -7.0, 0, 1}, {9.0, -7.0, 0, 1}, {10.0, -7.0, 0, 1}, {11.0, -7.0, 0, 1}, {17.0, -7.0, 0, 1}, {18.0, -7.0, 0, 1}, + {19.0, -7.0, 0, 1}, {20.0, -7.0, 0, 1}, {-31.0, -6.0, 0, 1}, {-30.0, -6.0, 0, 1}, {-29.0, -6.0, 0, 1}, {-28.0, -6.0, 0, 1}, + {-27.0, -6.0, 0, 1}, {-26.0, -6.0, 0, 1}, {-25.0, -6.0, 0, 1}, {-24.0, -6.0, 0, 1}, {-23.0, -6.0, 0, 1}, {-22.0, -6.0, 0, 1}, + {-21.0, -6.0, 0, 1}, {-20.0, -6.0, 0, 1}, {-19.0, -6.0, 0, 1}, {-18.0, -6.0, 0, 1}, {-12.0, -6.0, 0, 1}, {-11.0, -6.0, 0, 1}, + {-10.0, -6.0, 0, 1}, {-9.0, -6.0, 0, 1}, {8.0, -6.0, 0, 1}, {9.0, -6.0, 0, 1}, {10.0, -6.0, 0, 1}, {11.0, -6.0, 0, 1}, + {17.0, -6.0, 0, 1}, {18.0, -6.0, 0, 1}, {19.0, -6.0, 0, 1}, {20.0, -6.0, 0, 1}, {21.0, -6.0, 0, 1}, {22.0, -6.0, 0, 1}, + {23.0, -6.0, 0, 1}, {24.0, -6.0, 0, 1}, {25.0, -6.0, 0, 1}, {26.0, -6.0, 0, 1}, {27.0, -6.0, 0, 1}, {28.0, -6.0, 0, 1}, + {29.0, -6.0, 0, 1}, {30.0, -6.0, 0, 1}, {-32.0, -5.0, 0, 1}, {-31.0, -5.0, 0, 1}, {-30.0, -5.0, 0, 1}, {-29.0, -5.0, 0, 1}, + {-28.0, -5.0, 0, 1}, {-27.0, -5.0, 0, 1}, {-26.0, -5.0, 0, 1}, {-25.0, -5.0, 0, 1}, {-24.0, -5.0, 0, 1}, {-23.0, -5.0, 0, 1}, + {-22.0, -5.0, 0, 1}, {-21.0, -5.0, 0, 1}, {-20.0, -5.0, 0, 1}, {-19.0, -5.0, 0, 1}, {-18.0, -5.0, 0, 1}, {-12.0, -5.0, 0, 1}, + {-11.0, -5.0, 0, 1}, {-10.0, -5.0, 0, 1}, {-9.0, -5.0, 0, 1}, {8.0, -5.0, 0, 1}, {9.0, -5.0, 0, 1}, {10.0, -5.0, 0, 1}, + {11.0, -5.0, 0, 1}, {17.0, -5.0, 0, 1}, {18.0, -5.0, 0, 1}, {19.0, -5.0, 0, 1}, {20.0, -5.0, 0, 1}, {21.0, -5.0, 0, 1}, + {22.0, -5.0, 0, 1}, {23.0, -5.0, 0, 1}, {24.0, -5.0, 0, 1}, {25.0, -5.0, 0, 1}, {26.0, -5.0, 0, 1}, {27.0, -5.0, 0, 1}, + {28.0, -5.0, 0, 1}, {29.0, -5.0, 0, 1}, {30.0, -5.0, 0, 1}, {31.0, -5.0, 0, 1}, {-32.0, -4.0, 0, 1}, {-31.0, -4.0, 0, 1}, + {-30.0, -4.0, 0, 1}, {-29.0, -4.0, 0, 1}, {-28.0, -4.0, 0, 1}, {-27.0, -4.0, 0, 1}, {-26.0, -4.0, 0, 1}, {-25.0, -4.0, 0, 1}, + {-24.0, -4.0, 0, 1}, {-23.0, -4.0, 0, 1}, {-22.0, -4.0, 0, 1}, {-21.0, -4.0, 0, 1}, {-20.0, -4.0, 0, 1}, {-19.0, -4.0, 0, 1}, + {-18.0, -4.0, 0, 1}, {-12.0, -4.0, 0, 1}, {-11.0, -4.0, 0, 1}, {-10.0, -4.0, 0, 1}, {-9.0, -4.0, 0, 1}, {8.0, -4.0, 0, 1}, + {9.0, -4.0, 0, 1}, {10.0, -4.0, 0, 1}, {11.0, -4.0, 0, 1}, {17.0, -4.0, 0, 1}, {18.0, -4.0, 0, 1}, {19.0, -4.0, 0, 1}, + {20.0, -4.0, 0, 1}, {21.0, -4.0, 0, 1}, {22.0, -4.0, 0, 1}, {23.0, -4.0, 0, 1}, {24.0, -4.0, 0, 1}, {25.0, -4.0, 0, 1}, + {26.0, -4.0, 0, 1}, {27.0, -4.0, 0, 1}, {28.0, -4.0, 0, 1}, {29.0, -4.0, 0, 1}, {30.0, -4.0, 0, 1}, {31.0, -4.0, 0, 1}, + {-32.0, -3.0, 0, 1}, {-31.0, -3.0, 0, 1}, {-30.0, -3.0, 0, 1}, {-29.0, -3.0, 0, 1}, {-28.0, -3.0, 0, 1}, {-27.0, -3.0, 0, 1}, + {-26.0, -3.0, 0, 1}, {-25.0, -3.0, 0, 1}, {-24.0, -3.0, 0, 1}, {-23.0, -3.0, 0, 1}, {-22.0, -3.0, 0, 1}, {-21.0, -3.0, 0, 1}, + {-20.0, -3.0, 0, 1}, {-19.0, -3.0, 0, 1}, {-18.0, -3.0, 0, 1}, {-12.0, -3.0, 0, 1}, {-11.0, -3.0, 0, 1}, {-10.0, -3.0, 0, 1}, + {-9.0, -3.0, 0, 1}, {8.0, -3.0, 0, 1}, {9.0, -3.0, 0, 1}, {10.0, -3.0, 0, 1}, {11.0, -3.0, 0, 1}, {17.0, -3.0, 0, 1}, + {18.0, -3.0, 0, 1}, {19.0, -3.0, 0, 1}, {20.0, -3.0, 0, 1}, {21.0, -3.0, 0, 1}, {22.0, -3.0, 0, 1}, {23.0, -3.0, 0, 1}, + {24.0, -3.0, 0, 1}, {25.0, -3.0, 0, 1}, {26.0, -3.0, 0, 1}, {27.0, -3.0, 0, 1}, {28.0, -3.0, 0, 1}, {29.0, -3.0, 0, 1}, + {30.0, -3.0, 0, 1}, {31.0, -3.0, 0, 1}, {-31.0, -2.0, 0, 1}, {-30.0, -2.0, 0, 1}, {-29.0, -2.0, 0, 1}, {-28.0, -2.0, 0, 1}, + {-27.0, -2.0, 0, 1}, {-26.0, -2.0, 0, 1}, {-25.0, -2.0, 0, 1}, {-24.0, -2.0, 0, 1}, {-23.0, -2.0, 0, 1}, {-22.0, -2.0, 0, 1}, + {-21.0, -2.0, 0, 1}, {-20.0, -2.0, 0, 1}, {-19.0, -2.0, 0, 1}, {-18.0, -2.0, 0, 1}, {-12.0, -2.0, 0, 1}, {-11.0, -2.0, 0, 1}, + {-10.0, -2.0, 0, 1}, {-9.0, -2.0, 0, 1}, {8.0, -2.0, 0, 1}, {9.0, -2.0, 0, 1}, {10.0, -2.0, 0, 1}, {11.0, -2.0, 0, 1}, + {17.0, -2.0, 0, 1}, {18.0, -2.0, 0, 1}, {19.0, -2.0, 0, 1}, {20.0, -2.0, 0, 1}, {21.0, -2.0, 0, 1}, {22.0, -2.0, 0, 1}, + {23.0, -2.0, 0, 1}, {24.0, -2.0, 0, 1}, {25.0, -2.0, 0, 1}, {26.0, -2.0, 0, 1}, {27.0, -2.0, 0, 1}, {28.0, -2.0, 0, 1}, + {29.0, -2.0, 0, 1}, {-21.0, -1.0, 0, 1}, {-20.0, -1.0, 0, 1}, {-19.0, -1.0, 0, 1}, {-18.0, -1.0, 0, 1}, {-12.0, -1.0, 0, 1}, + {-11.0, -1.0, 0, 1}, {-10.0, -1.0, 0, 1}, {-9.0, -1.0, 0, 1}, {8.0, -1.0, 0, 1}, {9.0, -1.0, 0, 1}, {10.0, -1.0, 0, 1}, + {11.0, -1.0, 0, 1}, {17.0, -1.0, 0, 1}, {18.0, -1.0, 0, 1}, {19.0, -1.0, 0, 1}, {20.0, -1.0, 0, 1}, {-21.0, 0.0, 0, 1}, + {-20.0, 0.0, 0, 1}, {-19.0, 0.0, 0, 1}, {-18.0, 0.0, 0, 1}, {-12.0, 0.0, 0, 1}, {-11.0, 0.0, 0, 1}, {-10.0, 0.0, 0, 1}, + {-9.0, 0.0, 0, 1}, {8.0, 0.0, 0, 1}, {9.0, 0.0, 0, 1}, {10.0, 0.0, 0, 1}, {11.0, 0.0, 0, 1}, {17.0, 0.0, 0, 1}, + {18.0, 0.0, 0, 1}, {19.0, 0.0, 0, 1}, {20.0, 0.0, 0, 1}, {-31.0, 1.0, 0, 1}, {-30.0, 1.0, 0, 1}, {-29.0, 1.0, 0, 1}, + {-28.0, 1.0, 0, 1}, {-27.0, 1.0, 0, 1}, {-26.0, 1.0, 0, 1}, {-25.0, 1.0, 0, 1}, {-24.0, 1.0, 0, 1}, {-23.0, 1.0, 0, 1}, + {-22.0, 1.0, 0, 1}, {-21.0, 1.0, 0, 1}, {-20.0, 1.0, 0, 1}, {-19.0, 1.0, 0, 1}, {-18.0, 1.0, 0, 1}, {-12.0, 1.0, 0, 1}, + {-11.0, 1.0, 0, 1}, {-10.0, 1.0, 0, 1}, {-9.0, 1.0, 0, 1}, {8.0, 1.0, 0, 1}, {9.0, 1.0, 0, 1}, {10.0, 1.0, 0, 1}, + {11.0, 1.0, 0, 1}, {17.0, 1.0, 0, 1}, {18.0, 1.0, 0, 1}, {19.0, 1.0, 0, 1}, {20.0, 1.0, 0, 1}, {21.0, 1.0, 0, 1}, + {22.0, 1.0, 0, 1}, {23.0, 1.0, 0, 1}, {24.0, 1.0, 0, 1}, {25.0, 1.0, 0, 1}, {26.0, 1.0, 0, 1}, {27.0, 1.0, 0, 1}, + {28.0, 1.0, 0, 1}, {29.0, 1.0, 0, 1}, {30.0, 1.0, 0, 1}, {-32.0, 2.0, 0, 1}, {-31.0, 2.0, 0, 1}, {-30.0, 2.0, 0, 1}, + {-29.0, 2.0, 0, 1}, {-28.0, 2.0, 0, 1}, {-27.0, 2.0, 0, 1}, {-26.0, 2.0, 0, 1}, {-25.0, 2.0, 0, 1}, {-24.0, 2.0, 0, 1}, + {-23.0, 2.0, 0, 1}, {-22.0, 2.0, 0, 1}, {-21.0, 2.0, 0, 1}, {-20.0, 2.0, 0, 1}, {-19.0, 2.0, 0, 1}, {-18.0, 2.0, 0, 1}, + {-12.0, 2.0, 0, 1}, {-11.0, 2.0, 0, 1}, {-10.0, 2.0, 0, 1}, {-9.0, 2.0, 0, 1}, {8.0, 2.0, 0, 1}, {9.0, 2.0, 0, 1}, + {10.0, 2.0, 0, 1}, {11.0, 2.0, 0, 1}, {17.0, 2.0, 0, 1}, {18.0, 2.0, 0, 1}, {19.0, 2.0, 0, 1}, {20.0, 2.0, 0, 1}, + {21.0, 2.0, 0, 1}, {22.0, 2.0, 0, 1}, {23.0, 2.0, 0, 1}, {24.0, 2.0, 0, 1}, {25.0, 2.0, 0, 1}, {26.0, 2.0, 0, 1}, + {27.0, 2.0, 0, 1}, {28.0, 2.0, 0, 1}, {29.0, 2.0, 0, 1}, {30.0, 2.0, 0, 1}, {31.0, 2.0, 0, 1}, {-32.0, 3.0, 0, 1}, + {-31.0, 3.0, 0, 1}, {-30.0, 3.0, 0, 1}, {-29.0, 3.0, 0, 1}, {-28.0, 3.0, 0, 1}, {-27.0, 3.0, 0, 1}, {-26.0, 3.0, 0, 1}, + {-25.0, 3.0, 0, 1}, {-24.0, 3.0, 0, 1}, {-23.0, 3.0, 0, 1}, {-22.0, 3.0, 0, 1}, {-21.0, 3.0, 0, 1}, {-20.0, 3.0, 0, 1}, + {-19.0, 3.0, 0, 1}, {-18.0, 3.0, 0, 1}, {-12.0, 3.0, 0, 1}, {-11.0, 3.0, 0, 1}, {-10.0, 3.0, 0, 1}, {-9.0, 3.0, 0, 1}, + {8.0, 3.0, 0, 1}, {9.0, 3.0, 0, 1}, {10.0, 3.0, 0, 1}, {11.0, 3.0, 0, 1}, {17.0, 3.0, 0, 1}, {18.0, 3.0, 0, 1}, + {19.0, 3.0, 0, 1}, {20.0, 3.0, 0, 1}, {21.0, 3.0, 0, 1}, {22.0, 3.0, 0, 1}, {23.0, 3.0, 0, 1}, {24.0, 3.0, 0, 1}, + {25.0, 3.0, 0, 1}, {26.0, 3.0, 0, 1}, {27.0, 3.0, 0, 1}, {28.0, 3.0, 0, 1}, {29.0, 3.0, 0, 1}, {30.0, 3.0, 0, 1}, + {31.0, 3.0, 0, 1}, {-32.0, 4.0, 0, 1}, {-31.0, 4.0, 0, 1}, {-30.0, 4.0, 0, 1}, {-29.0, 4.0, 0, 1}, {-28.0, 4.0, 0, 1}, + {-27.0, 4.0, 0, 1}, {-26.0, 4.0, 0, 1}, {-25.0, 4.0, 0, 1}, {-24.0, 4.0, 0, 1}, {-23.0, 4.0, 0, 1}, {-22.0, 4.0, 0, 1}, + {-21.0, 4.0, 0, 1}, {-20.0, 4.0, 0, 1}, {-19.0, 4.0, 0, 1}, {-18.0, 4.0, 0, 1}, {-12.0, 4.0, 0, 1}, {-11.0, 4.0, 0, 1}, + {-10.0, 4.0, 0, 1}, {-9.0, 4.0, 0, 1}, {8.0, 4.0, 0, 1}, {9.0, 4.0, 0, 1}, {10.0, 4.0, 0, 1}, {11.0, 4.0, 0, 1}, + {17.0, 4.0, 0, 1}, {18.0, 4.0, 0, 1}, {19.0, 4.0, 0, 1}, {20.0, 4.0, 0, 1}, {21.0, 4.0, 0, 1}, {22.0, 4.0, 0, 1}, + {23.0, 4.0, 0, 1}, {24.0, 4.0, 0, 1}, {25.0, 4.0, 0, 1}, {26.0, 4.0, 0, 1}, {27.0, 4.0, 0, 1}, {28.0, 4.0, 0, 1}, + {29.0, 4.0, 0, 1}, {30.0, 4.0, 0, 1}, {31.0, 4.0, 0, 1}, {-31.0, 5.0, 0, 1}, {-30.0, 5.0, 0, 1}, {-29.0, 5.0, 0, 1}, + {-28.0, 5.0, 0, 1}, {-27.0, 5.0, 0, 1}, {-26.0, 5.0, 0, 1}, {-25.0, 5.0, 0, 1}, {-24.0, 5.0, 0, 1}, {-23.0, 5.0, 0, 1}, + {-22.0, 5.0, 0, 1}, {-21.0, 5.0, 0, 1}, {-20.0, 5.0, 0, 1}, {-19.0, 5.0, 0, 1}, {-18.0, 5.0, 0, 1}, {-12.0, 5.0, 0, 1}, + {-11.0, 5.0, 0, 1}, {-10.0, 5.0, 0, 1}, {-9.0, 5.0, 0, 1}, {8.0, 5.0, 0, 1}, {9.0, 5.0, 0, 1}, {10.0, 5.0, 0, 1}, + {11.0, 5.0, 0, 1}, {17.0, 5.0, 0, 1}, {18.0, 5.0, 0, 1}, {19.0, 5.0, 0, 1}, {20.0, 5.0, 0, 1}, {21.0, 5.0, 0, 1}, + {22.0, 5.0, 0, 1}, {23.0, 5.0, 0, 1}, {24.0, 5.0, 0, 1}, {25.0, 5.0, 0, 1}, {26.0, 5.0, 0, 1}, {27.0, 5.0, 0, 1}, + {28.0, 5.0, 0, 1}, {29.0, 5.0, 0, 1}, {30.0, 5.0, 0, 1}, {-21.0, 6.0, 0, 1}, {-20.0, 6.0, 0, 1}, {-19.0, 6.0, 0, 1}, + {-18.0, 6.0, 0, 1}, {-12.0, 6.0, 0, 1}, {-11.0, 6.0, 0, 1}, {-10.0, 6.0, 0, 1}, {-9.0, 6.0, 0, 1}, {8.0, 6.0, 0, 1}, + {9.0, 6.0, 0, 1}, {10.0, 6.0, 0, 1}, {11.0, 6.0, 0, 1}, {17.0, 6.0, 0, 1}, {18.0, 6.0, 0, 1}, {19.0, 6.0, 0, 1}, + {20.0, 6.0, 0, 1}, {-21.0, 7.0, 0, 1}, {-20.0, 7.0, 0, 1}, {-19.0, 7.0, 0, 1}, {-18.0, 7.0, 0, 1}, {-12.0, 7.0, 0, 1}, + {-11.0, 7.0, 0, 1}, {-10.0, 7.0, 0, 1}, {-9.0, 7.0, 0, 1}, {8.0, 7.0, 0, 1}, {9.0, 7.0, 0, 1}, {10.0, 7.0, 0, 1}, + {11.0, 7.0, 0, 1}, {17.0, 7.0, 0, 1}, {18.0, 7.0, 0, 1}, {19.0, 7.0, 0, 1}, {20.0, 7.0, 0, 1}, {-31.0, 8.0, 0, 1}, + {-30.0, 8.0, 0, 1}, {-29.0, 8.0, 0, 1}, {-28.0, 8.0, 0, 1}, {-27.0, 8.0, 0, 1}, {-26.0, 8.0, 0, 1}, {-25.0, 8.0, 0, 1}, + {-24.0, 8.0, 0, 1}, {-23.0, 8.0, 0, 1}, {-22.0, 8.0, 0, 1}, {-21.0, 8.0, 0, 1}, {-20.0, 8.0, 0, 1}, {-19.0, 8.0, 0, 1}, + {-18.0, 8.0, 0, 1}, {-12.0, 8.0, 0, 1}, {-11.0, 8.0, 0, 1}, {-10.0, 8.0, 0, 1}, {-9.0, 8.0, 0, 1}, {-8.0, 8.0, 0, 1}, + {-7.0, 8.0, 0, 1}, {-6.0, 8.0, 0, 1}, {-5.0, 8.0, 0, 1}, {-4.0, 8.0, 0, 1}, {-3.0, 8.0, 0, 1}, {-2.0, 8.0, 0, 1}, + {-1.0, 8.0, 0, 1}, {0.0, 8.0, 0, 1}, {1.0, 8.0, 0, 1}, {2.0, 8.0, 0, 1}, {3.0, 8.0, 0, 1}, {4.0, 8.0, 0, 1}, + {5.0, 8.0, 0, 1}, {6.0, 8.0, 0, 1}, {7.0, 8.0, 0, 1}, {8.0, 8.0, 0, 1}, {9.0, 8.0, 0, 1}, {10.0, 8.0, 0, 1}, + {11.0, 8.0, 0, 1}, {17.0, 8.0, 0, 1}, {18.0, 8.0, 0, 1}, {19.0, 8.0, 0, 1}, {20.0, 8.0, 0, 1}, {21.0, 8.0, 0, 1}, + {22.0, 8.0, 0, 1}, {23.0, 8.0, 0, 1}, {24.0, 8.0, 0, 1}, {25.0, 8.0, 0, 1}, {26.0, 8.0, 0, 1}, {27.0, 8.0, 0, 1}, + {28.0, 8.0, 0, 1}, {29.0, 8.0, 0, 1}, {-32.0, 9.0, 0, 1}, {-31.0, 9.0, 0, 1}, {-30.0, 9.0, 0, 1}, {-29.0, 9.0, 0, 1}, + {-28.0, 9.0, 0, 1}, {-27.0, 9.0, 0, 1}, {-26.0, 9.0, 0, 1}, {-25.0, 9.0, 0, 1}, {-24.0, 9.0, 0, 1}, {-23.0, 9.0, 0, 1}, + {-22.0, 9.0, 0, 1}, {-21.0, 9.0, 0, 1}, {-20.0, 9.0, 0, 1}, {-19.0, 9.0, 0, 1}, {-18.0, 9.0, 0, 1}, {-12.0, 9.0, 0, 1}, + {-11.0, 9.0, 0, 1}, {-10.0, 9.0, 0, 1}, {-9.0, 9.0, 0, 1}, {-8.0, 9.0, 0, 1}, {-7.0, 9.0, 0, 1}, {-6.0, 9.0, 0, 1}, + {-5.0, 9.0, 0, 1}, {-4.0, 9.0, 0, 1}, {-3.0, 9.0, 0, 1}, {-2.0, 9.0, 0, 1}, {-1.0, 9.0, 0, 1}, {0.0, 9.0, 0, 1}, + {1.0, 9.0, 0, 1}, {2.0, 9.0, 0, 1}, {3.0, 9.0, 0, 1}, {4.0, 9.0, 0, 1}, {5.0, 9.0, 0, 1}, {6.0, 9.0, 0, 1}, + {7.0, 9.0, 0, 1}, {8.0, 9.0, 0, 1}, {9.0, 9.0, 0, 1}, {10.0, 9.0, 0, 1}, {11.0, 9.0, 0, 1}, {17.0, 9.0, 0, 1}, + {18.0, 9.0, 0, 1}, {19.0, 9.0, 0, 1}, {20.0, 9.0, 0, 1}, {21.0, 9.0, 0, 1}, {22.0, 9.0, 0, 1}, {23.0, 9.0, 0, 1}, + {24.0, 9.0, 0, 1}, {25.0, 9.0, 0, 1}, {26.0, 9.0, 0, 1}, {27.0, 9.0, 0, 1}, {28.0, 9.0, 0, 1}, {29.0, 9.0, 0, 1}, + {30.0, 9.0, 0, 1}, {31.0, 9.0, 0, 1}, {-32.0, 10.0, 0, 1}, {-31.0, 10.0, 0, 1}, {-30.0, 10.0, 0, 1}, {-29.0, 10.0, 0, 1}, + {-28.0, 10.0, 0, 1}, {-27.0, 10.0, 0, 1}, {-26.0, 10.0, 0, 1}, {-25.0, 10.0, 0, 1}, {-24.0, 10.0, 0, 1}, {-23.0, 10.0, 0, 1}, + {-22.0, 10.0, 0, 1}, {-21.0, 10.0, 0, 1}, {-20.0, 10.0, 0, 1}, {-19.0, 10.0, 0, 1}, {-18.0, 10.0, 0, 1}, {-12.0, 10.0, 0, 1}, + {-11.0, 10.0, 0, 1}, {-10.0, 10.0, 0, 1}, {-9.0, 10.0, 0, 1}, {-8.0, 10.0, 0, 1}, {-7.0, 10.0, 0, 1}, {-6.0, 10.0, 0, 1}, + {-5.0, 10.0, 0, 1}, {-4.0, 10.0, 0, 1}, {-3.0, 10.0, 0, 1}, {-2.0, 10.0, 0, 1}, {-1.0, 10.0, 0, 1}, {0.0, 10.0, 0, 1}, + {1.0, 10.0, 0, 1}, {2.0, 10.0, 0, 1}, {3.0, 10.0, 0, 1}, {4.0, 10.0, 0, 1}, {5.0, 10.0, 0, 1}, {6.0, 10.0, 0, 1}, + {7.0, 10.0, 0, 1}, {8.0, 10.0, 0, 1}, {9.0, 10.0, 0, 1}, {10.0, 10.0, 0, 1}, {11.0, 10.0, 0, 1}, {17.0, 10.0, 0, 1}, + {18.0, 10.0, 0, 1}, {19.0, 10.0, 0, 1}, {20.0, 10.0, 0, 1}, {21.0, 10.0, 0, 1}, {22.0, 10.0, 0, 1}, {23.0, 10.0, 0, 1}, + {24.0, 10.0, 0, 1}, {25.0, 10.0, 0, 1}, {26.0, 10.0, 0, 1}, {27.0, 10.0, 0, 1}, {28.0, 10.0, 0, 1}, {29.0, 10.0, 0, 1}, + {30.0, 10.0, 0, 1}, {31.0, 10.0, 0, 1}, {-32.0, 11.0, 0, 1}, {-31.0, 11.0, 0, 1}, {-30.0, 11.0, 0, 1}, {-29.0, 11.0, 0, 1}, + {-28.0, 11.0, 0, 1}, {-27.0, 11.0, 0, 1}, {-26.0, 11.0, 0, 1}, {-25.0, 11.0, 0, 1}, {-24.0, 11.0, 0, 1}, {-23.0, 11.0, 0, 1}, + {-22.0, 11.0, 0, 1}, {-21.0, 11.0, 0, 1}, {-20.0, 11.0, 0, 1}, {-19.0, 11.0, 0, 1}, {-18.0, 11.0, 0, 1}, {-12.0, 11.0, 0, 1}, + {-11.0, 11.0, 0, 1}, {-10.0, 11.0, 0, 1}, {-9.0, 11.0, 0, 1}, {-8.0, 11.0, 0, 1}, {-7.0, 11.0, 0, 1}, {-6.0, 11.0, 0, 1}, + {-5.0, 11.0, 0, 1}, {-4.0, 11.0, 0, 1}, {-3.0, 11.0, 0, 1}, {-2.0, 11.0, 0, 1}, {-1.0, 11.0, 0, 1}, {0.0, 11.0, 0, 1}, + {1.0, 11.0, 0, 1}, {2.0, 11.0, 0, 1}, {3.0, 11.0, 0, 1}, {4.0, 11.0, 0, 1}, {5.0, 11.0, 0, 1}, {6.0, 11.0, 0, 1}, + {7.0, 11.0, 0, 1}, {8.0, 11.0, 0, 1}, {9.0, 11.0, 0, 1}, {10.0, 11.0, 0, 1}, {11.0, 11.0, 0, 1}, {17.0, 11.0, 0, 1}, + {18.0, 11.0, 0, 1}, {19.0, 11.0, 0, 1}, {20.0, 11.0, 0, 1}, {21.0, 11.0, 0, 1}, {22.0, 11.0, 0, 1}, {23.0, 11.0, 0, 1}, + {24.0, 11.0, 0, 1}, {25.0, 11.0, 0, 1}, {26.0, 11.0, 0, 1}, {27.0, 11.0, 0, 1}, {28.0, 11.0, 0, 1}, {29.0, 11.0, 0, 1}, + {30.0, 11.0, 0, 1}, {31.0, 11.0, 0, 1}, {-31.0, 12.0, 0, 1}, {-30.0, 12.0, 0, 1}, {-29.0, 12.0, 0, 1}, {-28.0, 12.0, 0, 1}, + {-27.0, 12.0, 0, 1}, {-26.0, 12.0, 0, 1}, {-25.0, 12.0, 0, 1}, {-24.0, 12.0, 0, 1}, {-23.0, 12.0, 0, 1}, {-22.0, 12.0, 0, 1}, + {-21.0, 12.0, 0, 1}, {-20.0, 12.0, 0, 1}, {-19.0, 12.0, 0, 1}, {-18.0, 12.0, 0, 1}, {17.0, 12.0, 0, 1}, {18.0, 12.0, 0, 1}, + {19.0, 12.0, 0, 1}, {20.0, 12.0, 0, 1}, {21.0, 12.0, 0, 1}, {22.0, 12.0, 0, 1}, {23.0, 12.0, 0, 1}, {24.0, 12.0, 0, 1}, + {25.0, 12.0, 0, 1}, {26.0, 12.0, 0, 1}, {27.0, 12.0, 0, 1}, {28.0, 12.0, 0, 1}, {29.0, 12.0, 0, 1}, {30.0, 12.0, 0, 1}, + {-21.0, 13.0, 0, 1}, {-20.0, 13.0, 0, 1}, {-19.0, 13.0, 0, 1}, {-18.0, 13.0, 0, 1}, {17.0, 13.0, 0, 1}, {18.0, 13.0, 0, 1}, + {19.0, 13.0, 0, 1}, {20.0, 13.0, 0, 1}, {-21.0, 14.0, 0, 1}, {-20.0, 14.0, 0, 1}, {-19.0, 14.0, 0, 1}, {-18.0, 14.0, 0, 1}, + {17.0, 14.0, 0, 1}, {18.0, 14.0, 0, 1}, {19.0, 14.0, 0, 1}, {20.0, 14.0, 0, 1}, {-21.0, 15.0, 0, 1}, {-20.0, 15.0, 0, 1}, + {-19.0, 15.0, 0, 1}, {-18.0, 15.0, 0, 1}, {17.0, 15.0, 0, 1}, {18.0, 15.0, 0, 1}, {19.0, 15.0, 0, 1}, {20.0, 15.0, 0, 1}, + {-21.0, 16.0, 0, 1}, {-20.0, 16.0, 0, 1}, {-19.0, 16.0, 0, 1}, {-18.0, 16.0, 0, 1}, {17.0, 16.0, 0, 1}, {18.0, 16.0, 0, 1}, + {19.0, 16.0, 0, 1}, {20.0, 16.0, 0, 1}, {-21.0, 17.0, 0, 1}, {-20.0, 17.0, 0, 1}, {-19.0, 17.0, 0, 1}, {-18.0, 17.0, 0, 1}, + {-17.0, 17.0, 0, 1}, {-16.0, 17.0, 0, 1}, {-15.0, 17.0, 0, 1}, {-14.0, 17.0, 0, 1}, {-13.0, 17.0, 0, 1}, {-12.0, 17.0, 0, 1}, + {-11.0, 17.0, 0, 1}, {-10.0, 17.0, 0, 1}, {-9.0, 17.0, 0, 1}, {-8.0, 17.0, 0, 1}, {-7.0, 17.0, 0, 1}, {-6.0, 17.0, 0, 1}, + {-5.0, 17.0, 0, 1}, {-4.0, 17.0, 0, 1}, {-3.0, 17.0, 0, 1}, {-2.0, 17.0, 0, 1}, {-1.0, 17.0, 0, 1}, {0.0, 17.0, 0, 1}, + {1.0, 17.0, 0, 1}, {2.0, 17.0, 0, 1}, {3.0, 17.0, 0, 1}, {4.0, 17.0, 0, 1}, {5.0, 17.0, 0, 1}, {6.0, 17.0, 0, 1}, + {7.0, 17.0, 0, 1}, {8.0, 17.0, 0, 1}, {9.0, 17.0, 0, 1}, {10.0, 17.0, 0, 1}, {11.0, 17.0, 0, 1}, {12.0, 17.0, 0, 1}, + {13.0, 17.0, 0, 1}, {14.0, 17.0, 0, 1}, {15.0, 17.0, 0, 1}, {16.0, 17.0, 0, 1}, {17.0, 17.0, 0, 1}, {18.0, 17.0, 0, 1}, + {19.0, 17.0, 0, 1}, {20.0, 17.0, 0, 1}, {-21.0, 18.0, 0, 1}, {-20.0, 18.0, 0, 1}, {-19.0, 18.0, 0, 1}, {-18.0, 18.0, 0, 1}, + {-17.0, 18.0, 0, 1}, {-16.0, 18.0, 0, 1}, {-15.0, 18.0, 0, 1}, {-14.0, 18.0, 0, 1}, {-13.0, 18.0, 0, 1}, {-12.0, 18.0, 0, 1}, + {-11.0, 18.0, 0, 1}, {-10.0, 18.0, 0, 1}, {-9.0, 18.0, 0, 1}, {-8.0, 18.0, 0, 1}, {-7.0, 18.0, 0, 1}, {-6.0, 18.0, 0, 1}, + {-5.0, 18.0, 0, 1}, {-4.0, 18.0, 0, 1}, {-3.0, 18.0, 0, 1}, {-2.0, 18.0, 0, 1}, {-1.0, 18.0, 0, 1}, {0.0, 18.0, 0, 1}, + {1.0, 18.0, 0, 1}, {2.0, 18.0, 0, 1}, {3.0, 18.0, 0, 1}, {4.0, 18.0, 0, 1}, {5.0, 18.0, 0, 1}, {6.0, 18.0, 0, 1}, + {7.0, 18.0, 0, 1}, {8.0, 18.0, 0, 1}, {9.0, 18.0, 0, 1}, {10.0, 18.0, 0, 1}, {11.0, 18.0, 0, 1}, {12.0, 18.0, 0, 1}, + {13.0, 18.0, 0, 1}, {14.0, 18.0, 0, 1}, {15.0, 18.0, 0, 1}, {16.0, 18.0, 0, 1}, {17.0, 18.0, 0, 1}, {18.0, 18.0, 0, 1}, + {19.0, 18.0, 0, 1}, {20.0, 18.0, 0, 1}, {-21.0, 19.0, 0, 1}, {-20.0, 19.0, 0, 1}, {-19.0, 19.0, 0, 1}, {-18.0, 19.0, 0, 1}, + {-17.0, 19.0, 0, 1}, {-16.0, 19.0, 0, 1}, {-15.0, 19.0, 0, 1}, {-14.0, 19.0, 0, 1}, {-13.0, 19.0, 0, 1}, {-12.0, 19.0, 0, 1}, + {-11.0, 19.0, 0, 1}, {-10.0, 19.0, 0, 1}, {-9.0, 19.0, 0, 1}, {-8.0, 19.0, 0, 1}, {-7.0, 19.0, 0, 1}, {-6.0, 19.0, 0, 1}, + {-5.0, 19.0, 0, 1}, {-4.0, 19.0, 0, 1}, {-3.0, 19.0, 0, 1}, {-2.0, 19.0, 0, 1}, {-1.0, 19.0, 0, 1}, {0.0, 19.0, 0, 1}, + {1.0, 19.0, 0, 1}, {2.0, 19.0, 0, 1}, {3.0, 19.0, 0, 1}, {4.0, 19.0, 0, 1}, {5.0, 19.0, 0, 1}, {6.0, 19.0, 0, 1}, + {7.0, 19.0, 0, 1}, {8.0, 19.0, 0, 1}, {9.0, 19.0, 0, 1}, {10.0, 19.0, 0, 1}, {11.0, 19.0, 0, 1}, {12.0, 19.0, 0, 1}, + {13.0, 19.0, 0, 1}, {14.0, 19.0, 0, 1}, {15.0, 19.0, 0, 1}, {16.0, 19.0, 0, 1}, {17.0, 19.0, 0, 1}, {18.0, 19.0, 0, 1}, + {19.0, 19.0, 0, 1}, {20.0, 19.0, 0, 1}, {-21.0, 20.0, 0, 1}, {-20.0, 20.0, 0, 1}, {-19.0, 20.0, 0, 1}, {-18.0, 20.0, 0, 1}, + {-17.0, 20.0, 0, 1}, {-16.0, 20.0, 0, 1}, {-15.0, 20.0, 0, 1}, {-14.0, 20.0, 0, 1}, {-13.0, 20.0, 0, 1}, {-12.0, 20.0, 0, 1}, + {-11.0, 20.0, 0, 1}, {-10.0, 20.0, 0, 1}, {-9.0, 20.0, 0, 1}, {-8.0, 20.0, 0, 1}, {-7.0, 20.0, 0, 1}, {-6.0, 20.0, 0, 1}, + {-5.0, 20.0, 0, 1}, {-4.0, 20.0, 0, 1}, {-3.0, 20.0, 0, 1}, {-2.0, 20.0, 0, 1}, {-1.0, 20.0, 0, 1}, {0.0, 20.0, 0, 1}, + {1.0, 20.0, 0, 1}, {2.0, 20.0, 0, 1}, {3.0, 20.0, 0, 1}, {4.0, 20.0, 0, 1}, {5.0, 20.0, 0, 1}, {6.0, 20.0, 0, 1}, + {7.0, 20.0, 0, 1}, {8.0, 20.0, 0, 1}, {9.0, 20.0, 0, 1}, {10.0, 20.0, 0, 1}, {11.0, 20.0, 0, 1}, {12.0, 20.0, 0, 1}, + {13.0, 20.0, 0, 1}, {14.0, 20.0, 0, 1}, {15.0, 20.0, 0, 1}, {16.0, 20.0, 0, 1}, {17.0, 20.0, 0, 1}, {18.0, 20.0, 0, 1}, + {19.0, 20.0, 0, 1}, {20.0, 20.0, 0, 1}, {-13.0, 21.0, 0, 1}, {-12.0, 21.0, 0, 1}, {-11.0, 21.0, 0, 1}, {-10.0, 21.0, 0, 1}, + {-6.0, 21.0, 0, 1}, {-5.0, 21.0, 0, 1}, {-4.0, 21.0, 0, 1}, {-3.0, 21.0, 0, 1}, {-2.0, 21.0, 0, 1}, {1.0, 21.0, 0, 1}, + {2.0, 21.0, 0, 1}, {3.0, 21.0, 0, 1}, {4.0, 21.0, 0, 1}, {5.0, 21.0, 0, 1}, {8.0, 21.0, 0, 1}, {9.0, 21.0, 0, 1}, + {10.0, 21.0, 0, 1}, {11.0, 21.0, 0, 1}, {12.0, 21.0, 0, 1}, {-13.0, 22.0, 0, 1}, {-12.0, 22.0, 0, 1}, {-11.0, 22.0, 0, 1}, + {-10.0, 22.0, 0, 1}, {-6.0, 22.0, 0, 1}, {-5.0, 22.0, 0, 1}, {-4.0, 22.0, 0, 1}, {-3.0, 22.0, 0, 1}, {-2.0, 22.0, 0, 1}, + {1.0, 22.0, 0, 1}, {2.0, 22.0, 0, 1}, {3.0, 22.0, 0, 1}, {4.0, 22.0, 0, 1}, {5.0, 22.0, 0, 1}, {8.0, 22.0, 0, 1}, + {9.0, 22.0, 0, 1}, {10.0, 22.0, 0, 1}, {11.0, 22.0, 0, 1}, {12.0, 22.0, 0, 1}, {-13.0, 23.0, 0, 1}, {-12.0, 23.0, 0, 1}, + {-11.0, 23.0, 0, 1}, {-10.0, 23.0, 0, 1}, {-6.0, 23.0, 0, 1}, {-5.0, 23.0, 0, 1}, {-4.0, 23.0, 0, 1}, {-3.0, 23.0, 0, 1}, + {-2.0, 23.0, 0, 1}, {1.0, 23.0, 0, 1}, {2.0, 23.0, 0, 1}, {3.0, 23.0, 0, 1}, {4.0, 23.0, 0, 1}, {5.0, 23.0, 0, 1}, + {8.0, 23.0, 0, 1}, {9.0, 23.0, 0, 1}, {10.0, 23.0, 0, 1}, {11.0, 23.0, 0, 1}, {12.0, 23.0, 0, 1}, {-13.0, 24.0, 0, 1}, + {-12.0, 24.0, 0, 1}, {-11.0, 24.0, 0, 1}, {-10.0, 24.0, 0, 1}, {-6.0, 24.0, 0, 1}, {-5.0, 24.0, 0, 1}, {-4.0, 24.0, 0, 1}, + {-3.0, 24.0, 0, 1}, {-2.0, 24.0, 0, 1}, {1.0, 24.0, 0, 1}, {2.0, 24.0, 0, 1}, {3.0, 24.0, 0, 1}, {4.0, 24.0, 0, 1}, + {5.0, 24.0, 0, 1}, {8.0, 24.0, 0, 1}, {9.0, 24.0, 0, 1}, {10.0, 24.0, 0, 1}, {11.0, 24.0, 0, 1}, {12.0, 24.0, 0, 1}, + {-13.0, 25.0, 0, 1}, {-12.0, 25.0, 0, 1}, {-11.0, 25.0, 0, 1}, {-10.0, 25.0, 0, 1}, {-6.0, 25.0, 0, 1}, {-5.0, 25.0, 0, 1}, + {-4.0, 25.0, 0, 1}, {-3.0, 25.0, 0, 1}, {-2.0, 25.0, 0, 1}, {1.0, 25.0, 0, 1}, {2.0, 25.0, 0, 1}, {3.0, 25.0, 0, 1}, + {4.0, 25.0, 0, 1}, {5.0, 25.0, 0, 1}, {8.0, 25.0, 0, 1}, {9.0, 25.0, 0, 1}, {10.0, 25.0, 0, 1}, {11.0, 25.0, 0, 1}, + {12.0, 25.0, 0, 1}, {-13.0, 26.0, 0, 1}, {-12.0, 26.0, 0, 1}, {-11.0, 26.0, 0, 1}, {-10.0, 26.0, 0, 1}, {-6.0, 26.0, 0, 1}, + {-5.0, 26.0, 0, 1}, {-4.0, 26.0, 0, 1}, {-3.0, 26.0, 0, 1}, {-2.0, 26.0, 0, 1}, {1.0, 26.0, 0, 1}, {2.0, 26.0, 0, 1}, + {3.0, 26.0, 0, 1}, {4.0, 26.0, 0, 1}, {5.0, 26.0, 0, 1}, {8.0, 26.0, 0, 1}, {9.0, 26.0, 0, 1}, {10.0, 26.0, 0, 1}, + {11.0, 26.0, 0, 1}, {12.0, 26.0, 0, 1}, {-13.0, 27.0, 0, 1}, {-12.0, 27.0, 0, 1}, {-11.0, 27.0, 0, 1}, {-10.0, 27.0, 0, 1}, + {-6.0, 27.0, 0, 1}, {-5.0, 27.0, 0, 1}, {-4.0, 27.0, 0, 1}, {-3.0, 27.0, 0, 1}, {-2.0, 27.0, 0, 1}, {1.0, 27.0, 0, 1}, + {2.0, 27.0, 0, 1}, {3.0, 27.0, 0, 1}, {4.0, 27.0, 0, 1}, {5.0, 27.0, 0, 1}, {8.0, 27.0, 0, 1}, {9.0, 27.0, 0, 1}, + {10.0, 27.0, 0, 1}, {11.0, 27.0, 0, 1}, {12.0, 27.0, 0, 1}, {-13.0, 28.0, 0, 1}, {-12.0, 28.0, 0, 1}, {-11.0, 28.0, 0, 1}, + {-10.0, 28.0, 0, 1}, {-6.0, 28.0, 0, 1}, {-5.0, 28.0, 0, 1}, {-4.0, 28.0, 0, 1}, {-3.0, 28.0, 0, 1}, {-2.0, 28.0, 0, 1}, + {1.0, 28.0, 0, 1}, {2.0, 28.0, 0, 1}, {3.0, 28.0, 0, 1}, {4.0, 28.0, 0, 1}, {5.0, 28.0, 0, 1}, {8.0, 28.0, 0, 1}, + {9.0, 28.0, 0, 1}, {10.0, 28.0, 0, 1}, {11.0, 28.0, 0, 1}, {12.0, 28.0, 0, 1}, {-13.0, 29.0, 0, 1}, {-12.0, 29.0, 0, 1}, + {-11.0, 29.0, 0, 1}, {-10.0, 29.0, 0, 1}, {-6.0, 29.0, 0, 1}, {-5.0, 29.0, 0, 1}, {-4.0, 29.0, 0, 1}, {-3.0, 29.0, 0, 1}, + {-2.0, 29.0, 0, 1}, {1.0, 29.0, 0, 1}, {2.0, 29.0, 0, 1}, {3.0, 29.0, 0, 1}, {4.0, 29.0, 0, 1}, {5.0, 29.0, 0, 1}, + {8.0, 29.0, 0, 1}, {9.0, 29.0, 0, 1}, {10.0, 29.0, 0, 1}, {11.0, 29.0, 0, 1}, {12.0, 29.0, 0, 1}, {-13.0, 30.0, 0, 1}, + {-12.0, 30.0, 0, 1}, {-11.0, 30.0, 0, 1}, {-10.0, 30.0, 0, 1}, {-6.0, 30.0, 0, 1}, {-5.0, 30.0, 0, 1}, {-4.0, 30.0, 0, 1}, + {-3.0, 30.0, 0, 1}, {1.0, 30.0, 0, 1}, {2.0, 30.0, 0, 1}, {3.0, 30.0, 0, 1}, {4.0, 30.0, 0, 1}, {5.0, 30.0, 0, 1}, + {9.0, 30.0, 0, 1}, {10.0, 30.0, 0, 1}, {11.0, 30.0, 0, 1}, {12.0, 30.0, 0, 1}, {-12.0, 31.0, 0, 1}, {-11.0, 31.0, 0, 1}, + {-10.0, 31.0, 0, 1}, {-5.0, 31.0, 0, 1}, {-4.0, 31.0, 0, 1}, {-3.0, 31.0, 0, 1}, {2.0, 31.0, 0, 1}, {3.0, 31.0, 0, 1}, + {4.0, 31.0, 0, 1}, {9.0, 31.0, 0, 1}, {10.0, 31.0, 0, 1}, {11.0, 31.0, 0, 1} +}; + +#endif // CONFIG_3D_OBJECT_CUSTOM diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.h new file mode 100644 index 0000000..5f43b49 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_data/image_to_3d_matrix.h @@ -0,0 +1,18 @@ +// File generated by ImgTo3D.py +// Image file converted to 3D matrix: cpu_logo.png + +#pragma once + +#include +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t image_to_bmp_array_custom[512]; +extern const float image_to_3d_matrix_custom[1732][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.cpp new file mode 100644 index 0000000..f533506 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.cpp @@ -0,0 +1,114 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "graphics_support.h" + + +void init_perspective_matrix(dspm::Mat &P_m) +{ + const float fov = 90; // field of view in degrees + const float near = 0.0001; + const float far = 1; + + const float S = 1 / (tan((fov / 2) * DEG_TO_RAD)); + + // Initialize matrix to zero + for (int row = 0; row < P_m.rows; row++) { + for (int col = 0; col < P_m.cols; col++) { + P_m(row, col) = 0; + } + } + + P_m(0, 0) = S; + P_m(1, 1) = S; + P_m(2, 2) = -far / (far - near); + P_m(3, 2) = (-far * near) / (far - near); + P_m(2, 3) = -1; + P_m(3, 3) = 1; +} + +void update_perspective_matrix(dspm::Mat &P_m, float fov) +{ + const float near = 0.0001; + const float far = 1; + + const float S = 1 / (tan((fov / 2) * DEG_TO_RAD)); + + // Initialize matrix to zero + for (int row = 0; row < P_m.rows; row++) { + for (int col = 0; col < P_m.cols; col++) { + P_m(row, col) = 0; + } + } + + P_m(0, 0) = S; + P_m(1, 1) = S; + P_m(2, 2) = -far / (far - near); + P_m(3, 2) = (-far * near) / (far - near); + P_m(2, 3) = -1; + P_m(3, 3) = 1; + + P_m(3, 0) = (float)SSD1606_X_CENTER; + P_m(3, 1) = (float)SSD1606_Y_CENTER; +} + +void update_scaling_matrix(dspm::Mat &T_m, bool keep_diagonal, float scale_x, float scale_y, float scale_z) +{ + if (keep_diagonal) { // Multiply the diagonal values of the transformation matrix with the scaling + T_m(0, 0) *= scale_x; // (in case a rotation is already applied) + T_m(1, 1) *= scale_y; + T_m(2, 2) *= scale_z; + } else { + T_m(0, 0) = scale_x; + T_m(1, 1) = scale_y; + T_m(2, 2) = scale_z; + } +} + +void update_translation_matrix(dspm::Mat &T_m, bool row, float move_x, float move_y, float move_z) +{ + if (row) { // update values in 4-th row, if translation matrix is the second multiplier + T_m(3, 0) = move_x; + T_m(3, 1) = move_y; + T_m(3, 2) = move_z; + } else { // update values in 4-th collum, if translation matrix is the first multiplier + T_m(0, 3) = move_x; + T_m(1, 3) = move_y; + T_m(2, 3) = move_z; + } +} + + +void update_rotation_matrix(dspm::Mat &T_m, float rot_x, float rot_y, float rot_z) +{ + dspm::Mat rotation_data(3, 1); // matrix(3x1) that holds x, y, z rotation data + rotation_data(0, 0) = DEG_TO_RAD * rot_x; // rotation data x + rotation_data(1, 0) = DEG_TO_RAD * rot_y; // rotation data y + rotation_data(2, 0) = DEG_TO_RAD * rot_z; // rotation data z + + // Create and populate rotation matrix R(3x3). Then inverse it + dspm::Mat R = ekf::eul2rotm(rotation_data.data).inverse(); + + // Enlarge rotation matrix from 3x3 to 4x4 + for (int row = 0; row < R.rows; row++) { // Copy rotation matrix R(3x3) to transformation matrix T_m(4x4) + for (int col = 0; col < R.cols; col++) { + T_m(row, col) = R(row, col); + } + } +} + +void print_matrix(dspm::Mat matrix) +{ + for (int rows = 0; rows < matrix.rows; rows++) { + for (int cols = 0; cols < matrix.cols; cols++) { + std::cout << matrix(rows, cols) << ", \t"; + } + std::cout << std::endl; + } + std::cout << std::endl << std::endl; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.h new file mode 100644 index 0000000..5bfd03a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/3d_matrix/3d_matrix_src/graphics_support.h @@ -0,0 +1,128 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include "esp_dsp.h" +#include "ekf_imu13states.h" + + +#ifdef __cplusplus +extern "C" +{ +#endif + +#include + +#define DEG_TO_RAD 0.01745329252f // Degrees to radians conversion +#define RAD_TO_DEG 57.29577951f // Radians to degrees conversion +#define MATRIX_SIZE 4 // 4x4 matrices are used +#define SSD1306_WIDTH 128 // Display widh in pixels +#define SSD1306_HEIGHT 64 // DIsplay height +#define SSD1606_X_CENTER (SSD1306_WIDTH / 2) // Width center point +#define SSD1606_Y_CENTER (SSD1306_HEIGHT / 2) // Height center point + +/** + * @brief Data struct of 3d image matrix + * + * This structure is used to hold a 3d coordinates of a monochromatic image centered to the origin of the + * cartesian space (0, 0, 0), that has ben processed by the image_to_3d_array.py. + */ +typedef struct image_3d_matrix_s { + const float (*matrix)[MATRIX_SIZE]; /*!< matrix holding xyz coordinates for each point of the converted image.*/ + uint32_t matrix_len; /*!< image matrix length.*/ +} image_3d_matrix_t; + +/** + * @brief Data struct of 3d image matrix with kalman filter object + * + * This structure is used to hold a 3d coordinates of a monochromatic image centered to the origin of the + * cartesian space (0, 0, 0), that has ben processed by the image_to_3d_array.py. + * Kalman filter object is added to the matrix, for the purpose of RTOS task arguments. + */ +typedef struct image_3d_matrix_kalman_s { + const float (*matrix)[MATRIX_SIZE]; /*!< matrix holding xyz coordinates for each point of the converted image.*/ + uint32_t matrix_len; /*!< image matrix length.*/ + ekf_imu13states *ekf13; /*!< kalman filter object.*/ +} image_3d_matrix_kalman_t; + + +/** + * @brief initialize perspective projection matrix + * + * Function initializes Mat class object holding perspective projection matrix. + * + * @param P_m: perspective projection matrix object from the Mat class + */ +void init_perspective_matrix(dspm::Mat &P_m); + + +/** + * @brief update scaling matrix + * + * Function updates scaling part of the transformation matrix. + * + * @param T_m: transformation matrix object from the Mat class + * @param keep_diagonal: if true: diagonal row of the transformation matrix T_m will be mulitplied with the scaling values + * if false: diagonal row of the transformation matrix T_m will be substituted with new scaling values + * @param scale_x: scaling value for x coordinate of the vector + * @param scale_y: scaling value for y coordinate of the vector + * @param scale_z: scaling value for z coordinate of the vector + */ +void update_scaling_matrix(dspm::Mat &T_m, bool keep_diagonal, float scale_x, float scale_y, float scale_z); + + +/** + * @brief update translation matrix + * + * Function updates translation part of the transformation matrix. + * + * @param T_m: transformation matrix object from the Mat class + * @param row: if true: translation values will be placed to the 3rd row of the transformation matrix T_m + * if false: translation values will be placed to the 3rd col of the transformation matrix T_m + * @param move_x: translation value for x coordinate of the vector + * @param move_y: translation value for y coordinate of the vector + * @param move_z: translation value for z coordinate of the vector + */ +void update_translation_matrix(dspm::Mat &T_m, bool row, float move_x, float move_y, float move_z); + + +/** + * @brief update rotation matrix + * + * Function updates rotation part of the tranformation matrix + * + * @param T_m: transformation matrix object from the Mat class + * @param rot_x: rotation angle for x direction of the vector + * @param rot_y: rotation angle for y direction of the vector + * @param rot_z: rotation angle for z direction of the vector + */ +void update_rotation_matrix(dspm::Mat &T_m, float rot_x, float rot_y, float rot_z); + + +/** + * @brief update perspective matrix + * + * Function updates perspective matrix with a new value of field of view + * + * @param P_m: perspective projection matrix object from the Mat class + * @param fov: field of view in degrees + */ +void update_perspective_matrix(dspm::Mat &P_m, float fov); + + +/** + * @brief printf matrix to the terminal output + * + * Print matrix for debug purposes + * + * @param matrix: matrix to be printed + */ +void print_matrix(dspm::Mat matrix); + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/ImgTo3D.py b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/ImgTo3D.py new file mode 100644 index 0000000..3f9baf2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/ImgTo3D.py @@ -0,0 +1,390 @@ +# SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD +# SPDX-License-Identifier: CC0-1.0 + +import sys +import os +import subprocess + +PIL_INSTALLED = True +PYTHON_FILE_NAME = os.path.basename(__file__) # name of the Python file itself +OUTPUT_FILE_NAME = "image_to_3d_matrix" # generated output .c and .h file names +OUTPUT_3D_MATRIX_NAME = "image_to_3d_matrix_custom" # generated output 3D matrix in the .c and .h file +OUTPUT_BMP_ARRAY_NAME = "image_to_bmp_array_custom" # generated output BMP array in the .c and .h file +TEMPLATE_FILE_NAME = "template_img_to_3d" # name of the .c and .h template files + +ESP_IOT_AZURE_DISPLAY_WIDTH = 128 # ESP_IOT_AZURE board display width +ESP_IOT_AZURE_DISPLAY_HEIGHT = 64 # ESP_IOT_AZURE board display height + +try: + from PIL import Image, ImageOps +except ImportError as e: + PIL_INSTALLED = False + print(e) + +if not PIL_INSTALLED: + print("Installing Pillow package by running command -m pip install --upgrade Pillow") + try: + subprocess.check_call([sys.executable, "-m", "pip", "install", "--upgrade", "Pillow"]) + except subprocess.CalledProcessError as e: + print(e) + + +class Image3DMatrix: + """ class for 3d image matrix """ + def __init__(self): + self.terminal_args = sys.argv # get command line arguments + self.img_path = None # path to the image + self.img_name = None # image name + self.img_ext = None # image extension + self.img_width = None # image target width + self.img_height = None # image target height + self.img_invert = False # invert monochromatic + self.img_include_bmp = False # include BMP form of the image + self.converted_img_dir = None # location to save the converted image + self.result_dir = None # location to save the .c and .h files + self.templates_dir = None # location where template files are saved + self.z_dist = 0 # Z distance of the 3D matrix + self.get_termianl_input() + + def get_optional_args(self): + """ take optional arguments from the terminal, if there are any """ + + # take all the optional arguments + if len(self.terminal_args) > 4: + opt_args = self.terminal_args[4:len(self.terminal_args)] + + # check the optional arguments "invert" "bmp" and z_dist + for arg in opt_args: + if arg.isdecimal(): + self.z_dist = int(arg) + elif arg.lower() == "invert": + self.img_invert = True + elif arg.lower() == "bmp": + self.img_include_bmp = True + + @staticmethod + def check_if_img_file_exists(path: str): + """ check, if provided image file path from terminal input is valid and an image file exits """ + + # check if a file exists on the provided absolute path + if os.path.isabs(path): + if not os.path.isfile(path): + print(f"Provided file {path} does not exist") + sys.exit() + + # check if a file exists on the provided relative path + else: + absolute_path = os.path.join(os.getcwd(), path) + if not os.path.isfile(absolute_path): + print(f"Provided file {path} does not exist") + sys.exit() + else: + return absolute_path + + return path + + @staticmethod + def check_if_templates_exist(): + """ Check if template .c and .h files exist """ + + # check if templates folder exists + templates_dir = os.path.join(os.getcwd(), "templates") + if not os.path.exists(templates_dir): + print(f"templates folder does not exist at location: {templates_dir}") + sys.exit() + + # check if template .c file exists + template_c_file = os.path.join(templates_dir, f"{TEMPLATE_FILE_NAME}.c") + if not os.path.isfile(template_c_file): + print(f".c template file does not exist at location {template_c_file}") + sys.exit() + + # check if template .h file exists + template_h_file = os.path.join(templates_dir, f"{TEMPLATE_FILE_NAME}.h") + if not os.path.isfile(template_h_file): + print(f".h template file does not exist at location {template_h_file}") + sys.exit() + + return templates_dir + + def get_img_name_extension(self): + """ extract image file name and image file extension """ + + img_file = os.path.basename(self.img_path) # image file with extension + self.img_name = os.path.splitext(img_file)[0] # extract file name + + # Extract the file extension, to CAPS and remove the first character being dot + self.img_ext = os.path.splitext(img_file)[1].upper()[1:] + + @staticmethod + def check_if_is_img(path: str, filename: str): + """ check if the provided file is an image and if its extension is supported """ + + # check if a file (which exits) is an image file + if not path.lower().endswith(('.png', '.jpg', '.jpeg', '.tiff', '.bmp', '.gif')): + print(f"provided file {filename} is not a supported image file") + sys.exit() + + @staticmethod + def check_pixels(height: str, width: str): + """ check if the provided result image height and width are decimal numbers """ + + # check if provided resulting image width and height are decimal numbers + if not height.isdecimal() and width.isdecimal(): + print(f"Provided image target width {width} and/or height {height} not valid") + sys.exit() + + @staticmethod + def check_if_pixels_in_range(height: int, width: int): + """ check if the provided result image height and width are in a valid range """ + + # check if the height and width are in the display's range + if (height > ESP_IOT_AZURE_DISPLAY_HEIGHT + 1 or width > ESP_IOT_AZURE_DISPLAY_WIDTH + 1 or + height < 1 or width < 1): + print(f"Provided image target width {width} and/or height {height} \ + is out of range of the display's dimensions ({ESP_IOT_AZURE_DISPLAY_WIDTH}x{ESP_IOT_AZURE_DISPLAY_HEIGHT})") + sys.exit() + + if height % 2 or width % 2: + print(f"Provided image target width {width} and height {height} must be even") + sys.exit() + + def create_paths(self): + """ create paths for the result files """ + + # if running from the example folder, leave the results there + # if running from anywhere else, change cwd to dir, where the python is located + cwd = os.getcwd() # current working directory + abspath = os.path.abspath(__file__) # get the absolute path of the python script + python_dir = os.path.dirname(abspath) # get the absolute path of the folder, in which the python script is located + + if os.path.join("img_to_3d_matrix", "example") not in cwd: + os.chdir(python_dir) # go to a directory where the python is located + + # create an absolute path for the folder in which the image after conversion will be saved + self.converted_img_dir = os.path.join(os.getcwd(), "converted_image") + if not os.path.exists(self.converted_img_dir): + # if the path does not exist, create it + os.makedirs(self.converted_img_dir) + + # create an absolute path for the folder, to which the resulting .c and .h files will be saved + self.result_dir = os.path.join(os.path.dirname(os.getcwd()), "3d_matrix", "3d_matrix_data") + if not os.path.exists(self.result_dir): + # if the path does not exist, use the current path instead + self.result_dir = os.getcwd() + + if os.path.join("img_to_3d_matrix", "example") in cwd: + os.chdir(python_dir) # go to a directory where the python is located + + def get_termianl_input(self): + """ get input parameters from terminal """ + + if ((len(self.terminal_args) == 2) and (str(self.terminal_args[1]) == "--help")): + query = '\n'.join([ + f"\npython {PYTHON_FILE_NAME} -image_path -image_width -image_height -z_distance -invert -bmp\n\n" + "-image_path absolute or relative path to an image to be processed", + "-image_width width (in pixels) of the resulting 3D image", + "-image_height height (in pixels) of the resulting 3D image", + "-z_distance (optional) Z distance (in pixels) of the resulting 3D image, leave blank otherwise", + "-invert (optional) to invert colors, leave blank otherwise", + "-bmp (optional) to include BMP from of the provided image, leave blank otherwise"]) + print(query) + sys.exit() + + elif len(self.terminal_args) < 4: + print(f"Too few arguments run following command for help\npython {PYTHON_FILE_NAME} --help") + sys.exit() + + else: + self.img_path = self.terminal_args[1] + self.img_width = self.terminal_args[2] + self.img_height = self.terminal_args[3] + + self.get_optional_args() + self.img_path = self.check_if_img_file_exists(self.img_path) + self.get_img_name_extension() + self.check_if_is_img(self.img_path, self.img_name) + self.check_pixels(self.img_height, self.img_width) + self.img_height = int(self.img_height) + self.img_width = int(self.img_width) + self.check_if_pixels_in_range(self.img_height, self.img_width) + self.create_paths() + self.templates_dir = self.check_if_templates_exist() + + +def fromat_comas_spaces(element_index: int, array_len: int, elements_per_line: int, c_file): + """ Formating of the spaces, commas and new lines for arrays in the .c file """ + + # Dont put comma after the last array member + if element_index != array_len: + c_file.write(",") + + # new line after each elements_per_line + if not element_index % elements_per_line: + c_file.write("\n") + + # start a new line with tab + if element_index != array_len: + c_file.write(" ") + + # put space after each coma + # except after the last array member and before a new line + else: + if element_index != array_len: + c_file.write(" ") + + +def ouptput_files_gen(img3d: Image3DMatrix, bmp_arr: list, matrix_arr: list): + """ write 3d matrix array and optional BMP array to .c and .h files """ + + # generate a c file and save it to the main folder (if exists in the file structure) + output_c_file_name = f"{OUTPUT_FILE_NAME}.c" + with open(os.path.join(img3d.templates_dir, f"{TEMPLATE_FILE_NAME}.c"), "r", encoding="utf8") as c_template_file: + with open(os.path.join(img3d.result_dir, output_c_file_name), "w+", encoding="utf8") as c_file: + + c_file.write(f"// File generated by {PYTHON_FILE_NAME}\n") # write first line to c_file + c_file.write(f"// Image file converted to 3D matrix {img3d.img_name}.{img3d.img_ext.lower()}\n") + next(c_template_file) + next(c_template_file) # skip first 2 lines from c_template_file + for line in c_template_file: + + if "const" in line: + # include BMP form if requested + if img3d.img_include_bmp: + c_file.write(f"const uint8_t {OUTPUT_BMP_ARRAY_NAME}[{len(bmp_arr)}] = {{\n\n ") + for index, bmp_byte in enumerate(bmp_arr, start=1): + c_file.write(f"0x{bmp_byte:02x}") + fromat_comas_spaces(index, len(bmp_arr), 16, c_file) + c_file.write("\n};\n\n") + + # write 3d matrix form + c_file.write(f"const float {OUTPUT_3D_MATRIX_NAME}[{len(matrix_arr)}][4] = {{\n\n ") + for index, line in enumerate(matrix_arr, start=1): + line_joined = ', '.join(map(str, line)) + c_file.write(f"{{{line_joined}}}") + fromat_comas_spaces(index, len(matrix_arr), 6, c_file) + c_file.write("\n};\n") + next(c_template_file) + continue + + # copy line from c_template_file to c_file + c_file.write(line) + + c_file.close() + c_template_file.close() + + # generate an h file and save it to the main folder (if exists in the file structure) + output_h_file_name = f"{OUTPUT_FILE_NAME}.h" + with open(os.path.join(img3d.templates_dir, f"{TEMPLATE_FILE_NAME}.h"), "r", encoding="utf8") as h_template_file: + with open(os.path.join(img3d.result_dir, output_h_file_name), "w+", encoding="utf8") as h_file: + + h_file.write(f"// File generated by {PYTHON_FILE_NAME}\n") # write first line to h_file + h_file.write(f"// Image file converted to 3D matrix: {img3d.img_name}.{img3d.img_ext.lower()}\n") + next(h_template_file) + next(h_template_file) # skip first 2 lines from h_template_file + for line in h_template_file: + + if "extern const" in line: + # include BMP header if requested + if img3d.img_include_bmp: + h_file.write(f"extern const uint8_t {OUTPUT_BMP_ARRAY_NAME}[{len(bmp_arr)}];\n") + + # include 3d matrix header + h_file.write(f"extern const float {OUTPUT_3D_MATRIX_NAME}[{len(matrix_arr)}][4];\n") + next(h_template_file) + continue + + h_file.write(line) + + h_file.close() + h_template_file.close() + + query = '\n'.join([ + "\nOutput files generation done!", + f"Output files {output_c_file_name} {output_h_file_name}", + f"Output files location {img3d.result_dir}"]) + print(query) + + +def create_matrix(img3d: Image3DMatrix, pixels: list, bmp_img_array: list, matrix_img_array: list): + """ Create a 3D matrix and optional BMP form of the converted image """ + + multiplier = pow(2, 7) + byte = 0 + + # convert pixels to both, bmp and 3d from + for index, pixel in enumerate(pixels, start=1): + if pixel: + byte += multiplier + y_coord = int((index - 1) / img3d.img_width) + x_coord = (index - 1) - (y_coord * img3d.img_width) - (img3d.img_width / 2) + y_coord = y_coord - (img3d.img_height / 2) + matrix_img_array.append((x_coord, y_coord, img3d.z_dist, 1)) + + multiplier >>= 1 + + if not index % 8: + multiplier = pow(2, 7) + bmp_img_array.append(byte) + byte = 0 + + +def convert_img(img3d: Image3DMatrix): + """ image conversion to list of monochromatic pixels """ + + # open an image and convert the image to monochromatic + img = Image.open(img3d.img_path) + img = img.convert(mode="1", dither=Image.NONE) + + # if requested, invert black and white + if img3d.img_invert: + img = ImageOps.invert(img) + + # resize the image and get the width and height of the resized image, to check + img = img.resize((int(img3d.img_width), int(img3d.img_height)), resample=Image.NEAREST) + res_width, res_height = img.size + + # get image pixels as a list, after converting the image to monochromatic - pixels are either 0 or 255 + pixels = list(img.getdata()) + + # check if the resized image has the same dimensions as the required dimensions + if (res_width, res_height) != (img3d.img_width, img3d.img_height): + query = '\n'.join([ + "Image conversion was not successful!", + f"Required width and height: {img3d.img_width} {img3d.img_height}", + f"Real width and height: {res_width} {res_height}"]) + print(query) + sys.exit() + else: + # if converted correctly, save the converted image + if img3d.img_invert: + invert = "_invert_conv." + else: + invert = "_conv." + + converted_img_name = ''.join([img3d.img_name, invert, img3d.img_ext.lower()]) + converted_img_location = os.path.join(img3d.converted_img_dir, converted_img_name) + img.save(converted_img_location, format=img3d.img_ext, subsampling=0, quality=100) + query = '\n'.join([ + "Image conversion done!", + f"Converted image {converted_img_name}", + f"Converted image location {os.path.join(img3d.converted_img_dir)}"]) + print(query) + return pixels + + +def main(): + """ main function of the image_to_3d_matrix """ + + img3d = Image3DMatrix() + pixels = convert_img(img3d) + + bmp_img_array = list() + matrix_img_array = list() + create_matrix(img3d, pixels, bmp_img_array, matrix_img_array) + ouptput_files_gen(img3d, bmp_img_array, matrix_img_array) + print("\nAll done!") + + +if __name__ == '__main__': + main() diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/README.md new file mode 100644 index 0000000..c225009 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/README.md @@ -0,0 +1,105 @@ +# Getting the 3D matrix +`ImgTo3D.py` generates a 3D matrix for the monochromatic display, from a provided 2D graphics - image. As the output, `.c` and `.h` files containing the 3D matrix, are already included in the project structure, to `CMakeList.txt` and `.cpp` files. The output arrays are named `image_to_3d_matrix_custom` and `image_to_bmp_array_custom` by default. The converted image is saved for a preview. + +The script can be called by following commands: + + python ImgTo3D.py image_path image_width image_height + +* `ImgTo3D.py` - absolute path to the python file +* `image_path` - absolute or relative path to the image, to be converted +* `image_width` - resulting width of the converted image (in pixels) +* `image_height` - resulting height of the converted image (in pixels) + +The python script converts the provided image first to a monochromatic image, then resizes the image according to the provided dimensions, then converts the image to a 3D matrix and finally saves the 3D into a `.c` file. + + python ImgTo3D.py --help + +Run for help - prints hints, how to run the file and information about the arguments. + +### Optional arguments + python ImgTo3D.py image_path image_width image_height z_dist invert bmp + +* `z_dist` puts a distance (in pixels) into the Z direction of each matrix row - each 3D point. 0 is used otherwise +* `invert` inverts black and white in the converted monochromatic image, causing inverting pixels that will be lit on the display +* `bmp` includes a BMP form of the converted image into the output `.c` and `.h` files + +The optional arguments can be added in any sequence. + +# Example + +To get example results, in the example folder, run the script from the example folder like so: + + /example $ python ../ImgTo3D.py cpu_logo.png 64 64 invert bmp + +To get the results already integrated into the project, run the script from any other location: + + /any_location $ python abs_path/ImgTo3D.py cpu_logo.png 64 64 bmp invert + +Converts `cpu_logo.png` image into a 3D matrix with dimensions of `64x64` pixels, with inverted colors and the BMP is included into the output file. + +## Output files + +python script produces the following output: + +* `converted_image/cpu_logo_invert_conv.png` image after the conversion (monochromatic and resized image) +* `image_to_3d_matrix.c` c file with 3D and BMP matrices in `const` arrays +* `image_to_3d_matrix.h` h file with 3D and BMP arrays declarations in `extern const` + +The output `.c` and `.h` files are based on template files `template_img_to_3d.c` and `template_img_to_3d.h`. From which, only the variables declarations are changed according to the converted image. + +The expected output from the python script is the following: + + Image conversion done! + Converted image cpu_logo_invert_conv.png + Converted image location ${workspaceFolder}/graphics/img_to_3d_matrix/example/converted_image + + Output files generation done! + Output files image_to_3d_matrix.c image_to_3d_matrix.h + Output files location ${workspaceFolder}/graphics/img_to_3d_matrix/example + + All done! + +## Image conversion output example + +
+ + + + + + + + + + + + + + + +
+

+ Converted image (64x64) +

+
+

+ Inverted colors (64x64) +

+
+
+ +
+
+
+ +
+
+

+ Original image (256x256) +

+
+
+ +
+
+
\ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_conv.png b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_conv.png new file mode 100644 index 0000000..58a8452 Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_conv.png differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_invert_conv.png b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_invert_conv.png new file mode 100644 index 0000000..a7970e5 Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/converted_image/cpu_logo_invert_conv.png differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/image/cpu_logo.png b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/image/cpu_logo.png new file mode 100644 index 0000000..bd8e95e Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/example/image/cpu_logo.png differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.c new file mode 100644 index 0000000..dd206d3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.c @@ -0,0 +1,11 @@ +// template file - template_img_to_3d.c +// arrays declarations will be modified by python script ImgTo3D.py + +#include "image_to_3d_matrix.h" + +#ifdef CONFIG_3D_OBJECT_CUSTOM + +const uint8_t TEMPLATE_ARRAY_BMP_IMAGE[NUM_OF_BYTES] = {}; +const float TEMPLATE_ARRAY_IMAGE_TO_3D_MATRIX[NUM_OF_POINTS][4] = {}; + +#endif // CONFIG_3D_OBJECT_CUSTOM diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.h new file mode 100644 index 0000000..4dba986 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/azure_board_apps/graphics/img_to_3d_matrix/templates/template_img_to_3d.h @@ -0,0 +1,18 @@ +// template file - template_img_to_3d.h +// arrays declarations will be modified by python script ImgTo3D.py + +#pragma once + +#include +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" { +#endif + +extern const uint8_t TEMPLATE_ARRAY_BMP_IMAGE[NUM_OF_BYTES]; +extern const float TEMPLATE_ARRAY_IMAGE_TO_3D_MATRIX[NUM_OF_POINTS][4]; + +#ifdef __cplusplus +} +#endif diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/CMakeLists.txt new file mode 100644 index 0000000..e1a283f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/CMakeLists.txt @@ -0,0 +1,6 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(basic_math) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/README.md new file mode 100644 index 0000000..5c57354 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/README.md @@ -0,0 +1,75 @@ +# Basic Math Example + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +This example demonstrates how to use basic math functions from esp-dsp library. Example does the following steps: + +1. Initialize the library +2. Initialize input signals with 1024 samples +3. Apply window to input signal by standard C loop. +4. Calculate FFT for 1024 complex samples and show the result +5. Show results on the plots +6. Apply window to input signal by basic math functions dsps_mul_f32 and dsps_mulc_f32. +7. Calculate FFT for 1024 complex samples +8. Show results on the plots + +## How to use example + +### Hardware required + +This example does not require any special hardware, and can be run on any common development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py -p PORT flash monitor +``` + +(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 + +Here is an typical example console output. + +```bash +I (132) main: *** Start Example. *** +I (132) main: *** Multiply tone signal with Hann window by standard C loop. *** +I (152) view: Data min[432] = -173.749878, Data max[205] = 23.849705 + ________________________________________________________________ +0 | | +1 | | +2 | | +3 || | +4 | | | +5 || | | +6 ||| || | +7 ||||| |||| | +8||||||||||||||| |||||| | +9 ||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (162) view: Plot: Length=512, min=-120.000000, max=40.000000 +I (162) main: *** Multiply tone signal with Hann window by esp-dsp basic math functions. *** +I (162) view: Data min[432] = -173.749878, Data max[205] = 23.849705 + ________________________________________________________________ +0 | | +1 | | +2 | | +3 || | +4 | | | +5 || | | +6 ||| || | +7 ||||| |||| | +8||||||||||||||| |||||| | +9 ||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (172) view: Plot: Length=512, min=-120.000000, max=40.000000 +I (172) main: *** End Example. *** +``` diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/main/CMakeLists.txt new file mode 100644 index 0000000..e0971ca --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "dsps_math_main.c") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/main/dsps_math_main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/main/dsps_math_main.c new file mode 100644 index 0000000..9000ae5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/main/dsps_math_main.c @@ -0,0 +1,94 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#include +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_system.h" +#include "driver/spi_master.h" +#include "soc/gpio_struct.h" +#include "driver/gpio.h" +#include "driver/uart.h" +#include "soc/uart_struct.h" +#include + +#include "esp_dsp.h" + +static const char *TAG = "main"; + +// This example shows how to use FFT from esp-dsp library + +#define N_SAMPLES 1024 +int N = N_SAMPLES; +// Input test array +__attribute__((aligned(16))) +float x1[N_SAMPLES]; +// Window coefficients +__attribute__((aligned(16))) +float wind[N_SAMPLES]; +// working complex array +__attribute__((aligned(16))) +float y_cf[N_SAMPLES * 2]; +// Pointers to result arrays +float *y1_cf = &y_cf[0]; + +static void process_and_show(float *data, int length) +{ + dsps_fft2r_fc32(data, length); + // Bit reverse + dsps_bit_rev_fc32(data, length); + // Convert one complex vector to two complex vectors + dsps_cplx2reC_fc32(data, length); + + for (int i = 0 ; i < length / 2 ; i++) { + data[i] = 10 * log10f((data[i * 2 + 0] * data[i * 2 + 0] + data[i * 2 + 1] * data[i * 2 + 1]) / N); + } + + // Show power spectrum in 64x10 window from -100 to 0 dB from 0..N/4 samples + dsps_view(data, length / 2, 64, 10, -120, 40, '|'); +} + +void app_main() +{ + esp_err_t ret; + ESP_LOGI(TAG, "*** Start Example. ***"); + ret = dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Not possible to initialize FFT. Error = %i", ret); + return; + } + + // Generate Hann window + dsps_wind_hann_f32(wind, N); + + ESP_LOGI(TAG, "*** Multiply tone signal with Hann window by standard C loop. ***"); + // Generate input signal + dsps_tone_gen_f32(x1, N, 1., 0.2, 0); + // Convert two input vectors to one complex vector + for (int i = 0 ; i < N ; i++) { + y_cf[i * 2 + 0] = x1[i] * wind[i]; + y_cf[i * 2 + 1] = 0; + } + process_and_show(y_cf, N); + + ESP_LOGI(TAG, "*** Multiply tone signal with Hann window by esp-dsp basic math functions. ***"); + // Convert two input vectors to one complex vector with basic functions + dsps_mul_f32(x1, wind, y_cf, N, 1, 1, 2); // Multiply input array with window and store as real part + dsps_mulc_f32(&y_cf[1], &y_cf[1], N, 0, 2, 2); // Clear imaginary part of the complex signal + process_and_show(y_cf, N); + ESP_LOGI(TAG, "*** End Example. ***"); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/main/idf_component.yml new file mode 100644 index 0000000..f40e96d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/basic_math/main/idf_component.yml @@ -0,0 +1,4 @@ +dependencies: + espressif/esp-dsp: + override_path: "../../../" + version: "*" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/CMakeLists.txt new file mode 100644 index 0000000..cced1b9 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/CMakeLists.txt @@ -0,0 +1,6 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(dotprod) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/README.md new file mode 100644 index 0000000..b5427ca --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/README.md @@ -0,0 +1,42 @@ +# Dot Product Calculation Example + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +This example demonstrates how to use dotprod dsps_dotprod_f32 from esp-dsp library. Example does the following steps: + +1. Initialize the input arrays +2. Calculate dot product of two arrays +3. Compare results and calculate execution time in cycles. + +## How to use example + +### Hardware required + +This example does not require any special hardware, and can be run on any common development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py -p PORT flash monitor +``` + +(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 + +Here is an typical example console output. + +``` +I (55) main: Start Example. +I (55) main: The sum of 101 elements from 0..100 = 5050.000000 +I (55) main: Operation for 101 samples took 1381 cycles +I (65) main: End Example. +``` diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/main/CMakeLists.txt new file mode 100644 index 0000000..56354b2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "dsps_dotproduct_main.c") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/main/dsps_dotproduct_main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/main/dsps_dotproduct_main.c new file mode 100644 index 0000000..8d5b81f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/main/dsps_dotproduct_main.c @@ -0,0 +1,63 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#include +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_system.h" +#include "driver/spi_master.h" +#include "soc/gpio_struct.h" +#include "driver/gpio.h" +#include "driver/uart.h" +#include "soc/uart_struct.h" + +#include "esp_dsp.h" + +static const char *TAG = "main"; + +// This example shows how to use dsps_dotprod_f32 and dsps_dotprode_f32 functions + +#define N_SAMPLES 256 +int N = N_SAMPLES; +__attribute__((aligned(16))) +float input1[N_SAMPLES]; +__attribute__((aligned(16))) +float input2[N_SAMPLES]; + +void app_main() +{ + esp_err_t ret; + ESP_LOGI(TAG, "Start Example."); + + // The example will calculate n! + //Initialize an input arrays + for (int i = 0 ; i < N ; i++) { + input1[i] = 1; + input2[i] = i; + } + float result1 = 0; + unsigned int start_b = dsp_get_cpu_cycle_count(); + ret = dsps_dotprod_f32(input1, input2, &result1, 101); + unsigned int end_b = dsp_get_cpu_cycle_count(); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Operation error = %i", ret); + } + ESP_LOGI(TAG, "The sum of 101 elements from 0..100 = %f", result1); + ESP_LOGI(TAG, "Operation for 101 samples take %i cycles", end_b - start_b); + + ESP_LOGI(TAG, "End Example."); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/main/idf_component.yml new file mode 100644 index 0000000..f40e96d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/dotprod/main/idf_component.yml @@ -0,0 +1,4 @@ +dependencies: + espressif/esp-dsp: + override_path: "../../../" + version: "*" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/CMakeLists.txt new file mode 100644 index 0000000..fccec62 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/CMakeLists.txt @@ -0,0 +1,6 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(fft2r) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/README.md new file mode 100644 index 0000000..a05e73b --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/README.md @@ -0,0 +1,91 @@ +# FFT Example + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +This example demonstrates how to use FFT functionality from esp-dsp library. Example does the following steps: + +1. Initialize the library +2. Initialize input signals with 1024 samples: one 0 dB, second with -20 dB +3. Combine two signals as one complex input signal and apply window to input signals paar. +4. Calculate FFT for 1024 complex samples +5. Apply bit reverse operation for output complex vector +6. Split one complex FFT output spectrum to two real signal spectrums +7. Show results on the plots +8. Show execution time of FFT + +## How to use example + +### Hardware required + +This example does not require any special hardware, and can be run on any common development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py -p PORT flash monitor +``` + +(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 + +Here is an typical example console output. + +``` +I (59) main: Start Example. +W (89) main: Signal x1 +I (89) view: Data min[495] = -162.760925, Data max[164] = 23.938747 + ________________________________________________________________ +0 | +1 | | +2 | | +3 | | +4 | | +5 | | +6 | | | +7 | | | +8 || || | +9|||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (159) view: Plot: Length=512, min=-60.000000, max=40.000000 +W (169) main: Signal x2 +I (169) view: Data min[502] = -164.545135, Data max[205] = 3.857752 + ________________________________________________________________ +0 | +1 | +2 | +3 | | +4 | | +5 | | +6 | | +7 || | +8 | | | +9|||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (249) view: Plot: Length=512, min=-60.000000, max=40.000000 +W (249) main: Signals x1 and x2 on one plot +I (259) view: Data min[505] = -159.215271, Data max[164] = 23.938747 + ________________________________________________________________ +0 | +1 | | +2 | | +3 | | | +4 | | | +5 | | | +6 | | | | +7 | | || | +8 || || | | | +9|||||||||||||||||| | |||||||||||||||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (339) view: Plot: Length=512, min=-60.000000, max=40.000000 +I (339) main: FFT for 1024 complex points take 140472 cycles +I (349) main: End Example. +``` diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/main/CMakeLists.txt new file mode 100644 index 0000000..cc43851 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "dsps_fft_main.c") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/main/dsps_fft_main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/main/dsps_fft_main.c new file mode 100644 index 0000000..85cc84a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/main/dsps_fft_main.c @@ -0,0 +1,104 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#include +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_system.h" +#include "driver/spi_master.h" +#include "soc/gpio_struct.h" +#include "driver/gpio.h" +#include "driver/uart.h" +#include "soc/uart_struct.h" +#include + +#include "esp_dsp.h" + +static const char *TAG = "main"; + +// This example shows how to use FFT from esp-dsp library + +#define N_SAMPLES 1024 +int N = N_SAMPLES; +// Input test array +__attribute__((aligned(16))) +float x1[N_SAMPLES]; +__attribute__((aligned(16))) +float x2[N_SAMPLES]; +// Window coefficients +__attribute__((aligned(16))) +float wind[N_SAMPLES]; +// working complex array +__attribute__((aligned(16))) +float y_cf[N_SAMPLES * 2]; +// Pointers to result arrays +float *y1_cf = &y_cf[0]; +float *y2_cf = &y_cf[N_SAMPLES]; + +// Sum of y1 and y2 +__attribute__((aligned(16))) +float sum_y[N_SAMPLES / 2]; + +void app_main() +{ + esp_err_t ret; + ESP_LOGI(TAG, "Start Example."); + ret = dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Not possible to initialize FFT. Error = %i", ret); + return; + } + + // Generate hann window + dsps_wind_hann_f32(wind, N); + // Generate input signal for x1 A=1 , F=0.1 + dsps_tone_gen_f32(x1, N, 1.0, 0.16, 0); + // Generate input signal for x2 A=0.1,F=0.2 + dsps_tone_gen_f32(x2, N, 0.1, 0.2, 0); + + // Convert two input vectors to one complex vector + for (int i = 0 ; i < N ; i++) { + y_cf[i * 2 + 0] = x1[i] * wind[i]; + y_cf[i * 2 + 1] = x2[i] * wind[i]; + } + // FFT + unsigned int start_b = dsp_get_cpu_cycle_count(); + dsps_fft2r_fc32(y_cf, N); + unsigned int end_b = dsp_get_cpu_cycle_count(); + // Bit reverse + dsps_bit_rev_fc32(y_cf, N); + // Convert one complex vector to two complex vectors + dsps_cplx2reC_fc32(y_cf, N); + + for (int i = 0 ; i < N / 2 ; i++) { + y1_cf[i] = 10 * log10f((y1_cf[i * 2 + 0] * y1_cf[i * 2 + 0] + y1_cf[i * 2 + 1] * y1_cf[i * 2 + 1]) / N); + y2_cf[i] = 10 * log10f((y2_cf[i * 2 + 0] * y2_cf[i * 2 + 0] + y2_cf[i * 2 + 1] * y2_cf[i * 2 + 1]) / N); + // Simple way to show two power spectrums as one plot + sum_y[i] = fmax(y1_cf[i], y2_cf[i]); + } + + // Show power spectrum in 64x10 window from -100 to 0 dB from 0..N/4 samples + ESP_LOGW(TAG, "Signal x1"); + dsps_view(y1_cf, N / 2, 64, 10, -60, 40, '|'); + ESP_LOGW(TAG, "Signal x2"); + dsps_view(y2_cf, N / 2, 64, 10, -60, 40, '|'); + ESP_LOGW(TAG, "Signals x1 and x2 on one plot"); + dsps_view(sum_y, N / 2, 64, 10, -60, 40, '|'); + ESP_LOGI(TAG, "FFT for %i complex points take %i cycles", N, end_b - start_b); + + ESP_LOGI(TAG, "End Example."); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/main/idf_component.yml new file mode 100644 index 0000000..f40e96d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft/main/idf_component.yml @@ -0,0 +1,4 @@ +dependencies: + espressif/esp-dsp: + override_path: "../../../" + version: "*" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/CMakeLists.txt new file mode 100644 index 0000000..a0e9cf5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/CMakeLists.txt @@ -0,0 +1,6 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(fft4real) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/README.md new file mode 100644 index 0000000..3594a96 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/README.md @@ -0,0 +1,91 @@ +# FFT 4 Real Input Example + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +This example demonstrates how to use FFT functionality from esp-dsp library. Example does the following steps: + +1. Initialize the library +2. Initialize input signals with 1024 samples: one 0 dB, second with -20 dB +3. Calculate FFT Radix-2 for 1024 complex samples +4. Calculate FFT Radix-4 for 1024 complex samples +5. Apply bit reverse operation for output complex vectors +6. Show results on the plots +7. Show execution time of FFTs + +## How to use example + +### Hardware required + +This example does not require any special hardware, and can be run on any common development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py -p PORT flash monitor +``` + +(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 + +Here is an typical example console output. + +``` +I (344) main: Start Example. +W (424) main: Signal x1 +I (424) view: Data min[673] = -103.113297, Data max[328] = 20.490950 + ________________________________________________________________ +0 | +1 | | +2 | | +3 | | +4 | | +5 | | +6 | | +7 | | | +8 | | | +9||||||||||||||||||| ||||||||||||||||||||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (494) view: Plot: Length=1024, min=-60.000000, max=40.000000 +W (504) main: Signal x2 +I (504) view: Data min[582] = -103.113297, Data max[328] = 20.490950 + ________________________________________________________________ +0 | +1 | | +2 | | +3 | | +4 | | +5 | | +6 | | +7 | | | +8 | | | +9||||||||||||||||||| ||||||||||||||||||||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (584) view: Plot: Length=1024, min=-60.000000, max=40.000000 +W (593) main: Difference between signals x1 and x2 on one plot +I (594) view: Data min[0] = 0.000000, Data max[392] = 0.313019 + ________________________________________________________________ +0 | +1 | +2 | +3 | +4 | +5 | +6 | +7 | +8----------------------------------------------------------------| +9 | + 0123456789012345678901234567890123456789012345678901234567890123 +I (674) view: Plot: Length=1024, min=0.000000, max=40.000000 +I (674) main: FFT Radix 2 for 1024 complex points take 168652 cycles +I (684) main: FFT Radix 4 for 1024 complex points take 104665 cycles +I (694) main: End Example. +``` diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/CMakeLists.txt new file mode 100644 index 0000000..283d539 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "dsps_fft4real_main.c") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/dsps_fft4real_main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/dsps_fft4real_main.c new file mode 100644 index 0000000..be8a4fa --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/dsps_fft4real_main.c @@ -0,0 +1,115 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#include +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_system.h" +#include "driver/spi_master.h" +#include "soc/gpio_struct.h" +#include "driver/gpio.h" +#include "driver/uart.h" +#include "soc/uart_struct.h" +#include + +#include "esp_dsp.h" + +static const char *TAG = "main"; + +// This example shows how to use FFT from esp-dsp library + +#define N_SAMPLES 2048 // Amount of real input samples +int N = N_SAMPLES; +// Input test array +__attribute__((aligned(16))) +float x1[N_SAMPLES]; +__attribute__((aligned(16))) +float x2[N_SAMPLES]; +// Window coefficients +__attribute__((aligned(16))) +float wind[N_SAMPLES]; +// Pointers to result arrays +float *y1_cf = &x1[0]; +float *y2_cf = &x2[0]; + +// diff of y1 and y2 +__attribute__((aligned(16))) +float diff_y[N_SAMPLES / 2]; + +void app_main() +{ + esp_err_t ret; + ESP_LOGI(TAG, "Start Example."); + ret = dsps_fft2r_init_fc32(NULL, N >> 1); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Not possible to initialize FFT2R. Error = %i", ret); + return; + } + + ret = dsps_fft4r_init_fc32(NULL, N >> 1); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Not possible to initialize FFT4R. Error = %i", ret); + return; + } + + // Generate hann window + dsps_wind_hann_f32(wind, N); + // Generate input signal for x1 A=1 , F=0.1 + dsps_tone_gen_f32(x1, N, 1.0, 0.16, 0); + + // Convert two input vectors to one complex vector + for (int i = 0 ; i < N ; i++) { + x1[i] = x1[i] * wind[i]; + x2[i] = x1[i]; + } + // FFT Radix-2 + unsigned int start_r2 = dsp_get_cpu_cycle_count(); + dsps_fft2r_fc32(x1, N >> 1); + // Bit reverse + dsps_bit_rev2r_fc32(x1, N >> 1); + // Convert one complex vector with length N/2 to one real spectrum vector with length N/2 + dsps_cplx2real_fc32(x1, N >> 1); + unsigned int end_r2 = dsp_get_cpu_cycle_count(); + + // FFT Radix-4 + unsigned int start_r4 = dsp_get_cpu_cycle_count(); + dsps_fft4r_fc32(x2, N >> 1); + // Bit reverse + dsps_bit_rev4r_fc32(x2, N >> 1); + // Convert one complex vector with length N/2 to one real spectrum vector with length N/2 + dsps_cplx2real_fc32(x2, N >> 1); + unsigned int end_r4 = dsp_get_cpu_cycle_count(); + + for (int i = 0 ; i < N / 2 ; i++) { + x1[i] = 10 * log10f((x1[i * 2 + 0] * x1[i * 2 + 0] + x1[i * 2 + 1] * x1[i * 2 + 1] + 0.0000001) / N); + x2[i] = 10 * log10f((x2[i * 2 + 0] * x2[i * 2 + 0] + x2[i * 2 + 1] * x2[i * 2 + 1] + 0.0000001) / N); + // Simple way to show two power spectrums as one plot + diff_y[i] = fabs(x1[i] - x2[i]); + } + + // Show power spectrum in 64x10 window from -100 to 0 dB from 0..N/4 samples + ESP_LOGW(TAG, "Signal x1"); + dsps_view(x1, N / 2, 64, 10, -60, 40, '|'); + ESP_LOGW(TAG, "Signal x2"); + dsps_view(x2, N / 2, 64, 10, -60, 40, '|'); + ESP_LOGW(TAG, "Difference between signals x1 and x2 on one plot"); + dsps_view(diff_y, N / 2, 64, 10, 0, 40, '-'); + ESP_LOGI(TAG, "FFT Radix 2 for %i complex points take %i cycles", N / 2, end_r2 - start_r2); + ESP_LOGI(TAG, "FFT Radix 4 for %i complex points take %i cycles", N / 2, end_r4 - start_r4); + + ESP_LOGI(TAG, "End Example."); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/idf_component.yml new file mode 100644 index 0000000..f40e96d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/idf_component.yml @@ -0,0 +1,4 @@ +dependencies: + espressif/esp-dsp: + override_path: "../../../" + version: "*" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/linker.ld b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/linker.ld new file mode 100644 index 0000000..c5aacfa --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft4real/main/linker.ld @@ -0,0 +1,9 @@ +[mapping:dsp] +archive: libdsp.a +entries: + * (noflash) + +[mapping:esp-dsp] +archive: libesp-dsp.a +entries: + * (noflash) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/CMakeLists.txt new file mode 100644 index 0000000..57b3154 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/CMakeLists.txt @@ -0,0 +1,6 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(fft_window) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/README.md new file mode 100644 index 0000000..8a75e67 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/README.md @@ -0,0 +1,134 @@ +# FFT Window Example + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +This example demonstrates how to use Window and FFT functionality from esp-dsp library. Example does the following steps: + +1. Initialize the library +2. Initialize input signals with 1024 samples +3. Apply window to input signal. +4. Calculate FFT for 1024 complex samples +5. Apply bit reverse operation for output complex vector +6. Split one complex FFT output spectrum to two real signal spectrums +7. Show results on the plots + +## How to use example + +### Hardware required + +This example does not require any special hardware, and can be run on any common development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py -p PORT flash monitor +``` + +(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 + +Here is an typical example console output. + +``` +I (128) main: Start Example. +W (128) main: Hann Window +I (128) view: Data min[256] = -inf, Data max[1] = 24.086628 + ________________________________________________________________ +0| | +1| | +2| | +3| | +4| | +5 | | +6 | | +7 ||||| | +8 ||||||||||||||| | +9 |||||||||||||||||||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (138) view: Plot: Length=512, min=-120.000000, max=40.000000 +W (138) main: Blackman Window +I (148) view: Data min[355] = -165.295654, Data max[1] = 24.083012 + ________________________________________________________________ +0| | +1| | +2| | +3| | +4| | +5| | +6 | | +7 ||| | +8 ||||||||| | +9 ||||||||||||||||||||||||||||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (158) view: Plot: Length=512, min=-120.000000, max=40.000000 +W (158) main: Blackman-Harris Window +I (168) view: Data min[128] = -inf, Data max[1] = 23.874702 + ________________________________________________________________ +0| | +1| | +2| | +3| | +4| | +5| | +6| | +7|| | +8| |||| | +9 ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (178) view: Plot: Length=512, min=-120.000000, max=40.000000 +W (178) main: Blackman-Nuttall Window +I (188) view: Data min[128] = -inf, Data max[1] = 23.890663 + ________________________________________________________________ +0| | +1| | +2| | +3| | +4| | +5| | +6| | +7 || | +8 |||| | | +9 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (198) view: Plot: Length=512, min=-120.000000, max=40.000000 +W (198) main: Nuttall Window +I (208) view: Data min[203] = -175.147400, Data max[1] = 23.858671 + ________________________________________________________________ +0| | +1| | +2| | +3| | +4| | +5| | +6| | +7|| | +8 ||| | +9 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (218) view: Plot: Length=512, min=-120.000000, max=40.000000 +W (218) main: Flat-Top Window +I (228) view: Data min[256] = -inf, Data max[1] = 22.490753 + ________________________________________________________________ +0| | +1| | +2| | +3| | +4| | +5| | +6| | +7 || | +8 ||||| | +9 ||||||||||||||||||||||||||||||||||||||||||||||||||||||||| + 0123456789012345678901234567890123456789012345678901234567890123 +I (238) view: Plot: Length=512, min=-120.000000, max=40.000000 +I (238) main: End Example. +``` diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/main/CMakeLists.txt new file mode 100644 index 0000000..919b959 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "dsps_window_main.c") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/main/dsps_window_main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/main/dsps_window_main.c new file mode 100644 index 0000000..bc55095 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/main/dsps_window_main.c @@ -0,0 +1,138 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#include +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_system.h" +#include "driver/spi_master.h" +#include "soc/gpio_struct.h" +#include "driver/gpio.h" +#include "driver/uart.h" +#include "soc/uart_struct.h" +#include + +#include "esp_dsp.h" + +static const char *TAG = "main"; + +// This example shows how to use FFT from esp-dsp library + +#define N_SAMPLES 1024 +int N = N_SAMPLES; +// Input test array +__attribute__((aligned(16))) +float x1[N_SAMPLES]; +// Window coefficients +__attribute__((aligned(16))) +float wind[N_SAMPLES]; +// working complex array +__attribute__((aligned(16))) +float y_cf[N_SAMPLES * 2]; +// Pointers to result arrays +__attribute__((aligned(16))) +float *y1_cf = &y_cf[0]; + +void process_and_show(float *data, int length) +{ + dsps_fft2r_fc32(data, length); + // Bit reverse + dsps_bit_rev_fc32(data, length); + // Convert one complex vector to two complex vectors + dsps_cplx2reC_fc32(data, length); + + for (int i = 0 ; i < length / 2 ; i++) { + data[i] = 10 * log10f((data[i * 2 + 0] * data[i * 2 + 0] + data[i * 2 + 1] * data[i * 2 + 1]) / N); + } + + // Show power spectrum in 64x10 window from -100 to 0 dB from 0..N/4 samples + dsps_view(data, length / 2, 64, 10, -120, 40, '|'); + +} + +void app_main() +{ + esp_err_t ret; + ESP_LOGI(TAG, "Start Example."); + ret = dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Not possible to initialize FFT. Error = %i", ret); + return; + } + + ESP_LOGW(TAG, "Hann Window"); + // Generate Hann window + dsps_wind_hann_f32(wind, N); + // Convert two input vectors to one complex vector + for (int i = 0 ; i < N ; i++) { + y_cf[i * 2 + 0] = wind[i]; + y_cf[i * 2 + 1] = 0; + } + process_and_show(y_cf, N); + + ESP_LOGW(TAG, "Blackman Window"); + // Generate Blackman window + dsps_wind_blackman_f32(wind, N); + // Convert two input vectors to one complex vector + for (int i = 0 ; i < N ; i++) { + y_cf[i * 2 + 0] = wind[i]; + y_cf[i * 2 + 1] = 0; + } + process_and_show(y_cf, N); + + ESP_LOGW(TAG, "Blackman-Harris Window"); + // Generate Blackman-Harris window + dsps_wind_blackman_harris_f32(wind, N); + // Convert two input vectors to one complex vector + for (int i = 0 ; i < N ; i++) { + y_cf[i * 2 + 0] = wind[i]; + y_cf[i * 2 + 1] = 0; + } + process_and_show(y_cf, N); + + ESP_LOGW(TAG, "Blackman-Nuttall Window"); + // Generate Blackman-Nuttall window + dsps_wind_blackman_nuttall_f32(wind, N); + // Convert two input vectors to one complex vector + for (int i = 0 ; i < N ; i++) { + y_cf[i * 2 + 0] = wind[i]; + y_cf[i * 2 + 1] = 0; + } + process_and_show(y_cf, N); + + ESP_LOGW(TAG, "Nuttall Window"); + // Generate Nuttall window + dsps_wind_nuttall_f32(wind, N); + // Convert two input vectors to one complex vector + for (int i = 0 ; i < N ; i++) { + y_cf[i * 2 + 0] = wind[i]; + y_cf[i * 2 + 1] = 0; + } + process_and_show(y_cf, N); + + ESP_LOGW(TAG, "Flat-Top Window"); + // Generate Flat-Top window + dsps_wind_flat_top_f32(wind, N); + // Convert two input vectors to one complex vector + for (int i = 0 ; i < N ; i++) { + y_cf[i * 2 + 0] = wind[i]; + y_cf[i * 2 + 1] = 0; + } + process_and_show(y_cf, N); + + ESP_LOGI(TAG, "End Example."); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/main/idf_component.yml new file mode 100644 index 0000000..f40e96d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fft_window/main/idf_component.yml @@ -0,0 +1,4 @@ +dependencies: + espressif/esp-dsp: + override_path: "../../../" + version: "*" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/CMakeLists.txt new file mode 100644 index 0000000..246a225 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/CMakeLists.txt @@ -0,0 +1,6 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(fir) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/README.md new file mode 100644 index 0000000..dc72fa3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/README.md @@ -0,0 +1,87 @@ +# FIR Filter Example + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +This example demonstrates how to use FIR filter functionality from esp-dsp library. Example does the following steps: + +1. Initialize the FFT library +2. Initialize input signal + * 1st Sine wave (f = 0.2Fs) + * 2nd Sine wave (f = 0.4Fs) + * Combine the waves +3. Show input signal + * Calculate windows coefficients + * Apply the windowing to the input signal + * Do the FFT + * Show the frequency response on a plot + * Calculate execution performance +4. Show filtered signal + * Initialize the FIR filter library + * Calculate Windowed-Sinc coefficients of FIR filter + * Apply the FIR filter to the input signal + * Do the FFT + * Show the frequency response on a plot + * Calculate execution performance + +## How to use the example + +### Hardware required + +This example does not require any special hardware, and can be run on any common development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py -p PORT flash monitor +``` + +(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 + +Here is a typical example of console output. + +``` +I (340) main: Start Example. +I (400) view: Data min[388] = -108.419342, Data max[205] = 30.267143 + ________________________________________________________________ +0 | | | +1 | || | +2 || || | +3 || || | +4 || || | +5 || ||| | +6 || || | | | +7|||||||||||||||||||||||| |||||||||||||||||||||| |||||||||||| +8 | +9 | + 0123456789012345678901234567890123456789012345678901234567890123 +I (470) view: Plot: Length=512, min=-120.000000, max=40.000000 + + +I (490) view: Data min[254] = -114.853371, Data max[205] = 27.247583 + ________________________________________________________________ +0 | | +1 | | +2 | | +3 | | | +4 | | | +5 | | | +6 | ||| ||| | +7||||||||||||||||||||||||||||||||||||||||||||||| | ||||| | +8 ||||| +9 | + 0123456789012345678901234567890123456789012345678901234567890123 +I (560) view: Plot: Length=256, min=-120.000000, max=40.000000 +I (560) main: FIR for 1024 samples and decimation 2 takes 763647 cycles +I (570) main: End Example. + +``` diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/main/CMakeLists.txt new file mode 100644 index 0000000..0181772 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "dsps_fir_main.c") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/main/dsps_fir_main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/main/dsps_fir_main.c new file mode 100644 index 0000000..fac86bc --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/main/dsps_fir_main.c @@ -0,0 +1,167 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_system.h" +#include "driver/spi_master.h" +#include "soc/gpio_struct.h" +#include "driver/gpio.h" +#include "driver/uart.h" +#include "soc/uart_struct.h" +#include +#include + +#include "esp_dsp.h" + + +static const char *TAG = "main"; + +// This example shows how to use FIR filters from esp-dsp library + +#define FIR_COEFFS_LEN 64 // Number of FIR filter coefficients +#define DECIMATION 2 // Decimation ratio of the FIR filter +#define N_SAMPLES 1024 // Input samples +#define FIR_DELAY (FIR_COEFFS_LEN / DECIMATION) // Amount of samples not being considered for the FFT +#define FIR_BUFF_OUT_LEN (N_SAMPLES + FIR_DELAY) // Total length of samples + + +// Function shows the result of the FIR filter +void show_FFT(float *input_signal, const unsigned int fft_len) +{ + + dsps_fft2r_fc32(input_signal, fft_len >> 1); + dsps_bit_rev2r_fc32(input_signal, fft_len >> 1); + dsps_cplx2real_fc32(input_signal, fft_len >> 1); + + // Correction factor for the FFT spectrum + const float correction_factor = fft_len * 3; + + // Calculating power of spectrum in dB + for (int i = 0 ; i < fft_len / 2 ; i++) { + input_signal[i] = 10 * log10f((input_signal[i * 2 + 0] * input_signal[i * 2 + 0] + input_signal[i * 2 + 1] * input_signal[i * 2 + 1] + 0.0000001) / correction_factor); + } + + // Display power spectrum + dsps_view(input_signal, fft_len / 2, 64, 10, -120, 40, '|'); +} + + +// Generate Windowed-Sinc filter coefficients +void generate_FIR_coefficients(float *fir_coeffs, const unsigned int fir_len, const float ft) +{ + + // Even or odd length of the FIR filter + const bool is_odd = (fir_len % 2) ? (true) : (false); + const float fir_order = (float)(fir_len - 1); + + // Window coefficients + float *fir_window = (float *)malloc(fir_len * sizeof(float)); + dsps_wind_blackman_f32(fir_window, fir_len); + + for (int i = 0; i < fir_len; i++) { + if ((i == fir_order / 2) && (is_odd)) { + fir_coeffs[i] = 2 * ft; + } else { + fir_coeffs[i] = sinf((2 * M_PI * ft * (i - fir_order / 2))) / (M_PI * (i - fir_order / 2)); + } + + fir_coeffs[i] *= fir_window[i]; + } + + free(fir_window); +} + +static __attribute__((aligned(16))) float tone_combined[FIR_BUFF_OUT_LEN]; +static __attribute__((aligned(16))) float fir_coeffs[FIR_COEFFS_LEN]; +static __attribute__((aligned(16))) float delay_line[FIR_COEFFS_LEN]; + +void app_main() +{ + const int32_t fir_len = FIR_COEFFS_LEN; + const float fir_ft = 0.5 / DECIMATION; // Transition frequency of the FIR filter + const int32_t N = N_SAMPLES; // Number of input samples + const int32_t fir_decim = DECIMATION; // FIR filter decimation + const int32_t N_buff = FIR_BUFF_OUT_LEN; // Total length of samples with ignored + + fir_f32_t fir1; + esp_err_t ret; + + // Ignoring the first set of samples, due to the delay line of the FIR filter + const int fir_out_offset = ((FIR_DELAY / 2) - 1); + + ESP_LOGI(TAG, "Start Example."); + + // If a user doesn't care about buffer allocation, the default + // initialization could be used as shown here: + ret = dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Not possible to initialize FFT. Error = %i", ret); + return; + } + + ret = dsps_fft4r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Not possible to initialize FFT. Error = %i", ret); + return; + } + + // Generate input signal as 2 sine waves + float *tone_1 = (float *)malloc(N_buff * sizeof(float)); + float *tone_2 = (float *)malloc(N_buff * sizeof(float)); + + dsps_tone_gen_f32(tone_1, N_buff, 5, 0.2, 0); + dsps_tone_gen_f32(tone_2, N_buff, 5, 0.4, 0); + + // Generate windowing coefficients + float *window = (float *)malloc(N * sizeof(float)); + dsps_wind_blackman_harris_f32(window, N); + + // Add the two waves together + for (int i = 0 ; i < N_buff ; i++) { + tone_combined[i] = tone_1[i] + tone_2[i]; + } + + free(tone_1); + free(tone_2); + + // Apply the windowing + for (int i = 0 ; i < N ; i++) { + window[i] *= tone_combined[i]; + } + + // Show FFT spectrum + show_FFT(window, N); + + // Calculate coefficients for the FIR filter + generate_FIR_coefficients(fir_coeffs, fir_len, fir_ft); + ESP_LOGI(TAG, "\n"); + + // Filter the input signal with FIR filter + float *fir_out = (float *)malloc( N_buff * sizeof(float)); + dsps_fird_init_f32(&fir1, fir_coeffs, delay_line, fir_len, fir_decim); + + uint32_t start_b = dsp_get_cpu_cycle_count(); + dsps_fird_f32(&fir1, tone_combined, fir_out, N_buff / fir_decim); + uint32_t end_b = dsp_get_cpu_cycle_count(); + + // Generate windowing coefficients and apply the windowing + dsps_wind_blackman_harris_f32(window, (N / fir_decim)); + for (int i = 0 ; i < N / fir_decim ; i++) { + window[i] *= fir_out[fir_out_offset + i]; + } + + // Show FFT spectrum, ignoring first samples from the delay line + show_FFT(window, N / fir_decim); + ESP_LOGI(TAG, "FIR for %"PRId32" samples and decimation %"PRId32" takes %"PRId32" cycles", N, fir_decim, (int32_t)(end_b - start_b)); + ESP_LOGI(TAG, "End Example."); + + free(fir_out); + free(window); + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/main/idf_component.yml new file mode 100644 index 0000000..f40e96d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/fir/main/idf_component.yml @@ -0,0 +1,4 @@ +dependencies: + espressif/esp-dsp: + override_path: "../../../" + version: "*" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/CMakeLists.txt new file mode 100644 index 0000000..585ed9b --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/CMakeLists.txt @@ -0,0 +1,6 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(iir) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/README.md new file mode 100644 index 0000000..ee201ec --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/README.md @@ -0,0 +1,107 @@ +# IIR Filter Example + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +This example demonstrates how to use IIR filters functionality from esp-dsp library. Example does the following steps: + +1. Initialize the library +2. Initialize input signal +3. Show LPF filter with Q factor 1 + * Calculate iir filter coefficients + * Filter the input test signal (delta function) + * Shows impulse response on the plot + * Shows frequency response on the plot + * Calculate execution performance +4. The same for LPF filter with Q factor 10 + +## How to use example + +### Hardware required + +This example does not require any special hardware, and can be run on any common development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py -p PORT flash monitor +``` + +(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 + +Here is an typical example console output. + +``` +I (58) main: Start Example. +I (58) main: Impulse response of IIR filter with F=0.100000, qFactor=1.000000 +I (68) view: Data min[8] = -0.060052, Data max[2] = 0.333517 + ________________________________________________________________ +0 | +1 | +2 - | +3- - | +4 -------------------------------------------------------------| +5 | +6 | +7 | +8 | +9 | + 0123456789012345678901234567890123456789012345678901234567890123 +I (138) view: Plot: Length=128, min=-1.000000, max=1.000000 +I (148) view: Data min[511] = -149.983795, Data max[0] = 0.000000 + ________________________________________________________________ +0 | +1 | +2----------------- | +3 ---------- | +4 ------------- | +5 ---------- | +6 ------- | +7 --- | +8 -- | +9 --| + 0123456789012345678901234567890123456789012345678901234567890123 +I (228) view: Plot: Length=512, min=-100.000000, max=0.000000 +I (228) main: IIR for 1024 samples take 20276 cycles +I (238) main: Impulse response of IIR filter with F=0.100000, qFactor=10.000000 +I (248) view: Data min[7] = -0.453739, Data max[2] = 0.526114 + ________________________________________________________________ +0 | +1 | +2 - - | +3- - - - --- --- - - | +4- - - - - ---- -------------------------------------| +5 -- -- -- -- | +6 | +7 | +8 | +9 | + 0123456789012345678901234567890123456789012345678901234567890123 +I (318) view: Plot: Length=128, min=-1.000000, max=1.000000 +I (328) view: Data min[511] = -149.480377, Data max[0] = 0.000000 + ________________________________________________________________ +0 -- | +1 -- - | +2---------- ----- | +3 -------- | +4 ------------ | +5 ---------- | +6 ------- | +7 --- | +8 -- | +9 --| + 0123456789012345678901234567890123456789012345678901234567890123 +I (408) view: Plot: Length=512, min=-100.000000, max=0.000000 +I (408) main: IIR for 1024 samples take 17456 cycles +I (418) main: End Example. + +``` diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/main/CMakeLists.txt new file mode 100644 index 0000000..675a4b4 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "dsps_iir_main.c") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/main/dsps_iir_main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/main/dsps_iir_main.c new file mode 100644 index 0000000..7b9fdd6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/main/dsps_iir_main.c @@ -0,0 +1,111 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_system.h" +#include "driver/spi_master.h" +#include "soc/gpio_struct.h" +#include "driver/gpio.h" +#include "driver/uart.h" +#include "soc/uart_struct.h" +#include + +#include "esp_dsp.h" + +static const char *TAG = "main"; + +// This example shows how to use iir filters from esp-dsp library + +#define N_SAMPLES 1024 +int N = N_SAMPLES; +// Input test array +__attribute__((aligned(16))) +float d[N_SAMPLES]; +// output array +__attribute__((aligned(16))) +float y[N_SAMPLES]; +__attribute__((aligned(16))) +float y_cf[N_SAMPLES * 2]; + +// Function shows result of IIR filter +void ShowIIRfilter(float freq, float qFactor) +{ + esp_err_t ret = ESP_OK; + float coeffs_lpf[5]; + float w_lpf[5] = {0, 0}; + // Calculate iir filter coefficients + ret = dsps_biquad_gen_lpf_f32(coeffs_lpf, freq, qFactor); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Operation error = %i", ret); + return; + } + // Process input signal + unsigned int start_b = dsp_get_cpu_cycle_count(); + ret = dsps_biquad_f32(d, y, N, coeffs_lpf, w_lpf); + unsigned int end_b = dsp_get_cpu_cycle_count(); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Operation error = %i", ret); + return; + } + + // Show result as a plot + ESP_LOGI(TAG, "Impulse response of IIR filter with F=%f, qFactor=%f", freq, qFactor); + dsps_view(y, 128, 64, 10, -1, 1, '-'); + + // Show result as frequency responce on the plot + for (int i = 0 ; i < N ; i++) { + y_cf[i * 2 + 0] = y[i]; + y_cf[i * 2 + 1] = 0; + } + + // We making FFT transform + dsps_fft2r_fc32_ansi(y_cf, N); + // Bit reverse + dsps_bit_rev_fc32_ansi(y_cf, N); + // Calculating power of spectrum in dB + for (int i = 0 ; i < N / 2 ; i++) { + y_cf[i] = 10 * log10f((y_cf[i * 2 + 0] * y_cf[i * 2 + 0] + y_cf[i * 2 + 1] * y_cf[i * 2 + 1]) / N); + } + // Show power spectrum in 64x10 window from -100 to 0 dB from 0..N/2 samples + dsps_view(y_cf, N / 2, 64, 10, -100, 0, '-'); + ESP_LOGI(TAG, "IIR for %i samples take %i cycles", N, end_b - start_b); +} + +void app_main() +{ + esp_err_t ret; + ESP_LOGI(TAG, "Start Example."); + // If user don't care about buffer allocation, the defalt + // initialization could be used as shown here: + ret = dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Not possible to initialize FFT. Error = %i", ret); + return; + } + + // Initialize input signal + // Generate d function as input signal + dsps_d_gen_f32(d, N, 0); + + // Show filter with Q factor 1 + ShowIIRfilter(0.1, 1); + // Show filter with Q factor 10 + ShowIIRfilter(0.1, 10); + + ESP_LOGI(TAG, "End Example."); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/main/idf_component.yml new file mode 100644 index 0000000..f40e96d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/iir/main/idf_component.yml @@ -0,0 +1,4 @@ +dependencies: + espressif/esp-dsp: + override_path: "../../../" + version: "*" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/CMakeLists.txt new file mode 100644 index 0000000..235f8fb --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/CMakeLists.txt @@ -0,0 +1,6 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(ekf13states) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/README.md new file mode 100644 index 0000000..e27d58c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/README.md @@ -0,0 +1,149 @@ +# Extended Kalman Filter + +This example emulate system with IMU sensors and show how to use Extended Kalman Filter (EKF), with 13 values states vector, +to estimate gyroscope errors and calculate system attitude. +Also, this example show how to use esp-dsp library to operate with matrices and vectors. + +In real system, the emulated sensors values should be replace by the real sensors values. +Then, in real system, a calibration phase should be implemented and after the calibration +phase the state vector X and covariance matrix P should be saved and restored next time, when +filter called. It will save time for initial phase. + +## How to use example + +### Hardware required + +This example does not require any special hardware, and can be run on any common development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py -p PORT flash monitor +``` + +(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 + +``` +I (380) spi_flash: detected chip: gd +I (383) spi_flash: flash io: dio +W (387) spi_flash: Detected size(4096k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (404) cpu_start: Starting scheduler on PRO CPU. +I (0) cpu_start: Starting scheduler on APP CPU. +I (413) main: Start Example. +Gyro error: 0.1 0.2 0.3 + +Calibration phase started: +Loop 1000 from 48000, State data : 0.998361 0.0152476 0.0211183 0.0509682 0.00463435 0.00919946 0.01352 0.998156 0.00619182 -0.000683098 -0.00117112 0.0063196 -0.000952147 +Loop 2000 from 48000, State data : 0.941757 0.0877462 0.170681 0.276156 0.016951 0.0334337 0.0498731 0.998804 0.0162317 -0.00225174 0.00389746 0.0110905 -0.000489083 +Loop 3000 from 48000, State data : 0.372216 0.24247 0.488788 0.750832 0.0323164 0.0642265 0.0962768 0.997295 0.0269348 -0.00481966 0.00605674 0.00779719 0.00494921 +Loop 4000 from 48000, State data : 0.944725 0.0951798 0.165878 0.266308 0.0470155 0.0946294 0.141251 0.998213 0.0337875 -0.00704064 0.00422252 0.0124181 0.00485692 +Loop 5000 from 48000, State data : 0.944287 0.102183 0.168344 0.263706 0.0597481 0.12037 0.179946 0.997498 0.0378795 -0.00841348 0.0053515 0.0104612 0.00666854 +Loop 6000 from 48000, State data : 0.379137 0.258284 0.476853 0.74977 0.0697741 0.140876 0.210702 0.995523 0.0410914 -0.00911293 0.00510267 0.00764586 0.00913832 +Loop 7000 from 48000, State data : 0.947048 0.112494 0.165382 0.251187 0.0773002 0.156661 0.233985 0.996358 0.0425222 -0.00994576 0.00353348 0.00969652 0.00849919 +Loop 8000 from 48000, State data : 0.945556 0.120624 0.169212 0.250481 0.082995 0.16838 0.251493 0.995914 0.0433827 -0.0102827 0.0039165 0.00846988 0.00913964 +Loop 9000 from 48000, State data : 0.381034 0.276875 0.4647 0.749805 0.0871785 0.177046 0.264439 0.995073 0.0441243 -0.0103565 0.00391002 0.0071649 0.00997719 +Loop 10000 from 48000, State data : 0.946592 0.132375 0.168307 0.241068 0.0902326 0.183443 0.273873 0.995445 0.0443655 -0.0106197 0.00326065 0.00799655 0.00960479 +Loop 11000 from 48000, State data : 0.944297 0.140946 0.172816 0.242015 0.0924658 0.188118 0.280807 0.995187 0.0445766 -0.0106806 0.00346742 0.00749049 0.00979064 +Loop 12000 from 48000, State data : 0.378334 0.295555 0.452859 0.751285 0.0941005 0.191525 0.285886 0.994796 0.0447763 -0.0106511 0.0034986 0.00695604 0.0100697 +Loop 13000 from 48000, State data : 0.944329 0.1532 0.172826 0.234315 0.0953075 0.194011 0.289567 0.994899 0.0448155 -0.0107384 0.00323858 0.00728781 0.00989103 +Loop 14000 from 48000, State data : 0.941572 0.16194 0.177533 0.236008 0.0961574 0.195842 0.292257 0.994735 0.0448801 -0.0107422 0.00334282 0.0070798 0.00993131 +Loop 15000 from 48000, State data : 0.373427 0.314041 0.441061 0.753256 0.0967899 0.197167 0.294234 0.994523 0.0449438 -0.0107112 0.00335898 0.00685221 0.0100213 +Loop 16000 from 48000, State data : 0.941028 0.174338 0.177916 0.228952 0.0972752 0.198121 0.295664 0.994518 0.0449512 -0.0107403 0.0032445 0.00697761 0.00993463 +Loop 17000 from 48000, State data : 0.937959 0.183145 0.18262 0.230959 0.0975883 0.198844 0.296697 0.994396 0.0449757 -0.0107339 0.0032963 0.00688409 0.00992845 +Loop 18000 from 48000, State data : 0.3675 0.33233 0.429142 0.755207 0.0978324 0.199358 0.297465 0.994256 0.0450002 -0.0107104 0.00330113 0.00677742 0.00995297 +Loop 19000 from 48000, State data : 0.937014 0.195546 0.183166 0.224089 0.0980371 0.199716 0.298023 0.994211 0.0450036 -0.0107164 0.00324275 0.00681997 0.00990755 +Loop 20000 from 48000, State data : 0.933698 0.204372 0.187784 0.226223 0.0981422 0.200008 0.29842 0.994114 0.0450155 -0.0107065 0.00327025 0.00677405 0.00988484 +Loop 21000 from 48000, State data : 0.361055 0.350426 0.417036 0.756916 0.0982358 0.200208 0.29872 0.99401 0.0450272 -0.0106858 0.00326787 0.00671759 0.0098834 +Loop 22000 from 48000, State data : 0.932425 0.216717 0.188413 0.219358 0.0983318 0.200334 0.298938 0.993947 0.0450303 -0.0106798 0.00323017 0.00672916 0.00985372 +Loop 23000 from 48000, State data : 0.928888 0.225543 0.19291 0.221546 0.0983561 0.200458 0.299082 0.993866 0.0450371 -0.0106664 0.00324701 0.00670354 0.00982584 +Loop 24000 from 48000, State data : 0.354297 0.36833 0.404722 0.758292 0.0983915 0.200535 0.299203 0.993773 0.045044 -0.0106443 0.00324109 0.00666712 0.00981608 +Loop 25000 from 48000, State data : 0.927316 0.237803 0.19359 0.214612 0.0984453 0.200572 0.299291 0.993709 0.0450468 -0.0106303 0.00321085 0.00666748 0.00979369 +Loop 26000 from 48000, State data : 0.92357 0.246618 0.197954 0.216824 0.0984385 0.200632 0.299342 0.993629 0.0450514 -0.0106123 0.00322403 0.00665109 0.00976504 +Loop 27000 from 48000, State data : 0.347305 0.386034 0.392194 0.759303 0.0984521 0.200663 0.299393 0.993546 0.0450564 -0.0105864 0.00321847 0.00662376 0.00975319 +Loop 28000 from 48000, State data : 0.92171 0.258777 0.198672 0.209796 0.0984898 0.200666 0.299433 0.993475 0.045059 -0.0105663 0.00319366 0.00662077 0.00973562 +Loop 29000 from 48000, State data : 0.917761 0.267574 0.202895 0.212019 0.0984714 0.2007 0.299446 0.9934 0.0450631 -0.0105437 0.00320563 0.0066091 0.00970881 +Loop 30000 from 48000, State data : 0.340113 0.403531 0.379459 0.759933 0.0984762 0.200711 0.299466 0.993322 0.0450673 -0.0105132 0.00320031 0.00658594 0.00969804 +Loop 31000 from 48000, State data : 0.915619 0.279623 0.203648 0.204891 0.0985076 0.2007 0.299484 0.993253 0.0450696 -0.0104878 0.00317637 0.00658294 0.00968329 +Loop 32000 from 48000, State data : 0.91147 0.288396 0.207727 0.207121 0.0984838 0.200725 0.299481 0.99318 0.0450732 -0.0104599 0.00318786 0.00657435 0.00965871 +Loop 33000 from 48000, State data : 0.332734 0.420812 0.366519 0.760177 0.0984844 0.20073 0.299492 0.993105 0.045077 -0.0104242 0.00318322 0.00655352 0.00964965 +Loop 34000 from 48000, State data : 0.909049 0.300327 0.208511 0.199891 0.0985129 0.200714 0.299506 0.993034 0.0450794 -0.0103941 0.0031609 0.00655179 0.00963774 +Loop 35000 from 48000, State data : 0.904704 0.309072 0.212442 0.202124 0.0984875 0.200736 0.299498 0.992959 0.0450829 -0.0103612 0.0031732 0.00654506 0.00961709 +Loop 36000 from 48000, State data : 0.325179 0.437867 0.353384 0.760034 0.098487 0.200738 0.299504 0.992885 0.0450865 -0.0103208 0.00317079 0.00652607 0.00961171 +Loop 37000 from 48000, State data : 0.325177 0.437848 0.353377 0.760049 0.0989011 0.200534 0.299617 0.992838 0.0450912 -0.0103039 0.00319877 0.00652725 0.00959415 +Loop 38000 from 48000, State data : 0.325194 0.437821 0.353363 0.760064 0.099202 0.200388 0.299726 0.992838 0.0450926 -0.0102998 0.00320422 0.00652895 0.00959084 +Loop 39000 from 48000, State data : 0.325211 0.437798 0.353354 0.760074 0.0994169 0.200278 0.299826 0.992816 0.045093 -0.0102979 0.00320263 0.0065278 0.00959847 +Loop 40000 from 48000, State data : 0.325222 0.437784 0.353346 0.760081 0.0995754 0.200199 0.299886 0.992816 0.0450925 -0.0102967 0.00320118 0.00652683 0.00960376 +Loop 41000 from 48000, State data : 0.325231 0.437773 0.353342 0.760085 0.0996929 0.200142 0.299945 0.992816 0.0450925 -0.0102966 0.00320043 0.00652627 0.00960631 +Loop 42000 from 48000, State data : 0.325238 0.437769 0.353336 0.760087 0.0997802 0.200119 0.299978 0.992816 0.0450913 -0.0102965 0.00320007 0.0065261 0.00960773 +Loop 43000 from 48000, State data : 0.32524 0.437762 0.353331 0.760093 0.099842 0.200089 0.299979 0.992816 0.0450913 -0.0102961 0.00320001 0.00652608 0.00960857 +Loop 44000 from 48000, State data : 0.325241 0.43776 0.353327 0.760095 0.099883 0.200059 0.299979 0.992816 0.045089 -0.0102953 0.00319975 0.00652622 0.00960868 +Loop 45000 from 48000, State data : 0.325243 0.437759 0.353325 0.760096 0.0999138 0.200045 0.299979 0.992816 0.0450878 -0.0102956 0.0031996 0.00652593 0.00960985 +Loop 46000 from 48000, State data : 0.325245 0.437756 0.353324 0.760097 0.0999355 0.200042 0.299979 0.992816 0.0450878 -0.0102959 0.00319972 0.0065261 0.00960944 +Loop 47000 from 48000, State data : 0.325246 0.437757 0.353322 0.760098 0.0999504 0.200039 0.299979 0.992816 0.0450878 -0.0102959 0.00319952 0.00652634 0.00960984 +Calibration phase finished. + +Regular calculation started: +Loop 1000 from 48000, State data : 0.9996 6.68374e-06 -7.71055e-05 0.028269 0.0999599 0.199742 0.298758 0.992397 0.0506049 -0.00981295 0.00516875 0.00517689 0.0102406 +Loop 2000 from 48000, State data : 0.95186 0.0747648 0.154942 0.253704 0.0997667 0.199899 0.298983 0.992397 0.0504132 -0.0098162 0.00510809 0.00522702 0.0102249 +Loop 3000 from 48000, State data : 0.395338 0.237819 0.486861 0.741698 0.0994409 0.200091 0.299095 0.992397 0.0502891 -0.00981838 0.00506923 0.00525921 0.0102147 +Loop 4000 from 48000, State data : 0.952465 0.0877289 0.155254 0.247002 0.0992076 0.200299 0.299271 0.992397 0.0502054 -0.00981973 0.00504271 0.00528111 0.0102076 +Loop 5000 from 48000, State data : 0.950016 0.096521 0.160702 0.249654 0.0990023 0.200426 0.299306 0.992397 0.05013 -0.00982108 0.00501929 0.00530046 0.0102013 +Loop 6000 from 48000, State data : 0.389808 0.256786 0.476033 0.745321 0.0988748 0.200476 0.299331 0.992397 0.050078 -0.00982208 0.0050032 0.00531378 0.0101971 +Loop 7000 from 48000, State data : 0.950306 0.109383 0.161046 0.242937 0.0987883 0.200581 0.299444 0.992397 0.0500379 -0.00982289 0.0049906 0.00532416 0.0101938 +Loop 8000 from 48000, State data : 0.947646 0.118155 0.166392 0.2456 0.0986931 0.200633 0.299434 0.992397 0.0499987 -0.00982366 0.00497852 0.00533416 0.0101903 +Loop 9000 from 48000, State data : 0.383995 0.275557 0.464951 0.748623 0.0986473 0.200627 0.299425 0.992397 0.0499702 -0.00982415 0.00496994 0.00534126 0.0101879 +Loop 10000 from 48000, State data : 0.94764 0.130939 0.166769 0.238794 0.0986203 0.200694 0.299509 0.992397 0.0499475 -0.00982454 0.004963 0.00534698 0.0101861 +Loop 11000 from 48000, State data : 0.944771 0.139703 0.171999 0.241471 0.0985699 0.200714 0.299481 0.992397 0.0499252 -0.00982467 0.00495605 0.00535274 0.0101844 +Loop 12000 from 48000, State data : 0.377949 0.294161 0.453622 0.751566 0.0985571 0.200685 0.299459 0.992397 0.0499092 -0.00982467 0.00495124 0.0053567 0.0101832 +Loop 13000 from 48000, State data : 0.944475 0.152413 0.172408 0.234549 0.0985539 0.200736 0.299532 0.992397 0.0498962 -0.00982467 0.00494735 0.0053599 0.0101823 +Loop 14000 from 48000, State data : 0.941398 0.16117 0.177516 0.237239 0.0985215 0.200743 0.299498 0.992397 0.0498826 -0.00982467 0.0049434 0.00536316 0.0101813 +Loop 15000 from 48000, State data : 0.371694 0.312599 0.442052 0.754132 0.0985222 0.200704 0.299474 0.992397 0.049874 -0.00982467 0.00494084 0.0053653 0.0101808 +Loop 16000 from 48000, State data : 0.940819 0.173801 0.177954 0.230187 0.0985277 0.20075 0.299544 0.992397 0.0498671 -0.00982467 0.00493887 0.00536698 0.0101804 +Loop 17000 from 48000, State data : 0.937532 0.182552 0.182939 0.232897 0.0985023 0.200752 0.299507 0.992397 0.0498602 -0.00982467 0.0049367 0.0053688 0.0101799 +Loop 18000 from 48000, State data : 0.365235 0.33087 0.43025 0.756316 0.0985084 0.200708 0.299482 0.992397 0.0498562 -0.00982467 0.00493555 0.0053698 0.0101796 +Loop 19000 from 48000, State data : 0.936669 0.195102 0.183407 0.225717 0.0985175 0.200754 0.299549 0.992397 0.0498532 -0.00982467 0.00493474 0.00537051 0.0101794 +Loop 20000 from 48000, State data : 0.933178 0.203841 0.188264 0.22844 0.0984953 0.200754 0.299511 0.992397 0.0498502 -0.00982467 0.00493366 0.00537141 0.010179 +Loop 21000 from 48000, State data : 0.35858 0.348967 0.41822 0.758113 0.0985034 0.200709 0.299484 0.992397 0.0498495 -0.00982467 0.00493334 0.00537172 0.0101788 +Loop 22000 from 48000, State data : 0.93203 0.216304 0.188763 0.221136 0.0985129 0.200755 0.299549 0.992397 0.0498497 -0.00982467 0.00493327 0.00537182 0.0101787 +Loop 23000 from 48000, State data : 0.928336 0.225027 0.193488 0.22387 0.0984918 0.200754 0.29951 0.992397 0.0498497 -0.00982467 0.00493298 0.00537209 0.0101787 +Loop 24000 from 48000, State data : 0.351735 0.366882 0.405969 0.759519 0.0985006 0.200707 0.299482 0.992397 0.0498508 -0.00982467 0.00493324 0.00537189 0.0101787 +Loop 25000 from 48000, State data : 0.926905 0.237397 0.194017 0.216443 0.0985107 0.200755 0.299545 0.992397 0.0498526 -0.00982467 0.00493366 0.00537159 0.0101787 +Loop 26000 from 48000, State data : 0.92301 0.246099 0.198608 0.219185 0.0984902 0.200753 0.299511 0.992397 0.0498537 -0.00982467 0.00493391 0.00537146 0.0101787 +Loop 27000 from 48000, State data : 0.344708 0.384605 0.393502 0.760534 0.0984992 0.200706 0.299488 0.992397 0.0498556 -0.00982467 0.00493459 0.00537092 0.0101787 +Loop 28000 from 48000, State data : 0.921297 0.258369 0.199166 0.211636 0.0985091 0.200757 0.299555 0.992397 0.0498579 -0.00982467 0.00493535 0.00537033 0.0101787 +Loop 29000 from 48000, State data : 0.917204 0.267048 0.203621 0.214385 0.0984891 0.200754 0.29952 0.992397 0.0498601 -0.00982467 0.00493597 0.0053698 0.0101787 +Loop 30000 from 48000, State data : 0.337501 0.402129 0.380825 0.761156 0.0984981 0.200706 0.299491 0.992397 0.0498626 -0.00982467 0.00493691 0.00536903 0.0101787 +Loop 31000 from 48000, State data : 0.915208 0.279212 0.204208 0.206723 0.0985072 0.200758 0.299553 0.992397 0.0498654 -0.00982467 0.00493789 0.00536824 0.0101787 +Loop 32000 from 48000, State data : 0.910918 0.287861 0.208526 0.209479 0.0984873 0.200754 0.299515 0.992397 0.0498676 -0.00982467 0.00493879 0.00536752 0.0101787 +Loop 33000 from 48000, State data : 0.330116 0.419445 0.367945 0.761385 0.0984966 0.200704 0.299489 0.992397 0.0498701 -0.00982467 0.00493986 0.00536667 0.0101787 +Loop 34000 from 48000, State data : 0.908641 0.299912 0.209141 0.201703 0.0985056 0.200757 0.299551 0.992397 0.0498728 -0.00982467 0.00494093 0.00536582 0.0101787 +Loop 35000 from 48000, State data : 0.904158 0.308528 0.213318 0.204462 0.0984862 0.200752 0.299518 0.992397 0.0498751 -0.00982467 0.00494188 0.00536507 0.0101787 +Loop 36000 from 48000, State data : 0.322561 0.436541 0.354869 0.761219 0.0984953 0.200702 0.299495 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Loop 37000 from 48000, State data : 0.322549 0.436508 0.354868 0.761243 0.0989076 0.200506 0.299634 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Loop 38000 from 48000, State data : 0.322568 0.436485 0.354851 0.761257 0.099208 0.200371 0.299726 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Loop 39000 from 48000, State data : 0.322581 0.436466 0.354841 0.761267 0.0994207 0.200267 0.299799 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Loop 40000 from 48000, State data : 0.322592 0.436454 0.354831 0.761274 0.099581 0.200208 0.299849 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Loop 41000 from 48000, State data : 0.322601 0.436443 0.354826 0.761278 0.099701 0.20015 0.299901 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Loop 42000 from 48000, State data : 0.322606 0.436435 0.35482 0.761283 0.0997844 0.200101 0.299931 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Loop 43000 from 48000, State data : 0.322611 0.436429 0.35482 0.761285 0.0998457 0.200072 0.299961 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Loop 44000 from 48000, State data : 0.322615 0.436425 0.354818 0.761286 0.0998883 0.200057 0.29999 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Loop 45000 from 48000, State data : 0.322617 0.436423 0.354816 0.761287 0.099912 0.200042 0.300002 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Loop 46000 from 48000, State data : 0.322617 0.436421 0.354815 0.761289 0.0999343 0.20003 0.300002 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Loop 47000 from 48000, State data : 0.322618 0.436421 0.354814 0.761289 0.0999444 0.20003 0.300002 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Final State data : 0.322618 0.436421 0.354814 0.761289 0.0999518 0.20003 0.300002 0.992397 0.0498778 -0.00982467 0.00494296 0.00536423 0.0101787 +Estimated error : 0.0999518 0.20003 0.300002 +Difference between real and estimated errors : 4.81904e-05 -2.99811e-05 -2.17557e-06 + +Expected Euler angels (degree) : -29.8215 64.9692 150.241 +Calculated Euler angels (degree) : -35.1525 63.3067 156.167 +``` diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/main/CMakeLists.txt new file mode 100644 index 0000000..7fefbfb --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "ekf_imu13states_main.cpp") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/main/ekf_imu13states_main.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/main/ekf_imu13states_main.cpp new file mode 100644 index 0000000..dda6473 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/main/ekf_imu13states_main.cpp @@ -0,0 +1,196 @@ +// Copyright 2020-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include +#include +#include "dsp_platform.h" +#include "esp_log.h" + +#include "esp_dsp.h" +#include "ekf_imu13states.h" + +static const char *TAG = "main"; + +extern "C" void app_main(); + +// This example reproduce system with gyroscope, accelerometer, and magnetometer +// True gyroscope values will be transformed and applied to the rotation and reference measurements. +void app_main() +{ + ekf_imu13states *ekf13 = new ekf_imu13states(); + ekf13->Init(); + ESP_LOGI(TAG, "Start Example."); + + // Set up some initial values to emulate and calculate system values + int total_N = 3000; + // Pi value + float pi = std::atan(1) * 4; + + // gyroscope bias error + float gyro_err_data[] = {0.1, 0.2, 0.3}; // static constatnt error + dspm::Mat gyro_err(gyro_err_data, 3, 1); + + + // Measurement noise covariance values for diagonal covariance matrix. + // For the real system these values could be adjusted! + // These calues depends on how noisy the measurement. + // + float R[10]; + for (size_t i = 0; i < 10; i++) { + R[i] = 0.01; + } + + // Reference vectors + float accel0_data[] = {0, 0, 1}; + // In real system magnetometer vector will have different value and direction + // The EKF will calculate them. This value is used as initial state. + float magn0_data[] = {1, 0, 0}; + + dspm::Mat accel0(accel0_data, 3, 1); + dspm::Mat magn0(magn0_data, 3, 1); + + float dt = 0.01; + + dspm::Mat gyro_data(3, 1); + int count = 0; + + // Initial rotation matrix + dspm::Mat Rm = dspm::Mat::eye(3); + dspm::Mat Re = dspm::Mat::eye(3); + + gyro_err *= 1; + + std::cout << "Gyro error: " << gyro_err.t() << std::endl; + std::cout << "Calibration phase started: " << std::endl; + for (size_t n = 1; n < total_N * 16; n++) { + if ((n % 1000) == 0) { + std::cout << "Loop " << n << " from " << total_N * 16; + std::cout << ", State data : " << ekf13->X.t(); + } + // + // This part of the loop related to the system emulation + // + + // Generate gyro values for system emulation + gyro_data *= 0; // reset gyro value + if ((n >= (total_N / 2)) && (n < total_N * 12)) { + gyro_data(0, 0) = 1 / pi * std::cos(-pi / 2 + pi / 2 * count * 2 / (total_N / 10)); + gyro_data(1, 0) = 2 / pi * std::cos(-pi / 2 + pi / 2 * count * 2 / (total_N / 10)); + gyro_data(2, 0) = 3 / pi * std::cos(-pi / 2 + pi / 2 * count * 2 / (total_N / 10)); + count++; + } + dspm::Mat gyro_sample = gyro_data + gyro_err; + + gyro_data *= dt; + // Calculate rotation for the last time interval + Re = ekf::eul2rotm(gyro_data.data); + // Ally rotation to the system rotation matrix + Rm = Rm * Re; + // Convert rotation matrix to the system attitude quaternion + dspm::Mat attitude = ekf::rotm2quat(Rm); + // We have to rotate accel and magn to the opposite direction + dspm::Mat accel_data = Rm.t() * accel0; + dspm::Mat magn_data = Rm.t() * magn0; + + dspm::Mat accel_norm = accel_data / accel_data.norm(); + dspm::Mat magn_norm = magn_data / magn_data.norm(); + + // + // This part of the loop related to the real system + // Here gyro_sample values must be replaced by measured gyroscope values + // and accel_norm and magn_norm should be real measured accel and magn values + // The dt in this case should be real time difference in seconds between samples + // Fill the input control values with measured gyro values + float input_u[] = {gyro_sample(0, 0), gyro_sample(1, 0), gyro_sample(2, 0)}; + // Process input values to new state + ekf13->Process(input_u, dt); + dspm::Mat q_norm(ekf13->X.data, 4, 1); + q_norm /= q_norm.norm(); + // Correct state and calculate gyro and magnetometer values. + // Here accel_norm and magn_norm should be real measured accel and magn values + ekf13->UpdateRefMeasurementMagn(accel_norm.data, magn_norm.data, R); + } + std::cout << "Calibration phase finished." << std::endl << std::endl; + + std::cout << "Regular calculation started:" << std::endl; + + // Reset rotation nmatrix + Rm = dspm::Mat::eye(3); + Re = dspm::Mat::eye(3); + + count = 0; + // Set initial state + ekf13->X(0, 0) = 1; + ekf13->X(0, 1) = 0; + ekf13->X(0, 2) = 0; + ekf13->X(0, 3) = 0; + + for (size_t n = 1; n < total_N * 16; n++) { + if ((n % 1000) == 0) { + std::cout << "Loop " << n << " from " << total_N * 16; + std::cout << ", State data : " << ekf13->X.t(); + } + // + // This part of the loop related to the system emulation + // + + // Generate gyro values for system emulation + gyro_data *= 0; // reset gyro value + if ((n >= (total_N / 2)) && (n < total_N * 12)) { + gyro_data(0, 0) = 1 / pi * std::cos(-pi / 2 + pi / 2 * count * 2 / (total_N / 10)); + gyro_data(1, 0) = 2 / pi * std::cos(-pi / 2 + pi / 2 * count * 2 / (total_N / 10)); + gyro_data(2, 0) = 3 / pi * std::cos(-pi / 2 + pi / 2 * count * 2 / (total_N / 10)); + count++; + } + dspm::Mat gyro_sample = gyro_data + gyro_err; + + gyro_data *= dt; + // Calculate rotation for the last time interval + Re = ekf::eul2rotm(gyro_data.data); + // Ally rotation to the system rotation matrix + Rm = Rm * Re; + // Convert rotation matrix to the system attitude quaternion + dspm::Mat attitude = ekf::rotm2quat(Rm); + // We have to rotate accel and magn to the opposite direction + dspm::Mat accel_data = Rm.t() * accel0; + dspm::Mat magn_data = Rm.t() * magn0; + + dspm::Mat accel_norm = accel_data / accel_data.norm(); + dspm::Mat magn_norm = magn_data / magn_data.norm(); + + // + // This part of the loop related to the real system + // Here gyro_sample values must be replaced by measured gyroscope values + // and accel_norm and magn_norm should be real measured accel and magn values + // The dt in this case should be real time difference in seconds between samples + // Fill the input control values with measured gyro values + float input_u[] = {gyro_sample(0, 0), gyro_sample(1, 0), gyro_sample(2, 0)}; + // Process input values to new state + ekf13->Process(input_u, dt); + dspm::Mat q_norm(ekf13->X.data, 4, 1); + q_norm /= q_norm.norm(); + // Correct state and calculate gyro and magnetometer values. + // Here accel_norm and magn_norm should be real measured accel and magn values + ekf13->UpdateRefMeasurement(accel_norm.data, magn_norm.data, R); + } + + std::cout << "Final State data : " << ekf13->X.t(); + dspm::Mat estimated_error(&ekf13->X.data[4], 3, 1); + std::cout << "Estimated error : " << estimated_error.t(); + std::cout << "Difference between real and estimated errors : " << (gyro_err - estimated_error).t() << std::endl; + + std::cout << "Expected Euler angels (degree) : " << (180 / pi * ekf::quat2eul(ekf::rotm2quat(Rm).data)).t(); + std::cout << "Calculated Euler angels (degree) : " << (180 / pi * ekf::quat2eul(ekf13->X.data)).t() << std::endl; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/main/idf_component.yml new file mode 100644 index 0000000..f40e96d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/main/idf_component.yml @@ -0,0 +1,4 @@ +dependencies: + espressif/esp-dsp: + override_path: "../../../" + version: "*" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/sdkconfig.defaults b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/sdkconfig.defaults new file mode 100644 index 0000000..4bbe387 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/kalman/sdkconfig.defaults @@ -0,0 +1,21 @@ +# +# DSP Library +# +# CONFIG_DSP_ANSI is not set +CONFIG_DSP_OPTIMIZED=y +# CONFIG_DSP_MAX_FFT_SIZE_512 is not set +# CONFIG_DSP_MAX_FFT_SIZE_1024 is not set +# CONFIG_DSP_MAX_FFT_SIZE_2048 is not set +CONFIG_DSP_MAX_FFT_SIZE_4096=y +# CONFIG_DSP_MAX_FFT_SIZE_8192 is not set +# CONFIG_DSP_MAX_FFT_SIZE_16384 is not set +# CONFIG_DSP_MAX_FFT_SIZE_32768 is not set +CONFIG_DSP_MAX_FFT_SIZE=4096 +# end of DSP Library + +# +# ESP System Settings +# +CONFIG_ESP_INT_WDT=n +CONFIG_ESP_TASK_WDT=n +# end of ESP System Settings diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/CMakeLists.txt new file mode 100644 index 0000000..577afcd --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/CMakeLists.txt @@ -0,0 +1,7 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(audio-lyraT) +spiffs_create_partition_image(storage spiffs FLASH_IN_PROJECT) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/README.md new file mode 100644 index 0000000..2fe8abf --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/README.md @@ -0,0 +1,71 @@ +# ESP-DSP LyraT Board audio processing application + +The demo applications are developed for the ESP32-LyraT development board and demonstrate the usage of IIR filters from the ESP-DSP library. +This example showcases how to use IIR filter functionality to process audio stream data. +To hear the audio please connect headphones or speakers to the ESP32-LyraT audio output. +The example performs the following steps: + +1. Read samples from a file + * read samples from file + * write audio samples to the triple buffer +2. Process audio samples + * process volume/bass/treble + * apply digital limiter to the audio data + * control audio buffer overflow +3. Pass samples to the audio codec + +To control the volume/bass/treble, please select the value by press 'Set' button and adjust the value by '+/-' buttons. + +## The Triple Audio Buffer + +In audion processing, it's possible to have situation when one task write data to the processing buffer (processing task), and another task read data from the same buffer, and still in reading process. +Triple buffering is a technique used in audio processing to minimize latency and ensure smooth playback. It involves using three buffers to store audio data. Here's a description of how it works: + +* Buffer A: This buffer holds the audio data that is currently being processed by the audio system. It is typically filled with samples from the audio source and processed in real-time. + +* Buffer B: When Buffer A is full, the audio system begins reading from Buffer A and starts processing the data. At the same time, Buffer B is filled with new audio samples from the source. + +* Buffer C: Once Buffer B is full, the audio system switches its attention to Buffer B and continues processing data. Buffer C is then filled with the latest audio samples. + +The cycle continues, with the audio system always processing the data from a buffer while the other two buffers are being filled. This approach helps ensure a continuous and uninterrupted audio playback, as there is always a buffer ready to be processed. It reduces the chances of audio glitches or dropouts caused by delays in reading or processing the audio data. + +Triple buffering is particularly useful when working with real-time audio processing applications, where low latency and uninterrupted playback are crucial. + +## Audio Processing Flow + +The audio processing flow contains next blocks: +1. Audio processing task + * Read data from file and store to the triple buffer + * Read from triple buffer and concert data from int16_t to float + * Process bass + * Process treble + * Process volume + * Apply digital limiter + * Convert data from float to int16_t and store to the triple buffer +2. Audio output task + * Write data from triple buffer to audio codec +3. Buttons control task + * React on buttons and adjust the control values + * Calculates IIR filter coefficients + +## How to use the example + +### Hardware required + +This example require LyraT development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py flash monitor +``` + +(To exit the serial monitor, type ``Ctrl-]``.) + +See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects. diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/main/CMakeLists.txt new file mode 100644 index 0000000..e789f5c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "audio_amp_main.c") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/main/audio_amp_main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/main/audio_amp_main.c new file mode 100644 index 0000000..480534a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/main/audio_amp_main.c @@ -0,0 +1,382 @@ +/* + * SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: CC0-1.0 + */ + +#include +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/queue.h" +#include "esp_log.h" +#include "esp_dsp.h" +#include "bsp/esp-bsp.h" +#include +#include + +// Buffer for reading/writing to I2S driver. Same length as SPIFFS buffer and I2S buffer, for optimal read/write performance. +// Recording audio data path: +// I2S peripheral -> I2S buffer (DMA) -> App buffer (RAM) -> SPIFFS buffer -> External SPI Flash. +// Vice versa for playback. +#define BUFFER_SIZE (64) +#define SAMPLE_RATE (16000) // For recording +#define DEFAULT_VOLUME (100) + +// Globals +static const char *TAG = "example"; +static QueueHandle_t audio_button_q = NULL; + +static void btn_handler(void *button_handle, void *usr_data) +{ + int button_pressed = (int)usr_data; + xQueueSend(audio_button_q, &button_pressed, 0); +} + +// Very simple WAV header, ignores most fields +typedef struct __attribute__((packed)) +{ + uint8_t ignore_0[22]; + uint16_t num_channels; + uint32_t sample_rate; + uint8_t ignore_1[6]; + uint16_t bits_per_sample; + uint8_t ignore_2[4]; + uint32_t data_size; + uint8_t data[]; +} dumb_wav_header_t; + +typedef enum audio_set { + AUDIO_VOLUME, + AUDIO_BASS, + AUDIO_TREBLE, +} audio_set_t; + +static esp_codec_dev_handle_t spk_codec_dev = NULL; +static FILE *play_file = NULL; +// Pointer to a file that is going to be played +static const char play_filename[] = BSP_SPIFFS_MOUNT_POINT"/16bit_mono_44_1_khz.wav"; + +// Definition for all tasks +static void buttons_process_task(void *arg); +static void audio_read_task(void *arg); +static void audio_process_task(void *arg); + + +// Wave file header +static dumb_wav_header_t wav_header; +static audio_set_t current_set = AUDIO_VOLUME; + +// Data for IIR filters +float iir_coeffs_lpf[5]; +float iir_w_lpf[5] = {0, 0}; + +float iir_coeffs_hpf[5]; +float iir_w_hpf[5] = {0, 0}; + +// IIR filters parameters +// Parameters for low-pass filter (LPF) +float lpf_gain = 0; +float lpf_qFactor = 0.5; +float lpf_freq = 0.01; + +// Parameters for high-pass filter (HPF) +float hpf_gain = 0; +float hpf_qFactor = 1; +float hpf_freq = 0.15; + +// Volume control definitions +float full_volume = 1; +// Volume in dB +int full_volume_db = -12; +// Digital limiter envelope value +float full_envelope = 0; + +// processing audio buffer +float processing_audio_buffer[BUFFER_SIZE] = {0}; + +// The triple_audio_buffer contains tree data arrays sizeof BUFFER_SIZE, for writing audio data to the codec +int16_t triple_audio_buffer[3 * BUFFER_SIZE] = {0}; +// The write index shows the audio buffer that will be used to write data to the codec +int audio_buffer_write_index = 0; +// The read index shows the audio buffer that will be used to fill data from the data source to the processing buffer +int audio_buffer_read_index = 0; + +// Semaphore to synchronize the read and write +static SemaphoreHandle_t sync_read_task; + +// Convert input int16_t Q15 values array to the float values array +static void convert_short2float(int16_t *int16_data, float *float_data, int len) +{ + float multiplier = 1.0 / (float)(INT16_MAX + 1); + for (int i = 0 ; i < len ; i++) { + float_data[i] = (float)int16_data[i] * multiplier; + } +} + +// Convert input float values to the int16_t Q15 values array +static void convert_float2short(float *float_data, int16_t *int16_data, int len) +{ + float multiplier = (float)(INT16_MAX + 1); + for (int i = 0 ; i < len ; i++) { + int16_data[i] = (int16_t)((float)multiplier * (float)float_data[i]); + } +} + +// In the audio processing the valid output audio values for the floating point format should be in range +/- 1.0, +// because these values will be converted to the 0x8000 and 0x7fff int16_t values, and will be accepted by the codec. +// With additional amplification, for example bass, treble, and for other processing, it is possible that the audio +// signal will reach the maximum values and will make an overflow at the DAC. +// To avoid this situation the digital limiter analyze the output values and control the full amplification gain. +// +void digitalLimiter(float *input_signal, float *output_signal, int signal_length, float threshold, float attack_value, float release_value, float *in_envelope) +{ + float envelope = *in_envelope; + for (int i = 0; i < signal_length; i++) { + // Calculate envelope + float abs_input = fabsf(input_signal[i]); + if (abs_input > envelope) { + envelope = envelope * (1 - attack_value) + attack_value * abs_input; + } else { + envelope = envelope * (1 - release_value) + release_value * abs_input; + } + + // Apply compression + if (envelope > threshold) { + output_signal[i] = input_signal[i] * (threshold / envelope); + } else { + output_signal[i] = input_signal[i]; + } + } + *in_envelope = envelope; +} + +static void audio_process_task(void *arg) +{ + // Init codeac and apply the initial volume to maximum + spk_codec_dev = bsp_audio_codec_speaker_init(); + assert(spk_codec_dev); + esp_codec_dev_set_out_vol(spk_codec_dev, DEFAULT_VOLUME); + + // Open file and het the WAV header to set up the sample frequency, amount of channels and resolution + play_file = fopen(play_filename, "rb"); + if (play_file == NULL) { + ESP_LOGW(TAG, "%s file does not exist!", play_filename); + } + // Read WAV header + if (fread((void *)&wav_header, 1, sizeof(wav_header), play_file) != sizeof(wav_header)) { + ESP_LOGW(TAG, "Error in reading file"); + return; + } + + ESP_LOGI(TAG, "Number of channels: %" PRIu16 "", wav_header.num_channels); + ESP_LOGI(TAG, "Bits per sample: %" PRIu16 "", wav_header.bits_per_sample); + ESP_LOGI(TAG, "Sample rate: %" PRIu32 "", wav_header.sample_rate); + ESP_LOGI(TAG, "Data size: %" PRIu32 "", wav_header.data_size); + esp_codec_dev_sample_info_t fs = { + .sample_rate = wav_header.sample_rate, + .channel = wav_header.num_channels, + .bits_per_sample = wav_header.bits_per_sample, + }; + if (spk_codec_dev != NULL) { + int result = esp_codec_dev_open(spk_codec_dev, &fs); + } + // Calculate initial volume value + full_volume = exp10f((float)full_volume_db / 20); + // Calculate initial state for LPF + dsps_biquad_gen_lowShelf_f32(iir_coeffs_lpf, lpf_freq, lpf_gain, lpf_qFactor); + // Calculate initial state for HPF + dsps_biquad_gen_highShelf_f32(iir_coeffs_hpf, hpf_freq, hpf_gain, hpf_qFactor); + + BaseType_t ret = xTaskCreate(buttons_process_task, "buttons_process_task", 4096, NULL, 4, NULL); + assert(ret == pdPASS); + + sync_read_task = xSemaphoreCreateCounting(1, 0); + + ret = xTaskCreate(audio_read_task, "audio_read_task", 4096, NULL, 7, NULL); + assert(ret == pdPASS); + vTaskDelay(1); + + ESP_LOGW(TAG, "To select volume/bass/treble please use the 'Set' button. And adjust the value with +/- buttons."); + + for (;;) { + /* Get data from SPIFFS and send it to codec */ + int16_t *wav_bytes = &triple_audio_buffer[audio_buffer_write_index * BUFFER_SIZE]; + // Write samples to audio codec + esp_codec_dev_write(spk_codec_dev, wav_bytes, BUFFER_SIZE * sizeof(int16_t)); + audio_buffer_write_index++; + if (audio_buffer_write_index >= 3) { + audio_buffer_write_index = 0; + } + // Check the triple buffer overflow + if (audio_buffer_write_index == audio_buffer_read_index) { + // Call delay to switch the task to fill the buffer + vTaskDelay(1); + // Check and indicate overflow status + if (audio_buffer_write_index == audio_buffer_read_index) { + ESP_LOGW(TAG, "Audio buffer overflow!"); + } + } + // Generate synt event to read task: + xSemaphoreGive(sync_read_task); + } +} + +// The audio_read_task is responsible to read data from the file and fill it to the audio buffer. +// The audio buffer is places inside of triple buffer, to avoid overflow situation in case if +// the processing task busy for a while. +static void audio_read_task(void *arg) +{ + while (1) { + // Wait the sync semaphore + if (xSemaphoreTake(sync_read_task, 100)) { + // Get the pointer to the current audio buffer + int16_t *wav_buffer = &triple_audio_buffer[audio_buffer_read_index * BUFFER_SIZE]; + // Read the data from the file + uint32_t bytes_read_from_spiffs = fread(wav_buffer, sizeof(int16_t), BUFFER_SIZE, play_file); + // Convert input samples from int16 to float for processing + convert_short2float((int16_t *)wav_buffer, processing_audio_buffer, BUFFER_SIZE); + // Apply bass + dsps_biquad_f32(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, iir_coeffs_lpf, iir_w_lpf); + // Apply treble + dsps_biquad_f32(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, iir_coeffs_hpf, iir_w_hpf); + // Apply voluve + dsps_mulc_f32_ansi(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, full_volume, 1, 1); + // Apply limiter + digitalLimiter(processing_audio_buffer, processing_audio_buffer, BUFFER_SIZE, 0.5, 0.5, 0.0001, &full_envelope); + // Convert from float to int16 for audio codec + convert_float2short(processing_audio_buffer, (int16_t *)wav_buffer, BUFFER_SIZE); + + if (bytes_read_from_spiffs != BUFFER_SIZE) { + // Rewind the file and read the WAV header + rewind(play_file); + fread((void *)&wav_header, 1, sizeof(wav_header), play_file); + // Read data to the audio buffer + bytes_read_from_spiffs = fread(wav_buffer, sizeof(int16_t), BUFFER_SIZE, play_file); + } + audio_buffer_read_index++; + if (audio_buffer_read_index >= 3) { + audio_buffer_read_index = 0; + } + } else { + // Error in case of timeout + ESP_LOGE(TAG, "Audio timeout!"); + } + } +} + +static void buttons_process_task(void *arg) +{ + while (1) { + int btn_index = 0; + if (xQueueReceive(audio_button_q, &btn_index, portMAX_DELAY) == pdTRUE) { + switch (btn_index) { + case BSP_BUTTON_SET: { + current_set += 1; + if (current_set > 2) { + current_set = AUDIO_VOLUME; + } + switch (current_set) { + case AUDIO_VOLUME: + ESP_LOGW(TAG, "Select volume"); + break; + case AUDIO_BASS: + ESP_LOGW(TAG, "Select bass"); + break; + case AUDIO_TREBLE: + ESP_LOGW(TAG, "Select treble"); + break; + default: + break; + } + break; + } + case BSP_BUTTON_VOLDOWN: { + switch (current_set) { + case AUDIO_VOLUME: + full_volume_db -= 3; + if (full_volume_db < -36) { + full_volume_db = -36; + } + full_volume = exp10f((float)full_volume_db / 20); + ESP_LOGI(TAG, "Volume Down: %i dB", full_volume_db); + break; + case AUDIO_BASS: + lpf_gain -= 1; + if (lpf_gain < -12) { + lpf_gain = -12; + } + ESP_LOGI(TAG, "Bass Down: %i", (int)lpf_gain); + dsps_biquad_gen_lowShelf_f32(iir_coeffs_lpf, lpf_freq, lpf_gain, lpf_qFactor); + break; + case AUDIO_TREBLE: + hpf_gain -= 1; + if (hpf_gain < -12) { + hpf_gain = -12; + } + ESP_LOGI(TAG, "Treble Down: %i", (int)hpf_gain); + dsps_biquad_gen_highShelf_f32(iir_coeffs_hpf, hpf_freq, hpf_gain, hpf_qFactor); + break; + default: + break; + } + break; + } + case BSP_BUTTON_VOLUP: { + switch (current_set) { + case AUDIO_VOLUME: + full_volume_db += 3; + if (full_volume_db > 0) { + full_volume_db = 0; + } + full_volume = exp10f((float)full_volume_db / 20); + ESP_LOGI(TAG, "Volume Up: %i dB", full_volume_db); + break; + case AUDIO_BASS: + lpf_gain += 1; + if (lpf_gain > 12) { + lpf_gain = 12; + } + ESP_LOGI(TAG, "Bass Up: %i", (int)lpf_gain); + dsps_biquad_gen_lowShelf_f32(iir_coeffs_lpf, lpf_freq, lpf_gain, lpf_qFactor); + break; + case AUDIO_TREBLE: + hpf_gain += 1; + if (hpf_gain > 12) { + hpf_gain = 12; + } + ESP_LOGI(TAG, "Treble Up: %i", (int)hpf_gain); + dsps_biquad_gen_highShelf_f32(iir_coeffs_hpf, hpf_freq, hpf_gain, hpf_qFactor); + break; + default: + break; + } + break; + } + default: + ESP_LOGI(TAG, "No function for this button"); + break; + } + } + } +} + +void app_main(void) +{ + ESP_ERROR_CHECK(bsp_spiffs_mount()); + + // Create FreeRTOS tasks and queues + audio_button_q = xQueueCreate(10, sizeof(int)); + assert (audio_button_q != NULL); + + BaseType_t ret = xTaskCreate(audio_process_task, "audio_process_task", 4096, NULL, 6, NULL); + assert(ret == pdPASS); + + // Init audio buttons + button_handle_t btns[BSP_BUTTON_NUM]; + ESP_ERROR_CHECK(bsp_iot_button_create(btns, NULL, BSP_BUTTON_NUM)); + for (int i = 0; i < BSP_BUTTON_NUM; i++) { + ESP_ERROR_CHECK(iot_button_register_cb(btns[i], BUTTON_PRESS_DOWN, btn_handler, (void *) i)); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/main/idf_component.yml new file mode 100644 index 0000000..836b286 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/main/idf_component.yml @@ -0,0 +1,5 @@ +dependencies: + espressif/esp32_lyrat: "^1.0.0" + espressif/esp-dsp: + version: '*' + override_path: "../../../../esp-dsp" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/partitions.csv b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/partitions.csv new file mode 100644 index 0000000..8982158 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/partitions.csv @@ -0,0 +1,6 @@ +# Name, Type, SubType, Offset, Size, Flags +# Note: if you change the phy_init or app partition offset, make sure to change the offset in Kconfig.projbuild +nvs, data, nvs, 0x9000, 0x6000, +phy_init, data, phy, 0xf000, 0x1000, +factory, app, factory, 0x10000, 1M, +storage, data, spiffs, , 0x2f0000, diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/sdkconfig.defaults b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/sdkconfig.defaults new file mode 100644 index 0000000..77ceed5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/sdkconfig.defaults @@ -0,0 +1,8 @@ +# This file was generated using idf.py save-defconfig. It can be edited manually. +# Espressif IoT Development Framework (ESP-IDF) Project Minimal Configuration +# +CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y +CONFIG_PARTITION_TABLE_CUSTOM=y +CONFIG_SPIRAM=y +CONFIG_SPIRAM_USE_MEMMAP=y +CONFIG_SPIFFS_PAGE_SIZE=1024 diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/spiffs/16bit_mono_44_1_khz.wav b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/spiffs/16bit_mono_44_1_khz.wav new file mode 100644 index 0000000..b27b090 Binary files /dev/null and b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/lyrat_board_app/spiffs/16bit_mono_44_1_khz.wav differ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/CMakeLists.txt new file mode 100644 index 0000000..223158c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/CMakeLists.txt @@ -0,0 +1,6 @@ +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(matrix) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/README.md new file mode 100644 index 0000000..bf75b1c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/README.md @@ -0,0 +1,54 @@ +# Matrix Operations Example + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +This example demonstrates how to use Mat class functionality from esp-dsp library. Example does the following steps: + +1. Initialize a matrix A and matirx x +2. Calculate matrix b: b = A*x +3. Find roots x1_: A*x1_ = b, with different methods +4. Print result + +## How to use example + +### Hardware required + +This example does not require any special hardware, and can be run on any common development board. + +### Configure the project + +Under Component Config ---> DSP Library ---> DSP Optimization, it's possible to choose either the optimized or ANSI implementation, to compare them. + +### Build and flash + +Build the project and flash it to the board, then run monitor tool to view serial output (replace PORT with serial port name): + +``` +idf.py -p PORT flash monitor +``` + +(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 + +Here is an typical example console output. + +``` +I (215) main: Start Example. +I (215) main: Original vector x: +0 +1 +2 +I (215) main: Solve result: +0 +1 +2 +I (215) main: Roots result: +0 +1 +2 +I (215) main: End Example. + +``` diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/main/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/main/CMakeLists.txt new file mode 100644 index 0000000..ec8c21c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/main/CMakeLists.txt @@ -0,0 +1 @@ +idf_component_register(SRCS "dspm_matrix_main.cpp") diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/main/dspm_matrix_main.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/main/dspm_matrix_main.cpp new file mode 100644 index 0000000..3b5ea10 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/main/dspm_matrix_main.cpp @@ -0,0 +1,62 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include +#include +#include "dsp_platform.h" +#include "esp_log.h" + +#include "esp_dsp.h" + +static const char *TAG = "main"; + +// This example shows how to use Mat class from esp-dsp library. +// +// First we create matix A and x, and then calculating matrix b as result +// A*x = b +// Then we can find x as roots of matrices X and b +// +extern "C" void app_main(); + +void app_main() +{ + ESP_LOGI(TAG, "Start Example."); + int M = 3; + int N = 3; + dspm::Mat A(M, N); + dspm::Mat x(N, 1); + for (int m = 0 ; m < M ; m++) { + for (int n = 0 ; n < N ; n++) { + A(m, n) = N * m + n; + } + x(m, 0) = m; + } + A(0, 0) = 10; + A(0, 1) = 11; + + dspm::Mat b = A * x; + // Gaussian method + dspm::Mat x1_ = dspm::Mat::solve(A, b); + // Non Gaussian method + dspm::Mat x2_ = dspm::Mat::roots(A, b); + + ESP_LOGI(TAG, "Original vector x:"); + std::cout << x; + ESP_LOGI(TAG, "Solve result:"); + std::cout << x1_; + ESP_LOGI(TAG, "Roots result:"); + std::cout << x2_; + ESP_LOGI(TAG, "End Example."); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/main/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/main/idf_component.yml new file mode 100644 index 0000000..f40e96d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/examples/matrix/main/idf_component.yml @@ -0,0 +1,4 @@ +dependencies: + espressif/esp-dsp: + override_path: "../../../" + version: "*" diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/idf_component.yml b/ESPIDFNEW/managed_components/espressif__esp-dsp/idf_component.yml new file mode 100644 index 0000000..9b71903 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/idf_component.yml @@ -0,0 +1,16 @@ +dependencies: + idf: + version: '>=4.2' +description: ESP-DSP is the official DSP library for Espressif SoCs. +documentation: https://docs.espressif.com/projects/esp-dsp/en/latest/index.html +files: + exclude: + - '**/Makefile' + - '**/component.mk' + - docs/**/* + - test/**/* + - test_app/**/* +issues: https://github.com/espressif/esp-dsp/issues +repository: https://github.com/espressif/esp-dsp.git +url: https://github.com/espressif/esp-dsp +version: 1.4.12 diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_common.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_common.h new file mode 100644 index 0000000..6c00de7 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_common.h @@ -0,0 +1,83 @@ +// Copyright 2018-2022 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsp_common_H_ +#define _dsp_common_H_ +#include +#include +#include "dsp_err.h" +#include "esp_idf_version.h" + +#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 0) +#include "esp_cpu.h" +#else +#include "soc/cpu.h" +#endif + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief check power of two + * The function check if the argument is power of 2. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @return + * - true if x is power of two + * - false if no + */ +bool dsp_is_power_of_two(int x); + + +/** + * @brief Power of two + * The function return power of 2 for values 2^N. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @return + * - power of two + */ +int dsp_power_of_two(int x); + + +/** + * @brief Logginng for esp32s3 TIE core + * Registers covered q0 to q7, ACCX and SAR_BYTE + * + * @param n_regs: number of registers to be logged at once + * @param ...: register codes 0, 1, 2, 3, 4, 5, 6, 7, 'a', 's' + * + * @return ESP_OK + * + */ +esp_err_t tie_log(int n_regs, ...); + +#ifdef __cplusplus +} +#endif + +// esp_cpu_get_ccount function is implemented in IDF 4.1 and later +#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 0, 0) +#define dsp_get_cpu_cycle_count esp_cpu_get_cycle_count +#else +#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 1, 0) +#define dsp_get_cpu_cycle_count esp_cpu_get_ccount +#else +#define dsp_get_cpu_cycle_count xthal_get_ccount +#endif +#endif // ESP_IDF_VERSION + +#endif // _dsp_common_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_err.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_err.h new file mode 100644 index 0000000..4268eaa --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_err.h @@ -0,0 +1,23 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef _DSP_ERR_H_ +#define _DSP_ERR_H_ + +#include "stdint.h" +#include "esp_err.h" +#include "dsp_err_codes.h" + +#endif // _DSP_ERR_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_err_codes.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_err_codes.h new file mode 100644 index 0000000..b86e291 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_err_codes.h @@ -0,0 +1,28 @@ +// Copyright 2018-2022 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsp_error_codes_H_ +#define _dsp_error_codes_H_ + +#define DSP_OK 0 // For internal use only. Please use ESP_OK instead +#define ESP_ERR_DSP_BASE 0x70000 +#define ESP_ERR_DSP_INVALID_LENGTH (ESP_ERR_DSP_BASE + 1) +#define ESP_ERR_DSP_INVALID_PARAM (ESP_ERR_DSP_BASE + 2) +#define ESP_ERR_DSP_PARAM_OUTOFRANGE (ESP_ERR_DSP_BASE + 3) +#define ESP_ERR_DSP_UNINITIALIZED (ESP_ERR_DSP_BASE + 4) +#define ESP_ERR_DSP_REINITIALIZED (ESP_ERR_DSP_BASE + 5) +#define ESP_ERR_DSP_ARRAY_NOT_ALIGNED (ESP_ERR_DSP_BASE + 6) + + +#endif // _dsp_error_codes_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_platform.h new file mode 100644 index 0000000..239b325 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_platform.h @@ -0,0 +1,30 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef dsp_platform_h_ +#define dsp_platform_h_ +#include "esp_idf_version.h" +#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 0) +#include "esp_cpu.h" +#else +#include "soc/cpu.h" +#endif + +#include "freertos/FreeRTOS.h" +#include "freertos/portable.h" +#include "freertos/task.h" +#include "freertos/semphr.h" + +#endif // dsp_platform_h_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_tests.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_tests.h new file mode 100644 index 0000000..a11ffb7 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_tests.h @@ -0,0 +1,37 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _DSP_TESTS_H_ +#define _DSP_TESTS_H_ + +#include +#include "esp_idf_version.h" + +#define TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, actual) \ + if (actual >= max_exec) { \ + ESP_LOGE("", "Time error. Expected max: %i, reached: %i", (int)max_exec, (int)actual);\ + TEST_ASSERT_MESSAGE (false, "Exec time takes more than expected! ");\ + }\ + if (actual < min_exec) {\ + ESP_LOGE("", "Time error. Expected min: %i, reached: %i", (int)min_exec, (int)actual);\ + TEST_ASSERT_MESSAGE (false, "Exec time takes less then expected!");\ + } + + +// memalign function is implemented in IDF 4.3 and later +#if ESP_IDF_VERSION <= ESP_IDF_VERSION_VAL(4, 3, 0) +#define memalign(align_, size_) malloc(size_) +#endif + +#endif // _DSP_TESTS_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_types.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_types.h new file mode 100644 index 0000000..5073b36 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/dsp_types.h @@ -0,0 +1,35 @@ +#ifndef _dsp_types_H_ +#define _dsp_types_H_ +#include +#include +#include + +// union to simplify access to the 16 bit data +typedef union sc16_u { + struct { + int16_t re; + int16_t im; + }; + uint32_t data; +} sc16_t; + +typedef union fc32_u { + struct { + float re; + float im; + }; + uint64_t data; +} fc32_t; + +typedef struct image2d_s { + void *data; // could be int8_t, unt8_t, int16_t, unt16_t, float + int step_x; // step of elements by X + int step_y; // step of elements by Y, usually is 1 + int stride_x; // stride width: size of the elements in X axis * by step_x + padding + int stride_y; // stride height: size of the elements in Y axis * by step_y + padding + // Point[x,y] = data[width*y*step_y + x*step_x]; + // Full data size = width*height + +} image2d_t; + +#endif // _dsp_types_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/esp_dsp.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/esp_dsp.h new file mode 100644 index 0000000..8365130 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include/esp_dsp.h @@ -0,0 +1,65 @@ +// Copyright 2018-2023 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _esp_dsp_H_ +#define _esp_dsp_H_ + +#ifdef __cplusplus +extern "C" +{ +#endif + +// Common includes +#include "dsp_common.h" +#include "dsp_types.h" + +// Signal processing +#include "dsps_dotprod.h" +#include "dsps_math.h" +#include "dsps_fir.h" +#include "dsps_biquad.h" +#include "dsps_biquad_gen.h" +#include "dsps_wind.h" +#include "dsps_conv.h" +#include "dsps_corr.h" + +#include "dsps_d_gen.h" +#include "dsps_h_gen.h" +#include "dsps_tone_gen.h" +#include "dsps_snr.h" +#include "dsps_sfdr.h" + +#include "dsps_fft2r.h" +#include "dsps_fft4r.h" +#include "dsps_dct.h" + +// Matrix operations +#include "dspm_matrix.h" + +// Support functions +#include "dsps_view.h" + +// Image processing functions: +#include "dspi_dotprod.h" + + +#ifdef __cplusplus +} +#endif + +#ifdef __cplusplus +#include "mat.h" +#endif + +#endif // _esp_dsp_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/esp_attr.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/esp_attr.h new file mode 100644 index 0000000..4547ae6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/esp_attr.h @@ -0,0 +1,21 @@ +// Copyright 2018-2020 spressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// This file include defenitions that are emulate esp-idf error codes + +#ifndef _esp_attr_h_ +#define _esp_attr_h_ + + +#endif // _esp_attr_h_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/esp_err.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/esp_err.h new file mode 100644 index 0000000..e564031 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/esp_err.h @@ -0,0 +1,29 @@ +// Copyright 2018-2020 spressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// This file include defenitions that are emulate esp-idf error codes + +#ifndef _esp_err_h_ +#define _esp_err_h_ + +#include +typedef int esp_err_t; + +#define ESP_OK 0 + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif // M_PI + +#endif // _esp_err_h_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/esp_log.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/esp_log.h new file mode 100644 index 0000000..e826280 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/esp_log.h @@ -0,0 +1,24 @@ +// Copyright 2018-2020 spressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// This file include defenitions that are emulate esp-idf error codes + +#ifndef _esp_log_h_ +#define _esp_log_h_ + +#include + +#define ESP_LOGD + +#endif // _esp_log_h_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/sdkconfig.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/sdkconfig.h new file mode 100644 index 0000000..5413f88 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/include_sim/sdkconfig.h @@ -0,0 +1,4 @@ +#ifndef _sdkconfig_h_ +#define _sdkconfig_h_ + +#endif // _sdkconfig_h_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/misc/aes3_tie_log.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/misc/aes3_tie_log.c new file mode 100644 index 0000000..5984679 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/misc/aes3_tie_log.c @@ -0,0 +1,128 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsp_common.h" +#include + +#define TIE_LOG_ENABLED 1 + +#if (CONFIG_IDF_TARGET_ESP32S3) + +esp_err_t tie_log(int n_regs, ...) +{ + +#if !TIE_LOG_ENABLED + return ESP_OK; +#else + + va_list list; + va_start(list, n_regs); + + uint32_t reg_128_bits[4] = {0, 0, 0, 0}; + int reg_code; + + for (int i = 0; i < n_regs; i++) { + reg_code = va_arg(list, int); + + // ACCX register + if ( reg_code == 'a') { + asm volatile("rur.accx_0 %0" : "=a" (reg_128_bits[0])); + asm volatile("rur.accx_1 %0" : "=a" (reg_128_bits[1])); + printf("ACCX - %02x %08x", (unsigned int)reg_128_bits[1], (unsigned int)reg_128_bits[0]); + printf(" --- %llu\n", (long long unsigned)reg_128_bits[1] << 32 | (unsigned int)reg_128_bits[0]); + } + + // SAR:_BYTE register + else if ( reg_code == 's') { + asm volatile("rur.sar_byte %0" : "=a" (reg_128_bits[0])); + printf("SAR_BYTE - %d\n", (unsigned int)reg_128_bits[0]); + } + + // Q0 - Q7 registers + else if ((reg_code >= 0) && (reg_code <= 7)) { + switch (reg_code) { + case 0 : { + asm volatile("ee.movi.32.a q0, %0, 0" : "=a" (reg_128_bits[0])); + asm volatile("ee.movi.32.a q0, %0, 1" : "=a" (reg_128_bits[1])); + asm volatile("ee.movi.32.a q0, %0, 2" : "=a" (reg_128_bits[2])); + asm volatile("ee.movi.32.a q0, %0, 3" : "=a" (reg_128_bits[3])); + printf("Q0"); + break; + } + case 1 : { + asm volatile("ee.movi.32.a q1, %0, 0" : "=a" (reg_128_bits[0])); + asm volatile("ee.movi.32.a q1, %0, 1" : "=a" (reg_128_bits[1])); + asm volatile("ee.movi.32.a q1, %0, 2" : "=a" (reg_128_bits[2])); + asm volatile("ee.movi.32.a q1, %0, 3" : "=a" (reg_128_bits[3])); + printf("Q1"); + break; + } + case 2 : { + asm volatile("ee.movi.32.a q2, %0, 0" : "=a" (reg_128_bits[0])); + asm volatile("ee.movi.32.a q2, %0, 1" : "=a" (reg_128_bits[1])); + asm volatile("ee.movi.32.a q2, %0, 2" : "=a" (reg_128_bits[2])); + asm volatile("ee.movi.32.a q2, %0, 3" : "=a" (reg_128_bits[3])); + printf("Q2"); + break; + } + case 3 : { + asm volatile("ee.movi.32.a q3, %0, 0" : "=a" (reg_128_bits[0])); + asm volatile("ee.movi.32.a q3, %0, 1" : "=a" (reg_128_bits[1])); + asm volatile("ee.movi.32.a q3, %0, 2" : "=a" (reg_128_bits[2])); + asm volatile("ee.movi.32.a q3, %0, 3" : "=a" (reg_128_bits[3])); + printf("Q3"); + break; + } + case 4 : { + asm volatile("ee.movi.32.a q4, %0, 0" : "=a" (reg_128_bits[0])); + asm volatile("ee.movi.32.a q4, %0, 1" : "=a" (reg_128_bits[1])); + asm volatile("ee.movi.32.a q4, %0, 2" : "=a" (reg_128_bits[2])); + asm volatile("ee.movi.32.a q4, %0, 3" : "=a" (reg_128_bits[3])); + printf("Q4"); + break; + } + case 5 : { + asm volatile("ee.movi.32.a q5, %0, 0" : "=a" (reg_128_bits[0])); + asm volatile("ee.movi.32.a q5, %0, 1" : "=a" (reg_128_bits[1])); + asm volatile("ee.movi.32.a q5, %0, 2" : "=a" (reg_128_bits[2])); + asm volatile("ee.movi.32.a q5, %0, 3" : "=a" (reg_128_bits[3])); + printf("Q5"); + break; + } + case 6 : { + asm volatile("ee.movi.32.a q6, %0, 0" : "=a" (reg_128_bits[0])); + asm volatile("ee.movi.32.a q6, %0, 1" : "=a" (reg_128_bits[1])); + asm volatile("ee.movi.32.a q6, %0, 2" : "=a" (reg_128_bits[2])); + asm volatile("ee.movi.32.a q6, %0, 3" : "=a" (reg_128_bits[3])); + printf("Q6"); + break; + } + case 7 : { + asm volatile("ee.movi.32.a q7, %0, 0" : "=a" (reg_128_bits[0])); + asm volatile("ee.movi.32.a q7, %0, 1" : "=a" (reg_128_bits[1])); + asm volatile("ee.movi.32.a q7, %0, 2" : "=a" (reg_128_bits[2])); + asm volatile("ee.movi.32.a q7, %0, 3" : "=a" (reg_128_bits[3])); + printf("Q7"); + break; + } + } + + printf(" - 0x%08X %08X %08X %08X --- ", (unsigned int)reg_128_bits[3], (unsigned int)reg_128_bits[2], (unsigned int)reg_128_bits[1], (unsigned int)reg_128_bits[0]); + printf("%u %u %u %u %u %u %u %u\n", (unsigned int)reg_128_bits[3] >> 16, (unsigned int)reg_128_bits[3] & 0x0000FFFF, + (unsigned int)reg_128_bits[2] >> 16, (unsigned int)reg_128_bits[2] & 0x0000FFFF, + (unsigned int)reg_128_bits[1] >> 16, (unsigned int)reg_128_bits[1] & 0x0000FFFF, + (unsigned int)reg_128_bits[0] >> 16, (unsigned int)reg_128_bits[0] & 0x0000FFFF); + } else { + printf("Bad register code"); + } + } + printf("------------------------------------------------------------------------------------\n"); + + return ESP_OK; +#endif //TIE_LOG_ENABLED +} + +#endif // CONFIG_IDF_TARGET_ESP32S3 diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/misc/dsps_pwroftwo.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/misc/dsps_pwroftwo.cpp new file mode 100644 index 0000000..540f028 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/common/misc/dsps_pwroftwo.cpp @@ -0,0 +1,31 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsp_common.h" + +bool dsp_is_power_of_two(int x) +{ + return (x != 0) && ((x & (x - 1)) == 0); +} + +int dsp_power_of_two(int x) +{ + for (size_t i = 0; i < 32; i++) { + x = x >> 1; + if (0 == x) { + return i; + } + } + return 0; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_ccorr_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_ccorr_f32_ae32.S new file mode 100644 index 0000000..a3d594f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_ccorr_f32_ae32.S @@ -0,0 +1,144 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_conv_platform.h" +#if (dsps_ccorr_f32_ae32_enabled == 1) + +#include "dsps_conv_f32_m_ae32.S" + +// This is dot product function for ESP32 processor. + .text + .align 4 + .global dsps_ccorr_f32_ae32 + .type dsps_ccorr_f32_ae32,@function +// The function implements the C code from dsps_ccorr_f32_ansi: +//esp_err_t dsps_ccorr_f32_ansi(const float *Signal, const int siglen, const float *Kernel, const int kernlen, float *corrout); +// +dsps_ccorr_f32_ae32: +// Signal - a2 +// siglen - a3 +// Kernel - a4 +// kernlen - a5 +// corrout - a6 +// +// a11 - loop length + + entry a1, 16 + // Array increment for floating point data should be 4 + sub a10, a3, a5 + bgez a10, dsps_ccorr_positive + addi a10, a2, 0 + addi a2, a4, 0 + addi a4, a10, 0 + + addi a10, a3, 0 + addi a3, a5, 0 + addi a5, a10, 0 + +dsps_ccorr_positive: + movi.n a8, 4 + addi a11, a5, 0 // lkern - loop counter + movi.n a14, 0 + addi a9, a14, 1 + + movi.n a7, 4 + movi.n a8, -4 + + mull a13, a5, a7 // a13 - kernlen*4 + add a13, a13, a4 // a13 - Kernel[kernlen] + addi a13, a13, -4 // a13 - Kernel[kernlen - 1] +ccorr_loop1: + // Clear initial state of the result register + addi a10, a13, 0 // a10 - Kernel + addi a12, a2, 0 // a12 - Signal + wfr f1, a14 // clear output: convout[n] = 0; + + // a12 - sig[0] + // a10 - kern[n]; + // a9 - n+1 + // a7 - 4, + // a8 - -4, + conv_f32_ae32 a12, a10, a9, a7, a7, loop1 + + addi a9, a9, 1 // (n+1)++ + addi a13, a13, -4 // kern[n] - a4-- + + ssi f1, a6, 0 // Store result from f1 to memory at a6 + addi a6, a6, 4 // convout++ - increment output pointer + + addi a11, a11, -1 + bnez a11, ccorr_loop1 + + // a11 - loop counter = siglen - kernlen - 1 + addi a9, a2, 4 // sig[1] - sig[kmin] + addi a13, a5, 0 + + // skip loop if 0 + sub a11, a3, a5 // a11 - loop counter + beqz a11, skip_ccorr_loop2 + +ccorr_loop2: + + // Clear initial state of the result register + addi a12, a9, 0 // a12 - Signal[kmin] + addi a10, a4, 0 // a10 - Kernel + wfr f1, a14 // clear output: convout[n] = 0; + + // a12 - sig[kmin] + // a10 - kern[0]; + // a11 - kernlen + // a7 - 4, + conv_f32_ae32 a12, a10, a13, a7, a7, loop2 + + addi a9, a9, 4 // in1++ + + ssi f1, a6, 0 // Store result from f1 to memory at a6 + addi a6, a6, 4 // convout++ - increment output pointer + + addi a11, a11, -1 + bnez a11, ccorr_loop2 + + +skip_ccorr_loop2: + + // a9 - the same + addi a11, a5, -1 + addi a13, a5, -1 +ccorr_loop3: + + // Clear initial state of the result register + addi a12, a9, 0 // a12 - Signal[kmin] + addi a10, a4, 0 // a10 - Kernel + wfr f1, a14 // clear output: convout[n] = 0; + + // a12 - sig[kmin] + // a10 - kern[n - kmin]; + // a11 - length + // a7 - 4, + // a8 - -4, + conv_f32_ae32 a12, a10, a11, a7, a7, loop3 + + addi a9, a9, 4 // n++ + + ssi f1, a6, 0 // Store result from f1 to memory at a6 + addi a6, a6, 4 // convout++ - increment output pointer + + addi a11, a11, -1 + bnez a11, ccorr_loop3 +skip_ccorr_loop3: + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_ccorr_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_ccorr_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_ccorr_f32_ansi.c new file mode 100644 index 0000000..90aed31 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_ccorr_f32_ansi.c @@ -0,0 +1,81 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_conv.h" +#include "esp_log.h" + +static const char *TAG = "dsps_conv"; + +esp_err_t dsps_ccorr_f32_ansi(const float *Signal, const int siglen, const float *Kernel, const int kernlen, float *corrvout) +{ + if (NULL == Signal) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == Kernel) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == corrvout) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + float *sig = (float *)Signal; + float *kern = (float *)Kernel; + int lsig = siglen; + int lkern = kernlen; + + if (siglen < kernlen) { + sig = (float *)Kernel; + kern = (float *)Signal; + lsig = kernlen; + lkern = siglen; + } + + for (int n = 0; n < lkern; n++) { + size_t k; + size_t kmin = lkern - 1 - n; + corrvout[n] = 0; + + for (k = 0; k <= n; k++) { + corrvout[n] += sig[k] * kern[kmin + k]; + } + ESP_LOGV(TAG, "L1 k = %i, n = %i , kmin= %i, kmax= %i", 0, n, kmin, kmin + n); + } + for (int n = lkern; n < lsig; n++) { + size_t kmin, kmax, k; + + corrvout[n] = 0; + + kmin = n - lkern + 1; + kmax = n; + for (k = kmin; k <= kmax; k++) { + corrvout[n] += sig[k] * kern[k - kmin]; + } + ESP_LOGV(TAG, "L2 n=%i, kmin = %i, kmax = %i , k-kmin = %i", n, kmin, kmax, 0); + } + + for (int n = lsig; n < lsig + lkern - 1; n++) { + size_t kmin, kmax, k; + + corrvout[n] = 0; + + kmin = n - lkern + 1; + kmax = lsig - 1; + + for (k = kmin; k <= kmax; k++) { + corrvout[n] += sig[k] * kern[k - kmin]; + } + ESP_LOGV(TAG, "L3 n=%i, kmin = %i, kmax = %i , k - kmin = %i", n, kmin, kmax, kmax - kmin); + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_ae32.S new file mode 100644 index 0000000..6939794 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_ae32.S @@ -0,0 +1,147 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_conv_platform.h" +#if (dsps_conv_f32_ae32_enabled == 1) + +#include "dsps_conv_f32_m_ae32.S" + +// This is dot product function for ESP32 processor. + .text + .align 4 + .global dsps_conv_f32_ae32 + .type dsps_conv_f32_ae32,@function +// The function implements the C code from dsps_conv_f32_ansi: +//esp_err_t dsps_conv_f32_ansi(const float *Signal, const int siglen, const float *Kernel, const int kernlen, float *convout); +// +dsps_conv_f32_ae32: +// Signal - a2 +// siglen - a3 +// Kernel - a4 +// kernlen - a5 +// convout - a6 +// +// a11 - loop length + + entry a1, 16 + // Array increment for floating point data should be 4 + sub a10, a3, a5 + bgez a10, dsps_conv_positive + addi a10, a2, 0 + addi a2, a4, 0 + addi a4, a10, 0 + + addi a10, a3, 0 + addi a3, a5, 0 + addi a5, a10, 0 + +dsps_conv_positive: + movi.n a8, 4 + addi a11, a5, 0 // lkern - loop counter + movi.n a14, 0 + addi a9, a14, 1 + + movi.n a7, 4 + movi.n a8, -4 + +conv_loop1: + // Clear initial state of the result register + addi a10, a4, 0 // a10 - Kernel + addi a12, a2, 0 // a12 - Signal + wfr f1, a14 // clear output: convout[n] = 0; + + // a12 - sig[0] + // a10 - kern[n]; + // a9 - n+1 + // a7 - 4, + // a8 - -4, + conv_f32_ae32 a12, a10, a9, a7, a8, loop1 + + addi a9, a9, 1 // (n+1)++ + addi a4, a4, 4 // kern[n] - a4++ + + ssi f1, a6, 0 // Store result from f1 to memory at a6 + addi a6, a6, 4 // convout++ - increment output pointer + + addi a11, a11, -1 + bnez a11, conv_loop1 + + + // a11 - loop counter = siglen - kernlen - 1 + addi a9, a2, 0 // sig[1] - sig[kmin] + addi a13, a5, 0 + + // skip loop if 0 + sub a11, a3, a5 // a11 - loop counter + beqz a11, skip_conv_loop2 + +conv_loop2: + + // Clear initial state of the result register + addi a12, a9, 4 // a12 - Signal[kmin] + addi a10, a4, -4 // a10 - Kernel + wfr f1, a14 // clear output: convout[n] = 0; + + // a12 - sig[kmin] + // a10 - kern[n - kmin]; + // a11 - length + // a7 - 4, + // a8 - -4, + conv_f32_ae32 a12, a10, a13, a7, a8, loop2 + + addi a9, a9, 4 // (n+1)++ + + ssi f1, a6, 0 // Store result from f1 to memory at a6 + addi a6, a6, 4 // convout++ - increment output pointer + + addi a11, a11, -1 + bnez a11, conv_loop2 + +skip_conv_loop2: + +// sub a11, a3, a5 // a11 - loop counter +// beqz a11, skip_conv_loop3 + // a9 - the same + addi a11, a5, -1 + addi a13, a5, -1 +// beqz a11, skip_conv_loop3 +conv_loop3: + + // Clear initial state of the result register + addi a12, a9, 4 // a12 - Signal[kmin] + addi a10, a4, -4 // a10 - Kernel + wfr f1, a14 // clear output: convout[n] = 0; + + // a12 - sig[kmin] + // a10 - kern[n - kmin]; + // a11 - length + // a7 - 4, + // a8 - -4, + conv_f32_ae32 a12, a10, a13, a7, a8, loop3 + + addi a9, a9, 4 // (n+1)++ + + ssi f1, a6, 0 // Store result from f1 to memory at a6 + addi a6, a6, 4 // convout++ - increment output pointer + + addi a13, a13, -1 + + addi a11, a11, -1 + bnez a11, conv_loop3 +skip_conv_loop3: + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_conv_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_ansi.c new file mode 100644 index 0000000..bda0042 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_ansi.c @@ -0,0 +1,81 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_conv.h" +#include "esp_log.h" + +static const char *TAG = "dsps_conv"; + +esp_err_t dsps_conv_f32_ansi(const float *Signal, const int siglen, const float *Kernel, const int kernlen, float *convout) +{ + if (NULL == Signal) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == Kernel) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == convout) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + float *sig = (float *)Signal; + float *kern = (float *)Kernel; + int lsig = siglen; + int lkern = kernlen; + + if (siglen < kernlen) { + sig = (float *)Kernel; + kern = (float *)Signal; + lsig = kernlen; + lkern = siglen; + } + + for (int n = 0; n < lkern; n++) { + size_t k; + + convout[n] = 0; + + for (k = 0; k <= n; k++) { + convout[n] += sig[k] * kern[n - k]; + } + ESP_LOGV(TAG, "L1 kmin = %i, kmax = %i , n-kmin = %i", 0, n, n); + } + for (int n = lkern; n < lsig; n++) { + size_t kmin, kmax, k; + + convout[n] = 0; + + kmin = n - lkern + 1; + kmax = n; + ESP_LOGV(TAG, "L2 n=%i, kmin = %i, kmax = %i , n-kmin = %i", n, kmin, kmax, n - kmin); + for (k = kmin; k <= kmax; k++) { + convout[n] += sig[k] * kern[n - k]; + } + } + + for (int n = lsig; n < lsig + lkern - 1; n++) { + size_t kmin, kmax, k; + + convout[n] = 0; + + kmin = n - lkern + 1; + kmax = lsig - 1; + + for (k = kmin; k <= kmax; k++) { + convout[n] += sig[k] * kern[n - k]; + } + ESP_LOGV(TAG, "L3 n=%i, kmin = %i, kmax = %i , n-kmin = %i", n, kmin, kmax, n - kmin); + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_m_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_m_ae32.S new file mode 100644 index 0000000..354c051 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_conv_f32_m_ae32.S @@ -0,0 +1,39 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +.macro conv_f32_ae32 x1 x2 count step1 step2 name +// This macro calculates floating point dot product for count float samples +// x1, x2 - input arrays +// count - amount of samples +// step1 - start step +//,step2 - A register for array step increment. (should be divided by 4) +// f1 - contains initial value +// +// result in f1 +// +// Macros body: +// f1 += x1[]*x2[]; i: 0..counter-1 +// affected: f0, f1, f2 +// Example: conv_f32_ae32 a2 a3 a5 a8 a9 +// a8 == 4, step is 4 bytes +// a5 == 32, length of array is 32 +// + lsxp f0, \x2, \step2 + loopnez \count, loop_mac_end_m_ae32\name + lsxp f2, \x1, \step1 + madd.s f1, f2, f0 + lsxp f0, \x2, \step2 + loop_mac_end_m_ae32\name: +.endm diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_corr_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_corr_f32_ae32.S new file mode 100644 index 0000000..5571db9 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_corr_f32_ae32.S @@ -0,0 +1,77 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_conv_platform.h" +#if (dsps_corr_f32_ae32_enabled == 1) + +#include "dsps_dotprod_f32_m_ae32.S" + +// This is dot product function for ESP32 processor. + .text + .align 4 + .global dsps_corr_f32_ae32 + .type dsps_corr_f32_ae32,@function +// The function implements the following C code: +//esp_err_t dsps_corr_f32_ansi(const float *Signal, const int siglen, const float *Pattern, const int patlen, float *dest) +//{ +// for (size_t n = 0; n < (siglen - patlen); n++) { +// float k_corr = 0; +// for (size_t m = 0; m < patlen; m++) { +// k_corr += Signal[n + m] * Pattern[m]; +// } +// dest[n] = k_corr; +// } +// return ESP_OK; +//} + +dsps_corr_f32_ae32: +// Signal - a2 +// siglen - a3 +// Pattern - a4 +// patlen - a5 +// dest - a6 +// a11 - loop length + + entry a1, 16 + // Array increment for floating point data should be 4 + movi.n a8, 4 + movi.n a13, 4 + sub a11, a3, a5 // a11 = loop length + addi a11, a11, 1 + addi a12, a2, 0 // move input pointer to the a12 + movi.n a9, 0 + movi.n a14, 0 + +corr_loop: + // Clear initial state of the result register + addi a10, a4, 0 // a10 - pattern + movi.n a9, 0 // clear a9 + wfr f1, a9 // clrar f1 + // a12 - input1 + // a10 - input2 + // a5 - length + // a8 - 4, step in arrays + // a9 - 0 + dotprod_f32_ae32 a12, a10, a5, a9, a8; + + ssi f1, a6, 0 // Store result from f1 to memory at a6 + addi a6, a6, 4 // y++ - increment output pointer + addi a12, a12, 4 // Signal++ + addi a11, a11, -1 + bnez a11, corr_loop + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_corr_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_corr_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_corr_f32_ansi.c new file mode 100644 index 0000000..c7a94e8 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/float/dsps_corr_f32_ansi.c @@ -0,0 +1,40 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_corr.h" + +esp_err_t dsps_corr_f32_ansi(const float *Signal, const int siglen, const float *Pattern, const int patlen, float *dest) +{ + if (NULL == Signal) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == Pattern) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == dest) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (siglen < patlen) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (size_t n = 0; n <= (siglen - patlen); n++) { + float k_corr = 0; + for (size_t m = 0; m < patlen; m++) { + k_corr += Signal[n + m] * Pattern[m]; + } + dest[n] = k_corr; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_ccorr.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_ccorr.h new file mode 100644 index 0000000..564abd5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_ccorr.h @@ -0,0 +1,63 @@ +// Copyright 2018-2020 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_ccorr_H_ +#define _dsps_ccorr_H_ +#include "dsp_err.h" + +#include "dsps_conv_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + + +/**@{*/ +/** + * @brief Cross correlation + * + * The function make cross correlate between two ignals. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] Signal1: input array with input 1 signal values + * @param[in] siglen1: length of the input 1 signal array + * @param[in] Signal2: input array with input 2 signal values + * @param[in] siglen2: length of the input signal array + * @param corrout: output array with result of cross correlation. The size of dest array must be (siglen1 + siglen2 - 1) !!! + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library (one of the input array are NULL, or if (siglen < patlen)) + */ +esp_err_t dsps_ccorr_f32_ansi(const float *Signal, const int siglen, const float *Pattern, const int patlen, float *corrout); +esp_err_t dsps_ccorr_f32_ae32(const float *Signal, const int siglen, const float *Pattern, const int patlen, float *corrout); +/**}@*/ + +#ifdef __cplusplus +} +#endif + + +#ifdef CONFIG_DSP_OPTIMIZED +#if (dsps_ccorr_f32_ae32_enabled == 1) +#define dsps_ccorr_f32 dsps_ccorr_f32_ae32 +#else +#define dsps_ccorr_f32 dsps_ccorr_f32_ansi +#endif // dsps_ccorr_f32_ae32_enabled +#else +#define dsps_ccorr_f32 dsps_ccorr_f32_ansi +#endif + +#endif // _dsps_conv_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_conv.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_conv.h new file mode 100644 index 0000000..2da1762 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_conv.h @@ -0,0 +1,65 @@ +// Copyright 2018-2020 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_conv_H_ +#define _dsps_conv_H_ +#include "dsp_err.h" + +#include "dsps_conv_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + + +/**@{*/ +/** + * @brief Convolution + * + * The function convolve Signal array with Kernel array. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] Signal: input array with signal + * @param[in] siglen: length of the input signal + * @param[in] Kernel: input array with convolution kernel + * @param[in] kernlen: length of the Kernel array + * @param convout: output array with convolution result length of (siglen + Kernel -1) + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_conv_f32_ae32(const float *Signal, const int siglen, const float *Kernel, const int kernlen, float *convout); +esp_err_t dsps_conv_f32_ansi(const float *Signal, const int siglen, const float *Kernel, const int kernlen, float *convout); +/**@}*/ + +#ifdef __cplusplus +} +#endif + + +#ifdef CONFIG_DSP_OPTIMIZED + +#if (dsps_conv_f32_ae32_enabled == 1) +#define dsps_conv_f32 dsps_conv_f32_ae32 +#else +#define dsps_conv_f32 dsps_conv_f32_ansi +#endif // dsps_conv_f32_ae32_enabled + +#else +#define dsps_conv_f32 dsps_conv_f32_ansi +#endif + +#endif // _dsps_conv_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_conv_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_conv_platform.h new file mode 100644 index 0000000..b5c166b --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_conv_platform.h @@ -0,0 +1,20 @@ +#ifndef _dsps_conv_platform_H_ +#define _dsps_conv_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dsps_conv_f32_ae32_enabled 1 +#define dsps_ccorr_f32_ae32_enabled 1 +#define dsps_corr_f32_ae32_enabled 1 + +#endif +#endif // __XTENSA__ + +#endif // _dsps_conv_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_corr.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_corr.h new file mode 100644 index 0000000..63821e6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/include/dsps_corr.h @@ -0,0 +1,63 @@ +// Copyright 2018-2020 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_corr_H_ +#define _dsps_corr_H_ +#include "dsp_err.h" + +#include "dsps_conv_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + + +/**@{*/ +/** + * @brief Correlation with pattern + * + * The function correlate input sigla array with pattern array. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] Signal: input array with signal values + * @param[in] siglen: length of the signal array + * @param[in] Pattern: input array with pattern values + * @param[in] patlen: length of the pattern array. The siglen must be bigger then patlen! + * @param dest: output array with result of correlation + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library (one of the input array are NULL, or if (siglen < patlen)) + */ +esp_err_t dsps_corr_f32_ansi(const float *Signal, const int siglen, const float *Pattern, const int patlen, float *dest); +esp_err_t dsps_corr_f32_ae32(const float *Signal, const int siglen, const float *Pattern, const int patlen, float *dest); +/**@}*/ + +#ifdef __cplusplus +} +#endif + + +#ifdef CONFIG_DSP_OPTIMIZED +#if (dsps_corr_f32_ae32_enabled == 1) +#define dsps_corr_f32 dsps_corr_f32_ae32 +#else +#define dsps_corr_f32 dsps_corr_f32_ansi +#endif // dsps_corr_f32_ae32_enabled +#else +#define dsps_corr_f32 dsps_corr_f32_ansi +#endif + +#endif // _dsps_corr_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_ccorr_f32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_ccorr_f32_ae32.c new file mode 100644 index 0000000..8616281 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_ccorr_f32_ae32.c @@ -0,0 +1,81 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_ccorr.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_ccorr"; + +#define lenA 8 +#define lenB 4 + +static float inputA[lenA]; +static float inputB[lenB]; +static float output[lenA + lenB - 1 + 2]; +static float output_ref[lenA + lenB - 1 + 2]; + +TEST_CASE("dsps_ccorr_f32_ae32 functionality", "[dsps]") +{ + for (int i = 0 ; i < lenA ; i++) { + inputA[i] = i + 3; + } + for (int i = 0 ; i < lenB ; i++) { + inputB[i] = i + 10; + } + for (int i = 0 ; i < (lenA + lenB + 2 - 1); i++) { + output[i] = -1; + output_ref[i] = -1; + } + dsps_ccorr_f32_ae32(inputA, lenA, inputB, lenB, &output[0]); + dsps_ccorr_f32_ansi(inputA, lenA, inputB, lenB, &output_ref[0]); + for (size_t i = 0; i < (lenA + lenB - 1) + 2; i++) { + ESP_LOGI(TAG, "Data[%i] = %2.2f, expected = %2.2f", i, output[i], output_ref[i]); + } + for (size_t i = 0; i < (lenA + lenB - 1) + 2; i++) { + TEST_ASSERT_EQUAL(output_ref[i], output[i]); + } +} + +TEST_CASE("dsps_ccorr_f32_ae32 benchmark", "[dsps]") +{ + int max_N = 1024; + int ccorr_size = 64; + float *x = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(x); + float *y = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(y); + float *z = (float *)malloc((max_N + ccorr_size - 1) * sizeof(float)); + TEST_ASSERT_NOT_NULL(z); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_ccorr_f32_ae32(x, max_N, y, ccorr_size, &z[0]); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_ccorr_f32_ae32 - %f cycles for signal %i and pattern %i", cycles, max_N, ccorr_size); + free(x); + free(y); + free(z); + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_ccorr_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_ccorr_f32_ansi.c new file mode 100644 index 0000000..a2e3acf --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_ccorr_f32_ansi.c @@ -0,0 +1,116 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_ccorr.h" +#include "esp_attr.h" +#include "esp_dsp.h" + +static const char *TAG = "dsps_ccorr"; + +#define lenA 20 +#define lenB 20 + +static float inputA[lenA]; +static float inputB[lenB]; +static float output_fwd[lenA + lenB - 1 + 2]; +static float output_back[lenA + lenB - 1 + 2]; + +TEST_CASE("dsps_ccorr_f32_ansi functionality", "[dsps]") +{ + for (size_t la = 1; la < lenA; la++) { + for (size_t lb = 1; lb < lenB; lb++) { + for (int i = 0 ; i < lenA ; i++) { + inputA[i] = (float)rand() / INT32_MAX; + } + for (int i = 0 ; i < lenB ; i++) { + inputB[i] = (float)rand() / INT32_MAX; + } + for (int i = 0 ; i < (lenA + lenB - 1 + 2); i++) { + output_fwd[i] = -1; + output_back[i] = -1; + } + dsps_ccorr_f32_ansi(inputA, la, inputB, lb, &output_fwd[1]); + dsps_ccorr_f32_ansi(inputB, lb, inputA, la, &output_back[1]); + TEST_ASSERT_EQUAL(output_fwd[0], -1); + TEST_ASSERT_EQUAL(output_fwd[la + lb], -1); + TEST_ASSERT_EQUAL(output_back[0], -1); + TEST_ASSERT_EQUAL(output_back[la + lb], -1); + } + } +} + +TEST_CASE("dsps_ccorr_f32_ansi draw", "[dsps]") +{ + int max_N = 1024; + float *x = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(x); + float *y = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(y); + float *z = (float *)malloc((max_N * 2 + 1) * sizeof(float)); + TEST_ASSERT_NOT_NULL(z); + int l1 = 8; + int l2 = 4; + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 0; + z[i] = 0; + } + x[0] = 20; + x[7] = 30; + y[0] = 10; + y[3] = 8; + dsps_ccorr_f32_ansi(x, l1, y, l2, &z[0]); + + dsps_view(z, l1 + l2, l1 + l2, 10, -1, 400, '+'); + for (int i = 0 ; i < (l1 + l2 - 1) ; i++) { + ESP_LOGI(TAG, "Z[%i] = %2.2f", i, z[i]); + } + + free(x); + free(y); + free(z); +} + +TEST_CASE("dsps_ccorr_f32_ansi benchmark", "[dsps]") +{ + int max_N = 1024; + int conv_size = 64; + float *x = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(x); + float *y = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(y); + float *z = (float *)malloc((max_N * 2 + 1) * sizeof(float)); + TEST_ASSERT_NOT_NULL(z); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_ccorr_f32_ansi(x, max_N, y, conv_size, &z[0]); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_conv_f32_ansi - %f cycles for signal %i and pattern %i", cycles, max_N, conv_size); + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_conv_f32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_conv_f32_ae32.c new file mode 100644 index 0000000..e36e73e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_conv_f32_ae32.c @@ -0,0 +1,123 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_conv.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_conv"; + +#define lenA 30 +#define lenB 30 + +static float inputA[lenA]; +static float inputB[lenB]; +static float output_ref[lenA + lenB - 1 + 2]; +static float output_fwd[lenA + lenB - 1 + 2]; +static float output_back[lenA + lenB - 1 + 2]; + +TEST_CASE("dsps_conv_f32_ae32 test output", "[dsps]") +{ + int la = 3; + int lb = 2; + + for (int i = 0; i < lenA; i++) { + inputA[i] = 10 + i; + } + for (int i = 0; i < lenB; i++) { + inputB[i] = 20 + i; + } + for (int i = 0; i < (lenA + lenB - 1 + 2); i++) { + output_ref[i] = -1; + output_fwd[i] = -1; + output_back[i] = -1; + } + dsps_conv_f32_ansi(inputA, la, inputB, lb, &output_ref[1]); + dsps_conv_f32_ae32(inputA, la, inputB, lb, &output_fwd[1]); + + for (size_t i = 0; i < (la + lb + 1); i++) { + ESP_LOGD(TAG, "la=%i, lb=%i, i=%i, ref=%2.3f, fwd=%2.3f", la, lb, i, output_ref[i], output_fwd[i]); + } + float max_eps = 0.000001; + for (size_t i = 0; i < (la + lb + 1); i++) { + if (fabs(output_ref[i] - output_fwd[i]) > max_eps) { + ESP_LOGE(TAG, "la=%i, lb=%i, i=%i, ref=%2.3f, fwd=%2.3f", la, lb, i, output_ref[i], output_fwd[i]); + } + TEST_ASSERT_EQUAL(output_ref[i], output_fwd[i]); + } +} + +TEST_CASE("dsps_conv_f32_ae32 functionality", "[dsps]") +{ + for (size_t la = 2; la < lenA; la++) { + for (size_t lb = 2; lb < lenB; lb++) { + for (int i = 0 ; i < lenA ; i++) { + inputA[i] = (float)rand() / INT32_MAX; + } + for (int i = 0 ; i < lenB ; i++) { + inputB[i] = (float)rand() / INT32_MAX; + } + for (int i = 0 ; i < (lenA + lenB - 1 + 2); i++) { + output_ref[i] = -1; + output_fwd[i] = -1; + output_back[i] = -1; + } + dsps_conv_f32_ansi(inputA, la, inputB, lb, &output_ref[1]); + dsps_conv_f32_ae32(inputA, la, inputB, lb, &output_fwd[1]); + dsps_conv_f32_ae32(inputB, lb, inputA, la, &output_back[1]); + float max_eps = 0.000001; + for (size_t i = 0; i < (la + lb + 1); i++) { + if ((fabs(output_ref[i] - output_fwd[i]) > max_eps) || (fabs(output_ref[i] - output_back[i]) > max_eps) || (fabs(output_back[i] - output_fwd[i]) > max_eps)) { + ESP_LOGE(TAG, "la=%i, lb=%i, i=%i, ref=%2.3f, fwd=%2.3f, back=%2.3f", la, lb, i, output_ref[i], output_fwd[i], output_back[i]); + } + TEST_ASSERT_EQUAL(output_ref[i], output_fwd[i]); + TEST_ASSERT_EQUAL(output_ref[i], output_back[i]); + TEST_ASSERT_EQUAL(output_back[i], output_fwd[i]); + } + } + } +} + + +TEST_CASE("dsps_conv_f32_ae32 benchmark", "[dsps]") +{ + int max_N = 1024; + int conv_size = 64; + float *x = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(x); + float *y = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(y); + float *z = (float *)malloc((max_N * 2 + 1) * sizeof(float)); + TEST_ASSERT_NOT_NULL(z); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_conv_f32_ae32(x, max_N, y, conv_size, &z[0]); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_conv_f32_ae32 - %f cycles for signal %i and pattern %i", cycles, max_N, conv_size); + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_conv_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_conv_f32_ansi.c new file mode 100644 index 0000000..1a194c1 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_conv_f32_ansi.c @@ -0,0 +1,146 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_conv.h" +#include "esp_attr.h" +#include "esp_dsp.h" + +static const char *TAG = "dsps_conv"; + +#define lenA 20 +#define lenB 20 + +static float inputA[lenA]; +static float inputB[lenB]; +static float output_ref[lenA + lenB - 1 + 2]; +static float output_fwd[lenA + lenB - 1 + 2]; +static float output_back[lenA + lenB - 1 + 2]; + + +esp_err_t dsps_conv_f32_ref(const float *Signal, const int siglen, const float *Kernel, const int kernlen, float *convout) +{ + if (NULL == Signal) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == Kernel) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == convout) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + + for (int n = 0; n < siglen + kernlen - 1; n++) { + size_t kmin, kmax, k; + + convout[n] = 0; + + kmin = (n >= kernlen - 1) ? n - (kernlen - 1) : 0; + kmax = (n < siglen - 1) ? n : siglen - 1; + + for (k = kmin; k <= kmax; k++) { + convout[n] += Signal[k] * Kernel[n - k]; + } + } + return ESP_OK; +} + +TEST_CASE("dsps_conv_f32_ansi functionality", "[dsps]") +{ + for (size_t la = 1; la < lenA; la++) { + for (size_t lb = 1; lb < lenB; lb++) { + for (int i = 0 ; i < lenA ; i++) { + inputA[i] = (float)rand() / INT32_MAX; + } + for (int i = 0 ; i < lenB ; i++) { + inputB[i] = (float)rand() / INT32_MAX; + } + for (int i = 0 ; i < (lenA + lenB - 1 + 2); i++) { + output_ref[i] = -1; + output_fwd[i] = -1; + output_back[i] = -1; + } + dsps_conv_f32_ref(inputA, la, inputB, lb, &output_ref[1]); + dsps_conv_f32_ansi(inputA, la, inputB, lb, &output_fwd[1]); + dsps_conv_f32_ansi(inputB, lb, inputA, la, &output_back[1]); + float max_eps = 0.000001; + for (size_t i = 0; i < (la + lb + 1); i++) { + if ((fabs(output_ref[i] - output_fwd[i]) > max_eps) || (fabs(output_ref[i] - output_back[i]) > max_eps) || (fabs(output_back[i] - output_fwd[i]) > max_eps)) { + ESP_LOGE(TAG, "la=%i, lb=%i, i=%i, ref=%2.3f, fwd=%2.3f, back=%2.3f", la, lb, i, output_ref[i], output_fwd[i], output_back[i]); + } + TEST_ASSERT_EQUAL(output_ref[i], output_fwd[i]); + TEST_ASSERT_EQUAL(output_ref[i], output_back[i]); + TEST_ASSERT_EQUAL(output_back[i], output_fwd[i]); + } + } + } +} + +TEST_CASE("dsps_conv_f32_ansi draw", "[dsps]") +{ + int max_N = 1024; + float *x = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(x); + float *y = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(y); + float *z = (float *)malloc((max_N * 2 + 1) * sizeof(float)); + TEST_ASSERT_NOT_NULL(z); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 10; + y[i] = 20; + z[i] = 0; + } + + dsps_conv_f32_ansi(x, 32, y, 16, &z[0]); + + dsps_view(z, 32 + 16, 32 + 16, 10, -1, 4000, '+'); + + free(x); + free(y); + free(z); +} + +TEST_CASE("dsps_conv_f32_ansi benchmark", "[dsps]") +{ + int max_N = 1024; + int conv_size = 64; + float *x = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(x); + float *y = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(y); + float *z = (float *)malloc((max_N * 2 + 1) * sizeof(float)); + TEST_ASSERT_NOT_NULL(z); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_conv_f32_ansi(x, max_N, y, conv_size, &z[0]); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_conv_f32_ansi - %f cycles for signal %i and pattern %i", cycles, max_N, conv_size); + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_corr_f32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_corr_f32_ae32.c new file mode 100644 index 0000000..c811c76 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_corr_f32_ae32.c @@ -0,0 +1,82 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_corr.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_corr"; + +#define lenA 15 +#define lenB 10 + +static float inputA[lenA]; +static float inputB[lenB]; +static float output[lenA + lenB - 1 + 2]; +static float output_ref[lenA + lenB - 1 + 2]; + +TEST_CASE("dsps_corr_f32_ae32 functionality", "[dsps]") +{ + for (int i = 0 ; i < lenA ; i++) { + inputA[i] = i; + } + for (int i = 0 ; i < lenB ; i++) { + inputB[i] = 10 + i; + } + for (int i = 0 ; i < (lenA - lenB + 2); i++) { + output[i] = -1; + output_ref[i] = -1; + } + inputB[0] = 1; + dsps_corr_f32_ae32(inputA, lenA, inputB, lenB, &output[1]); + dsps_corr_f32_ansi(inputA, lenA, inputB, lenB, &output_ref[1]); + for (size_t i = 0; i < (lenA - lenB) + 2; i++) { + ESP_LOGD(TAG, "Data[%i] = %2.2f, expected = %2.2f", i, output[i], output_ref[i]); + } + for (size_t i = 0; i < (lenA - lenB) + 2; i++) { + TEST_ASSERT_EQUAL(output_ref[i], output[i]); + } +} + +TEST_CASE("dsps_corr_f32_ae32 benchmark", "[dsps]") +{ + int max_N = 1024; + int corr_size = 64; + float *x = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(x); + float *y = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(y); + float *z = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(z); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_corr_f32_ae32(x, max_N, y, corr_size, &z[0]); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_corr_f32_ae32 - %f cycles for signal %i and pattern %i", cycles, max_N, corr_size); + free(x); + free(y); + free(z); + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_corr_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_corr_f32_ansi.c new file mode 100644 index 0000000..eb2a094 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/conv/test/test_dsps_corr_f32_ansi.c @@ -0,0 +1,82 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_corr.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_corr"; + +#define lenA 15 +#define lenB 10 + +static float inputA[lenA]; +static float inputB[lenB]; +static float output[lenA + lenB + 2]; + +TEST_CASE("dsps_corr_f32_ansi functionality", "[dsps]") +{ + for (int i = 0 ; i < lenA ; i++) { + inputA[i] = i; + } + for (int i = 0 ; i < lenB ; i++) { + inputB[i] = 0; + } + for (int i = 0 ; i <= (lenA - lenB + 2); i++) { + output[i] = -1; + } + inputB[0] = 1; + dsps_corr_f32_ansi(inputA, lenA, inputB, lenB, &output[1]); + for (size_t i = 0; i < lenA + lenB; i++) { + ESP_LOGD(TAG, "output[%i] = %2.2f", i, output[i]); + } + + TEST_ASSERT_EQUAL(output[0], -1); + TEST_ASSERT_EQUAL(output[lenA - lenB + 2], -1); + for (size_t i = 0; i <= (lenA - lenB); i++) { + TEST_ASSERT_EQUAL(output[i + 1], i); + } +} + +TEST_CASE("dsps_corr_f32_ansi benchmark", "[dsps]") +{ + int max_N = 1024; + int corr_size = 64; + float *x = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(x); + float *y = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(y); + float *z = (float *)malloc(max_N * sizeof(float)); + TEST_ASSERT_NOT_NULL(z); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_corr_f32_ansi(x, max_N, y, corr_size, &z[0]); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_corr_f32_ansi - %f cycles for signal %i and pattern %i", cycles, max_N, corr_size); + free(x); + free(y); + free(z); + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/float/dsps_dct_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/float/dsps_dct_f32.c new file mode 100644 index 0000000..e4bf37d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/float/dsps_dct_f32.c @@ -0,0 +1,118 @@ +// Copyright 2018-2020 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsp_common.h" +#include + +#include "dsps_dct.h" +#include "dsps_fft2r.h" + +esp_err_t dsps_dct_f32_ref(float *data, int N, float *result) +{ + float factor = M_PI / N; + for (size_t i = 0; i < N; i++) { + float sum = 0; + for (size_t j = 0; j < N; j++) { + sum += data[j] * cosf((j + 0.5) * i * factor); + } + result[i] = sum; + } + return ESP_OK; +} + +esp_err_t dsps_dct_inverce_f32_ref(float *data, int N, float *result) +{ + float factor = M_PI / N; + for (size_t i = 0; i < N; i++) { + float sum = data[0] / 2; + for (size_t j = 0; j < N; j++) { + sum += data[j] * cosf(j * (i + 0.5) * factor); + } + result[i] = sum; + } + return ESP_OK; +} + +esp_err_t dsps_dct_f32(float *data, int N) +{ + esp_err_t ret = ESP_OK; + if (dsps_fft2r_initialized == 0) { + return ESP_ERR_DSP_REINITIALIZED; + } + + for (int i = 0; i < N / 2; i++) { + data[(N - 1 - i) * 2] = data[i * 2 + 1]; + data[i * 2 + 1] = 0; + data[N + i * 2 + 1] = 0; + } + + ret = dsps_fft2r_fc32(data, N); + if (ret != ESP_OK) { + return ret; + } + + // // The follows code do the same as this one: + // // + // float factor = M_PI / (N * 2); + // ret = dsps_bit_rev_fc32(data, N); + // for (int i = 0; i < N; i++) { + // float temp = i * factor; + // data[i] = data[i*2] * cosf(temp) + data[i*2 + 1] * sinf(temp); + // } + int table_step = 2; + for (int i = 0; i < N; i++) { + float c = dsps_fft_w_table_fc32[i * 2 * table_step]; + float s = dsps_fft_w_table_fc32[i * 2 * table_step + 1]; + data[i * 2] = data[i * 2] * c; + data[i * 2 + 1] = data[i * 2 + 1] * s; + } + ret = dsps_bit_rev_fc32(data, N); + if (ret != ESP_OK) { + return ret; + } + + for (int i = 0; i < N; i++) { + data[i] = data[i * 2] + data[i * 2 + 1]; + } + return ESP_OK; +} + +esp_err_t dsps_dct_inv_f32(float *data, int N) +{ + esp_err_t ret = ESP_OK; + if (dsps_fft2r_initialized == 0) { + return ESP_ERR_DSP_REINITIALIZED; + } + + float factor = M_PI / (N * 2); + data[0] *= 0.5; + for (int i = N - 1; i >= 0; i--) { + float temp = i * factor; + data[i * 2] = data[i] * cosf(temp); + data[i * 2 + 1] = data[i] * -sinf(temp); + } + ret = dsps_fft2r_fc32(data, N); + if (ret != ESP_OK) { + return ret; + } + ret = dsps_bit_rev_fc32(data, N); + if (ret != ESP_OK) { + return ret; + } + for (size_t i = 0; i < N / 2; i++) { + data[i * 2 + 1] = data[(N - 1 - i) * 2]; + } + + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include/dsps_dct.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include/dsps_dct.h new file mode 100644 index 0000000..d6ad313 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/include/dsps_dct.h @@ -0,0 +1,95 @@ +// Copyright 2018-2020 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_dct_H_ +#define _dsps_dct_H_ +#include "dsp_err.h" +#include "sdkconfig.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/**@{*/ +/** + * @brief DCT of radix 2, unscaled + * + * DCT type II of radix 2, unscaled + * Function is FFT based + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[inout] data: input/output array with size of N*2. An elements located: Re[0],Re[1], , ... Re[N-1], any data... up to N*2 + * result of DCT will be stored to this array from 0...N-1. + * Size of data array must be N*2!!! + * @param[in] N: Size of DCT transform. Size of data array must be N*2!!! + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_dct_f32(float *data, int N); + +/**@}*/ + +/**@{*/ +/** + * @brief Inverce DCT of radix 2 + * + * Inverce DCT type III of radix 2, unscaled + * Function is FFT based + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[inout] data: input/output array with size of N*2. An elements located: Re[0],Re[1], , ... Re[N-1], any data... up to N*2 + * result of DCT will be stored to this array from 0...N-1. + * Size of data array must be N*2!!! + * @param[in] N: Size of DCT transform. Size of data array must be N*2!!! + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_dct_inv_f32(float *data, int N); + +/**@}*/ + +/**@{*/ +/** + * @brief DCTs + * + * Direct DCT type II and Inverce DCT type III, unscaled + * These functions used as a reference for general purpose. These functions are not optimyzed! + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] data: input/output array with size of N. An elements located: Re[0],Re[1], , ... Re[N-1] + * @param[in] N: Size of DCT transform. Size of data array must be N*2!!! + * @param[out] result: output result array with size of N. + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_dct_f32_ref(float *data, int N, float *result); +esp_err_t dsps_dct_inverce_f32_ref(float *data, int N, float *result); +/**@}*/ + + +#ifdef __cplusplus +} +#endif + +#endif // _dsps_dct_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/test/test_dsps_dct_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/test/test_dsps_dct_f32.c new file mode 100644 index 0000000..3fd59ec --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dct/test/test_dsps_dct_f32.c @@ -0,0 +1,166 @@ +// Copyright 2018-2020 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_view.h" +#include "dsps_dct.h" +#include "dsps_fft2r.h" +#include "dsp_tests.h" +#include + + +static const char *TAG = "dsps_dct"; + +TEST_CASE("dsps_dct_f32 functionality", "[dsps]") +{ + float *data = calloc(1024 * 2, sizeof(float)); + TEST_ASSERT_NOT_NULL(data); + + float *data_ref = calloc(1024 * 2, sizeof(float)); + TEST_ASSERT_NOT_NULL(data_ref); + + float *data_fft = calloc(1024 * 2, sizeof(float)); + TEST_ASSERT_NOT_NULL(data_fft); + + int N = 64; + int check_bin = 4; + for (int i = 0 ; i < N ; i++) { + data[i] = 2 * sinf(M_PI / N * check_bin * 2 * i); + data_ref[i] = data[i]; + data_fft[i] = data[i]; + data[i + N] = 0; + data_ref[i + N] = 0; + data_fft[i + N] = 0; + } + + dsps_dct_f32_ref(data, N, &data[N]); + dsps_view(&data[N], 32, 32, 10, -2, 2, '.'); + + dsps_dct_inverce_f32_ref(&data[N], N, data); + dsps_view(&data[0], 32, 32, 10, -2, 2, '.'); + + for (size_t i = 0; i < N; i++) { + ESP_LOGD(TAG, "DCT data[%i] = %2.3f\n", i, data[N + i]); + } + float abs_tol = 1e-5; + for (size_t i = 1; i < N; i++) { + ESP_LOGD(TAG, "data[%i] = %f, ref_data = %f\n", i, data[i], data_ref[i]*N / 2); + float error = fabs(data[i] - data_ref[i] * N / 2) / (N / 2); + if (error > abs_tol) { + ESP_LOGE(TAG, "data[%i] = %f, ref_data = %f, error= %f\n", i, data[i], data_ref[i]*N / 2, error); + TEST_ASSERT_MESSAGE (false, "Result out of range!\n"); + } + } + + free(data); + free(data_ref); + free(data_fft); + +} + +TEST_CASE("dsps_dct_f32 functionality Fast DCT", "[dsps]") +{ + esp_err_t ret = dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + float *data = (float *)memalign(16, sizeof(float) * 1024 * 2); + TEST_ASSERT_NOT_NULL(data); + + float *data_ref = (float *)memalign(16, sizeof(float) * 1024 * 2); + TEST_ASSERT_NOT_NULL(data_ref); + + float *data_fft = (float *)memalign(16, sizeof(float) * 1024 * 2); + TEST_ASSERT_NOT_NULL(data_fft); + + int N = 64; + int check_bin = 4; + for (int i = 0 ; i < N ; i++) { + data[i] = 2 * sin(M_PI / N * check_bin * 2 * i); + data_ref[i] = data[i]; + data_fft[i] = data[i]; + data[i + N] = 0; + data_ref[i + N] = 0; + data_fft[i + N] = 0; + } + + dsps_dct_f32_ref(data, N, &data[N]); + ret = dsps_dct_f32(data_fft, N); + TEST_ESP_OK(ret); + + float abs_tol = 1e-5; + + for (size_t i = 0; i < N; i++) { + ESP_LOGD(TAG, "DCT data[%i] = %2.3f, data_fft = %2.3f\n", i, data[N + i], data_fft[i]); + float error = fabs(data[N + i] - data_fft[i]) / (N / 2); + if (error > abs_tol) { + ESP_LOGE(TAG, "DCT data[%i] = %f, data_fft = %f, error = %f\n", i, data[N + i], data_fft[i], error); + TEST_ASSERT_MESSAGE (false, "Result out of range!\n"); + } + } + + dsps_dct_inv_f32(data_fft, N); + + for (size_t i = 0; i < N; i++) { + ESP_LOGD(TAG, "IDCT data[%i] = %2.3f, data_fft = %2.3f\n", i, data[i], data_fft[i] / N * 2); + float error = fabs(data[i] - data_fft[i] / N * 2) / (N / 2); + if (error > abs_tol) { + ESP_LOGE(TAG, "IDCT data[%i] = %f, data_fft = %f, error = %f\n", i, data[i], data_fft[i] / N * 2, error); + TEST_ASSERT_MESSAGE (false, "Result out of range!\n"); + } + } + dsps_fft2r_deinit_fc32(); + free(data); + free(data_ref); + free(data_fft); +} + +TEST_CASE("dsps_dct_f32 benchmark", "[dsps]") +{ + esp_err_t ret = dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + float *data = calloc(1024 * 2, sizeof(float)); + TEST_ASSERT_NOT_NULL(data); + + float *data_ref = calloc(1024 * 2, sizeof(float)); + TEST_ASSERT_NOT_NULL(data_ref); + + float *data_fft = calloc(1024 * 2, sizeof(float)); + TEST_ASSERT_NOT_NULL(data_fft); + + int N = 64; + int check_bin = 4; + for (int i = 0 ; i < N ; i++) { + data[i] = 2 * sin(M_PI / N * check_bin * 2 * i); + data[i + N] = 0; + } + + unsigned int start_b = xthal_get_ccount(); + ret = dsps_dct_f32(data, N); + unsigned int end_b = xthal_get_ccount(); + + TEST_ESP_OK(ret); + + float total_b = end_b - start_b; + float cycles = total_b; + ESP_LOGI(TAG, "Benchmark dsps_dct_f32 - %6i cycles for %6i DCT points FFT.", (int)cycles, N); + dsps_fft2r_deinit_fc32(); + free(data); + free(data_ref); + free(data_fft); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S new file mode 100644 index 0000000..aabf37c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s16_aes3.S @@ -0,0 +1,398 @@ +// Copyright 2018-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod_platform.h" +#if (dspi_dotprod_aes3_enabled == 1) + + .text + .align 4 + .literal .LC0_1_61, 458755 + + # Program Unit: dspi_dotprod_off_s16_aes3 + .type dspi_dotprod_off_s16_aes3, @function + .align 4 + .global dspi_dotprod_off_s16_aes3 +dspi_dotprod_off_s16_aes3: # 0x4 +.LBB1_dspi_dotprod_off_s16_aes3: # 0x4 + entry a1,128 # + l32i.n a10,a2,4 # [0] id:760 + l32i.n a12,a2,12 # [1] id:759 + mull a8,a10,a5 # [2] + blt a12,a8,.LBB83_dspi_dotprod_off_s16_aes3 # [4] + + l32i.n a13,a2,8 # [0] id:761 + l32i.n a9,a2,16 # [1] id:762 + mull a11,a13,a6 # [2] + blt a9,a11,.LBB83_dspi_dotprod_off_s16_aes3 # [4] + + l32i.n a15,a3,4 # [0] id:764 + l32i.n a14,a3,12 # [1] id:763 + mull a11,a15,a5 # [2] + blt a14,a11,.LBB83_dspi_dotprod_off_s16_aes3 # [4] + + l32i.n a8,a3,16 # [0] id:766 + l32i.n a9,a3,8 # [1] id:765 + s32i a9,a1,88 # [2] gra_spill_temp_2 + mull a9,a9,a6 # [3] + blt a8,a9,.LBB83_dspi_dotprod_off_s16_aes3 # [5] + + l32i.n a8,a3,0 # [0] id:767 + s32i a8,a1,84 # [1] gra_spill_temp_1 + bbsi a8,0,.Lt_0_36354 # [2] + + bne a14,a11,.Lt_0_36354 # [0] + + bnei a15,1,.Lt_0_36354 # [0] + + l32i a9,a1,88 # [0] gra_spill_temp_2 + beqi a9,1,.Lt_0_19458 # [2] + +.Lt_0_36354: # 0x46 +.Lt_0_19714: # 0x46 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + l16si a8,a1,128 # [6] id:768 offset+0x0 + s32i.n a8,a1,0 # [7] id:875 + .type dspi_dotprod_off_s16_ansi, @function + call8 dspi_dotprod_off_s16_ansi # [8] dspi_dotprod_off_s16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB83_dspi_dotprod_off_s16_aes3: # 0x5e + l32r a2,.LC0_1_61 # [0] + retw.n # [1] + +.Lt_0_19458: # 0x63 + addi.n a9,a10,-1 # [0] + bnez a9,.Lt_0_37122 # [1] + + addi.n a10,a13,-1 # [0] + bnez a10,.Lt_0_37122 # [1] + + extui a11,a5,0,3 # [0] + bnez.n a11,.Lt_0_37122 # [1] + + blti a6,4,.Lt_0_37122 # [0] + + movi.n a14,32 # [0] + blt a14,a5,.LBB27_dspi_dotprod_off_s16_aes3 # [1] + +.Lt_0_37634: # 0x7a +.Lt_0_21506: # 0x7a + l32i a15,a1,84 # [0] gra_spill_temp_1 + l32i.n a2,a2,0 # [1] id:769 + l16si a9,a1,128 # [2] id:768 offset+0x0 + mull a10,a12,a13 # [3] + addi a8,a1,16 # [4] temp_offset + slli a10,a10,1 # [5] + s32i a10,a1,80 # [6] gra_spill_temp_0 + movi.n a10,2 # [7] + # loop-count fixed at 2 + loop a10,.LBB137_dspi_dotprod_off_s16_aes3 # [8] + +.LBB132_dspi_dotprod_off_s16_aes3: # 0x93 + s16i a9,a8,0 # [0*II+0] id:770 temp_offset+0x0 + s16i a9,a8,2 # [0*II+1] id:770 temp_offset+0x0 + s16i a9,a8,4 # [0*II+2] id:770 temp_offset+0x0 + s16i a9,a8,6 # [0*II+3] id:770 temp_offset+0x0 + s16i a9,a8,8 # [0*II+4] id:770 temp_offset+0x0 + s16i a9,a8,10 # [0*II+5] id:770 temp_offset+0x0 + s16i a9,a8,12 # [0*II+6] id:770 temp_offset+0x0 + s16i a9,a8,14 # [0*II+7] id:770 temp_offset+0x0 + addi a8,a8,16 # [0*II+8] + +.LBB137_dspi_dotprod_off_s16_aes3: # 0xae + mov.n a3,a6 # [0] + addi a11,a5,-24 # [1] + addi a12,a1,24 # [3] temp_offset+8 + movi.n a13,0 # [4] + wur.sar_byte a13 # [5] + wur.accx_0 a13 # [6] + wur.accx_1 a13 # [7] + ee.vld.128.ip q6,a12,0 # [8] id:771 + s32i.n a12,a1,48 # [9] offset_data_ptr + beqz a11,.LBB34_dspi_dotprod_off_s16_aes3 # [10] + +.Lt_0_25602: # 0xc8 +.Lt_0_25090: # 0xc8 + ee.vld.128.ip q0,a15,16 # [0] id:786 + addi a14,a5,-16 # [1] + beqz a14,.LBB40_dspi_dotprod_off_s16_aes3 # [2] + +.Lt_0_27138: # 0xd1 +.Lt_0_26626: # 0xd1 + addi a8,a5,-8 # [0] + beqz a8,.LBB46_dspi_dotprod_off_s16_aes3 # [1] + +.Lt_0_28674: # 0xd7 +.Lt_0_28162: # 0xd7 + addi a9,a5,-32 # [0] + beqz a9,.LBB52_dspi_dotprod_off_s16_aes3 # [1] + +.Lt_0_30210: # 0xdd +.Lt_0_29698: # 0xdd + addi a10,a5,-64 # [0] + beqz a10,.LBB58_dspi_dotprod_off_s16_aes3 # [1] + + movi.n a11,64 # [0] + bge a11,a5,.Lt_0_33026 # [1] + + movi.n a12,0 # [0] + ee.ld.128.usar.ip q1,a2,16 # [1] id:848 + ee.ld.128.usar.ip q2,a2,16 # [2] id:849 + ee.src.q.ld.ip q3,a2,16,q1,q2 # [4] id:850 + beqz.n a3,.Lt_0_33026 # [5] + + slli a8,a5,1 # [0] + l32i a14,a1,80 # [1] gra_spill_temp_0 + addi a13,a5,31 # [2] + movgez a13,a5,a5 # [3] + srai a13,a13,5 # [4] + sub a14,a14,a8 # [5] + addi a14,a14,16 # [6] + addi.n a13,a13,-1 # [7] + +.Lt_0_33794: # 0x10c + beqz.n a13,.Lt_0_34050 # [0] + + loopnez a13,.LBB273_dspi_dotprod_off_s16_aes3 # [0] + +.LBB271_dspi_dotprod_off_s16_aes3: # 0x111 + ee.vmulas.s16.accx.ld.ip.qup q0,a2,16,q0,q1,q2,q3 # [0*II+0] id:851 + ee.vmulas.s16.accx.ld.ip q1,a15,16,q1,q6 # [0*II+1] id:852 + ee.vmulas.s16.accx.ld.ip.qup q1,a2,16,q1,q2,q3,q0 # [0*II+3] id:853 + ee.vmulas.s16.accx.ld.ip q4,a15,16,q2,q6 # [0*II+4] id:854 + ee.vmulas.s16.accx.ld.ip.qup q2,a2,16,q4,q3,q0,q1 # [0*II+6] id:855 + ee.vmulas.s16.accx.ld.ip q4,a15,16,q3,q6 # [0*II+7] id:856 + ee.vmulas.s16.accx.ld.ip.qup q3,a2,16,q4,q0,q1,q2 # [0*II+9] id:857 + ee.vmulas.s16.accx.ld.ip q0,a15,16,q0,q6 # [0*II+10] id:858 + +.LBB273_dspi_dotprod_off_s16_aes3: # 0x131 + +.Lt_0_34050: # 0x131 + ee.vmulas.s16.accx.ld.ip.qup q0,a2,16,q0,q1,q2,q3 # [0] id:859 + ee.vmulas.s16.accx.ld.ip q1,a15,16,q1,q6 # [1] id:860 + movi.n a9,32 # [2] + ee.vmulas.s16.accx.ld.xp.qup q7,a2,a14,q1,q2,q3,q0 # [3] id:861 + ee.vmulas.s16.accx.ld.ip q5,a15,16,q2,q6 # [4] id:862 + movi.n a10,-16 # [5] + ee.vmulas.s16.accx.ld.xp.qup q2,a2,a10,q5,q3,q0,q7 # [6] id:863 + ee.vmulas.s16.accx.ld.ip q4,a15,16,q3,q6 # [7] id:865 + ee.ld.128.usar.xp q1,a2,a9 # [8] id:864 + addi.n a12,a12,1 # [9] + ee.vmulas.s16.accx.ld.ip.qup q3,a2,16,q4,q0,q1,q2 # [10] id:866 + ee.vmulas.s16.accx.ld.ip q0,a15,16,q0,q6 # [11] id:867 + bne a12,a3,.Lt_0_33794 # [12] + +.Lt_0_33026: # 0x15d +.Lt_0_32770: # 0x15d + rur.accx_0 a9 # [0] + rur.accx_1 a10 # [1] + blti a7,1,.Lt_0_35586 # [2] + + movi.n a2,0 # [0] + addi a13,a7,-33 # [1] + addi.n a14,a7,-1 # [2] + ssr a14 # [3] + sra a12,a10 # [4] + src a11,a10,a9 # [5] + movgez a11,a12,a13 # [6] + addi.n a11,a11,1 # [7] + srai a11,a11,1 # [8] + s16i a11,a4,0 # [9] id:873 + retw.n # [10] + +.Lt_0_37122: # 0x183 +.Lt_0_20738: # 0x183 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + l16si a8,a1,128 # [6] id:768 offset+0x0 + s32i.n a8,a1,0 # [7] id:876 + call8 dspi_dotprod_off_s16_ansi # [8] dspi_dotprod_off_s16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB27_dspi_dotprod_off_s16_aes3: # 0x19b + extui a9,a5,0,1 # [0] + beqz a9,.Lt_0_37634 # [1] + + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + l16si a8,a1,128 # [6] id:768 offset+0x0 + s32i.n a8,a1,0 # [7] id:877 + call8 dspi_dotprod_off_s16_ansi # [8] dspi_dotprod_off_s16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB34_dspi_dotprod_off_s16_aes3: # 0x1b9 + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + l32i a12,a1,80 # [2] gra_spill_temp_0 + ee.ld.128.usar.ip q0,a2,16 # [3] id:776 + ee.ld.128.usar.ip q2,a2,16 # [4] id:777 + addi a12,a12,-32 # [5] + ee.src.q.ld.ip q3,a2,16,q0,q2 # [6] id:778 + loopgtz a6,.LBB159_dspi_dotprod_off_s16_aes3 # [7] + +.LBB157_dspi_dotprod_off_s16_aes3: # 0x1cf + ee.vmulas.s16.accx.ld.ip q1,a15,16,q0,q6 # [0*II+0] id:779 + ee.vmulas.s16.accx.ld.xp.qup q1,a2,a12,q1,q0,q2,q3 # [0*II+2] id:780 + ee.vmulas.s16.accx.ld.ip q0,a15,16,q2,q6 # [0*II+3] id:781 + ee.vmulas.s16.accx.ld.xp.qup q2,a2,a11,q0,q2,q3,q1 # [0*II+5] id:782 + ee.vmulas.s16.accx.ld.ip q1,a15,16,q3,q6 # [0*II+6] id:784 + ee.ld.128.usar.xp q0,a2,a10 # [0*II+7] id:783 + ee.vmulas.s16.accx.ld.ip.qup q3,a2,16,q1,q3,q0,q2 # [0*II+9] id:785 + +.LBB159_dspi_dotprod_off_s16_aes3: # 0x1ea + j .Lt_0_25602 # [0] + +.LBB40_dspi_dotprod_off_s16_aes3: # 0x1ed + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + srli a3,a6,1 # [2] + l32i a12,a1,80 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [4] id:787 + ee.ld.128.usar.ip q2,a2,16 # [5] id:788 + addi a12,a12,-16 # [7] + ee.src.q.ld.xp q3,a2,a12,q1,q2 # [8] id:789 + loopnez a3,.LBB182_dspi_dotprod_off_s16_aes3 # [9] + +.LBB180_dspi_dotprod_off_s16_aes3: # 0x206 + ee.vmulas.s16.accx.ld.xp.qup q0,a2,a11,q0,q1,q2,q3 # [0*II+0] id:790 + ee.vmulas.s16.accx.ld.ip q3,a15,16,q1,q6 # [0*II+1] id:791 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+2] id:792 + ee.vmulas.s16.accx.ld.xp.qup q3,a2,a12,q3,q2,q1,q0 # [0*II+4] id:793 + ee.vmulas.s16.accx.ld.ip q4,a15,16,q2,q6 # [0*II+5] id:794 + ee.vmulas.s16.accx.ld.xp.qup q2,a2,a11,q4,q1,q0,q3 # [0*II+7] id:795 + ee.vmulas.s16.accx.ld.ip q3,a15,16,q1,q6 # [0*II+8] id:796 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+9] id:797 + ee.vmulas.s16.accx.ld.xp.qup q3,a2,a12,q3,q0,q1,q2 # [0*II+11] id:798 + ee.vmulas.s16.accx.ld.ip q0,a15,16,q0,q6 # [0*II+12] id:799 + +.LBB182_dspi_dotprod_off_s16_aes3: # 0x22c + j .Lt_0_27138 # [0] + +.LBB46_dspi_dotprod_off_s16_aes3: # 0x22f + movi.n a10,-16 # [0] + l32i a11,a1,80 # [1] gra_spill_temp_0 + addi a8,a2,16 # [2] + addi a11,a11,16 # [3] + ee.ld.128.usar.xp q2,a8,a10 # [4] id:800 + ee.ld.128.usar.xp q1,a8,a11 # [5] id:801 + ee.src.q.ld.xp q3,a8,a10,q1,q2 # [7] id:802 + ee.ld.128.usar.xp q2,a8,a11 # [8] id:803 + srli a3,a3,2 # [9] + mov.n a2,a8 # [10] + loopnez a3,.LBB205_dspi_dotprod_off_s16_aes3 # [11] + +.LBB203_dspi_dotprod_off_s16_aes3: # 0x24e + ee.vmulas.s16.accx.ld.xp.qup q3,a2,a10,q0,q1,q2,q3 # [0*II+0] id:804 + ee.vmulas.s16.accx.ld.ip q0,a15,16,q1,q6 # [0*II+1] id:805 + ee.ld.128.usar.xp q1,a2,a11 # [0*II+2] id:806 + ee.vmulas.s16.accx.ld.xp.qup q3,a2,a10,q0,q2,q1,q3 # [0*II+4] id:807 + ee.vmulas.s16.accx.ld.ip q0,a15,16,q2,q6 # [0*II+5] id:808 + ee.ld.128.usar.xp q4,a2,a11 # [0*II+6] id:809 + ee.vmulas.s16.accx.ld.xp.qup q3,a2,a10,q0,q1,q4,q3 # [0*II+8] id:810 + ee.vmulas.s16.accx.ld.ip q0,a15,16,q1,q6 # [0*II+9] id:811 + ee.ld.128.usar.xp q1,a2,a11 # [0*II+10] id:812 + ee.vmulas.s16.accx.ld.xp.qup q3,a2,a10,q0,q4,q1,q3 # [0*II+12] id:813 + ee.vmulas.s16.accx.ld.ip q0,a15,16,q4,q6 # [0*II+13] id:814 + ee.ld.128.usar.xp q2,a2,a11 # [0*II+14] id:815 + +.LBB205_dspi_dotprod_off_s16_aes3: # 0x27a + j .Lt_0_28674 # [0] + +.LBB52_dspi_dotprod_off_s16_aes3: # 0x27d + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + slli a13,a5,1 # [2] + l32i a12,a1,80 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [4] id:816 + ee.ld.128.usar.ip q2,a2,16 # [5] id:817 + sub a12,a12,a13 # [6] + ee.src.q.ld.ip q3,a2,16,q1,q2 # [8] id:818 + addi a12,a12,16 # [9] + loopnez a3,.LBB228_dspi_dotprod_off_s16_aes3 # [10] + +.LBB226_dspi_dotprod_off_s16_aes3: # 0x299 + ee.vmulas.s16.accx.ld.ip.qup q0,a2,16,q0,q1,q2,q3 # [0*II+0] id:819 + ee.vmulas.s16.accx.ld.ip q4,a15,16,q1,q6 # [0*II+1] id:820 + ee.vmulas.s16.accx.ld.xp.qup q4,a2,a12,q4,q2,q3,q0 # [0*II+3] id:821 + ee.vmulas.s16.accx.ld.ip q1,a15,16,q2,q6 # [0*II+4] id:822 + ee.vmulas.s16.accx.ld.xp.qup q2,a2,a11,q1,q3,q0,q4 # [0*II+6] id:823 + ee.vmulas.s16.accx.ld.ip q4,a15,16,q3,q6 # [0*II+7] id:825 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+8] id:824 + ee.vmulas.s16.accx.ld.ip.qup q3,a2,16,q4,q0,q1,q2 # [0*II+10] id:826 + ee.vmulas.s16.accx.ld.ip q0,a15,16,q0,q6 # [0*II+11] id:827 + +.LBB228_dspi_dotprod_off_s16_aes3: # 0x2bc + j .Lt_0_30210 # [0] + +.LBB58_dspi_dotprod_off_s16_aes3: # 0x2bf + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + slli a13,a5,1 # [2] + l32i a12,a1,80 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [4] id:828 + ee.ld.128.usar.ip q2,a2,16 # [5] id:829 + sub a12,a12,a13 # [7] + addi a12,a12,16 # [8] + ee.src.q.ld.ip q3,a2,16,q1,q2 # [9] id:830 + mov.n a8,a2 # [10] + loopnez a3,.LBB250_dspi_dotprod_off_s16_aes3 # [11] + +.LBB248_dspi_dotprod_off_s16_aes3: # 0x2dd + ee.vmulas.s16.accx.ld.ip.qup q0,a8,16,q0,q1,q2,q3 # [0*II+0] id:831 + ee.vmulas.s16.accx.ld.ip q4,a15,16,q1,q6 # [0*II+1] id:832 + ee.vmulas.s16.accx.ld.ip.qup q4,a8,16,q4,q2,q3,q0 # [0*II+3] id:833 + ee.vmulas.s16.accx.ld.ip q1,a15,16,q2,q6 # [0*II+4] id:834 + ee.vmulas.s16.accx.ld.ip.qup q1,a8,16,q1,q3,q0,q4 # [0*II+6] id:835 + ee.vmulas.s16.accx.ld.ip q5,a15,16,q3,q6 # [0*II+7] id:836 + ee.vmulas.s16.accx.ld.ip.qup q5,a8,16,q5,q0,q4,q1 # [0*II+9] id:837 + ee.vmulas.s16.accx.ld.ip q0,a15,16,q0,q6 # [0*II+10] id:838 + ee.vmulas.s16.accx.ld.ip.qup q0,a8,16,q0,q4,q1,q5 # [0*II+12] id:839 + ee.vmulas.s16.accx.ld.ip q4,a15,16,q4,q6 # [0*II+13] id:840 + ee.vmulas.s16.accx.ld.xp.qup q4,a8,a12,q4,q1,q5,q0 # [0*II+15] id:841 + ee.vmulas.s16.accx.ld.ip q1,a15,16,q1,q6 # [0*II+16] id:842 + ee.vmulas.s16.accx.ld.xp.qup q2,a8,a11,q1,q5,q0,q4 # [0*II+18] id:843 + ee.vmulas.s16.accx.ld.ip q4,a15,16,q5,q6 # [0*II+19] id:845 + ee.ld.128.usar.xp q1,a8,a10 # [0*II+20] id:844 + ee.vmulas.s16.accx.ld.ip.qup q3,a8,16,q4,q0,q1,q2 # [0*II+22] id:846 + ee.vmulas.s16.accx.ld.ip q0,a15,16,q0,q6 # [0*II+23] id:847 + +.LBB250_dspi_dotprod_off_s16_aes3: # 0x320 + j .Lt_0_33026 # [0] + +.Lt_0_35586: # 0x323 + movi.n a2,0 # [0] + sext a14,a9,15 # [1] + s16i a14,a4,0 # [2] id:874 + retw.n # [3] + +#endif // dsps_dotprod_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c new file mode 100644 index 0000000..a8217d3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s16_ansi.c @@ -0,0 +1,49 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod.h" + +esp_err_t dspi_dotprod_off_s16_ansi(image2d_t *in_image, image2d_t *filter, int16_t *out_value, int count_x, int count_y, int shift, int16_t offset) +{ + if (in_image->step_x * count_x > in_image->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (in_image->step_y * count_y > in_image->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_x * count_x > filter->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_y * count_y > filter->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + int16_t *i_data = (int16_t *)in_image->data; + int16_t *f_data = (int16_t *)filter->data; + int i_step = in_image->stride_x * in_image->step_y; + int f_step = filter->stride_x * filter->step_y; + + int64_t acc = 0; + for (int y = 0; y < count_y; y++) { + for (int x = 0; x < count_x; x++) { + acc += (int32_t)i_data[in_image->step_x * x] * ((int32_t)f_data[filter->step_x * x] + (int32_t)offset); + } + i_data += i_step; + f_data += f_step; + } + acc += 1 << (shift - 1); // round operation + acc >>= shift; + *out_value = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S new file mode 100644 index 0000000..4a0cb04 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s8_aes3.S @@ -0,0 +1,408 @@ +// Copyright 2018-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod_platform.h" +#if (dspi_dotprod_aes3_enabled == 1) + + .text + .align 4 + .literal .LC0_1_57, 458755 + + # Program Unit: dspi_dotprod_off_s8_aes3 + .type dspi_dotprod_off_s8_aes3, @function + .align 4 + .global dspi_dotprod_off_s8_aes3 +dspi_dotprod_off_s8_aes3: # 0x4 +.LBB1_dspi_dotprod_off_s8_aes3: # 0x4 + entry a1,112 # + l32i.n a10,a2,4 # [0] id:745 + l32i.n a12,a2,12 # [1] id:744 + mull a8,a10,a5 # [2] + blt a12,a8,.LBB86_dspi_dotprod_off_s8_aes3 # [4] + + l32i.n a13,a2,8 # [0] id:746 + l32i.n a9,a2,16 # [1] id:747 + mull a11,a13,a6 # [2] + blt a9,a11,.LBB86_dspi_dotprod_off_s8_aes3 # [4] + + l32i.n a15,a3,4 # [0] id:749 + l32i.n a14,a3,12 # [1] id:748 + mull a11,a15,a5 # [2] + blt a14,a11,.LBB86_dspi_dotprod_off_s8_aes3 # [4] + + l32i.n a8,a3,16 # [0] id:751 + l32i.n a9,a3,8 # [1] id:750 + s32i a9,a1,72 # [2] gra_spill_temp_2 + mull a9,a9,a6 # [3] + blt a8,a9,.LBB86_dspi_dotprod_off_s8_aes3 # [5] + + l32i.n a8,a3,0 # [0] id:752 + s32i a8,a1,68 # [1] gra_spill_temp_1 + bbsi a8,0,.Lt_0_35330 # [2] + + bne a14,a11,.Lt_0_35330 # [0] + + bnei a15,1,.Lt_0_35330 # [0] + + l32i a11,a1,72 # [0] gra_spill_temp_2 + beqi a11,1,.Lt_0_18946 # [2] + +.Lt_0_35330: # 0x46 +.Lt_0_19202: # 0x46 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + .type dspi_dotprod_s8_ansi, @function + call8 dspi_dotprod_s8_ansi # [6] dspi_dotprod_s8_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB86_dspi_dotprod_off_s8_aes3: # 0x59 + l32r a2,.LC0_1_57 # [0] + retw.n # [1] + +.Lt_0_18946: # 0x5e + addi.n a14,a10,-1 # [0] + bnez a14,.Lt_0_36098 # [1] + + addi.n a15,a13,-1 # [0] + bnez a15,.Lt_0_36098 # [1] + + extui a8,a5,0,4 # [0] + bnez.n a8,.Lt_0_36098 # [1] + + blti a6,4,.Lt_0_36098 # [0] + + movi.n a9,64 # [0] + blt a9,a5,.LBB27_dspi_dotprod_off_s8_aes3 # [1] + +.Lt_0_36610: # 0x75 +.Lt_0_20994: # 0x75 + mov.n a8,a1 # [0] + l8ui a9,a1,112 # [1] id:754 offset+0x0 + l32i.n a15,a2,0 # [2] id:753 + mull a10,a12,a13 # [3] + l32i a2,a1,68 # [4] gra_spill_temp_1 + s32i a10,a1,64 # [5] gra_spill_temp_0 + sext a9,a9,7 # [6] + movi.n a10,4 # [7] + # loop-count fixed at 4 + loop a10,.LBB140_dspi_dotprod_off_s8_aes3 # [8] + +.LBB135_dspi_dotprod_off_s8_aes3: # 0x8d + s8i a9,a8,0 # [0*II+0] id:755 temp_offset+0x0 + s8i a9,a8,1 # [0*II+1] id:755 temp_offset+0x0 + s8i a9,a8,2 # [0*II+2] id:755 temp_offset+0x0 + s8i a9,a8,3 # [0*II+3] id:755 temp_offset+0x0 + s8i a9,a8,4 # [0*II+4] id:755 temp_offset+0x0 + s8i a9,a8,5 # [0*II+5] id:755 temp_offset+0x0 + s8i a9,a8,6 # [0*II+6] id:755 temp_offset+0x0 + s8i a9,a8,7 # [0*II+7] id:755 temp_offset+0x0 + addi.n a8,a8,8 # [0*II+8] + +.LBB140_dspi_dotprod_off_s8_aes3: # 0xa7 + mov.n a3,a6 # [0] + addi a11,a5,-48 # [1] + + addi.n a12,a1,8 # [3] temp_offset+8 + movi.n a13,0 # [4] + wur.accx_0 a13 # [5] + wur.accx_1 a13 # [6] + ee.vld.128.ip q6,a12,0 # [7] id:756 + s32i.n a12,a1,32 # [8] offset_data_ptr + beqz a11,.LBB34_dspi_dotprod_off_s8_aes3 # [9] + + l32i a2,a1,68 # [0] gra_spill_temp_1 + ee.vld.128.ip q0,a2,16 # [2] id:771 + st.qr q0,a1,48 # [3] q0 + +.Lt_0_24578: # 0xc6 + addi a14,a5,-32 # [0] + beqz a14,.LBB43_dspi_dotprod_off_s8_aes3 # [1] + +.Lt_0_26626: # 0xcc +.Lt_0_26114: # 0xcc + addi a8,a5,-16 # [0] + beqz a8,.LBB50_dspi_dotprod_off_s8_aes3 # [1] + +.Lt_0_28162: # 0xd2 +.Lt_0_27650: # 0xd2 + addi a9,a5,-64 # [0] + beqz a9,.LBB57_dspi_dotprod_off_s8_aes3 # [1] + +.Lt_0_29698: # 0xd8 +.Lt_0_29186: # 0xd8 + addi a10,a5,-128 # [0] + beqz a10,.LBB64_dspi_dotprod_off_s8_aes3 # [1] + + movi a11,128 # [0] + bge a11,a5,.Lt_0_32514 # [1] + + movi.n a12,0 # [0] + ee.ld.128.usar.ip q1,a15,16 # [1] id:833 + ee.ld.128.usar.ip q2,a15,16 # [2] id:834 + ee.src.q.ld.ip q3,a15,16,q1,q2 # [4] id:835 + beqz.n a3,.Lt_0_32514 # [5] + + ld.qr q0,a1,48 # [0] q0 + l32i a14,a1,64 # [1] gra_spill_temp_0 + addi a13,a5,31 # [2] + movgez a13,a5,a5 # [3] + srai a13,a13,5 # [4] + sub a14,a14,a5 # [5] + addi a14,a14,16 # [6] + addi.n a13,a13,-1 # [7] + +.Lt_0_33282: # 0x108 + beqz.n a13,.Lt_0_33538 # [0] + + loopnez a13,.LBB277_dspi_dotprod_off_s8_aes3 # [0] + +.LBB275_dspi_dotprod_off_s8_aes3: # 0x10d + ee.vmulas.s8.accx.ld.ip.qup q0,a15,16,q0,q1,q2,q3 # [0*II+0] id:836 + ee.vmulas.s8.accx.ld.ip q1,a2,16,q1,q6 # [0*II+1] id:837 + ee.vmulas.s8.accx.ld.ip.qup q1,a15,16,q1,q2,q3,q0 # [0*II+3] id:838 + ee.vmulas.s8.accx.ld.ip q4,a2,16,q2,q6 # [0*II+4] id:839 + ee.vmulas.s8.accx.ld.ip.qup q2,a15,16,q4,q3,q0,q1 # [0*II+6] id:840 + ee.vmulas.s8.accx.ld.ip q4,a2,16,q3,q6 # [0*II+7] id:841 + ee.vmulas.s8.accx.ld.ip.qup q3,a15,16,q4,q0,q1,q2 # [0*II+9] id:842 + ee.vmulas.s8.accx.ld.ip q0,a2,16,q0,q6 # [0*II+10] id:843 + +.LBB277_dspi_dotprod_off_s8_aes3: # 0x12d + +.Lt_0_33538: # 0x12d + ee.vmulas.s8.accx.ld.ip.qup q4,a15,16,q0,q1,q2,q3 # [0] id:844 + ee.vmulas.s8.accx.ld.ip q1,a2,16,q1,q6 # [1] id:845 + movi.n a8,32 # [2] + ee.vmulas.s8.accx.ld.xp.qup q0,a15,a14,q1,q2,q3,q4 # [3] id:846 + ee.vmulas.s8.accx.ld.ip q7,a2,16,q2,q6 # [4] id:847 + movi.n a9,-16 # [5] + ee.vmulas.s8.accx.ld.xp.qup q2,a15,a9,q7,q3,q4,q0 # [6] id:848 + ee.vmulas.s8.accx.ld.ip q5,a2,16,q3,q6 # [7] id:850 + ee.ld.128.usar.xp q1,a15,a8 # [8] id:849 + addi.n a12,a12,1 # [9] + ee.vmulas.s8.accx.ld.ip.qup q3,a15,16,q5,q4,q1,q2 # [10] id:851 + ee.vmulas.s8.accx.ld.ip q0,a2,16,q4,q6 # [11] id:852 + bne a12,a3,.Lt_0_33282 # [12] + +.Lt_0_32514: # 0x159 +.Lt_0_32258: # 0x159 + movi.n a2,0 # [0] + rur.accx_0 a10 # [1] + addi.n a12,a7,-1 # [2] + movi.n a11,1 # [3] + ssl a12 # [4] + sll a11,a11 # [5] + ssr a7 # [6] + add.n a10,a10,a11 # [7] + sra a10,a10 # [8] + s8i a10,a4,0 # [9] id:854 + retw.n # [10] + +.Lt_0_36098: # 0x175 +.Lt_0_20226: # 0x175 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + call8 dspi_dotprod_s8_ansi # [6] dspi_dotprod_s8_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB27_dspi_dotprod_off_s8_aes3: # 0x188 + extui a14,a5,0,1 # [0] + beqz a14,.Lt_0_36610 # [1] + + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + call8 dspi_dotprod_s8_ansi # [6] dspi_dotprod_s8_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB34_dspi_dotprod_off_s8_aes3: # 0x1a1 + ee.ld.128.usar.ip q0,a15,16 # [0] id:760 + ee.ld.128.usar.ip q2,a15,16 # [1] id:761 + ee.src.q.ld.ip q3,a15,16,q0,q2 # [3] id:762 + beqz.n a6,.Lt_0_24578 # [4] + + movi.n a10,32 # [0] + l32i a12,a1,64 # [1] gra_spill_temp_0 + movi.n a11,-16 # [2] + addi a12,a12,-32 # [3] + loopgtz a6,.LBB163_dspi_dotprod_off_s8_aes3 # [4] + +.LBB161_dspi_dotprod_off_s8_aes3: # 0x1b9 + ee.vmulas.s8.accx.ld.ip q1,a2,16,q0,q6 # [0*II+0] id:763 + ee.vmulas.s8.accx.ld.xp.qup q1,a15,a12,q1,q0,q2,q3 # [0*II+2] id:764 + ee.vmulas.s8.accx.ld.ip q0,a2,16,q2,q6 # [0*II+3] id:765 + ee.vmulas.s8.accx.ld.xp.qup q2,a15,a11,q0,q2,q3,q1 # [0*II+5] id:766 + ee.vmulas.s8.accx.ld.ip q1,a2,16,q3,q6 # [0*II+6] id:768 + ee.ld.128.usar.xp q0,a15,a10 # [0*II+7] id:767 + ee.vmulas.s8.accx.ld.ip.qup q3,a15,16,q1,q3,q0,q2 # [0*II+9] id:769 + +.LBB163_dspi_dotprod_off_s8_aes3: # 0x1d4 + st.qr q1,a1,48 # [0] q0 + j .Lt_0_24578 # [1] + +.LBB43_dspi_dotprod_off_s8_aes3: # 0x1da + srli a3,a6,1 # [0] + l32i a12,a1,64 # [1] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a15,16 # [2] id:772 + ee.ld.128.usar.ip q2,a15,16 # [3] id:773 + addi a12,a12,-16 # [5] + ee.src.q.ld.xp q3,a15,a12,q1,q2 # [6] id:774 + beqz.n a3,.Lt_0_26626 # [7] + + ld.qr q0,a1,48 # [0] q0 + movi.n a10,32 # [1] + movi.n a11,-16 # [2] + loopnez a3,.LBB186_dspi_dotprod_off_s8_aes3 # [3] + +.LBB184_dspi_dotprod_off_s8_aes3: # 0x1f8 + ee.vmulas.s8.accx.ld.xp.qup q0,a15,a11,q0,q1,q2,q3 # [0*II+0] id:775 + ee.vmulas.s8.accx.ld.ip q3,a2,16,q1,q6 # [0*II+1] id:776 + ee.ld.128.usar.xp q1,a15,a10 # [0*II+2] id:777 + ee.vmulas.s8.accx.ld.xp.qup q3,a15,a12,q3,q2,q1,q0 # [0*II+4] id:778 + ee.vmulas.s8.accx.ld.ip q4,a2,16,q2,q6 # [0*II+5] id:779 + ee.vmulas.s8.accx.ld.xp.qup q2,a15,a11,q4,q1,q0,q3 # [0*II+7] id:780 + ee.vmulas.s8.accx.ld.ip q3,a2,16,q1,q6 # [0*II+8] id:781 + ee.ld.128.usar.xp q1,a15,a10 # [0*II+9] id:782 + ee.vmulas.s8.accx.ld.xp.qup q3,a15,a12,q3,q0,q1,q2 # [0*II+11] id:783 + ee.vmulas.s8.accx.ld.ip q0,a2,16,q0,q6 # [0*II+12] id:784 + +.LBB186_dspi_dotprod_off_s8_aes3: # 0x21e + st.qr q0,a1,48 # [0] q0 + j .Lt_0_26626 # [1] + +.LBB50_dspi_dotprod_off_s8_aes3: # 0x224 + srli a3,a3,2 # [0] + movi.n a13,-16 # [1] + l32i a11,a1,64 # [2] gra_spill_temp_0 + addi a15,a15,16 # [3] + addi a11,a11,16 # [4] + ee.ld.128.usar.xp q2,a15,a13 # [5] id:785 + ee.ld.128.usar.xp q1,a15,a11 # [6] id:786 + ee.src.q.ld.xp q3,a15,a13,q1,q2 # [8] id:787 + ee.ld.128.usar.xp q2,a15,a11 # [9] id:788 + beqz.n a3,.Lt_0_28162 # [10] + + ld.qr q0,a1,48 # [0] q0 + movi.n a10,-16 # [1] + loopnez a3,.LBB209_dspi_dotprod_off_s8_aes3 # [2] + +.LBB207_dspi_dotprod_off_s8_aes3: # 0x248 + ee.vmulas.s8.accx.ld.xp.qup q3,a15,a10,q0,q1,q2,q3 # [0*II+0] id:789 + ee.vmulas.s8.accx.ld.ip q0,a2,16,q1,q6 # [0*II+1] id:790 + ee.ld.128.usar.xp q1,a15,a11 # [0*II+2] id:791 + ee.vmulas.s8.accx.ld.xp.qup q3,a15,a10,q0,q2,q1,q3 # [0*II+4] id:792 + ee.vmulas.s8.accx.ld.ip q0,a2,16,q2,q6 # [0*II+5] id:793 + ee.ld.128.usar.xp q4,a15,a11 # [0*II+6] id:794 + ee.vmulas.s8.accx.ld.xp.qup q3,a15,a10,q0,q1,q4,q3 # [0*II+8] id:795 + ee.vmulas.s8.accx.ld.ip q0,a2,16,q1,q6 # [0*II+9] id:796 + ee.ld.128.usar.xp q1,a15,a11 # [0*II+10] id:797 + ee.vmulas.s8.accx.ld.xp.qup q3,a15,a10,q0,q4,q1,q3 # [0*II+12] id:798 + ee.vmulas.s8.accx.ld.ip q0,a2,16,q4,q6 # [0*II+13] id:799 + ee.ld.128.usar.xp q2,a15,a11 # [0*II+14] id:800 + +.LBB209_dspi_dotprod_off_s8_aes3: # 0x274 + st.qr q0,a1,48 # [0] q0 + j .Lt_0_28162 # [1] + +.LBB57_dspi_dotprod_off_s8_aes3: # 0x27a + ee.ld.128.usar.ip q1,a15,16 # [0] id:801 + ee.ld.128.usar.ip q2,a15,16 # [1] id:802 + ee.src.q.ld.ip q3,a15,16,q1,q2 # [3] id:803 + beqz.n a3,.Lt_0_29698 # [4] + + ld.qr q0,a1,48 # [0] q0 + movi.n a10,32 # [1] + l32i a12,a1,64 # [2] gra_spill_temp_0 + movi.n a11,-16 # [3] + sub a12,a12,a5 # [4] + addi a12,a12,16 # [5] + loopnez a3,.LBB232_dspi_dotprod_off_s8_aes3 # [6] + +.LBB230_dspi_dotprod_off_s8_aes3: # 0x298 + ee.vmulas.s8.accx.ld.ip.qup q0,a15,16,q0,q1,q2,q3 # [0*II+0] id:804 + ee.vmulas.s8.accx.ld.ip q4,a2,16,q1,q6 # [0*II+1] id:805 + ee.vmulas.s8.accx.ld.xp.qup q4,a15,a12,q4,q2,q3,q0 # [0*II+3] id:806 + ee.vmulas.s8.accx.ld.ip q1,a2,16,q2,q6 # [0*II+4] id:807 + ee.vmulas.s8.accx.ld.xp.qup q2,a15,a11,q1,q3,q0,q4 # [0*II+6] id:808 + ee.vmulas.s8.accx.ld.ip q4,a2,16,q3,q6 # [0*II+7] id:809 + ee.ld.128.usar.xp q1,a15,a10 # [0*II+8] id:810 + ee.vmulas.s8.accx.ld.ip.qup q3,a15,16,q4,q0,q1,q2 # [0*II+10] id:811 + ee.vmulas.s8.accx.ld.ip q0,a2,16,q0,q6 # [0*II+11] id:812 + +.LBB232_dspi_dotprod_off_s8_aes3: # 0x2bb + st.qr q0,a1,48 # [0] q0 + j .Lt_0_29698 # [1] + +.LBB64_dspi_dotprod_off_s8_aes3: # 0x2c1 + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + l32i a12,a1,64 # [2] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a15,16 # [3] id:813 + ee.ld.128.usar.ip q2,a15,16 # [4] id:814 + sub a12,a12,a5 # [6] + addi a12,a12,16 # [7] + ld.qr q0,a1,48 # [8] q0 + ee.src.q.ld.ip q3,a15,16,q1,q2 # [9] id:815 + mov.n a8,a15 # [10] + loopnez a3,.LBB254_dspi_dotprod_off_s8_aes3 # [11] + +.LBB252_dspi_dotprod_off_s8_aes3: # 0x2df + ee.vmulas.s8.accx.ld.ip.qup q0,a8,16,q0,q1,q2,q3 # [0*II+0] id:816 + ee.vmulas.s8.accx.ld.ip q4,a2,16,q1,q6 # [0*II+1] id:817 + ee.vmulas.s8.accx.ld.ip.qup q4,a8,16,q4,q2,q3,q0 # [0*II+3] id:818 + ee.vmulas.s8.accx.ld.ip q1,a2,16,q2,q6 # [0*II+4] id:819 + ee.vmulas.s8.accx.ld.ip.qup q1,a8,16,q1,q3,q0,q4 # [0*II+6] id:820 + ee.vmulas.s8.accx.ld.ip q5,a2,16,q3,q6 # [0*II+7] id:821 + ee.vmulas.s8.accx.ld.ip.qup q5,a8,16,q5,q0,q4,q1 # [0*II+9] id:822 + ee.vmulas.s8.accx.ld.ip q0,a2,16,q0,q6 # [0*II+10] id:823 + ee.vmulas.s8.accx.ld.ip.qup q0,a8,16,q0,q4,q1,q5 # [0*II+12] id:824 + ee.vmulas.s8.accx.ld.ip q4,a2,16,q4,q6 # [0*II+13] id:825 + ee.vmulas.s8.accx.ld.xp.qup q4,a8,a12,q4,q1,q5,q0 # [0*II+15] id:826 + ee.vmulas.s8.accx.ld.ip q1,a2,16,q1,q6 # [0*II+16] id:827 + ee.vmulas.s8.accx.ld.xp.qup q2,a8,a11,q1,q5,q0,q4 # [0*II+18] id:828 + ee.vmulas.s8.accx.ld.ip q4,a2,16,q5,q6 # [0*II+19] id:829 + ee.ld.128.usar.xp q1,a8,a10 # [0*II+20] id:830 + ee.vmulas.s8.accx.ld.ip.qup q3,a8,16,q4,q0,q1,q2 # [0*II+22] id:831 + ee.vmulas.s8.accx.ld.ip q0,a2,16,q0,q6 # [0*II+23] id:832 + +.LBB254_dspi_dotprod_off_s8_aes3: # 0x322 + movi.n a2,0 # [0] + movi.n a11,1 # [1] + addi.n a12,a7,-1 # [2] + rur.accx_0 a10 # [3] + ssl a12 # [4] + sll a11,a11 # [5] + ssr a7 # [6] + add.n a10,a10,a11 # [7] + sra a10,a10 # [8] + s8i a10,a4,0 # [9] id:854 + retw.n # [10] + +#endif // dsps_dotprod_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c new file mode 100644 index 0000000..b5476da --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_s8_ansi.c @@ -0,0 +1,49 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod.h" + +esp_err_t dspi_dotprod_off_s8_ansi(image2d_t *in_image, image2d_t *filter, int8_t *out_value, int count_x, int count_y, int shift, int8_t offset) +{ + if (in_image->step_x * count_x > in_image->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (in_image->step_y * count_y > in_image->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_x * count_x > filter->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_y * count_y > filter->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + int8_t *i_data = (int8_t *)in_image->data; + int8_t *f_data = (int8_t *)filter->data; + int i_step = in_image->stride_x * in_image->step_y; + int f_step = filter->stride_x * filter->step_y; + + int32_t acc = 0; + for (int y = 0; y < count_y; y++) { + for (int x = 0; x < count_x; x++) { + acc += (int16_t)i_data[in_image->step_x * x] * ((int16_t)f_data[filter->step_x * x] + (int16_t)offset); + } + i_data += i_step; + f_data += f_step; + } + acc += 1 << (shift - 1); // round operation + acc >>= shift; + *out_value = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S new file mode 100644 index 0000000..655877f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u16_aes3.S @@ -0,0 +1,417 @@ +// Copyright 2018-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod_platform.h" +#if (dspi_dotprod_aes3_enabled == 1) + + .text + .align 4 + .literal .LC0_1_61, 458755 + + # Program Unit: dspi_dotprod_off_u16_aes3 + .type dspi_dotprod_off_u16_aes3, @function + .align 4 + .global dspi_dotprod_off_u16_aes3 +dspi_dotprod_off_u16_aes3: # 0x4 +.LBB1_dspi_dotprod_off_u16_aes3: # 0x4 + entry a1,144 # + l32i.n a10,a2,4 # [0] id:760 + l32i.n a12,a2,12 # [1] id:759 + mull a8,a10,a5 # [2] + blt a12,a8,.LBB89_dspi_dotprod_off_u16_aes3 # [4] + + l32i.n a13,a2,8 # [0] id:761 + l32i.n a9,a2,16 # [1] id:762 + mull a11,a13,a6 # [2] + blt a9,a11,.LBB89_dspi_dotprod_off_u16_aes3 # [4] + + l32i.n a15,a3,4 # [0] id:764 + l32i.n a14,a3,12 # [1] id:763 + mull a11,a15,a5 # [2] + blt a14,a11,.LBB89_dspi_dotprod_off_u16_aes3 # [4] + + l32i.n a8,a3,16 # [0] id:766 + l32i.n a9,a3,8 # [1] id:765 + s32i a9,a1,104 # [2] gra_spill_temp_2 + mull a9,a9,a6 # [3] + blt a8,a9,.LBB89_dspi_dotprod_off_u16_aes3 # [5] + + l32i.n a8,a3,0 # [0] id:767 + s32i a8,a1,100 # [1] gra_spill_temp_1 + bbsi a8,0,.Lt_0_36354 # [2] + + bne a14,a11,.Lt_0_36354 # [0] + + bnei a15,1,.Lt_0_36354 # [0] + + l32i a9,a1,104 # [0] gra_spill_temp_2 + beqi a9,1,.Lt_0_19458 # [2] + +.Lt_0_36354: # 0x46 +.Lt_0_19714: # 0x46 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + l16ui a8,a1,144 # [6] id:768 offset+0x0 + s32i.n a8,a1,0 # [7] id:876 + .type dspi_dotprod_off_u16_ansi, @function + call8 dspi_dotprod_off_u16_ansi # [8] dspi_dotprod_off_u16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB89_dspi_dotprod_off_u16_aes3: # 0x5e + l32r a2,.LC0_1_61 # [0] + retw.n # [1] + +.Lt_0_19458: # 0x63 + addi.n a9,a10,-1 # [0] + bnez a9,.Lt_0_37122 # [1] + + addi.n a10,a13,-1 # [0] + bnez a10,.Lt_0_37122 # [1] + + extui a11,a5,0,3 # [0] + bnez.n a11,.Lt_0_37122 # [1] + + blti a6,4,.Lt_0_37122 # [0] + + movi.n a14,32 # [0] + blt a14,a5,.LBB27_dspi_dotprod_off_u16_aes3 # [1] + +.Lt_0_37634: # 0x7a +.Lt_0_21506: # 0x7a + l16ui a9,a1,144 # [0] id:768 offset+0x0 + addi a8,a1,16 # [1] temp_offset + l32i.n a15,a2,0 # [2] id:769 + mull a10,a12,a13 # [3] + l32i a2,a1,100 # [4] gra_spill_temp_1 + slli a10,a10,1 # [5] + s32i a10,a1,96 # [6] gra_spill_temp_0 + movi.n a10,2 # [7] + # loop-count fixed at 2 + loop a10,.LBB143_dspi_dotprod_off_u16_aes3 # [8] + +.LBB138_dspi_dotprod_off_u16_aes3: # 0x93 + s16i a9,a8,0 # [0*II+0] id:770 temp_offset+0x0 + s16i a9,a8,2 # [0*II+1] id:770 temp_offset+0x0 + s16i a9,a8,4 # [0*II+2] id:770 temp_offset+0x0 + s16i a9,a8,6 # [0*II+3] id:770 temp_offset+0x0 + s16i a9,a8,8 # [0*II+4] id:770 temp_offset+0x0 + s16i a9,a8,10 # [0*II+5] id:770 temp_offset+0x0 + s16i a9,a8,12 # [0*II+6] id:770 temp_offset+0x0 + s16i a9,a8,14 # [0*II+7] id:770 temp_offset+0x0 + addi a8,a8,16 # [0*II+8] + +.LBB143_dspi_dotprod_off_u16_aes3: # 0xae + mov.n a3,a6 # [0] + addi a11,a5,-24 # [1] + addi a12,a1,24 # [3] temp_offset+8 + movi.n a13,0 # [4] + wur.sar_byte a13 # [5] + wur.accx_0 a13 # [6] + wur.accx_1 a13 # [7] + ee.vld.128.ip q6,a12,0 # [8] id:771 + s32i.n a12,a1,48 # [9] offset_data_ptr + beqz a11,.LBB34_dspi_dotprod_off_u16_aes3 # [10] + + l32i a2,a1,100 # [0] gra_spill_temp_1 + ee.vld.128.ip q0,a2,16 # [2] id:787 + st.qr q0,a1,64 # [3] q0 + +.Lt_0_25090: # 0xd1 + addi a14,a5,-16 # [0] + beqz a14,.LBB43_dspi_dotprod_off_u16_aes3 # [1] + +.Lt_0_27138: # 0xd7 +.Lt_0_26626: # 0xd7 + addi a8,a5,-8 # [0] + beqz a8,.LBB50_dspi_dotprod_off_u16_aes3 # [1] + +.Lt_0_28674: # 0xdd +.Lt_0_28162: # 0xdd + addi a9,a5,-32 # [0] + beqz a9,.LBB57_dspi_dotprod_off_u16_aes3 # [1] + +.Lt_0_30210: # 0xe3 +.Lt_0_29698: # 0xe3 + addi a10,a5,-64 # [0] + beqz a10,.LBB64_dspi_dotprod_off_u16_aes3 # [1] + + movi.n a11,64 # [0] + bge a11,a5,.Lt_0_33026 # [1] + + movi.n a12,0 # [0] + ee.ld.128.usar.ip q1,a15,16 # [1] id:849 + ee.ld.128.usar.ip q2,a15,16 # [2] id:850 + ee.src.q.ld.ip q3,a15,16,q1,q2 # [4] id:851 + beqz.n a3,.Lt_0_33026 # [5] + + ld.qr q0,a1,64 # [0] q0 + slli a8,a5,1 # [1] + l32i a14,a1,96 # [2] gra_spill_temp_0 + addi a13,a5,31 # [3] + movgez a13,a5,a5 # [4] + srai a13,a13,5 # [5] + sub a14,a14,a8 # [6] + addi a14,a14,16 # [7] + addi.n a13,a13,-1 # [8] + +.Lt_0_33794: # 0x115 + beqz.n a13,.Lt_0_34050 # [0] + + loopnez a13,.LBB280_dspi_dotprod_off_u16_aes3 # [0] + +.LBB278_dspi_dotprod_off_u16_aes3: # 0x11a + ee.vmulas.u16.accx.ld.ip.qup q0,a15,16,q0,q1,q2,q3 # [0*II+0] id:852 + ee.vmulas.u16.accx.ld.ip q1,a2,16,q1,q6 # [0*II+1] id:853 + ee.vmulas.u16.accx.ld.ip.qup q1,a15,16,q1,q2,q3,q0 # [0*II+3] id:854 + ee.vmulas.u16.accx.ld.ip q4,a2,16,q2,q6 # [0*II+4] id:855 + ee.vmulas.u16.accx.ld.ip.qup q2,a15,16,q4,q3,q0,q1 # [0*II+6] id:856 + ee.vmulas.u16.accx.ld.ip q4,a2,16,q3,q6 # [0*II+7] id:857 + ee.vmulas.u16.accx.ld.ip.qup q3,a15,16,q4,q0,q1,q2 # [0*II+9] id:858 + ee.vmulas.u16.accx.ld.ip q0,a2,16,q0,q6 # [0*II+10] id:859 + +.LBB280_dspi_dotprod_off_u16_aes3: # 0x13a + +.Lt_0_34050: # 0x13a + ee.vmulas.u16.accx.ld.ip.qup q4,a15,16,q0,q1,q2,q3 # [0] id:860 + ee.vmulas.u16.accx.ld.ip q1,a2,16,q1,q6 # [1] id:861 + movi.n a9,32 # [2] + ee.vmulas.u16.accx.ld.xp.qup q0,a15,a14,q1,q2,q3,q4 # [3] id:862 + ee.vmulas.u16.accx.ld.ip q7,a2,16,q2,q6 # [4] id:863 + movi.n a10,-16 # [5] + ee.vmulas.u16.accx.ld.xp.qup q2,a15,a10,q7,q3,q4,q0 # [6] id:864 + ee.vmulas.u16.accx.ld.ip q5,a2,16,q3,q6 # [7] id:866 + ee.ld.128.usar.xp q1,a15,a9 # [8] id:865 + addi.n a12,a12,1 # [9] + ee.vmulas.u16.accx.ld.ip.qup q3,a15,16,q5,q4,q1,q2 # [10] id:867 + ee.vmulas.u16.accx.ld.ip q0,a2,16,q4,q6 # [11] id:868 + bne a12,a3,.Lt_0_33794 # [12] + +.Lt_0_33026: # 0x166 +.Lt_0_32770: # 0x166 + rur.accx_0 a9 # [0] + rur.accx_1 a10 # [1] + blti a7,1,.Lt_0_35586 # [2] + + movi.n a2,0 # [0] + addi a13,a7,-33 # [1] + addi.n a14,a7,-1 # [2] + ssr a14 # [3] + sra a12,a10 # [4] + src a11,a10,a9 # [5] + movgez a11,a12,a13 # [6] + addi.n a11,a11,1 # [7] + srli a11,a11,1 # [8] + s16i a11,a4,0 # [9] id:874 + retw.n # [10] + +.Lt_0_37122: # 0x18c +.Lt_0_20738: # 0x18c + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + l16ui a8,a1,144 # [6] id:768 offset+0x0 + s32i.n a8,a1,0 # [7] id:877 + call8 dspi_dotprod_off_u16_ansi # [8] dspi_dotprod_off_u16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB27_dspi_dotprod_off_u16_aes3: # 0x1a4 + extui a9,a5,0,1 # [0] + beqz a9,.Lt_0_37634 # [1] + + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + l16ui a8,a1,144 # [6] id:768 offset+0x0 + s32i.n a8,a1,0 # [7] id:878 + call8 dspi_dotprod_off_u16_ansi # [8] dspi_dotprod_off_u16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB34_dspi_dotprod_off_u16_aes3: # 0x1c2 + ee.ld.128.usar.ip q0,a15,16 # [0] id:776 + ee.ld.128.usar.ip q2,a15,16 # [1] id:777 + ee.src.q.ld.ip q3,a15,16,q0,q2 # [3] id:778 + beqz.n a6,.Lt_0_25090 # [4] + + movi.n a10,32 # [0] + l32i a12,a1,96 # [1] gra_spill_temp_0 + movi.n a11,-16 # [2] + addi a12,a12,-32 # [3] + loopgtz a6,.LBB166_dspi_dotprod_off_u16_aes3 # [4] + +.LBB164_dspi_dotprod_off_u16_aes3: # 0x1da + ee.vmulas.u16.accx.ld.ip q1,a2,16,q0,q6 # [0*II+0] id:779 + ee.vmulas.u16.accx.ld.xp.qup q1,a15,a12,q1,q0,q2,q3 # [0*II+2] id:780 + ee.vmulas.u16.accx.ld.ip q0,a2,16,q2,q6 # [0*II+3] id:781 + ee.vmulas.u16.accx.ld.xp.qup q2,a15,a11,q0,q2,q3,q1 # [0*II+5] id:782 + ee.vmulas.u16.accx.ld.ip q1,a2,16,q3,q6 # [0*II+6] id:784 + ee.ld.128.usar.xp q0,a15,a10 # [0*II+7] id:783 + ee.vmulas.u16.accx.ld.ip.qup q3,a15,16,q1,q3,q0,q2 # [0*II+9] id:785 + +.LBB166_dspi_dotprod_off_u16_aes3: # 0x1f5 + st.qr q1,a1,64 # [0] q0 + j .Lt_0_25090 # [1] + +.LBB43_dspi_dotprod_off_u16_aes3: # 0x1fb + srli a3,a6,1 # [0] + l32i a12,a1,96 # [1] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a15,16 # [2] id:788 + ee.ld.128.usar.ip q2,a15,16 # [3] id:789 + addi a12,a12,-16 # [5] + ee.src.q.ld.xp q3,a15,a12,q1,q2 # [6] id:790 + beqz.n a3,.Lt_0_27138 # [7] + + ld.qr q0,a1,64 # [0] q0 + movi.n a10,32 # [1] + movi.n a11,-16 # [2] + loopnez a3,.LBB189_dspi_dotprod_off_u16_aes3 # [3] + +.LBB187_dspi_dotprod_off_u16_aes3: # 0x219 + ee.vmulas.u16.accx.ld.xp.qup q0,a15,a11,q0,q1,q2,q3 # [0*II+0] id:791 + ee.vmulas.u16.accx.ld.ip q3,a2,16,q1,q6 # [0*II+1] id:792 + ee.ld.128.usar.xp q1,a15,a10 # [0*II+2] id:793 + ee.vmulas.u16.accx.ld.xp.qup q3,a15,a12,q3,q2,q1,q0 # [0*II+4] id:794 + ee.vmulas.u16.accx.ld.ip q4,a2,16,q2,q6 # [0*II+5] id:795 + ee.vmulas.u16.accx.ld.xp.qup q2,a15,a11,q4,q1,q0,q3 # [0*II+7] id:796 + ee.vmulas.u16.accx.ld.ip q3,a2,16,q1,q6 # [0*II+8] id:797 + ee.ld.128.usar.xp q1,a15,a10 # [0*II+9] id:798 + ee.vmulas.u16.accx.ld.xp.qup q3,a15,a12,q3,q0,q1,q2 # [0*II+11] id:799 + ee.vmulas.u16.accx.ld.ip q0,a2,16,q0,q6 # [0*II+12] id:800 + +.LBB189_dspi_dotprod_off_u16_aes3: # 0x23f + st.qr q0,a1,64 # [0] q0 + j .Lt_0_27138 # [1] + +.LBB50_dspi_dotprod_off_u16_aes3: # 0x245 + srli a3,a3,2 # [0] + movi.n a13,-16 # [1] + l32i a11,a1,96 # [2] gra_spill_temp_0 + addi a15,a15,16 # [3] + addi a11,a11,16 # [4] + ee.ld.128.usar.xp q2,a15,a13 # [5] id:801 + ee.ld.128.usar.xp q1,a15,a11 # [6] id:802 + ee.src.q.ld.xp q3,a15,a13,q1,q2 # [8] id:803 + ee.ld.128.usar.xp q2,a15,a11 # [9] id:804 + beqz.n a3,.Lt_0_28674 # [10] + + ld.qr q0,a1,64 # [0] q0 + movi.n a10,-16 # [1] + loopnez a3,.LBB212_dspi_dotprod_off_u16_aes3 # [2] + +.LBB210_dspi_dotprod_off_u16_aes3: # 0x269 + ee.vmulas.u16.accx.ld.xp.qup q3,a15,a10,q0,q1,q2,q3 # [0*II+0] id:805 + ee.vmulas.u16.accx.ld.ip q0,a2,16,q1,q6 # [0*II+1] id:806 + ee.ld.128.usar.xp q1,a15,a11 # [0*II+2] id:807 + ee.vmulas.u16.accx.ld.xp.qup q3,a15,a10,q0,q2,q1,q3 # [0*II+4] id:808 + ee.vmulas.u16.accx.ld.ip q0,a2,16,q2,q6 # [0*II+5] id:809 + ee.ld.128.usar.xp q4,a15,a11 # [0*II+6] id:810 + ee.vmulas.u16.accx.ld.xp.qup q3,a15,a10,q0,q1,q4,q3 # [0*II+8] id:811 + ee.vmulas.u16.accx.ld.ip q0,a2,16,q1,q6 # [0*II+9] id:812 + ee.ld.128.usar.xp q1,a15,a11 # [0*II+10] id:813 + ee.vmulas.u16.accx.ld.xp.qup q3,a15,a10,q0,q4,q1,q3 # [0*II+12] id:814 + ee.vmulas.u16.accx.ld.ip q0,a2,16,q4,q6 # [0*II+13] id:815 + ee.ld.128.usar.xp q2,a15,a11 # [0*II+14] id:816 + +.LBB212_dspi_dotprod_off_u16_aes3: # 0x295 + st.qr q0,a1,64 # [0] q0 + j .Lt_0_28674 # [1] + +.LBB57_dspi_dotprod_off_u16_aes3: # 0x29b + ee.ld.128.usar.ip q1,a15,16 # [0] id:817 + ee.ld.128.usar.ip q2,a15,16 # [1] id:818 + ee.src.q.ld.ip q3,a15,16,q1,q2 # [3] id:819 + beqz.n a3,.Lt_0_30210 # [4] + + ld.qr q0,a1,64 # [0] q0 + movi.n a10,32 # [1] + movi.n a11,-16 # [2] + l32i a12,a1,96 # [3] gra_spill_temp_0 + slli a13,a5,1 # [4] + sub a12,a12,a13 # [5] + addi a12,a12,16 # [6] + loopnez a3,.LBB235_dspi_dotprod_off_u16_aes3 # [7] + +.LBB233_dspi_dotprod_off_u16_aes3: # 0x2bc + ee.vmulas.u16.accx.ld.ip.qup q0,a15,16,q0,q1,q2,q3 # [0*II+0] id:820 + ee.vmulas.u16.accx.ld.ip q4,a2,16,q1,q6 # [0*II+1] id:821 + ee.vmulas.u16.accx.ld.xp.qup q4,a15,a12,q4,q2,q3,q0 # [0*II+3] id:822 + ee.vmulas.u16.accx.ld.ip q1,a2,16,q2,q6 # [0*II+4] id:823 + ee.vmulas.u16.accx.ld.xp.qup q2,a15,a11,q1,q3,q0,q4 # [0*II+6] id:824 + ee.vmulas.u16.accx.ld.ip q4,a2,16,q3,q6 # [0*II+7] id:826 + ee.ld.128.usar.xp q1,a15,a10 # [0*II+8] id:825 + ee.vmulas.u16.accx.ld.ip.qup q3,a15,16,q4,q0,q1,q2 # [0*II+10] id:827 + ee.vmulas.u16.accx.ld.ip q0,a2,16,q0,q6 # [0*II+11] id:828 + +.LBB235_dspi_dotprod_off_u16_aes3: # 0x2df + st.qr q0,a1,64 # [0] q0 + j .Lt_0_30210 # [1] + +.LBB64_dspi_dotprod_off_u16_aes3: # 0x2e5 + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + slli a13,a5,1 # [2] + l32i a12,a1,96 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a15,16 # [4] id:829 + ee.ld.128.usar.ip q2,a15,16 # [5] id:830 + sub a12,a12,a13 # [7] + addi a12,a12,16 # [8] + ld.qr q0,a1,64 # [9] q0 + ee.src.q.ld.ip q3,a15,16,q1,q2 # [10] id:831 + mov.n a8,a15 # [11] + loopnez a3,.LBB257_dspi_dotprod_off_u16_aes3 # [12] + +.LBB255_dspi_dotprod_off_u16_aes3: # 0x306 + ee.vmulas.u16.accx.ld.ip.qup q0,a8,16,q0,q1,q2,q3 # [0*II+0] id:832 + ee.vmulas.u16.accx.ld.ip q4,a2,16,q1,q6 # [0*II+1] id:833 + ee.vmulas.u16.accx.ld.ip.qup q4,a8,16,q4,q2,q3,q0 # [0*II+3] id:834 + ee.vmulas.u16.accx.ld.ip q1,a2,16,q2,q6 # [0*II+4] id:835 + ee.vmulas.u16.accx.ld.ip.qup q1,a8,16,q1,q3,q0,q4 # [0*II+6] id:836 + ee.vmulas.u16.accx.ld.ip q5,a2,16,q3,q6 # [0*II+7] id:837 + ee.vmulas.u16.accx.ld.ip.qup q5,a8,16,q5,q0,q4,q1 # [0*II+9] id:838 + ee.vmulas.u16.accx.ld.ip q0,a2,16,q0,q6 # [0*II+10] id:839 + ee.vmulas.u16.accx.ld.ip.qup q0,a8,16,q0,q4,q1,q5 # [0*II+12] id:840 + ee.vmulas.u16.accx.ld.ip q4,a2,16,q4,q6 # [0*II+13] id:841 + ee.vmulas.u16.accx.ld.xp.qup q4,a8,a12,q4,q1,q5,q0 # [0*II+15] id:842 + ee.vmulas.u16.accx.ld.ip q1,a2,16,q1,q6 # [0*II+16] id:843 + ee.vmulas.u16.accx.ld.xp.qup q2,a8,a11,q1,q5,q0,q4 # [0*II+18] id:844 + ee.vmulas.u16.accx.ld.ip q4,a2,16,q5,q6 # [0*II+19] id:846 + ee.ld.128.usar.xp q1,a8,a10 # [0*II+20] id:845 + ee.vmulas.u16.accx.ld.ip.qup q3,a8,16,q4,q0,q1,q2 # [0*II+22] id:847 + ee.vmulas.u16.accx.ld.ip q0,a2,16,q0,q6 # [0*II+23] id:848 + +.LBB257_dspi_dotprod_off_u16_aes3: # 0x349 + j .Lt_0_33026 # [0] + +.Lt_0_35586: # 0x34c + movi.n a2,0 # [0] + sext a14,a9,15 # [1] + s16i a14,a4,0 # [2] id:875 + retw.n # [3] + +#endif // dsps_dotprod_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c new file mode 100644 index 0000000..0305d03 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u16_ansi.c @@ -0,0 +1,49 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod.h" + +esp_err_t dspi_dotprod_off_u16_ansi(image2d_t *in_image, image2d_t *filter, uint16_t *out_value, int count_x, int count_y, int shift, uint16_t offset) +{ + if (in_image->step_x * count_x > in_image->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (in_image->step_y * count_y > in_image->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_x * count_x > filter->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_y * count_y > filter->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + uint16_t *i_data = (uint16_t *)in_image->data; + uint16_t *f_data = (uint16_t *)filter->data; + int i_step = in_image->stride_x * in_image->step_y; + int f_step = filter->stride_x * filter->step_y; + + int64_t acc = 0; + for (int y = 0; y < count_y; y++) { + for (int x = 0; x < count_x; x++) { + acc += (int32_t)i_data[in_image->step_x * x] * ((int32_t)f_data[filter->step_x * x] + (int32_t)offset); + } + i_data += i_step; + f_data += f_step; + } + acc += 1 << (shift - 1); // round operation + acc >>= shift; + *out_value = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S new file mode 100644 index 0000000..183947c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u8_aes3.S @@ -0,0 +1,407 @@ +// Copyright 2018-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod_platform.h" +#if (dspi_dotprod_aes3_enabled == 1) + + .text + .align 4 + .literal .LC0_1_57, 458755 + + # Program Unit: dspi_dotprod_off_u8_aes3 + .type dspi_dotprod_off_u8_aes3, @function + .align 4 + .global dspi_dotprod_off_u8_aes3 +dspi_dotprod_off_u8_aes3: # 0x4 + +.LBB1_dspi_dotprod_off_u8_aes3: # 0x4 + entry a1,112 # + l32i.n a10,a2,4 # [0] id:745 + l32i.n a12,a2,12 # [1] id:744 + mull a8,a10,a5 # [2] + blt a12,a8,.LBB86_dspi_dotprod_off_u8_aes3 # [4] + + l32i.n a13,a2,8 # [0] id:746 + l32i.n a9,a2,16 # [1] id:747 + mull a11,a13,a6 # [2] + blt a9,a11,.LBB86_dspi_dotprod_off_u8_aes3 # [4] + + l32i.n a15,a3,4 # [0] id:749 + l32i.n a14,a3,12 # [1] id:748 + mull a11,a15,a5 # [2] + blt a14,a11,.LBB86_dspi_dotprod_off_u8_aes3 # [4] + + l32i.n a8,a3,16 # [0] id:751 + l32i.n a9,a3,8 # [1] id:750 + s32i a9,a1,72 # [2] gra_spill_temp_2 + mull a9,a9,a6 # [3] + blt a8,a9,.LBB86_dspi_dotprod_off_u8_aes3 # [5] + + l32i.n a8,a3,0 # [0] id:752 + s32i a8,a1,68 # [1] gra_spill_temp_1 + bbsi a8,0,.Lt_0_35330 # [2] + + bne a14,a11,.Lt_0_35330 # [0] + + bnei a15,1,.Lt_0_35330 # [0] + + l32i a11,a1,72 # [0] gra_spill_temp_2 + beqi a11,1,.Lt_0_18946 # [2] + +.Lt_0_35330: # 0x46 +.Lt_0_19202: # 0x46 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + .type dspi_dotprod_u8_ansi, @function + call8 dspi_dotprod_u8_ansi # [6] dspi_dotprod_u8_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB86_dspi_dotprod_off_u8_aes3: # 0x59 + l32r a2,.LC0_1_57 # [0] + retw.n # [1] + +.Lt_0_18946: # 0x5e + addi.n a14,a10,-1 # [0] + bnez a14,.Lt_0_36098 # [1] + + addi.n a15,a13,-1 # [0] + bnez a15,.Lt_0_36098 # [1] + + extui a8,a5,0,4 # [0] + bnez.n a8,.Lt_0_36098 # [1] + + blti a6,4,.Lt_0_36098 # [0] + + movi.n a9,64 # [0] + blt a9,a5,.LBB27_dspi_dotprod_off_u8_aes3 # [1] + +.Lt_0_36610: # 0x75 +.Lt_0_20994: # 0x75 + l8ui a9,a1,112 # [0] id:754 offset+0x0 + mov.n a8,a1 # [1] + l32i.n a15,a2,0 # [2] id:753 + mull a10,a12,a13 # [3] + l32i a2,a1,68 # [4] gra_spill_temp_1 + s32i a10,a1,64 # [5] gra_spill_temp_0 + movi.n a10,4 # [6] + # loop-count fixed at 4 + loop a10,.LBB140_dspi_dotprod_off_u8_aes3 # [7] + +.LBB135_dspi_dotprod_off_u8_aes3: # 0x8a + s8i a9,a8,0 # [0*II+0] id:755 temp_offset+0x0 + s8i a9,a8,1 # [0*II+1] id:755 temp_offset+0x0 + s8i a9,a8,2 # [0*II+2] id:755 temp_offset+0x0 + s8i a9,a8,3 # [0*II+3] id:755 temp_offset+0x0 + s8i a9,a8,4 # [0*II+4] id:755 temp_offset+0x0 + s8i a9,a8,5 # [0*II+5] id:755 temp_offset+0x0 + s8i a9,a8,6 # [0*II+6] id:755 temp_offset+0x0 + s8i a9,a8,7 # [0*II+7] id:755 temp_offset+0x0 + addi.n a8,a8,8 # [0*II+8] + +.LBB140_dspi_dotprod_off_u8_aes3: # 0xa4 + mov.n a3,a6 # [0] + addi a11,a5,-48 # [1] + addi.n a12,a1,8 # [3] temp_offset+8 + movi.n a13,0 # [4] + wur.accx_0 a13 # [5] + wur.accx_1 a13 # [6] + ee.vld.128.ip q6,a12,0 # [7] id:756 + s32i.n a12,a1,32 # [8] offset_data_ptr + beqz a11,.LBB34_dspi_dotprod_off_u8_aes3 # [9] + + l32i a2,a1,68 # [0] gra_spill_temp_1 + ee.vld.128.ip q0,a2,16 # [2] id:771 + st.qr q0,a1,48 # [3] q0 + +.Lt_0_24578: # 0xc3 + addi a14,a5,-32 # [0] + beqz a14,.LBB43_dspi_dotprod_off_u8_aes3 # [1] + +.Lt_0_26626: # 0xc9 +.Lt_0_26114: # 0xc9 + addi a8,a5,-16 # [0] + beqz a8,.LBB50_dspi_dotprod_off_u8_aes3 # [1] + +.Lt_0_28162: # 0xcf +.Lt_0_27650: # 0xcf + addi a9,a5,-64 # [0] + beqz a9,.LBB57_dspi_dotprod_off_u8_aes3 # [1] + +.Lt_0_29698: # 0xd5 +.Lt_0_29186: # 0xd5 + addi a10,a5,-128 # [0] + beqz a10,.LBB64_dspi_dotprod_off_u8_aes3 # [1] + + movi a11,128 # [0] + bge a11,a5,.Lt_0_32514 # [1] + + movi.n a12,0 # [0] + ee.ld.128.usar.ip q1,a15,16 # [1] id:833 + ee.ld.128.usar.ip q2,a15,16 # [2] id:834 + ee.src.q.ld.ip q3,a15,16,q1,q2 # [4] id:835 + beqz.n a3,.Lt_0_32514 # [5] + + ld.qr q0,a1,48 # [0] q0 + l32i a14,a1,64 # [1] gra_spill_temp_0 + addi a13,a5,31 # [2] + movgez a13,a5,a5 # [3] + srai a13,a13,5 # [4] + sub a14,a14,a5 # [5] + addi a14,a14,16 # [6] + addi.n a13,a13,-1 # [7] + +.Lt_0_33282: # 0x105 + beqz.n a13,.Lt_0_33538 # [0] + + loopnez a13,.LBB277_dspi_dotprod_off_u8_aes3 # [0] + +.LBB275_dspi_dotprod_off_u8_aes3: # 0x10a + ee.vmulas.u8.accx.ld.ip.qup q0,a15,16,q0,q1,q2,q3 # [0*II+0] id:836 + ee.vmulas.u8.accx.ld.ip q1,a2,16,q1,q6 # [0*II+1] id:837 + ee.vmulas.u8.accx.ld.ip.qup q1,a15,16,q1,q2,q3,q0 # [0*II+3] id:838 + ee.vmulas.u8.accx.ld.ip q4,a2,16,q2,q6 # [0*II+4] id:839 + ee.vmulas.u8.accx.ld.ip.qup q2,a15,16,q4,q3,q0,q1 # [0*II+6] id:840 + ee.vmulas.u8.accx.ld.ip q4,a2,16,q3,q6 # [0*II+7] id:841 + ee.vmulas.u8.accx.ld.ip.qup q3,a15,16,q4,q0,q1,q2 # [0*II+9] id:842 + ee.vmulas.u8.accx.ld.ip q0,a2,16,q0,q6 # [0*II+10] id:843 + +.LBB277_dspi_dotprod_off_u8_aes3: # 0x12a + +.Lt_0_33538: # 0x12a + ee.vmulas.u8.accx.ld.ip.qup q4,a15,16,q0,q1,q2,q3 # [0] id:844 + ee.vmulas.u8.accx.ld.ip q1,a2,16,q1,q6 # [1] id:845 + movi.n a8,32 # [2] + ee.vmulas.u8.accx.ld.xp.qup q0,a15,a14,q1,q2,q3,q4 # [3] id:846 + ee.vmulas.u8.accx.ld.ip q7,a2,16,q2,q6 # [4] id:847 + movi.n a9,-16 # [5] + ee.vmulas.u8.accx.ld.xp.qup q2,a15,a9,q7,q3,q4,q0 # [6] id:848 + ee.vmulas.u8.accx.ld.ip q5,a2,16,q3,q6 # [7] id:850 + ee.ld.128.usar.xp q1,a15,a8 # [8] id:849 + addi.n a12,a12,1 # [9] + ee.vmulas.u8.accx.ld.ip.qup q3,a15,16,q5,q4,q1,q2 # [10] id:851 + ee.vmulas.u8.accx.ld.ip q0,a2,16,q4,q6 # [11] id:852 + bne a12,a3,.Lt_0_33282 # [12] + +.Lt_0_32514: # 0x156 +.Lt_0_32258: # 0x156 + movi.n a2,0 # [0] + rur.accx_0 a10 # [1] + addi.n a12,a7,-1 # [2] + movi.n a11,1 # [3] + ssl a12 # [4] + sll a11,a11 # [5] + ssr a7 # [6] + add.n a10,a10,a11 # [7] + sra a10,a10 # [8] + s8i a10,a4,0 # [9] id:854 + retw.n # [10] + +.Lt_0_36098: # 0x172 +.Lt_0_20226: # 0x172 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + call8 dspi_dotprod_u8_ansi # [6] dspi_dotprod_u8_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB27_dspi_dotprod_off_u8_aes3: # 0x185 + extui a14,a5,0,1 # [0] + beqz a14,.Lt_0_36610 # [1] + + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + call8 dspi_dotprod_u8_ansi # [6] dspi_dotprod_u8_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB34_dspi_dotprod_off_u8_aes3: # 0x19e + ee.ld.128.usar.ip q0,a15,16 # [0] id:760 + ee.ld.128.usar.ip q2,a15,16 # [1] id:761 + ee.src.q.ld.ip q3,a15,16,q0,q2 # [3] id:762 + beqz.n a6,.Lt_0_24578 # [4] + + movi.n a10,32 # [0] + l32i a12,a1,64 # [1] gra_spill_temp_0 + movi.n a11,-16 # [2] + addi a12,a12,-32 # [3] + loopgtz a6,.LBB163_dspi_dotprod_off_u8_aes3 # [4] + +.LBB161_dspi_dotprod_off_u8_aes3: # 0x1b6 + ee.vmulas.u8.accx.ld.ip q1,a2,16,q0,q6 # [0*II+0] id:763 + ee.vmulas.u8.accx.ld.xp.qup q1,a15,a12,q1,q0,q2,q3 # [0*II+2] id:764 + ee.vmulas.u8.accx.ld.ip q0,a2,16,q2,q6 # [0*II+3] id:765 + ee.vmulas.u8.accx.ld.xp.qup q2,a15,a11,q0,q2,q3,q1 # [0*II+5] id:766 + ee.vmulas.u8.accx.ld.ip q1,a2,16,q3,q6 # [0*II+6] id:768 + ee.ld.128.usar.xp q0,a15,a10 # [0*II+7] id:767 + ee.vmulas.u8.accx.ld.ip.qup q3,a15,16,q1,q3,q0,q2 # [0*II+9] id:769 + +.LBB163_dspi_dotprod_off_u8_aes3: # 0x1d1 + st.qr q1,a1,48 # [0] q0 + j .Lt_0_24578 # [1] + +.LBB43_dspi_dotprod_off_u8_aes3: # 0x1d7 + srli a3,a6,1 # [0] + l32i a12,a1,64 # [1] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a15,16 # [2] id:772 + ee.ld.128.usar.ip q2,a15,16 # [3] id:773 + addi a12,a12,-16 # [5] + ee.src.q.ld.xp q3,a15,a12,q1,q2 # [6] id:774 + beqz.n a3,.Lt_0_26626 # [7] + + ld.qr q0,a1,48 # [0] q0 + movi.n a10,32 # [1] + movi.n a11,-16 # [2] + loopnez a3,.LBB186_dspi_dotprod_off_u8_aes3 # [3] + +.LBB184_dspi_dotprod_off_u8_aes3: # 0x1f5 + ee.vmulas.u8.accx.ld.xp.qup q0,a15,a11,q0,q1,q2,q3 # [0*II+0] id:775 + ee.vmulas.u8.accx.ld.ip q3,a2,16,q1,q6 # [0*II+1] id:776 + ee.ld.128.usar.xp q1,a15,a10 # [0*II+2] id:777 + ee.vmulas.u8.accx.ld.xp.qup q3,a15,a12,q3,q2,q1,q0 # [0*II+4] id:778 + ee.vmulas.u8.accx.ld.ip q4,a2,16,q2,q6 # [0*II+5] id:779 + ee.vmulas.u8.accx.ld.xp.qup q2,a15,a11,q4,q1,q0,q3 # [0*II+7] id:780 + ee.vmulas.u8.accx.ld.ip q3,a2,16,q1,q6 # [0*II+8] id:781 + ee.ld.128.usar.xp q1,a15,a10 # [0*II+9] id:782 + ee.vmulas.u8.accx.ld.xp.qup q3,a15,a12,q3,q0,q1,q2 # [0*II+11] id:783 + ee.vmulas.u8.accx.ld.ip q0,a2,16,q0,q6 # [0*II+12] id:784 + +.LBB186_dspi_dotprod_off_u8_aes3: # 0x21b + st.qr q0,a1,48 # [0] q0 + j .Lt_0_26626 # [1] + +.LBB50_dspi_dotprod_off_u8_aes3: # 0x221 + srli a3,a3,2 # [0] + movi.n a13,-16 # [1] + l32i a11,a1,64 # [2] gra_spill_temp_0 + addi a15,a15,16 # [3] + addi a11,a11,16 # [4] + ee.ld.128.usar.xp q2,a15,a13 # [5] id:785 + ee.ld.128.usar.xp q1,a15,a11 # [6] id:786 + ee.src.q.ld.xp q3,a15,a13,q1,q2 # [8] id:787 + ee.ld.128.usar.xp q2,a15,a11 # [9] id:788 + beqz.n a3,.Lt_0_28162 # [10] + + ld.qr q0,a1,48 # [0] q0 + movi.n a10,-16 # [1] + loopnez a3,.LBB209_dspi_dotprod_off_u8_aes3 # [2] + +.LBB207_dspi_dotprod_off_u8_aes3: # 0x245 + ee.vmulas.u8.accx.ld.xp.qup q3,a15,a10,q0,q1,q2,q3 # [0*II+0] id:789 + ee.vmulas.u8.accx.ld.ip q0,a2,16,q1,q6 # [0*II+1] id:790 + ee.ld.128.usar.xp q1,a15,a11 # [0*II+2] id:791 + ee.vmulas.u8.accx.ld.xp.qup q3,a15,a10,q0,q2,q1,q3 # [0*II+4] id:792 + ee.vmulas.u8.accx.ld.ip q0,a2,16,q2,q6 # [0*II+5] id:793 + ee.ld.128.usar.xp q4,a15,a11 # [0*II+6] id:794 + ee.vmulas.u8.accx.ld.xp.qup q3,a15,a10,q0,q1,q4,q3 # [0*II+8] id:795 + ee.vmulas.u8.accx.ld.ip q0,a2,16,q1,q6 # [0*II+9] id:796 + ee.ld.128.usar.xp q1,a15,a11 # [0*II+10] id:797 + ee.vmulas.u8.accx.ld.xp.qup q3,a15,a10,q0,q4,q1,q3 # [0*II+12] id:798 + ee.vmulas.u8.accx.ld.ip q0,a2,16,q4,q6 # [0*II+13] id:799 + ee.ld.128.usar.xp q2,a15,a11 # [0*II+14] id:800 + +.LBB209_dspi_dotprod_off_u8_aes3: # 0x271 + st.qr q0,a1,48 # [0] q0 + j .Lt_0_28162 # [1] + +.LBB57_dspi_dotprod_off_u8_aes3: # 0x277 + ee.ld.128.usar.ip q1,a15,16 # [0] id:801 + ee.ld.128.usar.ip q2,a15,16 # [1] id:802 + ee.src.q.ld.ip q3,a15,16,q1,q2 # [3] id:803 + beqz.n a3,.Lt_0_29698 # [4] + + ld.qr q0,a1,48 # [0] q0 + movi.n a10,32 # [1] + l32i a12,a1,64 # [2] gra_spill_temp_0 + movi.n a11,-16 # [3] + sub a12,a12,a5 # [4] + addi a12,a12,16 # [5] + loopnez a3,.LBB232_dspi_dotprod_off_u8_aes3 # [6] + +.LBB230_dspi_dotprod_off_u8_aes3: # 0x295 + ee.vmulas.u8.accx.ld.ip.qup q0,a15,16,q0,q1,q2,q3 # [0*II+0] id:804 + ee.vmulas.u8.accx.ld.ip q4,a2,16,q1,q6 # [0*II+1] id:805 + ee.vmulas.u8.accx.ld.xp.qup q4,a15,a12,q4,q2,q3,q0 # [0*II+3] id:806 + ee.vmulas.u8.accx.ld.ip q1,a2,16,q2,q6 # [0*II+4] id:807 + ee.vmulas.u8.accx.ld.xp.qup q2,a15,a11,q1,q3,q0,q4 # [0*II+6] id:808 + ee.vmulas.u8.accx.ld.ip q4,a2,16,q3,q6 # [0*II+7] id:809 + ee.ld.128.usar.xp q1,a15,a10 # [0*II+8] id:810 + ee.vmulas.u8.accx.ld.ip.qup q3,a15,16,q4,q0,q1,q2 # [0*II+10] id:811 + ee.vmulas.u8.accx.ld.ip q0,a2,16,q0,q6 # [0*II+11] id:812 + +.LBB232_dspi_dotprod_off_u8_aes3: # 0x2b8 + st.qr q0,a1,48 # [0] q0 + j .Lt_0_29698 # [1] + +.LBB64_dspi_dotprod_off_u8_aes3: # 0x2be + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + l32i a12,a1,64 # [2] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a15,16 # [3] id:813 + ee.ld.128.usar.ip q2,a15,16 # [4] id:814 + sub a12,a12,a5 # [6] + addi a12,a12,16 # [7] + ld.qr q0,a1,48 # [8] q0 + ee.src.q.ld.ip q3,a15,16,q1,q2 # [9] id:815 + mov.n a8,a15 # [10] + loopnez a3,.LBB254_dspi_dotprod_off_u8_aes3 # [11] + +.LBB252_dspi_dotprod_off_u8_aes3: # 0x2dc + ee.vmulas.u8.accx.ld.ip.qup q0,a8,16,q0,q1,q2,q3 # [0*II+0] id:816 + ee.vmulas.u8.accx.ld.ip q4,a2,16,q1,q6 # [0*II+1] id:817 + ee.vmulas.u8.accx.ld.ip.qup q4,a8,16,q4,q2,q3,q0 # [0*II+3] id:818 + ee.vmulas.u8.accx.ld.ip q1,a2,16,q2,q6 # [0*II+4] id:819 + ee.vmulas.u8.accx.ld.ip.qup q1,a8,16,q1,q3,q0,q4 # [0*II+6] id:820 + ee.vmulas.u8.accx.ld.ip q5,a2,16,q3,q6 # [0*II+7] id:821 + ee.vmulas.u8.accx.ld.ip.qup q5,a8,16,q5,q0,q4,q1 # [0*II+9] id:822 + ee.vmulas.u8.accx.ld.ip q0,a2,16,q0,q6 # [0*II+10] id:823 + ee.vmulas.u8.accx.ld.ip.qup q0,a8,16,q0,q4,q1,q5 # [0*II+12] id:824 + ee.vmulas.u8.accx.ld.ip q4,a2,16,q4,q6 # [0*II+13] id:825 + ee.vmulas.u8.accx.ld.xp.qup q4,a8,a12,q4,q1,q5,q0 # [0*II+15] id:826 + ee.vmulas.u8.accx.ld.ip q1,a2,16,q1,q6 # [0*II+16] id:827 + ee.vmulas.u8.accx.ld.xp.qup q2,a8,a11,q1,q5,q0,q4 # [0*II+18] id:828 + ee.vmulas.u8.accx.ld.ip q4,a2,16,q5,q6 # [0*II+19] id:829 + ee.ld.128.usar.xp q1,a8,a10 # [0*II+20] id:830 + ee.vmulas.u8.accx.ld.ip.qup q3,a8,16,q4,q0,q1,q2 # [0*II+22] id:831 + ee.vmulas.u8.accx.ld.ip q0,a2,16,q0,q6 # [0*II+23] id:832 + +.LBB254_dspi_dotprod_off_u8_aes3: # 0x31f + movi.n a2,0 # [0] + movi.n a11,1 # [1] + addi.n a12,a7,-1 # [2] + rur.accx_0 a10 # [3] + ssl a12 # [4] + sll a11,a11 # [5] + ssr a7 # [6] + add.n a10,a10,a11 # [7] + sra a10,a10 # [8] + s8i a10,a4,0 # [9] id:854 + retw.n # [10] + +#endif // dsps_dotprod_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c new file mode 100644 index 0000000..dfeb235 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_off_u8_ansi.c @@ -0,0 +1,49 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod.h" + +esp_err_t dspi_dotprod_off_u8_ansi(image2d_t *in_image, image2d_t *filter, uint8_t *out_value, int count_x, int count_y, int shift, uint8_t offset) +{ + if (in_image->step_x * count_x > in_image->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (in_image->step_y * count_y > in_image->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_x * count_x > filter->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_y * count_y > filter->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + uint8_t *i_data = (uint8_t *)in_image->data; + uint8_t *f_data = (uint8_t *)filter->data; + int i_step = in_image->stride_x * in_image->step_y; + int f_step = filter->stride_x * filter->step_y; + + int32_t acc = 0; + for (int y = 0; y < count_y; y++) { + for (int x = 0; x < count_x; x++) { + acc += (int16_t)i_data[in_image->step_x * x] * ((int16_t)f_data[filter->step_x * x] + (int16_t)offset); + } + i_data += i_step; + f_data += f_step; + } + acc += 1 << (shift - 1); // round operation + acc >>= shift; + *out_value = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s16_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s16_aes3.S new file mode 100644 index 0000000..7206744 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s16_aes3.S @@ -0,0 +1,372 @@ +// Copyright 2018-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod_platform.h" +#if (dspi_dotprod_aes3_enabled == 1) + + .text + .align 4 + .literal .LC0_1_53, 458755 + + # Program Unit: dspi_dotprod_s16_aes3 + .type dspi_dotprod_s16_aes3, @function + .align 4 + .global dspi_dotprod_s16_aes3 +dspi_dotprod_s16_aes3: # 0x4 +.LBB1_dspi_dotprod_s16_aes3: # 0x4 + entry a1,64 # + l32i.n a10,a2,4 # [0] id:678 + l32i.n a11,a2,12 # [1] id:677 + mull a8,a10,a5 # [2] + blt a11,a8,.LBB81_dspi_dotprod_s16_aes3 # [4] + + l32i.n a12,a2,8 # [0] id:679 + l32i.n a9,a2,16 # [1] id:680 + mull a13,a12,a6 # [2] + blt a9,a13,.LBB81_dspi_dotprod_s16_aes3 # [4] + + l32i.n a15,a3,4 # [0] id:682 + l32i.n a14,a3,12 # [1] id:681 + mull a13,a15,a5 # [2] + blt a14,a13,.LBB81_dspi_dotprod_s16_aes3 # [4] + + l32i.n a8,a3,16 # [0] id:684 + l32i.n a9,a3,8 # [1] id:683 + s32i.n a9,a1,24 # [2] gra_spill_temp_2 + mull a9,a9,a6 # [3] + blt a8,a9,.LBB81_dspi_dotprod_s16_aes3 # [5] + + l32i.n a8,a3,0 # [0] id:685 + s32i.n a8,a1,20 # [1] gra_spill_temp_1 + bbsi a8,0,.Lt_0_34050 # [2] + + bne a14,a13,.Lt_0_34050 # [0] + + bnei a15,1,.Lt_0_34050 # [0] + + l32i.n a9,a1,24 # [0] gra_spill_temp_2 + beqi a9,1,.Lt_0_18178 # [2] + +.Lt_0_34050: # 0x43 +.Lt_0_18434: # 0x43 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + .type dspi_dotprod_s16_ansi, @function + call8 dspi_dotprod_s16_ansi # [6] dspi_dotprod_s16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB81_dspi_dotprod_s16_aes3: # 0x56 + l32r a2,.LC0_1_53 # [0] + retw.n # [1] + +.Lt_0_18178: # 0x5b + addi.n a13,a10,-1 # [0] + bnez a13,.Lt_0_34818 # [1] + + addi.n a14,a12,-1 # [0] + bnez a14,.Lt_0_34818 # [1] + + extui a15,a5,0,3 # [0] + bnez.n a15,.Lt_0_34818 # [1] + + blti a6,4,.Lt_0_34818 # [0] + + movi.n a8,32 # [0] + bge a8,a5,.Lt_0_35330 # [1] + + extui a9,a5,0,1 # [0] + bnez a9,.LBB28_dspi_dotprod_s16_aes3 # [1] + +.Lt_0_35330: # 0x78 +.Lt_0_20226: # 0x78 + mov.n a3,a6 # [0] + addi a10,a5,-24 # [1] + mull a13,a11,a12 # [2] + l32i.n a15,a1,20 # [3] gra_spill_temp_1 + l32i.n a2,a2,0 # [4] id:686 + movi.n a14,0 # [5] + wur.sar_byte a14 # [6] + wur.accx_0 a14 # [8] + wur.accx_1 a14 # [9] + ee.vld.128.ip q0,a15,16 # [10] id:690 + slli a13,a13,1 # [11] + s32i.n a13,a1,16 # [12] gra_spill_temp_0 + beqz a10,.LBB32_dspi_dotprod_s16_aes3 # [13] + +.Lt_0_23298: # 0x99 +.Lt_0_22786: # 0x99 + addi a8,a5,-16 # [0] + beqz a8,.LBB38_dspi_dotprod_s16_aes3 # [1] + +.Lt_0_24834: # 0x9f +.Lt_0_24322: # 0x9f + addi a9,a5,-8 # [0] + beqz a9,.LBB44_dspi_dotprod_s16_aes3 # [1] + +.Lt_0_26370: # 0xa5 +.Lt_0_25858: # 0xa5 + addi a10,a5,-32 # [0] + beqz a10,.LBB50_dspi_dotprod_s16_aes3 # [1] + +.Lt_0_27906: # 0xab +.Lt_0_27394: # 0xab + addi a11,a5,-64 # [0] + beqz a11,.LBB56_dspi_dotprod_s16_aes3 # [1] + + movi.n a12,64 # [0] + bge a12,a5,.Lt_0_30722 # [1] + + movi.n a12,0 # [0] + ee.ld.128.usar.ip q1,a2,16 # [1] id:762 + ee.ld.128.usar.ip q2,a2,16 # [2] id:763 + ee.src.q.ld.ip q3,a2,16,q1,q2 # [4] id:764 + beqz.n a3,.Lt_0_30722 # [5] + + slli a8,a5,1 # [0] + l32i.n a14,a1,16 # [1] gra_spill_temp_0 + addi a13,a5,31 # [2] + movgez a13,a5,a5 # [3] + srai a13,a13,5 # [4] + sub a14,a14,a8 # [5] + addi a14,a14,16 # [6] + addi.n a13,a13,-1 # [7] + +.Lt_0_31490: # 0xd9 + addi.n a12,a12,1 # [0] + movi.n a9,32 # [1] + beqz.n a13,.Lt_0_31746 # [2] + + loopnez a13,.LBB221_dspi_dotprod_s16_aes3 # [0] + +.LBB219_dspi_dotprod_s16_aes3: # 0xe2 + ee.vld.128.ip q5,a15,16 # [0*II+0] id:766 + ee.vmulas.s16.accx.ld.ip.qup q4,a2,16,q0,q1,q2,q3 # [0*II+1] id:765 + ee.vld.128.ip q0,a15,16 # [0*II+2] id:768 + ee.vmulas.s16.accx.ld.ip.qup q1,a2,16,q5,q2,q3,q4 # [0*II+3] id:767 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:770 + ee.vmulas.s16.accx.ld.ip.qup q2,a2,16,q0,q3,q4,q1 # [0*II+5] id:769 + ee.vld.128.ip q0,a15,16 # [0*II+6] id:772 + ee.vmulas.s16.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+7] id:771 + +.LBB221_dspi_dotprod_s16_aes3: # 0xfe + +.Lt_0_31746: # 0xfe + ee.vmulas.s16.accx.ld.ip.qup q5,a2,16,q0,q1,q2,q3 # [0] id:773 + movi.n a10,-16 # [1] + ee.vld.128.ip q0,a15,16 # [2] id:774 + ee.vld.128.ip q6,a15,16 # [3] id:776 + ee.vmulas.s16.accx.ld.xp.qup q7,a2,a14,q0,q2,q3,q5 # [4] id:775 + ee.vld.128.ip q4,a15,16 # [5] id:779 + ee.vmulas.s16.accx.ld.xp.qup q2,a2,a10,q6,q3,q5,q7 # [6] id:777 + ee.ld.128.usar.xp q1,a2,a9 # [7] id:778 + ee.vld.128.ip q0,a15,16 # [8] id:781 + ee.vmulas.s16.accx.ld.ip.qup q3,a2,16,q4,q5,q1,q2 # [9] id:780 + bne a12,a3,.Lt_0_31490 # [10] + +.Lt_0_30722: # 0x122 +.Lt_0_30466: # 0x122 + rur.accx_0 a9 # [0] + rur.accx_1 a10 # [1] + blti a7,1,.Lt_0_33282 # [2] + + movi.n a2,0 # [0] + addi a13,a7,-33 # [1] + addi.n a14,a7,-1 # [2] + ssr a14 # [3] + sra a12,a10 # [4] + src a11,a10,a9 # [5] + movgez a11,a12,a13 # [6] + addi.n a11,a11,1 # [7] + srai a11,a11,1 # [8] + s16i a11,a4,0 # [9] id:787 + retw.n # [10] + +.Lt_0_34818: # 0x148 +.Lt_0_19458: # 0x148 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + call8 dspi_dotprod_s16_ansi # [6] dspi_dotprod_s16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB32_dspi_dotprod_s16_aes3: # 0x15b + ee.ld.128.usar.ip q1,a2,16 # [0] id:691 + ee.ld.128.usar.ip q2,a2,16 # [1] id:692 + ee.src.q.ld.ip q3,a2,16,q1,q2 # [3] id:693 + beqz.n a6,.Lt_0_23298 # [4] + + addi a12,a13,-32 # [0] + movi.n a10,32 # [1] + movi.n a11,-16 # [2] + loopgtz a6,.LBB107_dspi_dotprod_s16_aes3 # [3] + +.LBB105_dspi_dotprod_s16_aes3: # 0x170 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:695 + ee.vmulas.s16.accx.ld.xp.qup q1,a2,a12,q0,q1,q2,q3 # [0*II+1] id:694 + ee.vld.128.ip q5,a15,16 # [0*II+2] id:697 + ee.vmulas.s16.accx.ld.xp.qup q2,a2,a11,q4,q2,q3,q1 # [0*II+3] id:696 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+4] id:698 + ee.vld.128.ip q0,a15,16 # [0*II+5] id:700 + ee.vmulas.s16.accx.ld.ip.qup q3,a2,16,q5,q3,q1,q2 # [0*II+6] id:699 + +.LBB107_dspi_dotprod_s16_aes3: # 0x188 + j .Lt_0_23298 # [0] + +.LBB38_dspi_dotprod_s16_aes3: # 0x18b + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + srli a3,a6,1 # [2] + l32i.n a12,a1,16 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [4] id:701 + ee.ld.128.usar.ip q2,a2,16 # [5] id:702 + addi a12,a12,-16 # [7] + ee.src.q.ld.xp q3,a2,a12,q1,q2 # [8] id:703 + loopnez a3,.LBB130_dspi_dotprod_s16_aes3 # [9] + +.LBB128_dspi_dotprod_s16_aes3: # 0x1a3 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:705 + ee.vmulas.s16.accx.ld.xp.qup q3,a2,a11,q0,q1,q2,q3 # [0*II+1] id:704 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+2] id:706 + ee.vld.128.ip q0,a15,16 # [0*II+3] id:708 + ee.vmulas.s16.accx.ld.xp.qup q4,a2,a12,q4,q2,q1,q3 # [0*II+4] id:707 + ee.vld.128.ip q5,a15,16 # [0*II+5] id:710 + ee.vmulas.s16.accx.ld.xp.qup q2,a2,a11,q0,q1,q3,q4 # [0*II+6] id:709 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+7] id:711 + ee.vld.128.ip q0,a15,16 # [0*II+8] id:713 + ee.vmulas.s16.accx.ld.xp.qup q3,a2,a12,q5,q3,q1,q2 # [0*II+9] id:712 + +.LBB130_dspi_dotprod_s16_aes3: # 0x1c5 + j .Lt_0_24834 # [0] + +.LBB44_dspi_dotprod_s16_aes3: # 0x1c8 + srli a3,a3,2 # [0] + movi.n a10,-16 # [1] + l32i.n a11,a1,16 # [2] gra_spill_temp_0 + addi a8,a2,16 # [3] + addi a11,a11,16 # [4] + ee.ld.128.usar.xp q2,a8,a10 # [5] id:714 + ee.ld.128.usar.xp q1,a8,a11 # [6] id:715 + ee.src.q.ld.xp q3,a8,a10,q1,q2 # [8] id:716 + ee.ld.128.usar.xp q2,a8,a11 # [9] id:717 + loopnez a3,.LBB153_dspi_dotprod_s16_aes3 # [10] + +.LBB151_dspi_dotprod_s16_aes3: # 0x1e4 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:719 + ee.vmulas.s16.accx.ld.xp.qup q3,a8,a10,q0,q1,q2,q3 # [0*II+1] id:718 + ee.ld.128.usar.xp q1,a8,a11 # [0*II+2] id:720 + ee.vld.128.ip q0,a15,16 # [0*II+3] id:722 + ee.vmulas.s16.accx.ld.xp.qup q4,a8,a10,q4,q2,q1,q3 # [0*II+4] id:721 + ee.ld.128.usar.xp q3,a8,a11 # [0*II+5] id:723 + ee.vld.128.ip q5,a15,16 # [0*II+6] id:725 + ee.vmulas.s16.accx.ld.xp.qup q4,a8,a10,q0,q1,q3,q4 # [0*II+7] id:724 + ee.ld.128.usar.xp q1,a8,a11 # [0*II+8] id:726 + ee.vld.128.ip q0,a15,16 # [0*II+9] id:728 + ee.vmulas.s16.accx.ld.xp.qup q3,a8,a10,q5,q3,q1,q4 # [0*II+10] id:727 + ee.ld.128.usar.xp q2,a8,a11 # [0*II+11] id:729 + +.LBB153_dspi_dotprod_s16_aes3: # 0x20c + mov.n a2,a8 # [0] + j .Lt_0_26370 # [1] + +.LBB50_dspi_dotprod_s16_aes3: # 0x211 + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + slli a13,a5,1 # [2] + l32i.n a12,a1,16 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [4] id:730 + ee.ld.128.usar.ip q2,a2,16 # [5] id:731 + sub a12,a12,a13 # [6] + ee.src.q.ld.ip q3,a2,16,q1,q2 # [8] id:732 + addi a12,a12,16 # [9] + loopnez a3,.LBB176_dspi_dotprod_s16_aes3 # [10] + +.LBB174_dspi_dotprod_s16_aes3: # 0x22c + ee.vld.128.ip q5,a15,16 # [0*II+0] id:734 + ee.vmulas.s16.accx.ld.ip.qup q4,a2,16,q0,q1,q2,q3 # [0*II+1] id:733 + ee.vld.128.ip q1,a15,16 # [0*II+2] id:736 + ee.vmulas.s16.accx.ld.xp.qup q0,a2,a12,q5,q2,q3,q4 # [0*II+3] id:735 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:739 + ee.vmulas.s16.accx.ld.xp.qup q2,a2,a11,q1,q3,q4,q0 # [0*II+5] id:737 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+6] id:738 + ee.vld.128.ip q0,a15,16 # [0*II+7] id:741 + ee.vmulas.s16.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+8] id:740 + +.LBB176_dspi_dotprod_s16_aes3: # 0x24b + j .Lt_0_27906 # [0] + +.LBB56_dspi_dotprod_s16_aes3: # 0x24e + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + slli a13,a5,1 # [2] + l32i.n a12,a1,16 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [4] id:742 + ee.ld.128.usar.ip q2,a2,16 # [5] id:743 + sub a12,a12,a13 # [7] + addi a12,a12,16 # [8] + ee.src.q.ld.ip q3,a2,16,q1,q2 # [9] id:744 + loopnez a3,.LBB198_dspi_dotprod_s16_aes3 # [10] + +.LBB196_dspi_dotprod_s16_aes3: # 0x269 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:746 + ee.vmulas.s16.accx.ld.ip.qup q1,a2,16,q0,q1,q2,q3 # [0*II+1] id:745 + ee.vld.128.ip q0,a15,16 # [0*II+2] id:748 + ee.vmulas.s16.accx.ld.ip.qup q4,a2,16,q4,q2,q3,q1 # [0*II+3] id:747 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:750 + ee.vmulas.s16.accx.ld.ip.qup q0,a2,16,q0,q3,q1,q4 # [0*II+5] id:749 + ee.vld.128.ip q6,a15,16 # [0*II+6] id:752 + ee.vmulas.s16.accx.ld.ip.qup q1,a2,16,q5,q1,q4,q0 # [0*II+7] id:751 + ee.vld.128.ip q5,a15,16 # [0*II+8] id:754 + ee.vmulas.s16.accx.ld.ip.qup q4,a2,16,q6,q4,q0,q1 # [0*II+9] id:753 + ee.vld.128.ip q6,a15,16 # [0*II+10] id:756 + ee.vmulas.s16.accx.ld.xp.qup q0,a2,a12,q5,q0,q1,q4 # [0*II+11] id:755 + ee.vld.128.ip q5,a15,16 # [0*II+12] id:759 + ee.vmulas.s16.accx.ld.xp.qup q2,a2,a11,q6,q1,q4,q0 # [0*II+13] id:757 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+14] id:758 + ee.vld.128.ip q0,a15,16 # [0*II+15] id:761 + ee.vmulas.s16.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+16] id:760 + +.LBB198_dspi_dotprod_s16_aes3: # 0x2a4 + j .Lt_0_30722 # [0] + +.Lt_0_33282: # 0x2a7 + movi.n a2,0 # [0] + sext a14,a9,15 # [1] + s16i a14,a4,0 # [2] id:788 + retw.n # [3] + +.LBB28_dspi_dotprod_s16_aes3: # 0x2b1 + mov.n a15,a7 # [0] + mov.n a14,a6 # [1] + mov.n a13,a5 # [2] + mov.n a12,a4 # [3] + mov.n a11,a3 # [4] + mov.n a10,a2 # [5] + call8 dspi_dotprod_s16_ansi # [6] dspi_dotprod_s16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + + +#endif // dsps_dotprod_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s16_ansi.c new file mode 100644 index 0000000..8fd6feb --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s16_ansi.c @@ -0,0 +1,49 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod.h" + +esp_err_t dspi_dotprod_s16_ansi(image2d_t *in_image, image2d_t *filter, int16_t *out_value, int count_x, int count_y, int shift) +{ + if (in_image->step_x * count_x > in_image->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (in_image->step_y * count_y > in_image->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_x * count_x > filter->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_y * count_y > filter->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + int16_t *i_data = (int16_t *)in_image->data; + int16_t *f_data = (int16_t *)filter->data; + int i_step = in_image->stride_x * in_image->step_y; + int f_step = filter->stride_x * filter->step_y; + + int64_t acc = 0; + for (int y = 0; y < count_y; y++) { + for (int x = 0; x < count_x; x++) { + acc += (int32_t)i_data[in_image->step_x * x] * (int32_t)f_data[filter->step_x * x]; + } + i_data += i_step; + f_data += f_step; + } + acc += 1 << (shift - 1); // round operation + acc >>= shift; + *out_value = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s8_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s8_aes3.S new file mode 100644 index 0000000..ed8e6f4 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s8_aes3.S @@ -0,0 +1,370 @@ +// Copyright 2018-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod_platform.h" +#if (dspi_dotprod_aes3_enabled == 1) + + .text + .align 4 + .literal .LC0_1_52, 458755 + + # Program Unit: dspi_dotprod_s8_aes3 + .type dspi_dotprod_s8_aes3, @function + .align 4 + .global dspi_dotprod_s8_aes3 +dspi_dotprod_s8_aes3: # 0x4 +.LBB1_dspi_dotprod_s8_aes3: # 0x4 + entry a1,48 # + l32i.n a10,a2,4 # [0] id:668 + l32i.n a11,a2,12 # [1] id:667 + mull a8,a10,a5 # [2] + blt a11,a8,.LBB78_dspi_dotprod_s8_aes3 # [4] + + l32i.n a12,a2,8 # [0] id:669 + l32i.n a9,a2,16 # [1] id:670 + mull a13,a12,a6 # [2] + blt a9,a13,.LBB78_dspi_dotprod_s8_aes3 # [4] + + l32i.n a15,a3,4 # [0] id:672 + l32i.n a14,a3,12 # [1] id:671 + mull a13,a15,a5 # [2] + blt a14,a13,.LBB78_dspi_dotprod_s8_aes3 # [4] + + l32i.n a8,a3,16 # [0] id:674 + l32i.n a9,a3,8 # [1] id:673 + s32i.n a9,a1,8 # [2] gra_spill_temp_2 + mull a9,a9,a6 # [3] + blt a8,a9,.LBB78_dspi_dotprod_s8_aes3 # [5] + + l32i.n a8,a3,0 # [0] id:675 + s32i.n a8,a1,4 # [1] gra_spill_temp_1 + bbsi a8,0,.Lt_0_33026 # [2] + + bne a14,a13,.Lt_0_33026 # [0] + + bnei a15,1,.Lt_0_33026 # [0] + + l32i.n a13,a1,8 # [0] gra_spill_temp_2 + beqi a13,1,.Lt_0_17666 # [2] + +.Lt_0_33026: # 0x43 +.Lt_0_17922: # 0x43 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + .type dspi_dotprod_s8_ansi, @function + call8 dspi_dotprod_s8_ansi # [6] dspi_dotprod_s8_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB78_dspi_dotprod_s8_aes3: # 0x56 + l32r a2,.LC0_1_52 # [0] + retw.n # [1] + +.Lt_0_17666: # 0x5b + addi.n a14,a10,-1 # [0] + bnez a14,.Lt_0_33794 # [1] + + addi.n a15,a12,-1 # [0] + bnez a15,.Lt_0_33794 # [1] + + extui a8,a5,0,4 # [0] + bnez.n a8,.Lt_0_33794 # [1] + + blti a6,4,.Lt_0_33794 # [0] + + movi.n a9,64 # [0] + bge a9,a5,.Lt_0_34306 # [1] + + extui a10,a5,0,1 # [0] + bnez a10,.LBB28_dspi_dotprod_s8_aes3 # [1] + +.Lt_0_34306: # 0x78 +.Lt_0_19714: # 0x78 + mov.n a3,a6 # [0] + addi a13,a5,-48 # [1] + movi.n a14,0 # [2] + mull a15,a11,a12 # [3] + l32i.n a2,a2,0 # [4] id:676 + s32i.n a15,a1,0 # [6] gra_spill_temp_0 + wur.accx_0 a14 # [7] + l32i.n a15,a1,4 # [8] gra_spill_temp_1 + wur.accx_1 a14 # [9] + ee.vld.128.ip q0,a15,16 # [10] id:679 + beqz a13,.LBB32_dspi_dotprod_s8_aes3 # [11] + +.Lt_0_22786: # 0x93 +.Lt_0_22274: # 0x93 + addi a8,a5,-32 # [0] + beqz a8,.LBB38_dspi_dotprod_s8_aes3 # [1] + +.Lt_0_24322: # 0x99 +.Lt_0_23810: # 0x99 + addi a9,a5,-16 # [0] + beqz a9,.LBB44_dspi_dotprod_s8_aes3 # [1] + +.Lt_0_25858: # 0x9f +.Lt_0_25346: # 0x9f + addi a10,a5,-64 # [0] + beqz a10,.LBB50_dspi_dotprod_s8_aes3 # [1] + +.Lt_0_27394: # 0xa5 +.Lt_0_26882: # 0xa5 + addi a11,a5,-128 # [0] + beqz a11,.LBB56_dspi_dotprod_s8_aes3 # [1] + + movi a12,128 # [0] + bge a12,a5,.Lt_0_30210 # [1] + + movi.n a12,0 # [0] + ee.ld.128.usar.ip q1,a2,16 # [1] id:751 + ee.ld.128.usar.ip q2,a2,16 # [2] id:752 + ee.src.q.ld.ip q3,a2,16,q1,q2 # [4] id:753 + beqz.n a3,.Lt_0_30210 # [5] + + l32i.n a14,a1,0 # [0] gra_spill_temp_0 + addi a13,a5,63 # [1] + movgez a13,a5,a5 # [2] + srai a13,a13,6 # [3] + sub a14,a14,a5 # [4] + addi a14,a14,16 # [5] + addi.n a13,a13,-1 # [6] + +.Lt_0_30978: # 0xd1 + addi.n a12,a12,1 # [0] + movi.n a8,32 # [1] + movi.n a9,-16 # [2] + beqz.n a13,.Lt_0_31234 # [3] + + loopnez a13,.LBB218_dspi_dotprod_s8_aes3 # [0] + +.LBB216_dspi_dotprod_s8_aes3: # 0xdc + ee.vld.128.ip q5,a15,16 # [0*II+0] id:755 + ee.vmulas.s8.accx.ld.ip.qup q4,a2,16,q0,q1,q2,q3 # [0*II+1] id:754 + ee.vld.128.ip q0,a15,16 # [0*II+2] id:757 + ee.vmulas.s8.accx.ld.ip.qup q1,a2,16,q5,q2,q3,q4 # [0*II+3] id:756 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:759 + ee.vmulas.s8.accx.ld.ip.qup q2,a2,16,q0,q3,q4,q1 # [0*II+5] id:758 + ee.vld.128.ip q0,a15,16 # [0*II+6] id:761 + ee.vmulas.s8.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+7] id:760 + +.LBB218_dspi_dotprod_s8_aes3: # 0xf8 + +.Lt_0_31234: # 0xf8 + ee.vmulas.s8.accx.ld.ip.qup q5,a2,16,q0,q1,q2,q3 # [0] id:762 + ee.vld.128.ip q0,a15,16 # [1] id:763 + ee.vld.128.ip q6,a15,16 # [2] id:765 + ee.vmulas.s8.accx.ld.xp.qup q7,a2,a14,q0,q2,q3,q5 # [3] id:764 + ee.vld.128.ip q4,a15,16 # [4] id:768 + ee.vmulas.s8.accx.ld.xp.qup q2,a2,a9,q6,q3,q5,q7 # [5] id:766 + ee.ld.128.usar.xp q1,a2,a8 # [6] id:767 + ee.vld.128.ip q0,a15,16 # [7] id:770 + ee.vmulas.s8.accx.ld.ip.qup q3,a2,16,q4,q5,q1,q2 # [8] id:769 + bne a12,a3,.Lt_0_30978 # [9] + +.Lt_0_30210: # 0x11a +.Lt_0_29954: # 0x11a + movi.n a2,0 # [0] + rur.accx_0 a10 # [1] + addi.n a12,a7,-1 # [2] + movi.n a11,1 # [3] + ssl a12 # [4] + sll a11,a11 # [5] + ssr a7 # [6] + add.n a10,a10,a11 # [7] + sra a10,a10 # [8] + s8i a10,a4,0 # [9] id:772 + retw.n # [10] + +.Lt_0_33794: # 0x136 +.Lt_0_18946: # 0x136 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + call8 dspi_dotprod_s8_ansi # [6] dspi_dotprod_s8_ansi + +#.LBB25_dspi_dotprod_s8_aes3: # 0x145 + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB32_dspi_dotprod_s8_aes3: # 0x149 + ee.ld.128.usar.ip q1,a2,16 # [0] id:680 + ee.ld.128.usar.ip q2,a2,16 # [1] id:681 + ee.src.q.ld.ip q3,a2,16,q1,q2 # [3] id:682 + beqz.n a6,.Lt_0_22786 # [4] + + movi.n a10,32 # [0] + l32i.n a12,a1,0 # [1] gra_spill_temp_0 + movi.n a11,-16 # [2] + addi a12,a12,-32 # [3] + loopgtz a6,.LBB104_dspi_dotprod_s8_aes3 # [4] + +.LBB102_dspi_dotprod_s8_aes3: # 0x160 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:684 + ee.vmulas.s8.accx.ld.xp.qup q1,a2,a12,q0,q1,q2,q3 # [0*II+1] id:683 + ee.vld.128.ip q5,a15,16 # [0*II+2] id:686 + ee.vmulas.s8.accx.ld.xp.qup q2,a2,a11,q4,q2,q3,q1 # [0*II+3] id:685 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+4] id:687 + ee.vld.128.ip q0,a15,16 # [0*II+5] id:689 + ee.vmulas.s8.accx.ld.ip.qup q3,a2,16,q5,q3,q1,q2 # [0*II+6] id:688 + +.LBB104_dspi_dotprod_s8_aes3: # 0x178 + j .Lt_0_22786 # [0] + +.LBB38_dspi_dotprod_s8_aes3: # 0x17b + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + srli a3,a6,1 # [2] + l32i.n a12,a1,0 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [4] id:690 + ee.ld.128.usar.ip q2,a2,16 # [5] id:691 + addi a12,a12,-16 # [7] + ee.src.q.ld.xp q3,a2,a12,q1,q2 # [8] id:692 + loopnez a3,.LBB127_dspi_dotprod_s8_aes3 # [9] + +.LBB125_dspi_dotprod_s8_aes3: # 0x193 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:694 + ee.vmulas.s8.accx.ld.xp.qup q3,a2,a11,q0,q1,q2,q3 # [0*II+1] id:693 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+2] id:695 + ee.vld.128.ip q0,a15,16 # [0*II+3] id:697 + ee.vmulas.s8.accx.ld.xp.qup q4,a2,a12,q4,q2,q1,q3 # [0*II+4] id:696 + ee.vld.128.ip q5,a15,16 # [0*II+5] id:699 + ee.vmulas.s8.accx.ld.xp.qup q2,a2,a11,q0,q1,q3,q4 # [0*II+6] id:698 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+7] id:700 + ee.vld.128.ip q0,a15,16 # [0*II+8] id:702 + ee.vmulas.s8.accx.ld.xp.qup q3,a2,a12,q5,q3,q1,q2 # [0*II+9] id:701 + +.LBB127_dspi_dotprod_s8_aes3: # 0x1b5 + j .Lt_0_24322 # [0] + +.LBB44_dspi_dotprod_s8_aes3: # 0x1b8 + srli a3,a3,2 # [0] + movi.n a10,-16 # [1] + l32i.n a11,a1,0 # [2] gra_spill_temp_0 + addi a8,a2,16 # [3] + addi a11,a11,16 # [4] + ee.ld.128.usar.xp q2,a8,a10 # [5] id:703 + ee.ld.128.usar.xp q1,a8,a11 # [6] id:704 + ee.src.q.ld.xp q3,a8,a10,q1,q2 # [8] id:705 + ee.ld.128.usar.xp q2,a8,a11 # [9] id:706 + loopnez a3,.LBB150_dspi_dotprod_s8_aes3 # [10] + +.LBB148_dspi_dotprod_s8_aes3: # 0x1d4 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:708 + ee.vmulas.s8.accx.ld.xp.qup q3,a8,a10,q0,q1,q2,q3 # [0*II+1] id:707 + ee.ld.128.usar.xp q1,a8,a11 # [0*II+2] id:709 + ee.vld.128.ip q0,a15,16 # [0*II+3] id:711 + ee.vmulas.s8.accx.ld.xp.qup q4,a8,a10,q4,q2,q1,q3 # [0*II+4] id:710 + ee.ld.128.usar.xp q3,a8,a11 # [0*II+5] id:712 + ee.vld.128.ip q5,a15,16 # [0*II+6] id:714 + ee.vmulas.s8.accx.ld.xp.qup q4,a8,a10,q0,q1,q3,q4 # [0*II+7] id:713 + ee.ld.128.usar.xp q1,a8,a11 # [0*II+8] id:715 + ee.vld.128.ip q0,a15,16 # [0*II+9] id:717 + ee.vmulas.s8.accx.ld.xp.qup q3,a8,a10,q5,q3,q1,q4 # [0*II+10] id:716 + ee.ld.128.usar.xp q2,a8,a11 # [0*II+11] id:718 + +.LBB150_dspi_dotprod_s8_aes3: # 0x1fc + mov.n a2,a8 # [0] + j .Lt_0_25858 # [1] + +.LBB50_dspi_dotprod_s8_aes3: # 0x201 + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + l32i.n a12,a1,0 # [2] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [3] id:719 + ee.ld.128.usar.ip q2,a2,16 # [4] id:720 + sub a12,a12,a5 # [5] + ee.src.q.ld.ip q3,a2,16,q1,q2 # [7] id:721 + addi a12,a12,16 # [8] + loopnez a3,.LBB173_dspi_dotprod_s8_aes3 # [9] + +.LBB171_dspi_dotprod_s8_aes3: # 0x219 + ee.vld.128.ip q5,a15,16 # [0*II+0] id:723 + ee.vmulas.s8.accx.ld.ip.qup q4,a2,16,q0,q1,q2,q3 # [0*II+1] id:722 + ee.vld.128.ip q1,a15,16 # [0*II+2] id:725 + ee.vmulas.s8.accx.ld.xp.qup q0,a2,a12,q5,q2,q3,q4 # [0*II+3] id:724 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:728 + ee.vmulas.s8.accx.ld.xp.qup q2,a2,a11,q1,q3,q4,q0 # [0*II+5] id:726 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+6] id:727 + ee.vld.128.ip q0,a15,16 # [0*II+7] id:730 + ee.vmulas.s8.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+8] id:729 + +.LBB173_dspi_dotprod_s8_aes3: # 0x238 + j .Lt_0_27394 # [0] + +.LBB56_dspi_dotprod_s8_aes3: # 0x23b + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + l32i.n a12,a1,0 # [2] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [3] id:731 + ee.ld.128.usar.ip q2,a2,16 # [4] id:732 + sub a12,a12,a5 # [6] + addi a12,a12,16 # [7] + ee.src.q.ld.ip q3,a2,16,q1,q2 # [8] id:733 + loopnez a3,.LBB195_dspi_dotprod_s8_aes3 # [9] + +.LBB193_dspi_dotprod_s8_aes3: # 0x253 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:735 + ee.vmulas.s8.accx.ld.ip.qup q1,a2,16,q0,q1,q2,q3 # [0*II+1] id:734 + ee.vld.128.ip q0,a15,16 # [0*II+2] id:737 + ee.vmulas.s8.accx.ld.ip.qup q4,a2,16,q4,q2,q3,q1 # [0*II+3] id:736 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:739 + ee.vmulas.s8.accx.ld.ip.qup q0,a2,16,q0,q3,q1,q4 # [0*II+5] id:738 + ee.vld.128.ip q6,a15,16 # [0*II+6] id:741 + ee.vmulas.s8.accx.ld.ip.qup q1,a2,16,q5,q1,q4,q0 # [0*II+7] id:740 + ee.vld.128.ip q5,a15,16 # [0*II+8] id:743 + ee.vmulas.s8.accx.ld.ip.qup q4,a2,16,q6,q4,q0,q1 # [0*II+9] id:742 + ee.vld.128.ip q6,a15,16 # [0*II+10] id:745 + ee.vmulas.s8.accx.ld.xp.qup q0,a2,a12,q5,q0,q1,q4 # [0*II+11] id:744 + ee.vld.128.ip q5,a15,16 # [0*II+12] id:748 + ee.vmulas.s8.accx.ld.xp.qup q2,a2,a11,q6,q1,q4,q0 # [0*II+13] id:746 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+14] id:747 + ee.vld.128.ip q0,a15,16 # [0*II+15] id:750 + ee.vmulas.s8.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+16] id:749 + +.LBB195_dspi_dotprod_s8_aes3: # 0x28e + movi.n a2,0 # [0] + movi.n a11,1 # [1] + addi.n a12,a7,-1 # [2] + rur.accx_0 a10 # [3] + ssl a12 # [4] + sll a11,a11 # [5] + ssr a7 # [6] + add.n a10,a10,a11 # [7] + sra a10,a10 # [8] + s8i a10,a4,0 # [9] id:772 + retw.n # [10] + +.LBB28_dspi_dotprod_s8_aes3: # 0x2aa + mov.n a15,a7 # [0] + mov.n a14,a6 # [1] + mov.n a13,a5 # [2] + mov.n a12,a4 # [3] + mov.n a11,a3 # [4] + mov.n a10,a2 # [5] + call8 dspi_dotprod_s8_ansi # [6] dspi_dotprod_s8_ansi + +#.LBB29_dspi_dotprod_s8_aes3: # 0x2b9 + mov.n a2,a10 # [0] + retw.n # [1] + + +#endif // dsps_dotprod_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s8_ansi.c new file mode 100644 index 0000000..0ea4910 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_s8_ansi.c @@ -0,0 +1,49 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod.h" + +esp_err_t dspi_dotprod_s8_ansi(image2d_t *in_image, image2d_t *filter, int8_t *out_value, int count_x, int count_y, int shift) +{ + if (in_image->step_x * count_x > in_image->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (in_image->step_y * count_y > in_image->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_x * count_x > filter->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_y * count_y > filter->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + int8_t *i_data = (int8_t *)in_image->data; + int8_t *f_data = (int8_t *)filter->data; + int i_step = in_image->stride_x * in_image->step_y; + int f_step = filter->stride_x * filter->step_y; + + int32_t acc = 0; + for (int y = 0; y < count_y; y++) { + for (int x = 0; x < count_x; x++) { + acc += (int16_t)i_data[in_image->step_x * x] * (int16_t)f_data[filter->step_x * x]; + } + i_data += i_step; + f_data += f_step; + } + acc += 1 << (shift - 1); // round operation + acc >>= shift; + *out_value = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u16_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u16_aes3.S new file mode 100644 index 0000000..5153320 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u16_aes3.S @@ -0,0 +1,371 @@ +// Copyright 2018-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod_platform.h" +#if (dspi_dotprod_aes3_enabled == 1) + + .text + .align 4 + .literal .LC0_1_55, 458755 + + # Program Unit: dspi_dotprod_u16_aes3 + .type dspi_dotprod_u16_aes3, @function + .align 4 + .global dspi_dotprod_u16_aes3 +dspi_dotprod_u16_aes3: # 0x4 +.LBB1_dspi_dotprod_u16_aes3: # 0x4 + entry a1,64 # + l32i.n a10,a2,4 # [0] id:681 + l32i.n a11,a2,12 # [1] id:680 + mull a8,a10,a5 # [2] + blt a11,a8,.LBB81_dspi_dotprod_u16_aes3 # [4] + + l32i.n a12,a2,8 # [0] id:682 + l32i.n a9,a2,16 # [1] id:683 + mull a13,a12,a6 # [2] + blt a9,a13,.LBB81_dspi_dotprod_u16_aes3 # [4] + + l32i.n a15,a3,4 # [0] id:685 + l32i.n a14,a3,12 # [1] id:684 + mull a13,a15,a5 # [2] + blt a14,a13,.LBB81_dspi_dotprod_u16_aes3 # [4] + + l32i.n a8,a3,16 # [0] id:687 + l32i.n a9,a3,8 # [1] id:686 + s32i.n a9,a1,24 # [2] gra_spill_temp_2 + mull a9,a9,a6 # [3] + blt a8,a9,.LBB81_dspi_dotprod_u16_aes3 # [5] + + l32i.n a8,a3,0 # [0] id:688 + s32i.n a8,a1,20 # [1] gra_spill_temp_1 + bbsi a8,0,.Lt_0_34050 # [2] + + bne a14,a13,.Lt_0_34050 # [0] + + bnei a15,1,.Lt_0_34050 # [0] + + l32i.n a9,a1,24 # [0] gra_spill_temp_2 + beqi a9,1,.Lt_0_18178 # [2] + +.Lt_0_34050: # 0x43 +.Lt_0_18434: # 0x43 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + .type dspi_dotprod_s16_ansi, @function + call8 dspi_dotprod_s16_ansi # [6] dspi_dotprod_s16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB81_dspi_dotprod_u16_aes3: # 0x56 + l32r a2,.LC0_1_55 # [0] + retw.n # [1] + +.Lt_0_18178: # 0x5b + addi.n a13,a10,-1 # [0] + bnez a13,.Lt_0_34818 # [1] + + addi.n a14,a12,-1 # [0] + bnez a14,.Lt_0_34818 # [1] + + extui a15,a5,0,3 # [0] + bnez.n a15,.Lt_0_34818 # [1] + + blti a6,4,.Lt_0_34818 # [0] + + movi.n a8,32 # [0] + bge a8,a5,.Lt_0_35330 # [1] + + extui a9,a5,0,1 # [0] + bnez a9,.LBB28_dspi_dotprod_u16_aes3 # [1] + +.Lt_0_35330: # 0x78 +.Lt_0_20226: # 0x78 + mov.n a3,a6 # [0] + addi a10,a5,-24 # [1] + mull a13,a11,a12 # [2] + l32i.n a15,a1,20 # [3] gra_spill_temp_1 + l32i.n a2,a2,0 # [4] id:689 + movi.n a14,0 # [5] + wur.sar_byte a14 # [6] + wur.accx_0 a14 # [8] + wur.accx_1 a14 # [9] + ee.vld.128.ip q0,a15,16 # [10] id:693 + slli a13,a13,1 # [11] + s32i.n a13,a1,16 # [12] gra_spill_temp_0 + beqz a10,.LBB32_dspi_dotprod_u16_aes3 # [13] + +.Lt_0_23298: # 0x99 +.Lt_0_22786: # 0x99 + addi a8,a5,-16 # [0] + beqz a8,.LBB38_dspi_dotprod_u16_aes3 # [1] + +.Lt_0_24834: # 0x9f +.Lt_0_24322: # 0x9f + addi a9,a5,-8 # [0] + beqz a9,.LBB44_dspi_dotprod_u16_aes3 # [1] + +.Lt_0_26370: # 0xa5 +.Lt_0_25858: # 0xa5 + addi a10,a5,-32 # [0] + beqz a10,.LBB50_dspi_dotprod_u16_aes3 # [1] + +.Lt_0_27906: # 0xab +.Lt_0_27394: # 0xab + addi a11,a5,-64 # [0] + beqz a11,.LBB56_dspi_dotprod_u16_aes3 # [1] + + movi.n a12,64 # [0] + bge a12,a5,.Lt_0_30722 # [1] + + movi.n a12,0 # [0] + ee.ld.128.usar.ip q1,a2,16 # [1] id:765 + ee.ld.128.usar.ip q2,a2,16 # [2] id:766 + ee.src.q.ld.ip q3,a2,16,q1,q2 # [4] id:767 + beqz.n a3,.Lt_0_30722 # [5] + + slli a8,a5,1 # [0] + l32i.n a14,a1,16 # [1] gra_spill_temp_0 + addi a13,a5,31 # [2] + movgez a13,a5,a5 # [3] + srai a13,a13,5 # [4] + sub a14,a14,a8 # [5] + addi a14,a14,16 # [6] + addi.n a13,a13,-1 # [7] + +.Lt_0_31490: # 0xd9 + addi.n a12,a12,1 # [0] + movi.n a9,32 # [1] + beqz.n a13,.Lt_0_31746 # [2] + + loopnez a13,.LBB221_dspi_dotprod_u16_aes3 # [0] + +.LBB219_dspi_dotprod_u16_aes3: # 0xe2 + ee.vld.128.ip q5,a15,16 # [0*II+0] id:769 + ee.vmulas.u16.accx.ld.ip.qup q4,a2,16,q0,q1,q2,q3 # [0*II+1] id:768 + ee.vld.128.ip q0,a15,16 # [0*II+2] id:771 + ee.vmulas.u16.accx.ld.ip.qup q1,a2,16,q5,q2,q3,q4 # [0*II+3] id:770 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:773 + ee.vmulas.u16.accx.ld.ip.qup q2,a2,16,q0,q3,q4,q1 # [0*II+5] id:772 + ee.vld.128.ip q0,a15,16 # [0*II+6] id:775 + ee.vmulas.u16.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+7] id:774 + +.LBB221_dspi_dotprod_u16_aes3: # 0xfe + +.Lt_0_31746: # 0xfe + ee.vmulas.u16.accx.ld.ip.qup q5,a2,16,q0,q1,q2,q3 # [0] id:776 + movi.n a10,-16 # [1] + ee.vld.128.ip q0,a15,16 # [2] id:777 + ee.vld.128.ip q6,a15,16 # [3] id:779 + ee.vmulas.u16.accx.ld.xp.qup q7,a2,a14,q0,q2,q3,q5 # [4] id:778 + ee.vld.128.ip q4,a15,16 # [5] id:782 + ee.vmulas.u16.accx.ld.xp.qup q2,a2,a10,q6,q3,q5,q7 # [6] id:780 + ee.ld.128.usar.xp q1,a2,a9 # [7] id:781 + ee.vld.128.ip q0,a15,16 # [8] id:784 + ee.vmulas.u16.accx.ld.ip.qup q3,a2,16,q4,q5,q1,q2 # [9] id:783 + bne a12,a3,.Lt_0_31490 # [10] + +.Lt_0_30722: # 0x122 +.Lt_0_30466: # 0x122 + rur.accx_0 a9 # [0] + rur.accx_1 a10 # [1] + blti a7,1,.Lt_0_33282 # [2] + + movi.n a2,0 # [0] + addi a13,a7,-33 # [1] + addi.n a14,a7,-1 # [2] + ssr a14 # [3] + sra a12,a10 # [4] + src a11,a10,a9 # [5] + movgez a11,a12,a13 # [6] + addi.n a11,a11,1 # [7] + srli a11,a11,1 # [8] + s16i a11,a4,0 # [9] id:790 + retw.n # [10] + +.Lt_0_34818: # 0x148 +.Lt_0_19458: # 0x148 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + call8 dspi_dotprod_s16_ansi # [6] dspi_dotprod_s16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB32_dspi_dotprod_u16_aes3: # 0x15b + ee.ld.128.usar.ip q1,a2,16 # [0] id:694 + ee.ld.128.usar.ip q2,a2,16 # [1] id:695 + ee.src.q.ld.ip q3,a2,16,q1,q2 # [3] id:696 + beqz.n a6,.Lt_0_23298 # [4] + + addi a12,a13,-32 # [0] + movi.n a10,32 # [1] + movi.n a11,-16 # [2] + loopgtz a6,.LBB107_dspi_dotprod_u16_aes3 # [3] + +.LBB105_dspi_dotprod_u16_aes3: # 0x170 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:698 + ee.vmulas.u16.accx.ld.xp.qup q1,a2,a12,q0,q1,q2,q3 # [0*II+1] id:697 + ee.vld.128.ip q5,a15,16 # [0*II+2] id:700 + ee.vmulas.u16.accx.ld.xp.qup q2,a2,a11,q4,q2,q3,q1 # [0*II+3] id:699 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+4] id:701 + ee.vld.128.ip q0,a15,16 # [0*II+5] id:703 + ee.vmulas.u16.accx.ld.ip.qup q3,a2,16,q5,q3,q1,q2 # [0*II+6] id:702 + +.LBB107_dspi_dotprod_u16_aes3: # 0x188 + j .Lt_0_23298 # [0] + +.LBB38_dspi_dotprod_u16_aes3: # 0x18b + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + srli a3,a6,1 # [2] + l32i.n a12,a1,16 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [4] id:704 + ee.ld.128.usar.ip q2,a2,16 # [5] id:705 + addi a12,a12,-16 # [7] + ee.src.q.ld.xp q3,a2,a12,q1,q2 # [8] id:706 + loopnez a3,.LBB130_dspi_dotprod_u16_aes3 # [9] + +.LBB128_dspi_dotprod_u16_aes3: # 0x1a3 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:708 + ee.vmulas.u16.accx.ld.xp.qup q3,a2,a11,q0,q1,q2,q3 # [0*II+1] id:707 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+2] id:709 + ee.vld.128.ip q0,a15,16 # [0*II+3] id:711 + ee.vmulas.u16.accx.ld.xp.qup q4,a2,a12,q4,q2,q1,q3 # [0*II+4] id:710 + ee.vld.128.ip q5,a15,16 # [0*II+5] id:713 + ee.vmulas.u16.accx.ld.xp.qup q2,a2,a11,q0,q1,q3,q4 # [0*II+6] id:712 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+7] id:714 + ee.vld.128.ip q0,a15,16 # [0*II+8] id:716 + ee.vmulas.u16.accx.ld.xp.qup q3,a2,a12,q5,q3,q1,q2 # [0*II+9] id:715 + +.LBB130_dspi_dotprod_u16_aes3: # 0x1c5 + j .Lt_0_24834 # [0] + +.LBB44_dspi_dotprod_u16_aes3: # 0x1c8 + srli a3,a3,2 # [0] + movi.n a10,-16 # [1] + l32i.n a11,a1,16 # [2] gra_spill_temp_0 + addi a8,a2,16 # [3] + addi a11,a11,16 # [4] + ee.ld.128.usar.xp q2,a8,a10 # [5] id:717 + ee.ld.128.usar.xp q1,a8,a11 # [6] id:718 + ee.src.q.ld.xp q3,a8,a10,q1,q2 # [8] id:719 + ee.ld.128.usar.xp q2,a8,a11 # [9] id:720 + loopnez a3,.LBB153_dspi_dotprod_u16_aes3 # [10] + +.LBB151_dspi_dotprod_u16_aes3: # 0x1e4 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:722 + ee.vmulas.u16.accx.ld.xp.qup q3,a8,a10,q0,q1,q2,q3 # [0*II+1] id:721 + ee.ld.128.usar.xp q1,a8,a11 # [0*II+2] id:723 + ee.vld.128.ip q0,a15,16 # [0*II+3] id:725 + ee.vmulas.u16.accx.ld.xp.qup q4,a8,a10,q4,q2,q1,q3 # [0*II+4] id:724 + ee.ld.128.usar.xp q3,a8,a11 # [0*II+5] id:726 + ee.vld.128.ip q5,a15,16 # [0*II+6] id:728 + ee.vmulas.u16.accx.ld.xp.qup q4,a8,a10,q0,q1,q3,q4 # [0*II+7] id:727 + ee.ld.128.usar.xp q1,a8,a11 # [0*II+8] id:729 + ee.vld.128.ip q0,a15,16 # [0*II+9] id:731 + ee.vmulas.u16.accx.ld.xp.qup q3,a8,a10,q5,q3,q1,q4 # [0*II+10] id:730 + ee.ld.128.usar.xp q2,a8,a11 # [0*II+11] id:732 + +.LBB153_dspi_dotprod_u16_aes3: # 0x20c + mov.n a2,a8 # [0] + j .Lt_0_26370 # [1] + +.LBB50_dspi_dotprod_u16_aes3: # 0x211 + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + slli a13,a5,1 # [2] + l32i.n a12,a1,16 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [4] id:733 + ee.ld.128.usar.ip q2,a2,16 # [5] id:734 + sub a12,a12,a13 # [6] + ee.src.q.ld.ip q3,a2,16,q1,q2 # [8] id:735 + addi a12,a12,16 # [9] + loopnez a3,.LBB176_dspi_dotprod_u16_aes3 # [10] + +.LBB174_dspi_dotprod_u16_aes3: # 0x22c + ee.vld.128.ip q5,a15,16 # [0*II+0] id:737 + ee.vmulas.u16.accx.ld.ip.qup q4,a2,16,q0,q1,q2,q3 # [0*II+1] id:736 + ee.vld.128.ip q1,a15,16 # [0*II+2] id:739 + ee.vmulas.u16.accx.ld.xp.qup q0,a2,a12,q5,q2,q3,q4 # [0*II+3] id:738 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:742 + ee.vmulas.u16.accx.ld.xp.qup q2,a2,a11,q1,q3,q4,q0 # [0*II+5] id:740 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+6] id:741 + ee.vld.128.ip q0,a15,16 # [0*II+7] id:744 + ee.vmulas.u16.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+8] id:743 + +.LBB176_dspi_dotprod_u16_aes3: # 0x24b + j .Lt_0_27906 # [0] + +.LBB56_dspi_dotprod_u16_aes3: # 0x24e + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + slli a13,a5,1 # [2] + l32i.n a12,a1,16 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [4] id:745 + ee.ld.128.usar.ip q2,a2,16 # [5] id:746 + sub a12,a12,a13 # [7] + addi a12,a12,16 # [8] + ee.src.q.ld.ip q3,a2,16,q1,q2 # [9] id:747 + loopnez a3,.LBB198_dspi_dotprod_u16_aes3 # [10] + +.LBB196_dspi_dotprod_u16_aes3: # 0x269 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:749 + ee.vmulas.u16.accx.ld.ip.qup q1,a2,16,q0,q1,q2,q3 # [0*II+1] id:748 + ee.vld.128.ip q0,a15,16 # [0*II+2] id:751 + ee.vmulas.u16.accx.ld.ip.qup q4,a2,16,q4,q2,q3,q1 # [0*II+3] id:750 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:753 + ee.vmulas.u16.accx.ld.ip.qup q0,a2,16,q0,q3,q1,q4 # [0*II+5] id:752 + ee.vld.128.ip q6,a15,16 # [0*II+6] id:755 + ee.vmulas.u16.accx.ld.ip.qup q1,a2,16,q5,q1,q4,q0 # [0*II+7] id:754 + ee.vld.128.ip q5,a15,16 # [0*II+8] id:757 + ee.vmulas.u16.accx.ld.ip.qup q4,a2,16,q6,q4,q0,q1 # [0*II+9] id:756 + ee.vld.128.ip q6,a15,16 # [0*II+10] id:759 + ee.vmulas.u16.accx.ld.xp.qup q0,a2,a12,q5,q0,q1,q4 # [0*II+11] id:758 + ee.vld.128.ip q5,a15,16 # [0*II+12] id:762 + ee.vmulas.u16.accx.ld.xp.qup q2,a2,a11,q6,q1,q4,q0 # [0*II+13] id:760 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+14] id:761 + ee.vld.128.ip q0,a15,16 # [0*II+15] id:764 + ee.vmulas.u16.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+16] id:763 + +.LBB198_dspi_dotprod_u16_aes3: # 0x2a4 + j .Lt_0_30722 # [0] + +.Lt_0_33282: # 0x2a7 + movi.n a2,0 # [0] + sext a14,a9,15 # [1] + s16i a14,a4,0 # [2] id:791 + retw.n # [3] + +.LBB28_dspi_dotprod_u16_aes3: # 0x2b1 + mov.n a15,a7 # [0] + mov.n a14,a6 # [1] + mov.n a13,a5 # [2] + mov.n a12,a4 # [3] + mov.n a11,a3 # [4] + mov.n a10,a2 # [5] + call8 dspi_dotprod_s16_ansi # [6] dspi_dotprod_s16_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +#endif // dsps_dotprod_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u16_ansi.c new file mode 100644 index 0000000..d9ad480 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u16_ansi.c @@ -0,0 +1,49 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod.h" + +esp_err_t dspi_dotprod_u16_ansi(image2d_t *in_image, image2d_t *filter, uint16_t *out_value, int count_x, int count_y, int shift) +{ + if (in_image->step_x * count_x > in_image->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (in_image->step_y * count_y > in_image->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_x * count_x > filter->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_y * count_y > filter->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + uint16_t *i_data = (uint16_t *)in_image->data; + uint16_t *f_data = (uint16_t *)filter->data; + int i_step = in_image->stride_x * in_image->step_y; + int f_step = filter->stride_x * filter->step_y; + + int64_t acc = 0; + for (int y = 0; y < count_y; y++) { + for (int x = 0; x < count_x; x++) { + acc += (int32_t)i_data[in_image->step_x * x] * (int32_t)f_data[filter->step_x * x]; + } + i_data += i_step; + f_data += f_step; + } + acc += 1 << (shift - 1); // round operation + acc >>= shift; + *out_value = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u8_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u8_aes3.S new file mode 100644 index 0000000..0543155 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u8_aes3.S @@ -0,0 +1,367 @@ +// Copyright 2018-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod_platform.h" +#if (dspi_dotprod_aes3_enabled == 1) + + .text + .align 4 + .literal .LC0_1_52, 458755 + + .type dspi_dotprod_u8_aes3, @function + .align 4 + .global dspi_dotprod_u8_aes3 +dspi_dotprod_u8_aes3: # 0x4 +.LBB1_dspi_dotprod_u8_aes3: # 0x4 + entry a1,48 # + l32i.n a10,a2,4 # [0] id:669 + l32i.n a11,a2,12 # [1] id:668 + mull a8,a10,a5 # [2] + blt a11,a8,.LBB78_dspi_dotprod_u8_aes3 # [4] + + l32i.n a12,a2,8 # [0] id:670 + l32i.n a9,a2,16 # [1] id:671 + mull a13,a12,a6 # [2] + blt a9,a13,.LBB78_dspi_dotprod_u8_aes3 # [4] + + l32i.n a15,a3,4 # [0] id:673 + l32i.n a14,a3,12 # [1] id:672 + mull a13,a15,a5 # [2] + blt a14,a13,.LBB78_dspi_dotprod_u8_aes3 # [4] + + l32i.n a8,a3,16 # [0] id:675 + l32i.n a9,a3,8 # [1] id:674 + s32i.n a9,a1,8 # [2] gra_spill_temp_2 + mull a9,a9,a6 # [3] + blt a8,a9,.LBB78_dspi_dotprod_u8_aes3 # [5] + + l32i.n a8,a3,0 # [0] id:676 + s32i.n a8,a1,4 # [1] gra_spill_temp_1 + bbsi a8,0,.Lt_0_33026 # [2] + + bne a14,a13,.Lt_0_33026 # [0] + + bnei a15,1,.Lt_0_33026 # [0] + + l32i.n a13,a1,8 # [0] gra_spill_temp_2 + beqi a13,1,.Lt_0_17666 # [2] + +.Lt_0_33026: # 0x43 +.Lt_0_17922: # 0x43 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + .type dspi_dotprod_u8_ansi, @function + call8 dspi_dotprod_u8_ansi # [6] dspi_dotprod_u8_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB78_dspi_dotprod_u8_aes3: # 0x56 + l32r a2,.LC0_1_52 # [0] + retw.n # [1] + +.Lt_0_17666: # 0x5b + addi.n a14,a10,-1 # [0] + bnez a14,.Lt_0_33794 # [1] + + addi.n a15,a12,-1 # [0] + bnez a15,.Lt_0_33794 # [1] + + extui a8,a5,0,4 # [0] + bnez.n a8,.Lt_0_33794 # [1] + + blti a6,4,.Lt_0_33794 # [0] + + movi.n a9,64 # [0] + bge a9,a5,.Lt_0_34306 # [1] + + extui a10,a5,0,1 # [0] + bnez a10,.LBB28_dspi_dotprod_u8_aes3 # [1] + +.Lt_0_34306: # 0x78 +.Lt_0_19714: # 0x78 + mov.n a3,a6 # [0] + addi a13,a5,-48 # [1] + movi.n a14,0 # [2] + mull a15,a11,a12 # [3] + l32i.n a2,a2,0 # [4] id:677 + s32i.n a15,a1,0 # [6] gra_spill_temp_0 + wur.accx_0 a14 # [7] + l32i.n a15,a1,4 # [8] gra_spill_temp_1 + wur.accx_1 a14 # [9] + ee.vld.128.ip q0,a15,16 # [10] id:680 + beqz a13,.LBB32_dspi_dotprod_u8_aes3 # [11] + +.Lt_0_22786: # 0x93 +.Lt_0_22274: # 0x93 + addi a8,a5,-32 # [0] + beqz a8,.LBB38_dspi_dotprod_u8_aes3 # [1] + +.Lt_0_24322: # 0x99 +.Lt_0_23810: # 0x99 + addi a9,a5,-16 # [0] + beqz a9,.LBB44_dspi_dotprod_u8_aes3 # [1] + +.Lt_0_25858: # 0x9f +.Lt_0_25346: # 0x9f + addi a10,a5,-64 # [0] + beqz a10,.LBB50_dspi_dotprod_u8_aes3 # [1] + +.Lt_0_27394: # 0xa5 +.Lt_0_26882: # 0xa5 + addi a11,a5,-128 # [0] + beqz a11,.LBB56_dspi_dotprod_u8_aes3 # [1] + + movi a12,128 # [0] + bge a12,a5,.Lt_0_30210 # [1] + + movi.n a12,0 # [0] + ee.ld.128.usar.ip q1,a2,16 # [1] id:752 + ee.ld.128.usar.ip q2,a2,16 # [2] id:753 + ee.src.q.ld.ip q3,a2,16,q1,q2 # [4] id:754 + beqz.n a3,.Lt_0_30210 # [5] + + l32i.n a14,a1,0 # [0] gra_spill_temp_0 + addi a13,a5,31 # [1] + movgez a13,a5,a5 # [2] + srai a13,a13,5 # [3] + sub a14,a14,a5 # [4] + addi a14,a14,16 # [5] + addi.n a13,a13,-1 # [6] + +.Lt_0_30978: # 0xd1 + addi.n a12,a12,1 # [0] + movi.n a8,32 # [1] + movi.n a9,-16 # [2] + beqz.n a13,.Lt_0_31234 # [3] + + loopnez a13,.LBB218_dspi_dotprod_u8_aes3 # [0] + +.LBB216_dspi_dotprod_u8_aes3: # 0xdc + ee.vld.128.ip q5,a15,16 # [0*II+0] id:756 + ee.vmulas.u8.accx.ld.ip.qup q4,a2,16,q0,q1,q2,q3 # [0*II+1] id:755 + ee.vld.128.ip q0,a15,16 # [0*II+2] id:758 + ee.vmulas.u8.accx.ld.ip.qup q1,a2,16,q5,q2,q3,q4 # [0*II+3] id:757 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:760 + ee.vmulas.u8.accx.ld.ip.qup q2,a2,16,q0,q3,q4,q1 # [0*II+5] id:759 + ee.vld.128.ip q0,a15,16 # [0*II+6] id:762 + ee.vmulas.u8.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+7] id:761 + +.LBB218_dspi_dotprod_u8_aes3: # 0xf8 + +.Lt_0_31234: # 0xf8 + ee.vmulas.u8.accx.ld.ip.qup q5,a2,16,q0,q1,q2,q3 # [0] id:763 + ee.vld.128.ip q0,a15,16 # [1] id:764 + ee.vld.128.ip q6,a15,16 # [2] id:766 + ee.vmulas.u8.accx.ld.xp.qup q7,a2,a14,q0,q2,q3,q5 # [3] id:765 + ee.vld.128.ip q4,a15,16 # [4] id:769 + ee.vmulas.u8.accx.ld.xp.qup q2,a2,a9,q6,q3,q5,q7 # [5] id:767 + ee.ld.128.usar.xp q1,a2,a8 # [6] id:768 + ee.vld.128.ip q0,a15,16 # [7] id:771 + ee.vmulas.u8.accx.ld.ip.qup q3,a2,16,q4,q5,q1,q2 # [8] id:770 + bne a12,a3,.Lt_0_30978 # [9] + +.Lt_0_30210: # 0x11a +.Lt_0_29954: # 0x11a + movi.n a2,0 # [0] + rur.accx_0 a10 # [1] + addi.n a12,a7,-1 # [2] + movi.n a11,1 # [3] + ssl a12 # [4] + sll a11,a11 # [5] + ssr a7 # [6] + add.n a10,a10,a11 # [7] + srl a10,a10 # [8] + s8i a10,a4,0 # [9] id:773 + retw.n # [10] + +.Lt_0_33794: # 0x136 +.Lt_0_18946: # 0x136 + mov.n a10,a2 # [0] + mov.n a11,a3 # [1] + mov.n a12,a4 # [2] + mov.n a13,a5 # [3] + mov.n a14,a6 # [4] + mov.n a15,a7 # [5] + call8 dspi_dotprod_u8_ansi # [6] dspi_dotprod_u8_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + +.LBB32_dspi_dotprod_u8_aes3: # 0x149 + ee.ld.128.usar.ip q1,a2,16 # [0] id:681 + ee.ld.128.usar.ip q2,a2,16 # [1] id:682 + ee.src.q.ld.ip q3,a2,16,q1,q2 # [3] id:683 + beqz.n a6,.Lt_0_22786 # [4] + + movi.n a10,32 # [0] + l32i.n a12,a1,0 # [1] gra_spill_temp_0 + movi.n a11,-16 # [2] + addi a12,a12,-32 # [3] + loopgtz a6,.LBB104_dspi_dotprod_u8_aes3 # [4] + +.LBB102_dspi_dotprod_u8_aes3: # 0x160 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:685 + ee.vmulas.u8.accx.ld.xp.qup q1,a2,a12,q0,q1,q2,q3 # [0*II+1] id:684 + ee.vld.128.ip q5,a15,16 # [0*II+2] id:687 + ee.vmulas.u8.accx.ld.xp.qup q2,a2,a11,q4,q2,q3,q1 # [0*II+3] id:686 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+4] id:688 + ee.vld.128.ip q0,a15,16 # [0*II+5] id:690 + ee.vmulas.u8.accx.ld.ip.qup q3,a2,16,q5,q3,q1,q2 # [0*II+6] id:689 + +.LBB104_dspi_dotprod_u8_aes3: # 0x178 + j .Lt_0_22786 # [0] + +.LBB38_dspi_dotprod_u8_aes3: # 0x17b + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + srli a3,a6,1 # [2] + l32i.n a12,a1,0 # [3] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [4] id:691 + ee.ld.128.usar.ip q2,a2,16 # [5] id:692 + addi a12,a12,-16 # [7] + ee.src.q.ld.xp q3,a2,a12,q1,q2 # [8] id:693 + loopnez a3,.LBB127_dspi_dotprod_u8_aes3 # [9] + +.LBB125_dspi_dotprod_u8_aes3: # 0x193 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:695 + ee.vmulas.u8.accx.ld.xp.qup q3,a2,a11,q0,q1,q2,q3 # [0*II+1] id:694 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+2] id:696 + ee.vld.128.ip q0,a15,16 # [0*II+3] id:698 + ee.vmulas.u8.accx.ld.xp.qup q4,a2,a12,q4,q2,q1,q3 # [0*II+4] id:697 + ee.vld.128.ip q5,a15,16 # [0*II+5] id:700 + ee.vmulas.u8.accx.ld.xp.qup q2,a2,a11,q0,q1,q3,q4 # [0*II+6] id:699 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+7] id:701 + ee.vld.128.ip q0,a15,16 # [0*II+8] id:703 + ee.vmulas.u8.accx.ld.xp.qup q3,a2,a12,q5,q3,q1,q2 # [0*II+9] id:702 + +.LBB127_dspi_dotprod_u8_aes3: # 0x1b5 + j .Lt_0_24322 # [0] + +.LBB44_dspi_dotprod_u8_aes3: # 0x1b8 + srli a3,a3,2 # [0] + movi.n a10,-16 # [1] + l32i.n a11,a1,0 # [2] gra_spill_temp_0 + addi a8,a2,16 # [3] + addi a11,a11,16 # [4] + ee.ld.128.usar.xp q2,a8,a10 # [5] id:704 + ee.ld.128.usar.xp q1,a8,a11 # [6] id:705 + ee.src.q.ld.xp q3,a8,a10,q1,q2 # [8] id:706 + ee.ld.128.usar.xp q2,a8,a11 # [9] id:707 + loopnez a3,.LBB150_dspi_dotprod_u8_aes3 # [10] + +.LBB148_dspi_dotprod_u8_aes3: # 0x1d4 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:709 + ee.vmulas.u8.accx.ld.xp.qup q3,a8,a10,q0,q1,q2,q3 # [0*II+1] id:708 + ee.ld.128.usar.xp q1,a8,a11 # [0*II+2] id:710 + ee.vld.128.ip q0,a15,16 # [0*II+3] id:712 + ee.vmulas.u8.accx.ld.xp.qup q4,a8,a10,q4,q2,q1,q3 # [0*II+4] id:711 + ee.ld.128.usar.xp q3,a8,a11 # [0*II+5] id:713 + ee.vld.128.ip q5,a15,16 # [0*II+6] id:715 + ee.vmulas.u8.accx.ld.xp.qup q4,a8,a10,q0,q1,q3,q4 # [0*II+7] id:714 + ee.ld.128.usar.xp q1,a8,a11 # [0*II+8] id:716 + ee.vld.128.ip q0,a15,16 # [0*II+9] id:718 + ee.vmulas.u8.accx.ld.xp.qup q3,a8,a10,q5,q3,q1,q4 # [0*II+10] id:717 + ee.ld.128.usar.xp q2,a8,a11 # [0*II+11] id:719 + +.LBB150_dspi_dotprod_u8_aes3: # 0x1fc + mov.n a2,a8 # [0] + j .Lt_0_25858 # [1] + +.LBB50_dspi_dotprod_u8_aes3: # 0x201 + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + l32i.n a12,a1,0 # [2] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [3] id:720 + ee.ld.128.usar.ip q2,a2,16 # [4] id:721 + sub a12,a12,a5 # [5] + ee.src.q.ld.ip q3,a2,16,q1,q2 # [7] id:722 + addi a12,a12,16 # [8] + loopnez a3,.LBB173_dspi_dotprod_u8_aes3 # [9] + +.LBB171_dspi_dotprod_u8_aes3: # 0x219 + ee.vld.128.ip q5,a15,16 # [0*II+0] id:724 + ee.vmulas.u8.accx.ld.ip.qup q4,a2,16,q0,q1,q2,q3 # [0*II+1] id:723 + ee.vld.128.ip q1,a15,16 # [0*II+2] id:726 + ee.vmulas.u8.accx.ld.xp.qup q0,a2,a12,q5,q2,q3,q4 # [0*II+3] id:725 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:729 + ee.vmulas.u8.accx.ld.xp.qup q2,a2,a11,q1,q3,q4,q0 # [0*II+5] id:727 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+6] id:728 + ee.vld.128.ip q0,a15,16 # [0*II+7] id:731 + ee.vmulas.u8.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+8] id:730 + +.LBB173_dspi_dotprod_u8_aes3: # 0x238 + j .Lt_0_27394 # [0] + +.LBB56_dspi_dotprod_u8_aes3: # 0x23b + movi.n a10,32 # [0] + movi.n a11,-16 # [1] + l32i.n a12,a1,0 # [2] gra_spill_temp_0 + ee.ld.128.usar.ip q1,a2,16 # [3] id:732 + ee.ld.128.usar.ip q2,a2,16 # [4] id:733 + sub a12,a12,a5 # [6] + addi a12,a12,16 # [7] + ee.src.q.ld.ip q3,a2,16,q1,q2 # [8] id:734 + loopnez a3,.LBB195_dspi_dotprod_u8_aes3 # [9] + +.LBB193_dspi_dotprod_u8_aes3: # 0x253 + ee.vld.128.ip q4,a15,16 # [0*II+0] id:736 + ee.vmulas.u8.accx.ld.ip.qup q1,a2,16,q0,q1,q2,q3 # [0*II+1] id:735 + ee.vld.128.ip q0,a15,16 # [0*II+2] id:738 + ee.vmulas.u8.accx.ld.ip.qup q4,a2,16,q4,q2,q3,q1 # [0*II+3] id:737 + ee.vld.128.ip q5,a15,16 # [0*II+4] id:740 + ee.vmulas.u8.accx.ld.ip.qup q0,a2,16,q0,q3,q1,q4 # [0*II+5] id:739 + ee.vld.128.ip q6,a15,16 # [0*II+6] id:742 + ee.vmulas.u8.accx.ld.ip.qup q1,a2,16,q5,q1,q4,q0 # [0*II+7] id:741 + ee.vld.128.ip q5,a15,16 # [0*II+8] id:744 + ee.vmulas.u8.accx.ld.ip.qup q4,a2,16,q6,q4,q0,q1 # [0*II+9] id:743 + ee.vld.128.ip q6,a15,16 # [0*II+10] id:746 + ee.vmulas.u8.accx.ld.xp.qup q0,a2,a12,q5,q0,q1,q4 # [0*II+11] id:745 + ee.vld.128.ip q5,a15,16 # [0*II+12] id:749 + ee.vmulas.u8.accx.ld.xp.qup q2,a2,a11,q6,q1,q4,q0 # [0*II+13] id:747 + ee.ld.128.usar.xp q1,a2,a10 # [0*II+14] id:748 + ee.vld.128.ip q0,a15,16 # [0*II+15] id:751 + ee.vmulas.u8.accx.ld.ip.qup q3,a2,16,q5,q4,q1,q2 # [0*II+16] id:750 + +.LBB195_dspi_dotprod_u8_aes3: # 0x28e + movi.n a2,0 # [0] + movi.n a11,1 # [1] + addi.n a12,a7,-1 # [2] + rur.accx_0 a10 # [3] + ssl a12 # [4] + sll a11,a11 # [5] + ssr a7 # [6] + add.n a10,a10,a11 # [7] + srl a10,a10 # [8] + s8i a10,a4,0 # [9] id:773 + retw.n # [10] + +.LBB28_dspi_dotprod_u8_aes3: # 0x2aa + mov.n a15,a7 # [0] + mov.n a14,a6 # [1] + mov.n a13,a5 # [2] + mov.n a12,a4 # [3] + mov.n a11,a3 # [4] + mov.n a10,a2 # [5] + call8 dspi_dotprod_u8_ansi # [6] dspi_dotprod_u8_ansi + + mov.n a2,a10 # [0] + retw.n # [1] + + +#endif // dsps_dotprod_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u8_ansi.c new file mode 100644 index 0000000..8dfd227 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dspi_dotprod_u8_ansi.c @@ -0,0 +1,49 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod.h" + +esp_err_t dspi_dotprod_u8_ansi(image2d_t *in_image, image2d_t *filter, uint8_t *out_value, int count_x, int count_y, int shift) +{ + if (in_image->step_x * count_x > in_image->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (in_image->step_y * count_y > in_image->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_x * count_x > filter->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_y * count_y > filter->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + uint8_t *i_data = (uint8_t *)in_image->data; + uint8_t *f_data = (uint8_t *)filter->data; + int i_step = in_image->stride_x * in_image->step_y; + int f_step = filter->stride_x * filter->step_y; + + int32_t acc = 0; + for (int y = 0; y < count_y; y++) { + for (int x = 0; x < count_x; x++) { + acc += (int16_t)i_data[in_image->step_x * x] * (int16_t)f_data[filter->step_x * x]; + } + i_data += i_step; + f_data += f_step; + } + acc += 1 << (shift - 1); // round operation + acc >>= shift; + *out_value = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_ae32.S new file mode 100644 index 0000000..2eff255 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_ae32.S @@ -0,0 +1,80 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_dotprod_platform.h" +#if (dsps_dotprod_s16_ae32_enabled == 1) +#include "dsps_dotprod_s16_m_ae32.S" +#include "dsp_err_codes.h" + + .text + .align 4 + .global dsps_dotprod_s16_ae32 + .type dsps_dotprod_s16_ae32,@function + + +//esp_err_t dsps_dotprod_s16_ae32(const int16_t* src1, const int16_t* src2, int16_t* dest, int len, int8_t shift); +dsps_dotprod_s16_ae32: +// src1 - a2 +// src2 - a3 +// dest - a4 +// len - a5 +// shift - a6 + + entry a1, 16 + + // Check minimum length + movi a8, 4 + blt a5, a8, dsps_dotprod_s16_ae32_error + + // Clear accumulator + movi a8, 0 + wsr a8, acchi + + // Prepare and load round value + movi a8, 0x7fff + ssr a6 + srl a8, a8 + wsr a8, acclo // initialize acc with shifted round value + + // Compensate for pre-increment + // Right shift to 16 bits + // RS = -shift + 15 + neg a6, a6 + addi a6, a6, 15 + + /* number of loop iterations (see below): + * a7 = count / 4 - 1 + */ + + srli a7, a5, 2 + addi a7, a7, -1 + + movi.n a10, 0 // load 0 to the a10 to increment second array + + dotprod_s16_ae32_full a2, a3, a7, a5 + + /* Get accumulator */ + ssr a6 + rsr a2, acchi + rsr a3, acclo + src a2, a2, a3 + + s16i a2, a4, 0 + movi.n a2, 0 + retw.n +dsps_dotprod_s16_ae32_error: + movi.n a2, ESP_ERR_DSP_INVALID_LENGTH + retw.n + +#endif // dsps_dotprod_s16_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_ansi.c new file mode 100644 index 0000000..cd62a61 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_ansi.c @@ -0,0 +1,33 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_dotprod.h" + +esp_err_t dsps_dotprod_s16_ansi(const int16_t *src1, const int16_t *src2, int16_t *dest, int len, int8_t shift) +{ + // To make correct round operation we have to shift round value + long long acc = 0x7fff >> shift; + + for (int i = 0 ; i < len ; i++) { + acc += (int32_t)src1[i] * (int32_t)src2[i]; + } + + int final_shift = shift - 15; + if (final_shift > 0) { + *dest = (acc << final_shift); + } else { + *dest = (acc >> (-final_shift)); + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S new file mode 100644 index 0000000..795c85d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/fixed/dsps_dotprod_s16_m_ae32.S @@ -0,0 +1,104 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +.macro dotprod_s16_ae32 x1, x2, count +// This macro calculates fixed point dot product for ((count + 1)*4) int16 samples +// x1 - input array1 register (for example a2) +// x2 - input array2 register (for example a3) +// count - counter register (for example a7) +// count - samples_count / 4 - 1 +// acc += x1[i + 0]*x2[i + 0] + x1[i + 1]*x2[i + 1] + x1[i + 2]*x2[i + 2] + x1[i + 3]*x2[i + 3]; i: 0..count +// acchi, and acclo have to be initialize before +// Result - acchi || acclo +// Modifies: +// m0, m1, m2, m3 +// acchi || acclo - must be loaded before (for example 0x3fff to acclo). + + /* + * Data schedule. Each line represents instruction, columns represent + * register contents. Last column (MUL) shows the multiplication which + * takes place. Values loaded in the given cycle are shown in square brackets. + * + * m0 m1 m2 m3 MUL + * --------- pre-load ------------ + *[x0 x1] (no MULs in the first 3 instructions) + * x0 x1 [y0 y1] + * x0 x1 [x2 x3] y0 y1 + * x0 x1 x2 x3 y0 y1 [y2 y3] x0*y0 + * ---------- loop -------------- (the following 4 instructions are + *[x4 x5] x2 x3 y0 y1 y2 y3 x1*y1 repeated as much as needed) + * x4 x5 x2 x3 [y4 y5] y2 y3 x2*y2 + * x4 x5 [x6 x7] y4 y5 y2 y3 x3*y3 + * x4 x5 x6 x7 y4 y5 [y6 y7] x4*y4 + * --------- finalize ------------ + * x4 x5 x6 x7 y4 y5 y6 y7 x5*y5 (nothing is load) + * x4 x5 x6 x7 y4 y5 y6 y7 x6*y6 + * x4 x5 x6 x7 y4 y5 y6 y7 x7*y7 + */ + + addi \x1, \x1, -4 // To arrange fist pointer + addi \x2, \x2, -4 // To arrange fist pointer + //lddec m0, \x1 + //lddec m2, \x2 // To arrange fist pointer + + ldinc m0, \x1 + ldinc m2, \x2 + ldinc m1, \x1 + + mula.dd.ll.ldinc m3, \x2, m0, m2 + loopnez \count, .loop_end + .loop: + mula.dd.hh.ldinc m0, \x1, m0, m2 + mula.dd.ll.ldinc m2, \x2, m1, m3 + mula.dd.hh.ldinc m1, \x1, m1, m3 + mula.dd.ll.ldinc m3, \x2, m0, m2 + .loop_end: + + mula.dd.hh m0, m2 + mula.dd.ll m1, m3 + mula.dd.hh m1, m3 + +.endm // dotprod_s16_ae32 + + +.macro dotprod_s16_ae32_full x1, x2, count, full_count +// This macro calculates fixed point dot product for ((count + 1)*4) int16 samples +// x1 - input array1 register (for example a2) +// x2 - input array2 register (for example a3) +// count - counter register (for example a7) +// count - samples_count / 4 - 1 +// full_count - samples_count +// acc += x1[i + 0]*x2[i + 0] + x1[i + 1]*x2[i + 1] + x1[i + 2]*x2[i + 2] + x1[i + 3]*x2[i + 3]; i: 0..count +// acchi, and acclo have to be initialize before +// Result - acchi || acclo +// Modifies: +// m0, m1, m2, m3 +// acchi || acclo - must be loaded before (for example 0x3fff to acclo). + + dotprod_s16_ae32 \x1, \x2, \count + + bbci \full_count, 1, .mod2chk + ldinc m0, \x1 + ldinc m2, \x2 + mula.dd.hh m0, m2 + mula.dd.ll m0, m2 + .mod2chk: + bbci \full_count, 0, .mod1chk + ldinc m0, \x1 + ldinc m2, \x2 + mula.dd.ll m0, m2 + .mod1chk: + +.endm // dotprod_s16_ae32_full \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dspi_dotprod_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dspi_dotprod_f32_ansi.c new file mode 100644 index 0000000..6e989f3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dspi_dotprod_f32_ansi.c @@ -0,0 +1,47 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod.h" + +esp_err_t dspi_dotprod_f32_ansi(image2d_t *in_image, image2d_t *filter, float *out_value, int count_x, int count_y) +{ + if (in_image->step_x * count_x > in_image->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (in_image->step_y * count_y > in_image->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_x * count_x > filter->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_y * count_y > filter->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + float *i_data = (float *)in_image->data; + float *f_data = (float *)filter->data; + int i_step = in_image->stride_x * in_image->step_y; + int f_step = filter->stride_x * filter->step_y; + + float acc = 0; + for (int y = 0; y < count_y; y++) { + for (int x = 0; x < count_x; x++) { + acc += i_data[in_image->step_x * x] * f_data[filter->step_x * x]; + } + i_data += i_step; + f_data += f_step; + } + *out_value = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dspi_dotprod_off_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dspi_dotprod_off_f32_ansi.c new file mode 100644 index 0000000..6baec22 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dspi_dotprod_off_f32_ansi.c @@ -0,0 +1,47 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspi_dotprod.h" + +esp_err_t dspi_dotprod_off_f32_ansi(image2d_t *in_image, image2d_t *filter, float *out_value, int count_x, int count_y, float offset) +{ + if (in_image->step_x * count_x > in_image->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (in_image->step_y * count_y > in_image->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_x * count_x > filter->stride_x) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (filter->step_y * count_y > filter->stride_y) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + float *i_data = (float *)in_image->data; + float *f_data = (float *)filter->data; + int i_step = in_image->stride_x * in_image->step_y; + int f_step = filter->stride_x * filter->step_y; + + float acc = 0; + for (int y = 0; y < count_y; y++) { + for (int x = 0; x < count_x; x++) { + acc += i_data[in_image->step_x * x] * (f_data[filter->step_x * x] + offset); + } + i_data += i_step; + f_data += f_step; + } + *out_value = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_ae32.S new file mode 100644 index 0000000..af1d863 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_ae32.S @@ -0,0 +1,62 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_dotprod_platform.h" +#if (dotprod_f32_ae32_enabled == 1) + +#include "dsps_dotprod_f32_m_ae32.S" + +// This is dot product function for ESP32 processor. + .text + .align 4 + .global dsps_dotprod_f32_ae32 + .global .dsps_dotprod_f32_ae32_body + .type dsps_dotprod_f32_ae32,@function +// The function implements the following C code: +//esp_err_t dsps_dotprod_f32_ae32(const float* src1, const float* src2, float* dest, int len) +//{ +// float acc = 0; +// for (int i=0 ; i< len ; i++) +// { +// acc += src1[i]*src2[i]; +// } +// *dest = acc; +// return ESP_OK; +//} + +dsps_dotprod_f32_ae32: +// src1 - a2 +// src2 - a3 +// dest - a4 +// len - a5 + + entry a1, 16 +.dsps_dotprod_f32_ae32_body: + // Array increment for floating point data should be 4 + movi.n a8, 4 + // Clear initial state of the result register + movi.n a9, 0 + wfr f1, a9 + // a2 - input1 + // a3 - input2 + // a5 - length + // a8 - 4, step in arrays + dotprod_f32_ae32 a2, a3, a5, a9, a8; + + ssi f1, a4, 0 // Store result from f1 to memory at a4 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dotprode_f32_ae32_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_aes3.S new file mode 100644 index 0000000..b85d7ed --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_aes3.S @@ -0,0 +1,85 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_dotprod_platform.h" +#if (dsps_dotprod_f32_aes3_enabled == 1) + +// This is dot product function for ESP32 processor. + .text + .align 4 + .global dsps_dotprod_f32_aes3 + .global .dsps_dotprod_f32_ae32_body + .type dsps_dotprod_f32_aes3,@function +// The function implements the following C code: +//esp_err_t dsps_dotprod_f32_ae32(const float* src1, const float* src2, float* dest, int len) +//{ +// float acc = 0; +// for (int i=0 ; i< len ; i++) +// { +// acc += src1[i]*src2[i]; +// } +// *dest = acc; +// return ESP_OK; +//} + +dsps_dotprod_f32_aes3: +// src1 - a2 +// src2 - a3 +// dest - a4 +// len - a5 + + entry a1, 16 + // Check length and align + movi.n a10, 3 + and a10, a10, a5 + movi.n a9, 15 + or a11, a3, a2 + and a11, a9, a11 + or a10, a10, a11 + beqz a10, .dsps_dotprod_f32_aes3_body + // Call Esp32 function + J .dsps_dotprod_f32_ae32_body + +.dsps_dotprod_f32_aes3_body: + // Clear initial state of the result register + movi.n a9, 0 + wfr f0, a9 + wfr f1, a9 + wfr f2, a9 + wfr f3, a9 + // a2 - input1 + // a3 - input2 + // a5 - length + + srli a6, a5, 2 // N count +// lsx f0, a2, a9 + loopnez a6, .loop_mac_end_m_ae32 + EE.LDF.128.IP f11, f10, f9, f8, a2, 16 + EE.LDF.128.IP f7, f6, f5, f4, a3, 16 + madd.s f0, f4, f8 // f0 = X11*Y11 + madd.s f1, f5, f9 // f1 = X12*Y11 + madd.s f2, f6, f10 // f2 = X13*Y11 + madd.s f3, f7, f11 // f3 = X14*Y11 + .loop_mac_end_m_ae32: + + add.s f0, f0, f1 + add.s f0, f0, f2 + add.s f0, f0, f3 + + ssi f0, a4, 0 // Store result from f1 to memory at a4 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dotprode_f32_ae32_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_ansi.c new file mode 100644 index 0000000..ec260e6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_ansi.c @@ -0,0 +1,25 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_dotprod.h" + +esp_err_t dsps_dotprod_f32_ansi(const float *src1, const float *src2, float *dest, int len) +{ + float acc = 0; + for (int i = 0 ; i < len ; i++) { + acc += src1[i] * src2[i]; + } + *dest = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_m_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_m_ae32.S new file mode 100644 index 0000000..3f21a2c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprod_f32_m_ae32.S @@ -0,0 +1,42 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +.macro dotprod_f32_ae32 x1 x2 count step1 step2 +// This macro calculates floating point dot product for count float samples +// x1, x2 - input arrays +// count - amount of samples +// step1 - start step +//,step2 - A register for array step increment. (should be divided by 4) +// f1 - contains initial value +// +// result in f1 +// +// Macros body: +// f1 += x1[i*step1]*x2[i*step2]; i: 0..counter-1 +// affected: f0, f1, f2 +// Example: dotprod_f32_ae32 a2 a3 a5 a8 a9 +// a8 == 4, step is 4 bytes +// a5 == 32, length of array is 32 +// +// mov \step1, \step2 + lsx f0, \x2, \step1 +// sub \x1, \x1, \step1 // To compensate first increment + loopnez \count, .loop_mac_end_m_ae32 + lsx f2, \x1, \step1 + madd.s f1, f2, f0 + add.n \step1, \step1, \step2 + lsx f0, \x2, \step1 + .loop_mac_end_m_ae32: +.endm diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_ae32.S new file mode 100644 index 0000000..b16245c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_ae32.S @@ -0,0 +1,64 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_dotprod_platform.h" +#if (dotprode_f32_ae32_enabled == 1) + +#include "dsps_dotprode_f32_m_ae32.S" + +// This is dot product function for ESP32 processor. + .text + .align 4 + .global dsps_dotprode_f32_ae32 + .type dsps_dotprode_f32_ae32,@function +// The function implements the following C code: +//esp_err_t dsps_dotprod_f32_ae32(const float* src1, const float* src2, float* dest, int len) +//{ +// float acc = 0; +// for (int i=0 ; i< len ; i++) +// { +// acc += src1[i]*src2[i]; +// } +// *dest = acc; +// return ESP_OK; +//} + +dsps_dotprode_f32_ae32: +// src1 - a2 +// src2 - a3 +// dest - a4 +// len - a5 +// step1- a6 +// step2- a7 + + entry a1, 16 + // Array increment for floating point data should be 4 + + slli a6,a6, 2 + slli a7,a7, 2 + // Clear initial state of the result register + movi.n a9, 0 + wfr f1, a9 + // a2 - input1 + // a3 - input2 + // a5 - length + // a6,a7, step in arrays + dotprode_f32_ae32 a2, a3, a5, a6, a7; + + ssi f1, a4, 0 // Store result from f1 to memory at a4 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif //dotprode_f32_ae32_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_ansi.c new file mode 100644 index 0000000..531c74e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_ansi.c @@ -0,0 +1,25 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_dotprod.h" + +esp_err_t dsps_dotprode_f32_ansi(const float *src1, const float *src2, float *dest, int len, int step1, int step2) +{ + float acc = 0; + for (int i = 0 ; i < len ; i++) { + acc += src1[i * step1] * src2[i * step2]; + } + *dest = acc; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_m_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_m_ae32.S new file mode 100644 index 0000000..da748eb --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/float/dsps_dotprode_f32_m_ae32.S @@ -0,0 +1,41 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +.macro dotprode_f32_ae32 x1 x2 count step1 step2 +// This macro calculates floating point dot product for count float samples +// x1, x2 - input arrays +// count - amount of samples +// step1,step2 - A register for array step. (should be divided by 4) +// f1 - contains initial value +// +// result in f1 +// +// Macros body: +// f1 += x1[i*step1]*x2[i*step2]; i: 0..counter-1 +// affected: f0, f1, f2 +// Example: dotprod_f32_ae32 a2 a3 a5 a8 a9 +// a8 == 4, step is 4 bytes +// a5 == 32, length of array is 32 +// + lsi f0, \x2, 0 + sub \x1, \x1, \step1 // To compensate first increment + loopnez \count, .loop_mace_end_m_ae32 + add.n \x1, \x1, \step1 + lsi f2, \x1, 0 + madd.s f1, f2, f0 + add.n \x2, \x2, \step2 + lsi f0, \x2, 0 + .loop_mace_end_m_ae32: +.endm diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dspi_dotprod.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dspi_dotprod.h new file mode 100644 index 0000000..956bd3d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dspi_dotprod.h @@ -0,0 +1,171 @@ + +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef _dspi_dotprod_H_ +#define _dspi_dotprod_H_ + +#include "esp_log.h" +#include "dsp_err.h" +#include "dsp_types.h" +#include "dspi_dotprod_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/**@{*/ +/** + * @brief dot product of two images + * Dot product calculation for two floating point images: *out_value += image[i*...] * src2[i*...]); i= [0..count_x*count_y) + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] in_image descriptor of the image + * @param[in] filter descriptor of the filter + * @param[out] out_value pointer to the output value + * @param[in] count_x amount of samples by X axis (count_x*step_X <= widdth) + * @param[in] count_y amount of samples by Y axis (count_y*step_Y <= height) + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspi_dotprod_f32_ansi(image2d_t *in_image, image2d_t *filter, float *out_value, int count_x, int count_y); +/**@}*/ + +/**@{*/ +/** + * @brief dot product of two images + * Dot product calculation for two floating point images: *out_value += image[i*...] * src2[i*...]); i= [0..count_x*count_y) + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] in_image descriptor of the image + * @param[in] filter descriptor of the filter + * @param[out] out_value pointer to the output value + * @param[in] count_x amount of samples by X axis (count_x*step_X <= widdth) + * @param[in] count_y amount of samples by Y axis (count_y*step_Y <= height) + * @param[in] shift - result shift to right, by default must be 15 for int16_t or 7 for int8_t + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspi_dotprod_s16_ansi(image2d_t *in_image, image2d_t *filter, int16_t *out_value, int count_x, int count_y, int shift); +esp_err_t dspi_dotprod_u16_ansi(image2d_t *in_image, image2d_t *filter, uint16_t *out_value, int count_x, int count_y, int shift); +esp_err_t dspi_dotprod_s8_ansi(image2d_t *in_image, image2d_t *filter, int8_t *out_value, int count_x, int count_y, int shift); +esp_err_t dspi_dotprod_u8_ansi(image2d_t *in_image, image2d_t *filter, uint8_t *out_value, int count_x, int count_y, int shift); + +esp_err_t dspi_dotprod_s16_aes3(image2d_t *in_image, image2d_t *filter, int16_t *out_value, int count_x, int count_y, int shift); +esp_err_t dspi_dotprod_u16_aes3(image2d_t *in_image, image2d_t *filter, uint16_t *out_value, int count_x, int count_y, int shift); +esp_err_t dspi_dotprod_s8_aes3(image2d_t *in_image, image2d_t *filter, int8_t *out_value, int count_x, int count_y, int shift); +esp_err_t dspi_dotprod_u8_aes3(image2d_t *in_image, image2d_t *filter, uint8_t *out_value, int count_x, int count_y, int shift); + + +/**@}*/ + +/**@{*/ +/** + * @brief dot product of two images with input offset + * Dot product calculation for two floating point images: *out_value += (image[i*...] + offset) * src2[i*...]); i= [0..count_x*count_y) + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] in_image descriptor of the image + * @param[in] filter descriptor of the filter + * @param[out] out_value pointer to the output value + * @param[in] count_x amount of samples by X axis (count_x*step_X <= widdth) + * @param[in] count_y amount of samples by Y axis (count_y*step_Y <= height) + * @param[in] offset - input offset value. + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspi_dotprod_off_f32_ansi(image2d_t *in_image, image2d_t *filter, float *out_value, int count_x, int count_y, float offset); +/**@}*/ + +/**@{*/ +/** + * @brief dot product of two images with input offset + * Dot product calculation for two floating point images: *out_value += (image[i*...] + offset) * src2[i*...]); i= [0..count_x*count_y) + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] in_image descriptor of the image + * @param[in] filter descriptor of the filter + * @param[out] out_value pointer to the output value + * @param[in] count_x amount of samples by X axis (count_x*step_X <= widdth) + * @param[in] count_y amount of samples by Y axis (count_y*step_Y <= height) + * @param[in] shift - result shift to right, by default must be 15 for int16_t or 7 for int8_t + * @param[in] offset - input offset value. + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspi_dotprod_off_s16_ansi(image2d_t *in_image, image2d_t *filter, int16_t *out_value, int count_x, int count_y, int shift, int16_t offset); +esp_err_t dspi_dotprod_off_u16_ansi(image2d_t *in_image, image2d_t *filter, uint16_t *out_value, int count_x, int count_y, int shift, uint16_t offset); +esp_err_t dspi_dotprod_off_s8_ansi(image2d_t *in_image, image2d_t *filter, int8_t *out_value, int count_x, int count_y, int shift, int8_t offset); +esp_err_t dspi_dotprod_off_u8_ansi(image2d_t *in_image, image2d_t *filter, uint8_t *out_value, int count_x, int count_y, int shift, uint8_t offset); + +esp_err_t dspi_dotprod_off_s16_aes3(image2d_t *in_image, image2d_t *filter, int16_t *out_value, int count_x, int count_y, int shift, int16_t offset); +esp_err_t dspi_dotprod_off_u16_aes3(image2d_t *in_image, image2d_t *filter, uint16_t *out_value, int count_x, int count_y, int shift, uint16_t offset); +esp_err_t dspi_dotprod_off_s8_aes3(image2d_t *in_image, image2d_t *filter, int8_t *out_value, int count_x, int count_y, int shift, int8_t offset); +esp_err_t dspi_dotprod_off_u8_aes3(image2d_t *in_image, image2d_t *filter, uint8_t *out_value, int count_x, int count_y, int shift, uint8_t offset); +/**@}*/ + + +#ifdef __cplusplus +} +#endif + + +#ifdef CONFIG_DSP_OPTIMIZED +#define dspi_dotprod_f32 dspi_dotprod_f32_ansi +#define dspi_dotprod_off_f32 dspi_dotprod_off_f32_ansi +#if (dspi_dotprod_aes3_enabled == 1) +#define dspi_dotprod_s16 dspi_dotprod_s16_aes3 +#define dspi_dotprod_u16 dspi_dotprod_u16_aes3 +#define dspi_dotprod_s8 dspi_dotprod_s8_aes3 +#define dspi_dotprod_u8 dspi_dotprod_u8_aes3 +#define dspi_dotprod_off_s16 dspi_dotprod_off_s16_aes3 +#define dspi_dotprod_off_s8 dspi_dotprod_off_s8_aes3 +#define dspi_dotprod_off_u16 dspi_dotprod_off_u16_aes3 +#define dspi_dotprod_off_u8 dspi_dotprod_off_u8_aes3 +#else +#define dspi_dotprod_s16 dspi_dotprod_s16_ansi +#define dspi_dotprod_s8 dspi_dotprod_s8_ansi +#define dspi_dotprod_u16 dspi_dotprod_u16_ansi +#define dspi_dotprod_u8 dspi_dotprod_u8_ansi +#define dspi_dotprod_off_s16 dspi_dotprod_off_s16_ansi +#define dspi_dotprod_off_s8 dspi_dotprod_off_s8_ansi +#define dspi_dotprod_off_u16 dspi_dotprod_off_u16_ansi +#define dspi_dotprod_off_u8 dspi_dotprod_off_u8_ansi +#endif +#endif +#ifdef CONFIG_DSP_ANSI +#define dspi_dotprod_f32 dspi_dotprod_f32_ansi +#define dspi_dotprod_off_f32 dspi_dotprod_off_f32_ansi +#define dspi_dotprod_s16 dspi_dotprod_s16_ansi +#define dspi_dotprod_s8 dspi_dotprod_s8_ansi +#define dspi_dotprod_off_s16 dspi_dotprod_off_s16_ansi +#define dspi_dotprod_off_s8 dspi_dotprod_off_s8_ansi +#define dspi_dotprod_u16 dspi_dotprod_u16_ansi +#define dspi_dotprod_u8 dspi_dotprod_u8_ansi +#define dspi_dotprod_off_u16 dspi_dotprod_off_u16_ansi +#define dspi_dotprod_off_u8 dspi_dotprod_off_u8_ansi +#endif + + +#endif // _dspi_dotprod_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dspi_dotprod_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dspi_dotprod_platform.h new file mode 100644 index 0000000..0f1d4a1 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dspi_dotprod_platform.h @@ -0,0 +1,16 @@ +#ifndef _dspi_dotprod_platform_H_ +#define _dspi_dotprod_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if CONFIG_IDF_TARGET_ESP32S3 +#define dspi_dotprod_aes3_enabled 1 +#endif +#endif // __XTENSA__ + +#endif // _dspi_dotprod_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dsps_dotprod.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dsps_dotprod.h new file mode 100644 index 0000000..5520942 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dsps_dotprod.h @@ -0,0 +1,120 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _DSPI_DOTPROD_H_ +#define _DSPI_DOTPROD_H_ + +#include "esp_log.h" +#include "dsp_err.h" + +#include "dsps_dotprod_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif +// These functions calculates dotproduct of two vectors. + +/**@{*/ +/** + * @brief dot product of two 16 bit vectors + * Dot product calculation for two signed 16 bit arrays: *dest += (src1[i] * src2[i]) >> (15-shift); i= [0..N) + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] src1 source array 1 + * @param[in] src2 source array 2 + * @param dest destination pointer + * @param[in] len length of input arrays + * @param[in] shift shift of the result. + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_dotprod_s16_ansi(const int16_t *src1, const int16_t *src2, int16_t *dest, int len, int8_t shift); +esp_err_t dsps_dotprod_s16_ae32(const int16_t *src1, const int16_t *src2, int16_t *dest, int len, int8_t shift); +/**@}*/ + + +/**@{*/ +/** + * @brief dot product of two float vectors + * Dot product calculation for two floating point arrays: *dest += (src1[i] * src2[i]); i= [0..N) + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] src1 source array 1 + * @param[in] src2 source array 2 + * @param dest destination pointer + * @param[in] len length of input arrays + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_dotprod_f32_ansi(const float *src1, const float *src2, float *dest, int len); +esp_err_t dsps_dotprod_f32_ae32(const float *src1, const float *src2, float *dest, int len); +esp_err_t dsps_dotprod_f32_aes3(const float *src1, const float *src2, float *dest, int len); +/**@}*/ + +/**@{*/ +/** + * @brief dot product of two float vectors with step + * Dot product calculation for two floating point arrays: *dest += (src1[i*step1] * src2[i*step2]); i= [0..N) + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] src1 source array 1 + * @param[in] src2 source array 2 + * @param dest destination pointer + * @param[in] len length of input arrays + * @param[in] step1 step over elements in first array + * @param[in] step2 step over elements in second array + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_dotprode_f32_ansi(const float *src1, const float *src2, float *dest, int len, int step1, int step2); +esp_err_t dsps_dotprode_f32_ae32(const float *src1, const float *src2, float *dest, int len, int step1, int step2); +/**@}*/ + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED + +#if (dsps_dotprod_s16_ae32_enabled == 1) +#define dsps_dotprod_s16 dsps_dotprod_s16_ae32 +#else +#define dsps_dotprod_s16 dsps_dotprod_s16_ansi +#endif // dsps_dotprod_s16_ae32_enabled + +#if (dsps_dotprod_f32_aes3_enabled == 1) +#define dsps_dotprod_f32 dsps_dotprod_f32_aes3 +#define dsps_dotprode_f32 dsps_dotprode_f32_ae32 +#elif (dotprod_f32_ae32_enabled == 1) +#define dsps_dotprod_f32 dsps_dotprod_f32_ae32 +#define dsps_dotprode_f32 dsps_dotprode_f32_ae32 +#else +#define dsps_dotprod_f32 dsps_dotprod_f32_ansi +#define dsps_dotprode_f32 dsps_dotprode_f32_ansi +#endif // dsps_dotprod_f32_ae32_enabled + +#else // CONFIG_DSP_OPTIMIZED +#define dsps_dotprod_s16 dsps_dotprod_s16_ansi +#define dsps_dotprod_f32 dsps_dotprod_f32_ansi +#define dsps_dotprode_f32 dsps_dotprode_f32_ansi +#endif // CONFIG_DSP_OPTIMIZED + +#endif // _DSPI_DOTPROD_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dsps_dotprod_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dsps_dotprod_platform.h new file mode 100644 index 0000000..0bf5cec --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/include/dsps_dotprod_platform.h @@ -0,0 +1,32 @@ +#ifndef _dsps_dotprod_platform_H_ +#define _dsps_dotprod_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dotprod_f32_ae32_enabled 1 +#define dotprode_f32_ae32_enabled 1 + +#endif // + +#if ((XCHAL_HAVE_LOOPS == 1) && (XCHAL_HAVE_MAC16 == 1)) + +#define dsps_dotprod_s16_ae32_enabled 1 + +#endif // +#endif // __XTENSA__ + + +#if CONFIG_IDF_TARGET_ESP32S3 +#define dsps_dotprod_s16_aes3_enabled 1 +#define dsps_dotprod_f32_aes3_enabled 1 +#endif + + +#endif // _dsps_dotprod_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dotprod_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dotprod_f32.c new file mode 100644 index 0000000..25290a4 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dotprod_f32.c @@ -0,0 +1,167 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_dotprod.h" +#include "dsp_tests.h" + +TEST_CASE("dsps_dotprod_f32_aexx functionality", "[dsps]") +{ + float check_value = 1235; + int max_N = 1024; + float *x = (float *)memalign(16, max_N * sizeof(float)); + float *y = (float *)memalign(16, max_N * sizeof(float)); + float *z = (float *)memalign(16, max_N * sizeof(float)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + z[0] = check_value; + z[2] = check_value + 1; + + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprod_f32(x, y, &z[1], i); + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL(0, z[1]); + } + for (int i = 0 ; i < max_N ; i++) { + x[i] = 1; + y[i] = 3; + } + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprod_f32(x, y, &z[1], i); + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL(i * 3, z[1]); + } + + free(x); + free(y); + free(z); +} + +TEST_CASE("dsps_dotprod_f32_aexx benchmark", "[dsps]") +{ + int max_N = 1024; + float *x = (float *)memalign(16, max_N * sizeof(float)); + float *y = (float *)memalign(16, max_N * sizeof(float)); + float *z = (float *)memalign(16, max_N * sizeof(float)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + printf("Benchmark dsps_dotprod_f32_aexx - x=%8.8"PRIx32", y=%8.8"PRIx32", len=%8.8x\n", (uint32_t)x, (uint32_t)y, 1024); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dsps_dotprod_f32(x, y, &z[1], 1024); + } + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dsps_dotprod_f32_aexx - %f per 1024 samples + overhead.\n", cycles); + float min_exec = 1024; + float max_exec = 6 * 1024; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + + free(x); + free(y); + free(z); +} + + +TEST_CASE("dsps_dotprod_f32_ansi functionality", "[dsps]") +{ + float check_value = 1235; + int max_N = 1024; + float *x = (float *)malloc(max_N * sizeof(float)); + float *y = (float *)malloc(max_N * sizeof(float)); + float *z = (float *)malloc(max_N * sizeof(float)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + z[0] = check_value; + z[2] = check_value + 1; + + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprod_f32_ansi(x, y, &z[1], i); + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL(0, z[1]); + } + for (int i = 0 ; i < max_N ; i++) { + x[i] = 1; + y[i] = 3; + } + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprod_f32_ansi(x, y, &z[1], i); + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL(i * 3, z[1]); + } + + free(x); + free(y); + free(z); +} + +TEST_CASE("dsps_dotprod_f32_ansi benchmark", "[dsps]") +{ + int max_N = 1024; + float *x = (float *)malloc(max_N * sizeof(float)); + float *y = (float *)malloc(max_N * sizeof(float)); + float *z = (float *)malloc(max_N * sizeof(float)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dsps_dotprod_f32_ansi(x, y, &z[1], 1024); + } + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dsps_dotprod_f32_ansi - %f per sample + overhead.\n", cycles); + float min_exec = 1024; + float max_exec = 20 * 1024; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dotprod_s16.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dotprod_s16.c new file mode 100644 index 0000000..a50f403 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dotprod_s16.c @@ -0,0 +1,221 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_dotprod.h" +#include "dsp_tests.h" + +// Test dsps_dotprod_s16_ansi function +TEST_CASE("dsps_dotprod_s16_ansi functionality", "[dsps]") +{ + int16_t check_value = 1235; + int max_N = 1024; + int16_t *x = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *z = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + z[0] = check_value; + z[2] = check_value + 1; + + // Check result == 0 + for (int i = 1; i < 1024; i++) { + esp_err_t status = dsps_dotprod_s16_ansi(x, y, &z[1], i, 0); + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL(0, z[1]); + } + + int16_t val_x = 0x080; + int16_t val_y = 0x100; + int16_t val_shift = 0; + + for (int i = 0; i < max_N; i++) { + x[i] = val_x; + y[i] = val_y; + } + + // We check that dotproduct working with shift = 0; + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprod_s16_ansi(x, y, &z[1], i, val_shift); + + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL((i * (val_x * val_y) + (0x7fff >> val_shift)) >> (15 - val_shift), z[1]); + } + val_shift = 2; + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprod_s16_ansi(x, y, &z[1], i, val_shift); + + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL(((long long)i * ((long long)val_x * (long long)val_y) + ((long long)0x7fff >> val_shift)) >> (15 - val_shift), z[1]); + } + + free(x); + free(y); + free(z); +} + +// Test dsps_dotprod_s16_ansi function +TEST_CASE("dsps_dotprod_s16_aexx functionality", "[dsps]") +{ + int16_t check_value = 1235; + int max_N = 1024; + int16_t *x = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *z = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + z[0] = check_value; + z[2] = check_value + 1; + + // Check result == 0 + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprod_s16(x, y, &z[1], i, 0); + if (i < 4) { + TEST_ASSERT_EQUAL(status, ESP_ERR_DSP_INVALID_LENGTH); + } else { + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL(0, z[1]); + } + } + + int16_t val_x = 0x080; + int16_t val_y = 0x100; + int16_t val_shift = 0; + + for (int i = 0 ; i < max_N ; i++) { + x[i] = val_x; + y[i] = val_y; + } + // We check that dotproduct working with shift = 0; + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprod_s16(x, y, &z[1], i, val_shift); + if (i < 4) { + TEST_ASSERT_EQUAL(status, ESP_ERR_DSP_INVALID_LENGTH); + } else { + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL((i * (val_x * val_y) + (0x7fff >> val_shift)) >> (15 - val_shift), z[1]); + } + } + val_shift = 2; + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprod_s16(x, y, &z[1], i, val_shift); + if (i < 4) { + TEST_ASSERT_EQUAL(status, ESP_ERR_DSP_INVALID_LENGTH); + } else { + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL((i * (val_x * val_y) + ((int)0x7fff >> val_shift)) >> (15 - val_shift), z[1]); + } + } + + free(x); + free(y); + free(z); +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; +TEST_CASE("dsps_dotprod_s16_ae32 benchmark", "[dsps]") +{ + int max_N = 1024; + + int16_t *x = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *z = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0x100; + y[i] = 0x200; + } + // Disable interrupt to get exect count + + portENTER_CRITICAL(&testnlock); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dsps_dotprod_s16_ae32(x, y, &z[1], 1024, 0); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dsps_dotprod_s16 - %f per sample + overhead. Result = %08x\n", cycles, z[1]); + float min_exec = 512; + float max_exec = 8 * 1024; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + + free(x); + free(y); + free(z); +} + +TEST_CASE("dsps_dotprod_s16_ansi benchmark", "[dsps]") +{ + int max_N = 1024; + + int16_t *x = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *z = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0x100; + y[i] = 0x200; + } + // Disable interrupt to get exect count + + portENTER_CRITICAL(&testnlock); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dsps_dotprod_s16_ansi(x, y, &z[1], 1024, 0); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (1024 * repeat_count); + printf("Benchmark dsps_dotprod_s16 - %f per sample + overhead. Result = %08x\n", cycles, z[1]); + float min_exec = 10; + float max_exec = 30; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dotprode_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dotprode_f32.c new file mode 100644 index 0000000..03c6108 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dotprode_f32.c @@ -0,0 +1,165 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_dotprod.h" +#include "dsp_tests.h" + +TEST_CASE("dsps_dotprode_f32_ae32 functionality", "[dsps]") +{ + float check_value = 1235; + int max_N = 1024; + float *x = (float *)memalign(16, max_N * sizeof(float)); + float *y = (float *)memalign(16, max_N * sizeof(float)); + float *z = (float *)memalign(16, max_N * sizeof(float)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + z[0] = check_value; + z[2] = check_value + 1; + + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprode_f32_ae32(x, y, &z[1], i, 1, 1); + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL(0, z[1]); + } + for (int i = 0 ; i < max_N ; i++) { + x[i] = 1; + y[i] = 3; + } + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprode_f32_ae32(x, y, &z[1], i, 1, 1); + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL(i * 3, z[1]); + } + + free(x); + free(y); + free(z); +} + +TEST_CASE("dsps_dotprode_f32_ae32 benchmark", "[dsps]") +{ + int max_N = 1024; + float *x = (float *)memalign(16, max_N * sizeof(float)); + float *y = (float *)memalign(16, max_N * sizeof(float)); + float *z = (float *)memalign(16, max_N * sizeof(float)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dsps_dotprode_f32_ae32(x, y, &z[1], 1024, 1, 1); + } + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (1024 * repeat_count); + printf("Benchmark dsps_dotprode_f32_ae32 - %f per sample + overhead.\n", cycles); + float min_exec = 3; + float max_exec = 6; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + + free(x); + free(y); + free(z); +} + + +TEST_CASE("dsps_dotprode_f32_ansi functionality", "[dsps]") +{ + float check_value = 1235; + int max_N = 1024; + float *x = (float *)memalign(16, max_N * sizeof(float)); + float *y = (float *)memalign(16, max_N * sizeof(float)); + float *z = (float *)memalign(16, max_N * sizeof(float)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + z[0] = check_value; + z[2] = check_value + 1; + + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprode_f32_ansi(x, y, &z[1], i, 1, 1); + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL(0, z[1]); + } + for (int i = 0 ; i < max_N ; i++) { + x[i] = 1; + y[i] = 3; + } + for (int i = 1 ; i < 1024 ; i++) { + esp_err_t status = dsps_dotprode_f32_ansi(x, y, &z[1], i, 1, 1); + TEST_ASSERT_EQUAL(status, ESP_OK); + TEST_ASSERT_EQUAL(check_value, z[0]); + TEST_ASSERT_EQUAL(check_value + 1, z[2]); + TEST_ASSERT_EQUAL(i * 3, z[1]); + } + + free(x); + free(y); + free(z); +} + +TEST_CASE("dsps_dotprode_f32_ansi benchmark", "[dsps]") +{ + int max_N = 1024; + float *x = (float *)memalign(16, max_N * sizeof(float)); + float *y = (float *)memalign(16, max_N * sizeof(float)); + float *z = (float *)memalign(16, max_N * sizeof(float)); + + for (int i = 0 ; i < max_N ; i++) { + x[i] = 0; + y[i] = 1000; + } + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dsps_dotprode_f32_ansi(x, y, &z[1], 1024, 1, 1); + } + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (1024 * repeat_count); + printf("Benchmark dsps_dotprode_f32_ansi - %f per sample + overhead.\n", cycles); + float min_exec = 10; + float max_exec = 25; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_f32_ansi.c new file mode 100644 index 0000000..83e6816 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_f32_ansi.c @@ -0,0 +1,67 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_f32_ansi"; + +TEST_CASE("dspi_dotprod_f32_ansi functionality", "[dspi]") +{ + float check_value1 = 336; + float check_value2 = 480; + int max_N = 1024; + float *x = (float *)memalign(16, max_N * sizeof(float)); + float *y = (float *)memalign(16, max_N * sizeof(float)); + float *z = (float *)memalign(16, max_N * sizeof(float)); + for (size_t i = 0; i < 256; i++) { + x[i] = i % 8 + 1; + y[i] = i % 8 + 1; + z[i] = 0; + } + image2d_t image1 = {x, 2, 2, 8, 8}; // Image 8x8 + image2d_t image2 = {y, 2, 2, 8, 8}; // Umage 8x8 + float result = -1; + dspi_dotprod_f32_ansi(&image1, &image2, &result, 4, 4); + ESP_LOGI(TAG, "result 1 = %f", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[1]; + image2.data = &y[1]; + result = -1; + dspi_dotprod_f32_ansi(&image1, &image2, &result, 4, 4); + ESP_LOGI(TAG, "result 2 = %f", result); + TEST_ASSERT_EQUAL( result, check_value2); + image1.data = &x[image1.stride_x]; + image2.data = &y[image2.stride_x]; + result = -1; + dspi_dotprod_f32_ansi(&image1, &image2, &result, 4, 4); + ESP_LOGI(TAG, "result 3 = %f", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[image1.stride_x + 1]; + image2.data = &y[image2.stride_x + 1]; + result = -1; + dspi_dotprod_f32_ansi(&image1, &image2, &result, 4, 4); + ESP_LOGI(TAG, "result 4 = %f", result); + TEST_ASSERT_EQUAL( result, check_value2); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_f32_ansi.c new file mode 100644 index 0000000..c2aa27e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_f32_ansi.c @@ -0,0 +1,68 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_off_f32_ansi"; + +TEST_CASE("dspi_dotprod_off_f32_ansi functionality", "[dspi]") +{ + float check_value1 = 976; + float check_value2 = 1280; + float offset = 10; + int max_N = 1024; + float *x = (float *)memalign(16, max_N * sizeof(float)); + float *y = (float *)memalign(16, max_N * sizeof(float)); + float *z = (float *)memalign(16, max_N * sizeof(float)); + for (size_t i = 0; i < 256; i++) { + x[i] = i % 8 + 1; + y[i] = i % 8 + 1; + z[i] = 0; + } + image2d_t image1 = {x, 2, 2, 8, 8}; // Image 8x8 + image2d_t image2 = {y, 2, 2, 8, 8}; // Umage 8x8 + float result = -1; + dspi_dotprod_off_f32_ansi(&image1, &image2, &result, 4, 4, offset); + ESP_LOGI(TAG, "result 1 = %f", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[1]; + image2.data = &y[1]; + result = -1; + dspi_dotprod_off_f32_ansi(&image1, &image2, &result, 4, 4, offset); + ESP_LOGI(TAG, "result 2 = %f", result); + TEST_ASSERT_EQUAL( result, check_value2); + image1.data = &x[image1.stride_x]; + image2.data = &y[image2.stride_x]; + result = -1; + dspi_dotprod_off_f32_ansi(&image1, &image2, &result, 4, 4, offset); + ESP_LOGI(TAG, "result 3 = %f", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[image1.stride_x + 1]; + image2.data = &y[image2.stride_x + 1]; + result = -1; + dspi_dotprod_off_f32_ansi(&image1, &image2, &result, 4, 4, offset); + ESP_LOGI(TAG, "result 4 = %f", result); + TEST_ASSERT_EQUAL( result, check_value2); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s16_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s16_aes3.c new file mode 100644 index 0000000..51c1152 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s16_aes3.c @@ -0,0 +1,107 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_off_s16"; + +TEST_CASE("dspi_dotprod_off_s16_aexx functionality", "[dspi]") +{ + int shift = 2; + int16_t offset = 7; + + int max_N = 8192; + int16_t *x = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *z = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + + printf("Data: x=%8.8"PRIx32", y=%8.8"PRIx32", z=%8.8"PRIx32" \n", (uint32_t)x, (uint32_t)y, (uint32_t)z); + for (size_t i = 0; i < max_N; i++) { + x[i] = i % 7; + y[i] = i % 7; + z[i] = 0; + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_s16 8x8"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64 + image2d_t image2 = {y, 1, 1, 8, 8}; // Umage 64 + int16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_s16(&image1, &image2, &result, 8, 8, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int16_t result_ref = -1; + dspi_dotprod_off_s16_ansi(&image1, &image2, &result_ref, 8, 8, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_s16 16x16"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 16, 16}; // Umage 16x16 + int16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_s16(&image1, &image2, &result, 16, 16, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int16_t result_ref = -1; + dspi_dotprod_off_s16_ansi(&image1, &image2, &result_ref, 16, 16, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_s16 24x24"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 24, 24}; // Umage 24x24 + int16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_s16(&image1, &image2, &result, 24, 24, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int16_t result_ref = -1; + dspi_dotprod_off_s16_ansi(&image1, &image2, &result_ref, 24, 24, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_s16 32x32"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 32, 32}; // Umage 32x32 + int16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_s16(&image1, &image2, &result, 32, 32, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int16_t result_ref = -1; + dspi_dotprod_off_s16_ansi(&image1, &image2, &result_ref, 32, 32, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + + ESP_LOGI(TAG, "dspi_dotprod_off_s16 done"); + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s16_ansi.c new file mode 100644 index 0000000..230df0c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s16_ansi.c @@ -0,0 +1,69 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_off_s16_ansi"; + +TEST_CASE("dspi_dotprod_off_s16_ansi functionality", "[dspi]") +{ + int16_t check_value1 = 8676; + int16_t check_value2 = 8742; + int shift = 7; + int16_t offset = 11; + + int max_N = 1024; + int16_t *x = (int16_t *)malloc(max_N * sizeof(int16_t)); + int16_t *y = (int16_t *)malloc(max_N * sizeof(int16_t)); + int16_t *z = (int16_t *)malloc(max_N * sizeof(int16_t)); + for (size_t i = 0; i < 256; i++) { + x[i] = i % 8 + 255; + y[i] = i % 8 + 255; + z[i] = 0; + } + image2d_t image1 = {x, 2, 2, 8, 8}; // Image 8x8 + image2d_t image2 = {y, 2, 2, 8, 8}; // Umage 8x8 + int16_t result = -1; + dspi_dotprod_off_s16_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 1 = %i", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[1]; + image2.data = &y[1]; + result = -1; + dspi_dotprod_off_s16_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 2 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + image1.data = &x[image1.stride_x]; + image2.data = &y[image2.stride_x]; + result = -1; + dspi_dotprod_off_s16_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 3 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[image1.stride_x + 1]; + image2.data = &y[image2.stride_x + 1]; + result = -1; + dspi_dotprod_off_s16_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 4 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s8_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s8_aes3.c new file mode 100644 index 0000000..0124eb3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s8_aes3.c @@ -0,0 +1,123 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_off_s8"; + +TEST_CASE("dspi_dotprod_off_s8_aexx functionality", "[dspi]") +{ + int shift = 2; + int8_t offset = 5; + + int max_N = 16384; + int8_t *x = (int8_t *)memalign(16, (max_N) * sizeof(int8_t)); + int8_t *y = (int8_t *)memalign(16, (max_N) * sizeof(int8_t)); + int8_t *z = (int8_t *)memalign(16, max_N * sizeof(int8_t)); + + + printf("Data: x=%8.8"PRIx32", y=%8.8"PRIx32", z=%8.8"PRIx32" \n", (uint32_t)x, (uint32_t)y, (uint32_t)z); + for (size_t i = 0; i < max_N; i++) { + x[i] = i % 7; + y[i] = i % 7; + z[i] = 0; + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_s8 16x16"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 16, 16}; // Umage 16x16 + int8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_s8(&image1, &image2, &result, 16, 16, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int8_t result_ref = -1; + dspi_dotprod_off_s8_ansi(&image1, &image2, &result_ref, 16, 16, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_s8 32x32"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 32, 32}; // Umage 16x16 + int8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_s8(&image1, &image2, &result, 32, 32, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int8_t result_ref = -1; + dspi_dotprod_off_s8_ansi(&image1, &image2, &result_ref, 32, 32, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_s8 48x48"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 48, 48}; // Umage 48x48 + int8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_s8(&image1, &image2, &result, 48, 48, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int8_t result_ref = -1; + dspi_dotprod_off_s8_ansi(&image1, &image2, &result_ref, 48, 48, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_s8 64x64"); + image2d_t image1 = {&x[3], 1, 1, 128, 128}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 64, 64}; // Umage 32x32 + int8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_s8(&image1, &image2, &result, 64, 64, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int8_t result_ref = -1; + dspi_dotprod_off_s8_ansi(&image1, &image2, &result_ref, 64, 64, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_s8 128x128"); + image2d_t image1 = {&x[3], 1, 1, 128, 128}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 128, 128}; // Umage 32x32 + int8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_s8(&image1, &image2, &result, 128, 128, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int8_t result_ref = -1; + dspi_dotprod_off_s8_ansi(&image1, &image2, &result_ref, 128, 128, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + + ESP_LOGI(TAG, "dspi_dotprod_off_s8 done"); + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s8_ansi.c new file mode 100644 index 0000000..d3d58dd --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_s8_ansi.c @@ -0,0 +1,70 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_off_s8_ansi"; + +TEST_CASE("dspi_dotprod_off_s8_ansi functionality", "[dspi]") +{ + int8_t check_value1 = 98; + int8_t check_value2 = 106; + int shift = 7; + int8_t offset = 11; + + int max_N = 1024; + int8_t *x = (int8_t *)malloc(max_N * sizeof(int8_t)); + int8_t *y = (int8_t *)malloc(max_N * sizeof(int8_t)); + int8_t *z = (int8_t *)malloc(max_N * sizeof(int8_t)); + for (size_t i = 0; i < 256; i++) { + x[i] = i % 8 + 20; + y[i] = i % 8 + 20; + z[i] = 0; + } + image2d_t image1 = {x, 2, 2, 8, 8}; // Image 8x8 + image2d_t image2 = {y, 2, 2, 8, 8}; // Umage 8x8 + int8_t result = -1; + dspi_dotprod_off_s8_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 1 = %i", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[1]; + image2.data = &y[1]; + result = -1; + dspi_dotprod_off_s8_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 2 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + image1.data = &x[image1.stride_x]; + image2.data = &y[image2.stride_x]; + result = -1; + dspi_dotprod_off_s8_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 3 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[image1.stride_x + 1]; + image2.data = &y[image2.stride_x + 1]; + result = -1; + dspi_dotprod_off_s8_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 4 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u16_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u16_aes3.c new file mode 100644 index 0000000..da334ad --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u16_aes3.c @@ -0,0 +1,107 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_off_u16"; + +TEST_CASE("dspi_dotprod_off_u16_aexx functionality", "[dspi]") +{ + int shift = 2; + uint16_t offset = 7; + + int max_N = 8192; + uint16_t *x = (uint16_t *)memalign(16, max_N * sizeof(int16_t)); + uint16_t *y = (uint16_t *)memalign(16, max_N * sizeof(int16_t)); + uint16_t *z = (uint16_t *)memalign(16, max_N * sizeof(int16_t)); + + printf("Data: x=%8.8"PRIx32", y=%8.8"PRIx32", z=%8.8"PRIx32" \n", (uint32_t)x, (uint32_t)y, (uint32_t)z); + for (size_t i = 0; i < max_N; i++) { + x[i] = i % 7; + y[i] = i % 7; + z[i] = 0; + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_u16 8x8"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64 + image2d_t image2 = {y, 1, 1, 8, 8}; // Umage 64 + uint16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_u16(&image1, &image2, &result, 8, 8, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint16_t result_ref = -1; + dspi_dotprod_off_u16_ansi(&image1, &image2, &result_ref, 8, 8, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_u16 16x16"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 16, 16}; // Umage 16x16 + uint16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_u16(&image1, &image2, &result, 16, 16, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint16_t result_ref = -1; + dspi_dotprod_off_u16_ansi(&image1, &image2, &result_ref, 16, 16, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_u16 24x24"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 24, 24}; // Umage 24x24 + uint16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_u16(&image1, &image2, &result, 24, 24, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint16_t result_ref = -1; + dspi_dotprod_off_u16_ansi(&image1, &image2, &result_ref, 24, 24, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_u16 32x32"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 32, 32}; // Umage 32x32 + uint16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_u16(&image1, &image2, &result, 32, 32, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint16_t result_ref = -1; + dspi_dotprod_off_u16_ansi(&image1, &image2, &result_ref, 32, 32, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + + ESP_LOGI(TAG, "dspi_dotprod_off_u16 done"); + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u16_ansi.c new file mode 100644 index 0000000..5a7d9c4 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u16_ansi.c @@ -0,0 +1,70 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_off_u16_ansi"; + +TEST_CASE("dspi_dotprod_off_u16_ansi functionality", "[dspi]") +{ + uint16_t check_value1 = 8676; + uint16_t check_value2 = 8742; + int shift = 7; + uint16_t offset = 11; + + int max_N = 1024; + uint16_t *x = (uint16_t *)malloc(max_N * sizeof(uint16_t)); + uint16_t *y = (uint16_t *)malloc(max_N * sizeof(uint16_t)); + uint16_t *z = (uint16_t *)malloc(max_N * sizeof(uint16_t)); + for (size_t i = 0; i < 256; i++) { + x[i] = i % 8 + 255; + y[i] = i % 8 + 255; + z[i] = 0; + } + image2d_t image1 = {x, 2, 2, 8, 8}; // Image 8x8 + image2d_t image2 = {y, 2, 2, 8, 8}; // Umage 8x8 + uint16_t result = -1; + dspi_dotprod_off_u16_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 1 = %i", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[1]; + image2.data = &y[1]; + result = -1; + dspi_dotprod_off_u16_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 2 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + image1.data = &x[image1.stride_x]; + image2.data = &y[image2.stride_x]; + result = -1; + dspi_dotprod_off_u16_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 3 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[image1.stride_x + 1]; + image2.data = &y[image2.stride_x + 1]; + result = -1; + dspi_dotprod_off_u16_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 4 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u8_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u8_aes3.c new file mode 100644 index 0000000..4a27a4a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u8_aes3.c @@ -0,0 +1,122 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_off_u8"; + +TEST_CASE("dspi_dotprod_off_u8_aexx functionality", "[dspi]") +{ + int shift = 2; + uint8_t offset = 7; + + int max_N = 16384; + uint8_t *x = (uint8_t *)memalign(16, max_N * sizeof(uint8_t)); + uint8_t *y = (uint8_t *)memalign(16, max_N * sizeof(uint8_t)); + uint8_t *z = (uint8_t *)memalign(16, max_N * sizeof(uint8_t)); + + printf("Data: x=%8.8"PRIx32", y=%8.8"PRIx32", z=%8.8"PRIx32" \n", (uint32_t)x, (uint32_t)y, (uint32_t)z); + for (size_t i = 0; i < max_N; i++) { + x[i] = i % 7; + y[i] = i % 7; + z[i] = 0; + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_u8 16x16"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 16, 16}; // Umage 16x16 + uint8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_u8(&image1, &image2, &result, 16, 16, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint8_t result_ref = -1; + dspi_dotprod_off_u8_ansi(&image1, &image2, &result_ref, 16, 16, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_u8 32x32"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 32, 32}; // Umage 16x16 + uint8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_u8(&image1, &image2, &result, 32, 32, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint8_t result_ref = -1; + dspi_dotprod_off_u8_ansi(&image1, &image2, &result_ref, 32, 32, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_u8 48x48"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 48, 48}; // Umage 48x48 + uint8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_u8(&image1, &image2, &result, 48, 48, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint8_t result_ref = -1; + dspi_dotprod_off_u8_ansi(&image1, &image2, &result_ref, 48, 48, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_u8 64x64"); + image2d_t image1 = {&x[3], 1, 1, 128, 128}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 64, 64}; // Umage 32x32 + uint8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_u8(&image1, &image2, &result, 64, 64, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint8_t result_ref = -1; + dspi_dotprod_off_u8_ansi(&image1, &image2, &result_ref, 64, 64, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_off_u8 128x128"); + image2d_t image1 = {&x[3], 1, 1, 128, 128}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 128, 128}; // Umage 32x32 + uint8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_off_u8(&image1, &image2, &result, 128, 128, shift, offset); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint8_t result_ref = -1; + dspi_dotprod_off_u8_ansi(&image1, &image2, &result_ref, 128, 128, shift, offset); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + + ESP_LOGI(TAG, "dspi_dotprod_off_u8 done"); + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u8_ansi.c new file mode 100644 index 0000000..a008ffd --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_off_u8_ansi.c @@ -0,0 +1,70 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_off_u8_ansi"; + +TEST_CASE("dspi_dotprod_off_u8_ansi functionality", "[dspi]") +{ + uint8_t check_value1 = 98; + uint8_t check_value2 = 106; + int shift = 7; + uint8_t offset = 11; + + int max_N = 1024; + uint8_t *x = (uint8_t *)malloc(max_N * sizeof(uint8_t)); + uint8_t *y = (uint8_t *)malloc(max_N * sizeof(uint8_t)); + uint8_t *z = (uint8_t *)malloc(max_N * sizeof(uint8_t)); + for (size_t i = 0; i < 256; i++) { + x[i] = i % 8 + 20; + y[i] = i % 8 + 20; + z[i] = 0; + } + image2d_t image1 = {x, 2, 2, 8, 8}; // Image 8x8 + image2d_t image2 = {y, 2, 2, 8, 8}; // Umage 8x8 + uint8_t result = -1; + dspi_dotprod_off_u8_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 1 = %i", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[1]; + image2.data = &y[1]; + result = -1; + dspi_dotprod_off_u8_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 2 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + image1.data = &x[image1.stride_x]; + image2.data = &y[image2.stride_x]; + result = -1; + dspi_dotprod_off_u8_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 3 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[image1.stride_x + 1]; + image2.data = &y[image2.stride_x + 1]; + result = -1; + dspi_dotprod_off_u8_ansi(&image1, &image2, &result, 4, 4, shift, offset); + ESP_LOGI(TAG, "result 4 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s16_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s16_aes3.c new file mode 100644 index 0000000..c52790b --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s16_aes3.c @@ -0,0 +1,106 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_s16"; + +TEST_CASE("dspi_dotprod_s16_aexx functionality", "[dspi]") +{ + int shift = 2; + + int max_N = 8192; + int16_t *x = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + int16_t *z = (int16_t *)memalign(16, max_N * sizeof(int16_t)); + + printf("Data: x=%8.8"PRIx32", y=%8.8"PRIx32", z=%8.8"PRIx32" \n", (uint32_t)x, (uint32_t)y, (uint32_t)z); + for (size_t i = 0; i < max_N; i++) { + x[i] = i % 7; + y[i] = i % 7; + z[i] = 0; + } + { + ESP_LOGI(TAG, "dspi_dotprod_s16 8x8"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64 + image2d_t image2 = {y, 1, 1, 8, 8}; // Umage 64 + int16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_s16(&image1, &image2, &result, 8, 8, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int16_t result_ref = -1; + dspi_dotprod_s16_ansi(&image1, &image2, &result_ref, 8, 8, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_s16 16x16"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 16, 16}; // Umage 16x16 + int16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_s16(&image1, &image2, &result, 16, 16, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int16_t result_ref = -1; + dspi_dotprod_s16_ansi(&image1, &image2, &result_ref, 16, 16, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_s16 24x24"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 24, 24}; // Umage 24x24 + int16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_s16(&image1, &image2, &result, 24, 24, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int16_t result_ref = -1; + dspi_dotprod_s16_ansi(&image1, &image2, &result_ref, 24, 24, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_s16 32x32"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 32, 32}; // Umage 32x32 + int16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_s16(&image1, &image2, &result, 32, 32, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int16_t result_ref = -1; + dspi_dotprod_s16_ansi(&image1, &image2, &result_ref, 32, 32, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + + ESP_LOGI(TAG, "dspi_dotprod_s16 done"); + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s16_ansi.c new file mode 100644 index 0000000..6a29db2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s16_ansi.c @@ -0,0 +1,68 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_s16_ansi"; + +TEST_CASE("dspi_dotprod_s16_ansi functionality", "[dspi]") +{ + int16_t check_value1 = 8321; + int16_t check_value2 = 8386; + int shift = 7; + + int max_N = 1024; + int16_t *x = (int16_t *)malloc(max_N * sizeof(int16_t)); + int16_t *y = (int16_t *)malloc(max_N * sizeof(int16_t)); + int16_t *z = (int16_t *)malloc(max_N * sizeof(int16_t)); + for (size_t i = 0; i < 256; i++) { + x[i] = i % 8 + 255; + y[i] = i % 8 + 255; + z[i] = 0; + } + image2d_t image1 = {x, 2, 2, 8, 8}; // Image 8x8 + image2d_t image2 = {y, 2, 2, 8, 8}; // Umage 8x8 + int16_t result = -1; + dspi_dotprod_s16_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 1 = %i", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[1]; + image2.data = &y[1]; + result = -1; + dspi_dotprod_s16_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 2 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + image1.data = &x[image1.stride_x]; + image2.data = &y[image2.stride_x]; + result = -1; + dspi_dotprod_s16_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 3 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[image1.stride_x + 1]; + image2.data = &y[image2.stride_x + 1]; + result = -1; + dspi_dotprod_s16_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 4 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s8_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s8_aes3.c new file mode 100644 index 0000000..320786e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s8_aes3.c @@ -0,0 +1,121 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_s8"; + +TEST_CASE("dspi_dotprod_s8_aexx functionality", "[dspi]") +{ + int shift = 2; + + int max_N = 16384; + int8_t *x = (int8_t *)memalign(16, max_N * sizeof(int8_t)); + int8_t *y = (int8_t *)memalign(16, max_N * sizeof(int8_t)); + int8_t *z = (int8_t *)memalign(16, max_N * sizeof(int8_t)); + + printf("Data: x=%8.8"PRIx32", y=%8.8"PRIx32", z=%8.8"PRIx32" \n", (uint32_t)x, (uint32_t)y, (uint32_t)z); + for (size_t i = 0; i < max_N; i++) { + x[i] = i % 7; + y[i] = i % 7; + z[i] = 0; + } + { + ESP_LOGI(TAG, "dspi_dotprod_s8 16x16"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 16, 16}; // Umage 16x16 + int8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_s8(&image1, &image2, &result, 16, 16, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int8_t result_ref = -1; + dspi_dotprod_s8_ansi(&image1, &image2, &result_ref, 16, 16, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_s8 32x32"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 32, 32}; // Umage 16x16 + int8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_s8(&image1, &image2, &result, 32, 32, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int8_t result_ref = -1; + dspi_dotprod_s8_ansi(&image1, &image2, &result_ref, 32, 32, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_s8 48x48"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 48, 48}; // Umage 48x48 + int8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_s8(&image1, &image2, &result, 48, 48, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int8_t result_ref = -1; + dspi_dotprod_s8_ansi(&image1, &image2, &result_ref, 48, 48, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_s8 64x64"); + image2d_t image1 = {&x[3], 1, 1, 128, 128}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 64, 64}; // Umage 32x32 + int8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_s8(&image1, &image2, &result, 64, 64, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int8_t result_ref = -1; + dspi_dotprod_s8_ansi(&image1, &image2, &result_ref, 64, 64, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_s8 128x128"); + image2d_t image1 = {&x[3], 1, 1, 128, 128}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 128, 128}; // Umage 32x32 + int8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_s8(&image1, &image2, &result, 128, 128, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + int8_t result_ref = -1; + dspi_dotprod_s8_ansi(&image1, &image2, &result_ref, 128, 128, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + + ESP_LOGI(TAG, "dspi_dotprod_s8 done"); + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s8_ansi.c new file mode 100644 index 0000000..6db1a26 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_s8_ansi.c @@ -0,0 +1,68 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = ""; + +TEST_CASE("dspi_dotprod_s8_ansi functionality", "[dspi]") +{ + int8_t check_value1 = 67; + int8_t check_value2 = 73; + int shift = 7; + + int max_N = 1024; + int8_t *x = (int8_t *)malloc(max_N * sizeof(int8_t)); + int8_t *y = (int8_t *)malloc(max_N * sizeof(int8_t)); + int8_t *z = (int8_t *)malloc(max_N * sizeof(int8_t)); + for (size_t i = 0; i < 256; i++) { + x[i] = i % 8 + 20; + y[i] = i % 8 + 20; + z[i] = 0; + } + image2d_t image1 = {x, 2, 2, 8, 8}; // Image 8x8 + image2d_t image2 = {y, 2, 2, 8, 8}; // Umage 8x8 + int8_t result = -1; + dspi_dotprod_s8_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 1 = %i", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[1]; + image2.data = &y[1]; + result = -1; + dspi_dotprod_s8_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 2 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + image1.data = &x[image1.stride_x]; + image2.data = &y[image2.stride_x]; + result = -1; + dspi_dotprod_s8_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 3 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[image1.stride_x + 1]; + image2.data = &y[image2.stride_x + 1]; + result = -1; + dspi_dotprod_s8_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 4 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u16_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u16_aes3.c new file mode 100644 index 0000000..6d2c569 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u16_aes3.c @@ -0,0 +1,106 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_u16"; + +TEST_CASE("dspi_dotprod_u16_aexx functionality", "[dspi]") +{ + int shift = 2; + + int max_N = 8192; + uint16_t *x = (uint16_t *)memalign(16, max_N * sizeof(int16_t)); + uint16_t *y = (uint16_t *)memalign(16, max_N * sizeof(int16_t)); + uint16_t *z = (uint16_t *)memalign(16, max_N * sizeof(int16_t)); + + printf("Data: x=%8.8"PRIx32", y=%8.8"PRIx32", z=%8.8"PRIx32" \n", (uint32_t)x, (uint32_t)y, (uint32_t)z); + for (size_t i = 0; i < max_N; i++) { + x[i] = i % 7; + y[i] = i % 7; + z[i] = 0; + } + { + ESP_LOGI(TAG, "dspi_dotprod_u16 8x8"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64 + image2d_t image2 = {y, 1, 1, 8, 8}; // Umage 64 + uint16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_u16(&image1, &image2, &result, 8, 8, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", (end_b - start_b)); + ESP_LOGI(TAG, "result 1 = %i", result); + uint16_t result_ref = -1; + dspi_dotprod_u16_ansi(&image1, &image2, &result_ref, 8, 8, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_u16 16x16"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 16, 16}; // Umage 16x16 + uint16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_u16(&image1, &image2, &result, 16, 16, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint16_t result_ref = -1; + dspi_dotprod_u16_ansi(&image1, &image2, &result_ref, 16, 16, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_u16 24x24"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 24, 24}; // Umage 24x24 + uint16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_u16(&image1, &image2, &result, 24, 24, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint16_t result_ref = -1; + dspi_dotprod_u16_ansi(&image1, &image2, &result_ref, 24, 24, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_u16 32x32"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 32, 32}; // Umage 32x32 + uint16_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_u16(&image1, &image2, &result, 32, 32, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint16_t result_ref = -1; + dspi_dotprod_u16_ansi(&image1, &image2, &result_ref, 32, 32, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + + ESP_LOGI(TAG, "dspi_dotprod_u16 done"); + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u16_ansi.c new file mode 100644 index 0000000..186ea2d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u16_ansi.c @@ -0,0 +1,68 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_u16_ansi"; + +TEST_CASE("dspi_dotprod_u16_ansi functionality", "[dspi]") +{ + uint16_t check_value1 = 8321; + uint16_t check_value2 = 8386; + int shift = 7; + + int max_N = 1024; + uint16_t *x = (uint16_t *)malloc(max_N * sizeof(uint16_t)); + uint16_t *y = (uint16_t *)malloc(max_N * sizeof(uint16_t)); + uint16_t *z = (uint16_t *)malloc(max_N * sizeof(uint16_t)); + for (size_t i = 0; i < 256; i++) { + x[i] = i % 8 + 255; + y[i] = i % 8 + 255; + z[i] = 0; + } + image2d_t image1 = {x, 2, 2, 8, 8}; // Image 8x8 + image2d_t image2 = {y, 2, 2, 8, 8}; // Umage 8x8 + uint16_t result = -1; + dspi_dotprod_u16_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 1 = %i", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[1]; + image2.data = &y[1]; + result = -1; + dspi_dotprod_u16_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 2 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + image1.data = &x[image1.stride_x]; + image2.data = &y[image2.stride_x]; + result = -1; + dspi_dotprod_u16_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 3 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[image1.stride_x + 1]; + image2.data = &y[image2.stride_x + 1]; + result = -1; + dspi_dotprod_u16_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 4 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u8_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u8_aes3.c new file mode 100644 index 0000000..8c55f94 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u8_aes3.c @@ -0,0 +1,121 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = "dspi_dotprod_u8"; + +TEST_CASE("dspi_dotprod_u8_aexx functionality", "[dspi]") +{ + int shift = 2; + + int max_N = 16384; + uint8_t *x = (uint8_t *)memalign(16, max_N * sizeof(uint8_t)); + uint8_t *y = (uint8_t *)memalign(16, max_N * sizeof(uint8_t)); + uint8_t *z = (uint8_t *)memalign(16, max_N * sizeof(uint8_t)); + + printf("Data: x=%8.8"PRIx32", y=%8.8"PRIx32", z=%8.8"PRIx32" \n", (uint32_t)x, (uint32_t)y, (uint32_t)z); + for (size_t i = 0; i < max_N; i++) { + x[i] = i % 7; + y[i] = i % 7; + z[i] = 0; + } + { + ESP_LOGI(TAG, "dspi_dotprod_u8 16x16"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 16, 16}; // Umage 16x16 + uint8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_u8(&image1, &image2, &result, 16, 16, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint8_t result_ref = -1; + dspi_dotprod_u8_ansi(&image1, &image2, &result_ref, 16, 16, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_u8 32x32"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 32, 32}; // Umage 16x16 + uint8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_u8(&image1, &image2, &result, 32, 32, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint8_t result_ref = -1; + dspi_dotprod_u8_ansi(&image1, &image2, &result_ref, 32, 32, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_u8 48x48"); + image2d_t image1 = {&x[3], 1, 1, 64, 64}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 48, 48}; // Umage 48x48 + uint8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_u8(&image1, &image2, &result, 48, 48, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint8_t result_ref = -1; + dspi_dotprod_u8_ansi(&image1, &image2, &result_ref, 48, 48, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_u8 64x64"); + image2d_t image1 = {&x[3], 1, 1, 128, 128}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 64, 64}; // Umage 32x32 + uint8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_u8(&image1, &image2, &result, 64, 64, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint8_t result_ref = -1; + dspi_dotprod_u8_ansi(&image1, &image2, &result_ref, 64, 64, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + { + ESP_LOGI(TAG, "dspi_dotprod_u8 128x128"); + image2d_t image1 = {&x[3], 1, 1, 128, 128}; // Image 64x64 + image2d_t image2 = {y, 1, 1, 128, 128}; // Umage 32x32 + uint8_t result = -1; + unsigned int start_b = xthal_get_ccount(); + dspi_dotprod_u8(&image1, &image2, &result, 128, 128, shift); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "cycles = %i", end_b - start_b); + ESP_LOGI(TAG, "result 1 = %i", result); + uint8_t result_ref = -1; + dspi_dotprod_u8_ansi(&image1, &image2, &result_ref, 128, 128, shift); + ESP_LOGI(TAG, "result ref = %i", result_ref); + TEST_ASSERT_EQUAL( result, result_ref); + } + + ESP_LOGI(TAG, "dspi_dotprod_u8 done"); + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u8_ansi.c new file mode 100644 index 0000000..a8abd76 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/dotprod/test/test_dspi_dotprod_u8_ansi.c @@ -0,0 +1,68 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspi_dotprod.h" +#include "dsp_tests.h" + +static const char *TAG = ""; + +TEST_CASE("dspi_dotprod_u8_ansi functionality", "[dspi]") +{ + uint8_t check_value1 = 67; + uint8_t check_value2 = 73; + int shift = 7; + + int max_N = 1024; + uint8_t *x = (uint8_t *)malloc(max_N * sizeof(uint8_t)); + uint8_t *y = (uint8_t *)malloc(max_N * sizeof(uint8_t)); + uint8_t *z = (uint8_t *)malloc(max_N * sizeof(uint8_t)); + for (size_t i = 0; i < 256; i++) { + x[i] = i % 8 + 20; + y[i] = i % 8 + 20; + z[i] = 0; + } + image2d_t image1 = {x, 2, 2, 8, 8}; // Image 8x8 + image2d_t image2 = {y, 2, 2, 8, 8}; // Umage 8x8 + uint8_t result = -1; + dspi_dotprod_u8_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 1 = %i", result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[1]; + image2.data = &y[1]; + result = -1; + dspi_dotprod_u8_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 2 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + image1.data = &x[image1.stride_x]; + image2.data = &y[image2.stride_x]; + result = -1; + dspi_dotprod_u8_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 3 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value1); + image1.data = &x[image1.stride_x + 1]; + image2.data = &y[image2.stride_x + 1]; + result = -1; + dspi_dotprod_u8_ansi(&image1, &image2, &result, 4, 4, shift); + ESP_LOGI(TAG, "result 4 = %i", (int)result); + TEST_ASSERT_EQUAL( result, check_value2); + + free(x); + free(y); + free(z); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_ae32.S new file mode 100644 index 0000000..3ad400b --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_ae32.S @@ -0,0 +1,180 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fft2r_platform.h" +#if (dsps_fft2r_sc16_ae32_enabled == 1) + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .global dsps_fft2r_sc16_ae32_ + .type dsps_fft2r_sc16_ae32_,@function + + .global dsps_fft_w_table_sc16; + +//The function implements the following C code: +//esp_err_t dsps_fft2r_sc16_ansi(int16_t *data, int N) +//{ +// esp_err_t result = ESP_OK; +// uint32_t *w = (uint32_t*)dsps_fft_w_table_sc16; +// uint32_t *in_data = (uint32_t *)data; +// int ie, ia, m; +// sc16_t temp; +// sc16_t cs;// c - re, s - im +// sc16_t m_data; +// sc16_t a_data; + +// ie = 1; +// for (int N2 = N / 2; N2 > 0; N2 >>= 1) { +// ia = 0; +// for (int j = 0; j < ie; j++) { +// cs.data = w[j]; +// //c = w[2 * j]; +// //s = w[2 * j + 1]; +// for (int i = 0; i < N2; i++) { +// m = ia + N2; +// m_data.data = in_data[m]; +// a_data.data = in_data[ia]; +// sc16_t m1; +// m1.re = xtfixed_bf_1(a_data.re, cs.re, m_data.re, cs.im, m_data.im, 16);//(a_data.re - temp.re + shift_const) >> 1; +// m1.im = xtfixed_bf_2(a_data.im, cs.re, m_data.im, cs.im, m_data.re, 16);//(a_data.im - temp.im + shift_const) >> 1; +// in_data[m] = m1.data; +// sc16_t m2; +// m2.re = xtfixed_bf_3(a_data.re, cs.re, m_data.re, cs.im, m_data.im, 16);//(a_data.re + temp.re + shift_const) >> 1; +// m2.im = xtfixed_bf_4(a_data.im, cs.re, m_data.im, cs.im, m_data.re, 16);//(a_data.im + temp.im + shift_const)>>1; +// in_data[ia] = m2.data; +// ia++; +// } +// ia += N2; +// } +// ie <<= 1; +// } +// return result; +// } + +dsps_fft2r_sc16_ae32_: +//esp_err_t dsps_fft2r_sc16_ansi(float *data, int N, float* dsps_fft_w_table_sc16) + + entry a1, 16 + // Array increment for floating point data should be 4 +// data - a2 +// N - a3 +// dsps_fft_w_table_sc16 - a4 - for now + +// a5 - 1, used to initialize acc +// a6 - k, main loop counter; N2 - for (int N2 = N/2; N2 > 0; N2 >>= 1) +// a7 - ie +// a8 - j +// a9 - test +// a10 - (j)<<2, or a10 - j<<2 +// a11 - ia +// a12 - m +// a13 - ia pointer +// a14 - m pointer +// a15 - used to shift result + + // This instruction are not working. Have to be fixed!!! + // For now theres no solution... +// l32r a4, dsps_fft_w_table_sc16_ae32 + // To use ldinc operation we have to prepare a4: + addi a4, a4, -4 + addi a9, a2, -4 // prepare input pointer for ldinc operation + + ldinc m1, a4 // Load [0x7fff j0] value to the m1 + addi a4, a4, -4 + + // a5 used to load 0x7fff and clear acch/l + movi.n a5, 1 // a5 = 1; + + srli a6, a3, 1 // a6 = N2 = N/2 + + // Load shift register + movi a7, 16 + ssr a7 + + movi a7, 1 // a7 - ie + +fft2r_l1: + movi a8, 0 // a8 - j + movi a11,0 // a11 = ia = 0; + +fft2r_l2: // loop for j, a8 - j + slli a10, a8, 2 // a10 = j<<2 (4 bytes per address) // shift for cs.data = w[j]; + add.n a10, a10, a4 // a10 - pointer to w tables + ldinc m0, a10 // cs.data = w[j]; + // here we have m0 and m1 + + loopnez a6, fft2r_l3 + add.n a12, a11, a6 // a12 = m = ia + N2 + + slli a14, a12, 2 // a14 - pointer for m, m_data.data = in_data[m]; + slli a13, a11, 2 // a13 - pointer for ia, a_data.data = in_data[ia]; + add.n a14, a14, a9 // pointers to data arrays + add.n a13, a13, a9 // These pointers are -4 from expected values... + + ldinc m2, a14 // m_data, a14 += 4; The pointers ready to store data + mul.da.ll m1, a5 // acc = 0x7fff*1 + ldinc m3, a13 // ai_data a13 += 4; + // re - l, im - h + muls.dd.ll m0, m2 // acc -= cs.re*m_data.re + mula.dd.ll m1, m3 // acc += 0x7fff*a_data.re + muls.dd.hh m0, m2 // acc -= cs.im*m_data.im + // result in acclo in_data[m].re + rsr a15, acclo + mul.da.ll m1, a5 // acc = 0x7fff*1 + sra a15, a15 + muls.dd.lh m0, m2 // acc -= cs.re*m_data.im + s16i a15, a14, 0 + mula.dd.lh m1, m3 // acc += 0x7fff*a_data.im + mula.dd.hl m0, m2 // acc += cs.im*m_data.re + // result in acclo in_data[m].im + rsr a15, acclo + mul.da.ll m1, a5 // acc = 0x7fff*1 + sra a15, a15 + mula.dd.ll m0, m2 // acc += cs.re*m_data.re + s16i a15, a14, 2 + mula.dd.ll m1, m3 // acc += 0x7fff*a_data.re + mula.dd.hh m0, m2 // acc += cs.im*m_data.im + // result in acclo // in_data[ia].re + rsr a15, acclo + mul.da.ll m1, a5 // acc = 0x7fff*1 + + sra a15, a15 + mula.dd.lh m0, m2 // acc += cs.re*m_data.im + s16i a15, a13, 0 + + mula.dd.lh m1, m3 // acc += 0x7fff*a_data.im + muls.dd.hl m0, m2 // acc -= cs.im*m_data.re + // result in acclo // in_data[ia].im + rsr a15, acclo + + sra a15, a15 + s16i a15, a13, 2 + + // Here we have m0 - w, m2 - m_data, m3 - ai_data, + addi a11, a11, 1// ia++ +fft2r_l3: + add a11, a11, a6 + + addi a8, a8, 1 // j++ + BNE a8, a7, fft2r_l2 // + slli a7, a7, 1 // ie = ie<<1 +// main loop: for (int k = N/2; k > 0; k >>= 1) + srli a6, a6, 1 // a6 = a6>>1 + BNEZ a6, fft2r_l1// Jump if > 0 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_fft2r_sc16_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_aes3.S new file mode 100644 index 0000000..041e1ae --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_aes3.S @@ -0,0 +1,169 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fft2r_platform.h" +#if (dsps_fft2r_sc16_aes3_enabled == 1) + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .literal_position + .literal .LC0_5_39, dsps_fft2r_sc16_initialized + .literal .LC1_5_40, 32767 + .literal .LC2_5_41, 458756 + .literal .LC3_5_42, 458753 + + # Program Unit: dsps_fft2r_sc16_aes3_ + .type dsps_fft2r_sc16_aes3_, @function + .align 4 + .global dsps_fft2r_sc16_aes3_ +dsps_fft2r_sc16_aes3_: # 0x4 + # q3 = 16 + # temp_round = 0 + # temp_round_ptr = 4 +.LBB1_dsps_fft2r_sc16_aes3_: # 0x4 + .frequency 1.000 0.000 + entry a1,64 # + mov.n a10,a3 # [0] + .type dsp_is_power_of_two, @function + call8 dsp_is_power_of_two # [1] dsp_is_power_of_two + + beqz.n a10,.LBB4_dsps_fft2r_sc16_aes3_ # [0] + + l32r a8,.LC0_5_39 # [0] + l8ui a8,a8,0 # [2] id:207 dsps_fft2r_sc16_initialized+0x0 + beqz.n a8,.LBB6_dsps_fft2r_sc16_aes3_ # [4] + + mov.n a9,a1 # [0] + l32r a8,.LC1_5_40 # [1] + addi.n a6,a3,1 # [2] + movi.n a10,16 # [3] + wsr.sar a10 # [4] + movgez a6,a3,a3 # [5] + s16i a8,a1,0 # [6] temp_round + ee.vldbc.16.ip q6,a9,0 # [7] id:209 + srai a6,a6,1 # [8] + bltui a6,3,.Lt_0_13826 # [9] + + movi.n a5,1 # [0] + +.Lt_0_9218: # 0x33 + mov.n a13,a4 # [0] + mov.n a9,a2 # [1] + beqz.n a5,.Lt_0_9474 # [2] + + srli a3,a6,2 # [0] + movi.n a14,0 # [1] + slli a15,a6,2 # [2] + add.n a8,a15,a9 # [3] + +.Lt_0_9986: # 0x43 + ee.vldbc.32.ip q5,a13,4 # [0] id:215 + loopnez a3,.LBB54_dsps_fft2r_sc16_aes3_ # [1] + +.LBB52_dsps_fft2r_sc16_aes3_: # 0x49 + ee.vld.128.ip q0,a8,0 # [0*II+0] id:217 + ee.vld.128.ip q2,a9,0 # [0*II+1] id:216 + ee.cmul.s16 q1,q5,q0,2 # [0*II+2] + ee.vmul.s16 q2,q2,q6 # [0*II+3] + ee.cmul.s16 q1,q5,q0,3 # [0*II+4] + ee.vsubs.s16 q3,q2,q1 # [0*II+6] + ee.vadds.s16.st.incp q3,a8,q3,q2,q1 # [0*II+7] id:221 + ee.vst.128.ip q3,a9,16 # [0*II+8] id:222 + +.LBB54_dsps_fft2r_sc16_aes3_: # 0x62 + addi.n a14,a14,1 # [0] + add.n a9,a9,a15 # [1] + add.n a8,a15,a9 # [2] + bne a14,a5,.Lt_0_9986 # [3] + +.Lt_0_9474: # 0x6b + slli a5,a5,1 # [0] + srli a6,a6,1 # [1] + bgeui a6,3,.Lt_0_9218 # [2] + + srli a10,a5,1 # [0] + beqz.n a10,.Lt_0_14594 # [1] + + mov.n a9,a4 # [0] + mv.qr q4,q1 # [1] + mov.n a8,a2 # [2] + mv.qr q1,q0 # [3] + mv.qr q0,q2 # [4] + loopnez a10,.LBB76_dsps_fft2r_sc16_aes3_ # [5] + +.LBB74_dsps_fft2r_sc16_aes3_: # 0x89 + ee.vld.l.64.ip q0,a8,8 # [0*II+0] id:225 + ee.vldbc.32.ip q2,a9,4 # [0*II+1] id:223 + ee.vld.l.64.ip q1,a8,8 # [0*II+2] id:226 + ee.vldbc.32.ip q3,a9,4 # [0*II+3] id:224 + ee.vld.h.64.ip q0,a8,8 # [0*II+4] id:227 + ee.vunzip.32 q2,q3 # [0*II+5] + ee.vld.h.64.ip q1,a8,-24 # [0*II+6] id:228 + ee.vmul.s16 q0,q0,q6 # [0*II+7] + ee.cmul.s16 q4,q2,q1,2 # [0*II+8] + ee.cmul.s16 q4,q2,q1,3 # [0*II+9] + ee.vadds.s16 q2,q0,q4 # [0*II+11] + ee.vsubs.s16 q3,q0,q4 # [0*II+12] + ee.vst.l.64.ip q2,a8,8 # [0*II+13] id:232 + ee.vst.l.64.ip q3,a8,8 # [0*II+14] id:233 + ee.vst.h.64.ip q2,a8,8 # [0*II+15] id:234 + ee.vst.h.64.ip q3,a8,8 # [0*II+16] id:235 + +.LBB76_dsps_fft2r_sc16_aes3_: # 0xb9 + .frequency 0.608 0.000 + st.qr q4,a1,16 # [0] q3 + +.Lt_0_11778: # 0xbc + ld.qr q3,a1,16 # [0] q3 + slli a10,a5,1 # [1] + srli a10,a10,2 # [2] + loopnez a10,.LBB98_dsps_fft2r_sc16_aes3_ # [3] + +.LBB96_dsps_fft2r_sc16_aes3_: # 0xc8 + ee.vld.128.ip q0,a2,16 # [0*II+0] id:237 + ee.vld.128.ip q1,a2,-16 # [0*II+1] id:238 + ee.vld.128.ip q2,a4,16 # [0*II+2] id:236 + ee.vunzip.32 q0,q1 # [0*II+3] + ee.cmul.s16 q3,q2,q1,2 # [0*II+4] + ee.vmul.s16 q0,q0,q6 # [0*II+5] + ee.cmul.s16 q3,q2,q1,3 # [0*II+6] + ee.vsubs.s16 q1,q0,q3 # [0*II+8] + ee.vadds.s16 q0,q0,q3 # [0*II+9] + ee.vzip.32 q0,q1 # [0*II+10] + ee.vst.128.ip q0,a2,16 # [0*II+11] id:242 + ee.vst.128.ip q1,a2,16 # [0*II+12] id:243 + +.LBB98_dsps_fft2r_sc16_aes3_: # 0xec + movi.n a2,0 # [0] + retw.n # [1] + +.Lt_0_13826: # 0xf0 + movi.n a5,1 # [0] + j .Lt_0_11778 # [1] + +.LBB6_dsps_fft2r_sc16_aes3_: # 0xf5 + l32r a2,.LC2_5_41 # [0] + retw.n # [1] + +.LBB4_dsps_fft2r_sc16_aes3_: # 0xfa + l32r a2,.LC3_5_42 # [0] + retw.n # [1] + +.Lt_0_14594: # 0xff + st.qr q1,a1,16 # [0] q3 + j .Lt_0_11778 # [1] + + +#endif // dsps_fft2r_sc16_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_ansi.c new file mode 100644 index 0000000..ac2fc45 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/fixed/dsps_fft2r_sc16_ansi.c @@ -0,0 +1,318 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fft2r.h" +#include "dsp_common.h" +#include "dsp_types.h" +#include +#include "esp_attr.h" +#include + + +int16_t *dsps_fft_w_table_sc16; +int dsps_fft_w_table_sc16_size; +uint8_t dsps_fft2r_sc16_initialized = 0; +uint8_t dsps_fft2r_sc16_mem_allocated = 0; + +unsigned short reverse(unsigned short x, unsigned short N, int order); + +static const int add_rount_mult = 0x7fff; +static const int mult_shift_const = 0x7fff; // Used to shift data << 15 + +static inline int16_t xtfixed_bf_1(int16_t a0, int16_t a1, int16_t a2, int16_t a3, int16_t a4, int result_shift) +{ + int result = a0 * mult_shift_const; + result -= (int32_t)a1 * (int32_t)a2 + (int32_t)a3 * (int32_t)a4; + result += add_rount_mult; + result = result >> result_shift; + return (int16_t)result; +} + +static inline int16_t xtfixed_bf_2(int16_t a0, int16_t a1, int16_t a2, int16_t a3, int16_t a4, int result_shift) +{ + int result = a0 * mult_shift_const; + result -= ((int32_t)a1 * (int32_t)a2 - (int32_t)a3 * (int32_t)a4); + result += add_rount_mult; + result = result >> result_shift; + return (int16_t)result; +} + +static inline int16_t xtfixed_bf_3(int16_t a0, int16_t a1, int16_t a2, int16_t a3, int16_t a4, int result_shift) +{ + int result = a0 * mult_shift_const; + result += (int32_t)a1 * (int32_t)a2 + (int32_t)a3 * (int32_t)a4; + result += add_rount_mult; + result = result >> result_shift; + return (int16_t)result; +} + +static inline int16_t xtfixed_bf_4(int16_t a0, int16_t a1, int16_t a2, int16_t a3, int16_t a4, int result_shift) +{ + int result = a0 * mult_shift_const; + result += (int32_t)a1 * (int32_t)a2 - (int32_t)a3 * (int32_t)a4; + result += add_rount_mult; + result = result >> result_shift; + return (int16_t)result; +} + +esp_err_t dsps_fft2r_init_sc16(int16_t *fft_table_buff, int table_size) +{ + esp_err_t result = ESP_OK; + if (dsps_fft2r_sc16_initialized != 0) { + return result; + } + if (table_size > CONFIG_DSP_MAX_FFT_SIZE) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (table_size == 0) { + return result; + } + if (fft_table_buff != NULL) { + if (dsps_fft2r_sc16_mem_allocated) { + return ESP_ERR_DSP_REINITIALIZED; + } + dsps_fft_w_table_sc16 = fft_table_buff; + dsps_fft_w_table_sc16_size = table_size; + } else { + if (!dsps_fft2r_sc16_mem_allocated) { +#if CONFIG_IDF_TARGET_ESP32S3 + dsps_fft_w_table_sc16 = (int16_t *)memalign(16, CONFIG_DSP_MAX_FFT_SIZE * sizeof(int16_t)); +#else + dsps_fft_w_table_sc16 = (int16_t *)malloc(CONFIG_DSP_MAX_FFT_SIZE * sizeof(int16_t)); +#endif + } + dsps_fft_w_table_sc16_size = CONFIG_DSP_MAX_FFT_SIZE; + dsps_fft2r_sc16_mem_allocated = 1; + } + + result = dsps_gen_w_r2_sc16(dsps_fft_w_table_sc16, dsps_fft_w_table_sc16_size); + if (result != ESP_OK) { + return result; + } + result = dsps_bit_rev_sc16_ansi(dsps_fft_w_table_sc16, dsps_fft_w_table_sc16_size >> 1); + if (result != ESP_OK) { + return result; + } + dsps_fft2r_sc16_initialized = 1; + return ESP_OK; +} + +void dsps_fft2r_deinit_sc16() +{ + if (dsps_fft2r_sc16_mem_allocated) { + free(dsps_fft_w_table_sc16); + } + dsps_fft2r_sc16_mem_allocated = 0; + dsps_fft2r_sc16_initialized = 0; +} + +esp_err_t dsps_fft2r_sc16_ansi_(int16_t *data, int N, int16_t *sc_table) +{ + if (!dsp_is_power_of_two(N)) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + if (!dsps_fft2r_sc16_initialized) { + return ESP_ERR_DSP_UNINITIALIZED; + } + + esp_err_t result = ESP_OK; + + uint32_t *w = (uint32_t *)sc_table; + uint32_t *in_data = (uint32_t *)data; + + int ie, ia, m; + sc16_t cs;// c - re, s - im + sc16_t m_data; + sc16_t a_data; + + ie = 1; + for (int N2 = N / 2; N2 > 0; N2 >>= 1) { + ia = 0; + for (int j = 0; j < ie; j++) { + cs.data = w[j]; + //c = w[2 * j]; + //s = w[2 * j + 1]; + for (int i = 0; i < N2; i++) { + m = ia + N2; + m_data.data = in_data[m]; + a_data.data = in_data[ia]; + //data[2 * m] = data[2 * ia] - re_temp; + //data[2 * m + 1] = data[2 * ia + 1] - im_temp; + sc16_t m1; + m1.re = xtfixed_bf_1(a_data.re, cs.re, m_data.re, cs.im, m_data.im, 16);//(a_data.re - temp.re + shift_const) >> 1; + m1.im = xtfixed_bf_2(a_data.im, cs.re, m_data.im, cs.im, m_data.re, 16);//(a_data.im - temp.im + shift_const) >> 1; + in_data[m] = m1.data; + + //data[2 * ia] = data[2 * ia] + re_temp; + //data[2 * ia + 1] = data[2 * ia + 1] + im_temp; + sc16_t m2; + m2.re = xtfixed_bf_3(a_data.re, cs.re, m_data.re, cs.im, m_data.im, 16);//(a_data.re + temp.re + shift_const) >> 1; + m2.im = xtfixed_bf_4(a_data.im, cs.re, m_data.im, cs.im, m_data.re, 16);//(a_data.im + temp.im + shift_const)>>1; + in_data[ia] = m2.data; + ia++; + } + ia += N2; + } + ie <<= 1; + } + return result; +} + + +static inline unsigned short reverse_sc16(unsigned short x, unsigned short N, int order) +{ + unsigned short b = x; + + b = (b & 0xff00) >> 8 | (b & 0x00fF) << 8; + b = (b & 0xf0F0) >> 4 | (b & 0x0f0F) << 4; + b = (b & 0xCCCC) >> 2 | (b & 0x3333) << 2; + b = (b & 0xAAAA) >> 1 | (b & 0x5555) << 1; + return b >> (16 - order); +} + +esp_err_t dsps_bit_rev_sc16_ansi(int16_t *data, int N) +{ + if (!dsp_is_power_of_two(N)) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + esp_err_t result = ESP_OK; + + int j, k; + uint32_t temp; + uint32_t *in_data = (uint32_t *)data; + j = 0; + for (int i = 1; i < (N - 1); i++) { + k = N >> 1; + while (k <= j) { + j -= k; + k >>= 1; + } + j += k; + if (i < j) { + temp = in_data[j]; + in_data[j] = in_data[i]; + in_data[i] = temp; + } + } + return result; +} + +esp_err_t dsps_gen_w_r2_sc16(int16_t *w, int N) +{ + if (!dsp_is_power_of_two(N)) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + + esp_err_t result = ESP_OK; + + int i; + float e = M_PI * 2.0 / N; + + for (i = 0; i < (N >> 1); i++) { + w[2 * i] = (int16_t)(INT16_MAX * cosf(i * e)); + w[2 * i + 1] = (int16_t)(INT16_MAX * sinf(i * e)); + } + + return result; +} + +esp_err_t dsps_cplx2reC_sc16(int16_t *data, int N) +{ + if (!dsp_is_power_of_two(N)) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + esp_err_t result = ESP_OK; + + int i; + int n2 = N << (1); // we will operate with int32 indexes + uint32_t *in_data = (uint32_t *)data; + + sc16_t kl; + sc16_t kh; + sc16_t nl; + sc16_t nh; + + for (i = 0; i < (N / 4); i++) { + kl.data = in_data[i + 1]; + nl.data = in_data[N - i - 1]; + kh.data = in_data[i + 1 + N / 2]; + nh.data = in_data[N - i - 1 - N / 2]; + + data[i * 2 + 0 + 2] = kl.re + nl.re; + data[i * 2 + 1 + 2] = kl.im - nl.im; + + data[n2 - i * 2 - 1 - N] = kh.re + nh.re; + data[n2 - i * 2 - 2 - N] = kh.im - nh.im; + + data[i * 2 + 0 + 2 + N] = kl.im + nl.im; + data[i * 2 + 1 + 2 + N] = kl.re - nl.re; + + data[n2 - i * 2 - 1] = kh.im + nh.im; + data[n2 - i * 2 - 2] = kh.re - nh.re; + } + data[N] = data[1]; + data[1] = 0; + data[N + 1] = 0; + + return result; +} + +esp_err_t dsps_cplx2real_sc16_ansi(int16_t *data, int N) +{ + + int order = dsp_power_of_two(N); + sc16_t *table = (sc16_t *)dsps_fft_w_table_sc16; + sc16_t *result = (sc16_t *)data; + // Original formula... + // result[0].re = result[0].re + result[0].im; + // result[N].re = result[0].re - result[0].im; + // result[0].im = 0; + // result[N].im = 0; + // Optimized one: + int16_t tmp_re = result[0].re; + result[0].re = (tmp_re + result[0].im) >> 1; + result[0].im = (tmp_re - result[0].im) >> 1; + + sc16_t f1k, f2k; + for (int k = 1; k <= N / 2 ; ++k ) { + sc16_t fpk = result[k]; + sc16_t fpnk; + fpnk.re = result[N - k].re; + fpnk.im = result[N - k].im; + f1k.re = fpk.re + fpnk.re; + f1k.im = fpk.im - fpnk.im; + f2k.re = fpk.re - fpnk.re; + f2k.im = fpk.im + fpnk.im; + + int table_index = reverse(k, N, order); + + // float c = -dsps_fft_w_table_fc32[table_index*2+1]; + // float s = -dsps_fft_w_table_fc32[table_index*2+0]; + sc16_t w = table[table_index]; + + sc16_t tw; + { + int re = (w.re * f2k.im - w.im * f2k.re) >> 15; + int im = (+w.re * f2k.re + w.im * f2k.im) >> 15; + tw.re = re; + tw.im = im; + } + + result[k].re = (f1k.re + tw.re) >> 2; + result[k].im = (f1k.im - tw.im) >> 2; + result[N - k].re = (f1k.re - tw.re) >> 2; + result[N - k].im = -(f1k.im + tw.im) >> 2; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S new file mode 100644 index 0000000..c52aeb6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_bit_rev_lookup_fc32_aes3.S @@ -0,0 +1,53 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fft2r_platform.h" + +#if (dsps_bit_rev_lookup_fc32_ae32_enabled == 1) +#if (dsps_fft2r_fc32_aes3_enabled == 1) + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .global dsps_bit_rev_lookup_fc32_aes3 + .type dsps_bit_rev_lookup_fc32_aes3,@function + +dsps_bit_rev_lookup_fc32_aes3: +//esp_err_t dsps_bit_rev_lookup_fc32_aes3(float *data, int reverse_size, uint16_t *reverse_tab) + + entry a1, 16 +// data - a2 +// reverse_size - a3 +// reverse_tab - a4 + loopnez a3, .__loop_end_radix2_reorder_lookup_table + l16ui a5, a4, 0 // Load first addr shift + l16ui a6, a4, 2 // Load second addr shift + addi a4, a4, 4 // Table addr update + + add.n a5, a5, a2 + add.n a6, a6, a2 + + EE.LDF.64.IP f0, f2, a5, 0 + EE.LDF.64.IP f1, f3, a6, 0 + + EE.STF.64.IP f0, f2, a6, 0 + EE.STF.64.IP f1, f3, a5, 0 + +.__loop_end_radix2_reorder_lookup_table: + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_fft2r_fc32_aes3_enabled +#endif // dsps_bit_rev_lookup_fc32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c new file mode 100644 index 0000000..527ce4a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_bitrev_tables_fc32.c @@ -0,0 +1,590 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#include +#include "dsps_fft_tables.h" + + +const uint16_t bitrev2r_table_16_fc32[] = { + 8, 64, 16, 32, 24, 96, 40, 80, 56, 112, 88, 104, +}; + +const uint16_t bitrev2r_table_32_fc32[] = { + 8, 128, 16, 64, 24, 192, 40, 160, 48, 96, 56, 224, 72, 144, 88, 208, + 104, 176, 120, 240, 152, 200, 184, 232, +}; + +const uint16_t bitrev2r_table_64_fc32[] = { + 8, 256, 16, 128, 24, 384, 32, 64, 40, 320, 48, 192, 56, 448, 72, 288, + 80, 160, 88, 416, 104, 352, 112, 224, 120, 480, 136, 272, 152, 400, 168, 336, + 176, 208, 184, 464, 200, 304, 216, 432, 232, 368, 248, 496, 280, 392, 296, 328, + 312, 456, 344, 424, 376, 488, 440, 472, +}; + +const uint16_t bitrev2r_table_128_fc32[] = { + 8, 512, 16, 256, 24, 768, 32, 128, 40, 640, 48, 384, 56, 896, 72, 576, + 80, 320, 88, 832, 96, 192, 104, 704, 112, 448, 120, 960, 136, 544, 144, 288, + 152, 800, 168, 672, 176, 416, 184, 928, 200, 608, 208, 352, 216, 864, 232, 736, + 240, 480, 248, 992, 264, 528, 280, 784, 296, 656, 304, 400, 312, 912, 328, 592, + 344, 848, 360, 720, 368, 464, 376, 976, 392, 560, 408, 816, 424, 688, 440, 944, + 456, 624, 472, 880, 488, 752, 504, 1008, 536, 776, 552, 648, 568, 904, 600, 840, + 616, 712, 632, 968, 664, 808, 696, 936, 728, 872, 760, 1000, 824, 920, 888, 984, +}; + +const uint16_t bitrev2r_table_256_fc32[] = { + 8, 1024, 16, 512, 24, 1536, 32, 256, 40, 1280, 48, 768, 56, 1792, 64, 128, + 72, 1152, 80, 640, 88, 1664, 96, 384, 104, 1408, 112, 896, 120, 1920, 136, 1088, + 144, 576, 152, 1600, 160, 320, 168, 1344, 176, 832, 184, 1856, 200, 1216, 208, 704, + 216, 1728, 224, 448, 232, 1472, 240, 960, 248, 1984, 264, 1056, 272, 544, 280, 1568, + 296, 1312, 304, 800, 312, 1824, 328, 1184, 336, 672, 344, 1696, 352, 416, 360, 1440, + 368, 928, 376, 1952, 392, 1120, 400, 608, 408, 1632, 424, 1376, 432, 864, 440, 1888, + 456, 1248, 464, 736, 472, 1760, 488, 1504, 496, 992, 504, 2016, 520, 1040, 536, 1552, + 552, 1296, 560, 784, 568, 1808, 584, 1168, 592, 656, 600, 1680, 616, 1424, 624, 912, + 632, 1936, 648, 1104, 664, 1616, 680, 1360, 688, 848, 696, 1872, 712, 1232, 728, 1744, + 744, 1488, 752, 976, 760, 2000, 776, 1072, 792, 1584, 808, 1328, 824, 1840, 840, 1200, + 856, 1712, 872, 1456, 880, 944, 888, 1968, 904, 1136, 920, 1648, 936, 1392, 952, 1904, + 968, 1264, 984, 1776, 1000, 1520, 1016, 2032, 1048, 1544, 1064, 1288, 1080, 1800, 1096, 1160, + 1112, 1672, 1128, 1416, 1144, 1928, 1176, 1608, 1192, 1352, 1208, 1864, 1240, 1736, 1256, 1480, + 1272, 1992, 1304, 1576, 1336, 1832, 1368, 1704, 1384, 1448, 1400, 1960, 1432, 1640, 1464, 1896, + 1496, 1768, 1528, 2024, 1592, 1816, 1624, 1688, 1656, 1944, 1720, 1880, 1784, 2008, 1912, 1976, +}; + +const uint16_t bitrev2r_table_512_fc32[] = { + 8, 2048, 16, 1024, 24, 3072, 32, 512, 40, 2560, 48, 1536, 56, 3584, 64, 256, + 72, 2304, 80, 1280, 88, 3328, 96, 768, 104, 2816, 112, 1792, 120, 3840, 136, 2176, + 144, 1152, 152, 3200, 160, 640, 168, 2688, 176, 1664, 184, 3712, 192, 384, 200, 2432, + 208, 1408, 216, 3456, 224, 896, 232, 2944, 240, 1920, 248, 3968, 264, 2112, 272, 1088, + 280, 3136, 288, 576, 296, 2624, 304, 1600, 312, 3648, 328, 2368, 336, 1344, 344, 3392, + 352, 832, 360, 2880, 368, 1856, 376, 3904, 392, 2240, 400, 1216, 408, 3264, 416, 704, + 424, 2752, 432, 1728, 440, 3776, 456, 2496, 464, 1472, 472, 3520, 480, 960, 488, 3008, + 496, 1984, 504, 4032, 520, 2080, 528, 1056, 536, 3104, 552, 2592, 560, 1568, 568, 3616, + 584, 2336, 592, 1312, 600, 3360, 608, 800, 616, 2848, 624, 1824, 632, 3872, 648, 2208, + 656, 1184, 664, 3232, 680, 2720, 688, 1696, 696, 3744, 712, 2464, 720, 1440, 728, 3488, + 736, 928, 744, 2976, 752, 1952, 760, 4000, 776, 2144, 784, 1120, 792, 3168, 808, 2656, + 816, 1632, 824, 3680, 840, 2400, 848, 1376, 856, 3424, 872, 2912, 880, 1888, 888, 3936, + 904, 2272, 912, 1248, 920, 3296, 936, 2784, 944, 1760, 952, 3808, 968, 2528, 976, 1504, + 984, 3552, 1000, 3040, 1008, 2016, 1016, 4064, 1032, 2064, 1048, 3088, 1064, 2576, 1072, 1552, + 1080, 3600, 1096, 2320, 1104, 1296, 1112, 3344, 1128, 2832, 1136, 1808, 1144, 3856, 1160, 2192, + 1176, 3216, 1192, 2704, 1200, 1680, 1208, 3728, 1224, 2448, 1232, 1424, 1240, 3472, 1256, 2960, + 1264, 1936, 1272, 3984, 1288, 2128, 1304, 3152, 1320, 2640, 1328, 1616, 1336, 3664, 1352, 2384, + 1368, 3408, 1384, 2896, 1392, 1872, 1400, 3920, 1416, 2256, 1432, 3280, 1448, 2768, 1456, 1744, + 1464, 3792, 1480, 2512, 1496, 3536, 1512, 3024, 1520, 2000, 1528, 4048, 1544, 2096, 1560, 3120, + 1576, 2608, 1592, 3632, 1608, 2352, 1624, 3376, 1640, 2864, 1648, 1840, 1656, 3888, 1672, 2224, + 1688, 3248, 1704, 2736, 1720, 3760, 1736, 2480, 1752, 3504, 1768, 2992, 1776, 1968, 1784, 4016, + 1800, 2160, 1816, 3184, 1832, 2672, 1848, 3696, 1864, 2416, 1880, 3440, 1896, 2928, 1912, 3952, + 1928, 2288, 1944, 3312, 1960, 2800, 1976, 3824, 1992, 2544, 2008, 3568, 2024, 3056, 2040, 4080, + 2072, 3080, 2088, 2568, 2104, 3592, 2120, 2312, 2136, 3336, 2152, 2824, 2168, 3848, 2200, 3208, + 2216, 2696, 2232, 3720, 2248, 2440, 2264, 3464, 2280, 2952, 2296, 3976, 2328, 3144, 2344, 2632, + 2360, 3656, 2392, 3400, 2408, 2888, 2424, 3912, 2456, 3272, 2472, 2760, 2488, 3784, 2520, 3528, + 2536, 3016, 2552, 4040, 2584, 3112, 2616, 3624, 2648, 3368, 2664, 2856, 2680, 3880, 2712, 3240, + 2744, 3752, 2776, 3496, 2792, 2984, 2808, 4008, 2840, 3176, 2872, 3688, 2904, 3432, 2936, 3944, + 2968, 3304, 3000, 3816, 3032, 3560, 3064, 4072, 3128, 3608, 3160, 3352, 3192, 3864, 3256, 3736, + 3288, 3480, 3320, 3992, 3384, 3672, 3448, 3928, 3512, 3800, 3576, 4056, 3704, 3896, 3832, 4024, +}; + +const uint16_t bitrev2r_table_1024_fc32[] = { + 8, 4096, 16, 2048, 24, 6144, 32, 1024, 40, 5120, 48, 3072, 56, 7168, 64, 512, + 72, 4608, 80, 2560, 88, 6656, 96, 1536, 104, 5632, 112, 3584, 120, 7680, 128, 256, + 136, 4352, 144, 2304, 152, 6400, 160, 1280, 168, 5376, 176, 3328, 184, 7424, 192, 768, + 200, 4864, 208, 2816, 216, 6912, 224, 1792, 232, 5888, 240, 3840, 248, 7936, 264, 4224, + 272, 2176, 280, 6272, 288, 1152, 296, 5248, 304, 3200, 312, 7296, 320, 640, 328, 4736, + 336, 2688, 344, 6784, 352, 1664, 360, 5760, 368, 3712, 376, 7808, 392, 4480, 400, 2432, + 408, 6528, 416, 1408, 424, 5504, 432, 3456, 440, 7552, 448, 896, 456, 4992, 464, 2944, + 472, 7040, 480, 1920, 488, 6016, 496, 3968, 504, 8064, 520, 4160, 528, 2112, 536, 6208, + 544, 1088, 552, 5184, 560, 3136, 568, 7232, 584, 4672, 592, 2624, 600, 6720, 608, 1600, + 616, 5696, 624, 3648, 632, 7744, 648, 4416, 656, 2368, 664, 6464, 672, 1344, 680, 5440, + 688, 3392, 696, 7488, 704, 832, 712, 4928, 720, 2880, 728, 6976, 736, 1856, 744, 5952, + 752, 3904, 760, 8000, 776, 4288, 784, 2240, 792, 6336, 800, 1216, 808, 5312, 816, 3264, + 824, 7360, 840, 4800, 848, 2752, 856, 6848, 864, 1728, 872, 5824, 880, 3776, 888, 7872, + 904, 4544, 912, 2496, 920, 6592, 928, 1472, 936, 5568, 944, 3520, 952, 7616, 968, 5056, + 976, 3008, 984, 7104, 992, 1984, 1000, 6080, 1008, 4032, 1016, 8128, 1032, 4128, 1040, 2080, + 1048, 6176, 1064, 5152, 1072, 3104, 1080, 7200, 1096, 4640, 1104, 2592, 1112, 6688, 1120, 1568, + 1128, 5664, 1136, 3616, 1144, 7712, 1160, 4384, 1168, 2336, 1176, 6432, 1184, 1312, 1192, 5408, + 1200, 3360, 1208, 7456, 1224, 4896, 1232, 2848, 1240, 6944, 1248, 1824, 1256, 5920, 1264, 3872, + 1272, 7968, 1288, 4256, 1296, 2208, 1304, 6304, 1320, 5280, 1328, 3232, 1336, 7328, 1352, 4768, + 1360, 2720, 1368, 6816, 1376, 1696, 1384, 5792, 1392, 3744, 1400, 7840, 1416, 4512, 1424, 2464, + 1432, 6560, 1448, 5536, 1456, 3488, 1464, 7584, 1480, 5024, 1488, 2976, 1496, 7072, 1504, 1952, + 1512, 6048, 1520, 4000, 1528, 8096, 1544, 4192, 1552, 2144, 1560, 6240, 1576, 5216, 1584, 3168, + 1592, 7264, 1608, 4704, 1616, 2656, 1624, 6752, 1640, 5728, 1648, 3680, 1656, 7776, 1672, 4448, + 1680, 2400, 1688, 6496, 1704, 5472, 1712, 3424, 1720, 7520, 1736, 4960, 1744, 2912, 1752, 7008, + 1760, 1888, 1768, 5984, 1776, 3936, 1784, 8032, 1800, 4320, 1808, 2272, 1816, 6368, 1832, 5344, + 1840, 3296, 1848, 7392, 1864, 4832, 1872, 2784, 1880, 6880, 1896, 5856, 1904, 3808, 1912, 7904, + 1928, 4576, 1936, 2528, 1944, 6624, 1960, 5600, 1968, 3552, 1976, 7648, 1992, 5088, 2000, 3040, + 2008, 7136, 2024, 6112, 2032, 4064, 2040, 8160, 2056, 4112, 2072, 6160, 2088, 5136, 2096, 3088, + 2104, 7184, 2120, 4624, 2128, 2576, 2136, 6672, 2152, 5648, 2160, 3600, 2168, 7696, 2184, 4368, + 2192, 2320, 2200, 6416, 2216, 5392, 2224, 3344, 2232, 7440, 2248, 4880, 2256, 2832, 2264, 6928, + 2280, 5904, 2288, 3856, 2296, 7952, 2312, 4240, 2328, 6288, 2344, 5264, 2352, 3216, 2360, 7312, + 2376, 4752, 2384, 2704, 2392, 6800, 2408, 5776, 2416, 3728, 2424, 7824, 2440, 4496, 2456, 6544, + 2472, 5520, 2480, 3472, 2488, 7568, 2504, 5008, 2512, 2960, 2520, 7056, 2536, 6032, 2544, 3984, + 2552, 8080, 2568, 4176, 2584, 6224, 2600, 5200, 2608, 3152, 2616, 7248, 2632, 4688, 2648, 6736, + 2664, 5712, 2672, 3664, 2680, 7760, 2696, 4432, 2712, 6480, 2728, 5456, 2736, 3408, 2744, 7504, + 2760, 4944, 2768, 2896, 2776, 6992, 2792, 5968, 2800, 3920, 2808, 8016, 2824, 4304, 2840, 6352, + 2856, 5328, 2864, 3280, 2872, 7376, 2888, 4816, 2904, 6864, 2920, 5840, 2928, 3792, 2936, 7888, + 2952, 4560, 2968, 6608, 2984, 5584, 2992, 3536, 3000, 7632, 3016, 5072, 3032, 7120, 3048, 6096, + 3056, 4048, 3064, 8144, 3080, 4144, 3096, 6192, 3112, 5168, 3128, 7216, 3144, 4656, 3160, 6704, + 3176, 5680, 3184, 3632, 3192, 7728, 3208, 4400, 3224, 6448, 3240, 5424, 3248, 3376, 3256, 7472, + 3272, 4912, 3288, 6960, 3304, 5936, 3312, 3888, 3320, 7984, 3336, 4272, 3352, 6320, 3368, 5296, + 3384, 7344, 3400, 4784, 3416, 6832, 3432, 5808, 3440, 3760, 3448, 7856, 3464, 4528, 3480, 6576, + 3496, 5552, 3512, 7600, 3528, 5040, 3544, 7088, 3560, 6064, 3568, 4016, 3576, 8112, 3592, 4208, + 3608, 6256, 3624, 5232, 3640, 7280, 3656, 4720, 3672, 6768, 3688, 5744, 3704, 7792, 3720, 4464, + 3736, 6512, 3752, 5488, 3768, 7536, 3784, 4976, 3800, 7024, 3816, 6000, 3824, 3952, 3832, 8048, + 3848, 4336, 3864, 6384, 3880, 5360, 3896, 7408, 3912, 4848, 3928, 6896, 3944, 5872, 3960, 7920, + 3976, 4592, 3992, 6640, 4008, 5616, 4024, 7664, 4040, 5104, 4056, 7152, 4072, 6128, 4088, 8176, + 4120, 6152, 4136, 5128, 4152, 7176, 4168, 4616, 4184, 6664, 4200, 5640, 4216, 7688, 4232, 4360, + 4248, 6408, 4264, 5384, 4280, 7432, 4296, 4872, 4312, 6920, 4328, 5896, 4344, 7944, 4376, 6280, + 4392, 5256, 4408, 7304, 4424, 4744, 4440, 6792, 4456, 5768, 4472, 7816, 4504, 6536, 4520, 5512, + 4536, 7560, 4552, 5000, 4568, 7048, 4584, 6024, 4600, 8072, 4632, 6216, 4648, 5192, 4664, 7240, + 4696, 6728, 4712, 5704, 4728, 7752, 4760, 6472, 4776, 5448, 4792, 7496, 4808, 4936, 4824, 6984, + 4840, 5960, 4856, 8008, 4888, 6344, 4904, 5320, 4920, 7368, 4952, 6856, 4968, 5832, 4984, 7880, + 5016, 6600, 5032, 5576, 5048, 7624, 5080, 7112, 5096, 6088, 5112, 8136, 5144, 6184, 5176, 7208, + 5208, 6696, 5224, 5672, 5240, 7720, 5272, 6440, 5288, 5416, 5304, 7464, 5336, 6952, 5352, 5928, + 5368, 7976, 5400, 6312, 5432, 7336, 5464, 6824, 5480, 5800, 5496, 7848, 5528, 6568, 5560, 7592, + 5592, 7080, 5608, 6056, 5624, 8104, 5656, 6248, 5688, 7272, 5720, 6760, 5752, 7784, 5784, 6504, + 5816, 7528, 5848, 7016, 5864, 5992, 5880, 8040, 5912, 6376, 5944, 7400, 5976, 6888, 6008, 7912, + 6040, 6632, 6072, 7656, 6104, 7144, 6136, 8168, 6200, 7192, 6232, 6680, 6264, 7704, 6296, 6424, + 6328, 7448, 6360, 6936, 6392, 7960, 6456, 7320, 6488, 6808, 6520, 7832, 6584, 7576, 6616, 7064, + 6648, 8088, 6712, 7256, 6776, 7768, 6840, 7512, 6872, 7000, 6904, 8024, 6968, 7384, 7032, 7896, + 7096, 7640, 7160, 8152, 7288, 7736, 7352, 7480, 7416, 7992, 7544, 7864, 7672, 8120, 7928, 8056, +}; + +const uint16_t bitrev2r_table_2048_fc32[] = { + 8, 8192, 16, 4096, 24, 12288, 32, 2048, 40, 10240, 48, 6144, 56, 14336, 64, 1024, + 72, 9216, 80, 5120, 88, 13312, 96, 3072, 104, 11264, 112, 7168, 120, 15360, 128, 512, + 136, 8704, 144, 4608, 152, 12800, 160, 2560, 168, 10752, 176, 6656, 184, 14848, 192, 1536, + 200, 9728, 208, 5632, 216, 13824, 224, 3584, 232, 11776, 240, 7680, 248, 15872, 264, 8448, + 272, 4352, 280, 12544, 288, 2304, 296, 10496, 304, 6400, 312, 14592, 320, 1280, 328, 9472, + 336, 5376, 344, 13568, 352, 3328, 360, 11520, 368, 7424, 376, 15616, 384, 768, 392, 8960, + 400, 4864, 408, 13056, 416, 2816, 424, 11008, 432, 6912, 440, 15104, 448, 1792, 456, 9984, + 464, 5888, 472, 14080, 480, 3840, 488, 12032, 496, 7936, 504, 16128, 520, 8320, 528, 4224, + 536, 12416, 544, 2176, 552, 10368, 560, 6272, 568, 14464, 576, 1152, 584, 9344, 592, 5248, + 600, 13440, 608, 3200, 616, 11392, 624, 7296, 632, 15488, 648, 8832, 656, 4736, 664, 12928, + 672, 2688, 680, 10880, 688, 6784, 696, 14976, 704, 1664, 712, 9856, 720, 5760, 728, 13952, + 736, 3712, 744, 11904, 752, 7808, 760, 16000, 776, 8576, 784, 4480, 792, 12672, 800, 2432, + 808, 10624, 816, 6528, 824, 14720, 832, 1408, 840, 9600, 848, 5504, 856, 13696, 864, 3456, + 872, 11648, 880, 7552, 888, 15744, 904, 9088, 912, 4992, 920, 13184, 928, 2944, 936, 11136, + 944, 7040, 952, 15232, 960, 1920, 968, 10112, 976, 6016, 984, 14208, 992, 3968, 1000, 12160, + 1008, 8064, 1016, 16256, 1032, 8256, 1040, 4160, 1048, 12352, 1056, 2112, 1064, 10304, 1072, 6208, + 1080, 14400, 1096, 9280, 1104, 5184, 1112, 13376, 1120, 3136, 1128, 11328, 1136, 7232, 1144, 15424, + 1160, 8768, 1168, 4672, 1176, 12864, 1184, 2624, 1192, 10816, 1200, 6720, 1208, 14912, 1216, 1600, + 1224, 9792, 1232, 5696, 1240, 13888, 1248, 3648, 1256, 11840, 1264, 7744, 1272, 15936, 1288, 8512, + 1296, 4416, 1304, 12608, 1312, 2368, 1320, 10560, 1328, 6464, 1336, 14656, 1352, 9536, 1360, 5440, + 1368, 13632, 1376, 3392, 1384, 11584, 1392, 7488, 1400, 15680, 1416, 9024, 1424, 4928, 1432, 13120, + 1440, 2880, 1448, 11072, 1456, 6976, 1464, 15168, 1472, 1856, 1480, 10048, 1488, 5952, 1496, 14144, + 1504, 3904, 1512, 12096, 1520, 8000, 1528, 16192, 1544, 8384, 1552, 4288, 1560, 12480, 1568, 2240, + 1576, 10432, 1584, 6336, 1592, 14528, 1608, 9408, 1616, 5312, 1624, 13504, 1632, 3264, 1640, 11456, + 1648, 7360, 1656, 15552, 1672, 8896, 1680, 4800, 1688, 12992, 1696, 2752, 1704, 10944, 1712, 6848, + 1720, 15040, 1736, 9920, 1744, 5824, 1752, 14016, 1760, 3776, 1768, 11968, 1776, 7872, 1784, 16064, + 1800, 8640, 1808, 4544, 1816, 12736, 1824, 2496, 1832, 10688, 1840, 6592, 1848, 14784, 1864, 9664, + 1872, 5568, 1880, 13760, 1888, 3520, 1896, 11712, 1904, 7616, 1912, 15808, 1928, 9152, 1936, 5056, + 1944, 13248, 1952, 3008, 1960, 11200, 1968, 7104, 1976, 15296, 1992, 10176, 2000, 6080, 2008, 14272, + 2016, 4032, 2024, 12224, 2032, 8128, 2040, 16320, 2056, 8224, 2064, 4128, 2072, 12320, 2088, 10272, + 2096, 6176, 2104, 14368, 2120, 9248, 2128, 5152, 2136, 13344, 2144, 3104, 2152, 11296, 2160, 7200, + 2168, 15392, 2184, 8736, 2192, 4640, 2200, 12832, 2208, 2592, 2216, 10784, 2224, 6688, 2232, 14880, + 2248, 9760, 2256, 5664, 2264, 13856, 2272, 3616, 2280, 11808, 2288, 7712, 2296, 15904, 2312, 8480, + 2320, 4384, 2328, 12576, 2344, 10528, 2352, 6432, 2360, 14624, 2376, 9504, 2384, 5408, 2392, 13600, + 2400, 3360, 2408, 11552, 2416, 7456, 2424, 15648, 2440, 8992, 2448, 4896, 2456, 13088, 2464, 2848, + 2472, 11040, 2480, 6944, 2488, 15136, 2504, 10016, 2512, 5920, 2520, 14112, 2528, 3872, 2536, 12064, + 2544, 7968, 2552, 16160, 2568, 8352, 2576, 4256, 2584, 12448, 2600, 10400, 2608, 6304, 2616, 14496, + 2632, 9376, 2640, 5280, 2648, 13472, 2656, 3232, 2664, 11424, 2672, 7328, 2680, 15520, 2696, 8864, + 2704, 4768, 2712, 12960, 2728, 10912, 2736, 6816, 2744, 15008, 2760, 9888, 2768, 5792, 2776, 13984, + 2784, 3744, 2792, 11936, 2800, 7840, 2808, 16032, 2824, 8608, 2832, 4512, 2840, 12704, 2856, 10656, + 2864, 6560, 2872, 14752, 2888, 9632, 2896, 5536, 2904, 13728, 2912, 3488, 2920, 11680, 2928, 7584, + 2936, 15776, 2952, 9120, 2960, 5024, 2968, 13216, 2984, 11168, 2992, 7072, 3000, 15264, 3016, 10144, + 3024, 6048, 3032, 14240, 3040, 4000, 3048, 12192, 3056, 8096, 3064, 16288, 3080, 8288, 3088, 4192, + 3096, 12384, 3112, 10336, 3120, 6240, 3128, 14432, 3144, 9312, 3152, 5216, 3160, 13408, 3176, 11360, + 3184, 7264, 3192, 15456, 3208, 8800, 3216, 4704, 3224, 12896, 3240, 10848, 3248, 6752, 3256, 14944, + 3272, 9824, 3280, 5728, 3288, 13920, 3296, 3680, 3304, 11872, 3312, 7776, 3320, 15968, 3336, 8544, + 3344, 4448, 3352, 12640, 3368, 10592, 3376, 6496, 3384, 14688, 3400, 9568, 3408, 5472, 3416, 13664, + 3432, 11616, 3440, 7520, 3448, 15712, 3464, 9056, 3472, 4960, 3480, 13152, 3496, 11104, 3504, 7008, + 3512, 15200, 3528, 10080, 3536, 5984, 3544, 14176, 3552, 3936, 3560, 12128, 3568, 8032, 3576, 16224, + 3592, 8416, 3600, 4320, 3608, 12512, 3624, 10464, 3632, 6368, 3640, 14560, 3656, 9440, 3664, 5344, + 3672, 13536, 3688, 11488, 3696, 7392, 3704, 15584, 3720, 8928, 3728, 4832, 3736, 13024, 3752, 10976, + 3760, 6880, 3768, 15072, 3784, 9952, 3792, 5856, 3800, 14048, 3816, 12000, 3824, 7904, 3832, 16096, + 3848, 8672, 3856, 4576, 3864, 12768, 3880, 10720, 3888, 6624, 3896, 14816, 3912, 9696, 3920, 5600, + 3928, 13792, 3944, 11744, 3952, 7648, 3960, 15840, 3976, 9184, 3984, 5088, 3992, 13280, 4008, 11232, + 4016, 7136, 4024, 15328, 4040, 10208, 4048, 6112, 4056, 14304, 4072, 12256, 4080, 8160, 4088, 16352, + 4104, 8208, 4120, 12304, 4136, 10256, 4144, 6160, 4152, 14352, 4168, 9232, 4176, 5136, 4184, 13328, + 4200, 11280, 4208, 7184, 4216, 15376, 4232, 8720, 4240, 4624, 4248, 12816, 4264, 10768, 4272, 6672, + 4280, 14864, 4296, 9744, 4304, 5648, 4312, 13840, 4328, 11792, 4336, 7696, 4344, 15888, 4360, 8464, + 4376, 12560, 4392, 10512, 4400, 6416, 4408, 14608, 4424, 9488, 4432, 5392, 4440, 13584, 4456, 11536, + 4464, 7440, 4472, 15632, 4488, 8976, 4496, 4880, 4504, 13072, 4520, 11024, 4528, 6928, 4536, 15120, + 4552, 10000, 4560, 5904, 4568, 14096, 4584, 12048, 4592, 7952, 4600, 16144, 4616, 8336, 4632, 12432, + 4648, 10384, 4656, 6288, 4664, 14480, 4680, 9360, 4688, 5264, 4696, 13456, 4712, 11408, 4720, 7312, + 4728, 15504, 4744, 8848, 4760, 12944, 4776, 10896, 4784, 6800, 4792, 14992, 4808, 9872, 4816, 5776, + 4824, 13968, 4840, 11920, 4848, 7824, 4856, 16016, 4872, 8592, 4888, 12688, 4904, 10640, 4912, 6544, + 4920, 14736, 4936, 9616, 4944, 5520, 4952, 13712, 4968, 11664, 4976, 7568, 4984, 15760, 5000, 9104, + 5016, 13200, 5032, 11152, 5040, 7056, 5048, 15248, 5064, 10128, 5072, 6032, 5080, 14224, 5096, 12176, + 5104, 8080, 5112, 16272, 5128, 8272, 5144, 12368, 5160, 10320, 5168, 6224, 5176, 14416, 5192, 9296, + 5208, 13392, 5224, 11344, 5232, 7248, 5240, 15440, 5256, 8784, 5272, 12880, 5288, 10832, 5296, 6736, + 5304, 14928, 5320, 9808, 5328, 5712, 5336, 13904, 5352, 11856, 5360, 7760, 5368, 15952, 5384, 8528, + 5400, 12624, 5416, 10576, 5424, 6480, 5432, 14672, 5448, 9552, 5464, 13648, 5480, 11600, 5488, 7504, + 5496, 15696, 5512, 9040, 5528, 13136, 5544, 11088, 5552, 6992, 5560, 15184, 5576, 10064, 5584, 5968, + 5592, 14160, 5608, 12112, 5616, 8016, 5624, 16208, 5640, 8400, 5656, 12496, 5672, 10448, 5680, 6352, + 5688, 14544, 5704, 9424, 5720, 13520, 5736, 11472, 5744, 7376, 5752, 15568, 5768, 8912, 5784, 13008, + 5800, 10960, 5808, 6864, 5816, 15056, 5832, 9936, 5848, 14032, 5864, 11984, 5872, 7888, 5880, 16080, + 5896, 8656, 5912, 12752, 5928, 10704, 5936, 6608, 5944, 14800, 5960, 9680, 5976, 13776, 5992, 11728, + 6000, 7632, 6008, 15824, 6024, 9168, 6040, 13264, 6056, 11216, 6064, 7120, 6072, 15312, 6088, 10192, + 6104, 14288, 6120, 12240, 6128, 8144, 6136, 16336, 6152, 8240, 6168, 12336, 6184, 10288, 6200, 14384, + 6216, 9264, 6232, 13360, 6248, 11312, 6256, 7216, 6264, 15408, 6280, 8752, 6296, 12848, 6312, 10800, + 6320, 6704, 6328, 14896, 6344, 9776, 6360, 13872, 6376, 11824, 6384, 7728, 6392, 15920, 6408, 8496, + 6424, 12592, 6440, 10544, 6456, 14640, 6472, 9520, 6488, 13616, 6504, 11568, 6512, 7472, 6520, 15664, + 6536, 9008, 6552, 13104, 6568, 11056, 6576, 6960, 6584, 15152, 6600, 10032, 6616, 14128, 6632, 12080, + 6640, 7984, 6648, 16176, 6664, 8368, 6680, 12464, 6696, 10416, 6712, 14512, 6728, 9392, 6744, 13488, + 6760, 11440, 6768, 7344, 6776, 15536, 6792, 8880, 6808, 12976, 6824, 10928, 6840, 15024, 6856, 9904, + 6872, 14000, 6888, 11952, 6896, 7856, 6904, 16048, 6920, 8624, 6936, 12720, 6952, 10672, 6968, 14768, + 6984, 9648, 7000, 13744, 7016, 11696, 7024, 7600, 7032, 15792, 7048, 9136, 7064, 13232, 7080, 11184, + 7096, 15280, 7112, 10160, 7128, 14256, 7144, 12208, 7152, 8112, 7160, 16304, 7176, 8304, 7192, 12400, + 7208, 10352, 7224, 14448, 7240, 9328, 7256, 13424, 7272, 11376, 7288, 15472, 7304, 8816, 7320, 12912, + 7336, 10864, 7352, 14960, 7368, 9840, 7384, 13936, 7400, 11888, 7408, 7792, 7416, 15984, 7432, 8560, + 7448, 12656, 7464, 10608, 7480, 14704, 7496, 9584, 7512, 13680, 7528, 11632, 7544, 15728, 7560, 9072, + 7576, 13168, 7592, 11120, 7608, 15216, 7624, 10096, 7640, 14192, 7656, 12144, 7664, 8048, 7672, 16240, + 7688, 8432, 7704, 12528, 7720, 10480, 7736, 14576, 7752, 9456, 7768, 13552, 7784, 11504, 7800, 15600, + 7816, 8944, 7832, 13040, 7848, 10992, 7864, 15088, 7880, 9968, 7896, 14064, 7912, 12016, 7928, 16112, + 7944, 8688, 7960, 12784, 7976, 10736, 7992, 14832, 8008, 9712, 8024, 13808, 8040, 11760, 8056, 15856, + 8072, 9200, 8088, 13296, 8104, 11248, 8120, 15344, 8136, 10224, 8152, 14320, 8168, 12272, 8184, 16368, + 8216, 12296, 8232, 10248, 8248, 14344, 8264, 9224, 8280, 13320, 8296, 11272, 8312, 15368, 8328, 8712, + 8344, 12808, 8360, 10760, 8376, 14856, 8392, 9736, 8408, 13832, 8424, 11784, 8440, 15880, 8472, 12552, + 8488, 10504, 8504, 14600, 8520, 9480, 8536, 13576, 8552, 11528, 8568, 15624, 8584, 8968, 8600, 13064, + 8616, 11016, 8632, 15112, 8648, 9992, 8664, 14088, 8680, 12040, 8696, 16136, 8728, 12424, 8744, 10376, + 8760, 14472, 8776, 9352, 8792, 13448, 8808, 11400, 8824, 15496, 8856, 12936, 8872, 10888, 8888, 14984, + 8904, 9864, 8920, 13960, 8936, 11912, 8952, 16008, 8984, 12680, 9000, 10632, 9016, 14728, 9032, 9608, + 9048, 13704, 9064, 11656, 9080, 15752, 9112, 13192, 9128, 11144, 9144, 15240, 9160, 10120, 9176, 14216, + 9192, 12168, 9208, 16264, 9240, 12360, 9256, 10312, 9272, 14408, 9304, 13384, 9320, 11336, 9336, 15432, + 9368, 12872, 9384, 10824, 9400, 14920, 9416, 9800, 9432, 13896, 9448, 11848, 9464, 15944, 9496, 12616, + 9512, 10568, 9528, 14664, 9560, 13640, 9576, 11592, 9592, 15688, 9624, 13128, 9640, 11080, 9656, 15176, + 9672, 10056, 9688, 14152, 9704, 12104, 9720, 16200, 9752, 12488, 9768, 10440, 9784, 14536, 9816, 13512, + 9832, 11464, 9848, 15560, 9880, 13000, 9896, 10952, 9912, 15048, 9944, 14024, 9960, 11976, 9976, 16072, + 10008, 12744, 10024, 10696, 10040, 14792, 10072, 13768, 10088, 11720, 10104, 15816, 10136, 13256, 10152, 11208, + 10168, 15304, 10200, 14280, 10216, 12232, 10232, 16328, 10264, 12328, 10296, 14376, 10328, 13352, 10344, 11304, + 10360, 15400, 10392, 12840, 10408, 10792, 10424, 14888, 10456, 13864, 10472, 11816, 10488, 15912, 10520, 12584, + 10552, 14632, 10584, 13608, 10600, 11560, 10616, 15656, 10648, 13096, 10664, 11048, 10680, 15144, 10712, 14120, + 10728, 12072, 10744, 16168, 10776, 12456, 10808, 14504, 10840, 13480, 10856, 11432, 10872, 15528, 10904, 12968, + 10936, 15016, 10968, 13992, 10984, 11944, 11000, 16040, 11032, 12712, 11064, 14760, 11096, 13736, 11112, 11688, + 11128, 15784, 11160, 13224, 11192, 15272, 11224, 14248, 11240, 12200, 11256, 16296, 11288, 12392, 11320, 14440, + 11352, 13416, 11384, 15464, 11416, 12904, 11448, 14952, 11480, 13928, 11496, 11880, 11512, 15976, 11544, 12648, + 11576, 14696, 11608, 13672, 11640, 15720, 11672, 13160, 11704, 15208, 11736, 14184, 11752, 12136, 11768, 16232, + 11800, 12520, 11832, 14568, 11864, 13544, 11896, 15592, 11928, 13032, 11960, 15080, 11992, 14056, 12024, 16104, + 12056, 12776, 12088, 14824, 12120, 13800, 12152, 15848, 12184, 13288, 12216, 15336, 12248, 14312, 12280, 16360, + 12344, 14360, 12376, 13336, 12408, 15384, 12440, 12824, 12472, 14872, 12504, 13848, 12536, 15896, 12600, 14616, + 12632, 13592, 12664, 15640, 12696, 13080, 12728, 15128, 12760, 14104, 12792, 16152, 12856, 14488, 12888, 13464, + 12920, 15512, 12984, 15000, 13016, 13976, 13048, 16024, 13112, 14744, 13144, 13720, 13176, 15768, 13240, 15256, + 13272, 14232, 13304, 16280, 13368, 14424, 13432, 15448, 13496, 14936, 13528, 13912, 13560, 15960, 13624, 14680, + 13688, 15704, 13752, 15192, 13784, 14168, 13816, 16216, 13880, 14552, 13944, 15576, 14008, 15064, 14072, 16088, + 14136, 14808, 14200, 15832, 14264, 15320, 14328, 16344, 14456, 15416, 14520, 14904, 14584, 15928, 14712, 15672, + 14776, 15160, 14840, 16184, 14968, 15544, 15096, 16056, 15224, 15800, 15352, 16312, 15608, 15992, 15864, 16248, +}; + +const uint16_t bitrev2r_table_4096_fc32[] = { + 8, 16384, 16, 8192, 24, 24576, 32, 4096, 40, 20480, 48, 12288, 56, 28672, 64, 2048, + 72, 18432, 80, 10240, 88, 26624, 96, 6144, 104, 22528, 112, 14336, 120, 30720, 128, 1024, + 136, 17408, 144, 9216, 152, 25600, 160, 5120, 168, 21504, 176, 13312, 184, 29696, 192, 3072, + 200, 19456, 208, 11264, 216, 27648, 224, 7168, 232, 23552, 240, 15360, 248, 31744, 256, 512, + 264, 16896, 272, 8704, 280, 25088, 288, 4608, 296, 20992, 304, 12800, 312, 29184, 320, 2560, + 328, 18944, 336, 10752, 344, 27136, 352, 6656, 360, 23040, 368, 14848, 376, 31232, 384, 1536, + 392, 17920, 400, 9728, 408, 26112, 416, 5632, 424, 22016, 432, 13824, 440, 30208, 448, 3584, + 456, 19968, 464, 11776, 472, 28160, 480, 7680, 488, 24064, 496, 15872, 504, 32256, 520, 16640, + 528, 8448, 536, 24832, 544, 4352, 552, 20736, 560, 12544, 568, 28928, 576, 2304, 584, 18688, + 592, 10496, 600, 26880, 608, 6400, 616, 22784, 624, 14592, 632, 30976, 640, 1280, 648, 17664, + 656, 9472, 664, 25856, 672, 5376, 680, 21760, 688, 13568, 696, 29952, 704, 3328, 712, 19712, + 720, 11520, 728, 27904, 736, 7424, 744, 23808, 752, 15616, 760, 32000, 776, 17152, 784, 8960, + 792, 25344, 800, 4864, 808, 21248, 816, 13056, 824, 29440, 832, 2816, 840, 19200, 848, 11008, + 856, 27392, 864, 6912, 872, 23296, 880, 15104, 888, 31488, 896, 1792, 904, 18176, 912, 9984, + 920, 26368, 928, 5888, 936, 22272, 944, 14080, 952, 30464, 960, 3840, 968, 20224, 976, 12032, + 984, 28416, 992, 7936, 1000, 24320, 1008, 16128, 1016, 32512, 1032, 16512, 1040, 8320, 1048, 24704, + 1056, 4224, 1064, 20608, 1072, 12416, 1080, 28800, 1088, 2176, 1096, 18560, 1104, 10368, 1112, 26752, + 1120, 6272, 1128, 22656, 1136, 14464, 1144, 30848, 1160, 17536, 1168, 9344, 1176, 25728, 1184, 5248, + 1192, 21632, 1200, 13440, 1208, 29824, 1216, 3200, 1224, 19584, 1232, 11392, 1240, 27776, 1248, 7296, + 1256, 23680, 1264, 15488, 1272, 31872, 1288, 17024, 1296, 8832, 1304, 25216, 1312, 4736, 1320, 21120, + 1328, 12928, 1336, 29312, 1344, 2688, 1352, 19072, 1360, 10880, 1368, 27264, 1376, 6784, 1384, 23168, + 1392, 14976, 1400, 31360, 1408, 1664, 1416, 18048, 1424, 9856, 1432, 26240, 1440, 5760, 1448, 22144, + 1456, 13952, 1464, 30336, 1472, 3712, 1480, 20096, 1488, 11904, 1496, 28288, 1504, 7808, 1512, 24192, + 1520, 16000, 1528, 32384, 1544, 16768, 1552, 8576, 1560, 24960, 1568, 4480, 1576, 20864, 1584, 12672, + 1592, 29056, 1600, 2432, 1608, 18816, 1616, 10624, 1624, 27008, 1632, 6528, 1640, 22912, 1648, 14720, + 1656, 31104, 1672, 17792, 1680, 9600, 1688, 25984, 1696, 5504, 1704, 21888, 1712, 13696, 1720, 30080, + 1728, 3456, 1736, 19840, 1744, 11648, 1752, 28032, 1760, 7552, 1768, 23936, 1776, 15744, 1784, 32128, + 1800, 17280, 1808, 9088, 1816, 25472, 1824, 4992, 1832, 21376, 1840, 13184, 1848, 29568, 1856, 2944, + 1864, 19328, 1872, 11136, 1880, 27520, 1888, 7040, 1896, 23424, 1904, 15232, 1912, 31616, 1928, 18304, + 1936, 10112, 1944, 26496, 1952, 6016, 1960, 22400, 1968, 14208, 1976, 30592, 1984, 3968, 1992, 20352, + 2000, 12160, 2008, 28544, 2016, 8064, 2024, 24448, 2032, 16256, 2040, 32640, 2056, 16448, 2064, 8256, + 2072, 24640, 2080, 4160, 2088, 20544, 2096, 12352, 2104, 28736, 2120, 18496, 2128, 10304, 2136, 26688, + 2144, 6208, 2152, 22592, 2160, 14400, 2168, 30784, 2184, 17472, 2192, 9280, 2200, 25664, 2208, 5184, + 2216, 21568, 2224, 13376, 2232, 29760, 2240, 3136, 2248, 19520, 2256, 11328, 2264, 27712, 2272, 7232, + 2280, 23616, 2288, 15424, 2296, 31808, 2312, 16960, 2320, 8768, 2328, 25152, 2336, 4672, 2344, 21056, + 2352, 12864, 2360, 29248, 2368, 2624, 2376, 19008, 2384, 10816, 2392, 27200, 2400, 6720, 2408, 23104, + 2416, 14912, 2424, 31296, 2440, 17984, 2448, 9792, 2456, 26176, 2464, 5696, 2472, 22080, 2480, 13888, + 2488, 30272, 2496, 3648, 2504, 20032, 2512, 11840, 2520, 28224, 2528, 7744, 2536, 24128, 2544, 15936, + 2552, 32320, 2568, 16704, 2576, 8512, 2584, 24896, 2592, 4416, 2600, 20800, 2608, 12608, 2616, 28992, + 2632, 18752, 2640, 10560, 2648, 26944, 2656, 6464, 2664, 22848, 2672, 14656, 2680, 31040, 2696, 17728, + 2704, 9536, 2712, 25920, 2720, 5440, 2728, 21824, 2736, 13632, 2744, 30016, 2752, 3392, 2760, 19776, + 2768, 11584, 2776, 27968, 2784, 7488, 2792, 23872, 2800, 15680, 2808, 32064, 2824, 17216, 2832, 9024, + 2840, 25408, 2848, 4928, 2856, 21312, 2864, 13120, 2872, 29504, 2888, 19264, 2896, 11072, 2904, 27456, + 2912, 6976, 2920, 23360, 2928, 15168, 2936, 31552, 2952, 18240, 2960, 10048, 2968, 26432, 2976, 5952, + 2984, 22336, 2992, 14144, 3000, 30528, 3008, 3904, 3016, 20288, 3024, 12096, 3032, 28480, 3040, 8000, + 3048, 24384, 3056, 16192, 3064, 32576, 3080, 16576, 3088, 8384, 3096, 24768, 3104, 4288, 3112, 20672, + 3120, 12480, 3128, 28864, 3144, 18624, 3152, 10432, 3160, 26816, 3168, 6336, 3176, 22720, 3184, 14528, + 3192, 30912, 3208, 17600, 3216, 9408, 3224, 25792, 3232, 5312, 3240, 21696, 3248, 13504, 3256, 29888, + 3272, 19648, 3280, 11456, 3288, 27840, 3296, 7360, 3304, 23744, 3312, 15552, 3320, 31936, 3336, 17088, + 3344, 8896, 3352, 25280, 3360, 4800, 3368, 21184, 3376, 12992, 3384, 29376, 3400, 19136, 3408, 10944, + 3416, 27328, 3424, 6848, 3432, 23232, 3440, 15040, 3448, 31424, 3464, 18112, 3472, 9920, 3480, 26304, + 3488, 5824, 3496, 22208, 3504, 14016, 3512, 30400, 3520, 3776, 3528, 20160, 3536, 11968, 3544, 28352, + 3552, 7872, 3560, 24256, 3568, 16064, 3576, 32448, 3592, 16832, 3600, 8640, 3608, 25024, 3616, 4544, + 3624, 20928, 3632, 12736, 3640, 29120, 3656, 18880, 3664, 10688, 3672, 27072, 3680, 6592, 3688, 22976, + 3696, 14784, 3704, 31168, 3720, 17856, 3728, 9664, 3736, 26048, 3744, 5568, 3752, 21952, 3760, 13760, + 3768, 30144, 3784, 19904, 3792, 11712, 3800, 28096, 3808, 7616, 3816, 24000, 3824, 15808, 3832, 32192, + 3848, 17344, 3856, 9152, 3864, 25536, 3872, 5056, 3880, 21440, 3888, 13248, 3896, 29632, 3912, 19392, + 3920, 11200, 3928, 27584, 3936, 7104, 3944, 23488, 3952, 15296, 3960, 31680, 3976, 18368, 3984, 10176, + 3992, 26560, 4000, 6080, 4008, 22464, 4016, 14272, 4024, 30656, 4040, 20416, 4048, 12224, 4056, 28608, + 4064, 8128, 4072, 24512, 4080, 16320, 4088, 32704, 4104, 16416, 4112, 8224, 4120, 24608, 4136, 20512, + 4144, 12320, 4152, 28704, 4168, 18464, 4176, 10272, 4184, 26656, 4192, 6176, 4200, 22560, 4208, 14368, + 4216, 30752, 4232, 17440, 4240, 9248, 4248, 25632, 4256, 5152, 4264, 21536, 4272, 13344, 4280, 29728, + 4296, 19488, 4304, 11296, 4312, 27680, 4320, 7200, 4328, 23584, 4336, 15392, 4344, 31776, 4360, 16928, + 4368, 8736, 4376, 25120, 4384, 4640, 4392, 21024, 4400, 12832, 4408, 29216, 4424, 18976, 4432, 10784, + 4440, 27168, 4448, 6688, 4456, 23072, 4464, 14880, 4472, 31264, 4488, 17952, 4496, 9760, 4504, 26144, + 4512, 5664, 4520, 22048, 4528, 13856, 4536, 30240, 4552, 20000, 4560, 11808, 4568, 28192, 4576, 7712, + 4584, 24096, 4592, 15904, 4600, 32288, 4616, 16672, 4624, 8480, 4632, 24864, 4648, 20768, 4656, 12576, + 4664, 28960, 4680, 18720, 4688, 10528, 4696, 26912, 4704, 6432, 4712, 22816, 4720, 14624, 4728, 31008, + 4744, 17696, 4752, 9504, 4760, 25888, 4768, 5408, 4776, 21792, 4784, 13600, 4792, 29984, 4808, 19744, + 4816, 11552, 4824, 27936, 4832, 7456, 4840, 23840, 4848, 15648, 4856, 32032, 4872, 17184, 4880, 8992, + 4888, 25376, 4904, 21280, 4912, 13088, 4920, 29472, 4936, 19232, 4944, 11040, 4952, 27424, 4960, 6944, + 4968, 23328, 4976, 15136, 4984, 31520, 5000, 18208, 5008, 10016, 5016, 26400, 5024, 5920, 5032, 22304, + 5040, 14112, 5048, 30496, 5064, 20256, 5072, 12064, 5080, 28448, 5088, 7968, 5096, 24352, 5104, 16160, + 5112, 32544, 5128, 16544, 5136, 8352, 5144, 24736, 5160, 20640, 5168, 12448, 5176, 28832, 5192, 18592, + 5200, 10400, 5208, 26784, 5216, 6304, 5224, 22688, 5232, 14496, 5240, 30880, 5256, 17568, 5264, 9376, + 5272, 25760, 5288, 21664, 5296, 13472, 5304, 29856, 5320, 19616, 5328, 11424, 5336, 27808, 5344, 7328, + 5352, 23712, 5360, 15520, 5368, 31904, 5384, 17056, 5392, 8864, 5400, 25248, 5416, 21152, 5424, 12960, + 5432, 29344, 5448, 19104, 5456, 10912, 5464, 27296, 5472, 6816, 5480, 23200, 5488, 15008, 5496, 31392, + 5512, 18080, 5520, 9888, 5528, 26272, 5536, 5792, 5544, 22176, 5552, 13984, 5560, 30368, 5576, 20128, + 5584, 11936, 5592, 28320, 5600, 7840, 5608, 24224, 5616, 16032, 5624, 32416, 5640, 16800, 5648, 8608, + 5656, 24992, 5672, 20896, 5680, 12704, 5688, 29088, 5704, 18848, 5712, 10656, 5720, 27040, 5728, 6560, + 5736, 22944, 5744, 14752, 5752, 31136, 5768, 17824, 5776, 9632, 5784, 26016, 5800, 21920, 5808, 13728, + 5816, 30112, 5832, 19872, 5840, 11680, 5848, 28064, 5856, 7584, 5864, 23968, 5872, 15776, 5880, 32160, + 5896, 17312, 5904, 9120, 5912, 25504, 5928, 21408, 5936, 13216, 5944, 29600, 5960, 19360, 5968, 11168, + 5976, 27552, 5984, 7072, 5992, 23456, 6000, 15264, 6008, 31648, 6024, 18336, 6032, 10144, 6040, 26528, + 6056, 22432, 6064, 14240, 6072, 30624, 6088, 20384, 6096, 12192, 6104, 28576, 6112, 8096, 6120, 24480, + 6128, 16288, 6136, 32672, 6152, 16480, 6160, 8288, 6168, 24672, 6184, 20576, 6192, 12384, 6200, 28768, + 6216, 18528, 6224, 10336, 6232, 26720, 6248, 22624, 6256, 14432, 6264, 30816, 6280, 17504, 6288, 9312, + 6296, 25696, 6312, 21600, 6320, 13408, 6328, 29792, 6344, 19552, 6352, 11360, 6360, 27744, 6368, 7264, + 6376, 23648, 6384, 15456, 6392, 31840, 6408, 16992, 6416, 8800, 6424, 25184, 6440, 21088, 6448, 12896, + 6456, 29280, 6472, 19040, 6480, 10848, 6488, 27232, 6496, 6752, 6504, 23136, 6512, 14944, 6520, 31328, + 6536, 18016, 6544, 9824, 6552, 26208, 6568, 22112, 6576, 13920, 6584, 30304, 6600, 20064, 6608, 11872, + 6616, 28256, 6624, 7776, 6632, 24160, 6640, 15968, 6648, 32352, 6664, 16736, 6672, 8544, 6680, 24928, + 6696, 20832, 6704, 12640, 6712, 29024, 6728, 18784, 6736, 10592, 6744, 26976, 6760, 22880, 6768, 14688, + 6776, 31072, 6792, 17760, 6800, 9568, 6808, 25952, 6824, 21856, 6832, 13664, 6840, 30048, 6856, 19808, + 6864, 11616, 6872, 28000, 6880, 7520, 6888, 23904, 6896, 15712, 6904, 32096, 6920, 17248, 6928, 9056, + 6936, 25440, 6952, 21344, 6960, 13152, 6968, 29536, 6984, 19296, 6992, 11104, 7000, 27488, 7016, 23392, + 7024, 15200, 7032, 31584, 7048, 18272, 7056, 10080, 7064, 26464, 7080, 22368, 7088, 14176, 7096, 30560, + 7112, 20320, 7120, 12128, 7128, 28512, 7136, 8032, 7144, 24416, 7152, 16224, 7160, 32608, 7176, 16608, + 7184, 8416, 7192, 24800, 7208, 20704, 7216, 12512, 7224, 28896, 7240, 18656, 7248, 10464, 7256, 26848, + 7272, 22752, 7280, 14560, 7288, 30944, 7304, 17632, 7312, 9440, 7320, 25824, 7336, 21728, 7344, 13536, + 7352, 29920, 7368, 19680, 7376, 11488, 7384, 27872, 7400, 23776, 7408, 15584, 7416, 31968, 7432, 17120, + 7440, 8928, 7448, 25312, 7464, 21216, 7472, 13024, 7480, 29408, 7496, 19168, 7504, 10976, 7512, 27360, + 7528, 23264, 7536, 15072, 7544, 31456, 7560, 18144, 7568, 9952, 7576, 26336, 7592, 22240, 7600, 14048, + 7608, 30432, 7624, 20192, 7632, 12000, 7640, 28384, 7648, 7904, 7656, 24288, 7664, 16096, 7672, 32480, + 7688, 16864, 7696, 8672, 7704, 25056, 7720, 20960, 7728, 12768, 7736, 29152, 7752, 18912, 7760, 10720, + 7768, 27104, 7784, 23008, 7792, 14816, 7800, 31200, 7816, 17888, 7824, 9696, 7832, 26080, 7848, 21984, + 7856, 13792, 7864, 30176, 7880, 19936, 7888, 11744, 7896, 28128, 7912, 24032, 7920, 15840, 7928, 32224, + 7944, 17376, 7952, 9184, 7960, 25568, 7976, 21472, 7984, 13280, 7992, 29664, 8008, 19424, 8016, 11232, + 8024, 27616, 8040, 23520, 8048, 15328, 8056, 31712, 8072, 18400, 8080, 10208, 8088, 26592, 8104, 22496, + 8112, 14304, 8120, 30688, 8136, 20448, 8144, 12256, 8152, 28640, 8168, 24544, 8176, 16352, 8184, 32736, + 8200, 16400, 8216, 24592, 8232, 20496, 8240, 12304, 8248, 28688, 8264, 18448, 8272, 10256, 8280, 26640, + 8296, 22544, 8304, 14352, 8312, 30736, 8328, 17424, 8336, 9232, 8344, 25616, 8360, 21520, 8368, 13328, + 8376, 29712, 8392, 19472, 8400, 11280, 8408, 27664, 8424, 23568, 8432, 15376, 8440, 31760, 8456, 16912, + 8464, 8720, 8472, 25104, 8488, 21008, 8496, 12816, 8504, 29200, 8520, 18960, 8528, 10768, 8536, 27152, + 8552, 23056, 8560, 14864, 8568, 31248, 8584, 17936, 8592, 9744, 8600, 26128, 8616, 22032, 8624, 13840, + 8632, 30224, 8648, 19984, 8656, 11792, 8664, 28176, 8680, 24080, 8688, 15888, 8696, 32272, 8712, 16656, + 8728, 24848, 8744, 20752, 8752, 12560, 8760, 28944, 8776, 18704, 8784, 10512, 8792, 26896, 8808, 22800, + 8816, 14608, 8824, 30992, 8840, 17680, 8848, 9488, 8856, 25872, 8872, 21776, 8880, 13584, 8888, 29968, + 8904, 19728, 8912, 11536, 8920, 27920, 8936, 23824, 8944, 15632, 8952, 32016, 8968, 17168, 8984, 25360, + 9000, 21264, 9008, 13072, 9016, 29456, 9032, 19216, 9040, 11024, 9048, 27408, 9064, 23312, 9072, 15120, + 9080, 31504, 9096, 18192, 9104, 10000, 9112, 26384, 9128, 22288, 9136, 14096, 9144, 30480, 9160, 20240, + 9168, 12048, 9176, 28432, 9192, 24336, 9200, 16144, 9208, 32528, 9224, 16528, 9240, 24720, 9256, 20624, + 9264, 12432, 9272, 28816, 9288, 18576, 9296, 10384, 9304, 26768, 9320, 22672, 9328, 14480, 9336, 30864, + 9352, 17552, 9368, 25744, 9384, 21648, 9392, 13456, 9400, 29840, 9416, 19600, 9424, 11408, 9432, 27792, + 9448, 23696, 9456, 15504, 9464, 31888, 9480, 17040, 9496, 25232, 9512, 21136, 9520, 12944, 9528, 29328, + 9544, 19088, 9552, 10896, 9560, 27280, 9576, 23184, 9584, 14992, 9592, 31376, 9608, 18064, 9616, 9872, + 9624, 26256, 9640, 22160, 9648, 13968, 9656, 30352, 9672, 20112, 9680, 11920, 9688, 28304, 9704, 24208, + 9712, 16016, 9720, 32400, 9736, 16784, 9752, 24976, 9768, 20880, 9776, 12688, 9784, 29072, 9800, 18832, + 9808, 10640, 9816, 27024, 9832, 22928, 9840, 14736, 9848, 31120, 9864, 17808, 9880, 26000, 9896, 21904, + 9904, 13712, 9912, 30096, 9928, 19856, 9936, 11664, 9944, 28048, 9960, 23952, 9968, 15760, 9976, 32144, + 9992, 17296, 10008, 25488, 10024, 21392, 10032, 13200, 10040, 29584, 10056, 19344, 10064, 11152, 10072, 27536, + 10088, 23440, 10096, 15248, 10104, 31632, 10120, 18320, 10136, 26512, 10152, 22416, 10160, 14224, 10168, 30608, + 10184, 20368, 10192, 12176, 10200, 28560, 10216, 24464, 10224, 16272, 10232, 32656, 10248, 16464, 10264, 24656, + 10280, 20560, 10288, 12368, 10296, 28752, 10312, 18512, 10328, 26704, 10344, 22608, 10352, 14416, 10360, 30800, + 10376, 17488, 10392, 25680, 10408, 21584, 10416, 13392, 10424, 29776, 10440, 19536, 10448, 11344, 10456, 27728, + 10472, 23632, 10480, 15440, 10488, 31824, 10504, 16976, 10520, 25168, 10536, 21072, 10544, 12880, 10552, 29264, + 10568, 19024, 10576, 10832, 10584, 27216, 10600, 23120, 10608, 14928, 10616, 31312, 10632, 18000, 10648, 26192, + 10664, 22096, 10672, 13904, 10680, 30288, 10696, 20048, 10704, 11856, 10712, 28240, 10728, 24144, 10736, 15952, + 10744, 32336, 10760, 16720, 10776, 24912, 10792, 20816, 10800, 12624, 10808, 29008, 10824, 18768, 10840, 26960, + 10856, 22864, 10864, 14672, 10872, 31056, 10888, 17744, 10904, 25936, 10920, 21840, 10928, 13648, 10936, 30032, + 10952, 19792, 10960, 11600, 10968, 27984, 10984, 23888, 10992, 15696, 11000, 32080, 11016, 17232, 11032, 25424, + 11048, 21328, 11056, 13136, 11064, 29520, 11080, 19280, 11096, 27472, 11112, 23376, 11120, 15184, 11128, 31568, + 11144, 18256, 11160, 26448, 11176, 22352, 11184, 14160, 11192, 30544, 11208, 20304, 11216, 12112, 11224, 28496, + 11240, 24400, 11248, 16208, 11256, 32592, 11272, 16592, 11288, 24784, 11304, 20688, 11312, 12496, 11320, 28880, + 11336, 18640, 11352, 26832, 11368, 22736, 11376, 14544, 11384, 30928, 11400, 17616, 11416, 25808, 11432, 21712, + 11440, 13520, 11448, 29904, 11464, 19664, 11480, 27856, 11496, 23760, 11504, 15568, 11512, 31952, 11528, 17104, + 11544, 25296, 11560, 21200, 11568, 13008, 11576, 29392, 11592, 19152, 11608, 27344, 11624, 23248, 11632, 15056, + 11640, 31440, 11656, 18128, 11672, 26320, 11688, 22224, 11696, 14032, 11704, 30416, 11720, 20176, 11728, 11984, + 11736, 28368, 11752, 24272, 11760, 16080, 11768, 32464, 11784, 16848, 11800, 25040, 11816, 20944, 11824, 12752, + 11832, 29136, 11848, 18896, 11864, 27088, 11880, 22992, 11888, 14800, 11896, 31184, 11912, 17872, 11928, 26064, + 11944, 21968, 11952, 13776, 11960, 30160, 11976, 19920, 11992, 28112, 12008, 24016, 12016, 15824, 12024, 32208, + 12040, 17360, 12056, 25552, 12072, 21456, 12080, 13264, 12088, 29648, 12104, 19408, 12120, 27600, 12136, 23504, + 12144, 15312, 12152, 31696, 12168, 18384, 12184, 26576, 12200, 22480, 12208, 14288, 12216, 30672, 12232, 20432, + 12248, 28624, 12264, 24528, 12272, 16336, 12280, 32720, 12296, 16432, 12312, 24624, 12328, 20528, 12344, 28720, + 12360, 18480, 12376, 26672, 12392, 22576, 12400, 14384, 12408, 30768, 12424, 17456, 12440, 25648, 12456, 21552, + 12464, 13360, 12472, 29744, 12488, 19504, 12504, 27696, 12520, 23600, 12528, 15408, 12536, 31792, 12552, 16944, + 12568, 25136, 12584, 21040, 12592, 12848, 12600, 29232, 12616, 18992, 12632, 27184, 12648, 23088, 12656, 14896, + 12664, 31280, 12680, 17968, 12696, 26160, 12712, 22064, 12720, 13872, 12728, 30256, 12744, 20016, 12760, 28208, + 12776, 24112, 12784, 15920, 12792, 32304, 12808, 16688, 12824, 24880, 12840, 20784, 12856, 28976, 12872, 18736, + 12888, 26928, 12904, 22832, 12912, 14640, 12920, 31024, 12936, 17712, 12952, 25904, 12968, 21808, 12976, 13616, + 12984, 30000, 13000, 19760, 13016, 27952, 13032, 23856, 13040, 15664, 13048, 32048, 13064, 17200, 13080, 25392, + 13096, 21296, 13112, 29488, 13128, 19248, 13144, 27440, 13160, 23344, 13168, 15152, 13176, 31536, 13192, 18224, + 13208, 26416, 13224, 22320, 13232, 14128, 13240, 30512, 13256, 20272, 13272, 28464, 13288, 24368, 13296, 16176, + 13304, 32560, 13320, 16560, 13336, 24752, 13352, 20656, 13368, 28848, 13384, 18608, 13400, 26800, 13416, 22704, + 13424, 14512, 13432, 30896, 13448, 17584, 13464, 25776, 13480, 21680, 13496, 29872, 13512, 19632, 13528, 27824, + 13544, 23728, 13552, 15536, 13560, 31920, 13576, 17072, 13592, 25264, 13608, 21168, 13624, 29360, 13640, 19120, + 13656, 27312, 13672, 23216, 13680, 15024, 13688, 31408, 13704, 18096, 13720, 26288, 13736, 22192, 13744, 14000, + 13752, 30384, 13768, 20144, 13784, 28336, 13800, 24240, 13808, 16048, 13816, 32432, 13832, 16816, 13848, 25008, + 13864, 20912, 13880, 29104, 13896, 18864, 13912, 27056, 13928, 22960, 13936, 14768, 13944, 31152, 13960, 17840, + 13976, 26032, 13992, 21936, 14008, 30128, 14024, 19888, 14040, 28080, 14056, 23984, 14064, 15792, 14072, 32176, + 14088, 17328, 14104, 25520, 14120, 21424, 14136, 29616, 14152, 19376, 14168, 27568, 14184, 23472, 14192, 15280, + 14200, 31664, 14216, 18352, 14232, 26544, 14248, 22448, 14264, 30640, 14280, 20400, 14296, 28592, 14312, 24496, + 14320, 16304, 14328, 32688, 14344, 16496, 14360, 24688, 14376, 20592, 14392, 28784, 14408, 18544, 14424, 26736, + 14440, 22640, 14456, 30832, 14472, 17520, 14488, 25712, 14504, 21616, 14520, 29808, 14536, 19568, 14552, 27760, + 14568, 23664, 14576, 15472, 14584, 31856, 14600, 17008, 14616, 25200, 14632, 21104, 14648, 29296, 14664, 19056, + 14680, 27248, 14696, 23152, 14704, 14960, 14712, 31344, 14728, 18032, 14744, 26224, 14760, 22128, 14776, 30320, + 14792, 20080, 14808, 28272, 14824, 24176, 14832, 15984, 14840, 32368, 14856, 16752, 14872, 24944, 14888, 20848, + 14904, 29040, 14920, 18800, 14936, 26992, 14952, 22896, 14968, 31088, 14984, 17776, 15000, 25968, 15016, 21872, + 15032, 30064, 15048, 19824, 15064, 28016, 15080, 23920, 15088, 15728, 15096, 32112, 15112, 17264, 15128, 25456, + 15144, 21360, 15160, 29552, 15176, 19312, 15192, 27504, 15208, 23408, 15224, 31600, 15240, 18288, 15256, 26480, + 15272, 22384, 15288, 30576, 15304, 20336, 15320, 28528, 15336, 24432, 15344, 16240, 15352, 32624, 15368, 16624, + 15384, 24816, 15400, 20720, 15416, 28912, 15432, 18672, 15448, 26864, 15464, 22768, 15480, 30960, 15496, 17648, + 15512, 25840, 15528, 21744, 15544, 29936, 15560, 19696, 15576, 27888, 15592, 23792, 15608, 31984, 15624, 17136, + 15640, 25328, 15656, 21232, 15672, 29424, 15688, 19184, 15704, 27376, 15720, 23280, 15736, 31472, 15752, 18160, + 15768, 26352, 15784, 22256, 15800, 30448, 15816, 20208, 15832, 28400, 15848, 24304, 15856, 16112, 15864, 32496, + 15880, 16880, 15896, 25072, 15912, 20976, 15928, 29168, 15944, 18928, 15960, 27120, 15976, 23024, 15992, 31216, + 16008, 17904, 16024, 26096, 16040, 22000, 16056, 30192, 16072, 19952, 16088, 28144, 16104, 24048, 16120, 32240, + 16136, 17392, 16152, 25584, 16168, 21488, 16184, 29680, 16200, 19440, 16216, 27632, 16232, 23536, 16248, 31728, + 16264, 18416, 16280, 26608, 16296, 22512, 16312, 30704, 16328, 20464, 16344, 28656, 16360, 24560, 16376, 32752, + 16408, 24584, 16424, 20488, 16440, 28680, 16456, 18440, 16472, 26632, 16488, 22536, 16504, 30728, 16520, 17416, + 16536, 25608, 16552, 21512, 16568, 29704, 16584, 19464, 16600, 27656, 16616, 23560, 16632, 31752, 16648, 16904, + 16664, 25096, 16680, 21000, 16696, 29192, 16712, 18952, 16728, 27144, 16744, 23048, 16760, 31240, 16776, 17928, + 16792, 26120, 16808, 22024, 16824, 30216, 16840, 19976, 16856, 28168, 16872, 24072, 16888, 32264, 16920, 24840, + 16936, 20744, 16952, 28936, 16968, 18696, 16984, 26888, 17000, 22792, 17016, 30984, 17032, 17672, 17048, 25864, + 17064, 21768, 17080, 29960, 17096, 19720, 17112, 27912, 17128, 23816, 17144, 32008, 17176, 25352, 17192, 21256, + 17208, 29448, 17224, 19208, 17240, 27400, 17256, 23304, 17272, 31496, 17288, 18184, 17304, 26376, 17320, 22280, + 17336, 30472, 17352, 20232, 17368, 28424, 17384, 24328, 17400, 32520, 17432, 24712, 17448, 20616, 17464, 28808, + 17480, 18568, 17496, 26760, 17512, 22664, 17528, 30856, 17560, 25736, 17576, 21640, 17592, 29832, 17608, 19592, + 17624, 27784, 17640, 23688, 17656, 31880, 17688, 25224, 17704, 21128, 17720, 29320, 17736, 19080, 17752, 27272, + 17768, 23176, 17784, 31368, 17800, 18056, 17816, 26248, 17832, 22152, 17848, 30344, 17864, 20104, 17880, 28296, + 17896, 24200, 17912, 32392, 17944, 24968, 17960, 20872, 17976, 29064, 17992, 18824, 18008, 27016, 18024, 22920, + 18040, 31112, 18072, 25992, 18088, 21896, 18104, 30088, 18120, 19848, 18136, 28040, 18152, 23944, 18168, 32136, + 18200, 25480, 18216, 21384, 18232, 29576, 18248, 19336, 18264, 27528, 18280, 23432, 18296, 31624, 18328, 26504, + 18344, 22408, 18360, 30600, 18376, 20360, 18392, 28552, 18408, 24456, 18424, 32648, 18456, 24648, 18472, 20552, + 18488, 28744, 18520, 26696, 18536, 22600, 18552, 30792, 18584, 25672, 18600, 21576, 18616, 29768, 18632, 19528, + 18648, 27720, 18664, 23624, 18680, 31816, 18712, 25160, 18728, 21064, 18744, 29256, 18760, 19016, 18776, 27208, + 18792, 23112, 18808, 31304, 18840, 26184, 18856, 22088, 18872, 30280, 18888, 20040, 18904, 28232, 18920, 24136, + 18936, 32328, 18968, 24904, 18984, 20808, 19000, 29000, 19032, 26952, 19048, 22856, 19064, 31048, 19096, 25928, + 19112, 21832, 19128, 30024, 19144, 19784, 19160, 27976, 19176, 23880, 19192, 32072, 19224, 25416, 19240, 21320, + 19256, 29512, 19288, 27464, 19304, 23368, 19320, 31560, 19352, 26440, 19368, 22344, 19384, 30536, 19400, 20296, + 19416, 28488, 19432, 24392, 19448, 32584, 19480, 24776, 19496, 20680, 19512, 28872, 19544, 26824, 19560, 22728, + 19576, 30920, 19608, 25800, 19624, 21704, 19640, 29896, 19672, 27848, 19688, 23752, 19704, 31944, 19736, 25288, + 19752, 21192, 19768, 29384, 19800, 27336, 19816, 23240, 19832, 31432, 19864, 26312, 19880, 22216, 19896, 30408, + 19912, 20168, 19928, 28360, 19944, 24264, 19960, 32456, 19992, 25032, 20008, 20936, 20024, 29128, 20056, 27080, + 20072, 22984, 20088, 31176, 20120, 26056, 20136, 21960, 20152, 30152, 20184, 28104, 20200, 24008, 20216, 32200, + 20248, 25544, 20264, 21448, 20280, 29640, 20312, 27592, 20328, 23496, 20344, 31688, 20376, 26568, 20392, 22472, + 20408, 30664, 20440, 28616, 20456, 24520, 20472, 32712, 20504, 24616, 20536, 28712, 20568, 26664, 20584, 22568, + 20600, 30760, 20632, 25640, 20648, 21544, 20664, 29736, 20696, 27688, 20712, 23592, 20728, 31784, 20760, 25128, + 20776, 21032, 20792, 29224, 20824, 27176, 20840, 23080, 20856, 31272, 20888, 26152, 20904, 22056, 20920, 30248, + 20952, 28200, 20968, 24104, 20984, 32296, 21016, 24872, 21048, 28968, 21080, 26920, 21096, 22824, 21112, 31016, + 21144, 25896, 21160, 21800, 21176, 29992, 21208, 27944, 21224, 23848, 21240, 32040, 21272, 25384, 21304, 29480, + 21336, 27432, 21352, 23336, 21368, 31528, 21400, 26408, 21416, 22312, 21432, 30504, 21464, 28456, 21480, 24360, + 21496, 32552, 21528, 24744, 21560, 28840, 21592, 26792, 21608, 22696, 21624, 30888, 21656, 25768, 21688, 29864, + 21720, 27816, 21736, 23720, 21752, 31912, 21784, 25256, 21816, 29352, 21848, 27304, 21864, 23208, 21880, 31400, + 21912, 26280, 21928, 22184, 21944, 30376, 21976, 28328, 21992, 24232, 22008, 32424, 22040, 25000, 22072, 29096, + 22104, 27048, 22120, 22952, 22136, 31144, 22168, 26024, 22200, 30120, 22232, 28072, 22248, 23976, 22264, 32168, + 22296, 25512, 22328, 29608, 22360, 27560, 22376, 23464, 22392, 31656, 22424, 26536, 22456, 30632, 22488, 28584, + 22504, 24488, 22520, 32680, 22552, 24680, 22584, 28776, 22616, 26728, 22648, 30824, 22680, 25704, 22712, 29800, + 22744, 27752, 22760, 23656, 22776, 31848, 22808, 25192, 22840, 29288, 22872, 27240, 22888, 23144, 22904, 31336, + 22936, 26216, 22968, 30312, 23000, 28264, 23016, 24168, 23032, 32360, 23064, 24936, 23096, 29032, 23128, 26984, + 23160, 31080, 23192, 25960, 23224, 30056, 23256, 28008, 23272, 23912, 23288, 32104, 23320, 25448, 23352, 29544, + 23384, 27496, 23416, 31592, 23448, 26472, 23480, 30568, 23512, 28520, 23528, 24424, 23544, 32616, 23576, 24808, + 23608, 28904, 23640, 26856, 23672, 30952, 23704, 25832, 23736, 29928, 23768, 27880, 23800, 31976, 23832, 25320, + 23864, 29416, 23896, 27368, 23928, 31464, 23960, 26344, 23992, 30440, 24024, 28392, 24040, 24296, 24056, 32488, + 24088, 25064, 24120, 29160, 24152, 27112, 24184, 31208, 24216, 26088, 24248, 30184, 24280, 28136, 24312, 32232, + 24344, 25576, 24376, 29672, 24408, 27624, 24440, 31720, 24472, 26600, 24504, 30696, 24536, 28648, 24568, 32744, + 24632, 28696, 24664, 26648, 24696, 30744, 24728, 25624, 24760, 29720, 24792, 27672, 24824, 31768, 24856, 25112, + 24888, 29208, 24920, 27160, 24952, 31256, 24984, 26136, 25016, 30232, 25048, 28184, 25080, 32280, 25144, 28952, + 25176, 26904, 25208, 31000, 25240, 25880, 25272, 29976, 25304, 27928, 25336, 32024, 25400, 29464, 25432, 27416, + 25464, 31512, 25496, 26392, 25528, 30488, 25560, 28440, 25592, 32536, 25656, 28824, 25688, 26776, 25720, 30872, + 25784, 29848, 25816, 27800, 25848, 31896, 25912, 29336, 25944, 27288, 25976, 31384, 26008, 26264, 26040, 30360, + 26072, 28312, 26104, 32408, 26168, 29080, 26200, 27032, 26232, 31128, 26296, 30104, 26328, 28056, 26360, 32152, + 26424, 29592, 26456, 27544, 26488, 31640, 26552, 30616, 26584, 28568, 26616, 32664, 26680, 28760, 26744, 30808, + 26808, 29784, 26840, 27736, 26872, 31832, 26936, 29272, 26968, 27224, 27000, 31320, 27064, 30296, 27096, 28248, + 27128, 32344, 27192, 29016, 27256, 31064, 27320, 30040, 27352, 27992, 27384, 32088, 27448, 29528, 27512, 31576, + 27576, 30552, 27608, 28504, 27640, 32600, 27704, 28888, 27768, 30936, 27832, 29912, 27896, 31960, 27960, 29400, + 28024, 31448, 28088, 30424, 28120, 28376, 28152, 32472, 28216, 29144, 28280, 31192, 28344, 30168, 28408, 32216, + 28472, 29656, 28536, 31704, 28600, 30680, 28664, 32728, 28792, 30776, 28856, 29752, 28920, 31800, 28984, 29240, + 29048, 31288, 29112, 30264, 29176, 32312, 29304, 31032, 29368, 30008, 29432, 32056, 29560, 31544, 29624, 30520, + 29688, 32568, 29816, 30904, 29944, 31928, 30072, 31416, 30136, 30392, 30200, 32440, 30328, 31160, 30456, 32184, + 30584, 31672, 30712, 32696, 30968, 31864, 31096, 31352, 31224, 32376, 31480, 32120, 31736, 32632, 32248, 32504, +}; + +void dsps_fft2r_rev_tables_init_fc32(void) +{ + dsps_fft2r_rev_tables_fc32[0] = (uint16_t *)bitrev2r_table_16_fc32; + dsps_fft2r_rev_tables_fc32[1] = (uint16_t *)bitrev2r_table_32_fc32; + dsps_fft2r_rev_tables_fc32[2] = (uint16_t *)bitrev2r_table_64_fc32; + dsps_fft2r_rev_tables_fc32[3] = (uint16_t *)bitrev2r_table_128_fc32; + dsps_fft2r_rev_tables_fc32[4] = (uint16_t *)bitrev2r_table_256_fc32; + dsps_fft2r_rev_tables_fc32[5] = (uint16_t *)bitrev2r_table_512_fc32; + dsps_fft2r_rev_tables_fc32[6] = (uint16_t *)bitrev2r_table_1024_fc32; + dsps_fft2r_rev_tables_fc32[7] = (uint16_t *)bitrev2r_table_2048_fc32; + dsps_fft2r_rev_tables_fc32[8] = (uint16_t *)bitrev2r_table_4096_fc32; + +} + +uint16_t *dsps_fft2r_rev_tables_fc32[] = { + (uint16_t *)bitrev2r_table_16_fc32, + (uint16_t *)bitrev2r_table_32_fc32, + (uint16_t *)bitrev2r_table_64_fc32, + (uint16_t *)bitrev2r_table_128_fc32, + (uint16_t *)bitrev2r_table_256_fc32, + (uint16_t *)bitrev2r_table_512_fc32, + (uint16_t *)bitrev2r_table_1024_fc32, + (uint16_t *)bitrev2r_table_2048_fc32, + (uint16_t *)bitrev2r_table_4096_fc32, +}; + +const uint16_t bitrev2r_table_16_fc32_size = 6; +const uint16_t bitrev2r_table_32_fc32_size = 12; +const uint16_t bitrev2r_table_64_fc32_size = 28; +const uint16_t bitrev2r_table_128_fc32_size = 56; +const uint16_t bitrev2r_table_256_fc32_size = 120; +const uint16_t bitrev2r_table_512_fc32_size = 240; +const uint16_t bitrev2r_table_1024_fc32_size = 496; +const uint16_t bitrev2r_table_2048_fc32_size = 992; +const uint16_t bitrev2r_table_4096_fc32_size = 2016; + +const uint16_t dsps_fft2r_rev_tables_fc32_size[] = { + (const uint16_t)6, // bitrev2r_table_16_fc32_size, + (const uint16_t)12, // bitrev2r_table_32_fc32_size, + (const uint16_t)28, // bitrev2r_table_64_fc32_size, + (const uint16_t)56, // bitrev2r_table_128_fc32_size, + (const uint16_t)120, // bitrev2r_table_256_fc32_size, + (const uint16_t)240, // bitrev2r_table_512_fc32_size, + (const uint16_t)496, // bitrev2r_table_1024_fc32_size, + (const uint16_t)992, // bitrev2r_table_2048_fc32_size, + (const uint16_t)2016,// bitrev2r_table_4096_fc32_size, +}; diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ae32.c new file mode 100644 index 0000000..d52dc15 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ae32.c @@ -0,0 +1,63 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fft2r.h" +#include "dsp_common.h" +#include "dsp_types.h" +#include +#include "esp_attr.h" +#include "dsps_fft2r_platform.h" + +#if (dsps_bit_rev_lookup_fc32_ae32_enabled == 1) + +esp_err_t dsps_bit_rev_lookup_fc32_ae32(float *data, int reverse_size, uint16_t *reverse_tab) +{ + int idx_0, idx_1; + int idx_2, idx_3; + + float *data_i; + + asm volatile ("addi %0, %1, 4" : "=a" (data_i) : "a" (data)); ///data_i = &data[1]; + asm volatile ("srli %0, %0, 1" : "+a" (reverse_size)); /// reverse_size >>= 1; + asm volatile ("loopnez %0, __loop_end_radix2_reorder_lookup_table" :: "a" (reverse_size)); ///for (i = 0; i < reverse_size; i++) { + asm volatile ("l16ui %0, %1, 0" : "=a" (idx_0) : "a" (reverse_tab)); //idx_0 = *(reverse_tab + 0); ///idx_0 = reverse_tab[i * 2 + 0]; + asm volatile ("l16ui %0, %1, 2" : "=a" (idx_1) : "a" (reverse_tab)); //idx_1 = *(reverse_tab + 1); ///idx_1 = reverse_tab[i * 2 + 1]; + asm volatile ("l16ui %0, %1, 4" : "=a" (idx_2) : "a" (reverse_tab)); //idx_2 = *(reverse_tab + 2); ///idx_2 = reverse_tab[i * 2 + 2]; + asm volatile ("l16ui %0, %1, 6" : "=a" (idx_3) : "a" (reverse_tab)); //idx_3 = *(reverse_tab + 3); ///idx_3 = reverse_tab[i * 2 + 3]; + asm volatile ("addi %0, %0, 8" : "+a" (reverse_tab)); // reverse_tab += 4; + + asm volatile ("lsx f0, %0, %1" :: "a" (data), "a" (idx_0)); // f0 = *(data + idx_0); //f0 = data[idx_0 + 0]; + asm volatile ("lsx f2, %0, %1" :: "a" (data_i), "a" (idx_0)); // f2 = *(data_i + idx_0); //f2 = data[idx_0 + 1]; + asm volatile ("lsx f1, %0, %1" :: "a" (data), "a" (idx_1)); //f1 = *(data + idx_1); //f1 = data[idx_1 + 0]; + asm volatile ("lsx f3, %0, %1" :: "a" (data_i), "a" (idx_1)); //f3 = *(data_i + idx_1); //f3 = data[idx_1 + 1]; + + asm volatile ("ssx f0, %0, %1" :: "a" (data), "a" (idx_1)); //*(data + idx_1) = f0; //data[idx_1 + 0] = f0; + asm volatile ("ssx f2, %0, %1" :: "a" (data_i), "a" (idx_1)); //*(data_i + idx_1) = f2; //data[idx_1 + 1] = f2; + asm volatile ("ssx f1, %0, %1" :: "a" (data), "a" (idx_0)); //*(data + idx_0) = f1; //data[idx_0 + 0] = f1; + asm volatile ("ssx f3, %0, %1" :: "a" (data_i), "a" (idx_0)); //*(data_i + idx_0) = f3;//data[idx_0 + 1] = f3; + + asm volatile ("lsx f0, %0, %1" :: "a" (data), "a" (idx_2)); // f0 = *(data + idx_2); //f0 = data[idx_2 + 0]; + asm volatile ("lsx f2, %0, %1" :: "a" (data_i), "a" (idx_2)); // f2 = *(data_i + idx_2); //f2 = data[idx_2 + 1]; + asm volatile ("lsx f1, %0, %1" :: "a" (data), "a" (idx_3)); //f1 = *(data + idx_3); //f1 = data[idx_3 + 0]; + asm volatile ("lsx f3, %0, %1" :: "a" (data_i), "a" (idx_3)); //f3 = *(data_i + idx_3); //f3 = data[idx_3 + 1]; + + asm volatile ("ssx f0, %0, %1" :: "a" (data), "a" (idx_3)); //*(data + idx_3) = f0; //data[idx_3 + 0] = f0; + asm volatile ("ssx f2, %0, %1" :: "a" (data_i), "a" (idx_3)); //*(data_i + idx_3) = f2; //data[idx_3 + 1] = f2; + asm volatile ("ssx f1, %0, %1" :: "a" (data), "a" (idx_2)); //*(data + idx_2) = f1; //data[idx_2 + 0] = f1; + asm volatile ("ssx f3, %0, %1" :: "a" (data_i), "a" (idx_2)); //*(data_i + idx_2) = f3; //data[idx_2 + 1] = f3; + //} + asm volatile("__loop_end_radix2_reorder_lookup_table: nop"); + return ESP_OK; +} +#endif // dsps_bit_rev_lookup_fc32_ae32_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ae32_.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ae32_.S new file mode 100644 index 0000000..ee961f2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ae32_.S @@ -0,0 +1,149 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fft2r_platform.h" +#if (dsps_fft2r_fc32_ae32_enabled == 1) + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .global dsps_fft2r_fc32_ae32_ + .type dsps_fft2r_fc32_ae32_,@function + +// .extern dsps_fft_w_table_fc32; + .global dsps_fft_w_table_fc32; + +// The function implements the following C code: +//esp_err_t dsps_fft2r_fc32_ansi(float *data, int N) +//{ +// float *w = dsps_fft_w_table_fc32; +// +// int ie, ia, m; +// float re_temp, im_temp; +// float c, s; +// int N2 = N; +// ie = 1; +// for (int N2 = N/2; N2 > 0; N2 >>= 1) { +// ia = 0; +// for (int j = 0; j < ie; j++) { +// c = w[2 * j]; +// s = w[2 * j + 1]; +// for (int i = 0; i < N2; i++) { +// m = ia + N2; +// re_temp = c * data[2 * m] + s * data[2 * m + 1]; +// im_temp = c * data[2 * m + 1] - s * data[2 * m]; +// data[2 * m] = data[2 * ia] - re_temp; +// data[2 * m + 1] = data[2 * ia + 1] - im_temp; +// data[2 * ia] = data[2 * ia] + re_temp; +// data[2 * ia + 1] = data[2 * ia + 1] + im_temp; +// ia++; +// } +// ia += N2; +// } +// ie <<= 1; +// } +// return result; +//} + + +dsps_fft2r_fc32_ae32_: +//esp_err_t dsps_fft2r_fc32_ansi(float *data, int N, float* dsps_fft_w_table_fc32) + + entry a1, 16 + // Array increment for floating point data should be 4 +// data - a2 +// N - a3 +// dsps_fft_w_table_fc32 - a4 - for now + +// a6 - k, main loop counter; N2 - for (int N2 = N/2; N2 > 0; N2 >>= 1) +// a7 - ie +// a8 - j +// a9 - test +// a10 - (j*2)<<2, or a10 - j<<3 +// f0 - c or w[2 * j] +// f1 - s or w[2 * j + 1] +// a11 - ia +// a12 - m +// a13 - ia pointer +// a14 - m pointer +// f6 - re_temp +// f7 - im_temp + +// a15 - debug + + // This instruction are not working. Have to be fixed!!! + // For now theres no solution... +// l32r a4, dsps_fft_w_table_fc32_ae32 + + // Load shift register with 1 + movi.n a5, 1 // a5 = 1; + ssr a5 // load shift register with 1 + + srli a6, a3, 1 // a6 = N2 = N/2 + movi a7, 1 // a7 - ie + +.fft2r_l1: + movi a8, 0 // a8 - j + movi a11,0 // a11 = ia = 0; + +.fft2r_l2: // loop for j, a8 - j + slli a10, a8, 3 // a10 = j<<3 // shift for cos () -- c = w[2 * j]; + add.n a10, a10, a4 // a10 - pointer to cos + lsi f0, a10, 0 + lsi f1, a10, 4 + + movi a9, 0 // just for debug + loopnez a6, .fft2r_l3 + add.n a12, a11, a6 // a12 = m = ia + N2 + + slli a14, a12, 3 // a14 - pointer for m*2 + slli a13, a11, 3 // a13 - pointer for ia*2 + add.n a14, a14, a2 // pointers to data arrays + add.n a13, a13, a2 // + + lsi f4, a14, 0 // data[2 * m] + mul.s f6, f0, f4 // re_temp = c * data[2 * m] + lsi f5, a14, 4 // data[2 * m + 1] + mul.s f7, f0, f5 // im_temp = c * data[2 * m + 1] + + lsi f2, a13, 0 // data[2 * ia] + madd.s f6, f1, f5 // re_temp += s * data[2 * m + 1]; + lsi f3, a13, 4 // data[2 * ia + 1] + msub.s f7, f1, f4 // im_temp -= s * data[2 * m]; + + sub.s f8, f2, f6 // = data[2 * ia] - re_temp; + sub.s f9, f3, f7 // = data[2 * ia + 1] - im_temp; + + add.s f10, f2, f6 // = data[2 * ia] + re_temp; + ssi f8, a14, 0 + add.s f11, f3, f7 // = data[2 * ia + 1] + im_temp; + ssi f9, a14, 4 + + ssi f10, a13, 0 + addi a11, a11, 1// ia++ + ssi f11, a13, 4 +.fft2r_l3: + add a11, a11, a6 + + addi a8, a8, 1 // j++ + BNE a8, a7, .fft2r_l2 // + slli a7, a7, 1 // ie = ie<<1 +// main loop: for (int k = N/2; k > 0; k >>= 1) + srli a6, a6, 1 // a6 = a6>>1 + BNEZ a6, .fft2r_l1// Jump if > 0 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_fft2r_fc32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_aes3_.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_aes3_.S new file mode 100644 index 0000000..1ead1da --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_aes3_.S @@ -0,0 +1,143 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fft2r_platform.h" +#if (dsps_fft2r_fc32_aes3_enabled == 1) + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .global dsps_fft2r_fc32_aes3_ + .type dsps_fft2r_fc32_aes3_,@function + +// .extern dsps_fft_w_table_fc32; + .global dsps_fft_w_table_fc32; + +// The function implements the following C code: +//esp_err_t dsps_fft2r_fc32_ansi(float *data, int N) +//{ +// float *w = dsps_fft_w_table_fc32; +// +// int ie, ia, m; +// float re_temp, im_temp; +// float c, s; +// int N2 = N; +// ie = 1; +// for (int N2 = N/2; N2 > 0; N2 >>= 1) { +// ia = 0; +// for (int j = 0; j < ie; j++) { +// c = w[2 * j]; +// s = w[2 * j + 1]; +// for (int i = 0; i < N2; i++) { +// m = ia + N2; +// re_temp = c * data[2 * m] + s * data[2 * m + 1]; +// im_temp = c * data[2 * m + 1] - s * data[2 * m]; +// data[2 * m] = data[2 * ia] - re_temp; +// data[2 * m + 1] = data[2 * ia + 1] - im_temp; +// data[2 * ia] = data[2 * ia] + re_temp; +// data[2 * ia + 1] = data[2 * ia + 1] + im_temp; +// ia++; +// } +// ia += N2; +// } +// ie <<= 1; +// } +// return result; +//} + + +dsps_fft2r_fc32_aes3_: +//esp_err_t dsps_fft2r_fc32_ansi(float *data, int N, float* dsps_fft_w_table_fc32) + + entry a1, 16 + // Array increment for floating point data should be 4 +// data - a2 +// N - a3 +// dsps_fft_w_table_fc32 - a4 - for now + +// a6 - k, main loop counter; N2 - for (int N2 = N/2; N2 > 0; N2 >>= 1) +// a7 - ie +// a8 - j +// a9 - test +// a10 - (j*2)<<2, or a10 - j<<3 +// f0 - c or w[2 * j] +// f1 - s or w[2 * j + 1] +// a11 - ia +// a12 - m +// a13 - ia pointer +// a14 - m pointer +// f6 - re_temp +// f7 - im_temp + +// a15 - debug + + // This instruction are not working. Have to be fixed!!! + // For now theres no solution... +// l32r a4, dsps_fft_w_table_fc32_ae32 + + // Load shift register with 1 + movi.n a5, 1 // a5 = 1; + ssr a5 // load shift register with 1 + + srli a6, a3, 1 // a6 = N2 = N/2 + movi a7, 1 // a7 - ie + +.fft2r_l1: + movi a8, 0 // a8 - j + movi a11,0 // a11 = ia = 0; + +.fft2r_l2: // loop for j, a8 - j + slli a10, a8, 3 // a10 = j<<3 // shift for cos () -- c = w[2 * j]; + add.n a10, a10, a4 // a10 - pointer to cos + EE.LDF.64.IP f1, f0, a10, 0 + + movi a9, 0 // just for debug + loopnez a6, .fft2r_l3 + add.n a12, a11, a6 // a12 = m = ia + N2 + + slli a14, a12, 3 // a14 - pointer for m*2 + slli a13, a11, 3 // a13 - pointer for ia*2 + add.n a14, a14, a2 // pointers to data arrays + add.n a13, a13, a2 // + EE.LDF.64.IP f5, f4, a14, 0 // data[2 * m], data[2 * m + 1] + EE.LDF.64.IP f3, f2, a13, 0 // data[2 * ia], data[2 * ia + 1] + + mul.s f6, f0, f4 // re_temp = c * data[2 * m] + mul.s f7, f0, f5 // im_temp = c * data[2 * m + 1] + + madd.s f6, f1, f5 // re_temp += s * data[2 * m + 1]; + msub.s f7, f1, f4 // im_temp -= s * data[2 * m]; + + sub.s f8, f2, f6 // = data[2 * ia] - re_temp; + sub.s f9, f3, f7 // = data[2 * ia + 1] - im_temp; + + add.s f10, f2, f6 // = data[2 * ia] + re_temp; + add.s f11, f3, f7 // = data[2 * ia + 1] + im_temp; + EE.STF.64.IP f9, f8, a14, 0 + addi a11, a11, 1 // ia++ + EE.STF.64.IP f11, f10, a13, 0 +.fft2r_l3: + add a11, a11, a6 + + addi a8, a8, 1 // j++ + BNE a8, a7, .fft2r_l2 // + slli a7, a7, 1 // ie = ie<<1 +// main loop: for (int k = N/2; k > 0; k >>= 1) + srli a6, a6, 1 // a6 = a6>>1 + BNEZ a6, .fft2r_l1// Jump if > 0 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_fft2r_fc32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ansi.c new file mode 100644 index 0000000..e91d2ba --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft2r_fc32_ansi.c @@ -0,0 +1,366 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fft2r.h" +#include "dsp_common.h" +#include "dsp_types.h" +#include +#include "esp_attr.h" +#include "esp_log.h" +#include +#include + + +static const char *TAG = "fftr2_ansi"; + +float *dsps_fft_w_table_fc32; +int dsps_fft_w_table_size; +uint8_t dsps_fft2r_initialized = 0; +uint8_t dsps_fft2r_mem_allocated = 0; + +uint16_t *dsps_fft2r_ram_rev_table = NULL; + +#ifdef CONFIG_IDF_TARGET_ESP32S3 +extern float *dsps_fft2r_w_table_fc32_1024; +#endif // CONFIG_IDF_TARGET_ESP32S3 + +unsigned short reverse(unsigned short x, unsigned short N, int order); + +esp_err_t dsps_fft2r_init_fc32(float *fft_table_buff, int table_size) +{ + esp_err_t result = ESP_OK; + if (dsps_fft2r_initialized != 0) { + return result; + } + if (table_size > CONFIG_DSP_MAX_FFT_SIZE) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (table_size == 0) { + return result; + } + if (fft_table_buff != NULL) { + if (dsps_fft2r_mem_allocated) { + return ESP_ERR_DSP_REINITIALIZED; + } + dsps_fft_w_table_fc32 = fft_table_buff; + dsps_fft_w_table_size = table_size; + } else { + if (!dsps_fft2r_mem_allocated) { +#if CONFIG_IDF_TARGET_ESP32S3 + if (table_size <= 1024) { + dsps_fft_w_table_fc32 = dsps_fft2r_w_table_fc32_1024; + } else { + dsps_fft_w_table_fc32 = (float *)memalign(16, sizeof(float) * table_size); + } +#else + dsps_fft_w_table_fc32 = (float *)malloc(table_size * sizeof(float)); +#endif + if (dsps_fft_w_table_fc32 == NULL) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + } + dsps_fft_w_table_size = table_size; + dsps_fft2r_mem_allocated = 1; + + } + + // FFT ram_rev table allocated + int pow = dsp_power_of_two(table_size); + if ((pow > 3) && (pow < 13)) { + dsps_fft2r_ram_rev_table = (uint16_t *)malloc(2 * dsps_fft2r_rev_tables_fc32_size[pow - 4] * sizeof(uint16_t)); + if (dsps_fft2r_ram_rev_table == NULL) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + memcpy(dsps_fft2r_ram_rev_table, dsps_fft2r_rev_tables_fc32[pow - 4], 2 * dsps_fft2r_rev_tables_fc32_size[pow - 4] * sizeof(uint16_t)); + dsps_fft2r_rev_tables_fc32[pow - 4] = dsps_fft2r_ram_rev_table; + } + + result = dsps_gen_w_r2_fc32(dsps_fft_w_table_fc32, dsps_fft_w_table_size); + if (result != ESP_OK) { + return result; + } + result = dsps_bit_rev_fc32_ansi(dsps_fft_w_table_fc32, dsps_fft_w_table_size >> 1); + if (result != ESP_OK) { + return result; + } + dsps_fft2r_initialized = 1; + + return ESP_OK; +} + +void dsps_fft2r_deinit_fc32() +{ + if (dsps_fft2r_mem_allocated) { +#if CONFIG_IDF_TARGET_ESP32S3 + if (dsps_fft_w_table_fc32 != dsps_fft2r_w_table_fc32_1024) { + free(dsps_fft_w_table_fc32); + } +#else + free(dsps_fft_w_table_fc32); +#endif + } + if (dsps_fft2r_ram_rev_table != NULL) { + free(dsps_fft2r_ram_rev_table); + dsps_fft2r_ram_rev_table = NULL; + } + // Re init bitrev table for next use + dsps_fft2r_rev_tables_init_fc32(); + dsps_fft2r_mem_allocated = 0; + dsps_fft2r_initialized = 0; +} + +esp_err_t dsps_fft2r_fc32_ansi_(float *data, int N, float *w) +{ + if (!dsp_is_power_of_two(N)) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + if (!dsps_fft2r_initialized) { + return ESP_ERR_DSP_UNINITIALIZED; + } + + esp_err_t result = ESP_OK; + + int ie, ia, m; + float re_temp, im_temp; + float c, s; + ie = 1; + for (int N2 = N / 2; N2 > 0; N2 >>= 1) { + ia = 0; + for (int j = 0; j < ie; j++) { + c = w[2 * j]; + s = w[2 * j + 1]; + for (int i = 0; i < N2; i++) { + m = ia + N2; + re_temp = c * data[2 * m] + s * data[2 * m + 1]; + im_temp = c * data[2 * m + 1] - s * data[2 * m]; + data[2 * m] = data[2 * ia] - re_temp; + data[2 * m + 1] = data[2 * ia + 1] - im_temp; + data[2 * ia] = data[2 * ia] + re_temp; + data[2 * ia + 1] = data[2 * ia + 1] + im_temp; + ia++; + } + ia += N2; + } + ie <<= 1; + } + return result; +} + + +unsigned short reverse(unsigned short x, unsigned short N, int order) +{ + unsigned short b = x; + + b = (b & 0xff00) >> 8 | (b & 0x00fF) << 8; + b = (b & 0xf0F0) >> 4 | (b & 0x0f0F) << 4; + b = (b & 0xCCCC) >> 2 | (b & 0x3333) << 2; + b = (b & 0xAAAA) >> 1 | (b & 0x5555) << 1; + return b >> (16 - order); +} + +esp_err_t dsps_bit_rev_fc32_ansi(float *data, int N) +{ + if (!dsp_is_power_of_two(N)) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + + esp_err_t result = ESP_OK; + + int j, k; + float r_temp, i_temp; + j = 0; + for (int i = 1; i < (N - 1); i++) { + k = N >> 1; + while (k <= j) { + j -= k; + k >>= 1; + } + j += k; + if (i < j) { + r_temp = data[j * 2]; + data[j * 2] = data[i * 2]; + data[i * 2] = r_temp; + i_temp = data[j * 2 + 1]; + data[j * 2 + 1] = data[i * 2 + 1]; + data[i * 2 + 1] = i_temp; + } + } + return result; +} + +esp_err_t dsps_gen_w_r2_fc32(float *w, int N) +{ + if (!dsp_is_power_of_two(N)) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + + esp_err_t result = ESP_OK; + + int i; + float e = M_PI * 2.0 / N; + + for (i = 0; i < (N >> 1); i++) { + w[2 * i] = cosf(i * e); + w[2 * i + 1] = sinf(i * e); + } + + return result; +} + +esp_err_t dsps_cplx2reC_fc32_ansi(float *data, int N) +{ + if (!dsp_is_power_of_two(N)) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + esp_err_t result = ESP_OK; + + int i; + int n2 = N << 1; + + float rkl = 0; + float rkh = 0; + float rnl = 0; + float rnh = 0; + float ikl = 0; + float ikh = 0; + float inl = 0; + float inh = 0; + + for (i = 0; i < (N / 4); i++) { + rkl = data[i * 2 + 0 + 2]; + ikl = data[i * 2 + 1 + 2]; + rnl = data[n2 - i * 2 - 2]; + inl = data[n2 - i * 2 - 1]; + + rkh = data[i * 2 + 0 + 2 + N]; + ikh = data[i * 2 + 1 + 2 + N]; + rnh = data[n2 - i * 2 - 2 - N]; + inh = data[n2 - i * 2 - 1 - N]; + + data[i * 2 + 0 + 2] = rkl + rnl; + data[i * 2 + 1 + 2] = ikl - inl; + + data[n2 - i * 2 - 1 - N] = inh - ikh; + data[n2 - i * 2 - 2 - N] = rkh + rnh; + + data[i * 2 + 0 + 2 + N] = ikl + inl; + data[i * 2 + 1 + 2 + N] = rnl - rkl; + + data[n2 - i * 2 - 1] = rkh - rnh; + data[n2 - i * 2 - 2] = ikh + inh; + } + data[N] = data[1]; + data[1] = 0; + data[N + 1] = 0; + + return result; +} + +esp_err_t dsps_gen_bitrev2r_table(int N, int step, char *name_ext) +{ + if (!dsp_is_power_of_two(N)) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + + int j, k; + j = 0; + int items_count = 0; + ESP_LOGD(TAG, "const uint16_t bitrev2r_table_%i_%s[] = { ", N, name_ext); + for (int i = 1; i < (N - 1); i++) { + k = N >> 1; + while (k <= j) { + j -= k; + k >>= 1; + } + j += k; + if (i < j) { + ESP_LOGD(TAG, "%i, %i, ", i * step, j * step); + items_count++; + if ((items_count % 8) == 0) { + ESP_LOGD(TAG, " "); + } + } + } + ESP_LOGD(TAG, "};"); + ESP_LOGD(TAG, "const uint16_t bitrev2r_table_%i_%s_size = %i;\n", N, name_ext, items_count); + + ESP_LOGD(TAG, "extern const uint16_t bitrev2r_table_%i_%s[];", N, name_ext); + ESP_LOGD(TAG, "extern const uint16_t bitrev2r_table_%i_%s_size;\n", N, name_ext); + return ESP_OK; +} + +esp_err_t dsps_bit_rev2r_fc32(float *data, int N) +{ + uint16_t *table; + uint16_t table_size; + switch (N) { + case 16: + table = (uint16_t *)dsps_fft2r_rev_tables_fc32[0]; + table_size = dsps_fft2r_rev_tables_fc32_size[0]; + break; + case 32: + table = (uint16_t *)dsps_fft2r_rev_tables_fc32[1]; + table_size = dsps_fft2r_rev_tables_fc32_size[1]; + break; + case 64: + table = (uint16_t *)dsps_fft2r_rev_tables_fc32[2]; + table_size = dsps_fft2r_rev_tables_fc32_size[2]; + break; + case 128: + table = (uint16_t *)dsps_fft2r_rev_tables_fc32[3]; + table_size = dsps_fft2r_rev_tables_fc32_size[3]; + break; + case 256: + table = (uint16_t *)dsps_fft2r_rev_tables_fc32[4]; + table_size = dsps_fft2r_rev_tables_fc32_size[4]; + break; + case 512: + table = (uint16_t *)dsps_fft2r_rev_tables_fc32[5]; + table_size = dsps_fft2r_rev_tables_fc32_size[5]; + break; + case 1024: + table = (uint16_t *)dsps_fft2r_rev_tables_fc32[6]; + table_size = dsps_fft2r_rev_tables_fc32_size[6]; + break; + case 2048: + table = (uint16_t *)dsps_fft2r_rev_tables_fc32[7]; + table_size = dsps_fft2r_rev_tables_fc32_size[7]; + break; + case 4096: + table = (uint16_t *)dsps_fft2r_rev_tables_fc32[8]; + table_size = dsps_fft2r_rev_tables_fc32_size[8]; + break; + + default: + return dsps_bit_rev_fc32(data, N); + break; + } + return dsps_bit_rev_lookup_fc32(data, table_size, table); +} + +esp_err_t dsps_bit_rev_lookup_fc32_ansi(float *data, int reverse_size, uint16_t *reverse_tab) +{ + float r_temp, i_temp; + for (int n = 0 ; n < reverse_size ; n++) { + uint16_t i = reverse_tab[n * 2 + 0] >> 2; + uint16_t j = reverse_tab[n * 2 + 1] >> 2; + r_temp = data[j]; + data[j] = data[i]; + data[i] = r_temp; + i_temp = data[j + 1]; + data[j + 1] = data[i + 1]; + data[i + 1] = i_temp; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c new file mode 100644 index 0000000..d91d65a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_bitrev_tables_fc32.c @@ -0,0 +1,407 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#include +#include "dsps_fft_tables.h" + + +const uint16_t bitrev4r_table_16_fc32[] = { + 8, 32, 16, 64, 24, 96, 48, 72, 56, 104, 88, 112, +}; +extern const uint16_t bitrev4r_table_16_fc32[]; +extern const uint16_t bitrev4r_table_16_fc32_size; + +const uint16_t bitrev4r_table_64_fc32[] = { + 8, 128, 16, 256, 24, 384, 40, 160, 48, 288, 56, 416, 72, 192, 80, 320, + 88, 448, 104, 224, 112, 352, 120, 480, 144, 264, 152, 392, 176, 296, 184, 424, + 208, 328, 216, 456, 240, 360, 248, 488, 280, 400, 312, 432, 344, 464, 376, 496, +}; +extern const uint16_t bitrev4r_table_64_fc32[]; +extern const uint16_t bitrev4r_table_64_fc32_size; + +const uint16_t bitrev4r_table_256_fc32[] = { + 8, 512, 16, 1024, 24, 1536, 32, 128, 40, 640, 48, 1152, 56, 1664, 64, 256, + 72, 768, 80, 1280, 88, 1792, 96, 384, 104, 896, 112, 1408, 120, 1920, 136, 544, + 144, 1056, 152, 1568, 168, 672, 176, 1184, 184, 1696, 192, 288, 200, 800, 208, 1312, + 216, 1824, 224, 416, 232, 928, 240, 1440, 248, 1952, 264, 576, 272, 1088, 280, 1600, + 296, 704, 304, 1216, 312, 1728, 328, 832, 336, 1344, 344, 1856, 352, 448, 360, 960, + 368, 1472, 376, 1984, 392, 608, 400, 1120, 408, 1632, 424, 736, 432, 1248, 440, 1760, + 456, 864, 464, 1376, 472, 1888, 488, 992, 496, 1504, 504, 2016, 528, 1032, 536, 1544, + 552, 648, 560, 1160, 568, 1672, 584, 776, 592, 1288, 600, 1800, 616, 904, 624, 1416, + 632, 1928, 656, 1064, 664, 1576, 688, 1192, 696, 1704, 712, 808, 720, 1320, 728, 1832, + 744, 936, 752, 1448, 760, 1960, 784, 1096, 792, 1608, 816, 1224, 824, 1736, 848, 1352, + 856, 1864, 872, 968, 880, 1480, 888, 1992, 912, 1128, 920, 1640, 944, 1256, 952, 1768, + 976, 1384, 984, 1896, 1008, 1512, 1016, 2024, 1048, 1552, 1072, 1168, 1080, 1680, 1104, 1296, + 1112, 1808, 1136, 1424, 1144, 1936, 1176, 1584, 1208, 1712, 1232, 1328, 1240, 1840, 1264, 1456, + 1272, 1968, 1304, 1616, 1336, 1744, 1368, 1872, 1392, 1488, 1400, 2000, 1432, 1648, 1464, 1776, + 1496, 1904, 1528, 2032, 1592, 1688, 1624, 1816, 1656, 1944, 1752, 1848, 1784, 1976, 1912, 2008, +}; +extern const uint16_t bitrev4r_table_256_fc32[]; +extern const uint16_t bitrev4r_table_256_fc32_size; + +const uint16_t bitrev4r_table_1024_fc32[] = { + 8, 2048, 16, 4096, 24, 6144, 32, 512, 40, 2560, 48, 4608, 56, 6656, 64, 1024, + 72, 3072, 80, 5120, 88, 7168, 96, 1536, 104, 3584, 112, 5632, 120, 7680, 136, 2176, + 144, 4224, 152, 6272, 160, 640, 168, 2688, 176, 4736, 184, 6784, 192, 1152, 200, 3200, + 208, 5248, 216, 7296, 224, 1664, 232, 3712, 240, 5760, 248, 7808, 264, 2304, 272, 4352, + 280, 6400, 288, 768, 296, 2816, 304, 4864, 312, 6912, 320, 1280, 328, 3328, 336, 5376, + 344, 7424, 352, 1792, 360, 3840, 368, 5888, 376, 7936, 392, 2432, 400, 4480, 408, 6528, + 416, 896, 424, 2944, 432, 4992, 440, 7040, 448, 1408, 456, 3456, 464, 5504, 472, 7552, + 480, 1920, 488, 3968, 496, 6016, 504, 8064, 520, 2080, 528, 4128, 536, 6176, 552, 2592, + 560, 4640, 568, 6688, 576, 1056, 584, 3104, 592, 5152, 600, 7200, 608, 1568, 616, 3616, + 624, 5664, 632, 7712, 648, 2208, 656, 4256, 664, 6304, 680, 2720, 688, 4768, 696, 6816, + 704, 1184, 712, 3232, 720, 5280, 728, 7328, 736, 1696, 744, 3744, 752, 5792, 760, 7840, + 776, 2336, 784, 4384, 792, 6432, 808, 2848, 816, 4896, 824, 6944, 832, 1312, 840, 3360, + 848, 5408, 856, 7456, 864, 1824, 872, 3872, 880, 5920, 888, 7968, 904, 2464, 912, 4512, + 920, 6560, 936, 2976, 944, 5024, 952, 7072, 960, 1440, 968, 3488, 976, 5536, 984, 7584, + 992, 1952, 1000, 4000, 1008, 6048, 1016, 8096, 1032, 2112, 1040, 4160, 1048, 6208, 1064, 2624, + 1072, 4672, 1080, 6720, 1096, 3136, 1104, 5184, 1112, 7232, 1120, 1600, 1128, 3648, 1136, 5696, + 1144, 7744, 1160, 2240, 1168, 4288, 1176, 6336, 1192, 2752, 1200, 4800, 1208, 6848, 1224, 3264, + 1232, 5312, 1240, 7360, 1248, 1728, 1256, 3776, 1264, 5824, 1272, 7872, 1288, 2368, 1296, 4416, + 1304, 6464, 1320, 2880, 1328, 4928, 1336, 6976, 1352, 3392, 1360, 5440, 1368, 7488, 1376, 1856, + 1384, 3904, 1392, 5952, 1400, 8000, 1416, 2496, 1424, 4544, 1432, 6592, 1448, 3008, 1456, 5056, + 1464, 7104, 1480, 3520, 1488, 5568, 1496, 7616, 1504, 1984, 1512, 4032, 1520, 6080, 1528, 8128, + 1544, 2144, 1552, 4192, 1560, 6240, 1576, 2656, 1584, 4704, 1592, 6752, 1608, 3168, 1616, 5216, + 1624, 7264, 1640, 3680, 1648, 5728, 1656, 7776, 1672, 2272, 1680, 4320, 1688, 6368, 1704, 2784, + 1712, 4832, 1720, 6880, 1736, 3296, 1744, 5344, 1752, 7392, 1768, 3808, 1776, 5856, 1784, 7904, + 1800, 2400, 1808, 4448, 1816, 6496, 1832, 2912, 1840, 4960, 1848, 7008, 1864, 3424, 1872, 5472, + 1880, 7520, 1896, 3936, 1904, 5984, 1912, 8032, 1928, 2528, 1936, 4576, 1944, 6624, 1960, 3040, + 1968, 5088, 1976, 7136, 1992, 3552, 2000, 5600, 2008, 7648, 2024, 4064, 2032, 6112, 2040, 8160, + 2064, 4104, 2072, 6152, 2088, 2568, 2096, 4616, 2104, 6664, 2120, 3080, 2128, 5128, 2136, 7176, + 2152, 3592, 2160, 5640, 2168, 7688, 2192, 4232, 2200, 6280, 2216, 2696, 2224, 4744, 2232, 6792, + 2248, 3208, 2256, 5256, 2264, 7304, 2280, 3720, 2288, 5768, 2296, 7816, 2320, 4360, 2328, 6408, + 2344, 2824, 2352, 4872, 2360, 6920, 2376, 3336, 2384, 5384, 2392, 7432, 2408, 3848, 2416, 5896, + 2424, 7944, 2448, 4488, 2456, 6536, 2472, 2952, 2480, 5000, 2488, 7048, 2504, 3464, 2512, 5512, + 2520, 7560, 2536, 3976, 2544, 6024, 2552, 8072, 2576, 4136, 2584, 6184, 2608, 4648, 2616, 6696, + 2632, 3112, 2640, 5160, 2648, 7208, 2664, 3624, 2672, 5672, 2680, 7720, 2704, 4264, 2712, 6312, + 2736, 4776, 2744, 6824, 2760, 3240, 2768, 5288, 2776, 7336, 2792, 3752, 2800, 5800, 2808, 7848, + 2832, 4392, 2840, 6440, 2864, 4904, 2872, 6952, 2888, 3368, 2896, 5416, 2904, 7464, 2920, 3880, + 2928, 5928, 2936, 7976, 2960, 4520, 2968, 6568, 2992, 5032, 3000, 7080, 3016, 3496, 3024, 5544, + 3032, 7592, 3048, 4008, 3056, 6056, 3064, 8104, 3088, 4168, 3096, 6216, 3120, 4680, 3128, 6728, + 3152, 5192, 3160, 7240, 3176, 3656, 3184, 5704, 3192, 7752, 3216, 4296, 3224, 6344, 3248, 4808, + 3256, 6856, 3280, 5320, 3288, 7368, 3304, 3784, 3312, 5832, 3320, 7880, 3344, 4424, 3352, 6472, + 3376, 4936, 3384, 6984, 3408, 5448, 3416, 7496, 3432, 3912, 3440, 5960, 3448, 8008, 3472, 4552, + 3480, 6600, 3504, 5064, 3512, 7112, 3536, 5576, 3544, 7624, 3560, 4040, 3568, 6088, 3576, 8136, + 3600, 4200, 3608, 6248, 3632, 4712, 3640, 6760, 3664, 5224, 3672, 7272, 3696, 5736, 3704, 7784, + 3728, 4328, 3736, 6376, 3760, 4840, 3768, 6888, 3792, 5352, 3800, 7400, 3824, 5864, 3832, 7912, + 3856, 4456, 3864, 6504, 3888, 4968, 3896, 7016, 3920, 5480, 3928, 7528, 3952, 5992, 3960, 8040, + 3984, 4584, 3992, 6632, 4016, 5096, 4024, 7144, 4048, 5608, 4056, 7656, 4080, 6120, 4088, 8168, + 4120, 6160, 4144, 4624, 4152, 6672, 4176, 5136, 4184, 7184, 4208, 5648, 4216, 7696, 4248, 6288, + 4272, 4752, 4280, 6800, 4304, 5264, 4312, 7312, 4336, 5776, 4344, 7824, 4376, 6416, 4400, 4880, + 4408, 6928, 4432, 5392, 4440, 7440, 4464, 5904, 4472, 7952, 4504, 6544, 4528, 5008, 4536, 7056, + 4560, 5520, 4568, 7568, 4592, 6032, 4600, 8080, 4632, 6192, 4664, 6704, 4688, 5168, 4696, 7216, + 4720, 5680, 4728, 7728, 4760, 6320, 4792, 6832, 4816, 5296, 4824, 7344, 4848, 5808, 4856, 7856, + 4888, 6448, 4920, 6960, 4944, 5424, 4952, 7472, 4976, 5936, 4984, 7984, 5016, 6576, 5048, 7088, + 5072, 5552, 5080, 7600, 5104, 6064, 5112, 8112, 5144, 6224, 5176, 6736, 5208, 7248, 5232, 5712, + 5240, 7760, 5272, 6352, 5304, 6864, 5336, 7376, 5360, 5840, 5368, 7888, 5400, 6480, 5432, 6992, + 5464, 7504, 5488, 5968, 5496, 8016, 5528, 6608, 5560, 7120, 5592, 7632, 5616, 6096, 5624, 8144, + 5656, 6256, 5688, 6768, 5720, 7280, 5752, 7792, 5784, 6384, 5816, 6896, 5848, 7408, 5880, 7920, + 5912, 6512, 5944, 7024, 5976, 7536, 6008, 8048, 6040, 6640, 6072, 7152, 6104, 7664, 6136, 8176, + 6200, 6680, 6232, 7192, 6264, 7704, 6328, 6808, 6360, 7320, 6392, 7832, 6456, 6936, 6488, 7448, + 6520, 7960, 6584, 7064, 6616, 7576, 6648, 8088, 6744, 7224, 6776, 7736, 6872, 7352, 6904, 7864, + 7000, 7480, 7032, 7992, 7128, 7608, 7160, 8120, 7288, 7768, 7416, 7896, 7544, 8024, 7672, 8152, +}; +extern const uint16_t bitrev4r_table_1024_fc32[]; +extern const uint16_t bitrev4r_table_1024_fc32_size; + +const uint16_t bitrev4r_table_4096_fc32[] = { + 8, 8192, 16, 16384, 24, 24576, 32, 2048, 40, 10240, 48, 18432, 56, 26624, 64, 4096, + 72, 12288, 80, 20480, 88, 28672, 96, 6144, 104, 14336, 112, 22528, 120, 30720, 128, 512, + 136, 8704, 144, 16896, 152, 25088, 160, 2560, 168, 10752, 176, 18944, 184, 27136, 192, 4608, + 200, 12800, 208, 20992, 216, 29184, 224, 6656, 232, 14848, 240, 23040, 248, 31232, 256, 1024, + 264, 9216, 272, 17408, 280, 25600, 288, 3072, 296, 11264, 304, 19456, 312, 27648, 320, 5120, + 328, 13312, 336, 21504, 344, 29696, 352, 7168, 360, 15360, 368, 23552, 376, 31744, 384, 1536, + 392, 9728, 400, 17920, 408, 26112, 416, 3584, 424, 11776, 432, 19968, 440, 28160, 448, 5632, + 456, 13824, 464, 22016, 472, 30208, 480, 7680, 488, 15872, 496, 24064, 504, 32256, 520, 8320, + 528, 16512, 536, 24704, 544, 2176, 552, 10368, 560, 18560, 568, 26752, 576, 4224, 584, 12416, + 592, 20608, 600, 28800, 608, 6272, 616, 14464, 624, 22656, 632, 30848, 648, 8832, 656, 17024, + 664, 25216, 672, 2688, 680, 10880, 688, 19072, 696, 27264, 704, 4736, 712, 12928, 720, 21120, + 728, 29312, 736, 6784, 744, 14976, 752, 23168, 760, 31360, 768, 1152, 776, 9344, 784, 17536, + 792, 25728, 800, 3200, 808, 11392, 816, 19584, 824, 27776, 832, 5248, 840, 13440, 848, 21632, + 856, 29824, 864, 7296, 872, 15488, 880, 23680, 888, 31872, 896, 1664, 904, 9856, 912, 18048, + 920, 26240, 928, 3712, 936, 11904, 944, 20096, 952, 28288, 960, 5760, 968, 13952, 976, 22144, + 984, 30336, 992, 7808, 1000, 16000, 1008, 24192, 1016, 32384, 1032, 8448, 1040, 16640, 1048, 24832, + 1056, 2304, 1064, 10496, 1072, 18688, 1080, 26880, 1088, 4352, 1096, 12544, 1104, 20736, 1112, 28928, + 1120, 6400, 1128, 14592, 1136, 22784, 1144, 30976, 1160, 8960, 1168, 17152, 1176, 25344, 1184, 2816, + 1192, 11008, 1200, 19200, 1208, 27392, 1216, 4864, 1224, 13056, 1232, 21248, 1240, 29440, 1248, 6912, + 1256, 15104, 1264, 23296, 1272, 31488, 1288, 9472, 1296, 17664, 1304, 25856, 1312, 3328, 1320, 11520, + 1328, 19712, 1336, 27904, 1344, 5376, 1352, 13568, 1360, 21760, 1368, 29952, 1376, 7424, 1384, 15616, + 1392, 23808, 1400, 32000, 1408, 1792, 1416, 9984, 1424, 18176, 1432, 26368, 1440, 3840, 1448, 12032, + 1456, 20224, 1464, 28416, 1472, 5888, 1480, 14080, 1488, 22272, 1496, 30464, 1504, 7936, 1512, 16128, + 1520, 24320, 1528, 32512, 1544, 8576, 1552, 16768, 1560, 24960, 1568, 2432, 1576, 10624, 1584, 18816, + 1592, 27008, 1600, 4480, 1608, 12672, 1616, 20864, 1624, 29056, 1632, 6528, 1640, 14720, 1648, 22912, + 1656, 31104, 1672, 9088, 1680, 17280, 1688, 25472, 1696, 2944, 1704, 11136, 1712, 19328, 1720, 27520, + 1728, 4992, 1736, 13184, 1744, 21376, 1752, 29568, 1760, 7040, 1768, 15232, 1776, 23424, 1784, 31616, + 1800, 9600, 1808, 17792, 1816, 25984, 1824, 3456, 1832, 11648, 1840, 19840, 1848, 28032, 1856, 5504, + 1864, 13696, 1872, 21888, 1880, 30080, 1888, 7552, 1896, 15744, 1904, 23936, 1912, 32128, 1928, 10112, + 1936, 18304, 1944, 26496, 1952, 3968, 1960, 12160, 1968, 20352, 1976, 28544, 1984, 6016, 1992, 14208, + 2000, 22400, 2008, 30592, 2016, 8064, 2024, 16256, 2032, 24448, 2040, 32640, 2056, 8224, 2064, 16416, + 2072, 24608, 2088, 10272, 2096, 18464, 2104, 26656, 2112, 4128, 2120, 12320, 2128, 20512, 2136, 28704, + 2144, 6176, 2152, 14368, 2160, 22560, 2168, 30752, 2184, 8736, 2192, 16928, 2200, 25120, 2208, 2592, + 2216, 10784, 2224, 18976, 2232, 27168, 2240, 4640, 2248, 12832, 2256, 21024, 2264, 29216, 2272, 6688, + 2280, 14880, 2288, 23072, 2296, 31264, 2312, 9248, 2320, 17440, 2328, 25632, 2336, 3104, 2344, 11296, + 2352, 19488, 2360, 27680, 2368, 5152, 2376, 13344, 2384, 21536, 2392, 29728, 2400, 7200, 2408, 15392, + 2416, 23584, 2424, 31776, 2440, 9760, 2448, 17952, 2456, 26144, 2464, 3616, 2472, 11808, 2480, 20000, + 2488, 28192, 2496, 5664, 2504, 13856, 2512, 22048, 2520, 30240, 2528, 7712, 2536, 15904, 2544, 24096, + 2552, 32288, 2568, 8352, 2576, 16544, 2584, 24736, 2600, 10400, 2608, 18592, 2616, 26784, 2624, 4256, + 2632, 12448, 2640, 20640, 2648, 28832, 2656, 6304, 2664, 14496, 2672, 22688, 2680, 30880, 2696, 8864, + 2704, 17056, 2712, 25248, 2728, 10912, 2736, 19104, 2744, 27296, 2752, 4768, 2760, 12960, 2768, 21152, + 2776, 29344, 2784, 6816, 2792, 15008, 2800, 23200, 2808, 31392, 2824, 9376, 2832, 17568, 2840, 25760, + 2848, 3232, 2856, 11424, 2864, 19616, 2872, 27808, 2880, 5280, 2888, 13472, 2896, 21664, 2904, 29856, + 2912, 7328, 2920, 15520, 2928, 23712, 2936, 31904, 2952, 9888, 2960, 18080, 2968, 26272, 2976, 3744, + 2984, 11936, 2992, 20128, 3000, 28320, 3008, 5792, 3016, 13984, 3024, 22176, 3032, 30368, 3040, 7840, + 3048, 16032, 3056, 24224, 3064, 32416, 3080, 8480, 3088, 16672, 3096, 24864, 3112, 10528, 3120, 18720, + 3128, 26912, 3136, 4384, 3144, 12576, 3152, 20768, 3160, 28960, 3168, 6432, 3176, 14624, 3184, 22816, + 3192, 31008, 3208, 8992, 3216, 17184, 3224, 25376, 3240, 11040, 3248, 19232, 3256, 27424, 3264, 4896, + 3272, 13088, 3280, 21280, 3288, 29472, 3296, 6944, 3304, 15136, 3312, 23328, 3320, 31520, 3336, 9504, + 3344, 17696, 3352, 25888, 3368, 11552, 3376, 19744, 3384, 27936, 3392, 5408, 3400, 13600, 3408, 21792, + 3416, 29984, 3424, 7456, 3432, 15648, 3440, 23840, 3448, 32032, 3464, 10016, 3472, 18208, 3480, 26400, + 3488, 3872, 3496, 12064, 3504, 20256, 3512, 28448, 3520, 5920, 3528, 14112, 3536, 22304, 3544, 30496, + 3552, 7968, 3560, 16160, 3568, 24352, 3576, 32544, 3592, 8608, 3600, 16800, 3608, 24992, 3624, 10656, + 3632, 18848, 3640, 27040, 3648, 4512, 3656, 12704, 3664, 20896, 3672, 29088, 3680, 6560, 3688, 14752, + 3696, 22944, 3704, 31136, 3720, 9120, 3728, 17312, 3736, 25504, 3752, 11168, 3760, 19360, 3768, 27552, + 3776, 5024, 3784, 13216, 3792, 21408, 3800, 29600, 3808, 7072, 3816, 15264, 3824, 23456, 3832, 31648, + 3848, 9632, 3856, 17824, 3864, 26016, 3880, 11680, 3888, 19872, 3896, 28064, 3904, 5536, 3912, 13728, + 3920, 21920, 3928, 30112, 3936, 7584, 3944, 15776, 3952, 23968, 3960, 32160, 3976, 10144, 3984, 18336, + 3992, 26528, 4008, 12192, 4016, 20384, 4024, 28576, 4032, 6048, 4040, 14240, 4048, 22432, 4056, 30624, + 4064, 8096, 4072, 16288, 4080, 24480, 4088, 32672, 4104, 8256, 4112, 16448, 4120, 24640, 4136, 10304, + 4144, 18496, 4152, 26688, 4168, 12352, 4176, 20544, 4184, 28736, 4192, 6208, 4200, 14400, 4208, 22592, + 4216, 30784, 4232, 8768, 4240, 16960, 4248, 25152, 4264, 10816, 4272, 19008, 4280, 27200, 4288, 4672, + 4296, 12864, 4304, 21056, 4312, 29248, 4320, 6720, 4328, 14912, 4336, 23104, 4344, 31296, 4360, 9280, + 4368, 17472, 4376, 25664, 4392, 11328, 4400, 19520, 4408, 27712, 4416, 5184, 4424, 13376, 4432, 21568, + 4440, 29760, 4448, 7232, 4456, 15424, 4464, 23616, 4472, 31808, 4488, 9792, 4496, 17984, 4504, 26176, + 4520, 11840, 4528, 20032, 4536, 28224, 4544, 5696, 4552, 13888, 4560, 22080, 4568, 30272, 4576, 7744, + 4584, 15936, 4592, 24128, 4600, 32320, 4616, 8384, 4624, 16576, 4632, 24768, 4648, 10432, 4656, 18624, + 4664, 26816, 4680, 12480, 4688, 20672, 4696, 28864, 4704, 6336, 4712, 14528, 4720, 22720, 4728, 30912, + 4744, 8896, 4752, 17088, 4760, 25280, 4776, 10944, 4784, 19136, 4792, 27328, 4808, 12992, 4816, 21184, + 4824, 29376, 4832, 6848, 4840, 15040, 4848, 23232, 4856, 31424, 4872, 9408, 4880, 17600, 4888, 25792, + 4904, 11456, 4912, 19648, 4920, 27840, 4928, 5312, 4936, 13504, 4944, 21696, 4952, 29888, 4960, 7360, + 4968, 15552, 4976, 23744, 4984, 31936, 5000, 9920, 5008, 18112, 5016, 26304, 5032, 11968, 5040, 20160, + 5048, 28352, 5056, 5824, 5064, 14016, 5072, 22208, 5080, 30400, 5088, 7872, 5096, 16064, 5104, 24256, + 5112, 32448, 5128, 8512, 5136, 16704, 5144, 24896, 5160, 10560, 5168, 18752, 5176, 26944, 5192, 12608, + 5200, 20800, 5208, 28992, 5216, 6464, 5224, 14656, 5232, 22848, 5240, 31040, 5256, 9024, 5264, 17216, + 5272, 25408, 5288, 11072, 5296, 19264, 5304, 27456, 5320, 13120, 5328, 21312, 5336, 29504, 5344, 6976, + 5352, 15168, 5360, 23360, 5368, 31552, 5384, 9536, 5392, 17728, 5400, 25920, 5416, 11584, 5424, 19776, + 5432, 27968, 5448, 13632, 5456, 21824, 5464, 30016, 5472, 7488, 5480, 15680, 5488, 23872, 5496, 32064, + 5512, 10048, 5520, 18240, 5528, 26432, 5544, 12096, 5552, 20288, 5560, 28480, 5568, 5952, 5576, 14144, + 5584, 22336, 5592, 30528, 5600, 8000, 5608, 16192, 5616, 24384, 5624, 32576, 5640, 8640, 5648, 16832, + 5656, 25024, 5672, 10688, 5680, 18880, 5688, 27072, 5704, 12736, 5712, 20928, 5720, 29120, 5728, 6592, + 5736, 14784, 5744, 22976, 5752, 31168, 5768, 9152, 5776, 17344, 5784, 25536, 5800, 11200, 5808, 19392, + 5816, 27584, 5832, 13248, 5840, 21440, 5848, 29632, 5856, 7104, 5864, 15296, 5872, 23488, 5880, 31680, + 5896, 9664, 5904, 17856, 5912, 26048, 5928, 11712, 5936, 19904, 5944, 28096, 5960, 13760, 5968, 21952, + 5976, 30144, 5984, 7616, 5992, 15808, 6000, 24000, 6008, 32192, 6024, 10176, 6032, 18368, 6040, 26560, + 6056, 12224, 6064, 20416, 6072, 28608, 6088, 14272, 6096, 22464, 6104, 30656, 6112, 8128, 6120, 16320, + 6128, 24512, 6136, 32704, 6152, 8288, 6160, 16480, 6168, 24672, 6184, 10336, 6192, 18528, 6200, 26720, + 6216, 12384, 6224, 20576, 6232, 28768, 6248, 14432, 6256, 22624, 6264, 30816, 6280, 8800, 6288, 16992, + 6296, 25184, 6312, 10848, 6320, 19040, 6328, 27232, 6344, 12896, 6352, 21088, 6360, 29280, 6368, 6752, + 6376, 14944, 6384, 23136, 6392, 31328, 6408, 9312, 6416, 17504, 6424, 25696, 6440, 11360, 6448, 19552, + 6456, 27744, 6472, 13408, 6480, 21600, 6488, 29792, 6496, 7264, 6504, 15456, 6512, 23648, 6520, 31840, + 6536, 9824, 6544, 18016, 6552, 26208, 6568, 11872, 6576, 20064, 6584, 28256, 6600, 13920, 6608, 22112, + 6616, 30304, 6624, 7776, 6632, 15968, 6640, 24160, 6648, 32352, 6664, 8416, 6672, 16608, 6680, 24800, + 6696, 10464, 6704, 18656, 6712, 26848, 6728, 12512, 6736, 20704, 6744, 28896, 6760, 14560, 6768, 22752, + 6776, 30944, 6792, 8928, 6800, 17120, 6808, 25312, 6824, 10976, 6832, 19168, 6840, 27360, 6856, 13024, + 6864, 21216, 6872, 29408, 6888, 15072, 6896, 23264, 6904, 31456, 6920, 9440, 6928, 17632, 6936, 25824, + 6952, 11488, 6960, 19680, 6968, 27872, 6984, 13536, 6992, 21728, 7000, 29920, 7008, 7392, 7016, 15584, + 7024, 23776, 7032, 31968, 7048, 9952, 7056, 18144, 7064, 26336, 7080, 12000, 7088, 20192, 7096, 28384, + 7112, 14048, 7120, 22240, 7128, 30432, 7136, 7904, 7144, 16096, 7152, 24288, 7160, 32480, 7176, 8544, + 7184, 16736, 7192, 24928, 7208, 10592, 7216, 18784, 7224, 26976, 7240, 12640, 7248, 20832, 7256, 29024, + 7272, 14688, 7280, 22880, 7288, 31072, 7304, 9056, 7312, 17248, 7320, 25440, 7336, 11104, 7344, 19296, + 7352, 27488, 7368, 13152, 7376, 21344, 7384, 29536, 7400, 15200, 7408, 23392, 7416, 31584, 7432, 9568, + 7440, 17760, 7448, 25952, 7464, 11616, 7472, 19808, 7480, 28000, 7496, 13664, 7504, 21856, 7512, 30048, + 7528, 15712, 7536, 23904, 7544, 32096, 7560, 10080, 7568, 18272, 7576, 26464, 7592, 12128, 7600, 20320, + 7608, 28512, 7624, 14176, 7632, 22368, 7640, 30560, 7648, 8032, 7656, 16224, 7664, 24416, 7672, 32608, + 7688, 8672, 7696, 16864, 7704, 25056, 7720, 10720, 7728, 18912, 7736, 27104, 7752, 12768, 7760, 20960, + 7768, 29152, 7784, 14816, 7792, 23008, 7800, 31200, 7816, 9184, 7824, 17376, 7832, 25568, 7848, 11232, + 7856, 19424, 7864, 27616, 7880, 13280, 7888, 21472, 7896, 29664, 7912, 15328, 7920, 23520, 7928, 31712, + 7944, 9696, 7952, 17888, 7960, 26080, 7976, 11744, 7984, 19936, 7992, 28128, 8008, 13792, 8016, 21984, + 8024, 30176, 8040, 15840, 8048, 24032, 8056, 32224, 8072, 10208, 8080, 18400, 8088, 26592, 8104, 12256, + 8112, 20448, 8120, 28640, 8136, 14304, 8144, 22496, 8152, 30688, 8168, 16352, 8176, 24544, 8184, 32736, + 8208, 16392, 8216, 24584, 8232, 10248, 8240, 18440, 8248, 26632, 8264, 12296, 8272, 20488, 8280, 28680, + 8296, 14344, 8304, 22536, 8312, 30728, 8328, 8712, 8336, 16904, 8344, 25096, 8360, 10760, 8368, 18952, + 8376, 27144, 8392, 12808, 8400, 21000, 8408, 29192, 8424, 14856, 8432, 23048, 8440, 31240, 8456, 9224, + 8464, 17416, 8472, 25608, 8488, 11272, 8496, 19464, 8504, 27656, 8520, 13320, 8528, 21512, 8536, 29704, + 8552, 15368, 8560, 23560, 8568, 31752, 8584, 9736, 8592, 17928, 8600, 26120, 8616, 11784, 8624, 19976, + 8632, 28168, 8648, 13832, 8656, 22024, 8664, 30216, 8680, 15880, 8688, 24072, 8696, 32264, 8720, 16520, + 8728, 24712, 8744, 10376, 8752, 18568, 8760, 26760, 8776, 12424, 8784, 20616, 8792, 28808, 8808, 14472, + 8816, 22664, 8824, 30856, 8848, 17032, 8856, 25224, 8872, 10888, 8880, 19080, 8888, 27272, 8904, 12936, + 8912, 21128, 8920, 29320, 8936, 14984, 8944, 23176, 8952, 31368, 8968, 9352, 8976, 17544, 8984, 25736, + 9000, 11400, 9008, 19592, 9016, 27784, 9032, 13448, 9040, 21640, 9048, 29832, 9064, 15496, 9072, 23688, + 9080, 31880, 9096, 9864, 9104, 18056, 9112, 26248, 9128, 11912, 9136, 20104, 9144, 28296, 9160, 13960, + 9168, 22152, 9176, 30344, 9192, 16008, 9200, 24200, 9208, 32392, 9232, 16648, 9240, 24840, 9256, 10504, + 9264, 18696, 9272, 26888, 9288, 12552, 9296, 20744, 9304, 28936, 9320, 14600, 9328, 22792, 9336, 30984, + 9360, 17160, 9368, 25352, 9384, 11016, 9392, 19208, 9400, 27400, 9416, 13064, 9424, 21256, 9432, 29448, + 9448, 15112, 9456, 23304, 9464, 31496, 9488, 17672, 9496, 25864, 9512, 11528, 9520, 19720, 9528, 27912, + 9544, 13576, 9552, 21768, 9560, 29960, 9576, 15624, 9584, 23816, 9592, 32008, 9608, 9992, 9616, 18184, + 9624, 26376, 9640, 12040, 9648, 20232, 9656, 28424, 9672, 14088, 9680, 22280, 9688, 30472, 9704, 16136, + 9712, 24328, 9720, 32520, 9744, 16776, 9752, 24968, 9768, 10632, 9776, 18824, 9784, 27016, 9800, 12680, + 9808, 20872, 9816, 29064, 9832, 14728, 9840, 22920, 9848, 31112, 9872, 17288, 9880, 25480, 9896, 11144, + 9904, 19336, 9912, 27528, 9928, 13192, 9936, 21384, 9944, 29576, 9960, 15240, 9968, 23432, 9976, 31624, + 10000, 17800, 10008, 25992, 10024, 11656, 10032, 19848, 10040, 28040, 10056, 13704, 10064, 21896, 10072, 30088, + 10088, 15752, 10096, 23944, 10104, 32136, 10128, 18312, 10136, 26504, 10152, 12168, 10160, 20360, 10168, 28552, + 10184, 14216, 10192, 22408, 10200, 30600, 10216, 16264, 10224, 24456, 10232, 32648, 10256, 16424, 10264, 24616, + 10288, 18472, 10296, 26664, 10312, 12328, 10320, 20520, 10328, 28712, 10344, 14376, 10352, 22568, 10360, 30760, + 10384, 16936, 10392, 25128, 10408, 10792, 10416, 18984, 10424, 27176, 10440, 12840, 10448, 21032, 10456, 29224, + 10472, 14888, 10480, 23080, 10488, 31272, 10512, 17448, 10520, 25640, 10536, 11304, 10544, 19496, 10552, 27688, + 10568, 13352, 10576, 21544, 10584, 29736, 10600, 15400, 10608, 23592, 10616, 31784, 10640, 17960, 10648, 26152, + 10664, 11816, 10672, 20008, 10680, 28200, 10696, 13864, 10704, 22056, 10712, 30248, 10728, 15912, 10736, 24104, + 10744, 32296, 10768, 16552, 10776, 24744, 10800, 18600, 10808, 26792, 10824, 12456, 10832, 20648, 10840, 28840, + 10856, 14504, 10864, 22696, 10872, 30888, 10896, 17064, 10904, 25256, 10928, 19112, 10936, 27304, 10952, 12968, + 10960, 21160, 10968, 29352, 10984, 15016, 10992, 23208, 11000, 31400, 11024, 17576, 11032, 25768, 11048, 11432, + 11056, 19624, 11064, 27816, 11080, 13480, 11088, 21672, 11096, 29864, 11112, 15528, 11120, 23720, 11128, 31912, + 11152, 18088, 11160, 26280, 11176, 11944, 11184, 20136, 11192, 28328, 11208, 13992, 11216, 22184, 11224, 30376, + 11240, 16040, 11248, 24232, 11256, 32424, 11280, 16680, 11288, 24872, 11312, 18728, 11320, 26920, 11336, 12584, + 11344, 20776, 11352, 28968, 11368, 14632, 11376, 22824, 11384, 31016, 11408, 17192, 11416, 25384, 11440, 19240, + 11448, 27432, 11464, 13096, 11472, 21288, 11480, 29480, 11496, 15144, 11504, 23336, 11512, 31528, 11536, 17704, + 11544, 25896, 11568, 19752, 11576, 27944, 11592, 13608, 11600, 21800, 11608, 29992, 11624, 15656, 11632, 23848, + 11640, 32040, 11664, 18216, 11672, 26408, 11688, 12072, 11696, 20264, 11704, 28456, 11720, 14120, 11728, 22312, + 11736, 30504, 11752, 16168, 11760, 24360, 11768, 32552, 11792, 16808, 11800, 25000, 11824, 18856, 11832, 27048, + 11848, 12712, 11856, 20904, 11864, 29096, 11880, 14760, 11888, 22952, 11896, 31144, 11920, 17320, 11928, 25512, + 11952, 19368, 11960, 27560, 11976, 13224, 11984, 21416, 11992, 29608, 12008, 15272, 12016, 23464, 12024, 31656, + 12048, 17832, 12056, 26024, 12080, 19880, 12088, 28072, 12104, 13736, 12112, 21928, 12120, 30120, 12136, 15784, + 12144, 23976, 12152, 32168, 12176, 18344, 12184, 26536, 12208, 20392, 12216, 28584, 12232, 14248, 12240, 22440, + 12248, 30632, 12264, 16296, 12272, 24488, 12280, 32680, 12304, 16456, 12312, 24648, 12336, 18504, 12344, 26696, + 12368, 20552, 12376, 28744, 12392, 14408, 12400, 22600, 12408, 30792, 12432, 16968, 12440, 25160, 12464, 19016, + 12472, 27208, 12488, 12872, 12496, 21064, 12504, 29256, 12520, 14920, 12528, 23112, 12536, 31304, 12560, 17480, + 12568, 25672, 12592, 19528, 12600, 27720, 12616, 13384, 12624, 21576, 12632, 29768, 12648, 15432, 12656, 23624, + 12664, 31816, 12688, 17992, 12696, 26184, 12720, 20040, 12728, 28232, 12744, 13896, 12752, 22088, 12760, 30280, + 12776, 15944, 12784, 24136, 12792, 32328, 12816, 16584, 12824, 24776, 12848, 18632, 12856, 26824, 12880, 20680, + 12888, 28872, 12904, 14536, 12912, 22728, 12920, 30920, 12944, 17096, 12952, 25288, 12976, 19144, 12984, 27336, + 13008, 21192, 13016, 29384, 13032, 15048, 13040, 23240, 13048, 31432, 13072, 17608, 13080, 25800, 13104, 19656, + 13112, 27848, 13128, 13512, 13136, 21704, 13144, 29896, 13160, 15560, 13168, 23752, 13176, 31944, 13200, 18120, + 13208, 26312, 13232, 20168, 13240, 28360, 13256, 14024, 13264, 22216, 13272, 30408, 13288, 16072, 13296, 24264, + 13304, 32456, 13328, 16712, 13336, 24904, 13360, 18760, 13368, 26952, 13392, 20808, 13400, 29000, 13416, 14664, + 13424, 22856, 13432, 31048, 13456, 17224, 13464, 25416, 13488, 19272, 13496, 27464, 13520, 21320, 13528, 29512, + 13544, 15176, 13552, 23368, 13560, 31560, 13584, 17736, 13592, 25928, 13616, 19784, 13624, 27976, 13648, 21832, + 13656, 30024, 13672, 15688, 13680, 23880, 13688, 32072, 13712, 18248, 13720, 26440, 13744, 20296, 13752, 28488, + 13768, 14152, 13776, 22344, 13784, 30536, 13800, 16200, 13808, 24392, 13816, 32584, 13840, 16840, 13848, 25032, + 13872, 18888, 13880, 27080, 13904, 20936, 13912, 29128, 13928, 14792, 13936, 22984, 13944, 31176, 13968, 17352, + 13976, 25544, 14000, 19400, 14008, 27592, 14032, 21448, 14040, 29640, 14056, 15304, 14064, 23496, 14072, 31688, + 14096, 17864, 14104, 26056, 14128, 19912, 14136, 28104, 14160, 21960, 14168, 30152, 14184, 15816, 14192, 24008, + 14200, 32200, 14224, 18376, 14232, 26568, 14256, 20424, 14264, 28616, 14288, 22472, 14296, 30664, 14312, 16328, + 14320, 24520, 14328, 32712, 14352, 16488, 14360, 24680, 14384, 18536, 14392, 26728, 14416, 20584, 14424, 28776, + 14448, 22632, 14456, 30824, 14480, 17000, 14488, 25192, 14512, 19048, 14520, 27240, 14544, 21096, 14552, 29288, + 14568, 14952, 14576, 23144, 14584, 31336, 14608, 17512, 14616, 25704, 14640, 19560, 14648, 27752, 14672, 21608, + 14680, 29800, 14696, 15464, 14704, 23656, 14712, 31848, 14736, 18024, 14744, 26216, 14768, 20072, 14776, 28264, + 14800, 22120, 14808, 30312, 14824, 15976, 14832, 24168, 14840, 32360, 14864, 16616, 14872, 24808, 14896, 18664, + 14904, 26856, 14928, 20712, 14936, 28904, 14960, 22760, 14968, 30952, 14992, 17128, 15000, 25320, 15024, 19176, + 15032, 27368, 15056, 21224, 15064, 29416, 15088, 23272, 15096, 31464, 15120, 17640, 15128, 25832, 15152, 19688, + 15160, 27880, 15184, 21736, 15192, 29928, 15208, 15592, 15216, 23784, 15224, 31976, 15248, 18152, 15256, 26344, + 15280, 20200, 15288, 28392, 15312, 22248, 15320, 30440, 15336, 16104, 15344, 24296, 15352, 32488, 15376, 16744, + 15384, 24936, 15408, 18792, 15416, 26984, 15440, 20840, 15448, 29032, 15472, 22888, 15480, 31080, 15504, 17256, + 15512, 25448, 15536, 19304, 15544, 27496, 15568, 21352, 15576, 29544, 15600, 23400, 15608, 31592, 15632, 17768, + 15640, 25960, 15664, 19816, 15672, 28008, 15696, 21864, 15704, 30056, 15728, 23912, 15736, 32104, 15760, 18280, + 15768, 26472, 15792, 20328, 15800, 28520, 15824, 22376, 15832, 30568, 15848, 16232, 15856, 24424, 15864, 32616, + 15888, 16872, 15896, 25064, 15920, 18920, 15928, 27112, 15952, 20968, 15960, 29160, 15984, 23016, 15992, 31208, + 16016, 17384, 16024, 25576, 16048, 19432, 16056, 27624, 16080, 21480, 16088, 29672, 16112, 23528, 16120, 31720, + 16144, 17896, 16152, 26088, 16176, 19944, 16184, 28136, 16208, 21992, 16216, 30184, 16240, 24040, 16248, 32232, + 16272, 18408, 16280, 26600, 16304, 20456, 16312, 28648, 16336, 22504, 16344, 30696, 16368, 24552, 16376, 32744, + 16408, 24592, 16432, 18448, 16440, 26640, 16464, 20496, 16472, 28688, 16496, 22544, 16504, 30736, 16528, 16912, + 16536, 25104, 16560, 18960, 16568, 27152, 16592, 21008, 16600, 29200, 16624, 23056, 16632, 31248, 16656, 17424, + 16664, 25616, 16688, 19472, 16696, 27664, 16720, 21520, 16728, 29712, 16752, 23568, 16760, 31760, 16784, 17936, + 16792, 26128, 16816, 19984, 16824, 28176, 16848, 22032, 16856, 30224, 16880, 24080, 16888, 32272, 16920, 24720, + 16944, 18576, 16952, 26768, 16976, 20624, 16984, 28816, 17008, 22672, 17016, 30864, 17048, 25232, 17072, 19088, + 17080, 27280, 17104, 21136, 17112, 29328, 17136, 23184, 17144, 31376, 17168, 17552, 17176, 25744, 17200, 19600, + 17208, 27792, 17232, 21648, 17240, 29840, 17264, 23696, 17272, 31888, 17296, 18064, 17304, 26256, 17328, 20112, + 17336, 28304, 17360, 22160, 17368, 30352, 17392, 24208, 17400, 32400, 17432, 24848, 17456, 18704, 17464, 26896, + 17488, 20752, 17496, 28944, 17520, 22800, 17528, 30992, 17560, 25360, 17584, 19216, 17592, 27408, 17616, 21264, + 17624, 29456, 17648, 23312, 17656, 31504, 17688, 25872, 17712, 19728, 17720, 27920, 17744, 21776, 17752, 29968, + 17776, 23824, 17784, 32016, 17808, 18192, 17816, 26384, 17840, 20240, 17848, 28432, 17872, 22288, 17880, 30480, + 17904, 24336, 17912, 32528, 17944, 24976, 17968, 18832, 17976, 27024, 18000, 20880, 18008, 29072, 18032, 22928, + 18040, 31120, 18072, 25488, 18096, 19344, 18104, 27536, 18128, 21392, 18136, 29584, 18160, 23440, 18168, 31632, + 18200, 26000, 18224, 19856, 18232, 28048, 18256, 21904, 18264, 30096, 18288, 23952, 18296, 32144, 18328, 26512, + 18352, 20368, 18360, 28560, 18384, 22416, 18392, 30608, 18416, 24464, 18424, 32656, 18456, 24624, 18488, 26672, + 18512, 20528, 18520, 28720, 18544, 22576, 18552, 30768, 18584, 25136, 18608, 18992, 18616, 27184, 18640, 21040, + 18648, 29232, 18672, 23088, 18680, 31280, 18712, 25648, 18736, 19504, 18744, 27696, 18768, 21552, 18776, 29744, + 18800, 23600, 18808, 31792, 18840, 26160, 18864, 20016, 18872, 28208, 18896, 22064, 18904, 30256, 18928, 24112, + 18936, 32304, 18968, 24752, 19000, 26800, 19024, 20656, 19032, 28848, 19056, 22704, 19064, 30896, 19096, 25264, + 19128, 27312, 19152, 21168, 19160, 29360, 19184, 23216, 19192, 31408, 19224, 25776, 19248, 19632, 19256, 27824, + 19280, 21680, 19288, 29872, 19312, 23728, 19320, 31920, 19352, 26288, 19376, 20144, 19384, 28336, 19408, 22192, + 19416, 30384, 19440, 24240, 19448, 32432, 19480, 24880, 19512, 26928, 19536, 20784, 19544, 28976, 19568, 22832, + 19576, 31024, 19608, 25392, 19640, 27440, 19664, 21296, 19672, 29488, 19696, 23344, 19704, 31536, 19736, 25904, + 19768, 27952, 19792, 21808, 19800, 30000, 19824, 23856, 19832, 32048, 19864, 26416, 19888, 20272, 19896, 28464, + 19920, 22320, 19928, 30512, 19952, 24368, 19960, 32560, 19992, 25008, 20024, 27056, 20048, 20912, 20056, 29104, + 20080, 22960, 20088, 31152, 20120, 25520, 20152, 27568, 20176, 21424, 20184, 29616, 20208, 23472, 20216, 31664, + 20248, 26032, 20280, 28080, 20304, 21936, 20312, 30128, 20336, 23984, 20344, 32176, 20376, 26544, 20408, 28592, + 20432, 22448, 20440, 30640, 20464, 24496, 20472, 32688, 20504, 24656, 20536, 26704, 20568, 28752, 20592, 22608, + 20600, 30800, 20632, 25168, 20664, 27216, 20688, 21072, 20696, 29264, 20720, 23120, 20728, 31312, 20760, 25680, + 20792, 27728, 20816, 21584, 20824, 29776, 20848, 23632, 20856, 31824, 20888, 26192, 20920, 28240, 20944, 22096, + 20952, 30288, 20976, 24144, 20984, 32336, 21016, 24784, 21048, 26832, 21080, 28880, 21104, 22736, 21112, 30928, + 21144, 25296, 21176, 27344, 21208, 29392, 21232, 23248, 21240, 31440, 21272, 25808, 21304, 27856, 21328, 21712, + 21336, 29904, 21360, 23760, 21368, 31952, 21400, 26320, 21432, 28368, 21456, 22224, 21464, 30416, 21488, 24272, + 21496, 32464, 21528, 24912, 21560, 26960, 21592, 29008, 21616, 22864, 21624, 31056, 21656, 25424, 21688, 27472, + 21720, 29520, 21744, 23376, 21752, 31568, 21784, 25936, 21816, 27984, 21848, 30032, 21872, 23888, 21880, 32080, + 21912, 26448, 21944, 28496, 21968, 22352, 21976, 30544, 22000, 24400, 22008, 32592, 22040, 25040, 22072, 27088, + 22104, 29136, 22128, 22992, 22136, 31184, 22168, 25552, 22200, 27600, 22232, 29648, 22256, 23504, 22264, 31696, + 22296, 26064, 22328, 28112, 22360, 30160, 22384, 24016, 22392, 32208, 22424, 26576, 22456, 28624, 22488, 30672, + 22512, 24528, 22520, 32720, 22552, 24688, 22584, 26736, 22616, 28784, 22648, 30832, 22680, 25200, 22712, 27248, + 22744, 29296, 22768, 23152, 22776, 31344, 22808, 25712, 22840, 27760, 22872, 29808, 22896, 23664, 22904, 31856, + 22936, 26224, 22968, 28272, 23000, 30320, 23024, 24176, 23032, 32368, 23064, 24816, 23096, 26864, 23128, 28912, + 23160, 30960, 23192, 25328, 23224, 27376, 23256, 29424, 23288, 31472, 23320, 25840, 23352, 27888, 23384, 29936, + 23408, 23792, 23416, 31984, 23448, 26352, 23480, 28400, 23512, 30448, 23536, 24304, 23544, 32496, 23576, 24944, + 23608, 26992, 23640, 29040, 23672, 31088, 23704, 25456, 23736, 27504, 23768, 29552, 23800, 31600, 23832, 25968, + 23864, 28016, 23896, 30064, 23928, 32112, 23960, 26480, 23992, 28528, 24024, 30576, 24048, 24432, 24056, 32624, + 24088, 25072, 24120, 27120, 24152, 29168, 24184, 31216, 24216, 25584, 24248, 27632, 24280, 29680, 24312, 31728, + 24344, 26096, 24376, 28144, 24408, 30192, 24440, 32240, 24472, 26608, 24504, 28656, 24536, 30704, 24568, 32752, + 24632, 26648, 24664, 28696, 24696, 30744, 24728, 25112, 24760, 27160, 24792, 29208, 24824, 31256, 24856, 25624, + 24888, 27672, 24920, 29720, 24952, 31768, 24984, 26136, 25016, 28184, 25048, 30232, 25080, 32280, 25144, 26776, + 25176, 28824, 25208, 30872, 25272, 27288, 25304, 29336, 25336, 31384, 25368, 25752, 25400, 27800, 25432, 29848, + 25464, 31896, 25496, 26264, 25528, 28312, 25560, 30360, 25592, 32408, 25656, 26904, 25688, 28952, 25720, 31000, + 25784, 27416, 25816, 29464, 25848, 31512, 25912, 27928, 25944, 29976, 25976, 32024, 26008, 26392, 26040, 28440, + 26072, 30488, 26104, 32536, 26168, 27032, 26200, 29080, 26232, 31128, 26296, 27544, 26328, 29592, 26360, 31640, + 26424, 28056, 26456, 30104, 26488, 32152, 26552, 28568, 26584, 30616, 26616, 32664, 26712, 28728, 26744, 30776, + 26808, 27192, 26840, 29240, 26872, 31288, 26936, 27704, 26968, 29752, 27000, 31800, 27064, 28216, 27096, 30264, + 27128, 32312, 27224, 28856, 27256, 30904, 27352, 29368, 27384, 31416, 27448, 27832, 27480, 29880, 27512, 31928, + 27576, 28344, 27608, 30392, 27640, 32440, 27736, 28984, 27768, 31032, 27864, 29496, 27896, 31544, 27992, 30008, + 28024, 32056, 28088, 28472, 28120, 30520, 28152, 32568, 28248, 29112, 28280, 31160, 28376, 29624, 28408, 31672, + 28504, 30136, 28536, 32184, 28632, 30648, 28664, 32696, 28792, 30808, 28888, 29272, 28920, 31320, 29016, 29784, + 29048, 31832, 29144, 30296, 29176, 32344, 29304, 30936, 29432, 31448, 29528, 29912, 29560, 31960, 29656, 30424, + 29688, 32472, 29816, 31064, 29944, 31576, 30072, 32088, 30168, 30552, 30200, 32600, 30328, 31192, 30456, 31704, + 30584, 32216, 30712, 32728, 30968, 31352, 31096, 31864, 31224, 32376, 31608, 31992, 31736, 32504, 32248, 32632, +}; +extern const uint16_t bitrev4r_table_4096_fc32[]; +extern const uint16_t bitrev4r_table_4096_fc32_size; + + +void dsps_fft4r_rev_tables_init_fc32(void) +{ + dsps_fft4r_rev_tables_fc32[0] = (uint16_t *)bitrev4r_table_16_fc32; + dsps_fft4r_rev_tables_fc32[1] = (uint16_t *)bitrev4r_table_64_fc32; + dsps_fft4r_rev_tables_fc32[2] = (uint16_t *)bitrev4r_table_256_fc32; + dsps_fft4r_rev_tables_fc32[3] = (uint16_t *)bitrev4r_table_1024_fc32; + dsps_fft4r_rev_tables_fc32[4] = (uint16_t *)bitrev4r_table_4096_fc32; + +} + +uint16_t *dsps_fft4r_rev_tables_fc32[] = { + (uint16_t *)bitrev4r_table_16_fc32, + (uint16_t *)bitrev4r_table_64_fc32, + (uint16_t *)bitrev4r_table_256_fc32, + (uint16_t *)bitrev4r_table_1024_fc32, + (uint16_t *)bitrev4r_table_4096_fc32, +}; + +const uint16_t bitrev4r_table_16_fc32_size = 6; +const uint16_t bitrev4r_table_64_fc32_size = 24; +const uint16_t bitrev4r_table_256_fc32_size = 120; +const uint16_t bitrev4r_table_1024_fc32_size = 480; +const uint16_t bitrev4r_table_4096_fc32_size = 2016; + +const uint16_t dsps_fft4r_rev_tables_fc32_size[] = { + (const uint16_t)6, // bitrev4r_table_16_fc32_size, + (const uint16_t)24, // bitrev4r_table_64_fc32_size, + (const uint16_t)120, // bitrev4r_table_256_fc32_size, + (const uint16_t)480, // bitrev4r_table_1024_fc32_size, + (const uint16_t)2016,// bitrev4r_table_4096_fc32_size, +}; diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_fc32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_fc32_ae32.c new file mode 100644 index 0000000..4868ca0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_fc32_ae32.c @@ -0,0 +1,251 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fft2r.h" +#include "dsps_fft4r.h" +#include "dsp_common.h" +#include "dsp_types.h" +#include +#include "esp_attr.h" + +#include "dsps_fft4r_platform.h" + +#if (dsps_fft4r_fc32_ae32_enabled == 1) +esp_err_t dsps_fft4r_fc32_ae32_(float *data, int N, float *table, int table_size) +{ + int log4N = dsp_power_of_two(N) / 2; + int m = 2; + int j; + float *win = table; + + float *ptr0; + float *ptr1; + float *ptr2; + float *ptr3; + float *win0; + float *win1; + float *win2; + int start_index; + int wind_step = table_size >> (2 * log4N - 1); + + asm volatile ("mov %0, %1" : "=a" (ptr0) : "a" (data)); + asm volatile ("mov %0, %1" : "=a" (ptr1) : "a" (data)); + asm volatile ("mov %0, %1" : "=a" (ptr2) : "a" (data)); + asm volatile ("mov %0, %1" : "=a" (ptr3) : "a" (data)); + asm volatile ("mov %0, %1" : "=a" (win0) : "a" (win)); //win0 = win; + asm volatile ("mov %0, %1" : "=a" (win1) : "a" (win)); //win1 = win; + asm volatile ("mov %0, %1" : "=a" (win2) : "a" (win)); //win2 = win; + + //asm volatile ("slli %0, %0, 1" : "+a" (m)); ////m <<= 1; + + while (1) { ///radix 4 + if (log4N == 0) { + break; + } + asm volatile ("srli %0, %0, 2" : "+a" (N)); //N = N >> 2; + for (j = 0; j < m; j += 2) { // j: which FFT of this step + asm volatile ("mul16u %0, %1, %2" : "=a" (start_index) : "a" (j), "a" (N)); ///int start_index = j * (N << 1); // N: N-point FFT + asm volatile ("slli %0, %0, 1" : "+a" (start_index)); + asm volatile ("addx8 %0, %1, %2" : "+a" (ptr0) : "a" (start_index), "a" (data)); //ptr0 = data + (start_index << 1); + asm volatile ("addx8 %0, %1, %2" : "+a" (ptr1) : "a" (N), "a" (ptr0)); //ptr1 = ptr0 + (N << 1); + asm volatile ("addx8 %0, %1, %2" : "+a" (ptr2) : "a" (N), "a" (ptr1)); //ptr2 = ptr1 + (N << 1); + asm volatile ("addx8 %0, %1, %2" : "+a" (ptr3) : "a" (N), "a" (ptr2)); //ptr3 = ptr2 + (N << 1); + + asm volatile ("loopnez %0, _loop_end_radix4_butterfly4_fft" :: "a"(N)); /// for (k = 0; k < N; k++) { + asm volatile ("lsi f1, %0, 4" :: "a" (ptr0)); //f1 = *(ptr0 + 1); + asm volatile ("lsi f3, %0, 4" :: "a" (ptr2)); //f3 = *(ptr2 + 1); + asm volatile ("lsi f0, %0, 0" :: "a" (ptr0)); //f0 = *ptr0; + asm volatile ("lsi f2, %0, 0" :: "a" (ptr2)); //f2 = *ptr2; + asm volatile ("add.s f5, f1, f3"); //f5 = f1 + f3; + asm volatile ("sub.s f7, f1, f3"); //f7 = f1 - f3; + asm volatile ("lsi f1, %0, 4" :: "a" (ptr1)); //f1 = *(ptr1 + 1); + asm volatile ("lsi f3, %0, 4" :: "a" (ptr3)); //f3 = *(ptr3 + 1); + + asm volatile ("add.s f4, f0, f2"); //f4 = f0 + f2; + asm volatile ("sub.s f6, f0, f2"); //f6 = f0 - f2; + asm volatile ("add.s f9, f1, f3"); //f9 = f1 + f3; + asm volatile ("sub.s f11, f1, f3"); //f11 = f1 - f3; + + asm volatile ("lsi f0, %0, 0" :: "a" (ptr1)); //f0 = *ptr1; + asm volatile ("lsi f2, %0, 0" :: "a" (ptr3)); //f2 = *ptr3; + + asm volatile ("lsi f12, %0, 0" :: "a" (win0)); //f12 = *win0; //f12 = win[k * 1 * m * 2 + 0]; + asm volatile ("lsi f13, %0, 0" :: "a" (win1)); //f13 = *win1; //f13 = win[k * 2 * m * 2 + 0]; + asm volatile ("add.s f8, f0, f2"); //f8 = f0 + f2; + asm volatile ("sub.s f10, f0, f2"); //f10 = f0 - f2; + + asm volatile ("sub.s f1, f5, f9"); //f1 = f5 - f9; + asm volatile ("add.s f5, f5, f9"); //f5 = f5 + f9; + asm volatile ("add.s f2, f6, f11"); //f2 = f6 + f11; ///this fft & ifft is different + asm volatile ("sub.s f6, f6, f11"); //f6 = f6 - f11; ///this fft & ifft is different + + asm volatile ("sub.s f0, f4, f8"); //f0 = f4 - f8; + asm volatile ("add.s f4, f4, f8"); //f4 = f4 + f8; + asm volatile ("sub.s f3, f7, f10"); //f3 = f7 - f10; ///this fft & ifft is different + asm volatile ("add.s f7, f7, f10"); //f7 = f7 + f10; ///this fft & ifft is different + + asm volatile ("lsi f14, %0, 0" :: "a" (win2)); //f14 = *win2; //f14 = win[k * 3 * m * 2 + 0]; + + asm volatile ("ssi f5, %0, 4" :: "a" (ptr0)); //*(ptr0 + 1) = f5; + asm volatile ("ssip f4, %0, 8" :: "a" (ptr0)); //*ptr0 = f4; ptr0 += 2; + asm volatile ("mul.s f5, f3, f12"); //f5 = f3 * f12; + asm volatile ("mul.s f4, f2, f12"); //f4 = f2 * f12; + asm volatile ("mul.s f9, f1, f13"); //f9 = f1 * f13; + asm volatile ("mul.s f8, f0, f13"); //f8 = f0 * f13; + asm volatile ("mul.s f11, f7, f14"); //f11 = f7 * f14; + asm volatile ("mul.s f10, f6, f14"); //f10 = f6 * f14; + asm volatile ("lsi f12, %0, 4" :: "a" (win0)); //f12 = *(win0 + 1); //f12 = win[k * 1 * m * 2 + 1]; + asm volatile ("lsi f13, %0, 4" :: "a" (win1)); //f13 = *(win1 + 1); //si2 = win[k * 2 * m * 2 + 1]; + asm volatile ("lsi f14, %0, 4" :: "a" (win2)); //f14 = *(win2 + 1); //si3 = win[k * 3 * m * 2 + 1] + + asm volatile ("addx4 %0, %1, %0" : "+a" (win0) : "a" (wind_step)); //win0 += 1 * m; + asm volatile ("addx8 %0, %1, %0" : "+a" (win1) : "a" (wind_step)); //win1 += 2 * m; + asm volatile ("addx8 %0, %1, %0" : "+a" (win2) : "a" (wind_step)); //win2 += 2 * m; + asm volatile ("addx4 %0, %1, %0" : "+a" (win2) : "a" (wind_step)); //win2 += 1 * m; + asm volatile ("msub.s f5, f2, f12"); //f5 -= f2 * f12; + asm volatile ("madd.s f4, f3, f12"); //f4 += f3 * f12; + asm volatile ("msub.s f9, f0, f13"); //f9 -= f0 * f13; + asm volatile ("madd.s f8, f1, f13"); //f8 += f1 * f13; + asm volatile ("msub.s f11, f6, f14"); //f11 -= f6 * f14; + asm volatile ("madd.s f10, f7, f14"); //f10 += f7 * f14; + asm volatile ("ssi f5, %0, 4" :: "a" (ptr1)); //*(ptr1 + 1) = f5; + asm volatile ("ssip f4, %0, 8" :: "a" (ptr1)); //*ptr1 = f4; ptr1 += 2; + asm volatile ("ssi f9, %0, 4" :: "a" (ptr2)); //*(ptr2 + 1) = f9; + asm volatile ("ssip f8, %0, 8" :: "a" (ptr2)); //*ptr2 = f8; ptr2 += 2; + asm volatile ("ssi f11, %0, 4" :: "a" (ptr3)); //*(ptr3 + 1) = f11; + asm volatile ("ssip f10, %0, 8" :: "a" (ptr3)); //*ptr3 = f10; ptr3 += 2; + //} + asm volatile ("_loop_end_radix4_butterfly4_fft: mov %0, %1" : "=a" (win0) : "a" (win)); //win0 = win; + asm volatile ("mov %0, %1" : "=a" (win0) : "a" (win)); //win0 = win; + asm volatile ("mov %0, %1" : "=a" (win1) : "a" (win)); //win1 = win; + asm volatile ("mov %0, %1" : "=a" (win2) : "a" (win)); //win2 = win; + } + asm volatile ("slli %0, %0, 2" : "+a" (m)); /// m = m << 2; + asm volatile ("slli %0, %0, 2" : "+a" (wind_step)); /// m = m << 2; + asm volatile ("addi %0, %0, -1" : "+a" (log4N)); ///log4N--; + } + return ESP_OK; +} +#endif // dsps_fft4r_fc32_ae32_enabled + +#if (dsps_cplx2real_fc32_ae32_enabled == 1) +esp_err_t dsps_cplx2real_fc32_ae32_(float *data, int fft_points, float *table, int table_size) +{ + float *ptr_inv; + + int wind_step = table_size / (fft_points); + + float *win0 = table + wind_step; + float *win1 = table + wind_step * 2; + + ////0 & 1 => dc frequency + ///fft_points * 2 + 0 & fft_points * 2 + 1 => Nyquist frequency + asm volatile ("const.s f14, 0"); //f14 = 0f; + asm volatile ("lsi f0, %0, 0" :: "a" (data)); //f0 = *data; + asm volatile ("lsi f1, %0, 4" :: "a" (data)); //f1 = *(data + 1); + asm volatile ("addx8 %0, %1, %2" : "=a" (ptr_inv) : "a" (fft_points), "a" (data)); //ptr_inv = data + fft_points * 2; + asm volatile ("add.s f6, f0, f1"); //f6 = f0 + f1; + asm volatile ("sub.s f7, f0, f1"); //f7 = f0 - f1; + + asm volatile ("srli %0, %0, 2" : "+a" (fft_points)); //fft_points >>= 2; + + asm volatile ("const.s f14, 3"); //f14 = 0.5f;, this is for multiply 0.5 + asm volatile ("neg.s f15, f14"); //f15 = -f14; + + asm volatile ("ssi f6, %0, 0" :: "a" (data)); //*data = f6; + asm volatile ("ssi f7, %0, 4" :: "a" (data)); //*ptr_inv = f7; + asm volatile ("addi %0, %0, -16" : "+a" (ptr_inv)); //ptr_inv -= 4; ///here increase address by -4 because float load/store not support negective immediate offset + + asm volatile ("loopnez %0, __loop_end_fftr_real_post_proc" :: "a" (fft_points)); //for (k = 0; k < fft_points; k++) { + asm volatile ("lsi f1, %0, 12" :: "a" (data)); //f1 = *(data + 3); + asm volatile ("lsi f3, %0, 12" :: "a" (ptr_inv)); //f3 = *(ptr_inv + 3); + asm volatile ("lsi f0, %0, 8" :: "a" (data)); //f0 = *(data + 2); + asm volatile ("lsi f2, %0, 8" :: "a" (ptr_inv)); //f2 = *(ptr_inv + 2); + + asm volatile ("lsi f7, %0, 20" :: "a" (data)); //f7 = *(data + 5); + asm volatile ("lsi f9, %0, 4" :: "a" (ptr_inv)); //f9 = *(ptr_inv + 1); + + asm volatile ("lsi f6, %0, 16" :: "a" (data)); //f6 = *(data + 4); + asm volatile ("lsi f8, %0, 0" :: "a" (ptr_inv)); //f8 = *ptr_inv; + asm volatile ("sub.s f5, f1, f3"); //f5 = f1 - f3; + asm volatile ("add.s f4, f0, f2"); //f4 = f0 + f2; + asm volatile ("sub.s f11, f7, f9"); //f11 = f7 - f9; + asm volatile ("add.s f10, f6, f8"); //f10 = f6 + f8; + + asm volatile ("add.s f1, f1, f3"); //f1 = f1 + f3; + asm volatile ("sub.s f0, f0, f2"); //f0 = f0 - f2; + + asm volatile ("lsi f12, %0, 4" :: "a" (win0)); //f12 = *(win + 1); + asm volatile ("add.s f7, f7, f9"); //f7 = f7 + f9; + asm volatile ("sub.s f6, f6, f8"); //f6 = f6 - f8; + asm volatile ("lsi f13, %0, 4" :: "a" (win1)); //f13 = *(win + 3); + + asm volatile ("mul.s f3, f1, f12"); //f3 = f1 * f12; + asm volatile ("mul.s f2, f0, f12"); //f2 = f0 * f12; + asm volatile ("lsi f12, %0, 0" :: "a" (win0)); //f12 = *(win + 0); + + asm volatile ("mul.s f9, f7, f13"); //f9 = f7 * f13; + asm volatile ("mul.s f8, f6, f13"); //f8 = f6 * f13; + + asm volatile ("lsi f13, %0, 0" :: "a" (win1)); //f13 = *(win + 2); + + asm volatile ("madd.s f3, f0, f12"); //f3 += f0 * f12; + asm volatile ("msub.s f2, f1, f12"); //f2 -= f1 * f12; + asm volatile ("madd.s f9, f6, f13"); //f9 += f6 * f13; + asm volatile ("msub.s f8, f7, f13"); //f8 -= f7 * f13; + asm volatile ("addx8 %0, %1, %0" : "+a" (win0) : "a" (wind_step)); //win0 += 8 * wind_step; + asm volatile ("addx8 %0, %1, %0" : "+a" (win1) : "a" (wind_step)); //win1 += 8 * wind_step; + // Here we have tw1: f2,f3 and tw2: f8,f9 + + asm volatile ("sub.s f1, f5, f3"); //f1 = f5 - f3; + asm volatile ("sub.s f0, f4, f2"); //f0 = f4 - f2; + + asm volatile ("add.s f3, f3, f5"); //f3 = f3 + f5; + asm volatile ("add.s f2, f4, f2"); //f2 = f4 + f2; + + asm volatile ("sub.s f7, f11, f9"); //f7 = f11 - f9; + asm volatile ("sub.s f6, f10, f8"); //f6 = f10 - f8; + asm volatile ("add.s f9, f9, f11"); //f9 = f9 + f11; + asm volatile ("add.s f8, f10, f8"); //f8 = f10 + f8; + + asm volatile ("mul.s f1, f1, f14"); //f1 *= f14; + asm volatile ("mul.s f0, f0, f14"); //f0 *= f14; + + asm volatile ("mul.s f3, f3, f15"); //f3 *= -f14; + asm volatile ("mul.s f2, f2, f14"); //f2 *= f14; + + asm volatile ("mul.s f7, f7, f14"); //f7 *= f14; + asm volatile ("mul.s f6, f6, f14"); //f6 *= f14; + asm volatile ("mul.s f9, f9, f15"); //f9 *= -f14; + asm volatile ("mul.s f8, f8, f14"); //f8 *= f14; + + asm volatile ("ssi f1, %0, 12" :: "a" (data)); //*(data + 3) = f1; + asm volatile ("ssi f0, %0, 8" :: "a" (data)); //*(data + 2) = f0; + + asm volatile ("ssi f3, %0, 12" :: "a" (ptr_inv)); //*(ptr_inv + 3) = f3; + asm volatile ("ssi f2, %0, 8" :: "a" (ptr_inv)); //*(ptr_inv + 2) = f2; + + asm volatile ("ssi f7, %0, 20" :: "a" (data)); //*(data + 5) = f7; + asm volatile ("ssi f6, %0, 16" :: "a" (data)); //*(data + 4) = f6; + asm volatile ("addi %0, %0, 16" : "+a" (data)); //data += 4; + + asm volatile ("ssi f9, %0, 4" :: "a" (ptr_inv)); //*(ptr_inv + 1) = f9; + asm volatile ("ssi f8, %0, 0" :: "a" (ptr_inv)); //*ptr_inv = f8; + asm volatile ("addi %0, %0, -16" : "+a" (ptr_inv)); //ptr_inv -= 4; + //} + asm volatile ("__loop_end_fftr_real_post_proc: nop"); + + return ESP_OK; +} +#endif // dsps_cplx2real_fc32_ae32_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_fc32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_fc32_ansi.c new file mode 100644 index 0000000..08bc501 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/float/dsps_fft4r_fc32_ansi.c @@ -0,0 +1,331 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fft2r.h" +#include "dsps_fft4r.h" +#include "dsp_common.h" +#include "dsp_types.h" +#include +#include "esp_attr.h" +#include "esp_log.h" +#include +#include + +static const char *TAG = "fftr4 ansi"; + +float *dsps_fft4r_w_table_fc32; +int dsps_fft4r_w_table_size; +uint8_t dsps_fft4r_initialized = 0; +uint8_t dsps_fft4r_mem_allocated = 0; +//float* win2; +uint16_t *dsps_fft4r_ram_rev_table = NULL; + +esp_err_t dsps_fft4r_init_fc32(float *fft_table_buff, int max_fft_size) +{ + esp_err_t result = ESP_OK; + if (dsps_fft4r_initialized != 0) { + return result; + } + if (max_fft_size > CONFIG_DSP_MAX_FFT_SIZE) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (max_fft_size == 0) { + return result; + } + if (fft_table_buff != NULL) { + if (dsps_fft4r_mem_allocated) { + return ESP_ERR_DSP_REINITIALIZED; + } + dsps_fft4r_w_table_fc32 = fft_table_buff; + dsps_fft4r_w_table_size = max_fft_size * 2; + } else { + if (!dsps_fft4r_mem_allocated) { + dsps_fft4r_w_table_fc32 = (float *)malloc(max_fft_size * sizeof(float) * 4); + if (NULL == dsps_fft4r_w_table_fc32) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + } + dsps_fft4r_w_table_size = max_fft_size * 2; + dsps_fft4r_mem_allocated = 1; + } + + // FFT ram_rev table allocated + int pow = dsp_power_of_two(max_fft_size) >> 1; + if ((pow >= 2) && (pow <= 6)) { + dsps_fft4r_ram_rev_table = (uint16_t *)malloc(2 * dsps_fft4r_rev_tables_fc32_size[pow - 2] * sizeof(uint16_t)); + if (NULL == dsps_fft4r_ram_rev_table) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + memcpy(dsps_fft4r_ram_rev_table, dsps_fft4r_rev_tables_fc32[pow - 2], 2 * dsps_fft4r_rev_tables_fc32_size[pow - 2] * sizeof(uint16_t)); + dsps_fft4r_rev_tables_fc32[pow - 2] = dsps_fft4r_ram_rev_table; + } + + for (int i = 0; i < dsps_fft4r_w_table_size; i++) { + float angle = 2 * M_PI * i / (float)dsps_fft4r_w_table_size; + dsps_fft4r_w_table_fc32[2 * i + 0] = cosf(angle); + dsps_fft4r_w_table_fc32[2 * i + 1] = sinf(angle); + } + + dsps_fft4r_initialized = 1; + + return ESP_OK; +} + +void dsps_fft4r_deinit_fc32() +{ + if (dsps_fft4r_mem_allocated) { + free(dsps_fft4r_w_table_fc32); + } + if (dsps_fft4r_ram_rev_table != NULL) { + free(dsps_fft4r_ram_rev_table); + dsps_fft4r_ram_rev_table = NULL; + } + // Re init bitrev table for next use + dsps_fft4r_rev_tables_init_fc32(); + + dsps_fft4r_mem_allocated = 0; + dsps_fft4r_initialized = 0; +} + +esp_err_t dsps_bit_rev4r_direct_fc32_ansi(float *data, int N) +{ + if (!dsp_is_power_of_two(N)) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + if (0 == dsps_fft4r_initialized) { + return ESP_ERR_DSP_UNINITIALIZED; + } + esp_err_t result = ESP_OK; + int log2N = dsp_power_of_two(N); + int log4N = log2N >> 1; + if ((log2N & 0x01) != 0) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + float r_temp, i_temp; + for (int i = 0; i < N; i++) { + int cnt; + int xx; + int bits2; + xx = 0; + cnt = log4N; + int j = i; + while (cnt > 0) { + bits2 = j & 0x3; + xx = (xx << 2) + bits2; + j = j >> 2; + cnt--; + } + if (i < xx) { + r_temp = data[i * 2 + 0]; + i_temp = data[i * 2 + 1]; + data[i * 2 + 0] = data[xx * 2 + 0]; + data[i * 2 + 1] = data[xx * 2 + 1]; + data[xx * 2 + 0] = r_temp; + data[xx * 2 + 1] = i_temp; + } + } + return result; +} + +esp_err_t dsps_fft4r_fc32_ansi_(float *data, int length, float *table, int table_size) +{ + if (0 == dsps_fft4r_initialized) { + return ESP_ERR_DSP_UNINITIALIZED; + } + + fc32_t bfly[4]; + int log2N = dsp_power_of_two(length); + int log4N = log2N >> 1; + if ((log2N & 0x01) != 0) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + + int m = 2; + int wind_step = table_size / length; + while (1) { ///radix 4 + if (log4N == 0) { + break; + } + length = length >> 2; + for (int j = 0; j < m; j += 2) { // j: which FFT of this step + int start_index = j * (length << 1); // n: n-point FFT + + fc32_t *ptrc0 = (fc32_t *)data + start_index; + fc32_t *ptrc1 = ptrc0 + length; + fc32_t *ptrc2 = ptrc1 + length; + fc32_t *ptrc3 = ptrc2 + length; + + fc32_t *winc0 = (fc32_t *)table; + fc32_t *winc1 = winc0; + fc32_t *winc2 = winc0; + + for (int k = 0; k < length; k++) { + fc32_t in0 = *ptrc0; + fc32_t in2 = *ptrc2; + fc32_t in1 = *ptrc1; + fc32_t in3 = *ptrc3; + + bfly[0].re = in0.re + in2.re + in1.re + in3.re; + bfly[0].im = in0.im + in2.im + in1.im + in3.im; + + bfly[1].re = in0.re - in2.re + in1.im - in3.im; + bfly[1].im = in0.im - in2.im - in1.re + in3.re; + + bfly[2].re = in0.re + in2.re - in1.re - in3.re; + bfly[2].im = in0.im + in2.im - in1.im - in3.im; + + bfly[3].re = in0.re - in2.re - in1.im + in3.im; + bfly[3].im = in0.im - in2.im + in1.re - in3.re; + + + + *ptrc0 = bfly[0]; + ptrc1->re = bfly[1].re * winc0->re + bfly[1].im * winc0->im; + ptrc1->im = bfly[1].im * winc0->re - bfly[1].re * winc0->im; + ptrc2->re = bfly[2].re * winc1->re + bfly[2].im * winc1->im; + ptrc2->im = bfly[2].im * winc1->re - bfly[2].re * winc1->im; + ptrc3->re = bfly[3].re * winc2->re + bfly[3].im * winc2->im; + ptrc3->im = bfly[3].im * winc2->re - bfly[3].re * winc2->im; + + winc0 += 1 * wind_step; + winc1 += 2 * wind_step; + winc2 += 3 * wind_step; + + ptrc0++; + ptrc1++; + ptrc2++; + ptrc3++; + } + } + m = m << 2; + wind_step = wind_step << 2; + log4N--; + } + return ESP_OK; +} + +esp_err_t dsps_cplx2real_fc32_ansi_(float *data, int N, float *table, int table_size) +{ + if (0 == dsps_fft4r_initialized) { + return ESP_ERR_DSP_UNINITIALIZED; + } + int wind_step = table_size / (N); + fc32_t *result = (fc32_t *)data; + // Original formula... + // result[0].re = result[0].re + result[0].im; + // result[N].re = result[0].re - result[0].im; + // result[0].im = 0; + // result[N].im = 0; + // Optimized one: + float tmp_re = result[0].re; + result[0].re = tmp_re + result[0].im; + result[0].im = tmp_re - result[0].im; + + fc32_t f1k, f2k; + for (int k = 1; k <= N / 2 ; k++ ) { + fc32_t fpk = result[k]; + fc32_t fpnk = result[N - k]; + f1k.re = fpk.re + fpnk.re; + f1k.im = fpk.im - fpnk.im; + f2k.re = fpk.re - fpnk.re; + f2k.im = fpk.im + fpnk.im; + + float c = -table[k * wind_step + 1]; + float s = -table[k * wind_step + 0]; + fc32_t tw; + tw.re = c * f2k.re - s * f2k.im; + tw.im = s * f2k.re + c * f2k.im; + + result[k].re = 0.5 * (f1k.re + tw.re); + result[k].im = 0.5 * (f1k.im + tw.im); + result[N - k].re = 0.5 * (f1k.re - tw.re); + result[N - k].im = 0.5 * (tw.im - f1k.im); + } + return ESP_OK; +} + +esp_err_t dsps_gen_bitrev4r_table(int N, int step, char *name_ext) +{ + if (!dsp_is_power_of_two(N)) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + + int items_count = 0; + ESP_LOGD(TAG, "const uint16_t bitrev4r_table_%i_%s[] = { ", N, name_ext); + int log2N = dsp_power_of_two(N); + int log4N = log2N >> 1; + + for (int i = 1; i < N - 1; i++) { + int cnt; + int xx; + int bits2; + xx = 0; + cnt = log4N; + int j = i; + while (cnt > 0) { + bits2 = j & 0x3; + xx = (xx << 2) + bits2; + j = j >> 2; + cnt--; + } + if (i < xx) { + ESP_LOGD(TAG, "%i, %i, ", i * step, xx * step); + items_count++; + if ((items_count % 8) == 0) { + ESP_LOGD(TAG, " "); + } + } + } + + ESP_LOGD(TAG, "};"); + ESP_LOGD(TAG, "const uint16_t bitrev4r_table_%i_%s_size = %i;\n", N, name_ext, items_count); + + ESP_LOGD(TAG, "extern const uint16_t bitrev4r_table_%i_%s[];", N, name_ext); + ESP_LOGD(TAG, "extern const uint16_t bitrev4r_table_%i_%s_size;\n", N, name_ext); + return ESP_OK; +} + +esp_err_t dsps_bit_rev4r_fc32(float *data, int N) +{ + uint16_t *table; + uint16_t table_size; + switch (N) { + case 16: + table = (uint16_t *)dsps_fft4r_rev_tables_fc32[0]; + table_size = dsps_fft4r_rev_tables_fc32_size[0]; + break; + case 64: + table = (uint16_t *)dsps_fft4r_rev_tables_fc32[1]; + table_size = dsps_fft4r_rev_tables_fc32_size[1]; + break; + case 256: + table = (uint16_t *)dsps_fft4r_rev_tables_fc32[2]; + table_size = dsps_fft4r_rev_tables_fc32_size[2]; + break; + case 1024: + table = (uint16_t *)dsps_fft4r_rev_tables_fc32[3]; + table_size = dsps_fft4r_rev_tables_fc32_size[3]; + break; + case 4096: + table = (uint16_t *)dsps_fft4r_rev_tables_fc32[4]; + table_size = dsps_fft4r_rev_tables_fc32_size[4]; + break; + + default: + return dsps_bit_rev4r_direct_fc32_ansi(data, N); + break; + } + + return dsps_bit_rev_lookup_fc32(data, table_size, table); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft2r.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft2r.h new file mode 100644 index 0000000..03c2c15 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft2r.h @@ -0,0 +1,245 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_fft2r_H_ +#define _dsps_fft2r_H_ + +#include "dsp_err.h" +#include "sdkconfig.h" +#include "dsps_fft_tables.h" +#include "dsps_fft2r_platform.h" + +#ifndef CONFIG_DSP_MAX_FFT_SIZE +#define CONFIG_DSP_MAX_FFT_SIZE 4096 +#endif // CONFIG_DSP_MAX_FFT_SIZE + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern float *dsps_fft_w_table_fc32; +extern int dsps_fft_w_table_size; +extern uint8_t dsps_fft2r_initialized; + +extern int16_t *dsps_fft_w_table_sc16; +extern int dsps_fft_w_table_sc16_size; +extern uint8_t dsps_fft2r_sc16_initialized; + + +/**@{*/ +/** + * @brief init fft tables + * + * Initialization of Complex FFT. This function initialize coefficients table. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[inout] fft_table_buff: pointer to floating point buffer where sin/cos table will be stored + * if this parameter set to NULL, and table_size value is more then 0, then + * dsps_fft2r_init_fc32 will allocate buffer internally + * @param[in] table_size: size of the buffer in float words + * if fft_table_buff is NULL and table_size is not 0, buffer will be allocated internally. + * If table_size is 0, buffer will not be allocated. + * + * @return + * - ESP_OK on success + * - ESP_ERR_DSP_PARAM_OUTOFRANGE if table_size > CONFIG_DSP_MAX_FFT_SIZE + * - ESP_ERR_DSP_REINITIALIZED if buffer already allocated internally by other function + * - One of the error codes from DSP library + */ +esp_err_t dsps_fft2r_init_fc32(float *fft_table_buff, int table_size); +esp_err_t dsps_fft2r_init_sc16(int16_t *fft_table_buff, int table_size); +/**@}*/ + +/**@{*/ +/** + * @brief deinit fft tables + * + * Free resources of Complex FFT. This function delete coefficients table if it was allocated by dsps_fft2r_init_fc32. + * The implementation use ANSI C and could be compiled and run on any platform + * + */ +void dsps_fft2r_deinit_fc32(void); +void dsps_fft2r_deinit_sc16(void); +/**@}*/ + +/**@{*/ +/** + * @brief complex FFT of radix 2 + * + * Complex FFT of radix 2 + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[inout] data: input/output complex array. An elements located: Re[0], Im[0], ... Re[N-1], Im[N-1] + * result of FFT will be stored to this array. + * @param[in] N: Number of complex elements in input array + * @param[in] w: pointer to the sin/cos table + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_fft2r_fc32_ansi_(float *data, int N, float *w); +esp_err_t dsps_fft2r_fc32_ae32_(float *data, int N, float *w); +esp_err_t dsps_fft2r_fc32_aes3_(float *data, int N, float *w); +esp_err_t dsps_fft2r_sc16_ansi_(int16_t *data, int N, int16_t *w); +esp_err_t dsps_fft2r_sc16_ae32_(int16_t *data, int N, int16_t *w); +esp_err_t dsps_fft2r_sc16_aes3_(int16_t *data, int N, int16_t *w); +/**@}*/ +// This is workaround because linker generates permanent error when assembler uses +// direct access to the table pointer +#define dsps_fft2r_fc32_ae32(data, N) dsps_fft2r_fc32_ae32_(data, N, dsps_fft_w_table_fc32) +#define dsps_fft2r_fc32_aes3(data, N) dsps_fft2r_fc32_aes3_(data, N, dsps_fft_w_table_fc32) +#define dsps_fft2r_sc16_ae32(data, N) dsps_fft2r_sc16_ae32_(data, N, dsps_fft_w_table_sc16) +#define dsps_fft2r_sc16_aes3(data, N) dsps_fft2r_sc16_aes3_(data, N, dsps_fft_w_table_sc16) +#define dsps_fft2r_fc32_ansi(data, N) dsps_fft2r_fc32_ansi_(data, N, dsps_fft_w_table_fc32) +#define dsps_fft2r_sc16_ansi(data, N) dsps_fft2r_sc16_ansi_(data, N, dsps_fft_w_table_sc16) + + +/**@{*/ +/** + * @brief bit reverse operation for the complex input array + * + * Bit reverse operation for the complex input array + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[inout] data: input/ complex array. An elements located: Re[0], Im[0], ... Re[N-1], Im[N-1] + * result of FFT will be stored to this array. + * @param[in] N: Number of complex elements in input array + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_bit_rev_fc32_ansi(float *data, int N); +esp_err_t dsps_bit_rev_sc16_ansi(int16_t *data, int N); +esp_err_t dsps_bit_rev2r_fc32(float *data, int N); +/**@}*/ + +esp_err_t dsps_bit_rev_lookup_fc32_ansi(float *data, int reverse_size, uint16_t *reverse_tab); +esp_err_t dsps_bit_rev_lookup_fc32_ae32(float *data, int reverse_size, uint16_t *reverse_tab); +esp_err_t dsps_bit_rev_lookup_fc32_aes3(float *data, int reverse_size, uint16_t *reverse_tab); + +/**@{*/ +/** + * @brief Generate coefficients table for the FFT radix 2 + * + * Generate coefficients table for the FFT radix 2. This function called inside init. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[inout] w: memory location to store coefficients. + * By default coefficients will be stored to the dsps_fft_w_table_fc32. + * Maximum size of the FFT must be setup in menuconfig + * @param[in] N: maximum size of the FFT that will be used + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_gen_w_r2_fc32(float *w, int N); +esp_err_t dsps_gen_w_r2_sc16(int16_t *w, int N); +/**@}*/ + +/**@{*/ +/** + * @brief Convert complex array to two real arrays + * + * Convert complex array to two real arrays in case if input was two real arrays. + * This function have to be used if FFT used to process real data. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[inout] data: Input complex array and result of FFT2R. + * input has size of 2*N, because contains real and imaginary part. + * result will be stored to the same array. + * Input1: input[0..N-1], Input2: input[N..2*N-1] + * @param[in] N: Number of complex elements in input array + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_cplx2reC_fc32_ansi(float *data, int N); +esp_err_t dsps_cplx2reC_sc16(int16_t *data, int N); +/**@}*/ + +/**@{*/ +/** + * @brief Convert complex FFT result to real array + * + * Convert FFT result of complex FFT for resl input to real array. + * This function have to be used if FFT used to process real data. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[inout] data: Input complex array and result of FFT2R. + * input has size of 2*N, because contains real and imaginary part. + * result will be stored to the same array. + * Input1: input[0..N-1], Input2: input[N..2*N-1] + * @param[in] N: Number of complex elements in input array + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_cplx2real_sc16_ansi(int16_t *data, int N); +/**@}*/ +esp_err_t dsps_cplx2real256_fc32_ansi(float *data); + +esp_err_t dsps_gen_bitrev2r_table(int N, int step, char *name_ext); + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED +#define dsps_bit_rev_fc32 dsps_bit_rev_fc32_ansi +#define dsps_cplx2reC_fc32 dsps_cplx2reC_fc32_ansi + +#if (dsps_fft2r_fc32_aes3_enabled == 1) +#define dsps_fft2r_fc32 dsps_fft2r_fc32_aes3 +#elif (dsps_fft2r_fc32_ae32_enabled == 1) +#define dsps_fft2r_fc32 dsps_fft2r_fc32_ae32 +#else +#define dsps_fft2r_fc32 dsps_fft2r_fc32_ansi +#endif + +#if (dsps_fft2r_sc16_aes3_enabled == 1) +#define dsps_fft2r_sc16 dsps_fft2r_sc16_aes3 +#elif (dsps_fft2r_sc16_ae32_enabled == 1) +#define dsps_fft2r_sc16 dsps_fft2r_sc16_ae32 +#else +#define dsps_fft2r_sc16 dsps_fft2r_sc16_ansi +#endif + +#if (dsps_bit_rev_lookup_fc32_ae32_enabled == 1) +#if (dsps_fft2r_fc32_aes3_enabled) +#define dsps_bit_rev_lookup_fc32 dsps_bit_rev_lookup_fc32_aes3 +#else +#define dsps_bit_rev_lookup_fc32 dsps_bit_rev_lookup_fc32_ae32 +#endif // dsps_fft2r_fc32_aes3_enabled +#else +#define dsps_bit_rev_lookup_fc32 dsps_bit_rev_lookup_fc32_ansi +#endif + +#else // CONFIG_DSP_OPTIMIZED + +#define dsps_fft2r_fc32 dsps_fft2r_fc32_ansi +#define dsps_bit_rev_fc32 dsps_bit_rev_fc32_ansi +#define dsps_cplx2reC_fc32 dsps_cplx2reC_fc32_ansi +#define dsps_bit_rev_sc16 dsps_bit_rev_sc16_ansi +#define dsps_bit_rev_lookup_fc32 dsps_bit_rev_lookup_fc32_ansi + +#endif // CONFIG_DSP_OPTIMIZED + +#endif // _dsps_fft2r_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft2r_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft2r_platform.h new file mode 100644 index 0000000..7213d16 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft2r_platform.h @@ -0,0 +1,36 @@ +#ifndef _dsps_fft2r_platform_H_ +#define _dsps_fft2r_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dsps_fft2r_fc32_ae32_enabled 1 + +#endif // + +#if ((XCHAL_HAVE_LOOPS == 1) && (XCHAL_HAVE_MAC16 == 1)) + +#define dsps_fft2r_sc16_ae32_enabled 1 + +#endif // + +#if (XCHAL_HAVE_LOOPS == 1) + +#define dsps_bit_rev_lookup_fc32_ae32_enabled 1 + +#endif // +#endif // __XTENSA__ + +#if CONFIG_IDF_TARGET_ESP32S3 +#define dsps_fft2r_fc32_aes3_enabled 1 +#define dsps_fft2r_sc16_aes3_enabled 1 +#endif + + +#endif // _dsps_fft2r_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft4r.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft4r.h new file mode 100644 index 0000000..774179e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft4r.h @@ -0,0 +1,177 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_fft4r_H_ +#define _dsps_fft4r_H_ +#include "dsp_err.h" +#include "sdkconfig.h" + +#include "dsps_fft_tables.h" +#include "dsps_fft4r_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern float *dsps_fft4r_w_table_fc32; +extern int dsps_fft4r_w_table_size; +extern uint8_t dsps_fft4r_initialized; + +extern int16_t *dsps_fft4r_w_table_sc16; +extern int dsps_fft4r_w_table_sc16_size; +extern uint8_t dsps_fft4r_sc16_initialized; + +/**@{*/ +/** + * @brief init fft tables + * + * Initialization of Complex FFT Radix-4. This function initialize coefficients table. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[inout] fft_table_buff: pointer to floating point buffer where sin/cos table will be stored + * if this parameter set to NULL, and table_size value is more then 0, then + * dsps_fft4r_init_fc32 will allocate buffer internally + * @param[in] max_fft_size: maximum fft size. The buffer for sin/cos table that will be used for radix-4 it's + * four times maximum length of FFT. + * if fft_table_buff is NULL and table_size is not 0, buffer will be allocated internally. + * If table_size is 0, buffer will not be allocated. + * + * @return + * - ESP_OK on success + * - ESP_ERR_DSP_PARAM_OUTOFRANGE if table_size > CONFIG_DSP_MAX_FFT_SIZE + * - ESP_ERR_DSP_REINITIALIZED if buffer already allocated internally by other function + * - One of the error codes from DSP library + */ +esp_err_t dsps_fft4r_init_fc32(float *fft_table_buff, int max_fft_size); +/**@}*/ + +/**@{*/ +/** + * @brief deinit fft tables + * + * Free resources of Complex FFT Radix-4. This function delete coefficients table if it was allocated by dsps_fft4r_init_fc32. + * The implementation use ANSI C and could be compiled and run on any platform + * + * + */ +void dsps_fft4r_deinit_fc32(void); +/**@}*/ + +/**@{*/ +/** + * @brief complex FFT of radix 4 + * + * Complex FFT of radix 4 + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[inout] data: input/output complex array. An elements located: Re[0], Im[0], ... Re[N-1], Im[N-1] + * result of FFT will be stored to this array. + * @param[in] N: Number of complex elements in input array + * @param[in] table: pointer to sin/cos table + * @param[in] table_size: size of the sin/cos table + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_fft4r_fc32_ansi_(float *data, int N, float *table, int table_size); +esp_err_t dsps_fft4r_fc32_ae32_(float *data, int N, float *table, int table_size); +/**@}*/ +// This is workaround because linker generates permanent error when assembler uses +// direct access to the table pointer +#define dsps_fft4r_fc32_ansi(data, N) dsps_fft4r_fc32_ansi_(data, N, dsps_fft4r_w_table_fc32, dsps_fft4r_w_table_size) +#define dsps_fft4r_fc32_ae32(data, N) dsps_fft4r_fc32_ae32_(data, N, dsps_fft4r_w_table_fc32, dsps_fft4r_w_table_size) + +/**@{*/ +/** + * @brief bit reverse operation for the complex input array radix-4 + * + * Bit reverse operation for the complex input array + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[inout] data: input/ complex array. An elements located: Re[0], Im[0], ... Re[N-1], Im[N-1] + * result of FFT will be stored to this array. + * @param[in] N: Number of complex elements in input array + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_bit_rev4r_fc32(float *data, int N); +esp_err_t dsps_bit_rev4r_fc32_ae32(float *data, int N); +esp_err_t dsps_bit_rev4r_direct_fc32_ansi(float *data, int N); +esp_err_t dsps_bit_rev4r_sc16_ansi(int16_t *data, int N); +/**@}*/ + +/**@{*/ +/** + * @brief Convert complex FFT result to real array + * + * Convert FFT result of complex FFT for real input to real array. + * This function have to be used if FFT used to process real data. + * This function use tabels inside and can be used only it dsps_fft4r_init_fc32(...) was + * called and FFT4 was initialized. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[inout] data: Input complex array and result of FFT2R/FFT4R. + * input has size of 2*N, because contains real and imaginary part. + * result will be stored to the same array. + * Input1: input[0..N-1], Input2: input[N..2*N-1] + * @param[in] N: Number of complex elements in input array + * @param[in] table: pointer to sin/cos table + * @param[in] table_size: size of the sin/cos table + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_cplx2real_fc32_ansi_(float *data, int N, float *table, int table_size); +esp_err_t dsps_cplx2real_fc32_ae32_(float *data, int N, float *table, int table_size); +/**@}*/ +#define dsps_cplx2real_fc32_ansi(data, N) dsps_cplx2real_fc32_ansi_(data, N, dsps_fft4r_w_table_fc32, dsps_fft4r_w_table_size) +#define dsps_cplx2real_fc32_ae32(data, N) dsps_cplx2real_fc32_ae32_(data, N, dsps_fft4r_w_table_fc32, dsps_fft4r_w_table_size) + + +esp_err_t dsps_gen_bitrev4r_table(int N, int step, char *name_ext); + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED +#if (dsps_fft4r_fc32_ae32_enabled == 1) +#define dsps_fft4r_fc32 dsps_fft4r_fc32_ae32 +#else +#define dsps_fft4r_fc32 dsps_fft4r_fc32_ansi +#endif // dsps_fft4r_fc32_ae32_enabled + +#define dsps_fft4r_sc16 dsps_fft4r_sc16_ae32 +#define dsps_bit_rev4r_fc32 dsps_bit_rev4r_fc32_ae32 + +#if (dsps_cplx2real_fc32_ae32_enabled == 1) +#define dsps_cplx2real_fc32 dsps_cplx2real_fc32_ae32 +#else +#define dsps_cplx2real_fc32 dsps_cplx2real_fc32_ansi +#endif // dsps_cplx2real_fc32_ae32_enabled + +#else +#define dsps_fft4r_fc32 dsps_fft4r_fc32_ansi +#define dsps_fft4r_sc16 dsps_fft4r_sc16_ansi +#define dsps_bit_rev4r_fc32 dsps_bit_rev4r_fc32 +#define dsps_cplx2real_fc32 dsps_cplx2real_fc32_ansi +#endif + +#endif // _dsps_fft4r_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft4r_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft4r_platform.h new file mode 100644 index 0000000..52fc409 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft4r_platform.h @@ -0,0 +1,34 @@ +#ifndef _dsps_fft4r_platform_H_ +#define _dsps_fft4r_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dsps_fft4r_fc32_ae32_enabled 1 +#define dsps_cplx2real_fc32_ae32_enabled 1 + +#endif // + + +#if ((XCHAL_HAVE_LOOPS == 1) && (XCHAL_HAVE_MAC16 == 1)) + +#define dsps_fft2r_sc16_ae32_enabled 1 + +#endif // + +#if (XCHAL_HAVE_LOOPS == 1) + +#define dsps_bit_rev_lookup_fc32_ae32_enabled 1 + +#endif // +#endif // __XTENSA__ + + + +#endif // _dsps_fft4r_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft_tables.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft_tables.h new file mode 100644 index 0000000..22d3ee6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/include/dsps_fft_tables.h @@ -0,0 +1,89 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_fft_tables_H_ +#define _dsps_fft_tables_H_ + + +#ifdef __cplusplus +extern "C" +{ +#endif +extern const uint16_t bitrev2r_table_16_fc32[]; +extern const uint16_t bitrev2r_table_16_fc32_size; + +extern const uint16_t bitrev2r_table_32_fc32[]; +extern const uint16_t bitrev2r_table_32_fc32_size; + +extern const uint16_t bitrev2r_table_64_fc32[]; +extern const uint16_t bitrev2r_table_64_fc32_size; + +extern const uint16_t bitrev2r_table_128_fc32[]; +extern const uint16_t bitrev2r_table_128_fc32_size; + +extern const uint16_t bitrev2r_table_256_fc32[]; +extern const uint16_t bitrev2r_table_256_fc32_size; + +extern const uint16_t bitrev2r_table_512_fc32[]; +extern const uint16_t bitrev2r_table_512_fc32_size; + +extern const uint16_t bitrev2r_table_1024_fc32[]; +extern const uint16_t bitrev2r_table_1024_fc32_size; + +extern const uint16_t bitrev2r_table_2048_fc32[]; +extern const uint16_t bitrev2r_table_2048_fc32_size; + +extern const uint16_t bitrev2r_table_4096_fc32[]; +extern const uint16_t bitrev2r_table_4096_fc32_size; + +void dsps_fft2r_rev_tables_init_fc32(void); +extern uint16_t *dsps_fft2r_rev_tables_fc32[]; +extern const uint16_t dsps_fft2r_rev_tables_fc32_size[]; + +extern const uint16_t bitrev4r_table_16_fc32[]; +extern const uint16_t bitrev4r_table_16_fc32_size; + +extern const uint16_t bitrev4r_table_32_fc32[]; +extern const uint16_t bitrev4r_table_32_fc32_size; + +extern const uint16_t bitrev4r_table_64_fc32[]; +extern const uint16_t bitrev4r_table_64_fc32_size; + +extern const uint16_t bitrev4r_table_128_fc32[]; +extern const uint16_t bitrev4r_table_128_fc32_size; + +extern const uint16_t bitrev4r_table_256_fc32[]; +extern const uint16_t bitrev4r_table_256_fc32_size; + +extern const uint16_t bitrev4r_table_512_fc32[]; +extern const uint16_t bitrev4r_table_512_fc32_size; + +extern const uint16_t bitrev4r_table_1024_fc32[]; +extern const uint16_t bitrev4r_table_1024_fc32_size; + +extern const uint16_t bitrev4r_table_2048_fc32[]; +extern const uint16_t bitrev4r_table_2048_fc32_size; + +extern const uint16_t bitrev4r_table_4096_fc32[]; +extern const uint16_t bitrev4r_table_4096_fc32_size; + +void dsps_fft4r_rev_tables_init_fc32(void); +extern uint16_t *dsps_fft4r_rev_tables_fc32[]; +extern const uint16_t dsps_fft4r_rev_tables_fc32_size[]; + +#ifdef __cplusplus +} +#endif + +#endif // _dsps_fft_tables_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_fc32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_fc32_ae32.c new file mode 100644 index 0000000..ab5541f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_fc32_ae32.c @@ -0,0 +1,150 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_view.h" +#include "dsps_fft2r.h" +#include "dsp_tests.h" + +static const char *TAG = "fft2r_ae32"; + +__attribute__((aligned(16))) +static float data[1024 * 2]; +__attribute__((aligned(16))) +static float check_data[1024 * 2]; +__attribute__((aligned(16))) +static float data_test[1024 * 2]; + +TEST_CASE("dsps_fft2r_fc32_ae32 functionality", "[dsps]") +{ + int N = sizeof(data) / sizeof(float) / 2; + int check_bin = 32; + float check_ampl = 2; + for (int i = 0 ; i < N ; i++) { + data[i * 2 + 0] = check_ampl * sinf(M_PI / N * check_bin * 2 * i) / (N / 2); + data[i * 2 + 1] = 0; + } + for (int i = 0 ; i < N * 2 ; i++) { + check_data[i] = data[i]; + data_test[i] = -1; + } + + // Init FFT tables + esp_err_t ret = dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + int N_check = N; + + dsps_fft2r_fc32_ae32(data, N_check); + dsps_fft2r_fc32_ansi(check_data, N_check); + + for (int i = 0 ; i < N_check ; i++) { + if (fabs(check_data[i] - data[i]) < 1e-5) { + ESP_LOGD(TAG, "Data[%i] =%8.4f, %8.4f, %8.4f", i, data[i], check_data[i], check_data[i] - data[i]); + } else { + ESP_LOGE(TAG, "Data[%i] =%f, %f, %f", i, data[i], check_data[i], check_data[i] - data[i]); + } + } + + dsps_bit_rev_fc32_ansi(data, N); + + float min = 10000; + float max = -10000; + int max_pos = 0; + for (int i = 0 ; i < N ; i++) { + data[i] = 10 * log10f(data[i * 2 + 0] * data[i * 2 + 0] + data[i * 2 + 1] * data[i * 2 + 1]); + if (data[i] < min) { + min = data[i]; + } + if (data[i] > max) { + max = data[i]; + max_pos = i; + } + ESP_LOGD(TAG, "FFT Data[%i] =%8.4f dB", i, data[i]); + } + dsps_view_spectrum(data, 256, -160, 40); + + TEST_ASSERT_EQUAL( check_bin, max_pos); + float round_pow = round(max * 10); + TEST_ASSERT_EQUAL( 6 * 10, round_pow); + ESP_LOGI(TAG, "Calculation error is less then 0.1 dB"); + dsps_fft2r_deinit_fc32(); +} + +TEST_CASE("dsps_fft2r_fc32_ae32 benchmark", "[dsps]") +{ + esp_err_t ret = dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + for (int i = 5 ; i < 10 ; i++) { + int N_check = 2 << i; + int check_bin = 32; + for (int i = 0 ; i < N_check ; i++) { + data[i * 2 + 0] = 4 * sinf(M_PI / N_check * check_bin * 2 * i) / (N_check / 2); + data[i * 2 + 1] = 0; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_fft2r_fc32_ae32(data, N_check); + + unsigned int end_b = xthal_get_ccount(); + float total_b = end_b - start_b; + float cycles = total_b; + ESP_LOGI(TAG, "Benchmark dsps_fft2r_fc32_ae32 - %6i cycles for %6i points FFT.", (int)cycles, N_check); + float min_exec = 3; + float max_exec = 330000; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + } + dsps_fft2r_deinit_fc32(); +} + +TEST_CASE("dsps_bit_rev2r_fc32_ae32 benchmark", "[dsps]") +{ + esp_err_t ret = dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + float *data = (float *)memalign(16, 2 * 4096 * sizeof(float)); + TEST_ASSERT_NOT_NULL(data); + + float *check_data = (float *)memalign(16, 2 * 4096 * sizeof(float)); + TEST_ASSERT_NOT_NULL(check_data); + + int N_check = 256; + for (size_t i = 4; i < 13; i++) { + N_check = 1 << i; + for (size_t i = 0; i < N_check * 2; i++) { + data[i] = i; + check_data[i] = i; + } + dsps_bit_rev_fc32_ansi(data, N_check); + unsigned int start_b = xthal_get_ccount(); + dsps_bit_rev2r_fc32(data, N_check); + float cycles = xthal_get_ccount() - start_b; + + for (size_t i = 0; i < N_check * 2; i++) { + TEST_ASSERT_EQUAL( data[i], check_data[i]); + } + ESP_LOGI(TAG, "Benchmark dsps_bit_rev2r_fc32_ae32 - %6i cycles for %i points.", (int)cycles, N_check); + } + + dsps_fft2r_deinit_fc32(); + free(data); + free(check_data); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_fc32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_fc32_ansi.c new file mode 100644 index 0000000..a26d9c5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_fc32_ansi.c @@ -0,0 +1,119 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_view.h" +#include "dsps_fft2r.h" +#include "dsp_tests.h" + +static const char *TAG = "dsps_fft2r_ansi"; + +TEST_CASE("dsps_fft2r_fc32_ansi functionality", "[dsps]") +{ + float *data = (float *)malloc(2 * 4096 * sizeof(float)); + float *check_data = (float *)malloc(2 * 4096 * sizeof(float)); + + int N = 1024; + int check_bin = 32; + for (int i = 0 ; i < N ; i++) { + data[i * 2 + 0] = 2 * sinf(M_PI / N * check_bin * 2 * i) / (N / 2); + data[i * 2 + 1] = 0; + } + + float *fft_table_buff = (float *)malloc((N + 2) * sizeof(float)); + fft_table_buff[0] = 1234; + fft_table_buff[N + 1] = 5678; + + esp_err_t ret = dsps_fft2r_init_fc32(&fft_table_buff[1], N); + TEST_ESP_OK(ret); + + + dsps_fft2r_fc32_ansi(data, N); + unsigned int start_b = xthal_get_ccount(); + dsps_bit_rev_fc32_ansi(data, N); + unsigned int end_b = xthal_get_ccount(); + + float min = 10000; + float max = -10000; + int max_pos = 0; + for (int i = 0 ; i < N ; i++) { + data[i] = 10 * log10f(data[i * 2 + 0] * data[i * 2 + 0] + data[i * 2 + 1] * data[i * 2 + 1]); + if (data[i] < min) { + min = data[i]; + } + if (data[i] > max) { + max = data[i]; + max_pos = i; + } + ESP_LOGD(TAG, "FFT Data[%i] =%8.4f dB", i, data[i]); + } + dsps_view_spectrum(data, 256, -160, 40); + + TEST_ASSERT_EQUAL( check_bin, max_pos); + float round_pow = round(max * 10); + TEST_ASSERT_EQUAL( 6 * 10, round_pow); + ESP_LOGI(TAG, "Calculation error is less then 0.1 dB"); + ESP_LOGI(TAG, "cycles - %i", end_b - start_b); + + ESP_LOGI(TAG, "fft_table_buff[0] = %f, fft_table_buff[N+1] = %f", fft_table_buff[0], fft_table_buff[N + 1]); + TEST_ASSERT_EQUAL( fft_table_buff[0], 1234); + TEST_ASSERT_EQUAL( fft_table_buff[N + 1], 5678); + free(fft_table_buff); + + free(data); + free(check_data); + dsps_fft2r_deinit_fc32(); +} + +TEST_CASE("dsps_fft2r_fc32_ansi benchmark", "[dsps]") +{ + esp_err_t ret = dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + float *data = (float *)malloc(2 * 4096 * sizeof(float)); + TEST_ASSERT_NOT_NULL(data); + + float *check_data = (float *)malloc(2 * 4096 * sizeof(float)); + TEST_ASSERT_NOT_NULL(check_data); + + for (int i = 5 ; i < 10 ; i++) { + int N_check = 2 << i; + unsigned int start_b = xthal_get_ccount(); + dsps_fft2r_fc32_ansi(data, N_check); + + unsigned int end_b = xthal_get_ccount(); + float total_b = end_b - start_b; + float cycles = total_b; + ESP_LOGI(TAG, "Benchmark dsps_fft2r_fc32_ansi - %6i cycles for %6i points FFT.", (int)cycles, N_check); + float min_exec = 3; + float max_exec = 330000 * 3; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + } + free(data); + free(check_data); + dsps_fft2r_deinit_fc32(); +} + +TEST_CASE("dsps_gen_bitrev2r_table bitrev table generation.", "[dsps]") +{ + for (int i = 4 ; i < 13 ; i++) { + int N_check = 1 << i; + dsps_gen_bitrev2r_table(N_check, 8, "fc32"); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_sc16_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_sc16_ae32.c new file mode 100644 index 0000000..c783493 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_sc16_ae32.c @@ -0,0 +1,183 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_view.h" +#include "dsps_fft2r.h" +#include "dsp_tests.h" + +static const char *TAG = "dsps_fft2r_ae32_s16"; + + +__attribute__((aligned(16))) +static int16_t data[1024 * 2]; +__attribute__((aligned(16))) +static float result_data[1024 * 2]; + +TEST_CASE("dsps_fft2r_sc16_aexx functionality", "[dsps]") +{ + int N = sizeof(data) / sizeof(int16_t) / 2; + N = 1024; + int check_bin = 64; + for (int i = 0 ; i < N ; i++) { + data[i * 2 + 0] = (INT16_MAX) * sin(M_PI / N * check_bin * 2 * i) * 0.5 * (1 - cosf(i * 2 * M_PI / (float)(N - 1))); + data[i * 2 + 1] = 0; + } + + esp_err_t ret = dsps_fft2r_init_sc16(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + ESP_LOGI(TAG, "data address=%8.8"PRIx32"\n", (uint32_t)data); + + dsps_fft2r_sc16(data, N); + unsigned int start_b = xthal_get_ccount(); + dsps_bit_rev_sc16_ansi(data, N); + unsigned int end_b = xthal_get_ccount(); + + + for (int i = 0 ; i < N ; i++) { + ESP_LOGD(TAG, "Data[%i] %04x\n", i / 2, data[i]); + } + + float min = 10000; + float max = -10000; + int max_pos = 0; + for (int i = 0 ; i < (N * 2) ; i++) { + result_data[i] = data[i]; + result_data[i] = result_data[i] / INT16_MAX; + } + + for (int i = 0 ; i < N ; i++) { + result_data[i] = 10 * log10f(0.0000000000001 + result_data[i * 2 + 0] * result_data[i * 2 + 0] + result_data[i * 2 + 1] * result_data[i * 2 + 1]); + if (result_data[i] < min) { + min = result_data[i]; + } + if (result_data[i] > max) { + max = result_data[i]; + max_pos = i; + } + ESP_LOGD(TAG, "FFT Data[%i] =%8.4f dB", i, result_data[i]); + } + dsps_view_spectrum(result_data, N, -100, 0); + float round_pow = round(max * 5); + + ESP_LOGI(TAG, "max_bin=%i, check_bin=%i, round_pow=%f\n", max_pos, check_bin, round_pow); + + + if (max_pos < N / 2) { + TEST_ASSERT_EQUAL( check_bin, max_pos); + } else { + TEST_ASSERT_EQUAL( N - check_bin, max_pos); + } + + TEST_ASSERT_EQUAL( -12 * 5, round_pow); + + ESP_LOGI(TAG, "Calculation error is less then 0.2 dB"); + ESP_LOGI(TAG, "cycles - %i", end_b - start_b); + dsps_fft2r_deinit_sc16(); +} + + +TEST_CASE("dsps_fft2r_sc16_aexx overflow check", "[dsps]") +{ + int N = sizeof(data) / sizeof(int16_t) / 2; + N = 1024; + int check_bin = 32; + int bins_count = 4; + for (int i = 0 ; i < N ; i++) { + data[i * 2 + 0] = 0; + data[i * 2 + 1] = 0; + for (int n = 1; n <= bins_count ; n++ ) { + data[i * 2 + 0] += (INT16_MAX) * cos(M_PI / N * check_bin * 2 * i * n) / bins_count; + data[i * 2 + 1] += (INT16_MAX) * sin(M_PI / N * check_bin * 2 * i * n) / bins_count; + } + } + + esp_err_t ret = dsps_fft2r_init_sc16(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + + dsps_fft2r_sc16(data, N); + unsigned int start_b = xthal_get_ccount(); + dsps_bit_rev_sc16_ansi(data, N); + unsigned int end_b = xthal_get_ccount(); + + + for (int i = 0 ; i < N ; i++) { + ESP_LOGD(TAG, "Data[%i] %04x\n", i / 2, data[i]); + } + + float min = 10000; + float max = -10000; + int max_pos = 0; + for (int i = 0 ; i < (N * 2) ; i++) { + result_data[i] = data[i]; + result_data[i] = result_data[i] / INT16_MAX; + } + + for (int i = 0 ; i < N ; i++) { + result_data[i] = 10 * log10f(0.0000000000001 + result_data[i * 2 + 0] * result_data[i * 2 + 0] + result_data[i * 2 + 1] * result_data[i * 2 + 1]); + if (result_data[i] < min) { + min = result_data[i]; + } + if (result_data[i] > max) { + max = result_data[i]; + max_pos = i; + } + ESP_LOGD(TAG, "FFT Data[%i] =%8.4f dB", i, result_data[i]); + } + dsps_view_spectrum(result_data, N, -100, 0); + float round_pow = round(max * 5); + + float noise_pow = -100; + for (int i = (bins_count * check_bin + 10) ; i < N ; i++) { + if (result_data[i] > noise_pow) { + noise_pow = result_data[i]; + } + } + ESP_LOGI(TAG, "max_bin=%i, check_bin=%i, round_pow=%f, noise power=%f\n", max_pos, check_bin, round_pow, noise_pow); + + if (noise_pow > (-65)) { + TEST_ASSERT_MESSAGE (false, "Noise power is more than expected!"); + } + + ESP_LOGI(TAG, "cycles - %i", end_b - start_b); + dsps_fft2r_deinit_sc16(); +} + +TEST_CASE("dsps_fft2r_sc16_ae32 benchmark", "[dsps]") +{ + esp_err_t ret = dsps_fft2r_init_sc16(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + for (int i = 5 ; i < 10 ; i++) { + int N_check = 2 << i; + unsigned int start_b = xthal_get_ccount(); + dsps_fft2r_sc16(data, N_check); + + unsigned int end_b = xthal_get_ccount(); + float total_b = end_b - start_b; + float cycles = total_b; + ESP_LOGI(TAG, "Benchmark dsps_fft2r_sc16_aexx - %6i cycles for %6i points FFT.", (int)cycles, N_check); + float min_exec = 3; + float max_exec = 330000 * 3; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + } + dsps_fft2r_deinit_sc16(); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_sc16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_sc16_ansi.c new file mode 100644 index 0000000..233c722 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft2r_sc16_ansi.c @@ -0,0 +1,118 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_view.h" +#include "dsps_fft2r.h" +#include "dsp_tests.h" + +static const char *TAG = "dsps_fft2r_ansi_s16"; + +__attribute__((aligned(16))) +static int16_t data[1024 * 2]; +__attribute__((aligned(16))) +static float result_data[1024 * 2]; + +TEST_CASE("dsps_fft2r_sc16_ansi functionality", "[dsps]") +{ + int N = sizeof(data) / sizeof(int16_t) / 2; + N = 1024; + int check_bin = 64; + for (int i = 0 ; i < N ; i++) { + data[i * 2 + 0] = (INT16_MAX) * sin(M_PI / N * check_bin * 2 * i) * 0.5 * (1 - cosf(i * 2 * M_PI / (float)(N - 1))); + data[i * 2 + 1] = 0; + } + int16_t *fft_table_buff = (int16_t *)malloc((N + 2) * sizeof(int16_t)); + TEST_ASSERT_NOT_NULL(fft_table_buff); + + fft_table_buff[0] = 1234; + fft_table_buff[N + 1] = 5678; + esp_err_t ret = dsps_fft2r_init_sc16(&fft_table_buff[1], N); + TEST_ESP_OK(ret); + + dsps_fft2r_sc16_ansi(data, N); + unsigned int start_b = xthal_get_ccount(); + dsps_bit_rev_sc16_ansi(data, N); + unsigned int end_b = xthal_get_ccount(); + + + for (int i = 0 ; i < N ; i++) { + ESP_LOGD(TAG, "Data[%i] %i\n", i / 2, data[i]); + } + + float min = 10000; + float max = -10000; + int max_pos = 0; + for (int i = 0 ; i < (N * 2) ; i++) { + result_data[i] = data[i]; + result_data[i] = result_data[i] / INT16_MAX; + } + + for (int i = 0 ; i < N ; i++) { + result_data[i] = 10 * log10f(0.0000000000001 + result_data[i * 2 + 0] * result_data[i * 2 + 0] + result_data[i * 2 + 1] * result_data[i * 2 + 1]); + if (result_data[i] < min) { + min = result_data[i]; + } + if (result_data[i] > max) { + max = result_data[i]; + max_pos = i; + } + ESP_LOGD(TAG, "FFT Data[%i] =%8.4f dB", i, result_data[i]); + } + dsps_view_spectrum(result_data, N, -100, 0); + float round_pow = round(max * 5); + + ESP_LOGI(TAG, "max_bin=%i, check_bin=%i, round_pow=%f\n", max_pos, check_bin, round_pow); + + if (max_pos < N / 2) { + TEST_ASSERT_EQUAL( check_bin, max_pos); + } else { + TEST_ASSERT_EQUAL( N - check_bin, max_pos); + } + TEST_ASSERT_EQUAL( -12 * 5, round_pow); + ESP_LOGI(TAG, "Calculation error is less then 0.2 dB"); + ESP_LOGI(TAG, "cycles - %i", end_b - start_b); + // Check if we not out of range + ESP_LOGI(TAG, "fft_table_buff[0] = %i, fft_table_buff[N+1] = %i", fft_table_buff[0], fft_table_buff[N + 1]); + TEST_ASSERT_EQUAL( fft_table_buff[0], 1234); + TEST_ASSERT_EQUAL( fft_table_buff[N + 1], 5678); + free(fft_table_buff); + dsps_fft2r_deinit_sc16(); +} + +TEST_CASE("dsps_fft2r_sc16_ansi benchmark", "[dsps]") +{ + esp_err_t ret = dsps_fft2r_init_sc16(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + for (int i = 5 ; i < 10 ; i++) { + int N_check = 2 << i; + unsigned int start_b = xthal_get_ccount(); + dsps_fft2r_sc16_ansi(data, N_check); + + unsigned int end_b = xthal_get_ccount(); + float total_b = end_b - start_b; + float cycles = total_b; + ESP_LOGI(TAG, "Benchmark dsps_fft2r_sc16_ansi - %6i cycles for %6i points FFT.", (int)cycles, N_check); + float min_exec = 3; + float max_exec = 330000 * 3; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + } + dsps_fft2r_deinit_sc16(); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft4r_fc32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft4r_fc32_ae32.c new file mode 100644 index 0000000..479d715 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft4r_fc32_ae32.c @@ -0,0 +1,181 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_view.h" +#include "dsps_fft2r.h" +#include "dsps_fft4r.h" +#include "dsp_tests.h" + + +#define FFTR4_TEST_SIZE 1024 + +static const char *TAG = "dsps_fft4r_ae32"; + +TEST_CASE("dsps_fft4r_fc32_ae32 functionality", "[dsps]") +{ + float *data = (float *)memalign(16, sizeof(float) * FFTR4_TEST_SIZE * 2); + TEST_ASSERT_NOT_NULL(data); + + float *check_data_fft = (float *)memalign(16, sizeof(float) * FFTR4_TEST_SIZE * 2); + TEST_ASSERT_NOT_NULL(check_data_fft); + + esp_err_t ret = dsps_fft4r_init_fc32(NULL, FFTR4_TEST_SIZE); + TEST_ESP_OK(ret); + + int N_check = 256; + for (size_t pow = 2; pow < 7; pow++) { + N_check = 1 << (pow * 2); + if (N_check > FFTR4_TEST_SIZE) { + break; + } + for (size_t i = 0; i < N_check; i++) { + data[i * 2] = cosf(2 * M_PI * 4 / 256 * i); + data[i * 2 + 1] = sinf(2 * M_PI * 18 / 256 * i); + + check_data_fft[i * 2] = data[i * 2]; + check_data_fft[i * 2 + 1] = data[i * 2 + 1]; + } + + dsps_fft4r_fc32_ansi(data, N_check); + dsps_bit_rev4r_fc32(data, N_check); + + dsps_fft4r_fc32_ae32(check_data_fft, N_check); + dsps_bit_rev4r_fc32(check_data_fft, N_check); + float diff = 0; + for (size_t i = 0; i < N_check * 2; i++) { + diff += fabs(data[i] - check_data_fft[i]); + } + diff = diff / N_check; + if (diff > 0.00001) { + TEST_ASSERT_MESSAGE (false, "Result out of range!\n"); + } + ESP_LOGI(TAG, "diff[%i] = %f\n", N_check, diff); + } + if (N_check > FFTR4_TEST_SIZE) { + N_check = FFTR4_TEST_SIZE; + } + dsps_view(data, N_check * 2, 128, 16, -256, 256, '.'); + dsps_view(check_data_fft, N_check * 2, 128, 16, -256, 256, '.'); + + dsps_fft2r_deinit_fc32(); + dsps_fft4r_deinit_fc32(); + free(data); + free(check_data_fft); +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dsps_fft4r_fc32_ae32 benchmark", "[dsps]") +{ + float *check_data_fft = (float *)memalign(16, sizeof(float) * 4096 * 2); + TEST_ASSERT_NOT_NULL(check_data_fft); + + unsigned int start_b; + float cycles; + + esp_err_t ret = dsps_fft4r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + int N_check = 256; + for (size_t pow = 2; pow < 7; pow++) { + N_check = 1 << (pow * 2); + for (size_t i = 0; i < N_check; i++) { + check_data_fft[i * 2] = cosf(2 * M_PI * 4 / 256 * i); + check_data_fft[i * 2 + 1] = sinf(2 * M_PI * 18 / 256 * i); + } + + portENTER_CRITICAL(&testnlock); + start_b = xthal_get_ccount(); + dsps_fft4r_fc32_ae32(check_data_fft, N_check); + dsps_bit_rev4r_fc32(check_data_fft, N_check); + cycles = xthal_get_ccount() - start_b; + portEXIT_CRITICAL(&testnlock); + + ESP_LOGI(TAG, "Benchmark dsps_fft4r_fc32_ae32 - %6i cycles for %6i points FFT.", (int)cycles, N_check); + } + + dsps_fft4r_deinit_fc32(); + free(check_data_fft); +} + +TEST_CASE("dsps_cplx2real_fc32_ae32 benchmark", "[dsps]") +{ + float *check_data_fft = (float *)memalign(16, sizeof(float) * 4096 * 2); + TEST_ASSERT_NOT_NULL(check_data_fft); + + unsigned int start_b; + float cycles; + + esp_err_t ret = dsps_fft4r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + int N_check = 256; + for (size_t pow = 4; pow < 13; pow++) { + N_check = 1 << (pow); + for (size_t i = 0; i < N_check; i++) { + check_data_fft[i * 2] = cosf(2 * M_PI * 4 / 256 * i); + check_data_fft[i * 2 + 1] = sinf(2 * M_PI * 18 / 256 * i); + } + + portENTER_CRITICAL(&testnlock); + start_b = xthal_get_ccount(); + dsps_cplx2real_fc32_ae32(check_data_fft, N_check); + cycles = xthal_get_ccount() - start_b; + portEXIT_CRITICAL(&testnlock); + + ESP_LOGI(TAG, "Benchmark dsps_cplx2real_fc32_ae32 - %6i cycles for %6i points FFT.", (int)cycles, N_check); + } + + dsps_fft4r_deinit_fc32(); + free(check_data_fft); +} + +TEST_CASE("dsps_bit_rev4r_fc32_ansi benchmark", "[dsps]") +{ + float *check_data_fft = (float *)memalign(16, sizeof(float) * 4096 * 2); + TEST_ASSERT_NOT_NULL(check_data_fft); + + unsigned int start_b; + float cycles; + + esp_err_t ret = dsps_fft4r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + int N_check = 256; + for (size_t pow = 3; pow < 7; pow++) { + N_check = 1 << (2 * pow); + for (size_t i = 0; i < N_check; i++) { + check_data_fft[i * 2] = cosf(2 * M_PI * 4 / 256 * i); + check_data_fft[i * 2 + 1] = sinf(2 * M_PI * 18 / 256 * i); + } + + portENTER_CRITICAL(&testnlock); + start_b = xthal_get_ccount(); + dsps_bit_rev4r_fc32(check_data_fft, N_check); + cycles = xthal_get_ccount() - start_b; + portEXIT_CRITICAL(&testnlock); + + ESP_LOGI(TAG, "Benchmark dsps_bit_rev4r_fc32_ansi - %6i cycles for %6i points FFT.", (int)cycles, N_check); + } + + dsps_fft4r_deinit_fc32(); + free(check_data_fft); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft4r_fc32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft4r_fc32_ansi.c new file mode 100644 index 0000000..a361698 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test/test_dsps_fft4r_fc32_ansi.c @@ -0,0 +1,214 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_view.h" +#include "dsps_fft2r.h" +#include "dsps_fft4r.h" +#include "dsp_tests.h" + + +static const char *TAG = "dsps_fft4r_ansi"; + +TEST_CASE("dsps_fft4r_fc32_ansi functionality", "[dsps]") +{ + float *data = (float *)memalign(16, sizeof(float) * 1024 * 2); + TEST_ASSERT_NOT_NULL(data); + + float *check_data_fft = (float *)memalign(16, sizeof(float) * 1024 * 2); + TEST_ASSERT_NOT_NULL(check_data_fft); + + esp_err_t ret; + ret = dsps_fft2r_init_fc32(NULL, 1024); + TEST_ESP_OK(ret); + + ret = dsps_fft4r_init_fc32(NULL, 1024); + TEST_ESP_OK(ret); + + int N_check = 256; + for (size_t pow = 2; pow < 6; pow++) { + N_check = 1 << (pow * 2); + for (size_t i = 0; i < N_check; i++) { + data[i * 2] = cosf(2 * M_PI * 4 / 256 * i); + data[i * 2 + 1] = sinf(2 * M_PI * 18 / 256 * i); + + check_data_fft[i * 2] = data[i * 2]; + check_data_fft[i * 2 + 1] = data[i * 2 + 1]; + } + + dsps_fft2r_fc32_ansi(data, N_check); + dsps_bit_rev_fc32_ansi(data, N_check); + + dsps_fft4r_fc32_ansi(check_data_fft, N_check); + dsps_bit_rev4r_fc32(check_data_fft, N_check); + + float diff = 0; + for (size_t i = 0; i < N_check * 2; i++) { + diff += fabs(data[i] - check_data_fft[i]); + } + diff = diff / N_check; + ESP_LOGI(TAG, "diff[%i] = %f\n", N_check, diff); + if (diff > 0.00001) { + dsps_view(data, N_check * 2, 128, 16, -N_check, N_check, '.'); + dsps_view(check_data_fft, N_check * 2, 128, 16, -N_check, N_check, '.'); + TEST_ASSERT_MESSAGE (false, "Result out of range!\n"); + } + } + + dsps_view(data, N_check * 2, 128, 16, -N_check, N_check, '.'); + dsps_view(check_data_fft, N_check * 2, 128, 16, -N_check, N_check, '.'); + + dsps_fft2r_deinit_fc32(); + dsps_fft4r_deinit_fc32(); + free(data); + free(check_data_fft); +} + +TEST_CASE("dsps_fft4r_fc32_ansi benchmark", "[dsps]") +{ + float *check_data_fft = (float *)malloc(sizeof(float) * 4096 * 2); + TEST_ASSERT_NOT_NULL(check_data_fft); + + unsigned int start_b; + float cycles; + + esp_err_t ret = dsps_fft4r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + int N_check = 256; + for (size_t pow = 2; pow < 7; pow++) { + N_check = 1 << (pow * 2); + for (size_t i = 0; i < N_check; i++) { + check_data_fft[i * 2] = cosf(2 * M_PI * 4 / 256 * i); + check_data_fft[i * 2 + 1] = sinf(2 * M_PI * 18 / 256 * i); + } + + start_b = xthal_get_ccount(); + dsps_fft4r_fc32_ansi(check_data_fft, N_check); + dsps_bit_rev4r_fc32(check_data_fft, N_check); + cycles = xthal_get_ccount() - start_b; + + ESP_LOGI(TAG, "Benchmark dsps_fft4r_fc32_ansi - %6i cycles for %6i points FFT.", (int)cycles, N_check); + } + + dsps_fft4r_deinit_fc32(); + free(check_data_fft); +} + + +TEST_CASE("dsps_cplx2real_fc32 functionality", "[dsps]") +{ + float *data = (float *)malloc(sizeof(float) * 1024 * 2); + TEST_ASSERT_NOT_NULL(data); + + float *check_data_fft = (float *)malloc(sizeof(float) * 1024 * 2); + TEST_ASSERT_NOT_NULL(check_data_fft); + + esp_err_t ret = dsps_fft4r_init_fc32(NULL, 1024); + TEST_ESP_OK(ret); + + ret = dsps_fft2r_init_fc32(NULL, 1024); + TEST_ESP_OK(ret); + + int N_check = 256; + for (size_t pow = 4; pow < 11; pow++) { + N_check = 1 << (pow); + for (size_t i = 0; i < N_check * 2; i++) { + data[i] = 0; + check_data_fft[i] = data[i]; + } + data[1] = N_check; + check_data_fft[1] = data[1]; + + dsps_fft2r_fc32_ansi(data, N_check); + dsps_bit_rev_fc32_ansi(data, N_check); + dsps_cplx2real_fc32_ansi(data, N_check); + + dsps_fft2r_fc32_ansi(check_data_fft, N_check); + dsps_bit_rev_fc32_ansi(check_data_fft, N_check); + dsps_cplx2real_fc32_ae32(check_data_fft, N_check); + + float diff = 0; + for (size_t i = 0; i < N_check * 2; i++) { + diff += fabs(data[i] - check_data_fft[i]); + } + diff = diff / N_check; + if (diff > 0.00001) { + for (size_t i = 0; i < N_check * 2; i++) { + ESP_LOGD(TAG, "data[%i]= %f, %f = check_data_fft[%i], diff=%f\n", i, data[i], check_data_fft[i], i, data[i] - check_data_fft[i]); + } + + dsps_view(data, N_check * 2, 128, 16, -N_check, N_check, '.'); + dsps_view(check_data_fft, N_check * 2, 128, 16, -N_check, N_check, '.'); + ESP_LOGE(TAG, "Error diff[%i] = %f\n", N_check, diff); + TEST_ASSERT_MESSAGE (false, "Result out of range!\n"); + } + + ESP_LOGI(TAG, "diff[%i] = %f\n", N_check, diff); + } + + free(data); + free(check_data_fft); + + dsps_fft4r_deinit_fc32(); + dsps_fft2r_deinit_fc32(); +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dsps_cplx2real_fc32_ansi benchmark", "[dsps]") +{ + float *check_data_fft = (float *)malloc(sizeof(float) * 4096 * 2); + TEST_ASSERT_NOT_NULL(check_data_fft); + + unsigned int start_b; + float cycles; + + esp_err_t ret = dsps_fft4r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + TEST_ESP_OK(ret); + + int N_check = 256; + for (size_t pow = 4; pow < 13; pow++) { + N_check = 1 << (pow); + for (size_t i = 0; i < N_check; i++) { + check_data_fft[i * 2] = cosf(2 * M_PI * 4 / 256 * i); + check_data_fft[i * 2 + 1] = sinf(2 * M_PI * 18 / 256 * i); + } + + portENTER_CRITICAL(&testnlock); + start_b = xthal_get_ccount(); + dsps_cplx2real_fc32_ansi(check_data_fft, N_check); + cycles = xthal_get_ccount() - start_b; + portEXIT_CRITICAL(&testnlock); + + ESP_LOGI(TAG, "Benchmark dsps_cplx2real_fc32_ansi - %6i cycles for %6i points FFT.", (int)cycles, N_check); + } + + dsps_fft4r_deinit_fc32(); + free(check_data_fft); +} + +TEST_CASE("dsps_gen_bitrev4r_table bitrev table generation.", "[dsps]") +{ + for (int i = 2 ; i < 7 ; i++) { + int N_check = 1 << (i * 2); + dsps_gen_bitrev4r_table(N_check, 8, "fc32"); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test_sim/main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test_sim/main.c new file mode 100644 index 0000000..cfa10ce --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test_sim/main.c @@ -0,0 +1,14 @@ +#include +#include + +void test_fft2r(); + +int main(void) +{ + printf("main starts!\n"); +// xt_iss_profile_enable(); + test_fft2r(); +// xt_iss_profile_disable(); + + printf("Test done\n"); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test_sim/test_fft2r.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test_sim/test_fft2r.c new file mode 100644 index 0000000..431adbe --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fft/test_sim/test_fft2r.c @@ -0,0 +1,77 @@ +#include +#include +#include +#include + +#include "dsp_common.h" + +#include "dspm_mult.h" +#include "dsps_fft2r.h" + + + +extern void xt_iss_profile_disable(); +extern void xt_iss_profile_enable(); + +bool dsp_is_power_of_two(int x) +{ + return (x != 0) && ((x & (x - 1)) == 0); +} + +int dsp_power_of_two(int x) +{ + for (size_t i = 0; i < 16; i++) { + x = x >> 1; + if (0 == x) { + return i; + } + } + return 0; +} + +#define test_size 128 + +static float data[test_size * 2]; +static float check_data[test_size * 2]; +static float data_test[test_size * 2]; + +void test_fft2r() +{ + + int N = sizeof(data) / sizeof(float) / 2; + int check_bin = 32; + float check_ampl = 2000; + for (int i = 0 ; i < N ; i++) { + data[i * 2 + 0] = check_ampl * sinf(M_PI / N * check_bin * 2 * i) / (N / 2); + data[i * 2 + 1] = 2; + } + for (int i = 0 ; i < N * 2 ; i++) { + check_data[i] = data[i]; + data_test[i] = -1; + } + + // Init FFT tables + esp_err_t ret = dsps_fft2r_init_fc32(NULL, 4096); + TEST_ESP_OK(ret); + int N_check = N; + // table = (uint16_t *)dsps_fft2r_rev_tables_fc32[6]; + // table_size = dsps_fft2r_rev_tables_fc32_size[6]; + + xt_iss_profile_enable(); + dsps_fft2r_fc32_ae32(data, N_check); +// dsps_bit_rev_lookup_fc32_ae32(data, N_check, dsps_fft2r_rev_tables_fc32[6]); + dsps_fft2r_fc32_aes3_(check_data, N_check, dsps_fft_w_table_fc32); +// dsps_bit_rev_lookup_fc32_ae32(data, N_check, dsps_fft2r_rev_tables_fc32[6]); + xt_iss_profile_disable(); + + for (int i = 0 ; i < N_check ; i++) { + if (abs(check_data[i] - data[i]) == 0) { + printf("Data[%i] =%8.4f, %8.4f, %f \n", i, data[i], check_data[i], check_data[i] - data[i]); + } else { + printf("ERROR: Data[%i] =%f, %f, %f \n", i, data[i], check_data[i], check_data[i] - data[i]); + } + } + + + printf("Test Pass!\n"); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fir_s16_m_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fir_s16_m_ae32.S new file mode 100644 index 0000000..6222ee9 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fir_s16_m_ae32.S @@ -0,0 +1,94 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +.macro fir_s16_ae32_mul x1, x2, count, ID +// This macro calculates fixed point dot product for ((count + 1)*4) int16 samples +// x1 - input array1 register (samples) +// x2 - input array2 register (coefficients) the array is inverted and is being decremented +// count - counter register (for example a7) +// count - (samples_count / 4) - 1 +// acc += x1[i + 0]*x2[N - i - 1] + x1[i + 1]*x2[N - i - 2] + x1[i + 2]*x2[N - i - 3] + x1[i + 3]*x2[N - i - 4]; i: 0..count +// acchi, and acclo have to be initialized before +// Result - acchi || acclo +// Modifies: +// m0, m1, m2, m3 +// acchi || acclo - must be loaded before (for example 0x3fff to acclo). + + /* + * Data schedule. Each line represents instruction and columns represent + * register contents. Last column (MUL) shows the multiplication which + * takes place. Values loaded in the given cycle are shown in square brackets. + * + * m0 m1 m2 m3 MUL + * ----------------- pre-load -------------------------- + *[x0 x1] (no MULs in the first 3 instructions) + * x0 x1 [y(N-1) y(N-2)] + * x0 x1 [x2 x3] y(N-1) y(N-2) + * x0 x1 x2 x3 y(N-1) y(N-2) [y(N-3) y(N-4)] x0*y(N-1) + * -------------------- loop ------------------------ (the following 4 instructions are + *[x4 x5] x2 x3 y(N-1) y(N-2) y(N-3) y(N-4) x1*y(N-2) repeated as much as needed) + * x4 x5 x2 x3 [y(N-5) y(M-6)] y(N-3) y(N-4) x2*y(N-3) + * x4 x5 [x6 x7] y(N-5) y(M-6) y(N-3) y(N-4) x3*y(N-4) + * x4 x5 x6 x7 y(N-5) y(M-6) [y(N-7) y(M-8)] x4*y(N-5) + * ------------------- finalize ---------------------- + * x4 x5 x6 x7 y(N-5) y(M-6) y(N-7) y(M-8) x5*y(N-6) (nothing is load) + * x4 x5 x6 x7 y(N-5) y(M-6) y(N-7) y(M-8) x6*y(N-7) + * x4 x5 x6 x7 y(N-5) y(M-6) y(N-7) y(M-8) x7*y(N-8) + */ + + ldinc m0, \x1 + lddec m2, \x2 + ldinc m1, \x1 + + mula.dd.lh.lddec m3, \x2, m0, m2 + loopnez \count, .loop_end_\ID + .loop_\ID: + mula.dd.hl.ldinc m0, \x1, m0, m2 + mula.dd.lh.lddec m2, \x2, m1, m3 + mula.dd.hl.ldinc m1, \x1, m1, m3 + mula.dd.lh.lddec m3, \x2, m0, m2 + .loop_end_\ID: + + mula.dd.hl m0, m2 + mula.dd.lh m1, m3 + mula.dd.hl m1, m3 + +.endm // fir_s16_ae32_mul + +.macro fir_s16_ae32_full x1, x2, count, full_count, ID +// This macro calculates fixed point dot product for ((count + 1)*4) int16 samples +// x1 - input array1 register (for example a2) +// x2 - input array2 register (for example a3) +// count - counter register (for example a7) +// count - samples_count / 4 - 1 +// full_count - samples_count +// acc += x1[i + 0]*x2[N - i - 1] + x1[i + 1]*x2[N - i - 2] + x1[i + 2]*x2[N - i - 3] + x1[i + 3]*x2[N - i - 4]; i: 0..count +// acchi, and acclo have to be initialized before +// Result - acchi || acclo +// Modifies: +// m0, m1, m2, m3 +// acchi || acclo - must be loaded before (for example 0x3fff to acclo). + + // the main mac16 multiplication loop is skipped for cases with less than 4 samples + blti \full_count, 4, .less_than_4_operands_\ID + fir_s16_ae32_mul \x1, \x2, \count, \ID + + .less_than_4_operands_\ID: + + bbci \full_count, 1, .mod2chk_\ID + ldinc m0, \x1 + lddec m2, \x2 + mula.dd.hl m0, m2 + mula.dd.lh m0, m2 + .mod2chk_\ID: + + bbci \full_count, 0, .mod1chk_\ID + ldinc m0, \x1 + lddec m2, \x2 + mula.dd.lh m0, m2 + .mod1chk_\ID: + +.endm // fir_s16_ae32_full diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_init_s16.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_init_s16.c new file mode 100644 index 0000000..2a2f0f7 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_init_s16.c @@ -0,0 +1,146 @@ +/* + * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_fir.h" +#include "malloc.h" + +#define ROUNDING_VALUE 0x7fff + +esp_err_t dsps_fird_init_s16(fir_s16_t *fir, int16_t *coeffs, int16_t *delay, int16_t coeffs_len, int16_t decim, int16_t start_pos, int16_t shift) +{ + fir->coeffs = coeffs; + fir->delay = delay; + fir->coeffs_len = coeffs_len; + fir->pos = 0; + fir->decim = decim; + fir->d_pos = start_pos; + fir->shift = shift; + fir->rounding_val = (int16_t)(ROUNDING_VALUE); + fir->free_status = 0; + + if (fir->coeffs_len < 2) { // number of coeffcients must be higer than 1 + return ESP_ERR_DSP_INVALID_LENGTH; + } + + if ((fir->shift > 40) || (fir->shift < -40)) { // shift amount must be within a range from -40 to 40 + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (fir->d_pos >= fir->decim) { // start position must be lower than decimation + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + +#if CONFIG_DSP_OPTIMIZED + + // Rounding value buffer primary for a purpose of ee.ld.accx.ip, but used for both the esp32 and esp32s3 + // dsps_fird_s16_aexx_free() must be called to free the memory after the FIR function is finished +#if dsps_fird_s16_aes3_enabled // memalign as well as esp32s3 not suppored by lower versionos of IDF + int32_t *aexx_rounding_buff = (int32_t *)memalign(16, 2 * sizeof(int32_t)); +#else + int32_t *aexx_rounding_buff = (int32_t *)malloc(2 * sizeof(int32_t)); +#endif + + long long rounding = (long long)(fir->rounding_val); + + if (fir->shift >= 0) { + rounding = (rounding >> fir->shift); + } else { + rounding = (rounding << (-fir->shift)); + } + + aexx_rounding_buff[0] = (int32_t)(rounding); // 32 lower bits (acclo) type reassignment to 32-bit + aexx_rounding_buff[1] = (int32_t)((rounding >> 32) & 0xFF); // 8 higher bits (acchi) shift by 32 and apply the mask + fir->rounding_buff = aexx_rounding_buff; + fir->free_status |= 0x0004; + +#if dsps_fird_s16_aes3_enabled + + if (fir->delay == NULL) { // New delay buffer is allocated if the current delay line is NULL + int16_t *new_delay_buff = (int16_t *)memalign(16, coeffs_len * sizeof(int16_t)); + fir->delay = new_delay_buff; + fir->free_status |= 0x0001; + } else { + if ((int)fir->delay & 0xf) { // Delay line array must be aligned + return ESP_ERR_DSP_ARRAY_NOT_ALIGNED; + } + } + + if ((int)fir->coeffs & 0xf) { // Coefficients array must be aligned + return ESP_ERR_DSP_ARRAY_NOT_ALIGNED; + } + + // If the number of coefficients is not divisible by 8, a new delay line a new coefficients arrays are allocated + // the newly allocated arrays are divisible by 8. Coefficients are copied from the original fir structure to + // the new coeffs array and the remaining space is filled with zeroes + // dsps_fird_s16_free_coeffs_delay must be called to free the memory after the FIR function is finished + if (fir->coeffs_len % 8) { // Number of coefficients must be devisible by 8 + int16_t zero_coeffs = (8 - (fir->coeffs_len % 8)); + int16_t new_coeffs_len = fir->coeffs_len + zero_coeffs; + int16_t *aes3_delay_buff = (int16_t *)memalign(16, new_coeffs_len * sizeof(int16_t)); + int16_t *aes3_coeffs_buff = (int16_t *)memalign(16, new_coeffs_len * sizeof(int16_t)); + + for (int i = 0; i < fir->coeffs_len; i++) { // copy fir->coeffs to aes3_coeffs_buff + aes3_coeffs_buff[i] = fir->coeffs[i]; + } + + for (int i = fir->coeffs_len; i < new_coeffs_len; i++) { // add zeroes to the end + aes3_coeffs_buff[i] = 0; + } + + fir->delay = aes3_delay_buff; + fir->coeffs = aes3_coeffs_buff; + fir->coeffs_len = new_coeffs_len; + fir->free_status |= 0x0002; + } + +#endif // dsps_fird_s16_aes3_enabled +#endif // CONFIG_DSP_OPTIMIZED + + for (int i = 0; i < fir->coeffs_len; i++) { // Initialize the dealy line to zero + fir->delay[i] = 0; + } + + return ESP_OK; +} + +esp_err_t dsps_fird_s16_aexx_free(fir_s16_t *fir) +{ + + if (fir->free_status == 0) { + return ESP_OK; + } + + if (fir->free_status & 0x0003) { + + if (fir->free_status & 0x0002) { + free(fir->delay); + free(fir->coeffs); + } else { + free(fir->delay); + } + } + + if (fir->free_status & 0x0004) { + free(fir->rounding_buff); + } + fir->free_status = 0; + + return ESP_OK; +} + + +esp_err_t dsps_16_array_rev(int16_t *arr, int16_t len) +{ + + int16_t temp; + + for (int i = 0; i < (int)(len / 2); i++) { + temp = arr[i]; + arr[i] = arr[len - 1 - i]; + arr[len - 1 - i] = temp; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_ae32.S new file mode 100644 index 0000000..4b5b40c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_ae32.S @@ -0,0 +1,181 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_fir_platform.h" +#if (dsps_fird_s16_ae32_enabled == 1) + +#include "dsps_fir_s16_m_ae32.S" + +// This is FIR filter for ESP32 processor. + .text + .align 4 + .global dsps_fird_s16_ae32 + .type dsps_fird_s16_ae32,@function +// The function implements the following C code: +//int32_t dsps_fird_s16_ansi(fir_s16_t *fir, const int16_t *input, int16_t *output, int32_t len) + + +dsps_fird_s16_ae32: +// Input params Variables +// +// fir - a2 N - a6 +// input - a3 pos - a7 +// output - a4 rounding_lo - a8 +// len - a5 d_pos - a9 +// &coeffs[N] - a10 +// delay - a11 +// decim - a12 +// rounding_hi - a13 +// final_shift - a14 (shift) + + entry a1, 32 + + l16si a7, a2, 10 // a7 - pos + l16si a6, a2, 8 // a6 - N + l32i a10, a2, 0 // a10 - coeffs + addx2 a10, a6, a10 // a10 - coeffs[N+1] + addi a10, a10, -4 // a10 - coeffs[N] + s32i a10, a1, 0 // save pointer to a1 + l32i a11, a2, 4 // a11 - delay line + l16si a12, a2, 12 // a12 - decimation + l16si a9, a2, 14 // a9 - d_pos + l16si a14, a2, 16 // a14 - shift + + // prepare rounding value + l32i a15, a2, 20 // get address of rounding array to a15 + l32i a8, a15, 0 // a8 = lower 32 bits of the rounding value (acclo) + l32i a13, a15, 4 // a13 = higher 8 bits of the rounding value (acchi), offset 4 (32 bits) + + // prepare final_shift value + addi a14, a14, -15 // shift - 15 + abs a15, a14 + blti a15, 32, _shift_lower_than_32_init // check if lower than 32 + + // greater than 32 could only be negative shift ((-40 to +40) - 15) -> -55 to +25 + addi a14, a14, 32 // if greater than 32, add 32 (SRC is not defined for SAR greater than 32) + _shift_lower_than_32_init: + + bltz a14, _shift_negative_init // branch if lower than zero (not including zero) + beqz a14, _shift_negative_init // branch if equal to zero (add zero to the previous statement) + ssl a14 // if positive, set SAR register to left shift value (SAR = 32 - shift) + + j _end_of_shift_init + + _shift_negative_init: // negative shift + abs a14, a14 // absolute value + ssr a14 // SAR = -shift + // final_shift is saved to SAR register, SAR is not being changed during the execution + + _end_of_shift_init: + l16si a14, a2, 16 // a14 - load shift value + addi a14, a14, -15 // shift - 15 + + s32i a5, a1, 4 // save len to a1, used as the return value + + + // first delay line load (decim - d_pos) when d_pos is not 0 + beqz a9, _fird_loop_len + sub a15, a12, a9 // a15 = decim - d_pos + + loopnez a15, ._loop_d_pos + + blt a7, a6, reset_fir_pos_d_pos // branch if fir->pos >= fir->N + movi.n a7, 0 // fir->pos = 0 + l32i a11, a2, 4 // reset delay line to the beginning + reset_fir_pos_d_pos: + + l16si a15, a3, 0 // load 16 bits from input (a3) to a15 + addi a7, a7, 1 // fir->pos++ + s16i a15, a11, 0 // save 16 bits from a15 to delay line (a11) + addi a3, a3, 2 // increment input pointer + addi a11, a11, 2 // increment delay line pointer + ._loop_d_pos: + + j .fill_delay_line // skip the first iteration of the delay line filling routine + + // outer loop + _fird_loop_len: + + loopnez a12, .fill_delay_line + + blt a7, a6, reset_fir_pos // branch if fir->pos >= fir->N + movi.n a7, 0 // fir->pos = 0 + l32i a11, a2, 4 // reset delay line to the beginning + reset_fir_pos: + + l16si a15, a3, 0 // load 16 bits from input (a3) to a15 + addi a7, a7, 1 // fir->pos++ + s16i a15, a11, 0 // save 16 bits from a15 to delay line (a11) + addi a3, a3, 2 // increment input pointer + addi a11, a11, 2 // increment delay line pointer + .fill_delay_line: + + // prepare MAC unit + wsr a8, acclo // acclo = a8 + wsr a13, acchi // acchi = a13 + + addi a11, a11, -4 // preset delay line pointer, samples (array is being incremented) + sub a9, a6, a7 // a9 = full_count = fir->N - fir->pos + + // (Count / 4) - 1 + srli a15, a9, 2 // a15 = count = full_count /4 + addi a10, a10, 4 // preset coeffs pointer, samples (array is being decremented) + addi a15, a15, -1 // count - 1 + + // x1, x2, count, full_count, ID + fir_s16_ae32_full a11, a10, a15, a9, __LINE__ + + l32i a10, a2, 0 // load coeffs + l32i a11, a2, 4 // reset delay line to the beginning + addx2 a10, a7, a10 // move coeffs pointer to the end + + srli a15, a7, 2 // a15 = count = full_count (fir->pos) / 4 + addi a11, a11, -4 // preset delay line pointer, samples (array is being incremented) + addi a15, a15, -1 // count - 1 + + // x1, x2, count, full_count, ID + fir_s16_ae32_full a11, a10, a15, a7, __LINE__ + + // SAR already set from the beginning to final_shift value + abs a15, a14 // absolute value of shift + l32i a10, a1, 0 // reset coefficient pointer + blti a15, 32, _shift_lower_than_32 + rsr a9, acchi // get only higher 8 bits of the acc register + movi.n a15, 0xFF // higher 8 bits mask + and a9, a9, a15 // apply mask + srl a15, a9 + j _shift_set + + _shift_lower_than_32: + rsr a9, acchi // get higher 8 bits of the acc register + movi.n a11, 0xFF // higher 8 bits mask + rsr a15, acclo // get lower 32 bits of the acc register + and a9, a9, a11 // apply mask + + + bltz a14, _shift_negative // branch if lower than zero (if negative) + beqz a14, _shift_negative + src a15, a15, a9 // funnel shift left + j _shift_set + + _shift_negative: // negative shift + src a15, a9, a15 // funnel shift right + + _shift_set: + + l32i a11, a2, 4 // Load initial position of the delay line + s16i a15, a4, 0 // save the shifted value to the output array (a4) + addi a5, a5, -1 // len-- + addi a4, a4, 2 // increase pointer of the output array + addx2 a11, a7, a11 // p_delay[fir->pos] - (two times the fir->pos) + + // counter + bnez a5, _fird_loop_len // break if a5 == 0 + + l32i.n a2, a1, 4 // load return value to a2 + retw.n + +#endif // dsps_fird_s16_ae32_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_aes3.S new file mode 100644 index 0000000..44eab61 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_aes3.S @@ -0,0 +1,1027 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_fir_platform.h" + +// This is FIR filter for ESP32s3 processor. + .text + .align 4 + .global dsps_fird_s16_aes3 + .type dsps_fird_s16_aes3,@function +// The function implements the following C code: +// int32_t dsps_fird_s16_aes3(fir_s16_t *fir, const int16_t *input, int16_t *output, int32_t len) + +#if (dsps_fird_s16_aes3_enabled == 1) + +dsps_fird_s16_aes3: +// Input params Variables +// +// fir - a2 N - a7 +// input - a3 coeffs - a8 +// output - a4 delay - a9 +// len - a5 rounding - a10 +// final shift - a11 (div_24 constant) +// fir_pos - a12 +// decim - a13 + + // load inputs + entry a1, 64 + l16si a7, a2, 8 // a7 N + l16si a13, a2, 12 // a13 decim + l32i.n a8, a2, 0 // a8 coeffs + l32i.n a9, a2, 4 // a9 delay + l16si a12, a2, 10 // a12 fir_pos + l16si a6, a2, 14 // a6 d_pos + + // check decimation and delay line length + movi a15, 0xF // modulo 16 mask + bnone a13, a15, _length_16_check // jump if decim is divisible by 16 + srli a14, a15, 1 // modulo 8 mask + bnone a13, a14, _decim_8_dpos_check // jump to start_pos check if decim is divisible by 8 + srli a15, a14, 1 // modulo 4 mask + bnone a13, a15, _decim_4_dpos_check // jump to start_pos check if decim is divisible by 4 + srli a14, a15, 1 // modulo 2 mask + bnone a13, a14, _decim_2_dpos_check // jump to start_pos check if decim is divisible by 2 + j _other_decim // jump to other decimations + + // check start_pos and delay line length for the largest decim as decim_16 + _length_16_check: + l16si a11, a2, 16 // get shift value + addi a14, a11, -15 // apply 16-bit final shift + neg a11, a14 // negate final_shift + bltz a11, _decim_8_dpos_check // jump if the final shift is to right + bany a7, a15, _decim_8_dpos_check // jump if fir_len (N) is not divisible by 16, but divisible by 8 + beqz.n a6, _decim_16_len_16 // jump if start_pos is 0 + bnone a6, a15, _decim_16_len_16 // jump to _decim_16_len_16 if start_pos is divisible by 16 + j _decim_8_dpos_check + + // check start_pos for the largest decim as decim_8 + _decim_8_dpos_check: + movi a14, 0x7 // modulo 8 mask + beqz.n a6, _decim_8 // jump to decim_8 if start_pos is 0 + bnone a6, a14, _decim_8 // jump to decim_8 if start_pos is divisible by 8 + srli a15, a14, 1 // modulo 4 mask + bnone a6, a15, _decim_4 // jump to decim_4 if start_pos is divisible by 4 + srli a14, a15, 1 // modulo 2 mask + bnone a6, a14, _decim_2 // jump to decim_2 if start_pos is divisible by 2 + j _other_decim // jump to other decim, if start_pos is odd number + + // check start_pos for the largest decim as decim_4 + _decim_4_dpos_check: + beqz.n a6, _decim_4 // jump to decim_4 if start_pos is 0 + bnone a6, a15, _decim_4 // jump to decim_4 if start_pos is divisible by 4 + srli a14, a15, 1 // modulo 2 mask + bnone a6, a14, _decim_2 // jump to decim_2 if start_pos is divisible by 2 + j _other_decim // jump to other decim, if start_pos is odd number + + // check start_pos for the largest decim as decim_2 + _decim_2_dpos_check: + beqz.n a6, _decim_2 // jump to decim_2 if start_pos is 0 + bnone a6, a14, _decim_2 // jump to decim_2 if start_pos is divisible by 2 + j _other_decim // jump to other_decim if srart_pos is odd number + + + // decimation and fir length divisible by 16, only right final_shift + _decim_16_len_16: + + s32i.n a5, a1, 0 // save len/decim to a1, as return value + srli a13, a13, 4 // fir->decim /= 16 (set length of delay line filling loop) + + // Prepare final shift value + l32i.n a10, a2, 20 // get address of rounding array to a10 + l16si a15, a2, 16 // get shift value (array) + addi.n a11, a15, -15 // final_shift +15 + neg a11, a11 + + // first delay line load ((decim - d_pos) / 16 times) when d_pos is not 0 + beqz a6, main_loop_decim_16 + slli a14, a13, 4 // decim * 16 + sub a15, a14, a6 // a15 = decim - d_pos + srli a15, a15, 4 // a15 / 16 + + loopnez a15, ._loop_d_pos_decim_16 + + blt a12, a7, reset_fir_d_pos_decim_16 //if(fir->pos >= fir->N){ + movi.n a12, 0 // fir->pos = 0 + l32i.n a9, a2, 4 // reset delay line to the beginning + reset_fir_d_pos_decim_16: + + ee.vld.128.ip q7, a3, 16 // load from input (a3) to q7, increase a3 pointer + ee.vst.128.ip q7, a9, 16 // save to delay_line (a9) from q7, increase a9 pointer + addi.n a12, a12, 16 // fir->pos++ + + ee.vld.128.ip q7, a3, 16 // load from input (a3) to q7, increase a3 pointer + ee.vst.128.ip q7, a9, 16 // save to delay_line (a9) from q7, increase a9 pointer + ._loop_d_pos_decim_16: + + j ._loop_fill_delay_decim_16 // skip the first iteration of the delay line filling routine + + + main_loop_decim_16: + + // fill the delay line by the amount of fir->dec + loopnez a13, ._loop_fill_delay_decim_16 + + blt a12, a7, reset_fir_pos_decim_16 //if(fir->pos >= fir->N){ + movi.n a12, 0 // fir->pos = 0 + l32i.n a9, a2, 4 // reset delay line to the beginning + reset_fir_pos_decim_16: + + ee.vld.128.ip q7, a3, 16 // load from input (a3) to q7, increase a3 pointer + ee.vst.128.ip q7, a9, 16 // save to delay_line (a9) from q7, increase a9 pointer + addi.n a12, a12, 16 // fir->pos++ + + ee.vld.128.ip q7, a3, 16 // load from input (a3) to q7, increase a3 pointer + ee.vst.128.ip q7, a9, 16 // save to delay_line (a9) from q7, increase a9 pointer + ._loop_fill_delay_decim_16: + + + + ee.ld.accx.ip a10, 0 // load rounding value to accx + sub a15, a7, a12 // loop_len = fir->N - fir->pos + ee.vld.128.ip q0, a8, 16 // Preload + srli a15, a15, 4 // loop_len >> 4 (loop_len / 16) + ee.vld.128.ip q1, a9, 16 // Preload + + // Circular buffer loop + loopnez a15, ._loop_end_1st_circular_buff_decim_16 + ee.vld.128.ip q2, a8, 16 + ee.vmulas.s16.accx.ld.ip q3, a9, 16, q0, q1 + ee.vld.128.ip q0, a8, 16 + ee.vmulas.s16.accx.ld.ip q1, a9, 16, q2, q3 + ._loop_end_1st_circular_buff_decim_16: + + l32i.n a9, a2, 4 // reset delay to the beginning + srli a15, a12, 4 // loop_len >> 4 (fir->pos / 16) + ee.vld.128.ip q1, a9, 16 // Preload + + // Circular buffer loop + loopnez a15, ._loop_end_2nd_circular_buff_decim_16 + ee.vld.128.ip q2, a8, 16 + ee.vmulas.s16.accx.ld.ip q3, a9, 16, q0, q1 + ee.vld.128.ip q0, a8, 16 + ee.vmulas.s16.accx.ld.ip q1, a9, 16, q2, q3 + ._loop_end_2nd_circular_buff_decim_16: + + ee.srs.accx a15, a11, 0 // shift accx register by final_shift amount (a11), save the lower 32bits to a15 + l32i.n a8, a2, 0 // reset coeffs to the beginning + s16i a15, a4, 0 // save the final acc value to the output + + l32i.n a9, a2, 4 // reset delay to the beginning + addi.n a5, a5, -1 // decrement length + addi.n a4, a4, 2 // increase pointer p_output++ + addx2 a9, a12, a9 // p_delay[fir->pos] - (two times the fir->pos) + bnez.n a5, main_loop_decim_16 + + l32i.n a2, a1, 0 // load saved return value from a1 to a2 + retw.n + + // DECIMATION 2 + _decim_2: + + s32i.n a5, a1, 0 // save calculated return value to a1 + l32i.n a10, a2, 20 // get address of rounding array to a10 + + // Prepare final shift value + l16si a15, a2, 16 // get shift value + addi.n a15, a15, -15 // final_shift -15 + ssl a15 // set SAR register to left shift (even if not used) + neg a11, a15 + s32i a11, a1, 4 // save final_shift value to a1 + + // Set delay line fill loop count + srli a13, a13, 1 // decim = decim / 2 + + // divide by 24 constant + movi a11, 178956971 + + // first delay line load ((decim - d_pos) / 2 times) when d_pos is not 0 + beqz a6, main_loop_decim_2 // branch if d_pos = 0 + slli a14, a13, 1 // a14 = dec * 2 + sub a15, a14, a6 // a15 = decim - d_pos + srli a15, a15, 1 + + loopnez a15, ._loop_d_pos_decim_2 + + blt a12, a7, reset_fir_d_pos_decim_2 //if(fir->pos >= fir->N){ + movi.n a12, 0 // fir->pos = 0 + l32i.n a9, a2, 4 // reset delay line to the beginning + reset_fir_d_pos_decim_2: + + l32i.n a15, a3, 0 // load 32 bits from input a3 to a15 + addi.n a12, a12, 2 // fir->pos++ + s32i.n a15, a9, 0 // save 32 bits from a15 to delay line a9 + addi.n a3, a3, 4 // Increase pointer of the input array by 4 + addi.n a9, a9, 4 // Increase pointer of the delay line by 4 + ._loop_d_pos_decim_2: + + j ._loop_fill_delay_decim_2 // skip the first iteration of the delay line filling routine + + main_loop_decim_2: + + // Fill the delay line (only decim 2) + loopnez a13, ._loop_fill_delay_decim_2 + + blt a12, a7, reset_fir_pos_decim_2 //if(fir->pos >= fir->N){ + movi.n a12, 0 // fir->pos = 0 + l32i.n a9, a2, 4 // reset delay line to the beginning + reset_fir_pos_decim_2: + + l32i.n a15, a3, 0 // load 32 bits from input a3 to a15 + addi.n a12, a12, 2 // fir->pos++ + s32i.n a15, a9, 0 // save 32 bits from a15 to delay line a9 + addi.n a3, a3, 4 // Increase pointer of the input array by 4 + addi.n a9, a9, 4 // Increase pointer of the delay line by 4 + ._loop_fill_delay_decim_2: + + ee.ld.accx.ip a10, 0 // load rounding value to accx + + sub a15, a7, a12 // a15 = loop_len = fir->N - fir->pos + ee.ld.128.usar.ip q0, a9, 16 // Preload from delay + muluh a14, a15, a11 // a14 = loop1_len = loop_len / 24 + ee.ld.128.usar.ip q1, a9, 16 + + movi.n a6, 24 // Move 24 to a6 + ee.vld.128.ip q3, a8, 16 // preload from coeffs + mul16s a6, a6, a14 // loop1_len * 24 + ee.src.q.ld.ip q2, a9, 16, q0, q1 // preload and shift from delay + sub a6, a15, a6 // loop remiainder = a6 = loop_len - loop1_len *24 + + loopnez a14, ._loop_end_1st_circular_buff_decim_2 + ee.vld.128.ip q4, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 // Load from delay + ee.vld.128.ip q5, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q1, a9, 16, q1, q4, q2, q0 // Load from delay + ee.vld.128.ip q3, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q2, a9, 16, q2, q5, q0, q1 // Load from delay + ._loop_end_1st_circular_buff_decim_2: + + beqi a6, 16, _decim_2_1st_equal_to_16 // jump if the remainder is equal to 16 + bgei a6, 16, _decim_2_1st_more_equal_to_16 // jump if the remainder is greater or equal to 16 + beqi a6, 8, _decim_2_1st_equal_to_8 // jump if the remainder is equal to 8 + bgei a6, 8, _decim_2_1st_more_equal_to_8 // jump if the remainder is greater or equal to 8 + beqz a6, _decim_2_1st_equal_to_0 // jump if the remainder is equal to 0 + bgez a6, _decim_2_1st_more_equal_to_0 // jump if the remainder is greater or equal to 0 + + _decim_2_1st_equal_to_16: + l32i.n a9, a2, 4 // reset delay to the beginning + + ee.vld.128.ip q4 ,a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0 ,a9, 16, q0, q3, q1, q2 + ee.vmulas.s16.accx q1, q4 + j _1st_circular_buff_end_decim_2 + + _decim_2_1st_more_equal_to_16: + ee.vld.128.ip q4, a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 + + l32i.n a9, a2, 4 // reset delay to the beginning + ee.vld.128.ip q5, a8, 16 + + addx2 a6, a7, a9 // move delay pointer to the end, save the pointer to a6 + ee.vmulas.s16.accx q1, q4 // MAC + + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q2, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q0 ,a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q1, a9, 16, q2, q0 // shift by the amount of SAR_BYTE + ee.vmulas.s16.accx q2, q5 + blti a12, 8, _2nd_circular_buff_end_decim_2 // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_decim_2 + + _decim_2_1st_equal_to_8: + ee.vmulas.s16.accx q0, q3 + j _1st_circular_buff_end_decim_2 + + _decim_2_1st_more_equal_to_8: + + l32i.n a9, a2, 4 // reset delay to the beginning + ee.vld.128.ip q4 , a8, 16 + + addx2 a6, a7, a9 // move delay pointer to the end, save the pointer to a6 + ee.vmulas.s16.accx q0, q3 + + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q1, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q2, a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q0, a9, 16, q1, q2 // shift by the amount of SAR_BYTE + ee.vmulas.s16.accx q1, q4 + blti a12, 8, _2nd_circular_buff_end_decim_2 // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_decim_2 + + _decim_2_1st_more_equal_to_0: + l32i.n a9, a2, 4 // reset delay to the beginning + addx2 a6, a7, a9 // move delay pointer to the end, save the pointer to a6 + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q0, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q1, a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q2, a9, 16, q0, q1 // shift by amount of SAR_BYTE + ee.vmulas.s16.accx q0, q3 + blti a12, 8, _2nd_circular_buff_end_decim_2 // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_decim_2 + + _decim_2_1st_equal_to_0: + addi a8, a8, -16 // move coeffs pointer back by 16 + + _1st_circular_buff_end_decim_2: + + // SECOND PART OF CIRCULAR BUFFER + l32i.n a9, a2, 4 // reset delay to the beginning + muluh a14, a12, a11 // a14 = loop2_len = fir->pos / 24 + + movi.n a6, 24 // Move 24 to a6 + ee.vld.128.ip q0, a9, 16 // Preload + ee.vld.128.ip q1, a9, 16 + ee.src.q.ld.ip q2, a9, 16, q0, q1 + + mul16s a15, a6, a14 // loop1_len * 24 + ee.vld.128.ip q3, a8, 16 // Preload + sub a6, a12, a15 // loop remiainder = a6 = fir->pos - loop1_len *24 + + loopnez a14, ._loop_end_2nd_circular_buff_decim_2 + ee.vld.128.ip q4, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 // Load from delay + ee.vld.128.ip q5, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q1, a9, 16, q1, q4, q2, q0 // Load from delay + ee.vld.128.ip q3, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q2, a9, 16, q2, q5, q0, q1 // Load from delay + ._loop_end_2nd_circular_buff_decim_2: + + bgei a6, 16, _decim_2_2nd_more_equal_to_16 // jump if the remainder is greater or equal to 16 + bgei a6, 8, _decim_2_2nd_more_equal_to_8 // jump if the remainder is greater or equal to 8 + bgez a6, _2nd_circular_buff_end_decim_2 // jump if the remainder is greater or equal to 0 + + _decim_2_2nd_more_equal_to_16: + ee.vld.128.ip q4, a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 + ee.vmulas.s16.accx q1, q4 + j _2nd_circular_buff_end_decim_2 + + _decim_2_2nd_more_equal_to_8: + ee.vmulas.s16.accx q0, q3 + + _2nd_circular_buff_end_decim_2: + + l32i.n a6, a1, 4 // load final shift value to a6 + l32i.n a8, a2, 0 // reset coeffs to the beginning + + bgez a6, _shift_right_decim_2 + rur.accx_0 a9 // acc low + rur.accx_1 a14 // acc high + addi.n a5, a5, -1 // decrease counter + src a15, a9, a14 // funnel shift left, save 32bits to a15 + j _shift_left_decim_2 + + _shift_right_decim_2: + ee.srs.accx a15, a6, 0 // shift accx register by final_shift amount (a6), save the lower 32bits to a15 + addi.n a5, a5, -1 // decrease counter + + _shift_left_decim_2: + s16i a15, a4, 0 // save the final acc value to the output + l32i.n a9, a2, 4 // reset delay to the beginning + addi.n a4, a4, 2 // increase pointer p_output++ + addx2 a9, a12, a9 // p_delay[fir->pos] - (two times the fir->pos) + bnez.n a5, main_loop_decim_2 + + l32i.n a2, a1, 0 // load saved return value from a1 to a2 + retw.n + + + // DECIMATION 4 + _decim_4: + + s32i.n a5, a1, 0 // save calculated return value to a1 + l32i.n a10, a2, 20 // get address of rounding array to a10 + + // Prepare final shift value + l16si a15, a2, 16 // get shift value + addi.n a15, a15, -15 // final_shift -15 + ssl a15 // set SAR register to left shift (even if not used) + neg a11, a15 + s32i a11, a1, 4 // save final_shift value to a1 + + // Set delay line fill loop count + srli a13, a13, 2 // decim = decim / 4 + + // divide by 24 constant + movi a11, 178956971 + + // first delay line load ((decim - d_pos) / 4 times) when d_pos is not 0 + beqz a6, main_loop_decim_4 + slli a14, a13, 2 // decim * 4 + sub a15, a14, a6 // a15 = decim - d_pos + srli a15, a15, 2 + + loopnez a15, ._loop_d_pos_decim_4 + + blt a12, a7, reset_fir_d_pos_decim_4 //if(fir->pos >= fir->N){ + movi.n a12, 0 // fir->pos = 0 + l32i.n a9, a2, 4 // reset delay line to the beginning + reset_fir_d_pos_decim_4: + + ee.vld.l.64.ip q0, a3, 8 // load 64bits from input (a3) to lower half of q0 + ee.vst.l.64.ip q0, a9, 8 // store 64bits from lower half of q0 to delay line a9 + addi.n a12, a12, 4 // fir->pos++ + ._loop_d_pos_decim_4: + + j ._loop_fill_delay_decim_4 // skip the first iteration of the delay line filling routine + + main_loop_decim_4: + + // Fill the delay line (only decim 4) + loopnez a13, ._loop_fill_delay_decim_4 + + blt a12, a7, reset_fir_pos_decim_4 //if(fir->pos >= fir->N){ + movi.n a12, 0 // fir->pos = 0 + l32i.n a9, a2, 4 // reset delay line to the beginning + reset_fir_pos_decim_4: + + ee.vld.l.64.ip q0, a3, 8 // load 64bits from input (a3) to lower half of q0 + ee.vst.l.64.ip q0, a9, 8 // store 64bits from lower half of q0 to delay line a9 + addi.n a12, a12, 4 // fir->pos++ + ._loop_fill_delay_decim_4: + + ee.ld.accx.ip a10, 0 // load rounding value to accx + + sub a15, a7, a12 // a15 = loop_len = fir->N - fir->pos + ee.ld.128.usar.ip q0, a9, 16 // Preload from delay + muluh a14, a15, a11 // a14 = loop1_len = loop_len / 24 + ee.ld.128.usar.ip q1, a9, 16 + + movi.n a6, 24 // Move 24 to a6 + ee.vld.128.ip q3, a8, 16 // preload from coeffs + mul16s a6, a6, a14 // loop1_len * 24 + ee.src.q.ld.ip q2, a9, 16, q0, q1 // preload and shift from delay + sub a6, a15, a6 // loop remiainder = a6 = loop_len - loop1_len *24 + + loopnez a14, ._loop_end_1st_circular_buff_decim_4 + ee.vld.128.ip q4, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 // Load from delay + ee.vld.128.ip q5, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q1, a9, 16, q1, q4, q2, q0 // Load from delay + ee.vld.128.ip q3, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q2, a9, 16, q2, q5, q0, q1 // Load from delay + ._loop_end_1st_circular_buff_decim_4: + + beqi a6, 16, _decim_4_1st_equal_to_16 // jump if the remainder is equal to 16 + bgei a6, 16, _decim_4_1st_more_equal_to_16 // jump if the remainder is greater or equal to 16 + beqi a6, 8, _decim_4_1st_equal_to_8 // jump if the remainder is equal to 8 + bgei a6, 8, _decim_4_1st_more_equal_to_8 // jump if the remainder is greater or equal to 8 + beqz a6, _decim_4_1st_equal_to_0 // jump if the remainder is equal to 0 + bgez a6, _decim_4_1st_more_equal_to_0 // jump if the remainder is greater or equal to 0 + + _decim_4_1st_equal_to_16: + l32i.n a9, a2, 4 // reset delay to the beginning + + ee.vld.128.ip q4 ,a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0 ,a9, 16, q0, q3, q1, q2 + ee.vmulas.s16.accx q1, q4 + j _1st_circular_buff_end_decim_4 + + _decim_4_1st_more_equal_to_16: + ee.vld.128.ip q4, a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 + + l32i.n a9, a2, 4 // reset delay to the beginning + ee.vld.128.ip q5, a8, 16 + + addx2 a6, a7, a9 // move delay pointer to the end, save the pointer to a6 + ee.vmulas.s16.accx q1, q4 // MAC + + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q2, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q0 ,a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q1, a9, 16, q2, q0 // shift by the amount of SAR_BYTE + ee.vmulas.s16.accx q2, q5 + blti a12, 8, _2nd_circular_buff_end_decim_4 // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_decim_4 + + _decim_4_1st_equal_to_8: + ee.vmulas.s16.accx q0, q3 + j _1st_circular_buff_end_decim_4 + + _decim_4_1st_more_equal_to_8: + + l32i.n a9, a2, 4 // reset delay to the beginning + ee.vld.128.ip q4 , a8, 16 + + addx2 a6, a7, a9 // move delay pointer to the end, save the pointer to a6 + ee.vmulas.s16.accx q0, q3 + + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q1, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q2, a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q0, a9, 16, q1, q2 // shift by the amount of SAR_BYTE + ee.vmulas.s16.accx q1, q4 + blti a12, 8, _2nd_circular_buff_end_decim_4 // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_decim_4 + + _decim_4_1st_more_equal_to_0: + l32i.n a9, a2, 4 // reset delay to the beginning + addx2 a6, a7, a9 // move delay pointer to the end, save pointer to a6 + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q0, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q1, a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q2, a9, 16, q0, q1 // shift by amount of SAR_BYTE + ee.vmulas.s16.accx q0, q3 + blti a12, 8, _2nd_circular_buff_end_decim_4 // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_decim_4 + + _decim_4_1st_equal_to_0: + addi a8, a8, -16 // move coeffs pointer back by 16 + + _1st_circular_buff_end_decim_4: + + // SECOND PART OF CIRCULAR BUFFER + l32i.n a9, a2, 4 // reset delay to the beginning + muluh a14, a12, a11 // a14 = loop2_len = fir->pos / 24 + + movi.n a6, 24 // Move 24 to a6 + ee.vld.128.ip q0, a9, 16 // Preload + ee.vld.128.ip q1, a9, 16 + ee.src.q.ld.ip q2, a9, 16, q0, q1 + + mul16s a15, a6, a14 // loop1_len * 24 + ee.vld.128.ip q3, a8, 16 // Preload + sub a6, a12, a15 // loop remiainder = a6 = fir->pos - loop1_len *24 + + loopnez a14, ._loop_end_2nd_circular_buff_decim_4 + ee.vld.128.ip q4, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 // Load from delay + ee.vld.128.ip q5, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q1, a9, 16, q1, q4, q2, q0 // Load from delay + ee.vld.128.ip q3, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q2, a9, 16, q2, q5, q0, q1 // Load from delay + ._loop_end_2nd_circular_buff_decim_4: + + bgei a6, 16, _decim_4_2nd_more_equal_to_16 // jump if the remainder is greater or equal to 16 + bgei a6, 8, _decim_4_2nd_more_equal_to_8 // jump if the remainder is greater or equal to 8 + bgez a6, _2nd_circular_buff_end_decim_4 // jump if the remainder is greater or equal to 0 + + _decim_4_2nd_more_equal_to_16: + ee.vld.128.ip q4, a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 + ee.vmulas.s16.accx q1, q4 + j _2nd_circular_buff_end_decim_4 + + _decim_4_2nd_more_equal_to_8: + ee.vmulas.s16.accx q0, q3 + + _2nd_circular_buff_end_decim_4: + + l32i.n a6, a1, 4 // load final shift value to a6 + l32i.n a8, a2, 0 // reset coeffs to the beginning + + bgez a6, _shift_right_decim_4 + rur.accx_0 a9 // acc low + rur.accx_1 a14 // acc high + addi.n a5, a5, -1 // decrease counter + src a15, a9, a14 // funnel shift left, save 32bits to a15 + j _shift_left_decim_4 + + _shift_right_decim_4: + ee.srs.accx a15, a6, 0 // shift accx register by final_shift amount (a6), save the lower 32bits to a15 + addi.n a5, a5, -1 // decrease counter + + _shift_left_decim_4: + s16i a15, a4, 0 // save the final acc value to the output + l32i.n a9, a2, 4 // reset delay to the beginning + addi.n a4, a4, 2 // increase pointer p_output++ + addx2 a9, a12, a9 // p_delay[fir->pos] - (two times the fir->pos) + bnez.n a5, main_loop_decim_4 + + l32i.n a2, a1, 0 // load saved return value from a1 to a2 + retw.n + + + // DECIMATION 8 + _decim_8: + + s32i.n a5, a1, 0 // save len/decim to a1, as return value + l32i.n a10, a2, 20 // get address of rounding array to a10 + + // Prepare final shift value + l16si a15, a2, 16 // get shift value + addi.n a15, a15, -15 // final_shift -15 + ssl a15 // set SAR register to left shift (even if not used) + neg a11, a15 + s32i a11, a1, 4 // save final_shift value to a1 + + // Set delay line fill loop count + srli a13, a13, 3 // decim = decim / 8 + + // divide by 24 constant + movi a11, 178956971 + + // first delay line load ((decim - d_pos) / 8 times) when d_pos is not 0 + beqz a6, main_loop_decim_8 + slli a14, a13, 3 // decim * 8 + sub a15, a14, a6 // a15 = decim - d_pos + srli a15, a15, 3 // a15 / 8 + + loopnez a15, ._loop_d_pos_decim_8 + + blt a12, a7, reset_fir_d_pos_decim_8 //if(fir->pos >= fir->N){ + movi.n a12, 0 // fir->pos = 0 + l32i.n a9, a2, 4 // reset delay line to the beginning + reset_fir_d_pos_decim_8: + + ee.vld.128.ip q0, a3, 16 // load 64bits from input (a3) to lower half of q0 + ee.vst.128.ip q0, a9, 16 // store 64bits from lower half of q0 to delay line a9 + addi.n a12, a12, 8 // fir->pos++ + ._loop_d_pos_decim_8: + + j ._loop_fill_delay_decim_8 // skip the first iteration of the delay line filling routine + + main_loop_decim_8: + + // Fill the delay line (only decim 8) + loopnez a13, ._loop_fill_delay_decim_8 + + blt a12, a7, reset_fir_pos_decim_8 //if(fir->pos >= fir->N){ + movi.n a12, 0 // fir->pos = 0 + l32i.n a9, a2, 4 // reset delay line to the beginning + reset_fir_pos_decim_8: + + ee.vld.128.ip q0, a3, 16 // load 64bits from input (a3) to lower half of q0 + ee.vst.128.ip q0, a9, 16 // store 64bits from lower half of q0 to delay line a9 + addi.n a12, a12, 8 // fir->pos++ + + ._loop_fill_delay_decim_8: + + ee.ld.accx.ip a10, 0 // load rounding value to accx + + sub a15, a7, a12 // a15 = loop_len = fir->N - fir->pos + ee.ld.128.usar.ip q0, a9, 16 // Preload from delay + muluh a14, a15, a11 // a14 = loop1_len = loop_len / 24 + ee.ld.128.usar.ip q1, a9, 16 + + movi.n a6, 24 // Move 24 to a6 + ee.vld.128.ip q3, a8, 16 // preload from coeffs + mul16s a6, a6, a14 // loop1_len * 24 + ee.src.q.ld.ip q2, a9, 16, q0, q1 // preload and shift from delay + sub a6, a15, a6 // loop remiainder = a6 = loop_len - loop1_len *24 + + loopnez a14, ._loop_end_1st_circular_buff_decim_8 + ee.vld.128.ip q4, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 // Load from delay + ee.vld.128.ip q5, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q1, a9, 16, q1, q4, q2, q0 // Load from delay + ee.vld.128.ip q3, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q2, a9, 16, q2, q5, q0, q1 // Load from delay + ._loop_end_1st_circular_buff_decim_8: + + beqi a6, 16, _decim_8_1st_equal_to_16 // jump if the remainder is equal to 16 + bgei a6, 16, _decim_8_1st_more_equal_to_16 // jump if the remainder is greater or equal to 16 + beqi a6, 8, _decim_8_1st_equal_to_8 // jump if the remainder is equal to 8 + bgei a6, 8, _decim_8_1st_more_equal_to_8 // jump if the remainder is greater or equal to 8 + beqz a6, _decim_8_1st_equal_to_0 // jump if the remainder is equal to 0 + bgez a6, _decim_8_1st_more_equal_to_0 // jump if the remainder is greater or equal to 0 + + _decim_8_1st_equal_to_16: + l32i.n a9, a2, 4 // reset delay to the beginning + + ee.vld.128.ip q4 ,a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0 ,a9, 16, q0, q3, q1, q2 + ee.vmulas.s16.accx q1, q4 + j _1st_circular_buff_end_decim_8 + + _decim_8_1st_more_equal_to_16: + ee.vld.128.ip q4, a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 + + l32i.n a9, a2, 4 // reset delay to the beginning + ee.vld.128.ip q5, a8, 16 + + addx2 a6, a7, a9 // move delay pointer to the end, save the pointer to a6 + ee.vmulas.s16.accx q1, q4 // MAC + + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q2, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q0 ,a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q1, a9, 16, q2, q0 // shift by the amount of SAR_BYTE + ee.vmulas.s16.accx q2, q5 + blti a12, 8, _2nd_circular_buff_end_decim_8 // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_decim_8 + + _decim_8_1st_equal_to_8: + ee.vmulas.s16.accx q0, q3 + j _1st_circular_buff_end_decim_8 + + _decim_8_1st_more_equal_to_8: + + l32i.n a9, a2, 4 // reset delay to the beginning + ee.vld.128.ip q4 , a8, 16 + + addx2 a6, a7, a9 // move delay pointer to the end, save the pointer to a6 + ee.vmulas.s16.accx q0, q3 + + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q1, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q2, a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q0, a9, 16, q1, q2 // shift by the amount of SAR_BYTE + ee.vmulas.s16.accx q1, q4 + blti a12, 8, _2nd_circular_buff_end_decim_8 // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_decim_8 + + _decim_8_1st_more_equal_to_0: + l32i.n a9, a2, 4 // reset delay to the beginning + addx2 a6, a7, a9 // move delay pointer to the end, save pointer to a6 + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q0, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q1, a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q2, a9, 16, q0, q1 // shift by amount of SAR_BYTE + ee.vmulas.s16.accx q0, q3 + blti a12, 8, _2nd_circular_buff_end_decim_8 // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_decim_8 + + _decim_8_1st_equal_to_0: + addi a8, a8, -16 // move coeffs pointer back by 16 + + _1st_circular_buff_end_decim_8: + + // SECOND PART OF CIRCULAR BUFFER + rur.accx_0 a15 + l32i.n a9, a2, 4 // reset delay to the beginning + muluh a14, a12, a11 // a14 = loop2_len = fir->pos / 24 + + movi.n a6, 24 // Move 24 to a6 + ee.vld.128.ip q0, a9, 16 // Preload + ee.vld.128.ip q1, a9, 16 + ee.src.q.ld.ip q2, a9, 16, q0, q1 + + mul16s a15, a6, a14 // loop1_len * 24 + ee.vld.128.ip q3, a8, 16 // Preload + sub a6, a12, a15 // loop remiainder = a6 = fir->pos - loop1_len *24 + + loopnez a14, ._loop_end_2nd_circular_buff_decim_8 + ee.vld.128.ip q4, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 // Load from delay + ee.vld.128.ip q5, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q1, a9, 16, q1, q4, q2, q0 // Load from delay + ee.vld.128.ip q3, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q2, a9, 16, q2, q5, q0, q1 // Load from delay + ._loop_end_2nd_circular_buff_decim_8: + + bgei a6, 16, _decim_8_2nd_more_equal_to_16 // jump if the remainder is greater or equal to 16 + bgei a6, 8, _decim_8_2nd_more_equal_to_8 // jump if the remainder is greater or equal to 8 + bgez a6, _2nd_circular_buff_end_decim_8 // jump if the remainder is greater or equal to 0 + + _decim_8_2nd_more_equal_to_16: + ee.vld.128.ip q4, a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 + ee.vmulas.s16.accx q1, q4 + j _2nd_circular_buff_end_decim_8 + + _decim_8_2nd_more_equal_to_8: + ee.vmulas.s16.accx q0, q3 + + _2nd_circular_buff_end_decim_8: + + l32i.n a6, a1, 4 // load final shift value to a6 + l32i.n a8, a2, 0 // reset coeffs to the beginning + + bgez a6, _shift_right_decim_8 + rur.accx_0 a9 // acc low + rur.accx_1 a14 // acc high + addi.n a5, a5, -1 // decrease counter + src a15, a9, a14 // funnel shift left, save 32bits to a15 + j _shift_left_decim_8 + + _shift_right_decim_8: + ee.srs.accx a15, a6, 0 // shift accx register by final_shift amount (a6), save the lower 32bits to a15 + addi.n a5, a5, -1 // decrease counter + + _shift_left_decim_8: + s16i a15, a4, 0 // save the final acc value to the output + l32i.n a9, a2, 4 // reset delay to the beginning + addi.n a4, a4, 2 // increase pointer p_output++ + addx2 a9, a12, a9 // p_delay[fir->pos] - (two times the fir->pos) + bnez.n a5, main_loop_decim_8 + + l32i.n a2, a1, 0 // load saved return value from a1 to a2 + retw.n + + + // OTHER DECIMATIONS + _other_decim: + + s32i.n a5, a1, 0 // save calculated return value to a1 + l32i.n a10, a2, 20 // get address of rounding array to a10 + + // Prepare final shift value + l16si a15, a2, 16 // get shift value + addi.n a15, a15, -15 // final_shift -15 + ssl a15 // set SAR register to left shift (even if not used) + neg a11, a15 + s32i a11, a1, 4 // save final_shift value to a1 + + // divide by 24 constant + movi a11, 178956971 + + // first delay line load (decim - d_pos times) when d_pos is not 0 + beqz a6, main_loop_other_decim + sub a15, a13, a6 // a15 = decim - d_pos + + loopnez a15, ._loop_d_pos_other_decim + + blt a12, a7, reset_fir_d_pos_other_decim //if(fir->pos >= fir->N){ + movi.n a12, 0 // fir->pos = 0 + l32i.n a9, a2, 4 // reset delay line to the beginning + reset_fir_d_pos_other_decim: + + l16si a15, a3, 0 // load 16 bits from input a3 to a15 + addi.n a12, a12, 1 // fir->pos++ + s16i a15, a9, 0 // save 16 bits from a15 to delay line a9 + addi.n a3, a3, 2 // Increase pointer of the input array by 2 + addi.n a9, a9, 2 // Increase pointer of the delay line by 2 + ._loop_d_pos_other_decim: + + j ._loop_fill_delay_other_decim // skip the first iteration of the delay line filling routine + + main_loop_other_decim: + + // Fill the delay line (other decims) + loopnez a13, ._loop_fill_delay_other_decim + + blt a12, a7, reset_fir_pos_other_decim //if(fir->pos >= fir->N){ + movi.n a12, 0 // fir->pos = 0 + l32i.n a9, a2, 4 // reset delay line to the beginning + reset_fir_pos_other_decim: + + l16si a15, a3, 0 // load 16 bits from input a3 to a15 + addi.n a12, a12, 1 // fir->pos++ + s16i a15, a9, 0 // save 16 bits from a15 to delay line a9 + addi.n a3, a3, 2 // Increase pointer of the input array by 2 + addi.n a9, a9, 2 // Increase pointer of the delay line by 2 + ._loop_fill_delay_other_decim: + + ee.ld.accx.ip a10, 0 // load rounding value to accx + + sub a15, a7, a12 // a15 = loop_len = fir->N - fir->pos + ee.ld.128.usar.ip q0, a9, 16 // Preload from delay + muluh a14, a15, a11 // a14 = loop1_len = loop_len / 24 + ee.ld.128.usar.ip q1, a9, 16 + + movi.n a6, 24 // Move 24 to a6 + ee.vld.128.ip q3, a8, 16 // preload from coeffs + mul16s a6, a6, a14 // loop1_len * 24 + ee.src.q.ld.ip q2, a9, 16, q0, q1 // preload and shift from delay + sub a6, a15, a6 // loop remiainder = a6 = loop_len - loop1_len *24 + + loopnez a14, ._loop_end_1st_circular_buff_other_decim + ee.vld.128.ip q4, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 // Load from delay + ee.vld.128.ip q5, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q1, a9, 16, q1, q4, q2, q0 // Load from delay + ee.vld.128.ip q3, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q2, a9, 16, q2, q5, q0, q1 // Load from delay + ._loop_end_1st_circular_buff_other_decim: + + beqi a6, 16, _other_decim_1st_equal_to_16 // jump if the remainder is equal to 16 + bgei a6, 16, _other_decim_1st_more_equal_to_16 // jump if the remainder is greater or equal to 16 + beqi a6, 8, _other_decim_1st_equal_to_8 // jump if the remainder is equal to 8 + bgei a6, 8, _other_decim_1st_more_equal_to_8 // jump if the remainder is greater or equal to 8 + beqz a6, _other_decim_1st_equal_to_0 // jump if the remainder is equal to 0 + bgez a6, _other_decim_1st_more_equal_to_0 // jump if the remainder is greater or equal to 0 + + _other_decim_1st_equal_to_16: + l32i.n a9, a2, 4 // reset delay to the beginning + + ee.vld.128.ip q4 ,a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0 ,a9, 16, q0, q3, q1, q2 + ee.vmulas.s16.accx q1, q4 + j _1st_circular_buff_end_other_decim + + _other_decim_1st_more_equal_to_16: + ee.vld.128.ip q4, a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 + + l32i.n a9, a2, 4 // reset delay to the beginning + ee.vld.128.ip q5, a8, 16 + + addx2 a6, a7, a9 // move delay pointer to the end, save the pointer to a6 + ee.vmulas.s16.accx q1, q4 // MAC + + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q2, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q0 ,a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q1, a9, 16, q2, q0 // shift by the amount of SAR_BYTE + ee.vmulas.s16.accx q2, q5 + blti a12, 8, _2nd_circular_buff_end_other_decim // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_other_decim + + _other_decim_1st_equal_to_8: + ee.vmulas.s16.accx q0, q3 + j _1st_circular_buff_end_other_decim + + _other_decim_1st_more_equal_to_8: + + l32i.n a9, a2, 4 // reset delay to the beginning + ee.vld.128.ip q4 , a8, 16 + + addx2 a6, a7, a9 // move delay pointer to the end, save the pointer to a6 + ee.vmulas.s16.accx q0, q3 + + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q1, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q2, a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q0, a9, 16, q1, q2 // shift by the amount of SAR_BYTE + ee.vmulas.s16.accx q1, q4 + blti a12, 8, _2nd_circular_buff_end_other_decim // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_other_decim + + _other_decim_1st_more_equal_to_0: + l32i.n a9, a2, 4 // reset delay to the beginning + addx2 a6, a7, a9 // move delay pointer to the end, save pointer to a6 + addi a15, a6, -16 // move pointer back by 16, save the pointer to a15 + + ee.vld.128.ip q0, a15, 16 // load 8 words, not modifying the SAR_BYTE, load from a15 (end of the array) + ee.vld.128.ip q1, a9, 16 // load 8 words, not modifying the SAR_BYTE, load from a9 (beginning of the array) + ee.src.q.ld.ip q2, a9, 16, q0, q1 // shift by amount of SAR_BYTE + ee.vmulas.s16.accx q0, q3 + blti a12, 8, _2nd_circular_buff_end_other_decim // skip the second circular buffer if fir->pos is lower than 8 + j _1st_circular_buff_end_other_decim + + _other_decim_1st_equal_to_0: + addi a8, a8, -16 // move coeffs pointer back by 16 + + _1st_circular_buff_end_other_decim: + + // SECOND PART OF CIRCULAR BUFFER + l32i.n a9, a2, 4 // reset delay to the beginning + muluh a14, a12, a11 // a14 = loop2_len = fir->pos / 24 + + movi.n a6, 24 // Move 24 to a6 + ee.vld.128.ip q0, a9, 16 // Preload + ee.vld.128.ip q1, a9, 16 + ee.src.q.ld.ip q2, a9, 16, q0, q1 + + mul16s a15, a6, a14 // loop1_len * 24 + ee.vld.128.ip q3, a8, 16 // Preload + sub a6, a12, a15 // loop remiainder = a6 = fir->pos - loop1_len *24 + + loopnez a14, ._loop_end_2nd_circular_buff_other_decim + ee.vld.128.ip q4, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 // Load from delay + ee.vld.128.ip q5, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q1, a9, 16, q1, q4, q2, q0 // Load from delay + ee.vld.128.ip q3, a8, 16 // Load from coeffs + ee.vmulas.s16.accx.ld.ip.qup q2, a9, 16, q2, q5, q0, q1 // Load from delay + ._loop_end_2nd_circular_buff_other_decim: + + bgei a6, 16, _other_decim_2nd_more_equal_to_16 // jump if the remainder is greater or equal to 16 + bgei a6, 8, _other_decim_2nd_more_equal_to_8 // jump if the remainder is greater or equal to 8 + bgez a6, _2nd_circular_buff_end_other_decim // jump if the remainder is greater or equal to 0 + + _other_decim_2nd_more_equal_to_16: + ee.vld.128.ip q4, a8, 16 + ee.vmulas.s16.accx.ld.ip.qup q0, a9, 16, q0, q3, q1, q2 + ee.vmulas.s16.accx q1, q4 + j _2nd_circular_buff_end_other_decim + + _other_decim_2nd_more_equal_to_8: + ee.vmulas.s16.accx q0, q3 + + _2nd_circular_buff_end_other_decim: + + l32i.n a6, a1, 4 // load final shift value to a6 + l32i.n a8, a2, 0 // reset coeffs to the beginning + + bgez a6, _shift_right_other_decim + rur.accx_0 a9 // acc low + rur.accx_1 a14 // acc high + addi.n a5, a5, -1 // decrease counter + src a15, a9, a14 // funnel shift left, save 32bits to a15 + j _shift_left_other_decim + + _shift_right_other_decim: + ee.srs.accx a15, a6, 0 // shift accx register by final_shift amount (a6), save the lower 32bits to a15 + addi.n a5, a5, -1 // decrease counter + + _shift_left_other_decim: + s16i a15, a4, 0 // save the final acc value to the output + l32i.n a9, a2, 4 // reset delay to the beginning + addi.n a4, a4, 2 // increase pointer p_output++ + addx2 a9, a12, a9 // p_delay[fir->pos] - (two times the fir->pos) + bnez.n a5, main_loop_other_decim + + l32i.n a2, a1, 0 // load saved return value from a1 to a2 + retw.n + + +#endif // dsps_fird_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_ansi.c new file mode 100644 index 0000000..d5e53ec --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/fixed/dsps_fird_s16_ansi.c @@ -0,0 +1,54 @@ +/* + * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_fir.h" + +int32_t dsps_fird_s16_ansi(fir_s16_t *fir, const int16_t *input, int16_t *output, int32_t len) +{ + int32_t result = 0; + int32_t input_pos = 0; + long long rounding = 0; + const int32_t final_shift = fir->shift - 15; + + rounding = (long long)(fir->rounding_val); + + if (fir->shift >= 0) { + rounding = (rounding >> fir->shift) & 0xFFFFFFFFFF; // 40-bit mask + } else { + rounding = (rounding << (-fir->shift)) & 0xFFFFFFFFFF; // 40-bit mask + } + + // len is already a length of the *output array, calculated as (length of the input array / decimation) + for (int i = 0; i < len; i++) { + + for (int j = 0; j < fir->decim - fir->d_pos; j++) { + + if (fir->pos >= fir->coeffs_len) { + fir->pos = 0; + } + fir->delay[fir->pos++] = input[input_pos++]; + } + fir->d_pos = 0; + + long long acc = rounding; + int16_t coeff_pos = fir->coeffs_len - 1; + + for (int n = fir->pos; n < fir->coeffs_len ; n++) { + acc += (int32_t)fir->coeffs[coeff_pos--] * (int32_t)fir->delay[n]; + } + for (int n = 0; n < fir->pos ; n++) { + acc += (int32_t)fir->coeffs[coeff_pos--] * (int32_t)fir->delay[n]; + } + + if (final_shift > 0) { + output[result++] = (int16_t)(acc << final_shift); + } else { + output[result++] = (int16_t)(acc >> (-final_shift)); + } + + } + return result; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_ae32.S new file mode 100644 index 0000000..83f304c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_ae32.S @@ -0,0 +1,95 @@ +// Copyright 2018-2023 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fir_platform.h" +#if (dsps_fir_f32_ae32_enabled == 1) + +#include "dsps_dotprod_f32_m_ae32.S" + +// This is FIR filter for ESP32 processor. + .text + .align 4 + .global dsps_fir_f32_ae32 + .type dsps_fir_f32_ae32,@function +// The function implements the following C code: +//esp_err_t dsps_fir_f32_ae32(fir_f32_t* fir, const float* input, float* output, int len); + +dsps_fir_f32_ae32: +// fir - a2 +// input - a3 +// output - a4 +// len - a5 + + entry a1, 16 + // Array increment for floating point data should be 4 + l32i a7, a2, 12 // a7 - pos + movi a10, 4 + mull a13, a7, a10// a13 - a7*4 + l32i a6, a2, 8 // a6 - N + mull a6, a6, a10// a6 = a6*4 + l32i a10, a2, 0 // a10 - coeffs + l32i a6, a2, 8 // a6 - N + + movi.n a9, 0 + movi.n a8, 4 + movi.n a12, 4 + +// a13 - delay index +fir_loop_len: + // Store to delay line + l32i a11, a2, 4 // a11 - delay line + lsi f0, a3, 0 // f0 = x[i] + addi a3, a3, 4 // x++ + ssx f0, a11, a13 // delay[a13] = f0; + addi a13, a13, 4 // a13++ + addi a7, a7, 1 // a7++ + // verify deley line + blt a7, a6, do_not_reset_a13 + movi a13, 0 + movi a7, 0 + do_not_reset_a13: + // Calc amount for delay line before end + mov a15, a10 // a15 - coeffs + wfr f2, a9 // f2 = 0; + sub a14, a6, a7 // a14 = N-pos + + // a11 = &delay[pos] + add a11, a11, a13 + + loopnez a14, first_fir_loop // pos...N-1 + lsxp f1, a15, a8 // f1 = *(coeffs--) + lsxp f0, a11, a12 // load delay f0 = *(delay++) + madd.s f2, f0, f1 // f2 += f0*f1 +first_fir_loop: + l32i a11, a2, 4 // a11 - delay line + loopnez a7, second_fir_loop // 0..pos + lsxp f1, a15, a8 // f1 = *(coeffs--) + lsxp f0, a11, a12 // load delay f0 = *(delay++) + madd.s f2, f0, f1 // f2 += f0*f1 +second_fir_loop: + + // and after end + // Store result + ssi f2, a4, 0 + addi a4, a4, 4 // y++ - increment output pointer + // Check loop + addi a5, a5, -1 + bnez a5, fir_loop_len + // store state + + s32i a7, a2, 12 // pos = a7 + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_fir_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_aes3.S new file mode 100644 index 0000000..b554bb0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_aes3.S @@ -0,0 +1,233 @@ +// Copyright 2018-2023 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fir_platform.h" +#if (dsps_fir_f32_aes3_enabled == 1) + +// This is FIR filter for Esp32s3 processor. + .text + .align 4 + .global dsps_fir_f32_aes3 + .type dsps_fir_f32_aes3,@function +// The function implements the following C code: +//esp_err_t dsps_fir_f32_aes3(fir_f32_t* fir, const float* input, float* output, int len); + +dsps_fir_f32_aes3: +// fir - a2 +// input - a3 +// output - a4 +// len - a5 + +// a2 - fir structure +// a3 - input +// a4 - output +// a5 - length + +// a6 - fir length +// a7 - position in delay line +// a8 - temp +// a9 - const 0 +// a10 - coeffs ptr +// a11 - delay line ptr +// a12 - const +// a13 - +// a14 - temp for loops +// a15 - delay line rounded to 16 + + entry a1, 16 + // Array increment for floating point data should be 4 + l32i a7, a2, 12 // a7 - pos + + l32i a6, a2, 8 // a6 - N - amount of coefficients + l32i a10, a2, 0 // a10 - coeffs + l32i a11, a2, 4 // a11 - delay line + addx4 a11, a7, a11 // a11 = a11 + a7*4 + l32i a6, a2, 8 // a6 - N + + movi.n a9, 0 + movi.n a12, 3 + + movi.n a12, -16 + movi.n a13, 15 +// Main loop for input samples +.fir_loop_len: + // Store to delay line + lsip f15, a3, 4 // a3 += 4, f15 = input[n] + ssip f15, a11, 4 // a11 += 4, *a11 = f15 + addi a7, a7, 1 // a7++ - position in delay line + + // + blt a7, a6, .do_not_reset_a11 + l32i a11, a2, 4 // Load delay line + movi a7, 0 + .do_not_reset_a11: + // Load rounded delay line address + and a15, a11, a12 + + l32i a10, a2, 0 // a10 - coeffs + + // Clear f4, f5 for multiplications + const.s f4, 0 + const.s f5, 0 + const.s f6, 0 + const.s f7, 0 + + and a8, a11, a13 // a8 = a11 & 15 + beqz a8, .offset_0 + addi a8, a8, -4 + beqz a8, .offset_1 + addi a8, a8, -4 + beqz a8, .offset_2 + addi a8, a8, -4 + beqz a8, .offset_3 + +// a10 - coeffs +// a11 - delay line +.offset_0: + sub a14, a6, a7 // a14 = N-pos + srli a14, a14, 2 + loopnez a14, .first_fir_loop_0 // pos...N-1 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + madd.s f4, f0, f8 + madd.s f5, f1, f9 + madd.s f6, f2, f10 + madd.s f7, f3, f11 + .first_fir_loop_0: + + l32i a15, a2, 4 // a11 - delay line [0] + srli a14, a7, 2 + loopnez a14, .second_fir_loop_0 // 0..pos + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + madd.s f4, f0, f8 + madd.s f5, f1, f9 + madd.s f6, f2, f10 + madd.s f7, f3, f11 + .second_fir_loop_0: + j .store_fir_result; + +.offset_1: + sub a14, a6, a7 // a14 = N-pos + addi a14, a14, 3 + srli a14, a14, 2 + EE.LDF.128.IP f11, f10, f9, f12, a15, 16 // Load data from delay line + // f12 - delay[N-1], store for the last operation + // f9..f11 - delay[0..2] + loopnez a14, .first_fir_loop_1 // pos...N-1 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f4, f0, f9 + madd.s f5, f1, f10 + madd.s f6, f2, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + madd.s f7, f3, f8 + .first_fir_loop_1: + + l32i a15, a2, 4 // a11 - delay line [0] + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + srli a14, a7, 2 + loopnez a14, .second_fir_loop_1 // 0..pos + madd.s f4, f3, f8 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f5, f0, f9 + madd.s f6, f1, f10 + madd.s f7, f2, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + .second_fir_loop_1: + + madd.s f4, f3, f12 + j .store_fir_result; + +.offset_2: + sub a14, a6, a7 // a14 = N-pos + addi a14, a14, 3 + srli a14, a14, 2 + EE.LDF.128.IP f11, f10, f13, f12, a15, 16 // Load data from delay line + // f12, f13 - delay[N-1], delay[N-2], store for the last operation + // f10..f11 - delay[0..1] + loopnez a14, .first_fir_loop_2 // pos...N-1 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f4, f0, f10 + madd.s f5, f1, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + madd.s f6, f2, f8 + madd.s f7, f3, f9 + .first_fir_loop_2: + + l32i a15, a2, 4 // a11 - delay line [0] + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + srli a14, a7, 2 + loopnez a14, .second_fir_loop_2 // 0..pos + madd.s f4, f2, f8 + madd.s f5, f3, f9 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f6, f0, f10 + madd.s f7, f1, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + .second_fir_loop_2: + + madd.s f4, f2, f12 + madd.s f5, f3, f13 + j .store_fir_result; + +.offset_3: + sub a14, a6, a7 // a14 = N-pos + addi a14, a14, 3 + srli a14, a14, 2 + EE.LDF.128.IP f11, f14, f13, f12, a15, 16 // Load data from delay line + // f12, f13, f14 - delay[N-1], delay[N-2], delay[N-3], store for the last operation + // f11 - delay[0] + loopnez a14, .first_fir_loop_3 // pos...N-1 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f4, f0, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + madd.s f5, f1, f8 + madd.s f6, f2, f9 + madd.s f7, f3, f10 + .first_fir_loop_3: + + l32i a15, a2, 4 // a11 - delay line [0] + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + srli a14, a7, 2 + loopnez a14, .second_fir_loop_3 // 0..pos + madd.s f4, f1, f8 + madd.s f5, f2, f9 + madd.s f6, f3, f10 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f7, f0, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + .second_fir_loop_3: + + madd.s f4, f1, f12 + madd.s f5, f2, f13 + madd.s f4, f3, f14 + +.store_fir_result: + + add.s f4, f4, f5 + add.s f6, f6, f7 + add.s f4, f4, f6 + + // Store result + ssip f4, a4, 4 // y++ - save result and increment output pointer + // Check loop length + addi a5, a5, -1 + bnez a5, .fir_loop_len + // store state + + s32i a7, a2, 12 // pos = a7 + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_fir_f32_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_ansi.c new file mode 100644 index 0000000..c5eabbb --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_f32_ansi.c @@ -0,0 +1,36 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fir.h" + +esp_err_t dsps_fir_f32_ansi(fir_f32_t *fir, const float *input, float *output, int len) +{ + for (int i = 0 ; i < len ; i++) { + float acc = 0; + int coeff_pos = 0; + fir->delay[fir->pos] = input[i]; + fir->pos++; + if (fir->pos >= fir->N) { + fir->pos = 0; + } + for (int n = fir->pos; n < fir->N ; n++) { + acc += fir->coeffs[coeff_pos++] * fir->delay[n]; + } + for (int n = 0; n < fir->pos ; n++) { + acc += fir->coeffs[coeff_pos++] * fir->delay[n]; + } + output[i] = acc; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_init_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_init_f32.c new file mode 100644 index 0000000..1e5d605 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fir_init_f32.c @@ -0,0 +1,67 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fir.h" +#include "malloc.h" + + +esp_err_t dsps_fir_init_f32(fir_f32_t *fir, float *coeffs, float *delay, int coeffs_len) +{ + // Allocate delay line in case if it's NULL + if (delay == NULL) { +#ifdef CONFIG_IDF_TARGET_ESP32S3 + delay = (float *)memalign(16, (coeffs_len + 4) * sizeof(float)); +#else + delay = (float *)malloc((coeffs_len + 4) * sizeof(float)); +#endif // CONFIG_IDF_TARGET_ESP32S3 + fir->use_delay = 1; + } else { + fir->use_delay = 0; + } + for (int i = 0; i < (coeffs_len + 4); i++) { + delay[i] = 0; + } + fir->coeffs = coeffs; + fir->delay = delay; + fir->N = coeffs_len; + fir->pos = 0; + +#ifdef CONFIG_IDF_TARGET_ESP32S3 + if (fir->N % 4 != 0) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + // The coeffs array should be aligned to 16 + if (((uint32_t)coeffs) & 0x0f) { + return ESP_ERR_DSP_ARRAY_NOT_ALIGNED; + } + // The delay array should be aligned to 16 + if (((uint32_t)delay) & 0x0f) { + return ESP_ERR_DSP_ARRAY_NOT_ALIGNED; + } +#endif // CONFIG_IDF_TARGET_ESP32S3 + + for (int i = 0 ; i < coeffs_len; i++) { + fir->delay[i] = 0; + } + return ESP_OK; +} + +esp_err_t dsps_fir_f32_free(fir_f32_t *fir) +{ + if (fir->use_delay != 0) { + fir->use_delay = 0; + free(fir->delay); + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_ae32.S new file mode 100644 index 0000000..7819c78 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_ae32.S @@ -0,0 +1,98 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fir_platform.h" +#if (dsps_fird_f32_ae32_enabled == 1) + +#include "dsps_dotprod_f32_m_ae32.S" + +// This is FIR filter for ESP32 processor. + .text + .align 4 + .global dsps_fird_f32_ae32 + .type dsps_fird_f32_ae32,@function +// The function implements the following C code: +//esp_err_t dsps_fird_f32_ae32(fir_f32_t* fir, const float* input, float* output, int len); + +dsps_fird_f32_ae32: +// fir - a2 +// input - a3 +// output - a4 +// len - a5 + + entry a1, 16 + // Array increment for floating point data should be 4 + l32i a7, a2, 12 // a7 - pos + movi a10, 4 + mull a13, a7, a10// a13 - a7*4 + l32i a6, a2, 8 // a6 - N + mull a6, a6, a10// a6 = a6*4 + l32i a10, a2, 0 // a10 - coeffs + l32i a11, a2, 4 // a11 - delay line + l32i a6, a2, 8 // a6 - N + l32i a12, a2, 16 // a12 - decimation + movi a8, 0 // result = 0; + +// a13 - delay index +fird_loop_len: + // Store to delay line + + loopnez a12, .fird_load_data // K loops + lsip f0, a3, 4 // f0 = x[i++] + ssx f0, a11, a13 // delay[a13] = f0; + addi a13, a13, 4 // a13++ + addi a7, a7, 1 // a7++ + // verify deley line + blt a7, a6, do_not_reset_a13 + movi a13, 0 + movi a7, 0 + do_not_reset_a13: + const.s f2, 0 + .fird_load_data: + + addi a8, a8, 1 + + // Calc amount for delay line before end + mov a15, a10 // a15 - coeffs + sub a14, a6, a7 // a14 = N-pos + loopnez a14, first_fird_loop // pos...N-1 + lsip f1, a15, 4 // a15++ + lsx f0, a11, a13 // load delay f0 = delay[pos] + addi a13, a13, 4 // a13++, pos++ + madd.s f2, f0, f1 // f2 += f0*f1 +first_fird_loop: + movi a13, 0 // load delay line counter to 0 + loopnez a7, second_fird_loop // 0..pos + lsip f1, a15, 4 // a15++ + lsx f0, a11, a13 // load delay f0 = delay[pos] + addi a13, a13, 4 // a13++, pos++ + madd.s f2, f0, f1 // f2 += f0*f1 +second_fird_loop: + + // and after end + // Store result + ssi f2, a4, 0 + addi a4, a4, 4 // y++ - increment output pointer +next_itt_fir32: + // Check loop + addi a5, a5, -1 + bnez a5, fird_loop_len + // store state + + s32i a7, a2, 12 // pos = a7 + + mov a2, a8 // return status ESP_OK + retw.n + +#endif // dsps_fird_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_aes3.S new file mode 100644 index 0000000..07676a6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_aes3.S @@ -0,0 +1,239 @@ +// Copyright 2018-2023 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fir_platform.h" +#if (dsps_fird_f32_aes3_enabled == 1) + +// This is FIR filter for Esp32s3 processor. + .text + .align 4 + .global dsps_fird_f32_aes3 + .type dsps_fird_f32_aes3,@function +// The function implements the following C code: +//esp_err_t dsps_fird_f32_aes3(fir_f32_t* fir, const float* input, float* output, int len); + +dsps_fird_f32_aes3: +// fir - a2 +// input - a3 +// output - a4 +// len - a5 + +// a2 - fir structure +// a3 - input +// a4 - output +// a5 - length + +// a6 - fir length +// a7 - position in delay line +// a8 - temp +// a10 - coeffs ptr +// a11 - delay line ptr +// a12 - const +// a13 - +// a14 - temp for loops +// a15 - delay line rounded to 16 + + entry a1, 16 + // Array increment for floating point data should be 4 + l32i a7, a2, 12 // a7 - pos + + l32i a6, a2, 8 // a6 - N - amount of coefficients + l32i a10, a2, 0 // a10 - coeffs + l32i a11, a2, 4 // a11 - delay line + addx4 a11, a7, a11 // a11 = a11 + a7*4 + l32i a6, a2, 8 // a6 - N + + mov.n a9, a5 + movi.n a12, 3 + + movi.n a12, -16 + movi.n a13, 15 +// Main loop for input samples +.fird_loop_len: + // Store K values from input to delay line: + + l32i a14, a2, 16 // a14 - decimation + loopnez a14, .fird_load_data // K loops + // Store to delay line + lsip f15, a3, 4 // a3 += 4, f15 = input[n] + ssip f15, a11, 4 // a11 += 4, *a11 = f15 + addi a7, a7, 1 // a7++ - position in delay line + + blt a7, a6, .do_not_reset_a11 + l32i a11, a2, 4 // Load delay line + movi a7, 0 + .do_not_reset_a11: + and a15, a11, a12 + .fird_load_data: + // + // Process data + // + // Load rounded delay line address + + l32i a10, a2, 0 // a10 - coeffs + + // Clear f4, f5 for multiplications + const.s f4, 0 + const.s f5, 0 + const.s f6, 0 + const.s f7, 0 + + and a8, a11, a13 // a8 = a11 & 15 + beqz a8, .offset_0 + addi a8, a8, -4 + beqz a8, .offset_1 + addi a8, a8, -4 + beqz a8, .offset_2 + addi a8, a8, -4 + beqz a8, .offset_3 + +// a10 - coeffs +// a11 - delay line +.offset_0: + sub a14, a6, a7 // a14 = N-pos + srli a14, a14, 2 + loopnez a14, .first_fir_loop_0 // pos...N-1 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + madd.s f4, f0, f8 + madd.s f5, f1, f9 + madd.s f6, f2, f10 + madd.s f7, f3, f11 + .first_fir_loop_0: + + l32i a15, a2, 4 // a11 - delay line [0] + srli a14, a7, 2 + loopnez a14, .second_fir_loop_0 // 0..pos + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + madd.s f4, f0, f8 + madd.s f5, f1, f9 + madd.s f6, f2, f10 + madd.s f7, f3, f11 + .second_fir_loop_0: + j .store_fir_result; + +.offset_1: + sub a14, a6, a7 // a14 = N-pos + addi a14, a14, 3 + srli a14, a14, 2 + EE.LDF.128.IP f11, f10, f9, f12, a15, 16 // Load data from delay line + // f12 - delay[N-1], store for the last operation + // f9..f11 - delay[0..2] + loopnez a14, .first_fir_loop_1 // pos...N-1 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f4, f0, f9 + madd.s f5, f1, f10 + madd.s f6, f2, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + madd.s f7, f3, f8 + .first_fir_loop_1: + + l32i a15, a2, 4 // a11 - delay line [0] + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + srli a14, a7, 2 + loopnez a14, .second_fir_loop_1 // 0..pos + madd.s f4, f3, f8 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f5, f0, f9 + madd.s f6, f1, f10 + madd.s f7, f2, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + .second_fir_loop_1: + + madd.s f4, f3, f12 + j .store_fir_result; + +.offset_2: + sub a14, a6, a7 // a14 = N-pos + addi a14, a14, 3 + srli a14, a14, 2 + EE.LDF.128.IP f11, f10, f13, f12, a15, 16 // Load data from delay line + // f12, f13 - delay[N-1], delay[N-2], store for the last operation + // f10..f11 - delay[0..1] + loopnez a14, .first_fir_loop_2 // pos...N-1 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f4, f0, f10 + madd.s f5, f1, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + madd.s f6, f2, f8 + madd.s f7, f3, f9 + .first_fir_loop_2: + + l32i a15, a2, 4 // a11 - delay line [0] + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + srli a14, a7, 2 + loopnez a14, .second_fir_loop_2 // 0..pos + madd.s f4, f2, f8 + madd.s f5, f3, f9 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f6, f0, f10 + madd.s f7, f1, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + .second_fir_loop_2: + + madd.s f4, f2, f12 + madd.s f5, f3, f13 + j .store_fir_result; + +.offset_3: + sub a14, a6, a7 // a14 = N-pos + addi a14, a14, 3 + srli a14, a14, 2 + EE.LDF.128.IP f11, f14, f13, f12, a15, 16 // Load data from delay line + // f12, f13, f14 - delay[N-1], delay[N-2], delay[N-3], store for the last operation + // f11 - delay[0] + loopnez a14, .first_fir_loop_3 // pos...N-1 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f4, f0, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + madd.s f5, f1, f8 + madd.s f6, f2, f9 + madd.s f7, f3, f10 + .first_fir_loop_3: + + l32i a15, a2, 4 // a11 - delay line [0] + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + srli a14, a7, 2 + loopnez a14, .second_fir_loop_3 // 0..pos + madd.s f4, f1, f8 + madd.s f5, f2, f9 + madd.s f6, f3, f10 + EE.LDF.128.IP f3, f2, f1, f0, a10, 16 // Load coeffs + madd.s f7, f0, f11 + EE.LDF.128.IP f11, f10, f9, f8, a15, 16 // Load data from delay line + .second_fir_loop_3: + + madd.s f4, f1, f12 + madd.s f5, f2, f13 + madd.s f4, f3, f14 + +.store_fir_result: + + add.s f4, f4, f5 + add.s f6, f6, f7 + add.s f4, f4, f6 + + // Store result + ssip f4, a4, 4 // y++ - save result and increment output pointer + // Check loop length + addi a5, a5, -1 + bnez a5, .fird_loop_len + // store state + + s32i a7, a2, 12 // pos = a7 + mov.n a2, a9 + retw.n + +#endif // dsps_fir_f32_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_ansi.c new file mode 100644 index 0000000..c7629f5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_f32_ansi.c @@ -0,0 +1,38 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fir.h" + +int dsps_fird_f32_ansi(fir_f32_t *fir, const float *input, float *output, int len) +{ + int result = 0; + for (int i = 0; i < len ; i++) { + for (int k = 0 ; k < fir->decim ; k++) { + fir->delay[fir->pos++] = *input++; + if (fir->pos >= fir->N) { + fir->pos = 0; + } + } + float acc = 0; + int coeff_pos = 0; + for (int n = fir->pos; n < fir->N ; n++) { + acc += fir->coeffs[coeff_pos++] * fir->delay[n]; + } + for (int n = 0; n < fir->pos ; n++) { + acc += fir->coeffs[coeff_pos++] * fir->delay[n]; + } + output[result++] = acc; + } + return result; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_init_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_init_f32.c new file mode 100644 index 0000000..a120d92 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/float/dsps_fird_init_f32.c @@ -0,0 +1,46 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_fir.h" + + +esp_err_t dsps_fird_init_f32(fir_f32_t *fir, float *coeffs, float *delay, int N, int decim) +{ + fir->coeffs = coeffs; + fir->delay = delay; + fir->N = N; + fir->pos = 0; + fir->decim = decim; + +#ifdef CONFIG_IDF_TARGET_ESP32S3 + // The amount of coefficients should be divided to 4, + // if not, add zero coefficients to round length to 0 + if (fir->N % 4 != 0) { + return ESP_ERR_DSP_INVALID_LENGTH; + } + // The coeffs array should be aligned to 16 + if (((uint32_t)coeffs) & 0x0f) { + return ESP_ERR_DSP_ARRAY_NOT_ALIGNED; + } + // The delay array should be aligned to 16 + if (((uint32_t)delay) & 0x0f) { + return ESP_ERR_DSP_ARRAY_NOT_ALIGNED; + } +#endif // CONFIG_IDF_TARGET_ESP32S3 + + for (int i = 0 ; i < N; i++) { + fir->delay[i] = 0; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include/dsps_fir.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include/dsps_fir.h new file mode 100644 index 0000000..e8eba81 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include/dsps_fir.h @@ -0,0 +1,275 @@ +// Copyright 2018-2022 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_fir_H_ +#define _dsps_fir_H_ + + +#include "dsp_err.h" + +#include "dsps_fir_platform.h" +#include "dsp_common.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief Data struct of f32 fir filter + * + * This structure is used by a filter internally. A user should access this structure only in case of + * extensions for the DSP Library. + * All fields of this structure are initialized by the dsps_fir_init_f32(...) function. + */ +typedef struct fir_f32_s { + float *coeffs; /*!< Pointer to the coefficient buffer.*/ + float *delay; /*!< Pointer to the delay line buffer.*/ + int N; /*!< FIR filter coefficients amount.*/ + int pos; /*!< Position in delay line.*/ + int decim; /*!< Decimation factor.*/ + int16_t use_delay; /*!< The delay line was allocated by init function.*/ +} fir_f32_t; + +/** + * @brief Data struct of s16 fir filter + * + * This structure is used by a filter internally. A user should access this structure only in case of + * extensions for the DSP Library. + * All fields of this structure are initialized by the dsps_fir_init_s16(...) function. + */ +typedef struct fir_s16_s { + int16_t *coeffs; /*!< Pointer to the coefficient buffer.*/ + int16_t *delay; /*!< Pointer to the delay line buffer.*/ + int16_t coeffs_len; /*!< FIR filter coefficients amount.*/ + int16_t pos; /*!< Position in delay line.*/ + int16_t decim; /*!< Decimation factor.*/ + int16_t d_pos; /*!< Actual decimation counter.*/ + int16_t shift; /*!< Shift value of the result.*/ + int32_t *rounding_buff; /*!< Rounding buffer for the purposes of esp32s3 ee.ld.accx.ip assembly instruction */ + int32_t rounding_val; /*!< Rounding value*/ + int16_t free_status; /*!< Indicator for dsps_fird_s16_aes3_free() function*/ +} fir_s16_t; + +/** + * @brief initialize structure for 32 bit FIR filter + * + * Function initialize structure for 32 bit floating point FIR filter + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param fir: pointer to fir filter structure, that must be preallocated + * @param coeffs: array with FIR filter coefficients. Must be length N + * @param delay: array for FIR filter delay line. Must have a length = coeffs_len + 4 + * @param coeffs_len: FIR filter length. Length of coeffs array. For esp32s3 length should be divided by 4 and aligned to 16. + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_fir_init_f32(fir_f32_t *fir, float *coeffs, float *delay, int coeffs_len); + +/** + * @brief initialize structure for 32 bit Decimation FIR filter + * Function initialize structure for 32 bit floating point FIR filter with decimation + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param fir: pointer to fir filter structure, that must be preallocated + * @param coeffs: array with FIR filter coefficients. Must be length N + * @param delay: array for FIR filter delay line. Must be length N + * @param N: FIR filter length. Length of coeffs and delay arrays. + * @param decim: decimation factor. + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_fird_init_f32(fir_f32_t *fir, float *coeffs, float *delay, int N, int decim); + +/** + * @brief initialize structure for 16 bit Decimation FIR filter + * Function initialize structure for 16 bit signed fixed point FIR filter with decimation + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param fir: pointer to fir filter structure, that must be preallocated + * @param coeffs: array with FIR filter coefficients. Must be length N + * @param delay: array for FIR filter delay line. Must be length N + * @param coeffs_len: FIR filter length. Length of coeffs and delay arrays. + * @param decim: decimation factor. + * @param start_pos: initial value of decimation counter. Must be [0..d) + * @param shift: shift position of the result + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_fird_init_s16(fir_s16_t *fir, int16_t *coeffs, int16_t *delay, int16_t coeffs_len, int16_t decim, int16_t start_pos, int16_t shift); + + +/**@{*/ +/** + * @brief 32 bit floating point FIR filter + * + * Function implements FIR filter + * The extension (_ansi) uses ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param fir: pointer to fir filter structure, that must be initialized before + * @param[in] input: input array + * @param[out] output: array with the result of FIR filter + * @param[in] len: length of input and result arrays + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_fir_f32_ansi(fir_f32_t *fir, const float *input, float *output, int len); +esp_err_t dsps_fir_f32_ae32(fir_f32_t *fir, const float *input, float *output, int len); +esp_err_t dsps_fir_f32_aes3(fir_f32_t *fir, const float *input, float *output, int len); +/**@}*/ + +/**@{*/ +/** + * @brief 32 bit floating point Decimation FIR filter + * + * Function implements FIR filter with decimation + * The extension (_ansi) uses ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param fir: pointer to fir filter structure, that must be initialized before + * @param input: input array + * @param output: array with the result of FIR filter + * @param len: length of result array + * + * @return: function returns the number of samples stored in the output array + * depends on the previous state value could be [0..len/decimation] + */ +int dsps_fird_f32_ansi(fir_f32_t *fir, const float *input, float *output, int len); +int dsps_fird_f32_ae32(fir_f32_t *fir, const float *input, float *output, int len); +int dsps_fird_f32_aes3(fir_f32_t *fir, const float *input, float *output, int len); +/**@}*/ + +/**@{*/ +/** + * @brief 16 bit signed fixed point Decimation FIR filter + * + * Function implements FIR filter with decimation + * The extension (_ansi) uses ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param fir: pointer to fir filter structure, that must be initialized before + * @param input: input array + * @param output: array with the result of the FIR filter + * @param len: length of the result array + * + * @return: function returns the number of samples stored in the output array + * depends on the previous state value could be [0..len/decimation] + */ +int32_t dsps_fird_s16_ansi(fir_s16_t *fir, const int16_t *input, int16_t *output, int32_t len); +int32_t dsps_fird_s16_ae32(fir_s16_t *fir, const int16_t *input, int16_t *output, int32_t len); +int32_t dsps_fird_s16_aes3(fir_s16_t *fir, const int16_t *input, int16_t *output, int32_t len); +/**@}*/ + + +/**@{*/ +/** + * @brief support arrays freeing function + * + * Function frees all the arrays, which were created during the initialization of the fir_s16_t structure + * 1. frees allocated memory for rounding buffer, for the purposes of esp32s3 ee.ld.accx.ip assembly instruction + * 2. frees allocated memory in case the delay line is NULL + * 3. frees allocated memory in case the length of the filter (and the delay line) is not divisible by 8 + * and new delay line and filter coefficients arrays are created for the purpose of the esp32s3 assembly + * + * @param fir: pointer to fir filter structure, that must be initialized before + * + * @return + * - ESP_OK on success + */ +esp_err_t dsps_fird_s16_aexx_free(fir_s16_t *fir); +/**@}*/ + + +/**@{*/ +/** + * @brief support arrays freeing function + * + * Function frees the delay line arrays, if it was allocated by the init functions. + * + * @param fir: pointer to fir filter structure, that must be initialized before + * + * @return + * - ESP_OK on success + */ +esp_err_t dsps_fir_f32_free(fir_f32_t *fir); +/**@}*/ + + +/**@{*/ +/** + * @brief Array reversal + * + * Function reverses 16-bit long array members for the purpose of the dsps_fird_s16_aes3 implementation + * The function has to be called either during the fir struct initialization or every time the coefficients change + * + * @param arr: pointer to the array to be reversed + * @param len: length of the array to be reversed + * + * @return + * - ESP_OK on success + */ +esp_err_t dsps_16_array_rev(int16_t *arr, int16_t len); +/**@}*/ + +#ifdef __cplusplus +} +#endif + + +#if CONFIG_DSP_OPTIMIZED + +#if (dsps_fir_f32_ae32_enabled == 1) +#define dsps_fir_f32 dsps_fir_f32_ae32 +#elif (dsps_fir_f32_aes3_enabled == 1) +#define dsps_fir_f32 dsps_fir_f32_aes3 +#else +#define dsps_fir_f32 dsps_fir_f32_ansi +#endif + +#if (dsps_fird_f32_aes3_enabled == 1) +#define dsps_fird_f32 dsps_fird_f32_aes3 +#elif (dsps_fird_f32_ae32_enabled == 1) +#define dsps_fird_f32 dsps_fird_f32_ae32 +#else +#define dsps_fird_f32 dsps_fird_f32_ansi +#endif + +#if (dsps_fird_s16_ae32_enabled == 1) +#define dsps_fird_s16 dsps_fird_s16_ae32 + +#elif (dsps_fird_s16_aes3_enabled == 1) +#define dsps_fird_s16 dsps_fird_s16_aes3 + +#else +#define dsps_fird_s16 dsps_fird_s16_ansi +#endif + +#else // CONFIG_DSP_OPTIMIZED + +#define dsps_fir_f32 dsps_fir_f32_ansi +#define dsps_fird_f32 dsps_fird_f32_ansi +#define dsps_fird_s16 dsps_fird_s16_ansi + +#endif // CONFIG_DSP_OPTIMIZED + +#endif // _dsps_fir_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include/dsps_fir_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include/dsps_fir_platform.h new file mode 100644 index 0000000..4e1a72c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/include/dsps_fir_platform.h @@ -0,0 +1,31 @@ +#ifndef _dsps_fir_platform_H_ +#define _dsps_fir_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#if CONFIG_IDF_TARGET_ESP32S3 +#define dsps_fird_f32_aes3_enabled 1 +#define dsps_fird_f32_ae32_enabled 1 +#define dsps_fird_s16_aes3_enabled 1 +#define dsps_fird_s16_ae32_enabled 0 +#define dsps_fir_f32_aes3_enabled 1 +#define dsps_fir_f32_ae32_enabled 0 +#else +#define dsps_fird_f32_ae32_enabled 1 +#define dsps_fird_s16_aes3_enabled 0 +#define dsps_fird_s16_ae32_enabled 1 +#define dsps_fir_f32_aes3_enabled 0 +#define dsps_fir_f32_ae32_enabled 1 +#endif + +#endif // +#endif // __XTENSA__ + +#endif // _dsps_fir_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fir_f32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fir_f32_ae32.c new file mode 100644 index 0000000..3e6268d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fir_f32_ae32.c @@ -0,0 +1,134 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_tone_gen.h" +#include "dsps_d_gen.h" +#include "dsps_fir.h" +#include "dsp_tests.h" + +static const char *TAG = "dsps_fir_f32_aexx"; + +__attribute__((aligned(16))) +static float x[1024]; +__attribute__((aligned(16))) +static float y[1024]; +__attribute__((aligned(16))) +static float y_compare[1024]; + +__attribute__((aligned(16))) +static float coeffs[32]; +__attribute__((aligned(16))) +static float delay[32 + 4]; +__attribute__((aligned(16))) +static float delay_compare[32]; + +TEST_CASE("dsps_fir_f32_aexx functionality", "[dsps]") +{ + // In the test we generate filter with cutt off frequency 0.1 + // and then filtering 0.1 and 0.3 frequencis. + // Result must be better then 24 dB + int len = sizeof(x) / sizeof(float); + int fir_len = sizeof(coeffs) / sizeof(float); + + fir_f32_t fir1; + fir_f32_t fir2; + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = (fir_len - i - 1); + } + + for (int i = 0 ; i < len ; i++) { + x[i] = 0; + } + x[0] = 1; + + esp_err_t err = dsps_fir_init_f32(&fir1, coeffs, delay, fir_len); + TEST_ESP_OK(err); + err = dsps_fir_f32(&fir1, x, y, len); + TEST_ESP_OK(err); + + for (int i = 0 ; i < fir_len * 3 ; i++) { + ESP_LOGD(TAG, "fir[%i] = %f", i, y[i]); + } + + for (int i = 0 ; i < fir_len ; i++) { + if (y[i] != i) { + TEST_ASSERT_EQUAL(y[i], i); + } + } + + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = i; + } + + for (int i = 0 ; i < len ; i++) { + x[i] = i; + } + x[0] = 1; + dsps_fir_init_f32(&fir1, coeffs, delay, fir_len); + dsps_fir_init_f32(&fir2, coeffs, delay_compare, fir_len); + + dsps_fir_f32(&fir1, x, y, len); + dsps_fir_f32_ansi(&fir2, x, y_compare, len); + dsps_fir_f32(&fir1, x, y, len); + dsps_fir_f32_ansi(&fir2, x, y_compare, len); + dsps_fir_f32(&fir1, x, y, len); + dsps_fir_f32_ansi(&fir2, x, y_compare, len); + + for (int i = 0 ; i < len ; i++) { + if (y[i] != y_compare[i]) { + TEST_ASSERT_EQUAL(y[i], y_compare[i]); + } + } +} + +TEST_CASE("dsps_fir_f32_aexx benchmark", "[dsps]") +{ + + int len = sizeof(x) / sizeof(float); + int fir_len = sizeof(coeffs) / sizeof(float); + int repeat_count = 1; + + fir_f32_t fir1; + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = i; + } + + for (int i = 0 ; i < len ; i++) { + x[i] = 0; + } + x[0] = 1; + + dsps_fir_init_f32(&fir1, coeffs, delay, fir_len); + + unsigned int start_b = xthal_get_ccount(); + for (int i = 0 ; i < repeat_count ; i++) { + dsps_fir_f32(&fir1, x, y, len); + } + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (len * repeat_count); + + ESP_LOGI(TAG, "dsps_fir_f32_aexx - %f per sample for for %i coefficients, %f per tap \n", cycles, fir_len, cycles / (float)fir_len); + + float min_exec = 3; + float max_exec = 800; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fir_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fir_f32_ansi.c new file mode 100644 index 0000000..ffe93ab --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fir_f32_ansi.c @@ -0,0 +1,124 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_tone_gen.h" +#include "dsps_d_gen.h" +#include "dsps_fir.h" +#include "dsp_tests.h" + +static const char *TAG = "dsps_fir_f32_ansi"; + +static float x[1024]; +static float y[1024]; + +static float coeffs[32]; +static float delay[32 + 4]; + +TEST_CASE("dsps_fir_f32_ansi functionality", "[dsps]") +{ + // In the test we generate filter with cutt off frequency 0.1 + // and then filtering 0.1 and 0.3 frequencis. + // Result must be better then 24 dB + int len = sizeof(x) / sizeof(float); + int fir_len = sizeof(coeffs) / sizeof(float); + + fir_f32_t fir1; + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = (fir_len - i - 1); + } + + for (int i = 0 ; i < len ; i++) { + x[i] = 0; + } + x[0] = 1; + + dsps_fir_init_f32(&fir1, coeffs, delay, fir_len); + dsps_fir_f32_ansi(&fir1, x, y, len); + + for (int i = 0 ; i < fir_len * 3 ; i++) { + ESP_LOGD(TAG, "fir[%i] = %f", i, y[i]); + } + for (int i = 0 ; i < fir_len ; i++) { + if (y[i] != i) { + TEST_ASSERT_EQUAL(y[i], i); + } + } + + // Check even length +#ifndef CONFIG_IDF_TARGET_ESP32S3 + fir_len--; +#endif + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = (fir_len - i - 1); + } + + for (int i = 0 ; i < len ; i++) { + x[i] = 0; + } + x[0] = 1; + dsps_fir_init_f32(&fir1, coeffs, delay, fir_len); + dsps_fir_f32_ansi(&fir1, x, y, len); + + for (int i = 0 ; i < fir_len ; i++) { + if (y[i] != i) { + TEST_ASSERT_EQUAL(y[i], i); + } + } + for (int i = fir_len ; i < len ; i++) { + if (y[i] != 0) { + TEST_ASSERT_EQUAL(y[i], 0); + } + } +} + +TEST_CASE("dsps_fir_f32_ansi benchmark", "[dsps]") +{ + + int len = sizeof(x) / sizeof(float); + int fir_len = sizeof(coeffs) / sizeof(float); + int repeat_count = 1; + + fir_f32_t fir1; + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = i; + } + + for (int i = 0 ; i < len ; i++) { + x[i] = 0; + } + x[0] = 1; + + dsps_fir_init_f32(&fir1, coeffs, delay, fir_len); + + unsigned int start_b = xthal_get_ccount(); + for (int i = 0 ; i < repeat_count ; i++) { + dsps_fir_f32_ansi(&fir1, x, y, len); + } + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (len * repeat_count); + + ESP_LOGI(TAG, "dsps_fir_f32_ansi - %f per sample for for %i coefficients, %f per tap \n", cycles, fir_len, cycles / (float)fir_len); + + float min_exec = 10; + float max_exec = 800; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_f32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_f32_ae32.c new file mode 100644 index 0000000..f5602af --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_f32_ae32.c @@ -0,0 +1,112 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_tone_gen.h" +#include "dsps_d_gen.h" +#include "dsps_fir.h" +#include "dsp_tests.h" + +static const char *TAG = "dsps_fird_f32_ae32"; + +static float x[1024]; +static float y[1024]; +static float y_compare[1024]; + +static float coeffs[32]; +static float delay[32]; +static float delay_compare[32]; + +TEST_CASE("dsps_fird_f32_aexx functionality", "[dsps]") +{ + // In the test we generate filter with cutt off frequency 0.1 + // and then filtering 0.1 and 0.3 frequencis. + // Result must be better then 24 dB + int len = sizeof(x) / sizeof(float); + int fir_len = sizeof(coeffs) / sizeof(float); + int decim = 4; + + fir_f32_t fir1; + fir_f32_t fir2; + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = i; + } + coeffs[0] = 1; + + for (int i = 0 ; i < len ; i++) { + x[i] = i; + } + + dsps_fird_init_f32(&fir1, coeffs, delay, fir_len, decim); + dsps_fird_init_f32(&fir2, coeffs, delay_compare, fir_len, decim); + int total1 = dsps_fird_f32_ae32(&fir1, x, y, len / decim); + int total2 = dsps_fird_f32_ansi(&fir2, x, y_compare, len / decim); + total1 += dsps_fird_f32(&fir1, x, y, len / decim); + total2 += dsps_fird_f32_ansi(&fir2, x, y_compare, len / decim); + total1 += dsps_fird_f32(&fir1, x, y, len / decim); + total2 += dsps_fird_f32_ansi(&fir2, x, y_compare, len / decim); + ESP_LOGI(TAG, "Total result = %i, expected %i from %i", total1, total2, len); + TEST_ASSERT_EQUAL(total1, total2); + for (int i = 0 ; i < total1 ; i++) { + ESP_LOGD(TAG, "data[%i] = %f\n", i, y[i]); + } + for (int i = 0 ; i < total1 ; i++) { + if (y[i] != y_compare[i]) { + TEST_ASSERT_EQUAL(y[i], y_compare[i]); + } + } + + +} + + +TEST_CASE("dsps_fird_f32_aexx benchmark", "[dsps]") +{ + + int len = sizeof(x) / sizeof(float); + int fir_len = sizeof(coeffs) / sizeof(float); + int repeat_count = 1; + int decim = 4; + + fir_f32_t fir1; + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = i; + } + + for (int i = 0 ; i < len ; i++) { + x[i] = 0; + } + x[0] = 1; + + dsps_fird_init_f32(&fir1, coeffs, delay, fir_len, decim); + + unsigned int start_b = xthal_get_ccount(); + for (int i = 0 ; i < repeat_count ; i++) { + dsps_fird_f32(&fir1, x, y, len / decim); + } + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (len * repeat_count); + + ESP_LOGI(TAG, "dsps_fir_f32_ae32 - %f per sample for for %i coefficients, %f per decim tap \n", cycles, fir_len, cycles / (float)fir_len * decim); + float min_exec = 3; + float max_exec = 300; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_f32_ansi.c new file mode 100644 index 0000000..8a0a7d1 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_f32_ansi.c @@ -0,0 +1,101 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_tone_gen.h" +#include "dsps_d_gen.h" +#include "dsps_fir.h" +#include "dsp_tests.h" + +static const char *TAG = "dsps_fird_f32_ansi"; + +static float x[1024]; +static float y[1024]; + +static float coeffs[32]; +static float delay[32]; + +TEST_CASE("dsps_fird_f32_ansi functionality", "[dsps]") +{ + // In the test we generate filter with cutt off frequency 0.1 + // and then filtering 0.1 and 0.3 frequencis. + // Result must be better then 24 dB + int len = sizeof(x) / sizeof(float); + int fir_len = sizeof(coeffs) / sizeof(float); + int decim = 4; + + fir_f32_t fir1; + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = 0; + } + coeffs[0] = 1; + + for (int i = 0 ; i < len ; i++) { + x[i] = (i) % decim; + } + + dsps_fird_init_f32(&fir1, coeffs, delay, fir_len, decim); + int total = dsps_fird_f32_ansi(&fir1, x, y, len / decim); + ESP_LOGI(TAG, "Total result = %i from %i", total, len); + TEST_ASSERT_EQUAL(total, len / decim); + for (int i = 0 ; i < total ; i++) { + ESP_LOGD(TAG, "data[%i] = %f\n", i, y[i]); + } + for (int i = 0 ; i < total ; i++) { + TEST_ASSERT_EQUAL(y[i], 0); + } + + +} + + +TEST_CASE("dsps_fird_f32_ansi benchmark", "[dsps]") +{ + + int len = sizeof(x) / sizeof(float); + int fir_len = sizeof(coeffs) / sizeof(float); + int repeat_count = 1; + int decim = 4; + + fir_f32_t fir1; + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = i; + } + + for (int i = 0 ; i < len ; i++) { + x[i] = 0; + } + x[0] = 1; + + dsps_fird_init_f32(&fir1, coeffs, delay, fir_len, decim); + + unsigned int start_b = xthal_get_ccount(); + for (int i = 0 ; i < repeat_count ; i++) { + dsps_fird_f32_ansi(&fir1, x, y, len / decim); + } + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (len * repeat_count); + + ESP_LOGI(TAG, "dsps_fir_f32_ansi - %f per sample for for %i coefficients, %f per decim tap \n", cycles, fir_len, cycles / (float)fir_len * decim); + float min_exec = 10; + float max_exec = 300; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_s16_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_s16_ae32.c new file mode 100644 index 0000000..7721d60 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_s16_ae32.c @@ -0,0 +1,363 @@ +/* + * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + + +#include +#include +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include "esp_err.h" +#include "esp_dsp.h" + +#include "dsps_tone_gen.h" +#include "dsps_d_gen.h" +#include "dsps_fir.h" +#include "dsp_tests.h" +#include "dsps_wind.h" +#include "dsps_view.h" +#include "dsps_fft2r.h" + +#define COEFFS 256 +#define N_IN_SAMPLES 4096 +#define DECIMATION 2 +#define Q15_MAX INT16_MAX +#define LEAKAGE_BINS 10 +#define FIR_BUFF_LEN 16 + +#define MAX_FIR_LEN 64 + +static const char *TAG = "dsps_fird_s16_aexx"; + +const static int32_t len = N_IN_SAMPLES; +const static int32_t N_FFT = (N_IN_SAMPLES / DECIMATION); +const static int16_t decim = DECIMATION; +const static int16_t fir_len = COEFFS; +const static int32_t fir_buffer = (N_IN_SAMPLES + FIR_BUFF_LEN); + + +// error messages for the init functions +static void error_msg_handler(fir_s16_t *fir, esp_err_t status) +{ + + if (status != ESP_OK) { + dsps_fird_s16_aexx_free(fir); + + switch (status) { + case ESP_ERR_DSP_INVALID_LENGTH: + TEST_ASSERT_MESSAGE(false, "Number of the coefficients must be higher than 1"); + break; + case ESP_ERR_DSP_ARRAY_NOT_ALIGNED: + TEST_ASSERT_MESSAGE(false, "Delay line or (and) coefficients arrays not aligned"); + break; + case ESP_ERR_DSP_PARAM_OUTOFRANGE: + TEST_ASSERT_MESSAGE(false, "Start position or (and) Decimation ratio or (and) Shift out of range"); + break; + default: + TEST_ASSERT_MESSAGE(false, "Unspecified error"); + break; + } + } +} + + + +TEST_CASE("dsps_fird_s16_aexx functionality", "[dsps]") +{ + + const int32_t max_len[2] = {2048, 2520}; // 2520 can be divided by 3, 6, 9, 12, 15, 18 and 21 + const int16_t max_dec[2] = {32, 21}; + const int16_t min_dec[2] = {2, 3}; + const int16_t shift_vals[17] = {-15, 0, 15}; + + int16_t *x = (int16_t *)memalign(16, max_len[1] * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, max_len[1] * sizeof(int16_t)); + int16_t *y_compare = (int16_t *)memalign(16, max_len[1] * sizeof(int16_t)); + + int16_t *coeffs = (int16_t *)memalign(16, MAX_FIR_LEN * sizeof(int16_t)); + int16_t *coeffs_aexx = (int16_t *)memalign(16, MAX_FIR_LEN * sizeof(int16_t)); + int16_t *coeffs_ansi = (int16_t *)memalign(16, MAX_FIR_LEN * sizeof(int16_t)); + + int16_t *delay = (int16_t *)memalign(16, MAX_FIR_LEN * sizeof(int16_t)); + int16_t *delay_compare = (int16_t *)memalign(16, MAX_FIR_LEN * sizeof(int16_t)); + + int32_t combinations = 0; + esp_err_t status1 = ESP_OK, status2 = ESP_OK; + fir_s16_t fir1, fir2; + + for (int i = 0 ; i < MAX_FIR_LEN ; i++) { + coeffs[i] = i + 0x100; + } + + for (int i = 0 ; i < max_len[1] ; i++) { + x[i] = 0x10; + } + + for (int variations = 0; variations < 2; variations++) { + + ESP_LOGI(TAG, ": %"PRId32" input samples, coefficients range from 2 to %"PRId16", decimation range from %"PRId16" to %"PRId16", shift in range from -40 to 40 and start positions within the coeffs range", + max_len[variations], (int16_t)MAX_FIR_LEN, min_dec[variations], max_dec[variations]); + + // decimation increment is set as dec * 2 for input data length 2048 (2, 4, 8, 16, 32) + // as dec + 3 for input data length 2520 (3, 6, 9, 12, 15, 18, 21) + for (int16_t dec = min_dec[variations]; dec <= max_dec[variations]; ((variations) ? (dec += 3) : (dec *= 2)) ) { + + const int32_t loop_len = max_len[variations] / dec; + const int16_t start_position = 0; + + for (int16_t fir_length = 2; fir_length <= MAX_FIR_LEN; fir_length += 16) { + + for (int16_t shift_amount = 0; shift_amount < sizeof(shift_vals) / sizeof(uint16_t); shift_amount++) { + + for (int k = 0 ; k < fir_length; k++) { + coeffs_ansi[k] = coeffs[k]; + coeffs_aexx[k] = coeffs[k]; + } + + status1 = dsps_fird_init_s16(&fir1, coeffs_aexx, delay, fir_length, dec, start_position, shift_vals[shift_amount]); + error_msg_handler(&fir1, status1); + status2 = dsps_fird_init_s16(&fir2, coeffs_ansi, delay_compare, fir_length, dec, start_position, shift_vals[shift_amount]); + error_msg_handler(&fir2, status2); + +#if(dsps_fird_s16_aes3_enabled) + dsps_16_array_rev(fir1.coeffs, fir1.coeffs_len); // coefficients are being reverted for the purposes of the aes3 TIE implementation +#endif + + for (int16_t start_pos = 0; start_pos < dec; start_pos++) { + + fir1.d_pos = start_pos; + fir2.d_pos = start_pos; + + for (int j = 0; j < fir1.coeffs_len; j++) { + fir1.delay[j] = 0; + fir2.delay[j] = 0; + } + + fir1.pos = 0; + fir2.pos = 0; + + const int32_t total1 = dsps_fird_s16(&fir1, x, y, loop_len); + const int32_t total2 = dsps_fird_s16_ansi(&fir2, x, y_compare, loop_len); + + TEST_ASSERT_EQUAL(total1, total2); + for (int i = 0 ; i < total1 ; i++) { + TEST_ASSERT_EQUAL(y[i], y_compare[i]); + } + + combinations++; + } + + dsps_fird_s16_aexx_free(&fir1); + dsps_fird_s16_aexx_free(&fir2); + } + } + } + } + + ESP_LOGI(TAG, ": %"PRId32" total filter combinations\n", combinations); + + free(x); + free(y); + free(coeffs); + free(delay); + free(y_compare); + free(coeffs_ansi); + free(coeffs_aexx); + free(delay_compare); + +} + +TEST_CASE("dsps_fird_s16_aexx benchmark", "[dsps]") +{ + + const int16_t local_dec = 2; + const int32_t local_len = (len % 16) ? (4096) : (len); // length must be devisible by 16 + + int16_t *x = (int16_t *)memalign(16, local_len * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, local_len * sizeof(int16_t)); + + int16_t *coeffs = (int16_t *)memalign(16, MAX_FIR_LEN * sizeof(int16_t)); + int16_t *delay = (int16_t *)memalign(16, MAX_FIR_LEN * sizeof(int16_t)); + + const int repeat_count = 100; + const int16_t start_pos = 0; + const int16_t shift = 0; + int32_t loop_len = 0; + + fir_s16_t fir; + esp_err_t status = ESP_OK; + + status = dsps_fird_init_s16(&fir, coeffs, delay, MAX_FIR_LEN, local_dec, start_pos, shift); + error_msg_handler(&fir, status); + +#if(dsps_fird_s16_aes3_enabled) + dsps_16_array_rev(fir.coeffs, fir.coeffs_len); +#endif + + // Test for decimations 2, 4, 8, 16 + for (int dec = local_dec; dec <= 16 ; dec *= 2) { + + loop_len = (local_len / dec); + fir.decim = dec; + + const unsigned int start_b = xthal_get_ccount(); + for (int j = 0 ; j < repeat_count ; j++) { + dsps_fird_s16(&fir, x, y, loop_len); + } + const unsigned int end_b = xthal_get_ccount(); + + const float total_b = end_b - start_b; + const float cycles = total_b / (float)(repeat_count); + const float cycles_per_sample = total_b / (float)(local_len * repeat_count); + const float cycles_per_decim_tap = cycles_per_sample / (float)(fir.coeffs_len * fir.decim); + + ESP_LOGI(TAG, ": %.2f total cycles, %.2f cycles per sample, %.2f per decim tap, for %"PRId32" input samples, %"PRId16" coefficients and decimation %"PRId16"\n", + cycles, cycles_per_sample, cycles_per_decim_tap, local_len, (int16_t)MAX_FIR_LEN, fir.decim); + + const float min_exec = (((local_len / fir.decim) * fir.coeffs_len) / 2); + const float max_exec = min_exec * 20; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + + } + + dsps_fird_s16_aexx_free(&fir); + free(x); + free(y); + free(coeffs); + free(delay); +} + +TEST_CASE("dsps_fird_s16_aexx noise_snr", "[dsps]") +{ + + // In the SNR-noise test we are generating a sine wave signal, filtering the signal using a fixed point FIRD filter + // and do the FFT of the filtered signal. Afterward, a noise and SNR calculated from the FFT spectrum + + // FIR Coeffs + int16_t *s_coeffs = (int16_t *)memalign(16, fir_len * sizeof(int16_t)); // fixed point coefficients + int16_t *delay_line = (int16_t *)memalign(16, fir_len * sizeof(int16_t)); // fixed point delay line + float *f_coeffs = (float *)memalign(16, fir_len * sizeof(float)); // floating point coefficients + + // Coefficients windowing + dsps_wind_hann_f32(f_coeffs, fir_len); + const float fir_order = (float)fir_len - 1; + const float ft = 0.25; // Transition frequency + for (int i = 0; i < fir_len; i++) { + f_coeffs[i] *= sinf((2 * M_PI * ft * (i - fir_order / 2))) / (M_PI * (i - fir_order / 2)); + } + + // FIR coefficients conversion to q15 + for (int i = 0; i < fir_len; i++) { + s_coeffs[i] = f_coeffs[i] * Q15_MAX; + } + + free(f_coeffs); + + // Signal generation + const float amplitude = 0.9; + const float frequency = 0.05; + const float phase = 0; + float *f_in_signal = (float *)memalign(16, fir_buffer * sizeof(float)); + dsps_tone_gen_f32(f_in_signal, fir_buffer, amplitude, frequency, phase); + + // Input signal conversion to q15 + int16_t *fir_x = (int16_t *)memalign(16, fir_buffer * sizeof(int16_t)); + int16_t *fir_y = (int16_t *)memalign(16, fir_buffer * sizeof(int16_t)); + for (int i = 0; i < fir_buffer; i++) { + fir_x[i] = f_in_signal[i] * (int16_t)Q15_MAX; + } + + free(f_in_signal); + + // FIR + const int16_t start_pos = 0; + const int16_t shift = 0; + const int32_t loop_len = (int32_t)(fir_buffer / decim); // loop_len result must be without remainder + fir_s16_t fir; + esp_err_t status = dsps_fird_init_s16(&fir, s_coeffs, delay_line, fir_len, decim, start_pos, shift); + error_msg_handler(&fir, status); + +#if(dsps_fird_s16_aes3_enabled) + dsps_16_array_rev(fir.coeffs, fir.coeffs_len); +#endif + + dsps_fird_s16(&fir, fir_x, fir_y, loop_len); + + free(delay_line); + free(s_coeffs); + free(fir_x); + + // FIR Output conversion to float + const unsigned int ignored_fir_samples = (FIR_BUFF_LEN / 2) - 1; + float *fir_output = (float *)memalign(16, len * sizeof(float)); + for (int i = 0; i < N_FFT; i++) { + fir_output[i] = (float)(fir_y[ignored_fir_samples + i] / (float)Q15_MAX); + } + + free(fir_y); + + // Signal windowing + float *window = (float *)memalign(16, N_FFT * sizeof(float)); + dsps_wind_blackman_f32(window, N_FFT); + + // Prepare FFT input, real and imaginary part + const int32_t fft_data_len = (N_IN_SAMPLES / DECIMATION) * 2; + float *fft_data = (float *)memalign(16, fft_data_len * sizeof(float)); + for (int i = 0 ; i < N_FFT ; i++) { + fft_data[i * 2 + 0] = fir_output[i] * window[i]; + fft_data[i * 2 + 1] = 0; + } + free(fir_output); + free(window); + + // Initialize FFT + esp_err_t ret = dsps_fft2r_init_fc32(NULL, N_FFT * 2); + TEST_ESP_OK(ret); + + // Do the FFT + dsps_fft2r_fc32(fft_data, N_FFT); + dsps_bit_rev_fc32(fft_data, N_FFT); + dsps_cplx2reC_fc32(fft_data, N_FFT); + + // Convert the FFT spectrum from amplitude to watts, find the max value and its position + float max_val = -1000000; + int max_pos = 0; + for (int i = 0 ; i < N_FFT / 2 ; i++) { + fft_data[i] = (fft_data[i * 2 + 0] * fft_data[i * 2 + 0] + fft_data[i * 2 + 1] * fft_data[i * 2 + 1]) / (N_FFT * 3); + if (fft_data[i] > max_val) { + max_val = fft_data[i]; + max_pos = i; + } + } + + // Calculate the power of the signal and noise of the spectrum and convert the spectrum to dB + float signal_pow = 0, noise_pow = 0; + for (int i = 0 ; i < N_FFT / 2 ; i++) { + if ((i >= max_pos - LEAKAGE_BINS) && (i <= max_pos + LEAKAGE_BINS)) { + signal_pow += fft_data[i]; + } else { + noise_pow += fft_data[i]; + } + + fft_data[i] = 10 * log10f(0.0000000000001 + fft_data[i]); + } + + // Convert the signal power and noise power from watts to dB and calculate SNR + const float snr = 10 * log10f(signal_pow / noise_pow); + noise_pow = 10 * log10f(noise_pow); + signal_pow = 10 * log10f(signal_pow); + + ESP_LOGI(TAG, "\nSignal Power: \t%f\nNoise Power: \t%f\nSNR: \t\t%f", signal_pow, noise_pow, snr); + dsps_view(fft_data, N_FFT / 2, 128, 16, -140, 40, '|'); + free(fft_data); + + const float min_exec_snr = 50; + const float max_exec_snr = 120; + TEST_ASSERT_EXEC_IN_RANGE(min_exec_snr, max_exec_snr, snr); + dsps_fird_s16_aexx_free(&fir); + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_s16_ansi.c new file mode 100644 index 0000000..79a726e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test/test_dsps_fird_s16_ansi.c @@ -0,0 +1,292 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include "esp_err.h" +#include "esp_dsp.h" + +#include "dsps_tone_gen.h" +#include "dsps_d_gen.h" +#include "dsps_fir.h" +#include "dsp_tests.h" +#include "dsps_wind.h" +#include "dsps_view.h" +#include "dsps_fft2r.h" + +#define COEFFS 64 +#define N_IN_SAMPLES 1024 +#define DECIMATION 2 +#define Q15_MAX INT16_MAX +#define LEAKAGE_BINS 10 +#define FIR_BUFF_LEN 16 + +static const char *TAG = "dsps_fird_s16_ansi"; + +const static int32_t len = N_IN_SAMPLES; +const static int32_t N_FFT = (N_IN_SAMPLES / DECIMATION); +const static int16_t decim = DECIMATION; +const static int16_t fir_len = COEFFS; +const static int32_t fir_buffer = (N_IN_SAMPLES + FIR_BUFF_LEN); + + +// error messages for the init functions +static void error_msg_handler(fir_s16_t *fir, esp_err_t status) +{ + + if (status != ESP_OK) { + dsps_fird_s16_aexx_free(fir); + + switch (status) { + case ESP_ERR_DSP_INVALID_LENGTH: + TEST_ASSERT_MESSAGE(false, "Number of the coefficients must be higher than 1"); + break; + case ESP_ERR_DSP_ARRAY_NOT_ALIGNED: + TEST_ASSERT_MESSAGE(false, "Delay line or (and) coefficients arrays not aligned"); + break; + case ESP_ERR_DSP_PARAM_OUTOFRANGE: + TEST_ASSERT_MESSAGE(false, "Start position or (and) Decimation ratio or (and) Shift out of range"); + break; + default: + TEST_ASSERT_MESSAGE(false, "Unspecified error"); + break; + } + } +} + + +TEST_CASE("dsps_fird_s16_ansi functionality", "[dsps]") +{ + + int16_t *x = (int16_t *)memalign(16, len * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, len * sizeof(int16_t)); + + int16_t *coeffs = (int16_t *)memalign(16, fir_len * sizeof(int16_t)); + int16_t *delay = (int16_t *)memalign(16, fir_len * sizeof(int16_t)); + + const int16_t start_pos = 0; + const int16_t shift = 0; + const int16_t dec = decim; + const int32_t output_len = (int32_t)(len / dec); + + fir_s16_t fir1; + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = 0; + } + coeffs[0] = 0x4000; + + for (int i = 0 ; i < len ; i++) { + x[i] = 0x4000; + } + + esp_err_t status = dsps_fird_init_s16(&fir1, coeffs, delay, fir_len, dec, start_pos, shift); + error_msg_handler(&fir1, status); + + const int32_t total = dsps_fird_s16_ansi(&fir1, x, y, output_len); + + ESP_LOGI(TAG, "%"PRId32" input samples, decimation %"PRId16",total result = %"PRId32"\n", len, dec, total); + TEST_ASSERT_EQUAL(total, len / decim); + for (int i = 0 ; i < total ; i++) { + ESP_LOGD(TAG, "data[%i] = %d\n", i, y[i]); + } + + for (int i = 0 ; i < total ; i++) { + TEST_ASSERT_EQUAL(y[i], (0x2000)); + } + + dsps_fird_s16_aexx_free(&fir1); + free(x); + free(y); + free(coeffs); + free(delay); +} + + +TEST_CASE("dsps_fird_s16_ansi benchmark", "[dsps]") +{ + + int16_t *x = (int16_t *)memalign(16, len * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, len * sizeof(int16_t)); + + int16_t *coeffs = (int16_t *)memalign(16, fir_len * sizeof(int16_t)); + int16_t *delay = (int16_t *)memalign(16, fir_len * sizeof(int16_t)); + + const int repeat_count = 4; + const int16_t dec = 1; + const int16_t start_pos = 0; + const int16_t shift = 0; + int32_t output_len = 0; + + fir_s16_t fir1; + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = i; + } + + for (int i = 0 ; i < len ; i++) { + x[i] = 0; + } + x[0] = 1; + + esp_err_t status = dsps_fird_init_s16(&fir1, coeffs, delay, fir_len, dec, start_pos, shift); + error_msg_handler(&fir1, status); + + // Decimations 1, 2, 4, 8 + for (int i = 0 ; i < 4 ; i++) { + + output_len = (int32_t)(len / fir1.decim); + const unsigned int start_b = xthal_get_ccount(); + for (int i = 0 ; i < repeat_count ; i++) { + dsps_fird_s16_ansi(&fir1, x, y, output_len); + } + const unsigned int end_b = xthal_get_ccount(); + + const float total_b = end_b - start_b; + const float cycles = total_b / (len * repeat_count); + + ESP_LOGI(TAG, "total cycles %f per sample for %"PRId16" coefficients, decimation %"PRId16", %f per decim tap \n", + cycles, fir_len, fir1.decim, cycles / (float)fir_len * fir1.decim); + float min_exec = 10; + float max_exec = 1500; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + fir1.decim *= 2; + } + + dsps_fird_s16_aexx_free(&fir1); + free(x); + free(y); + free(coeffs); + free(delay); +} + + +TEST_CASE("dsps_fird_s16_ansi noise_snr", "[dsps]") +{ + + // In the SNR-noise test we are generating a sine wave signal, filtering the signal using a fixed point FIRD filter + // and do the FFT of the filtered signal. Afterward, a noise and SNR calculated from the FFT spectrum + + // FIR Coeffs + int16_t *s_coeffs = (int16_t *)memalign(16, fir_len * sizeof(int16_t)); // fixed point coefficients + int16_t *delay_line = (int16_t *)memalign(16, fir_len * sizeof(int16_t)); // fixed point delay line + float *f_coeffs = (float *)memalign(16, fir_len * sizeof(float)); // floating point coefficients + + // Coefficients windowing + dsps_wind_hann_f32(f_coeffs, fir_len); + const float fir_order = (float)fir_len - 1; + const float ft = 0.25; // sine frequency + for (int i = 0; i < fir_len; i++) { + f_coeffs[i] *= sinf((2 * M_PI * ft * (i - fir_order / 2))) / (M_PI * (i - fir_order / 2)); + } + + // FIR coefficients conversion to q15 + for (int i = 0; i < fir_len; i++) { + s_coeffs[i] = f_coeffs[i] * Q15_MAX; + } + + free(f_coeffs); + + // Signal generation + const float amplitude = 0.9; + const float frequency = 0.05; + const float phase = 0; + float *f_in_signal = (float *)memalign(16, fir_buffer * sizeof(float)); + dsps_tone_gen_f32(f_in_signal, fir_buffer, amplitude, frequency, phase); + + // Input signal conversion to q15 + int16_t *fir_x = (int16_t *)memalign(16, fir_buffer * sizeof(int16_t)); + int16_t *fir_y = (int16_t *)memalign(16, fir_buffer * sizeof(int16_t)); + for (int i = 0; i < fir_buffer; i++) { + fir_x[i] = f_in_signal[i] * (int16_t)Q15_MAX; + } + + free(f_in_signal); + + // FIR + const int16_t start_pos = 0; + const int16_t shift = 0; + const int32_t output_len = (int32_t)(fir_buffer / decim); + fir_s16_t fir1; + esp_err_t status = dsps_fird_init_s16(&fir1, s_coeffs, delay_line, fir_len, decim, start_pos, shift); + error_msg_handler(&fir1, status); + dsps_fird_s16_ansi(&fir1, fir_x, fir_y, output_len); + + free(delay_line); + free(s_coeffs); + free(fir_x); + + // FIR Output conversion to float + const unsigned int ignored_fir_samples = (FIR_BUFF_LEN / 2) - 1; + float *fir_output = (float *)memalign(16, len * sizeof(float)); + for (int i = 0; i < N_FFT; i++) { + fir_output[i] = (float)(fir_y[ignored_fir_samples + i] / (float)Q15_MAX); + } + + free(fir_y); + + // Signal windowing + float *window = (float *)memalign(16, N_FFT * sizeof(float)); + dsps_wind_blackman_f32(window, N_FFT); + + // Prepare FFT input, real and imaginary part + const int32_t fft_data_len = (N_IN_SAMPLES / DECIMATION) * 2; + float *fft_data = (float *)memalign(16, fft_data_len * sizeof(float)); + for (int i = 0 ; i < N_FFT ; i++) { + fft_data[i * 2 + 0] = fir_output[i] * window[i]; + fft_data[i * 2 + 1] = 0; + } + free(fir_output); + free(window); + + // Initialize FFT + esp_err_t ret = dsps_fft2r_init_fc32(NULL, N_FFT * 2); + TEST_ESP_OK(ret); + + // Do the FFT + dsps_fft2r_fc32(fft_data, N_FFT); + dsps_bit_rev_fc32(fft_data, N_FFT); + dsps_cplx2reC_fc32(fft_data, N_FFT); + + // Convert the FFT spectrum from amplitude to watts, find the max value and its position + float max_val = -1000000; + int max_pos = 0; + for (int i = 0 ; i < N_FFT / 2 ; i++) { + fft_data[i] = (fft_data[i * 2 + 0] * fft_data[i * 2 + 0] + fft_data[i * 2 + 1] * fft_data[i * 2 + 1]) / (N_FFT * 3); + if (fft_data[i] > max_val) { + max_val = fft_data[i]; + max_pos = i; + } + } + + // Calculate the power of the signal and noise of the spectrum and convert the spectrum to dB + float signal_pow = 0, noise_pow = 0; + for (int i = 0 ; i < N_FFT / 2 ; i++) { + if ((i >= max_pos - LEAKAGE_BINS) && (i <= max_pos + LEAKAGE_BINS)) { + signal_pow += fft_data[i]; + } else { + noise_pow += fft_data[i]; + } + + fft_data[i] = 10 * log10f(0.0000000000001 + fft_data[i]); + } + + // Convert the signal power and noise power to dB, calculate SNR + const float snr = 10 * log10f(signal_pow / noise_pow); + noise_pow = 10 * log10f(noise_pow); + signal_pow = 10 * log10f(signal_pow); + + ESP_LOGI(TAG, "\nSignal Power: \t%f\nNoise Power: \t%f\nSNR: \t\t%f", signal_pow, noise_pow, snr); + dsps_view(fft_data, N_FFT / 2, 128, 16, -140, 40, '|'); + free(fft_data); + + const float min_exec_snr = 50; + const float max_exec_snr = 120; + TEST_ASSERT_EXEC_IN_RANGE(min_exec_snr, max_exec_snr, snr); + dsps_fird_s16_aexx_free(&fir1); + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test_sim/main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test_sim/main.c new file mode 100644 index 0000000..85bfe0a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test_sim/main.c @@ -0,0 +1,12 @@ + +void test_fir(); + +int main(void) +{ + printf("main starts!\n"); +// xt_iss_profile_enable(); + test_fir(); +// xt_iss_profile_disable(); + + printf("Test done\n"); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test_sim/test_fir.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test_sim/test_fir.c new file mode 100644 index 0000000..86e5a99 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/fir/test_sim/test_fir.c @@ -0,0 +1,52 @@ +#include +#include +#include +#include + +#include "dsp_common.h" + +#include "dsps_fir.h" + +float x[1024]; +float y[1024]; +float y_compare[1024]; + +float coeffs[256]; +float delay[256]; +float delay_compare[256]; + + +void test_fir() +{ + int len = sizeof(x) / sizeof(float); + int fir_len = sizeof(coeffs) / sizeof(float); + + fir_f32_t fir1; + fir_f32_t fir2; + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = i; + } + + for (int i = 0 ; i < len ; i++) { + x[i] = 0; + } + x[0] = 1; + + for (int i = 0 ; i < fir_len ; i++) { + coeffs[i] = i; + } + + for (int i = 0 ; i < len ; i++) { + x[i] = i; + } + x[0] = 1; + dsps_fir_init_f32(&fir1, coeffs, delay, fir_len / 4); + dsps_fir_init_f32(&fir2, coeffs, delay_compare, fir_len); + + xt_iss_profile_enable(); + dsps_fir_f32_aes3(&fir1, x, y, len); + dsps_fir_f32_ansi(&fir2, x, y_compare, len); + xt_iss_profile_disable(); + + printf("Test Pass!\n"); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_ae32.S new file mode 100644 index 0000000..21fc832 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_ae32.S @@ -0,0 +1,89 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_biquad_platform.h" +#if (dsps_biquad_f32_ae32_enabled == 1) + +// This is bi quad filter form II for ESP32 processor. + .text + .align 4 + .global dsps_biquad_f32_ae32 + .type dsps_biquad_f32_ae32,@function +// The function implements the following C code: +//esp_err_t dsps_biquad_f32_ae32(const float* input, float* output, int len, float* coef, float* w) +// { +// for (int i=0 ; i< len ; i++) +// { +// float d0 = input[i] - coef[3]*w[0] - coef[4]*w[1]; (input[i] - a[1]*w[0] - a[2]*w[1];) +// output[i] = coef[0]*d0 + coef[1]*w[0] + coef[2]*w[1]; +// w[1] = w[0]; +// w[0] = d0; +// } +// return ESP_OK; +// } + +dsps_biquad_f32_ae32: +// input - a2 +// output - a3 +// len - a4 +// coeffs - a5 +// w- a6 + +// f0 - b0 +// f1 - b1 +// f2 - b2 +// f3 - a1 +// f4 - a2 + +// f5 - w0 +// f6 - w1 + + entry a1, 16 + // Array increment for floating point data should be 4 + lsi f0, a5, 0 + lsi f1, a5, 4 + lsi f2, a5, 8 + lsi f3, a5, 12 + lsi f4, a5, 16 + + + neg.s f5, f3 // -a[1] + neg.s f6, f4 // -a[2] + + lsi f7, a6, 0 // w[0] + lsi f8, a6, 4 // w[1] + + addi a3, a3, -4 // i-- // preset a3 + lsi f9, a2, 0 // f9 = x[i] + loopnez a4, loop_bq_end_m_ae32 + madd.s f9, f7, f5 // f9 += -a1*w0 + addi a3, a3, 4 // out++; + mul.s f10, f1, f7 // f10 = b1*w0 + madd.s f9, f8, f6 // f9 += -a2*w1 + madd.s f10, f9, f0 // f10 += b0*d0 + addi a2, a2, 4 // in++; + madd.s f10, f2, f8 // f10+= b2*w1, f10 - result + mov.s f8, f7 // w1 = w0 + mov.s f7, f9 // w0 = d0 + lsi f9, a2, 0 // f9 = x[i] + ssi f10, a3, 0 // y[i] = result +loop_bq_end_m_ae32: + // Store delay line + ssi f7, a6, 0 + ssi f8, a6, 4 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_biquad_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_aes3.S new file mode 100644 index 0000000..b012a17 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_aes3.S @@ -0,0 +1,89 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_biquad_platform.h" +#if (dsps_biquad_f32_aes3_enabled == 1) + +// This is bi quad filter form II for ESP32 processor. + .text + .align 4 + .global dsps_biquad_f32_aes3 + .type dsps_biquad_f32_aes3,@function +// The function implements the following C code: +//esp_err_t dsps_biquad_f32_aes3(const float* input, float* output, int len, float* coef, float* w) +// { +// for (int i=0 ; i< len ; i++) +// { +// float d0 = input[i] - coef[3]*w[0] - coef[4]*w[1]; (input[i] - a[1]*w[0] - a[2]*w[1];) +// output[i] = coef[0]*d0 + coef[1]*w[0] + coef[2]*w[1]; +// w[1] = w[0]; +// w[0] = d0; +// } +// return ESP_OK; +// } + +dsps_biquad_f32_aes3: +// input - a2 +// output - a3 +// len - a4 +// coeffs - a5 +// w- a6 + +// f0 - b0 +// f1 - b1 +// f2 - b2 +// f3 - a1 +// f4 - a2 + +// f5 - w0 +// f6 - w1 + + entry a1, 16 + // Array increment for floating point data should be 4 + lsi f0, a5, 0 + lsi f1, a5, 4 + lsi f2, a5, 8 + lsi f3, a5, 12 + lsi f4, a5, 16 + + + neg.s f5, f3 // -a[1] + neg.s f6, f4 // -a[2] + + lsi f7, a6, 0 // w[0] + lsi f8, a6, 4 // w[1] + + addi a3, a3, -4 // i-- // preset a3 + lsi f9, a2, 0 // f9 = x[i] + loopnez a4, .loop_bq_end_m_aes3 + madd.s f9, f7, f5 // f9 += -a1*w0 + addi a3, a3, 4 // out++; + mul.s f10, f1, f7 // f10 = b1*w0 + madd.s f9, f8, f6 // f9 += -a2*w1 + madd.s f10, f9, f0 // f10 += b0*d0 + addi a2, a2, 4 // in++; + madd.s f10, f2, f8 // f10+= b2*w1, f10 - result + mov.s f8, f7 // w1 = w0 + mov.s f7, f9 // w0 = d0 + lsi f9, a2, 0 // f9 = x[i] + ssi f10, a3, 0 // y[i] = result +.loop_bq_end_m_aes3: + // Store delay line + ssi f7, a6, 0 + ssi f8, a6, 4 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_biquad_f32_aes3_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_ansi.c new file mode 100644 index 0000000..9221698 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_f32_ansi.c @@ -0,0 +1,28 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#include "dsps_biquad.h" + + +esp_err_t dsps_biquad_f32_ansi(const float *input, float *output, int len, float *coef, float *w) +{ + for (int i = 0 ; i < len ; i++) { + float d0 = input[i] - coef[3] * w[0] - coef[4] * w[1]; + output[i] = coef[0] * d0 + coef[1] * w[0] + coef[2] * w[1]; + w[1] = w[0]; + w[0] = d0; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_gen_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_gen_f32.c new file mode 100644 index 0000000..282e629 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/biquad/dsps_biquad_gen_f32.c @@ -0,0 +1,290 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_biquad_gen.h" +#include +#include "esp_log.h" + +esp_err_t dsps_biquad_gen_lpf_f32(float *coeffs, float f, float qFactor) +{ + if (qFactor <= 0.0001) { + qFactor = 0.0001; + } + float Fs = 1; + + float w0 = 2 * M_PI * f / Fs; + float c = cosf(w0); + float s = sinf(w0); + float alpha = s / (2 * qFactor); + + float b0 = (1 - c) / 2; + float b1 = 1 - c; + float b2 = b0; + float a0 = 1 + alpha; + float a1 = -2 * c; + float a2 = 1 - alpha; + + coeffs[0] = b0 / a0; + coeffs[1] = b1 / a0; + coeffs[2] = b2 / a0; + coeffs[3] = a1 / a0; + coeffs[4] = a2 / a0; + return ESP_OK; +} + +esp_err_t dsps_biquad_gen_hpf_f32(float *coeffs, float f, float qFactor) +{ + if (qFactor <= 0.0001) { + qFactor = 0.0001; + } + float Fs = 1; + + float w0 = 2 * M_PI * f / Fs; + float c = cosf(w0); + float s = sinf(w0); + float alpha = s / (2 * qFactor); + + float b0 = (1 + c) / 2; + float b1 = -(1 + c); + float b2 = b0; + float a0 = 1 + alpha; + float a1 = -2 * c; + float a2 = 1 - alpha; + + coeffs[0] = b0 / a0; + coeffs[1] = b1 / a0; + coeffs[2] = b2 / a0; + coeffs[3] = a1 / a0; + coeffs[4] = a2 / a0; + return ESP_OK; +} + +esp_err_t dsps_biquad_gen_bpf_f32(float *coeffs, float f, float qFactor) +{ + if (qFactor <= 0.0001) { + qFactor = 0.0001; + } + float Fs = 1; + + float w0 = 2 * M_PI * f / Fs; + float c = cosf(w0); + float s = sinf(w0); + float alpha = s / (2 * qFactor); + + float b0 = s / 2; + float b1 = 0; + float b2 = -b0; + float a0 = 1 + alpha; + float a1 = -2 * c; + float a2 = 1 - alpha; + + coeffs[0] = b0 / a0; + coeffs[1] = b1 / a0; + coeffs[2] = b2 / a0; + coeffs[3] = a1 / a0; + coeffs[4] = a2 / a0; + return ESP_OK; +} + +esp_err_t dsps_biquad_gen_bpf0db_f32(float *coeffs, float f, float qFactor) +{ + if (qFactor <= 0.0001) { + qFactor = 0.0001; + } + float Fs = 1; + + float w0 = 2 * M_PI * f / Fs; + float c = cosf(w0); + float s = sinf(w0); + float alpha = s / (2 * qFactor); + + float b0 = alpha; + float b1 = 0; + float b2 = -alpha; + float a0 = 1 + alpha; + float a1 = -2 * c; + float a2 = 1 - alpha; + + coeffs[0] = b0 / a0; + coeffs[1] = b1 / a0; + coeffs[2] = b2 / a0; + coeffs[3] = a1 / a0; + coeffs[4] = a2 / a0; + return ESP_OK; +} + +esp_err_t dsps_biquad_gen_notch_f32(float *coeffs, float f, float gain, float qFactor) +{ + if (qFactor <= 0.0001) { + qFactor = 0.0001; + } + float Fs = 1; + + float A = sqrtf(pow(10, (double)gain / 20.0)); + float w0 = 2 * M_PI * f / Fs; + float c = cosf(w0); + float s = sinf(w0); + float alpha = s / (2 * qFactor); + + float b0 = 1 + alpha * A; + float b1 = -2 * c; + float b2 = 1 - alpha * A; + float a0 = 1 + alpha; + float a1 = -2 * c; + float a2 = 1 - alpha; + + coeffs[0] = b0 / a0; + coeffs[1] = b1 / a0; + coeffs[2] = b2 / a0; + coeffs[3] = a1 / a0; + coeffs[4] = a2 / a0; + return ESP_OK; +} + +esp_err_t dsps_biquad_gen_allpass360_f32(float *coeffs, float f, float qFactor) +{ + if (qFactor <= 0.0001) { + qFactor = 0.0001; + } + float Fs = 1; + + float w0 = 2 * M_PI * f / Fs; + float c = cosf(w0); + float s = sinf(w0); + float alpha = s / (2 * qFactor); + + float b0 = 1 - alpha; + float b1 = -2 * c; + float b2 = 1 + alpha; + float a0 = 1 + alpha; + float a1 = -2 * c; + float a2 = 1 - alpha; + + coeffs[0] = b0 / a0; + coeffs[1] = b1 / a0; + coeffs[2] = b2 / a0; + coeffs[3] = a1 / a0; + coeffs[4] = a2 / a0; + return ESP_OK; +} + +esp_err_t dsps_biquad_gen_allpass180_f32(float *coeffs, float f, float qFactor) +{ + if (qFactor <= 0.0001) { + qFactor = 0.0001; + } + float Fs = 1; + + float w0 = 2 * M_PI * f / Fs; + float c = cosf(w0); + float s = sinf(w0); + float alpha = s / (2 * qFactor); + + float b0 = 1 - alpha; + float b1 = -2 * c; + float b2 = 1 + alpha; + float a0 = 1 + alpha; + float a1 = -2 * c; + float a2 = 1 - alpha; + + coeffs[0] = b0 / a0; + coeffs[1] = b1 / a0; + coeffs[2] = b2 / a0; + coeffs[3] = a1 / a0; + coeffs[4] = a2 / a0; + return ESP_OK; +} + +esp_err_t dsps_biquad_gen_peakingEQ_f32(float *coeffs, float f, float qFactor) +{ + if (qFactor <= 0.0001) { + qFactor = 0.0001; + } + float Fs = 1; + + float w0 = 2 * M_PI * f / Fs; + float c = cosf(w0); + float s = sinf(w0); + float alpha = s / (2 * qFactor); + + float b0 = alpha; + float b1 = 0; + float b2 = -alpha; + float a0 = 1 + alpha; + float a1 = -2 * c; + float a2 = 1 - alpha; + + coeffs[0] = b0 / a0; + coeffs[1] = b1 / a0; + coeffs[2] = b2 / a0; + coeffs[3] = a1 / a0; + coeffs[4] = a2 / a0; + return ESP_OK; +} + +esp_err_t dsps_biquad_gen_lowShelf_f32(float *coeffs, float f, float gain, float qFactor) +{ + if (qFactor <= 0.0001) { + qFactor = 0.0001; + } + float Fs = 1; + + float A = sqrtf(pow(10, (double)gain / 20.0)); + float w0 = 2 * M_PI * f / Fs; + float c = cosf(w0); + float s = sinf(w0); + float alpha = s / (2 * qFactor); + + float b0 = A * ((A + 1) - (A - 1) * c + 2 * sqrtf(A) * alpha); + float b1 = 2 * A * ((A - 1) - (A + 1) * c); + float b2 = A * ((A + 1) - (A - 1) * c - 2 * sqrtf(A) * alpha); + float a0 = (A + 1) + (A - 1) * c + 2 * sqrtf(A) * alpha; + float a1 = -2 * ((A - 1) + (A + 1) * c); + float a2 = (A + 1) + (A - 1) * c - 2 * sqrtf(A) * alpha; + + coeffs[0] = b0 / a0; + coeffs[1] = b1 / a0; + coeffs[2] = b2 / a0; + coeffs[3] = a1 / a0; + coeffs[4] = a2 / a0; + return ESP_OK; +} + +esp_err_t dsps_biquad_gen_highShelf_f32(float *coeffs, float f, float gain, float qFactor) +{ + if (qFactor <= 0.0001) { + qFactor = 0.0001; + } + float Fs = 1; + + float A = sqrtf(pow(10, (double)gain / 20.0)); + float w0 = 2 * M_PI * f / Fs; + float c = cosf(w0); + float s = sinf(w0); + float alpha = s / (2 * qFactor); + + float b0 = A * ((A + 1) + (A - 1) * c + 2 * sqrtf(A) * alpha); + float b1 = -2 * A * ((A - 1) + (A + 1) * c); + float b2 = A * ((A + 1) + (A - 1) * c - 2 * sqrtf(A) * alpha); + float a0 = (A + 1) - (A - 1) * c + 2 * sqrtf(A) * alpha; + float a1 = 2 * ((A - 1) - (A + 1) * c); + float a2 = (A + 1) - (A - 1) * c - 2 * sqrtf(A) * alpha; + + coeffs[0] = b0 / a0; + coeffs[1] = b1 / a0; + coeffs[2] = b2 / a0; + coeffs[3] = a1 / a0; + coeffs[4] = a2 / a0; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include/dsps_biquad.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include/dsps_biquad.h new file mode 100644 index 0000000..0061b67 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include/dsps_biquad.h @@ -0,0 +1,73 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef _dsps_biquad_H_ +#define _dsps_biquad_H_ + +#include "dsp_err.h" + +#include "dsps_biquad_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/**@{*/ +/** + * @brief IIR filter + * + * IIR filter 2nd order direct form II (bi quad) + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] input: input array + * @param output: output array + * @param len: length of input and output vectors + * @param coef: array of coefficients. b0,b1,b2,a1,a2 + * expected that a0 = 1. b0..b2 - numerator, a0..a2 - denominator + * @param w: delay line w0,w1. Length of 2. + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_biquad_f32_ansi(const float *input, float *output, int len, float *coef, float *w); +esp_err_t dsps_biquad_f32_ae32(const float *input, float *output, int len, float *coef, float *w); +esp_err_t dsps_biquad_f32_aes3(const float *input, float *output, int len, float *coef, float *w); +/**@}*/ + + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED + +#if (dsps_biquad_f32_ae32_enabled == 1) +#define dsps_biquad_f32 dsps_biquad_f32_ae32 +#elif (dsps_biquad_f32_aes3_enabled == 1) +#define dsps_biquad_f32 dsps_biquad_f32_aes3 +#else +#define dsps_biquad_f32 dsps_biquad_f32_ansi +#endif + +#else // CONFIG_DSP_OPTIMIZED + +#define dsps_biquad_f32 dsps_biquad_f32_ansi + +#endif // CONFIG_DSP_OPTIMIZED + + +#endif // _dsps_biquad_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include/dsps_biquad_gen.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include/dsps_biquad_gen.h new file mode 100644 index 0000000..03cf730 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include/dsps_biquad_gen.h @@ -0,0 +1,200 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_biquad_gen_H_ +#define _dsps_biquad_gen_H_ + +#include "dsp_err.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +// Common rules for all generated coefficients. +// The coefficients placed to the array as follows: +// coeffs[0] = b0; +// coeffs[1] = b1; +// coeffs[2] = b2; +// coeffs[3] = a1; +// coeffs[4] = a2; +// a0 - are not placed and expected always as == 1 + +/** + * @brief LPF IIR filter coefficients + * Coefficients for low pass 2nd order IIR filter (bi-quad) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param coeffs: result coefficients. b0,b1,b2,a1,a2, a0 are not placed to the array and expected by IIR as 1 + * @param f: filter cut off frequency in range of 0..0.5 (normalized to sample frequency) + * @param qFactor: Q factor of filter + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_biquad_gen_lpf_f32(float *coeffs, float f, float qFactor); + +/** + * @brief HPF IIR filter coefficients + * + * Coefficients for high pass 2nd order IIR filter (bi-quad) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param coeffs: result coefficients. b0,b1,b2,a1,a2, a0 are not placed to the array and expected by IIR as 1 + * @param f: filter cut off frequency in range of 0..0.5 (normalized to sample frequency) + * @param qFactor: Q factor of filter + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_biquad_gen_hpf_f32(float *coeffs, float f, float qFactor); + +/** + * @brief BPF IIR filter coefficients + * + * Coefficients for band pass 2nd order IIR filter (bi-quad) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param coeffs: result coefficients. b0,b1,b2,a1,a2, a0 are not placed to the array and expected by IIR as 1 + * @param f: filter center frequency in range of 0..0.5 (normalized to sample frequency) + * @param qFactor: Q factor of filter + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_biquad_gen_bpf_f32(float *coeffs, float f, float qFactor); + +/** + * @brief 0 dB BPF IIR filter coefficients + * + * Coefficients for band pass 2nd order IIR filter (bi-quad) with 0 dB gain in passband + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param coeffs: result coefficients. b0,b1,b2,a1,a2, a0 are not placed to the array and expected by IIR as 1 + * @param f: filter center frequency in range of 0..0.5 (normalized to sample frequency) + * @param qFactor: Q factor of filter + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_biquad_gen_bpf0db_f32(float *coeffs, float f, float qFactor); + +/** + * @brief Notch IIR filter coefficients + * + * Coefficients for notch 2nd order IIR filter (bi-quad) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param coeffs: result coefficients. b0,b1,b2,a1,a2, a0 are not placed to the array and expected by IIR as 1 + * @param f: filter notch frequency in range of 0..0.5 (normalized to sample frequency) + * @param gain: gain in stopband in dB + * @param qFactor: Q factor of filter + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_biquad_gen_notch_f32(float *coeffs, float f, float gain, float qFactor); + +/** + * @brief Allpass 360 degree IIR filter coefficients + * + * Coefficients for all pass 2nd order IIR filter (bi-quad) with 360 degree phase shift + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param coeffs: result coefficients. b0,b1,b2,a1,a2, a0 are not placed to the array and expected by IIR as 1 + * @param f: filter notch frequency in range of 0..0.5 (normalized to sample frequency) + * @param qFactor: Q factor of filter + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_biquad_gen_allpass360_f32(float *coeffs, float f, float qFactor); + +/** + * @brief Allpass 180 degree IIR filter coefficients + * + * Coefficients for all pass 2nd order IIR filter (bi-quad) with 180 degree phase shift + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param coeffs: result coefficients. b0,b1,b2,a1,a2, a0 are not placed to the array and expected by IIR as 1 + * @param f: filter notch frequency in range of 0..0.5 (normalized to sample frequency) + * @param qFactor: Q factor of filter + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_biquad_gen_allpass180_f32(float *coeffs, float f, float qFactor); + +/** + * @brief peak IIR filter coefficients + * + * Coefficients for peak 2nd order IIR filter (bi-quad) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param coeffs: result coefficients. b0,b1,b2,a1,a2, a0 are not placed to the array and expected by IIR as 1 + * @param f: filter notch frequency in range of 0..0.5 (normalized to sample frequency) + * @param qFactor: Q factor of filter + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_biquad_gen_peakingEQ_f32(float *coeffs, float f, float qFactor); + +/** + * @brief low shelf IIR filter coefficients + * + * Coefficients for low pass Shelf 2nd order IIR filter (bi-quad) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param coeffs: result coefficients. b0,b1,b2,a1,a2, a0 are not placed to the array and expected by IIR as 1 + * @param f: filter notch frequency in range of 0..0.5 (normalized to sample frequency) + * @param gain: gain in stopband in dB + * @param qFactor: Q factor of filter + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_biquad_gen_lowShelf_f32(float *coeffs, float f, float gain, float qFactor); + +/** + * @brief high shelf IIR filter coefficients + * + * Coefficients for high pass Shelf 2nd order IIR filter (bi-quad) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param coeffs: result coefficients. b0,b1,b2,a1,a2, a0 are not placed to the array and expected by IIR as 1 + * @param f: filter notch frequency in range of 0..0.5 (normalized to sample frequency) + * @param gain: gain in stopband in dB + * @param qFactor: Q factor of filter + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_biquad_gen_highShelf_f32(float *coeffs, float f, float gain, float qFactor); + +#ifdef __cplusplus +} +#endif + +#endif // _dsps_biquad_gen_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include/dsps_biquad_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include/dsps_biquad_platform.h new file mode 100644 index 0000000..a77da36 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/include/dsps_biquad_platform.h @@ -0,0 +1,25 @@ +#ifndef _dsps_biquad_platform_H_ +#define _dsps_biquad_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dsps_biquad_f32_ae32_enabled 1 + +#endif + +#if CONFIG_IDF_TARGET_ESP32S3 +#define dsps_biquad_f32_aes3_enabled 1 +#else +#define dsps_biquad_f32_aes3_enabled 0 +#endif + +#endif // __XTENSA__ + + +#endif // _dsps_biquad_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test/test_bq_f32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test/test_bq_f32_ae32.c new file mode 100644 index 0000000..b712b3a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test/test_bq_f32_ae32.c @@ -0,0 +1,102 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_tone_gen.h" +#include "dsps_d_gen.h" +#include "dsps_biquad_gen.h" +#include "dsps_biquad.h" + +static const char *TAG = "dsps_biquad_f32_ae32"; +const int bq_len = 1024; +TEST_CASE("dsps_biquad_f32_ae32 functionality", "[dsps]") +{ + float *x = calloc(bq_len, sizeof(float)); + float *y = calloc(bq_len, sizeof(float)); + float *z = calloc(bq_len, sizeof(float)); + + // In the test we generate filter with cutt off frequency 0.1 + // and then filtering 0.1 and 0.3 frequencis. + // Result must be better then 24 dB + int len = bq_len; + + dsps_d_gen_f32(x, len, 0); + float coeffs[5]; + float w1[2] = {0}; + float w2[2] = {0}; + dsps_biquad_gen_lpf_f32(coeffs, 0.1, 1); + dsps_biquad_f32_ae32(x, y, len, coeffs, w1); + dsps_biquad_f32_ansi(x, z, len, coeffs, w2); + + for (int i = 0 ; i < 32 ; i++) { + ESP_LOGD(TAG, "[%i]calc = %f, expected=%f", i, y[i], z[i]); + if (y[i] != z[i]) { + TEST_ASSERT_EQUAL( y[i], z[i]); + } + } + free(x); + free(y); + free(z); +} + +TEST_CASE("dsps_biquad_f32_ae32 benchmark", "[dsps]") +{ + float *x = calloc(bq_len, sizeof(float)); + float *y = calloc(bq_len, sizeof(float)); + float *z = calloc(bq_len, sizeof(float)); + + float w1[2] = {0}; + int len = bq_len; + int repeat_count = 1024; + dsps_d_gen_f32(x, len, 0); + float coeffs[5]; + dsps_biquad_gen_lpf_f32(coeffs, 0.1, 1); + + + unsigned int start_b = xthal_get_ccount(); + for (int i = 0 ; i < repeat_count ; i++) { + dsps_biquad_f32_ae32(x, y, len, coeffs, w1); + } + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (len * repeat_count); + + start_b = xthal_get_ccount(); + for (int i = 0 ; i < repeat_count ; i++) { + dsps_biquad_f32_ansi(x, y, len, coeffs, w1); + } + end_b = xthal_get_ccount(); + float total_b_ansi = end_b - start_b; + float cycles_ansi = total_b_ansi / (len * repeat_count); + + ESP_LOGI(TAG, "dsps_biquad_f32_ae32 - %f per sample\n", cycles); + ESP_LOGI(TAG, "dsps_biquad_f32_ansi - %f per sample\n", cycles_ansi); + // float min_exec = 10; + // float max_exec = 20; + // if (cycles >= max_exec) { + // TEST_ASSERT_MESSAGE (false, "Exec time takes more than expected!"); + // } + // if (cycles < min_exec) { + // TEST_ASSERT_MESSAGE (false, "Exec time takes less then expected!"); + // } + free(x); + free(y); + free(z); + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test/test_bq_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test/test_bq_f32_ansi.c new file mode 100644 index 0000000..feea3ea --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test/test_bq_f32_ansi.c @@ -0,0 +1,63 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_tone_gen.h" +#include "dsps_d_gen.h" +#include "dsps_biquad_gen.h" +#include "dsps_biquad.h" + +static const char *TAG = "dsps_biquad_f32_ansi"; + +float x[1024]; +float y[1024]; + +TEST_CASE("dsps_biquad_f32_ansi functionality", "[dsps]") +{ + // In the test we generate filter with cutt off frequency 0.1 + // and then filtering 0.1 and 0.3 frequencis. + // Result must be better then 24 dB + int len = sizeof(x) / sizeof(float); + + dsps_tone_gen_f32(x, len, 1, 0.1, 0); + + float coeffs[5]; + float w1[2] = {0}; + float w2[2] = {0}; + dsps_biquad_gen_lpf_f32(coeffs, 0.1, 1); + dsps_biquad_f32_ansi(x, y, len, coeffs, w1); + float pow_band = 0; + for (int i = len / 2 ; i < len ; i++) { + pow_band += y[i] * y[i]; + } + float pow_out_band = 0; + dsps_tone_gen_f32(x, len, 1, 0.3, 0); + dsps_biquad_f32_ansi(x, y, len, coeffs, w2); + for (int i = len / 2 ; i < len ; i++) { + pow_out_band += y[i] * y[i]; + } + pow_band = 2 * pow_band / (float)len; + pow_out_band = 2 * pow_out_band / (float)len; + float diff_db = -10 * log10f(0.000000001 + pow_out_band / pow_band); + ESP_LOGI(TAG, "Power: pass =%f, stop= %f, diff = %f dB", pow_band, pow_out_band, diff_db); + + if (diff_db < 24) { + ESP_LOGE(TAG, "Attenuation for LPF must be not less then 24! Now it is: %f", diff_db); + TEST_ASSERT_MESSAGE (false, "LPF attenuation is less then expected"); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test_sim/main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test_sim/main.c new file mode 100644 index 0000000..569fb04 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test_sim/main.c @@ -0,0 +1,12 @@ + +void test_iir_biquad(); + +int main(void) +{ + printf("main starts!\n"); +// xt_iss_profile_enable(); + test_iir_biquad(); +// xt_iss_profile_disable(); + + printf("Test done\n"); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test_sim/test_iir_biquad.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test_sim/test_iir_biquad.c new file mode 100644 index 0000000..61a2733 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/iir/test_sim/test_iir_biquad.c @@ -0,0 +1,56 @@ +#include +#include +#include +#include + +#include "dsp_common.h" + +#include "dsps_biquad.h" + +#define N_SAMPLES 1024 +int N = N_SAMPLES; +// Input test array +float d[N_SAMPLES]; +// output array +float y[N_SAMPLES]; +float y_ref[N_SAMPLES]; + +extern void xt_iss_profile_disable(); +extern void xt_iss_profile_enable(); +esp_err_t dsps_biquad_f32_aes3(const float *input, float *output, int len, float *coef, float *w); + +void test_iir_biquad() +{ + float coeffs_lpf[5] = {0.073802, 0.147603, 0.073802, -1.250516, 0.545723}; + float w_lpf[5] = {0, 0}; + float w_lpf_ref[5] = {0, 0}; + esp_err_t ret = ESP_OK; + + for (size_t i = 0; i < N; i++) { + d[i] = 0; + } + d[0] = 1; + xt_iss_profile_enable(); + ret = dsps_biquad_f32_ansi(d, y_ref, N, coeffs_lpf, w_lpf_ref); + xt_iss_profile_disable(); + if (ret != ESP_OK) { + printf("dsps_biquad_f32 error = %i\n", ret); + return; + } + xt_iss_profile_enable(); + ret = dsps_biquad_f32_aes3(d, y, N, coeffs_lpf, w_lpf); + xt_iss_profile_disable(); + if (ret != ESP_OK) { + printf("dsps_biquad_f32 error = %i\n", ret); + return; + } + for (size_t i = 0; i < N; i++) { + if (((y[i] - y_ref[i]) > 0.0000001) || (y[i] - y_ref[i]) < -0.0000001) { + printf("ERROR result[%i]: %f, expect = %f, diff=%f\n", i, y[i], y_ref[i], y[i] - y_ref[i]); + return; + + } + } + printf("Test Correct!\n"); + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/CMakeLists.txt b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/CMakeLists.txt new file mode 100644 index 0000000..268c5b3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/CMakeLists.txt @@ -0,0 +1,5 @@ +set(COMPONENT_SRCS "common/ekf.cpp") + +set(COMPONENT_ADD_INCLUDEDIRS "include") + +register_component() diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/common/ekf.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/common/ekf.cpp new file mode 100644 index 0000000..169085f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/common/ekf.cpp @@ -0,0 +1,415 @@ +// Copyright 2020-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "ekf.h" +#include + +ekf::ekf(int x, int w) : NUMX(x), + NUMW(w), + X(*new dspm::Mat(x, 1)), + + F(*new dspm::Mat(x, x)), + G(*new dspm::Mat(x, w)), + P(*new dspm::Mat(x, x)), + Q(*new dspm::Mat(w, w)) +{ + + this->P *= 0; + this->Q *= 0; + this->X *= 0; + this->X.data[0] = 1; // direction to 0 + this->HP = new float[this->NUMX]; + this->Km = new float[this->NUMX]; + for (size_t i = 0; i < this->NUMX; i++) { + this->HP[i] = 0; + this->Km[i] = 0; + } +} + +ekf::~ekf() +{ + delete &X; + delete &F; + delete &G; + delete &P; + delete &Q; + + delete this->HP; + delete this->Km; +} + +void ekf::Process(float *u, float dt) +{ + this->LinearizeFG(this->X, (float *)u); + this->RungeKutta(this->X, u, dt); + this->CovariancePrediction(dt); +} + +void ekf::RungeKutta(dspm::Mat &x, float *U, float dt) +{ + + float dt2 = dt / 2.0f; + + dspm::Mat Xlast = x; // make a working copy + dspm::Mat K1 = StateXdot(x, U); // k1 = f(x, u) + x = Xlast + (K1 * dt2); + + dspm::Mat K2 = StateXdot(x, U); // k2 = f(x + 0.5*dT*k1, u) + x = Xlast + K2 * dt2; + + dspm::Mat K3 = StateXdot(x, U); // k3 = f(x + 0.5*dT*k2, u) + x = Xlast + K3 * dt; + + dspm::Mat K4 = StateXdot(x, U); // k4 = f(x + dT * k3, u) + + // Xnew = X + dT * (k1 + 2 * k2 + 2 * k3 + k4) / 6 + x = Xlast + (K1 + 2.0f * K2 + 2.0f * K3 + K4) * (dt / 6.0f); +} + +dspm::Mat ekf::SkewSym4x4(float w[3]) +{ + //={ 0, -w[0], -w[1], -w[2], + // w[0], 0, w[2], -w[1], + // w[1], -w[2], 0, w[0], + // w[2], w[1], -w[0], 0 }; + + dspm::Mat result(4, 4); + result.data[0] = 0; + result.data[1] = -w[0]; + result.data[2] = -w[1]; + result.data[3] = -w[2]; + + result.data[4] = w[0]; + result.data[5] = 0; + result.data[6] = w[2]; + result.data[7] = -w[1]; + + result.data[8] = w[1]; + result.data[9] = -w[2]; + result.data[10] = 0; + result.data[11] = w[0]; + + result.data[12] = w[2]; + result.data[13] = w[1]; + result.data[14] = -w[0]; + result.data[15] = 0; + + return result; +} + +dspm::Mat ekf::qProduct(float *q) +{ + dspm::Mat result(4, 4); + + result.data[0] = q[0]; + result.data[1] = -q[1]; + result.data[2] = -q[2]; + result.data[3] = -q[3]; + + result.data[4] = q[1]; + result.data[5] = q[0]; + result.data[6] = -q[3]; + result.data[7] = q[2]; + + result.data[8] = q[2]; + result.data[9] = q[3]; + result.data[10] = q[0]; + result.data[11] = -q[1]; + + result.data[12] = q[3]; + result.data[13] = -q[2]; + result.data[14] = q[1]; + result.data[15] = q[0]; + + return result; +} + +void ekf::CovariancePrediction(float dt) +{ + dspm::Mat f = this->F * dt; + + f = f + dspm::Mat::eye(this->NUMX); + + dspm::Mat f_t = f.t(); + this->P = ((f * this->P) * f_t) + (dt * dt) * ((G * Q) * G.t()); +} + +void ekf::Update(dspm::Mat &H, float *measured, float *expected, float *R) +{ + float HPHR, Error; + dspm::Mat Y(measured, H.rows, 1); + dspm::Mat Z(expected, H.rows, 1); + + for (int m = 0; m < H.rows; m++) { + for (int j = 0; j < this->NUMX; j++) { + // Find Hp = H*P + HP[j] = 0; + } + for (int k = 0; k < this->NUMX; k++) { + for (int j = 0; j < this->NUMX; j++) { + // Find Hp = H*P + HP[j] += H(m, k) * P(k, j); + } + } + HPHR = R[m]; // Find HPHR = H*P*H' + R + for (int k = 0; k < this->NUMX; k++) { + HPHR += HP[k] * H(m, k); + } + float invHPHR = 1.0f / HPHR; + for (int k = 0; k < this->NUMX; k++) { + Km[k] = HP[k] * invHPHR; // find K = HP/HPHR + } + for (int i = 0; i < this->NUMX; i++) { + // Find P(m)= P(m-1) + K*HP + for (int j = i; j < NUMX; j++) { + P(i, j) = P(j, i) = P(i, j) - Km[i] * HP[j]; + } + } + + Error = Y(m, 0) - Z(m, 0); + for (int i = 0; i < this->NUMX; i++) { + // Find X(m)= X(m-1) + K*Error + X(i, 0) = X(i, 0) + Km[i] * Error; + } + } +} + +void ekf::UpdateRef(dspm::Mat &H, float *measured, float *expected, float *R) +{ + dspm::Mat h_t = H.t(); + dspm::Mat S = H * P * h_t; // +diag(R); + for (size_t i = 0; i < H.rows; i++) { + S(i, i) += R[i]; + } + + dspm::Mat S_ = S.pinv(); // 1 / S + + dspm::Mat K = (P * h_t) * S_; + this->P = (dspm::Mat::eye(this->NUMX) - K * H) * P; + + dspm::Mat Y(measured, H.rows, 1); + dspm::Mat Z(expected, H.rows, 1); + + dspm::Mat Err = Y - Z; + this->X += (K * Err); +} + +dspm::Mat ekf::quat2rotm(float q[4]) +{ + float q0 = q[0]; + float q1 = q[1]; + float q2 = q[2]; + float q3 = q[3]; + dspm::Mat Rm(3, 3); + + Rm(0, 0) = q0 * q0 + q1 * q1 - q2 * q2 - q3 * q3; + Rm(1, 0) = 2.0f * (q1 * q2 + q0 * q3); + Rm(2, 0) = 2.0f * (q1 * q3 - q0 * q2); + Rm(0, 1) = 2.0f * (q1 * q2 - q0 * q3); + Rm(1, 1) = (q0 * q0 - q1 * q1 + q2 * q2 - q3 * q3); + Rm(2, 1) = 2.0f * (q2 * q3 + q0 * q1); + Rm(0, 2) = 2.0f * (q1 * q3 + q0 * q2); + Rm(1, 2) = 2.0f * (q2 * q3 - q0 * q1); + Rm(2, 2) = (q0 * q0 - q1 * q1 - q2 * q2 + q3 * q3); + + return Rm; +} + +dspm::Mat ekf::quat2eul(const float q[4]) +{ + dspm::Mat result(3, 1); + float R13, R11, R12, R23, R33; + float q0s = q[0] * q[0]; + float q1s = q[1] * q[1]; + float q2s = q[2] * q[2]; + float q3s = q[3] * q[3]; + + R13 = 2.0f * (q[1] * q[3] + q[0] * q[2]); + R11 = q0s + q1s - q2s - q3s; + R12 = -2.0f * (q[1] * q[2] - q[0] * q[3]); + R23 = -2.0f * (q[2] * q[3] - q[0] * q[1]); + R33 = q0s - q1s - q2s + q3s; + + result.data[1] = (asinf(R13)); + result.data[2] = (atan2f(R12, R11)); + result.data[0] = (atan2f(R23, R33)); + return result; +} + +dspm::Mat ekf::eul2rotm(float xyz[3]) +{ + dspm::Mat result(3, 3); + float Cx = std::cos(xyz[0]); + float Sx = std::sin(xyz[0]); + float Cy = std::cos(xyz[1]); + float Sy = std::sin(xyz[1]); + float Cz = std::cos(xyz[2]); + float Sz = std::sin(xyz[2]); + + result(0, 0) = Cy * Cz; + result(0, 1) = -Cy * Sz; + result(0, 2) = Sy; + + result(1, 0) = Cz * Sx * Sy + Cx * Sz; + result(1, 1) = Cx * Cz - Sx * Sy * Sz; + result(1, 2) = -Cy * Sx; + + result(2, 0) = -Cx * Cz * Sy + Sx * Sz; + result(2, 1) = Cz * Sx + Cx * Sy * Sz; + result(2, 2) = Cx * Cy; + return result; +} + +#ifndef FLT_EPSILON +#define FLT_EPSILON 1.192092896e-07F +#endif // FLT_EPSILON + +dspm::Mat ekf::rotm2eul(dspm::Mat &rotm) +{ + dspm::Mat result(3, 1); + float x, y, z; +// float cy = sqrtf(rotm(2, 2) * rotm(2, 2) + rotm(2, 0) * rotm(2, 0)); + float cy = sqrtf(rotm(2, 2) * rotm(2, 2) + rotm(1, 2) * rotm(1, 2)); + if (cy > 16 * FLT_EPSILON) { + x = -atan2f(rotm(1, 2), rotm(2, 2)); + y = -atan2f(-rotm(0, 2), (float)cy); + z = -atan2f(rotm(0, 1), rotm(0, 0)); + } else { + z = -atan2f(-rotm(1, 0), rotm(1, 1)); + y = -atan2f(-rotm(0, 2), (float)cy); + x = 0; + } + result(0, 0) = x; + result(1, 0) = y; + result(2, 0) = z; + return result; +} + +static inline float SIGN(float x) +{ + return (x >= 0.0f) ? +1.0f : -1.0f; +} + +dspm::Mat ekf::rotm2quat(dspm::Mat &m) +{ + float r11 = m(0, 0); + float r12 = m(0, 1); + float r13 = m(0, 2); + float r21 = m(1, 0); + float r22 = m(1, 1); + float r23 = m(1, 2); + float r31 = m(2, 0); + float r32 = m(2, 1); + float r33 = m(2, 2); + float q0 = (r11 + r22 + r33 + 1.0f) / 4.0f; + float q1 = (r11 - r22 - r33 + 1.0f) / 4.0f; + float q2 = (-r11 + r22 - r33 + 1.0f) / 4.0f; + float q3 = (-r11 - r22 + r33 + 1.0f) / 4.0f; + if (q0 < 0.0f) { + q0 = 0.0f; + } + if (q1 < 0.0f) { + q1 = 0.0f; + } + if (q2 < 0.0f) { + q2 = 0.0f; + } + if (q3 < 0.0f) { + q3 = 0.0f; + } + q0 = sqrt(q0); + q1 = sqrt(q1); + q2 = sqrt(q2); + q3 = sqrt(q3); + if (q0 >= q1 && q0 >= q2 && q0 >= q3) { + q0 *= +1.0f; + q1 *= SIGN(r32 - r23); + q2 *= SIGN(r13 - r31); + q3 *= SIGN(r21 - r12); + } else if (q1 >= q0 && q1 >= q2 && q1 >= q3) { + q0 *= SIGN(r32 - r23); + q1 *= +1.0f; + q2 *= SIGN(r21 + r12); + q3 *= SIGN(r13 + r31); + } else if (q2 >= q0 && q2 >= q1 && q2 >= q3) { + q0 *= SIGN(r13 - r31); + q1 *= SIGN(r21 + r12); + q2 *= +1.0f; + q3 *= SIGN(r32 + r23); + } else if (q3 >= q0 && q3 >= q1 && q3 >= q2) { + q0 *= SIGN(r21 - r12); + q1 *= SIGN(r31 + r13); + q2 *= SIGN(r32 + r23); + q3 *= +1.0f; + } + + dspm::Mat res(4, 1); + res(0, 0) = q0; + res(1, 0) = q1; + res(2, 0) = q2; + res(3, 0) = q3; + res /= res.norm(); + return res; +} + +dspm::Mat ekf::dFdq(dspm::Mat &vector, dspm::Mat &q) +{ + dspm::Mat result(3, 4); + result(0, 0) = q.data[0] * vector.data[0] - q.data[3] * vector.data[1] + q.data[2] * vector.data[2]; + result(0, 1) = q.data[1] * vector.data[0] + q.data[2] * vector.data[1] + q.data[3] * vector.data[2]; + result(0, 2) = -q.data[2] * vector.data[0] + q.data[1] * vector.data[1] + q.data[0] * vector.data[2]; + result(0, 3) = -q.data[3] * vector.data[0] - q.data[0] * vector.data[1] + q.data[1] * vector.data[2]; + + result(1, 0) = q.data[3] * vector.data[0] + q.data[0] * vector.data[1] - q.data[1] * vector.data[2]; + result(1, 1) = q.data[2] * vector.data[0] - q.data[1] * vector.data[1] - q.data[0] * vector.data[2]; + result(1, 2) = q.data[1] * vector.data[0] + q.data[2] * vector.data[1] + q.data[3] * vector.data[2]; + result(1, 3) = q.data[0] * vector.data[0] - q.data[3] * vector.data[1] + q.data[2] * vector.data[2]; + + result(2, 0) = -q.data[2] * vector.data[0] + q.data[1] * vector.data[1] + q.data[0] * vector.data[2]; + result(2, 1) = q.data[3] * vector.data[0] + q.data[0] * vector.data[1] - q.data[1] * vector.data[2]; + result(2, 2) = -q.data[0] * vector.data[0] + q.data[3] * vector.data[1] - q.data[2] * vector.data[2]; + result(2, 3) = q.data[1] * vector.data[0] + q.data[2] * vector.data[1] + q.data[3] * vector.data[2]; + + result *= 2; + return result; +} + +dspm::Mat ekf::dFdq_inv(dspm::Mat &vector, dspm::Mat &q) +{ + dspm::Mat result(3, 4); + result(0, 0) = q.data[0] * vector.data[0] + q.data[3] * vector.data[1] - q.data[2] * vector.data[2]; + result(0, 1) = q.data[1] * vector.data[0] + q.data[2] * vector.data[1] + q.data[3] * vector.data[2]; + result(0, 2) = -q.data[2] * vector.data[0] + q.data[1] * vector.data[1] - q.data[0] * vector.data[2]; + result(0, 3) = -q.data[3] * vector.data[0] + q.data[0] * vector.data[1] + q.data[1] * vector.data[2]; + + result(1, 0) = -q.data[3] * vector.data[0] + q.data[0] * vector.data[1] + q.data[1] * vector.data[2]; + result(1, 1) = q.data[2] * vector.data[0] - q.data[1] * vector.data[1] + q.data[0] * vector.data[2]; + result(1, 2) = q.data[1] * vector.data[0] + q.data[2] * vector.data[1] + q.data[3] * vector.data[2]; + result(1, 3) = -q.data[0] * vector.data[0] - q.data[3] * vector.data[1] + q.data[2] * vector.data[2]; + + result(2, 0) = q.data[2] * vector.data[0] - q.data[1] * vector.data[1] + q.data[0] * vector.data[2]; + result(2, 1) = q.data[3] * vector.data[0] - q.data[0] * vector.data[1] - q.data[1] * vector.data[2]; + result(2, 2) = q.data[0] * vector.data[0] + q.data[3] * vector.data[1] - q.data[2] * vector.data[2]; + result(2, 3) = q.data[1] * vector.data[0] + q.data[2] * vector.data[1] + q.data[3] * vector.data[2]; + + result *= 2; + return result; +} + +dspm::Mat ekf::StateXdot(dspm::Mat &x, float *u) +{ + dspm::Mat U(u, this->G.cols, 1); + dspm::Mat Xdot = (this->F * x + this->G * U); + return Xdot; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include/ekf.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include/ekf.h new file mode 100644 index 0000000..b65e6ad --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf/include/ekf.h @@ -0,0 +1,254 @@ +// Copyright 2020-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef _ekf_h_ +#define _ekf_h_ + +#include +#include +#include +#include +#include + +/** + * The ekf is a base class for Extended Kalman Filter. + * It contains main matrix operations and define the processing flow. + */ +class ekf { +public: + + /** + * Constructor of EKF. + * THe constructor allocate main memory for the matrixes. + * @param[in] x: - amount of states in EKF. x[n] = F*x[n-1] + G*u + W. Size of matrix F + * @param[in] w: - amount of control measurements and noise inputs. Size of matrix G + */ + ekf(int x, int w); + + + /** + * Distructor of EKF + */ + virtual ~ekf(); + /** + * Main processing method of the EKF. + * + * @param[in] u: - input measurements + * @param[in] dt: - time difference from the last call in seconds + */ + virtual void Process(float *u, float dt); + + + /** + * Initialization of EKF. + * The method should be called befare the first use of the filter. + */ + virtual void Init() = 0; + /** + * x[n] = F*x[n-1] + G*u + W + * Number of states, X is the state vector (size of F matrix) + */ + int NUMX; + /** + * x[n] = F*x[n-1] + G*u + W + * The size of G matrix + */ + int NUMW; + + /** + * System state vector + */ + dspm::Mat &X; + + /** + * Linearized system matrices F, where x[n] = F*x[n-1] + G*u + W + */ + dspm::Mat &F; + /** + * Linearized system matrices G, where x[n] = F*x[n-1] + G*u + W + */ + dspm::Mat &G; + + /** + * Covariance matrix and state vector + */ + dspm::Mat &P; + + /** + * Input noise and measurement noise variances + */ + dspm::Mat &Q; + + /** + * Runge-Kutta state update method. + * The method calculates derivatives of input vector x and control measurements u + * + * @param[in] x: state vector + * @param[in] u: control measurement + * @param[in] dt: time interval from last update in seconds + */ + void RungeKutta(dspm::Mat &x, float *u, float dt); + + // System Dependent methods: + + /** + * Derivative of state vector X + * Re + * @param[in] x: state vector + * @param[in] u: control measurement + * @return + * - derivative of input vector x and u + */ + virtual dspm::Mat StateXdot(dspm::Mat &x, float *u); + /** + * Calculation of system state matrices F and G + * @param[in] x: state vector + * @param[in] u: control measurement + */ + virtual void LinearizeFG(dspm::Mat &x, float *u) = 0; + // + + // System independent methods + + /** + * Calculates covariance prediction matrux P. + * Update matrix P + * @param[in] dt: time interval from last update + */ + virtual void CovariancePrediction(float dt); + + /** + * Update of current state by measured values. + * Optimized method for non correlated values + * Calculate Kalman gain and update matrix P and vector X. + * @param[in] H: derivative matrix + * @param[in] measured: array of measured values + * @param[in] expected: array of expected values + * @param[in] R: measurement noise covariance values + */ + virtual void Update(dspm::Mat &H, float *measured, float *expected, float *R); + /** + * Update of current state by measured values. + * This method just as a reference for research purpose. + * Not used in real calculations. + * @param[in] H: derivative matrix + * @param[in] measured: array of measured values + * @param[in] expected: array of expected values + * @param[in] R: measurement noise covariance values + */ + virtual void UpdateRef(dspm::Mat &H, float *measured, float *expected, float *R); + + /** + * Matrix for intermidieve calculations + */ + float *HP; + /** + * Matrix for intermidieve calculations + */ + float *Km; + +public: + // Additional universal helper methods + /** + * Convert quaternion to rotation matrix. + * @param[in] q: quaternion + * + * @return + * - rotation matrix 3x3 + */ + static dspm::Mat quat2rotm(float q[4]); + + /** + * Convert rotation matrix to quaternion. + * @param[in] R: rotation matrix + * + * @return + * - quaternion 4x1 + */ + static dspm::Mat rotm2quat(dspm::Mat &R); + + /** + * Convert quaternion to Euler angels. + * @param[in] q: quaternion + * + * @return + * - Euler angels 3x1 + */ + static dspm::Mat quat2eul(const float q[4]); + /** + * Convert Euler angels to rotation matrix. + * @param[in] xyz: Euler angels + * + * @return + * - rotation matrix 3x3 + */ + static dspm::Mat eul2rotm(float xyz[3]); + + /** + * Convert rotation matrix to Euler angels. + * @param[in] rotm: rotation matrix + * + * @return + * - Euler angels 3x1 + */ + static dspm::Mat rotm2eul(dspm::Mat &rotm); + + /** + * Df/dq: Derivative of vector by quaternion. + * @param[in] vector: input vector + * @param[in] quat: quaternion + * + * @return + * - Derivative matrix 3x4 + */ + static dspm::Mat dFdq(dspm::Mat &vector, dspm::Mat &quat); + + /** + * Df/dq: Derivative of vector by inverted quaternion. + * @param[in] vector: input vector + * @param[in] quat: quaternion + * + * @return + * - Derivative matrix 3x4 + */ + static dspm::Mat dFdq_inv(dspm::Mat &vector, dspm::Mat &quat); + + /** + * Make skew-symmetric matrix of vector. + * @param[in] w: source vector + * + * @return + * - skew-symmetric matrix 4x4 + */ + static dspm::Mat SkewSym4x4(float *w); + + // q product + // Rl = [q(1) - q(2) - q(3) - q(4); ... + // q(2) q(1) - q(4) q(3); ... + // q(3) q(4) q(1) - q(2); ... + // q(4) - q(3) q(2) q(1); ... + + /** + * Make right quaternion-product matrices. + * @param[in] q: source quaternion + * + * @return + * - right quaternion-product matrix 4x4 + */ + static dspm::Mat qProduct(float *q); + +}; + +#endif // _ekf_h_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/docs/README.md b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/docs/README.md new file mode 100644 index 0000000..5db6f03 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/docs/README.md @@ -0,0 +1,38 @@ +# Extended Kalman Filter for IMU sensor with 13 calculated states + +The extended Kalman filter (EKF) with 13 states designed to be used with data from common +IMU sensor, like MPU9250 or MPU6050. These sensors provide gyroscope, accelerometer +and magnetometer data. The sensors have measurement errors, and it's not possible +to use them for calculation system attitude. +For that the EKF should be used. +Current implementation of EKF calculates 13 value to define the system state: + 1. System attitude [0..3]: quaternion that describes absolute value of system attitude (w, x,y,z) + 2. Gyroscope sensor errors[4..6]: bias values (x,y,z) + 3. Magnetometer vector value[7..9]: absolute value of magnetometer sensor (x,y,z) + 4. Magnetometer vector offset[10..12]: absolute value of magnetometer sensor offset (x,y,z) +These values calculated by the EKF and stored to the X vector. +Magnetometer value from the sensor has some value and offset. This information needed to calculate system attitude. +Magnetometer sensor value = R*Magn_Amplitude + Magn_offset. +Where R - rotation matrix from system attitude, +Magn_Amplitude - real magnetometer value calculated by the EKF +Magn_offset - magnetometer offset value (called deviation) + + +## How to use EKF +The EKF has two main methods: state calculation (Process(...)) and state correction (UpdateRefMeasurement() in our case). +The current EKF has one main input value - is a gyroscope (gyro) angular speed. If the gyro has no bias error, then it's enough to call Process(...) method, and EKF +will calculate system attitude. But, the gyro has a bias error and that's why, the UpdateRefMeasurement(...) must be called, when reference accelerometer and magnetometer values are available. +After the firs start, the EKF will need some time to calculate correct gyro bias and magnetometer deviation. This is a calibration phase. +To avoid this phase every time after filter started, it's better to store X vector and P matrix to the non-volatile memory, and restore them after system started. +The sequence in this case will be: +Init()-> restore X and P values (if exist) -> go to normal process + + +## Adjustable parameters +There two lists of parameters that could be adjusted: R - measurement noise covariance values, and Q - model noise matrix. +The R is an array with values for diagonal matrix. Then smaller value R for reference value, then more EKF will trust for this value. +In normal case, the R values should be between 0.001 and 1. +The Q - is a diagonal (only values in main diagonal are important) noise matrix of state vector. This matrix define how good value in state vector X should be. + + + diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/ekf_imu13states.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/ekf_imu13states.cpp new file mode 100644 index 0000000..392095c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/ekf_imu13states.cpp @@ -0,0 +1,293 @@ +// Copyright 2020-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "ekf_imu13states.h" + +ekf_imu13states::ekf_imu13states() : ekf(13, 18), + mag0(3, 1), + accel0(3, 1) +{ + this->NUMU = 3; +} + +ekf_imu13states::~ekf_imu13states() +{ +} + +void ekf_imu13states::Init() +{ + mag0.data[0] = 1; + mag0.data[1] = 0; + mag0.data[2] = 0; + + mag0 /= mag0.norm(); + + accel0.data[0] = 0; + accel0.data[1] = 0; + accel0.data[2] = 1; + + accel0 /= accel0.norm(); + + this->Q.Copy(0.1 * dspm::Mat::eye(3), 0, 0); + this->Q.Copy(0.0001 * dspm::Mat::eye(3), 3, 3); + this->Q.Copy(0.0001 * dspm::Mat::eye(3), 6, 6); + this->Q.Copy(0.0001 * dspm::Mat::eye(3), 9, 9); + this->Q.Copy(0.00001 * dspm::Mat::eye(3), 12, 12); + this->Q.Copy(0.00001 * dspm::Mat::eye(3), 15, 15); + + this->X.data[0] = 1; // Init quaternion + this->X.data[7] = 1; // Initial magnetometer vector +} + +dspm::Mat ekf_imu13states::StateXdot(dspm::Mat &x, float *u) +{ + float wx = u[0] - x(4, 0); // subtract the biases on gyros + float wy = u[1] - x(5, 0); + float wz = u[2] - x(6, 0); + + float w[] = {wx, wy, wz}; + dspm::Mat q = dspm::Mat(x.data, 4, 1); + + // qdot = Q * w + dspm::Mat Omega = 0.5 * SkewSym4x4(w); + dspm::Mat qdot = Omega * q; + dspm::Mat Xdot(this->NUMX, 1); + Xdot *= 0; + Xdot.Copy(qdot, 0, 0); + // dwbias = 0 + // dMang_Ampl = 0 + // dMang_offset = 0 + return Xdot; +} + +void ekf_imu13states::LinearizeFG(dspm::Mat &x, float *u) +{ + float w[3] = {(u[0] - x(4, 0)), (u[1] - x(5, 0)), (u[2] - x(6, 0))}; // subtract the biases on gyros + // float w[3] = {u[0], u[1], u[2]}; // subtract the biases on gyros + + this->F *= 0; // Initialize F and G matrixes. + this->G *= 0; + + // dqdot / dq - skey matrix + F.Copy(0.5 * ekf::SkewSym4x4(w), 0, 0); + + // dqdot/dvector + dspm::Mat dq = -0.5 * qProduct(x.data); + dspm::Mat dq_q = dq.Get(0, 4, 1, 3); + + // dqdot / dnw + G.Copy(dq_q, 0, 0); + // dqdot / dwbias + F.Copy(dq_q, 0, 4); + + dspm::Mat rotm = -1 * this->quat2rotm(x.data); // Convert quat to rotation matrix + + G.Copy(rotm, 7, 6); + G.Copy(dspm::Mat::eye(3), 4, 3); // random noise wbias + G.Copy(dspm::Mat::eye(3), 7, 12); // random noise magnetometer amplitude + G.Copy(dspm::Mat::eye(3), 10, 9); // magnetometer offset constant + G.Copy(dspm::Mat::eye(3), 10, 15); // random noise offset constant +} + +void ekf_imu13states::Test() +{ + dspm::Mat test_x(7, 1); + for (size_t i = 0; i < 7; i++) { + test_x(i, 0) = i; + } + printf("Allocate data = %i\n", this->NUMU); + float *test_u = new float[this->NUMU]; + for (size_t i = 0; i < this->NUMU; i++) { + test_u[i] = i; + } + dspm::Mat result_StateXdot = StateXdot(test_x, test_u); + delete[] test_u; +} + +void ekf_imu13states::TestFull(bool enable_att) +{ + int total_N = 2048; + float pi = std::atan(1) * 4; + float gyro_err_data[] = {0.1, 0.2, 0.3}; // static constatnt error + dspm::Mat gyro_err(gyro_err_data, 3, 1); + float R[10]; + for (size_t i = 0; i < 10; i++) { + R[i] = 0.01; + } + + float accel0_data[] = {0, 0, 1}; + float magn0_data[] = {1, 0, 0}; + + dspm::Mat accel0(accel0_data, 3, 1); + dspm::Mat magn0(magn0_data, 3, 1); + + float dt = 0.01; + + dspm::Mat gyro_data(3, 1); + int count = 0; + + // Initial rotation matrix + dspm::Mat Rm = dspm::Mat::eye(3); + dspm::Mat Re = dspm::Mat::eye(3); + + gyro_err *= 1; + + std::cout << "Gyro error: " << gyro_err.t() << std::endl; + for (size_t n = 1; n < total_N * 3; n++) { + if ((n % 1000) == 0) { + std::cout << "Loop " << n << " from " << total_N * 16; + std::cout << ", State data : " << this->X.t(); + } + gyro_data *= 0; // reset gyro value + if ((n >= (total_N / 2)) && (n < total_N * 12)) { + gyro_data(0, 0) = 1 / pi * std::cos(-pi / 2 + pi / 2 * count * 2 / (total_N / 10)); + gyro_data(1, 0) = 2 / pi * std::cos(-pi / 2 + pi / 2 * count * 2 / (total_N / 10)); + gyro_data(2, 0) = 3 / pi * std::cos(-pi / 2 + pi / 2 * count * 2 / (total_N / 10)); + count++; + } + dspm::Mat gyro_sample = gyro_data + gyro_err; + + gyro_data *= dt; + Re = this->eul2rotm(gyro_data.data); // Calculate rotation to gyro angel + Rm = Rm * Re; // Rotate original matrix + dspm::Mat attitude = ekf::rotm2quat(Rm); + // We have to rotate accel and magn to the opposite direction + dspm::Mat accel_data = Rm.t() * accel0; + dspm::Mat magn_data = Rm.t() * magn0; + + dspm::Mat accel_norm = accel_data / accel_data.norm(); + dspm::Mat magn_norm = magn_data / magn_data.norm(); + + float input_u[] = {gyro_sample(0, 0), gyro_sample(1, 0), gyro_sample(2, 0)}; + // Process input values to new state + this->Process(input_u, dt); + dspm::Mat q_norm(this->X.data, 4, 1); + q_norm /= q_norm.norm(); + + if (true == enable_att) { + this->UpdateRefMeasurement(accel_norm.data, magn_norm.data, attitude.data, R); + } else { + this->UpdateRefMeasurement(accel_norm.data, magn_norm.data, R); + } + } + std::cout << "Final State data : " << this->X.t() << std::endl; +} + +void ekf_imu13states::UpdateRefMeasurement(float *accel_data, float *magn_data, float R[6]) +{ + dspm::Mat quat(this->X.data, 4, 1); + dspm::Mat H = 0 * dspm::Mat(6, this->NUMX); + dspm::Mat Re = this->quat2rotm(quat.data).t(); + + // dAccel/dq + dspm::Mat dAccel_dq = ekf::dFdq_inv(this->accel0, quat); + H.Copy(dAccel_dq, 3, 0); + + // dMagn/dq + dspm::Mat magn(&this->X.data[7], 3, 1); + dspm::Mat magn_offset(&this->X.data[10], 3, 1); + dspm::Mat dMagn_dq = ekf::dFdq_inv(magn, quat); + H.Copy(dMagn_dq, 0, 0); + + dspm::Mat expected_magn = Re * magn + magn_offset; + dspm::Mat expected_accel = Re * this->accel0; + + float measured_data[6]; + float expected_data[6]; + for (size_t i = 0; i < 3; i++) { + measured_data[i] = magn_data[i]; + expected_data[i] = expected_magn.data[i]; + measured_data[i + 3] = accel_data[i]; + expected_data[i + 3] = expected_accel.data[i]; + } + + this->Update(H, measured_data, expected_data, R); + quat /= quat.norm(); +} + +void ekf_imu13states::UpdateRefMeasurementMagn(float *accel_data, float *magn_data, float R[6]) +{ + dspm::Mat quat(this->X.data, 4, 1); + dspm::Mat H = 0 * dspm::Mat(6, this->NUMX); + dspm::Mat Re = this->quat2rotm(quat.data).t(); + + // We include these two line to update magnetometer initial state + H.Copy(Re, 0, 7); + H.Copy(dspm::Mat::eye(3), 0, 10); + + // dAccel/dq + dspm::Mat dAccel_dq = ekf::dFdq_inv(this->accel0, quat); + H.Copy(dAccel_dq, 3, 0); + + // dMagn/dq + dspm::Mat magn(&this->X.data[7], 3, 1); + dspm::Mat magn_offset(&this->X.data[10], 3, 1); + dspm::Mat dMagn_dq = ekf::dFdq_inv(magn, quat); + H.Copy(dMagn_dq, 0, 0); + + dspm::Mat expected_magn = Re * magn + magn_offset; + dspm::Mat expected_accel = Re * this->accel0; + + float measured_data[6]; + float expected_data[6]; + for (size_t i = 0; i < 3; i++) { + measured_data[i] = magn_data[i]; + expected_data[i] = expected_magn.data[i]; + measured_data[i + 3] = accel_data[i]; + expected_data[i + 3] = expected_accel.data[i]; + } + + this->Update(H, measured_data, expected_data, R); + quat /= quat.norm(); +} + +void ekf_imu13states::UpdateRefMeasurement(float *accel_data, float *magn_data, float *attitude, float R[10]) +{ + dspm::Mat quat(this->X.data, 4, 1); + dspm::Mat H = 0 * dspm::Mat(10, this->NUMX); + dspm::Mat Re = this->quat2rotm(quat.data).t(); + + H.Copy(Re, 0, 7); + H.Copy(dspm::Mat::eye(3), 0, 10); + // dAccel/dq + dspm::Mat dAccel_dq = ekf::dFdq_inv(this->accel0, quat); + H.Copy(dAccel_dq, 3, 0); + // dMagn/dq + dspm::Mat magn(&this->X.data[7], 3, 1); + dspm::Mat magn_offset(&this->X.data[10], 3, 1); + dspm::Mat dMagn_dq = ekf::dFdq_inv(magn, quat); + H.Copy(dMagn_dq, 0, 0); + + // dq/dq + H.Copy(dspm::Mat::eye(4), 6, 1); + + dspm::Mat expected_magn = Re * magn + magn_offset; + dspm::Mat expected_accel = Re * this->accel0; + + float measured_data[10]; + float expected_data[10]; + for (size_t i = 0; i < 3; i++) { + measured_data[i] = magn_data[i]; + expected_data[i] = expected_magn.data[i]; + measured_data[i + 3] = accel_data[i]; + expected_data[i + 3] = expected_accel.data[i]; + } + for (size_t i = 0; i < 4; i++) { + measured_data[i + 6] = attitude[i]; + expected_data[i + 6] = this->X.data[i]; + } + + this->Update(H, measured_data, expected_data, R); + quat /= quat.norm(); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include/ekf_imu13states.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include/ekf_imu13states.h new file mode 100644 index 0000000..3902616 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/include/ekf_imu13states.h @@ -0,0 +1,98 @@ +// Copyright 2020-2021 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _ekf_imu13states_H_ +#define _ekf_imu13states_H_ + +#include "ekf.h" + +/** +* @brief This class is used to process and calculate attitude from imu sensors. +* +* The class use state vector with 13 follows values +* X[0..3] - attitude quaternion +* X[4..6] - gyroscope bias error, rad/sec +* X[7..9] - magnetometer vector value - magn_ampl +* X[10..12] - magnetometer offset value - magn_offset +* +* where, reference magnetometer value = magn_ampl*rotation_matrix' + magn_offset +*/ +class ekf_imu13states: public ekf { +public: + ekf_imu13states(); + virtual ~ekf_imu13states(); + virtual void Init(); + + // Method calculates Xdot values depends on U + // U - gyroscope values in radian per seconds (rad/sec) + virtual dspm::Mat StateXdot(dspm::Mat &x, float *u); + virtual void LinearizeFG(dspm::Mat &x, float *u); + + /** + * Method for development and tests only. + */ + void Test(); + /** + * Method for development and tests only. + * + * @param[in] enable_att - enable attitude as input reference value + */ + void TestFull(bool enable_att); + + /** + * Initial reference valie for magnetometer. + */ + dspm::Mat mag0; + /** + * Initial reference valie for accelerometer. + */ + dspm::Mat accel0; + + /** + * number of control measurements + */ + int NUMU; + + /** + * Update part of system state by reference measurements accelerometer and magnetometer. + * Only attitude and gyro bias will be updated. + * This method should be used as main method after calibration. + * + * @param[in] accel_data: accelerometer measurement vector XYZ in g, where 1 g ~ 9.81 m/s^2 + * @param[in] magn_data: magnetometer measurement vector XYZ + * @param[in] R: measurement noise covariance values for diagonal covariance matrix. Then smaller value, then more you trust them. + */ + void UpdateRefMeasurement(float *accel_data, float *magn_data, float R[6]); + /** + * Update full system state by reference measurements accelerometer and magnetometer. + * This method should be used at calibration phase. + * + * @param[in] accel_data: accelerometer measurement vector XYZ in g, where 1 g ~ 9.81 m/s^2 + * @param[in] magn_data: magnetometer measurement vector XYZ + * @param[in] R: measurement noise covariance values for diagonal covariance matrix. Then smaller value, then more you trust them. + */ + void UpdateRefMeasurementMagn(float *accel_data, float *magn_data, float R[6]); + /** + * Update system state by reference measurements accelerometer, magnetometer and attitude quaternion. + * This method could be used when system on constant state or in initialization phase. + * @param[in] accel_data: accelerometer measurement vector XYZ in g, where 1 g ~ 9.81 m/s^2 + * @param[in] magn_data: magnetometer measurement vector XYZ + * @param[in] attitude: attitude quaternion + * @param[in] R: measurement noise covariance values for diagonal covariance matrix. Then smaller value, then more you trust them. + */ + void UpdateRefMeasurement(float *accel_data, float *magn_data, float *attitude, float R[10]); + +}; + +#endif // _ekf_imu13states_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/test/test_ekf_imu13states.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/test/test_ekf_imu13states.cpp new file mode 100644 index 0000000..fed0913 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/kalman/ekf_imu13states/test/test_ekf_imu13states.cpp @@ -0,0 +1,60 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "ekf_imu13states.h" +#include "esp_attr.h" + +static const char *TAG = "ekf_imu13states"; + + +TEST_CASE("ekf_imu13states functionality gyro only", "[dspm]") +{ + ekf_imu13states *ekf13 = new ekf_imu13states(); + ekf13->Init(); + ekf13->Test(); + unsigned int start_b = xthal_get_ccount(); + ekf13->TestFull(false); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "Total time %i (K cycles)", (end_b - start_b) / 1000); + TEST_ASSERT_LESS_THAN(100, (int)(1000 * abs(ekf13->X.data[4] - 0.1))); + TEST_ASSERT_LESS_THAN(100, (int)(1000 * abs(ekf13->X.data[5] - 0.2))); + TEST_ASSERT_LESS_THAN(100, (int)(1000 * abs(ekf13->X.data[6] - 0.3))); + printf("Expected result = %i, calculated result = %i\n", 100, (int)(1000 * ekf13->X.data[4] + 0.5)); + printf("Expected result = %i, calculated result = %i\n", 200, (int)(1000 * ekf13->X.data[5] + 0.5)); + printf("Expected result = %i, calculated result = %i\n", 300, (int)(1000 * ekf13->X.data[6] + 0.5)); + +} + +TEST_CASE("ekf_imu13states functionality gyro and magn", "[dspm]") +{ + ekf_imu13states *ekf13 = new ekf_imu13states(); + ekf13->Init(); + ekf13->Test(); + unsigned int start_b = xthal_get_ccount(); + ekf13->TestFull(true); + unsigned int end_b = xthal_get_ccount(); + ESP_LOGI(TAG, "Total time %i (K cycles)", (end_b - start_b) / 1000); + + TEST_ASSERT_LESS_THAN(300, (int)(1000 * abs(ekf13->X.data[4] - 0.1))); + TEST_ASSERT_LESS_THAN(300, (int)(1000 * abs(ekf13->X.data[5] - 0.2))); + TEST_ASSERT_LESS_THAN(300, (int)(1000 * abs(ekf13->X.data[6] - 0.3))); + printf("Expected result = %i, calculated result = %i\n", 100, (int)(1000 * ekf13->X.data[4] + 0.5)); + printf("Expected result = %i, calculated result = %i\n", 200, (int)(1000 * ekf13->X.data[5] + 0.5)); + printf("Expected result = %i, calculated result = %i\n", 300, (int)(1000 * ekf13->X.data[6] + 0.5)); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_ae32.S new file mode 100644 index 0000000..6f29a5a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_ae32.S @@ -0,0 +1,82 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_add_platform.h" +#if (dsps_add_s16_ae32_enabled == 1) + + .text + .align 4 + .global dsps_add_s16_ae32 + .type dsps_add_s16_ae32,@function +// The function implements the following C code: +// esp_err_t dsps_add_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +// { +// for (int i = 0 ; i < len ; i++) { +// int32_t acc = (int32_t)input1[i * step1] + (int32_t)input2[i * step2]; +// output[i * step_out] = acc >> shift; +// } +// return ESP_OK; +// } +dsps_add_s16_ae32: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step_in1 - a6 +// step_in2 - a7 +// step_out - stack (a10) +// shift - stack (a9) + + entry a1, 16 + + + // l32i.n a10, a1, 16 + // s16i a10, a4, 0 + // l32i.n a10, a1, 20 + // s16i a10, a4, 2 + + l32i.n a10, a1, 16 // Load step_out to the a10 register + l32i.n a9, a1, 20 // Load shift to the a9 register + ssr a9 // sar = a9 + + slli a6, a6, 1 // a6 - step_in<<1 + slli a7, a7, 1 // a7 - step_in<<1 + slli a10, a10, 1 // a8 - step_out<<1 + + // s16i a10, a4, 0 + // s16i a6, a4, 2 + // s16i a7, a4, 4 + // s16i a5, a4, 6 + + l16si a11, a2, 0 + l16si a8, a3, 0 + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + loopnez a5, .loop_end_add_s16_ae32 + add.n a2, a2, a6 // input1+=step_in1; + add.n a3, a3, a7 // input2+=step_in2; + + l16si a11, a2, 0 + l16si a8, a3, 0 + s16i a9, a4, 0 // store result to the putput + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + add.n a4, a4, a10 // output+=step_out; +.loop_end_add_s16_ae32: + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_add_s16_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_aes3.S new file mode 100644 index 0000000..bb38977 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_aes3.S @@ -0,0 +1,105 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + + +#include "dsps_add_platform.h" +#if (dsps_add_s16_aes3_enabled == 1) + + .text + .align 4 + .global dsps_add_s16_aes3 + .type dsps_add_s16_aes3,@function +// The function implements the following C code: +// esp_err_t dsps_add_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +// { +// for (int i = 0 ; i < len ; i++) { +// int32_t acc = (int32_t)input1[i * step1] + (int32_t)input2[i * step2]; +// output[i * step_out] = acc >> shift; +// } +// return ESP_OK; +// } +dsps_add_s16_aes3: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step_in1 - a6 +// step_in2 - a7 +// step_out - stack (a10) +// shift - stack (a9) + + entry a1, 16 + + l32i.n a10, a1, 16 // Load step_out to the a10 register + l32i.n a9, a1, 20 // Load shift to the a9 register + ssr a9 // sar = a9 + + // Check if any of steps is not 0 + addi a15, a6, -1 + bnez a15, .add_s16_ae32_mode // Branch if step !=0 + addi a15, a7, -1 + bnez a15, .add_s16_ae32_mode // Branch if step !=0 + addi a15, a10, -1 + bnez a15,.add_s16_ae32_mode // Branch if step !=0 + + // Check addresses + movi a15, 0xF // modulo 16 mask + bany a2, a15, .add_s16_ae32_mode // jump if != 0 + bany a3, a15, .add_s16_ae32_mode // jump if != 0 + + // Check length (should be divided to 8) + movi a15, 0x7 // modulo 8 mask + bany a5, a15, .add_s16_ae32_mode // jump if != 0 + + // Process main function for S3 + + slli a6, a6, 1 // a6 - step_in<<1 + slli a7, a7, 1 // a7 - step_in<<1 + slli a10, a10, 1 // a8 - step_out<<1 + wsr.sar a9 // load sar register + + // Preload q1 from a3 + //ee.vld.128.ip q1, a3, 16 + srli a5, a5, 3 + ee.vld.128.ip q0, a2, 16 + loopnez a5, .loop_end_add_s16_aes3_main + ee.vld.128.ip q1, a3, 16 + ee.vadds.s16.ld.incp q0, a2, q4, q0, q1 + ee.vst.128.ip q4, a4, 16 +.loop_end_add_s16_aes3_main: + + // Exit for Esp32s3 mode + movi.n a2, 0 // return status ESP_OK + retw.n + + +.add_s16_ae32_mode: + slli a6, a6, 1 // a6 - step_in<<1 + slli a7, a7, 1 // a7 - step_in<<1 + slli a10, a10, 1 // a8 - step_out<<1 + + l16si a11, a2, 0 + l16si a8, a3, 0 + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + loopnez a5, .loop_end_add_s16_aes3 + add.n a2, a2, a6 // input1+=step_in1; + add.n a3, a3, a7 // input2+=step_in2; + + l16si a11, a2, 0 + l16si a8, a3, 0 + s16i a9, a4, 0 // store result to the putput + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + add.n a4, a4, a10 // output+=step_out; +.loop_end_add_s16_aes3: + // Exit for Esp32 mode + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_add_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_ansi.c new file mode 100644 index 0000000..ced022d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s16_ansi.c @@ -0,0 +1,27 @@ +/* + * SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + + +#include "dsps_add.h" + +esp_err_t dsps_add_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +{ + if (NULL == input1) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == input2) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + int32_t acc = (int32_t)input1[i * step1] + (int32_t)input2[i * step2]; + output[i * step_out] = acc >> shift; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s8_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s8_aes3.S new file mode 100644 index 0000000..4c0e790 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s8_aes3.S @@ -0,0 +1,97 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_add_platform.h" +#if (dsps_add_s16_aes3_enabled == 1) + + .text + .align 4 + .global dsps_add_s8_aes3 + .type dsps_add_s8_aes3,@function +// The function implements the following C code: +// esp_err_t dsps_add_s8_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +// { +// for (int i = 0 ; i < len ; i++) { +// int32_t acc = (int32_t)input1[i * step1] + (int32_t)input2[i * step2]; +// output[i * step_out] = acc >> shift; +// } +// return ESP_OK; +// } +dsps_add_s8_aes3: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step_in1 - a6 +// step_in2 - a7 +// step_out - stack (a10) +// shift - stack (a9) + + entry a1, 16 + + l32i.n a10, a1, 16 // Load step_out to the a10 register + l32i.n a9, a1, 20 // Load shift to the a9 register + ssr a9 // sar = a9 + + // Check if any of steps is not 0 + addi a15, a6, -1 + bnez a15, .add_s8_ae32_mode // Branch if step !=0 + addi a15, a7, -1 + bnez a15, .add_s8_ae32_mode // Branch if step !=0 + addi a15, a10, -1 + bnez a15,.add_s8_ae32_mode // Branch if step !=0 + + // Check addresses + movi a15, 0xF // modulo 16 mask + bany a2, a15, .add_s8_ae32_mode // jump if != 0 + bany a3, a15, .add_s8_ae32_mode // jump if != 0 + + // Check length (should be divided to 8) + movi a15, 0xf // modulo 8 mask + bany a5, a15, .add_s8_ae32_mode // jump if != 0 + + // Process main function for S3 + + wsr.sar a9 // load sar register + + // Preload q1 from a3 + //ee.vld.128.ip q1, a3, 16 + srli a5, a5, 4 + ee.vld.128.ip q0, a2, 16 + loopnez a5, .loop_end_add_s8_aes3_main + ee.vld.128.ip q1, a3, 16 + ee.vadds.s8.ld.incp q0, a2, q4, q0, q1 + ee.vst.128.ip q4, a4, 16 +.loop_end_add_s8_aes3_main: + + // Exit for Esp32s3 mode + movi.n a2, 0 // return status ESP_OK + retw.n + + +.add_s8_ae32_mode: + l8ui a11, a2, 0 + l8ui a8, a3, 0 + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + loopnez a5, .loop_end_add_s8_aes3 + add.n a2, a2, a6 // input1+=step_in1; + add.n a3, a3, a7 // input2+=step_in2; + + l8ui a11, a2, 0 + l8ui a8, a3, 0 + s8i a9, a4, 0 // store result to the putput + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + add.n a4, a4, a10 // output+=step_out; +.loop_end_add_s8_aes3: + // Exit for Esp32 mode + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_add_s8_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s8_ansi.c new file mode 100644 index 0000000..9a228b0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/fixed/dsps_add_s8_ansi.c @@ -0,0 +1,26 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_add.h" + +esp_err_t dsps_add_s8_ansi(const int8_t *input1, const int8_t *input2, int8_t *output, int len, int step1, int step2, int step_out, int shift) +{ + if (NULL == input1) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == input2) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + int32_t acc = (int32_t)input1[i * step1] + (int32_t)input2[i * step2]; + output[i * step_out] = acc >> shift; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/float/dsps_add_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/float/dsps_add_f32_ae32.S new file mode 100644 index 0000000..8f1c50a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/float/dsps_add_f32_ae32.S @@ -0,0 +1,64 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_add_platform.h" +#if (dsps_add_f32_ae32_enabled == 1) + +// This is bi quad filter form II for ESP32 processor. + .text + .align 4 + .global dsps_add_f32_ae32 + .type dsps_add_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dsps_add_f32_ansi(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out) +// { +// for (int i = 0 ; i < len ; i++) { +// output[i * step_out] = input1[i * step1] + input2[i * step2]; +// } +// return ESP_OK; +// } + +dsps_add_f32_ae32: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step1 - a6 +// step2 - a7 +// step_out - stack (a8) + + entry a1, 16 + + l32i.n a8, a1, 16 // Load step_out to the a8 register + slli a6, a6, 2 // a6 - step1<<2 + slli a7, a7, 2 // a7 - step2<<2 + slli a8, a8, 2 // a8 - step_out<<2 + + lsi f0, a2, 0 + add.n a2, a2, a6 // input1_ptr+=step1; + loopnez a5, loop_end_add_f32_ae32 + lsi f1, a3, 0 + add.n a3, a3, a7 // input2_ptr+=step2; + + add.s f2, f1, f0 // f2 = f1 + f0 + lsi f0, a2, 0 + add.n a2, a2, a6 // input1_ptr+=step1; + ssi f2, a4, 0 + add.n a4, a4, a8 // input2_ptr+=step2; +loop_end_add_f32_ae32: + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_add_f32_ae32_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/float/dsps_add_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/float/dsps_add_f32_ansi.c new file mode 100644 index 0000000..01683cc --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/float/dsps_add_f32_ansi.c @@ -0,0 +1,33 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_add.h" + +esp_err_t dsps_add_f32_ansi(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out) +{ + if (NULL == input1) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == input2) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + output[i * step_out] = input1[i * step1] + input2[i * step2]; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include/dsps_add.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include/dsps_add.h new file mode 100644 index 0000000..750e196 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include/dsps_add.h @@ -0,0 +1,89 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_add_H_ +#define _dsps_add_H_ +#include "dsp_err.h" + +#include "dsps_add_platform.h" + + +#ifdef __cplusplus +extern "C" +{ +#endif + + +/**@{*/ +/** + * @brief add two arrays + * + * The function add one input array to another + * out[i*step_out] = input1[i*step1] + input2[i*step2]; i=[0..len) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] input1: input array 1 + * @param[in] input2: input array 2 + * @param output: output array + * @param len: amount of operations for arrays + * @param step1: step over input array 1 (by default should be 1) + * @param step2: step over input array 2 (by default should be 1) + * @param step_out: step over output array (by default should be 1) + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_add_f32_ansi(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out); +esp_err_t dsps_add_f32_ae32(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out); + +esp_err_t dsps_add_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift); +esp_err_t dsps_add_s16_ae32(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift); +esp_err_t dsps_add_s16_aes3(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift); + +esp_err_t dsps_add_s8_ansi(const int8_t *input1, const int8_t *input2, int8_t *output, int len, int step1, int step2, int step_out, int shift); +esp_err_t dsps_add_s8_aes3(const int8_t *input1, const int8_t *input2, int8_t *output, int len, int step1, int step2, int step_out, int shift); + +/**@}*/ + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED + +#if (dsps_add_f32_ae32_enabled == 1) +#define dsps_add_f32 dsps_add_f32_ae32 +#else +#define dsps_add_f32 dsps_add_f32_ansi +#endif + +#if (dsps_add_s16_aes3_enabled == 1) +#define dsps_add_s16 dsps_add_s16_aes3 +#define dsps_add_s8 dsps_add_s8_aes3 +#elif (dsps_add_s16_ae32_enabled == 1) +#define dsps_add_s16 dsps_add_s16_ae32 +#define dsps_add_s8 dsps_add_s8_ansi +#else +#define dsps_add_s16 dsps_add_s16_ansi +#define dsps_add_s8 dsps_add_s8_ansi +#endif + +#else // CONFIG_DSP_OPTIMIZED +#define dsps_add_f32 dsps_add_f32_ansi +#define dsps_add_s16 dsps_add_s16_ansi +#define dsps_add_s8 dsps_add_s8_ansi +#endif // CONFIG_DSP_OPTIMIZED + +#endif // _dsps_add_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include/dsps_add_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include/dsps_add_platform.h new file mode 100644 index 0000000..fd19718 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/include/dsps_add_platform.h @@ -0,0 +1,32 @@ +#ifndef _dsps_add_platform_H_ +#define _dsps_add_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + +#if (CONFIG_IDF_TARGET_ESP32S3 == 1) +#define dsps_add_f32_ae32_enabled 1 +#define dsps_add_s16_aes3_enabled 1 +#else + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dsps_add_f32_ae32_enabled 1 +#define dsps_add_s16_ae32_enabled 1 + +#endif + +#if (XCHAL_HAVE_LOOPS == 1) +#define dsps_add_f32_ae32_enabled 1 +#define dsps_add_s16_ae32_enabled 1 +#endif + +#endif // CONFIG_IDF_TARGET_ESP32S3 + +#endif // __XTENSA__ + + +#endif // _dsps_add_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_f32_ansi.c new file mode 100644 index 0000000..9ba54bb --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_f32_ansi.c @@ -0,0 +1,70 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_add.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_add"; + +TEST_CASE("dsps_add_f32_ansi functionality", "[dsps]") +{ + int n = 32; + float x[n]; + float y[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i; + y[i] = 2 * i; + } + dsps_add_f32_ansi(x, x, x, n, 1, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_add_f32_ae32 functionality", "[dsps]") +{ + int n = 32; + float x[n]; + float y[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i; + y[i] = 2 * i; + } + dsps_add_f32_ae32(x, x, x, n, 1, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } + + int repeat_count = 1; + + dsps_add_f32_ae32(x, x, x, n, 1, 1, 1); + + unsigned int start_b = xthal_get_ccount(); + dsps_add_f32_ae32(x, x, x, n, 1, 1, 1); + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (n * repeat_count); + ESP_LOGI(TAG, "dsps_add_f32_ae32 - %f cycles per sample \n", cycles); + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s16_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s16_ae32.c new file mode 100644 index 0000000..eb22bf8 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s16_ae32.c @@ -0,0 +1,56 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_add.h" +#include "esp_attr.h" + +#if (dsps_add_s16_ae32_enabled == 1) + +static const char *TAG = "dsps_add"; +TEST_CASE("dsps_add_s16_ae32 functionality", "[dsps]") +{ + int n = 64; + int16_t x[n]; + int16_t y[n]; + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + temp = ((int32_t)x[i] + (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_add_s16_ae32(x, x, x, n, 1, 1, 1, shift); + for (int i = 0 ; i < n ; i++) { + ESP_LOGD(TAG, "x[%i] = %i %i", i, x[i], y[i]); + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_add_s16_ae32 benchmark", "[dsps]") +{ + const int n = 256; + int16_t x[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_add_s16_ae32(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_add_s16_ae32 - %f cycles per sample \n", cycles); +} + +#endif // (dsps_add_s16_ae32_enabled == 1) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s16_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s16_aes3.c new file mode 100644 index 0000000..cc647f5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s16_aes3.c @@ -0,0 +1,61 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_add.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +#if (dsps_add_s16_aes3_enabled == 1) + +static const char *TAG = "dsps_add"; +TEST_CASE("dsps_add_s16_aes3 functionality", "[dsps]") +{ + int n = 64; + int16_t *x = (int16_t *)memalign(16, n * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, n * sizeof(int16_t)); + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + temp = ((int32_t)x[i] + (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_add_s16_aes3(x, x, x, n, 1, 1, 1, shift); + for (int i = 0 ; i < n ; i++) { + ESP_LOGD(TAG, "x[%i] = %i %i", i, x[i], y[i]); + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } + free(x); + free(y); +} + +TEST_CASE("dsps_add_s16_aes3 benchmark", "[dsps]") +{ + const int n = 2048; + int16_t *x = (int16_t *)memalign(16, n * sizeof(int16_t)); + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_add_s16_aes3(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_add_s16_aes3 - %f cycles per sample \n", cycles); + free(x); + +} +#endif // (dsps_add_s16_aes3_enabled == 1) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s16_ansi.c new file mode 100644 index 0000000..f9dfc44 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s16_ansi.c @@ -0,0 +1,52 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_add.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_add"; + +TEST_CASE("dsps_add_s16_ansi functionality", "[dsps]") +{ + int n = 64; + int16_t x[n]; + int16_t y[n]; + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + temp = ((int32_t)x[i] + (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_add_s16_ansi(x, x, x, n, 1, 1, 1, 0); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_add_s16_ansi benchmark", "[dsps]") +{ + const int n = 256; + int16_t x[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_add_s16_ansi(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_add_s16_ansi - %f cycles per sample \n", cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s8_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s8_aes3.c new file mode 100644 index 0000000..3b7b16a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s8_aes3.c @@ -0,0 +1,61 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_add.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +#if (dsps_add_s16_aes3_enabled == 1) + +static const char *TAG = "dsps_add"; +TEST_CASE("dsps_add_s8_aes3 functionality", "[dsps]") +{ + int n = 64; + int8_t *x = (int8_t *)memalign(16, n * sizeof(int8_t)); + int8_t *y = (int8_t *)memalign(16, n * sizeof(int8_t)); + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i - n / 2; + temp = ((int32_t)x[i] + (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_add_s8_aes3(x, x, x, n, 1, 1, 1, shift); + for (int i = 0 ; i < n ; i++) { + ESP_LOGD(TAG, "x[%i] = %i %i", i, x[i], y[i]); + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } + free(x); + free(y); +} + +TEST_CASE("dsps_add_s8_aes3 benchmark", "[dsps]") +{ + const int n = 2048; + int8_t *x = (int8_t *)memalign(16, n * sizeof(int8_t)); + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_add_s8_aes3(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_add_s8_aes3 - %f cycles per sample \n", cycles); + free(x); + +} +#endif // (dsps_add_s16_aes3_enabled == 1) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s8_ansi.c new file mode 100644 index 0000000..e6b13ac --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/add/test/test_dsps_add_s8_ansi.c @@ -0,0 +1,52 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_add.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_add"; + +TEST_CASE("dsps_add_s8_ansi functionality", "[dsps]") +{ + int n = 64; + int8_t x[n]; + int8_t y[n]; + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i - n / 2; + temp = ((int32_t)x[i] + (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_add_s8_ansi(x, x, x, n, 1, 1, 1, 0); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_add_s8_ansi benchmark", "[dsps]") +{ + const int n = 256; + int8_t x[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_add_s8_ansi(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_add_s8_ansi - %f cycles per sample \n", cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/float/dsps_addc_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/float/dsps_addc_f32_ae32.S new file mode 100644 index 0000000..cb4ea6a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/float/dsps_addc_f32_ae32.S @@ -0,0 +1,57 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_addc_platform.h" +#if (dsps_addc_f32_ae32_enabled == 1) + +// This is bi quad filter form II for ESP32 processor. + .text + .align 4 + .global dsps_addc_f32_ae32 + .type dsps_addc_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dsps_addc_f32_ansi(const float *input, float *output, int len, float C, int step_in, int step_out) +// { +// for (int i = 0 ; i < len ; i++) { +// output[i * step_out] = input[i * step_in] + C; +// } +// return ESP_OK; +// } +dsps_addc_f32_ae32: +// input - a2 +// output - a3 +// len - a4 +// C - a5 +// step_in - a6 +// step_out - a7 + + entry a1, 16 + + slli a6, a6, 2 // a6 - step_in<<2 + slli a7, a7, 2 // a7 - step_out<<2 + wfr f0, a5 // a5 - load to the f0 + + loopnez a4, loop_end_addc_f32_ae32 + lsi f1, a2, 0 + + add.s f2, f1, f0 // f2 = f1 + f0 + add.n a2, a2, a6 // input1_ptr+=step_in; + ssi f2, a3, 0 + add.n a3, a3, a7 // output+=step_out; +loop_end_addc_f32_ae32: + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_addc_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/float/dsps_addc_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/float/dsps_addc_f32_ansi.c new file mode 100644 index 0000000..4847883 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/float/dsps_addc_f32_ansi.c @@ -0,0 +1,30 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_addc.h" + +esp_err_t dsps_addc_f32_ansi(const float *input, float *output, int len, float C, int step_in, int step_out) +{ + if (NULL == input) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + output[i * step_out] = input[i * step_in] + C; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include/dsps_addc.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include/dsps_addc.h new file mode 100644 index 0000000..79ac076 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include/dsps_addc.h @@ -0,0 +1,65 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_addc_H_ +#define _dsps_addc_H_ +#include "dsp_err.h" + +#include "dsps_addc_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + + +/**@{*/ +/** + * @brief add constant + * + * The function adds constant to the input array + * x[i*step_out] = y[i*step_in] + C; i=[0..len) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] input: input array + * @param output: output array + * @param len: amount of operations for arrays + * @param C: constant value + * @param step_in: step over input array (by default should be 1) + * @param step_out: step over output array (by default should be 1) + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_addc_f32_ansi(const float *input, float *output, int len, float C, int step_in, int step_out); +esp_err_t dsps_addc_f32_ae32(const float *input, float *output, int len, float C, int step_in, int step_out); +/**@}*/ + +#ifdef __cplusplus +} +#endif + + +#if CONFIG_DSP_OPTIMIZED +#if (dsps_addc_f32_ae32_enabled == 1) +#define dsps_addc_f32 dsps_addc_f32_ae32 +#else +#define dsps_addc_f32 dsps_addc_f32_ansi +#endif +#else +#define dsps_addc_f32 dsps_addc_f32_ansi +#endif // CONFIG_DSP_OPTIMIZED + +#endif // _dsps_addc_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include/dsps_addc_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include/dsps_addc_platform.h new file mode 100644 index 0000000..ed7da79 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/include/dsps_addc_platform.h @@ -0,0 +1,19 @@ +#ifndef _dsps_addc_platform_H_ +#define _dsps_addc_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dsps_addc_f32_ae32_enabled 1 + +#endif +#endif // __XTENSA__ + + +#endif // _dsps_addc_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/test/test_dsps_addc_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/test/test_dsps_addc_f32_ansi.c new file mode 100644 index 0000000..2f2d9d4 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/addc/test/test_dsps_addc_f32_ansi.c @@ -0,0 +1,70 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_addc.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_addc"; + + +TEST_CASE("dsps_addc_f32_ansi functionality", "[dsps]") +{ + int n = 64; + float x[n]; + float y[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i; + y[i] = i + 10; + } + dsps_addc_f32_ansi(x, x, n, 10, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_addc_f32_ae32 functionality", "[dsps]") +{ + int n = 64; + float x[n]; + float y[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i; + y[i] = i + 10; + } + dsps_addc_f32_ae32(x, x, n, 10, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } + + int repeat_count = 1; + + dsps_addc_f32_ae32(x, x, n, 10, 1, 1); + + unsigned int start_b = xthal_get_ccount(); + dsps_addc_f32_ae32(x, x, n, 10, 1, 1); + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (n * repeat_count); + ESP_LOGI(TAG, "dsps_addc_f32_ae32 - %f cycles per sample \n", cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include/dsps_math.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include/dsps_math.h new file mode 100644 index 0000000..290de6b --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/include/dsps_math.h @@ -0,0 +1,25 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_math_H_ +#define _dsps_math_H_ + +#include "dsps_add.h" +#include "dsps_sub.h" +#include "dsps_mul.h" +#include "dsps_addc.h" +#include "dsps_mulc.h" +#include "dsps_sqrt.h" + +#endif // _dsps_math_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_ae32.S new file mode 100644 index 0000000..6d1314d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_ae32.S @@ -0,0 +1,74 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_mul_platform.h" +#if (dsps_mul_s16_ae32_enabled == 1) + + .text + .align 4 + .global dsps_mul_s16_ae32 + .type dsps_mul_s16_ae32,@function +// The function implements the following C code: +// esp_err_t dsps_mul_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +// { +// for (int i = 0 ; i < len ; i++) { +// int32_t acc = (int32_t)input1[i * step1] + (int32_t)input2[i * step2]; +// output[i * step_out] = acc >> shift; +// } +// return ESP_OK; +// } +dsps_mul_s16_ae32: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step_in1 - a6 +// step_in2 - a7 +// step_out - stack (a10) +// shift - stack (a9) + + entry a1, 16 + + + // l32i.n a10, a1, 16 + // s16i a10, a4, 0 + // l32i.n a10, a1, 20 + // s16i a10, a4, 2 + + l32i.n a10, a1, 16 // Load step_out to the a10 register + l32i.n a9, a1, 20 // Load shift to the a9 register + ssr a9 // sar = a9 + + slli a6, a6, 1 // a6 - step_in<<1 + slli a7, a7, 1 // a7 - step_in<<1 + slli a10, a10, 1 // a8 - step_out<<1 + + // s16i a10, a4, 0 + // s16i a6, a4, 2 + // s16i a7, a4, 4 + // s16i a5, a4, 6 + + l16si a11, a2, 0 + l16si a8, a3, 0 + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + loopnez a5, .loop_end_mul_s16_ae32 + add.n a2, a2, a6 // input1+=step_in1; + add.n a3, a3, a7 // input2+=step_in2; + + l16si a11, a2, 0 + l16si a8, a3, 0 + s16i a9, a4, 0 // store result to the putput + mull a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + add.n a4, a4, a10 // output+=step_out; +.loop_end_mul_s16_ae32: + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_mul_s16_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_aes3.S new file mode 100644 index 0000000..02c163e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_aes3.S @@ -0,0 +1,104 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_mul_platform.h" +#if (dsps_mul_s16_aes3_enabled == 1) + + .text + .align 4 + .global dsps_mul_s16_aes3 + .type dsps_mul_s16_aes3,@function +// The function implements the following C code: +// esp_err_t dsps_mul_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +// { +// for (int i = 0 ; i < len ; i++) { +// int32_t acc = (int32_t)input1[i * step1] + (int32_t)input2[i * step2]; +// output[i * step_out] = acc >> shift; +// } +// return ESP_OK; +// } +dsps_mul_s16_aes3: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step_in1 - a6 +// step_in2 - a7 +// step_out - stack (a10) +// shift - stack (a9) + + entry a1, 16 + + l32i.n a10, a1, 16 // Load step_out to the a10 register + l32i.n a9, a1, 20 // Load shift to the a9 register + ssr a9 // sar = a9 + + // Check if any of steps is not 0 + addi a15, a6, -1 + bnez a15, .mul_s16_ae32_mode // Branch if step !=0 + addi a15, a7, -1 + bnez a15, .mul_s16_ae32_mode // Branch if step !=0 + addi a15, a10, -1 + bnez a15,.mul_s16_ae32_mode // Branch if step !=0 + + // Check addresses + movi a15, 0xF // modulo 16 mask + bany a2, a15, .mul_s16_ae32_mode // jump if != 0 + bany a3, a15, .mul_s16_ae32_mode // jump if != 0 + + // Check length (should be divided to 8) + movi a15, 0x7 // modulo 8 mask + bany a5, a15, .mul_s16_ae32_mode // jump if != 0 + + // Process main function for S3 + + slli a6, a6, 1 // a6 - step_in<<1 + slli a7, a7, 1 // a7 - step_in<<1 + slli a10, a10, 1 // a8 - step_out<<1 + wsr.sar a9 // load sar register + + // Preload q1 from a3 + //ee.vld.128.ip q1, a3, 16 + srli a5, a5, 3 + ee.vld.128.ip q0, a2, 16 + loopnez a5, .loop_end_mul_s16_aes3_main + ee.vld.128.ip q1, a3, 16 + ee.vmul.s16.ld.incp q0, a2, q4, q0, q1 + ee.vst.128.ip q4, a4, 16 +.loop_end_mul_s16_aes3_main: + + // Exit for Esp32s3 mode + movi.n a2, 0 // return status ESP_OK + retw.n + + +.mul_s16_ae32_mode: + slli a6, a6, 1 // a6 - step_in<<1 + slli a7, a7, 1 // a7 - step_in<<1 + slli a10, a10, 1 // a8 - step_out<<1 + + l16si a11, a2, 0 + l16si a8, a3, 0 + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + loopnez a5, .loop_end_mul_s16_aes3 + add.n a2, a2, a6 // input1+=step_in1; + add.n a3, a3, a7 // input2+=step_in2; + + l16si a11, a2, 0 + l16si a8, a3, 0 + s16i a9, a4, 0 // store result to the putput + mull a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + add.n a4, a4, a10 // output+=step_out; +.loop_end_mul_s16_aes3: + // Exit for Esp32 mode + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_mul_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_ansi.c new file mode 100644 index 0000000..2a3f438 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s16_ansi.c @@ -0,0 +1,34 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_mul.h" + +esp_err_t dsps_mul_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +{ + if (NULL == input1) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == input2) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + int ttt = (int)input1[i * step1] * (int)input2[i * step2]; + output[i * step_out] = ttt >> shift; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s8_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s8_aes3.S new file mode 100644 index 0000000..0ccbf10 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s8_aes3.S @@ -0,0 +1,97 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_mul_platform.h" +#if (dsps_mul_s16_aes3_enabled == 1) + + .text + .align 4 + .global dsps_mul_s8_aes3 + .type dsps_mul_s8_aes3,@function +// The function implements the following C code: +// esp_err_t dsps_mul_s8_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +// { +// for (int i = 0 ; i < len ; i++) { +// int32_t acc = (int32_t)input1[i * step1] + (int32_t)input2[i * step2]; +// output[i * step_out] = acc >> shift; +// } +// return ESP_OK; +// } +dsps_mul_s8_aes3: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step_in1 - a6 +// step_in2 - a7 +// step_out - stack (a10) +// shift - stack (a9) + + entry a1, 16 + + l32i.n a10, a1, 16 // Load step_out to the a10 register + l32i.n a9, a1, 20 // Load shift to the a9 register + ssr a9 // sar = a9 + + // Check if any of steps is not 0 + addi a15, a6, -1 + bnez a15, .sub_s8_ae32_mode // Branch if step !=0 + addi a15, a7, -1 + bnez a15, .sub_s8_ae32_mode // Branch if step !=0 + addi a15, a10, -1 + bnez a15,.sub_s8_ae32_mode // Branch if step !=0 + + // Check addresses + movi a15, 0xF // modulo 16 mask + bany a2, a15, .sub_s8_ae32_mode // jump if != 0 + bany a3, a15, .sub_s8_ae32_mode // jump if != 0 + + // Check length (should be divided to 8) + movi a15, 0xf // modulo 8 mask + bany a5, a15, .sub_s8_ae32_mode // jump if != 0 + + // Process main function for S3 + + wsr.sar a9 // load sar register + + // Preload q1 from a3 + //ee.vld.128.ip q1, a3, 16 + srli a5, a5, 4 + ee.vld.128.ip q0, a2, 16 + loopnez a5, .loop_end_mul_s8_aes3_main + ee.vld.128.ip q1, a3, 16 + ee.vmul.s8.ld.incp q0, a2, q4, q0, q1 + ee.vst.128.ip q4, a4, 16 +.loop_end_mul_s8_aes3_main: + + // Exit for Esp32s3 mode + movi.n a2, 0 // return status ESP_OK + retw.n + + +.sub_s8_ae32_mode: + l8ui a11, a2, 0 + l8ui a8, a3, 0 + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + loopnez a5, .loop_end_mul_s8_aes3 + add.n a2, a2, a6 // input1+=step_in1; + add.n a3, a3, a7 // input2+=step_in2; + + l8ui a11, a2, 0 + l8ui a8, a3, 0 + s8i a9, a4, 0 // store result to the putput + mull a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + add.n a4, a4, a10 // output+=step_out; +.loop_end_mul_s8_aes3: + // Exit for Esp32 mode + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_mul_s8_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s8_ansi.c new file mode 100644 index 0000000..12c5ed6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/fixed/dsps_mul_s8_ansi.c @@ -0,0 +1,26 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_mul.h" + +esp_err_t dsps_mul_s8_ansi(const int8_t *input1, const int8_t *input2, int8_t *output, int len, int step1, int step2, int step_out, int shift) +{ + if (NULL == input1) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == input2) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + int32_t acc = (int32_t)input1[i * step1] * (int32_t)input2[i * step2]; + output[i * step_out] = acc >> shift; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/float/dsps_mul_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/float/dsps_mul_f32_ae32.S new file mode 100644 index 0000000..e01e2e5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/float/dsps_mul_f32_ae32.S @@ -0,0 +1,64 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_mul_platform.h" +#if (dsps_mul_f32_ae32_enabled == 1) + +// This is bi quad filter form II for ESP32 processor. + .text + .align 4 + .global dsps_mul_f32_ae32 + .type dsps_mul_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dsps_mul_f32_ansi(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out) +// { +// for (int i = 0 ; i < len ; i++) { +// output[i * step_out] = input1[i * step1] * input2[i * step2]; +// } +// return ESP_OK; +// } + +dsps_mul_f32_ae32: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step1 - a6 +// step2 - a7 +// step_out - stack (a8) + + entry a1, 16 + + l32i.n a8, a1, 16 // Load step_out to the a8 register + slli a6, a6, 2 // a6 - step1<<2 + slli a7, a7, 2 // a7 - step2<<2 + slli a8, a8, 2 // a8 - step_out<<2 + + lsi f0, a2, 0 + add.n a2, a2, a6 // input1_ptr+=step1; + loopnez a5, loop_end_mul_f32_ae32 + lsi f1, a3, 0 + add.n a3, a3, a7 // input2_ptr+=step2; + + mul.s f2, f1, f0 // f2 = f1*f0 + lsi f0, a2, 0 + add.n a2, a2, a6 // input1_ptr+=step1; + ssi f2, a4, 0 + add.n a4, a4, a8 // input2_ptr+=step2; +loop_end_mul_f32_ae32: + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_mul_f32_ae32_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/float/dsps_mul_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/float/dsps_mul_f32_ansi.c new file mode 100644 index 0000000..8e22861 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/float/dsps_mul_f32_ansi.c @@ -0,0 +1,33 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_mul.h" + +esp_err_t dsps_mul_f32_ansi(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out) +{ + if (NULL == input1) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == input2) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + output[i * step_out] = input1[i * step1] * input2[i * step2]; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include/dsps_mul.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include/dsps_mul.h new file mode 100644 index 0000000..db98e88 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include/dsps_mul.h @@ -0,0 +1,111 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_mul_H_ +#define _dsps_mul_H_ +#include "dsp_err.h" + +#include "dsps_mul_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + + +/**@{*/ +/** + * @brief Multiply two arrays + * + * The function multiply one input array to another and store result to other array + * out[i*step_out] = input1[i*step1] * input2[i*step2]; i=[0..len) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] input1: input array 1 + * @param[in] input2: input array 2 + * @param output: output array + * @param len: amount of operations for arrays + * @param step1: step over input array 1 (by default should be 1) + * @param step2: step over input array 2 (by default should be 1) + * @param step_out: step over output array (by default should be 1) + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_mul_f32_ansi(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out); +esp_err_t dsps_mul_f32_ae32(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out); +/**@}*/ + + +/**@{*/ +/** + * @brief Multiply two arrays + * + * The function multiply one input array to another and store result to other array + * out[i*step_out] = input1[i*step1] * input2[i*step2]; i=[0..len) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] input1: input array 1 + * @param[in] input2: input array 2 + * @param output: output array + * @param len: amount of operations for arrays + * @param step1: step over input array 1 (by default should be 1) + * @param step2: step over input array 2 (by default should be 1) + * @param step_out: step over output array (by default should be 1) + * @param shift: output shift after multiplication (by default should be 15) + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_mul_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift); +esp_err_t dsps_mul_s16_ae32(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift); +esp_err_t dsps_mul_s16_aes3(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift); + +esp_err_t dsps_mul_s8_ansi(const int8_t *input1, const int8_t *input2, int8_t *output, int len, int step1, int step2, int step_out, int shift); +esp_err_t dsps_mul_s8_aes3(const int8_t *input1, const int8_t *input2, int8_t *output, int len, int step1, int step2, int step_out, int shift); + +/**@}*/ + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED + +#if (dsps_mul_f32_ae32_enabled == 1) +#define dsps_mul_f32 dsps_mul_f32_ae32 +#else +#define dsps_mul_f32 dsps_mul_f32_ansi +#endif + +#if (dsps_mul_s16_aes3_enabled == 1) +#define dsps_mul_s16 dsps_mul_s16_aes3 +#define dsps_mul_s8 dsps_mul_s8_aes3 +#elif (dsps_mul_s16_ae32_enabled == 1) +#define dsps_mul_s16 dsps_mul_s16_ae32 +#define dsps_mul_s8 dsps_mul_s8_ansi +#else +#define dsps_mul_s16 dsps_mul_s16_ansi +#define dsps_mul_s8 dsps_mul_s8_ansi +#endif + +#else // CONFIG_DSP_OPTIMIZED +#define dsps_mul_f32 dsps_mul_f32_ansi +#define dsps_mul_s16 dsps_mul_s16_ansi +#define dsps_mul_s8 dsps_mul_s8_ansi +#endif // CONFIG_DSP_OPTIMIZED + +#endif // _dsps_mul_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include/dsps_mul_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include/dsps_mul_platform.h new file mode 100644 index 0000000..42946f8 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/include/dsps_mul_platform.h @@ -0,0 +1,30 @@ +#ifndef _dsps_mul_platform_H_ +#define _dsps_mul_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dsps_mul_f32_ae32_enabled 1 +#define dsps_mul_s16_ae32_enabled 1 + +#endif + +#if (XCHAL_HAVE_LOOPS == 1) +#define dsps_mul_f32_ae32_enabled 1 +#define dsps_mul_s16_ae32_enabled 1 +#endif + +#if (CONFIG_IDF_TARGET_ESP32S3 == 1) +#define dsps_mul_f32_ae32_enabled 1 +#define dsps_mul_s16_aes3_enabled 1 +#endif + +#endif // __XTENSA__ + +#endif // _dsps_mul_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_f32_ansi.c new file mode 100644 index 0000000..4ef88dc --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_f32_ansi.c @@ -0,0 +1,70 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_mul.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_mul"; + +TEST_CASE("dsps_mul_f32_ansi functionality", "[dsps]") +{ + int n = 32; + float x[n]; + float y[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i; + y[i] = i * i; + } + dsps_mul_f32_ansi(x, x, x, n, 1, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_mul_f32_ae32 functionality", "[dsps]") +{ + int n = 32; + float x[n]; + float y[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i; + y[i] = i * i; + } + dsps_mul_f32_ae32(x, x, x, n, 1, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } + + int repeat_count = 1; + + dsps_mul_f32_ae32(x, x, x, n, 1, 1, 1); + + unsigned int start_b = xthal_get_ccount(); + dsps_mul_f32_ae32(x, x, x, n, 1, 1, 1); + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (n * repeat_count); + ESP_LOGI(TAG, "dsps_mul_f32_ae32 - %f cycles per sample \n", cycles); + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s16_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s16_ae32.c new file mode 100644 index 0000000..372ee83 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s16_ae32.c @@ -0,0 +1,61 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_mul.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_mul"; + +TEST_CASE("dsps_mul_s16_ae32 functionality", "[dsps]") +{ + int n = 64; + int16_t x[n]; + int16_t y[n]; + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + temp = ((int32_t)x[i] * (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_mul_s16_ae32(x, x, x, n, 1, 1, 1, shift); + for (int i = 0 ; i < n ; i++) { + ESP_LOGD(TAG, "x[%i] = %i %i", i, x[i], y[i]); + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_mul_s16_ae32 benchmark", "[dsps]") +{ + const int n = 256; + int16_t x[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_mul_s16_ae32(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_mul_s16_ae32 - %f cycles per sample \n", cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s16_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s16_aes3.c new file mode 100644 index 0000000..c1503c2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s16_aes3.c @@ -0,0 +1,69 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_mul.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +#if (dsps_mul_s16_aes3_enabled == 1) + +static const char *TAG = "dsps_mul"; +TEST_CASE("dsps_mul_s16_aes3 functionality", "[dsps]") +{ + int n = 64; + int16_t *x = (int16_t *)memalign(16, n * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, n * sizeof(int16_t)); + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + temp = ((int32_t)x[i] * (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_mul_s16_aes3(x, x, x, n, 1, 1, 1, shift); + for (int i = 0 ; i < n ; i++) { + ESP_LOGD(TAG, "x[%i] = %i %i", i, x[i], y[i]); + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } + free(x); + free(y); +} + +TEST_CASE("dsps_mul_s16_aes3 benchmark", "[dsps]") +{ + const int n = 2048; + int16_t *x = (int16_t *)memalign(16, n * sizeof(int16_t)); + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_mul_s16_aes3(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_mul_s16_aes3 - %f cycles per sample \n", cycles); + free(x); + +} +#endif // (dsps_mul_s16_aes3_enabled == 1) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s16_ansi.c new file mode 100644 index 0000000..b28db9d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s16_ansi.c @@ -0,0 +1,66 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_mul.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +static const char *TAG = "dsps_mul"; +TEST_CASE("dsps_mul_s16_ansi functionality", "[dsps]") +{ + int n = 64; + int16_t *x = (int16_t *)memalign(16, n * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, n * sizeof(int16_t)); + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + temp = ((int32_t)x[i] * (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_mul_s16_ansi(x, x, x, n, 1, 1, 1, shift); + for (int i = 0 ; i < n ; i++) { + ESP_LOGD(TAG, "x[%i] = %i %i", i, x[i], y[i]); + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } + free(x); + free(y); +} + +TEST_CASE("dsps_mul_s16_ansi benchmark", "[dsps]") +{ + const int n = 2048; + int16_t *x = (int16_t *)memalign(16, n * sizeof(int16_t)); + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_mul_s16_ansi(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_mul_s16_ansi - %f cycles per sample \n", cycles); + free(x); + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s8_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s8_aes3.c new file mode 100644 index 0000000..e40e978 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s8_aes3.c @@ -0,0 +1,69 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_mul.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +#if (dsps_mul_s16_aes3_enabled == 1) + +static const char *TAG = "dsps_mul"; +TEST_CASE("dsps_mul_s8_aes3 functionality", "[dsps]") +{ + int n = 64; + int8_t *x = (int8_t *)memalign(16, n * sizeof(int8_t)); + int8_t *y = (int8_t *)memalign(16, n * sizeof(int8_t)); + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i - n / 2; + temp = ((int32_t)x[i] * (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_mul_s8_aes3(x, x, x, n, 1, 1, 1, shift); + for (int i = 0 ; i < n ; i++) { + ESP_LOGD(TAG, "x[%i] = %i %i", i, x[i], y[i]); + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } + free(x); + free(y); +} + +TEST_CASE("dsps_mul_s8_aes3 benchmark", "[dsps]") +{ + const int n = 256; + int8_t *x = (int8_t *)memalign(16, n * sizeof(int8_t)); + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_mul_s8_aes3(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_mul_s8_aes3 - %f cycles per sample \n", cycles); + free(x); + +} +#endif // (dsps_mul_s16_aes3_enabled == 1) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s8_ansi.c new file mode 100644 index 0000000..35ce260 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mul/test/test_dsps_mul_s8_ansi.c @@ -0,0 +1,60 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_mul.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_mul"; + +TEST_CASE("dsps_mul_s8_ansi functionality", "[dsps]") +{ + int n = 64; + int8_t x[n]; + int8_t y[n]; + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i - n / 2; + temp = ((int32_t)x[i] * (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_mul_s8_ansi(x, x, x, n, 1, 1, 1, 0); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_mul_s8_ansi benchmark", "[dsps]") +{ + const int n = 256; + int8_t x[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_mul_s8_ansi(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_mul_s8_ansi - %f cycles per sample \n", cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/fixed/dsps_mulc_s16_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/fixed/dsps_mulc_s16_ae32.S new file mode 100644 index 0000000..d86d081 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/fixed/dsps_mulc_s16_ae32.S @@ -0,0 +1,77 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_mulc_platform.h" +#if (dsps_mulc_s16_ae32_enabled == 1) + + .text + .align 4 + .global dsps_mulc_s16_ae32 + .type dsps_mulc_s16_ae32,@function +// The function implements the following C code: +// esp_err_t dsps_mulc_f32_ansi(const float *input, float *output, int len, float C, int step_in, int step_out) +// { +// for (int i = 0 ; i < len ; i++) { +// int32_t acc = (int32_t)input[i * step_in] * (int32_t)C; +// output[i * step_out] = (int16_t)(acc>>15); +// } +// return ESP_OK; +// } +dsps_mulc_s16_ae32: +// input - a2 +// output - a3 +// len - a4 +// C - a5 +// step_in - a6 +// step_out - a7 + + entry a1, 16 + + movi.n a8, 15 // output shift + ssr a8 + + srli a4, a4, 1 // a4 = a4>>1 + slli a6, a6, 2 // a6 - step_in<<3, because we load two inputs per loop + slli a7, a7, 1 // a7 - step_out<<2 + + addi a6, a6, -4; + addi a2, a2, -4; + + ldinc m0, a2 + + loopnez a4, loop_end_mulc_f32_ae32 + add.n a2, a2, a6 // input+=step_input; + mul.DA.LL m0, a5 + rsr a8, acchi + rsr a9, acclo + src a8, a8, a9 // Here result in a8 + s16i a8, a3, 0 // store result to the putput + // rsr a9, acclo + // s16i a9, a3, 0 // store result to the putput + add.n a3, a3, a7 // output+=step_out; + mul.DA.HL m0, a5 + + rsr a8, acchi + rsr a9, acclo + ldinc m0, a2 // load next data + src a10, a8, a9 // Here result in a8 + s16i a10, a3, 0 // store result to the putput + // // rsr a9, acclo + // // s16i a9, a3, 0 // store result to the putput + add.n a3, a3, a7 // output+=step_out; +loop_end_mulc_f32_ae32: + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_mulc_s16_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/fixed/dsps_mulc_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/fixed/dsps_mulc_s16_ansi.c new file mode 100644 index 0000000..bb22c20 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/fixed/dsps_mulc_s16_ansi.c @@ -0,0 +1,31 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_mulc.h" + +esp_err_t dsps_mulc_s16_ansi(const int16_t *input, int16_t *output, int len, int16_t C, int step_in, int step_out) +{ + if (NULL == input) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + int32_t acc = (int32_t)input[i * step_in] * (int32_t)C; + output[i * step_out] = (int16_t)(acc >> 15); + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/float/dsps_mulc_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/float/dsps_mulc_f32_ae32.S new file mode 100644 index 0000000..d1eade0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/float/dsps_mulc_f32_ae32.S @@ -0,0 +1,57 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_mulc_platform.h" +#if (dsps_mulc_f32_ae32_enabled == 1) + +// This is bi quad filter form II for ESP32 processor. + .text + .align 4 + .global dsps_mulc_f32_ae32 + .type dsps_mulc_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dsps_mulc_f32_ansi(const float *input, float *output, int len, float C, int step_in, int step_out) +// { +// for (int i = 0 ; i < len ; i++) { +// output[i * step_out] = input[i * step_in] * C; +// } +// return ESP_OK; +// } +dsps_mulc_f32_ae32: +// input - a2 +// output - a3 +// len - a4 +// C - a5 +// step_in - a6 +// step_out - a7 + + entry a1, 16 + + slli a6, a6, 2 // a6 - step_in<<2 + slli a7, a7, 2 // a7 - step_out<<2 + wfr f0, a5 // a5 - load to the f0 + + loopnez a4, loop_end_mulc_f32_ae32 + lsi f1, a2, 0 + + mul.s f2, f1, f0 // f2 = f1 * f0 + add.n a2, a2, a6 // input1_ptr+=step_in; + ssi f2, a3, 0 + add.n a3, a3, a7 // output+=step_out; +loop_end_mulc_f32_ae32: + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_mulc_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/float/dsps_mulc_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/float/dsps_mulc_f32_ansi.c new file mode 100644 index 0000000..3c3c052 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/float/dsps_mulc_f32_ansi.c @@ -0,0 +1,30 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_mulc.h" + +esp_err_t dsps_mulc_f32_ansi(const float *input, float *output, int len, float C, int step_in, int step_out) +{ + if (NULL == input) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + output[i * step_out] = input[i * step_in] * C; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include/dsps_mulc.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include/dsps_mulc.h new file mode 100644 index 0000000..121faa9 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include/dsps_mulc.h @@ -0,0 +1,74 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_mulc_H_ +#define _dsps_mulc_H_ +#include "dsp_err.h" + +#include "dsps_mulc_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/**@{*/ +/** + * @brief multiply constant + * + * The function multiplies input array to the constant value + * x[i*step_out] = y[i*step_in]*C; i=[0..len) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] input: input array + * @param output: output array + * @param len: amount of operations for arrays + * @param C: constant value + * @param step_in: step over input array (by default should be 1) + * @param step_out: step over output array (by default should be 1) + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_mulc_f32_ansi(const float *input, float *output, int len, float C, int step_in, int step_out); +esp_err_t dsps_mulc_f32_ae32(const float *input, float *output, int len, float C, int step_in, int step_out); + +esp_err_t dsps_mulc_s16_ae32(const int16_t *input, int16_t *output, int len, int16_t C, int step_in, int step_out); +esp_err_t dsps_mulc_s16_ansi(const int16_t *input, int16_t *output, int len, int16_t C, int step_in, int step_out); + + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED +#if (dsps_mulc_f32_ae32_enabled == 1) +#define dsps_mulc_f32 dsps_mulc_f32_ae32 +#else // +#define dsps_mulc_f32 dsps_mulc_f32_ansi +#endif +#if (dsps_mulc_s16_ae32_enabled == 1) +#define dsps_mulc_s16 dsps_mulc_s16_ae32 +#else +#define dsps_mulc_s16 dsps_mulc_s16_ansi +#endif // dsps_mulc_s16_ae32_enabled + +#else +#define dsps_mulc_f32 dsps_mulc_f32_ansi +#define dsps_mulc_s16 dsps_mulc_s16_ansi +#endif + + +#endif // _dsps_mulc_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include/dsps_mulc_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include/dsps_mulc_platform.h new file mode 100644 index 0000000..97d95ce --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/include/dsps_mulc_platform.h @@ -0,0 +1,25 @@ +#ifndef _dsps_mulc_platform_H_ +#define _dsps_mulc_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dsps_mulc_f32_ae32_enabled 1 + +#endif + +#if ((XCHAL_HAVE_LOOPS == 1) && (XCHAL_HAVE_MAC16 == 1)) + +#define dsps_mulc_s16_ae32_enabled 1 + +#endif // +#endif // __XTENSA__ + + +#endif // _dsps_mulc_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/test/test_dsps_mulc_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/test/test_dsps_mulc_f32_ansi.c new file mode 100644 index 0000000..5007b57 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/test/test_dsps_mulc_f32_ansi.c @@ -0,0 +1,69 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_mulc.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_mulc"; + +TEST_CASE("dsps_mulc_f32_ansi functionality", "[dsps]") +{ + int n = 64; + float x[n]; + float y[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i; + y[i] = i * 10; + } + dsps_mulc_f32_ansi(x, x, n, 10, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_mulc_f32_ae32 functionality", "[dsps]") +{ + int n = 64; + float x[n]; + float y[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i; + y[i] = i * 10; + } + dsps_mulc_f32_ae32(x, x, n, 10, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } + + int repeat_count = 1; + + dsps_mulc_f32_ae32(x, x, n, 10, 1, 1); + + unsigned int start_b = xthal_get_ccount(); + dsps_mulc_f32_ae32(x, x, n, 10, 1, 1); + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (n * repeat_count); + ESP_LOGI(TAG, "dsps_mulc_f32_ae32 - %f cycles per sample \n", cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/test/test_dsps_mulc_s16_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/test/test_dsps_mulc_s16_ae32.c new file mode 100644 index 0000000..ed838f5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/test/test_dsps_mulc_s16_ae32.c @@ -0,0 +1,60 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_mulc.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_mulc"; + +TEST_CASE("dsps_mulc_s16_ae32 functionality", "[dsps]") +{ + int n = 64; + int16_t x[n]; + int16_t y[n]; + int32_t temp; + int16_t test_const = 0x2000; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + temp = (int32_t)x[i] * (int32_t)test_const; + y[i] = temp >> 15; + } + + dsps_mulc_s16_ae32(x, x, n, test_const, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_mulc_s16_ae32 benchmark", "[dsps]") +{ + const int n = 256; + int16_t x[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_mulc_s16_ae32(x, x, n, 10, 1, 1); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_mulc_f32_ae32 - %f cycles per sample \n", cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/test/test_dsps_mulc_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/test/test_dsps_mulc_s16_ansi.c new file mode 100644 index 0000000..69e64ad --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/mulc/test/test_dsps_mulc_s16_ansi.c @@ -0,0 +1,60 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_mulc.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_mulc"; + +TEST_CASE("dsps_mulc_s16_ansi functionality", "[dsps]") +{ + int n = 64; + int16_t x[n]; + int16_t y[n]; + int32_t temp; + int16_t test_const = 0x2000; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + temp = (int32_t)x[i] * (int32_t)test_const; + y[i] = temp >> 15; + } + + dsps_mulc_s16_ansi(x, x, n, test_const, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_mulc_s16_ae32 benchmark", "[dsps]") +{ + const int n = 256; + int16_t x[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_mulc_s16_ansi(x, x, n, 10, 1, 1); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_mulc_f32_ae32 - %f cycles per sample \n", cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/float/dsps_sqrt_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/float/dsps_sqrt_f32_ansi.c new file mode 100644 index 0000000..0d0d86e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/float/dsps_sqrt_f32_ansi.c @@ -0,0 +1,56 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_sqrt.h" +#include + + +inline float dsps_sqrtf_f32_ansi(float f) +{ + int result; + int *f_ptr = (int *)&f; + result = 0x1fbb4000 + (*f_ptr >> 1); + const int *p = &result; + float *f_result = (float *)p; + return *f_result; +} + +esp_err_t dsps_sqrt_f32_ansi(const float *input, float *output, int len) +{ + if (NULL == input) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + output[i] = dsps_sqrtf_f32_ansi(input[i]); + } + return ESP_OK; +} + +float dsps_inverted_sqrtf_f32_ansi(float data ) +{ + const float x2 = data * 0.5F; + const float threehalfs = 1.5F; + + union { + float f; + uint32_t i; + } conv = {data}; // member 'f' set to value of 'data'. + conv.i = 0x5f3759df - ( conv.i >> 1 ); + conv.f *= ( threehalfs - ( x2 * conv.f * conv.f ) ); + return conv.f; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include/dsps_sqrt.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include/dsps_sqrt.h new file mode 100644 index 0000000..7e67044 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/include/dsps_sqrt.h @@ -0,0 +1,91 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_sqrt_H_ +#define _dsps_sqrt_H_ +#include "dsp_err.h" + + +#ifdef __cplusplus +extern "C" +{ +#endif + +/**@{*/ +/** + * @brief square root approximation + * + * The function takes square root approximation + * x[i] ~ sqrt(y[i]); i=[0..len) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] input: input array + * @param output: output array + * @param len: amount of operations for arrays + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_sqrt_f32_ansi(const float *input, float *output, int len); +//esp_err_t dsps_sqrt_s32_ansi(const int32_t *input, int16_t *output, int len); + +/**@{*/ +/** + * @brief square root approximation + * + * The function takes square root approximation + * x ~ sqrt(y); + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] data: input value + * + * @return + * - square root value + */ +float dsps_sqrtf_f32_ansi(const float data); + + +/**@{*/ +/** + * @brief inverted square root approximation + * + * The function takes inverted square root approximation + * x ~ 1/sqrt(y); + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] data: input value + * + * @return + * - inverted square root value + */ +float dsps_inverted_sqrtf_f32_ansi(float data ); +/**@}*/ + +#ifdef __cplusplus +} +#endif + + +#ifdef CONFIG_DSP_OPTIMIZED +#define dsps_sqrt_f32 dsps_sqrt_f32_ansi +#define dsps_sqrtf_f32 dsps_sqrtf_f32_ansi +#define dsps_inverted_sqrtf_f32 dsps_inverted_sqrtf_f32_ansi +#else +#define dsps_sqrt_f32 dsps_sqrt_f32_ansi +#define dsps_sqrtf_f32 dsps_sqrtf_f32_ansi +#define dsps_inverted_sqrtf_f32 dsps_inverted_sqrtf_f32_ansi +#endif + +#endif // _dsps_sqrt_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/test/test_dsps_sqrt_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/test/test_dsps_sqrt_f32_ansi.c new file mode 100644 index 0000000..139b289 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sqrt/test/test_dsps_sqrt_f32_ansi.c @@ -0,0 +1,80 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_sqrt.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_sqrt"; + +TEST_CASE("dsps_sqrtf_f32_ansi functionality", "[dsps]") +{ + float max_err = -1000; + float max_value = 0; + float min_err = 0; + float min_value = INT32_MAX; + int test_points = 100000; + for (size_t i = 0; i < test_points; i++) { + float test_value = rand(); + // if (test_value > max_value) max_value = test_value; + // if (test_value < min_value) min_value = test_value; + float x = sqrtf(test_value); + float y = dsps_sqrtf_f32(test_value); + float error = 20 * log10f(fabs((x - y) / x) + 0.000001); + if (error > max_err) { + max_err = error; + max_value = test_value; + } + if (error < min_err) { + min_err = error; + min_value = test_value; + } + if (error > -25) { + ESP_LOGE(TAG, "dsps_sqrtf_f32_ansi: error = %f dB, value = %f (0x%8.8x)\n", error, test_value, (int)test_value); + TEST_ASSERT_EQUAL(x, y); + } + } + ESP_LOGI(TAG, "dsps_sqrtf_f32_ansi: max error = %f dB, min error = %f dB, max_value = %f (0x%8.8x), min_value = %f (0x%8.8x)\n", max_err, min_err, max_value, (int)max_value, min_value, (int)min_value); +} + +TEST_CASE("dsps_sqrt_f32_ansi functionality", "[dsps]") +{ + int n = 256; + float *x = (float *)malloc(sizeof(float) * n); + float *result = (float *)malloc(sizeof(float) * n); + float *y = (float *)malloc(sizeof(float) * n); + for (int i = 0 ; i < n ; i++) { + y[i] = i * 10; + x[i] = y[i] * y[i]; + } + unsigned int start_b = xthal_get_ccount(); + dsps_sqrt_f32_ansi(x, result, n); + float cycles = xthal_get_ccount() - start_b; + + for (int i = 0 ; i < n ; i++) { + //printf("Result[%i] = %f, expected = %f, diff = %f\n", i, result[i], y[i], 20*logf(fabs((result[i] - y[i])/y[i]) + 0.000001)); + float error = 20 * log10f(fabs((result[i] - y[i]) / y[i]) + 0.000001); + if (error > -25) { + TEST_ASSERT_EQUAL(result[i], y[i]); + } + } + ESP_LOGI(TAG, "dsps_sqrt_f32_ansi - %f cycles for %i samples \n", cycles, n); + free(x); + free(y); + free(result); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_ae32.S new file mode 100644 index 0000000..97120b4 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_ae32.S @@ -0,0 +1,74 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_sub_platform.h" +#if (dsps_sub_s16_ae32_enabled == 1) + + .text + .align 4 + .global dsps_sub_s16_ae32 + .type dsps_sub_s16_ae32,@function +// The function implements the following C code: +// esp_err_t dsps_sub_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +// { +// for (int i = 0 ; i < len ; i++) { +// int32_t acc = (int32_t)input1[i * step1] + (int32_t)input2[i * step2]; +// output[i * step_out] = acc >> shift; +// } +// return ESP_OK; +// } +dsps_sub_s16_ae32: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step_in1 - a6 +// step_in2 - a7 +// step_out - stack (a10) +// shift - stack (a9) + + entry a1, 16 + + + // l32i.n a10, a1, 16 + // s16i a10, a4, 0 + // l32i.n a10, a1, 20 + // s16i a10, a4, 2 + + l32i.n a10, a1, 16 // Load step_out to the a10 register + l32i.n a9, a1, 20 // Load shift to the a9 register + ssr a9 // sar = a9 + + slli a6, a6, 1 // a6 - step_in<<1 + slli a7, a7, 1 // a7 - step_in<<1 + slli a10, a10, 1 // a8 - step_out<<1 + + // s16i a10, a4, 0 + // s16i a6, a4, 2 + // s16i a7, a4, 4 + // s16i a5, a4, 6 + + l16si a11, a2, 0 + l16si a8, a3, 0 + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + loopnez a5, .loop_end_sub_s16_ae32 + add.n a2, a2, a6 // input1+=step_in1; + add.n a3, a3, a7 // input2+=step_in2; + + l16si a11, a2, 0 + l16si a8, a3, 0 + s16i a9, a4, 0 // store result to the putput + sub a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + add.n a4, a4, a10 // output+=step_out; +.loop_end_sub_s16_ae32: + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_sub_s16_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_aes3.S new file mode 100644 index 0000000..3448f65 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_aes3.S @@ -0,0 +1,104 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_sub_platform.h" +#if (dsps_sub_s16_aes3_enabled == 1) + + .text + .align 4 + .global dsps_sub_s16_aes3 + .type dsps_sub_s16_aes3,@function +// The function implements the following C code: +// esp_err_t dsps_sub_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +// { +// for (int i = 0 ; i < len ; i++) { +// int32_t acc = (int32_t)input1[i * step1] + (int32_t)input2[i * step2]; +// output[i * step_out] = acc >> shift; +// } +// return ESP_OK; +// } +dsps_sub_s16_aes3: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step_in1 - a6 +// step_in2 - a7 +// step_out - stack (a10) +// shift - stack (a9) + + entry a1, 16 + + l32i.n a10, a1, 16 // Load step_out to the a10 register + l32i.n a9, a1, 20 // Load shift to the a9 register + ssr a9 // sar = a9 + + // Check if any of steps is not 0 + addi a15, a6, -1 + bnez a15, .sub_s16_ae32_mode // Branch if step !=0 + addi a15, a7, -1 + bnez a15, .sub_s16_ae32_mode // Branch if step !=0 + addi a15, a10, -1 + bnez a15,.sub_s16_ae32_mode // Branch if step !=0 + + // Check addresses + movi a15, 0xF // modulo 16 mask + bany a2, a15, .sub_s16_ae32_mode // jump if != 0 + bany a3, a15, .sub_s16_ae32_mode // jump if != 0 + + // Check length (should be divided to 8) + movi a15, 0x7 // modulo 8 mask + bany a5, a15, .sub_s16_ae32_mode // jump if != 0 + + // Process main function for S3 + + slli a6, a6, 1 // a6 - step_in<<1 + slli a7, a7, 1 // a7 - step_in<<1 + slli a10, a10, 1 // a8 - step_out<<1 + wsr.sar a9 // load sar register + + // Preload q1 from a3 + //ee.vld.128.ip q1, a3, 16 + srli a5, a5, 3 + ee.vld.128.ip q0, a2, 16 + loopnez a5, .loop_end_sub_s16_aes3_main + ee.vld.128.ip q1, a3, 16 + ee.vsubs.s16.ld.incp q0, a2, q4, q0, q1 + ee.vst.128.ip q4, a4, 16 +.loop_end_sub_s16_aes3_main: + + // Exit for Esp32s3 mode + movi.n a2, 0 // return status ESP_OK + retw.n + + +.sub_s16_ae32_mode: + slli a6, a6, 1 // a6 - step_in<<1 + slli a7, a7, 1 // a7 - step_in<<1 + slli a10, a10, 1 // a8 - step_out<<1 + + l16si a11, a2, 0 + l16si a8, a3, 0 + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + loopnez a5, .loop_end_sub_s16_aes3 + add.n a2, a2, a6 // input1+=step_in1; + add.n a3, a3, a7 // input2+=step_in2; + + l16si a11, a2, 0 + l16si a8, a3, 0 + s16i a9, a4, 0 // store result to the putput + sub a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + add.n a4, a4, a10 // output+=step_out; +.loop_end_sub_s16_aes3: + // Exit for Esp32 mode + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_sub_s16_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_ansi.c new file mode 100644 index 0000000..7eea7f9 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s16_ansi.c @@ -0,0 +1,26 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_add.h" + +esp_err_t dsps_sub_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +{ + if (NULL == input1) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == input2) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + int32_t acc = (int32_t)input1[i * step1] - (int32_t)input2[i * step2]; + output[i * step_out] = acc >> shift; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s8_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s8_aes3.S new file mode 100644 index 0000000..4f863c8 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s8_aes3.S @@ -0,0 +1,97 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_sub_platform.h" +#if (dsps_sub_s16_aes3_enabled == 1) + + .text + .align 4 + .global dsps_sub_s8_aes3 + .type dsps_sub_s8_aes3,@function +// The function implements the following C code: +// esp_err_t dsps_sub_s8_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift) +// { +// for (int i = 0 ; i < len ; i++) { +// int32_t acc = (int32_t)input1[i * step1] + (int32_t)input2[i * step2]; +// output[i * step_out] = acc >> shift; +// } +// return ESP_OK; +// } +dsps_sub_s8_aes3: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step_in1 - a6 +// step_in2 - a7 +// step_out - stack (a10) +// shift - stack (a9) + + entry a1, 16 + + l32i.n a10, a1, 16 // Load step_out to the a10 register + l32i.n a9, a1, 20 // Load shift to the a9 register + ssr a9 // sar = a9 + + // Check if any of steps is not 0 + addi a15, a6, -1 + bnez a15, .sub_s8_ae32_mode // Branch if step !=0 + addi a15, a7, -1 + bnez a15, .sub_s8_ae32_mode // Branch if step !=0 + addi a15, a10, -1 + bnez a15,.sub_s8_ae32_mode // Branch if step !=0 + + // Check addresses + movi a15, 0xF // modulo 16 mask + bany a2, a15, .sub_s8_ae32_mode // jump if != 0 + bany a3, a15, .sub_s8_ae32_mode // jump if != 0 + + // Check length (should be divided to 8) + movi a15, 0xf // modulo 8 mask + bany a5, a15, .sub_s8_ae32_mode // jump if != 0 + + // Process main function for S3 + + wsr.sar a9 // load sar register + + // Preload q1 from a3 + //ee.vld.128.ip q1, a3, 16 + srli a5, a5, 4 + ee.vld.128.ip q0, a2, 16 + loopnez a5, .loop_end_sub_s8_aes3_main + ee.vld.128.ip q1, a3, 16 + ee.vsubs.s8.ld.incp q0, a2, q4, q0, q1 + ee.vst.128.ip q4, a4, 16 +.loop_end_sub_s8_aes3_main: + + // Exit for Esp32s3 mode + movi.n a2, 0 // return status ESP_OK + retw.n + + +.sub_s8_ae32_mode: + l8ui a11, a2, 0 + l8ui a8, a3, 0 + add a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + loopnez a5, .loop_end_sub_s8_aes3 + add.n a2, a2, a6 // input1+=step_in1; + add.n a3, a3, a7 // input2+=step_in2; + + l8ui a11, a2, 0 + l8ui a8, a3, 0 + s8i a9, a4, 0 // store result to the putput + sub a8, a11, a8 + srl a9, a8 // a8 = a8>>sar + + add.n a4, a4, a10 // output+=step_out; +.loop_end_sub_s8_aes3: + // Exit for Esp32 mode + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_sub_s8_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s8_ansi.c new file mode 100644 index 0000000..48023af --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/fixed/dsps_sub_s8_ansi.c @@ -0,0 +1,26 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_sub.h" + +esp_err_t dsps_sub_s8_ansi(const int8_t *input1, const int8_t *input2, int8_t *output, int len, int step1, int step2, int step_out, int shift) +{ + if (NULL == input1) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == input2) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + int32_t acc = (int32_t)input1[i * step1] - (int32_t)input2[i * step2]; + output[i * step_out] = acc >> shift; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/float/dsps_sub_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/float/dsps_sub_f32_ae32.S new file mode 100644 index 0000000..5f08d2f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/float/dsps_sub_f32_ae32.S @@ -0,0 +1,64 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_sub_platform.h" +#if (dsps_sub_f32_ae32_enabled == 1) + +// This is bi quad filter form II for ESP32 processor. + .text + .align 4 + .global dsps_sub_f32_ae32 + .type dsps_sub_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dsps_sub_f32_ae32(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out) +// { +// for (int i = 0 ; i < len ; i++) { +// output[i * step_out] = input1[i * step1] - input2[i * step2]; +// } +// return ESP_OK; +// } + +dsps_sub_f32_ae32: +// input1 - a2 +// input2 - a3 +// output - a4 +// len - a5 +// step1 - a6 +// step2 - a7 +// step_out - stack (a8) + + entry a1, 16 + + l32i.n a8, a1, 16 // Load step_out to the a8 register + slli a6, a6, 2 // a6 - step1<<2 + slli a7, a7, 2 // a7 - step2<<2 + slli a8, a8, 2 // a8 - step_out<<2 + + lsi f0, a2, 0 + add.n a2, a2, a6 // input1_ptr+=step1; + loopnez a5, loop_end_sub_f32_ae32 + lsi f1, a3, 0 + add.n a3, a3, a7 // input2_ptr+=step2; + + sub.s f2, f0, f1 // f2 = f0 - f1 + lsi f0, a2, 0 + add.n a2, a2, a6 // input1_ptr+=step1; + ssi f2, a4, 0 + add.n a4, a4, a8 // input2_ptr+=step2; +loop_end_sub_f32_ae32: + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dsps_sub_f32_ae32_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/float/dsps_sub_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/float/dsps_sub_f32_ansi.c new file mode 100644 index 0000000..4a32800 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/float/dsps_sub_f32_ansi.c @@ -0,0 +1,33 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_sub.h" + +esp_err_t dsps_sub_f32_ansi(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out) +{ + if (NULL == input1) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == input2) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + for (int i = 0 ; i < len ; i++) { + output[i * step_out] = input1[i * step1] - input2[i * step2]; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include/dsps_sub.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include/dsps_sub.h new file mode 100644 index 0000000..cb1afa2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include/dsps_sub.h @@ -0,0 +1,87 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_sub_H_ +#define _dsps_sub_H_ +#include "dsp_err.h" + +#include "dsps_sub_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + + +/**@{*/ +/** + * @brief sub arrays + * + * The function subtract one array from another + * out[i*step_out] = input1[i*step1] - input2[i*step2]; i=[0..len) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] input1: input array 1 + * @param[in] input2: input array 2 + * @param output: output array + * @param len: amount of operations for arrays + * @param step1: step over input array 1 (by default should be 1) + * @param step2: step over input array 2 (by default should be 1) + * @param step_out: step over output array (by default should be 1) + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_sub_f32_ansi(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out); +esp_err_t dsps_sub_f32_ae32(const float *input1, const float *input2, float *output, int len, int step1, int step2, int step_out); + +esp_err_t dsps_sub_s16_ansi(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift); +esp_err_t dsps_sub_s16_ae32(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift); +esp_err_t dsps_sub_s16_aes3(const int16_t *input1, const int16_t *input2, int16_t *output, int len, int step1, int step2, int step_out, int shift); + +esp_err_t dsps_sub_s8_ansi(const int8_t *input1, const int8_t *input2, int8_t *output, int len, int step1, int step2, int step_out, int shift); +esp_err_t dsps_sub_s8_aes3(const int8_t *input1, const int8_t *input2, int8_t *output, int len, int step1, int step2, int step_out, int shift); +/**@}*/ + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED + +#if (dsps_sub_f32_ae32_enabled == 1) +#define dsps_sub_f32 dsps_sub_f32_ae32 +#else +#define dsps_sub_f32 dsps_sub_f32_ansi +#endif + +#if (dsps_sub_s16_aes3_enabled == 1) +#define dsps_sub_s16 dsps_sub_s16_aes3 +#define dsps_sub_s8 dsps_sub_s8_aes3 +#elif (dsps_sub_s16_ae32_enabled == 1) +#define dsps_sub_s16 dsps_sub_s16_ae32 +#define dsps_sub_s8 dsps_sub_s8_ansi +#else +#define dsps_sub_s16 dsps_sub_s16_ansi +#define dsps_sub_s8 dsps_sub_s8_ansi +#endif + +#else // CONFIG_DSP_OPTIMIZED +#define dsps_sub_f32 dsps_sub_f32_ansi +#define dsps_sub_s16 dsps_sub_s16_ansi +#define dsps_sub_s8 dsps_sub_s8_ansi +#endif // CONFIG_DSP_OPTIMIZED + +#endif // _dsps_sub_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include/dsps_sub_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include/dsps_sub_platform.h new file mode 100644 index 0000000..5b59951 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/include/dsps_sub_platform.h @@ -0,0 +1,30 @@ +#ifndef _dsps_sub_platform_H_ +#define _dsps_sub_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dsps_sub_f32_ae32_enabled 1 +#define dsps_sub_s16_ae32_enabled 1 + +#endif + +#if (XCHAL_HAVE_LOOPS == 1) +#define dsps_sub_f32_ae32_enabled 1 +#define dsps_sub_s16_ae32_enabled 1 +#endif + +#if (CONFIG_IDF_TARGET_ESP32S3 == 1) +#define dsps_sub_f32_ae32_enabled 1 +#define dsps_sub_s16_aes3_enabled 1 +#endif + +#endif // __XTENSA__ + +#endif // _dsps_sub_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_f32_ansi.c new file mode 100644 index 0000000..41d388b --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_f32_ansi.c @@ -0,0 +1,72 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_sub.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_sub"; + +TEST_CASE("dsps_sub_f32_ansi functionality", "[dsps]") +{ + int n = 32; + float x[n]; + float y[n]; + float z[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i * 3; + y[i] = i * 2; + z[i] = i; + } + dsps_sub_f32_ansi(x, y, x, n, 1, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != z[i]) { + TEST_ASSERT_EQUAL(x[i], z[i]); + } + } +} + +TEST_CASE("dsps_sub_f32_ae32 functionality", "[dsps]") +{ + int n = 32; + float x[n]; + float y[n]; + float z[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i * 3; + y[i] = i * 2; + z[i] = i; + } + dsps_sub_f32_ae32(x, y, x, n, 1, 1, 1); + for (int i = 0 ; i < n ; i++) { + if (x[i] != z[i]) { + TEST_ASSERT_EQUAL(x[i], z[i]); + } + } + + int repeat_count = 1; + dsps_sub_f32_ae32(x, x, x, n, 1, 1, 1); + + unsigned int start_b = xthal_get_ccount(); + dsps_sub_f32_ae32(x, x, x, n, 1, 1, 1); + unsigned int end_b = xthal_get_ccount(); + + float total_b = end_b - start_b; + float cycles = total_b / (n * repeat_count); + ESP_LOGI(TAG, "dsps_sub_f32_ae32 - %f cycles per sample \n", cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s16_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s16_ae32.c new file mode 100644 index 0000000..37b57ec --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s16_ae32.c @@ -0,0 +1,56 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_sub.h" +#include "esp_attr.h" + +#if (dsps_sub_s16_ae32_enabled == 1) + +static const char *TAG = "dsps_sub"; + +TEST_CASE("dsps_sub_s16_ae32 functionality", "[dsps]") +{ + int n = 64; + int16_t x[n]; + int16_t y[n]; + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + temp = ((int32_t)x[i] - (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_sub_s16_ae32(x, x, x, n, 1, 1, 1, shift); + for (int i = 0 ; i < n ; i++) { + ESP_LOGD(TAG, "x[%i] = %i %i", i, x[i], y[i]); + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_sub_s16_ae32 benchmark", "[dsps]") +{ + const int n = 256; + int16_t x[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_sub_s16_ae32(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_sub_s16_ae32 - %f cycles per sample \n", cycles); +} +#endif // dsps_sub_s16_ae32_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s16_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s16_aes3.c new file mode 100644 index 0000000..2bd8b95 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s16_aes3.c @@ -0,0 +1,61 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_sub.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +#if (dsps_sub_s16_aes3_enabled == 1) + +static const char *TAG = "dsps_sub"; +TEST_CASE("dsps_sub_s16_aes3 functionality", "[dsps]") +{ + int n = 64; + int16_t *x = (int16_t *)memalign(16, n * sizeof(int16_t)); + int16_t *y = (int16_t *)memalign(16, n * sizeof(int16_t)); + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + temp = ((int32_t)x[i] - (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_sub_s16_aes3(x, x, x, n, 1, 1, 1, shift); + for (int i = 0 ; i < n ; i++) { + ESP_LOGD(TAG, "x[%i] = %i %i", i, x[i], y[i]); + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } + free(x); + free(y); +} + +TEST_CASE("dsps_sub_s16_aes3 benchmark", "[dsps]") +{ + const int n = 256; + int16_t *x = (int16_t *)memalign(16, n * sizeof(int16_t)); + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_sub_s16_aes3(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_sub_s16_aes3 - %f cycles per sample \n", cycles); + free(x); + +} +#endif // (dsps_sub_s16_aes3_enabled == 1) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s16_ansi.c new file mode 100644 index 0000000..29613c5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s16_ansi.c @@ -0,0 +1,53 @@ +/* + * SPDX-FileCopyrightText: 2018-2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_sub.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_sub"; + +TEST_CASE("dsps_sub_s16_ansi functionality", "[dsps]") +{ + int n = 64; + int16_t x[n]; + int16_t y[n]; + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + temp = ((int32_t)x[i] - (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_sub_s16_ansi(x, x, x, n, 1, 1, 1, shift); + for (int i = 0 ; i < n ; i++) { + ESP_LOGD(TAG, "x[%i] = %i %i", i, x[i], y[i]); + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_sub_s16_ansi benchmark", "[dsps]") +{ + const int n = 256; + int16_t x[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_sub_s16_ansi(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_sub_s16_ansi - %f cycles per sample \n", cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s8_aes3.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s8_aes3.c new file mode 100644 index 0000000..112559d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s8_aes3.c @@ -0,0 +1,61 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include + +#include "dsps_sub.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +#if (dsps_sub_s16_aes3_enabled == 1) + +static const char *TAG = "dsps_sub"; +TEST_CASE("dsps_sub_s8_aes3 functionality", "[dsps]") +{ + int n = 64; + int8_t *x = (int8_t *)memalign(16, n * sizeof(int8_t)); + int8_t *y = (int8_t *)memalign(16, n * sizeof(int8_t)); + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i - n / 2; + temp = ((int32_t)x[i] - (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_sub_s8_aes3(x, x, x, n, 1, 1, 1, shift); + for (int i = 0 ; i < n ; i++) { + ESP_LOGD(TAG, "x[%i] = %i %i", i, x[i], y[i]); + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } + free(x); + free(y); +} + +TEST_CASE("dsps_sub_s8_aes3 benchmark", "[dsps]") +{ + const int n = 256; + int8_t *x = (int8_t *)memalign(16, n * sizeof(int8_t)); + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_sub_s8_aes3(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_sub_s8_aes3 - %f cycles per sample \n", cycles); + free(x); + +} +#endif // (dsps_sub_s16_aes3_enabled == 1) diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s8_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s8_ansi.c new file mode 100644 index 0000000..5ba8051 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/math/sub/test/test_dsps_sub_s8_ansi.c @@ -0,0 +1,52 @@ +/* + * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_sub.h" +#include "esp_attr.h" + +static const char *TAG = "dsps_sub"; + +TEST_CASE("dsps_sub_s8_ansi functionality", "[dsps]") +{ + int n = 64; + int8_t x[n]; + int8_t y[n]; + int32_t temp; + int shift = 0; + for (int i = 0 ; i < n ; i++) { + x[i] = i - n / 2; + temp = ((int32_t)x[i] - (int32_t)x[i]) >> shift; + y[i] = temp; + } + + dsps_sub_s8_ansi(x, x, x, n, 1, 1, 1, 0); + for (int i = 0 ; i < n ; i++) { + if (x[i] != y[i]) { + TEST_ASSERT_EQUAL(x[i], y[i]); + } + } +} + +TEST_CASE("dsps_sub_s8_ansi benchmark", "[dsps]") +{ + const int n = 256; + int8_t x[n]; + for (int i = 0 ; i < n ; i++) { + x[i] = i << 4; + } + + unsigned int start_b = xthal_get_ccount(); + dsps_sub_s8_ansi(x, x, x, n, 1, 1, 1, 0); + unsigned int end_b = xthal_get_ccount(); + + float cycles = end_b - start_b; + ESP_LOGI(TAG, "dsps_sub_s8_ansi - %f cycles per sample \n", cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/float/dspm_add_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/float/dspm_add_f32_ae32.S new file mode 100644 index 0000000..ca7bf01 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/float/dspm_add_f32_ae32.S @@ -0,0 +1,63 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dspm_add_platform.h" +#if (dspm_add_f32_ae32_enabled == 1) + +// This is an add function for sub-matrices for ESP32 processor + .text + .align 4 + .global dspm_add_f32_ae32 + .type dspm_add_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dspm_add_f32_ansi(const float *input1, const float *input2, float *output, int rows, int cols, int padd1, int padd2, int padd_out, int step1, int step2, int step_out); + +dspm_add_f32_ae32: +// input1 - a2 +// input2 - a3 +// output - a4 +// rows - a5 +// cols - a6 +// padd1 - a7 +// padd2 - a8 +// padd_out - a9 +// step1 - a10 +// step2 - a11 +// step_out - a12 + + entry a1, 16 + + l32i.n a8, a1, 16 // padd2 + l32i.n a9, a1, 20 // padd_out + l32i.n a10, a1, 24 // step1 + l32i.n a11, a1, 24 // step2 + l32i.n a12, a1, 24 // step_out + + slli a10, a10, 2 // a10 - step1 << 2 + slli a11, a11, 2 // a11 - step2 << 2 + slli a12, a12, 2 // a12 - step_out << 2 + + .outer_loop_add_f32_ae32: + + loopnez a6, .loop_add_f32_ae32 + lsxp f0, a2, a10 // load input1 to f0, increment input1 (input1_ptr+=step1) + lsxp f1, a3, a11 // load input2 to f1, increment input2 (input2_ptr+=step2) + + add.s f2, f0, f1 // f2 = f0 + f1 + ssxp f2, a4, a12 // save result f2 to output a4, increment output (output_ptr+=step_out) + .loop_add_f32_ae32: + + addx4 a3, a8, a3 // input2_ptr += (padd2 << 2); + addx4 a2, a7, a2 // input1_ptr += (padd1 << 2); + addx4 a4, a9, a4 // output_ptr += (padd_out << 2); + addi.n a5, a5, -1 // rows - 1 + + bnez a5, .outer_loop_add_f32_ae32 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dspm_add_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/float/dspm_add_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/float/dspm_add_f32_ansi.c new file mode 100644 index 0000000..2fd640c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/float/dspm_add_f32_ansi.c @@ -0,0 +1,64 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + + +#include "dspm_add.h" + +esp_err_t dspm_add_f32_ansi(const float *input1, const float *input2, float *output, int rows, int cols, int padd1, int padd2, int padd_out, int step1, int step2, int step_out) +{ + if (NULL == input1) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == input2) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (rows <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (cols <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (padd1 < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (padd2 < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (padd_out < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (step1 <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (step2 <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (step_out <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + const int ptr_input1_step = cols + padd1; + const int ptr_input2_step = cols + padd2; + const int ptr_output_step = cols + padd_out; + float *ptr_input1 = (float *)input1; + float *ptr_input2 = (float *)input2; + + for (int row = 0; row < rows; row++) { + for (int col = 0; col < cols; col++) { + output[col * step_out] = ptr_input1[col * step1] + ptr_input2[col * step2]; + } + ptr_input1 += ptr_input1_step; + ptr_input2 += ptr_input2_step; + output += ptr_output_step; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include/dspm_add.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include/dspm_add.h new file mode 100644 index 0000000..c65bece --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include/dspm_add.h @@ -0,0 +1,65 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + + +#ifndef _dspm_add_H_ +#define _dspm_add_H_ +#include "dsp_err.h" + +#include "dspm_add_platform.h" + + +#ifdef __cplusplus +extern "C" +{ +#endif + + +/**@{*/ +/** + * @brief add two arrays with paddings (add two sub-matrices) + * + * The function adds two arrays defined as sub-matrices with paddings + * out[row * ptr_step_out + col * step_out] = in1[row * ptr_step_in1 + col * step1] + in2[row * ptr_step_in2 + col * step2]; + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] input1: input array 1 + * @param[in] input2: input array 2 + * @param[out] output: output array + * @param[in] rows: matrix rows + * @param[in] cols: matrix cols + * @param[in] padd1: input array 1 padding + * @param[in] padd2: input array 2 padding + * @param[in] padd_out: output array padding + * @param[in] step1: step over input array 1 (by default should be 1) + * @param[in] step2: step over input array 2 (by default should be 1) + * @param[in] step_out: step over output array (by default should be 1) + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspm_add_f32_ansi(const float *input1, const float *input2, float *output, int rows, int cols, int padd1, int padd2, int padd_out, int step1, int step2, int step_out); +esp_err_t dspm_add_f32_ae32(const float *input1, const float *input2, float *output, int rows, int cols, int padd1, int padd2, int padd_out, int step1, int step2, int step_out); +/**@}*/ + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED + +#if (dspm_add_f32_ae32_enabled == 1) +#define dspm_add_f32 dspm_add_f32_ae32 +#else +#define dspm_add_f32 dspm_add_f32_ansi +#endif + +#else // CONFIG_DSP_OPTIMIZED +#define dspm_add_f32 dspm_add_f32_ansi +#endif // CONFIG_DSP_OPTIMIZED + +#endif // _dspm_add_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include/dspm_add_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include/dspm_add_platform.h new file mode 100644 index 0000000..eed832d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/include/dspm_add_platform.h @@ -0,0 +1,20 @@ +#ifndef _dspm_add_platform_H_ +#define _dspm_add_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dspm_add_f32_ae32_enabled 1 + +#endif + +#endif // __XTENSA__ + + +#endif // _dspm_add_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/test/test_dspm_add_f32_ae32.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/test/test_dspm_add_f32_ae32.cpp new file mode 100644 index 0000000..b870b0b --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/test/test_dspm_add_f32_ae32.cpp @@ -0,0 +1,146 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include "esp_dsp.h" +#include "dspm_add.h" +#include "esp_attr.h" +#include "test_mat_common.h" +#include "dsp_tests.h" + +TEST_CASE("dspm_add_f32_ae32 functionality", "[dspm]") +{ + // create ROI rectangle + dspm::Mat::Rect roi_rect; + + char message[60]; + for (int var = 0; var < 7; var++) { + for (int start_row = 0; start_row < 2; start_row++) { + for (int start_col = 0; start_col < 2; start_col++) { + for (int row = 1; row < 6; row++) { + for (int col = 1; col < 6; col++) { + sprintf(message, "var = %d s_row = %d s_col = %d, row = %d, col = %d", var, start_row, start_col, row, col); + // create A B C matrices with row col dimensions + padding + // padding is from both sides of the targeted sub-matrix + // 1 1 1 1 + // 1 x x 1 + // 1 x x 1 + // 1 1 1 1 + dspm::Mat A(row + (2 * start_row), col + (2 * start_col)); + dspm::Mat B(row + (2 * start_row), col + (2 * start_col)); + dspm::Mat C_compare(row + (2 * start_row), col + (2 * start_col)); + dspm::Mat C = dspm::Mat::ones(row + (2 * start_row), col + (2 * start_col)); + + // create A B C sub matrices with undefined dimensions + dspm::Mat A_sub; + dspm::Mat B_sub; + dspm::Mat C_sub; + + // adjust ROI rectangles + roi_rect.resizeRect(start_col, start_row, col, row); + + for (int i = 0; i < A.length; i++) { + A.data[i] = i + 1; + B.data[i] = i + 1; + C_compare.data[i] = (i + 1) * 2; + } + + // Combinations of A B C matrices and sub-matrices are created for testing + // As an example: case 1 + // Matrices A and C are sub-matrices - the data are defined as a pointer to an external buffer + // Matrix B is a matrix - the data are copied into the B matrix + switch (var) { + case 0: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub-matrix - NO DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 1: { + A_sub = A.Get(roi_rect); // A matrix - DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub_matirx - NO DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub_matirx - NO DATA CPY + } break; + case 2: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub = B.Get(roi_rect); // B matrix - DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 3: { + A_sub = A.Get(roi_rect); // A matrix - DATA CPY + B_sub = B.Get(roi_rect); // B matrix - DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 4: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub-matrix - NO DATA CPY + C_sub = C.Get(roi_rect); // C matrix - DATA CPY + } break; + case 5: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub = B.Get(roi_rect); // B matrix - DATA CPY + C_sub = C.Get(roi_rect); // C matrix - DATA CPY + } break; + case 6: { + A_sub = A.Get(roi_rect); // A matrix - DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub-matrix - NO DATA CPY + C_sub = C.Get(roi_rect); // C matrix - DATA CPY + } break; + default: + break; + } + + dspm_add_f32(A_sub.data, B_sub.data, C_sub.data, row, col, A_sub.padding, B_sub.padding, C_sub.padding, 1, 1, 1); + dspm::Mat C_sub_check = C_compare.Get(roi_rect); + + // C is a sub-matrix + if (C_sub.sub_matrix) { + // Create a copy of the original C matrix (filled with ones 1) + // to check if an area around the sub-matrix is unaffected after a matrix operation + dspm::Mat C_area_check = dspm::Mat::ones(row + (2 * start_row), col + (2 * start_col)); + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + test_assert_check_area_mat_mat(C_area_check, C_sub, start_row, start_col, message); + // C is a matrix + } else { + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + } + } + } + } + } + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_add_f32_ae32 benchmark", "[dspm]") +{ + const int dim = 4; + const int M_off = 1; + + dspm::Mat mat(dim + M_off, dim + M_off); + dspm::Mat mat_sub = mat.getROI(M_off, M_off, dim, dim); + + portENTER_CRITICAL(&testnlock); + dspm_add_f32(mat_sub.data, mat_sub.data, mat_sub.data, dim, dim, mat_sub.padding, mat_sub.padding, mat_sub.padding, 1, 1, 1); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_add_f32(mat_sub.data, mat_sub.data, mat_sub.data, dim, dim, mat_sub.padding, mat_sub.padding, mat_sub.padding, 1, 1, 1); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dspm_add_f32_ae32 - %f per sample %dx%d.\n", cycles, dim, dim); + float min_exec = 100; + float max_exec = 1400; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/test/test_dspm_add_f32_ansi.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/test/test_dspm_add_f32_ansi.cpp new file mode 100644 index 0000000..648b6e9 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/add/test/test_dspm_add_f32_ansi.cpp @@ -0,0 +1,146 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include "esp_dsp.h" +#include "dspm_add.h" +#include "esp_attr.h" +#include "test_mat_common.h" +#include "dsp_tests.h" + +TEST_CASE("dspm_add_f32_ansi functionality", "[dsps]") +{ + // create ROI rectangle + dspm::Mat::Rect roi_rect; + + char message[60]; + for (int var = 0; var < 7; var++) { + for (int start_row = 0; start_row < 2; start_row++) { + for (int start_col = 0; start_col < 2; start_col++) { + for (int row = 1; row < 6; row++) { + for (int col = 1; col < 6; col++) { + sprintf(message, "var = %d s_row = %d s_col = %d, row = %d, col = %d", var, start_row, start_col, row, col); + // create A B C matrices with row col dimensions + padding + // padding is from both sides of the targeted sub-matrix + // 1 1 1 1 + // 1 x x 1 + // 1 x x 1 + // 1 1 1 1 + dspm::Mat A(row + (2 * start_row), col + (2 * start_col)); + dspm::Mat B(row + (2 * start_row), col + (2 * start_col)); + dspm::Mat C_compare(row + (2 * start_row), col + (2 * start_col)); + dspm::Mat C = dspm::Mat::ones(row + (2 * start_row), col + (2 * start_col)); + + // create A B C sub matrices with undefined dimensions + dspm::Mat A_sub; + dspm::Mat B_sub; + dspm::Mat C_sub; + + // adjust ROI rectangles + roi_rect.resizeRect(start_col, start_row, col, row); + + for (int i = 0; i < A.length; i++) { + A.data[i] = i + 1; + B.data[i] = i + 1; + C_compare.data[i] = (i + 1) * 2; + } + + // Combinations of A B C matrices and sub-matrices are created for testing + // As an example: case 1 + // Matrices A and C are sub-matrices - the data are defined as a pointer to an external buffer + // Matrix B is a matrix - the data are copied into the B matrix + switch (var) { + case 0: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub-matrix - NO DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 1: { + A_sub = A.Get(roi_rect); // A matrix - DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub_matirx - NO DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub_matirx - NO DATA CPY + } break; + case 2: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub = B.Get(roi_rect); // B matrix - DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 3: { + A_sub = A.Get(roi_rect); // A matrix - DATA CPY + B_sub = B.Get(roi_rect); // B matrix - DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 4: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub-matrix - NO DATA CPY + C_sub = C.Get(roi_rect); // C matrix - DATA CPY + } break; + case 5: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub = B.Get(roi_rect); // B matrix - DATA CPY + C_sub = C.Get(roi_rect); // C matrix - DATA CPY + } break; + case 6: { + A_sub = A.Get(roi_rect); // A matrix - DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub-matrix - NO DATA CPY + C_sub = C.Get(roi_rect); // C matrix - DATA CPY + } break; + default: + break; + } + + dspm_add_f32_ansi(A_sub.data, B_sub.data, C_sub.data, row, col, A_sub.padding, B_sub.padding, C_sub.padding, 1, 1, 1); + dspm::Mat C_sub_check = C_compare.Get(roi_rect); + + // C is a sub-matrix + if (C_sub.sub_matrix) { + // Create a copy of the original C matrix (filled with ones 1) + // to check if an area around the sub-matrix is unaffected after a matrix operation + dspm::Mat C_area_check = dspm::Mat::ones(row + (2 * start_row), col + (2 * start_col)); + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + test_assert_check_area_mat_mat(C_area_check, C_sub, start_row, start_col, message); + // C is a matrix + } else { + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + } + } + } + } + } + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_add_f32_ansi benchmark", "[dsps]") +{ + const int dim = 4; + const int M_off = 1; + + dspm::Mat mat(dim + M_off, dim + M_off); + dspm::Mat mat_sub = mat.getROI(M_off, M_off, dim, dim); + + portENTER_CRITICAL(&testnlock); + dspm_add_f32_ansi(mat_sub.data, mat_sub.data, mat_sub.data, dim, dim, mat_sub.padding, mat_sub.padding, mat_sub.padding, 1, 1, 1); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_add_f32_ansi(mat_sub.data, mat_sub.data, mat_sub.data, dim, dim, mat_sub.padding, mat_sub.padding, mat_sub.padding, 1, 1, 1); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dspm_add_f32_ansi - %f per sample %dx%d.\n", cycles, dim, dim); + float min_exec = 100; + float max_exec = 1400; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/float/dspm_addc_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/float/dspm_addc_f32_ae32.S new file mode 100644 index 0000000..efd514e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/float/dspm_addc_f32_ae32.S @@ -0,0 +1,58 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dspm_addc_platform.h" +#if (dspm_addc_f32_ae32_enabled == 1) + +// This is an add function for sub-matrices for ESP32 processor + .text + .align 4 + .global dspm_addc_f32_ae32 + .type dspm_addc_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dspm_addc_f32_ansi(const float *input, float *output, float C, int rows, int cols, int padd_in, int padd_out, int step_in, int step_out); + +dspm_addc_f32_ae32: +// input - a2 +// output - a3 +// C - a4 +// rows - a5 +// cols - a6 +// padd_in - a7 +// padd_out - a8 +// step_in - a9 +// step_out - a10 + + entry a1, 16 + + l32i.n a8, a1, 16 // padd_out + l32i.n a9, a1, 20 // step_in + l32i.n a10, a1, 24 // step_out + + slli a9, a9, 2 // a9 - step_in << 2 + slli a10, a10, 2 // a10 - step_out << 2 + + wfr f0, a4 // a4 - load to the f0 + + .outer_loop_addc_f32_ae32: + + loopnez a6, .loop_addc_f32_ae32 + lsxp f1, a2, a9 // load input to f1, increment input (input_ptr+=step_in) + + add.s f2, f0, f1 // f2 = f0 + f1 + ssxp f2, a3, a10 // save result f2 to output a3, increment output (output_ptr+=step_out) + .loop_addc_f32_ae32: + + addx4 a2, a7, a2 // input1_ptr += (padd_in << 2); + addx4 a3, a8, a3 // output_ptr += (padd_out << 2); + addi.n a5, a5, -1 // rows - 1 + + bnez a5, .outer_loop_addc_f32_ae32 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dspm_add_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/float/dspm_addc_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/float/dspm_addc_f32_ansi.c new file mode 100644 index 0000000..ad3a66e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/float/dspm_addc_f32_ansi.c @@ -0,0 +1,51 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dspm_addc.h" + +esp_err_t dspm_addc_f32_ansi(const float *input, float *output, float C, int rows, int cols, int padd_in, int padd_out, int step_in, int step_out) +{ + if (NULL == input) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (rows <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (cols <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (padd_in < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (padd_out < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (step_in <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (step_out <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + const int ptr_step_in = cols + padd_in; + const int ptr_step_out = cols + padd_out; + float *ptr_input = (float *)input; + + for (int row = 0; row < rows; row++) { + for (int col = 0; col < cols; col++) { + output[col * step_out] = ptr_input[col * step_in] + C; + } + output += ptr_step_out; + ptr_input += ptr_step_in; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include/dspm_addc.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include/dspm_addc.h new file mode 100644 index 0000000..e0439dd --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include/dspm_addc.h @@ -0,0 +1,60 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef _dspm_addc_H_ +#define _dspm_addc_H_ +#include "dsp_err.h" + +#include "dspm_addc_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + + +/**@{*/ +/** + * @brief add a constant and an array with padding (add a constant and a sub-matrix) + * + * The function adds a constant and an array defined as a sub-matrix with padding + * out[row * ptr_step_out + col * step_out] = input[row * ptr_step_in + col * step_in] + C; + * The implementation uses ANSI C and could be compiled and run on any platform + * + * @param[in] input: input array + * @param[out] output: output array + * @param[in] C: constant value + * @param[in] rows: matrix rows + * @param[in] cols: matrix cols + * @param[in] padd_in: input array padding + * @param[in] padd_out: output array padding + * @param[in] step_in: step over input array (by default should be 1) + * @param[in] step_out: step over output array (by default should be 1) + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspm_addc_f32_ansi(const float *input, float *output, float C, int rows, int cols, int padd_in, int padd_out, int step_in, int step_out); +esp_err_t dspm_addc_f32_ae32(const float *input, float *output, float C, int rows, int cols, int padd_in, int padd_out, int step_in, int step_out); + + +#ifdef __cplusplus +} +#endif + + +#if CONFIG_DSP_OPTIMIZED +#if (dspm_addc_f32_ae32_enabled == 1) +#define dspm_addc_f32 dspm_addc_f32_ae32 +#else +#define dspm_addc_f32 dspm_addc_f32_ansi +#endif +#else +#define dspm_addc_f32 dspm_addc_f32_ansi +#endif // CONFIG_DSP_OPTIMIZED + +#endif // _dspm_addc_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include/dspm_addc_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include/dspm_addc_platform.h new file mode 100644 index 0000000..2649d70 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/include/dspm_addc_platform.h @@ -0,0 +1,19 @@ +#ifndef _dspm_addc_platform_H_ +#define _dspm_addc_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dspm_addc_f32_ae32_enabled 1 + +#endif +#endif // __XTENSA__ + + +#endif // _dspm_addc_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/test/test_dspm_addc_f32_ansi.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/test/test_dspm_addc_f32_ansi.cpp new file mode 100644 index 0000000..6517f44 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/addc/test/test_dspm_addc_f32_ansi.cpp @@ -0,0 +1,122 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include "esp_dsp.h" +#include "dspm_addc.h" +#include "esp_attr.h" +#include "test_mat_common.h" +#include "dsp_tests.h" + +//TEST_CASE("dspm_addc_f32_ansi functionality", "[dspm]") +//{ +// // create ROI rectangle +// dspm::Mat::Rect roi_rect; +// +// char message[60]; +// for (int var = 0; var < 3; var++) { +// for (int start_row = 0; start_row < 2; start_row++) { +// for (int start_col = 0; start_col < 2; start_col++) { +// for (int row = 1; row < 6; row++) { +// for (int col = 1; col < 6; col++) { +// sprintf(message, "var = %d s_row = %d s_col = %d, row = %d, col = %d", var, start_row, start_col, row, col); +// // create A C matrices with row col dimensions + padding +// // padding is from both sides of the targeted sub-matrix +// // 1 1 1 1 +// // 1 x x 1 +// // 1 x x 1 +// // 1 1 1 1 +// dspm::Mat A(row + (2 * start_row), col + (2 * start_col)); +// dspm::Mat C_compare(row + (2 * start_row), col + (2 * start_col)); +// dspm::Mat C = dspm::Mat::ones(row + (2 * start_row), col + (2 * start_col)); +// +// // create A C sub matrices with undefined dimensions +// dspm::Mat A_sub; +// dspm::Mat C_sub; +// float B = 2; +// +// // adjust ROI rectangles +// roi_rect.resizeRect(start_col, start_row, col, row); +// +// for(int i = 0; i < A.length; i++) { +// A.data[i] = i + 1; +// C_compare.data[i] = (i + 1) + B; +// } +// +// // Combinations of A C matrices and sub-matrices are created for testing +// // As an example: case 2 +// // Matrix A is a sub-matrix - the data are defined as a pointer to an external buffer +// // Matrix C is a matrix - the data are copied into the C matrix +// switch (var) { +// case 0: { +// A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY +// C_sub.CopyHead(C.getROI(roi_rect)); // C sub-matrix - NO DATA CPY +// } break; +// case 1: { +// A_sub = A.Get(roi_rect); // A matrix - DATA CPY +// C_sub.CopyHead(C.getROI(roi_rect)); // C sub_matirx - NO DATA CPY +// } break; +// case 2: { +// A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY +// C_sub = C.Get(roi_rect); // C matrix - DATA CPY +// } break; +// default: +// break; +// } +// +// dspm_addc_f32(A_sub.data, C_sub.data, B, row, col, A_sub.padding, C_sub.padding, 1, 1); +// dspm::Mat C_sub_check = C_compare.Get(roi_rect); +// +// // C is a sub-matrix +// if (C_sub.sub_matrix) { +// // Create a copy of the original C matrix (filled with ones 1) +// // to check if an area around the sub-matrix is unaffected after a matrix operation +// dspm::Mat C_area_check = dspm::Mat::ones(row + (2 * start_row), col + (2 * start_col)); +// test_assert_equal_mat_mat(C_sub_check, C_sub, message); +// test_assert_check_area_mat_mat(C_area_check, C_sub, start_row, start_col, message); +// // C is a matrix +// } else { +// test_assert_equal_mat_mat(C_sub_check, C_sub, message); +// } +// } +// } +// } +// } +// } +//} +// +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_addc_f32_ansi benchmark", "[dsps]") +{ + const int dim = 4; + const int M_off = 1; + const float B = 1; + + dspm::Mat mat(dim + M_off, dim + M_off); + dspm::Mat mat_sub = mat.getROI(M_off, M_off, dim, dim); + + portENTER_CRITICAL(&testnlock); + dspm_addc_f32(mat_sub.data, mat_sub.data, B, dim, dim, mat_sub.padding, mat_sub.padding, 1, 1); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_addc_f32(mat_sub.data, mat_sub.data, B, dim, dim, mat_sub.padding, mat_sub.padding, 1, 1); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dspm_addc_f32_ansi - %f per sample %dx%d.\n", cycles, dim, dim); + float min_exec = 100; + float max_exec = 1400; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include/dspm_matrix.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include/dspm_matrix.h new file mode 100644 index 0000000..ed82cd5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include/dspm_matrix.h @@ -0,0 +1,16 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef _dspm_matrix_H_ +#define _dspm_matrix_H_ + +#include "dspm_add.h" +#include "dspm_addc.h" +#include "dspm_mult.h" +#include "dspm_mulc.h" +#include "dspm_sub.h" + +#endif // _dspm_matrix_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include/mat.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include/mat.h new file mode 100644 index 0000000..b138184 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/include/mat.h @@ -0,0 +1,671 @@ +// Copyright 2018-2023 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dspm_mat_h_ +#define _dspm_mat_h_ +#include + +/** + * @brief DSP matrix namespace + * + * DSP library matrix namespace. + */ +namespace dspm { +/** + * @brief Matrix + * + * The Mat class provides basic matrix operations on single-precision floating point values. + */ +class Mat { +public: + + int rows; /*!< Amount of rows*/ + int cols; /*!< Amount of columns*/ + int stride; /*!< Stride = (number of elements in a row) + padding*/ + int padding; /*!< Padding between 2 rows*/ + float *data; /*!< Buffer with matrix data*/ + int length; /*!< Total amount of data in data array*/ + static float abs_tol; /*!< Max acceptable absolute tolerance*/ + bool ext_buff; /*!< Flag indicates that matrix use external buffer*/ + bool sub_matrix; /*!< Flag indicates that matrix is a subset of another matrix*/ + + /** + * @brief Rectangular area + * + * The Rect is used for creating regions of interest ROI(s). The ROI is then used as a sub-matrix + */ + struct Rect { + int x; /*!< x starting position (start col) of the rectangular area*/ + int y; /*!< y starting position (start row) of the rectangular area*/ + int width; /*!< width (number of cols) of the rectangular area*/ + int height; /*!< height (number of rows) of the rectangular area*/ + + /** + * @brief Constructor with initialization to 0 + * + * @param[in] x: x starting position (start col) of the rectangular area + * @param[in] y: y starting position (start row) of the rectangular area + * @param[in] width: width (number of cols) of the rectangular area + * @param[in] height: height (number of rows) of the rectangular area + */ + Rect(int x = 0, int y = 0, int width = 0, int height = 0); + + /** + * @brief Resize rect area + * + * @param[in] x: x starting position (start col) of the new rectangular area + * @param[in] y: y starting position (start row) of the new rectangular area + * @param[in] width: width (number of cols) of the new rectangular area + * @param[in] height: height (number of rows) of the new rectangular area + */ + void resizeRect(int x, int y, int width, int height); + + /** + * @brief Get amount of elements in the rect area + */ + int areaRect(void); + }; + + /** + * Constructor allocate internal buffer. + * @param[in] rows: amount of matrix rows + * @param[in] cols: amount of matrix columns + */ + Mat(int rows, int cols); + /** + * Constructor use external buffer. + * @param[in] data: external buffer with row-major matrix data + * @param[in] rows: amount of matrix rows + * @param[in] cols: amount of matrix columns + */ + Mat(float *data, int rows, int cols); + + /** + * Constructor + * @param[in] data: external buffer with row-major matrix data + * @param[in] rows: amount of matrix rows + * @param[in] cols: amount of matrix columns + * @param[in] stride: col stride + */ + Mat(float *data, int rows, int cols, int stride); + + /** + * Allocate matrix with undefined size. + */ + Mat(); + virtual ~Mat(); + + /** + * @brief Make copy of matrix. + * + * if src matrix is sub matrix, only the header is copied + * if src matrix is matrix, header and data are copied + * + * @param[in] src: source matrix + */ + Mat(const Mat &src); + + /** + * @brief Create a subset of matrix as ROI (Region of Interest) + * + * @param[in] startRow: start row position of source matrix to get the subset matrix from + * @param[in] startCol: start col position of source matrix to get the subset matrix from + * @param[in] roiRows: size of row elements of source matrix to get the subset matrix from + * @param[in] roiCols: size of col elements of source matrix to get the subset matrix from + * + * @return + * - result matrix size roiRows x roiCols + */ + Mat getROI(int startRow, int startCol, int roiRows, int roiCols); + + /** + * @brief Create a subset of matrix as ROI (Region of Interest) + * + * @param[in] startRow: start row position of source matrix to get the subset matrix from + * @param[in] startCol: start col position of source matrix to get the subset matrix from + * @param[in] roiRows: size of row elements of source matrix to get the subset matrix from + * @param[in] roiCols: size of col elements of source matrix to get the subset matrix from + * @param[in] stride: number of cols + padding between 2 rows + * + * @return + * - result matrix size roiRows x roiCols + */ + Mat getROI(int startRow, int startCol, int roiRows, int roiCols, int stride); + + /** + * @brief Create a subset of matrix as ROI (Region of Interest) + * + * @param[in] rect: rectangular area of interest + * + * @return + * - result matrix size rect.rectRows x rect.rectCols + */ + Mat getROI(const Mat::Rect &rect); + + /** + * Make copy of matrix. + * @param[in] src: source matrix + * @param[in] row_pos: start row position of destination matrix + * @param[in] col_pos: start col position of destination matrix + */ + void Copy(const Mat &src, int row_pos, int col_pos); + + /** + * @brief copy header of matrix + * + * Make a shallow copy of matrix (no data copy) + * @param[in] src: source matrix + */ + void CopyHead(const Mat &src); + + /** + * @brief print matrix header + * + * Print all information about matrix to the terminal + * @param[in] src: source matrix + */ + void PrintHead(void); + + /** + * Make copy of matrix. + * @param[in] row_start: start row position of source matrix to copy + * @param[in] row_size: size of wor elements of source matrix to copy + * @param[in] col_start: start col position of source matrix to copy + * @param[in] col_size: size of wor elements of source matrix to copy + * + * @return + * - result matrix size row_size x col_size + */ + Mat Get(int row_start, int row_size, int col_start, int col_size); + + /** + * Make copy of matrix. + * @param[in] rect: rectangular area of interest + * @return + * - result matrix size row_size x col_size + */ + Mat Get(const Mat::Rect &rect); + + /** + * Copy operator + * + * @param[in] src: source matrix + * + * @return + * - matrix copy + */ + Mat &operator=(const Mat &src); + + /** + * Access to the matrix elements. + * @param[in] row: row position + * @param[in] col: column position + * + * @return + * - element of matrix M[row][col] + */ + inline float &operator()(int row, int col) + { + return data[row * this->stride + col]; + } + /** + * Access to the matrix elements. + * @param[in] row: row position + * @param[in] col: column position + * + * @return + * - element of matrix M[row][col] + */ + inline const float &operator()(int row, int col) const + { + return data[row * this->stride + col]; + } + + /** + * += operator + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] A: source matrix + * + * @return + * - result matrix: result += A + */ + Mat &operator+=(const Mat &A); + + /** + * += operator + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] C: constant + * + * @return + * - result matrix: result += C + */ + Mat &operator+=(float C); + /** + * -= operator + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] A: source matrix + * + * @return + * - result matrix: result -= A + */ + Mat &operator-=(const Mat &A); + + /** + * -= operator + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] C: constant + * + * @return + * - result matrix: result -= C + */ + Mat &operator-=(float C); + + /** + * *= operator + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] A: source matrix + * + * @return + * - result matrix: result -= A + */ + Mat &operator*=(const Mat &A); + /** + * += with constant operator + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] C: constant value + * + * @return + * - result matrix: result *= C + */ + Mat &operator*=(float C); + /** + * /= with constant operator + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] C: constant value + * + * @return + * - result matrix: result /= C + */ + Mat &operator/=(float C); + /** + * /= operator + * + * @param[in] B: source matrix + * + * @return + * - result matrix: result[i,j] = result[i,j]/B[i,j] + */ + Mat &operator/=(const Mat &B); + /** + * ^= xor with constant operator + * The operator use DSP optimized implementation of multiplication. + * @param[in] C: constant value + * + * @return + * - result matrix: result ^= C + */ + Mat operator^(int C); + + /** + * Swap two rows between each other. + * @param[in] row1: position of first row + * @param[in] row2: position of second row + */ + void swapRows(int row1, int row2); + /** + * Matrix transpose. + * Change rows and columns between each other. + * + * @return + * - transposed matrix + */ + Mat t(); + + /** + * Create identity matrix. + * Create a square matrix and fill diagonal with 1. + * + * @param[in] size: matrix size + * + * @return + * - matrix [N]x[N] with 1 in diagonal + */ + static Mat eye(int size); + + /** + * Create matrix with all elements 1. + * Create a square matrix and fill all elements with 1. + * + * @param[in] size: matrix size + * + * @return + * - matrix [N]x[N] with 1 in all elements + */ + static Mat ones(int size); + + /** + * Create matrix with all elements 1. + * Create a matrix and fill all elements with 1. + * + * @param[in] rows: matrix rows + * @param[in] cols: matrix cols + * + * @return + * - matrix [N]x[N] with 1 in all elements + */ + static Mat ones(int rows, int cols); + + /** + * Return part of matrix from defined position (startRow, startCol) as a matrix[blockRows x blockCols]. + * + * @param[in] startRow: start row position + * @param[in] startCol: start column position + * @param[in] blockRows: amount of rows in result matrix + * @param[in] blockCols: amount of columns in the result matrix + * + * @return + * - matrix [blockRows]x[blockCols] + */ + Mat block(int startRow, int startCol, int blockRows, int blockCols); + + /** + * Normalizes the vector, i.e. divides it by its own norm. + * If it's matrix, calculate matrix norm + * + */ + void normalize(void); + + /** + * Return norm of the vector. + * If it's matrix, calculate matrix norm + * + * @return + * - matrix norm + */ + float norm(void); + + /** + * The method fill 0 to the matrix structure. + * + */ + void clear(void); + + /** + * @brief Solve the matrix + * + * Solve matrix. Find roots for the matrix A*x = b + * + * @param[in] A: matrix [N]x[N] with input coefficients + * @param[in] b: vector [N]x[1] with result values + * + * @return + * - matrix [N]x[1] with roots + */ + static Mat solve(Mat A, Mat b); + /** + * @brief Band solve the matrix + * + * Solve band matrix. Find roots for the matrix A*x = b with bandwidth k. + * + * @param[in] A: matrix [N]x[N] with input coefficients + * @param[in] b: vector [N]x[1] with result values + * @param[in] k: upper bandwidth value + * + * @return + * - matrix [N]x[1] with roots + */ + static Mat bandSolve(Mat A, Mat b, int k); + /** + * @brief Solve the matrix + * + * Different way to solve the matrix. Find roots for the matrix A*x = y + * + * @param[in] A: matrix [N]x[N] with input coefficients + * @param[in] y: vector [N]x[1] with result values + * + * @return + * - matrix [N]x[1] with roots + */ + static Mat roots(Mat A, Mat y); + + /** + * @brief Dotproduct of two vectors + * + * The method returns dotproduct of two vectors + * + * @param[in] A: Input vector A Nx1 + * @param[in] B: Input vector B Nx1 + * + * @return + * - dotproduct value + */ + static float dotProduct(Mat A, Mat B); + + /** + * @brief Augmented matrices + * + * Augmented matrices + * + * @param[in] A: Input vector A MxN + * @param[in] B: Input vector B MxK + * + * @return + * - Augmented matrix Mx(N+K) + */ + static Mat augment(Mat A, Mat B); + /** + * @brief Gaussian Elimination + * + * Gaussian Elimination of matrix + * + * @return + * - result matrix + */ + Mat gaussianEliminate(); + + /** + * Row reduction for Gaussian elimination + * + * @return + * - result matrix + */ + Mat rowReduceFromGaussian(); + + /** + * Find the inverse matrix + * + * @return + * - inverse matrix + */ + Mat inverse(); + + /** + * Find pseudo inverse matrix + * + * @return + * - inverse matrix + */ + Mat pinv(); + + /** + * Find determinant + * @param[in] n: element number in first row + * + * @return + * - determinant value + */ + float det(int n); +private: + Mat cofactor(int row, int col, int n); + Mat adjoint(); + + void allocate(); // Allocate buffer + Mat expHelper(const Mat &m, int num); +}; +/** + * Print matrix to the standard iostream. + * @param[in] os: output stream + * @param[in] m: matrix to print + * + * @return + * - output stream + */ +std::ostream &operator<<(std::ostream &os, const Mat &m); + +/** + * Print rectangular ROI to the standard iostream. + * @param[in] os: output stream + * @param[in] rect: ROI + * + * @return + * - output stream + */ +std::ostream &operator<<(std::ostream &os, const Mat::Rect &rect); + +/** + * Fill the matrix from iostream. + * @param[in] is: input stream + * @param[in] m: matrix to fill + * + * @return + * - input stream + */ +std::istream &operator>>(std::istream &is, Mat &m); + +/** + * + operator, sum of two matrices + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] A: Input matrix A + * @param[in] B: Input matrix B + * + * @return + * - result matrix A+B +*/ +Mat operator+(const Mat &A, const Mat &B); +/** + * + operator, sum of matrix with constant + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] A: Input matrix A + * @param[in] C: Input constant + * + * @return + * - result matrix A+C +*/ +Mat operator+(const Mat &A, float C); + +/** + * - operator, subtraction of two matrices + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] A: Input matrix A + * @param[in] B: Input matrix B + * + * @return + * - result matrix A-B +*/ +Mat operator-(const Mat &A, const Mat &B); +/** + * - operator, sum of matrix with constant + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] A: Input matrix A + * @param[in] C: Input constant + * + * @return + * - result matrix A+C +*/ +Mat operator-(const Mat &A, float C); + +/** + * * operator, multiplication of two matrices. + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] A: Input matrix A + * @param[in] B: Input matrix B + * + * @return + * - result matrix A*B +*/ +Mat operator*(const Mat &A, const Mat &B); + +/** + * * operator, multiplication of matrix with constant + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] A: Input matrix A + * @param[in] C: floating point value + * + * @return + * - result matrix A*B +*/ +Mat operator*(const Mat &A, float C); + +/** + * * operator, multiplication of matrix with constant + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] C: floating point value + * @param[in] A: Input matrix A + * + * @return + * - result matrix A*B +*/ +Mat operator*(float C, const Mat &A); + +/** + * / operator, divide of matrix by constant + * The operator use DSP optimized implementation of multiplication. + * + * @param[in] A: Input matrix A + * @param[in] C: floating point value + * + * @return + * - result matrix A*B +*/ +Mat operator/(const Mat &A, float C); + +/** + * / operator, divide matrix A by matrix B + * + * @param[in] A: Input matrix A + * @param[in] B: Input matrix B + * + * @return + * - result matrix C, where C[i,j] = A[i,j]/B[i,j] +*/ +Mat operator/(const Mat &A, const Mat &B); + +/** + * == operator, compare two matrices + * + * @param[in] A: Input matrix A + * @param[in] B: Input matrix B + * + * @return + * - true if matrices are the same + * - false if matrices are different +*/ +bool operator==(const Mat &A, const Mat &B); + +} +#endif //_dspm_mat_h_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mat/mat.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mat/mat.cpp new file mode 100644 index 0000000..b9f45a2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mat/mat.cpp @@ -0,0 +1,1017 @@ +// Copyright 2018-2023 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include +#include "mat.h" +#include "esp_log.h" + +#include "dsps_math.h" +#include "dspm_matrix.h" +#include +#include +#include + + + +using std::ostream; +using std::istream; +using std::endl; + +namespace dspm { + +float Mat::abs_tol = 1e-10; + +Mat::Rect::Rect(int x, int y, int width, int height) +{ + this->x = x; + this->y = y; + this->width = width; + this->height = height; +} + +void Mat::Rect::resizeRect(int x, int y, int width, int height) +{ + this->x = x; + this->y = y; + this->width = width; + this->height = height; +} + +int Mat::Rect::areaRect(void) +{ + return this->width * this->height; +} + +Mat::Mat(float *data, int roi_rows, int roi_cols, int stride) +{ + this->rows = roi_rows; + this->cols = roi_cols; + this->data = data; + this->stride = stride; + this->padding = stride - roi_cols; + this->length = this->rows * this->cols; + this->ext_buff = true; + this->sub_matrix = true; +} + +Mat::Mat(int rows, int cols) +{ + ESP_LOGD("Mat", "Mat(%i, %i)", rows, cols); + this->rows = rows; + this->cols = cols; + this->sub_matrix = false; + this->stride = cols; + this->padding = 0; + allocate(); + memset(this->data, 0, this->length * sizeof(float)); +} + +Mat::Mat(float *data, int rows, int cols) +{ + ESP_LOGD("Mat", "Mat(data, %i, %i)", rows, cols); + this->ext_buff = true; + this->rows = rows; + this->cols = cols; + this->data = data; + this->sub_matrix = false; + this->stride = cols; + this->padding = 0; + this->length = this->rows * this->cols; + memcpy(this->data, data, this->length * sizeof(float)); +} + + +Mat::Mat() +{ + this->rows = 1; + this->cols = 1; + this->sub_matrix = false; + this->stride = cols; + this->padding = 0; + ESP_LOGD("Mat", "Mat()"); + + allocate(); + this->data[0] = 0; +} + +Mat::~Mat() +{ + ESP_LOGD("Mat", "~Mat(%i, %i), ext_buff=%i, data = %p", this->rows, this->cols, this->ext_buff, this->data); + if (false == this->ext_buff) { + delete[] data; + } +} + +Mat::Mat(const Mat &m) +{ + this->rows = m.rows; + this->cols = m.cols; + this->padding = m.padding; + this->stride = m.stride; + this->data = m.data; + this->sub_matrix = m.sub_matrix; + + if (m.sub_matrix) { + this->length = m.length; + this->data = m.data; + this->ext_buff = true; + } else { + allocate(); + memcpy(this->data, m.data, this->length * sizeof(float)); + } +} + +Mat Mat::getROI(int startRow, int startCol, int roiRows, int roiCols, int stride) +{ + Mat result(this->data, roiRows, roiCols, 0); + + if ((startRow + roiRows) > this->rows) { + return result; + } + if ((startCol + roiCols) > this->cols) { + return result; + } + + const int ptr_move = startRow * this->cols + startCol; + float *new_data_ptr = this->data + ptr_move; + + result.data = new_data_ptr; + result.stride = stride; + result.padding = result.stride - result.cols; + return result; +} + +Mat Mat::getROI(const Mat::Rect &rect) +{ + return (getROI(rect.y, rect.x, rect.height, rect.width, this->cols)); +} + +Mat Mat::getROI(int startRow, int startCol, int roiRows, int roiCols) +{ + return (getROI(startRow, startCol, roiRows, roiCols, this->cols)); +} + +void Mat::Copy(const Mat &src, int row_pos, int col_pos) +{ + if ((row_pos + src.rows) > this->rows) { + return; + } + if ((col_pos + src.cols) > this->cols) { + return; + } + + for (size_t r = 0; r < src.rows; r++) { + memcpy(&this->data[(r + row_pos) * this->stride + col_pos], &src.data[r * src.cols], src.cols * sizeof(float)); + } +} + +void Mat::CopyHead(const Mat &src) +{ + if (!this->ext_buff) { + delete[] this->data; + } + this->rows = src.rows; + this->cols = src.cols; + this->length = src.length; + this->padding = src.padding; + this->stride = src.stride; + this->data = src.data; + this->ext_buff = src.ext_buff; + this->sub_matrix = src.sub_matrix; +} + +void Mat::PrintHead(void) +{ + std::cout << "rows " << this->rows << std::endl; + std::cout << "cols " << this->cols << std::endl; + std::cout << "lenght " << this->length << std::endl; + std::cout << "data " << this->data << std::endl; + std::cout << "ext_buff " << this->ext_buff << std::endl; + std::cout << "sub_mat " << this->sub_matrix << std::endl; + std::cout << "stride " << this->stride << std::endl; + std::cout << "padding " << this->padding << std::endl << std::endl; +} + +Mat Mat::Get(int row_start, int row_size, int col_start, int col_size) +{ + Mat result(row_size, col_size); + + if ((row_start + row_size) > this->rows) { + return result; + } + if ((col_start + col_size) > this->cols) { + return result; + } + + for (size_t r = 0; r < result.rows; r++) { + memcpy(&result.data[r * result.cols], &this->data[(r + row_start) * this->stride + col_start], result.cols * sizeof(float)); + } + return result; +} + +Mat Mat::Get(const Mat::Rect &rect) +{ + return (Get(rect.y, rect.height, rect.x, rect.width)); +} + +Mat &Mat::operator=(const Mat &m) +{ + if (this == &m) { + return *this; + } + + // matrix dimensions not equal + if (this->rows != m.rows || this->cols != m.cols) { + // left operand is a sub-matrix - error + if (this->sub_matrix) { + ESP_LOGE("Mat", "operator = Error for sub-matrices: operands matrices dimensions %dx%d and %dx%d do not match", this->rows, this->cols, m.rows, m.cols); + return *this; + } + if (!this->ext_buff) { + delete[] this->data; + } + this->ext_buff = false; + this->rows = m.rows; + this->cols = m.cols; + this->stride = this->cols; + this->padding = 0; + this->sub_matrix = false; + allocate(); + } + + for (int row = 0; row < this->rows; row++) { + memcpy(this->data + (row * this->stride), m.data + (row * m.stride), this->cols * sizeof(float)); + } + return *this; +} + +Mat &Mat::operator+=(const Mat &m) +{ + if ((this->rows != m.rows) || (this->cols != m.cols)) { + ESP_LOGW("Mat", "operator += Error: matrices do not have equal dimensions"); + return *this; + } + + if (this->sub_matrix || m.sub_matrix) { + dspm_add_f32(this->data, m.data, this->data, this->rows, this->cols, this->padding, m.padding, this->padding, 1, 1, 1); + } else { + dsps_add_f32(this->data, m.data, this->data, this->length, 1, 1, 1); + } + return *this; +} + +Mat &Mat::operator+=(float C) +{ + if (this->sub_matrix) { + dspm_addc_f32(this->data, this->data, C, this->rows, this->cols, this->padding, this->padding, 1, 1); + } else { + dsps_addc_f32_ansi(this->data, this->data, this->length, C, 1, 1); + } + return *this; +} + +Mat &Mat::operator-=(const Mat &m) +{ + if ((this->rows != m.rows) || (this->cols != m.cols)) { + ESP_LOGW("Mat", "operator -= Error: matrices do not have equal dimensions"); + return *this; + } + + if (this->sub_matrix || m.sub_matrix) { + dspm_sub_f32(this->data, m.data, this->data, this->rows, this->cols, this->padding, m.padding, this->padding, 1, 1, 1); + } else { + dsps_sub_f32(this->data, m.data, this->data, this->length, 1, 1, 1); + } + return *this; +} + +Mat &Mat::operator-=(float C) +{ + if (this->sub_matrix) { + dspm_addc_f32(this->data, this->data, -C, this->rows, this->cols, this->padding, this->padding, 1, 1); + } else { + dsps_addc_f32_ansi(this->data, this->data, this->length, -C, 1, 1); + } + return *this; +} + +Mat &Mat::operator*=(const Mat &m) +{ + if (this->cols != m.rows) { + ESP_LOGW("Mat", "operator *= Error: matrices do not have equal dimensions"); + return *this; + } + + if (this->sub_matrix || m.sub_matrix) { + Mat temp = this->Get(0, this->rows, 0, this->cols); + dspm_mult_ex_f32(temp.data, m.data, this->data, temp.rows, temp.cols, m.cols, temp.padding, m.padding, this->padding); + } else { + Mat temp = *this; + dspm_mult_f32(temp.data, m.data, this->data, temp.rows, temp.cols, m.cols); + } + return (*this); +} + +Mat &Mat::operator*=(float num) +{ + if (this->sub_matrix) { + dspm_mulc_f32(this->data, this->data, num, this->rows, this->cols, this->padding, this->padding, 1, 1); + } else { + dsps_mulc_f32_ansi(this->data, this->data, this->length, num, 1, 1); + } + return *this; +} + +Mat &Mat::operator/=(const Mat &B) +{ + if ((this->rows != B.rows) || (this->cols != B.cols)) { + ESP_LOGW("Mat", "operator /= Error: matrices do not have equal dimensions"); + return *this; + } + + for (int row = 0; row < this->rows; row++) { + for (int col = 0; col < this->cols; col++) { + (*this)(row, col) = (*this)(row, col) / B(row, col); + } + } + return (*this); +} + +Mat &Mat::operator/=(float num) +{ + if (this->sub_matrix) { + dspm_mulc_f32(this->data, this->data, 1 / num, this->rows, this->cols, this->padding, this->padding, 1, 1); + } else { + dsps_mulc_f32_ansi(this->data, this->data, this->length, 1 / num, 1, 1); + } + return *this; +} + +Mat Mat::operator^(int num) +{ + Mat temp(*this); + return expHelper(temp, num); +} + +void Mat::swapRows(int r1, int r2) +{ + if ((this->rows <= r1) || (this->rows <= r2)) { + ESP_LOGW("Mat", "swapRows Error: row %d or %d out of matrix row %d range", r1, r2, this->rows); + } else { + for (int i = 0; i < this->cols; i++) { + float temp = this->data[r1 * this->stride + i]; + this->data[r1 * this->stride + i] = this->data[r2 * this->stride + i]; + this->data[r2 * this->stride + i] = temp; + } + } +} + +Mat Mat::t() +{ + Mat ret(this->cols, this->rows); + for (int i = 0; i < this->rows; ++i) { + for (int j = 0; j < this->cols; ++j) { + ret(j, i) = this->data[i * this->stride + j]; + } + } + return ret; +} + +Mat Mat::eye(int size) +{ + Mat temp(size, size); + for (int i = 0; i < temp.rows; ++i) { + for (int j = 0; j < temp.cols; ++j) { + if (i == j) { + temp(i, j) = 1; + } else { + temp(i, j) = 0; + } + } + } + return temp; +} + +Mat Mat::ones(int size) +{ + return (ones(size, size)); +} + +Mat Mat::ones(int rows, int cols) +{ + Mat temp(rows, cols); + for (int row = 0; row < temp.rows; ++row) { + for (int col = 0; col < temp.cols; ++col) { + temp(row, col) = 1; + } + } + return temp; +} + +void Mat::clear() +{ + for (int row = 0; row < this->rows; row++) { + memset(this->data + (row * this->stride), 0, this->cols * sizeof(float)); + } +} + +// Duplicate to Get method +Mat Mat::block(int startRow, int startCol, int blockRows, int blockCols) +{ + Mat result(blockRows, blockCols); + for (int i = 0; i < blockRows; ++i) { + for (int j = 0; j < blockCols; ++j) { + result(i, j) = (*this)(startRow + i, startCol + j); + } + } + return result; +} + +void Mat::normalize(void) +{ + float sqr_norm = 0; + for (int i = 0; i < this->rows; ++i) { + for (int j = 0; j < this->cols; ++j) { + sqr_norm += (*this)(i, j) * (*this)(i, j); + } + } + sqr_norm = 1 / sqrtf(sqr_norm); + *this *= sqr_norm; +} + +float Mat::norm(void) +{ + float sqr_norm = 0; + for (int i = 0; i < this->rows; ++i) { + for (int j = 0; j < this->cols; ++j) { + sqr_norm += (*this)(i, j) * (*this)(i, j); + } + } + sqr_norm = sqrtf(sqr_norm); + return sqr_norm; +} + +Mat Mat::solve(Mat A, Mat b) +{ + // Gaussian elimination + for (int i = 0; i < A.rows; ++i) { + if (A(i, i) == 0) { + // pivot 0 - error + ESP_LOGW("Mat", "Error: the coefficient matrix has 0 as a pivot. Please fix the input and try again."); + Mat err_result(0, 0); + return err_result; + } + float a_ii = 1 / A(i, i); + for (int j = i + 1; j < A.rows; ++j) { + float a_ji = A(j, i) * a_ii; + for (int k = i + 1; k < A.cols; ++k) { + A(j, k) -= A(i, k) * a_ji; + if ((A(j, k) < abs_tol) && (A(j, k) > -1 * abs_tol)) { + A(j, k) = 0; + } + } + b(j, 0) -= b(i, 0) * a_ji; + if (A(j, 0) < abs_tol && A(j, 0) > -1 * abs_tol) { + A(j, 0) = 0; + } + A(j, i) = 0; + } + } + + // Back substitution + Mat x(b.rows, 1); + x((x.rows - 1), 0) = b((x.rows - 1), 0) / A((x.rows - 1), (x.rows - 1)); + if (x((x.rows - 1), 0) < abs_tol && x((x.rows - 1), 0) > -1 * abs_tol) { + x((x.rows - 1), 0) = 0; + } + for (int i = x.rows - 2; i >= 0; --i) { + float sum = 0; + for (int j = i + 1; j < x.rows; ++j) { + sum += A(i, j) * x(j, 0); + } + x(i, 0) = (b(i, 0) - sum) / A(i, i); + if (x(i, 0) < abs_tol && x(i, 0) > -1 * abs_tol) { + x(i, 0) = 0; + } + } + return x; +} + +Mat Mat::bandSolve(Mat A, Mat b, int k) +{ + // optimized Gaussian elimination + int bandsBelow = (k - 1) / 2; + for (int i = 0; i < A.rows; ++i) { + if (A(i, i) == 0) { + // pivot 0 - error + ESP_LOGW("Mat", "Error: the coefficient matrix has 0 as a pivot. Please fix the input and try again."); + Mat err_result(b.rows, 1); + memset(err_result.data, 0, b.rows * sizeof(float)); + return err_result; + } + float a_ii = 1 / A(i, i); + for (int j = i + 1; j < A.rows && j <= i + bandsBelow; ++j) { + int k = i + 1; + while ((k < A.cols) && (fabs(A(j, k)) > abs_tol)) { + A(j, k) -= A(i, k) * (A(j, i) * a_ii); + k++; + } + b(j, 0) -= b(i, 0) * (A(j, i) * a_ii); + A(j, i) = 0; + } + } + + // Back substitution + Mat x(b.rows, 1); + x((x.rows - 1), 0) = b((x.rows - 1), 0) / A((x.rows - 1), (x.rows - 1)); + for (int i = x.rows - 2; i >= 0; --i) { + float sum = 0; + for (int j = i + 1; j < x.rows; ++j) { + sum += A(i, j) * x(j, 0); + } + x(i, 0) = (b(i, 0) - sum) / A(i, i); + } + + return x; +} + +Mat Mat::roots(Mat A, Mat y) +{ + int n = A.cols + 1; + + Mat result(y.rows, 1); + + Mat g_m = Mat::augment(A, y); + for (int j = 0; j < A.cols; j++) { + float g_jj = 1 / g_m(j, j); + for (int i = 0; i < A.cols; i++) { + if (i != j) { + float c = g_m(i, j) * g_jj; + for (int k = 0; k < n; k++) { + g_m(i, k) = g_m(i, k) - c * g_m(j, k); + } + } + } + } + for (int i = 0; i < A.rows; i++) { + result(i, 0) = g_m(i, A.cols) / g_m(i, i); + } + return result; +} + +float Mat::dotProduct(Mat a, Mat b) +{ + float sum = 0; + for (int i = 0; i < a.rows; ++i) { + sum += (a(i, 0) * b(i, 0)); + } + return sum; +} + +Mat Mat::augment(Mat A, Mat B) +{ + Mat AB(A.rows, A.cols + B.cols); + for (int i = 0; i < AB.rows; ++i) { + for (int j = 0; j < AB.cols; ++j) { + if (j < A.cols) { + AB(i, j) = A(i, j); + } else { + AB(i, j) = B(i, j - A.cols); + } + } + } + return AB; +} + +Mat Mat::gaussianEliminate() +{ + Mat Ab(*this); + int rows = Ab.rows; + int cols = Ab.cols; + int Acols = cols - 1; + + int i = 0; // row tracker + int j = 0; // column tracker + + // iterate through the rows + while (i < rows) { + // find a pivot for the row + bool pivot_found = false; + while (j < Acols && !pivot_found) { + if (Ab(i, j) != 0) { // pivot not equal to 0 + pivot_found = true; + } else { // check for a possible swap + int max_row = i; + float max_val = 0; + for (int k = i + 1; k < rows; ++k) { + float cur_abs = Ab(k, j) >= 0 ? Ab(k, j) : -1 * Ab(k, j); + if (cur_abs > max_val) { + max_row = k; + max_val = cur_abs; + } + } + if (max_row != i) { + Ab.swapRows(max_row, i); + pivot_found = true; + } else { + j++; + } + } + } + + // perform elimination as normal if pivot was found + if (pivot_found) { + for (int t = i + 1; t < rows; ++t) { + for (int s = j + 1; s < cols; ++s) { + Ab(t, s) = Ab(t, s) - Ab(i, s) * (Ab(t, j) / Ab(i, j)); + if (Ab(t, s) < abs_tol && Ab(t, s) > -1 * abs_tol) { + Ab(t, s) = 0; + } + } + Ab(t, j) = 0; + } + } + + i++; + j++; + } + + return Ab; +} + +Mat Mat::rowReduceFromGaussian() +{ + Mat R(*this); + int rows = R.rows; + int cols = R.cols; + + int i = rows - 1; // row tracker + int j = cols - 2; // column tracker + + // iterate through every row + while (i >= 0) { + // find the pivot column + int k = j - 1; + while (k >= 0) { + if (R(i, k) != 0) { + j = k; + } + k--; + } + + // zero out elements above pivots if pivot not 0 + if (R(i, j) != 0) { + for (int t = i - 1; t >= 0; --t) { + for (int s = 0; s < cols; ++s) { + if (s != j) { + R(t, s) = R(t, s) - R(i, s) * (R(t, j) / R(i, j)); + if (R(t, s) < abs_tol && R(t, s) > -1 * abs_tol) { + R(t, s) = 0; + } + } + } + R(t, j) = 0; + } + + // divide row by pivot + for (int k = j + 1; k < cols; ++k) { + R(i, k) = R(i, k) / R(i, j); + if (R(i, k) < abs_tol && R(i, k) > -1 * abs_tol) { + R(i, k) = 0; + } + } + R(i, j) = 1; + } + + i--; + j--; + } + + return R; +} + +Mat Mat::pinv() +{ + Mat I = Mat::eye(this->rows); + Mat AI = Mat::augment(*this, I); + Mat U = AI.gaussianEliminate(); + Mat IAInverse = U.rowReduceFromGaussian(); + Mat AInverse(this->rows, this->cols); + for (int i = 0; i < this->rows; ++i) { + for (int j = 0; j < this->cols; ++j) { + AInverse(i, j) = IAInverse(i, j + this->cols); + } + } + return AInverse; +} + +Mat Mat::cofactor(int row, int col, int n) +{ + int i = 0, j = 0; + Mat result(n, n); + // Looping for each element of the matrix + for (int r = 0; r < n; r++) { + for (int c = 0; c < n; c++) { + // Copying into temporary matrix only those element + // which are not in given row and column + if (r != row && c != col) { + result(i, j++) = (*this)(r, c); + + // Row is filled, so increase row index and + // reset col index + if (j == this->rows - 1) { + j = 0; + i++; + } + } + } + } + return result; +} + +float Mat::det(int n) +{ + float D = 0; // Initialize result + + // Base case : if matrix contains single element + if (n == 1) { + return (*this)(0, 0); + } + + Mat temp(this->rows, this->rows); // To store cofactors + + int sign = 1; // To store sign multiplier + + // Iterate for each element of first row + for (int f = 0; f < n; f++) { + // Getting Cofactor of A[0][f] + Mat temp = this->cofactor(0, f, n); + D += (*this)(0, f) * temp.det(n - 1) * sign; + + // terms are to be added with alternate sign + sign = -sign; + } + + return D; +} + +Mat Mat::adjoint() +{ + Mat adj(this->rows, this->cols); + if (this->rows == 1) { + adj(0, 0) = 1; + return adj; + } + + // temp is used to store cofactors of A(,) + int sign = 1; + Mat temp(this->rows, this->cols); + + for (int i = 0; i < this->rows; i++) { + for (int j = 0; j < this->cols; j++) { + // Get cofactor of A(i,j) + temp = this->cofactor( i, j, this->rows); + + // sign of adj(j,i) positive if sum of row + // and column indexes is even. + sign = ((i + j) % 2 == 0) ? 1 : -1; + + // Interchanging rows and columns to get the + // transpose of the cofactor matrix + adj(j, i) = (sign) * (temp.det(this->rows - 1)); + } + } + return adj; +} + +Mat Mat::inverse() +{ + Mat result(this->rows, this->cols); + // Find determinant of matrix + float det = this->det(this->rows); + if (det == 0) { + //std::cout << "Singular matrix, can't find its inverse"; + return result; + } + + // Find adjoint + Mat adj = this->adjoint(); + + // Find Inverse using formula "inverse(A) = adj(A)/det(A)" + for (int i = 0; i < this->rows; i++) + for (int j = 0; j < this->cols; j++) { + result(i, j) = adj(i, j) / float(det); + } + + return result; +} + +void Mat::allocate() +{ + this->ext_buff = false; + this->length = this->rows * this->cols; + data = new float[this->length]; + ESP_LOGD("Mat", "allocate(%i) = %p", this->length, this->data); +} + +Mat Mat::expHelper(const Mat &m, int num) +{ + if (num == 0) { + return Mat::eye(m.rows); + } else if (num == 1) { + return m; + } else if (num % 2 == 0) { // num is even + return expHelper(m * m, num / 2); + } else { // num is odd + return m * expHelper(m * m, (num - 1) / 2); + } +} + +Mat operator+(const Mat &m1, const Mat &m2) +{ + if ((m1.rows != m2.rows) || (m1.cols != m2.cols)) { + ESP_LOGW("Mat", "operator + Error: matrices do not have equal dimensions"); + Mat err_ret; + return err_ret; + } + + if (m1.sub_matrix || m2.sub_matrix) { + Mat temp(m1.rows, m2.cols); + dspm_add_f32(m1.data, m2.data, temp.data, m1.rows, m1.cols, m1.padding, m2.padding, temp.padding, 1, 1, 1); + return temp; + } else { + Mat temp(m1); + return (temp += m2); + } +} + +Mat operator+(const Mat &m, float C) +{ + if (m.sub_matrix) { + Mat temp(m.rows, m.cols); + dspm_addc_f32(m.data, temp.data, C, m.rows, m.cols, m.padding, temp.padding, 1, 1); + return temp; + } else { + Mat temp(m); + return (temp += C); + } +} + +bool operator==(const Mat &m1, const Mat &m2) +{ + if ((m1.cols != m2.cols) || (m1.rows != m2.rows)) { + return false; + } + + for (int row = 0; row < m1.rows; row++) { + for (int col = 0; col < m1.cols; col++) { + if (m1(row, col) != m2(row, col)) { + ESP_LOGW("Mat", "operator == Error: %i %i, m1.data=%f, m2.data=%f \n", row, col, m1(row, col), m2(row, col)); + return false; + } + } + } + + return true; +} + +Mat operator-(const Mat &m1, const Mat &m2) +{ + if ((m1.rows != m2.rows) || (m1.cols != m2.cols)) { + ESP_LOGW("Mat", "operator - Error: matrices do not have equal dimensions"); + Mat err_ret; + return err_ret; + } + + if (m1.sub_matrix || m2.sub_matrix) { + Mat temp(m1.rows, m1.cols); + dspm_sub_f32(m1.data, m2.data, temp.data, m1.rows, m1.cols, m1.padding, m2.padding, temp.padding, 1, 1, 1); + return temp; + } else { + Mat temp(m1); + return (temp -= m2); + } +} + +Mat operator-(const Mat &m, float C) +{ + if (m.sub_matrix) { + Mat temp(m.rows, m.cols); + dspm_addc_f32(m.data, temp.data, -C, m.rows, m.cols, m.padding, temp.padding, 1, 1); + return temp; + } else { + Mat temp(m); + return (temp -= C); + } +} + +Mat operator*(const Mat &m1, const Mat &m2) +{ + if (m1.cols != m2.rows) { + ESP_LOGW("Mat", "operator * Error: matrices do not have correct dimensions"); + Mat err_ret; + return err_ret; + } + Mat temp(m1.rows, m2.cols); + + if (m1.sub_matrix || m2.sub_matrix) { + dspm_mult_ex_f32(m1.data, m2.data, temp.data, m1.rows, m1.cols, m2.cols, m1.padding, m2.padding, temp.padding); + } else { + dspm_mult_f32(m1.data, m2.data, temp.data, m1.rows, m1.cols, m2.cols); + } + + return temp; + +} + +Mat operator*(const Mat &m, float num) +{ + if (m.sub_matrix) { + Mat temp(m.rows, m.cols); + dspm_mulc_f32(m.data, temp.data, num, m.rows, m.cols, m.padding, temp.padding, 1, 1); + return temp; + } else { + Mat temp(m); + return (temp *= num); + } +} + +Mat operator*(float num, const Mat &m) +{ + return (m * num); +} + +Mat operator/(const Mat &m, float num) +{ + if (m.sub_matrix) { + Mat temp(m.rows, m.cols); + dspm_mulc_f32(m.data, temp.data, 1 / num, m.rows, m.cols, m.padding, temp.padding, 1, 1); + return temp; + } else { + Mat temp(m); + return (temp /= num); + } +} + +Mat operator/(const Mat &A, const Mat &B) +{ + if ((A.rows != B.rows) || (A.cols != B.cols)) { + ESP_LOGW("Mat", "Operator + Error: matrices do not have equal dimensions"); + Mat err_ret; + return err_ret; + } + + Mat temp(A.rows, A.cols); + for (int row = 0; row < A.rows; row++) { + for (int col = 0; col < A.cols; col++) { + temp(row, col) = A(row, col) / B(row, col); + } + } + return temp; +} + +ostream &operator<<(ostream &os, const Mat &m) +{ + for (int i = 0; i < m.rows; ++i) { + os << m(i, 0); + for (int j = 1; j < m.cols; ++j) { + os << " " << m(i, j); + } + os << endl; + } + return os; +} + +ostream &operator<<(ostream &os, const Mat::Rect &rect) +{ + os << "row start " << rect.y << endl; + os << "col start " << rect.x << endl; + os << "row count " << rect.height << endl; + os << "col count " << rect.width << endl; + + return os; +} + +istream &operator>>(istream &is, Mat &m) +{ + for (int i = 0; i < m.rows; ++i) { + for (int j = 0; j < m.cols; ++j) { + is >> m(i, j); + } + } + return is; +} + +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_ae32.S new file mode 100644 index 0000000..3893d68 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_ae32.S @@ -0,0 +1,174 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspm_mult_platform.h" +#if (dspm_mult_s16_ae32_enabled == 1) + +#include "dsps_dotprod_s16_m_ae32.S" +#include "dspm_mult_s16_m_ae32_vector.S" +//esp_err_t dspm_mult_s16_ae32(const int16_t* A, const int16_t* B, int16_t* C, int m, int n, int k, int shift); + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .global dspm_mult_s16_ae32 + .global .dspm_mult_s16_ae32_body + .type dspm_mult_s16_ae32,@function + +dspm_mult_s16_ae32: +// A - a2 +// B - a3 +// C - a4 +// m - a5 - any > 0 +// n - a6 - 1,2,3, any +// k - a7 - 1, any +// shift - stack (a8) + +// a14 - n*4 - pointer increment +// + entry a1, 80 +// ====== process matrices when k == 1 ============ +.dspm_mult_s16_ae32_body: + l32i.n a8, a1, 80 // Load shift to the a8 register + + + // Prepare and load round value + ssr a8 // store shift to ssa + movi a15, 0x7fff + srl a15, a15 + + neg a8, a8 + addi a8, a8, 15 + ssr a8 // store shift to ssa + movi a8, 0 // Clear a8 + + slli a14, a6, 1 // Pointer increment for n + movi.n a10, 2 // Increment = 2 + movi.n a9, 0 // initial counter loop1 + + movi a12, 1 + beq a7, a12, vector_mult + // We have normal path with k > 1 + // a2, a3, a4 - A,B,C + // a5 - m + // a6 - n + // a7 - k + // a8 - temp + // a9 - temp + // a10- k counter + // a11- m counter + // a12- B + // a13- A + // a14 - pointer increment for n + // a15 - round value + + bbsi a6, 0, even_N_samples +// ---------------- for odd N + srli a6, a6, 1 // counter a6 = a6/2. We have to do it only once + slli a7, a7, 1 // counter a7 = a7*2. We have to do it only once + + // loop for M +m_loop_mmult: + movi a10, 0 // reset k loop counter + mov a13, a3 // set pointer to the first column +// loop for K +k_loop_mmult: + + addi a12, a2, -4 // every loop the same start position + + movi a8, 0 + wsr a8, acchi + wsr a15, acclo // initialize acc with shifted round value + + loopnez a6, .loop_end_mmult // loop for N + .loop_mmult: + ldinc m3, a12 + l16si a8, a13, 0 + add a13, a13, a7 + mula.ad.ll a8, m3 + l16si a8, a13, 0 + add a13, a13, a7 + mula.ad.lh a8, m3 + .loop_end_mmult: + + rsr a8, acchi + rsr a9, acclo + src a8, a8, a9 + s16i a8, a4, 0 + addi a4, a4, 2 + // check and increment for K + + addi a10, a10, 2 + add a13, a3, a10 // we shift collumn + bne a10, a7, k_loop_mmult + + // Check and increment for M + add a2, a2, a14 // move to the next raw + addi a5, a5, -1 + bnez.n a5, m_loop_mmult + + movi.n a2, 0 // return status ESP_OK + retw.n + +even_N_samples: +// ---------------- for odd N + slli a7, a7, 1 // counter a7 = a7*2. We have to do it only once + + // loop for M +m_loop_mmult_even: + movi a10, 0 // reset k loop counter + mov a13, a3 // set pointer to the first column +// loop for K +k_loop_mmult_even: + + mov a12, a2 // every loop the same start position + + movi a8, 0 + wsr a8, acchi + wsr a15, acclo // initialize acc with shifted round value + + loopnez a6, .loop_end_mmult_even // loop for N + .loop_mmult_even: + l16si a9, a12, 0 + l16si a8, a13, 0 + addi a12, a12, 2 + add a13, a13, a7 + mula.aa.ll a8, a9 + .loop_end_mmult_even: + + rsr a8, acchi + rsr a9, acclo + src a8, a8, a9 + s16i a8, a4, 0 + addi a4, a4, 2 + // check and increment for K + + addi a10, a10, 2 + add a13, a3, a10 // we shift collumn + bne a10, a7, k_loop_mmult_even + + // Check and increment for M + add a2, a2, a14 // move to the next raw + addi a5, a5, -1 + bnez.n a5, m_loop_mmult_even + + movi.n a2, 0 // return status ESP_OK + retw.n + +// The path where n > 1 +vector_mult: + dspm_mult_s16_m_ae32_vector; + + +#endif // dspm_mult_s16_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_aes3.S new file mode 100644 index 0000000..aa08b3d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_aes3.S @@ -0,0 +1,142 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspm_mult_platform.h" +#if (dspm_mult_s16_aes3_enabled == 1) +#include "dsps_dotprod_s16_m_ae32.S" +#include "dspm_mult_s16_m_ae32_vector.S" + +//esp_err_t dspm_mult_s16_ae32(const int16_t* A, const int16_t* B, int16_t* C, int m, int n, int k, int shift); + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .literal_position + .literal .LC0_1_38, 32767 + .literal .LC1_1_39, 16383 + + .global dspm_mult_s16_aes3 + .global .dspm_mult_s16_ae32_body + .type dspm_mult_s16_aes3,@function + +dspm_mult_s16_aes3: + + entry a1,80 # + + movi.n a10, 7 + and a10, a10, a7 + beqz a10, .dspm_mult_s16_aes3_body + // Call Esp32 function + J .dspm_mult_s16_ae32_body + +.dspm_mult_s16_aes3_body: + mov.n a10,a4 # [0] + mov.n a11,a5 # [1] + l32i a5,a1,80 # [2] id:77 shift+0x0 + s32i.n a3,a1,32 # [3] gra_spill_temp_0 + + bltz a5,.Lt_0_6146 # [4] + +#.LBB3_dspm_mult_s16_aes3: # 0x13 + l32r a9,.LC0_1_38 # [0] + ssr a5 # [1] + sra a9,a9 # [2] + +.LBB23_dspm_mult_s16_aes3: # 0x1c + s16i a9,a1,0 # [0] id:78 round_data_64+0x0 + s16i a9,a1,2 # [1] id:78 round_data_64+0x0 + s16i a9,a1,4 # [2] id:78 round_data_64+0x0 + s16i a9,a1,6 # [3] id:78 round_data_64+0x0 + s16i a9,a1,8 # [4] id:78 round_data_64+0x0 + s16i a9,a1,10 # [5] id:78 round_data_64+0x0 + s16i a9,a1,12 # [6] id:78 round_data_64+0x0 + s16i a9,a1,14 # [7] id:78 round_data_64+0x0 + + blti a11,1,.Lt_0_7426 # [0] + + mov.n a13,a2 # [0] + slli a4,a7,1 # [1] + mov.n a12,a1 # [2] + l32i.n a14,a1,32 # [3] gra_spill_temp_0 + movi.n a15,15 # [4] + movi.n a8,0 # [5] + slli a9,a6,1 # [6] + s32i.n a9,a1,36 # [7] gra_spill_temp_1 + s32i.n a8,a1,44 # [8] gra_spill_temp_3 + sub a15,a15,a5 # [9] + addi.n a8,a7,7 # [10] + movgez a8,a7,a7 # [11] + srai a8,a8,3 # [12] + s32i.n a8,a1,40 # [13] gra_spill_temp_2 + slli a8,a8,4 # [14] + add.n a14,a14,a8 # [15] + +.Lt_0_7938: # 0x5d + l32i.n a8,a1,40 # [0] gra_spill_temp_2 + beqz.n a8,.Lt_0_8194 # [2] + + l32i.n a7,a1,32 # [0] gra_spill_temp_0 + mov.n a2,a13 # [1] + +.Lt_0_8706: # 0x65 + ee.ldqa.u16.128.ip a12,0 # [0] id:80 + ee.vldbc.16.ip q1,a2,2 # [1] id:79 + mov.n a3,a7 # [2] + ee.vld.128.xp q0,a3,a4 # [3] id:81 + addi a7,a7,16 # [4] + blti a6,1,.Lt_0_8962 # [5] + + srai a5,a6,1 # [0] + bbci a6,0,.LBB68_dspm_mult_s16_aes3 # [1] + + ee.vmulas.s16.qacc.ldbc.incp q1,a2,q0,q1 # [0] id:82 + ee.vld.128.xp q0,a3,a4 # [1] id:83 + +.LBB68_dspm_mult_s16_aes3: # 0x82 + loopgtz a5,.LBB74_dspm_mult_s16_aes3 # [0] + +.LBB64_dspm_mult_s16_aes3: # 0x85 + ee.vld.128.xp q2,a3,a4 # [0*II+0] id:83 + ee.vmulas.s16.qacc.ldbc.incp q1,a2,q0,q1 # [0*II+1] id:82 + ee.vld.128.xp q0,a3,a4 # [0*II+2] id:83 + ee.vmulas.s16.qacc.ldbc.incp q1,a2,q2,q1 # [0*II+3] id:82 + +.LBB74_dspm_mult_s16_aes3: # 0x91 + +.Lt_0_8962: # 0x91 + mov.n a2,a13 # [0] + ee.srcmb.s16.qacc q0,a15,1 # [1] + ee.vst.128.ip q0,a10,16 # [2] id:85 + bne a7,a14,.Lt_0_8706 # [3] + +.Lt_0_8194: # 0x9c + l32i.n a8,a1,36 # [0] gra_spill_temp_1 + l32i.n a9,a1,44 # [1] gra_spill_temp_3 + add.n a13,a13,a8 # [2] + addi.n a9,a9,1 # [3] + s32i.n a9,a1,44 # [4] gra_spill_temp_3 + bne a11,a9,.Lt_0_7938 # [5] + +.Lt_0_7426: # 0xa9 + movi.n a2,0 # [0] + retw.n # [1] + +.Lt_0_6146: # 0xad + l32r a9,.LC1_1_39 # [0] + ssr a5 # [1] + sra a9,a9 # [2] + j .LBB23_dspm_mult_s16_aes3 # [3] + + +#endif // dspm_mult_s16_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_ansi.c new file mode 100644 index 0000000..13c244e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_ansi.c @@ -0,0 +1,40 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_dotprod.h" +#include "dspm_mult.h" + +// Matrinx A(m,n), m - amount or rows, n - amount of columns +// C(m,k) = A(m,n)*B(n,k) +// c(i,j) = sum(a(i,s)*b(s,j)) , s=1..n +esp_err_t dspm_mult_s16_ansi(const int16_t *A, const int16_t *B, int16_t *C, int m, int n, int k, int shift) +{ + int final_shift = shift - 15; + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + // This code also could be used + //dsps_dotprode_f32_ae32(&A[i*n],&B[j],&C[i*k + j],n,1,n); + long long acc = 0x7fff >> shift; + for (int s = 0; s < n ; s++) { + acc += (int32_t)A[i * n + s] * (int32_t)B[s * k + j]; + } + if (final_shift > 0) { + C[i * k + j] = (acc << final_shift); + } else { + C[i * k + j] = (acc >> (-final_shift)); + } + } + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S new file mode 100644 index 0000000..791e085 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32.S @@ -0,0 +1,58 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +.macro dspm_mult_s16_ae32_MxNxN +// A - a2 +// B - a3 +// C - a4 +// m - a5 +// n - a6 +// k - a7 +// shift - stack (a8) + + movi a10, 4 // load 4 as a constant + // Check if n >=4 then acceleration is possible and + blt a6, a10, do_dotproduct + // Here we make operations one by one... + + + movi.n a2, 0 // return status ESP_OK + retw.n + +do_dotproduct: + + mov a12, a2 + mov a13, a3 + + srli a9, a6, 2 // a9 - count/4 - 1 + addi a9, a9, -1 + + movi.n a10, 0 // load 0 to the a10 to increment second array + dotprod_s16_ae32_full a12, a13, a9, a10, a6 + + /* Get accumulator */ + ssr a6 + rsr a2, acchi + rsr a3, acclo + src a2, a2, a3 + + s16i a2, a4, 0 + movi.n a2, 0 + + + movi.n a2, 0 // return status ESP_OK + retw.n + +.endm // dspm_mult_s16_ae32_MxNxN \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S new file mode 100644 index 0000000..af9dd62 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/fixed/dspm_mult_s16_m_ae32_vector.S @@ -0,0 +1,105 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +.macro dspm_mult_s16_m_ae32_vector +// m - a5 - any > 0 +// n - a6 - 1,2,3, any +// k - a7 - 1, any + + + // Define path for n < 4 + movi a7, 4 + blt a6, a7, small_process_loop // jump for n < 4 + + srli a7, a6, 2 + addi a7, a7, -1 + + +mmultv_loop1: + wsr a8, acchi + wsr a15, acclo // initialize acc with shifted round value + + // Clear initial state of the result register + // a2 - A + // a3 - B + // a4 - C + // a6 - n + // a7 - n/4 - 1 + // a8 - 0 + // a15- 0x7fff>>shift + + mov a12, a2 // load A + mov a13, a3 // Load B + + dotprod_s16_ae32_full a12, a13, a7, a6 + + // check loop 1 + /* Get accumulator */ + rsr a12, acchi + rsr a13, acclo + src a12, a12, a13 + + s16i a12, a4, 0 + addi a4, a4, 2 + + add.n a2, a2, a14 // Increment A, A = A[i*n] + addi a9, a9, 1 // Increment loop1 counter + blt a9, a5, mmultv_loop1 + + + movi.n a2, 0 // return status ESP_OK + retw.n + +small_process_loop: + + wsr a8, acchi + wsr a15, acclo // initialize acc with shifted round value + + mov a12, a2 // load A + mov a13, a3 // Load B + + addi a12, a12, -4 // To arrange fist pointer + addi a13, a13, -4 // To arrange fist pointer + + bbci a6, 1, .mod2chk_short + ldinc m0, a12 + ldinc m2, a13 + mula.dd.hh m0, m2 + mula.dd.ll m0, m2 + .mod2chk_short: + bbci a6, 0, .mod1chk_short + ldinc m0, a12 + ldinc m2, a13 + mula.dd.ll m0, m2 + .mod1chk_short: + + // check loop 1 + /* Get accumulator */ + rsr a12, acchi + rsr a13, acclo + src a12, a12, a13 + + s16i a12, a4, 0 + addi a4, a4, 2 + + add.n a2, a2, a14 // Increment A, A = A[i*n] + addi a9, a9, 1 // Increment loop1 counter + blt a9, a5, small_process_loop + + movi.n a2, 0 // return status ESP_OK + retw.n + + +.endm // dspm_mult_s16_m_ae32_vector \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S new file mode 100644 index 0000000..1932c19 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_3x3x1_f32_ae32.S @@ -0,0 +1,75 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspm_mult_platform.h" +#if (dspm_mult_3x3x1_f32_ae32_enabled == 1) + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .global dspm_mult_3x3x1_f32_ae32 + .type dspm_mult_3x3x1_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dspm_mult_3x3x1_f32_ansi(const float* A, const float* B, float* C, int m, int n, int k) +// { + // for (int i=0 ; i< m ; i++) + // { + // for (int j=0 ; j< k ; j++) + // { + // C[i*k + j] = A[i*n]*B[j]; + // for (int s=1; s< n ; s++) + // { + // C[i*k + j] += A[i*n + s]*B[s*k + j]; + // } + // } + // } +// return ESP_OK; +// } + +dspm_mult_3x3x1_f32_ae32: +// A - a2 +// B - a3 +// C - a4 + +// a5 - 0 +// a6 - 3 + entry a1, 16 + + movi a5, 0 + movi a6, 3 + + lsi f13,a3, 0 // B[0] + lsi f14,a3, 4 // B[1] + lsi f15,a3, 8 // B[2] + +// addi a2, a2, -12 // To compensate first increment + loopnez a6, loop_mac_3x3x1_end_m_ae32 + wfr f0, a5 + lsi f2, a2, 0 + madd.s f0, f2, f13 + lsi f3, a2, 4 + madd.s f0, f3, f14 + lsi f4, a2, 8 + madd.s f0, f4, f15 + + addi a2, a2, 12 + ssi f0, a4, 0 + addi a4, a4, 4 + + loop_mac_3x3x1_end_m_ae32: + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S new file mode 100644 index 0000000..d549ecc --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_3x3x3_f32_ae32.S @@ -0,0 +1,85 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspm_mult_platform.h" +#if (dspm_mult_3x3x3_f32_ae32_enabled == 1) + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .global dspm_mult_3x3x3_f32_ae32 + .type dspm_mult_3x3x3_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dspm_mult_3x3x1_f32_ansi(const float* A, const float* B, float* C, int m, int n, int k) +// { + // for (int i=0 ; i< m ; i++) + // { + // for (int j=0 ; j< k ; j++) + // { + // C[i*k + j] = A[i*n]*B[j]; + // for (int s=1; s< n ; s++) + // { + // C[i*k + j] += A[i*n + s]*B[s*k + j]; + // } + // } + // } +// return ESP_OK; +// } + +dspm_mult_3x3x3_f32_ae32: +// A - a2 +// B - a3 +// C - a4 + +// a5 - 0 +// a6 - 3 - internal loop for n +// a7 - 3 - external loop for M + entry a1, 16 + + movi a5, 0 + movi a6, 3 + movi a7, 3 // loop ccount + +m_loop_3x3x3: + mov a12, a2 // A + mov a14, a4 // output pointer + + lsi f12, a3, 0 // B[0][0] + lsi f13, a3, 12 // B[1][0] + lsi f14, a3, 24 // B[2][0] + + loopnez a6, loop_mac_3x3x3_end_m_ae32 + wfr f0, a5 + + lsi f2, a12, 0 + madd.s f0, f2, f12 + lsi f3, a12, 4 + madd.s f0, f3, f13 + lsi f4, a12, 8 + madd.s f0, f4, f14 + + addi a12, a12, 12 + ssi f0, a14, 0 + addi a14, a14, 12 + loop_mac_3x3x3_end_m_ae32: + + addi a3, a3, 4 // increment input pointer B + addi a4, a4, 4 + addi a7, a7, -1 + bnez a7, m_loop_3x3x3 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S new file mode 100644 index 0000000..cb6c2d4 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_4x4x1_f32_ae32.S @@ -0,0 +1,77 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspm_mult_platform.h" +#if (dspm_mult_4x4x1_f32_ae32_enabled == 1) + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .global dspm_mult_4x4x1_f32_ae32 + .type dspm_mult_4x4x1_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dspm_mult_3x3x1_f32_ansi(const float* A, const float* B, float* C, int m, int n, int k) +// { + // for (int i=0 ; i< m ; i++) + // { + // for (int j=0 ; j< k ; j++) + // { + // C[i*k + j] = A[i*n]*B[j]; + // for (int s=1; s< n ; s++) + // { + // C[i*k + j] += A[i*n + s]*B[s*k + j]; + // } + // } + // } +// return ESP_OK; +// } + +dspm_mult_4x4x1_f32_ae32: +// A - a2 +// B - a3 +// C - a4 + +// a5 - 0 +// a6 - 3 + entry a1, 16 + + movi a5, 0 + movi a6, 4 + + lsi f12,a3, 0 // B[0] + lsi f13,a3, 4 // B[1] + lsi f14,a3, 8 // B[2] + lsi f15,a3, 12 // B[3] + + loopnez a6, loop_mac_4x4x1_end_m_ae32 + wfr f0, a5 + lsi f2, a2, 0 + madd.s f0, f2, f12 + lsi f3, a2, 4 + madd.s f0, f3, f13 + lsi f4, a2, 8 + madd.s f0, f4, f14 + lsi f5, a2, 12 + madd.s f0, f5, f15 + + addi a2, a2, 16 + ssi f0, a4, 0 + addi a4, a4, 4 + + loop_mac_4x4x1_end_m_ae32: + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S new file mode 100644 index 0000000..980a665 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_4x4x4_f32_ae32.S @@ -0,0 +1,88 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspm_mult_platform.h" +#if (dspm_mult_4x4x4_f32_ae32_enabled == 1) + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .global dspm_mult_4x4x4_f32_ae32 + .type dspm_mult_4x4x4_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dspm_mult_3x3x1_f32_ansi(const float* A, const float* B, float* C, int m, int n, int k) +// { + // for (int i=0 ; i< m ; i++) + // { + // for (int j=0 ; j< k ; j++) + // { + // C[i*k + j] = A[i*n]*B[j]; + // for (int s=1; s< n ; s++) + // { + // C[i*k + j] += A[i*n + s]*B[s*k + j]; + // } + // } + // } +// return ESP_OK; +// } + +dspm_mult_4x4x4_f32_ae32: +// A - a2 +// B - a3 +// C - a4 + +// a5 - 0 +// a6 - 4 - internal loop for n +// a7 - 4 - external loop for M + entry a1, 16 + + movi a5, 0 + movi a6, 4 + movi a7, 4 // loop ccount + +m_loop_4x4x4: + mov a12, a2 // A + mov a14, a4 // output pointer + + lsi f12, a3, 0 // B[0][0] + lsi f13, a3, 16 // B[1][0] + lsi f14, a3, 32 // B[2][0] + lsi f15, a3, 48 // B[3][0] + + loopnez a6, loop_mac_4x4x4_end_m_ae32 + wfr f0, a5 + + lsi f2, a12, 0 + madd.s f0, f2, f12 + lsi f3, a12, 4 + madd.s f0, f3, f13 + lsi f4, a12, 8 + madd.s f0, f4, f14 + lsi f5, a12, 12 + madd.s f0, f5, f15 + + addi a12, a12, 16 + ssi f0, a14, 0 + addi a14, a14, 16 + loop_mac_4x4x4_end_m_ae32: + + addi a3, a3, 4 // increment input pointer B + addi a4, a4, 4 + addi a7, a7, -1 + bnez a7, m_loop_4x4x4 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S new file mode 100644 index 0000000..1a5c4d1 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_ae32.S @@ -0,0 +1,88 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dspm_mult_platform.h" +#if (dspm_mult_f32_ae32_enabled == 1) + +#include "dsps_dotprode_f32_m_ae32.S" + + // This is matrix multiplication function for ESP32 processor. + .text + .align 4 + .global dspm_mult_ex_f32_ae32 + .global .dspm_mult_ex_f32_ae32_body + .type dspm_mult_ex_f32_ae32,@function +// The function implements the following C code: +//esp_err_t dspm_mult_ex_f32_ae32(const float *A, const float *B, float *C, int m, int n, int k, int A_padd, int B_padd, int C_padd); + +dspm_mult_ex_f32_ae32: + +// A - a2 +// B - a3 +// C - a4 +// m - a5 +// n - a6 +// k - a7 +// A_padding - a14 +// B_padding - a15 +// C_padding - a8 + +// a10 = 4 +// a9 - counter loop1: 0..m +// a11 - counter loop2: 0..k +// a12 - A +// a13 - B +// a4 - C + + entry a1, 16 + // Array increment for floating point data should be 4 +.dspm_mult_ex_f32_ae32_body: + + l32i.n a14, a1, 16 // A_padding + l32i.n a15, a1, 20 // B_padding + l32i.n a8, a1, 24 // C_padding + + add a14, a14, a6 // A_step = A_padding + A_cols (n) + add a15, a15, a7 // B_step = B_padding + B_cols (k) + slli a15, a15, 2 // Pointer increment for B (B_step * 4) + + movi.n a10, 4 // Increment = 4 + movi.n a9, 0 // counter loop1 + const.s f3, 0 // Innitial state of accumulator, f3 = 0 + +.mult_ex_loop1: + movi.n a11, 0 // reset counter for loop2 + .mult_ex_loop2: + // Clear initial state of the result register + // a2 - A + // a3 - B + // a6 - n + // a10 - step == 4 bytes + + mov a12, a2 // load A + addx4 a13, a11, a3 // loop count to pointer value + mov.s f1, f3 // reset f1 + + // Calculating dotproduct... + //dotprode_f32_ae32( x1 x2 count step1 step2) + dotprode_f32_ae32 a12, a13, a6, a10, a15; + + addi.n a11, a11, 1 // Increment loop2 counter + ssip f1, a4, 4 // Store restul from f1 to memory at a4 and increment a4 + + // check loop 2 + blt a11, a7, .mult_ex_loop2 + + // check loop 1 + addx4 a2, a14, a2 // A += (A_step << 2) + addx4 a4, a8, a4 // output += (C_padding << 2) + addi.n a9, a9, 1 // Increment loop1 counter + blt a9, a5, .mult_ex_loop1 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif //dspm_mult_f32_ae32_enabled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S new file mode 100644 index 0000000..afd66e3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_aes3.S @@ -0,0 +1,166 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dspm_mult_platform.h" + +#if (dspm_mult_f32_aes3_enabled == 1) + +// This is matrix multiplication function for ESP32S3 processor. + .text + .align 4 + .global dspm_mult_ex_f32_aes3 + .global .dspm_mult_ex_f32_ae32_body + .type dspm_mult_ex_f32_aes3,@function +// The function implements the following C code: +//esp_err_t dspm_mult_ex_f32_ansi(const float* A, const float* B, float* C, int A_rows, int A_cols, int B_cols, int A_padding, int B_padding, int C_padding) +//{ +// const int A_step = A_cols + A_padding; +// const int B_step = B_cols + B_padding; +// const int C_step = B_cols + C_padding; +// +// for (int i = 0; i < A_rows; i++) { +// for (int j = 0; j < B_cols; j++) { +// C[i * C_step + j] = A[i * A_step] * B[j]; +// for (int s = 1; s < A_cols; s++) { +// C[i * C_step + j] += A[i * A_step + s] * B[s * B_step + j]; +// } +// } +// } +// return ESP_OK; +//} + +// A - a2 +// B - a3 +// C - a4 +// m - a5 +// n - a6 +// k - a7 +// A_padd = a8 +// B_padd = a9 +// C_padd = a15 + +dspm_mult_ex_f32_aes3: + + entry a1, 16 + l32i.n a8, a1, 16 // A_padding + l32i.n a9, a1, 20 // B_padding + l32i.n a15, a1, 24 // C_padding + + // Check if we can use S3 memory model + // Check matrices dimensions and paddings all of them must be divisible by 4 + or a12, a5, a6 // a12 = m OR n + or a14, a8, a9 // a14 = A_padd OR B_padd + or a12, a12, a7 // a12 = m OR n OR k + or a14, a14, a15 // a14 = A_padd OR B_padd OR C_padd + or a12, a12, a14 // a12 = m OR n OR k OR A_padd OR B_padd OR C_padd + movi.n a11, 3 // a11 = byte mask + and a12, a12, a11 // a12 = a12 AND 3 (byte mask) + + // Check alignment of A B C matrices data pointers + movi.n a11, 15 // a11 = byte mask + or a10, a3, a2 // a10 = A pointer OR B pointer + or a10, a10, a4 // a10 = A pointer OR B pointer OR C pointer + and a10, a10, a11 // a10 = a10 AND 15 (byte mask) + or a12, a12, a10 // a12 = mat_dim OR alignment + beqz a12, .s3_mmult_ex // if zero, jump to s3_mult + // Call Esp32 function + J .dspm_mult_ex_f32_ae32_body + +.s3_mmult_ex: +// f0, f1, f2, f3 - multiplication result +// f4, f5, f6, f7 - input for matrix B +// f8, f9, f10,f11- input far matrix A + movi.n a14, 0 // B pointer increment for y loop + + add a15, a15, a7 // a15 = k + C_padding + slli a10, a15, 2 // a10 = (K + C_padding) * 4 - step for rows + + mov a15, a9 // a15 = B_padd + slli a15, a15, 2 // a15 = B_padd * 4 + + add a7, a7, a9 // a7 = k + B_padding + slli a12, a7, 2 // a12 = (K + B_padding) * 4 - step for rows + srli a11, a6, 2 // a11 = n / 4 + addi.n a11, a11, -1 // a11 = innter loop count (n) + + slli a6, a8, 2 // a6 = A_padding *4 = A_pointer step + mov a13, a3 // backup B pointer + mov a7, a4 // backup C pointer + +.loop_x_mult_ex: + movi.n a9, 0 // reset loop1 counter + mov a8, a2 // move A matrix back to the beginning + .loop_y_mult_ex: + + add a13, a3, a14 // Reload Y pointer to Y11 + A14 + EE.LDF.128.IP f11, f10, f9, f8, a8, 16 // Load A values: X11, X12, X13, X14 + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y11, Y12, Y13, Y14 + mul.s f0, f4, f8 // f0 = X11*Y11 + mul.s f1, f5, f8 // f1 = X12*Y11 + mul.s f2, f6, f8 // f2 = X13*Y11 + mul.s f3, f7, f8 // f3 = X14*Y11 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y21, Y22, Y23, Y24 + madd.s f0, f4, f9 // f0 = X11*Y11 + X12*Y21 + madd.s f1, f5, f9 // f1 = X11*Y12 + X12*Y22 + madd.s f2, f6, f9 // f2 = X11*Y13 + X12*Y23 + madd.s f3, f7, f9 // f3 = X11*Y14 + X12*Y24 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y31, Y32, Y33, Y34 + madd.s f0, f4, f10 // f0 = X11*Y11 + X12*Y21 + X13*Y31 + madd.s f1, f5, f10 // f1 = X11*Y12 + X12*Y22 + X13*Y32 + madd.s f2, f6, f10 // f2 = X11*Y13 + X12*Y23 + X13*Y33 + madd.s f3, f7, f10 // f3 = X11*Y14 + X12*Y24 + X13*Y34 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y41, Y42, Y43, Y44 + madd.s f0, f4, f11 // f0 = X11*Y11 + X12*Y21 + X13*Y31 + X14*Y41 + madd.s f1, f5, f11 // f1 = X11*Y12 + X12*Y22 + X13*Y32 + X14*Y42 + madd.s f2, f6, f11 // f2 = X11*Y13 + X12*Y23 + X13*Y33 + X14*Y43 + madd.s f3, f7, f11 // f3 = X11*Y14 + X12*Y24 + X13*Y34 + X14*Y44 + + loopnez a11, .iner_loop_mult_ex + EE.LDF.128.IP f11, f10, f9, f8, a8, 16 // Load A values: X15, X16, X17, X18 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y51, Y52, Y53, Y54 + madd.s f0, f4, f8 // f0 += X15*Y51 + madd.s f1, f5, f8 // f1 += X15*Y52 + madd.s f2, f6, f8 // f2 += X15*Y53 + madd.s f3, f7, f8 // f3 += X15*Y54 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y61, Y62, Y63, Y64 + madd.s f0, f4, f9 // f0 += X16*Y61 + madd.s f1, f5, f9 // f1 += X16*Y62 + madd.s f2, f6, f9 // f2 += X16*Y63 + madd.s f3, f7, f9 // f3 += X16*Y64 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y71, Y72, Y73, Y74 + madd.s f0, f4, f10 // f0 = + madd.s f1, f5, f10 // f1 = + madd.s f2, f6, f10 // f2 = + madd.s f3, f7, f10 // f3 = + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y81, Y82, Y83, Y84 + madd.s f0, f4, f11 // f0 = + madd.s f1, f5, f11 // f1 = + madd.s f2, f6, f11 // f2 = + madd.s f3, f7, f11 // f3 = + .iner_loop_mult_ex: + EE.STF.128.XP f3, f2, f1, f0, a4, a10 // Store result + + addi.n a9, a9, 1 // Increment loop1 counter + add a8, a8, a6 // (increase A pointer by A_padding * 4 times) + blt a9, a5, .loop_y_mult_ex + + addi.n a7, a7, 16 // Increase C pinter by 16 + mov a4, a7 + addi.n a14, a14, 16 // Increase B pointer by 16 + addi.n a15, a15, 16 // Increment loop2 counter by 16 + +blt a15, a12, .loop_x_mult_ex + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif //dspm_mult_f32_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c new file mode 100644 index 0000000..da59b76 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_ex_f32_ansi.c @@ -0,0 +1,57 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dspm_mult.h" + +// Matrix A(m,n), m - amount or rows, n - amount of columns +// C(m,k) = A(m,n)*B(n,k) +// c(i * c_step,j) = sum(a(i * a_step,s)*b(s * b_step,j)) , s=1..n +esp_err_t dspm_mult_ex_f32_ansi(const float *A, const float *B, float *C, int A_rows, int A_cols, int B_cols, int A_padding, int B_padding, int C_padding) +{ + if (NULL == A) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == B) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == C) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (A_rows <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (A_cols <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (B_cols <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (A_padding < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (B_padding < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (C_padding < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + const int A_step = A_cols + A_padding; + const int B_step = B_cols + B_padding; + const int C_step = B_cols + C_padding; + + for (int i = 0; i < A_rows; i++) { + for (int j = 0; j < B_cols; j++) { + C[i * C_step + j] = A[i * A_step] * B[j]; + for (int s = 1; s < A_cols; s++) { + C[i * C_step + j] += A[i * A_step + s] * B[s * B_step + j]; + } + } + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_ae32.S new file mode 100644 index 0000000..9e3bc13 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_ae32.S @@ -0,0 +1,104 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspm_mult_platform.h" +#if (dspm_mult_f32_ae32_enabled == 1) + +#include "dsps_dotprode_f32_m_ae32.S" + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .global dspm_mult_f32_ae32 + .global .dspm_mult_f32_ae32_body + .type dspm_mult_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dspm_mult_f32_ansi(const float* A, const float* B, float* C, int m, int n, int k) +// { + // for (int i=0 ; i< m ; i++) + // { + // for (int j=0 ; j< k ; j++) + // { + // C[i*k + j] = A[i*n]*B[j]; + // for (int s=1; s< n ; s++) + // { + // C[i*k + j] += A[i*n + s]*B[s*k + j]; + // } + // } + // } +// return ESP_OK; +// } + +dspm_mult_f32_ae32: +// A - a2 +// B - a3 +// C - a4 +// m - a5 +// n - a6 +// k - a7 + +// a8 = n*4 +// a10 = 4 +// a9 - counter loop1: 0..m +// a11 - counter loop2: 0..k +// a12 - A +// a13 - B +// a4 - C + + entry a1, 16 + // Array increment for floating point data should be 4 +.dspm_mult_f32_ae32_body: + slli a8, a6, 2 // Pointer increment for A + slli a15,a7, 2 // Pointer increment for B + + movi.n a14, 0 // Innitial state of accumulator f1 + movi.n a10, 4 // Increment = 4 + movi.n a9, 0 // counter loop1 + +.dpf_loop1: + movi.n a11, 0 // reset counter for loop2 +.dpf_loop2: + + // Clear initial state of the result register + // a2 - A + // a3 - B + // a6 - n + // a10 - step == 4 bytes + // a8 - step n*4 + mov a12, a2 // load A + + slli a13, a11, 2 // loop count to pointer value + add.n a13, a3, a13 // load A + + wfr f1, a14 // reset f1 + // Calculating dotproduct... + dotprode_f32_ae32 a12, a13, a6, a10, a15; + + ssi f1, a4, 0 // Store result from f1 to memory at a4 + addi a4, a4, 4 // increment a4 for next time + + // check loop 2 + addi a11, a11, 1 // Increment loop2 counter + blt a11, a7, .dpf_loop2 + + // check loop 1 + add.n a2, a2, a8 // Increment A, A = A[i*n] + + addi a9, a9, 1 // Increment loop1 counter + blt a9, a5, .dpf_loop1 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif //dspm_mult_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_aes3.S new file mode 100644 index 0000000..d6c16e9 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_aes3.S @@ -0,0 +1,150 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dspm_mult_platform.h" + +#if (dspm_mult_f32_aes3_enabled == 1) + + +// This is matrix multipliction function for ESP32 processor. + .text + .align 4 + .global dspm_mult_f32_aes3 + .global .dspm_mult_f32_ae32_body + .type dspm_mult_f32_aes3,@function +// The function implements the following C code: +// esp_err_t dspm_mult_f32_ansi(const float* A, const float* B, float* C, int m, int n, int k) +// { + // for (int i=0 ; i< m ; i++) + // { + // for (int j=0 ; j< k ; j++) + // { + // C[i*k + j] = A[i*n]*B[j]; + // for (int s=1; s< n ; s++) + // { + // C[i*k + j] += A[i*n + s]*B[s*k + j]; + // } + // } + // } +// return ESP_OK; +// } + +dspm_mult_f32_aes3: + entry a1, 16 +// A - a2 +// B - a3 +// C - a4 +// m - a5 +// n - a6 +// k - a7 + + // Ccheck if we can use S3 memory model: + or a12, a5, a6 + or a12, a7, a12 + movi.n a11, 3 + and a12, a12, a11 + movi.n a11, 15 + or a10, a3, a2 + or a10, a10, a4 + and a10, a10, a11 + or a12, a12, a10 + beqz a12, .s3_mmult + // Call Esp32 function + J .dspm_mult_f32_ae32_body + +.s3_mmult: +// f0, f1, f2, f3 - multiplication result +// f4, f5, f6, f7 - input for matrix B +// f8, f9, f10,f11- input far matrix A + movi.n a14, 0 + + slli a12, a7, 2 // a12 = K*4 - step for rows + slli a10, a7, 2 // a10 = K*4 - step for rows + srli a11, a6, 2 // N count + addi.n a11, a11, -1 + + movi.n a15, 0 + mov a13, a3 + mov a7, a4 + +.loop_x_aes3: + movi.n a9, 0 + mov a8, a2 // A matirx + .loop_y_aes3: + add a13, a3, a14 // Reload Y pointer to Y11 + A14 + EE.LDF.128.IP f11, f10, f9, f8, a8, 16 // Load A values: X11, X12, X13, X14 + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y11, Y12, Y13, Y14 + mul.s f0, f4, f8 // f0 = X11*Y11 + mul.s f1, f5, f8 // f1 = X12*Y11 + mul.s f2, f6, f8 // f2 = X13*Y11 + mul.s f3, f7, f8 // f3 = X14*Y11 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y21, Y22, Y23, Y24 + madd.s f0, f4, f9 // f0 = X11*Y11 + X12*Y21 + madd.s f1, f5, f9 // f1 = X11*Y12 + X12*Y22 + madd.s f2, f6, f9 // f2 = X11*Y13 + X12*Y23 + madd.s f3, f7, f9 // f3 = X11*Y14 + X12*Y24 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y31, Y32, Y33, Y34 + madd.s f0, f4, f10 // f0 = X11*Y11 + X12*Y21 + X13*Y31 + madd.s f1, f5, f10 // f1 = X11*Y12 + X12*Y22 + X13*Y32 + madd.s f2, f6, f10 // f2 = X11*Y13 + X12*Y23 + X13*Y33 + madd.s f3, f7, f10 // f3 = X11*Y14 + X12*Y24 + X13*Y34 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y41, Y42, Y43, Y44 + madd.s f0, f4, f11 // f0 = X11*Y11 + X12*Y21 + X13*Y31 + X14*Y41 + madd.s f1, f5, f11 // f1 = X11*Y12 + X12*Y22 + X13*Y32 + X14*Y42 + madd.s f2, f6, f11 // f2 = X11*Y13 + X12*Y23 + X13*Y33 + X14*Y43 + madd.s f3, f7, f11 // f3 = X11*Y14 + X12*Y24 + X13*Y34 + X14*Y44 + + loopnez a11, .loop_end_m_aes3 + EE.LDF.128.IP f11, f10, f9, f8, a8, 16 // Load A values: X15, X16, X17, X18 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y51, Y52, Y53, Y54 + madd.s f0, f4, f8 // f0 += X15*Y51 + madd.s f1, f5, f8 // f1 += X15*Y52 + madd.s f2, f6, f8 // f2 += X15*Y53 + madd.s f3, f7, f8 // f3 += X15*Y54 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y61, Y62, Y63, Y64 + madd.s f0, f4, f9 // f0 += X16*Y61 + madd.s f1, f5, f9 // f1 += X16*Y62 + madd.s f2, f6, f9 // f2 += X16*Y63 + madd.s f3, f7, f9 // f3 += X16*Y64 + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y71, Y72, Y73, Y74 + madd.s f0, f4, f10 // f0 = + madd.s f1, f5, f10 // f1 = + madd.s f2, f6, f10 // f2 = + madd.s f3, f7, f10 // f3 = + + EE.LDF.128.XP f7, f6, f5, f4, a13, a12 // Load B value: Y81, Y82, Y83, Y84 + madd.s f0, f4, f11 // f0 = + madd.s f1, f5, f11 // f1 = + madd.s f2, f6, f11 // f2 = + madd.s f3, f7, f11 // f3 = + .loop_end_m_aes3: + EE.STF.128.XP f3, f2, f1, f0, a4, a10 // Store result + + addi a9, a9, 1 // Increment loop1 counter + blt a9, a5, .loop_y_aes3 + addi.n a7, a7, 16 + mov a4, a7 + addi.n a14, a14, 16 // B shift for 4 + addi a15, a15, 16 // Increment loop1 counter +blt a15, a12, .loop_x_aes3 + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif //dspm_mult_f32_aes3_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_ansi.c new file mode 100644 index 0000000..371aa25 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/float/dspm_mult_f32_ansi.c @@ -0,0 +1,33 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#include "dsps_dotprod.h" +#include "dspm_mult.h" + +// Matrinx A(m,n), m - amount or rows, n - amount of columns +// C(m,k) = A(m,n)*B(n,k) +// c(i,j) = sum(a(i,s)*b(s,j)) , s=1..n +esp_err_t dspm_mult_f32_ansi(const float *A, const float *B, float *C, int m, int n, int k) +{ + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + C[i * k + j] = A[i * n] * B[j]; + for (int s = 1; s < n ; s++) { + C[i * k + j] += A[i * n + s] * B[s * k + j]; + } + } + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include/dspm_mult.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include/dspm_mult.h new file mode 100644 index 0000000..39839ed --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include/dspm_mult.h @@ -0,0 +1,222 @@ +// Copyright 2018-2023 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dspm_mult_H_ +#define _dspm_mult_H_ + +#include "dsp_err.h" +#include "dspm_mult_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/**@{*/ +/** + * @brief Matrix multiplication + * + * Matrix multiplication for two floating point matrices: C[m][k] = A[m][n] * B[n][k] + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] A input matrix A[m][n] + * @param[in] B input matrix B[n][k] + * @param C result matrix C[m][k] + * @param[in] m matrix dimension + * @param[in] n matrix dimension + * @param[in] k matrix dimension + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspm_mult_f32_ansi(const float *A, const float *B, float *C, int m, int n, int k); +esp_err_t dspm_mult_f32_ae32(const float *A, const float *B, float *C, int m, int n, int k); +esp_err_t dspm_mult_f32_aes3(const float *A, const float *B, float *C, int m, int n, int k); +/**@}*/ + + +/** + * @brief Matrix multiplication A[3x3]xB[3x1] + * + * Matrix multiplication for two floating point matrices 3x3 and 3x1: C[1][3] = A[3][3] * B[3][1] + * The implementation is optimized for ESP32 chip. + * + * @param[in] A input matrix A[3][3] + * @param[in] B input matrix/vector B[3][1] + * @param C result matrix/vector C[3][3] + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspm_mult_3x3x1_f32_ae32(const float *A, const float *B, float *C); + +/** + * @brief Matrix multiplication A[3x3]xB[3x3] + * + * Matrix multiplication for two square 3x3 floating point matrices: C[3][3] = A[3][3] * B[3][3] + * The implementation is optimized for ESP32 chip. + * + * @param[in] A input matrix A[3][3] + * @param[in] B input matrix B[3][3] + * @param C result matrix C[3][3] + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspm_mult_3x3x3_f32_ae32(const float *A, const float *B, float *C); + +/** + * @brief Matrix multiplication A[4x4]xB[4x1] + * + * Matrix multiplication for two floating point matrices 4x4 and 4x1: C[1][4] = A[4][4] * B[4][1] + * The implementation is optimized for ESP32 chip. + * + * @param[in] A input matrix A[4][4] + * @param[in] B input matrix/vector B[4][1] + * @param C result matrix/vector C[4][4] + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ + +esp_err_t dspm_mult_4x4x1_f32_ae32(const float *A, const float *B, float *C); + +/** + * @brief Matrix multiplication A[4x4]xB[4x4] + * + * Matrix multiplication for two square 3x3 floating point matrices: C[4][4] = A[4][4] * B[4][4] + * The implementation is optimized for ESP32 chip. + * + * @param[in] A input matrix A[4][4] + * @param[in] B input matrix B[4][4] + * @param C result matrix C[4][4] + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspm_mult_4x4x4_f32_ae32(const float *A, const float *B, float *C); + +/**@{*/ +/** + * @brief Matrix multiplication 16 bit signeg int + * + * Matrix multiplication for two signed 16 bit fixed point matrices: C[m][k] = (A[m][n] * B[n][k]) >> (15- shift) + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] A input matrix A[m][n] + * @param[in] B input matrix B[n][k] + * @param C result matrix C[m][k] + * @param[in] m matrix dimension + * @param[in] n matrix dimension + * @param[in] k matrix dimension + * @param[in] shift every result will be shifted and stored as 16 bit signed value. + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspm_mult_s16_ansi(const int16_t *A, const int16_t *B, int16_t *C, int m, int n, int k, int shift); +esp_err_t dspm_mult_s16_ae32(const int16_t *A, const int16_t *B, int16_t *C, int m, int n, int k, int shift); +esp_err_t dspm_mult_s16_aes3(const int16_t *A, const int16_t *B, int16_t *C, int m, int n, int k, int shift); +/**@}*/ + +/**@{*/ +/** + * @brief Matrix subset multiplication + * + * One or all of the matrices are matrix subsets, described with pointers and strides + * Matrix multiplication for two floating point matrices: C[m][k] = A[m][n] * B[n][k] + * The extension (_ansi) use ANSI C and could be compiled and run on any platform. + * The extension (_ae32) is optimized for ESP32 chip. + * + * @param[in] A input matrix A[m][n] + * @param[in] B input matrix B[n][k] + * @param[out] C result matrix C[m][k] + * @param[in] m matrix dimension + * @param[in] n matrix dimension + * @param[in] k matrix dimension + * @param[in] A_padd input matrix A padding + * @param[in] B_padd input matrix B padding + * @param[in] C_padd result matrix C padding + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspm_mult_ex_f32_ansi(const float *A, const float *B, float *C, int m, int n, int k, int A_padd, int B_padd, int C_padd); +esp_err_t dspm_mult_ex_f32_ae32(const float *A, const float *B, float *C, int m, int n, int k, int A_padd, int B_padd, int C_padd); +esp_err_t dspm_mult_ex_f32_aes3(const float *A, const float *B, float *C, int m, int n, int k, int A_padd, int B_padd, int C_padd); + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED + + +#if (dspm_mult_s16_aes3_enabled == 1) +#define dspm_mult_s16 dspm_mult_s16_aes3 +#elif (dspm_mult_s16_ae32_enabled == 1) +#define dspm_mult_s16 dspm_mult_s16_ae32 +#else +#define dspm_mult_s16 dspm_mult_s16_ansi +#endif + +#if (dspm_mult_f32_aes3_enabled == 1) +#define dspm_mult_f32 dspm_mult_f32_aes3 +#define dspm_mult_ex_f32 dspm_mult_ex_f32_aes3 +#elif (dspm_mult_f32_ae32_enabled == 1) +#define dspm_mult_f32 dspm_mult_f32_ae32 +#define dspm_mult_ex_f32 dspm_mult_ex_f32_ae32 +#else +#define dspm_mult_f32 dspm_mult_f32_ansi +#define dspm_mult_ex_f32 dspm_mult_ex_f32_ansi +#endif + +#if (dspm_mult_3x3x1_f32_ae32_enabled == 1) +#define dspm_mult_3x3x1_f32 dspm_mult_3x3x1_f32_ae32 +#else +#define dspm_mult_3x3x1_f32(A,B,C) dspm_mult_f32_ansi(A,B,C, 3, 3, 1) +#endif +#if (dspm_mult_3x3x3_f32_ae32_enabled == 1) +#define dspm_mult_3x3x3_f32(A,B,C) dspm_mult_3x3x3_f32_ae32(A,B,C) +#else +#define dspm_mult_3x3x3_f32(A,B,C) dspm_mult_f32_ansi(A,B,B,3,3,3); +#endif +#if (dspm_mult_4x4x1_f32_ae32_enabled == 1) +#define dspm_mult_4x4x1_f32(A,B,C) dspm_mult_4x4x1_f32_ae32(A,B,C) +#else +#define dspm_mult_4x4x1_f32(A,B,C) dspm_mult_f32_ansi(A,B,C, 4, 4, 1) +#endif + +#if (dspm_mult_f32_aes3_enabled == 1) +#define dspm_mult_4x4x4_f32(A,B,C) dspm_mult_f32_aes3(A,B,C, 4, 4, 4) +#elif (dspm_mult_4x4x4_f32_ae32_enabled == 1) +#define dspm_mult_4x4x4_f32 dspm_mult_4x4x4_f32_ae32 +#else +#define dspm_mult_4x4x4_f32(A,B,C) dspm_mult_f32_ansi(A,B,C, 4, 4, 4) +#endif + +#else +#define dspm_mult_s16 dspm_mult_s16_ansi +#define dspm_mult_f32 dspm_mult_f32_ansi +#define dspm_mult_3x3x1_f32(A,B,C) dspm_mult_f32_ansi(A,B,C, 3, 3, 1) +#define dsps_sub_f32 dsps_sub_f32_ansi +#define dsps_add_f32 dsps_add_f32_ansi +#define dspm_mult_4x4x4_f32(A,B,C) dspm_mult_f32_ansi(A,B,C, 4, 4, 4) +#define dspm_mult_ex_f32 dspm_mult_ex_f32_ansi +#endif // CONFIG_DSP_OPTIMIZED + + +#endif // _dspm_mult_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include/dspm_mult_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include/dspm_mult_platform.h new file mode 100644 index 0000000..6d127dd --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/include/dspm_mult_platform.h @@ -0,0 +1,33 @@ +#ifndef _dspm_mult_platform_H_ +#define _dspm_mult_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dspm_mult_f32_ae32_enabled 1 +#define dspm_mult_3x3x1_f32_ae32_enabled 1 +#define dspm_mult_3x3x3_f32_ae32_enabled 1 +#define dspm_mult_4x4x1_f32_ae32_enabled 1 +#define dspm_mult_4x4x4_f32_ae32_enabled 1 + +#endif + +#if ((XCHAL_HAVE_LOOPS == 1) && (XCHAL_HAVE_MAC16 == 1)) + +#define dspm_mult_s16_ae32_enabled 1 + +#endif +#endif // __XTENSA__ + +#if CONFIG_IDF_TARGET_ESP32S3 +#define dspm_mult_f32_aes3_enabled 1 +#define dspm_mult_s16_aes3_enabled 1 +#endif + +#endif // _dspm_mult_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include/test_mat_common.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include/test_mat_common.h new file mode 100644 index 0000000..ccd488b --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/include/test_mat_common.h @@ -0,0 +1,84 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef _test_mat_common_H_ +#define _test_mat_common_H_ + +#include "dspm_mult.h" +#include "dsp_err.h" +#include "dspm_mult_platform.h" +#include "esp_dsp.h" +#include "dsp_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief data type for testing operations with sub-matrices + * + * test evaluation in the test app for matrices check + * compare 2 matrices + */ +typedef struct m_test_data_s { + int var; + int A_start_row; + int A_start_col; + int B_start_row; + int B_start_col; + int C_start_row; + int C_start_col; + int m; + int n; + int k; +} m_test_data_t; + +/** + * @brief check whether 2 matrices are equal + * + * test evaluation in the test app for matrices check + * compare 2 matrices + * + * @param[in] m_expected: reference matrix + * @param[in] m_actual: matrix to be evaluated + * @param[in] message: message for test app, in case the test fails + * + */ +void test_assert_equal_mat_mat(dspm::Mat &m_expected, dspm::Mat &m_actual, const char *message); + +/** + * @brief check whether a matrix is set to a constant + * + * test evaluation in the test app for matrices check + * compare matrix with constant + * + * @param[in] m_actual: matrix to be evaluated + * @param[in] num: reference constant + * @param[in] message: message for test app, if a test fails + * + */ +void test_assert_equal_mat_const(dspm::Mat &m_actual, float num, const char *message); + +/** + * @brief check if an area around a sub-matrix is unaffected + * + * test evaluation in the test app for matrices check + * + * @param[in] m_origin: original matrix + * @param[in] m_modified: sub-matrix, which is created from m_orign + * @param[in] start_row: sub-matrix start row + * @param[in] start_col: sub-matrix start col + * @param[in] message: message for test app, in case the test fails + * + */ +void test_assert_check_area_mat_mat(dspm::Mat &m_origin, dspm::Mat &m_modified, int start_row, int start_col, const char *message); + +#ifdef __cplusplus +} +#endif + +#endif // _test_mat_common_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mat_common.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mat_common.cpp new file mode 100644 index 0000000..55af55f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mat_common.cpp @@ -0,0 +1,74 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "esp_log.h" + +#include "esp_attr.h" +#include "dsp_tests.h" +#include "test_mat_common.h" + +void test_assert_equal_mat_mat(dspm::Mat &m_expected, dspm::Mat &m_actual, const char *message) +{ + for (int row = 0; row < m_expected.rows; row++) { + for (int col = 0; col < m_expected.cols; col++) { + TEST_ASSERT_EQUAL_FLOAT_MESSAGE(m_expected(row, col), m_actual(row, col), message); + } + } +} + +void test_assert_equal_mat_const(dspm::Mat &m_actual, float num, const char *message) +{ + for (int row = 0; row < m_actual.rows; row++) { + for (int col = 0; col < m_actual.cols; col++) { + TEST_ASSERT_EQUAL_FLOAT_MESSAGE(num, m_actual(row, col), message); + } + } +} + +void test_assert_check_area_mat_mat(dspm::Mat &m_origin, dspm::Mat &m_modified, int start_row, int start_col, const char *message) +{ + float *m_origin_ptr = m_origin.data; + float *m_modified_ptr = m_modified.data; + + // set ptr of modified matrix back to the beginning + const int ptr_shift = (start_row * m_origin.cols) + start_col; + m_modified_ptr -= ptr_shift; + const int end_of_matrix_space = m_origin.length - m_modified.length - ptr_shift - ((m_modified.rows - 1) * m_modified.padding); + + // original matrix area before the sub-matrix + for (int index = 0; index < ptr_shift; index++) { + TEST_ASSERT_EQUAL_FLOAT_MESSAGE(*m_origin_ptr, *m_modified_ptr, message); + m_origin_ptr++; + m_modified_ptr++; + } + + // in and between the sub-matrix area + for (int row = 0; row < m_modified.rows; row++) { + // The actual sub-matrix (accessed area) + for (int mat_col = 0; mat_col < m_modified.cols; mat_col++) { + m_origin_ptr++; + m_modified_ptr++; + } + + // padding area + if (row != (m_modified.rows - 1)) { // skip padding after last row + for (int padd_col = 0; padd_col < m_modified.padding; padd_col++) { + TEST_ASSERT_EQUAL_FLOAT_MESSAGE(*m_origin_ptr, *m_modified_ptr, message); + m_origin_ptr++; + m_modified_ptr++; + } + } + } + + // original matrix area after the sub-matrix + for (int index = 0; index < end_of_matrix_space; index++) { + TEST_ASSERT_EQUAL_FLOAT_MESSAGE(*m_origin_ptr, *m_modified_ptr, message); + m_origin_ptr++; + m_modified_ptr++; + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mat_f32.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mat_f32.cpp new file mode 100644 index 0000000..e3f65b3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mat_f32.cpp @@ -0,0 +1,259 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspm_mult.h" +#include "esp_attr.h" +#include "dsp_tests.h" +#include "mat.h" + +static const char *TAG = "dspm_Mat"; + +TEST_CASE("Mat class ", "[dspm]") +{ + int m = 3; + int n = 3; + dspm::Mat mat(m, n); + std::cout << "Test matrix: rows: " << mat.rows << ", columns: " << mat.cols << std::endl; + std::cout << mat; +} + +TEST_CASE("Mat class check solve ", "[dspm]") +{ + int m = 3; + int n = 3; + float data_a[9] = {3, 2, 1, 2, 3, 1, 2, 1, 3}; + float data_b[9] = {5, -1, 4}; + dspm::Mat A(data_a, m, n); + dspm::Mat b(data_b, m, 1); + dspm::Mat x1 = dspm::Mat::solve(A, b); + std::cout << "Solve result matrix: rows: " << x1.rows << ", columns: " << x1.cols << std::endl; + std::cout << (x1 * 12).t(); + dspm::Mat x2 = dspm::Mat::roots(A, b); + std::cout << "Roots result matrix: rows: " << x2.rows << ", columns: " << x2.cols << std::endl; + std::cout << (x2 * 12).t(); + dspm::Mat diff_b = x1 - x2; + std::cout << "Difference between solve() abd roots(): " << diff_b.t(); + for (int m = 0 ; m < diff_b.rows; m++) { + for (int n = 0 ; n < diff_b.cols ; n++) { + if (fabs(diff_b(m, n)) > 0.000001) { + TEST_ASSERT_MESSAGE (false, "Calculation is incorrect! Error more then expected!"); + } + } + } +} + +TEST_CASE("Mat class basic operations", "[dspm]") +{ + int M = 4; + int N = 4; + + dspm::Mat A(M, N); + dspm::Mat x(N, 1); + for (int m = 0 ; m < M ; m++) { + for (int n = 0 ; n < N ; n++) { + A(m, n) = N * (m + 1) + (n + 1); + } + x(m, 0) = m + 2; + } + + A(0, 0) = 10; + A(0, 1) = 11; + + + dspm::Mat b = A * x; + dspm::Mat x1_ = dspm::Mat::solve(A, b); + dspm::Mat x2_ = dspm::Mat::roots(A, b); + + ESP_LOGI(TAG, "Matrix A:"); + std::cout << A; + ESP_LOGI(TAG, "Matrix x.t():"); + std::cout << x.t(); + ESP_LOGI(TAG, "Matrix b.t():"); + std::cout << b.t(); + ESP_LOGI(TAG, "Solve result:"); + std::cout << x1_.t(); + ESP_LOGI(TAG, "Roots result:"); + std::cout << x2_.t(); + dspm::Mat check_b = A * x1_; + ESP_LOGI(TAG, "Result b.t():"); + std::cout << check_b.t(); + dspm::Mat diff_b = check_b - b; + ESP_LOGI(TAG, "Difference:"); + std::cout << diff_b.t(); + + for (int m = 0 ; m < diff_b.rows; m++) { + for (int n = 0 ; n < diff_b.cols ; n++) { + float error = fabs(diff_b(m, n)); + if (fabs(diff_b(m, n)) > 0.0001) { + ESP_LOGE(TAG, "Solve calculation error: %f", error); + TEST_ASSERT_MESSAGE (false, "Calculation is incorrect! Error more then expected!"); + } + } + } +} + +TEST_CASE("Mat class operators", "[dspm]") +{ + int M = 4; + int N = 4; + + dspm::Mat test1(M, N); + dspm::Mat test2(M, N); + dspm::Mat result(M, N); + float *check_array = new float[M * N]; + for (int m = 0 ; m < M ; m++) { + for (int n = 0 ; n < N ; n++) { + test1(m, n) = (m * N + n) * 2; + test2(m, n) = m * N + n; + result(m, n) = 0; + } + } + + result = test1 + test2; + for (int m = 0 ; m < M ; m++) { + for (int n = 0 ; n < N ; n++) { + if ((result(m, n) != (test1(m, n) + test2(m, n))) || + (result(m, n) != 3 * (m * N + n)) || + (result.data[m * N + n] != 3 * (m * N + n))) { + TEST_ASSERT_MESSAGE (false, "Error in + operator!"); + } + } + } + result = test1 - test2; + for (int m = 0 ; m < M ; m++) { + for (int n = 0 ; n < N ; n++) { + if ((result(m, n) != (test1(m, n) - test2(m, n))) || + (result(m, n) != (m * N + n)) || + (result.data[m * N + n] != (m * N + n))) { + TEST_ASSERT_MESSAGE (false, "Error in - operator!"); + } + } + } + // Check * operator (result = A*B;) + // result = I*test2 + // result == test2 + test1 = test1.eye(test1.rows); + result = test1 * test2; + dspm::Mat result2 = test1; + result2 *= test2; + + for (int m = 0 ; m < M ; m++) { + for (int n = 0 ; n < N ; n++) { + // if (result(m,n) < 0.000000001) + // { + // result(m,n) = 0; + // } + if ((result(m, n) != test2(m, n)) || + (result(m, n) != (m * N + n)) || + (result.data[m * N + n] != (m * N + n))) { + std::cout << "Error: " << result(m, n) << "!=" << test2(m, n) << " , " + << result(m, n) << "!=" << (m * N + n) << " , " + << result.data[m * N + n] << "!=" << (m * N + n) << std::endl; + TEST_ASSERT_MESSAGE (false, "Error in * operator!"); + } + } + } + if (!(result == result2)) { + std::cout << "result matrix: " << std::endl << result << std::endl; + std::cout << "result2 matrix: " << std::endl << result2 << std::endl; + TEST_ASSERT_MESSAGE (false, "Error in *= or in == operator!"); + } + // Check * and + operator (result = A*const1 + const2;) + + test1 = test2; + float const1 = 2; + float const2 = 10; + result = test1 * const1 + const2; + result = (result - const2) / const1; + for (int m = 0 ; m < M ; m++) { + for (int n = 0 ; n < N ; n++) { + if ((result(m, n) != test2(m, n)) || + (result(m, n) != (m * N + n)) || + (result.data[m * N + n] != (m * N + n)) + ) { + TEST_ASSERT_MESSAGE (false, "Error in + * const operator!"); + } + } + } + // Test block(...): + int count = 0; + for (int m = 0 ; m < M ; m++) { + for (int n = 0 ; n < N ; n++) { + result(m, n) = count++; + } + } + std::cout << "Original matrix: " << std::endl; + std::cout << result << std::endl; + std::cout << "block: " << std::endl; + std::cout << result.block(1, 1, M - 1, N - 1) << std::endl; + // Test normalize() + result = dspm::Mat(2, 2); + for (int m = 0 ; m < result.rows ; m++) { + for (int n = 0 ; n < result.cols ; n++) { + result(m, n) = 1; + } + } + std::cout << "Befor normalize: " << std::endl; + std::cout << result << std::endl; + result.normalize(); + std::cout << "normalize: " << std::endl; + std::cout << result << std::endl; + + for (int m = 0 ; m < result.rows ; m++) { + for (int n = 0 ; n < result.cols ; n++) { + if (std::abs(result(m, n) - 0.5) > dspm::Mat::abs_tol) { + ESP_LOGE(TAG, "Error bigger then expected: %f", std::abs(result(m, n) - 0.5)); + TEST_ASSERT_MESSAGE (false, "Error in normalize() operation! "); + } + } + } + // Test inverse() + float m_data[] = {2, 5, 7, + 6, 3, 4, + 5, -2, -3 + }; + float m_result[] = { 1.0000, -1.0000, 1.0000, + -38.0000, 41.0000, -34.0000, + 27.0000, -29.0000, 24.0000 + }; + result = dspm::Mat(m_data, 3, 3); + result = result.inverse(); + std::cout << "inverse: " << std::endl; + std::cout << result << std::endl; + for (int i = 0 ; i < 3 * 3 ; i++) { + if (std::abs(result.data[i] - m_result[i]) > 1e-8) { + printf("Error at[%i] = %f, expected= %f, calculated = %f \n", i, std::abs(result.data[i] - m_result[i]), m_result[i], result.data[i]); + TEST_ASSERT_MESSAGE (false, "Error in inverse() operation!\n"); + } + } + + result = dspm::Mat(m_data, 3, 3); + result = result.pinv(); + std::cout << "pinv: " << std::endl; + std::cout << result << std::endl; + for (int i = 0 ; i < 3 * 3 ; i++) { + if (std::abs(result.data[i] - m_result[i]) > 1e-2) { + printf("Error at[%i] = %f, expected= %f, calculated = %f \n", i, std::abs(result.data[i] - m_result[i]), m_result[i], result.data[i]); + TEST_ASSERT_MESSAGE (false, "Error in pinv() operation!\n"); + } + } + + delete[] check_array; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mat_sub_f32.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mat_sub_f32.cpp new file mode 100644 index 0000000..2b5a074 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mat_sub_f32.cpp @@ -0,0 +1,917 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspm_mult.h" +#include "esp_attr.h" +#include "dsp_tests.h" +#include "mat.h" +#include "test_mat_common.h" + +static const char *TAG = "[dspm]"; + +#define MAT_ROW 6 // test_matrix rows +#define MAT_COL 6 // test_matrix cols +#define ROI_ROW 4 // sub_matrix rows +#define ROI_COL 4 // sub_matrix cols +#define START_ROI 1 // start row/col dimension to create sub matrix from test matrix + +dspm::Mat::Rect roi_rect(START_ROI, START_ROI, ROI_ROW, ROI_COL); + +// matrix subset +TEST_CASE("Mat class matrix subset", TAG) +{ + float data[25] = {0, 1, 2, 3, 4, + 5, 6, 7, 8, 9, + 0, 1, 2, 3, 4, + 5, 6, 7, 8, 9, + 0, 1, 2, 3, 4 + }; + + // Test matrix dimensions + const int m = 5; + const int n = 5; + + dspm::Mat mat(data, m, n); + std::cout << "Test matrix: rows: " << mat.rows << ", columns: " << mat.cols << std::endl; + std::cout << mat << std::endl; + + // Sub matrix method 1 - sub-matrix dimensions + int start_row = 1; + int start_col = 1; + int roi_rows = 4; + int roi_cols = 3; + + // Create matrix subset as a shallow copy of mat matrix (no matrix data are copied) + dspm::Mat mat_subset1 = mat.getROI(start_row, start_col, roi_rows, roi_cols); + + // Create matrix subset as a deep copy of mat matrix (matrix data are copied) + dspm::Mat mat_subset1_check = mat.Get(start_row, roi_rows, start_col, roi_cols); + + std::cout << "Matrix subset, method 1: rows: " << mat_subset1.rows << ", columns: " << mat_subset1.cols << std::endl; + std::cout << mat_subset1 << std::endl; + + // Compare the deep and the shallow copies + test_assert_equal_mat_mat(mat_subset1_check, mat_subset1, "matrix subset 1"); + + // Sub matrix method 2 - sub-matrix dimensions as a matrix rectangle + int x = 1; + int y = 1; + int width = 4; + int height = 3; + + // Create matrix ROI as a rectangle area + dspm::Mat::Rect roi_rect(x, y, width, height); + dspm::Mat mat_subset2 = mat.getROI(roi_rect); + std::cout << "Matrix subset method 2: rows: " << mat_subset2.rows << ", columns: " << mat_subset2.cols << std::endl; + std::cout << mat_subset2 << std::endl; + dspm::Mat mat_subset2_check = mat.Get(roi_rect); + + test_assert_equal_mat_mat(mat_subset2_check, mat_subset2, "matrix subset 2"); + + // Sub matrix method 2 - sub-matrix dimensions with specified stride + start_row = 0; + start_col = 1; + roi_rows = 3; + roi_cols = 3; + int stride = 10; + + dspm::Mat mat_subset3 = mat.getROI(start_row, start_col, roi_rows, roi_cols, stride); + std::cout << "Matrix subset method 3: rows: " << mat_subset1.rows << ", columns: " << mat_subset3.cols << std::endl; + std::cout << mat_subset3 << std::endl; + dspm::Mat mat_subset3_check = mat.Get(start_row, 5, start_col, roi_cols); + + for (int row = 0; row < mat_subset3_check.rows; row++) { + if (row % 2) { + continue; + }; + for (int col = 0; col < mat_subset3_check.cols; col++) { + TEST_ASSERT_EQUAL_FLOAT(mat_subset3_check(row, col), mat_subset3(row / 2, col)); + } + } +} + +static void test_mat_subset_operator_eq() +{ + dspm::Mat mat(2, 2); + for (int i = 0; i < mat.length; i++) { + mat.data[i] = 1; + } + + dspm::Mat mat1(2, 2); + for (int i = 0; i < mat1.length; i++) { + mat1.data[i] = i + 1; + } + + // matrices, dimensions are equal + // mat(2, 2), mat1(2, 2) + mat = mat1; + TEST_ASSERT_EQUAL_INT(2, mat.rows); + TEST_ASSERT_EQUAL_INT(mat1.rows, mat.rows); + TEST_ASSERT_EQUAL_INT(2, mat.cols); + TEST_ASSERT_EQUAL_INT(mat1.cols, mat.cols); + test_assert_equal_mat_mat(mat1, mat, "=operator, mat = mat (equal dim)"); + + dspm::Mat mat2(3, 3); + for (int i = 0; i < mat2.length; i++) { + mat2.data[i] = (i + 1) * 2; + } + + // matrices, dimensions are not equal + // mat1(2, 2), mat2(3, 3) + mat1 = mat2; + TEST_ASSERT_EQUAL_INT(3, mat1.rows); + TEST_ASSERT_EQUAL_INT(mat2.rows, mat1.rows); + TEST_ASSERT_EQUAL_INT(3, mat1.cols); + TEST_ASSERT_EQUAL_INT(mat2.cols, mat1.cols); + test_assert_equal_mat_mat(mat2, mat1, "=operator, mat = mat (not equal dim)"); + + dspm::Mat mat3(4, 4); + dspm::Mat mat4(4, 4); + dspm::Mat mat4_compare(4, 4); + for (int i = 0; i < mat3.length; i++) { + mat3.data[i] = (i + 1) * 3; + mat4.data[i] = (i + 1) * 4; + mat4_compare.data[i] = (i + 1) * 4; + } + dspm::Mat mat3_sub_3x3 = mat3.getROI(1, 1, 3, 3); + dspm::Mat mat3_sub_2x2 = mat3.getROI(1, 1, 2, 2); + dspm::Mat mat3_mat_2x2 = mat3.Get(1, 2, 1, 2); + + // matrix and sub-matrix, dimensions are equal + // mat1(3, 3), mat3_sub_3x3(3, 3) + mat1 = mat3_sub_3x3; + TEST_ASSERT_FALSE(mat1.sub_matrix); + TEST_ASSERT_EQUAL_INT(3, mat1.rows); + TEST_ASSERT_EQUAL_INT(mat3_sub_3x3.rows, mat1.rows); + TEST_ASSERT_EQUAL_INT(3, mat1.cols); + TEST_ASSERT_EQUAL_INT(mat3_sub_3x3.cols, mat1.cols); + test_assert_equal_mat_mat(mat3_sub_3x3, mat1, "=operator, mat = sub_mat (equal dim)"); + + dspm::Mat mat4_sub_2x2 = mat4.getROI(1, 1, 2, 2); + dspm::Mat mat4_mat_2x2 = mat4.Get(1, 2, 1, 2); + + // matrix and sub-matrix, dimensions are not equal + // mat1(3, 3), mat4_sub_2x2(2, 2) + mat1 = mat4_sub_2x2; + TEST_ASSERT_FALSE(mat1.sub_matrix); + TEST_ASSERT_EQUAL_INT(2, mat1.rows); + TEST_ASSERT_EQUAL_INT(mat4_sub_2x2.rows, mat1.rows); + TEST_ASSERT_EQUAL_INT(2, mat1.cols); + TEST_ASSERT_EQUAL_INT(mat4_sub_2x2.cols, mat1.cols); + test_assert_equal_mat_mat(mat4_sub_2x2, mat1, "=operator, mat = sub_mat (not equal dim)"); + + // sub-matrix and sub-matrix, dimensions are not equal + // mat4_sub_2x2(2, 2), mat3_sub_3x3(3, 3) + ESP_LOGI("=operator test", "following is an expected error message about matrices not having equal dimensions"); + mat4_sub_2x2 = mat3_sub_3x3; + TEST_ASSERT_TRUE(mat4_sub_2x2.sub_matrix); + TEST_ASSERT_EQUAL_INT(2, mat4_sub_2x2.rows); + TEST_ASSERT_EQUAL_INT(2, mat4_sub_2x2.cols); + test_assert_equal_mat_mat(mat4_mat_2x2, mat4_sub_2x2, "=operator, sub_mat = sub_mat (not equal dim)"); + test_assert_check_area_mat_mat(mat4_compare, mat4_sub_2x2, 1, 1, "=operator area, sub_mat = sub_mat (not equal dim)"); + + // sub-matrix and sub-matrix, dimensions are equal + // mat4_sub_2x2(2, 2), mat3_sub_2x2(2, 2) + mat4_sub_2x2 = mat3_sub_2x2; + TEST_ASSERT_TRUE(mat4_sub_2x2.sub_matrix); + TEST_ASSERT_EQUAL_INT(2, mat4_sub_2x2.rows); + TEST_ASSERT_EQUAL_INT(mat3_sub_2x2.rows, mat4_sub_2x2.rows); + TEST_ASSERT_EQUAL_INT(2, mat4_sub_2x2.cols); + TEST_ASSERT_EQUAL_INT(mat3_sub_2x2.cols, mat4_sub_2x2.cols); + test_assert_equal_mat_mat(mat3_mat_2x2, mat4_sub_2x2, "=operator, sub_mat = sub_mat (equal dim)"); + test_assert_check_area_mat_mat(mat4_compare, mat4_sub_2x2, 1, 1, "=operator area, sub_mat = sub_mat (equal dim)"); +} + +// operator== +static void test_mat_subset_operator_eq_eq(void) +{ + dspm::Mat A(MAT_ROW, MAT_COL); + dspm::Mat B(MAT_ROW, MAT_COL); + + for (int i = 0; i < A.length; i++) { + A.data[i] = i; + B.data[i] = i * 2; + } + + dspm::Mat A_sub = A.getROI(roi_rect); + dspm::Mat A_mat = A.Get(roi_rect); + + dspm::Mat B_sub = B.getROI(roi_rect); + + for (int row = 0; row < B_sub.rows; row++) { + for (int col = 0; col < B_sub.cols; col++) { + B_sub(row, col) = B_sub(row, col) / 2; + } + } + dspm::Mat B_mat = B.Get(roi_rect); + dspm::Mat B_mat_neq_cont = B_mat * 3; + dspm::Mat B_mat_neq_dim(3, 3); + + TEST_ASSERT_TRUE(A_mat == B_mat); + TEST_ASSERT_TRUE(A_sub == B_sub); + TEST_ASSERT_TRUE(A_sub == B_mat); + TEST_ASSERT_TRUE(A_mat == B_sub); + ESP_LOGI("==operator test", "following is an expected error message about matrices not having equal content"); + TEST_ASSERT_FALSE(A_sub == B_mat_neq_cont); + TEST_ASSERT_FALSE(A_sub == B_mat_neq_dim); +} + +// operator/ +static void test_mat_subset_operator_mat_div_mat(void) +{ + dspm::Mat mat(MAT_ROW, MAT_COL); + for (int i = 0; i < mat.length; i++) { + mat.data[i] = i; + } + + dspm::Mat C = mat; + dspm::Mat C_compare_area = mat; + + dspm::Mat A_sub = mat.getROI(roi_rect); + dspm::Mat A_mat = mat.Get(roi_rect); + + dspm::Mat B_sub = mat.getROI(roi_rect); + dspm::Mat B_mat = mat.Get(roi_rect); + + dspm::Mat C_sub = C.getROI(roi_rect); + dspm::Mat C_mat = C.Get(roi_rect); + dspm::Mat C_compare(ROI_ROW, ROI_COL); + + for (int i = 0; i < C_compare.length; i++) { + C_compare.data[i] = A_mat.data[i] / B_mat.data[i]; + } + + C_mat = A_mat / B_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "/ operator, mat = mat / mat"); + + C_mat = A_sub / B_sub; + test_assert_equal_mat_mat(C_compare, C_mat, "/ operator, mat = sub_mat / sub_mat"); + + C_mat = A_sub / B_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "/ operator, mat = sub_mat / mat"); + + C_mat = A_mat / B_sub; + test_assert_equal_mat_mat(C_compare, C_mat, "/ operator, mat = mat / sub_mat"); + + C_sub = A_sub / B_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "/ operator, sub_mat = sub_mat / sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "/ operator, area check, sub_mat = sub_mat / sub_mat"); + + C_sub = A_mat / B_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "/ operator, sub_mat = mat / sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "/ operator, area check, sub_mat = sub_mat / sub_mat"); + + C = mat; + C_mat = C.Get(roi_rect); // C_mat must be refreshed + C_mat /= A_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "/ operator, mat /= mat"); + + C = mat; + C_mat = C.Get(roi_rect); // C_mat must be refreshed + C_mat /= A_sub; + test_assert_equal_mat_mat(C_compare, C_mat, "/ operator, mat /= sub_mat"); + + C = mat; // C must be refreshed, to refresh the C_sub + C_sub /= A_mat; + test_assert_equal_mat_mat(C_compare, C_sub, "/ operator, sub_mat /= mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "/ operator, area check, sub_mat /= mat"); + + C = mat; // C must be refreshed, to refresh the C_sub + C_sub /= A_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "/ operator, sub_mat /= sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "/ operator, area check, sub_mat /= sub_mat"); +} + +// operator^ +static void test_mat_subset_operator_xor(void) +{ + dspm::Mat mat(5, 5); + dspm::Mat mat_area_check(5, 5); + for (int i = 0; i < mat.length; i++) { + mat.data[i] = i; + mat_area_check.data[i] = i; + } + + dspm::Mat::Rect roi_rect(1, 1, 3, 3); + dspm::Mat mat_mat = mat.Get(roi_rect); + dspm::Mat mat_sub = mat.getROI(roi_rect); + + // XOR 0 + dspm::Mat res_mat = mat_mat ^ 0; + dspm::Mat res_sub = mat_sub ^ 0; + test_assert_equal_mat_mat(res_mat, res_sub, "sub-matrix operator^ 0"); + test_assert_check_area_mat_mat(mat_area_check, mat_sub, 1, 1, "sub-matrix area check operator^ 0"); + + // XOR 1 + res_mat = mat_mat ^ 1; + res_sub = mat_sub ^ 1; + test_assert_equal_mat_mat(res_mat, res_sub, "sub-matrix operator^ 1"); + test_assert_check_area_mat_mat(mat_area_check, mat_sub, 1, 1, "sub-matrix area check operator^ 1"); + + // XOR even + res_mat = mat_mat ^ 2; + res_sub = mat_sub ^ 2; + test_assert_equal_mat_mat(res_mat, res_sub, "sub-matrix operator^ 2"); + test_assert_check_area_mat_mat(mat_area_check, mat_sub, 1, 1, "sub-matrix area check operator^ 2"); + + // XOR odd + res_mat = mat_mat ^ 3; + res_sub = mat_sub ^ 3; + test_assert_equal_mat_mat(res_mat, res_sub, "sub-matrix operator^ 3"); + test_assert_check_area_mat_mat(mat_area_check, mat_sub, 1, 1, "sub-matrix area check operator^ 3"); +} + +// operator/ +static void test_mat_subset_operator_mat_div_const(void) +{ + const float div_const = 2; + + dspm::Mat mat(MAT_ROW, MAT_COL); + for (int i = 0; i < mat.length; i++) { + mat.data[i] = i; + } + + dspm::Mat C_compare_area = mat; + dspm::Mat C = mat; + + dspm::Mat A_sub = mat.getROI(roi_rect); + dspm::Mat A_mat = mat.Get(roi_rect); + + dspm::Mat C_sub = C.getROI(roi_rect); + dspm::Mat C_mat = C.Get(roi_rect); + dspm::Mat C_compare = mat.Get(roi_rect); + + for (int i = 0; i < C_compare.length; i++) { + C_compare.data[i] /= div_const; + } + + C_mat = A_mat / div_const; + test_assert_equal_mat_mat(C_compare, C_mat, "/ operator, mat = mat / const"); + + C_mat = A_sub / div_const; + test_assert_equal_mat_mat(C_compare, C_mat, "/ operator, mat = sub_mat / const"); + C_mat = C.Get(roi_rect); + + C_mat /= div_const; + test_assert_equal_mat_mat(C_compare, C_mat, "/ operator, mat /= const"); + + C_sub = A_mat / div_const; + test_assert_equal_mat_mat(C_compare, C_sub, "/ operator, sub_mat = mat / const"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "/ operator, area check, sub_mat = mat / const"); + + C = mat; + C_sub /= div_const; + test_assert_equal_mat_mat(C_compare, C_sub, "/ operator, sub_mat /= const"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "/ operator, area check, sub_mat /= const"); +} + +// operator- +static void test_mat_subset_operator_mat_sub_const(void) +{ + const float sub_const = 2; + + dspm::Mat mat(MAT_ROW, MAT_COL); + for (int i = 0; i < mat.length; i++) { + mat.data[i] = i; + } + + dspm::Mat C_compare_area = mat; + dspm::Mat C = mat; + + dspm::Mat A_sub = mat.getROI(roi_rect); + dspm::Mat A_mat = mat.Get(roi_rect); + + dspm::Mat C_sub = C.getROI(roi_rect); + dspm::Mat C_mat = C.Get(roi_rect); + dspm::Mat C_compare = mat.Get(roi_rect); + + for (int i = 0; i < C_compare.length; i++) { + C_compare.data[i] -= sub_const; + } + + C_mat = A_mat - sub_const; + test_assert_equal_mat_mat(C_compare, C_mat, "- operator, mat = mat - const"); + + C_mat = A_sub - sub_const; + test_assert_equal_mat_mat(C_compare, C_mat, "- operator, mat = sub_mat - const"); + C_mat = C.Get(roi_rect); + + C_mat -= sub_const; + test_assert_equal_mat_mat(C_compare, C_mat, "- operator, mat -= const"); + + C_sub = A_mat - sub_const; + test_assert_equal_mat_mat(C_compare, C_sub, "- operator, sub_mat = mat - const"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "- operator, area check, sub_mat = mat - const"); + + C = mat; + C_sub -= sub_const; + test_assert_equal_mat_mat(C_compare, C_sub, "- operator, sub_mat -= const"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "- operator, area check, sub_mat -= const"); +} + +// operator- +static void test_mat_subset_operator_mat_sub_mat(void) +{ + dspm::Mat mat(MAT_ROW, MAT_COL); + for (int i = 0; i < mat.length; i++) { + mat.data[i] = i; + } + + dspm::Mat C = mat; + dspm::Mat C_compare_area = mat; + + dspm::Mat A_sub = mat.getROI(roi_rect); + dspm::Mat A_mat = mat.Get(roi_rect); + + dspm::Mat B_sub = mat.getROI(roi_rect); + dspm::Mat B_mat = mat.Get(roi_rect); + + dspm::Mat C_sub = C.getROI(roi_rect); + dspm::Mat C_mat = C.Get(roi_rect); + dspm::Mat C_compare(ROI_ROW, ROI_COL); + + for (int i = 0; i < C_compare.length; i++) { + C_compare.data[i] = A_mat.data[i] - B_mat.data[i]; + } + + C_mat = A_mat - B_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "- operator, mat = mat - mat"); + + C_mat = A_sub - B_sub; + test_assert_equal_mat_mat(C_compare, C_mat, "- operator, mat = sub_mat - sub_mat"); + + C_mat = A_sub - B_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "- operator, mat = sub_mat - mat"); + + C_mat = A_mat - B_sub; + test_assert_equal_mat_mat(C_compare, C_mat, "- operator, mat = mat - sub_mat"); + + C_sub = A_sub - B_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "- operator, sub_mat = sub_mat - sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "- operator, area check, sub_mat = sub_mat - sub_mat"); + + C_sub = A_mat - B_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "- operator, sub_mat = mat - sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "- operator, area check, sub_mat = sub_mat - sub_mat"); + + C = mat; + C_mat = C.Get(roi_rect); // C_mat must be refreshed + C_mat -= A_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "- operator, mat -= mat"); + + C = mat; + C_mat = C.Get(roi_rect); // C_mat must be refreshed + C_mat -= A_sub; + test_assert_equal_mat_mat(C_compare, C_mat, "- operator, mat -= sub_mat"); + + C = mat; // C must be refreshed, to refresh the C_sub + C_sub -= A_mat; + test_assert_equal_mat_mat(C_compare, C_sub, "- operator, sub_mat -= mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "- operator, area check, sub_mat -= mat"); + + C = mat; // C must be refreshed, to refresh the C_sub + C_sub -= A_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "- operator, sub_mat -= sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "- operator, area check, sub_mat -= sub_mat"); +} + +// operator+ +static void test_mat_subset_operator_mat_add_mat(void) +{ + dspm::Mat mat(MAT_ROW, MAT_COL); + for (int i = 0; i < mat.length; i++) { + mat.data[i] = i; + } + + dspm::Mat C = mat; + dspm::Mat C_compare_area = mat; + + dspm::Mat A_sub = mat.getROI(roi_rect); + dspm::Mat A_mat = mat.Get(roi_rect); + + dspm::Mat B_sub = mat.getROI(roi_rect); + dspm::Mat B_mat = mat.Get(roi_rect); + + dspm::Mat C_sub = C.getROI(roi_rect); + dspm::Mat C_mat = C.Get(roi_rect); + dspm::Mat C_compare(ROI_ROW, ROI_COL); + + for (int i = 0; i < C_compare.length; i++) { + C_compare.data[i] = A_mat.data[i] + B_mat.data[i]; + } + + C_mat = A_mat + B_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "+ operator, mat = mat + mat"); + + C_mat = A_sub + B_sub; + test_assert_equal_mat_mat(C_compare, C_mat, "+ operator, mat = sub_mat + sub_mat"); + + C_mat = A_sub + B_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "+ operator, mat = sub_mat + mat"); + + C_sub = A_sub + B_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "+ operator, sub_mat = sub_mat + sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "+ operator, area check, sub_mat = sub_mat + sub_mat"); + + C_sub = A_mat + B_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "+ operator, sub_mat = mat + sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "+ operator, area check, sub_mat = sub_mat + sub_mat"); + + C = mat; + C_mat = C.Get(roi_rect); // C_mat must be refreshed + C_mat += A_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "+ operator, mat += mat"); + + C = mat; + C_mat = C.Get(roi_rect); // C_mat must be refreshed + C_mat += A_sub; + test_assert_equal_mat_mat(C_compare, C_mat, "+ operator, mat += sub_mat"); + + C = mat; // C must be refreshed, to refresh the C_sub + C_sub += A_mat; + test_assert_equal_mat_mat(C_compare, C_sub, "+ operator, sub_mat += mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "+ operator, area check, sub_mat += mat"); + + C = mat; // C must be refreshed, to refresh the C_sub + C_sub += A_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "+ operator, sub_mat += sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "+ operator, area check, sub_mat += sub_mat"); +} + +// operator+ +static void test_mat_subset_operator_mat_add_const(void) +{ + const float add_const = 2; + + dspm::Mat mat(MAT_ROW, MAT_COL); + for (int i = 0; i < mat.length; i++) { + mat.data[i] = i; + } + + dspm::Mat C_compare_area = mat; + dspm::Mat C = mat; + + dspm::Mat A_sub = mat.getROI(roi_rect); + dspm::Mat A_mat = mat.Get(roi_rect); + + dspm::Mat C_sub = C.getROI(roi_rect); + dspm::Mat C_mat = C.Get(roi_rect); + dspm::Mat C_compare = mat.Get(roi_rect); + + for (int i = 0; i < C_compare.length; i++) { + C_compare.data[i] += add_const; + } + + C_mat = A_sub + add_const; + test_assert_equal_mat_mat(C_compare, C_mat, "+ operator, mat = sub_mat + const"); + C_mat = C.Get(roi_rect); + + C_mat += add_const; + test_assert_equal_mat_mat(C_compare, C_mat, "+ operator, mat += const"); + + C_sub = A_mat + add_const; + test_assert_equal_mat_mat(C_compare, C_sub, "+ operator, sub_mat = mat + const"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "+ operator, area check, sub_mat = mat + const"); + + C = mat; + C_sub += add_const; + test_assert_equal_mat_mat(C_compare, C_sub, "+ operator, sub_mat += const"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "+ operator, area check, sub_mat += const"); +} + +// operator* +static void test_mat_subset_operator_mat_mul_const(void) +{ + const float mul_const = 2; + + dspm::Mat mat(MAT_ROW, MAT_COL); + for (int i = 0; i < mat.length; i++) { + mat.data[i] = i; + } + + dspm::Mat C_compare_area = mat; + dspm::Mat C = mat; + + dspm::Mat A_sub = mat.getROI(roi_rect); + dspm::Mat A_mat = mat.Get(roi_rect); + + dspm::Mat C_sub = C.getROI(roi_rect); + dspm::Mat C_mat = C.Get(roi_rect); + dspm::Mat C_compare = mat.Get(roi_rect); + + for (int i = 0; i < C_compare.length; i++) { + C_compare.data[i] *= mul_const; + } + + C_mat = A_mat * mul_const; + test_assert_equal_mat_mat(C_compare, C_mat, "* operator, mat = mat * const"); + + C_mat = A_sub * mul_const; + test_assert_equal_mat_mat(C_compare, C_mat, "* operator, mat = sub_mat * const"); + C_mat = C.Get(roi_rect); + + C_mat *= mul_const; + test_assert_equal_mat_mat(C_compare, C_mat, "* operator, mat *= const"); + + C_sub = A_mat * mul_const; + test_assert_equal_mat_mat(C_compare, C_sub, "* operator, sub_mat = mat * const"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "* operator, area check, sub_mat = mat * const"); + + C = mat; + C_sub *= mul_const; + test_assert_equal_mat_mat(C_compare, C_sub, "* operator, sub_mat *= const"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "* operator, area check, sub_mat *= const"); +} + +// operator* +static void test_mat_subset_operator_mat_mul_mat_2(void) +{ + dspm::Mat mat(MAT_ROW, MAT_COL); + for (int i = 0; i < mat.length; i++) { + mat.data[i] = i; + } + + dspm::Mat C_compare_area = mat; + dspm::Mat C = mat; + + const int m = 4, n = 4, k = 4; + dspm::Mat::Rect roi_rect_mul(1, 1, k, m); + + dspm::Mat A_sub = mat.getROI(roi_rect_mul); + dspm::Mat A_mat = mat.Get(roi_rect_mul); + + dspm::Mat C_sub = C.getROI(roi_rect_mul); + dspm::Mat C_mat = C.Get(roi_rect_mul); + dspm::Mat C_compare = dspm::Mat::ones(m, k); + + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + C_compare.data[(i * k) + j] = 0; + for (int s = 0 ; s < n ; s++) { + C_compare.data[(i * k) + j] += A_mat.data[(i * n) + s] * C_mat.data[(s * k) + j]; + } + } + } + + C_mat *= A_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "*= operator, mat *= mat"); + C_mat = C.Get(roi_rect_mul); + + C_mat *= A_sub; + test_assert_equal_mat_mat(C_compare, C_mat, "*= operator, mat *= sub_mat"); + + C_sub *= A_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "*= operator, sub_mat *= sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "*= operator, area check, sub_mat *= sub_mat"); + + C = mat; + C_sub *= A_mat; + test_assert_equal_mat_mat(C_compare, C_sub, "*= operator, sub_mat *= sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "*= operator, area check, sub_mat *= sub_mat"); +} + +// operator* +static void test_mat_subset_operator_mat_mul_mat_1(void) +{ + dspm::Mat mat(MAT_ROW, MAT_COL); + for (int i = 0; i < mat.length; i++) { + mat.data[i] = i; + } + + dspm::Mat C = dspm::Mat::ones(6); + dspm::Mat C_compare_area = dspm::Mat::ones(6); + + // matrix dimensions + const int m = 4, n = 3, k = 4; + dspm::Mat::Rect A_roi_rect(2, 1, n, m); + dspm::Mat::Rect B_roi_rect(1, 2, k, n); + dspm::Mat::Rect C_roi_rect(1, 1, k, m); + + dspm::Mat A_sub = mat.getROI(A_roi_rect); + dspm::Mat A_mat = mat.Get(A_roi_rect); + + dspm::Mat B_sub = mat.getROI(B_roi_rect); + dspm::Mat B_mat = mat.Get(B_roi_rect); + + dspm::Mat C_sub = C.getROI(C_roi_rect); + dspm::Mat C_mat = C.Get(C_roi_rect); + dspm::Mat C_compare = dspm::Mat::ones(m, k); + + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + C_compare.data[(i * k) + j] = 0; + for (int s = 0 ; s < n ; s++) { + C_compare.data[(i * k) + j] += A_mat.data[(i * n) + s] * B_mat.data[(s * k) + j]; + } + } + } + + C_mat = A_mat * B_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "* operator, mat = mat * mat"); + + C_mat = A_sub * B_sub; + test_assert_equal_mat_mat(C_compare, C_mat, "* operator, mat = sub_mat * sub_mat"); + + C_mat = A_sub * B_mat; + test_assert_equal_mat_mat(C_compare, C_mat, "* operator, mat = sub_mat * mat"); + + C_sub = A_sub * B_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "* operator, sub_mat = sub_mat * sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "* operator, area check, sub_mat = sub_mat * sub_mat"); + + C_sub = A_mat * B_sub; + test_assert_equal_mat_mat(C_compare, C_sub, "*operator, sub_mat = mat * sub_mat"); + test_assert_check_area_mat_mat(C_compare_area, C_sub, START_ROI, START_ROI, "* operator, area check, sub_mat = sub_mat * sub_mat"); +} + +TEST_CASE("Matrix subset operators", TAG) +{ + test_mat_subset_operator_eq(); // mat = mat + test_mat_subset_operator_eq_eq(); // mat == mat + test_mat_subset_operator_xor(); // mat ^ const + test_mat_subset_operator_mat_mul_mat_1(); // mat * mat + test_mat_subset_operator_mat_mul_mat_2(); // mat * mat + test_mat_subset_operator_mat_mul_const(); // mat * const + test_mat_subset_operator_mat_add_mat(); // mat + mat + test_mat_subset_operator_mat_add_const(); // mat + const + test_mat_subset_operator_mat_sub_mat(); // mat - mat + test_mat_subset_operator_mat_sub_const(); // mat - const + test_mat_subset_operator_mat_div_mat(); // mat / mat + test_mat_subset_operator_mat_div_const(); // mat / const +} + +static void test_mat_subset_solve(void) +{ + int m = 3; + int n = 3; + float data_a[9] = {3, 2, 1, 2, 3, 1, 2, 1, 3}; + float data_b[9] = {5, -1, 4}; + dspm::Mat A(data_a, m, n); + dspm::Mat b(data_b, m, 1); + + dspm::Mat A_origin = dspm::Mat::ones(5); + dspm::Mat b_origin = dspm::Mat::ones(5, 3); + dspm::Mat A_origin_area_check = dspm::Mat::ones(5); + dspm::Mat b_origin_area_check = dspm::Mat::ones(5, 3); + + A_origin.Copy(A, 1, 1); + b_origin.Copy(b, 1, 1); + + // create sub-matrices + dspm::Mat A_sub = A_origin.getROI(1, 1, m, n); + dspm::Mat b_sub = b_origin.getROI(1, 1, m, 1); + + dspm::Mat x1 = dspm::Mat::solve(A_sub, b_sub); + test_assert_check_area_mat_mat(A_origin_area_check, A_sub, 1, 1, "check solve, area A"); + test_assert_check_area_mat_mat(b_origin_area_check, b_sub, 1, 1, "check solve, area b"); + + std::cout << "Solve result matrix: rows: " << x1.rows << ", columns: " << x1.cols << std::endl; + std::cout << (x1 * 12).t(); + dspm::Mat x2 = dspm::Mat::roots(A_sub, b_sub); + test_assert_check_area_mat_mat(A_origin_area_check, A_sub, 1, 1, "check solve, area A"); + test_assert_check_area_mat_mat(b_origin_area_check, b_sub, 1, 1, "check solve, area b"); + + std::cout << "Roots result matrix: rows: " << x2.rows << ", columns: " << x2.cols << std::endl; + std::cout << (x2 * 12).t(); + dspm::Mat diff_b = x1 - x2; + std::cout << "Difference between solve() abd roots(): " << diff_b.t(); + for (int row = 0; row < diff_b.rows; row++) { + for (int col = 0; col < diff_b.cols; col++) { + if (fabs(diff_b(row, col)) > 0.000001) { + TEST_ASSERT_MESSAGE (false, "Calculation is incorrect! Error more then expected!"); + } + } + } +} + +static void test_mat_subset_inverse(void) +{ + // Test inverse() + dspm::Mat result; + float m_data[] = {2, 5, 7, + 6, 3, 4, + 5, -2, -3 + }; + float m_result[] = { 1.0000, -1.0000, 1.0000, + -38.0000, 41.0000, -34.0000, + 27.0000, -29.0000, 24.0000 + }; + + result = dspm::Mat(m_data, 3, 3); + + dspm::Mat result_origin = dspm::Mat::ones(5); + dspm::Mat result_origin_area_check = dspm::Mat::ones(5); + + result_origin.Copy(result, 1, 1); + dspm::Mat result_sub = result_origin.getROI(1, 1, 3, 3); + + result = result_sub.inverse(); + test_assert_check_area_mat_mat(result_origin_area_check, result_sub, 1, 1, "area check inverse"); + + std::cout << "inverse: " << std::endl; + std::cout << result << std::endl; + for (int i = 0; i < 3 * 3; i++) { + if (std::abs(result.data[i] - m_result[i]) > 1e-8) { + printf("Error at[%i] = %f, expected= %f, calculated = %f \n", i, std::abs(result.data[i] - m_result[i]), m_result[i], result.data[i]); + TEST_ASSERT_MESSAGE (false, "Error in inverse() operation!\n"); + } + } + result = dspm::Mat(m_data, 3, 3); + result_origin = dspm::Mat::ones(5); + result_origin.Copy(result, 1, 1); + result_sub = result_origin.getROI(1, 1, 3, 3); + + result = result_sub.pinv(); + test_assert_check_area_mat_mat(result_origin_area_check, result_sub, 1, 1, "area check pinv"); + + std::cout << "pinv: " << std::endl; + std::cout << result << std::endl; + for (int i = 0; i < 3 * 3; i++) { + if (std::abs(result.data[i] - m_result[i]) > 1e-2) { + printf("Error at[%i] = %f, expected= %f, calculated = %f \n", i, std::abs(result.data[i] - m_result[i]), m_result[i], result.data[i]); + TEST_ASSERT_MESSAGE (false, "Error in pinv() operation!\n"); + } + } +} + +static void test_mat_subset_normalize(void) +{ + dspm::Mat result_origin = dspm::Mat::ones(4); + dspm::Mat result_area_check = dspm::Mat::ones(4); + dspm::Mat result_sub = result_origin.getROI(1, 1, 2, 2); + + std::cout << "Befor normalize: " << std::endl; + std::cout << result_sub << std::endl; + result_sub.normalize(); + test_assert_check_area_mat_mat(result_area_check, result_sub, 1, 1, "normalize area check"); + std::cout << "normalize: " << std::endl; + std::cout << result_sub << std::endl; + + for (int row = 0; row < result_sub.rows; row++) { + for (int col = 0 ; col < result_sub.cols ; col++) { + if (std::abs(result_sub(row, col) - 0.5) > dspm::Mat::abs_tol) { + ESP_LOGE(TAG, "Error bigger then expected: %f", std::abs(result_sub(row, col) - 0.5)); + TEST_ASSERT_MESSAGE (false, "Error in normalize() operation! "); + } + } + } +} + +static void test_mat_subset_swap_trans_dot_clear(void) +{ + dspm::Mat mat(5, 5); + dspm::Mat mat_area_check(5, 5); + for (int row = 0; row < mat.rows; row++) { + for (int col = 0; col < mat.cols; col++) { + mat(row, col) = row + 1; + mat_area_check(row, col) = row + 1; + } + } + + dspm::Mat::Rect roi_rect(1, 1, 3, 3); + dspm::Mat mat_sub = mat.getROI(roi_rect); + dspm::Mat mat_mat = mat.Get(roi_rect); + + // check swap rows + mat_sub.swapRows(0, 1); + mat_mat.swapRows(0, 1); + test_assert_equal_mat_mat(mat_sub, mat_mat, "sub-matrix swapRows"); + test_assert_check_area_mat_mat(mat_area_check, mat_sub, 1, 1, "area check sub-matrix swapRows"); + + // check transpose + dspm::Mat mat_sub_res = mat_sub.t(); + dspm::Mat mat_mat_res = mat_mat.t(); + test_assert_equal_mat_mat(mat_mat_res, mat_sub_res, "sub-matrix transpose"); + test_assert_check_area_mat_mat(mat_area_check, mat_sub, 1, 1, "area check sub-matrix transpose"); + + // check dot product + float dot_mat = dspm::Mat::dotProduct(mat_mat, mat_mat); + float dot_sub = dspm::Mat::dotProduct(mat_sub, mat_sub); + TEST_ASSERT_EQUAL_FLOAT(dot_mat, dot_sub); + + // check clear + mat_sub.clear(); + mat_mat.clear(); + test_assert_equal_mat_const(mat_sub, 0, "sub-matrix clear"); + test_assert_equal_mat_mat(mat_mat, mat_sub, "sub-matrix clear"); + test_assert_check_area_mat_mat(mat_area_check, mat_sub, 1, 1, "area check sub-matrix clear"); +} + + +TEST_CASE("Matrix subset methods check", TAG) +{ + test_mat_subset_solve(); + test_mat_subset_inverse(); + test_mat_subset_normalize(); + test_mat_subset_swap_trans_dot_clear(); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_3x3xx_f32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_3x3xx_f32_ae32.c new file mode 100644 index 0000000..6046155 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_3x3xx_f32_ae32.c @@ -0,0 +1,187 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspm_mult.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +static const char *TAG = "dspm_mult_3x3x1_f32_ae32"; + +// Test dsps_dotprod_s16_ansi function +TEST_CASE("dspm_mult_3x3x1_f32_ae32 functionality", "[dspm]") +{ + int m = 3; + int n = 3; + int k = 1; + + + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + float C_compare[m][k]; + float *Cc_ptr = (float *)C_compare; + + for (int i = 0; i < m; i++) { + for (int j = 0; j < n; j++) { + A[i][j] = i; + } + } + for (int i = 0; i < n; i++) { + for (int j = 0; j < k; j++) { + B[i][j] = i; + } + } + + dspm_mult_3x3x1_f32_ae32(A_ptr, B_ptr, C_ptr); + dspm_mult_f32_ansi(A_ptr, B_ptr, Cc_ptr, m, n, k); + + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + ESP_LOGD(TAG, "[%i][%i] calc=%f, expected =%f", i, j, C[i][j], C_compare[i][j]); + } + } + //Compare and check results + for (int i = 0; i < m * k; i++) { + if (Cc_ptr[i] != C_ptr[i]) { + TEST_ASSERT_EQUAL(C_ptr[i], Cc_ptr[i]); + } + } +} + +TEST_CASE("dspm_mult_3x3x3_f32_ae32 functionality", "[dspm]") +{ + int m = 3; + int n = 3; + int k = 3; + + + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + float C_compare[m][k]; + float *Cc_ptr = (float *)C_compare; + + for (int i = 0; i < m; i++) { + for (int j = 0; j < n; j++) { + A[i][j] = i; + C[i][j] = 0; + } + } + for (int i = 0; i < n; i++) { + for (int j = 0; j < k; j++) { + B[i][j] = i; + } + } + + dspm_mult_3x3x3_f32_ae32(A_ptr, B_ptr, C_ptr); + dspm_mult_f32_ansi(A_ptr, B_ptr, Cc_ptr, m, n, k); + + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + ESP_LOGD(TAG, "[%i][%i] calc=%f, expected =%f", i, j, C[i][j], C_compare[i][j]); + } + } + // Compare and check results + for (int i = 0 ; i < m * k ; i++) { + if (Cc_ptr[i] != C_ptr[i]) { + TEST_ASSERT_EQUAL( C_ptr[i], Cc_ptr[i]); + } + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_mult_3x3x1_f32_ae32 benchmark", "[dspm]") +{ + int m = 3; + int n = 3; + int k = 1; + + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + + + portENTER_CRITICAL(&testnlock); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_mult_3x3x1_f32_ae32(A_ptr, B_ptr, C_ptr); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + ESP_LOGI("dspm_mult_3x3x1_f32_ae32", "dspm_mult_3x3x1_f32_ae32 - %f per multiplication (ae32 - 134, ansi - 285)", cycles); + float min_exec = 60; + float max_exec = 90; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} + +TEST_CASE("dspm_mult_3x3x3_f32_ae32 benchmark", "[dspm]") +{ + int m = 4; + int n = 4; + int k = 4; + + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + + + portENTER_CRITICAL(&testnlock); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_mult_3x3x3_f32_ae32(A_ptr, B_ptr, C_ptr); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + ESP_LOGI("dspm_mult_3x3x3_f32_ae32", "dspm_mult_3x3x3_f32_ae32 - %f per multiplication", cycles); + float min_exec = 100; + float max_exec = 250; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_4x4xx_f32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_4x4xx_f32_ae32.c new file mode 100644 index 0000000..d535366 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_4x4xx_f32_ae32.c @@ -0,0 +1,186 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspm_mult.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +static const char *TAG = "dspm_mult_4x4x1_f32_ae32"; + +TEST_CASE("dspm_mult_4x4x1_f32_ae32 functionality", "[dspm]") +{ + int m = 4; + int n = 4; + int k = 1; + + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + float C_compare[m][k]; + float *Cc_ptr = (float *)C_compare; + + for (int i = 0; i < m; i++) { + for (int j = 0; j < n; j++) { + A[i][j] = i; + } + } + for (int i = 0; i < n; i++) { + for (int j = 0; j < k; j++) { + B[i][j] = i; + } + } + + dspm_mult_4x4x1_f32(A_ptr, B_ptr, C_ptr); + dspm_mult_f32_ansi(A_ptr, B_ptr, Cc_ptr, m, n, k); + + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + ESP_LOGD(TAG, "[%i][%i] calc=%f, expected =%f", i, j, C[i][j], C_compare[i][j]); + } + } + //Compare and check results + for (int i = 0; i < m * k; i++) { + if (Cc_ptr[i] != C_ptr[i]) { + TEST_ASSERT_EQUAL(C_ptr[i], Cc_ptr[i]); + } + } +} + +TEST_CASE("dspm_mult_4x4x4_f32_ae32 functionality", "[dspm]") +{ + int m = 4; + int n = 4; + int k = 4; + + + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + float C_compare[m][k]; + float *Cc_ptr = (float *)C_compare; + + for (int i = 0; i < m; i++) { + for (int j = 0; j < n; j++) { + A[i][j] = i; + C[i][j] = 0; + } + } + for (int i = 0; i < n; i++) { + for (int j = 0; j < k; j++) { + B[i][j] = i; + } + } + + dspm_mult_4x4x4_f32(A_ptr, B_ptr, C_ptr); + dspm_mult_f32_ansi(A_ptr, B_ptr, Cc_ptr, m, n, k); + + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + ESP_LOGD(TAG, "[%i][%i] calc=%f, expected =%f", i, j, C[i][j], C_compare[i][j]); + } + } + // Compare and check results + for (int i = 0 ; i < m * k ; i++) { + if (Cc_ptr[i] != C_ptr[i]) { + TEST_ASSERT_EQUAL( C_ptr[i], Cc_ptr[i]); + } + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_mult_4x4x1_f32_ae32 benchmark", "[dspm]") +{ + int m = 4; + int n = 4; + int k = 1; + + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + + + portENTER_CRITICAL(&testnlock); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_mult_4x4x1_f32(A_ptr, B_ptr, C_ptr); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + ESP_LOGI("dspm_mult_4x4x1_f32_ae32", "dspm_mult_4x4x1_f32_ae32 - %f per multiplication", cycles); + float min_exec = 60; + float max_exec = 110; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} + +TEST_CASE("dspm_mult_4x4x4_f32_ae32 benchmark", "[dspm]") +{ + int m = 4; + int n = 4; + int k = 4; + + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + + ESP_LOGI(TAG, "A: %8.8"PRIx32", B: %8.8"PRIx32", C=%8.8"PRIx32"", (uint32_t)A_ptr, (uint32_t)B_ptr, (uint32_t)C_ptr); + + portENTER_CRITICAL(&testnlock); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_mult_4x4x4_f32(A_ptr, B_ptr, C_ptr); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + ESP_LOGI("dspm_mult_4x4x4_f32_ae32", "dspm_mult_4x4x4_f32_ae32 - %f per multiplication", cycles); + float min_exec = 50; + float max_exec = 450; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_ex_f32_aexx.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_ex_f32_aexx.cpp new file mode 100644 index 0000000..a70b7f5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_ex_f32_aexx.cpp @@ -0,0 +1,276 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspm_mult.h" +#include "esp_attr.h" +#include "dsp_tests.h" +#include "test_mat_common.h" + + +// create ROI rectangles +dspm::Mat::Rect A_roi_rect; +dspm::Mat::Rect B_roi_rect; +dspm::Mat::Rect C_roi_rect; + +static void dspm_mult_ex_f32_aexx_functionality_in_cycle(m_test_data_t *test_d) +{ + char message[120]; + sprintf(message, "var = %d, A_s_row = %d, A_s_col = %d, B_s_row = %d B_s_col = %d, C_s_row = %d, C_s_col = %d, m = %d, n = %d, k = %d\n", test_d->var, + test_d->A_start_row, test_d->A_start_col, test_d->B_start_row, test_d->B_start_col, + test_d->C_start_row, test_d->C_start_col, test_d->m, test_d->n, test_d->k); + + // aligned data for A B C matrices + float *A_data = (float *)memalign(16, ((test_d->m + (2 * test_d->A_start_row)) * (test_d->n + (2 * test_d->A_start_col))) * sizeof(float)); + float *B_data = (float *)memalign(16, ((test_d->n + (2 * test_d->B_start_row)) * (test_d->k + (2 * test_d->B_start_col))) * sizeof(float)); + float *C_data = (float *)memalign(16, ((test_d->m + (2 * test_d->C_start_row)) * (test_d->k + (2 * test_d->C_start_col))) * sizeof(float)); + + // create A B C matrices with m n k dimensions + padding + // padding is from both sides of the targeted sub-matrix + // 1 1 1 1 + // 1 x x 1 + // 1 x x 1 + // 1 1 1 1 + dspm::Mat A(A_data, test_d->m + (2 * test_d->A_start_row), test_d->n + (2 * test_d->A_start_col)); + dspm::Mat B(B_data, test_d->n + (2 * test_d->B_start_row), test_d->k + (2 * test_d->B_start_col)); + dspm::Mat C(C_data, test_d->m + (2 * test_d->C_start_row), test_d->k + (2 * test_d->C_start_col)); + + // create ROI rectangles for sub-matrices + A_roi_rect.resizeRect(test_d->A_start_col, test_d->A_start_row, test_d->n, test_d->m); + B_roi_rect.resizeRect(test_d->B_start_col, test_d->B_start_row, test_d->k, test_d->n); + C_roi_rect.resizeRect(test_d->C_start_col, test_d->C_start_row, test_d->k, test_d->m); + + // aligned data for sub-matrices + float *A_sub_data = (float *)memalign(16, A_roi_rect.areaRect() * sizeof(float)); + float *B_sub_data = (float *)memalign(16, B_roi_rect.areaRect() * sizeof(float)); + float *C_sub_data = (float *)memalign(16, C_roi_rect.areaRect() * sizeof(float)); + + // create sub-matrices A, B C matrices with aligned data + // matrices are used as sub-matrices with data copying for a matrix operation testing + dspm::Mat A_sub(A_sub_data, test_d->m, test_d->n); + dspm::Mat B_sub(B_sub_data, test_d->n, test_d->k); + dspm::Mat C_sub(C_sub_data, test_d->m, test_d->k); + + // fill A B matrices with numbers + // fill C matrix with ones + for (int i = 0; i < A.length; i++) { + A.data[i] = i + 1; + } + for (int i = 0; i < B.length; i++) { + B.data[i] = i + 1; + } + + if (test_d->var < 4) { + for (int i = 0; i < C.length; i++) { + C.data[i] = 1; + } + } + + // Combinations of A B C matrices and sub-matrices are created for testing + // As an example: case 1 + // Matrices A and C are sub-matrices - the data are defined as a pointer to an external buffer + // Matrix B is a matrix - the data are copied into the B matrix + switch (test_d->var) { + case 0: { + A_sub.CopyHead(A.getROI(A_roi_rect)); // A sub-matrix - NO DATA CPY + B_sub.CopyHead(B.getROI(B_roi_rect)); // B sub-matrix - NO DATA CPY + C_sub.CopyHead(C.getROI(C_roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 1: { + A_sub = A.Get(A_roi_rect); // A matrix - DATA CPY + B_sub.CopyHead(B.getROI(B_roi_rect)); // B sub-matrix - NO DATA CPY + C_sub.CopyHead(C.getROI(C_roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 2: { + A_sub.CopyHead(A.getROI(A_roi_rect)); // A sub-matrix - NO DATA CPY + B_sub = B.Get(B_roi_rect); // B matrix - DATA CPY + C_sub.CopyHead(C.getROI(C_roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 3: { + A_sub = A.Get(A_roi_rect); // A matrix - DATA CPY + B_sub = B.Get(B_roi_rect); // B matrix - DATA CPY + C_sub.CopyHead(C.getROI(C_roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 4: { + A_sub.CopyHead(A.getROI(A_roi_rect)); // A sub-matrix - NO DATA CPY + B_sub.CopyHead(B.getROI(B_roi_rect)); // B sub-matrix - NO DATA CPY + C_sub = C.Get(C_roi_rect); // B matrix - DATA CPY + } break; + case 5: { + A_sub.CopyHead(A.getROI(A_roi_rect)); // A sub-matrix - NO DATA CPY + B_sub = B.Get(B_roi_rect); // B matrix - DATA CPY + C_sub = C.Get(C_roi_rect); // C matrix - DATA CPY + } break; + case 6: { + A_sub = A.Get(A_roi_rect); // A matrix - DATA CPY + B_sub.CopyHead(B.getROI(B_roi_rect)); // B sub-matrix - NO DATA CPY + C_sub = C.Get(C_roi_rect); // C matrix - DATA CPY + } break; + default: + break; + } + + // create A B check sub-matrices, actual matrix data are COPIED + dspm::Mat A_sub_check = A.Get(A_roi_rect); + dspm::Mat B_sub_check = B.Get(B_roi_rect); + dspm::Mat C_sub_check(test_d->m, test_d->k); + + // Calculate C_sub_check = A_sub_check * B_sub_check + for (int i = 0 ; i < test_d->m ; i++) { + for (int j = 0 ; j < test_d->k ; j++) { + C_sub_check(i, j) = 0; + for (int s = 0 ; s < test_d->n ; s++) { + C_sub_check(i, j) += A_sub_check(i, s) * B_sub_check(s, j); + } + } + } + + dspm_mult_ex_f32(A_sub.data, B_sub.data, C_sub.data, test_d->m, test_d->n, test_d->k, A_sub.padding, B_sub.padding, C_sub.padding); + + // C is a sub-matrix + if (C_sub.sub_matrix) { + // Create a copy of the original C matrix (filled with ones 1) + // to check if an area around the sub-matrix is unaffected after a matrix operation + dspm::Mat C_area_check = dspm::Mat::ones(test_d->m + (2 * test_d->C_start_row), test_d->k + (2 * test_d->C_start_col)); + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + test_assert_check_area_mat_mat(C_area_check, C_sub, test_d->C_start_row, test_d->C_start_col, message); + // C is a matrix + } else { + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + } + + free(A_data); + free(B_data); + free(C_data); + free(A_sub_data); + free(B_sub_data); + free(C_sub_data); +} + +TEST_CASE("dspm_mult_ex_f32_aexx functionality", "[dspm]") +{ + m_test_data_t test_data; + + const int test_varations = 7; + const int start_col_min = 0; + const int start_row_min = 0; + +#if CONFIG_IDF_TARGET_ESP32S3 + const int start_col_max = 4; + const int start_row_max = 4; + const int col_row_increment = 4; + const int m_max = 12; + const int n_max = 12; + const int k_mak = 12; + const int dim_increment = 4; + const int dim_start = 4; +#else + const int start_col_max = 1; + const int start_row_max = 1; + const int col_row_increment = 1; + const int m_max = 4; + const int n_max = 4; + const int k_mak = 4; + const int dim_increment = 1; + const int dim_start = 1; +#endif + + for (int var = 0; var < test_varations; var++) { + // C Matrix starting row for sub-matrix + for (int C_start_row = start_row_min; C_start_row <= start_row_max; C_start_row += col_row_increment) { + + // C Matrix starting col for sub-matrix + for (int C_start_col = start_col_min; C_start_col <= start_col_max; C_start_col += col_row_increment) { + + // A Matrix starting row for sub-matrix + for (int A_start_row = start_row_min; A_start_row <= start_row_max; A_start_row += col_row_increment) { + + // A Matrix starting col for sub-matrix + for (int A_start_col = start_col_min; A_start_col <= start_col_max; A_start_col += col_row_increment) { + + // B Matrix starting row for sub-matrix + for (int B_start_row = start_row_min; B_start_row <= start_row_max; B_start_row += col_row_increment) { + + // B Matrix starting col for sub-matrix + for (int B_start_col = start_col_min; B_start_col <= start_col_max; B_start_col += col_row_increment) { + + // sub-matrix m parameter + for (int m = dim_start; m <= m_max; m += dim_increment) { + + // sub-matrix n paramter + for (int n = dim_start; n <= n_max; n += dim_increment) { + + // sub-matrix k parameter + for (int k = dim_start; k <= k_mak; k += dim_increment) { + + test_data = {var, A_start_row, A_start_col, B_start_row, B_start_col, C_start_row, C_start_col, m, n, k}; + dspm_mult_ex_f32_aexx_functionality_in_cycle(&test_data); + } + } + } + } + } + } + } + } + } + std::cout << var + 1 << "/" << test_varations << " of test done" << std::endl; + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_mult_ex_f32_aexx benchmark", "[dspm]") +{ + const int m = 4; + const int n = 4; + const int k = 4; + const int start_row_col = 4; + + A_roi_rect.resizeRect(start_row_col, start_row_col, n, m); + B_roi_rect.resizeRect(start_row_col, start_row_col, k, n); + C_roi_rect.resizeRect(start_row_col, start_row_col, k, m); + + float *A_data = (float *)memalign(16, (m + (2 * start_row_col)) * (n + (2 * start_row_col)) * sizeof(float)); + float *B_data = (float *)memalign(16, (n + (2 * start_row_col)) * (k + (2 * start_row_col)) * sizeof(float)); + float *C_data = (float *)memalign(16, (m + (2 * start_row_col)) * (k + (2 * start_row_col)) * sizeof(float)); + + dspm::Mat A(A_data, m + (2 * start_row_col), n + (2 * start_row_col)); + dspm::Mat B(B_data, n + (2 * start_row_col), k + (2 * start_row_col)); + dspm::Mat C(C_data, m + (2 * start_row_col), k + (2 * start_row_col)); + + dspm::Mat A_subset = A.getROI(A_roi_rect); + dspm::Mat B_subset = B.getROI(B_roi_rect); + dspm::Mat C_subset = C.getROI(C_roi_rect); + + portENTER_CRITICAL(&testnlock); + dspm_mult_ex_f32(A_subset.data, B_subset.data, C_subset.data, m, n, k, A_subset.padding, B_subset.padding, C_subset.padding); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_mult_ex_f32(A_subset.data, B_subset.data, C_subset.data, m, n, k, A_subset.padding, B_subset.padding, C_subset.padding); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dspm_mult_f32 - %f per multiplication 4x4 + overhead.\n", cycles); + float min_exec = 100; + float max_exec = 700; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); + + free(A_data); + free(B_data); + free(C_data); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_ex_f32_ansi.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_ex_f32_ansi.cpp new file mode 100644 index 0000000..978c919 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_ex_f32_ansi.cpp @@ -0,0 +1,176 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspm_mult.h" +#include "esp_attr.h" +#include "dsp_tests.h" +#include "test_mat_common.h" + +TEST_CASE("dspm_mult_ex_f32_ansi functionality", "[dspm]") +{ + // create ROI rectangles + dspm::Mat::Rect A_roi_rect; + dspm::Mat::Rect B_roi_rect; + dspm::Mat::Rect C_roi_rect; + + char message[60]; + for (int var = 0; var < 7; var++) { + for (int start_row = 0; start_row < 2; start_row++) { + for (int start_col = 0; start_col < 2; start_col++) { + for (int m = 1; m < 6; m++) { + for (int n = 1; n < 6; n++) { + for (int k = 1; k < 6; k++) { + sprintf(message, "var = %d s_row = %d s_col = %d, m = %d, n = %d, k = %d", var, start_row, start_col, m, n, k); + // create A B C matrices with m n k dimensions + padding + // padding is from both sides of the targeted sub-matrix + // 1 1 1 1 + // 1 x x 1 + // 1 x x 1 + // 1 1 1 1 + dspm::Mat A(m + (2 * start_row), n + (2 * start_col)); + dspm::Mat B(n + (2 * start_row), k + (2 * start_col)); + dspm::Mat C = dspm::Mat::ones(m + (2 * start_row), k + (2 * start_col)); + + // create A B C sub matrices with undefined dimensions + dspm::Mat A_sub; + dspm::Mat B_sub; + dspm::Mat C_sub; + + // adjust ROI rectangles + A_roi_rect.resizeRect(start_col, start_row, n, m); + B_roi_rect.resizeRect(start_col, start_row, k, n); + C_roi_rect.resizeRect(start_col, start_row, k, m); + + // fill A B matrices with numbers + // fill C matrix with ones + for (int i = 0; i < A.length; i++) { + A.data[i] = i + 1; + } + for (int i = 0; i < B.length; i++) { + B.data[i] = i + 1; + } + + // Combinations of A B C matrices and sub-matrices are created for testing + // As an example: case 1 + // Matrices B and C are sub-matrices - the data are defined as a pointer to an external buffer + // Matrix B is a matrix - the data are copied into the B matrix + switch (var) { + case 0: { + A_sub.CopyHead(A.getROI(A_roi_rect)); // A sub-matrix - NO DATA CPY + B_sub.CopyHead(B.getROI(B_roi_rect)); // B sub-matrix - NO DATA CPY + C_sub.CopyHead(C.getROI(C_roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 1: { + A_sub = A.Get(A_roi_rect); // A matrix - DATA CPY + B_sub.CopyHead(B.getROI(B_roi_rect)); // B sub_matirx - NO DATA CPY + C_sub.CopyHead(C.getROI(C_roi_rect)); // C sub_matirx - NO DATA CPY + } break; + case 2: { + A_sub.CopyHead(A.getROI(A_roi_rect)); // A sub-matrix - NO DATA CPY + B_sub = B.Get(B_roi_rect); // B matrix - DATA CPY + C_sub.CopyHead(C.getROI(C_roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 3: { + A_sub = A.Get(A_roi_rect); // A matrix - DATA CPY + B_sub = B.Get(B_roi_rect); // B matrix - DATA CPY + C_sub.CopyHead(C.getROI(C_roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 4: { + A_sub.CopyHead(A.getROI(A_roi_rect)); // A sub-matrix - NO DATA CPY + B_sub.CopyHead(B.getROI(B_roi_rect)); // B sub-matrix - NO DATA CPY + C_sub = C.Get(C_roi_rect); // C matrix - DATA CPY + } break; + case 5: { + A_sub.CopyHead(A.getROI(A_roi_rect)); // A sub-matrix - NO DATA CPY + B_sub = B.Get(B_roi_rect); // B matrix - DATA CPY + C_sub = C.Get(C_roi_rect); // C matrix - DATA CPY + } break; + case 6: { + A_sub = A.Get(A_roi_rect); // A matrix - DATA CPY + B_sub.CopyHead(B.getROI(B_roi_rect)); // B sub-matrix - NO DATA CPY + C_sub = C.Get(C_roi_rect); // C matrix - DATA CPY + } break; + default: + break; + } + + // create A B check sub-matrices, actual matrix data are COPIED + dspm::Mat A_sub_check = A.Get(A_roi_rect); + dspm::Mat B_sub_check = B.Get(B_roi_rect); + dspm::Mat C_sub_check(m, k); + + // Calculate C_sub_check = A_sub_check * B_sub_check + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + C_sub_check(i, j) = 0; + for (int s = 0 ; s < n ; s++) { + C_sub_check(i, j) += A_sub_check(i, s) * B_sub_check(s, j); + } + } + } + + dspm_mult_ex_f32_ansi(A_sub.data, B_sub.data, C_sub.data, m, n, k, A_sub.padding, B_sub.padding, C_sub.padding); + + // C is a sub-matrix + if (C_sub.sub_matrix) { + // Create a copy of the original C matrix (filled with ones 1) + // to check if an area around the sub-matrix is unaffected after a matrix operation + dspm::Mat C_area_check = dspm::Mat::ones(m + (2 * start_row), k + (2 * start_col)); + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + test_assert_check_area_mat_mat(C_area_check, C_sub, start_row, start_col, message); + // C is a matrix + } else { + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + } + } + } + } + } + } + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_mult_ex_f32_ansi benchmark", "[dspm]") +{ + const int m = 4; + const int n = 4; + const int k = 4; + const int M_off = 1; + + dspm::Mat A(m + M_off, n + M_off); + dspm::Mat B(n + M_off, k + M_off); + dspm::Mat C(m + M_off, k + M_off); + + dspm::Mat A_subset = A.getROI(M_off, M_off, m, n); + dspm::Mat B_subset = B.getROI(M_off, M_off, n, k); + dspm::Mat C_subset = C.getROI(M_off, M_off, m, k); + + portENTER_CRITICAL(&testnlock); + dspm_mult_ex_f32_ansi(A_subset.data, B_subset.data, C_subset.data, m, n, k, A_subset.padding, B_subset.padding, C_subset.padding); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_mult_ex_f32_ansi(A_subset.data, B_subset.data, C_subset.data, m, n, k, A_subset.padding, B_subset.padding, C_subset.padding); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dspm_mult_f32 - %f per multiplication 4x4 + overhead.\n", cycles); + float min_exec = 100; + float max_exec = 1400; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_f32_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_f32_ae32.c new file mode 100644 index 0000000..5040c95 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_f32_ae32.c @@ -0,0 +1,108 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspm_mult.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +static const char *TAG = "dspm_mult_f32_aexx"; + +// Test dsps_dotprod_s16_ansi function +TEST_CASE("dspm_mult_f32 functionality", "[dspm]") +{ + int m = 4; + int n = 3; + int k = 4; + + + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + float C_compare[m][k]; + float *Cc_ptr = (float *)C_compare; + + for (int i = 0 ; i < m * n; i++) { + A_ptr[i] = i; + B_ptr[i] = i; + } + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + C_compare[i][j] = 0; + for (int s = 0 ; s < n ; s++) { + C_compare[i][j] += A[i][s] * B[s][j]; + } + } + } + dspm_mult_f32(A_ptr, B_ptr, C_ptr, m, n, k); + + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + ESP_LOGI(TAG, "[%i][%i] calc=%f, expected =%f", i, j, C[i][j], C_compare[i][j]); + } + } + // Compare and check results + for (int i = 0 ; i < m * k ; i++) { + if (Cc_ptr[i] != C_ptr[i]) { + TEST_ASSERT_EQUAL( C_ptr[i], Cc_ptr[i]); + } + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_mult_f32 benchmark", "[dspm]") +{ + int m = 4; + int n = 4; + int k = 4; + + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + + + ESP_LOGI(TAG, "A: %8.8"PRIx32", B: %8.8"PRIx32", C=%8.8"PRIx32"", (uint32_t)A_ptr, (uint32_t)B_ptr, (uint32_t)C_ptr); + portENTER_CRITICAL(&testnlock); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_mult_f32(A_ptr, B_ptr, C_ptr, m, n, k); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dspm_mult_f32 - %f per multiplication 4x4 + overhead.\n", cycles); + float min_exec = 100; + float max_exec = 700; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_f32_ansi.c new file mode 100644 index 0000000..74cae80 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_f32_ansi.c @@ -0,0 +1,118 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspm_mult.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +static const char *TAG = "dspm_mult_f32_ansi"; + +// Test dsps_dotprod_s16_ansi function +TEST_CASE("dspm_mult_f32_ansi functionality", "[dspm]") +{ + for (int m = 1 ; m < 8 ; m++) { + for (int n = 1; n < 8 ; n++) { + for (int k = 1; k < 8 ; k++) { + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + float C_compare[m][k]; + float *Cc_ptr = (float *)C_compare; + + for (int i = 0 ; i < m * n; i++) { + A_ptr[i] = i; + B_ptr[i] = i; + } + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < n ; j++) { + A[i][j] = i * n + j; + } + } + for (int i = 0 ; i < n ; i++) { + for (int j = 0 ; j < k ; j++) { + B[i][j] = i * k + j; + } + } + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + C_compare[i][j] = 0; + for (int s = 0 ; s < n ; s++) { + C_compare[i][j] += A[i][s] * B[s][j]; + } + } + } + dspm_mult_f32_ansi(A_ptr, B_ptr, C_ptr, m, n, k); + + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + ESP_LOGD(TAG, "[%i][%i] calc=%f, expected =%f", i, j, C[i][j], C_compare[i][j]); + } + } + // Compare and check results + for (int i = 0 ; i < m * k ; i++) { + if (Cc_ptr[i] != C_ptr[i]) { + TEST_ASSERT_EQUAL(Cc_ptr[i], C_ptr[i]); + } + } + } + } + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_mult_f32_ansi benchmark", "[dspm]") +{ + int m = 4; + int n = 4; + int k = 4; + + float A[m][n]; + float *A_ptr = (float *)A; + + float B[n][k]; + float *B_ptr = (float *)B; + + float C[m][k]; + float *C_ptr = (float *)C; + + + portENTER_CRITICAL(&testnlock); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_mult_f32_ansi(A_ptr, B_ptr, C_ptr, m, n, k); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dspm_mult_f32_ansi - %f per multiplication 4x4 + overhead.\n", cycles); + float min_exec = 100; + float max_exec = 2000; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_s16_ae32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_s16_ae32.c new file mode 100644 index 0000000..22dd920 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_s16_ae32.c @@ -0,0 +1,106 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspm_mult.h" +#include "esp_attr.h" +#include "esp_log.h" + +// Test dsps_dotprod_s16_ansi function +TEST_CASE("dspm_mult_s16_aexx functionality", "[dspm]") +{ + for (int m = 1 ; m < 8 ; m++) { + for (int n = 1 ; n < 16 ; n++) { + for (int k = 1 ; k < 16 ; k++) { + + int16_t A[m][n]; + int16_t *A_ptr = (int16_t *)A; + + int16_t B[n][k]; + int16_t *B_ptr = (int16_t *)B; + + int16_t C[m][k]; + int16_t *C_ptr = (int16_t *)C; + int16_t C_compare[m][k]; + int16_t *Cc_ptr = (int16_t *)C_compare; + for (int shift = -4 ; shift < 4 ; shift++) { + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < n; j++) { + A[i][j] = 0x123; + } + } + for (int i = 0 ; i < n ; i++) { + for (int j = 0 ; j < k; j++) { + B[i][j] = 0x123; + } + } + + dspm_mult_s16_ansi(A_ptr, B_ptr, Cc_ptr, m, n, k, shift); + dspm_mult_s16(A_ptr, B_ptr, C_ptr, m, n, k, shift); + + // Compare and check results + for (int i = 0 ; i < m * k ; i++) { + if (Cc_ptr[i] != C_ptr[i]) { + ESP_LOGE("dspm_mult_s16_aexx", "Process path m=%i, n=%i, k=%i, shift=%i", m, n, k, shift); + ESP_LOGE("dspm_mult_s16_aexx", "data[%i] %4.4x != %4.4x expected \n", i, C_ptr[i], Cc_ptr[i]); + TEST_ASSERT_EQUAL(Cc_ptr[i], C_ptr[i]); + } + } + } + } + } + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_mult_s16_aexx benchmark", "[dspm]") +{ + unsigned int start_b = xthal_get_ccount(); + unsigned int end_b = xthal_get_ccount(); + for (int m = 2 ; m <= 8 ; m++) { + for (int n = 2 ; n <= 16 ; n++) { + for (int k = 1 ; k <= 16 ; k++) { + + int16_t A[m][n]; + int16_t *A_ptr = (int16_t *)A; + + int16_t B[m][n]; + int16_t *B_ptr = (int16_t *)B; + + int16_t C[m][k]; + int16_t *C_ptr = (int16_t *)C; + + memset(A, 0, sizeof(A)); + memset(B, 0, sizeof(A)); + memset(C, 0, sizeof(A)); + portENTER_CRITICAL(&testnlock); + + start_b = xthal_get_ccount(); + dspm_mult_s16(A_ptr, B_ptr, C_ptr, m, n, k, 0); + end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b; + ESP_LOGD("dspm_mult_s16_aexx", "dspm_mult_s16_aexx[%i][%i][%i] - %f", m, n, k, cycles); + } + } + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_s16_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_s16_ansi.c new file mode 100644 index 0000000..a9abc13 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test/test_mmult_s16_ansi.c @@ -0,0 +1,110 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "esp_dsp.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dspm_mult.h" +#include "esp_attr.h" +#include "dsp_tests.h" + +static const char *TAG = "dspm_mult_s16_ansi"; + +// Test dsps_dotprod_s16_ansi function +TEST_CASE("dspm_mult_s16_ansi functionality", "[dspm]") +{ + int m = 4; + int n = 3; + int k = 4; + + + int16_t A[m][n]; + int16_t *A_ptr = (int16_t *)A; + + int16_t B[n][k]; + int16_t *B_ptr = (int16_t *)B; + + int16_t C[m][k]; + int16_t *C_ptr = (int16_t *)C; + int16_t C_compare[m][k]; + int16_t *Cc_ptr = (int16_t *)C_compare; + + int shift = 0; + for (int i = 0 ; i < m * n; i++) { + A_ptr[i] = 0x1000; + B_ptr[i] = 0x200; + } + long long store_reg = 0; + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + store_reg = (0x7fff >> shift); + for (int s = 0 ; s < n ; s++) { + store_reg += ((int32_t)A[i][s] * (int32_t)B[s][j]); + } + C_compare[i][j] = store_reg >> (15 - shift); + } + } + dspm_mult_s16_ansi(A_ptr, B_ptr, C_ptr, m, n, k, shift); + + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + ESP_LOGD(TAG, "[%i][%i] calc=%i, expected =%i", i, j, C[i][j], C_compare[i][j]); + } + } + // Compare and check results + for (int i = 0 ; i < m * k ; i++) { + if (Cc_ptr[i] != C_ptr[i]) { + TEST_ASSERT_EQUAL(Cc_ptr[i], C_ptr[i]); + } + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_mult_s16_ansi benchmark", "[dspm]") +{ + int m = 4; + int n = 4; + int k = 4; + + int16_t A[m][n]; + int16_t *A_ptr = (int16_t *)A; + + int16_t B[n][k]; + int16_t *B_ptr = (int16_t *)B; + + int16_t C[m][k]; + int16_t *C_ptr = (int16_t *)C; + + + portENTER_CRITICAL(&testnlock); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_mult_s16_ansi(A_ptr, B_ptr, C_ptr, m, n, k, 0); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + ESP_LOGI("dspm_mult_s16_ansi", "Benchmark dspm_mult_s16_ansi - %f per multiplication %ix%ix%i.\n", cycles, m, n, k); + float min_exec = 1000; + float max_exec = 3000; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test_sim/main.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test_sim/main.c new file mode 100644 index 0000000..fa41f00 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test_sim/main.c @@ -0,0 +1,12 @@ + +void test_mmult(); + +int main(void) +{ + printf("main starts!\n"); +// xt_iss_profile_enable(); + test_mmult(); +// xt_iss_profile_disable(); + + printf("Test done\n"); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test_sim/test_mmult.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test_sim/test_mmult.c new file mode 100644 index 0000000..a8097e8 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mul/test_sim/test_mmult.c @@ -0,0 +1,65 @@ +#include +#include +#include +#include + +#include "dsp_common.h" + +#include "dspm_mult.h" +extern void xt_iss_profile_disable(); +extern void xt_iss_profile_enable(); + +#define M 4 +#define N 8 +#define K 16 + +const int m = M; +const int n = N; +const int k = K; + +float A[M][N]; +float B[N][K]; +float C[M][K]; +float C_compare[M][K]; + +void test_mmult() +{ + + float *A_ptr = (float *)A; + float *B_ptr = (float *)B; + float *C_ptr = (float *)C; + float *Cc_ptr = (float *)C_compare; + + for (int i = 0 ; i < m * n; i++) { + A_ptr[i] = i; + B_ptr[i] = i; + } + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + C_compare[i][j] = 0; + for (int s = 0 ; s < n ; s++) { + C_compare[i][j] += A[i][s] * B[s][j]; + } + C[i][j] = -1; + } + } + xt_iss_profile_enable(); + dspm_mult_f32_ae32(A_ptr, B_ptr, Cc_ptr, m, n, k); + dspm_mult_f32_aes3(A_ptr, B_ptr, C_ptr, m, n, k); + xt_iss_profile_disable(); + + for (int i = 0 ; i < m ; i++) { + for (int j = 0 ; j < k ; j++) { + printf("[%i][%i] calc=%f, expected =%f\n", i, j, C[i][j], C_compare[i][j]); + } + } + // Compare and check results + for (int i = 0 ; i < m * k ; i++) { + if (Cc_ptr[i] != C_ptr[i]) { + printf("Error - C_ptr= %f, Cc_ptr= %f \n", C_ptr[i], Cc_ptr[i]); + return; + } + } + + printf("Test Pass!\n"); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/float/dspm_mulc_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/float/dspm_mulc_f32_ae32.S new file mode 100644 index 0000000..a930c6e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/float/dspm_mulc_f32_ae32.S @@ -0,0 +1,58 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dspm_mulc_platform.h" +#if (dspm_mulc_f32_ae32_enabled == 1) + +// This is a mul function for sub-matrices for ESP32 processor + .text + .align 4 + .global dspm_mulc_f32_ae32 + .type dspm_mulc_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dspm_mulc_f32_ansi(const float *input, float *output, float C, int rows, int cols, int padd_in, int padd_out, int step_in, int step_out); + +dspm_mulc_f32_ae32: +// input - a2 +// output - a3 +// C - a4 +// rows - a5 +// cols - a6 +// padd_in - a7 +// padd_out - a8 +// step_in - a9 +// step_out - a10 + + entry a1, 16 + + l32i.n a8, a1, 16 // padd_out + l32i.n a9, a1, 20 // step_in + l32i.n a10, a1, 24 // step_out + + slli a9, a9, 2 // a9 - step_in << 2 + slli a10, a10, 2 // a10 - step_out << 2 + + wfr f0, a4 // a4 - load to the f0 + + .outer_loop_mulc_f32_ae32: + + loopnez a6, .loop_mulc_f32_ae32 + lsxp f1, a2, a9 // load input to f1, increment input (input_ptr+=step_in) + + mul.s f2, f0, f1 // f2 = f0 * f1 + ssxp f2, a3, a10 // save result f2 to output a3, increment output (output_ptr+=step_out) + .loop_mulc_f32_ae32: + + addx4 a2, a7, a2 // input1_ptr += (padd_in << 2); + addx4 a3, a8, a3 // output_ptr += (padd_out << 2); + addi.n a5, a5, -1 // rows - 1 + + bnez a5, .outer_loop_mulc_f32_ae32 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dspm_mulc_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/float/dspm_mulc_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/float/dspm_mulc_f32_ansi.c new file mode 100644 index 0000000..6dff7a4 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/float/dspm_mulc_f32_ansi.c @@ -0,0 +1,51 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dspm_mulc.h" + +esp_err_t dspm_mulc_f32_ansi(const float *input, float *output, float C, int rows, int cols, int padd_in, int padd_out, int step_in, int step_out) +{ + if (NULL == input) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (rows <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (cols <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (padd_in < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (padd_out < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (step_in <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (step_out <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + const int ptr_input_step = cols + padd_in; + const int ptr_output_step = cols + padd_out; + float *ptr_input = (float *)input; + + for (int row = 0; row < rows; row++) { + for (int col = 0; col < cols; col++) { + output[col * step_out] = ptr_input[col * step_in] * C; + } + ptr_input += ptr_input_step; + output += ptr_output_step; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include/dspm_mulc.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include/dspm_mulc.h new file mode 100644 index 0000000..c439190 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include/dspm_mulc.h @@ -0,0 +1,61 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + + +#ifndef _dspm_mulc_H_ +#define _dspm_mulc_H_ +#include "dsp_err.h" + +#include "dspm_mulc_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/**@{*/ +/** + * @brief multiply a constant and an array with padding + * + * The function multiplies a constant and an array defined as s sub-matrix with padding + * out[row * ptr_step_out + col * step_out] = input[row * ptr_step_in + col * step_in] * C; + * The implementation uses ANSI C and could be compiled and run on any platform + * + * @param[in] input: input array + * @param[out] output: output array + * @param[in] C: constant value + * @param[in] rows: input matrix rows + * @param[in] cols: input matrix cols + * @param[in] padd_in: input array padding + * @param[in] padd_out: output array padding + * @param[in] step_in: step over input array (by default should be 1) + * @param[in] step_out: step over output array (by default should be 1) + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspm_mulc_f32_ansi(const float *input, float *output, float C, int rows, int cols, int padd_in, int padd_out, int step_in, int step_out); +esp_err_t dspm_mulc_f32_ae32(const float *input, float *output, float C, int rows, int cols, int padd_in, int padd_out, int step_in, int step_out); +/**@}*/ + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED +#if (dspm_mulc_f32_ae32_enabled == 1) +#define dspm_mulc_f32 dspm_mulc_f32_ae32 +#else // +#define dspm_mulc_f32 dspm_mulc_f32_ansi +#endif + +#else +#define dspm_mulc_f32 dspm_mulc_f32_ansi +#endif + + +#endif // _dspm_mulc_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include/dspm_mulc_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include/dspm_mulc_platform.h new file mode 100644 index 0000000..01aa7d6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/include/dspm_mulc_platform.h @@ -0,0 +1,20 @@ +#ifndef _dspm_mulc_platform_H_ +#define _dspm_mulc_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dspm_mulc_f32_ae32_enabled 1 + +#endif + +#endif // __XTENSA__ + + +#endif // _dspm_mulc_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/test/test_dspm_mulc_f32_ansi.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/test/test_dspm_mulc_f32_ansi.cpp new file mode 100644 index 0000000..440f85c --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/mulc/test/test_dspm_mulc_f32_ansi.cpp @@ -0,0 +1,122 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include "esp_dsp.h" +#include "dspm_mulc.h" +#include "esp_attr.h" +#include "test_mat_common.h" +#include "dsp_tests.h" + +TEST_CASE("dspm_mulc_f32_ansi functionality", "[dspm]") +{ + // create ROI rectangle + dspm::Mat::Rect roi_rect; + + char message[60]; + for (int var = 0; var < 3; var++) { + for (int start_row = 0; start_row < 2; start_row++) { + for (int start_col = 0; start_col < 2; start_col++) { + for (int row = 1; row < 6; row++) { + for (int col = 1; col < 6; col++) { + sprintf(message, "var = %d s_row = %d s_col = %d, row = %d, col = %d", var, start_row, start_col, row, col); + // create A C matrices with row col dimensions + padding + // padding is from both sides of the targeted sub-matrix + // 1 1 1 1 + // 1 x x 1 + // 1 x x 1 + // 1 1 1 1 + dspm::Mat A(row + (2 * start_row), col + (2 * start_col)); + dspm::Mat C_compare(row + (2 * start_row), col + (2 * start_col)); + dspm::Mat C = dspm::Mat::ones(row + (2 * start_row), col + (2 * start_col)); + + // create A C sub matrices with undefined dimensions + dspm::Mat A_sub; + dspm::Mat C_sub; + float B = 2; + + // adjust ROI rectangles + roi_rect.resizeRect(start_col, start_row, col, row); + + for (int i = 0; i < A.length; i++) { + A.data[i] = i + 1; + C_compare.data[i] = (i + 1) * B; + } + + // Combinations of A C matrices and sub-matrices are created for testing + // As an example: case 2 + // Matrix A is a sub-matrix - the data are defined as a pointer to an external buffer + // Matrix C is a matrix - the data are copied into the C matrix + switch (var) { + case 0: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 1: { + A_sub = A.Get(roi_rect); // A matrix - DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub_matirx - NO DATA CPY + } break; + case 2: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + C_sub = C.Get(roi_rect); // C matrix - DATA CPY + } break; + default: + break; + } + + dspm_mulc_f32(A_sub.data, C_sub.data, B, row, col, A_sub.padding, C_sub.padding, 1, 1); + dspm::Mat C_sub_check = C_compare.Get(roi_rect); + + // C is a sub-matrix + if (C_sub.sub_matrix) { + // Create a copy of the original C matrix (filled with ones 1) + // to check if an area around the sub-matrix is unaffected after a matrix operation + dspm::Mat C_area_check = dspm::Mat::ones(row + (2 * start_row), col + (2 * start_col)); + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + test_assert_check_area_mat_mat(C_area_check, C_sub, start_row, start_col, message); + // C is a matrix + } else { + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + } + } + } + } + } + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_mulc_f32_ansi benchmark", "[dspm]") +{ + const int dim = 4; + const int M_off = 1; + const float B = 1; + + dspm::Mat mat(dim + M_off, dim + M_off); + dspm::Mat mat_sub = mat.getROI(M_off, M_off, dim, dim); + + portENTER_CRITICAL(&testnlock); + dspm_mulc_f32(mat_sub.data, mat_sub.data, B, dim, dim, mat_sub.padding, mat_sub.padding, 1, 1); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_mulc_f32(mat_sub.data, mat_sub.data, B, dim, dim, mat_sub.padding, mat_sub.padding, 1, 1); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dspm_mulc_f32_ansi - %f per sample %dx%d.\n", cycles, dim, dim); + float min_exec = 100; + float max_exec = 1400; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/float/dspm_sub_f32_ae32.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/float/dspm_sub_f32_ae32.S new file mode 100644 index 0000000..6fe68a3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/float/dspm_sub_f32_ae32.S @@ -0,0 +1,63 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dspm_sub_platform.h" +#if (dspm_sub_f32_ae32_enabled == 1) + +// This is an sub function for sub-matrices for ESP32 processor + .text + .align 4 + .global dspm_sub_f32_ae32 + .type dspm_sub_f32_ae32,@function +// The function implements the following C code: +// esp_err_t dspm_sub_f32_ansi(const float *input1, const float *input2, float *output, int rows, int cols, int padd1, int padd2, int padd_out, int step1, int step2, int step_out); + +dspm_sub_f32_ae32: +// input1 - a2 +// input2 - a3 +// output - a4 +// rows - a5 +// cols - a6 +// padd1 - a7 +// padd2 - a8 +// padd_out - a9 +// step1 - a10 +// step2 - a11 +// step_out - a12 + + entry a1, 16 + + l32i.n a8, a1, 16 // padd2 + l32i.n a9, a1, 20 // padd_out + l32i.n a10, a1, 24 // step1 + l32i.n a11, a1, 24 // step2 + l32i.n a12, a1, 24 // step_out + + slli a10, a10, 2 // a10 - step1 << 2 + slli a11, a11, 2 // a11 - step2 << 2 + slli a12, a12, 2 // a12 - step_out << 2 + + .outer_loop_sub_f32_ae32: + + loopnez a6, .loop_sub_f32_ae32 + lsxp f0, a2, a10 // load input1 to f0, increment input1 (input1_ptr+=step1) + lsxp f1, a3, a11 // load input2 to f1, increment input2 (input2_ptr+=step2) + + sub.s f2, f0, f1 // f2 = f0 - f1 + ssxp f2, a4, a12 // save result f2 to output a4, increment output (output_ptr+=step_out) + .loop_sub_f32_ae32: + + addx4 a3, a8, a3 // input2_ptr += (padd2 << 2); + addx4 a2, a7, a2 // input1_ptr += (padd1 << 2); + addx4 a4, a9, a4 // output_ptr += (padd_out << 2); + addi.n a5, a5, -1 // rows - 1 + + bnez a5, .outer_loop_sub_f32_ae32 + + movi.n a2, 0 // return status ESP_OK + retw.n + +#endif // dspm_sub_f32_ae32_enabled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/float/dspm_sub_f32_ansi.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/float/dspm_sub_f32_ansi.c new file mode 100644 index 0000000..c19f549 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/float/dspm_sub_f32_ansi.c @@ -0,0 +1,63 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dspm_sub.h" + +esp_err_t dspm_sub_f32_ansi(const float *input1, const float *input2, float *output, int rows, int cols, int padd1, int padd2, int padd_out, int step1, int step2, int step_out) +{ + if (NULL == input1) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == input2) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (NULL == output) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (rows <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (cols <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (padd1 < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (padd2 < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (padd_out < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + if (step1 <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (step2 <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (step_out <= 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + const int ptr_input1_step = cols + padd1; + const int ptr_input2_step = cols + padd2; + const int ptr_out_step = cols + padd_out; + float *ptr_input1 = (float *)input1; + float *ptr_input2 = (float *)input2; + + for (int row = 0; row < rows; row++) { + for (int col = 0; col < cols; col++) { + output[col * step_out] = ptr_input1[col * step1] - ptr_input2[col * step2]; + } + ptr_input1 += ptr_input1_step; + ptr_input2 += ptr_input2_step; + output += ptr_out_step; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include/dspm_sub.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include/dspm_sub.h new file mode 100644 index 0000000..4543296 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include/dspm_sub.h @@ -0,0 +1,62 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef _dspm_sub_H_ +#define _dspm_sub_H_ +#include "dsp_err.h" + +#include "dspm_sub_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/**@{*/ +/** + * @brief subtracts two arrays with paddings (subtracts two sub-matrices) + * + * The function subtracts two arrays defined as sub-matrices with paddings + * out[row * ptr_step_out + col * step_out] = in1[row * ptr_step_in1 + col * step1] - in2[row * ptr_step_in2 + col * step2]; + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] input1: input array 1 + * @param[in] input2: input array 2 + * @param[out] output: output array + * @param[in] rows: matrix rows + * @param[in] cols: matrix cols + * @param[in] padd1: input array 1 padding + * @param[in] padd2: input array 2 padding + * @param[in] padd_out: output array padding + * @param[in] step1: step over input array 1 (by default should be 1) + * @param[in] step2: step over input array 2 (by default should be 1) + * @param[in] step_out: step over output array (by default should be 1) + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dspm_sub_f32_ansi(const float *input1, const float *input2, float *output, int rows, int cols, int padd1, int padd2, int padd_out, int step1, int step2, int step_out); +esp_err_t dspm_sub_f32_ae32(const float *input1, const float *input2, float *output, int rows, int cols, int padd1, int padd2, int padd_out, int step1, int step2, int step_out); +/**@}*/ + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED + +#if (dspm_sub_f32_ae32_enabled == 1) +#define dspm_sub_f32 dspm_sub_f32_ae32 +#else +#define dspm_sub_f32 dspm_sub_f32_ansi +#endif +#else +#define dspm_sub_f32 dspm_sub_f32_ansi +#endif // CONFIG_DSP_OPTIMIZED + + +#endif // _dspm_sub_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include/dspm_sub_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include/dspm_sub_platform.h new file mode 100644 index 0000000..dd71b95 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/include/dspm_sub_platform.h @@ -0,0 +1,18 @@ +#ifndef _dspm_sub_platform_H_ +#define _dspm_sub_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#define dspm_sub_f32_ae32_enabled 1 + +#endif +#endif // __XTENSA__ + +#endif // _dspm_sub_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/test/test_dspm_sub_f32_ansi.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/test/test_dspm_sub_f32_ansi.cpp new file mode 100644 index 0000000..e68ade3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/matrix/sub/test/test_dspm_sub_f32_ansi.cpp @@ -0,0 +1,146 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include "esp_dsp.h" +#include "dspm_sub.h" +#include "esp_attr.h" +#include "test_mat_common.h" +#include "dsp_tests.h" + +TEST_CASE("dspm_sub_f32_ansi functionality", "[dspm]") +{ + // create ROI rectangle + dspm::Mat::Rect roi_rect; + + char message[60]; + for (int var = 0; var < 7; var++) { + for (int start_row = 0; start_row < 2; start_row++) { + for (int start_col = 0; start_col < 2; start_col++) { + for (int row = 1; row < 6; row++) { + for (int col = 1; col < 6; col++) { + sprintf(message, "var = %d s_row = %d s_col = %d, row = %d, col = %d", var, start_row, start_col, row, col); + // create A B C matrices with row col dimensions + padding + // padding is from both sides of the targeted sub-matrix + // 1 1 1 1 + // 1 x x 1 + // 1 x x 1 + // 1 1 1 1 + dspm::Mat A(row + (2 * start_row), col + (2 * start_col)); + dspm::Mat B(row + (2 * start_row), col + (2 * start_col)); + dspm::Mat C_compare(row + (2 * start_row), col + (2 * start_col)); + dspm::Mat C = dspm::Mat::ones(row + (2 * start_row), col + (2 * start_col)); + + // create A B C sub matrices with undefined dimensions + dspm::Mat A_sub; + dspm::Mat B_sub; + dspm::Mat C_sub; + + // adjust ROI rectangles + roi_rect.resizeRect(start_col, start_row, col, row); + + for (int i = 0; i < A.length; i++) { + A.data[i] = i + 1; + B.data[i] = -i - 1; + C_compare.data[i] = (i + 1) * 2; + } + + // Combinations of A B C matrices and sub-matrices are created for testing + // As an example: case 1 + // Matrices A and C are sub-matrices - the data are defined as a pointer to an external buffer + // Matrix B is a matrix - the data are copied into the B matrix + switch (var) { + case 0: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub-matrix - NO DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 1: { + A_sub = A.Get(roi_rect); // A matrix - DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub_matirx - NO DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub_matirx - NO DATA CPY + } break; + case 2: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub = B.Get(roi_rect); // B matrix - DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 3: { + A_sub = A.Get(roi_rect); // A matrix - DATA CPY + B_sub = B.Get(roi_rect); // B matrix - DATA CPY + C_sub.CopyHead(C.getROI(roi_rect)); // C sub-matrix - NO DATA CPY + } break; + case 4: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub-matrix - NO DATA CPY + C_sub = C.Get(roi_rect); // C matrix - DATA CPY + } break; + case 5: { + A_sub.CopyHead(A.getROI(roi_rect)); // A sub-matrix - NO DATA CPY + B_sub = B.Get(roi_rect); // B matrix - DATA CPY + C_sub = C.Get(roi_rect); // C matrix - DATA CPY + } break; + case 6: { + A_sub = A.Get(roi_rect); // A matrix - DATA CPY + B_sub.CopyHead(B.getROI(roi_rect)); // B sub-matrix - NO DATA CPY + C_sub = C.Get(roi_rect); // C matrix - DATA CPY + } break; + default: + break; + } + + dspm_sub_f32(A_sub.data, B_sub.data, C_sub.data, row, col, A_sub.padding, B_sub.padding, C_sub.padding, 1, 1, 1); + dspm::Mat C_sub_check = C_compare.Get(roi_rect); + + // C is a sub-matrix + if (C_sub.sub_matrix) { + // Create a copy of the original C matrix (filled with ones 1) + // to check if an area around the sub-matrix is unaffected after a matrix operation + dspm::Mat C_area_check = dspm::Mat::ones(row + (2 * start_row), col + (2 * start_col)); + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + test_assert_check_area_mat_mat(C_area_check, C_sub, start_row, start_col, message); + // C is a matrix + } else { + test_assert_equal_mat_mat(C_sub_check, C_sub, message); + } + } + } + } + } + } +} + +static portMUX_TYPE testnlock = portMUX_INITIALIZER_UNLOCKED; + +TEST_CASE("dspm_sub_f32_ansi benchmark", "[dspm]") +{ + const int dim = 4; + const int M_off = 1; + + dspm::Mat mat(dim + M_off, dim + M_off); + dspm::Mat mat_sub = mat.getROI(M_off, M_off, dim, dim); + + portENTER_CRITICAL(&testnlock); + dspm_sub_f32(mat_sub.data, mat_sub.data, mat_sub.data, dim, dim, mat_sub.padding, mat_sub.padding, mat_sub.padding, 1, 1, 1); + + unsigned int start_b = xthal_get_ccount(); + int repeat_count = 1024; + for (int i = 0 ; i < repeat_count ; i++) { + dspm_sub_f32(mat_sub.data, mat_sub.data, mat_sub.data, dim, dim, mat_sub.padding, mat_sub.padding, mat_sub.padding, 1, 1, 1); + } + unsigned int end_b = xthal_get_ccount(); + portEXIT_CRITICAL(&testnlock); + + float total_b = end_b - start_b; + float cycles = total_b / (repeat_count); + printf("Benchmark dspm_sub_f32_ansi - %f per sample %dx%d.\n", cycles, dim, dim); + float min_exec = 100; + float max_exec = 1400; + TEST_ASSERT_EXEC_IN_RANGE(min_exec, max_exec, cycles); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen.S new file mode 100644 index 0000000..793c9a2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen.S @@ -0,0 +1,120 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_cplx_gen_platform.h" +#if (dsps_cplx_gen_aes3_enbled || dsps_cplx_gen_ae32_enbled) + +// This is a Complex signal generator for ESP32 processor. + .text + .align 4 + .global dsps_cplx_gen_ae32 + .type dsps_cplx_gen_ae32,@function +// The function implements the following C code: +// esp_err_t dsps_cplx_gen_ae32(cplx_sig_t *cplx_gen, void *output, int32_t len); + +dsps_cplx_gen_ae32: + +// Input params Variables float Variables fixed +// +// cplx_gen - a2 fr - f0 lut - a5 +// output - a3 one_const - f1 lut_len - a6 +// len - a4 lut_len_f - f2 sin_pos - a7 +// ph_f - f3 cos_pos - a8 +// sin_pos_f - f4 sin_to_cos - a9 +// ph_floor - a10 +// modulo - a11 + + entry a1, 32 + l32i a5, a2, 0 // a5 - lut + l32i a6, a2, 4 // a6 - lut_len + lsi f0, a2, 8 // f0 - fr + lsi f3, a2, 12 // f3 - ph_f (phase increment) + const.s f1, 1 // f1 - constant 1 + float.s f2, a6, 0 // f2 - lut_len_f + srli a9, a6, 2 // a9 - sin_to_cos = lut_len / 4 + addi a11, a6, -1 // a11 - modulo = lut_len - 1 + + l32i a15, a2, 16 // a15 - d_type + beqz a15, _s16_fixed + + // F32 floating point + loopnez a4, ._main_loop_float + + floor.s a10, f3, 0 // turncate wiht rounding towards -infinity + + // branch if ph_floor is greater than 0 + bgez a10, _ph_check_low_float + add.s f3, f3, f1 // f3 = f3 - f1 (ph_f + 1) + floor.s a10, f3, 0 // turncate wiht rounding towards -infinity + _ph_check_low_float: + + // branch if ph_ceil is lower than 2 (floored to 1) + blti a10, 1, _ph_check_great_float + sub.s f3, f3, f1 // f3 = f3 - f1 (ph_f - 1) + _ph_check_great_float: + + mul.s f4, f3, f2 // sin_pos_f = ph_f * lut_len + trunc.s a7, f4, 0 // truncate sin_pos_f to sin_pos + + add a8, a7, a9 // cos_pos (a8) = sin_pos(a7) + sin_to_cos(a9) + and a8, a8, a11 // cos_pos = cos_pos & modulo (lut_len - 1) + + slli a8, a8, 2 // set index of the LUT (4 x cos_pos) + slli a7, a7, 2 // set index of the LUT (4 x sin_pos) + + lsx f14, a5, a7 // load sin LUT value form *lut + lsx f15, a5, a8 // load cos LUT value form *lut + + ssi f15, a3, 0 // save cos LUT value to the output, offset 0 + ssi f14, a3, 4 // save sin LUT value to the output, offset 4 + add.s f3, f3, f0 // ph_f += fr + + addi.n a3, a3, 8 // increase the output pointer (2 x f32) + ._main_loop_float: + + movi.n a2, 0 + retw.n + + // Q15 fixed point + _s16_fixed: + loopnez a4, ._main_loop_fixed + + floor.s a10, f3, 0 // turncate wiht rounding towards -infinity + + // branch if ph_floor is greater than 0 + bgez a10, _ph_check_low_fixed + add.s f3, f3, f1 // f3 = f3 - f1 (ph_f + 1) + floor.s a10, f3, 0 // turncate wiht rounding towards -infinity + _ph_check_low_fixed: + + // branch if ph_ceil is lower than 2 (floored to 1) + blti a10, 1, _ph_check_great_fixed + sub.s f3, f3, f1 // f3 = f3 - f1 (ph_f - 1) + _ph_check_great_fixed: + + mul.s f4, f3, f2 // sin_pos_f = ph_f * lut_len + trunc.s a7, f4, 0 // truncate sin_pos_f to sin_pos + + add a8, a7, a9 // cos_pos (a8) = sin_pos(a7) + sin_to_cos(a9) + and a8, a8, a11 // cos_pos = cos_pos & modulo (lut_len - 1) + + addx2 a15, a8, a5 // get cos index of the LUT (*lut + 2 x cos_pos) + addx2 a13, a7, a5 // get sin index of the LUT (*lut + 2 x sin_pos) + + l16si a14, a15, 0 // load cos LUT value from *lut + l16si a12, a13, 0 // load sin LUT value from *lut + + s16i a14, a3, 0 // save cos LUT value to the output (a3), offset 0 + s16i a12, a3, 2 // save sin LUT value to the output (a3), offset 2 + add.s f3, f3, f0 // ph_f += fr + + addi.n a3, a3, 4 // increase the output pointer (2 x s16) + ._main_loop_fixed: + + movi.n a2, 0 + retw.n + +#endif // (dsps_cplx_gen_aes3_enbled || dsps_cplx_gen_ae32_enbled) \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen.c new file mode 100644 index 0000000..91f6c2b --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen.c @@ -0,0 +1,40 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_cplx_gen.h" + +esp_err_t dsps_cplx_gen_ansi(cplx_sig_t *cplx_gen, void *output, int32_t len) +{ + // angle frequency is already cplx_gen->freq + const int sin_to_cos = cplx_gen->lut_len / 4; + float ph = cplx_gen->phase; + const float fr = cplx_gen->freq; + int sin_pos, cos_pos; + + for (int i = 0 ; i < len; i++) { + + if (ph < 0) { + ph += 1.0; + } + if (ph >= 1.0) { + ph -= 1.0; + } + + sin_pos = (int)(ph * (cplx_gen->lut_len)); + cos_pos = (sin_pos + sin_to_cos) & (cplx_gen->lut_len - 1); + + if (cplx_gen->d_type == S16_FIXED) { + ((int16_t *)output)[i * 2 + 0] = ((int16_t *)cplx_gen->lut)[cos_pos]; + ((int16_t *)output)[i * 2 + 1] = ((int16_t *)cplx_gen->lut)[sin_pos]; + } else { + ((float *)output)[i * 2 + 0] = ((float *)cplx_gen->lut)[cos_pos]; + ((float *)output)[i * 2 + 1] = ((float *)cplx_gen->lut)[sin_pos]; + } + ph += fr; + } + + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen_init.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen_init.c new file mode 100644 index 0000000..8a5bd90 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/dsps_cplx_gen_init.c @@ -0,0 +1,148 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + + +#include "dsps_cplx_gen.h" +#include "dsp_common.h" +#include "esp_log.h" +#include +#include + +#define Q15_MAX INT16_MAX + +static const char *TAG = "dsps_cplx_gen"; + +esp_err_t dsps_cplx_gen_init(cplx_sig_t *cplx_gen, out_d_type d_type, void *lut, int32_t lut_len, float freq, float initial_phase) +{ + cplx_gen->lut_len = lut_len; + cplx_gen->freq = freq; + cplx_gen->lut = lut; + cplx_gen->free_status = 0; + cplx_gen->d_type = d_type; + cplx_gen->phase = initial_phase; + + // length of the LUT must be power of 2 + if (!dsp_is_power_of_two(lut_len)) { + ESP_LOGE(TAG, "The length of the LUT must be power of 2"); + return ESP_ERR_DSP_INVALID_LENGTH; + } + + // LUT length must be in a range from 256 to 8192 + if ((lut == NULL) && ((cplx_gen->lut_len > 8192) || (cplx_gen->lut_len < 256))) { + ESP_LOGE(TAG, "The length of the LUT table out of range. Valid range is 256 to 8192"); + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + + // frequency is a Nyquist frequency, must be in a range from (-1 to 1) + if ((cplx_gen->freq >= 1) || (cplx_gen->freq <= -1)) { + ESP_LOGE(TAG, "The frequency is out of range. Valid range is +/- 1. "); + return ESP_ERR_DSP_INVALID_PARAM; + } + + // initial phase in a range from (-1 to 1) + if ((cplx_gen->phase >= 1) || (cplx_gen->phase <= -1)) { + ESP_LOGE(TAG, "The phase is out of range. Valid range is +/- 1. "); + return ESP_ERR_DSP_INVALID_PARAM; + } + + // LUT table coefficients generation + if (lut == NULL) { // lut has not been provided by an user. Allocate and initialize it + cplx_gen->free_status |= 0x0001; // lut has been allocated, free_status indicates that the space must be freed afterwards + + if (cplx_gen->d_type == S16_FIXED) { // Q15 fixed point + int16_t *local_lut = (int16_t *)malloc(cplx_gen->lut_len * sizeof(int16_t)); + + float term; + for (int i = 0 ; i < cplx_gen->lut_len; i++) { + term = (2.0 * M_PI) * ((float)(i) / (float)(cplx_gen->lut_len)); + local_lut[i] = (int16_t)(sin(term) * Q15_MAX); // conversion to Q15 fixed point + } + cplx_gen->lut = (void *)local_lut; + } else if (cplx_gen->d_type == F32_FLOAT) { // Single precision floating point + float *local_lut = (float *)malloc(cplx_gen->lut_len * sizeof(float)); + + float term; + for (int i = 0 ; i < cplx_gen->lut_len; i++) { + term = (2.0 * M_PI) * ((float)(i) / (float)(cplx_gen->lut_len)); + local_lut[i] = (float)sin(term); + } + cplx_gen->lut = (void *)local_lut; + } else { + cplx_gen->lut = NULL; + return ESP_ERR_DSP_INVALID_PARAM; + } + } + return ESP_OK; +} + +esp_err_t dsps_cplx_gen_freq_set(cplx_sig_t *cplx_gen, float freq) +{ + if ((freq >= 1) || (freq <= -1)) { // frequency is a Nyquist frequency, must be in a range from (-1 to 1) + ESP_LOGE(TAG, "The frequency is out of range. Valid range is +/- 1. "); + return ESP_ERR_DSP_INVALID_PARAM; + } + + cplx_gen->freq = freq; + return ESP_OK; +} + +float dsps_cplx_gen_freq_get(cplx_sig_t *cplx_gen) +{ + // Check if the structure was initialized + if (!dsp_is_power_of_two(cplx_gen->lut_len)) { + ESP_LOGE(TAG, "cplx_gen strucure was not initialized"); + return -2; + } + + return (cplx_gen->freq); +} + +esp_err_t dsps_cplx_gen_phase_set(cplx_sig_t *cplx_gen, float phase) +{ + if ((phase >= 1) || (phase <= -1)) { // initial phase in a range from (-1 to 1) + ESP_LOGE(TAG, "The phase is out of range. Valid range is +/- 1. "); + return ESP_ERR_DSP_INVALID_PARAM; + } + + cplx_gen->phase = phase; + return ESP_OK; +} + +float dsps_cplx_gen_phase_get(cplx_sig_t *cplx_gen) +{ + // Check if the structure was initialized + if (!dsp_is_power_of_two(cplx_gen->lut_len)) { + ESP_LOGE(TAG, "cplx_gen strucure was not initialized"); + return -2; + } + + return (cplx_gen->phase); +} + +esp_err_t dsps_cplx_gen_set(cplx_sig_t *cplx_gen, float freq, float phase) +{ + if ((freq >= 1) || (freq <= -1)) { // frequency is a Nyquist frequency, must be in a range from (-1 to 1) + ESP_LOGE(TAG, "The frequency is out of range. Valid range is +/- 1. "); + return ESP_ERR_DSP_INVALID_PARAM; + } + + if ((phase >= 1) || (phase <= -1)) { // phase in a range from (-1 to 1) + ESP_LOGE(TAG, "The phase is out of range. Valid range is +/- 1. "); + return ESP_ERR_DSP_INVALID_PARAM; + } + + cplx_gen->phase = phase; + cplx_gen->freq = freq; + return ESP_OK; +} + +void cplx_gen_free(cplx_sig_t *cplx_gen) +{ + if (cplx_gen->free_status & 0x0001) { + free(cplx_gen->lut); + cplx_gen->free_status = 0; + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/test/test_cplx_gen.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/test/test_cplx_gen.c new file mode 100644 index 0000000..24e513b --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/cplx_gen/test/test_cplx_gen.c @@ -0,0 +1,260 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" +#include "esp_dsp.h" +#include + +#include "dsp_tests.h" +#include "dsps_cplx_gen.h" +#include "dsps_wind.h" +#include "dsps_view.h" +#include "dsps_fft2r.h" + +#define LEAKAGE_BINS 10 // fft leakage bins + +static const char *TAG = "dsps_cplx_gen"; + +// Error message handler function, which detects errors returned by dsps_cplx_gen_init() function +void error_msg_handler(cplx_sig_t *cplx_signal, esp_err_t status) +{ + if (status != ESP_OK) { + cplx_gen_free(cplx_signal); + + switch (status) { + case ESP_ERR_DSP_INVALID_LENGTH: + TEST_ASSERT_MESSAGE(false, "LUT table has invalid length, must be power of 2"); + break; + case ESP_ERR_DSP_PARAM_OUTOFRANGE: + TEST_ASSERT_MESSAGE(false, "LUT table length must be in a range from 256 to 8192"); + break; + case ESP_ERR_DSP_INVALID_PARAM: + TEST_ASSERT_MESSAGE(false, "Frequency and initial phase must be in a range from -1 to 1"); + break; + default: + TEST_ASSERT_MESSAGE(false, "Unspecified error"); + break; + } + } +} + +TEST_CASE("cplx_gen_functionality_test", "[dsps]") +{ + const int32_t out_len = 4096; + const int32_t lut_len = 1024; + const float frequency = 0.001; + const float init_phase = 0.1; + + cplx_sig_t cplx_signal, cplx_signal_compare; + + // F32 float + esp_err_t status1 = dsps_cplx_gen_init(&cplx_signal, F32_FLOAT, NULL, lut_len, frequency, init_phase); + error_msg_handler(&cplx_signal, status1); + esp_err_t status2 = dsps_cplx_gen_init(&cplx_signal_compare, F32_FLOAT, cplx_signal.lut, lut_len, frequency, init_phase); + error_msg_handler(&cplx_signal_compare, status2); + + float *out_array_float = (float *)malloc(out_len * 2 * sizeof(float)); // times 2 for real and complex part + float *out_array_compare_float = (float *)malloc(out_len * 2 * sizeof(float)); + + dsps_cplx_gen_ansi(&cplx_signal_compare, (void *)out_array_compare_float, out_len); + dsps_cplx_gen(&cplx_signal, (void *)out_array_float, out_len); + + for (int i = 0; i < out_len * 2; i++) { + TEST_ASSERT_EQUAL(out_array_compare_float[i], out_array_float[i]); + } + + free(out_array_float); + free(out_array_compare_float); + cplx_gen_free(&cplx_signal); + cplx_gen_free(&cplx_signal_compare); + + // S16 fixed + status1 = dsps_cplx_gen_init(&cplx_signal, S16_FIXED, NULL, lut_len, frequency, init_phase); + error_msg_handler(&cplx_signal, status1); + status2 = dsps_cplx_gen_init(&cplx_signal_compare, S16_FIXED, cplx_signal.lut, lut_len, frequency, init_phase); + error_msg_handler(&cplx_signal_compare, status2); + + int16_t *out_array_fixed = (int16_t *)malloc(out_len * 2 * sizeof(int16_t)); // times 2 for real and complex part + int16_t *out_array_compare_fixed = (int16_t *)malloc(out_len * 2 * sizeof(int16_t)); + + dsps_cplx_gen_ansi(&cplx_signal_compare, (void *)out_array_compare_fixed, out_len); + dsps_cplx_gen(&cplx_signal, (void *)out_array_fixed, out_len); + + for (int i = 0; i < out_len * 2; i++) { + TEST_ASSERT_EQUAL(out_array_compare_fixed[i], out_array_fixed[i]); + } + + free(out_array_fixed); + free(out_array_compare_fixed); + cplx_gen_free(&cplx_signal); + cplx_gen_free(&cplx_signal_compare); +} + + +TEST_CASE("cplx_gen_benchmark_test", "[dsps]") +{ + int32_t out_len = 32; + const int32_t lut_len = 256; + const float frequency = 0.02; + const float init_phase = 0.9; + const int repeat_count = 4; + + cplx_sig_t cplx_signal_float, cplx_signal_fixed; + + esp_err_t status1 = dsps_cplx_gen_init(&cplx_signal_float, F32_FLOAT, NULL, lut_len, frequency, init_phase); + error_msg_handler(&cplx_signal_float, status1); + esp_err_t status2 = dsps_cplx_gen_init(&cplx_signal_fixed, S16_FIXED, NULL, lut_len, frequency, init_phase); + error_msg_handler(&cplx_signal_fixed, status2); + + float *out_array_float = (float *)malloc(out_len * 2 * 32 * sizeof(float)); // 8192 (max_out len) * 2 (real and imaginary) + int16_t *out_array_fixed = (int16_t *)malloc(out_len * 2 * 32 * sizeof(int16_t)); + + for (int i = 0; i < 6; i++) { + const unsigned int start_float = xthal_get_ccount(); + for (int j = 0 ; j < repeat_count ; j++) { + dsps_cplx_gen(&cplx_signal_float, (void *)out_array_float, out_len); + } + const unsigned int end_float = xthal_get_ccount(); + + const unsigned int start_fixed = xthal_get_ccount(); + for (int j = 0 ; j < repeat_count ; j++) { + dsps_cplx_gen(&cplx_signal_fixed, (void *)out_array_fixed, out_len); + } + const unsigned int end_fixed = xthal_get_ccount(); + + const float total_float = end_float - start_float; + const float total_fixed = end_fixed - start_fixed; + const float cycles_float = total_float / (float)(repeat_count); + const float cycles_fixed = total_fixed / (float)(repeat_count); + const float cycles_per_lut_sample_float = total_float / (float)(out_len * repeat_count); + const float cycles_per_lut_sample_fixed = total_fixed / (float)(out_len * repeat_count); + + ESP_LOGI(TAG, "Float : %.2f total cycles, %.2f cycles per sample, for %"PRId32" LUT samples, %"PRId32" output array length", + cycles_float, cycles_per_lut_sample_float, lut_len, out_len); + + ESP_LOGI(TAG, "Fixed : %.2f total cycles, %.2f cycles per sample, for %"PRId32" LUT samples, %"PRId32" output array length \n", + cycles_fixed, cycles_per_lut_sample_fixed, lut_len, out_len); + + out_len *= 2; + } + + free(out_array_fixed); + free(out_array_float); + cplx_gen_free(&cplx_signal_float); + cplx_gen_free(&cplx_signal_fixed); +} + + +TEST_CASE("cplx_gen_noise_SNR_test", "[dsps]") +{ + const int32_t out_len = 2048; + const int32_t lut_len = 8192; + const int32_t n_fft = out_len * 2; // * 2 (real and imaginary) + const float frequency = 0.01; + const float init_phase = 0.0; + const float real_ampl = 0.5; + const float imag_ampl = 0.2; + + cplx_sig_t cplx_signal_float; + + esp_err_t status = dsps_cplx_gen_init(&cplx_signal_float, F32_FLOAT, NULL, lut_len, frequency, init_phase); + error_msg_handler(&cplx_signal_float, status); + + float *out_array_float = (float *)memalign(16, n_fft * sizeof(float)); + dsps_cplx_gen(&cplx_signal_float, (void *)out_array_float, out_len); + + // Signal windowing + float *window = (float *)memalign(16, out_len * sizeof(float)); + dsps_wind_blackman_harris_f32(window, out_len); + + for (int i = 0 ; i < out_len ; i++) { + out_array_float[i * 2 + 0] *= (window[i] * real_ampl); + out_array_float[i * 2 + 1] *= (window[i] * imag_ampl); + } + free(window); + + // Initialize FFT + esp_err_t ret = dsps_fft2r_init_fc32(NULL, n_fft); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Not possible to initialize FFT. Error = %i", ret); + return; + } + + // Do the FFT + dsps_fft2r_fc32(out_array_float, out_len); + dsps_bit_rev_fc32(out_array_float, out_len); + dsps_cplx2reC_fc32(out_array_float, out_len); + + // Convert the FFT spectrum from amplitude to watts, find the max value and its position + float max_val_1 = -1000000, max_val_2 = -1000000; + int max_pos_1 = 0, max_pos_2 = 0, spur_pos_1 = 0, spur_pos_2 = 0; + for (int i = 0 ; i < n_fft / 2 ; i++) { + out_array_float[i] = (out_array_float[i * 2 + 0] * out_array_float[i * 2 + 0] + out_array_float[i * 2 + 1] * out_array_float[i * 2 + 1]) / (n_fft * 3); + if (i < n_fft / 4) { + if (out_array_float[i] > max_val_1) { + max_val_1 = out_array_float[i]; + max_pos_1 = i; + } + } else { + if (out_array_float[i] > max_val_2) { + max_val_2 = out_array_float[i]; + max_pos_2 = i; + } + } + } + + // Calculate the power of the signal and noise of the spectrum and convert the spectrum to dB + float signal_pow_1 = 0, signal_pow_2 = 0, noise_pow_1 = 0, noise_pow_2 = 0; + float spur_1 = -1000000, spur_2 = -1000000; + for (int i = 0 ; i < n_fft / 2 ; i++) { + if (i < n_fft / 4) { + if ((i >= max_pos_1 - LEAKAGE_BINS) && (i <= max_pos_1 + LEAKAGE_BINS)) { + signal_pow_1 += out_array_float[i]; + } else { + noise_pow_1 += out_array_float[i]; + if (out_array_float[i] > spur_1) { + spur_1 = out_array_float[i]; + spur_pos_1 = i; + } + } + } else { + if ((i >= max_pos_2 - LEAKAGE_BINS) && (i <= max_pos_2 + LEAKAGE_BINS)) { + signal_pow_2 += out_array_float[i]; + } else { + noise_pow_2 += out_array_float[i]; + if (out_array_float[i] > spur_2) { + spur_2 = out_array_float[i]; + spur_pos_2 = i; + } + } + } + out_array_float[i] = 10 * log10f(0.0000000000001 + out_array_float[i]); + } + + // Convert the signal power and noise power from watts to dB and calculate SNR and SFDR + const float snr_1 = 10 * log10f(signal_pow_1 / noise_pow_1); + const float snr_2 = 10 * log10f(signal_pow_2 / noise_pow_2); + noise_pow_1 = 10 * log10f(noise_pow_1); + noise_pow_2 = 10 * log10f(noise_pow_2); + signal_pow_1 = 10 * log10f(signal_pow_1); + signal_pow_2 = 10 * log10f(signal_pow_2); + const float sfdr_1 = out_array_float[max_pos_1] - out_array_float[spur_pos_1]; + const float sfdr_2 = out_array_float[max_pos_2] - out_array_float[spur_pos_2]; + + ESP_LOGI(TAG, "\nSignal Power: \t%f\nNoise Power: \t%f\nSNR: \t\t%f \nSFDR: \t\t%f", signal_pow_1, noise_pow_1, snr_1, sfdr_1); + dsps_view(out_array_float, n_fft / 4, 128, 16, -140, 40, '|'); + putchar('\n'); + + ESP_LOGI(TAG, "\nSignal Power: \t%f\nNoise Power: \t%f\nSNR: \t\t%f \nSFDR: \t\t%f", signal_pow_2, noise_pow_2, snr_2, sfdr_2); + dsps_view(out_array_float + (n_fft / 4), n_fft / 4, 128, 16, -140, 40, '|'); + + free(out_array_float); + cplx_gen_free(&cplx_signal_float); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_cplx_gen.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_cplx_gen.h new file mode 100644 index 0000000..105a708 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_cplx_gen.h @@ -0,0 +1,187 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef _dsps_cplx_gen_H_ +#define _dsps_cplx_gen_H_ + +#include "dsp_err.h" +#include "dsps_cplx_gen_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + + +/** + * @brief Ennum defining output data type of the complex generator + * + */ +typedef enum output_data_type { + S16_FIXED = 0, /*!< Q15 fixed point - int16_t*/ + F32_FLOAT = 1, /*!< Single precision floating point - float*/ +} out_d_type; + + +/** + * @brief Data struct of the complex signal generator + * + * This structure is used by a complex generator internally. A user should access this structure only in case of + * extensions for the DSP Library. + * All the fields of this structure are initialized by the dsps_cplx_gen_init(...) function. + */ +typedef struct cplx_sig_s { + void *lut; /*!< Pointer to the lookup table.*/ + int32_t lut_len; /*!< Length of the lookup table.*/ + float freq; /*!< Frequency of the output signal. Nyquist frequency -1 ... 1*/ + float phase; /*!< Phase (initial_phase during init)*/ + out_d_type d_type; /*!< Output data type*/ + int16_t free_status; /*!< Indicator for cplx_gen_free(...) function*/ +} cplx_sig_t; + + +/** + * @brief Initialize strucure for complex generator + * + * Function initializes a structure for either 16-bit fixed point, or 32-bit floating point complex generator using LUT table. + * cplx_gen_free(...) must be called, once the generator is not needed anymore to free dynamically allocated memory + * + * A user can specify his own LUT table and pass a pointer to the table (void *lut) during the initialization. If the LUT table + * pointer passed to the init function is a NULL, the LUT table is initialized internally. + * + * @param cplx_gen: pointer to the floating point generator structure + * @param d_type: output data type - out_d_type enum + * @param lut: pointer to a user-defined LUT, the data type is void so both (S16_FIXED, F32_FLOAT) types could be used + * @param lut_len: length of the LUT + * @param freq: Frequency of the output signal in a range of [-1...1], where 1 is a Nyquist frequency + * @param initial_phase: initial phase of the complex signal in range of [-1..1] where 1 is related to 2Pi and -1 is related to -2Pi + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_cplx_gen_init(cplx_sig_t *cplx_gen, out_d_type d_type, void *lut, int32_t lut_len, float freq, float initial_phase); + + +/** + * @brief function sets the output frequency of the complex generator + * + * set function can be used after the cplx_gen structure was initialized by the dsps_cplx_gen_init(...) function + * + * @param cplx_gen: pointer to the complex signal generator structure + * @param freq: new frequency to be set in a range of [-1..1] where 1 is a Nyquist frequency + * + * @return + * - ESP_OK on success + * - ESP_ERR_DSP_INVALID_PARAM if the frequency is out of the Nyquist frequency range + */ +esp_err_t dsps_cplx_gen_freq_set(cplx_sig_t *cplx_gen, float freq); + + +/** + * @brief function gets the output frequency of the complex generator + * + * get function can be used after the cplx_gen structure was initialized by the dsps_cplx_gen_init(...) function + * + * @param cplx_gen: pointer to the complex signal generator structure + * + * @return function returns frequency of the signal generator + */ +float dsps_cplx_gen_freq_get(cplx_sig_t *cplx_gen); + + +/** + * @brief function sets the phase of the complex generator + * + * set function can be used after the cplx_gen structure was initialized by the dsps_cplx_gen_init(...) function + * + * @param cplx_gen: pointer to the complex signal generator structure + * @param phase: new phase to be set in the range of [-1..1] where 1 is related to 2Pi and -1 is related to -2Pi + * + * @return + * - ESP_OK on success + * - ESP_ERR_DSP_INVALID_PARAM if the phase is out of -1 ... 1 range + */ +esp_err_t dsps_cplx_gen_phase_set(cplx_sig_t *cplx_gen, float phase); + + +/** + * @brief function gets the phase of the complex generator + * + * get function can be used after the cplx_gen structure was initialized by the dsps_cplx_gen_init(...) function + * + * @param cplx_gen: pointer to the complex signal generator structure + * + * @return function returns phase of the signal generator + */ +float dsps_cplx_gen_phase_get(cplx_sig_t *cplx_gen); + + +/** + * @brief function sets the output frequency and the phase of the complex generator + * + * set function can be used after the cplx_gen structure was initialized by the dsps_cplx_gen_init(...) function + * + * @param cplx_gen: pointer to the complex signal generator structure + * @param freq: new frequency to be set in the range of [-1..1] where 1 is a Nyquist frequency + * @param phase: new phase to be set in the range of [-1..1] where 1 is related to 2Pi and -1 is related to -2Pi + * + * @return + * - ESP_OK on success + * - ESP_ERR_DSP_INVALID_PARAM if the frequency is out of the Nyquist frequency range + * if the phase is out of -1 ... 1 range + */ +esp_err_t dsps_cplx_gen_set(cplx_sig_t *cplx_gen, float freq, float phase); + + +/** + * @brief function frees dynamically allocated memory, which was allocated in the init function + * + * free function must be called after the dsps_cplx_gen_init(...) is called, once the complex generator is not + * needed anymore + * + * @param cplx_gen: pointer to the complex signal generator structure + */ +void cplx_gen_free(cplx_sig_t *cplx_gen); + + +/** + * @brief The function generates a complex signal + * + * the generated complex signal is in the form of two harmonics signals in either 16-bit signed fixed point + * or 32-bit floating point + * + * x[i]= A*sin(step*i + ph/180*Pi) + * x[i+1]= B*cos(step*i + ph/180*Pi) + * where step = 2*Pi*frequency + * + * dsps_cplx_gen_ansi() - The implementation uses ANSI C and could be compiled and run on any platform + * dsps_cplx_gen_ae32() - Is targetted for Xtensa cores + * + * @param cplx_gen: pointer to the generator structure + * @param output: output array (length of len*2), data type is void so both (S16_FIXED, F32_FLOAT) types could be used + * @param len: length of the output signal + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_cplx_gen_ansi(cplx_sig_t *cplx_gen, void *output, int32_t len); +esp_err_t dsps_cplx_gen_ae32(cplx_sig_t *cplx_gen, void *output, int32_t len); + + +#ifdef __cplusplus +} +#endif + + +#if CONFIG_DSP_OPTIMIZED +#define dsps_cplx_gen dsps_cplx_gen_ae32 +#else // CONFIG_DSP_OPTIMIZED +#define dsps_cplx_gen dsps_cplx_gen_ansi +#endif // CONFIG_DSP_OPTIMIZED + +#endif // _dsps_cplx_gen_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_cplx_gen_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_cplx_gen_platform.h new file mode 100644 index 0000000..67822d6 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_cplx_gen_platform.h @@ -0,0 +1,30 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef _dsps_cplx_gen_platform_H_ +#define _dsps_cplx_gen_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#if CONFIG_IDF_TARGET_ESP32S3 +#define dsps_cplx_gen_aes3_enbled 1 +#define dsps_cplx_gen_ae32_enbled 0 + +#elif CONFIG_IDF_TARGET_ESP32 +#define dsps_cplx_gen_ae32_enbled 1 +#define dsps_cplx_gen_aes3_enbled 0 + +#endif // CONFIG_IDF_TARGET_ESP32S3 CONFIG_IDF_TARGET_ESP32 +#endif // +#endif // __XTENSA__ +#endif // _dsps_cplx_gen_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_d_gen.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_d_gen.h new file mode 100644 index 0000000..a417d13 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_d_gen.h @@ -0,0 +1,47 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_d_gen_H_ +#define _dsps_d_gen_H_ +#include "dsp_err.h" + + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief delta function + * + * The function generate delta function. + * output[i]=0, if i=[0..N) + * output[i]=1, if i=pos, pos: [0..N-1) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param output: output array. + * @param len: length of the input signal + * @param pos: delta function position + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_d_gen_f32(float *output, int len, int pos); + +#ifdef __cplusplus +} +#endif + +#endif // _dsps_d_gen_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_h_gen.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_h_gen.h new file mode 100644 index 0000000..96512f4 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_h_gen.h @@ -0,0 +1,48 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_h_gen_H_ +#define _dsps_h_gen_H_ +#include "dsp_err.h" + + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief Heviside function + * + * The Heviside function. + * output[i]=0, if i=[0..pos) + * output[i]=1, if i=[pos..N) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param output: output array. + * @param len: length of the input signal + * @param pos: heviside function position + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ + +esp_err_t dsps_h_gen_f32(float *output, int len, int pos); + +#ifdef __cplusplus +} +#endif + +#endif // _dsps_h_gen_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_sfdr.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_sfdr.h new file mode 100644 index 0000000..6be1ec4 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_sfdr.h @@ -0,0 +1,51 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_sfdr_H_ +#define _dsps_sfdr_H_ + + +#include "dsp_err.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief SFDR + * + * The function calculates Spurious-Free Dynamic Range. + * The function makes FFT of the input, then search a spectrum maximum, and then compare + * maximum value with all others. Result calculated as minimum value. + * This function have to be used for debug and unit tests only. It's not optimized for real-time processing. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param[in] input: input array. + * @param len: length of the input signal + * @param use_dc: this parameter define will be DC value used for calculation or not. + * 0 - SNR will not include DC power + * 1 - SNR will include DC power + * + * @return + * - SFDR in DB + */ +float dsps_sfdr_f32(const float *input, int32_t len, int8_t use_dc); +float dsps_sfdr_fc32(const float *input, int32_t len); + +#ifdef __cplusplus +} +#endif + +#endif // _dsps_sfdr_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_snr.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_snr.h new file mode 100644 index 0000000..7210209 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_snr.h @@ -0,0 +1,51 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _DSP_SNR_H_ +#define _DSP_SNR_H_ + +#include "dsp_err.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief SNR + * + * The function calculates signal to noise ration in case if signal is sine tone. + * The function makes FFT of the input, then search a spectrum maximum, and then calculated + * SNR as sum of all harmonics to the maximum value. + * This function have to be used for debug and unit tests only. It's not optimized for real-time processing. + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param input: input array. + * @param len: length of the input signal + * @param use_dc: this parameter define will be DC value used for calculation or not. + * 0 - SNR will not include DC power + * 1 - SNR will include DC power + * + * @return + * - SNR in dB + */ +float dsps_snr_f32(const float *input, int32_t len, uint8_t use_dc); +float dsps_snr_fc32(const float *input, int32_t len); + + +#ifdef __cplusplus +} +#endif + +#endif // _DSP_SNR_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_tone_gen.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_tone_gen.h new file mode 100644 index 0000000..cd11900 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_tone_gen.h @@ -0,0 +1,48 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_tone_gen_H_ +#define _dsps_tone_gen_H_ +#include "dsp_err.h" + + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief tone + * + * The function generate a tone signal. + * x[i]=A*sin(2*PI*i + ph/180*PI) + * The implementation use ANSI C and could be compiled and run on any platform + * + * @param output: output array. + * @param len: length of the input signal + * @param Ampl: amplitude + * @param freq: Naiquist frequency -1..1 + * @param phase: phase in degree + * + * @return + * - ESP_OK on success + * - One of the error codes from DSP library + */ +esp_err_t dsps_tone_gen_f32(float *output, int len, float Ampl, float freq, float phase); + +#ifdef __cplusplus +} +#endif + +#endif // _dsps_tone_gen_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_view.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_view.h new file mode 100644 index 0000000..0f3e6b3 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/include/dsps_view.h @@ -0,0 +1,64 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#ifndef _dsps_view_H_ +#define _dsps_view_H_ + +#include "dsp_err.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/**@{*/ +/** + * @brief plot view + * + * Generic view function. + * This function takes input samples and show then in console view as a plot. + * The main purpose to give and draft debug information to the DSP developer. + * + * @param[in] data: array with input samples. + * @param len: length of the input array + * @param width: plot width in symbols + * @param height: plot height in lines + * @param min: minimum value that will be limited by Axis Y. + * @param max: maximum value that will be limited by Axis Y. + * @param view_char: character to draw the plot calues ('.' or '|' etc) + * + */ +void dsps_view(const float *data, int32_t len, int width, int height, float min, float max, char view_char); +void dsps_view_s16(const int16_t *data, int32_t len, int width, int height, float min, float max, char view_char); +/**@}*/ + +/** + * @brief spectrum view + * + * The view function to show spectrum values in 64x10 screen. + * The function based on dsps_view. + * + * @param[in] data: array with input samples. + * @param len: length of the input array + * @param min: minimum value that will be limited by Axis Y. + * @param max: maximum value that will be limited by Axis Y. + * + */ +void dsps_view_spectrum(const float *data, int32_t len, float min, float max); + +#ifdef __cplusplus +} +#endif + +#endif // _dsps_view_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/esp32s3/dsps_memcpy_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/esp32s3/dsps_memcpy_aes3.S new file mode 100644 index 0000000..06ba274 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/esp32s3/dsps_memcpy_aes3.S @@ -0,0 +1,340 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_mem_platform.h" +#if dsps_mem_aes3_enbled + +// This is memory access for ESP32S3 processor. + .text + .align 4 + .global dsps_memcpy_aes3 + .type dsps_memcpy_aes3,@function +// The function implements the following C code: +// void *dsps_memcpy_aes3(void *arr_dest, const void *arr_src, size_t arr_len); + +// Input params Variables +// +// arr_dest - a2 loop_len - a5, a6 +// arr_src - a3 p_arr_des - a7 +// arr_len - a4 div_48 - a8 +// align_mask - a9 + +/* +esp32s3 optimized memcpy function works with both, aligned and unaligned data. + +arr_dest aligned --> - _main_loop_aligned, 32 bytes in one run through the cycle, only aligned data +arr_src aligned / - Check modulos to finish copying the remaining data outside of the cycle + - Modulo 8 and 16 - S3 instructions for aligned data, the rest of the modulos are generic + +arr_dest aligned ---> - _main_loop_unaligned, 48 bytes of source unaligned data in one run through the cycle, +arr_src unaligned / (the destination must always be aligned) + - Check modulos to finish copying remaining data outside of the cycle + - Modulo 32 and 16 - S3 instructions for unaligned data, the rest of the modulos are generic + +arr_dest unaligned -> - First, use generic instructions to align the arr_dest data (keep increasing +arr_src aligned / the arr_dest pointer until the pointer is aligned) + - Once arr_dest is aligned treat the rest of the data as: + either both aligned (if arr_src happens to be aligned after the arr_dest aligning), + or as arr_dest aligned and arr_src unaligned + - Continue as mentioned above + +arr_dest unaligned -> - Very same approach as with arr_dest unaligned and arr_src aligned +arr_src unaligned / + +if the arr_len is less than 16, jump to _less_than_16 label and copy data without any s3 instructions or cycles +*/ +#define MEMCPY_OPTIMIZED 1 // Use optimized memcpy or ANSI memcpy +#define TIE_ENABLE 0 // Put a dummy TIE instruction to the ANSI memcpy to induce TIE context saving + +dsps_memcpy_aes3: + +#if MEMCPY_OPTIMIZED + + // S3 optimized version of the memcpy (with TIE instrucstions) + + entry a1, 32 + mov a7, a2 // a7 - save arr_dest pointer + + blti a4, 16, _less_than_16 + + // arr_dest alignment check + movi.n a9, 0xf // 0xf alignment mask + and a13, a9, a2 // 0xf AND arr_dest pointer + beqz a13, _arr_dest_aligned + + movi.n a14, 16 // a14 - 16 + sub a13, a14, a13 // a13 = 16 - unalignment + sub a4, a4, a13 // len = len - (16 - unalignment) + + // Aligning the arr_dest + // keep copying until arr_dest is aligned + + // Check modulo 8 of the unalignment, if - then copy 8 bytes + bbci a13, 3, _aligning_mod_8_check // branch if 3-rd bit of unalignment a13 is clear + l32i.n a15, a3, 0 // load 32 bits from arr_src a3 to a15, offset 0 + l32i.n a14, a3, 4 // load 32 bits from arr_src a3 to a14, offset 4 + s32i.n a15, a2, 0 // save 32 bits from a15 to arr_dest a2, offset 0 + s32i.n a14, a2, 4 // save 32 bits from a14 to arr_dest a2, offset 4 + addi.n a3, a3, 8 // increment arr_src pointer by 8 bytes + addi.n a2, a2, 8 // increment arr_dest pointer by 8 bytes + _aligning_mod_8_check: + + // Check modulo 4 of the unalignment, if - then copy 4 bytes + bbci a13, 2, _aligning_mod_4_check // branch if 2-nd bit of unalignment a13 is clear + l32i.n a15, a3, 0 // load 32 bits from arr_src a3 to a15 + addi.n a3, a3, 4 // increment arr_src pointer by 4 bytes + s32i.n a15, a2, 0 // save 32 bits from a15 to arr_dest a2 + addi.n a2, a2, 4 // increment arr_dest pointer by 4 bytes + _aligning_mod_4_check: + + // Check modulo 2 of the unalignment, if - then copy 2 bytes + bbci a13, 1, _aligning_mod_2_check // branch if 1-st bit of unalignment a13 is clear + l16ui a15, a3, 0 // load 16 bits from arr_src a3 to a15 + addi.n a3, a3, 2 // increment arr_src pointer by 2 bytes + s16i a15, a2, 0 // save 16 bits from a15 to arr_dest a2 + addi.n a2, a2, 2 // increment arr_dest pointer by 2 bytes + _aligning_mod_2_check: + + // Check modulo 1 of the unalignment, if - then copy 1 byte + bbci a13, 0, _arr_dest_aligned // branch if 0-th bit of unalignment a13 is clear + l8ui a15, a3, 0 // load 8 bits from arr_src a3 to a15 + addi.n a3, a3, 1 // increment arr_src pointer by 1 byte + s8i a15, a2, 0 // save 8 bits from a15 to arr_dest a2 + addi.n a2, a2, 1 // increment arr_dest pointer by 1 byte + + _arr_dest_aligned: + + // arr_src alignment check + and a15, a9, a3 // 0xf (alignment mask) AND arr_src pointer + beqz a15, _arr_src_aligned + + // arr_src unaligned, arr_dest aligned (arr_des either aligned originally or modified to be aligned by the Aligning the arr_des routine) + + // Calculate modulo for non-aligned data + movi a8, 89478486 // a8 - div_48 constant + muluh a5, a8, a4 // a5 - loop_len = arr_len / 48 + movi a9, 48 // a9 - 48 + mul16s a8, a9, a5 // a8 - 48 * loop_len + sub a6, a4, a8 // a6 - loop_len_MOD 48 + + ee.ld.128.usar.ip q2, a3, 16 // Preload from arr_src + ee.ld.128.usar.ip q3, a3, 16 // Preload from arr_src + + // Main loop arr_src unaligned + loopnez a5, ._main_loop_unaligned // 48 bytes in one loop + ee.src.q.ld.ip q4, a3, 16, q2, q3 // preload and shift from arr_src + ee.vst.128.ip q2, a2, 16 // store to aligned arr_dest + ee.src.q.ld.ip q2, a3, 16, q3, q4 // preload and shift from arr_src + ee.vst.128.ip q3, a2, 16 // store to aligned arr_dest + ee.src.q.ld.ip q3, a3, 16, q4, q2 // preload and shift from arr_src + ee.vst.128.ip q4, a2, 16 // store to aligned arr_dest + ._main_loop_unaligned: + + // Finish the _main_loop_unaligned outside of the loop from Q registers preloads + // Check modulo 32 of the loop_len_MOD, if - then copy 32 bytes + bbci a6, 5, _unaligned_mod_32_check // branch if 5-th bit of loop_len_MOD a6 is clear + ee.src.q.ld.ip q4, a3, 0, q2, q3 // preload and shift from arr_src + ee.vst.128.ip q2, a2, 16 // store to aligned arr_dest + ee.src.q q3, q3, q4 // final shift + ee.vst.128.ip q3, a2, 16 // store to aligned arr_dest + j _follow_unaligned + _unaligned_mod_32_check: + + // Check modulo 16 of the loop_len_MOD, if - then copy 16 bytes + bbci a6, 4, _unaligned_mod_16_check // branch if 4-th bit of loop_len_MOD a6 is clear + ee.src.q q2, q2, q3 // final shift + ee.vst.128.ip q2, a2, 16 // store to aligned arr_dest + addi a3, a3, -16 // put arr_src pointer back + j _follow_unaligned + _unaligned_mod_16_check: + + addi a3, a3, -32 // put arr_src pointer back + + // Finish the _main_loop_unaligned outside of the loop + // Check modulo 8 of the loop_len_MOD, if - then copy 8 bytes + _follow_unaligned: + bbci a6, 3, _unaligned_mod_8_check // branch if 3-rd bit of loop_len_MOD a6 is clear + l32i.n a15, a3, 0 // load 32 bits from arr_src a3 to a15, offset 0 + l32i.n a14, a3, 4 // load 32 bits from arr_src a3 to a14, offset 4 + s32i.n a15, a2, 0 // save 32 bits from a15 to arr_dest a2, offset 0 + s32i.n a14, a2, 4 // save 32 bits from a14 to arr_dest a2, offset 4 + addi.n a3, a3, 8 // increment arr_src pointer by 8 bytes + addi.n a2, a2, 8 // increment arr_dest pointer by 8 bytes + _unaligned_mod_8_check: + + // Finish the rest of the data, as if the data were aligned, no S3 instructions will be used further after the jump + j _aligned_mod_8_check + + // Both arrays (arr_src and arr_dest) aligned + _arr_src_aligned: + + // Calculate modulo 32 for aligned data + srli a5, a4, 5 // a5 - loop_len = arr_len / 32 + slli a6, a5, 5 + sub a6, a4, a6 // a6 - loop_len_MOD 32 + + // Main loop arr_src aligned + loopnez a5, ._main_loop_aligned // 32 bytes in one loop + ee.vld.128.ip q0, a3, 16 // load 16 bytes from arr_src to q0 + ee.vld.128.ip q1, a3, 16 // load 16 bytes from arr_src to q1 + + ee.vst.128.ip q0, a2, 16 // save 16 bytes to arr_dest from q0 + ee.vst.128.ip q1, a2, 16 // save 16 bytes to arr_dest from q1 + ._main_loop_aligned: + + // Modulo 32 check + beqz a6, _aligned_mod_32_check // branch if mod_32 = 0 + + // finish the end of the array outside of the main loop + // Check modulo 16 of the loop_len_MOD, if - then copy 16 bytes + bbci a6, 4, _aligned_mod_16_check // branch if 4-th bit of loop_len_MOD a6 is clear + ee.vld.128.ip q0, a3, 16 // load 128 bits from arr_src to q0, increase arr_src pointer by 16 bytes + ee.vst.128.ip q0, a2, 16 // save 128 bits to arr_dest from q0, increase arr_dest pointer by 16 bytes + _aligned_mod_16_check: + + // Check modulo 8 of the loop_len_MOD, if - then copy 8 bytes + bbci a6, 3, _aligned_mod_8_check // branch if 3-rd bit of loop_len_MOD a6 is clear + ee.vld.l.64.ip q0, a3, 8 // load lower 64 bits from arr_src a3 to q0, increase arr_src pointer by 8 bytes + ee.vst.l.64.ip q0, a2, 8 // save lower 64 bits from q0 to arr_dest a2, increase arr_dest pointer by 8 bytes + _aligned_mod_8_check: + + // Check modulo 4 of the loop_len_MOD, if - then copy 4 bytes + bbci a6, 2, _aligned_mod_4_check // branch if 2-nd bit of loop_len_MOD a6 is clear + l32i.n a15, a3, 0 // load 32 bits from arr_src a3 to a15 + addi.n a3, a3, 4 // increment arr_src pointer by 4 bytes + s32i.n a15, a2, 0 // save 32 bits from a15 to arr_dest a2 + addi.n a2, a2, 4 // increment arr_dest pointer by 4 bytes + _aligned_mod_4_check: + + // Check modulo 2 of the loop_len_MOD, if - then copy 2 bytes + bbci a6, 1, _aligned_mod_2_check // branch if 1-st bit of loop_len_MOD a6 is clear + l16ui a15, a3, 0 // load 16 bits from arr_src a3 to a15 + addi.n a3, a3, 2 // increment arr_src pointer by 2 bytes + s16i a15, a2, 0 // save 16 bits from a15 to arr_dest a2 + addi.n a2, a2, 2 // increment arr_dest pointer by 2 bytes + _aligned_mod_2_check: + + // Check modulo 1 of the loop_len_MOD, if - then copy 1 byte + bbci a6, 0, _aligned_mod_32_check // branch if 0-th bit of loop_len_MOD a6 is clear + l8ui a15, a3, 0 // load 8 bits from arr_src a3 to a15 + s8i a15, a2, 0 // save 8 bits from a15 to arr_dest a2 + + _aligned_mod_32_check: + + mov a2, a7 // copy the initial arr_dest pointer from a7 to arr_dest a2 + retw.n // return + + _less_than_16: + + // If the length of the copied array is lower than 16, it is faster not to use esp32s3-optimized functions + + // Check modulo 8 of the arr_len, if - then copy 8 bytes + bbci a4, 3, _less_than_16_mod_8_check // branch if 3-rd bit of arr_len a4 is clear + l32i.n a15, a3, 0 // load 32 bits from arr_src a3 to a15, offset 0 + l32i.n a14, a3, 4 // load 32 bits from arr_src a3 to a14, offset 4 + s32i.n a15, a2, 0 // save 32 bits from a15 to arr_dest a2, offset 0 + s32i.n a14, a2, 4 // save 32 bits from a14 to arr_dest a2, offset 4 + addi.n a3, a3, 8 // increment arr_src pointer by 8 bytes + addi.n a2, a2, 8 // increment arr_dest pointer by 8 bytes + _less_than_16_mod_8_check: + + // Check modulo 4 of the arr_len, if - then copy 4 bytes + bbci a4, 2, _less_than_16_mod_4_check // branch if 2-nd bit of arr_len a4 is clear + l32i.n a15, a3, 0 // load 32 bits from arr_src a3 to a15 + addi.n a3, a3, 4 // increment arr_src pointer by 4 bytes + s32i.n a15, a2, 0 // save 32 bits from a15 to arr_dest a2 + addi.n a2, a2, 4 // increment arr_dest pointer by 4 bytes + _less_than_16_mod_4_check: + + // Check modulo 2 of the arr_len, if - then copy 2 bytes + bbci a4, 1, _less_than_16_mod_2_check // branch if 1-st bit of arr_len a4 is clear + l16ui a15, a3, 0 // load 16 bits from arr_src a3 to a15 + addi.n a3, a3, 2 // increment arr_src pointer by 2 bytes + s16i a15, a2, 0 // save 16 bits from a15 to arr_dest a2 + addi.n a2, a2, 2 // increment arr_dest pointer by 2 bytes + _less_than_16_mod_2_check: + + // Check modulo 1 of the arr_len, if - then copy 1 byte + bbci a4, 0, _less_than_16_mod_1_check // branch if 0-th bit of arr_len a4 is clear + l8ui a15, a3, 0 // load 8 bits from arr_src a3 to a15 + s8i a15, a2, 0 // save 8 bits from a15 to arr_dest a2 + _less_than_16_mod_1_check: + + mov a2, a7 // copy the initial arr_dest pointer from a7 to arr_dest a2 + retw.n // return + + +#else // MEMCPY_OPTIMIZED + + // ansi version of the memcpy (without TIE instructions) for testing purposes + + entry a1, 32 + mov a7, a2 // a7 - save arr_dest pointer + + srli a5, a4, 4 // a5 - loop_len = arr_len / 16 + + // Run main loop which copies 16 bytes in one loop run + loopnez a5, ._ansi_loop + l32i.n a15, a3, 0 // load 32 bits from arr_src a3 to a15 + l32i.n a14, a3, 4 // load 32 bits from arr_src a3 to a14 + l32i.n a13, a3, 8 // load 32 bits from arr_src a3 to a13 + l32i.n a12, a3, 12 // load 32 bits from arr_src a3 to a13 + s32i.n a15, a2, 0 // save 32 bits from a15 to arr_dest a2 + s32i.n a14, a2, 4 // save 32 bits from a14 to arr_dest a2 + s32i.n a13, a2, 8 // save 32 bits from a13 to arr_dest a2 + s32i.n a12, a2, 12 // save 32 bits from a13 to arr_dest a2 + addi.n a3, a3, 16 // increment arr_src pointer by 12 bytes + addi.n a2, a2, 16 // increment arr_dest pointer by 12 bytes + ._ansi_loop: + + // Finish the remaining bytes out of the loop + // Check modulo 8 of the arr_len, if - then copy 8 bytes + bbci a4, 3, _mod_8_check // branch if 2-nd bit of arr_len a4 is clear + l32i.n a15, a3, 0 // load 32 bits from arr_src a3 to a15 + l32i.n a14, a3, 4 // load 32 bits from arr_src a3 to a15 + s32i.n a15, a2, 0 // save 32 bits from a15 to arr_dest a2 + s32i.n a14, a2, 4 // save 32 bits from a15 to arr_dest a2 + addi.n a3, a3, 8 // increment arr_src pointer by 4 bytes + addi.n a2, a2, 8 // increment arr_dest pointer by 4 bytes + _mod_8_check: + + // Check modulo 4 of the arr_len, if - then copy 4 bytes + bbci a4, 2, _mod_4_check // branch if 2-nd bit of arr_len a4 is clear + l32i.n a15, a3, 0 // load 32 bits from arr_src a3 to a15 + addi.n a3, a3, 4 // increment arr_src pointer by 4 bytes + s32i.n a15, a2, 0 // save 32 bits from a15 to arr_dest a2 + addi.n a2, a2, 4 // increment arr_dest pointer by 4 bytes + _mod_4_check: + + // Check modulo 2 of the arr_len, if - then copy 2 bytes + bbci a4, 1, _mod_2_check // branch if 1-st bit of arr_len a4 is clear + l16ui a15, a3, 0 // load 16 bits from arr_src a3 to a15 + addi.n a3, a3, 2 // increment arr_src pointer by 2 bytes + s16i a15, a2, 0 // save 16 bits from a15 to arr_dest a2 + addi.n a2, a2, 2 // increment arr_dest pointer by 2 bytes + _mod_2_check: + + // Check modulo 1 of the arr_len, if - then copy 1 byte + bbci a4, 0, _mod_1_check // branch if 0-th bit of arr_len a4 is clear + l8ui a15, a3, 0 // load 8 bits from arr_src a3 to a15 + s8i a15, a2, 0 // save 8 bits from a15 to arr_dest a2 + _mod_1_check: + + // if arr_len is shorter than 16, skip adding TIE instruction, to fix the panic handler before the main_app() loads + blti a4, 16, _less_than_16_1 // branch, if arr_len a4 is shorter than 16 bytes + #if TIE_ENABLE // put dummy TIE instruction to induce TIE context saving + ee.zero.qacc // initialize q0 to zero (dummy instruction) + #else // TIE_ENABLE + nop // compensate one cycle, when TIE is disabled to get the same benchmark value + #endif // TIE_ENABLE + _less_than_16_1: + + mov a2, a7 // copy the initial arr_dest pointer from a7 to arr_dest a2 + retw.n // return + +#endif // MEMCPY_OPTIMIZED + +#endif // dsps_mem_aes3_enbled diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/esp32s3/dsps_memset_aes3.S b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/esp32s3/dsps_memset_aes3.S new file mode 100644 index 0000000..acddc70 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/esp32s3/dsps_memset_aes3.S @@ -0,0 +1,248 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "dsps_mem_platform.h" +#if dsps_mem_aes3_enbled + +// This is memory access for ESP32S3 processor. + .text + .align 4 + .global dsps_memset_aes3 + .type dsps_memset_aes3,@function +// The function implements the following C code: +// void *dsps_memset_aes3(void *arr_dest, uint8_t set_val, size_t set_size); + +// Input params Variables +// +// arr_dest - a2 loop_len - a5 +// set_val - a3 p_arr_dest - a8 +// set_size - a4 8_bit_set - a7 +// 16_bit_set - a9 +// 32_bit_set - a10 +// align_mask - a11 + +/* +esp32s3 optimized memset function works with both, aligned and unaligned data. + +arr_dest aligned - _main_loop, 16 bytes in one loop, only aligned data + - Check modulos to finish copying remaining data outside of the cycle + - Modulo 8 - S3 instruction for aligned data, the rest of the modulos are generic + +arr_dest unaligned - First, use generic instructions to align the arr_dest data (keep increasing + the arr_dest pointer until the pointer is aligned) + - Once arr_dest is aligned treat the rest of the data as aligned, same as above + +if the set_size is less than 16, jump to _less_than_16 label and set data without any s3 instructions or cycles +*/ + +#define MEMSET_OPTIMIZED 1 // Use optimized memset or ansi memset +#define TIE_ENABLE 0 // Put a dummy TIE instruction to ANSI memset to induce TIE context saving + +dsps_memset_aes3: + +#if MEMSET_OPTIMIZED + + entry a1, 32 + mov a8, a2 // a8 - save arr_dest pointer + blti a4, 16, _less_than_16 // set_size shorter than 16 + + movi.n a7, 0xff // 0xff one-byte mask + movi.n a11, 0xf // 0xf alignment mask + and a7, a7, a3 // mask upper 24 bits of set_val a3 + + bnez.n a7, _non_zero_constant + ee.zero.q q0 // initialize q0 to zero + movi.n a9, 0 // initialize (16_bit_set) a9 to zero + movi.n a10, 0 // initialize (32_bit_set) a10 to zero + j _q_reg_prepared + + _non_zero_constant: + // Fill q register + slli a6, a7, 8 // a6 - (masked)set_val << 8 + or a9, a6, a7 // a9 - (masked)set_val << 8 + (masked)set_val + // a9 - 16-bit set + slli a15, a9, 16 // a15 - a9 << 16 + or a10, a9, a15 // broadcast 8 bits from set_val a3 to 32 bits + // a10 - 32-bit set + ee.movi.32.q q0, a10, 0 // fill q0 register from a10 by 32 bits + ee.movi.32.q q0, a10, 1 + ee.movi.32.q q0, a10, 2 + ee.movi.32.q q0, a10, 3 + + _q_reg_prepared: + + // alignment check + and a15, a11, a2 // 0xf (alignment mask) AND arr_dest pointer + beqz a15, _arr_dest_aligned // branch if a15 equals to zero + + movi.n a14, 16 // a14 - 16 + sub a15, a14, a15 // a15 = 16 - unalignment + sub a4, a4, a15 // len = len - (16 - unalignment) + + // keep setting until arr_dest is aligned + // Check modulo 8 of the unalignment, if - then set 8 bytes + bbci a15, 3, _aligning_mod_8_check // branch if 3-rd bit of unalignment a15 is clear + s32i.n a10, a2, 0 // save 32 bits from a10 to arr_dest a2, offset 0 bytes + s32i.n a10, a2, 4 // save 32 bits from a10 to arr_dest a2, offset 4 bytes + addi.n a2, a2, 8 // increment arr_dest pointer by 8 bytes + _aligning_mod_8_check: + + // Check modulo 4 of the unalignment, if - then set 4 bytes + bbci a15, 2, _aligning_mod_4_check // branch if 2-nd bit unalignment a15 is clear + s32i.n a10, a2, 0 // save 32 bits from a10 to arr_dest a2, offset 0 bytes + addi.n a2, a2, 4 // increment arr_dest pointer by 4 bytes + _aligning_mod_4_check: + + // Check modulo 2 of the unalignment, if - then set 2 bytes + bbci a15, 1, _aligning_mod_2_check // branch if 1-st bit unalignment a15 is clear + s16i a9, a2, 0 // save 16 bits from a9 to arr_dest a2, offset 0 bytes + addi.n a2, a2, 2 // increment arr_dest pointer by 2 bytes + _aligning_mod_2_check: + + // Check modulo 1 of the unalignment, if - then copy 1 byte + bbci a15, 0, _arr_dest_aligned // branch if 0-th bit unalignment a15 is clear + s8i a7, a2, 0 // save 8 bits from a7 to arr_dest a2, offset 0 bytes + addi.n a2, a2, 1 // increment arr_dest pointer by 1 byte + + + _arr_dest_aligned: + // Calculate main loop_len + srli a5, a4, 4 // a5 - loop_len = set_size / 16 + + // Main loop + loopnez a5, ._main_loop // 16 bytes in one loop + ee.vst.128.ip q0, a2, 16 // store 16 bytes from q0 to arr_dest a2 + ._main_loop: + + // Check modulo 8 of the set_size, if - then set 8 bytes + bbci a4, 3, _aligned_mod_8_check // branch if 3-rd bit of set_size a4 is clear + ee.vst.l.64.ip q0, a2, 8 // save lower 64 bits from q0 to arr_dest a2, increase arr_dest pointer by 8 bytes + _aligned_mod_8_check: + + // Check modulo 4 of the set_size, if - then set 4 bytes + bbci a4, 2, _aligned_mod_4_check // branch if 2-nd bit of set_size a4 is clear + s32i.n a10, a2, 0 // save 32 bits from a10 to arr_dest a2, offset 0 bytes + addi.n a2, a2, 4 // increment arr_dest pointer by 4 bytes + _aligned_mod_4_check: + + // Check modulo 2 of the set_size, if - then set 2 bytes + bbci a4, 1, _aligned_mod_2_check // branch if 1-st bit of set_size a4 is clear + s16i a9, a2, 0 // save 16 bits from a9 to arr_dest a2, offset 0 bytes + addi.n a2, a2, 2 // increment arr_dest pointer by 2 bytes + _aligned_mod_2_check: + + // Check modulo 1 of the set_size, if - then set 1 byte + bbci a4, 0, _aligned_mod_1_check // branch if 0-th bit of set_size a4 is clear + s8i a7, a2, 0 // save 8 bits from a7 to arr_dest a2, offset 0 bytes + _aligned_mod_1_check: + + mov a2, a8 // copy the initial arr_dest pointer from a8 to arr_dest a2 + retw.n // return + + _less_than_16: + + // make 16-byte set_val + slli a6, a3, 8 // a6 - a3 (set_val) << 8 + or a7, a6, a3 // a7 - a3 (set_val) << 8 + a3 (set_val) + + // Check modulo 8 of the set_size, if - then set 8 bytes + bbci a4, 3, _less_than_16_mod_8_check // branch if 3-rd bit of set_size a4 is clear + s16i a7, a2, 0 // save 16 bits from a7 to arr_dest a2, offset 0 bytes + s16i a7, a2, 2 // save 16 bits from a7 to arr_dest a2, offset 2 bytes + s16i a7, a2, 4 // save 16 bits from a7 to arr_dest a2, offset 4 bytes + s16i a7, a2, 6 // save 16 bits from a7 to arr_dest a2, offset 6 bytes + addi.n a2, a2, 8 // increment arr_dest pointer by 8 bytes + _less_than_16_mod_8_check: + + // Check modulo 4 of the set_size, if - then set 4 bytes + bbci a4, 2, _less_than_16_mod_4_check // branch if 2-nd bit of set_size a4 is clear + s16i a7, a2, 0 // save 16 bits from a7 to arr_dest a2, offset 0 bytes + s16i a7, a2, 2 // save 16 bits from a7 to arr_dest a2, offset 2 bytes + addi.n a2, a2, 4 // increment arr_dest pointer by 4 bytes + _less_than_16_mod_4_check: + + // Check modulo 2 of the set_size, if - then set 2 bytes + bbci a4, 1, _less_than_16_mod_2_check // branch if 1-st bit of set_size a4 is clear + s16i a7, a2, 0 // save 16 bits from a7 to arr_dest a2, offset 0 bytes + addi.n a2, a2, 2 // increment arr_dest pointer by 2 bytes + _less_than_16_mod_2_check: + + // Check modulo 1 of the set_size, if - then set 1 byte + bbci a4, 0, _less_than_16_mod_1_check // branch if 0-th bit of set_size a4 is clear + s8i a3, a2, 0 // save 8 bits from a3 to arr_dest a2, offset 0 bytes + _less_than_16_mod_1_check: + + mov a2, a8 // copy the initial arr_dest pointer from a8 to arr_dest a2 + retw.n // return + + +#else // MEMSET_OPTIMIZED + + // ansi version of the memset (without TIE instructions) for testing purposes + + entry a1, 32 + mov a8, a2 // a8 - save arr_dest pointer + + movi.n a7, 0xff // 0xff one-byte mask + and a7, a7, a3 // mask upper 24 bits of a3 + + slli a6, a7, 8 // a6 - (masked)set_val << 8 + or a9, a6, a7 // a9 - (masked)set_val << 8 + (masked)set_val + // a9 - 16-bit set + slli a15, a9, 16 // a15 - a9 << 16 + or a10, a9, a15 // broadcast 8 bits from a3 to 32 bits + + srli a5, a4, 4 // a5 - loop_len = arr_len / 16 + + // Run main loop which sets 16 bytes in one loop run + loopnez a5, ._ansi_loop + s32i.n a10, a2, 0 // save 32 bits from a15 to arr_dest a2 + s32i.n a10, a2, 4 // save 32 bits from a14 to arr_dest a2 + s32i.n a10, a2, 8 // save 32 bits from a14 to arr_dest a2 + s32i.n a10, a2, 12 // save 32 bits from a14 to arr_dest a2 + addi.n a2, a2, 16 // increment arr_dest pointer by 8 bytes + ._ansi_loop: + + // Finish the remaining bytes out of the loop + // Check modulo 8 of the arr_len, if - then set 8 bytes + bbci a4, 3, _mod_8_check // branch if 2-nd bit of arr_len is clear + s32i.n a10, a2, 0 // save 32 bits from a10 to arr_dest a2, offset 0 bytes + s32i.n a10, a2, 4 // save 32 bits from a10 to arr_dest a2, offset 0 bytes + addi.n a2, a2, 8 // increment arr_dest pointer by 4 bytes + _mod_8_check: + + // Check modulo 4 of the arr_len, if - then set 4 bytes + bbci a4, 2, _mod_4_check // branch if 2-nd bit of arr_len is clear + s32i.n a10, a2, 0 // save 32 bits from a10 to arr_dest a2, offset 0 bytes + addi.n a2, a2, 4 // increment arr_dest pointer by 4 bytes + _mod_4_check: + + // Check modulo 2 of the arr_len, if - then set 2 bytes + bbci a4, 1, _mod_2_check // branch if 1-st bit of arr_len is clear + s16i a9, a2, 0 // save 16 bits from a7 to arr_dest a2, offset 0 bytes + addi.n a2, a2, 2 // increment arr_dest pointer by 2 bytes + _mod_2_check: + + // Check modulo 1 of the arr_len, if - then set 1 byte + bbci a4, 0, _mod_1_check // branch if 0-th bit of arr_len is clear + s8i a7, a2, 0 // save 8 bits from a3 to arr_dest a2, offset 0 bytes + _mod_1_check: + + // if arr_len is shorter than 16, skip adding TIE instruction, to fix the panic handler before the main_app() loads + blti a4, 16, _less_than_16_1 // set_size shorter than 16, to fix panic handler before main_app() load + #if TIE_ENABLE // put dummy TIE instruction to induce TIE context saving + ee.zero.qacc // initialize q0 to zero + #else // TIE_ENABLE + nop // compensate one cycle, when TIE is disabled to get the same benchmark value + #endif // TIE_ENABLE + _less_than_16_1: + + mov a2, a8 // copy the initial arr_dest pointer from a8 to arr_dest a2 + retw.n // return + +#endif // MEMSET_OPTIMIZED + +#endif // dsps_mem_aes3_enbled \ No newline at end of file diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include/dsps_mem.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include/dsps_mem.h new file mode 100644 index 0000000..4b3fda0 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include/dsps_mem.h @@ -0,0 +1,67 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#ifndef _dsps_mem_H_ +#define _dsps_mem_H_ + +#include "dsp_err.h" +#include "dsp_common.h" +#include "dsps_mem_platform.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/**@{*/ +/** + * @brief memory copy function using esp32s3 TIE + * + * The extension (_aes3) is optimized for esp32S3 chip. + * + * @param arr_dest: pointer to the destination array + * @param arr_src: pointer to the source array + * @param arr_len: count of bytes to be copied from arr_src to arr_dest + * + * @return: pointer to dest array + */ +void *dsps_memcpy_aes3(void *arr_dest, const void *arr_src, size_t arr_len); + +/**@{*/ +/** + * @brief memory set function using esp32s3 TIE + * + * The extension (_aes3) is optimized for esp32S3 chip. + * + * @param arr_dest: pointer to the destination array + * @param set_val: byte value, the dest array will be set with + * @param set_size: count of bytes, the dest array will be set with + * + * @return: pointer to dest array + */ +void *dsps_memset_aes3(void *arr_dest, uint8_t set_val, size_t set_size); + +#ifdef __cplusplus +} +#endif + +#if CONFIG_DSP_OPTIMIZED + +#if dsps_mem_aes3_enbled +#define dsps_memcpy dsps_memcpy_aes3 +#define dsps_memset dsps_memset_aes3 +#else +#define dsps_memcpy memcpy +#define dsps_memset memset +#endif + +#else // CONFIG_DSP_OPTIMIZED + +#define dsps_memcpy memcpy +#define dsps_memset memset + +#endif // CONFIG_DSP_OPTIMIZED +#endif // _dsps_mem_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include/dsps_mem_platform.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include/dsps_mem_platform.h new file mode 100644 index 0000000..7e0d800 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/include/dsps_mem_platform.h @@ -0,0 +1,21 @@ +#ifndef _dsps_mem_platform_H_ +#define _dsps_mem_platform_H_ + +#include "sdkconfig.h" + +#ifdef __XTENSA__ +#include +#include + + +#if ((XCHAL_HAVE_FP == 1) && (XCHAL_HAVE_LOOPS == 1)) + +#if CONFIG_IDF_TARGET_ESP32S3 +#define dsps_mem_aes3_enbled 1 +#else +#define dsps_mem_aes3_enbled 0 +#endif // CONFIG_IDF_TARGET_ESP32S3 + +#endif // +#endif // __XTENSA__ +#endif // _dsps_mem_platform_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/test/test_dsps_memcpy_memset.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/test/test_dsps_memcpy_memset.c new file mode 100644 index 0000000..74f34b2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/mem/test/test_dsps_memcpy_memset.c @@ -0,0 +1,728 @@ +/* + * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include +#include +#include "unity.h" +#include "esp_log.h" +#include "esp_err.h" +#include "esp_dsp.h" + +#include "dsps_mem.h" +#include "dsp_tests.h" + +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/semphr.h" +#include "freertos/queue.h" +#include "freertos/timers.h" +#include "esp_task_wdt.h" + +#define CORNERS_CPY_SET_COUNT 200 +#define MEMCPY_REPORT_LEN 100 +#define MEMSET_REPORT_LEN 50 +#define CALL_REPEAT_COUNT 1000 +#define TEST_PINNED_NUM_TASKS 2 +#define TEST_PINNED_NUM_ITERS 2 +#define CPY_REPEAT_COUNT 500 +#define CPY_ITERS 40 +#define AREA_LENGTH 1024 + +static const char *TAG = "dsps_mem_access"; + +/* +Test functionality of the memcpy and memset functions optimized for esp32s3 + +Requires: esp32s3 + +Purpose: + - Test that esp32s3 optimized memcpy and memset have the same functionality as the original memcpy and memset + +Procedure: + - Create 4 arrays, 2 source arrays (aligned and unaligned) and 2 destination arrays (aligned and unaligned) + - Initialize the destination arrays to 0, fill the source arrays with non-zero values + - Copy the desired length of content from the source array to the destination array using memcpy + - Compare the content of the destination array with the content of the source array + - Initialize the destination arrays to 0 + - Repeat the 3 above steps for different copy lengths (especially corner conditions like copy 0, 1, 2... and N, N -1, N - 2.... bytes) + and following arrays alignments + - destination array 16-byte aligned, source array 16-byte aligned + - destination array unaligned, source array 16-byte aligned + - destination array 16-byte aligned, source array unaligned + - destination array unaligned, source array unaligned + - Set the desired length of the destination array using memset + - Compare the content of the destination array with the set constant + - Initialize the destination arrays to 0 + - Repeat the 3 above steps for different set lengths (especially corner conditions like copy 0, 1, 2... and N, N -1, N - 2.... bytes) + and both alignments of the destination array (16-byte aligned or unaligned) + - Free the dynamic array +*/ + +TEST_CASE("dsps_memcpy_memset_aes3_functionality", "[dsps]") +{ + const size_t arr_len = 1024; + const uint8_t set_val = 0xaa; + const size_t full_count = arr_len; + const size_t canary_bytes = 16; // canary bytes to check a possibe overflow + const unsigned int align_combinations_cpy = 4; // source and destination arrays aligned or unaligned combinations + const unsigned int align_combinations_set = 2; // destination array aligned or unaligned + + uint8_t *arr_dest_align = (uint8_t *)memalign(16, (arr_len + canary_bytes) * sizeof(uint8_t)); + uint8_t *arr_src_align = (uint8_t *)memalign(16, arr_len * sizeof(uint8_t)); + + uint8_t *arr_dest_unalign = (uint8_t *)malloc((arr_len + canary_bytes) * sizeof(uint8_t)); + uint8_t *arr_src_unalign = (uint8_t *)malloc(arr_len * sizeof(uint8_t)); + uint8_t *arr_dest = NULL, *arr_src = NULL; + + for (int i = 0; i < arr_len; i++) { + ((uint8_t *)arr_src_align)[i] = (uint8_t)i; + ((uint8_t *)arr_src_unalign)[i] = (uint8_t)i; + } + + // canary bytes + for (int i = arr_len; i < (arr_len + canary_bytes); i++) { + ((uint8_t *)arr_dest_align)[i] = 0; + ((uint8_t *)arr_dest_unalign)[i] = 0; + } + + // aes3 memcpy functionality + for (int align = 0; align < align_combinations_cpy; align++) { // alinged and unaligned arrays test loop + + size_t byte_count[2] = {0, full_count - CORNERS_CPY_SET_COUNT}; // amount of bytes to be copied + + switch (align) { + case 0: // both 16-byte aligned + arr_src = arr_src_align; + arr_dest = arr_dest_align; + break; + + case 1: // destination unaligned, source aligned + arr_src = arr_src_align; + arr_dest = arr_dest_unalign; + break; + + case 2: // source unaligned, destination aligned + arr_src = arr_src_unalign; + arr_dest = arr_dest_align; + break; + + case 3: // both unaligned + arr_src = arr_src_unalign; + arr_dest = arr_dest_unalign; + break; + + default: // default - both aligned + arr_src = arr_src_align; + arr_dest = arr_dest_align; + break; + } + + for (int var = 0; var < 2; var++) { // test conrner conditions + for (int j = 0; j < CORNERS_CPY_SET_COUNT; j++) { // mem_set from 1 to CORNERS_CPY_SET_COUNT + // from (full_count - CORNERS_CPY_SET_COUNT + 1) to full_count + for (int i = 0; i < full_count; i++) { // Destination array initializing + ((uint8_t *)arr_dest)[i] = 0; + } + + dsps_memcpy((void *)arr_dest, (void *)arr_src, ++byte_count[var]); + + TEST_ASSERT_EQUAL_UINT8_ARRAY(arr_src, arr_dest, byte_count[var]); + if (byte_count[var] < arr_len) { + TEST_ASSERT_EACH_EQUAL_UINT8(0, &arr_dest[byte_count[var]], (arr_len - byte_count[var])); + } + TEST_ASSERT_EACH_EQUAL_UINT8(0, &arr_dest[arr_len], canary_bytes); + } + } + } + + // aes3 memset functionality + for (int align = 0; align < align_combinations_set; align++ ) { // alinged and unaligned arrays test loop + + size_t byte_count[2] = {0, full_count - CORNERS_CPY_SET_COUNT}; // amount of bytes to be copied + if (!align) { + arr_dest = arr_dest_align; + } else { + arr_dest = arr_dest_unalign; + } + + for (int var = 0; var < 2; var++) { // test conrner conditions + for (int j = 0; j < CORNERS_CPY_SET_COUNT; j++) { // mem_set from 1 to CORNERS_CPY_SET_COUNT + // from (full_count - CORNERS_CPY_SET_COUNT + 1) to full_count + for (int i = 0; i < full_count; i++) { // Destination array initializing + ((uint8_t *)arr_dest)[i] = 0; + } + + dsps_memset((void *)arr_dest, set_val, ++byte_count[var]); + + TEST_ASSERT_EACH_EQUAL_UINT8(set_val, arr_dest, byte_count[var]); + if (byte_count[var] < arr_len) { + TEST_ASSERT_EACH_EQUAL_UINT8(0, &arr_dest[byte_count[var]], (arr_len - byte_count[var])); + } + TEST_ASSERT_EACH_EQUAL_UINT8(0, &arr_dest[arr_len], canary_bytes); + } + } + } + + free(arr_dest_align); + free(arr_src_align); + free(arr_dest_unalign); + free(arr_src_unalign); +} + + +/* +Test micro-benchmark of the memcpy and memset functions optimized for esp32s3 and esp32 + +Requires: esp32s3 + +Purpose: + - Test how fast the esp32s3 optimized memcpy and memset are compared to the esp32 optimized memcpy and memset + +Procedure: + - Create 2 unaligned arrays, source and destination array + - Copy the content of the source array to the destination array using esp32s3 memcpy N times, while counting CPU cycles + - Copy the content of the source array to the destination array using esp32 memcpy N times, while counting CPU cycles + - Set the destination array using esp32s3 memcpy N times, while counting CPU cycles + - Set the destination array using esp32 memcpy N times, while counting CPU cycles + - Calculate benchmarks + - Free both arrays +*/ + +TEST_CASE("dsps_memcpy_memset_aes3_benchmark", "[dsps]") +{ + const size_t area_len = AREA_LENGTH; // full length of the area (in bytes) + const size_t full_count = sizeof(uint8_t) * area_len; + const uint8_t set_val = 0xee; // constant value, the destination array will be set with + + uint8_t *arr_src = (uint8_t *)malloc(area_len * sizeof(uint8_t)); + uint8_t *arr_dest = (uint8_t *)malloc(area_len * sizeof(uint8_t)); + + // Memcpy benchmark + const unsigned int start_aes3_memcpy = xthal_get_ccount(); + for (int j = 0; j < CALL_REPEAT_COUNT; j++) { + dsps_memcpy((void *)arr_dest, (void *)arr_src, full_count); + } + const unsigned int end_aes3_memcpy = xthal_get_ccount(); + + const unsigned int start_ae32_memcpy = xthal_get_ccount(); + for (int j = 0; j < CALL_REPEAT_COUNT; j++) { + memcpy((void *)arr_dest, (void *)arr_src, full_count); + } + const unsigned int end_ae32_memcpy = xthal_get_ccount(); + + const float aes3_cycles_memcpy = ((float)(end_aes3_memcpy - start_aes3_memcpy)) / CALL_REPEAT_COUNT; + const float ae32_cycles_memcpy = ((float)(end_ae32_memcpy - start_ae32_memcpy)) / CALL_REPEAT_COUNT; + + ESP_LOGI(TAG, "Micro benchmark of memcpy for unaligned array of %"PRIu32" bytes", (uint32_t)full_count); + ESP_LOGI(TAG, "Not-optimized cycles = %.2f", ae32_cycles_memcpy); + ESP_LOGI(TAG, "S3 optimized cycles = %.2f", aes3_cycles_memcpy); + + // Memset benchmark + const unsigned int start_aes3_memset = xthal_get_ccount(); + for (int j = 0; j < CALL_REPEAT_COUNT; j++) { + dsps_memset((void *)arr_dest, set_val, full_count); + } + const unsigned int end_aes3_memset = xthal_get_ccount(); + + const unsigned int start_ae32_memset = xthal_get_ccount(); + for (int j = 0; j < CALL_REPEAT_COUNT; j++) { + memset((void *)arr_dest, set_val, full_count); + } + const unsigned int end_ae32_memset = xthal_get_ccount(); + + const float ae32_cycles_memset = ((float)(end_ae32_memset - start_ae32_memset)) / CALL_REPEAT_COUNT; + const float aes3_cycles_memset = ((float)(end_aes3_memset - start_aes3_memset)) / CALL_REPEAT_COUNT; + + ESP_LOGI(TAG, "Micro benchmark of memset for unaligned array of %"PRIu32" bytes", (uint32_t)full_count); + ESP_LOGI(TAG, "Not-optimized cycles = %.2f", ae32_cycles_memset); + ESP_LOGI(TAG, "S3 optimized cycles = %.2f", aes3_cycles_memset); + + free(arr_src); + free(arr_dest); +} + + +/* +Test micro-benchmark of the memcpy optimized for esp32s3 and esp32 and print a comparison report for copy lengths from +1 to 200 bytes, where the difference between the two memcpys is not unanimous + +Requires: esp32s3 + +Purpose: + - Test how fast the esp32s3 optimized memcpy is to the esp32 optimized memcpy + +Procedure: + - Create 2 aligned arrays, source and destination array + - Copy the content of the source array to the destination array using esp32s3 memcpy N times, while counting CPU cycles + - Copy the content of the source array to the destination array using esp32 memcpy N times, while counting CPU cycles + - Calculate benchmarks and save the result + - Repeat the 3 above steps for different copy lengths (from 1 to 200 bytes) + and following arrays alignments + - destination array 16-byte aligned, source array 16-byte aligned + - destination array unaligned, source array 16-byte aligned + - destination array 16-byte aligned, source array unaligned + - destination array unaligned, source array unaligned + - Print table of results + - Free dynamic arrays +*/ +TEST_CASE("dsps_memcpy_benchmark_report", "[dsps]") +{ + unsigned int start_count, end_count; + const unsigned int align_combinations = 4; // source and destination arrays aligned or unaligned combinations + const int32_t arr_len = 256; + + uint8_t *arr_dest = (uint8_t *)memalign(16, arr_len * sizeof(uint8_t)); + uint8_t *arr_src = (uint8_t *)memalign(16, arr_len * sizeof(uint8_t)); + uint8_t *arr_dest_align = NULL, *arr_src_align = NULL; + + uint16_t **result_aes3 = (uint16_t **)malloc(align_combinations * sizeof(uint16_t *)); // 2D arrays result_aes3[align_combinations][MEMCPY_REPORT_LEN] + uint16_t **result_ae32 = (uint16_t **)malloc(align_combinations * sizeof(uint16_t *)); // 2D arrays result_ae32[align_combinations][MEMCPY_REPORT_LEN] + + for (int i = 0; i < align_combinations; i++) { + result_aes3[i] = (uint16_t *)malloc(MEMCPY_REPORT_LEN * sizeof(uint16_t)); + result_ae32[i] = (uint16_t *)malloc(MEMCPY_REPORT_LEN * sizeof(uint16_t)); + } + + for (int iter = 0; iter < align_combinations; iter++) { + switch (iter) { + case 0: // both 16-byte aligned + arr_dest_align = arr_dest; + arr_src_align = arr_src; + break; + + case 1: // destination unaligned, source aligned + arr_dest_align = arr_dest + 1; + arr_src_align = arr_src; + break; + + case 2: // source unaligned, destination aligned + arr_dest_align = arr_dest; + arr_src_align = arr_src + 1; + break; + + case 3: // both unaligned + arr_dest_align = arr_dest + 1; + arr_src_align = arr_src + 1; + break; + + default: // default - both aligned + arr_dest_align = arr_dest; + arr_src_align = arr_src; + break; + } + + for (int cpy_amount = 1; cpy_amount <= MEMCPY_REPORT_LEN; cpy_amount++) { + + start_count = xthal_get_ccount(); + for (int j = 0; j < CALL_REPEAT_COUNT; j++) { + dsps_memcpy((void *)arr_dest_align, (void *)arr_src_align, cpy_amount); + } + end_count = xthal_get_ccount(); + result_aes3[iter][cpy_amount - 1] = ((uint16_t)((end_count - start_count) / CALL_REPEAT_COUNT)); + + start_count = xthal_get_ccount(); + for (int j = 0; j < CALL_REPEAT_COUNT; j++) { + memcpy((void *)arr_dest_align, (void *)arr_src_align, cpy_amount); + } + end_count = xthal_get_ccount(); + result_ae32[iter][cpy_amount - 1] = ((uint16_t)((end_count - start_count) / CALL_REPEAT_COUNT)); + } + } + + ESP_LOGI(TAG, "Cycle counts for aligned/unaligned source/destination array using default xtensa memcpy and s3 optimized memcpy"); + printf("\n\tdest aligned \tdest unaligned\tdest aligned\tdest unaligned\n"); + printf( "\tsrc aligned \tsrc aligned\tsrc unaligned\tsrc unaligned\n\n"); + printf( "byte \taes3 ae32\taes3 ae32\taes3 ae32\taes3 ae32\n"); + + for (int i = 0; i < MEMCPY_REPORT_LEN; i++) { + printf("%d\t", i + 1); + + for (int j = 0; j < align_combinations; j++) { + printf(" %d\t", result_aes3[j][i]); + printf(" %d\t", result_ae32[j][i]); + } + putchar('\n'); + } + + for (int i = 0; i < MEMCPY_REPORT_LEN; i++) { + for (int j = 0; j < align_combinations; j++) { + TEST_ASSERT_GREATER_OR_EQUAL((result_ae32[j][i]) / 4, result_aes3[j][i]); + } + } + + free(arr_dest); + free(arr_src); + free(result_ae32); + free(result_aes3); +} + +/* +Test micro-benchmark of the memset optimized for esp32s3 and esp32 and print a comparison report for set lengths from +1 to 200 bytes, where the difference between the two memsets is not unanimous + +Requires: esp32s3 + +Purpose: + - Test how fast the esp32s3 optimized memset is compared to the esp32 optimized memset + +Procedure: + - Create 1 aligned array - destination array + - Set the destination array using esp32s3 memcpy N times, while counting CPU cycles + - Set the destination array using esp32 memcpy N times, while counting CPU cycles + - Calculate benchmarks and save the result + - Repeat the 3 above steps for different copy lengths (from 1 to 200 bytes) + and both destination arrays alignments (16-byte aligned and unaligned) + - Print table of results + - Free dynamic arrays +*/ +TEST_CASE("dsps_memset_benchmark_report", "[dsps]") +{ + unsigned int start_count, end_count; + const unsigned int align_combinations = 2; // destination arrays aligned or unaligned + const int32_t arr_len = 256; + const uint8_t set_val = 0xaa; + + uint8_t *arr_dest = (uint8_t *)memalign(16, arr_len * sizeof(uint8_t)); + uint8_t *arr_dest_align = NULL; + + uint16_t **result_aes3 = (uint16_t **)malloc(align_combinations * sizeof(uint16_t *)); // 2D arrays result_aes3[align_combinations][MEMSET_REPORT_LEN] + uint16_t **result_ae32 = (uint16_t **)malloc(align_combinations * sizeof(uint16_t *)); // 2D arrays result_ae32[align_combinations][MEMSET_REPORT_LEN] + + for (int i = 0; i < align_combinations; i++) { + result_aes3[i] = (uint16_t *)malloc(MEMSET_REPORT_LEN * sizeof(uint16_t)); + result_ae32[i] = (uint16_t *)malloc(MEMSET_REPORT_LEN * sizeof(uint16_t)); + } + + for (int iter = 0; iter < align_combinations; iter++) { + + if (iter == 0) { + arr_dest_align = arr_dest; // destination 16-byte aligned + } else { + arr_dest_align = arr_dest + 1; // destination unaligned + } + + for (int set_amount = 1; set_amount <= MEMSET_REPORT_LEN; set_amount++) { + start_count = xthal_get_ccount(); + for (int j = 0; j < CALL_REPEAT_COUNT; j++) { + dsps_memset((void *)arr_dest_align, set_val, set_amount); + } + end_count = xthal_get_ccount(); + result_aes3[iter][set_amount - 1] = ((uint16_t)((end_count - start_count) / CALL_REPEAT_COUNT)); + + start_count = xthal_get_ccount(); + for (int j = 0; j < CALL_REPEAT_COUNT; j++) { + memset((void *)arr_dest_align, set_val, set_amount); + } + end_count = xthal_get_ccount(); + result_ae32[iter][set_amount - 1] = ((uint16_t)((end_count - start_count) / CALL_REPEAT_COUNT)); + } + } + + ESP_LOGI(TAG, "Cycle counts for aligned/unaligned destination array using default xtensa memcpy and s3 optimized memcpy"); + printf("\n\tdest aligned \tdest unaligned\n\n"); + printf( "byte \taes3 ae32\taes3 ae32\n"); + + for (int i = 0; i < MEMSET_REPORT_LEN; i++) { + printf("%d\t", i + 1); + + for (int j = 0; j < align_combinations; j++) { + printf(" %d\t", result_aes3[j][i]); + printf(" %d\t", result_ae32[j][i]); + } + putchar('\n'); + } + + for (int i = 0; i < MEMSET_REPORT_LEN; i++) { + for (int j = 0; j < align_combinations; j++) { + TEST_ASSERT_GREATER_OR_EQUAL((result_ae32[j][i]) / 8, result_aes3[j][i]); + } + } + + free(arr_dest); + free(result_ae32); + free(result_aes3); +} + +/* +Test micro-benchmark of the memcpy and memset functions optimized for esp32s3, with task switching + +Requires: esp32s3 + +Purpose: + - Test how fast the esp32s3 optimized memcpy and memset are while running memset and memcpy in multiple tasks + +Procedure: + - Create 4 tasks - 2 tasks per each core. Tasks are pinned to cores and all the tasks are the same. + - Run the memcpy micro-benchmark routine (from the previous test case) in each of the tasks. + - Start all the tasks simultaneously + - Wait for the tasks to complete, then delete the tasks + - Get the benchmark result + - Repeat all the above steps with memset, instead of memcpy + - Free the created dynamic arrays +*/ + +typedef struct { + SemaphoreHandle_t semaphore; + uint8_t *arr_src; + uint8_t *arr_dest; + uint8_t set_val; + size_t area_len; + uint32_t mean_val_cpy; + uint32_t mean_val_set; +} test_context_benchmark_t; + + +static void pinned_task_benchmark_memcpy(void *arg) +{ + ulTaskNotifyTake(pdTRUE, portMAX_DELAY); + test_context_benchmark_t *context = (test_context_benchmark_t *)arg; + long unsigned int cycles_acc = 0; + unsigned int start_memcpy_count, end_memcpy_count; + + for (int j = 0; j < CPY_ITERS; j++) { + start_memcpy_count = xthal_get_ccount(); + for (int i = 0; i < CPY_REPEAT_COUNT; i++) { + dsps_memcpy((void *)context->arr_dest, (void *)context->arr_src, context->area_len); + } + end_memcpy_count = xthal_get_ccount(); + cycles_acc += (end_memcpy_count - start_memcpy_count); + vTaskDelay(1); // Block to cause a context switch, forcing the TIE context to be saved + } + + context->mean_val_cpy += (uint32_t)((cycles_acc / CPY_REPEAT_COUNT) / CPY_ITERS); + + // Indicate done and wait to be deleted + xSemaphoreGive(context->semaphore); + vTaskSuspend(NULL); +} + + +static void pinned_task_benchmark_memset(void *arg) +{ + ulTaskNotifyTake(pdTRUE, portMAX_DELAY); + test_context_benchmark_t *context = (test_context_benchmark_t *)arg; + long unsigned int cycles_acc = 0; + unsigned int start_memset_count, end_memset_count; + + for (int j = 0; j < CPY_ITERS; j++) { + start_memset_count = xthal_get_ccount(); + for (int i = 0; i < CPY_REPEAT_COUNT; i++) { + dsps_memset((void *)context->arr_dest, context->set_val, context->area_len); + } + end_memset_count = xthal_get_ccount(); + cycles_acc += (end_memset_count - start_memset_count); + vTaskDelay(1); // Block to cause a context switch, forcing the TIE context to be saved + } + + context->mean_val_set += (uint32_t)((cycles_acc / CPY_REPEAT_COUNT) / CPY_ITERS); + + // Indicate done and wait to be deleted + xSemaphoreGive(context->semaphore); + vTaskSuspend(NULL); +} + + +TEST_CASE("dsps_memset_memcpy_context_switch_benchmark", "[dsps]") +{ + test_context_benchmark_t test_context; + char task_name[10]; + + test_context.semaphore = xSemaphoreCreateCounting(configNUM_CORES * TEST_PINNED_NUM_TASKS, 0); + test_context.area_len = (size_t)AREA_LENGTH; + test_context.arr_dest = (uint8_t *)malloc(AREA_LENGTH * sizeof(uint8_t)); + test_context.arr_src = (uint8_t *)malloc(AREA_LENGTH * sizeof(uint8_t)); + test_context.set_val = 0xab; + test_context.mean_val_cpy = 0; + test_context.mean_val_set = 0; + + static void (*pinned_functions[2])(void *); + pinned_functions[0] = pinned_task_benchmark_memcpy; + pinned_functions[1] = pinned_task_benchmark_memset; + + TEST_ASSERT_NOT_EQUAL(NULL, test_context.semaphore); + + for (int iter = 0; iter < TEST_PINNED_NUM_ITERS; iter++) { + TaskHandle_t task_handles[configNUM_CORES][TEST_PINNED_NUM_TASKS]; + + // Create test tasks for each core + for (int i = 0; i < configNUM_CORES; i++) { + for (int j = 0; j < TEST_PINNED_NUM_TASKS; j++) { + sprintf(task_name, "task %d-%d", i, j); + TEST_ASSERT_EQUAL(pdTRUE, xTaskCreatePinnedToCore(pinned_functions[iter], task_name, 4096, + &test_context, 10, &task_handles[i][j], i)); + } + } + + // Start the created tasks simultaneously + for (int i = 0; i < configNUM_CORES; i++) { + for (int j = 0; j < TEST_PINNED_NUM_TASKS; j++) { + xTaskNotifyGive(task_handles[i][j]); + } + } + + // Wait for the tasks to complete + for (int i = 0; i < configNUM_CORES * TEST_PINNED_NUM_TASKS; i++) { + xSemaphoreTake(test_context.semaphore, portMAX_DELAY); + } + + // Delete the tasks + for (int i = 0; i < configNUM_CORES; i++) { + for (int j = 0; j < TEST_PINNED_NUM_TASKS; j++) { + vTaskDelete(task_handles[i][j]); + } + } + + vTaskDelay(10); // Short delay to allow idle task to be free task memory and TIE contexts + } + + vSemaphoreDelete(test_context.semaphore); + free(test_context.arr_dest); + free(test_context.arr_src); + + const uint32_t iterations = (uint32_t)(configNUM_CORES * TEST_PINNED_NUM_TASKS * CPY_REPEAT_COUNT * CPY_ITERS); + const uint32_t copy_mean_val = (uint32_t)(test_context.mean_val_cpy / (configNUM_CORES * TEST_PINNED_NUM_TASKS)); + const uint32_t set_mean_val = (uint32_t)(test_context.mean_val_set / (configNUM_CORES * TEST_PINNED_NUM_TASKS)); + + printf("\nOut of %"PRIu32" iterations, array len of %"PRIu32" bytes\n", iterations, (uint32_t)AREA_LENGTH); + printf("Memcpy cycles = %"PRIu32"\n", copy_mean_val); + printf("Memset cycles = %"PRIu32"\n", set_mean_val); +} + + +/* +Test context switching for the TIE disabled and enabled + +Requires: esp32s3 + +Purpose: + - Compare context switching between the tasks when TIE (esp32s3 instruction extension) is enabled and disabled to + see what is the switching time overhead for the TIE enabled + +Procedure: + - Create a timer, 1000 ms is used for this test, but the exact time is not crucial + - Create 4 tasks - 2 tasks per each core. Tasks are pinned to cores and all the tasks are the same + - Start the created tasks simultaneously, start the timer + - A task executes a single assembler instruction from the TIE, to induce the context switch + - As soon, as the instruction is executed, a context switch occurs + - A counter counts number or context switcher within the timer interval specified by the timer + - Wait for the timer to expire and terminate the tasks + - Get the number of task switches and delete all the tasks + - Repeat the 7 above steps with the created tasks executing a single generic Xtensa assembler instruction, + instead of the TIE instruction to get the switching overhead +*/ + +static bool timer_expired = false; +static TimerHandle_t one_shot_timer = NULL; + +typedef struct { + SemaphoreHandle_t semaphore; + uint32_t switch_count_tie_on; + uint32_t switch_count_tie_off; +} test_context_timing_t; + +// Taks pinned to a core, executing TIE instruction +static void pinned_task_tie_on(void *arg) +{ + ulTaskNotifyTake(pdTRUE, portMAX_DELAY); + test_context_timing_t *context = (test_context_timing_t *)arg; + vTaskDelay(1); + + while (!timer_expired) { + asm volatile("ee.zero.q q0"); + context->switch_count_tie_on++; + taskYIELD(); // Block to cause a context switch, forcing the TIE context to be saved + } + xSemaphoreGive(context->semaphore); + vTaskSuspend(NULL); +} + +// Taks pinned to a core, executing generic Xtensa instruction +static void pinned_task_tie_off(void *arg) +{ + ulTaskNotifyTake(pdTRUE, portMAX_DELAY); + test_context_timing_t *context = (test_context_timing_t *)arg; + vTaskDelay(1); + + while (!timer_expired) { + asm volatile("nop"); + context->switch_count_tie_off++; + taskYIELD(); // Block to cause a context switch, forcing the context to be saved + } + + xSemaphoreGive(context->semaphore); + vTaskSuspend(NULL); +} + +static void context_switch_timer_callback(TimerHandle_t xTimer) +{ + timer_expired = true; +} + + +TEST_CASE("dsps_TIE_context_switch_timing", "[dsps]") +{ + test_context_timing_t test_context; + const TickType_t timer_period_ms = 1000; + char task_name[10]; + + test_context.semaphore = xSemaphoreCreateCounting(configNUM_CORES * TEST_PINNED_NUM_TASKS, 0); + test_context.switch_count_tie_off = 0; + test_context.switch_count_tie_on = 0; + TEST_ASSERT_NOT_EQUAL(NULL, test_context.semaphore); + + static void (*pinned_functions[2])(void *); + pinned_functions[0] = pinned_task_tie_on; + pinned_functions[1] = pinned_task_tie_off; + + one_shot_timer = xTimerCreate("timer", pdMS_TO_TICKS(timer_period_ms), pdFALSE, (void *)0, context_switch_timer_callback); + + for (int iter = 0; iter < TEST_PINNED_NUM_ITERS; iter++) { + timer_expired = false; + TaskHandle_t task_handles[configNUM_CORES][TEST_PINNED_NUM_TASKS]; + + // Create test tasks for each core + for (int i = 0; i < configNUM_CORES; i++) { + for (int j = 0; j < TEST_PINNED_NUM_TASKS; j++) { + sprintf(task_name, "task %d-%d", i, j); + TEST_ASSERT_EQUAL(pdTRUE, xTaskCreatePinnedToCore(pinned_functions[iter], task_name, 4096, + &test_context, 1, &task_handles[i][j], i)); + } + } + + // Start the created tasks simultaneously + for (int i = 0; i < configNUM_CORES; i++) { + for (int j = 0; j < TEST_PINNED_NUM_TASKS; j++) { + xTaskNotifyGive(task_handles[i][j]); + } + } + xTimerStart(one_shot_timer, portMAX_DELAY); + vTaskDelay(1); + + // Wait for the tasks to complete + for (int i = 0; i < configNUM_CORES * TEST_PINNED_NUM_TASKS; i++) { + xSemaphoreTake(test_context.semaphore, portMAX_DELAY); + } + + // Delete the tasks + for (int i = 0; i < configNUM_CORES; i++) { + for (int j = 0; j < TEST_PINNED_NUM_TASKS; j++) { + vTaskDelete(task_handles[i][j]); + } + } + vTaskDelay(10); // Short delay to allow idle task to be free task memory and TIE contexts + } + + vSemaphoreDelete(test_context.semaphore); + + printf("\nContext switching count within %"PRIu32" ms nterval\n", (uint32_t)timer_period_ms); + printf("TIE enabled %"PRIu32"\n", test_context.switch_count_tie_on); + printf("TIE disabled %"PRIu32"\n", test_context.switch_count_tie_off); + + float overhead = (((float)test_context.switch_count_tie_off / (float)test_context.switch_count_tie_on) * 100) - 100; + printf("Switch overhead %.2f %%\n", overhead); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_d_gen.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_d_gen.c new file mode 100644 index 0000000..b8a69aa --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_d_gen.c @@ -0,0 +1,30 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_d_gen.h" + +esp_err_t dsps_d_gen_f32(float *output, int len, int pos) +{ + if (pos >= len) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (pos < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + for (int i = 0 ; i < len ; i++) { + output[i] = 0; + } + output[pos] = 1; + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_h_gen.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_h_gen.c new file mode 100644 index 0000000..061c1fe --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_h_gen.c @@ -0,0 +1,32 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_h_gen.h" + +esp_err_t dsps_h_gen_f32(float *output, int len, int pos) +{ + if (pos >= len) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + if (pos < 0) { + return ESP_ERR_DSP_PARAM_OUTOFRANGE; + } + for (int i = 0 ; i < pos ; i++) { + output[i] = 0; + } + for (int i = pos ; i < len ; i++) { + output[i] = 1; + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_tone_gen.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_tone_gen.c new file mode 100644 index 0000000..39e6a08 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/misc/dsps_tone_gen.c @@ -0,0 +1,39 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_tone_gen.h" +#include + +esp_err_t dsps_tone_gen_f32(float *output, int len, float Ampl, float freq, float phase) +{ + if (freq >= 1) { + return ESP_ERR_DSP_INVALID_PARAM; + } + if (freq <= -1) { + return ESP_ERR_DSP_INVALID_PARAM; + } + float ph = phase / 180 * M_PI; + float fr = 2 * M_PI * freq; + for (int i = 0 ; i < len ; i++) { + output[i] = Ampl * sin(ph); + ph += fr; + if (ph > 2 * M_PI) { + ph -= 2 * M_PI; + } + if (ph < -2 * M_PI) { + ph += 2 * M_PI; + } + } + return ESP_OK; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/sfdr/float/dsps_sfdr_f32.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/sfdr/float/dsps_sfdr_f32.cpp new file mode 100644 index 0000000..f1dc2bd --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/sfdr/float/dsps_sfdr_f32.cpp @@ -0,0 +1,74 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_sfdr.h" +#include "dsps_fft2r.h" +#include "dsp_common.h" +#include +#include +#include "esp_log.h" + +static const char *TAG = "sfdr"; + +float dsps_sfdr_f32(const float *input, int32_t len, int8_t use_dc) +{ + if (!dsp_is_power_of_two(len)) { + return 0; + } + + float *temp_array = new float[len * 2]; + for (int i = 0 ; i < len ; i++) { + float wind = 0.5 * (1 - cosf(i * 2 * M_PI / (float)len)); + temp_array[i * 2 + 0] = input[i] * wind; + temp_array[i * 2 + 1] = 0; + } + dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + + dsps_fft2r_fc32_ansi(temp_array, len); + dsps_bit_rev_fc32_ansi(temp_array, len); + + float min = std::numeric_limits::max(); + float max = std::numeric_limits::min(); + int max_pos = 0; + for (int i = 0 ; i < len / 2 ; i++) { + temp_array[i] = 10 * log10f(temp_array[i * 2 + 0] * temp_array[i * 2 + 0] + temp_array[i * 2 + 1] * temp_array[i * 2 + 1]); + if (temp_array[i] < min) { + min = temp_array[i]; + } + if (temp_array[i] > max) { + max = temp_array[i]; + max_pos = i; + } + ESP_LOGD(TAG, "FFT Data[%i] =%8.4f dB", i, temp_array[i]); + } + int start_pos = 0; + int wind_width = 5; + float min_diff = std::numeric_limits::max(); + + if (use_dc == 0) { + start_pos = wind_width; + } + for (int i = start_pos ; i < len / 2 ; i++) { + if ((i < (max_pos - wind_width)) || (i > (max_pos + wind_width))) { + float diff = max - temp_array[i]; + if (diff < min_diff) { + ESP_LOGD(TAG, "FFT Data[%i] =%8.4f dB, maX=%f, max_pos=%i", i, temp_array[i], max, max_pos); + min_diff = diff; + } + } + } + + delete[] temp_array; + return min_diff; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/sfdr/test/test_dsps_sfdr_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/sfdr/test/test_dsps_sfdr_f32.c new file mode 100644 index 0000000..3b6ade5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/sfdr/test/test_dsps_sfdr_f32.c @@ -0,0 +1,43 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_view.h" +#include "dsps_sfdr.h" +#include "dsps_fft2r.h" + + +static const char *TAG = "dsps_sfdr_f32"; + +static float data[1024]; + +TEST_CASE("dsps_sfdr_f32 functionality", "[dsps]") +{ + int N = sizeof(data) / sizeof(float) / 2; + int check_bin = 32; + float sfdr_exp = 4; + for (int i = 0 ; i < N ; i++) { + data[i] = 4 * sinf(M_PI / N * check_bin * i) / (N / 2); + data[i] += sinf(M_PI / N * check_bin * i * 2) / (N / 2); + } + + float sfdr = dsps_sfdr_f32(data, N, 1); + TEST_ASSERT_EQUAL( (int)20 * log10(sfdr_exp), (int)sfdr); + ESP_LOGI(TAG, "dsps_sfdr_f32 = %f dB", sfdr); + dsps_fft2r_deinit_fc32(); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/snr/float/dsps_snr_f32.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/snr/float/dsps_snr_f32.cpp new file mode 100644 index 0000000..04e3670 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/snr/float/dsps_snr_f32.cpp @@ -0,0 +1,78 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "dsps_snr.h" +#include "dsps_fft2r.h" +#include "dsp_common.h" +#include +#include +#include "esp_log.h" + +static const char *TAG = "snr"; + +float dsps_snr_f32(const float *input, int32_t len, uint8_t use_dc) +{ + if (!dsp_is_power_of_two(len)) { + return 0; + } + + float *temp_array = new float[len * 2]; + for (int i = 0 ; i < len ; i++) { + float wind = 0.5 * (1 - cosf(i * 2 * M_PI / (float)len)); + temp_array[i * 2 + 0] = input[i] * wind; + temp_array[i * 2 + 1] = 0; + } + dsps_fft2r_init_fc32(NULL, CONFIG_DSP_MAX_FFT_SIZE); + + dsps_fft2r_fc32_ansi(temp_array, len); + dsps_bit_rev_fc32_ansi(temp_array, len); + + float min = std::numeric_limits::max(); + float max = std::numeric_limits::min(); + int max_pos = 0; + for (int i = 0 ; i < len / 2 ; i++) { + temp_array[i] = temp_array[i * 2 + 0] * temp_array[i * 2 + 0] + temp_array[i * 2 + 1] * temp_array[i * 2 + 1]; + if (temp_array[i] < min) { + min = temp_array[i]; + } + if (temp_array[i] > max) { + max = temp_array[i]; + max_pos = i; + } + ESP_LOGD(TAG, "FFT Data[%i] =%8.4f dB", i, temp_array[i]); + } + int start_pos = 0; + int wind_width = 7; + + if (use_dc == 0) { + start_pos = wind_width; + } + float noise_power = 0; + for (int i = start_pos ; i < len / 2 ; i++) { + if ((i < (max_pos - wind_width)) || (i > (max_pos + wind_width))) { + noise_power += temp_array[i]; + ESP_LOGD(TAG, "FFT Data[%i] =%8.4f dB, maX=%f, max_pos=%i, noise_power=%f", i, temp_array[i], max, max_pos, noise_power); + } + } + + noise_power += std::numeric_limits::min(); + if (noise_power < max * 0.00000000001) { + return 192; + } + delete[] temp_array; + float snr = max / noise_power; + float result = 10 * log10(max / noise_power) - 2; // 2 - window correction + ESP_LOGI(TAG, "SNR = %f, result=%f dB", snr, result); + return result; +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/snr/test/test_dsps_snr_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/snr/test/test_dsps_snr_f32.c new file mode 100644 index 0000000..e58e3ec --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/snr/test/test_dsps_snr_f32.c @@ -0,0 +1,43 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_view.h" +#include "dsps_snr.h" +#include "dsps_fft2r.h" + + +static const char *TAG = "dsps_snr_f32"; + +static float data[1024]; + +TEST_CASE("dsps_snr_f32 functionality", "[dsps]") +{ + int N = sizeof(data) / sizeof(float) / 2; + int check_bin = 32; + float snr_exp = 0.001; + for (int i = 0 ; i < N ; i++) { + data[i] = 1 * sinf(M_PI / N * check_bin * i) / (N / 2); + data[i] += 0.001 / N; //0.1*sinf(M_PI/N*check_bin*i*2)/(N/2); + } + + float snr = dsps_snr_f32(data, N, 1); + TEST_ASSERT_EQUAL(-round(20 * log10(snr_exp) + 3), (int)round(snr)); + ESP_LOGI(TAG, "dsps_snr_f32 = %f dB", snr); + dsps_fft2r_deinit_fc32(); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/view/dsps_view.cpp b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/view/dsps_view.cpp new file mode 100644 index 0000000..37c4f91 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/view/dsps_view.cpp @@ -0,0 +1,120 @@ +#include "dsps_view.h" +#include +#include "esp_log.h" +#include +#include + + +void dsps_view(const float *data, int32_t len, int width, int height, float min, float max, char view_char) +{ + uint8_t *view_data = new uint8_t[width * height]; + float *view_data_min = new float[width]; + float *view_data_max = new float[width]; + // + + for (int y = 0; y < height ; y++) { + for (int x = 0 ; x < width ; x++) { + view_data[y * width + x] = ' '; + } + } + for (int i = 0 ; i < width ; i++) { + view_data_min[i] = max; + view_data_max[i] = min; + } + float x_step = (float)(width) / (float)len; + float y_step = (float)(height - 1) / (max - min); + float data_min = std::numeric_limits::max(); + float data_max = std::numeric_limits::min(); + int min_pos = 0; + int max_pos = 0; + + for (int i = 0 ; i < len ; i++) { + int x_pos = i * x_step; + if (data[i] < view_data_min[x_pos]) { + view_data_min[x_pos] = data[i]; + } + if (data[i] > view_data_max[x_pos]) { + view_data_max[x_pos] = data[i]; + } + + if (view_data_min[x_pos] < min) { + view_data_min[x_pos] = min; + } + if (view_data_max[x_pos] > max) { + view_data_max[x_pos] = max; + } + ESP_LOGD("view", "for i=%i, x_pos=%i, max=%f, min=%f, data=%f", i, x_pos, view_data_min[x_pos], view_data_max[x_pos], data[i]); + if (data[i] > data_max) { + data_max = data[i]; + max_pos = i; + } + if (data[i] < data_min) { + data_min = data[i]; + min_pos = i; + } + } + ESP_LOGI("view", "Data min[%i] = %f, Data max[%i] = %f", min_pos, data_min, max_pos, data_max); + ESP_LOGD("view", "y_step = %f", y_step); + for (int x = 0 ; x < width ; x++) { + int y_count = (view_data_max[x] - view_data_min[x]) * y_step + 1; + ESP_LOGD("view", "For x= %i y_count=%i ,min =%f, max=%f, ... ", x, y_count, view_data_min[x], view_data_max[x]); + for (int y = 0 ; y < y_count ; y++) { + int y_pos = (max - view_data_max[x]) * y_step + y; + ESP_LOGD("view", " %i, ", y_pos); + view_data[y_pos * width + x] = view_char; + } + ESP_LOGD("view", " "); + } + + // Simple output + // for (int i=0 ; i< len ; i++) + // { + // float x_step = (float)(width-1)/(float)len; + // float y_step = (float)(height-1)/(max - min); + // int x_pos = i*x_step; + // int y_pos = data[i]*y_step; + // if (data[i] >= max) y_pos = 0; + // if (data[i] <= min) y_pos = height-1; + // view_data[y_pos*width + x_pos] = view_char; + // printf("For data[%i]=%f, x_pos%i, y_pos=%i\n", i, data[i], x_pos, y_pos); + // } + // printf("\n"); + printf(" "); + for (int x = 0 ; x < width ; x++) { + printf("_"); + } + printf("\n"); + for (int y = 0; y < height ; y++) { + printf("%i", y % 10); + for (int x = 0 ; x < width ; x++) { + printf("%c", view_data[y * width + x]); + } + printf("|\n"); + } + printf(" "); + for (int x = 0 ; x < width ; x++) { + printf("%i", x % 10); + } + printf("\n"); + ESP_LOGI("view", "Plot: Length=%i, min=%f, max=%f", (int)len, min, max); + delete[] view_data; + delete[] view_data_min; + delete[] view_data_max; +} + +void dsps_view_s16(const int16_t *data, int32_t len, int width, int height, float min, float max, char view_char) +{ + float *view_data = new float[len]; + for (size_t i = 0; i < len; i++) { +// view_data[i] = ((float)data[i])/32768.0f; + view_data[i] = data[i]; + view_data[i] /= 32768; + } + dsps_view(view_data, len, width, height, min, max, view_char); + delete[] view_data; +} + +void dsps_view_spectrum(const float *data, int32_t len, float min, float max) +{ + dsps_view(data, len, 64, 10, min, max, '|'); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/view/test/test_dsps_view.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/view/test/test_dsps_view.c new file mode 100644 index 0000000..87ffb52 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/support/view/test/test_dsps_view.c @@ -0,0 +1,36 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "dsps_view.h" + + +static const char *TAG = "dsps_view"; + +static float data[1024]; + +TEST_CASE("dsps_view functionality", "[dsps]") +{ + for (int i = 0 ; i < 1024 ; i++) { + data[i] = -100; + } + data[256] = 0; + dsps_view_spectrum(data, 1024, -100, 0); + + ESP_LOGI(TAG, "Just a check\n"); +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/float/dsps_wind_blackman_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/float/dsps_wind_blackman_f32.c new file mode 100644 index 0000000..2bb2014 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/float/dsps_wind_blackman_f32.c @@ -0,0 +1,29 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#define _USE_MATH_DEFINES +#include "dsps_wind_blackman.h" +#include + +void dsps_wind_blackman_f32(float *window, int len) +{ + const float a0 = 0.42; + const float a1 = 0.5; + const float a2 = 0.08; + + float len_mult = 1 / (float)(len - 1); + for (int i = 0; i < len; i++) { + window[i] = a0 - a1 * cosf(i * 2 * M_PI * len_mult) + a2 * cosf(i * 4 * M_PI * len_mult); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include/dsps_wind_blackman.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include/dsps_wind_blackman.h new file mode 100644 index 0000000..7d7e05a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman/include/dsps_wind_blackman.h @@ -0,0 +1,38 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef _dsps_wind_blackman_H_ +#define _dsps_wind_blackman_H_ + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief Blackman window + * + * The function generates Blackman window for plpha = 0.16. + * + * @param window: buffer to store window array. + * @param len: length of the window array + * + */ +void dsps_wind_blackman_f32(float *window, int len); + +#ifdef __cplusplus +} +#endif +#endif // _dsps_wind_blackman_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c new file mode 100644 index 0000000..d61f54e --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/float/dsps_wind_blackman_harris_f32.c @@ -0,0 +1,33 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#define _USE_MATH_DEFINES +#include "dsps_wind_blackman_harris.h" +#include + +void dsps_wind_blackman_harris_f32(float *window, int len) +{ + const float a0 = 0.35875; + const float a1 = 0.48829; + const float a2 = 0.14128; + const float a3 = 0.01168; + + float len_mult = 1 / (float)(len - 1); + for (int i = 0; i < len; i++) { + window[i] = a0 + - a1 * cosf(i * 2 * M_PI * len_mult) + + a2 * cosf(i * 4 * M_PI * len_mult) + - a3 * cosf(i * 6 * M_PI * len_mult); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include/dsps_wind_blackman_harris.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include/dsps_wind_blackman_harris.h new file mode 100644 index 0000000..4a1fde2 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_harris/include/dsps_wind_blackman_harris.h @@ -0,0 +1,38 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef _dsps_wind_blackman_harris_H_ +#define _dsps_wind_blackman_harris_H_ + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief Blackman-Harris window + * + * The function generates Blackman-Harris window. + * + * @param window: buffer to store window array. + * @param len: length of the window array + * + */ +void dsps_wind_blackman_harris_f32(float *window, int len); + +#ifdef __cplusplus +} +#endif +#endif // _dsps_wind_blackman_harris_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c new file mode 100644 index 0000000..508ce70 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/float/dsps_wind_blackman_nuttall_f32.c @@ -0,0 +1,33 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#define _USE_MATH_DEFINES +#include "dsps_wind_blackman_nuttall.h" +#include + +void dsps_wind_blackman_nuttall_f32(float *window, int len) +{ + const float a0 = 0.3635819; + const float a1 = 0.4891775; + const float a2 = 0.1365995; + const float a3 = 0.0106411; + + float len_mult = 1 / (float)(len - 1); + for (int i = 0; i < len; i++) { + window[i] = a0 + - a1 * cosf(i * 2 * M_PI * len_mult) + + a2 * cosf(i * 4 * M_PI * len_mult) + - a3 * cosf(i * 6 * M_PI * len_mult); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include/dsps_wind_blackman_nuttall.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include/dsps_wind_blackman_nuttall.h new file mode 100644 index 0000000..d774b0a --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/blackman_nuttall/include/dsps_wind_blackman_nuttall.h @@ -0,0 +1,38 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef _dsps_wind_blackman_nuttall_H_ +#define _dsps_wind_blackman_nuttall_H_ + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief Blackman-Nuttall window + * + * The function generates Blackman-Nuttall window. + * + * @param window: buffer to store window array. + * @param len: length of the window array + * + */ +void dsps_wind_blackman_nuttall_f32(float *window, int len); + +#ifdef __cplusplus +} +#endif +#endif // _dsps_wind_blackman_nuttall_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/float/dsps_wind_flat_top_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/float/dsps_wind_flat_top_f32.c new file mode 100644 index 0000000..3645414 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/float/dsps_wind_flat_top_f32.c @@ -0,0 +1,35 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#define _USE_MATH_DEFINES +#include "dsps_wind_flat_top.h" +#include + +void dsps_wind_flat_top_f32(float *window, int len) +{ + const float a0 = 0.21557895; + const float a1 = 0.41663158; + const float a2 = 0.277263158; + const float a3 = 0.083578947; + const float a4 = 0.006947368; + + float len_mult = 1 / (float)(len - 1); + for (int i = 0; i < len; i++) { + window[i] = a0 + - a1 * cosf(i * 2 * M_PI * len_mult) + + a2 * cosf(i * 4 * M_PI * len_mult) + - a3 * cosf(i * 6 * M_PI * len_mult) + + a4 * cosf(i * 8 * M_PI * len_mult); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include/dsps_wind_flat_top.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include/dsps_wind_flat_top.h new file mode 100644 index 0000000..d44895f --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/flat_top/include/dsps_wind_flat_top.h @@ -0,0 +1,38 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef _dsps_wind_flat_top_H_ +#define _dsps_wind_flat_top_H_ + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief Flat-Top window + * + * The function generates Flat-Top window. + * + * @param window: buffer to store window array. + * @param len: length of the window array + * + */ +void dsps_wind_flat_top_f32(float *window, int len); + +#ifdef __cplusplus +} +#endif +#endif // _dsps_wind_flat_top_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/float/dsps_wind_hann_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/float/dsps_wind_hann_f32.c new file mode 100644 index 0000000..c94c693 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/float/dsps_wind_hann_f32.c @@ -0,0 +1,25 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#define _USE_MATH_DEFINES +#include "dsps_wind_hann.h" +#include + +void dsps_wind_hann_f32(float *window, int len) +{ + float len_mult = 1 / (float)(len - 1); + for (int i = 0; i < len; i++) { + window[i] = 0.5 * (1 - cosf(i * 2 * M_PI * len_mult)); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include/dsps_wind_hann.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include/dsps_wind_hann.h new file mode 100644 index 0000000..3730c51 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/hann/include/dsps_wind_hann.h @@ -0,0 +1,38 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef _dsps_wind_hann_H_ +#define _dsps_wind_hann_H_ + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief Hann window + * + * The function generates Hann window. + * + * @param window: buffer to store window array. + * @param len: length of the window array + * + */ +void dsps_wind_hann_f32(float *window, int len); + +#ifdef __cplusplus +} +#endif +#endif // _dsps_wind_hann_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include/dsps_wind.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include/dsps_wind.h new file mode 100644 index 0000000..81fade1 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/include/dsps_wind.h @@ -0,0 +1,26 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef _dsps_wind_H_ +#define _dsps_wind_H_ + +#include "dsps_wind_hann.h" +#include "dsps_wind_blackman.h" +#include "dsps_wind_blackman_harris.h" +#include "dsps_wind_blackman_nuttall.h" +#include "dsps_wind_nuttall.h" +#include "dsps_wind_flat_top.h" + +#endif // _dsps_wind_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/float/dsps_wind_nuttall_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/float/dsps_wind_nuttall_f32.c new file mode 100644 index 0000000..009dc9d --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/float/dsps_wind_nuttall_f32.c @@ -0,0 +1,33 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#define _USE_MATH_DEFINES +#include "dsps_wind_nuttall.h" +#include + +void dsps_wind_nuttall_f32(float *window, int len) +{ + const float a0 = 0.355768; + const float a1 = 0.487396; + const float a2 = 0.144232; + const float a3 = 0.012604; + + float len_mult = 1 / (float)(len - 1); + for (int i = 0; i < len; i++) { + window[i] = a0 + - a1 * cosf(i * 2 * M_PI * len_mult) + + a2 * cosf(i * 4 * M_PI * len_mult) + - a3 * cosf(i * 6 * M_PI * len_mult); + } +} diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include/dsps_wind_nuttall.h b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include/dsps_wind_nuttall.h new file mode 100644 index 0000000..1cbfc72 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/nuttall/include/dsps_wind_nuttall.h @@ -0,0 +1,38 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +#ifndef _dsps_wind_nuttall_H_ +#define _dsps_wind_nuttall_H_ + +#ifdef __cplusplus +extern "C" +{ +#endif + +/** + * @brief Nuttall window + * + * The function generates Nuttall window. + * + * @param window: buffer to store window array. + * @param len: length of the window array + * + */ +void dsps_wind_nuttall_f32(float *window, int len); + +#ifdef __cplusplus +} +#endif +#endif // _dsps_wind_nuttall_H_ diff --git a/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/test/test_wind_f32.c b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/test/test_wind_f32.c new file mode 100644 index 0000000..cbd65d5 --- /dev/null +++ b/ESPIDFNEW/managed_components/espressif__esp-dsp/modules/windows/test/test_wind_f32.c @@ -0,0 +1,108 @@ +// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include "unity.h" +#include "dsp_platform.h" +#include "esp_log.h" + +#include "esp_dsp.h" +#include "dsps_wind.h" + +static const int length = 1024; +static float data[1024]; + +// This test check if the window is symmetric +TEST_CASE("dsps_wind_hann_f32: test Hann window for symmetry", "[dsps]") +{ + dsps_wind_hann_f32(data, length); + float hann_diff = 0; + for (int i = 0 ; i < length / 2 ; i++) { + hann_diff += fabs(data[i] - data[length - 1 - i]); + } + + if (hann_diff > 0) { + TEST_ASSERT_EQUAL(0, hann_diff); + } + dsps_view(data, length, 64, 10, 0, 1, '.'); +} + +TEST_CASE("dsps_wind_blackman_f32: test Blackman window for symmetry", "[dsps]") +{ + dsps_wind_blackman_f32(data, length); + float hann_diff = 0; + for (int i = 0 ; i < length / 2 ; i++) { + hann_diff += fabs(data[i] - data[length - 1 - i]); + } + if (hann_diff > 0) { + TEST_ASSERT_EQUAL(0, hann_diff); + } + dsps_view(data, length, 64, 10, 0, 1, '.'); +} + +TEST_CASE("dsps_wind_blackman_harris_f32: test Blackman-Hariss window for symmetry", "[dsps]") +{ + dsps_wind_blackman_harris_f32(data, length); + float hann_diff = 0; + for (int i = 0 ; i < length / 2 ; i++) { + hann_diff += fabs(data[i] - data[length - 1 - i]); + } + + if (hann_diff > 0) { + TEST_ASSERT_EQUAL(0, hann_diff); + } + dsps_view(data, length, 64, 10, 0, 1, '.'); +} + +TEST_CASE("dsps_wind_blackman_nuttall_f32: test Blackman-Nuttall window for symmetry", "[dsps]") +{ + dsps_wind_blackman_nuttall_f32(data, length); + float hann_diff = 0; + for (int i = 0 ; i < length / 2 ; i++) { + hann_diff += fabs(data[i] - data[length - 1 - i]); + } + + if (hann_diff > 0) { + TEST_ASSERT_EQUAL(0, hann_diff); + } + dsps_view(data, length, 64, 10, 0, 1, '.'); +} + +TEST_CASE("dsps_wind_nuttall_f32: test Nuttall window for symmetry", "[dsps]") +{ + dsps_wind_nuttall_f32(data, length); + float hann_diff = 0; + for (int i = 0 ; i < length / 2 ; i++) { + hann_diff += fabs(data[i] - data[length - 1 - i]); + } + + if (hann_diff > 0) { + TEST_ASSERT_EQUAL(0, hann_diff); + } + dsps_view(data, length, 64, 10, 0, 1, '.'); +} + +TEST_CASE("dsps_wind_flat_top_f32: test Flat-Top window for symmetry", "[dsps]") +{ + dsps_wind_flat_top_f32(data, length); + float hann_diff = 0; + for (int i = 0 ; i < length / 2 ; i++) { + hann_diff += fabs(data[i] - data[length - 1 - i]); + } + + if (hann_diff > 0) { + TEST_ASSERT_EQUAL(0, hann_diff); + } + dsps_view(data, length, 64, 10, 0, 1, '.'); +} diff --git a/ESPIDFNEW/partition_table/partitionTable.bin b/ESPIDFNEW/partition_table/partitionTable.bin new file mode 100644 index 0000000..b8fa03b Binary files /dev/null and b/ESPIDFNEW/partition_table/partitionTable.bin differ diff --git a/ESPIDFNEW/partition_table/partitionTable.csv b/ESPIDFNEW/partition_table/partitionTable.csv new file mode 100644 index 0000000..25e1ed5 --- /dev/null +++ b/ESPIDFNEW/partition_table/partitionTable.csv @@ -0,0 +1,5 @@ +# ESP-IDF Partition Table +# Name, Type, SubType, Offset, Size, Flags +nvs,data,nvs,0x9000,24K, +phy_init,data,phy,0xf000,4K, +factory,app,factory,0x10000,1M, diff --git a/ESPIDFNEW/pytest_hello_world.py b/ESPIDFNEW/pytest_hello_world.py new file mode 100644 index 0000000..caeeff1 --- /dev/null +++ b/ESPIDFNEW/pytest_hello_world.py @@ -0,0 +1,53 @@ +# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD +# SPDX-License-Identifier: CC0-1.0 + +import hashlib +import logging +from typing import Callable + +import pytest +from pytest_embedded_idf.dut import IdfDut +from pytest_embedded_qemu.app import QemuApp +from pytest_embedded_qemu.dut import QemuDut + + +@pytest.mark.supported_targets +@pytest.mark.preview_targets +@pytest.mark.generic +def test_hello_world( + dut: IdfDut, log_minimum_free_heap_size: Callable[..., None] +) -> None: + dut.expect('Hello world!') + log_minimum_free_heap_size() + + +@pytest.mark.linux +@pytest.mark.host_test +def test_hello_world_linux(dut: IdfDut) -> None: + dut.expect('Hello world!') + + +def verify_elf_sha256_embedding(app: QemuApp, sha256_reported: str) -> None: + sha256 = hashlib.sha256() + with open(app.elf_file, 'rb') as f: + sha256.update(f.read()) + sha256_expected = sha256.hexdigest() + + logging.info(f'ELF file SHA256: {sha256_expected}') + logging.info(f'ELF file SHA256 (reported by the app): {sha256_reported}') + + # the app reports only the first several hex characters of the SHA256, check that they match + if not sha256_expected.startswith(sha256_reported): + raise ValueError('ELF file SHA256 mismatch') + + +@pytest.mark.esp32 # we only support qemu on esp32 for now +@pytest.mark.host_test +@pytest.mark.qemu +def test_hello_world_host(app: QemuApp, dut: QemuDut) -> None: + sha256_reported = ( + dut.expect(r'ELF file SHA256:\s+([a-f0-9]+)').group(1).decode('utf-8') + ) + verify_elf_sha256_embedding(app, sha256_reported) + + dut.expect('Hello world!') diff --git a/ESPIDFNEW/sdkconfig b/ESPIDFNEW/sdkconfig new file mode 100644 index 0000000..74d2fa7 --- /dev/null +++ b/ESPIDFNEW/sdkconfig @@ -0,0 +1,1936 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) 5.2.2 Project Configuration +# +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED="Not determined" +CONFIG_SOC_TWAI_BRP_DIV_SUPPORTED="Not determined" +CONFIG_SOC_DPORT_WORKAROUND="Not determined" +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_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_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_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=64 +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_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_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_PDM_MAX_TX_LINES=1 +CONFIG_SOC_I2S_SUPPORTS_PDM_RX=y +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_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_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_TOUCH_VERSION_1=y +CONFIG_SOC_TOUCH_SENSOR_NUM=10 +CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX=0xFF +CONFIG_SOC_TWAI_CONTROLLER_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_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=y +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=y +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_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_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_ULP_HAS_ADC=y +CONFIG_SOC_PHY_COMBO_MODULE=y +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TOOLCHAIN="gcc" +CONFIG_IDF_TARGET_ARCH_XTENSA=y +CONFIG_IDF_TARGET_ARCH="xtensa" +CONFIG_IDF_TARGET="esp32" +CONFIG_IDF_INIT_VERSION="5.2.2" +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 + +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 +# 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 + +# +# 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_APP_ROLLBACK_ENABLE is not set +# 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_NANO_FORMAT=y +CONFIG_ESP_ROM_HAS_SW_FLOAT=y +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=-1 + +# +# 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=y +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_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 + +# +# 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_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_WARN_WRITE_STRINGS is not set +# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set +# CONFIG_COMPILER_DUMP_RTL_FILES is not set +CONFIG_COMPILER_RT_LIB_GCCLIB=y +CONFIG_COMPILER_RT_LIB_NAME="gcc" +# end of Compiler options + +# +# Component config +# + +# +# Application Level Tracing +# +# CONFIG_APPTRACE_DEST_JTAG is not set +CONFIG_APPTRACE_DEST_NONE=y +# CONFIG_APPTRACE_DEST_UART1 is not set +# CONFIG_APPTRACE_DEST_UART2 is not set +CONFIG_APPTRACE_DEST_UART_NONE=y +CONFIG_APPTRACE_UART_TASK_PRIO=1 +CONFIG_APPTRACE_LOCK_ENABLE=y +# end of Application Level Tracing + +# +# Bluetooth +# +# CONFIG_BT_ENABLED is not set +CONFIG_BT_ALARM_MAX_NUM=50 +# end of Bluetooth + +# +# Driver Configurations +# + +# +# Legacy ADC Configuration +# +CONFIG_ADC_DISABLE_DAC=y +# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN 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 Configuration + +# +# SPI Configuration +# +# 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 SPI Configuration + +# +# TWAI Configuration +# +# CONFIG_TWAI_ISR_IN_IRAM 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 TWAI Configuration + +# +# UART Configuration +# +# CONFIG_UART_ISR_IN_IRAM is not set +# end of UART Configuration + +# +# GPIO Configuration +# +# CONFIG_GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL is not set +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of GPIO Configuration + +# +# Sigma Delta Modulator Configuration +# +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of Sigma Delta Modulator Configuration + +# +# GPTimer Configuration +# +CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set +# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of GPTimer Configuration + +# +# PCNT Configuration +# +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of PCNT Configuration + +# +# RMT Configuration +# +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# CONFIG_RMT_RECV_FUNC_IN_IRAM is not set +# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# end of RMT Configuration + +# +# MCPWM Configuration +# +# CONFIG_MCPWM_ISR_IRAM_SAFE is not set +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of MCPWM Configuration + +# +# I2S Configuration +# +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of I2S Configuration + +# +# DAC Configuration +# +# CONFIG_DAC_CTRL_FUNC_IN_IRAM is not set +# CONFIG_DAC_ISR_IRAM_SAFE is not set +# CONFIG_DAC_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_DAC_ENABLE_DEBUG_LOG is not set +CONFIG_DAC_DMA_AUTO_16BIT_ALIGN=y +# end of DAC Configuration + +# +# LEDC Configuration +# +# CONFIG_LEDC_CTRL_FUNC_IN_IRAM is not set +# end of LEDC Configuration + +# +# I2C Configuration +# +# CONFIG_I2C_ISR_IRAM_SAFE is not set +# CONFIG_I2C_ENABLE_DEBUG_LOG is not set +# end of I2C Configuration +# 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 + +# +# ESP-TLS +# +CONFIG_ESP_TLS_USING_MBEDTLS=y +# CONFIG_ESP_TLS_USE_SECURE_ELEMENT is not set +# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER is not set +# CONFIG_ESP_TLS_PSK_VERIFICATION is not set +# CONFIG_ESP_TLS_INSECURE is not set +# end of ESP-TLS + +# +# 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=y +# end of ADC and ADC Calibration + +# +# Wireless Coexistence +# +# end of Wireless Coexistence + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# Ethernet +# +CONFIG_ETH_ENABLED=y +CONFIG_ETH_USE_ESP32_EMAC=y +CONFIG_ETH_PHY_INTERFACE_RMII=y +CONFIG_ETH_RMII_CLK_INPUT=y +# CONFIG_ETH_RMII_CLK_OUTPUT is not set +CONFIG_ETH_RMII_CLK_IN_GPIO=0 +CONFIG_ETH_DMA_BUFFER_SIZE=512 +CONFIG_ETH_DMA_RX_BUFFER_NUM=10 +CONFIG_ETH_DMA_TX_BUFFER_NUM=10 +# CONFIG_ETH_IRAM_OPTIMIZATION is not set +CONFIG_ETH_USE_SPI_ETHERNET=y +# CONFIG_ETH_SPI_ETHERNET_DM9051 is not set +# CONFIG_ETH_SPI_ETHERNET_W5500 is not set +# CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL is not set +# CONFIG_ETH_USE_OPENETH is not set +# CONFIG_ETH_TRANSMIT_MUTEX is not set +# end of Ethernet + +# +# Event Loop Library +# +# CONFIG_ESP_EVENT_LOOP_PROFILING is not set +CONFIG_ESP_EVENT_POST_FROM_ISR=y +CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y +# end of Event Loop Library + +# +# GDB Stub +# +CONFIG_ESP_GDBSTUB_ENABLED=y +# CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME is not set +CONFIG_ESP_GDBSTUB_SUPPORT_TASKS=y +CONFIG_ESP_GDBSTUB_MAX_TASKS=32 +# end of GDB Stub + +# +# ESP HTTP client +# +CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y +# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set +# CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH is not set +# end of ESP HTTP client + +# +# HTTP Server +# +CONFIG_HTTPD_MAX_REQ_HDR_LEN=1024 +CONFIG_HTTPD_MAX_URI_LEN=1024 +CONFIG_HTTPD_ERR_RESP_NO_DELAY=y +CONFIG_HTTPD_PURGE_BUF_LEN=32 +# CONFIG_HTTPD_LOG_PURGE_DATA is not set +# CONFIG_HTTPD_WS_SUPPORT is not set +# CONFIG_HTTPD_QUEUE_WORK_BLOCKING is not set +# end of HTTP Server + +# +# ESP HTTPS OTA +# +# CONFIG_ESP_HTTPS_OTA_DECRYPT_CB is not set +# CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP is not set +# end of ESP HTTPS OTA + +# +# ESP HTTPS server +# +# CONFIG_ESP_HTTPS_SERVER_ENABLE is not set +# end of ESP HTTPS server + +# +# 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 +# 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_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_PERIPH_CTRL_FUNC_IN_IRAM=y +# end of Peripheral Control + +# +# Main XTAL Config +# +# CONFIG_XTAL_FREQ_26 is not set +CONFIG_XTAL_FREQ_40=y +# CONFIG_XTAL_FREQ_AUTO is not set +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config +# end of Hardware Settings + +# +# LCD and Touch Panel +# + +# +# LCD Touch Drivers are maintained in the IDF Component Registry +# + +# +# LCD Peripheral Configuration +# +CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE=32 +# CONFIG_LCD_ENABLE_DEBUG_LOG is not set +# end of LCD Peripheral Configuration +# end of LCD and Touch Panel + +# +# ESP NETIF Adapter +# +CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 +CONFIG_ESP_NETIF_TCPIP_LWIP=y +# CONFIG_ESP_NETIF_LOOPBACK is not set +CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API=y +# CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS is not set +# CONFIG_ESP_NETIF_L2_TAP is not set +# CONFIG_ESP_NETIF_BRIDGE_EN is not set +# end of ESP NETIF Adapter + +# +# Partition API Configuration +# +# end of Partition API Configuration + +# +# PHY +# +CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE=y +# CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION is not set +CONFIG_ESP_PHY_MAX_WIFI_TX_POWER=20 +CONFIG_ESP_PHY_MAX_TX_POWER=20 +# CONFIG_ESP_PHY_REDUCE_TX_POWER is not set +CONFIG_ESP_PHY_RF_CAL_PARTIAL=y +# CONFIG_ESP_PHY_RF_CAL_NONE is not set +# CONFIG_ESP_PHY_RF_CAL_FULL is not set +CONFIG_ESP_PHY_CALIBRATION_MODE=0 +# CONFIG_ESP_PHY_PLL_TRACK_DEBUG is not set +# end of PHY + +# +# Power Management +# +# CONFIG_PM_ENABLE is not set +# end of Power Management + +# +# ESP PSRAM +# +# CONFIG_SPIRAM is not set +# end of ESP PSRAM + +# +# ESP Ringbuf +# +# CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH is not set +# end of ESP Ringbuf + +# +# ESP System Settings +# +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=240 + +# +# 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_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_GDBSTUB 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_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 + +# +# 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 +# end of Brownout Detector + +# CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE is not set +CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +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) + +# +# High resolution timer (esp_timer) +# +# 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=0x1 +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 High resolution timer (esp_timer) + +# +# Wi-Fi +# +CONFIG_ESP_WIFI_ENABLED=y +CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM=10 +CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# CONFIG_ESP_WIFI_STATIC_TX_BUFFER is not set +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER=y +CONFIG_ESP_WIFI_TX_BUFFER_TYPE=1 +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER=y +# CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER is not set +CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF=0 +CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF=5 +# CONFIG_ESP_WIFI_CSI_ENABLED is not set +CONFIG_ESP_WIFI_AMPDU_TX_ENABLED=y +CONFIG_ESP_WIFI_TX_BA_WIN=6 +CONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP_WIFI_RX_BA_WIN=6 +CONFIG_ESP_WIFI_NVS_ENABLED=y +CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0=y +# CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 is not set +CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN=752 +CONFIG_ESP_WIFI_MGMT_SBUF_NUM=32 +CONFIG_ESP_WIFI_IRAM_OPT=y +# CONFIG_ESP_WIFI_EXTRA_IRAM_OPT is not set +CONFIG_ESP_WIFI_RX_IRAM_OPT=y +CONFIG_ESP_WIFI_ENABLE_WPA3_SAE=y +CONFIG_ESP_WIFI_ENABLE_SAE_PK=y +CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT=y +CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA=y +# CONFIG_ESP_WIFI_SLP_IRAM_OPT is not set +CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y +# CONFIG_ESP_WIFI_GMAC_SUPPORT is not set +CONFIG_ESP_WIFI_SOFTAP_SUPPORT=y +# CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT is not set +CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM=7 +# CONFIG_ESP_WIFI_NAN_ENABLE is not set +CONFIG_ESP_WIFI_MBEDTLS_CRYPTO=y +CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT=y +# CONFIG_ESP_WIFI_WAPI_PSK is not set +# CONFIG_ESP_WIFI_11KV_SUPPORT is not set +# CONFIG_ESP_WIFI_MBO_SUPPORT is not set +# CONFIG_ESP_WIFI_DPP_SUPPORT is not set +# CONFIG_ESP_WIFI_11R_SUPPORT is not set +# CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR is not set + +# +# WPS Configuration Options +# +# CONFIG_ESP_WIFI_WPS_STRICT is not set +# CONFIG_ESP_WIFI_WPS_PASSPHRASE is not set +# end of WPS Configuration Options + +# CONFIG_ESP_WIFI_DEBUG_PRINT is not set +# CONFIG_ESP_WIFI_TESTING_OPTIONS is not set +CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y +# CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER is not set +# end of Wi-Fi + +# +# Core dump +# +# CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH is not set +# CONFIG_ESP_COREDUMP_ENABLE_TO_UART is not set +CONFIG_ESP_COREDUMP_ENABLE_TO_NONE=y +# end of Core dump + +# +# FAT Filesystem support +# +CONFIG_FATFS_VOLUME_COUNT=2 +CONFIG_FATFS_LFN_NONE=y +# CONFIG_FATFS_LFN_HEAP is not set +# CONFIG_FATFS_LFN_STACK is not set +# CONFIG_FATFS_SECTOR_512 is not set +CONFIG_FATFS_SECTOR_4096=y +# CONFIG_FATFS_CODEPAGE_DYNAMIC is not set +CONFIG_FATFS_CODEPAGE_437=y +# CONFIG_FATFS_CODEPAGE_720 is not set +# CONFIG_FATFS_CODEPAGE_737 is not set +# CONFIG_FATFS_CODEPAGE_771 is not set +# CONFIG_FATFS_CODEPAGE_775 is not set +# CONFIG_FATFS_CODEPAGE_850 is not set +# CONFIG_FATFS_CODEPAGE_852 is not set +# CONFIG_FATFS_CODEPAGE_855 is not set +# CONFIG_FATFS_CODEPAGE_857 is not set +# CONFIG_FATFS_CODEPAGE_860 is not set +# CONFIG_FATFS_CODEPAGE_861 is not set +# CONFIG_FATFS_CODEPAGE_862 is not set +# CONFIG_FATFS_CODEPAGE_863 is not set +# CONFIG_FATFS_CODEPAGE_864 is not set +# CONFIG_FATFS_CODEPAGE_865 is not set +# CONFIG_FATFS_CODEPAGE_866 is not set +# CONFIG_FATFS_CODEPAGE_869 is not set +# CONFIG_FATFS_CODEPAGE_932 is not set +# CONFIG_FATFS_CODEPAGE_936 is not set +# CONFIG_FATFS_CODEPAGE_949 is not set +# CONFIG_FATFS_CODEPAGE_950 is not set +CONFIG_FATFS_CODEPAGE=437 +CONFIG_FATFS_FS_LOCK=0 +CONFIG_FATFS_TIMEOUT_MS=10000 +CONFIG_FATFS_PER_FILE_CACHE=y +# CONFIG_FATFS_USE_FASTSEEK is not set +CONFIG_FATFS_VFS_FSTAT_BLKSIZE=0 +# CONFIG_FATFS_IMMEDIATE_FSYNC is not set +# end of FAT Filesystem support + +# +# 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_TIMER_SERVICE_TASK_NAME="Tmr Svc" +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=y +CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS=y +CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID=y +CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y +CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U32=y +# CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U64 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_RUN_TIME_STATS_USING_ESP_TIMER=y +# CONFIG_FREERTOS_RUN_TIME_STATS_USING_CPU_CLK is not set +# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +# end of Port + +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 +# 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_SPI_MASTER_FUNC_IN_IRAM=y +CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM=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 output +# +# 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 +# CONFIG_LOG_MASTER_LEVEL is not set +CONFIG_LOG_COLORS=y +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Log output + +# +# LWIP +# +CONFIG_LWIP_ENABLE=y +CONFIG_LWIP_LOCAL_HOSTNAME="espressif" +# CONFIG_LWIP_NETIF_API is not set +CONFIG_LWIP_TCPIP_TASK_PRIO=18 +# CONFIG_LWIP_TCPIP_CORE_LOCKING is not set +# CONFIG_LWIP_CHECK_THREAD_SAFETY is not set +CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y +# CONFIG_LWIP_L2_TO_L3_COPY is not set +# CONFIG_LWIP_IRAM_OPTIMIZATION is not set +# CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION is not set +CONFIG_LWIP_TIMERS_ONDEMAND=y +CONFIG_LWIP_ND6=y +# CONFIG_LWIP_FORCE_ROUTER_FORWARDING is not set +CONFIG_LWIP_MAX_SOCKETS=10 +# CONFIG_LWIP_USE_ONLY_LWIP_SELECT is not set +# CONFIG_LWIP_SO_LINGER is not set +CONFIG_LWIP_SO_REUSE=y +CONFIG_LWIP_SO_REUSE_RXTOALL=y +# CONFIG_LWIP_SO_RCVBUF is not set +# CONFIG_LWIP_NETBUF_RECVINFO is not set +CONFIG_LWIP_IP_DEFAULT_TTL=64 +CONFIG_LWIP_IP4_FRAG=y +CONFIG_LWIP_IP6_FRAG=y +# CONFIG_LWIP_IP4_REASSEMBLY is not set +# CONFIG_LWIP_IP6_REASSEMBLY is not set +CONFIG_LWIP_IP_REASS_MAX_PBUFS=10 +# CONFIG_LWIP_IP_FORWARD is not set +# CONFIG_LWIP_STATS is not set +CONFIG_LWIP_ESP_GRATUITOUS_ARP=y +CONFIG_LWIP_GARP_TMR_INTERVAL=60 +CONFIG_LWIP_ESP_MLDV6_REPORT=y +CONFIG_LWIP_MLDV6_TMR_INTERVAL=40 +CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=32 +CONFIG_LWIP_DHCP_DOES_ARP_CHECK=y +# CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID is not set +CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID=y +# CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set +CONFIG_LWIP_DHCP_OPTIONS_LEN=68 +CONFIG_LWIP_NUM_NETIF_CLIENT_DATA=0 +CONFIG_LWIP_DHCP_COARSE_TIMER_SECS=1 + +# +# DHCP server +# +CONFIG_LWIP_DHCPS=y +CONFIG_LWIP_DHCPS_LEASE_UNIT=60 +CONFIG_LWIP_DHCPS_MAX_STATION_NUM=8 +CONFIG_LWIP_DHCPS_STATIC_ENTRIES=y +# end of DHCP server + +# CONFIG_LWIP_AUTOIP is not set +CONFIG_LWIP_IPV4=y +CONFIG_LWIP_IPV6=y +# CONFIG_LWIP_IPV6_AUTOCONFIG is not set +CONFIG_LWIP_IPV6_NUM_ADDRESSES=3 +# CONFIG_LWIP_IPV6_FORWARD is not set +# CONFIG_LWIP_NETIF_STATUS_CALLBACK is not set +CONFIG_LWIP_NETIF_LOOPBACK=y +CONFIG_LWIP_LOOPBACK_MAX_PBUFS=8 + +# +# TCP +# +CONFIG_LWIP_MAX_ACTIVE_TCP=16 +CONFIG_LWIP_MAX_LISTENING_TCP=16 +CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=y +CONFIG_LWIP_TCP_MAXRTX=12 +CONFIG_LWIP_TCP_SYNMAXRTX=12 +CONFIG_LWIP_TCP_MSS=1440 +CONFIG_LWIP_TCP_TMR_INTERVAL=250 +CONFIG_LWIP_TCP_MSL=60000 +CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT=20000 +CONFIG_LWIP_TCP_SND_BUF_DEFAULT=5760 +CONFIG_LWIP_TCP_WND_DEFAULT=5760 +CONFIG_LWIP_TCP_RECVMBOX_SIZE=6 +CONFIG_LWIP_TCP_QUEUE_OOSEQ=y +CONFIG_LWIP_TCP_OOSEQ_TIMEOUT=6 +CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS=4 +# CONFIG_LWIP_TCP_SACK_OUT is not set +CONFIG_LWIP_TCP_OVERSIZE_MSS=y +# CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS is not set +# CONFIG_LWIP_TCP_OVERSIZE_DISABLE is not set +CONFIG_LWIP_TCP_RTO_TIME=1500 +# end of TCP + +# +# UDP +# +CONFIG_LWIP_MAX_UDP_PCBS=16 +CONFIG_LWIP_UDP_RECVMBOX_SIZE=6 +# end of UDP + +# +# Checksums +# +# CONFIG_LWIP_CHECKSUM_CHECK_IP is not set +# CONFIG_LWIP_CHECKSUM_CHECK_UDP is not set +CONFIG_LWIP_CHECKSUM_CHECK_ICMP=y +# end of Checksums + +CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=3072 +CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY=y +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not set +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 is not set +CONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF +# CONFIG_LWIP_PPP_SUPPORT is not set +CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 +CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 +# CONFIG_LWIP_SLIP_SUPPORT is not set + +# +# ICMP +# +CONFIG_LWIP_ICMP=y +# CONFIG_LWIP_MULTICAST_PING is not set +# CONFIG_LWIP_BROADCAST_PING is not set +# end of ICMP + +# +# LWIP RAW API +# +CONFIG_LWIP_MAX_RAW_PCBS=16 +# end of LWIP RAW API + +# +# SNTP +# +CONFIG_LWIP_SNTP_MAX_SERVERS=1 +# CONFIG_LWIP_DHCP_GET_NTP_SRV is not set +CONFIG_LWIP_SNTP_UPDATE_DELAY=3600000 +# end of SNTP + +# +# DNS +# +CONFIG_LWIP_DNS_MAX_SERVERS=3 +# CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT is not set +# end of DNS + +CONFIG_LWIP_BRIDGEIF_MAX_PORTS=7 +CONFIG_LWIP_ESP_LWIP_ASSERT=y + +# +# Hooks +# +# CONFIG_LWIP_HOOK_TCP_ISN_NONE is not set +CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT=y +# CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM is not set +CONFIG_LWIP_HOOK_IP6_ROUTE_NONE=y +# CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT is not set +# CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM is not set +CONFIG_LWIP_HOOK_ND6_GET_GW_NONE=y +# CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT is not set +# CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM is not set +CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE=y +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT is not set +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM is not set +CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE=y +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT is not set +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM is not set +CONFIG_LWIP_HOOK_IP6_INPUT_NONE=y +# CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT is not set +# CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM is not set +# end of Hooks + +# CONFIG_LWIP_DEBUG is not set +# end of LWIP + +# +# 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_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_MAX_CERTS=200 +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +CONFIG_MBEDTLS_CMAC_C=y +CONFIG_MBEDTLS_HARDWARE_AES=y +# CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER is not set +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_SHA512_C=y +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_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=y +# 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 +# end of mbedTLS + +# +# ESP-MQTT Configurations +# +CONFIG_MQTT_PROTOCOL_311=y +# CONFIG_MQTT_PROTOCOL_5 is not set +CONFIG_MQTT_TRANSPORT_SSL=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=y +# CONFIG_MQTT_MSG_ID_INCREMENTAL is not set +# CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED is not set +# CONFIG_MQTT_REPORT_DELETED_MESSAGES is not set +# CONFIG_MQTT_USE_CUSTOM_CONFIG is not set +# CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED is not set +# CONFIG_MQTT_CUSTOM_OUTBOX is not set +# end of ESP-MQTT Configurations + +# +# Newlib +# +CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y +# CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set +# CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set +# CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set +# CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set +CONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y +# CONFIG_NEWLIB_NANO_FORMAT is not set +CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y +# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set +# end of Newlib + +# +# NVS +# +# CONFIG_NVS_ASSERT_ERROR_CHECK is not set +# CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY is not set +# end of NVS + +# +# OpenThread +# +# CONFIG_OPENTHREAD_ENABLED is not set + +# +# Thread Operational Dataset +# +CONFIG_OPENTHREAD_NETWORK_NAME="OpenThread-ESP" +CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX="fd00:db8:a0:0::/64" +CONFIG_OPENTHREAD_NETWORK_CHANNEL=15 +CONFIG_OPENTHREAD_NETWORK_PANID=0x1234 +CONFIG_OPENTHREAD_NETWORK_EXTPANID="dead00beef00cafe" +CONFIG_OPENTHREAD_NETWORK_MASTERKEY="00112233445566778899aabbccddeeff" +CONFIG_OPENTHREAD_NETWORK_PSKC="104810e2315100afd6bc9215a6bfac53" +# end of Thread Operational Dataset + +CONFIG_OPENTHREAD_XTAL_ACCURACY=130 +# CONFIG_OPENTHREAD_SPINEL_ONLY is not set +CONFIG_OPENTHREAD_RX_ON_WHEN_IDLE=y + +# +# Thread Address Query Config +# +# end of Thread Address Query Config +# end of OpenThread + +# +# Protocomm +# +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0=y +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1=y +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2=y +# end of Protocomm + +# +# 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!) +# +# 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_SUPPORTED=y +CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED=y +CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED=y +CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED=y +CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED=y +CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP=y +# CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP 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 + +# +# SPIFFS Configuration +# +CONFIG_SPIFFS_MAX_PARTITIONS=3 + +# +# SPIFFS Cache Configuration +# +CONFIG_SPIFFS_CACHE=y +CONFIG_SPIFFS_CACHE_WR=y +# CONFIG_SPIFFS_CACHE_STATS is not set +# end of SPIFFS Cache Configuration + +CONFIG_SPIFFS_PAGE_CHECK=y +CONFIG_SPIFFS_GC_MAX_RUNS=10 +# CONFIG_SPIFFS_GC_STATS is not set +CONFIG_SPIFFS_PAGE_SIZE=256 +CONFIG_SPIFFS_OBJ_NAME_LEN=32 +# CONFIG_SPIFFS_FOLLOW_SYMLINKS is not set +CONFIG_SPIFFS_USE_MAGIC=y +CONFIG_SPIFFS_USE_MAGIC_LENGTH=y +CONFIG_SPIFFS_META_LENGTH=4 +CONFIG_SPIFFS_USE_MTIME=y + +# +# Debug Configuration +# +# CONFIG_SPIFFS_DBG is not set +# CONFIG_SPIFFS_API_DBG is not set +# CONFIG_SPIFFS_GC_DBG is not set +# CONFIG_SPIFFS_CACHE_DBG is not set +# CONFIG_SPIFFS_CHECK_DBG is not set +# CONFIG_SPIFFS_TEST_VISUALISATION is not set +# end of Debug Configuration +# end of SPIFFS Configuration + +# +# TCP Transport +# + +# +# Websocket +# +CONFIG_WS_TRANSPORT=y +CONFIG_WS_BUFFER_SIZE=1024 +# CONFIG_WS_DYNAMIC_BUFFER is not set +# end of Websocket +# end of TCP Transport + +# +# Ultra Low Power (ULP) Co-processor +# +# CONFIG_ULP_COPROC_ENABLED is not set +# end of Ultra Low Power (ULP) Co-processor + +# +# Unity unit testing library +# +CONFIG_UNITY_ENABLE_FLOAT=y +CONFIG_UNITY_ENABLE_DOUBLE=y +# CONFIG_UNITY_ENABLE_64BIT is not set +# CONFIG_UNITY_ENABLE_COLOR is not set +CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y +# CONFIG_UNITY_ENABLE_FIXTURE is not set +# CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL is not set +# end of Unity unit testing library + +# +# Virtual file system +# +CONFIG_VFS_SUPPORT_IO=y +CONFIG_VFS_SUPPORT_DIR=y +CONFIG_VFS_SUPPORT_SELECT=y +CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y +# CONFIG_VFS_SELECT_IN_RAM is not set +CONFIG_VFS_SUPPORT_TERMIOS=y +CONFIG_VFS_MAX_COUNT=8 + +# +# Host File System I/O (Semihosting) +# +CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# end of Host File System I/O (Semihosting) +# end of Virtual file system + +# +# Wear Levelling +# +# CONFIG_WL_SECTOR_SIZE_512 is not set +CONFIG_WL_SECTOR_SIZE_4096=y +CONFIG_WL_SECTOR_SIZE=4096 +# end of Wear Levelling + +# +# Wi-Fi Provisioning Manager +# +CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES=16 +CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT=30 +# CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION is not set +CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN=y +# CONFIG_WIFI_PROV_STA_FAST_SCAN is not set +# end of Wi-Fi Provisioning Manager + +# +# DSP Library +# +CONFIG_DSP_OPTIMIZATIONS_SUPPORTED=y +# CONFIG_DSP_ANSI is not set +CONFIG_DSP_OPTIMIZED=y +CONFIG_DSP_OPTIMIZATION=1 +# CONFIG_DSP_MAX_FFT_SIZE_512 is not set +# CONFIG_DSP_MAX_FFT_SIZE_1024 is not set +# CONFIG_DSP_MAX_FFT_SIZE_2048 is not set +CONFIG_DSP_MAX_FFT_SIZE_4096=y +# CONFIG_DSP_MAX_FFT_SIZE_8192 is not set +# CONFIG_DSP_MAX_FFT_SIZE_16384 is not set +# CONFIG_DSP_MAX_FFT_SIZE_32768 is not set +CONFIG_DSP_MAX_FFT_SIZE=4096 +# end of DSP Library +# 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_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_APP_ROLLBACK_ENABLE is not set +# 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_ESP32_APPTRACE_DEST_TRAX is not set +CONFIG_ESP32_APPTRACE_DEST_NONE=y +CONFIG_ESP32_APPTRACE_LOCK_ENABLE=y +CONFIG_ADC2_DISABLE_DAC=y +# CONFIG_MCPWM_ISR_IN_IRAM is not set +# CONFIG_EVENT_LOOP_PROFILING is not set +CONFIG_POST_EVENTS_FROM_ISR=y +CONFIG_POST_EVENTS_FROM_IRAM_ISR=y +CONFIG_GDBSTUB_SUPPORT_TASKS=y +CONFIG_GDBSTUB_MAX_TASKS=32 +# CONFIG_OTA_ALLOW_HTTP 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_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_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE=y +# CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION is not set +CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER=20 +CONFIG_ESP32_PHY_MAX_TX_POWER=20 +# CONFIG_REDUCE_PHY_TX_POWER is not set +# CONFIG_ESP32_REDUCE_PHY_TX_POWER is not set +# CONFIG_SPIRAM_SUPPORT is not set +# CONFIG_ESP32_SPIRAM_SUPPORT is not set +# CONFIG_ESP32_DEFAULT_CPU_FREQ_80 is not set +# CONFIG_ESP32_DEFAULT_CPU_FREQ_160 is not set +CONFIG_ESP32_DEFAULT_CPU_FREQ_240=y +CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=240 +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_ESP32_PANIC_GDBSTUB 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_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_DISABLE_BASIC_ROM_CONSOLE is not set +CONFIG_IPC_TASK_STACK_SIZE=1024 +CONFIG_TIMER_TASK_STACK_SIZE=3584 +CONFIG_ESP32_WIFI_ENABLED=y +CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 +CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y +CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1 +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_CSI_ENABLED is not set +CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y +CONFIG_ESP32_WIFI_TX_BA_WIN=6 +CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP32_WIFI_RX_BA_WIN=6 +CONFIG_ESP32_WIFI_RX_BA_WIN=6 +CONFIG_ESP32_WIFI_NVS_ENABLED=y +CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y +# CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set +CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 +CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32 +CONFIG_ESP32_WIFI_IRAM_OPT=y +CONFIG_ESP32_WIFI_RX_IRAM_OPT=y +CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y +CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=y +CONFIG_WPA_MBEDTLS_CRYPTO=y +CONFIG_WPA_MBEDTLS_TLS_CLIENT=y +# CONFIG_WPA_WAPI_PSK is not set +# CONFIG_WPA_11KV_SUPPORT is not set +# CONFIG_WPA_MBO_SUPPORT is not set +# CONFIG_WPA_DPP_SUPPORT is not set +# CONFIG_WPA_11R_SUPPORT is not set +# CONFIG_WPA_WPS_SOFTAP_REGISTRAR is not set +# CONFIG_WPA_WPS_STRICT is not set +# CONFIG_WPA_DEBUG_PRINT is not set +# CONFIG_WPA_TESTING_OPTIONS is not set +# CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set +# CONFIG_ESP32_ENABLE_COREDUMP_TO_UART is not set +CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE=y +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_L2_TO_L3_COPY is not set +CONFIG_ESP_GRATUITOUS_ARP=y +CONFIG_GARP_TMR_INTERVAL=60 +CONFIG_TCPIP_RECVMBOX_SIZE=32 +CONFIG_TCP_MAXRTX=12 +CONFIG_TCP_SYNMAXRTX=12 +CONFIG_TCP_MSS=1440 +CONFIG_TCP_MSL=60000 +CONFIG_TCP_SND_BUF_DEFAULT=5760 +CONFIG_TCP_WND_DEFAULT=5760 +CONFIG_TCP_RECVMBOX_SIZE=6 +CONFIG_TCP_QUEUE_OOSEQ=y +CONFIG_TCP_OVERSIZE_MSS=y +# CONFIG_TCP_OVERSIZE_QUARTER_MSS is not set +# CONFIG_TCP_OVERSIZE_DISABLE is not set +CONFIG_UDP_RECVMBOX_SIZE=6 +CONFIG_TCPIP_TASK_STACK_SIZE=3072 +CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY=y +# CONFIG_TCPIP_TASK_AFFINITY_CPU0 is not set +# CONFIG_TCPIP_TASK_AFFINITY_CPU1 is not set +CONFIG_TCPIP_TASK_AFFINITY=0x7FFFFFFF +# CONFIG_PPP_SUPPORT is not set +CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT=y +CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1=y +# CONFIG_ESP32_TIME_SYSCALL_USE_RTC is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_HRT is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 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 +# CONFIG_ESP32_ULP_COPROC_ENABLED is not set +CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT=y +CONFIG_SUPPORT_TERMIOS=y +CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# End of deprecated options diff --git a/ESPIDFNEW/sdkconfig.ci b/ESPIDFNEW/sdkconfig.ci new file mode 100644 index 0000000..e69de29 diff --git a/ESPIDFNEW/sdkconfig.old b/ESPIDFNEW/sdkconfig.old new file mode 100644 index 0000000..39fb34f --- /dev/null +++ b/ESPIDFNEW/sdkconfig.old @@ -0,0 +1,1935 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) 5.2.2 Project Configuration +# +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED="Not determined" +CONFIG_SOC_TWAI_BRP_DIV_SUPPORTED="Not determined" +CONFIG_SOC_DPORT_WORKAROUND="Not determined" +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_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_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_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=64 +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_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_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_PDM_MAX_TX_LINES=1 +CONFIG_SOC_I2S_SUPPORTS_PDM_RX=y +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_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_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_TOUCH_VERSION_1=y +CONFIG_SOC_TOUCH_SENSOR_NUM=10 +CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX=0xFF +CONFIG_SOC_TWAI_CONTROLLER_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_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=y +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=y +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_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_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_ULP_HAS_ADC=y +CONFIG_SOC_PHY_COMBO_MODULE=y +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TOOLCHAIN="gcc" +CONFIG_IDF_TARGET_ARCH_XTENSA=y +CONFIG_IDF_TARGET_ARCH="xtensa" +CONFIG_IDF_TARGET="esp32" +CONFIG_IDF_INIT_VERSION="5.2.2" +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 + +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 +# 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 + +# +# 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_APP_ROLLBACK_ENABLE is not set +# 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_NANO_FORMAT=y +CONFIG_ESP_ROM_HAS_SW_FLOAT=y +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=-1 + +# +# 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=y +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_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 + +# +# Compiler options +# +# CONFIG_COMPILER_OPTIMIZATION_DEBUG is not set +# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set +CONFIG_COMPILER_OPTIMIZATION_PERF=y +# 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_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_WARN_WRITE_STRINGS is not set +# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set +# CONFIG_COMPILER_DUMP_RTL_FILES is not set +CONFIG_COMPILER_RT_LIB_GCCLIB=y +CONFIG_COMPILER_RT_LIB_NAME="gcc" +# end of Compiler options + +# +# Component config +# + +# +# Application Level Tracing +# +# CONFIG_APPTRACE_DEST_JTAG is not set +CONFIG_APPTRACE_DEST_NONE=y +# CONFIG_APPTRACE_DEST_UART1 is not set +# CONFIG_APPTRACE_DEST_UART2 is not set +CONFIG_APPTRACE_DEST_UART_NONE=y +CONFIG_APPTRACE_UART_TASK_PRIO=1 +CONFIG_APPTRACE_LOCK_ENABLE=y +# end of Application Level Tracing + +# +# Bluetooth +# +# CONFIG_BT_ENABLED is not set +CONFIG_BT_ALARM_MAX_NUM=50 +# end of Bluetooth + +# +# Driver Configurations +# + +# +# Legacy ADC Configuration +# +CONFIG_ADC_DISABLE_DAC=y +# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN 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 Configuration + +# +# SPI Configuration +# +# 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 SPI Configuration + +# +# TWAI Configuration +# +# CONFIG_TWAI_ISR_IN_IRAM 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 TWAI Configuration + +# +# UART Configuration +# +# CONFIG_UART_ISR_IN_IRAM is not set +# end of UART Configuration + +# +# GPIO Configuration +# +# CONFIG_GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL is not set +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of GPIO Configuration + +# +# Sigma Delta Modulator Configuration +# +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of Sigma Delta Modulator Configuration + +# +# GPTimer Configuration +# +CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set +# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of GPTimer Configuration + +# +# PCNT Configuration +# +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of PCNT Configuration + +# +# RMT Configuration +# +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# CONFIG_RMT_RECV_FUNC_IN_IRAM is not set +# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# end of RMT Configuration + +# +# MCPWM Configuration +# +# CONFIG_MCPWM_ISR_IRAM_SAFE is not set +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of MCPWM Configuration + +# +# I2S Configuration +# +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of I2S Configuration + +# +# DAC Configuration +# +# CONFIG_DAC_CTRL_FUNC_IN_IRAM is not set +# CONFIG_DAC_ISR_IRAM_SAFE is not set +# CONFIG_DAC_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_DAC_ENABLE_DEBUG_LOG is not set +CONFIG_DAC_DMA_AUTO_16BIT_ALIGN=y +# end of DAC Configuration + +# +# LEDC Configuration +# +# CONFIG_LEDC_CTRL_FUNC_IN_IRAM is not set +# end of LEDC Configuration + +# +# I2C Configuration +# +# CONFIG_I2C_ISR_IRAM_SAFE is not set +# CONFIG_I2C_ENABLE_DEBUG_LOG is not set +# end of I2C Configuration +# 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 + +# +# ESP-TLS +# +CONFIG_ESP_TLS_USING_MBEDTLS=y +# CONFIG_ESP_TLS_USE_SECURE_ELEMENT is not set +# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER is not set +# CONFIG_ESP_TLS_PSK_VERIFICATION is not set +# CONFIG_ESP_TLS_INSECURE is not set +# end of ESP-TLS + +# +# 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=y +# end of ADC and ADC Calibration + +# +# Wireless Coexistence +# +# end of Wireless Coexistence + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# Ethernet +# +CONFIG_ETH_ENABLED=y +CONFIG_ETH_USE_ESP32_EMAC=y +CONFIG_ETH_PHY_INTERFACE_RMII=y +CONFIG_ETH_RMII_CLK_INPUT=y +# CONFIG_ETH_RMII_CLK_OUTPUT is not set +CONFIG_ETH_RMII_CLK_IN_GPIO=0 +CONFIG_ETH_DMA_BUFFER_SIZE=512 +CONFIG_ETH_DMA_RX_BUFFER_NUM=10 +CONFIG_ETH_DMA_TX_BUFFER_NUM=10 +# CONFIG_ETH_IRAM_OPTIMIZATION is not set +CONFIG_ETH_USE_SPI_ETHERNET=y +# CONFIG_ETH_SPI_ETHERNET_DM9051 is not set +# CONFIG_ETH_SPI_ETHERNET_W5500 is not set +# CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL is not set +# CONFIG_ETH_USE_OPENETH is not set +# CONFIG_ETH_TRANSMIT_MUTEX is not set +# end of Ethernet + +# +# Event Loop Library +# +# CONFIG_ESP_EVENT_LOOP_PROFILING is not set +CONFIG_ESP_EVENT_POST_FROM_ISR=y +CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y +# end of Event Loop Library + +# +# GDB Stub +# +CONFIG_ESP_GDBSTUB_ENABLED=y +# CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME is not set +CONFIG_ESP_GDBSTUB_SUPPORT_TASKS=y +CONFIG_ESP_GDBSTUB_MAX_TASKS=32 +# end of GDB Stub + +# +# ESP HTTP client +# +CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y +# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set +# CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH is not set +# end of ESP HTTP client + +# +# HTTP Server +# +CONFIG_HTTPD_MAX_REQ_HDR_LEN=1024 +CONFIG_HTTPD_MAX_URI_LEN=1024 +CONFIG_HTTPD_ERR_RESP_NO_DELAY=y +CONFIG_HTTPD_PURGE_BUF_LEN=32 +# CONFIG_HTTPD_LOG_PURGE_DATA is not set +# CONFIG_HTTPD_WS_SUPPORT is not set +# CONFIG_HTTPD_QUEUE_WORK_BLOCKING is not set +# end of HTTP Server + +# +# ESP HTTPS OTA +# +# CONFIG_ESP_HTTPS_OTA_DECRYPT_CB is not set +# CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP is not set +# end of ESP HTTPS OTA + +# +# ESP HTTPS server +# +# CONFIG_ESP_HTTPS_SERVER_ENABLE is not set +# end of ESP HTTPS server + +# +# 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 +# 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_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_PERIPH_CTRL_FUNC_IN_IRAM=y +# end of Peripheral Control + +# +# Main XTAL Config +# +# CONFIG_XTAL_FREQ_26 is not set +CONFIG_XTAL_FREQ_40=y +# CONFIG_XTAL_FREQ_AUTO is not set +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config +# end of Hardware Settings + +# +# LCD and Touch Panel +# + +# +# LCD Touch Drivers are maintained in the IDF Component Registry +# + +# +# LCD Peripheral Configuration +# +CONFIG_LCD_PANEL_IO_FORMAT_BUF_SIZE=32 +# CONFIG_LCD_ENABLE_DEBUG_LOG is not set +# end of LCD Peripheral Configuration +# end of LCD and Touch Panel + +# +# ESP NETIF Adapter +# +CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 +CONFIG_ESP_NETIF_TCPIP_LWIP=y +# CONFIG_ESP_NETIF_LOOPBACK is not set +CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API=y +# CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS is not set +# CONFIG_ESP_NETIF_L2_TAP is not set +# CONFIG_ESP_NETIF_BRIDGE_EN is not set +# end of ESP NETIF Adapter + +# +# Partition API Configuration +# +# end of Partition API Configuration + +# +# PHY +# +CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE=y +# CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION is not set +CONFIG_ESP_PHY_MAX_WIFI_TX_POWER=20 +CONFIG_ESP_PHY_MAX_TX_POWER=20 +# CONFIG_ESP_PHY_REDUCE_TX_POWER is not set +CONFIG_ESP_PHY_RF_CAL_PARTIAL=y +# CONFIG_ESP_PHY_RF_CAL_NONE is not set +# CONFIG_ESP_PHY_RF_CAL_FULL is not set +CONFIG_ESP_PHY_CALIBRATION_MODE=0 +# CONFIG_ESP_PHY_PLL_TRACK_DEBUG is not set +# end of PHY + +# +# Power Management +# +# CONFIG_PM_ENABLE is not set +# end of Power Management + +# +# ESP PSRAM +# +# CONFIG_SPIRAM is not set +# end of ESP PSRAM + +# +# ESP Ringbuf +# +# CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH is not set +# end of ESP Ringbuf + +# +# ESP System Settings +# +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=240 + +# +# 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_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_GDBSTUB 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_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 + +# +# 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 +# end of Brownout Detector + +# CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE is not set +CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +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) + +# +# High resolution timer (esp_timer) +# +# 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=0x1 +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 High resolution timer (esp_timer) + +# +# Wi-Fi +# +CONFIG_ESP_WIFI_ENABLED=y +CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM=10 +CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# CONFIG_ESP_WIFI_STATIC_TX_BUFFER is not set +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER=y +CONFIG_ESP_WIFI_TX_BUFFER_TYPE=1 +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER=y +# CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER is not set +CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF=0 +CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF=5 +# CONFIG_ESP_WIFI_CSI_ENABLED is not set +CONFIG_ESP_WIFI_AMPDU_TX_ENABLED=y +CONFIG_ESP_WIFI_TX_BA_WIN=6 +CONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP_WIFI_RX_BA_WIN=6 +CONFIG_ESP_WIFI_NVS_ENABLED=y +CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0=y +# CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 is not set +CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN=752 +CONFIG_ESP_WIFI_MGMT_SBUF_NUM=32 +CONFIG_ESP_WIFI_IRAM_OPT=y +# CONFIG_ESP_WIFI_EXTRA_IRAM_OPT is not set +CONFIG_ESP_WIFI_RX_IRAM_OPT=y +CONFIG_ESP_WIFI_ENABLE_WPA3_SAE=y +CONFIG_ESP_WIFI_ENABLE_SAE_PK=y +CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT=y +CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA=y +# CONFIG_ESP_WIFI_SLP_IRAM_OPT is not set +CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y +# CONFIG_ESP_WIFI_GMAC_SUPPORT is not set +CONFIG_ESP_WIFI_SOFTAP_SUPPORT=y +# CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT is not set +CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM=7 +# CONFIG_ESP_WIFI_NAN_ENABLE is not set +CONFIG_ESP_WIFI_MBEDTLS_CRYPTO=y +CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT=y +# CONFIG_ESP_WIFI_WAPI_PSK is not set +# CONFIG_ESP_WIFI_11KV_SUPPORT is not set +# CONFIG_ESP_WIFI_MBO_SUPPORT is not set +# CONFIG_ESP_WIFI_DPP_SUPPORT is not set +# CONFIG_ESP_WIFI_11R_SUPPORT is not set +# CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR is not set + +# +# WPS Configuration Options +# +# CONFIG_ESP_WIFI_WPS_STRICT is not set +# CONFIG_ESP_WIFI_WPS_PASSPHRASE is not set +# end of WPS Configuration Options + +# CONFIG_ESP_WIFI_DEBUG_PRINT is not set +# CONFIG_ESP_WIFI_TESTING_OPTIONS is not set +CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y +# CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER is not set +# end of Wi-Fi + +# +# Core dump +# +# CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH is not set +# CONFIG_ESP_COREDUMP_ENABLE_TO_UART is not set +CONFIG_ESP_COREDUMP_ENABLE_TO_NONE=y +# end of Core dump + +# +# FAT Filesystem support +# +CONFIG_FATFS_VOLUME_COUNT=2 +CONFIG_FATFS_LFN_NONE=y +# CONFIG_FATFS_LFN_HEAP is not set +# CONFIG_FATFS_LFN_STACK is not set +# CONFIG_FATFS_SECTOR_512 is not set +CONFIG_FATFS_SECTOR_4096=y +# CONFIG_FATFS_CODEPAGE_DYNAMIC is not set +CONFIG_FATFS_CODEPAGE_437=y +# CONFIG_FATFS_CODEPAGE_720 is not set +# CONFIG_FATFS_CODEPAGE_737 is not set +# CONFIG_FATFS_CODEPAGE_771 is not set +# CONFIG_FATFS_CODEPAGE_775 is not set +# CONFIG_FATFS_CODEPAGE_850 is not set +# CONFIG_FATFS_CODEPAGE_852 is not set +# CONFIG_FATFS_CODEPAGE_855 is not set +# CONFIG_FATFS_CODEPAGE_857 is not set +# CONFIG_FATFS_CODEPAGE_860 is not set +# CONFIG_FATFS_CODEPAGE_861 is not set +# CONFIG_FATFS_CODEPAGE_862 is not set +# CONFIG_FATFS_CODEPAGE_863 is not set +# CONFIG_FATFS_CODEPAGE_864 is not set +# CONFIG_FATFS_CODEPAGE_865 is not set +# CONFIG_FATFS_CODEPAGE_866 is not set +# CONFIG_FATFS_CODEPAGE_869 is not set +# CONFIG_FATFS_CODEPAGE_932 is not set +# CONFIG_FATFS_CODEPAGE_936 is not set +# CONFIG_FATFS_CODEPAGE_949 is not set +# CONFIG_FATFS_CODEPAGE_950 is not set +CONFIG_FATFS_CODEPAGE=437 +CONFIG_FATFS_FS_LOCK=0 +CONFIG_FATFS_TIMEOUT_MS=10000 +CONFIG_FATFS_PER_FILE_CACHE=y +# CONFIG_FATFS_USE_FASTSEEK is not set +CONFIG_FATFS_VFS_FSTAT_BLKSIZE=0 +# CONFIG_FATFS_IMMEDIATE_FSYNC is not set +# end of FAT Filesystem support + +# +# 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_TIMER_SERVICE_TASK_NAME="Tmr Svc" +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=y +CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS=y +CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID=y +CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y +CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U32=y +# CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U64 is not set +# CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG is not set +# end of Kernel + +# +# Port +# +# 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_RUN_TIME_STATS_USING_ESP_TIMER=y +# CONFIG_FREERTOS_RUN_TIME_STATS_USING_CPU_CLK is not set +# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +# end of Port + +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 +# 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_SPI_MASTER_FUNC_IN_IRAM=y +CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM=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 output +# +# 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 +# CONFIG_LOG_MASTER_LEVEL is not set +CONFIG_LOG_COLORS=y +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Log output + +# +# LWIP +# +CONFIG_LWIP_ENABLE=y +CONFIG_LWIP_LOCAL_HOSTNAME="espressif" +# CONFIG_LWIP_NETIF_API is not set +CONFIG_LWIP_TCPIP_TASK_PRIO=18 +# CONFIG_LWIP_TCPIP_CORE_LOCKING is not set +# CONFIG_LWIP_CHECK_THREAD_SAFETY is not set +CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y +# CONFIG_LWIP_L2_TO_L3_COPY is not set +# CONFIG_LWIP_IRAM_OPTIMIZATION is not set +# CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION is not set +CONFIG_LWIP_TIMERS_ONDEMAND=y +CONFIG_LWIP_ND6=y +# CONFIG_LWIP_FORCE_ROUTER_FORWARDING is not set +CONFIG_LWIP_MAX_SOCKETS=10 +# CONFIG_LWIP_USE_ONLY_LWIP_SELECT is not set +# CONFIG_LWIP_SO_LINGER is not set +CONFIG_LWIP_SO_REUSE=y +CONFIG_LWIP_SO_REUSE_RXTOALL=y +# CONFIG_LWIP_SO_RCVBUF is not set +# CONFIG_LWIP_NETBUF_RECVINFO is not set +CONFIG_LWIP_IP_DEFAULT_TTL=64 +CONFIG_LWIP_IP4_FRAG=y +CONFIG_LWIP_IP6_FRAG=y +# CONFIG_LWIP_IP4_REASSEMBLY is not set +# CONFIG_LWIP_IP6_REASSEMBLY is not set +CONFIG_LWIP_IP_REASS_MAX_PBUFS=10 +# CONFIG_LWIP_IP_FORWARD is not set +# CONFIG_LWIP_STATS is not set +CONFIG_LWIP_ESP_GRATUITOUS_ARP=y +CONFIG_LWIP_GARP_TMR_INTERVAL=60 +CONFIG_LWIP_ESP_MLDV6_REPORT=y +CONFIG_LWIP_MLDV6_TMR_INTERVAL=40 +CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=32 +CONFIG_LWIP_DHCP_DOES_ARP_CHECK=y +# CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID is not set +CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID=y +# CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set +CONFIG_LWIP_DHCP_OPTIONS_LEN=68 +CONFIG_LWIP_NUM_NETIF_CLIENT_DATA=0 +CONFIG_LWIP_DHCP_COARSE_TIMER_SECS=1 + +# +# DHCP server +# +CONFIG_LWIP_DHCPS=y +CONFIG_LWIP_DHCPS_LEASE_UNIT=60 +CONFIG_LWIP_DHCPS_MAX_STATION_NUM=8 +CONFIG_LWIP_DHCPS_STATIC_ENTRIES=y +# end of DHCP server + +# CONFIG_LWIP_AUTOIP is not set +CONFIG_LWIP_IPV4=y +CONFIG_LWIP_IPV6=y +# CONFIG_LWIP_IPV6_AUTOCONFIG is not set +CONFIG_LWIP_IPV6_NUM_ADDRESSES=3 +# CONFIG_LWIP_IPV6_FORWARD is not set +# CONFIG_LWIP_NETIF_STATUS_CALLBACK is not set +CONFIG_LWIP_NETIF_LOOPBACK=y +CONFIG_LWIP_LOOPBACK_MAX_PBUFS=8 + +# +# TCP +# +CONFIG_LWIP_MAX_ACTIVE_TCP=16 +CONFIG_LWIP_MAX_LISTENING_TCP=16 +CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=y +CONFIG_LWIP_TCP_MAXRTX=12 +CONFIG_LWIP_TCP_SYNMAXRTX=12 +CONFIG_LWIP_TCP_MSS=1440 +CONFIG_LWIP_TCP_TMR_INTERVAL=250 +CONFIG_LWIP_TCP_MSL=60000 +CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT=20000 +CONFIG_LWIP_TCP_SND_BUF_DEFAULT=5760 +CONFIG_LWIP_TCP_WND_DEFAULT=5760 +CONFIG_LWIP_TCP_RECVMBOX_SIZE=6 +CONFIG_LWIP_TCP_QUEUE_OOSEQ=y +CONFIG_LWIP_TCP_OOSEQ_TIMEOUT=6 +CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS=4 +# CONFIG_LWIP_TCP_SACK_OUT is not set +CONFIG_LWIP_TCP_OVERSIZE_MSS=y +# CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS is not set +# CONFIG_LWIP_TCP_OVERSIZE_DISABLE is not set +CONFIG_LWIP_TCP_RTO_TIME=1500 +# end of TCP + +# +# UDP +# +CONFIG_LWIP_MAX_UDP_PCBS=16 +CONFIG_LWIP_UDP_RECVMBOX_SIZE=6 +# end of UDP + +# +# Checksums +# +# CONFIG_LWIP_CHECKSUM_CHECK_IP is not set +# CONFIG_LWIP_CHECKSUM_CHECK_UDP is not set +CONFIG_LWIP_CHECKSUM_CHECK_ICMP=y +# end of Checksums + +CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=3072 +CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY=y +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not set +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 is not set +CONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF +# CONFIG_LWIP_PPP_SUPPORT is not set +CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 +CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 +# CONFIG_LWIP_SLIP_SUPPORT is not set + +# +# ICMP +# +CONFIG_LWIP_ICMP=y +# CONFIG_LWIP_MULTICAST_PING is not set +# CONFIG_LWIP_BROADCAST_PING is not set +# end of ICMP + +# +# LWIP RAW API +# +CONFIG_LWIP_MAX_RAW_PCBS=16 +# end of LWIP RAW API + +# +# SNTP +# +CONFIG_LWIP_SNTP_MAX_SERVERS=1 +# CONFIG_LWIP_DHCP_GET_NTP_SRV is not set +CONFIG_LWIP_SNTP_UPDATE_DELAY=3600000 +# end of SNTP + +# +# DNS +# +CONFIG_LWIP_DNS_MAX_SERVERS=3 +# CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT is not set +# end of DNS + +CONFIG_LWIP_BRIDGEIF_MAX_PORTS=7 +CONFIG_LWIP_ESP_LWIP_ASSERT=y + +# +# Hooks +# +# CONFIG_LWIP_HOOK_TCP_ISN_NONE is not set +CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT=y +# CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM is not set +CONFIG_LWIP_HOOK_IP6_ROUTE_NONE=y +# CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT is not set +# CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM is not set +CONFIG_LWIP_HOOK_ND6_GET_GW_NONE=y +# CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT is not set +# CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM is not set +CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE=y +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT is not set +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM is not set +CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE=y +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT is not set +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM is not set +CONFIG_LWIP_HOOK_IP6_INPUT_NONE=y +# CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT is not set +# CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM is not set +# end of Hooks + +# CONFIG_LWIP_DEBUG is not set +# end of LWIP + +# +# 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_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_MAX_CERTS=200 +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +CONFIG_MBEDTLS_CMAC_C=y +CONFIG_MBEDTLS_HARDWARE_AES=y +# CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER is not set +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_SHA512_C=y +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_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=y +# 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 +# end of mbedTLS + +# +# ESP-MQTT Configurations +# +CONFIG_MQTT_PROTOCOL_311=y +# CONFIG_MQTT_PROTOCOL_5 is not set +CONFIG_MQTT_TRANSPORT_SSL=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=y +# CONFIG_MQTT_MSG_ID_INCREMENTAL is not set +# CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED is not set +# CONFIG_MQTT_REPORT_DELETED_MESSAGES is not set +# CONFIG_MQTT_USE_CUSTOM_CONFIG is not set +# CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED is not set +# CONFIG_MQTT_CUSTOM_OUTBOX is not set +# end of ESP-MQTT Configurations + +# +# Newlib +# +CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y +# CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set +# CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set +# CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set +# CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set +CONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y +# CONFIG_NEWLIB_NANO_FORMAT is not set +CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y +# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set +# end of Newlib + +# +# NVS +# +# CONFIG_NVS_ASSERT_ERROR_CHECK is not set +# CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY is not set +# end of NVS + +# +# OpenThread +# +# CONFIG_OPENTHREAD_ENABLED is not set + +# +# Thread Operational Dataset +# +CONFIG_OPENTHREAD_NETWORK_NAME="OpenThread-ESP" +CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX="fd00:db8:a0:0::/64" +CONFIG_OPENTHREAD_NETWORK_CHANNEL=15 +CONFIG_OPENTHREAD_NETWORK_PANID=0x1234 +CONFIG_OPENTHREAD_NETWORK_EXTPANID="dead00beef00cafe" +CONFIG_OPENTHREAD_NETWORK_MASTERKEY="00112233445566778899aabbccddeeff" +CONFIG_OPENTHREAD_NETWORK_PSKC="104810e2315100afd6bc9215a6bfac53" +# end of Thread Operational Dataset + +CONFIG_OPENTHREAD_XTAL_ACCURACY=130 +# CONFIG_OPENTHREAD_SPINEL_ONLY is not set +CONFIG_OPENTHREAD_RX_ON_WHEN_IDLE=y + +# +# Thread Address Query Config +# +# end of Thread Address Query Config +# end of OpenThread + +# +# Protocomm +# +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0=y +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1=y +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2=y +# end of Protocomm + +# +# 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!) +# +# 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_SUPPORTED=y +CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED=y +CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED=y +CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED=y +CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED=y +CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP=y +# CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP 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 + +# +# SPIFFS Configuration +# +CONFIG_SPIFFS_MAX_PARTITIONS=3 + +# +# SPIFFS Cache Configuration +# +CONFIG_SPIFFS_CACHE=y +CONFIG_SPIFFS_CACHE_WR=y +# CONFIG_SPIFFS_CACHE_STATS is not set +# end of SPIFFS Cache Configuration + +CONFIG_SPIFFS_PAGE_CHECK=y +CONFIG_SPIFFS_GC_MAX_RUNS=10 +# CONFIG_SPIFFS_GC_STATS is not set +CONFIG_SPIFFS_PAGE_SIZE=256 +CONFIG_SPIFFS_OBJ_NAME_LEN=32 +# CONFIG_SPIFFS_FOLLOW_SYMLINKS is not set +CONFIG_SPIFFS_USE_MAGIC=y +CONFIG_SPIFFS_USE_MAGIC_LENGTH=y +CONFIG_SPIFFS_META_LENGTH=4 +CONFIG_SPIFFS_USE_MTIME=y + +# +# Debug Configuration +# +# CONFIG_SPIFFS_DBG is not set +# CONFIG_SPIFFS_API_DBG is not set +# CONFIG_SPIFFS_GC_DBG is not set +# CONFIG_SPIFFS_CACHE_DBG is not set +# CONFIG_SPIFFS_CHECK_DBG is not set +# CONFIG_SPIFFS_TEST_VISUALISATION is not set +# end of Debug Configuration +# end of SPIFFS Configuration + +# +# TCP Transport +# + +# +# Websocket +# +CONFIG_WS_TRANSPORT=y +CONFIG_WS_BUFFER_SIZE=1024 +# CONFIG_WS_DYNAMIC_BUFFER is not set +# end of Websocket +# end of TCP Transport + +# +# Ultra Low Power (ULP) Co-processor +# +# CONFIG_ULP_COPROC_ENABLED is not set +# end of Ultra Low Power (ULP) Co-processor + +# +# Unity unit testing library +# +CONFIG_UNITY_ENABLE_FLOAT=y +CONFIG_UNITY_ENABLE_DOUBLE=y +# CONFIG_UNITY_ENABLE_64BIT is not set +# CONFIG_UNITY_ENABLE_COLOR is not set +CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y +# CONFIG_UNITY_ENABLE_FIXTURE is not set +# CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL is not set +# end of Unity unit testing library + +# +# Virtual file system +# +CONFIG_VFS_SUPPORT_IO=y +CONFIG_VFS_SUPPORT_DIR=y +CONFIG_VFS_SUPPORT_SELECT=y +CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y +# CONFIG_VFS_SELECT_IN_RAM is not set +CONFIG_VFS_SUPPORT_TERMIOS=y +CONFIG_VFS_MAX_COUNT=8 + +# +# Host File System I/O (Semihosting) +# +CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# end of Host File System I/O (Semihosting) +# end of Virtual file system + +# +# Wear Levelling +# +# CONFIG_WL_SECTOR_SIZE_512 is not set +CONFIG_WL_SECTOR_SIZE_4096=y +CONFIG_WL_SECTOR_SIZE=4096 +# end of Wear Levelling + +# +# Wi-Fi Provisioning Manager +# +CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES=16 +CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT=30 +# CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION is not set +CONFIG_WIFI_PROV_STA_ALL_CHANNEL_SCAN=y +# CONFIG_WIFI_PROV_STA_FAST_SCAN is not set +# end of Wi-Fi Provisioning Manager + +# +# DSP Library +# +CONFIG_DSP_OPTIMIZATIONS_SUPPORTED=y +# CONFIG_DSP_ANSI is not set +CONFIG_DSP_OPTIMIZED=y +CONFIG_DSP_OPTIMIZATION=1 +# CONFIG_DSP_MAX_FFT_SIZE_512 is not set +# CONFIG_DSP_MAX_FFT_SIZE_1024 is not set +# CONFIG_DSP_MAX_FFT_SIZE_2048 is not set +CONFIG_DSP_MAX_FFT_SIZE_4096=y +# CONFIG_DSP_MAX_FFT_SIZE_8192 is not set +# CONFIG_DSP_MAX_FFT_SIZE_16384 is not set +# CONFIG_DSP_MAX_FFT_SIZE_32768 is not set +CONFIG_DSP_MAX_FFT_SIZE=4096 +# end of DSP Library +# 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_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_APP_ROLLBACK_ENABLE is not set +# 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 is not set +# CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG is not set +# CONFIG_COMPILER_OPTIMIZATION_DEFAULT is not set +# 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_ESP32_APPTRACE_DEST_TRAX is not set +CONFIG_ESP32_APPTRACE_DEST_NONE=y +CONFIG_ESP32_APPTRACE_LOCK_ENABLE=y +CONFIG_ADC2_DISABLE_DAC=y +# CONFIG_MCPWM_ISR_IN_IRAM is not set +# CONFIG_EVENT_LOOP_PROFILING is not set +CONFIG_POST_EVENTS_FROM_ISR=y +CONFIG_POST_EVENTS_FROM_IRAM_ISR=y +CONFIG_GDBSTUB_SUPPORT_TASKS=y +CONFIG_GDBSTUB_MAX_TASKS=32 +# CONFIG_OTA_ALLOW_HTTP 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_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_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE=y +# CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION is not set +CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER=20 +CONFIG_ESP32_PHY_MAX_TX_POWER=20 +# CONFIG_REDUCE_PHY_TX_POWER is not set +# CONFIG_ESP32_REDUCE_PHY_TX_POWER is not set +# CONFIG_SPIRAM_SUPPORT is not set +# CONFIG_ESP32_SPIRAM_SUPPORT is not set +# CONFIG_ESP32_DEFAULT_CPU_FREQ_80 is not set +# CONFIG_ESP32_DEFAULT_CPU_FREQ_160 is not set +CONFIG_ESP32_DEFAULT_CPU_FREQ_240=y +CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=240 +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_ESP32_PANIC_GDBSTUB 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_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_DISABLE_BASIC_ROM_CONSOLE is not set +CONFIG_IPC_TASK_STACK_SIZE=1024 +CONFIG_TIMER_TASK_STACK_SIZE=3584 +CONFIG_ESP32_WIFI_ENABLED=y +CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 +CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y +CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1 +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_CSI_ENABLED is not set +CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y +CONFIG_ESP32_WIFI_TX_BA_WIN=6 +CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP32_WIFI_RX_BA_WIN=6 +CONFIG_ESP32_WIFI_RX_BA_WIN=6 +CONFIG_ESP32_WIFI_NVS_ENABLED=y +CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y +# CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set +CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 +CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32 +CONFIG_ESP32_WIFI_IRAM_OPT=y +CONFIG_ESP32_WIFI_RX_IRAM_OPT=y +CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y +CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=y +CONFIG_WPA_MBEDTLS_CRYPTO=y +CONFIG_WPA_MBEDTLS_TLS_CLIENT=y +# CONFIG_WPA_WAPI_PSK is not set +# CONFIG_WPA_11KV_SUPPORT is not set +# CONFIG_WPA_MBO_SUPPORT is not set +# CONFIG_WPA_DPP_SUPPORT is not set +# CONFIG_WPA_11R_SUPPORT is not set +# CONFIG_WPA_WPS_SOFTAP_REGISTRAR is not set +# CONFIG_WPA_WPS_STRICT is not set +# CONFIG_WPA_DEBUG_PRINT is not set +# CONFIG_WPA_TESTING_OPTIONS is not set +# CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set +# CONFIG_ESP32_ENABLE_COREDUMP_TO_UART is not set +CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE=y +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_L2_TO_L3_COPY is not set +CONFIG_ESP_GRATUITOUS_ARP=y +CONFIG_GARP_TMR_INTERVAL=60 +CONFIG_TCPIP_RECVMBOX_SIZE=32 +CONFIG_TCP_MAXRTX=12 +CONFIG_TCP_SYNMAXRTX=12 +CONFIG_TCP_MSS=1440 +CONFIG_TCP_MSL=60000 +CONFIG_TCP_SND_BUF_DEFAULT=5760 +CONFIG_TCP_WND_DEFAULT=5760 +CONFIG_TCP_RECVMBOX_SIZE=6 +CONFIG_TCP_QUEUE_OOSEQ=y +CONFIG_TCP_OVERSIZE_MSS=y +# CONFIG_TCP_OVERSIZE_QUARTER_MSS is not set +# CONFIG_TCP_OVERSIZE_DISABLE is not set +CONFIG_UDP_RECVMBOX_SIZE=6 +CONFIG_TCPIP_TASK_STACK_SIZE=3072 +CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY=y +# CONFIG_TCPIP_TASK_AFFINITY_CPU0 is not set +# CONFIG_TCPIP_TASK_AFFINITY_CPU1 is not set +CONFIG_TCPIP_TASK_AFFINITY=0x7FFFFFFF +# CONFIG_PPP_SUPPORT is not set +CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT=y +CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1=y +# CONFIG_ESP32_TIME_SYSCALL_USE_RTC is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_HRT is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 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 +# CONFIG_ESP32_ULP_COPROC_ENABLED is not set +CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT=y +CONFIG_SUPPORT_TERMIOS=y +CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# End of deprecated options diff --git a/Schematics/#auto_saved_files# b/Schematics/#auto_saved_files# new file mode 100644 index 0000000..1291f9d --- /dev/null +++ b/Schematics/#auto_saved_files# @@ -0,0 +1 @@ +C:\Users\Job\source\repos\ESPVBAN\Schematics\_autosave-Schematics.kicad_sch diff --git a/Schematics/New Tekstdocument.dxf b/Schematics/New Tekstdocument.dxf new file mode 100644 index 0000000..7142fd3 --- /dev/null +++ b/Schematics/New Tekstdocument.dxf @@ -0,0 +1,3592 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1006 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 9 +$EXTMAX + 10 +14.58 + 20 +9.929993 + 9 +$LTSCALE + 40 +0.000394 + 9 +$PDMODE + 70 +35 + 9 +$PDSIZE + 40 +0.000315 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 + 9 + 0 +LTYPE + 2 +CONTINUOUS + 70 + 64 + 3 +Solid line + 72 + 65 + 73 + 0 + 40 +0.000000 + 0 +LTYPE + 2 +DASHED + 70 + 64 + 3 +__ __ __ __ __ __ __ __ __ __ __ __ __ __ __ + 72 + 65 + 73 + 2 + 40 +0.000003 + 49 +0.000002 + 49 +-0.000001 + 0 +LTYPE + 2 +HIDDEN + 70 + 64 + 3 + _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +0.000001 + 49 +0.000001 + 49 +-0.000000 + 0 +LTYPE + 2 +CENTER + 70 + 64 + 3 +____ _ ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 + 65 + 73 + 4 + 40 +0.000008 + 49 +0.000005 + 49 +-0.000001 + 49 +0.000001 + 49 +-0.000001 + 0 +LTYPE + 2 +PHANTOM + 70 + 64 + 3 +_____ _ _ _____ _ _ _____ _ _ _____ _ _ ____ + 72 + 65 + 73 + 6 + 40 +0.000010 + 49 +0.000005 + 49 +-0.000001 + 49 +0.000001 + 49 +-0.000001 + 49 +0.000001 + 49 +-0.000001 + 0 +LTYPE + 2 +DOT + 70 + 64 + 3 +............................................... + 72 + 65 + 73 + 2 + 40 +0.000001 + 49 +0.000000 + 49 +-0.000001 + 0 +LTYPE + 2 +DASHDOT + 70 + 64 + 3 +__ . __ . __ . __ . __ . __ . __ . __ . __ . __ + 72 + 65 + 73 + 4 + 40 +0.000004 + 49 +0.000002 + 49 +-0.000001 + 49 +0.000000 + 49 +-0.000001 + 0 +LTYPE + 2 +BORDER + 70 + 64 + 3 +__ __ . __ __ . __ __ . __ __ . __ __ . __ __ + 72 + 65 + 73 + 6 + 40 +0.000007 + 49 +0.000002 + 49 +-0.000001 + 49 +0.000002 + 49 +-0.000001 + 49 +0.000000 + 49 +-0.000001 + 0 +LTYPE + 2 +DIVIDE + 70 + 64 + 3 +__ . . __ . . __ . . __ . . __ . . __ . . __ + 72 + 65 + 73 + 6 + 40 +0.000005 + 49 +0.000002 + 49 +-0.000001 + 49 +0.000000 + 49 +-0.000001 + 49 +0.000000 + 49 +-0.000001 + 0 +LTYPE + 2 +DOTDOT + 70 + 64 + 3 + . . . . . . . . . . . . + 72 + 65 + 73 + 5 + 40 +0.000002 + 49 +-0.000001 + 49 +0.000000 + 49 +-0.000001 + 49 +0.000000 + 49 +-0.000001 + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 + 4 + 0 +LAYER + 2 +FOREGROUND + 70 + 64 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +BACKGROUND + 70 + 65 + 62 + -7 + 6 +CONTINUOUS + 0 +LAYER + 2 +PLAN_1 + 70 + 64 + 62 + 7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.103577 + 20 +-98.626396 + 30 +0.2 + 11 +93.649986 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.649986 + 20 +-98.626396 + 30 +0.2 + 11 +93.196396 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.196396 + 20 +-98.626396 + 30 +0.2 + 11 +93.196396 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.196396 + 20 +-99.233574 + 30 +0.2 + 11 +93.649986 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.649986 + 20 +-99.233574 + 30 +0.2 + 11 +94.103577 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.103577 + 20 +-99.233574 + 30 +0.2 + 11 +94.196404 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.196404 + 20 +-99.233574 + 30 +0.2 + 11 +94.196404 + 21 +-99.553574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.196404 + 20 +-99.553574 + 30 +0.2 + 11 +94.803581 + 21 +-99.553574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.803581 + 20 +-99.553574 + 30 +0.2 + 11 +94.803581 + 21 +-98.446396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.803581 + 20 +-98.446396 + 30 +0.2 + 11 +94.65358 + 21 +-98.446396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.65358 + 20 +-98.446396 + 30 +0.2 + 11 +94.65358 + 21 +-98.063614 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.65358 + 20 +-98.063614 + 30 +0.2 + 11 +95.063614 + 21 +-97.65358 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +95.063614 + 20 +-97.65358 + 30 +0.2 + 11 +98.436363 + 21 +-97.65358 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.436363 + 20 +-97.65358 + 30 +0.2 + 11 +98.846397 + 21 +-98.063614 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.846397 + 20 +-98.063614 + 30 +0.2 + 11 +98.846397 + 21 +-98.446396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.846397 + 20 +-98.446396 + 30 +0.2 + 11 +98.696396 + 21 +-98.446396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.696396 + 20 +-98.446396 + 30 +0.2 + 11 +98.696396 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.696396 + 20 +-98.626396 + 30 +0.2 + 11 +98.603577 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.603577 + 20 +-98.626396 + 30 +0.2 + 11 +98.149986 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.149986 + 20 +-98.626396 + 30 +0.2 + 11 +97.696396 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +97.696396 + 20 +-98.626396 + 30 +0.2 + 11 +97.696396 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +97.696396 + 20 +-99.233574 + 30 +0.2 + 11 +98.149986 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.149986 + 20 +-99.233574 + 30 +0.2 + 11 +98.603577 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.603577 + 20 +-99.233574 + 30 +0.2 + 11 +98.696396 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.696396 + 20 +-99.233574 + 30 +0.2 + 11 +98.696396 + 21 +-99.553574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.696396 + 20 +-99.553574 + 30 +0.2 + 11 +99.303574 + 21 +-99.553574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.303574 + 20 +-99.553574 + 30 +0.2 + 11 +99.303574 + 21 +-98.446396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.303574 + 20 +-98.446396 + 30 +0.2 + 11 +99.153572 + 21 +-98.446396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.153572 + 20 +-98.446396 + 30 +0.2 + 11 +99.153572 + 21 +-97.999992 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.153572 + 20 +-97.999992 + 30 +0.2 + 11 +99.15062 + 21 +-97.970032 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.15062 + 20 +-97.970032 + 30 +0.2 + 11 +99.141884 + 21 +-97.941216 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.141884 + 20 +-97.941216 + 30 +0.2 + 11 +99.127693 + 21 +-97.914665 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.127693 + 20 +-97.914665 + 30 +0.2 + 11 +99.108589 + 21 +-97.891388 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.108589 + 20 +-97.891388 + 30 +0.2 + 11 +98.608589 + 21 +-97.391388 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.608589 + 20 +-97.391388 + 30 +0.2 + 11 +98.585312 + 21 +-97.372292 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.585312 + 20 +-97.372292 + 30 +0.2 + 11 +98.558762 + 21 +-97.358093 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.558762 + 20 +-97.358093 + 30 +0.2 + 11 +98.529945 + 21 +-97.349358 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.529945 + 20 +-97.349358 + 30 +0.2 + 11 +98.499985 + 21 +-97.346405 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.499985 + 20 +-97.346405 + 30 +0.2 + 11 +94.999992 + 21 +-97.346405 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.999992 + 20 +-97.346405 + 30 +0.2 + 11 +94.970032 + 21 +-97.349358 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.970032 + 20 +-97.349358 + 30 +0.2 + 11 +94.941216 + 21 +-97.358093 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.941216 + 20 +-97.358093 + 30 +0.2 + 11 +94.914665 + 21 +-97.372292 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.914665 + 20 +-97.372292 + 30 +0.2 + 11 +94.891388 + 21 +-97.391388 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.891388 + 20 +-97.391388 + 30 +0.2 + 11 +94.391388 + 21 +-97.891388 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.391388 + 20 +-97.891388 + 30 +0.2 + 11 +94.372284 + 21 +-97.914665 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.372284 + 20 +-97.914665 + 30 +0.2 + 11 +94.358093 + 21 +-97.941216 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.358093 + 20 +-97.941216 + 30 +0.2 + 11 +94.34935 + 21 +-97.970032 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.34935 + 20 +-97.970032 + 30 +0.2 + 11 +94.346405 + 21 +-97.999992 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.346405 + 20 +-97.999992 + 30 +0.2 + 11 +94.346405 + 21 +-98.446396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.346405 + 20 +-98.446396 + 30 +0.2 + 11 +94.196404 + 21 +-98.446396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.196404 + 20 +-98.446396 + 30 +0.2 + 11 +94.196404 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.196404 + 20 +-98.626396 + 30 +0.2 + 11 +94.103577 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.649986 + 20 +-99.626396 + 30 +0.2 + 11 +93.196396 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.196396 + 20 +-99.626396 + 30 +0.2 + 11 +91.414314 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.414314 + 20 +-99.626396 + 30 +0.2 + 11 +91.143951 + 21 +-99.356026 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.143951 + 20 +-99.356026 + 30 +0.2 + 11 +91.113106 + 21 +-99.330711 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.113106 + 20 +-99.330711 + 30 +0.2 + 11 +91.077904 + 21 +-99.311897 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.077904 + 20 +-99.311897 + 30 +0.2 + 11 +91.039711 + 21 +-99.300308 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.039711 + 20 +-99.300308 + 30 +0.2 + 11 +90.999992 + 21 +-99.296394 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.999992 + 20 +-99.296394 + 30 +0.2 + 11 +90.960274 + 21 +-99.300308 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.960274 + 20 +-99.300308 + 30 +0.2 + 11 +90.922081 + 21 +-99.31189 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.922081 + 20 +-99.31189 + 30 +0.2 + 11 +90.886887 + 21 +-99.330704 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.886887 + 20 +-99.330704 + 30 +0.2 + 11 +90.856033 + 21 +-99.356026 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.856033 + 20 +-99.356026 + 30 +0.2 + 11 +90.830711 + 21 +-99.386871 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.830711 + 20 +-99.386871 + 30 +0.2 + 11 +90.811897 + 21 +-99.422073 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.811897 + 20 +-99.422073 + 30 +0.2 + 11 +90.800316 + 21 +-99.460266 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.800316 + 20 +-99.460266 + 30 +0.2 + 11 +90.796402 + 21 +-99.499985 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.796402 + 20 +-99.499985 + 30 +0.2 + 11 +90.800316 + 21 +-99.539703 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.800316 + 20 +-99.539703 + 30 +0.2 + 11 +90.811897 + 21 +-99.577896 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.811897 + 20 +-99.577896 + 30 +0.2 + 11 +90.830711 + 21 +-99.613091 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.830711 + 20 +-99.613091 + 30 +0.2 + 11 +90.856033 + 21 +-99.643944 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.856033 + 20 +-99.643944 + 30 +0.2 + 11 +91.186028 + 21 +-99.973946 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.186028 + 20 +-99.973946 + 30 +0.2 + 11 +91.216881 + 21 +-99.999268 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.216881 + 20 +-99.999268 + 30 +0.2 + 11 +91.252075 + 21 +-100.018082 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.252075 + 20 +-100.018082 + 30 +0.2 + 11 +91.290268 + 21 +-100.029663 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.290268 + 20 +-100.029663 + 30 +0.2 + 11 +91.329987 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.329987 + 20 +-100.033577 + 30 +0.2 + 11 +93.196396 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.196396 + 20 +-100.033577 + 30 +0.2 + 11 +93.649986 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.649986 + 20 +-100.033577 + 30 +0.2 + 11 +94.103577 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.103577 + 20 +-100.033577 + 30 +0.2 + 11 +94.103577 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.103577 + 20 +-99.626396 + 30 +0.2 + 11 +93.649986 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.649986 + 20 +-100.426399 + 30 +0.2 + 11 +93.196396 + 21 +-100.426399 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.196396 + 20 +-100.426399 + 30 +0.2 + 11 +91.355743 + 21 +-100.426399 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.355743 + 20 +-100.426399 + 30 +0.2 + 11 +91.214668 + 21 +-100.285316 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.214668 + 20 +-100.285316 + 30 +0.2 + 11 +91.168663 + 21 +-100.247566 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.168663 + 20 +-100.247566 + 30 +0.2 + 11 +91.116173 + 21 +-100.219505 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.116173 + 20 +-100.219505 + 30 +0.2 + 11 +91.059227 + 21 +-100.202232 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.059227 + 20 +-100.202232 + 30 +0.2 + 11 +91.0 + 21 +-100.196396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.0 + 20 +-100.196396 + 30 +0.2 + 11 +90.940773 + 21 +-100.202225 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.940773 + 20 +-100.202225 + 30 +0.2 + 11 +90.88382 + 21 +-100.219505 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.88382 + 20 +-100.219505 + 30 +0.2 + 11 +90.831329 + 21 +-100.247559 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.831329 + 20 +-100.247559 + 30 +0.2 + 11 +90.785324 + 21 +-100.285309 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.785324 + 20 +-100.285309 + 30 +0.2 + 11 +90.747566 + 21 +-100.331314 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.747566 + 20 +-100.331314 + 30 +0.2 + 11 +90.719513 + 21 +-100.383804 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.719513 + 20 +-100.383804 + 30 +0.2 + 11 +90.70224 + 21 +-100.44075 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.70224 + 20 +-100.44075 + 30 +0.2 + 11 +90.696404 + 21 +-100.499977 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.696404 + 20 +-100.499977 + 30 +0.2 + 11 +90.702232 + 21 +-100.559204 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.702232 + 20 +-100.559204 + 30 +0.2 + 11 +90.719513 + 21 +-100.616158 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.719513 + 20 +-100.616158 + 30 +0.2 + 11 +90.747566 + 21 +-100.668648 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.747566 + 20 +-100.668648 + 30 +0.2 + 11 +90.785316 + 21 +-100.714653 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +90.785316 + 20 +-100.714653 + 30 +0.2 + 11 +91.015312 + 21 +-100.944656 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.015312 + 20 +-100.944656 + 30 +0.2 + 11 +91.061325 + 21 +-100.982414 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.061325 + 20 +-100.982414 + 30 +0.2 + 11 +91.113808 + 21 +-101.010468 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.113808 + 20 +-101.010468 + 30 +0.2 + 11 +91.170761 + 21 +-101.027748 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.170761 + 20 +-101.027748 + 30 +0.2 + 11 +91.229988 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +91.229988 + 20 +-101.033577 + 30 +0.2 + 11 +93.196396 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.196396 + 20 +-101.033577 + 30 +0.2 + 11 +93.649986 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +93.649986 + 20 +-101.033577 + 30 +0.2 + 11 +94.103577 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.103577 + 20 +-101.033577 + 30 +0.2 + 11 +94.103577 + 21 +-100.426399 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.103577 + 20 +-100.426399 + 30 +0.2 + 11 +93.649986 + 21 +-100.426399 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.196404 + 20 +-100.419991 + 30 +0.2 + 11 +94.196404 + 21 +-101.213585 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.196404 + 20 +-101.213585 + 30 +0.2 + 11 +94.196404 + 21 +-101.999985 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.196404 + 20 +-101.999985 + 30 +0.2 + 11 +94.202232 + 21 +-102.059212 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.202232 + 20 +-102.059212 + 30 +0.2 + 11 +94.219513 + 21 +-102.116165 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.219513 + 20 +-102.116165 + 30 +0.2 + 11 +94.247566 + 21 +-102.168648 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.247566 + 20 +-102.168648 + 30 +0.2 + 11 +94.285324 + 21 +-102.214653 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.285324 + 20 +-102.214653 + 30 +0.2 + 11 +94.331329 + 21 +-102.252411 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.331329 + 20 +-102.252411 + 30 +0.2 + 11 +94.383812 + 21 +-102.280464 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.383812 + 20 +-102.280464 + 30 +0.2 + 11 +94.440765 + 21 +-102.297745 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.440765 + 20 +-102.297745 + 30 +0.2 + 11 +94.499992 + 21 +-102.303574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.499992 + 20 +-102.303574 + 30 +0.2 + 11 +98.999985 + 21 +-102.303574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.999985 + 20 +-102.303574 + 30 +0.2 + 11 +99.059212 + 21 +-102.297745 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.059212 + 20 +-102.297745 + 30 +0.2 + 11 +99.116165 + 21 +-102.280464 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.116165 + 20 +-102.280464 + 30 +0.2 + 11 +99.168648 + 21 +-102.252411 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.168648 + 20 +-102.252411 + 30 +0.2 + 11 +99.214653 + 21 +-102.214653 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.214653 + 20 +-102.214653 + 30 +0.2 + 11 +99.252411 + 21 +-102.168648 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.252411 + 20 +-102.168648 + 30 +0.2 + 11 +99.280464 + 21 +-102.116165 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.280464 + 20 +-102.116165 + 30 +0.2 + 11 +99.297745 + 21 +-102.059212 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.297745 + 20 +-102.059212 + 30 +0.2 + 11 +99.303574 + 21 +-101.999985 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.303574 + 20 +-101.999985 + 30 +0.2 + 11 +99.303574 + 21 +-101.213585 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.303574 + 20 +-101.213585 + 30 +0.2 + 11 +99.303574 + 21 +-100.419991 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.303574 + 20 +-100.419991 + 30 +0.2 + 11 +99.303574 + 21 +-99.626404 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.303574 + 20 +-99.626404 + 30 +0.2 + 11 +98.696396 + 21 +-99.626404 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.696396 + 20 +-99.626404 + 30 +0.2 + 11 +98.696396 + 21 +-100.419991 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.696396 + 20 +-100.419991 + 30 +0.2 + 11 +98.696396 + 21 +-101.213585 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.696396 + 20 +-101.213585 + 30 +0.2 + 11 +98.696396 + 21 +-101.696396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.696396 + 20 +-101.696396 + 30 +0.2 + 11 +94.803581 + 21 +-101.696396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.803581 + 20 +-101.696396 + 30 +0.2 + 11 +94.803581 + 21 +-101.213585 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.803581 + 20 +-101.213585 + 30 +0.2 + 11 +94.803581 + 21 +-100.419991 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.803581 + 20 +-100.419991 + 30 +0.2 + 11 +94.803581 + 21 +-99.626404 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.803581 + 20 +-99.626404 + 30 +0.2 + 11 +94.196404 + 21 +-99.626404 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.196404 + 20 +-99.626404 + 30 +0.2 + 11 +94.196404 + 21 +-100.419991 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +95.803581 + 20 +-100.426399 + 30 +0.2 + 11 +95.349991 + 21 +-100.426399 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +95.349991 + 20 +-100.426399 + 30 +0.2 + 11 +94.8964 + 21 +-100.426399 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.8964 + 20 +-100.426399 + 30 +0.2 + 11 +94.8964 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.8964 + 20 +-101.033577 + 30 +0.2 + 11 +95.349991 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +95.349991 + 20 +-101.033577 + 30 +0.2 + 11 +95.803581 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +95.803581 + 20 +-101.033577 + 30 +0.2 + 11 +97.696396 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +97.696396 + 20 +-101.033577 + 30 +0.2 + 11 +98.149986 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.149986 + 20 +-101.033577 + 30 +0.2 + 11 +98.603577 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.603577 + 20 +-101.033577 + 30 +0.2 + 11 +98.603577 + 21 +-100.426399 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.603577 + 20 +-100.426399 + 30 +0.2 + 11 +98.149986 + 21 +-100.426399 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.149986 + 20 +-100.426399 + 30 +0.2 + 11 +97.696396 + 21 +-100.426399 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +97.696396 + 20 +-100.426399 + 30 +0.2 + 11 +95.803581 + 21 +-100.426399 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +95.803581 + 20 +-99.626396 + 30 +0.2 + 11 +95.349991 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +95.349991 + 20 +-99.626396 + 30 +0.2 + 11 +94.8964 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.8964 + 20 +-99.626396 + 30 +0.2 + 11 +94.8964 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.8964 + 20 +-100.033577 + 30 +0.2 + 11 +95.349991 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +95.349991 + 20 +-100.033577 + 30 +0.2 + 11 +95.803581 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +95.803581 + 20 +-100.033577 + 30 +0.2 + 11 +97.696396 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +97.696396 + 20 +-100.033577 + 30 +0.2 + 11 +98.149986 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.149986 + 20 +-100.033577 + 30 +0.2 + 11 +98.603577 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.603577 + 20 +-100.033577 + 30 +0.2 + 11 +98.603577 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.603577 + 20 +-99.626396 + 30 +0.2 + 11 +98.149986 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +98.149986 + 20 +-99.626396 + 30 +0.2 + 11 +97.696396 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +97.696396 + 20 +-99.626396 + 30 +0.2 + 11 +95.803581 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +95.803581 + 20 +-98.626396 + 30 +0.2 + 11 +94.8964 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.8964 + 20 +-98.626396 + 30 +0.2 + 11 +94.8964 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +94.8964 + 20 +-99.233574 + 30 +0.2 + 11 +95.803581 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +95.803581 + 20 +-99.233574 + 30 +0.2 + 11 +95.803581 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +100.303581 + 20 +-98.626396 + 30 +0.2 + 11 +99.3964 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.3964 + 20 +-98.626396 + 30 +0.2 + 11 +99.3964 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.3964 + 20 +-99.233574 + 30 +0.2 + 11 +100.303581 + 21 +-99.233574 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +100.303581 + 20 +-99.233574 + 30 +0.2 + 11 +100.303581 + 21 +-98.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +100.303581 + 20 +-99.626396 + 30 +0.2 + 11 +99.3964 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.3964 + 20 +-99.626396 + 30 +0.2 + 11 +99.3964 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.3964 + 20 +-100.033577 + 30 +0.2 + 11 +100.303581 + 21 +-100.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +100.303581 + 20 +-100.033577 + 30 +0.2 + 11 +100.303581 + 21 +-99.626396 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +100.303581 + 20 +-100.426399 + 30 +0.2 + 11 +99.3964 + 21 +-100.426399 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.3964 + 20 +-100.426399 + 30 +0.2 + 11 +99.3964 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +99.3964 + 20 +-101.033577 + 30 +0.2 + 11 +100.303581 + 21 +-101.033577 + 31 +0.2 + 0 +LINE + 8 +PLAN_1 + 62 +7 + 10 +100.303581 + 20 +-101.033577 + 30 +0.2 + 11 +100.303581 + 21 +-100.426399 + 31 +0.2 + 0 +ENDSEC + 0 +EOF diff --git a/Schematics/Schematics-B_Cu.gbr b/Schematics/Schematics-B_Cu.gbr new file mode 100644 index 0000000..84e9fcf --- /dev/null +++ b/Schematics/Schematics-B_Cu.gbr @@ -0,0 +1,117 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,8.0.3*% +%TF.CreationDate,2024-07-20T13:58:35+02:00*% +%TF.ProjectId,Schematics,53636865-6d61-4746-9963-732e6b696361,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Copper,L2,Bot*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 8.0.3) date 2024-07-20 13:58:35* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%TA.AperFunction,ComponentPad*% +%ADD10R,1.700000X1.700000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD11O,1.700000X1.700000*% +%TD*% +G04 APERTURE END LIST* +D10* +%TO.P,J7,1,Pin_1*% +%TO.N,+5V*% +X27420000Y-51500000D03* +D11* +%TO.P,J7,2,Pin_2*% +%TO.N,/I2S_DA*% +X29960000Y-51500000D03* +%TO.P,J7,3,Pin_3*% +%TO.N,/I2S_CL*% +X32500000Y-51500000D03* +%TO.P,J7,4,Pin_4*% +%TO.N,GND*% +X35040000Y-51500000D03* +%TD*% +D10* +%TO.P,J1,1,Pin_1*% +%TO.N,GND*% +X75500000Y-37000000D03* +D11* +%TO.P,J1,2,Pin_2*% +%TO.N,+5V*% +X72960000Y-37000000D03* +%TO.P,J1,3,Pin_3*% +%TO.N,/I2S_BCK*% +X70420000Y-37000000D03* +%TO.P,J1,4,Pin_4*% +%TO.N,/I2S_LRCK*% +X67880000Y-37000000D03* +%TO.P,J1,5,Pin_5*% +%TO.N,/I2S_DATA*% +X65340000Y-37000000D03* +%TD*% +D10* +%TO.P,J4,1,Pin_1*% +%TO.N,VCC*% +X26960000Y-46500000D03* +D11* +%TO.P,J4,2,Pin_2*% +%TO.N,GND*% +X29500000Y-46500000D03* +%TD*% +D10* +%TO.P,J3,1,Pin_1*% +%TO.N,/KNOB2_BUT*% +X65500000Y-47000000D03* +D11* +%TO.P,J3,2,Pin_2*% +%TO.N,/KNOB2_B*% +X68040000Y-47000000D03* +%TO.P,J3,3,Pin_3*% +%TO.N,/KNOB2_A*% +X70580000Y-47000000D03* +%TO.P,J3,4,Pin_4*% +%TO.N,GND*% +X73120000Y-47000000D03* +%TD*% +D10* +%TO.P,J2,1,Pin_1*% +%TO.N,/KNOB1_A*% +X65500000Y-42000000D03* +D11* +%TO.P,J2,2,Pin_2*% +%TO.N,/KNOB1_B*% +X68040000Y-42000000D03* +%TO.P,J2,3,Pin_3*% +%TO.N,/KNOB1_BUT*% +X70580000Y-42000000D03* +%TO.P,J2,4,Pin_4*% +%TO.N,GND*% +X73120000Y-42000000D03* +%TD*% +D10* +%TO.P,J5,1,Pin_1*% +%TO.N,+5V*% +X65475000Y-27500000D03* +D11* +%TO.P,J5,2,Pin_2*% +%TO.N,/LED_DATA*% +X68015000Y-27500000D03* +%TO.P,J5,3,Pin_3*% +%TO.N,GND*% +X70555000Y-27500000D03* +%TD*% +D10* +%TO.P,J6,1,Pin_1*% +%TO.N,/TX*% +X65475000Y-32000000D03* +D11* +%TO.P,J6,2,Pin_2*% +%TO.N,/RX*% +X68015000Y-32000000D03* +%TO.P,J6,3,Pin_3*% +%TO.N,GND*% +X70555000Y-32000000D03* +%TD*% +M02* diff --git a/Schematics/Schematics-Edge_Cuts.gbr b/Schematics/Schematics-Edge_Cuts.gbr new file mode 100644 index 0000000..b5e87e7 --- /dev/null +++ b/Schematics/Schematics-Edge_Cuts.gbr @@ -0,0 +1,14 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,8.0.3*% +%TF.CreationDate,2024-07-20T13:58:35+02:00*% +%TF.ProjectId,Schematics,53636865-6d61-4746-9963-732e6b696361,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Profile,NP*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 8.0.3) date 2024-07-20 13:58:35* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 APERTURE END LIST* +M02* diff --git a/Schematics/Schematics-F_Cu.gbr b/Schematics/Schematics-F_Cu.gbr new file mode 100644 index 0000000..41a2625 --- /dev/null +++ b/Schematics/Schematics-F_Cu.gbr @@ -0,0 +1,3546 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,8.0.3*% +%TF.CreationDate,2024-07-20T13:58:35+02:00*% +%TF.ProjectId,Schematics,53636865-6d61-4746-9963-732e6b696361,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Copper,L1,Top*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 8.0.3) date 2024-07-20 13:58:35* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 Aperture macros list* +%AMRoundRect* +0 Rectangle with rounded corners* +0 $1 Rounding radius* +0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* +0 Add a 4 corners polygon primitive as box body* +4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* +0 Add four circle primitives for the rounded corners* +1,1,$1+$1,$2,$3* +1,1,$1+$1,$4,$5* +1,1,$1+$1,$6,$7* +1,1,$1+$1,$8,$9* +0 Add four rect primitives between the rounded corners* +20,1,$1+$1,$2,$3,$4,$5,0* +20,1,$1+$1,$4,$5,$6,$7,0* +20,1,$1+$1,$6,$7,$8,$9,0* +20,1,$1+$1,$8,$9,$2,$3,0*% +G04 Aperture macros list end* +%TA.AperFunction,SMDPad,CuDef*% +%ADD10RoundRect,0.375000X-0.625000X-0.375000X0.625000X-0.375000X0.625000X0.375000X-0.625000X0.375000X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD11RoundRect,0.500000X-0.500000X-1.400000X0.500000X-1.400000X0.500000X1.400000X-0.500000X1.400000X0*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD12R,1.700000X1.700000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD13O,1.700000X1.700000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD14RoundRect,0.250000X0.475000X-0.250000X0.475000X0.250000X-0.475000X0.250000X-0.475000X-0.250000X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD15RoundRect,0.250000X-0.250000X-0.475000X0.250000X-0.475000X0.250000X0.475000X-0.250000X0.475000X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD16RoundRect,0.250000X0.250000X0.475000X-0.250000X0.475000X-0.250000X-0.475000X0.250000X-0.475000X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD17RoundRect,0.250000X-0.475000X0.250000X-0.475000X-0.250000X0.475000X-0.250000X0.475000X0.250000X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD18R,0.900000X0.900000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD19R,1.500000X0.900000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD20C,0.500000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD21C,0.200000*% +%TD*% +G04 APERTURE END LIST* +D10* +%TO.P,U3,1,GND*% +%TO.N,GND*% +X30200000Y-23700000D03* +%TO.P,U3,2,VO*% +%TO.N,+5V*% +X30200000Y-26000000D03* +D11* +X36500000Y-26000000D03* +D10* +%TO.P,U3,3,VI*% +%TO.N,VCC*% +X30200000Y-28300000D03* +%TD*% +D12* +%TO.P,J7,1,Pin_1*% +%TO.N,+5V*% +X27420000Y-51500000D03* +D13* +%TO.P,J7,2,Pin_2*% +%TO.N,/I2S_DA*% +X29960000Y-51500000D03* +%TO.P,J7,3,Pin_3*% +%TO.N,/I2S_CL*% +X32500000Y-51500000D03* +%TO.P,J7,4,Pin_4*% +%TO.N,GND*% +X35040000Y-51500000D03* +%TD*% +D14* +%TO.P,C7,1*% +%TO.N,VCC*% +X27000000Y-27000000D03* +%TO.P,C7,2*% +%TO.N,GND*% +X27000000Y-25100000D03* +%TD*% +D15* +%TO.P,C6,1*% +%TO.N,+5V*% +X31100000Y-20500000D03* +%TO.P,C6,2*% +%TO.N,GND*% +X33000000Y-20500000D03* +%TD*% +D16* +%TO.P,C4,1*% +%TO.N,+5V*% +X37000000Y-20500000D03* +%TO.P,C4,2*% +%TO.N,GND*% +X35100000Y-20500000D03* +%TD*% +D15* +%TO.P,C2,1*% +%TO.N,VCC*% +X28600000Y-32000000D03* +%TO.P,C2,2*% +%TO.N,GND*% +X30500000Y-32000000D03* +%TD*% +D14* +%TO.P,C5,1*% +%TO.N,VCC*% +X28000000Y-42000000D03* +%TO.P,C5,2*% +%TO.N,GND*% +X28000000Y-40100000D03* +%TD*% +D12* +%TO.P,J1,1,Pin_1*% +%TO.N,GND*% +X75500000Y-37000000D03* +D13* +%TO.P,J1,2,Pin_2*% +%TO.N,+5V*% +X72960000Y-37000000D03* +%TO.P,J1,3,Pin_3*% +%TO.N,/I2S_BCK*% +X70420000Y-37000000D03* +%TO.P,J1,4,Pin_4*% +%TO.N,/I2S_LRCK*% +X67880000Y-37000000D03* +%TO.P,J1,5,Pin_5*% +%TO.N,/I2S_DATA*% +X65340000Y-37000000D03* +%TD*% +D17* +%TO.P,C8,1*% +%TO.N,+3.3V*% +X38500000Y-33100000D03* +%TO.P,C8,2*% +%TO.N,GND*% +X38500000Y-35000000D03* +%TD*% +D12* +%TO.P,J4,1,Pin_1*% +%TO.N,VCC*% +X26960000Y-46500000D03* +D13* +%TO.P,J4,2,Pin_2*% +%TO.N,GND*% +X29500000Y-46500000D03* +%TD*% +D18* +%TO.P,U1,39,GND_THERMAL*% +%TO.N,GND*% +X49650000Y-40695000D03* +X49650000Y-39295000D03* +X49650000Y-37895000D03* +X48250000Y-40695000D03* +X48250000Y-39295000D03* +X48250000Y-37895000D03* +X46850000Y-40695000D03* +X46850000Y-39295000D03* +X46845000Y-37895000D03* +D19* +%TO.P,U1,38,GND*% +X58500000Y-31500000D03* +%TO.P,U1,37,GPIO23*% +X58500000Y-32770000D03* +%TO.P,U1,36,GPIO22*% +%TO.N,/LED_DATA*% +X58500000Y-34040000D03* +%TO.P,U1,35,U0TXD/GPIO1*% +%TO.N,/TX*% +X58500000Y-35310000D03* +%TO.P,U1,34,U0RXD/GPIO3*% +%TO.N,/RX*% +X58500000Y-36580000D03* +%TO.P,U1,33,GPIO21*% +%TO.N,/I2S_DATA*% +X58500000Y-37850000D03* +%TO.P,U1,32*% +%TO.N,N/C*% +X58500000Y-39120000D03* +%TO.P,U1,31,GPIO19*% +%TO.N,/I2S_LRCK*% +X58500000Y-40390000D03* +%TO.P,U1,30,GPIO18*% +%TO.N,/I2S_BCK*% +X58500000Y-41660000D03* +%TO.P,U1,29,GPIO5*% +%TO.N,/KNOB1_A*% +X58500000Y-42930000D03* +%TO.P,U1,28*% +%TO.N,N/C*% +X58500000Y-44200000D03* +%TO.P,U1,27*% +X58500000Y-45470000D03* +%TO.P,U1,26,ADC2_CH0/GPIO4*% +%TO.N,/KNOB1_B*% +X58500000Y-46740000D03* +%TO.P,U1,25,GPIO0/BOOT/ADC2_CH1*% +%TO.N,GND*% +X58500000Y-48010000D03* +%TO.P,U1,24,ADC2_CH2/GPIO2*% +%TO.N,/KNOB1_BUT*% +X58500000Y-49280000D03* +%TO.P,U1,23,MTDO/GPIO15/ADC2_CH3*% +%TO.N,GND*% +X58500000Y-50550000D03* +%TO.P,U1,22*% +%TO.N,N/C*% +X58500000Y-51820000D03* +%TO.P,U1,21*% +X58500000Y-53090000D03* +%TO.P,U1,20*% +X58500000Y-54360000D03* +%TO.P,U1,19*% +X41000000Y-54360000D03* +%TO.P,U1,18*% +X41000000Y-53090000D03* +%TO.P,U1,17*% +X41000000Y-51820000D03* +%TO.P,U1,16,MTCK/GPIO13/ADC2_CH4*% +%TO.N,/KNOB2_BUT*% +X41000000Y-50550000D03* +%TO.P,U1,15,GND*% +%TO.N,GND*% +X41000000Y-49280000D03* +%TO.P,U1,14,MTDI/GPIO12/ADC2_CH5*% +%TO.N,/KNOB2_B*% +X41000000Y-48010000D03* +%TO.P,U1,13,MTMS/GPIO14/ADC2_CH6*% +%TO.N,/KNOB2_A*% +X41000000Y-46740000D03* +%TO.P,U1,12,ADC2_CH7/GPIO27*% +%TO.N,GND*% +X41000000Y-45470000D03* +%TO.P,U1,11,DAC_2/ADC2_CH9/GPIO26*% +%TO.N,/I2S_CL*% +X41000000Y-44200000D03* +%TO.P,U1,10,DAC_1/ADC2_CH8/GPIO25*% +%TO.N,/I2S_DA*% +X41000000Y-42930000D03* +%TO.P,U1,9,32K_XN/GPIO33/ADC1_CH5*% +%TO.N,GND*% +X41000000Y-41660000D03* +%TO.P,U1,8,32K_XP/GPIO32/ADC1_CH4*% +X41000000Y-40390000D03* +%TO.P,U1,7,GPIO35/ADC1_CH7*% +X41000000Y-39120000D03* +%TO.P,U1,6,GPIO34/ADC1_CH6*% +X41000000Y-37850000D03* +%TO.P,U1,5,SENSOR_VN/GPIO39/ADC1_CH3*% +X41000000Y-36580000D03* +%TO.P,U1,4,SENSOR_VP/GPIO36/ADC1_CH0*% +X41000000Y-35310000D03* +%TO.P,U1,3,EN/CHIP_PU*% +%TO.N,+3.3V*% +X41000000Y-34040000D03* +%TO.P,U1,2,3V3*% +X41000000Y-32770000D03* +%TO.P,U1,1,GND*% +%TO.N,GND*% +X41000000Y-31500000D03* +%TD*% +D10* +%TO.P,U2,1,GND*% +%TO.N,GND*% +X30700000Y-37200000D03* +%TO.P,U2,2,VO*% +%TO.N,+3.3V*% +X30700000Y-39500000D03* +D11* +X37000000Y-39500000D03* +D10* +%TO.P,U2,3,VI*% +%TO.N,VCC*% +X30700000Y-41800000D03* +%TD*% +D17* +%TO.P,C1,1*% +%TO.N,+3.3V*% +X36000000Y-33100000D03* +%TO.P,C1,2*% +%TO.N,GND*% +X36000000Y-35000000D03* +%TD*% +D15* +%TO.P,C3,1*% +%TO.N,VCC*% +X28600000Y-34500000D03* +%TO.P,C3,2*% +%TO.N,GND*% +X30500000Y-34500000D03* +%TD*% +D12* +%TO.P,J3,1,Pin_1*% +%TO.N,/KNOB2_BUT*% +X65500000Y-47000000D03* +D13* +%TO.P,J3,2,Pin_2*% +%TO.N,/KNOB2_B*% +X68040000Y-47000000D03* +%TO.P,J3,3,Pin_3*% +%TO.N,/KNOB2_A*% +X70580000Y-47000000D03* +%TO.P,J3,4,Pin_4*% +%TO.N,GND*% +X73120000Y-47000000D03* +%TD*% +D12* +%TO.P,J2,1,Pin_1*% +%TO.N,/KNOB1_A*% +X65500000Y-42000000D03* +D13* +%TO.P,J2,2,Pin_2*% +%TO.N,/KNOB1_B*% +X68040000Y-42000000D03* +%TO.P,J2,3,Pin_3*% +%TO.N,/KNOB1_BUT*% +X70580000Y-42000000D03* +%TO.P,J2,4,Pin_4*% +%TO.N,GND*% +X73120000Y-42000000D03* +%TD*% +D12* +%TO.P,J5,1,Pin_1*% +%TO.N,+5V*% +X65475000Y-27500000D03* +D13* +%TO.P,J5,2,Pin_2*% +%TO.N,/LED_DATA*% +X68015000Y-27500000D03* +%TO.P,J5,3,Pin_3*% +%TO.N,GND*% +X70555000Y-27500000D03* +%TD*% +D12* +%TO.P,J6,1,Pin_1*% +%TO.N,/TX*% +X65475000Y-32000000D03* +D13* +%TO.P,J6,2,Pin_2*% +%TO.N,/RX*% +X68015000Y-32000000D03* +%TO.P,J6,3,Pin_3*% +%TO.N,GND*% +X70555000Y-32000000D03* +%TD*% +D20* +%TO.N,/LED_DATA*% +X59450000Y-34040000D02* +X58500000Y-34040000D01* +X62490000Y-31000000D02* +X59450000Y-34040000D01* +X64275000Y-31000000D02* +X62490000Y-31000000D01* +X67775000Y-27500000D02* +X64275000Y-31000000D01* +D21* +X68015000Y-27500000D02* +X67775000Y-27500000D01* +D20* +%TO.N,/KNOB2_BUT*% +X59060000Y-56000000D02* +X65500000Y-49560000D01* +X38750000Y-50750000D02* +X38750000Y-56000000D01* +X39000000Y-50500000D02* +X38750000Y-50750000D01* +X38750000Y-56000000D02* +X59060000Y-56000000D01* +X39050000Y-50550000D02* +X39000000Y-50500000D01* +X41000000Y-50550000D02* +X39050000Y-50550000D01* +X65500000Y-49560000D02* +X65500000Y-47000000D01* +%TO.N,/KNOB2_B*% +X38000000Y-50080000D02* +X40070000Y-48010000D01* +X38000000Y-56750000D02* +X38000000Y-50080000D01* +X68040000Y-48479340D02* +X59769340Y-56750000D01* +X59769340Y-56750000D02* +X38000000Y-56750000D01* +X68040000Y-47000000D02* +X68040000Y-48479340D01* +X40070000Y-48010000D02* +X41000000Y-48010000D01* +%TO.N,/KNOB2_A*% +X60080000Y-57500000D02* +X70580000Y-47000000D01* +X37000000Y-49810000D02* +X37000000Y-57500000D01* +X40070000Y-46740000D02* +X37000000Y-49810000D01* +X41000000Y-46740000D02* +X40070000Y-46740000D01* +X37000000Y-57500000D02* +X60080000Y-57500000D01* +%TO.N,/KNOB1_BUT*% +X63960000Y-44750000D02* +X59430000Y-49280000D01* +X59430000Y-49280000D02* +X58500000Y-49280000D01* +X67830000Y-44750000D02* +X63960000Y-44750000D01* +X70580000Y-42000000D02* +X67830000Y-44750000D01* +%TO.N,/KNOB1_B*% +X66040000Y-44000000D02* +X62500000Y-44000000D01* +X62500000Y-44000000D02* +X59760000Y-46740000D01* +X68040000Y-42000000D02* +X66040000Y-44000000D01* +X59760000Y-46740000D02* +X58500000Y-46740000D01* +%TO.N,/KNOB1_A*% +X64570000Y-42930000D02* +X58500000Y-42930000D01* +X65500000Y-42000000D02* +X64570000Y-42930000D01* +%TO.N,/I2S_BCK*% +X59900660Y-41660000D02* +X58500000Y-41660000D01* +X61060660Y-40500000D02* +X59900660Y-41660000D01* +X70420000Y-37000000D02* +X66920000Y-40500000D01* +X66920000Y-40500000D02* +X61060660Y-40500000D01* +%TO.N,/I2S_LRCK*% +X60110000Y-40390000D02* +X58500000Y-40390000D01* +X61500000Y-39000000D02* +X60110000Y-40390000D01* +X65880000Y-39000000D02* +X61500000Y-39000000D01* +X67880000Y-37000000D02* +X65880000Y-39000000D01* +%TO.N,/I2S_DATA*% +X64490000Y-37850000D02* +X58500000Y-37850000D01* +X65340000Y-37000000D02* +X64490000Y-37850000D01* +%TO.N,/RX*% +X59920000Y-36580000D02* +X58500000Y-36580000D01* +X62500000Y-34000000D02* +X59920000Y-36580000D01* +X66015000Y-34000000D02* +X62500000Y-34000000D01* +X68015000Y-32000000D02* +X66015000Y-34000000D01* +%TO.N,/TX*% +X63060000Y-32000000D02* +X65475000Y-32000000D01* +X59750000Y-35310000D02* +X63060000Y-32000000D01* +X58500000Y-35310000D02* +X59750000Y-35310000D01* +%TO.N,+5V*% +X37500000Y-21000000D02* +X37000000Y-20500000D01* +X65475000Y-21025000D02* +X65500000Y-21000000D01* +X65500000Y-21000000D02* +X37500000Y-21000000D01* +X65475000Y-27500000D02* +X65475000Y-21025000D01* +X36500000Y-26000000D02* +X36500000Y-21000000D01* +X36500000Y-21000000D02* +X37000000Y-20500000D01* +X31700000Y-24500000D02* +X35000000Y-24500000D01* +X35000000Y-24500000D02* +X36500000Y-26000000D01* +X31700000Y-21100000D02* +X31700000Y-24500000D01* +X31700000Y-24500000D02* +X30200000Y-26000000D01* +X31100000Y-20500000D02* +X31700000Y-21100000D01* +%TO.N,VCC*% +X28000000Y-45460000D02* +X26960000Y-46500000D01* +X28000000Y-42000000D02* +X28000000Y-45460000D01* +X26775000Y-40775000D02* +X28000000Y-42000000D01* +X26775000Y-36325000D02* +X26775000Y-40775000D01* +X28600000Y-34500000D02* +X26775000Y-36325000D01* +X28900000Y-28300000D02* +X28600000Y-28600000D01* +X30200000Y-28300000D02* +X28900000Y-28300000D01* +X28600000Y-28600000D02* +X28600000Y-34500000D01* +X27000000Y-27000000D02* +X28600000Y-28600000D01* +%TO.N,+3.3V*% +X36330000Y-32770000D02* +X36000000Y-33100000D01* +X41000000Y-32770000D02* +X36330000Y-32770000D01* +X41000000Y-34040000D02* +X41000000Y-32770000D01* +X39750000Y-34040000D02* +X41000000Y-34040000D01* +X39725000Y-34065000D02* +X39750000Y-34040000D01* +X37000000Y-39500000D02* +X39725000Y-36775000D01* +X39725000Y-36775000D02* +X39725000Y-34065000D01* +%TO.N,GND*% +X30700000Y-32200000D02* +X30500000Y-32000000D01* +X30700000Y-37200000D02* +X30700000Y-32200000D01* +X31000000Y-35000000D02* +X30500000Y-34500000D01* +X38500000Y-35000000D02* +X31000000Y-35000000D01* +%TO.N,+3.3V*% +X30700000Y-39500000D02* +X37000000Y-39500000D01* +%TO.N,GND*% +X28000000Y-40100000D02* +X28000000Y-39900000D01* +X28000000Y-39900000D02* +X30700000Y-37200000D01* +%TO.N,VCC*% +X30500000Y-42000000D02* +X30700000Y-41800000D01* +X28000000Y-42000000D02* +X30500000Y-42000000D01* +%TO.N,/I2S_DA*% +X38530000Y-42930000D02* +X29960000Y-51500000D01* +X41000000Y-42930000D02* +X38530000Y-42930000D01* +%TO.N,/I2S_CL*% +X39800000Y-44200000D02* +X41000000Y-44200000D01* +X32500000Y-51500000D02* +X39800000Y-44200000D01* +D21* +%TO.N,+3.3V*% +X38830000Y-32770000D02* +X38500000Y-33100000D01* +%TO.N,/KNOB1_B*% +X59450000Y-46740000D02* +X58500000Y-46740000D01* +%TO.N,/KNOB1_BUT*% +X59030000Y-49280000D02* +X58500000Y-49280000D01* +%TD*% +%TA.AperFunction,Conductor*% +%TO.N,GND*% +G36* +X79943039Y-15019685D02* +G01* +X79988794Y-15072489D01* +X80000000Y-15124000D01* +X80000000Y-64876000D01* +X79980315Y-64943039D01* +X79927511Y-64988794D01* +X79876000Y-65000000D01* +X20124000Y-65000000D01* +X20056961Y-64980315D01* +X20011206Y-64927511D01* +X20000000Y-64876000D01* +X20000000Y-45602135D01* +X25609500Y-45602135D01* +X25609500Y-47397870D01* +X25609501Y-47397876D01* +X25615908Y-47457483D01* +X25666202Y-47592328D01* +X25666206Y-47592335D01* +X25752452Y-47707544D01* +X25752455Y-47707547D01* +X25867664Y-47793793D01* +X25867671Y-47793797D01* +X26002517Y-47844091D01* +X26002516Y-47844091D01* +X26009444Y-47844835D01* +X26062127Y-47850500D01* +X27857872Y-47850499D01* +X27917483Y-47844091D01* +X28052331Y-47793796D01* +X28167546Y-47707546D01* +X28253796Y-47592331D01* +X28303002Y-47460401D01* +X28344872Y-47404468D01* +X28410337Y-47380050D01* +X28478610Y-47394901D01* +X28506865Y-47416053D01* +X28628917Y-47538105D01* +X28822421Y-47673600D01* +X29036507Y-47773429D01* +X29036516Y-47773433D01* +X29250000Y-47830634D01* +X29250000Y-46933012D01* +X29307007Y-46965925D01* +X29434174Y-47000000D01* +X29565826Y-47000000D01* +X29692993Y-46965925D01* +X29750000Y-46933012D01* +X29750000Y-47830633D01* +X29963483Y-47773433D01* +X29963492Y-47773429D01* +X30177578Y-47673600D01* +X30371082Y-47538105D01* +X30538105Y-47371082D01* +X30673600Y-47177578D01* +X30773429Y-46963492D01* +X30773432Y-46963486D01* +X30830636Y-46750000D01* +X29933012Y-46750000D01* +X29965925Y-46692993D01* +X30000000Y-46565826D01* +X30000000Y-46434174D01* +X29965925Y-46307007D01* +X29933012Y-46250000D01* +X30830636Y-46250000D01* +X30830635Y-46249999D01* +X30773432Y-46036513D01* +X30773429Y-46036507D01* +X30673600Y-45822422D01* +X30673599Y-45822420D01* +X30538113Y-45628926D01* +X30538108Y-45628920D01* +X30371082Y-45461894D01* +X30177578Y-45326399D01* +X29963492Y-45226570D01* +X29963486Y-45226567D01* +X29750000Y-45169364D01* +X29750000Y-46066988D01* +X29692993Y-46034075D01* +X29565826Y-46000000D01* +X29434174Y-46000000D01* +X29307007Y-46034075D01* +X29250000Y-46066988D01* +X29250000Y-45169364D01* +X29249999Y-45169364D01* +X29036513Y-45226567D01* +X29036502Y-45226571D01* +X28926904Y-45277678D01* +X28857827Y-45288170D01* +X28794043Y-45259650D01* +X28755804Y-45201173D01* +X28750500Y-45165296D01* +X28750500Y-43031057D01* +X28770185Y-42964018D01* +X28809401Y-42925520D01* +X28943656Y-42842712D01* +X28999549Y-42786819D01* +X29060872Y-42753334D01* +X29087230Y-42750500D01* +X29354900Y-42750500D01* +X29421939Y-42770185D01* +X29447405Y-42793086D01* +X29447524Y-42792968D01* +X29449767Y-42795211D01* +X29451545Y-42796810D01* +X29452278Y-42797722D01* +X29600704Y-42917030D01* +X29600707Y-42917032D01* +X29771302Y-43001639D01* +X29771303Y-43001639D01* +X29771307Y-43001641D01* +X29956111Y-43047600D01* +X29998877Y-43050500D01* +X31401122Y-43050499D01* +X31443889Y-43047600D01* +X31628693Y-43001641D01* +X31799296Y-42917030D01* +X31947722Y-42797722D01* +X32067030Y-42649296D01* +X32151641Y-42478693D01* +X32197600Y-42293889D01* +X32200500Y-42251123D01* +X32200499Y-41348878D01* +X32197600Y-41306111D01* +X32151641Y-41121307D01* +X32129872Y-41077413D01* +X32067032Y-40950707D01* +X32067030Y-40950704D01* +X31947722Y-40802278D01* +X31947721Y-40802277D01* +X31878514Y-40746647D01* +X31838595Y-40689304D01* +X31836015Y-40619482D01* +X31871594Y-40559349D01* +X31878514Y-40553353D01* +X31887909Y-40545800D01* +X31947722Y-40497722D01* +X32067030Y-40349296D01* +X32081854Y-40319406D01* +X32129275Y-40268093D01* +X32192942Y-40250500D01* +X35375501Y-40250500D01* +X35442540Y-40270185D01* +X35488295Y-40322989D01* +X35499501Y-40374500D01* +X35499501Y-40958036D01* +X35502691Y-40993917D01* +X35510113Y-41077415D01* +X35566089Y-41273045D01* +X35566090Y-41273048D01* +X35566091Y-41273049D01* +X35660302Y-41453407D01* +X35660304Y-41453409D01* +X35788890Y-41611109D01* +X35882803Y-41687684D01* +X35946593Y-41739698D01* +X36126951Y-41833909D01* +X36322582Y-41889886D01* +X36441963Y-41900500D01* +X37558036Y-41900499D01* +X37677418Y-41889886D01* +X37873049Y-41833909D01* +X38053407Y-41739698D01* +X38211109Y-41611109D01* +X38339698Y-41453407D01* +X38433909Y-41273049D01* +X38489886Y-41077418D01* +X38500500Y-40958037D01* +X38500500Y-40887844D01* +X39750000Y-40887844D01* +X39756401Y-40947372D01* +X39756404Y-40947383D01* +X39769191Y-40981668D01* +X39774175Y-41051360D01* +X39769191Y-41068332D01* +X39756404Y-41102616D01* +X39756401Y-41102627D01* +X39750000Y-41162155D01* +X39750000Y-41410000D01* +X40750000Y-41410000D01* +X41250000Y-41410000D01* +X42250000Y-41410000D01* +X42250000Y-41192844D01* +X45900000Y-41192844D01* +X45906401Y-41252372D01* +X45906403Y-41252379D01* +X45956645Y-41387086D01* +X45956649Y-41387093D01* +X46042809Y-41502187D01* +X46042812Y-41502190D01* +X46157906Y-41588350D01* +X46157913Y-41588354D01* +X46292620Y-41638596D01* +X46292627Y-41638598D01* +X46352155Y-41644999D01* +X46352172Y-41645000D01* +X46600000Y-41645000D01* +X47100000Y-41645000D01* +X47347828Y-41645000D01* +X47347844Y-41644999D01* +X47407372Y-41638598D01* +X47407376Y-41638597D01* +X47506666Y-41601564D01* +X47576358Y-41596580D01* +X47593334Y-41601564D01* +X47692623Y-41638597D01* +X47692627Y-41638598D01* +X47752155Y-41644999D01* +X47752172Y-41645000D01* +X48000000Y-41645000D01* +X48500000Y-41645000D01* +X48747828Y-41645000D01* +X48747844Y-41644999D01* +X48807372Y-41638598D01* +X48807376Y-41638597D01* +X48906666Y-41601564D01* +X48976358Y-41596580D01* +X48993334Y-41601564D01* +X49092623Y-41638597D01* +X49092627Y-41638598D01* +X49152155Y-41644999D01* +X49152172Y-41645000D01* +X49400000Y-41645000D01* +X49900000Y-41645000D01* +X50147828Y-41645000D01* +X50147844Y-41644999D01* +X50207372Y-41638598D01* +X50207379Y-41638596D01* +X50342086Y-41588354D01* +X50342093Y-41588350D01* +X50457187Y-41502190D01* +X50457190Y-41502187D01* +X50543350Y-41387093D01* +X50543354Y-41387086D01* +X50593596Y-41252379D01* +X50593598Y-41252372D01* +X50599999Y-41192844D01* +X50600000Y-41192827D01* +X50600000Y-40945000D01* +X49900000Y-40945000D01* +X49900000Y-41645000D01* +X49400000Y-41645000D01* +X49400000Y-40945000D01* +X48500000Y-40945000D01* +X48500000Y-41645000D01* +X48000000Y-41645000D01* +X48000000Y-40945000D01* +X47100000Y-40945000D01* +X47100000Y-41645000D01* +X46600000Y-41645000D01* +X46600000Y-40945000D01* +X45900000Y-40945000D01* +X45900000Y-41192844D01* +X42250000Y-41192844D01* +X42250000Y-41162172D01* +X42249999Y-41162155D01* +X42243598Y-41102627D01* +X42243597Y-41102624D01* +X42230808Y-41068335D01* +X42225822Y-40998644D01* +X42230808Y-40981665D01* +X42243597Y-40947375D01* +X42243598Y-40947372D01* +X42249999Y-40887844D01* +X42250000Y-40887827D01* +X42250000Y-40640000D01* +X41250000Y-40640000D01* +X41250000Y-41410000D01* +X40750000Y-41410000D01* +X40750000Y-40640000D01* +X39750000Y-40640000D01* +X39750000Y-40887844D01* +X38500500Y-40887844D01* +X38500499Y-39617844D01* +X39750000Y-39617844D01* +X39756401Y-39677372D01* +X39756404Y-39677383D01* +X39769191Y-39711668D01* +X39774175Y-39781360D01* +X39769191Y-39798332D01* +X39756404Y-39832616D01* +X39756401Y-39832627D01* +X39750000Y-39892155D01* +X39750000Y-40140000D01* +X40750000Y-40140000D01* +X41250000Y-40140000D01* +X42250000Y-40140000D01* +X42250000Y-39892172D01* +X42249999Y-39892155D01* +X42243598Y-39832627D01* +X42243597Y-39832624D01* +X42230808Y-39798335D01* +X42230415Y-39792844D01* +X45900000Y-39792844D01* +X45906401Y-39852372D01* +X45906403Y-39852383D01* +X45943434Y-39951668D01* +X45948418Y-40021360D01* +X45943434Y-40038332D01* +X45906403Y-40137616D01* +X45906401Y-40137627D01* +X45900000Y-40197155D01* +X45900000Y-40445000D01* +X46600000Y-40445000D01* +X47100000Y-40445000D01* +X48000000Y-40445000D01* +X48500000Y-40445000D01* +X49400000Y-40445000D01* +X49900000Y-40445000D01* +X50600000Y-40445000D01* +X50600000Y-40197172D01* +X50599999Y-40197155D01* +X50593598Y-40137627D01* +X50593597Y-40137623D01* +X50556564Y-40038334D01* +X50551580Y-39968642D01* +X50556564Y-39951666D01* +X50593597Y-39852376D01* +X50593598Y-39852372D01* +X50599999Y-39792844D01* +X50600000Y-39792827D01* +X50600000Y-39545000D01* +X49900000Y-39545000D01* +X49900000Y-40445000D01* +X49400000Y-40445000D01* +X49400000Y-39545000D01* +X48500000Y-39545000D01* +X48500000Y-40445000D01* +X48000000Y-40445000D01* +X48000000Y-39545000D01* +X47100000Y-39545000D01* +X47100000Y-40445000D01* +X46600000Y-40445000D01* +X46600000Y-39545000D01* +X45900000Y-39545000D01* +X45900000Y-39792844D01* +X42230415Y-39792844D01* +X42225822Y-39728644D01* +X42230808Y-39711665D01* +X42243597Y-39677375D01* +X42243598Y-39677372D01* +X42249999Y-39617844D01* +X42250000Y-39617827D01* +X42250000Y-39370000D01* +X41250000Y-39370000D01* +X41250000Y-40140000D01* +X40750000Y-40140000D01* +X40750000Y-39370000D01* +X39750000Y-39370000D01* +X39750000Y-39617844D01* +X38500499Y-39617844D01* +X38500499Y-39112228D01* +X38520184Y-39045190D01* +X38536813Y-39024553D01* +X39538320Y-38023047D01* +X39599642Y-37989563D01* +X39669334Y-37994547D01* +X39725267Y-38036419D01* +X39749684Y-38101883D01* +X39750000Y-38110729D01* +X39750000Y-38347844D01* +X39756401Y-38407372D01* +X39756404Y-38407383D01* +X39769191Y-38441668D01* +X39774175Y-38511360D01* +X39769191Y-38528332D01* +X39756404Y-38562616D01* +X39756401Y-38562627D01* +X39750000Y-38622155D01* +X39750000Y-38870000D01* +X40750000Y-38870000D01* +X41250000Y-38870000D01* +X42250000Y-38870000D01* +X42250000Y-38622172D01* +X42249999Y-38622155D01* +X42243598Y-38562627D01* +X42243597Y-38562624D01* +X42230808Y-38528335D01* +X42225822Y-38458644D01* +X42230808Y-38441665D01* +X42243597Y-38407375D01* +X42243598Y-38407372D01* +X42245160Y-38392844D01* +X45895000Y-38392844D01* +X45901401Y-38452372D01* +X45901403Y-38452379D01* +X45940935Y-38558369D01* +X45945919Y-38628060D01* +X45940935Y-38645035D01* +X45906403Y-38737619D01* +X45906401Y-38737627D01* +X45900000Y-38797155D01* +X45900000Y-39045000D01* +X46600000Y-39045000D01* +X46600000Y-38861962D01* +X46597834Y-38857996D01* +X46595000Y-38831638D01* +X46595000Y-38328037D01* +X47095000Y-38328037D01* +X47097166Y-38332004D01* +X47100000Y-38358362D01* +X47100000Y-39045000D01* +X48000000Y-39045000D01* +X48500000Y-39045000D01* +X49400000Y-39045000D01* +X49900000Y-39045000D01* +X50600000Y-39045000D01* +X50600000Y-38797172D01* +X50599999Y-38797155D01* +X50593598Y-38737627D01* +X50593597Y-38737623D01* +X50556564Y-38638334D01* +X50551580Y-38568642D01* +X50556564Y-38551666D01* +X50593597Y-38452376D01* +X50593598Y-38452372D01* +X50599999Y-38392844D01* +X50600000Y-38392827D01* +X50600000Y-38145000D01* +X49900000Y-38145000D01* +X49900000Y-39045000D01* +X49400000Y-39045000D01* +X49400000Y-38145000D01* +X48500000Y-38145000D01* +X48500000Y-39045000D01* +X48000000Y-39045000D01* +X48000000Y-38145000D01* +X47095000Y-38145000D01* +X47095000Y-38328037D01* +X46595000Y-38328037D01* +X46595000Y-38145000D01* +X45895000Y-38145000D01* +X45895000Y-38392844D01* +X42245160Y-38392844D01* +X42249999Y-38347844D01* +X42250000Y-38347827D01* +X42250000Y-38100000D01* +X41250000Y-38100000D01* +X41250000Y-38870000D01* +X40750000Y-38870000D01* +X40750000Y-37600000D01* +X41250000Y-37600000D01* +X42250000Y-37600000D01* +X42250000Y-37397155D01* +X45895000Y-37397155D01* +X45895000Y-37645000D01* +X46595000Y-37645000D01* +X47095000Y-37645000D01* +X48000000Y-37645000D01* +X48500000Y-37645000D01* +X49400000Y-37645000D01* +X49900000Y-37645000D01* +X50600000Y-37645000D01* +X50600000Y-37397172D01* +X50599999Y-37397155D01* +X50593598Y-37337627D01* +X50593596Y-37337620D01* +X50543354Y-37202913D01* +X50543350Y-37202906D01* +X50457190Y-37087812D01* +X50457187Y-37087809D01* +X50342093Y-37001649D01* +X50342086Y-37001645D01* +X50207379Y-36951403D01* +X50207372Y-36951401D01* +X50147844Y-36945000D01* +X49900000Y-36945000D01* +X49900000Y-37645000D01* +X49400000Y-37645000D01* +X49400000Y-36945000D01* +X49152155Y-36945000D01* +X49092627Y-36951401D01* +X49092616Y-36951403D01* +X48993332Y-36988434D01* +X48923640Y-36993418D01* +X48906668Y-36988434D01* +X48807383Y-36951403D01* +X48807372Y-36951401D01* +X48747844Y-36945000D01* +X48500000Y-36945000D01* +X48500000Y-37645000D01* +X48000000Y-37645000D01* +X48000000Y-36945000D01* +X47752155Y-36945000D01* +X47692627Y-36951401D01* +X47692619Y-36951403D01* +X47590833Y-36989367D01* +X47521141Y-36994351D01* +X47504167Y-36989367D01* +X47402380Y-36951403D01* +X47402372Y-36951401D01* +X47342844Y-36945000D01* +X47095000Y-36945000D01* +X47095000Y-37645000D01* +X46595000Y-37645000D01* +X46595000Y-36945000D01* +X46347155Y-36945000D01* +X46287627Y-36951401D01* +X46287620Y-36951403D01* +X46152913Y-37001645D01* +X46152906Y-37001649D01* +X46037812Y-37087809D01* +X46037809Y-37087812D01* +X45951649Y-37202906D01* +X45951645Y-37202913D01* +X45901403Y-37337620D01* +X45901401Y-37337627D01* +X45895000Y-37397155D01* +X42250000Y-37397155D01* +X42250000Y-37352172D01* +X42249999Y-37352155D01* +X42243598Y-37292627D01* +X42243597Y-37292624D01* +X42230808Y-37258335D01* +X42225822Y-37188644D01* +X42230808Y-37171665D01* +X42243597Y-37137375D01* +X42243598Y-37137372D01* +X42249999Y-37077844D01* +X42250000Y-37077827D01* +X42250000Y-36830000D01* +X41250000Y-36830000D01* +X41250000Y-37600000D01* +X40750000Y-37600000D01* +X40750000Y-36330000D01* +X41250000Y-36330000D01* +X42250000Y-36330000D01* +X42250000Y-36082172D01* +X42249999Y-36082155D01* +X42243598Y-36022627D01* +X42243597Y-36022624D01* +X42230808Y-35988335D01* +X42225822Y-35918644D01* +X42230808Y-35901665D01* +X42243597Y-35867375D01* +X42243598Y-35867372D01* +X42249999Y-35807844D01* +X42250000Y-35807827D01* +X42250000Y-35560000D01* +X41250000Y-35560000D01* +X41250000Y-36330000D01* +X40750000Y-36330000D01* +X40750000Y-35184000D01* +X40769685Y-35116961D01* +X40822489Y-35071206D01* +X40874000Y-35060000D01* +X42250000Y-35060000D01* +X42250000Y-34812172D01* +X42249999Y-34812155D01* +X42243597Y-34752622D01* +X42243597Y-34752620D01* +X42231075Y-34719048D01* +X42226089Y-34649356D01* +X42231071Y-34632390D01* +X42244091Y-34597483D01* +X42250500Y-34537873D01* +X42250499Y-33542128D01* +X42244091Y-33482517D01* +X42231340Y-33448332D01* +X42226357Y-33378642D01* +X42231338Y-33361672D01* +X42244091Y-33327483D01* +X42250500Y-33267873D01* +X42250499Y-32272128D01* +X42244091Y-32212517D01* +X42231073Y-32177616D01* +X42226090Y-32107926D01* +X42231075Y-32090949D01* +X42243597Y-32057375D01* +X42243598Y-32057372D01* +X42249999Y-31997844D01* +X57250000Y-31997844D01* +X57256401Y-32057372D01* +X57256404Y-32057383D01* +X57269191Y-32091668D01* +X57274175Y-32161360D01* +X57269191Y-32178332D01* +X57256404Y-32212616D01* +X57256401Y-32212627D01* +X57250000Y-32272155D01* +X57250000Y-32520000D01* +X58250000Y-32520000D01* +X58250000Y-31750000D01* +X57250000Y-31750000D01* +X57250000Y-31997844D01* +X42249999Y-31997844D01* +X42250000Y-31997827D01* +X42250000Y-31750000D01* +X39750000Y-31750000D01* +X39750000Y-31895500D01* +X39730315Y-31962539D01* +X39677511Y-32008294D01* +X39626000Y-32019500D01* +X36256080Y-32019500D01* +X36111093Y-32048340D01* +X36111085Y-32048342D01* +X36010367Y-32090061D01* +X35962915Y-32099500D01* +X35474998Y-32099500D01* +X35474980Y-32099501D01* +X35372203Y-32110000D01* +X35372200Y-32110001D01* +X35205668Y-32165185D01* +X35205663Y-32165187D01* +X35056342Y-32257289D01* +X34932289Y-32381342D01* +X34840187Y-32530663D01* +X34840186Y-32530666D01* +X34785001Y-32697203D01* +X34785001Y-32697204D01* +X34785000Y-32697204D01* +X34774500Y-32799983D01* +X34774500Y-33400001D01* +X34774501Y-33400019D01* +X34785000Y-33502796D01* +X34785001Y-33502799D01* +X34840185Y-33669331D01* +X34840187Y-33669336D01* +X34862728Y-33705880D01* +X34932288Y-33818656D01* +X35056344Y-33942712D01* +X35059628Y-33944737D01* +X35059653Y-33944753D01* +X35061445Y-33946746D01* +X35062011Y-33947193D01* +X35061934Y-33947289D01* +X35106379Y-33996699D01* +X35117603Y-34065661D01* +X35089761Y-34129744D01* +X35059665Y-34155826D01* +X35056660Y-34157679D01* +X35056655Y-34157683D01* +X34932684Y-34281654D01* +X34840643Y-34430875D01* +X34840641Y-34430880D01* +X34785494Y-34597302D01* +X34785493Y-34597309D01* +X34775000Y-34700013D01* +X34775000Y-34750000D01* +X38626000Y-34750000D01* +X38693039Y-34769685D01* +X38738794Y-34822489D01* +X38750000Y-34874000D01* +X38750000Y-35999999D01* +X38850500Y-35999999D01* +X38917539Y-36019684D01* +X38963294Y-36072488D01* +X38974500Y-36123999D01* +X38974500Y-36412769D01* +X38954815Y-36479808D01* +X38938181Y-36500450D01* +X38199850Y-37238780D01* +X38138527Y-37272265D01* +X38068835Y-37267281D01* +X38054757Y-37261008D01* +X38053409Y-37260304D01* +X38053407Y-37260302D01* +X37873049Y-37166091D01* +X37873048Y-37166090D01* +X37873045Y-37166089D01* +X37748646Y-37130495D01* +X37677418Y-37110114D01* +X37677415Y-37110113D01* +X37677413Y-37110113D01* +X37611102Y-37104217D01* +X37558037Y-37099500D01* +X37558032Y-37099500D01* +X36441971Y-37099500D01* +X36441965Y-37099500D01* +X36441964Y-37099501D01* +X36430316Y-37100536D01* +X36322584Y-37110113D01* +X36126954Y-37166089D01* +X36056472Y-37202906D01* +X35946593Y-37260302D01* +X35946591Y-37260303D01* +X35946590Y-37260304D01* +X35788890Y-37388890D01* +X35660304Y-37546590D01* +X35566089Y-37726954D01* +X35524760Y-37871396D01* +X35517193Y-37897844D01* +X35510114Y-37922583D01* +X35510113Y-37922586D01* +X35507020Y-37957379D01* +X35499809Y-38038495D01* +X35499500Y-38041966D01* +X35499500Y-38625500D01* +X35479815Y-38692539D01* +X35427011Y-38738294D01* +X35375500Y-38749500D01* +X32192942Y-38749500D01* +X32125903Y-38729815D01* +X32081854Y-38680594D01* +X32067030Y-38650704D01* +X31947724Y-38502280D01* +X31947722Y-38502278D01* +X31878112Y-38446324D01* +X31838196Y-38388985D01* +X31835616Y-38319163D01* +X31871194Y-38259030D01* +X31878115Y-38253033D01* +X31947366Y-38197367D01* +X31947367Y-38197366D01* +X32066607Y-38049025D01* +X32066609Y-38049022D01* +X32151168Y-37878523D01* +X32197102Y-37693824D01* +X32200000Y-37651096D01* +X32200000Y-37450000D01* +X29200000Y-37450000D01* +X29200000Y-37651096D01* +X29202897Y-37693824D01* +X29248831Y-37878523D01* +X29333390Y-38049022D01* +X29333392Y-38049025D01* +X29452630Y-38197364D01* +X29521884Y-38253031D01* +X29561803Y-38310375D01* +X29564383Y-38380197D01* +X29528805Y-38440329D01* +X29521885Y-38446326D01* +X29462353Y-38494180D01* +X29452276Y-38502280D01* +X29332969Y-38650704D01* +X29332967Y-38650707D01* +X29248360Y-38821302D01* +X29202400Y-39006107D01* +X29199500Y-39048879D01* +X29199500Y-39214477D01* +X29179815Y-39281516D01* +X29127011Y-39327271D01* +X29057853Y-39337215D01* +X28994297Y-39308190D01* +X28987819Y-39302158D01* +X28943345Y-39257684D01* +X28794124Y-39165643D01* +X28794119Y-39165641D01* +X28627697Y-39110494D01* +X28627690Y-39110493D01* +X28524986Y-39100000D01* +X28250000Y-39100000D01* +X28250000Y-40226000D01* +X28230315Y-40293039D01* +X28177511Y-40338794D01* +X28126000Y-40350000D01* +X27874000Y-40350000D01* +X27806961Y-40330315D01* +X27761206Y-40277511D01* +X27750000Y-40226000D01* +X27750000Y-39100000D01* +X27649500Y-39100000D01* +X27582461Y-39080315D01* +X27536706Y-39027511D01* +X27525500Y-38976000D01* +X27525500Y-36687229D01* +X27545185Y-36620190D01* +X27561815Y-36599552D01* +X28399549Y-35761817D01* +X28460872Y-35728333D01* +X28487230Y-35725499D01* +X28900002Y-35725499D01* +X28900008Y-35725499D01* +X29002797Y-35714999D01* +X29169334Y-35659814D01* +X29318656Y-35567712D01* +X29442712Y-35443656D01* +X29444752Y-35440347D01* +X29446745Y-35438555D01* +X29447193Y-35437989D01* +X29447289Y-35438065D01* +X29496694Y-35393623D01* +X29565656Y-35382395D01* +X29629740Y-35410234D01* +X29655829Y-35440339D01* +X29657681Y-35443341D01* +X29657683Y-35443344D01* +X29781654Y-35567315D01* +X29930875Y-35659356D01* +X29930880Y-35659358D01* +X30078559Y-35708294D01* +X30136004Y-35748066D01* +X30162827Y-35812582D01* +X30150512Y-35881358D01* +X30102969Y-35932558D01* +X30039555Y-35950000D01* +X29998903Y-35950000D01* +X29956175Y-35952897D01* +X29771476Y-35998831D01* +X29600977Y-36083390D01* +X29600974Y-36083392D01* +X29452633Y-36202632D01* +X29452632Y-36202633D01* +X29333392Y-36350974D01* +X29333390Y-36350977D01* +X29248831Y-36521476D01* +X29202897Y-36706175D01* +X29200000Y-36748903D01* +X29200000Y-36950000D01* +X32200000Y-36950000D01* +X32200000Y-36748903D01* +X32197102Y-36706175D01* +X32151168Y-36521476D01* +X32066609Y-36350977D01* +X32066607Y-36350974D01* +X31947367Y-36202633D01* +X31947366Y-36202632D01* +X31799025Y-36083392D01* +X31799022Y-36083390D01* +X31628523Y-35998831D01* +X31443824Y-35952897D01* +X31401097Y-35950000D01* +X30960447Y-35950000D01* +X30893408Y-35930315D01* +X30847653Y-35877511D01* +X30837709Y-35808353D01* +X30866734Y-35744797D01* +X30921443Y-35708294D01* +X31069119Y-35659358D01* +X31069124Y-35659356D01* +X31218345Y-35567315D01* +X31342315Y-35443345D01* +X31430740Y-35299986D01* +X34775001Y-35299986D01* +X34785494Y-35402697D01* +X34840641Y-35569119D01* +X34840643Y-35569124D01* +X34932684Y-35718345D01* +X35056654Y-35842315D01* +X35205875Y-35934356D01* +X35205880Y-35934358D01* +X35372302Y-35989505D01* +X35372309Y-35989506D01* +X35475019Y-35999999D01* +X35749999Y-35999999D01* +X36250000Y-35999999D01* +X36524972Y-35999999D01* +X36524986Y-35999998D01* +X36627697Y-35989505D01* +X36794119Y-35934358D01* +X36794124Y-35934356D01* +X36943345Y-35842315D01* +X37067315Y-35718345D01* +X37144461Y-35593273D01* +X37196409Y-35546549D01* +X37265372Y-35535326D01* +X37329454Y-35563170D01* +X37355539Y-35593273D01* +X37432684Y-35718345D01* +X37556654Y-35842315D01* +X37705875Y-35934356D01* +X37705880Y-35934358D01* +X37872302Y-35989505D01* +X37872309Y-35989506D01* +X37975019Y-35999999D01* +X38249999Y-35999999D01* +X38250000Y-35999998D01* +X38250000Y-35250000D01* +X36250000Y-35250000D01* +X36250000Y-35999999D01* +X35749999Y-35999999D01* +X35750000Y-35999998D01* +X35750000Y-35250000D01* +X34775001Y-35250000D01* +X34775001Y-35299986D01* +X31430740Y-35299986D01* +X31434356Y-35294124D01* +X31434358Y-35294119D01* +X31489505Y-35127697D01* +X31489506Y-35127690D01* +X31499999Y-35024986D01* +X31500000Y-35024973D01* +X31500000Y-34750000D01* +X30374000Y-34750000D01* +X30306961Y-34730315D01* +X30261206Y-34677511D01* +X30250000Y-34626000D01* +X30250000Y-34250000D01* +X30750000Y-34250000D01* +X31499999Y-34250000D01* +X31499999Y-33975028D01* +X31499998Y-33975013D01* +X31489505Y-33872302D01* +X31434358Y-33705880D01* +X31434356Y-33705875D01* +X31342315Y-33556654D01* +X31218345Y-33432684D01* +X31093273Y-33355539D01* +X31046549Y-33303591D01* +X31035326Y-33234628D01* +X31063170Y-33170546D01* +X31093273Y-33144461D01* +X31218345Y-33067315D01* +X31342315Y-32943345D01* +X31434356Y-32794124D01* +X31434358Y-32794119D01* +X31489505Y-32627697D01* +X31489506Y-32627690D01* +X31499999Y-32524986D01* +X31500000Y-32524973D01* +X31500000Y-32250000D01* +X30750000Y-32250000D01* +X30750000Y-34250000D01* +X30250000Y-34250000D01* +X30250000Y-31750000D01* +X30750000Y-31750000D01* +X31499999Y-31750000D01* +X31499999Y-31475028D01* +X31499998Y-31475013D01* +X31489505Y-31372302D01* +X31434358Y-31205880D01* +X31434356Y-31205875D01* +X31342315Y-31056654D01* +X31287816Y-31002155D01* +X39750000Y-31002155D01* +X39750000Y-31250000D01* +X42250000Y-31250000D01* +X42250000Y-31002172D01* +X42249999Y-31002155D01* +X42243598Y-30942627D01* +X42243596Y-30942620D01* +X42193354Y-30807913D01* +X42193350Y-30807906D01* +X42107190Y-30692812D01* +X42107187Y-30692809D01* +X41992093Y-30606649D01* +X41992088Y-30606646D01* +X41974756Y-30600182D01* +X41918823Y-30558310D01* +X41894406Y-30492846D01* +X41909258Y-30424573D01* +X41958663Y-30375168D01* +X42018090Y-30360000D01* +X57481910Y-30360000D01* +X57548949Y-30379685D01* +X57594704Y-30432489D01* +X57604648Y-30501647D01* +X57575623Y-30565203D01* +X57525244Y-30600182D01* +X57507911Y-30606646D01* +X57507906Y-30606649D01* +X57392812Y-30692809D01* +X57392809Y-30692812D01* +X57306649Y-30807906D01* +X57306645Y-30807913D01* +X57256403Y-30942620D01* +X57256401Y-30942627D01* +X57250000Y-31002155D01* +X57250000Y-31250000D01* +X59750000Y-31250000D01* +X59750000Y-31002172D01* +X59749999Y-31002155D01* +X59743598Y-30942627D01* +X59743596Y-30942620D01* +X59693354Y-30807913D01* +X59693350Y-30807906D01* +X59607190Y-30692812D01* +X59607187Y-30692809D01* +X59492093Y-30606649D01* +X59492086Y-30606645D01* +X59357379Y-30556403D01* +X59357372Y-30556401D01* +X59297844Y-30550000D01* +X58859362Y-30550000D01* +X58792323Y-30530315D01* +X58746568Y-30477511D01* +X58736624Y-30408353D01* +X58750000Y-30379063D01* +X58750000Y-24060000D01* +X40750000Y-24060000D01* +X40750000Y-30378024D01* +X40761804Y-30399642D01* +X40756820Y-30469334D01* +X40714948Y-30525267D01* +X40649484Y-30549684D01* +X40640638Y-30550000D01* +X40202155Y-30550000D01* +X40142627Y-30556401D01* +X40142620Y-30556403D01* +X40007913Y-30606645D01* +X40007906Y-30606649D01* +X39892812Y-30692809D01* +X39892809Y-30692812D01* +X39806649Y-30807906D01* +X39806645Y-30807913D01* +X39756403Y-30942620D01* +X39756401Y-30942627D01* +X39750000Y-31002155D01* +X31287816Y-31002155D01* +X31218345Y-30932684D01* +X31069124Y-30840643D01* +X31069119Y-30840641D01* +X30902697Y-30785494D01* +X30902690Y-30785493D01* +X30799986Y-30775000D01* +X30750000Y-30775000D01* +X30750000Y-31750000D01* +X30250000Y-31750000D01* +X30250000Y-30775000D01* +X30249999Y-30774999D01* +X30200029Y-30775000D01* +X30200011Y-30775001D01* +X30097302Y-30785494D01* +X29930880Y-30840641D01* +X29930875Y-30840643D01* +X29781654Y-30932684D01* +X29657683Y-31056655D01* +X29657679Y-31056660D01* +X29655826Y-31059665D01* +X29654018Y-31061290D01* +X29653202Y-31062323D01* +X29653025Y-31062183D01* +X29603874Y-31106385D01* +X29534911Y-31117601D01* +X29470831Y-31089752D01* +X29444753Y-31059653D01* +X29444737Y-31059628D01* +X29442712Y-31056344D01* +X29386819Y-31000451D01* +X29353334Y-30939128D01* +X29350500Y-30912770D01* +X29350500Y-29673131D01* +X29370185Y-29606092D01* +X29422989Y-29560337D01* +X29482894Y-29549416D01* +X29498877Y-29550500D01* +X30901122Y-29550499D01* +X30943889Y-29547600D01* +X31128693Y-29501641D01* +X31299296Y-29417030D01* +X31447722Y-29297722D01* +X31567030Y-29149296D01* +X31651641Y-28978693D01* +X31697600Y-28793889D01* +X31700500Y-28751123D01* +X31700499Y-27848878D01* +X31697600Y-27806111D01* +X31651641Y-27621307D01* +X31636343Y-27590461D01* +X31567032Y-27450707D01* +X31567030Y-27450704D01* +X31447722Y-27302278D01* +X31447721Y-27302277D01* +X31378514Y-27246647D01* +X31338595Y-27189304D01* +X31336015Y-27119482D01* +X31371594Y-27059349D01* +X31378514Y-27053353D01* +X31402497Y-27034075D01* +X31447722Y-26997722D01* +X31567030Y-26849296D01* +X31651641Y-26678693D01* +X31697600Y-26493889D01* +X31700500Y-26451123D01* +X31700499Y-25612228D01* +X31720183Y-25545190D01* +X31736813Y-25524553D01* +X31974548Y-25286819D01* +X32035871Y-25253334D01* +X32062229Y-25250500D01* +X34637770Y-25250500D01* +X34704809Y-25270185D01* +X34725451Y-25286819D01* +X34963181Y-25524548D01* +X34996666Y-25585871D01* +X34999500Y-25612229D01* +X34999500Y-27458028D01* +X34999501Y-27458034D01* +X35010113Y-27577415D01* +X35066089Y-27773045D01* +X35066090Y-27773048D01* +X35066091Y-27773049D01* +X35160302Y-27953407D01* +X35168665Y-27963663D01* +X35288890Y-28111109D01* +X35326507Y-28141781D01* +X35446593Y-28239698D01* +X35626951Y-28333909D01* +X35822582Y-28389886D01* +X35941963Y-28400500D01* +X37058036Y-28400499D01* +X37177418Y-28389886D01* +X37373049Y-28333909D01* +X37553407Y-28239698D01* +X37711109Y-28111109D01* +X37839698Y-27953407D01* +X37933909Y-27773049D01* +X37989886Y-27577418D01* +X38000500Y-27458037D01* +X38000499Y-24541964D01* +X37989886Y-24422582D01* +X37933909Y-24226951D01* +X37839698Y-24046593D01* +X37751800Y-23938794D01* +X37711109Y-23888890D01* +X37587383Y-23788006D01* +X37553407Y-23760302D01* +X37373049Y-23666091D01* +X37373048Y-23666090D01* +X37373043Y-23666088D01* +X37340387Y-23656744D01* +X37281349Y-23619376D01* +X37251887Y-23556022D01* +X37250500Y-23537529D01* +X37250500Y-21866668D01* +X37270185Y-21799629D01* +X37322989Y-21753874D01* +X37392147Y-21743930D01* +X37398684Y-21745050D01* +X37408160Y-21746934D01* +X37426079Y-21750500D01* +X37426082Y-21750500D01* +X37426083Y-21750500D01* +X37573918Y-21750500D01* +X64600500Y-21750500D01* +X64667539Y-21770185D01* +X64713294Y-21822989D01* +X64724500Y-21874500D01* +X64724500Y-26025500D01* +X64704815Y-26092539D01* +X64652011Y-26138294D01* +X64600505Y-26149500D01* +X64577132Y-26149500D01* +X64577123Y-26149501D01* +X64517516Y-26155908D01* +X64382671Y-26206202D01* +X64382664Y-26206206D01* +X64267455Y-26292452D01* +X64267452Y-26292455D01* +X64181206Y-26407664D01* +X64181202Y-26407671D01* +X64130908Y-26542517D01* +X64124501Y-26602116D01* +X64124500Y-26602135D01* +X64124500Y-28397870D01* +X64124501Y-28397876D01* +X64130908Y-28457483D01* +X64181202Y-28592328D01* +X64181206Y-28592335D01* +X64267452Y-28707544D01* +X64267455Y-28707547D01* +X64382664Y-28793793D01* +X64382671Y-28793797D01* +X64517517Y-28844091D01* +X64517516Y-28844091D01* +X64524444Y-28844835D01* +X64577127Y-28850500D01* +X65063770Y-28850499D01* +X65130808Y-28870183D01* +X65176563Y-28922987D01* +X65186507Y-28992146D01* +X65157482Y-29055702D01* +X65151450Y-29062180D01* +X64000451Y-30213181D01* +X63939128Y-30246666D01* +X63912770Y-30249500D01* +X62416080Y-30249500D01* +X62271092Y-30278340D01* +X62271082Y-30278343D01* +X62134511Y-30334912D01* +X62134498Y-30334919D01* +X62011584Y-30417048D01* +X62011580Y-30417051D01* +X59961681Y-32466950D01* +X59900358Y-32500435D01* +X59830666Y-32495451D01* +X59774733Y-32453579D01* +X59750316Y-32388115D01* +X59750000Y-32379269D01* +X59750000Y-32272172D01* +X59749999Y-32272155D01* +X59743598Y-32212627D01* +X59743597Y-32212624D01* +X59730808Y-32178335D01* +X59725822Y-32108644D01* +X59730808Y-32091665D01* +X59743597Y-32057375D01* +X59743598Y-32057372D01* +X59749999Y-31997844D01* +X59750000Y-31997827D01* +X59750000Y-31750000D01* +X58750000Y-31750000D01* +X58750000Y-32896000D01* +X58730315Y-32963039D01* +X58677511Y-33008794D01* +X58626000Y-33020000D01* +X57250000Y-33020000D01* +X57250000Y-33267844D01* +X57256401Y-33327372D01* +X57256403Y-33327379D01* +X57268925Y-33360952D01* +X57273909Y-33430643D01* +X57268925Y-33447617D01* +X57255909Y-33482514D01* +X57255908Y-33482516D01* +X57253728Y-33502799D01* +X57249501Y-33542123D01* +X57249500Y-33542135D01* +X57249500Y-34537870D01* +X57249501Y-34537876D01* +X57255908Y-34597481D01* +X57268659Y-34631669D01* +X57273642Y-34701361D01* +X57268659Y-34718331D01* +X57255908Y-34752518D01* +X57249501Y-34812116D01* +X57249500Y-34812135D01* +X57249500Y-35807870D01* +X57249501Y-35807876D01* +X57255908Y-35867481D01* +X57268659Y-35901669D01* +X57273642Y-35971361D01* +X57268659Y-35988331D01* +X57255908Y-36022518D01* +X57249501Y-36082116D01* +X57249500Y-36082135D01* +X57249500Y-37077870D01* +X57249501Y-37077876D01* +X57255908Y-37137481D01* +X57268659Y-37171669D01* +X57273642Y-37241361D01* +X57268659Y-37258331D01* +X57255908Y-37292518D01* +X57249501Y-37352116D01* +X57249500Y-37352135D01* +X57249500Y-38347870D01* +X57249501Y-38347876D01* +X57255908Y-38407481D01* +X57268659Y-38441669D01* +X57273642Y-38511361D01* +X57268659Y-38528331D01* +X57255908Y-38562518D01* +X57249501Y-38622116D01* +X57249500Y-38622135D01* +X57249500Y-39617870D01* +X57249501Y-39617876D01* +X57255908Y-39677481D01* +X57268659Y-39711669D01* +X57273642Y-39781361D01* +X57268659Y-39798331D01* +X57255908Y-39832518D01* +X57249501Y-39892116D01* +X57249500Y-39892135D01* +X57249500Y-40887870D01* +X57249501Y-40887876D01* +X57255908Y-40947481D01* +X57268659Y-40981669D01* +X57273642Y-41051361D01* +X57268659Y-41068331D01* +X57255908Y-41102518D01* +X57249501Y-41162116D01* +X57249500Y-41162135D01* +X57249500Y-42157870D01* +X57249501Y-42157876D01* +X57255908Y-42217481D01* +X57268659Y-42251669D01* +X57273642Y-42321361D01* +X57268659Y-42338331D01* +X57255908Y-42372518D01* +X57252653Y-42402797D01* +X57249501Y-42432123D01* +X57249500Y-42432135D01* +X57249500Y-43427870D01* +X57249501Y-43427876D01* +X57255908Y-43487481D01* +X57268659Y-43521669D01* +X57273642Y-43591361D01* +X57268659Y-43608331D01* +X57255908Y-43642518D01* +X57250620Y-43691706D01* +X57249501Y-43702123D01* +X57249500Y-43702135D01* +X57249500Y-44697870D01* +X57249501Y-44697876D01* +X57255908Y-44757481D01* +X57268659Y-44791669D01* +X57273642Y-44861361D01* +X57268659Y-44878331D01* +X57255908Y-44912518D01* +X57249501Y-44972116D01* +X57249501Y-44972123D01* +X57249500Y-44972135D01* +X57249500Y-45967870D01* +X57249501Y-45967876D01* +X57255908Y-46027481D01* +X57268659Y-46061669D01* +X57273642Y-46131361D01* +X57268659Y-46148331D01* +X57255908Y-46182518D01* +X57249501Y-46242116D01* +X57249501Y-46242123D01* +X57249500Y-46242135D01* +X57249500Y-47237870D01* +X57249501Y-47237876D01* +X57255908Y-47297483D01* +X57268925Y-47332381D01* +X57273909Y-47402072D01* +X57268925Y-47419047D01* +X57256403Y-47452619D01* +X57256401Y-47452627D01* +X57250000Y-47512155D01* +X57250000Y-47760000D01* +X58626000Y-47760000D01* +X58693039Y-47779685D01* +X58738794Y-47832489D01* +X58750000Y-47884000D01* +X58750000Y-48136000D01* +X58730315Y-48203039D01* +X58677511Y-48248794D01* +X58626000Y-48260000D01* +X57250000Y-48260000D01* +X57250000Y-48507844D01* +X57256401Y-48567372D01* +X57256403Y-48567379D01* +X57268925Y-48600952D01* +X57273909Y-48670643D01* +X57268925Y-48687617D01* +X57255909Y-48722514D01* +X57255908Y-48722516D01* +X57249501Y-48782116D01* +X57249500Y-48782135D01* +X57249500Y-49777870D01* +X57249501Y-49777876D01* +X57255908Y-49837483D01* +X57268925Y-49872381D01* +X57273909Y-49942072D01* +X57268925Y-49959047D01* +X57256403Y-49992619D01* +X57256401Y-49992627D01* +X57250000Y-50052155D01* +X57250000Y-50300000D01* +X59750000Y-50300000D01* +X59750000Y-50052172D01* +X59749999Y-50052164D01* +X59749664Y-50049046D01* +X59762063Y-49980285D01* +X59804058Y-49932680D01* +X59834729Y-49912186D01* +X59834729Y-49912185D01* +X59834731Y-49912185D01* +X59871038Y-49887926D01* +X59908416Y-49862952D01* +X64008350Y-45763016D01* +X64069671Y-45729533D01* +X64139363Y-45734517D01* +X64195296Y-45776389D01* +X64219713Y-45841853D01* +X64207364Y-45898635D01* +X64209303Y-45899359D01* +X64155908Y-46042517D01* +X64149501Y-46102116D01* +X64149500Y-46102135D01* +X64149500Y-47897870D01* +X64149501Y-47897876D01* +X64155908Y-47957483D01* +X64206202Y-48092328D01* +X64206206Y-48092335D01* +X64292452Y-48207544D01* +X64292455Y-48207547D01* +X64407664Y-48293793D01* +X64407671Y-48293797D01* +X64452618Y-48310561D01* +X64542517Y-48344091D01* +X64602127Y-48350500D01* +X64625497Y-48350499D01* +X64692536Y-48370181D01* +X64738292Y-48422983D01* +X64749500Y-48474499D01* +X64749500Y-49197769D01* +X64729815Y-49264808D01* +X64713181Y-49285450D01* +X59962180Y-54036451D01* +X59900857Y-54069936D01* +X59831165Y-54064952D01* +X59775232Y-54023080D01* +X59750815Y-53957616D01* +X59750499Y-53948770D01* +X59750499Y-53862129D01* +X59750498Y-53862123D01* +X59750497Y-53862116D01* +X59744091Y-53802517D01* +X59731340Y-53768332D01* +X59726357Y-53698642D01* +X59731340Y-53681669D01* +X59744091Y-53647483D01* +X59750500Y-53587873D01* +X59750499Y-52592128D01* +X59744091Y-52532517D01* +X59731340Y-52498332D01* +X59726357Y-52428642D01* +X59731340Y-52411669D01* +X59744091Y-52377483D01* +X59750500Y-52317873D01* +X59750499Y-51322128D01* +X59744091Y-51262517D01* +X59731073Y-51227616D01* +X59726090Y-51157926D01* +X59731075Y-51140949D01* +X59743597Y-51107375D01* +X59743598Y-51107372D01* +X59749999Y-51047844D01* +X59750000Y-51047827D01* +X59750000Y-50800000D01* +X57250000Y-50800000D01* +X57250000Y-51047844D01* +X57256401Y-51107372D01* +X57256403Y-51107379D01* +X57268925Y-51140952D01* +X57273909Y-51210643D01* +X57268925Y-51227617D01* +X57255909Y-51262514D01* +X57255908Y-51262516D01* +X57250620Y-51311706D01* +X57249501Y-51322123D01* +X57249500Y-51322135D01* +X57249500Y-52317870D01* +X57249501Y-52317876D01* +X57255908Y-52377481D01* +X57268659Y-52411669D01* +X57273642Y-52481361D01* +X57268659Y-52498331D01* +X57255908Y-52532518D01* +X57249501Y-52592116D01* +X57249501Y-52592123D01* +X57249500Y-52592135D01* +X57249500Y-53587870D01* +X57249501Y-53587876D01* +X57255908Y-53647481D01* +X57268659Y-53681669D01* +X57273642Y-53751361D01* +X57268659Y-53768331D01* +X57255908Y-53802518D01* +X57249501Y-53862116D01* +X57249501Y-53862123D01* +X57249500Y-53862135D01* +X57249500Y-54857870D01* +X57249501Y-54857876D01* +X57255908Y-54917483D01* +X57306202Y-55052328D01* +X57310454Y-55060114D01* +X57308978Y-55060919D01* +X57329766Y-55116655D01* +X57314914Y-55184928D01* +X57265508Y-55234333D01* +X57206082Y-55249500D01* +X42293918Y-55249500D01* +X42226879Y-55229815D01* +X42181124Y-55177011D01* +X42171180Y-55107853D01* +X42190694Y-55060741D01* +X42189546Y-55060114D01* +X42193793Y-55052334D01* +X42193796Y-55052331D01* +X42244091Y-54917483D01* +X42250500Y-54857873D01* +X42250499Y-53862128D01* +X42244091Y-53802517D01* +X42231340Y-53768332D01* +X42226357Y-53698642D01* +X42231340Y-53681669D01* +X42244091Y-53647483D01* +X42250500Y-53587873D01* +X42250499Y-52592128D01* +X42244091Y-52532517D01* +X42231340Y-52498332D01* +X42226357Y-52428642D01* +X42231340Y-52411669D01* +X42244091Y-52377483D01* +X42250500Y-52317873D01* +X42250499Y-51322128D01* +X42244091Y-51262517D01* +X42231340Y-51228332D01* +X42226357Y-51158642D01* +X42231338Y-51141672D01* +X42244091Y-51107483D01* +X42250500Y-51047873D01* +X42250499Y-50052128D01* +X42244091Y-49992517D01* +X42231073Y-49957616D01* +X42226090Y-49887926D01* +X42231075Y-49870949D01* +X42243597Y-49837375D01* +X42243598Y-49837372D01* +X42249999Y-49777844D01* +X42250000Y-49777827D01* +X42250000Y-49530000D01* +X40874000Y-49530000D01* +X40806961Y-49510315D01* +X40761206Y-49457511D01* +X40750000Y-49406000D01* +X40750000Y-49154000D01* +X40769685Y-49086961D01* +X40822489Y-49041206D01* +X40874000Y-49030000D01* +X42250000Y-49030000D01* +X42250000Y-48782172D01* +X42249999Y-48782155D01* +X42243597Y-48722622D01* +X42243597Y-48722620D01* +X42231075Y-48689048D01* +X42226089Y-48619356D01* +X42231071Y-48602390D01* +X42244091Y-48567483D01* +X42250500Y-48507873D01* +X42250499Y-47512128D01* +X42244091Y-47452517D01* +X42231340Y-47418332D01* +X42226357Y-47348642D01* +X42231338Y-47331672D01* +X42244091Y-47297483D01* +X42250500Y-47237873D01* +X42250499Y-46242128D01* +X42244091Y-46182517D01* +X42231073Y-46147616D01* +X42226090Y-46077926D01* +X42231075Y-46060949D01* +X42243597Y-46027375D01* +X42243598Y-46027372D01* +X42249999Y-45967844D01* +X42250000Y-45967827D01* +X42250000Y-45720000D01* +X40874000Y-45720000D01* +X40806961Y-45700315D01* +X40761206Y-45647511D01* +X40750000Y-45596000D01* +X40750000Y-45344000D01* +X40769685Y-45276961D01* +X40822489Y-45231206D01* +X40874000Y-45220000D01* +X42250000Y-45220000D01* +X42250000Y-44972172D01* +X42249999Y-44972155D01* +X42243597Y-44912622D01* +X42243597Y-44912620D01* +X42231075Y-44879048D01* +X42226089Y-44809356D01* +X42231071Y-44792390D01* +X42244091Y-44757483D01* +X42250500Y-44697873D01* +X42250499Y-43702128D01* +X42244091Y-43642517D01* +X42231340Y-43608332D01* +X42226357Y-43538642D01* +X42231340Y-43521669D01* +X42244091Y-43487483D01* +X42250500Y-43427873D01* +X42250499Y-42432128D01* +X42244091Y-42372517D01* +X42231073Y-42337616D01* +X42226090Y-42267926D01* +X42231075Y-42250949D01* +X42243597Y-42217375D01* +X42243598Y-42217372D01* +X42249999Y-42157844D01* +X42250000Y-42157827D01* +X42250000Y-41910000D01* +X39750000Y-41910000D01* +X39750000Y-42055500D01* +X39730315Y-42122539D01* +X39677511Y-42168294D01* +X39626000Y-42179500D01* +X38456080Y-42179500D01* +X38311092Y-42208340D01* +X38311082Y-42208343D01* +X38174511Y-42264912D01* +X38174498Y-42264919D01* +X38051584Y-42347048D01* +X38051580Y-42347051D01* +X30271500Y-50127130D01* +X30210177Y-50160615D01* +X30173012Y-50162977D01* +X29960002Y-50144341D01* +X29959999Y-50144341D01* +X29724596Y-50164936D01* +X29724586Y-50164938D01* +X29496344Y-50226094D01* +X29496335Y-50226098D01* +X29282171Y-50325964D01* +X29282169Y-50325965D01* +X29088600Y-50461503D01* +X28966673Y-50583430D01* +X28905350Y-50616914D01* +X28835658Y-50611930D01* +X28779725Y-50570058D01* +X28762810Y-50539081D01* +X28713797Y-50407671D01* +X28713793Y-50407664D01* +X28627547Y-50292455D01* +X28627544Y-50292452D01* +X28512335Y-50206206D01* +X28512328Y-50206202D01* +X28377482Y-50155908D01* +X28377483Y-50155908D01* +X28317883Y-50149501D01* +X28317881Y-50149500D01* +X28317873Y-50149500D01* +X28317864Y-50149500D01* +X26522129Y-50149500D01* +X26522123Y-50149501D01* +X26462516Y-50155908D01* +X26327671Y-50206202D01* +X26327664Y-50206206D01* +X26212455Y-50292452D01* +X26212452Y-50292455D01* +X26126206Y-50407664D01* +X26126202Y-50407671D01* +X26075908Y-50542517D01* +X26069501Y-50602116D01* +X26069500Y-50602135D01* +X26069500Y-52397870D01* +X26069501Y-52397876D01* +X26075908Y-52457483D01* +X26126202Y-52592328D01* +X26126206Y-52592335D01* +X26212452Y-52707544D01* +X26212455Y-52707547D01* +X26327664Y-52793793D01* +X26327671Y-52793797D01* +X26462517Y-52844091D01* +X26462516Y-52844091D01* +X26469444Y-52844835D01* +X26522127Y-52850500D01* +X28317872Y-52850499D01* +X28377483Y-52844091D01* +X28512331Y-52793796D01* +X28627546Y-52707546D01* +X28713796Y-52592331D01* +X28762810Y-52460916D01* +X28804681Y-52404984D01* +X28870145Y-52380566D01* +X28938418Y-52395417D01* +X28966673Y-52416569D01* +X29088599Y-52538495D01* +X29185384Y-52606265D01* +X29282165Y-52674032D01* +X29282167Y-52674033D01* +X29282170Y-52674035D01* +X29496337Y-52773903D01* +X29724592Y-52835063D01* +X29901034Y-52850500D01* +X29959999Y-52855659D01* +X29960000Y-52855659D01* +X29960001Y-52855659D01* +X30018966Y-52850500D01* +X30195408Y-52835063D01* +X30423663Y-52773903D01* +X30637830Y-52674035D01* +X30831401Y-52538495D01* +X30998495Y-52371401D01* +X31128425Y-52185842D01* +X31183002Y-52142217D01* +X31252500Y-52135023D01* +X31314855Y-52166546D01* +X31331575Y-52185842D01* +X31461278Y-52371078D01* +X31461505Y-52371401D01* +X31628599Y-52538495D01* +X31725384Y-52606265D01* +X31822165Y-52674032D01* +X31822167Y-52674033D01* +X31822170Y-52674035D01* +X32036337Y-52773903D01* +X32264592Y-52835063D01* +X32441034Y-52850500D01* +X32499999Y-52855659D01* +X32500000Y-52855659D01* +X32500001Y-52855659D01* +X32558966Y-52850500D01* +X32735408Y-52835063D01* +X32963663Y-52773903D01* +X33177830Y-52674035D01* +X33371401Y-52538495D01* +X33538495Y-52371401D01* +X33668730Y-52185405D01* +X33723307Y-52141781D01* +X33792805Y-52134587D01* +X33855160Y-52166110D01* +X33871879Y-52185405D01* +X34001890Y-52371078D01* +X34168917Y-52538105D01* +X34362421Y-52673600D01* +X34576507Y-52773429D01* +X34576516Y-52773433D01* +X34790000Y-52830634D01* +X34790000Y-51933012D01* +X34847007Y-51965925D01* +X34974174Y-52000000D01* +X35105826Y-52000000D01* +X35232993Y-51965925D01* +X35290000Y-51933012D01* +X35290000Y-52830633D01* +X35503483Y-52773433D01* +X35503492Y-52773429D01* +X35717578Y-52673600D01* +X35911082Y-52538105D01* +X36037819Y-52411369D01* +X36099142Y-52377884D01* +X36168834Y-52382868D01* +X36224767Y-52424740D01* +X36249184Y-52490204D01* +X36249500Y-52499050D01* +X36249500Y-57426082D01* +X36249500Y-57573918D01* +X36249500Y-57573920D01* +X36249499Y-57573920D01* +X36278340Y-57718907D01* +X36278343Y-57718917D01* +X36334912Y-57855488D01* +X36334919Y-57855501D01* +X36417048Y-57978415D01* +X36417051Y-57978419D01* +X36521580Y-58082948D01* +X36521584Y-58082951D01* +X36644498Y-58165080D01* +X36644511Y-58165087D01* +X36781082Y-58221656D01* +X36781087Y-58221658D01* +X36781091Y-58221658D01* +X36781092Y-58221659D01* +X36926079Y-58250500D01* +X36926082Y-58250500D01* +X60153920Y-58250500D01* +X60251462Y-58231096D01* +X60298913Y-58221658D01* +X60435495Y-58165084D01* +X60484729Y-58132186D01* +X60558416Y-58082952D01* +X70268498Y-48372867D01* +X70329819Y-48339384D01* +X70366983Y-48337022D01* +X70509861Y-48349522D01* +X70579999Y-48355659D01* +X70580000Y-48355659D01* +X70580001Y-48355659D01* +X70638966Y-48350500D01* +X70815408Y-48335063D01* +X71043663Y-48273903D01* +X71257830Y-48174035D01* +X71451401Y-48038495D01* +X71618495Y-47871401D01* +X71748730Y-47685405D01* +X71803307Y-47641781D01* +X71872805Y-47634587D01* +X71935160Y-47666110D01* +X71951879Y-47685405D01* +X72081890Y-47871078D01* +X72248917Y-48038105D01* +X72442421Y-48173600D01* +X72656507Y-48273429D01* +X72656516Y-48273433D01* +X72870000Y-48330634D01* +X72870000Y-47433012D01* +X72927007Y-47465925D01* +X73054174Y-47500000D01* +X73185826Y-47500000D01* +X73312993Y-47465925D01* +X73370000Y-47433012D01* +X73370000Y-48330633D01* +X73583483Y-48273433D01* +X73583492Y-48273429D01* +X73797578Y-48173600D01* +X73991082Y-48038105D01* +X74158105Y-47871082D01* +X74293600Y-47677578D01* +X74393429Y-47463492D01* +X74393432Y-47463486D01* +X74450636Y-47250000D01* +X73553012Y-47250000D01* +X73585925Y-47192993D01* +X73620000Y-47065826D01* +X73620000Y-46934174D01* +X73585925Y-46807007D01* +X73553012Y-46750000D01* +X74450636Y-46750000D01* +X74450635Y-46749999D01* +X74393432Y-46536513D01* +X74393429Y-46536507D01* +X74293600Y-46322422D01* +X74293599Y-46322420D01* +X74158113Y-46128926D01* +X74158108Y-46128920D01* +X73991082Y-45961894D01* +X73797578Y-45826399D01* +X73583492Y-45726570D01* +X73583486Y-45726567D01* +X73370000Y-45669364D01* +X73370000Y-46566988D01* +X73312993Y-46534075D01* +X73185826Y-46500000D01* +X73054174Y-46500000D01* +X72927007Y-46534075D01* +X72870000Y-46566988D01* +X72870000Y-45669364D01* +X72869999Y-45669364D01* +X72656513Y-45726567D01* +X72656507Y-45726570D01* +X72442422Y-45826399D01* +X72442420Y-45826400D01* +X72248926Y-45961886D01* +X72248920Y-45961891D01* +X72081891Y-46128920D01* +X72081890Y-46128922D01* +X71951880Y-46314595D01* +X71897303Y-46358219D01* +X71827804Y-46365412D01* +X71765450Y-46333890D01* +X71748730Y-46314594D01* +X71618494Y-46128597D01* +X71451402Y-45961506D01* +X71451395Y-45961501D01* +X71418426Y-45938416D01* +X71374518Y-45907671D01* +X71257834Y-45825967D01* +X71257830Y-45825965D01* +X71193375Y-45795909D01* +X71043663Y-45726097D01* +X71043659Y-45726096D01* +X71043655Y-45726094D01* +X70815413Y-45664938D01* +X70815403Y-45664936D01* +X70580001Y-45644341D01* +X70579999Y-45644341D01* +X70344596Y-45664936D01* +X70344586Y-45664938D01* +X70116344Y-45726094D01* +X70116335Y-45726098D01* +X69902171Y-45825964D01* +X69902169Y-45825965D01* +X69708597Y-45961505D01* +X69541505Y-46128597D01* +X69411575Y-46314158D01* +X69356998Y-46357783D01* +X69287500Y-46364977D01* +X69225145Y-46333454D01* +X69208425Y-46314158D01* +X69078494Y-46128597D01* +X68911402Y-45961506D01* +X68911395Y-45961501D01* +X68878426Y-45938416D01* +X68834518Y-45907671D01* +X68717834Y-45825967D01* +X68717830Y-45825965D01* +X68653375Y-45795909D01* +X68503663Y-45726097D01* +X68503659Y-45726096D01* +X68503655Y-45726094D01* +X68275413Y-45664938D01* +X68275403Y-45664936D01* +X68207980Y-45659037D01* +X68142912Y-45633584D01* +X68101934Y-45576992D01* +X68098057Y-45507230D01* +X68132511Y-45446446D01* +X68171337Y-45420948D01* +X68185495Y-45415084D01* +X68234729Y-45382186D01* +X68308416Y-45332952D01* +X70268498Y-43372867D01* +X70329819Y-43339384D01* +X70366983Y-43337022D01* +X70509861Y-43349522D01* +X70579999Y-43355659D01* +X70580000Y-43355659D01* +X70580001Y-43355659D01* +X70619234Y-43352226D01* +X70815408Y-43335063D01* +X71043663Y-43273903D01* +X71257830Y-43174035D01* +X71451401Y-43038495D01* +X71618495Y-42871401D01* +X71748730Y-42685405D01* +X71803307Y-42641781D01* +X71872805Y-42634587D01* +X71935160Y-42666110D01* +X71951879Y-42685405D01* +X72081890Y-42871078D01* +X72248917Y-43038105D01* +X72442421Y-43173600D01* +X72656507Y-43273429D01* +X72656516Y-43273433D01* +X72870000Y-43330634D01* +X72870000Y-42433012D01* +X72927007Y-42465925D01* +X73054174Y-42500000D01* +X73185826Y-42500000D01* +X73312993Y-42465925D01* +X73370000Y-42433012D01* +X73370000Y-43330633D01* +X73583483Y-43273433D01* +X73583492Y-43273429D01* +X73797578Y-43173600D01* +X73991082Y-43038105D01* +X74158105Y-42871082D01* +X74293600Y-42677578D01* +X74393429Y-42463492D01* +X74393432Y-42463486D01* +X74450636Y-42250000D01* +X73553012Y-42250000D01* +X73585925Y-42192993D01* +X73620000Y-42065826D01* +X73620000Y-41934174D01* +X73585925Y-41807007D01* +X73553012Y-41750000D01* +X74450636Y-41750000D01* +X74450635Y-41749999D01* +X74393432Y-41536513D01* +X74393429Y-41536507D01* +X74293600Y-41322422D01* +X74293599Y-41322420D01* +X74158113Y-41128926D01* +X74158108Y-41128920D01* +X73991082Y-40961894D01* +X73797578Y-40826399D01* +X73583492Y-40726570D01* +X73583486Y-40726567D01* +X73370000Y-40669364D01* +X73370000Y-41566988D01* +X73312993Y-41534075D01* +X73185826Y-41500000D01* +X73054174Y-41500000D01* +X72927007Y-41534075D01* +X72870000Y-41566988D01* +X72870000Y-40669364D01* +X72869999Y-40669364D01* +X72656513Y-40726567D01* +X72656507Y-40726570D01* +X72442422Y-40826399D01* +X72442420Y-40826400D01* +X72248926Y-40961886D01* +X72248920Y-40961891D01* +X72081891Y-41128920D01* +X72081890Y-41128922D01* +X71951880Y-41314595D01* +X71897303Y-41358219D01* +X71827804Y-41365412D01* +X71765450Y-41333890D01* +X71748730Y-41314594D01* +X71618494Y-41128597D01* +X71451402Y-40961506D01* +X71451395Y-40961501D01* +X71435975Y-40950704D01* +X71346248Y-40887876D01* +X71257834Y-40825967D01* +X71257830Y-40825965D01* +X71087732Y-40746647D01* +X71043663Y-40726097D01* +X71043659Y-40726096D01* +X71043655Y-40726094D01* +X70815413Y-40664938D01* +X70815403Y-40664936D01* +X70580001Y-40644341D01* +X70579999Y-40644341D01* +X70344596Y-40664936D01* +X70344586Y-40664938D01* +X70116344Y-40726094D01* +X70116335Y-40726098D01* +X69902171Y-40825964D01* +X69902169Y-40825965D01* +X69708597Y-40961505D01* +X69541505Y-41128597D01* +X69411575Y-41314158D01* +X69356998Y-41357783D01* +X69287500Y-41364977D01* +X69225145Y-41333454D01* +X69208425Y-41314158D01* +X69078494Y-41128597D01* +X68911402Y-40961506D01* +X68911395Y-40961501D01* +X68895975Y-40950704D01* +X68806248Y-40887876D01* +X68717834Y-40825967D01* +X68717830Y-40825965D01* +X68547732Y-40746647D01* +X68503663Y-40726097D01* +X68503659Y-40726096D01* +X68503655Y-40726094D01* +X68275413Y-40664938D01* +X68275403Y-40664936D01* +X68135398Y-40652687D01* +X68118258Y-40651187D01* +X68053191Y-40625735D01* +X68012212Y-40569144D01* +X68008334Y-40499382D01* +X68041384Y-40439981D01* +X70108498Y-38372867D01* +X70169819Y-38339384D01* +X70206983Y-38337022D01* +X70330996Y-38347872D01* +X70419999Y-38355659D01* +X70420000Y-38355659D01* +X70420001Y-38355659D01* +X70484681Y-38350000D01* +X70655408Y-38335063D01* +X70883663Y-38273903D01* +X71097830Y-38174035D01* +X71291401Y-38038495D01* +X71458495Y-37871401D01* +X71588425Y-37685842D01* +X71643002Y-37642217D01* +X71712500Y-37635023D01* +X71774855Y-37666546D01* +X71791575Y-37685842D01* +X71921505Y-37871401D01* +X72088599Y-38038495D01* +X72165135Y-38092086D01* +X72282165Y-38174032D01* +X72282167Y-38174033D01* +X72282170Y-38174035D01* +X72496337Y-38273903D01* +X72724592Y-38335063D01* +X72895319Y-38350000D01* +X72959999Y-38355659D01* +X72960000Y-38355659D01* +X72960001Y-38355659D01* +X73024681Y-38350000D01* +X73195408Y-38335063D01* +X73423663Y-38273903D01* +X73637830Y-38174035D01* +X73831401Y-38038495D01* +X73953717Y-37916178D01* +X74015036Y-37882696D01* +X74084728Y-37887680D01* +X74140662Y-37929551D01* +X74157577Y-37960528D01* +X74206646Y-38092088D01* +X74206649Y-38092093D01* +X74292809Y-38207187D01* +X74292812Y-38207190D01* +X74407906Y-38293350D01* +X74407913Y-38293354D01* +X74542620Y-38343596D01* +X74542627Y-38343598D01* +X74602155Y-38349999D01* +X74602172Y-38350000D01* +X75250000Y-38350000D01* +X75250000Y-37433012D01* +X75307007Y-37465925D01* +X75434174Y-37500000D01* +X75565826Y-37500000D01* +X75692993Y-37465925D01* +X75750000Y-37433012D01* +X75750000Y-38350000D01* +X76397828Y-38350000D01* +X76397844Y-38349999D01* +X76457372Y-38343598D01* +X76457379Y-38343596D01* +X76592086Y-38293354D01* +X76592093Y-38293350D01* +X76707187Y-38207190D01* +X76707190Y-38207187D01* +X76793350Y-38092093D01* +X76793354Y-38092086D01* +X76843596Y-37957379D01* +X76843598Y-37957372D01* +X76849999Y-37897844D01* +X76850000Y-37897827D01* +X76850000Y-37250000D01* +X75933012Y-37250000D01* +X75965925Y-37192993D01* +X76000000Y-37065826D01* +X76000000Y-36934174D01* +X75965925Y-36807007D01* +X75933012Y-36750000D01* +X76850000Y-36750000D01* +X76850000Y-36102172D01* +X76849999Y-36102155D01* +X76843598Y-36042627D01* +X76843596Y-36042620D01* +X76793354Y-35907913D01* +X76793350Y-35907906D01* +X76707190Y-35792812D01* +X76707187Y-35792809D01* +X76592093Y-35706649D01* +X76592086Y-35706645D01* +X76457379Y-35656403D01* +X76457372Y-35656401D01* +X76397844Y-35650000D01* +X75750000Y-35650000D01* +X75750000Y-36566988D01* +X75692993Y-36534075D01* +X75565826Y-36500000D01* +X75434174Y-36500000D01* +X75307007Y-36534075D01* +X75250000Y-36566988D01* +X75250000Y-35650000D01* +X74602155Y-35650000D01* +X74542627Y-35656401D01* +X74542620Y-35656403D01* +X74407913Y-35706645D01* +X74407906Y-35706649D01* +X74292812Y-35792809D01* +X74292809Y-35792812D01* +X74206649Y-35907906D01* +X74206645Y-35907913D01* +X74157578Y-36039470D01* +X74115707Y-36095404D01* +X74050242Y-36119821D01* +X73981969Y-36104969D01* +X73953715Y-36083819D01* +X73909366Y-36039470D01* +X73831401Y-35961505D01* +X73831397Y-35961502D01* +X73831396Y-35961501D01* +X73637834Y-35825967D01* +X73637830Y-35825965D01* +X73599038Y-35807876D01* +X73423663Y-35726097D01* +X73423659Y-35726096D01* +X73423655Y-35726094D01* +X73195413Y-35664938D01* +X73195403Y-35664936D01* +X72960001Y-35644341D01* +X72959999Y-35644341D01* +X72724596Y-35664936D01* +X72724586Y-35664938D01* +X72496344Y-35726094D01* +X72496335Y-35726098D01* +X72282171Y-35825964D01* +X72282169Y-35825965D01* +X72088597Y-35961505D01* +X71921505Y-36128597D01* +X71791575Y-36314158D01* +X71736998Y-36357783D01* +X71667500Y-36364977D01* +X71605145Y-36333454D01* +X71588425Y-36314158D01* +X71458494Y-36128597D01* +X71291402Y-35961506D01* +X71291395Y-35961501D01* +X71279107Y-35952897D01* +X71214854Y-35907906D01* +X71097834Y-35825967D01* +X71097830Y-35825965D01* +X71059038Y-35807876D01* +X70883663Y-35726097D01* +X70883659Y-35726096D01* +X70883655Y-35726094D01* +X70655413Y-35664938D01* +X70655403Y-35664936D01* +X70420001Y-35644341D01* +X70419999Y-35644341D01* +X70184596Y-35664936D01* +X70184586Y-35664938D01* +X69956344Y-35726094D01* +X69956335Y-35726098D01* +X69742171Y-35825964D01* +X69742169Y-35825965D01* +X69548597Y-35961505D01* +X69381505Y-36128597D01* +X69251575Y-36314158D01* +X69196998Y-36357783D01* +X69127500Y-36364977D01* +X69065145Y-36333454D01* +X69048425Y-36314158D01* +X68918494Y-36128597D01* +X68751402Y-35961506D01* +X68751395Y-35961501D01* +X68739107Y-35952897D01* +X68674854Y-35907906D01* +X68557834Y-35825967D01* +X68557830Y-35825965D01* +X68519038Y-35807876D01* +X68343663Y-35726097D01* +X68343659Y-35726096D01* +X68343655Y-35726094D01* +X68115413Y-35664938D01* +X68115403Y-35664936D01* +X67880001Y-35644341D01* +X67879999Y-35644341D01* +X67644596Y-35664936D01* +X67644586Y-35664938D01* +X67416344Y-35726094D01* +X67416335Y-35726098D01* +X67202171Y-35825964D01* +X67202169Y-35825965D01* +X67008597Y-35961505D01* +X66841505Y-36128597D01* +X66711575Y-36314158D01* +X66656998Y-36357783D01* +X66587500Y-36364977D01* +X66525145Y-36333454D01* +X66508425Y-36314158D01* +X66378494Y-36128597D01* +X66211402Y-35961506D01* +X66211395Y-35961501D01* +X66199107Y-35952897D01* +X66134854Y-35907906D01* +X66017834Y-35825967D01* +X66017830Y-35825965D01* +X65979038Y-35807876D01* +X65803663Y-35726097D01* +X65803659Y-35726096D01* +X65803655Y-35726094D01* +X65575413Y-35664938D01* +X65575403Y-35664936D01* +X65340001Y-35644341D01* +X65339999Y-35644341D01* +X65104596Y-35664936D01* +X65104586Y-35664938D01* +X64876344Y-35726094D01* +X64876335Y-35726098D01* +X64662171Y-35825964D01* +X64662169Y-35825965D01* +X64468597Y-35961505D01* +X64301505Y-36128597D01* +X64165965Y-36322169D01* +X64165964Y-36322171D01* +X64066098Y-36536335D01* +X64066094Y-36536344D01* +X64004938Y-36764586D01* +X64004936Y-36764596D01* +X63985539Y-36986308D01* +X63960086Y-37051376D01* +X63903495Y-37092355D01* +X63862011Y-37099500D01* +X60761230Y-37099500D01* +X60694191Y-37079815D01* +X60648436Y-37027011D01* +X60638492Y-36957853D01* +X60667517Y-36894297D01* +X60673549Y-36887819D01* +X62774549Y-34786819D01* +X62835872Y-34753334D01* +X62862230Y-34750500D01* +X66088920Y-34750500D01* +X66190392Y-34730315D01* +X66233913Y-34721658D01* +X66370495Y-34665084D01* +X66441457Y-34617669D01* +X66493416Y-34582952D01* +X67703498Y-33372867D01* +X67764819Y-33339384D01* +X67801983Y-33337022D01* +X67923676Y-33347669D01* +X68014999Y-33355659D01* +X68015000Y-33355659D01* +X68015001Y-33355659D01* +X68054234Y-33352226D01* +X68250408Y-33335063D01* +X68478663Y-33273903D01* +X68692830Y-33174035D01* +X68886401Y-33038495D01* +X69053495Y-32871401D01* +X69183730Y-32685405D01* +X69238307Y-32641781D01* +X69307805Y-32634587D01* +X69370160Y-32666110D01* +X69386879Y-32685405D01* +X69516890Y-32871078D01* +X69683917Y-33038105D01* +X69877421Y-33173600D01* +X70091507Y-33273429D01* +X70091516Y-33273433D01* +X70305000Y-33330634D01* +X70305000Y-32433012D01* +X70362007Y-32465925D01* +X70489174Y-32500000D01* +X70620826Y-32500000D01* +X70747993Y-32465925D01* +X70805000Y-32433012D01* +X70805000Y-33330633D01* +X71018483Y-33273433D01* +X71018492Y-33273429D01* +X71232578Y-33173600D01* +X71426082Y-33038105D01* +X71593105Y-32871082D01* +X71728600Y-32677578D01* +X71828429Y-32463492D01* +X71828432Y-32463486D01* +X71885636Y-32250000D01* +X70988012Y-32250000D01* +X71020925Y-32192993D01* +X71055000Y-32065826D01* +X71055000Y-31934174D01* +X71020925Y-31807007D01* +X70988012Y-31750000D01* +X71885636Y-31750000D01* +X71885635Y-31749999D01* +X71828432Y-31536513D01* +X71828429Y-31536507D01* +X71728600Y-31322422D01* +X71728599Y-31322420D01* +X71593113Y-31128926D01* +X71593108Y-31128920D01* +X71426082Y-30961894D01* +X71232578Y-30826399D01* +X71018492Y-30726570D01* +X71018486Y-30726567D01* +X70805000Y-30669364D01* +X70805000Y-31566988D01* +X70747993Y-31534075D01* +X70620826Y-31500000D01* +X70489174Y-31500000D01* +X70362007Y-31534075D01* +X70305000Y-31566988D01* +X70305000Y-30669364D01* +X70304999Y-30669364D01* +X70091513Y-30726567D01* +X70091507Y-30726570D01* +X69877422Y-30826399D01* +X69877420Y-30826400D01* +X69683926Y-30961886D01* +X69683920Y-30961891D01* +X69516891Y-31128920D01* +X69516890Y-31128922D01* +X69386880Y-31314595D01* +X69332303Y-31358219D01* +X69262804Y-31365412D01* +X69200450Y-31333890D01* +X69183730Y-31314594D01* +X69053494Y-31128597D01* +X68886402Y-30961506D01* +X68886395Y-30961501D01* +X68692834Y-30825967D01* +X68692830Y-30825965D01* +X68654102Y-30807906D01* +X68478663Y-30726097D01* +X68478659Y-30726096D01* +X68478655Y-30726094D01* +X68250413Y-30664938D01* +X68250403Y-30664936D01* +X68015001Y-30644341D01* +X68014999Y-30644341D01* +X67779596Y-30664936D01* +X67779586Y-30664938D01* +X67551344Y-30726094D01* +X67551335Y-30726098D01* +X67337171Y-30825964D01* +X67337169Y-30825965D01* +X67143600Y-30961503D01* +X67021673Y-31083430D01* +X66960350Y-31116914D01* +X66890658Y-31111930D01* +X66834725Y-31070058D01* +X66817810Y-31039081D01* +X66768797Y-30907671D01* +X66768793Y-30907664D01* +X66682547Y-30792455D01* +X66682544Y-30792452D01* +X66567335Y-30706206D01* +X66567328Y-30706202D01* +X66432482Y-30655908D01* +X66432483Y-30655908D01* +X66372883Y-30649501D01* +X66372881Y-30649500D01* +X66372873Y-30649500D01* +X66372865Y-30649500D01* +X65986229Y-30649500D01* +X65919190Y-30629815D01* +X65873435Y-30577011D01* +X65863491Y-30507853D01* +X65892516Y-30444297D01* +X65898548Y-30437819D01* +X67038645Y-29297721D01* +X67509491Y-28826874D01* +X67570812Y-28793391D01* +X67629259Y-28794781D01* +X67779592Y-28835063D01* +X67956034Y-28850500D01* +X68014999Y-28855659D01* +X68015000Y-28855659D01* +X68015001Y-28855659D01* +X68073966Y-28850500D01* +X68250408Y-28835063D01* +X68478663Y-28773903D01* +X68692830Y-28674035D01* +X68886401Y-28538495D01* +X69053495Y-28371401D01* +X69183730Y-28185405D01* +X69238307Y-28141781D01* +X69307805Y-28134587D01* +X69370160Y-28166110D01* +X69386879Y-28185405D01* +X69516890Y-28371078D01* +X69683917Y-28538105D01* +X69877421Y-28673600D01* +X70091507Y-28773429D01* +X70091516Y-28773433D01* +X70305000Y-28830634D01* +X70305000Y-27933012D01* +X70362007Y-27965925D01* +X70489174Y-28000000D01* +X70620826Y-28000000D01* +X70747993Y-27965925D01* +X70805000Y-27933012D01* +X70805000Y-28830633D01* +X71018483Y-28773433D01* +X71018492Y-28773429D01* +X71232578Y-28673600D01* +X71426082Y-28538105D01* +X71593105Y-28371082D01* +X71728600Y-28177578D01* +X71828429Y-27963492D01* +X71828432Y-27963486D01* +X71885636Y-27750000D01* +X70988012Y-27750000D01* +X71020925Y-27692993D01* +X71055000Y-27565826D01* +X71055000Y-27434174D01* +X71020925Y-27307007D01* +X70988012Y-27250000D01* +X71885636Y-27250000D01* +X71885635Y-27249999D01* +X71828432Y-27036513D01* +X71828429Y-27036507D01* +X71728600Y-26822422D01* +X71728599Y-26822420D01* +X71593113Y-26628926D01* +X71593108Y-26628920D01* +X71426082Y-26461894D01* +X71232578Y-26326399D01* +X71018492Y-26226570D01* +X71018486Y-26226567D01* +X70805000Y-26169364D01* +X70805000Y-27066988D01* +X70747993Y-27034075D01* +X70620826Y-27000000D01* +X70489174Y-27000000D01* +X70362007Y-27034075D01* +X70305000Y-27066988D01* +X70305000Y-26169364D01* +X70304999Y-26169364D01* +X70091513Y-26226567D01* +X70091507Y-26226570D01* +X69877422Y-26326399D01* +X69877420Y-26326400D01* +X69683926Y-26461886D01* +X69683920Y-26461891D01* +X69516891Y-26628920D01* +X69516890Y-26628922D01* +X69386880Y-26814595D01* +X69332303Y-26858219D01* +X69262804Y-26865412D01* +X69200450Y-26833890D01* +X69183730Y-26814594D01* +X69053494Y-26628597D01* +X68886402Y-26461506D01* +X68886395Y-26461501D01* +X68871572Y-26451122D01* +X68809518Y-26407671D01* +X68692834Y-26325967D01* +X68692830Y-26325965D01* +X68692828Y-26325964D01* +X68478663Y-26226097D01* +X68478659Y-26226096D01* +X68478655Y-26226094D01* +X68250413Y-26164938D01* +X68250403Y-26164936D01* +X68015001Y-26144341D01* +X68014999Y-26144341D01* +X67779596Y-26164936D01* +X67779586Y-26164938D01* +X67551344Y-26226094D01* +X67551335Y-26226098D01* +X67337171Y-26325964D01* +X67337169Y-26325965D01* +X67143600Y-26461503D01* +X67021673Y-26583430D01* +X66960350Y-26616914D01* +X66890658Y-26611930D01* +X66834725Y-26570058D01* +X66817810Y-26539081D01* +X66768797Y-26407671D01* +X66768793Y-26407664D01* +X66682547Y-26292455D01* +X66682544Y-26292452D01* +X66567335Y-26206206D01* +X66567328Y-26206202D01* +X66432482Y-26155908D01* +X66432483Y-26155908D01* +X66372883Y-26149501D01* +X66372881Y-26149500D01* +X66372873Y-26149500D01* +X66372865Y-26149500D01* +X66349500Y-26149500D01* +X66282461Y-26129815D01* +X66236706Y-26077011D01* +X66225500Y-26025500D01* +X66225500Y-21211810D01* +X66227883Y-21187618D01* +X66250500Y-21073920D01* +X66250500Y-20926080D01* +X66221658Y-20781089D01* +X66221657Y-20781085D01* +X66206506Y-20744506D01* +X66165087Y-20644511D01* +X66165080Y-20644498D01* +X66082951Y-20521584D01* +X66082948Y-20521580D01* +X65978419Y-20417051D01* +X65978415Y-20417048D01* +X65855501Y-20334919D01* +X65855488Y-20334912D01* +X65718917Y-20278343D01* +X65718907Y-20278340D01* +X65573920Y-20249500D01* +X65573918Y-20249500D01* +X38124499Y-20249500D01* +X38057460Y-20229815D01* +X38011705Y-20177011D01* +X38000499Y-20125500D01* +X38000499Y-19974998D01* +X38000498Y-19974981D01* +X37989999Y-19872203D01* +X37989998Y-19872200D01* +X37934814Y-19705666D01* +X37842712Y-19556344D01* +X37718656Y-19432288D01* +X37569334Y-19340186D01* +X37402797Y-19285001D01* +X37402795Y-19285000D01* +X37300010Y-19274500D01* +X36699998Y-19274500D01* +X36699980Y-19274501D01* +X36597203Y-19285000D01* +X36597200Y-19285001D01* +X36430668Y-19340185D01* +X36430663Y-19340187D01* +X36281342Y-19432289D01* +X36157288Y-19556343D01* +X36157283Y-19556349D01* +X36155241Y-19559661D01* +X36153247Y-19561453D01* +X36152807Y-19562011D01* +X36152711Y-19561935D01* +X36103291Y-19606383D01* +X36034328Y-19617602D01* +X35970247Y-19589755D01* +X35944168Y-19559656D01* +X35942319Y-19556659D01* +X35942316Y-19556655D01* +X35818345Y-19432684D01* +X35669124Y-19340643D01* +X35669119Y-19340641D01* +X35502697Y-19285494D01* +X35502690Y-19285493D01* +X35399986Y-19275000D01* +X35350000Y-19275000D01* +X35350000Y-21724999D01* +X35399972Y-21724999D01* +X35399986Y-21724998D01* +X35502695Y-21714506D01* +X35586495Y-21686737D01* +X35656324Y-21684335D01* +X35716366Y-21720066D01* +X35747559Y-21782587D01* +X35749500Y-21804443D01* +X35749500Y-23537529D01* +X35729815Y-23604568D01* +X35677011Y-23650323D01* +X35659613Y-23656744D01* +X35626956Y-23666088D01* +X35446591Y-23760303D01* +X35412615Y-23788006D01* +X35348218Y-23815114D01* +X35286805Y-23806463D01* +X35218917Y-23778343D01* +X35218907Y-23778340D01* +X35073920Y-23749500D01* +X35073918Y-23749500D01* +X32574500Y-23749500D01* +X32507461Y-23729815D01* +X32461706Y-23677011D01* +X32450500Y-23625500D01* +X32450500Y-21836433D01* +X32470185Y-21769394D01* +X32522989Y-21723639D01* +X32590558Y-21713923D01* +X32590569Y-21713818D01* +X32590991Y-21713861D01* +X32592147Y-21713695D01* +X32595849Y-21714357D01* +X32700019Y-21724999D01* +X32749999Y-21724998D01* +X32750000Y-21724998D01* +X32750000Y-19275000D01* +X33250000Y-19275000D01* +X33250000Y-21724999D01* +X33299972Y-21724999D01* +X33299986Y-21724998D01* +X33402697Y-21714505D01* +X33569119Y-21659358D01* +X33569124Y-21659356D01* +X33718345Y-21567315D01* +X33842315Y-21443345D01* +X33934356Y-21294124D01* +X33937408Y-21287579D01* +X33940255Y-21288906D01* +X33971914Y-21243027D01* +X34036387Y-21216102D01* +X34105182Y-21228309D01* +X34156457Y-21275771D01* +X34161997Y-21287856D01* +X34162592Y-21287579D01* +X34165643Y-21294124D01* +X34257684Y-21443345D01* +X34381654Y-21567315D01* +X34530875Y-21659356D01* +X34530880Y-21659358D01* +X34697302Y-21714505D01* +X34697309Y-21714506D01* +X34800019Y-21724999D01* +X34849999Y-21724998D01* +X34850000Y-21724998D01* +X34850000Y-19275000D01* +X34849999Y-19274999D01* +X34800029Y-19275000D01* +X34800011Y-19275001D01* +X34697302Y-19285494D01* +X34530880Y-19340641D01* +X34530875Y-19340643D01* +X34381654Y-19432684D01* +X34257684Y-19556654D01* +X34165643Y-19705875D01* +X34162592Y-19712421D01* +X34159780Y-19711109D01* +X34127901Y-19757121D01* +X34063376Y-19783922D01* +X33994605Y-19771585D01* +X33943421Y-19724024D01* +X33937996Y-19712146D01* +X33937408Y-19712421D01* +X33934356Y-19705875D01* +X33842315Y-19556654D01* +X33718345Y-19432684D01* +X33569124Y-19340643D01* +X33569119Y-19340641D01* +X33402697Y-19285494D01* +X33402690Y-19285493D01* +X33299986Y-19275000D01* +X33250000Y-19275000D01* +X32750000Y-19275000D01* +X32749999Y-19274999D01* +X32700029Y-19275000D01* +X32700011Y-19275001D01* +X32597302Y-19285494D01* +X32430880Y-19340641D01* +X32430875Y-19340643D01* +X32281654Y-19432684D01* +X32157683Y-19556655D01* +X32157679Y-19556660D01* +X32155826Y-19559665D01* +X32154018Y-19561290D01* +X32153202Y-19562323D01* +X32153025Y-19562183D01* +X32103874Y-19606385D01* +X32034911Y-19617601D01* +X31970831Y-19589752D01* +X31944753Y-19559653D01* +X31944737Y-19559628D01* +X31942712Y-19556344D01* +X31818656Y-19432288D01* +X31669334Y-19340186D01* +X31502797Y-19285001D01* +X31502795Y-19285000D01* +X31400010Y-19274500D01* +X30799998Y-19274500D01* +X30799980Y-19274501D01* +X30697203Y-19285000D01* +X30697200Y-19285001D01* +X30530668Y-19340185D01* +X30530663Y-19340187D01* +X30381342Y-19432289D01* +X30257289Y-19556342D01* +X30165187Y-19705663D01* +X30165185Y-19705668D01* +X30139254Y-19783922D01* +X30110001Y-19872203D01* +X30110001Y-19872204D01* +X30110000Y-19872204D01* +X30099500Y-19974983D01* +X30099500Y-21025001D01* +X30099501Y-21025019D01* +X30110000Y-21127796D01* +X30110001Y-21127799D01* +X30159035Y-21275771D01* +X30165186Y-21294334D01* +X30257288Y-21443656D01* +X30381344Y-21567712D01* +X30530666Y-21659814D01* +X30697203Y-21714999D01* +X30799991Y-21725500D01* +X30825498Y-21725499D01* +X30892536Y-21745181D01* +X30938293Y-21797984D01* +X30949500Y-21849499D01* +X30949500Y-22326000D01* +X30929815Y-22393039D01* +X30877011Y-22438794D01* +X30825500Y-22450000D01* +X30450000Y-22450000D01* +X30450000Y-23826000D01* +X30430315Y-23893039D01* +X30377511Y-23938794D01* +X30326000Y-23950000D01* +X28700000Y-23950000D01* +X28700000Y-24151096D01* +X28702897Y-24193824D01* +X28748831Y-24378523D01* +X28833390Y-24549022D01* +X28833392Y-24549025D01* +X28952630Y-24697364D01* +X29021884Y-24753031D01* +X29061803Y-24810375D01* +X29064383Y-24880197D01* +X29028805Y-24940329D01* +X29021885Y-24946326D01* +X28952276Y-25002280D01* +X28832969Y-25150704D01* +X28832967Y-25150707D01* +X28748360Y-25321302D01* +X28702400Y-25506107D01* +X28699500Y-25548879D01* +X28699500Y-26451122D01* +X28699501Y-26451125D01* +X28702399Y-26493886D01* +X28702399Y-26493887D01* +X28748360Y-26678696D01* +X28832967Y-26849292D01* +X28832969Y-26849295D01* +X28952277Y-26997721D01* +X28952278Y-26997722D01* +X29021486Y-27053353D01* +X29061405Y-27110696D01* +X29063985Y-27180518D01* +X29028406Y-27240651D01* +X29021486Y-27246647D01* +X28952278Y-27302277D01* +X28952277Y-27302278D01* +X28832969Y-27450704D01* +X28832967Y-27450708D01* +X28806453Y-27504167D01* +X28759031Y-27555479D01* +X28719558Y-27570688D01* +X28711580Y-27572275D01* +X28641989Y-27566048D01* +X28599707Y-27538339D01* +X28261818Y-27200450D01* +X28228333Y-27139127D01* +X28225499Y-27112769D01* +X28225499Y-26699998D01* +X28225498Y-26699981D01* +X28214999Y-26597203D01* +X28214998Y-26597200D01* +X28180763Y-26493886D01* +X28159814Y-26430666D01* +X28067712Y-26281344D01* +X27943656Y-26157288D01* +X27940342Y-26155243D01* +X27938546Y-26153248D01* +X27937989Y-26152807D01* +X27938064Y-26152711D01* +X27893618Y-26103297D01* +X27882397Y-26034334D01* +X27910240Y-25970252D01* +X27940348Y-25944165D01* +X27943342Y-25942318D01* +X28067315Y-25818345D01* +X28159356Y-25669124D01* +X28159358Y-25669119D01* +X28214505Y-25502697D01* +X28214506Y-25502690D01* +X28224999Y-25399986D01* +X28225000Y-25399973D01* +X28225000Y-25350000D01* +X25775001Y-25350000D01* +X25775001Y-25399986D01* +X25785494Y-25502697D01* +X25840641Y-25669119D01* +X25840643Y-25669124D01* +X25932684Y-25818345D01* +X26056655Y-25942316D01* +X26056659Y-25942319D01* +X26059656Y-25944168D01* +X26061279Y-25945972D01* +X26062323Y-25946798D01* +X26062181Y-25946976D01* +X26106381Y-25996116D01* +X26117602Y-26065079D01* +X26089759Y-26129161D01* +X26059661Y-26155241D01* +X26056349Y-26157283D01* +X26056343Y-26157288D01* +X25932289Y-26281342D01* +X25840187Y-26430663D01* +X25840185Y-26430668D01* +X25829839Y-26461891D01* +X25785001Y-26597203D01* +X25785001Y-26597204D01* +X25785000Y-26597204D01* +X25774500Y-26699983D01* +X25774500Y-27300001D01* +X25774501Y-27300019D01* +X25785000Y-27402796D01* +X25785001Y-27402799D01* +X25829915Y-27538339D01* +X25840186Y-27569334D01* +X25932288Y-27718656D01* +X26056344Y-27842712D01* +X26205666Y-27934814D01* +X26372203Y-27989999D01* +X26474991Y-28000500D01* +X26887769Y-28000499D01* +X26954808Y-28020183D01* +X26975450Y-28036818D01* +X27813181Y-28874549D01* +X27846666Y-28935872D01* +X27849500Y-28962230D01* +X27849500Y-30912770D01* +X27829815Y-30979809D01* +X27813181Y-31000451D01* +X27757289Y-31056342D01* +X27665187Y-31205663D01* +X27665185Y-31205668D01* +X27665115Y-31205880D01* +X27610001Y-31372203D01* +X27610001Y-31372204D01* +X27610000Y-31372204D01* +X27599500Y-31474983D01* +X27599500Y-32525001D01* +X27599501Y-32525019D01* +X27610000Y-32627796D01* +X27610001Y-32627799D01* +X27633000Y-32697203D01* +X27665186Y-32794334D01* +X27757096Y-32943345D01* +X27757289Y-32943657D01* +X27813181Y-32999549D01* +X27846666Y-33060872D01* +X27849500Y-33087230D01* +X27849500Y-33412770D01* +X27829815Y-33479809D01* +X27813181Y-33500451D01* +X27757289Y-33556342D01* +X27665187Y-33705663D01* +X27665185Y-33705668D01* +X27665115Y-33705880D01* +X27610001Y-33872203D01* +X27610001Y-33872204D01* +X27610000Y-33872204D01* +X27599500Y-33974983D01* +X27599500Y-34387769D01* +X27579815Y-34454808D01* +X27563181Y-34475450D01* +X26192045Y-35846586D01* +X26161069Y-35892949D01* +X26161067Y-35892952D01* +X26109919Y-35969499D01* +X26109912Y-35969511D01* +X26053343Y-36106082D01* +X26053340Y-36106092D01* +X26024500Y-36251079D01* +X26024500Y-36251082D01* +X26024500Y-40848918D01* +X26024500Y-40848920D01* +X26024499Y-40848920D01* +X26053340Y-40993907D01* +X26053343Y-40993917D01* +X26109913Y-41130490D01* +X26109914Y-41130492D01* +X26133028Y-41165084D01* +X26133029Y-41165086D01* +X26192045Y-41253414D01* +X26192049Y-41253418D01* +X26738181Y-41799548D01* +X26771666Y-41860871D01* +X26774500Y-41887229D01* +X26774500Y-42300001D01* +X26774501Y-42300019D01* +X26785000Y-42402796D01* +X26785001Y-42402799D01* +X26817211Y-42500000D01* +X26840186Y-42569334D01* +X26932288Y-42718656D01* +X27056344Y-42842712D01* +X27190597Y-42925519D01* +X27237321Y-42977465D01* +X27249500Y-43031057D01* +X27249500Y-45025500D01* +X27229815Y-45092539D01* +X27177011Y-45138294D01* +X27125500Y-45149500D01* +X26062129Y-45149500D01* +X26062123Y-45149501D01* +X26002516Y-45155908D01* +X25867671Y-45206202D01* +X25867664Y-45206206D01* +X25752455Y-45292452D01* +X25752452Y-45292455D01* +X25666206Y-45407664D01* +X25666202Y-45407671D01* +X25615908Y-45542517D01* +X25609501Y-45602116D01* +X25609500Y-45602135D01* +X20000000Y-45602135D01* +X20000000Y-24800013D01* +X25775000Y-24800013D01* +X25775000Y-24850000D01* +X26750000Y-24850000D01* +X27250000Y-24850000D01* +X28224999Y-24850000D01* +X28224999Y-24800028D01* +X28224998Y-24800013D01* +X28214505Y-24697302D01* +X28159358Y-24530880D01* +X28159356Y-24530875D01* +X28067315Y-24381654D01* +X27943345Y-24257684D01* +X27794124Y-24165643D01* +X27794119Y-24165641D01* +X27627697Y-24110494D01* +X27627690Y-24110493D01* +X27524986Y-24100000D01* +X27250000Y-24100000D01* +X27250000Y-24850000D01* +X26750000Y-24850000D01* +X26750000Y-24100000D01* +X26475029Y-24100000D01* +X26475012Y-24100001D01* +X26372302Y-24110494D01* +X26205880Y-24165641D01* +X26205875Y-24165643D01* +X26056654Y-24257684D01* +X25932684Y-24381654D01* +X25840643Y-24530875D01* +X25840641Y-24530880D01* +X25785494Y-24697302D01* +X25785493Y-24697309D01* +X25775000Y-24800013D01* +X20000000Y-24800013D01* +X20000000Y-23248903D01* +X28700000Y-23248903D01* +X28700000Y-23450000D01* +X29950000Y-23450000D01* +X29950000Y-22450000D01* +X29498903Y-22450000D01* +X29456175Y-22452897D01* +X29271476Y-22498831D01* +X29100977Y-22583390D01* +X29100974Y-22583392D01* +X28952633Y-22702632D01* +X28952632Y-22702633D01* +X28833392Y-22850974D01* +X28833390Y-22850977D01* +X28748831Y-23021476D01* +X28702897Y-23206175D01* +X28700000Y-23248903D01* +X20000000Y-23248903D01* +X20000000Y-15124000D01* +X20019685Y-15056961D01* +X20072489Y-15011206D01* +X20124000Y-15000000D01* +X79876000Y-15000000D01* +X79943039Y-15019685D01* +G37* +%TD.AperFunction*% +%TD*% +M02* diff --git a/Schematics/Schematics-F_Cu.gbr_iso_combined_svg.svg b/Schematics/Schematics-F_Cu.gbr_iso_combined_svg.svg new file mode 100644 index 0000000..8135381 --- /dev/null +++ b/Schematics/Schematics-F_Cu.gbr_iso_combined_svg.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Schematics/Schematics-F_Cu.svg b/Schematics/Schematics-F_Cu.svg new file mode 100644 index 0000000..2108331 --- /dev/null +++ b/Schematics/Schematics-F_Cu.svg @@ -0,0 +1,6323 @@ + + + +SVG Image created as Schematics-F_Cu.svg date 2024/07/04 21:50:11 + Image generated by PCBNEW + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 + + + + + + + +2 +2 + + + + + + + + + + + + +3 +3 + + + + + + + + + + + + + + + +4 +4 + + + + + +5 +5 + + + + + + + + + + + + + + + + + +6 +6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 + + + + + + + +2 +2 + + + + + + + + + + + + +3 +3 + + + + + + + + + + + + + + + +4 +4 + + + + + +5 +5 + + + + + + + + + + + + + + + + + +6 +6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +A +A + + + + + +B +B + + + + + + + + + + + + + + + + + + + + +C +C + + + + + + + + + + + + + + + + + +D +D + + + + + + + + + + + + + + + + + + + + + + + +A +A + + + + + +B +B + + + + + + + + + + + + + + + + + + + + +C +C + + + + + + + + + + + + + + + + + +D +D + + + + + + + + + + + + + + +Date: +Date: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +KiCad E.D.A. 8.0.3 +KiCad E.D.A. 8.0.3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Rev: +Rev: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Size: A4 +Size: A4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Id: 1/1 +Id: 1/1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Title: +Title: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +File: Schematics.kicad_pcb +File: Schematics.kicad_pcb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Sheet: +Sheet: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Schematics/Schematics-backups/Schematics-2024-07-01_215112.zip b/Schematics/Schematics-backups/Schematics-2024-07-01_215112.zip new file mode 100644 index 0000000..0e0a7cc Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-01_215112.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-01_215613.zip b/Schematics/Schematics-backups/Schematics-2024-07-01_215613.zip new file mode 100644 index 0000000..9c75a49 Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-01_215613.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-01_220126.zip b/Schematics/Schematics-backups/Schematics-2024-07-01_220126.zip new file mode 100644 index 0000000..67cab12 Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-01_220126.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-01_220751.zip b/Schematics/Schematics-backups/Schematics-2024-07-01_220751.zip new file mode 100644 index 0000000..5098da8 Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-01_220751.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-01_221350.zip b/Schematics/Schematics-backups/Schematics-2024-07-01_221350.zip new file mode 100644 index 0000000..15df9ee Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-01_221350.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-04_213924.zip b/Schematics/Schematics-backups/Schematics-2024-07-04_213924.zip new file mode 100644 index 0000000..f0aa42a Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-04_213924.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-04_214931.zip b/Schematics/Schematics-backups/Schematics-2024-07-04_214931.zip new file mode 100644 index 0000000..9915b28 Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-04_214931.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-04_220024.zip b/Schematics/Schematics-backups/Schematics-2024-07-04_220024.zip new file mode 100644 index 0000000..7d78a1f Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-04_220024.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-04_221104.zip b/Schematics/Schematics-backups/Schematics-2024-07-04_221104.zip new file mode 100644 index 0000000..53d79fa Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-04_221104.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-04_222457.zip b/Schematics/Schematics-backups/Schematics-2024-07-04_222457.zip new file mode 100644 index 0000000..a5e2976 Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-04_222457.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-06_122228.zip b/Schematics/Schematics-backups/Schematics-2024-07-06_122228.zip new file mode 100644 index 0000000..9cefa80 Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-06_122228.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-20_130833.zip b/Schematics/Schematics-backups/Schematics-2024-07-20_130833.zip new file mode 100644 index 0000000..00822f1 Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-20_130833.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-20_133218.zip b/Schematics/Schematics-backups/Schematics-2024-07-20_133218.zip new file mode 100644 index 0000000..32576a3 Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-20_133218.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-20_134221.zip b/Schematics/Schematics-backups/Schematics-2024-07-20_134221.zip new file mode 100644 index 0000000..2fa3c60 Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-20_134221.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-20_140847.zip b/Schematics/Schematics-backups/Schematics-2024-07-20_140847.zip new file mode 100644 index 0000000..7a693a9 Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-20_140847.zip differ diff --git a/Schematics/Schematics-backups/Schematics-2024-07-20_143221.zip b/Schematics/Schematics-backups/Schematics-2024-07-20_143221.zip new file mode 100644 index 0000000..ed200a7 Binary files /dev/null and b/Schematics/Schematics-backups/Schematics-2024-07-20_143221.zip differ diff --git a/Schematics/Schematics-job.gbrjob b/Schematics/Schematics-job.gbrjob new file mode 100644 index 0000000..7a7dd98 --- /dev/null +++ b/Schematics/Schematics-job.gbrjob @@ -0,0 +1,97 @@ +{ + "Header": { + "GenerationSoftware": { + "Vendor": "KiCad", + "Application": "Pcbnew", + "Version": "8.0.3" + }, + "CreationDate": "2024-07-20T13:58:35+02:00" + }, + "GeneralSpecs": { + "ProjectId": { + "Name": "Schematics", + "GUID": "53636865-6d61-4746-9963-732e6b696361", + "Revision": "rev?" + }, + "Size": { + "X": 0.0, + "Y": 0.0 + }, + "LayerNumber": 2, + "BoardThickness": 1.6, + "Finish": "None" + }, + "DesignRules": [ + { + "Layers": "Outer", + "PadToPad": 0.2, + "PadToTrack": 0.2, + "TrackToTrack": 0.2, + "MinLineWidth": 0.2, + "TrackToRegion": 0.5, + "RegionToRegion": 0.5 + } + ], + "FilesAttributes": [ + { + "Path": "Schematics-F_Cu.gbr", + "FileFunction": "Copper,L1,Top", + "FilePolarity": "Positive" + }, + { + "Path": "Schematics-B_Cu.gbr", + "FileFunction": "Copper,L2,Bot", + "FilePolarity": "Positive" + }, + { + "Path": "Schematics-Edge_Cuts.gbr", + "FileFunction": "Profile", + "FilePolarity": "Positive" + } + ], + "MaterialStackup": [ + { + "Type": "Legend", + "Name": "Top Silk Screen" + }, + { + "Type": "SolderPaste", + "Name": "Top Solder Paste" + }, + { + "Type": "SolderMask", + "Thickness": 0.01, + "Name": "Top Solder Mask" + }, + { + "Type": "Copper", + "Thickness": 0.035, + "Name": "F.Cu" + }, + { + "Type": "Dielectric", + "Thickness": 1.51, + "Material": "FR4", + "Name": "F.Cu/B.Cu", + "Notes": "Type: dielectric layer 1 (from F.Cu to B.Cu)" + }, + { + "Type": "Copper", + "Thickness": 0.035, + "Name": "B.Cu" + }, + { + "Type": "SolderMask", + "Thickness": 0.01, + "Name": "Bottom Solder Mask" + }, + { + "Type": "SolderPaste", + "Name": "Bottom Solder Paste" + }, + { + "Type": "Legend", + "Name": "Bottom Silk Screen" + } + ] +} diff --git a/Schematics/Schematics.kicad_pcb b/Schematics/Schematics.kicad_pcb new file mode 100644 index 0000000..e2872c6 --- /dev/null +++ b/Schematics/Schematics.kicad_pcb @@ -0,0 +1,6527 @@ +(kicad_pcb + (version 20240108) + (generator "pcbnew") + (generator_version "8.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + (setup + (stackup + (layer "F.SilkS" + (type "Top Silk Screen") + ) + (layer "F.Paste" + (type "Top Solder Paste") + ) + (layer "F.Mask" + (type "Top Solder Mask") + (thickness 0.01) + ) + (layer "F.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "dielectric 1" + (type "core") + (thickness 1.51) + (material "FR4") + (epsilon_r 4.5) + (loss_tangent 0.02) + ) + (layer "B.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "B.Mask" + (type "Bottom Solder Mask") + (thickness 0.01) + ) + (layer "B.Paste" + (type "Bottom Solder Paste") + ) + (layer "B.SilkS" + (type "Bottom Silk Screen") + ) + (copper_finish "None") + (dielectric_constraints no) + ) + (pad_to_mask_clearance 0) + (allow_soldermask_bridges_in_footprints no) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref no) + (viasonmask no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plotreference yes) + (plotvalue yes) + (plotfptext yes) + (plotinvisibletext no) + (sketchpadsonfab no) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + (net 0 "") + (net 1 "/I2S_CL") + (net 2 "GND") + (net 3 "+3.3V") + (net 4 "VCC") + (net 5 "+5V") + (net 6 "/I2S_DA") + (net 7 "/RX") + (net 8 "/TX") + (net 9 "/LED_DATA") + (net 10 "/I2S_BCK") + (net 11 "/I2S_LRCK") + (net 12 "/I2S_DATA") + (net 13 "/KNOB1_A") + (net 14 "/KNOB1_B") + (net 15 "/KNOB1_BUT") + (net 16 "/KNOB2_BUT") + (net 17 "/KNOB2_A") + (net 18 "/KNOB2_B") + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "10a0845e-167d-4005-84b5-86b2e265dc93") + (at 28 41.05 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C5" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "2334a12c-324a-48d8-8836-8a1e7e770b78") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "be55e4fc-586d-4532-82e7-c581499dc7ff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "eb061fac-b54d-4425-acae-eb24ba207dac") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a8e79167-f32b-4447-84b1-9e1a8ff4e77f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "97d00ed1-103f-4071-aa94-d4415ae09b22") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/cd330f67-3a18-4722-8b04-0d4e141a22e0") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "52636367-23d2-4282-a2b6-25fce306ca78") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3800ac92-760f-48be-9262-dac601d1fa9f") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b60b8630-f691-40d4-a89d-e9ab1d26dc94") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "45a8243d-d81a-438c-bd06-97a67e5dfe34") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "17f2ed72-87b1-4e44-b712-a09f765cbfbd") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "989ec35d-45dd-4742-906f-e64c49dc6919") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dbbf5aca-321a-41e8-8a30-ccca3aa1511c") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "17704530-cd37-4665-96bd-41758fadea66") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6099f211-970d-431f-b261-db9606916927") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1f087467-5f7a-4976-8599-4fc8bd8b1697") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "3477f955-229d-416f-a991-0963064f5aff") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 90) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pintype "passive") + (uuid "9c8c9c89-68e2-4172-bdb8-c3db98805d99") + ) + (pad "2" smd roundrect + (at 0.95 0 90) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "2c19742b-e37f-4b1d-919d-b4060b726968") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "1437d25f-b994-414c-99c6-a2a7e6064188") + (at 75.5 37 -90) + (descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x05 2.54mm single row") + (property "Reference" "J1" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "54343b8f-70fe-439b-8ae8-82b4205f12f6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "DAC_I2S" + (at 0 12.49 90) + (layer "F.Fab") + (uuid "75004e67-23f1-4a5a-be58-cdd19e8f7d2b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "05e81af6-3985-489b-aa26-d08444927645") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "374f4190-4973-4fee-aaae-46537bbaaae9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "10e4adbf-b648-4118-a51d-71aea975bee3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/4d1b4627-c9f1-457e-9a0a-542103462103") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 11.49) + (end 1.33 11.49) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "147a54d8-6b6d-4130-9345-4ee93f604582") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 11.49) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "23158dfd-9579-4399-b8f9-1d6b111f3c40") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d9a1f16d-eb6a-4a84-882b-591548b810bd") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 11.49) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "64e6b5fc-6f98-48d3-aa80-47132b3d01a2") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e5859059-ad4c-4ad0-ac16-647b45feee68") + ) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4c23b105-28c4-413e-9ca3-51c20e322727") + ) + (fp_line + (start -1.8 11.95) + (end 1.8 11.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5f1816e6-8aba-4d5e-b8f7-13c5f9846c4b") + ) + (fp_line + (start 1.8 11.95) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "02178f9b-a724-49b2-aadc-58a723bbc1c1") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 11.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a9ea90b9-20c6-4987-8646-3a538f9e3106") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3f79f64e-3fb1-460b-971b-e67ef04acfbb") + ) + (fp_line + (start -1.27 11.43) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cf55d08f-3e20-4519-94ea-715cdde26f2c") + ) + (fp_line + (start 1.27 11.43) + (end -1.27 11.43) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e5414e3e-a6e8-4ec3-90cb-dd09cd2e0632") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "eac35747-b84c-4639-aa0a-39573b43bcdf") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "54ccd44f-99fb-4347-9979-6c944cb34c1b") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 11.43) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dba6dea1-a406-41b1-bc7a-6609dd341a46") + ) + (fp_text user "${REFERENCE}" + (at 0 5.08 0) + (layer "F.Fab") + (uuid "18ff36d6-d150-42f6-89fc-f66cbf7bfe8a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "52d6c5ff-cee6-4c03-a3d1-640fc6fc785e") + ) + (pad "2" thru_hole oval + (at 0 2.54 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 5 "+5V") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "7f52568f-ae85-4059-869f-d9ef3af84019") + ) + (pad "3" thru_hole oval + (at 0 5.08 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 10 "/I2S_BCK") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "2abe8ecf-9097-4b05-a455-46e46c40ab2d") + ) + (pad "4" thru_hole oval + (at 0 7.62 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 11 "/I2S_LRCK") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "63254794-4353-497c-bda4-e5d621d97cfc") + ) + (pad "5" thru_hole oval + (at 0 10.16 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 12 "/I2S_DATA") + (pinfunction "Pin_5") + (pintype "passive") + (uuid "b956a1d7-e2f6-4a84-a60a-71c077a281a6") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "36c0d42d-489d-4029-9bbd-acaf94d8fed4") + (at 36.05 20.5 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C4" + (at 0 -1.68 360) + (layer "F.SilkS") + (uuid "a54eb34e-2502-4599-b497-dd839f12e585") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100uF" + (at 0 1.68 360) + (layer "F.Fab") + (uuid "98980bc1-5423-4acf-a8d4-aa4442c2fda7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e6e365a3-8cd0-4961-a796-3a832f5b04dd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0fee20ca-6c84-41c0-8723-8a84bb8701be") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "72a1fbea-592d-4c66-a19f-d72a87978165") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/d5727e69-1d1a-4192-92ea-52d79a5cc18a") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "646111d6-2c7b-4ef0-85fd-c97399dc12e2") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "83db75cb-2e75-4064-840e-52b2ea1780b1") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bb016e8f-5fae-4959-84f9-6d1fa5525e5d") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "975d06e6-d813-4a2f-8f4d-8b2f4eb287f1") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bcb90bf4-ce27-4deb-93f2-6769907670f0") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c2d26b8c-74cc-43d9-854f-949cccbafcd6") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "55c06f49-23c6-484f-b80b-aa7b60eb4d7a") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bd5add64-b726-40ef-94ed-cc608ff55f73") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ccb68eba-0b84-4f70-bb16-a33b4d2c5c52") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7843424e-a26f-4516-8d7d-5adb672fa1cc") + ) + (fp_text user "${REFERENCE}" + (at 0 0 360) + (layer "F.Fab") + (uuid "ff51eae6-e617-4771-8dd3-aa927226ed15") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 180) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "+5V") + (pintype "passive") + (uuid "e047e7c7-9982-45d3-ba3d-03f1477e045b") + ) + (pad "2" smd roundrect + (at 0.95 0 180) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "d62cf978-b07d-4066-8520-d8751e158110") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (layer "F.Cu") + (uuid "36c37616-3b3c-4b85-9ff9-6862204e6a67") + (at 33.35 26) + (descr "module CMS SOT223 4 pins") + (tags "CMS SOT") + (property "Reference" "U3" + (at -1.5 -4 0) + (layer "F.SilkS") + (uuid "9603df39-dc50-4287-b67a-eccf37fbc8ac") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "AMS1117-5.0" + (at 0 4.5 0) + (layer "F.Fab") + (uuid "bb36f85a-5ec9-4354-b1c9-161950d98bd0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e42c8f55-ab16-4218-9d0a-c540f2224524") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e62aa243-ad89-4a64-93d5-8d2d3a4fe70d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 5.0V fixed output, SOT-223" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "38bbfeb4-ff1c-460c-b6b8-1646ea96f17a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOT?223*TabPin2*") + (path "/3d4aaa66-9c5d-4a5c-9510-c6f5132b8af2") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -1.85 -3.41) + (end 1.91 -3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e7ef1141-6a81-4026-83d3-05d5d268ae22") + ) + (fp_line + (start -1.85 3.41) + (end 1.91 3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "26571031-ebaa-44e2-9d8b-2552b03faf9b") + ) + (fp_line + (start 1.91 -3.41) + (end 1.91 -2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aeae1fc0-32bf-4e9e-b473-5c472a3ebc34") + ) + (fp_line + (start 1.91 3.41) + (end 1.91 2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5cd7f490-22b9-4cea-b2c6-200957ad0426") + ) + (fp_poly + (pts + (xy -3.13 -3.31) (xy -3.37 -3.64) (xy -2.89 -3.64) (xy -3.13 -3.31) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "0c8b041a-0434-4869-aaf2-94b340c20ec4") + ) + (fp_line + (start -4.4 -3.6) + (end -4.4 3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2d33ccf1-6a18-4044-a262-b666e39bde90") + ) + (fp_line + (start -4.4 3.6) + (end 4.4 3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "439b76d1-cfe6-471e-b922-1e86c98a1d29") + ) + (fp_line + (start 4.4 -3.6) + (end -4.4 -3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bd85f537-01e8-4094-a20b-64d4f1e2a7de") + ) + (fp_line + (start 4.4 3.6) + (end 4.4 -3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4f4a0ca3-8982-41e3-af32-87f3cd89941d") + ) + (fp_line + (start -1.85 -2.35) + (end -1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "65a17217-9ffe-433e-a99c-9dc1c10b7861") + ) + (fp_line + (start -1.85 -2.35) + (end -0.85 -3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "359e7351-674c-4d6e-8bbb-c2704e9a5306") + ) + (fp_line + (start -1.85 3.35) + (end 1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b4c368e1-2b96-46bd-b833-8ab748bfd2cb") + ) + (fp_line + (start -0.85 -3.35) + (end 1.85 -3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9dc19eaf-d02f-43b5-98a7-77eb37c29d44") + ) + (fp_line + (start 1.85 -3.35) + (end 1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "55d4bce3-e910-44a5-a4d1-d8e1c9ba5153") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "6b610fe0-c588-4e8e-8328-8d8386482c1f") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -3.15 -2.3) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "1cfcc11f-cc7b-492b-a81a-a13604f3c2d4") + ) + (pad "2" smd roundrect + (at -3.15 0) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "+5V") + (pinfunction "VO") + (pintype "power_out") + (uuid "c6cd2bf8-d182-4dc5-a207-9458574002d7") + ) + (pad "2" smd roundrect + (at 3.15 0) + (size 2 3.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "+5V") + (pinfunction "VO") + (pintype "power_out") + (uuid "a95aa022-2818-4f5d-9fe6-e03874837a44") + ) + (pad "3" smd roundrect + (at -3.15 2.3) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pinfunction "VI") + (pintype "power_in") + (uuid "0f671689-17cb-48b5-91d2-ff48e4e5d268") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "3caa33a0-4b32-4451-8eda-80b63a9a1e1a") + (at 38.5 34.05 -90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C8" + (at -2.55 0 180) + (layer "F.SilkS") + (uuid "82a77053-97b9-4e3f-94e4-9ea2ea25def7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 3.95 0 90) + (layer "F.Fab") + (uuid "368ffdf1-608a-482f-87f3-ab4a0fcc04db") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ce822820-397e-4f76-92cc-e9b7a61bc9a9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3beaa4c2-1ebc-498f-9910-e80ff6ec47fc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "db90c691-565f-4b9c-be82-43710e54e89e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/062cd29a-32bd-447e-95fb-4bbbf29e43b7") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9030369f-739d-47ac-8bf5-c192ddf724e0") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7c534e28-7254-476f-b4c5-15f339b81c67") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5196cf44-674c-40e6-9970-ff92ac6b177d") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c6062831-6714-4868-a2b0-4777dcaac0d6") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "590791ca-2b75-4d77-a54a-6bb1d417866f") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7cf3ca0d-6a01-4815-88bf-9e94c6d40eb4") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b8abb0c3-d23c-45a4-89c5-175a8600573e") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ecfa19ad-911d-4fbe-9f46-757a52916f64") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f5ba9e62-06fe-4825-bc7e-351adbe606ef") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a4c56d10-0d21-408f-9f9c-daa2f961717e") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "6348ca1d-b895-4563-8c7b-b4544b4a30a2") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "6e332846-51c5-414e-ab48-6e7f48f1f24e") + ) + (pad "2" smd roundrect + (at 0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "eddc516e-3ccc-400f-a681-357504c8a8d0") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "483b730f-74c0-4d1e-8d4b-ce9a5b19ff38") + (at 26.96 46.5 90) + (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x02 2.54mm single row") + (property "Reference" "J4" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "41aaba64-ef21-499b-b051-327e72eb2963") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "POWER IN" + (at 0 4.87 90) + (layer "F.Fab") + (uuid "341eef26-c8b9-43f5-a984-c241d53d56d9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "735e5a47-0314-4198-bd96-5a4d871645be") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "385b680e-6758-4594-b41e-aa702b2b8abd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f2c79474-c650-4cc3-830d-335c272bb6fc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/4a115e1a-1a3d-486b-9fd7-8a09d1649a53") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a12b352-3c5d-4d7e-aa7e-6155efd98097") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "45487352-abe4-4658-9c85-eee06915fdcb") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 3.87) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d660f14f-434a-432b-9eef-701948f112e3") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f7350abf-7c83-4113-b2f4-aeca7250a274") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 3.87) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "701354ab-b6db-40f6-ad5f-40cabfad9e92") + ) + (fp_line + (start -1.33 3.87) + (end 1.33 3.87) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cd68a48c-803d-47c1-929b-7df8bca1fee1") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c94cf06e-1713-49b5-8c88-e5d9158a29dc") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 4.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b12c1800-4f33-4549-aecb-cf816e5b7181") + ) + (fp_line + (start 1.8 4.35) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "24d63983-587d-41f0-b649-c710e98e3cd3") + ) + (fp_line + (start -1.8 4.35) + (end 1.8 4.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9a0c85dd-0a2a-4b4a-b612-8ae5ccddae83") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 3.81) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7063c565-190b-47b5-be5e-669bba47d92a") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "37b55005-f6db-4e94-bcfd-c1ba78835bd8") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "085a208c-1ba8-4077-8d6a-e3c98e6631d3") + ) + (fp_line + (start 1.27 3.81) + (end -1.27 3.81) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d0558cee-2333-4a24-92e0-8f474bb4d8a5") + ) + (fp_line + (start -1.27 3.81) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "52267a25-6e62-4360-979f-320f52dcaf1c") + ) + (fp_text user "${REFERENCE}" + (at 0 1.27 0) + (layer "F.Fab") + (uuid "3e7a2562-81e0-47e0-9502-6639bf7b4e67") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "VCC") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "ed63aacd-bde0-4e5d-942e-350ee8c9a903") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "2ccd5bb1-e24b-4f6f-a141-b2fec5036780") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_Espressif:ESP32-WROVER-E" + (layer "F.Cu") + (uuid "666b3b18-e442-425e-be14-60f2ed7fda64") + (at 49.75 39.755) + (descr "ESP32-WROVER-E: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf") + (tags "esp32 module") + (property "Reference" "U1" + (at -0.14 -17.145 0) + (layer "F.SilkS") + (uuid "765a1163-e675-4ed0-81a2-7e169228f3d3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "ESP32-WROVER-E" + (at -0.14 17.145 0) + (layer "F.Fab") + (uuid "235f0261-9b2e-40ce-89a4-3c7e3a7a04a7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "PCM_Espressif:ESP32-WROVER-E" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "dd786212-58ff-441c-83e8-fcdd3bbcf9a9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-wrover-e_esp32-wrover-ie_datasheet_en.pdf" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "2b6f6741-1cb9-4ed8-a895-567310de7c9a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "ESP32-WROVER-E and ESP32-WROVER-IE are two powerful, generic WiFi-BT-BLE MCU modules that target a wide variety of applications, ranging from low-power sensor networks to the most demanding tasks, such as voice encoding, music streaming and MP3 decoding. ESP32-WROVER-E comes with a PCB antenna, and ESP32-WROVER-IE with an IPEX antenna. They both featurea 4 MB external SPI flash and an additional 8 MB SPI Pseudo static RAM (PSRAM)." + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "17c77dfb-e8d8-44f1-8833-140b6a6626a9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/8500d52d-b549-413f-aeec-252f2687d2f3") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -9 -15.695) + (end -9 -8.9) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d0b604b8-0057-4c86-b5bc-acc83db11d00") + ) + (fp_line + (start -9 -9.385) + (end 9 -9.385) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "87d58d57-42e7-4aab-b519-979a829635c5") + ) + (fp_line + (start -9 15.705) + (end -9 15.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2b682a34-fdce-4361-861f-9be44bdc704f") + ) + (fp_line + (start -9 15.705) + (end 9 15.705) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "13e91535-fe52-4e9d-918a-f6ce176c6e92") + ) + (fp_line + (start 9 -15.695) + (end -9 -15.695) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5e409443-815d-4992-b1da-927cb3ec5412") + ) + (fp_line + (start 9 -15.65) + (end 9 -8.9) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bfdcb29e-d0e4-4d44-8913-79052a188e7c") + ) + (fp_line + (start 9 15.705) + (end 9 15.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "89d49ffe-8377-425f-8932-c3ce201d0f9c") + ) + (fp_line + (start -9 -15.695) + (end -9 15.705) + (stroke + (width 0.12) + (type solid) + ) + (layer "Eco2.User") + (uuid "df0985ee-5758-4633-8c07-f5c11924af6e") + ) + (fp_line + (start -9 -9.385) + (end 9 -9.385) + (stroke + (width 0.12) + (type solid) + ) + (layer "Eco2.User") + (uuid "53ba8170-3e1c-4917-b941-064ff0a30ab7") + ) + (fp_line + (start -9 15.705) + (end 9 15.705) + (stroke + (width 0.12) + (type solid) + ) + (layer "Eco2.User") + (uuid "1d6e12d3-df88-4d25-8ba2-251eacdd62d7") + ) + (fp_line + (start 9 -15.695) + (end -9 -15.695) + (stroke + (width 0.12) + (type solid) + ) + (layer "Eco2.User") + (uuid "2403006b-237e-4128-85bb-1a32559f6c5d") + ) + (fp_line + (start 9 15.705) + (end 9 -15.695) + (stroke + (width 0.12) + (type solid) + ) + (layer "Eco2.User") + (uuid "41d31e9b-b307-4f2a-9ae2-591c199410f6") + ) + (fp_line + (start -10 -16.295) + (end 10 -16.295) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7d16092d-af49-4af1-9e89-6dd3aaa5eee6") + ) + (fp_line + (start -10 16.205) + (end -10 -16.295) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f9f774fa-b2c9-45aa-ac30-f8fd63d38ecb") + ) + (fp_line + (start 10 -16.295) + (end 10 16.205) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f1c69567-51b3-4b1d-b67d-9197dd6eccea") + ) + (fp_line + (start 10 16.205) + (end -10 16.205) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.CrtYd") + (uuid "95a3ac51-064a-4456-8cf5-ccbbd6225c81") + ) + (fp_text user "Antenna Area" + (at 0.5 -12.795 0) + (unlocked yes) + (layer "F.SilkS") + (uuid "221014b7-dd61-4a45-8d23-871bb1624ec3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "0a077acd-62f3-4355-a813-4f78a5dd8725") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd rect + (at -8.75 -8.255) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "5f40f83d-be8c-43e3-a05a-b10f70ed0e81") + ) + (pad "2" smd rect + (at -8.75 -6.985) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "+3.3V") + (pinfunction "3V3") + (pintype "power_in") + (uuid "aa9e01ad-559f-438a-afd7-ad5cd69a85ab") + ) + (pad "3" smd rect + (at -8.75 -5.715) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "+3.3V") + (pinfunction "EN/CHIP_PU") + (pintype "input") + (uuid "9801e0d3-04ba-44e8-91a8-ec11b05d6ed3") + ) + (pad "4" smd rect + (at -8.75 -4.445) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "SENSOR_VP/GPIO36/ADC1_CH0") + (pintype "input") + (uuid "614184b7-794e-440b-86a7-1aaad8db9fe0") + ) + (pad "5" smd rect + (at -8.75 -3.175) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "SENSOR_VN/GPIO39/ADC1_CH3") + (pintype "input") + (uuid "04015931-f37a-478f-b6b2-5ca8c90ad009") + ) + (pad "6" smd rect + (at -8.75 -1.905) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GPIO34/ADC1_CH6") + (pintype "input") + (uuid "6d5f4774-573a-420b-a815-507af4261411") + ) + (pad "7" smd rect + (at -8.75 -0.635) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GPIO35/ADC1_CH7") + (pintype "input") + (uuid "1ce7a6c1-5a76-4bf6-97bc-394fe9cab11b") + ) + (pad "8" smd rect + (at -8.75 0.635) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "32K_XP/GPIO32/ADC1_CH4") + (pintype "bidirectional") + (uuid "8357cdac-b5ab-4577-8c6f-60ce6ab31311") + ) + (pad "9" smd rect + (at -8.75 1.905) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "32K_XN/GPIO33/ADC1_CH5") + (pintype "bidirectional") + (uuid "7517eef6-e4c5-41f4-85c0-551feac57a5e") + ) + (pad "10" smd rect + (at -8.75 3.175) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 6 "/I2S_DA") + (pinfunction "DAC_1/ADC2_CH8/GPIO25") + (pintype "bidirectional") + (uuid "5f92d69f-5e92-419b-9e63-9c19386a5338") + ) + (pad "11" smd rect + (at -8.75 4.445) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "/I2S_CL") + (pinfunction "DAC_2/ADC2_CH9/GPIO26") + (pintype "bidirectional") + (uuid "e8e4e8a8-8ef7-4a42-b554-00a2c761c90a") + ) + (pad "12" smd rect + (at -8.75 5.715) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "ADC2_CH7/GPIO27") + (pintype "bidirectional") + (uuid "eb184d24-5d59-4229-880c-6c5ecf80350c") + ) + (pad "13" smd rect + (at -8.75 6.985) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 17 "/KNOB2_A") + (pinfunction "MTMS/GPIO14/ADC2_CH6") + (pintype "bidirectional") + (uuid "95f1e809-01c7-4038-bb9f-2df48bec474f") + ) + (pad "14" smd rect + (at -8.75 8.255) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 18 "/KNOB2_B") + (pinfunction "MTDI/GPIO12/ADC2_CH5") + (pintype "bidirectional") + (uuid "6e2c2558-0b59-46c1-82e2-303c0572dfc4") + ) + (pad "15" smd rect + (at -8.75 9.525) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "16e42e35-0e64-4024-8db8-d295f9521ae8") + ) + (pad "16" smd rect + (at -8.75 10.795) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 16 "/KNOB2_BUT") + (pinfunction "MTCK/GPIO13/ADC2_CH4") + (pintype "bidirectional") + (uuid "b1fa2a14-496e-4e87-8da6-b33b6ca142fa") + ) + (pad "17" smd rect + (at -8.75 12.065) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "38b64879-fbad-4def-bb2e-8cc83f39a625") + ) + (pad "18" smd rect + (at -8.75 13.335) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "abefc150-528a-4361-8112-645a7d03f379") + ) + (pad "19" smd rect + (at -8.75 14.605) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "d5bbc4b3-57db-40e2-abc6-a1d06f9db80d") + ) + (pad "20" smd rect + (at 8.75 14.605) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "ef73c8b5-aeb5-44f1-9003-bceca833a4ab") + ) + (pad "21" smd rect + (at 8.75 13.335) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "3d74452d-6401-4a1d-a77a-70485141f9e4") + ) + (pad "22" smd rect + (at 8.75 12.065) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "0982a3a4-d9f2-4bca-a30d-1b3f96cbb4d7") + ) + (pad "23" smd rect + (at 8.75 10.795) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "MTDO/GPIO15/ADC2_CH3") + (pintype "bidirectional") + (uuid "6c006792-e826-4091-9225-83d51998ea66") + ) + (pad "24" smd rect + (at 8.75 9.525) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 15 "/KNOB1_BUT") + (pinfunction "ADC2_CH2/GPIO2") + (pintype "bidirectional") + (uuid "c58c305c-a189-4daa-8035-7f5f9166471a") + ) + (pad "25" smd rect + (at 8.75 8.255) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GPIO0/BOOT/ADC2_CH1") + (pintype "bidirectional") + (uuid "b592e6a8-af6e-48b7-902e-fa2cd79efe90") + ) + (pad "26" smd rect + (at 8.75 6.985) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 14 "/KNOB1_B") + (pinfunction "ADC2_CH0/GPIO4") + (pintype "bidirectional") + (uuid "afb0e0fd-ba13-43c5-9159-6badee0ac8e8") + ) + (pad "27" smd rect + (at 8.75 5.715) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "980597f6-5112-4bab-9455-c542a71cf995") + ) + (pad "28" smd rect + (at 8.75 4.445) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "318a18b5-7325-4b30-b45f-e4942676c70c") + ) + (pad "29" smd rect + (at 8.75 3.175) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 13 "/KNOB1_A") + (pinfunction "GPIO5") + (pintype "bidirectional") + (uuid "d07dc9cb-0120-4805-9c33-d98b14fbe846") + ) + (pad "30" smd rect + (at 8.75 1.905) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 10 "/I2S_BCK") + (pinfunction "GPIO18") + (pintype "bidirectional") + (uuid "a77520d2-35cc-40ad-b9dd-91281a37873c") + ) + (pad "31" smd rect + (at 8.75 0.635) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 11 "/I2S_LRCK") + (pinfunction "GPIO19") + (pintype "bidirectional") + (uuid "ef0dc70b-dbaa-4942-9917-cbde0bae6916") + ) + (pad "32" smd rect + (at 8.75 -0.635) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "13e37c7c-de7f-4ff2-bfef-2c39f54013d3") + ) + (pad "33" smd rect + (at 8.75 -1.905) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 12 "/I2S_DATA") + (pinfunction "GPIO21") + (pintype "bidirectional") + (uuid "16702f67-8b75-4a1a-8979-44cc1b1d89d6") + ) + (pad "34" smd rect + (at 8.75 -3.175) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "/RX") + (pinfunction "U0RXD/GPIO3") + (pintype "bidirectional") + (uuid "463a68d4-dbb9-4a4e-b165-537757cd542c") + ) + (pad "35" smd rect + (at 8.75 -4.445) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 8 "/TX") + (pinfunction "U0TXD/GPIO1") + (pintype "bidirectional") + (uuid "0e44a9b6-10ad-4a85-8505-02ff515f020a") + ) + (pad "36" smd rect + (at 8.75 -5.715) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "/LED_DATA") + (pinfunction "GPIO22") + (pintype "bidirectional") + (uuid "e5184ab8-dee6-4e5a-b80b-308b04fc6893") + ) + (pad "37" smd rect + (at 8.75 -6.985) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GPIO23") + (pintype "bidirectional") + (uuid "8b11a2d8-3967-44dc-9deb-22b4c779d165") + ) + (pad "38" smd rect + (at 8.75 -8.255) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "04ade7f9-b67b-4065-bbcf-0a73127b321b") + ) + (pad "39" smd rect + (at -2.905 -1.86) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "f8203a06-e09e-4822-886d-ea0dd2a72e32") + ) + (pad "39" smd rect + (at -2.9 -0.46) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "6b5e3c0d-cf9b-46c6-a9bc-b84e9af131ac") + ) + (pad "39" smd rect + (at -2.9 0.94) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "0be57e84-09f4-4d95-a273-66b38ab09c43") + ) + (pad "39" smd rect + (at -1.5 -1.86) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "082fae2f-d7ad-4c53-8894-de3290992880") + ) + (pad "39" smd rect + (at -1.5 -0.46) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "6cf5fb36-af66-4cd4-92d4-43a95c2edbdc") + ) + (pad "39" smd rect + (at -1.5 0.94) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "d2838ec3-458f-46ad-9f93-f2d9fc2a9c4b") + ) + (pad "39" smd rect + (at -0.1 -1.86) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "96be8f20-5472-4126-b3d1-a0e6b96741c4") + ) + (pad "39" smd rect + (at -0.1 -0.46) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "fd502938-1762-41b6-805e-82572b206366") + ) + (pad "39" smd rect + (at -0.1 0.94) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "0e161aad-7bdc-4793-91da-fda2ffcf3cdf") + ) + (zone + (net 0) + (net_name "") + (layers "*.Cu") + (uuid "c33f6d89-d6bb-4c7f-b32a-c4544e74170a") + (name "antenna keepout") + (hatch edge 0.508) + (connect_pads + (clearance 0) + ) + (min_thickness 0.254) + (filled_areas_thickness no) + (keepout + (tracks not_allowed) + (vias not_allowed) + (pads not_allowed) + (copperpour not_allowed) + (footprints not_allowed) + ) + (fill + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 58.75 30.36) (xy 40.75 30.36) (xy 40.75 24.06) (xy 58.75 24.06) + ) + ) + ) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_espressif_kicad-libraries/espressif.3dshapes/ESP32-WROVER-E.STEP" + (offset + (xyz -9 -15.7 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "7d55cb34-0a6c-4a8a-8d95-a4fe60ee5325") + (at 27 26.05 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C7" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "c539c19c-2fc2-4ea7-8ff1-d870bf0d129c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "8cdd3a96-b604-48e1-bdba-a1004bda1dc5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4d4078ad-bc7c-485d-911a-78293343bca6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8019aaff-fb11-4ffb-9e0e-5f86d5501940") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a2c58614-bbc5-40a6-8378-9d3e83f97245") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/de225602-43b4-4c81-981d-050d04c52b5d") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8b9dccbf-b5e0-4ecf-ac89-b1d33b92e3cc") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "542bdf46-c642-45d9-8b7b-91a150ead56e") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b171d855-bee7-48f4-8e7a-3145412a1bbb") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0cf7e444-758c-4a2e-b282-64b656f4f281") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7cdecf2f-52ea-4b71-b789-d74109b2b399") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c995b2fa-a1ae-4a5a-a337-7f970e8ddb3d") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0898fa77-3d69-4941-a085-57a07f91f4ba") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "29d93318-a520-4e84-8250-64a4c4521278") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1d60c503-293d-4a36-9594-b76e2a8a7876") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "af8cdff0-1348-4c37-9f5e-19032c057c4a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "98d8f011-aa37-479d-b24b-57a51862495d") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 90) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pintype "passive") + (uuid "0ee0fc7c-5507-48ae-b1cf-9a1ead20df20") + ) + (pad "2" smd roundrect + (at 0.95 0 90) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "15a48188-3cfc-4e96-a172-85756020388d") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (layer "F.Cu") + (uuid "7ec7d17b-19ba-4471-9eb7-5aff60f1f208") + (at 33.85 39.5) + (descr "module CMS SOT223 4 pins") + (tags "CMS SOT") + (property "Reference" "U2" + (at 0 -4.5 0) + (layer "F.SilkS") + (uuid "8e75b762-77aa-4133-bf57-88837b450322") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "AMS1117-3.3" + (at 0 4.5 0) + (layer "F.Fab") + (uuid "9cf2ca1f-0b48-4348-b260-3af127e53f1f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "704709dd-8d51-4e04-8e0f-85fd1939ff20") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6a3aeef1-cefc-4a4a-9ee1-eeafd921ad30") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6a3c8096-ae0c-4f62-b9a9-1f6522005ff6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOT?223*TabPin2*") + (path "/09452429-3c6c-4fdf-ab5e-b206d942640b") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -1.85 -3.41) + (end 1.91 -3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4887d532-fb65-4c2f-a032-01ce168f67e2") + ) + (fp_line + (start -1.85 3.41) + (end 1.91 3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3748e9cb-9dde-48fd-b3ee-6c66c8877e92") + ) + (fp_line + (start 1.91 -3.41) + (end 1.91 -2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6da1b1b2-5f65-48d7-b968-39b9b2598e10") + ) + (fp_line + (start 1.91 3.41) + (end 1.91 2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e3335858-f04d-47d1-b1f8-bb72a9cb3dac") + ) + (fp_poly + (pts + (xy -3.13 -3.31) (xy -3.37 -3.64) (xy -2.89 -3.64) (xy -3.13 -3.31) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "90f79d89-b64b-4f14-8c53-e3091e4e0da9") + ) + (fp_line + (start -4.4 -3.6) + (end -4.4 3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "27246a04-e302-4101-b37a-232d0d42257f") + ) + (fp_line + (start -4.4 3.6) + (end 4.4 3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fed85336-b928-487c-8f3e-99ae7abcde9e") + ) + (fp_line + (start 4.4 -3.6) + (end -4.4 -3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "edd33c4a-d4e9-4cdf-a309-9a5aea52a470") + ) + (fp_line + (start 4.4 3.6) + (end 4.4 -3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7238daf6-4240-4956-8273-cfe5c4307e9f") + ) + (fp_line + (start -1.85 -2.35) + (end -1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ecb79631-4943-4228-9ec3-d090c6d8c19b") + ) + (fp_line + (start -1.85 -2.35) + (end -0.85 -3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c25d2972-20a3-42cf-8164-791f42c9221f") + ) + (fp_line + (start -1.85 3.35) + (end 1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2d225ec4-25a9-42fa-a529-a18397233541") + ) + (fp_line + (start -0.85 -3.35) + (end 1.85 -3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "894e0387-e9ff-4619-b295-0442ed391c3a") + ) + (fp_line + (start 1.85 -3.35) + (end 1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f45fb397-fcc2-4155-97ac-b3a55e9b4e58") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "731687ce-77c8-4a67-9ec0-a5fd1ad280f3") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -3.15 -2.3) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "bde628d4-040f-49e6-aa68-211c0ed56233") + ) + (pad "2" smd roundrect + (at -3.15 0) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pinfunction "VO") + (pintype "power_out") + (uuid "ad662111-61ca-4ea8-81e1-6aebbe3fa0a3") + ) + (pad "2" smd roundrect + (at 3.15 0) + (size 2 3.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pinfunction "VO") + (pintype "power_out") + (uuid "8a4b2a2c-370d-4688-b73d-bf1778f750f0") + ) + (pad "3" smd roundrect + (at -3.15 2.3) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pinfunction "VI") + (pintype "power_in") + (uuid "005169bc-e304-4700-90b1-6e6b774623b1") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "ae0b5ce9-59c0-4cd1-a737-ecb4d300ba32") + (at 36 34.05 -90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C1" + (at -2.55 0 180) + (layer "F.SilkS") + (uuid "77625a8b-0426-4dcd-8d71-7eeebd24ae00") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100uF" + (at 3.95 0 90) + (layer "F.Fab") + (uuid "de84f684-1fbb-41b8-a85d-fd8ceee927c0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "51780694-5148-48d4-8099-b76ef29c5bc1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7b835ad4-2b50-4d03-bf5d-0dde8cea3ace") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1ccdb8ad-fd47-40e5-89da-2d03ab4dcf6a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/8bb186f2-afd8-4f12-8676-3aa237b4cf59") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "72a4c6f2-35ec-45e2-9cd7-61ebfcf2356c") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7568e3c5-e53e-40d5-b59e-0e2e4924852c") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3aad9fe2-ac23-4f28-9fe8-d4055e856a0f") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9c44f362-4e91-48c3-a2bd-c085cb6740a6") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3f0677a2-e3c9-4838-8bcd-89d5425387c0") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4a5bdb1a-3ba3-488e-b93a-89f7abce0668") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "819cb317-aef0-43c3-b24d-1ebb04279502") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7a16239b-245b-4522-b6b8-2e659a06eb77") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6b0da4a2-910c-4f55-b303-5420e322cdfc") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "aa13ece4-21ff-4d9b-bd81-bc69ab586566") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "20f88e32-ff9c-49f2-b3a3-f965156ac04e") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "3e91210b-0688-4af8-a708-e6d0cb70446e") + ) + (pad "2" smd roundrect + (at 0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "f5563c08-7c6c-465c-9ad4-a44d9eac6e9b") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "b6a51c9b-8fbb-46ad-8099-4ce7ef33f8bd") + (at 29.55 34.5) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C3" + (at 2.95 0 0) + (layer "F.SilkS") + (uuid "6484970e-42bf-4a5a-b328-323f43514d6b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uF" + (at -3.55 0 0) + (layer "F.Fab") + (uuid "3d549d37-1fea-4453-ba1d-bc81d1ea5062") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2274d43c-ea08-4473-9a6c-fb12f6551b86") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2e09509a-3b0e-41c1-ab49-570d53f479f0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c5113d44-56de-4df9-8c49-05856012914c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/84e5ee43-1656-4504-876a-89cfe1207c34") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "106e13bc-73ce-411c-9742-d17227d8e2a5") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8e53a073-995b-4b11-8fcc-b598833ca2b0") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3b4c8b83-f0c4-4ef9-8132-2a6a82ffe001") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7a1c7041-391a-4f77-9b09-e90b5f3c2657") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cc17c00f-d025-4beb-b0f4-26b0977d7cd8") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b0c3f969-fb76-4a78-8e4e-767c9b243486") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "490b8956-c452-426d-89c5-54c8d4043c85") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2f335f4b-68d4-4da6-b921-9f3a99e2aade") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7039d5bf-e427-4a1e-8253-289f60b3f0cf") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0bc885ba-992b-432b-b222-379d6d712453") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "eb190bc5-ba0c-4c96-8922-b63f75062d2b") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pintype "passive") + (uuid "9faee7a0-ad35-48f1-bf52-a23866ef493e") + ) + (pad "2" smd roundrect + (at 0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "2335ec31-a57b-481f-8bf9-da1cc2525e54") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "b7e812e7-bedd-44d3-9515-e841199a712f") + (at 65.5 47 90) + (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x04 2.54mm single row") + (property "Reference" "J3" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "0ae299dc-0539-4f06-b109-ca112ee8aae9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SelectionKnob" + (at 0 9.95 90) + (layer "F.Fab") + (uuid "95d82d5c-8520-4e8a-9615-8ee67717ad90") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "26bc0086-e92c-4625-a4b9-9bdc3b0f1230") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bf04c786-f322-4741-a16a-8a4ae06b2970") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0a75395f-aba3-4f72-9117-78014dcfb559") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/97438a11-051e-4f1e-9a62-1c9d86760870") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9a5089c4-4190-46be-a52a-3a9138be0501") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ba6b14a5-4177-40b1-957d-f7a3d43d368c") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3215eeb1-8b24-48ad-9f43-117c6966e0ff") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e8eb380b-f0de-4cd7-8242-065a0c61344e") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "750b5f61-39cb-4860-b10f-9c3acdebbaeb") + ) + (fp_line + (start -1.33 8.95) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3b638fdd-f00b-44ee-a742-ecc507ac807b") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "10e0db53-9e0d-466f-91a7-6e50ef36c9fd") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2c81ac0a-5967-433d-8e12-ef874638f340") + ) + (fp_line + (start 1.8 9.4) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8abd8ba0-ce47-4beb-ad47-722abba325e0") + ) + (fp_line + (start -1.8 9.4) + (end 1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "80384181-6ef6-42d7-8dce-e6a1b00cf204") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4bec7dcb-4bbb-4899-b67e-07cb4e60c94e") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0648162f-abaa-4067-8974-8f07ab737ecb") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2480ce08-0c1b-4ff4-91e6-9d5cf6861f5c") + ) + (fp_line + (start 1.27 8.89) + (end -1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a00240d-af47-4c01-bb9a-a4fbab7afb43") + ) + (fp_line + (start -1.27 8.89) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c31d0557-2998-4a26-800e-c08918befc7e") + ) + (fp_text user "${REFERENCE}" + (at 0 3.81 0) + (layer "F.Fab") + (uuid "99377040-8b4c-48f4-8873-e7560cb7eebf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 16 "/KNOB2_BUT") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "1c02a5d2-0ab4-4347-8f5d-7885d0efa199") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 18 "/KNOB2_B") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "f63c1db3-abfa-474c-b78f-af47059316d3") + ) + (pad "3" thru_hole oval + (at 0 5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 17 "/KNOB2_A") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "b93bfadd-0020-4366-9720-f62f347ddf44") + ) + (pad "4" thru_hole oval + (at 0 7.62 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "035f27e4-be6a-4cfe-b411-c4ed7c7410c6") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "beffda02-de74-4d6a-959b-e3ed25c2c471") + (at 32.05 20.5) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C6" + (at 0 -1.68 360) + (layer "F.SilkS") + (uuid "b45d7f7d-e6fa-4be9-b35b-c400fe58eb46") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.68 360) + (layer "F.Fab") + (uuid "42491b04-b565-42ac-a26a-27af3ce05ecb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bb232792-d8ff-404f-9732-0b4551c23741") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cf3c2d29-13ed-4efc-912d-8e86dedbf63f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "36da30fb-7d09-4367-88f9-668092988441") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/78c93ecb-818f-4a5d-a456-76127fdfa572") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cd7b0392-cbbf-4b1e-9ca8-78418ecde488") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f6ea17f7-a0c7-4c05-95f4-5b497ce3b769") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7e154097-5530-4023-b9de-61b2439d8de8") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "167decd2-1fc0-4d25-a074-73290434c3c0") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9f058441-80a2-46d2-a49a-c718e4778a84") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e966c5be-add2-4388-9b6e-bbd40ff5dc85") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "88fcf5ab-26b7-4fbc-9713-be9a82b912fc") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2bbb9d11-c3c8-4713-93f2-f18c9b070538") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b8fdae3b-4052-4051-8838-be95efbe37ac") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8be022da-343c-4e79-be69-0a3a5ca6f040") + ) + (fp_text user "${REFERENCE}" + (at 0 0 360) + (layer "F.Fab") + (uuid "593fe41a-bcf2-4cf1-a6ce-1d163b3e58fc") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "+5V") + (pintype "passive") + (uuid "af616cec-4b06-4d4a-aac7-4ae75ff4705a") + ) + (pad "2" smd roundrect + (at 0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "e8f579dc-6e17-4d24-8236-f5c25db1710b") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "d64c0ed0-5b70-40c5-b939-0dbe9506b5ab") + (at 65.5 42 90) + (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x04 2.54mm single row") + (property "Reference" "J2" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "3b25b86c-4bbb-40cd-9a70-d6729e95e96e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "VolumeKnob" + (at 0 9.95 90) + (layer "F.Fab") + (uuid "649540a9-2ce6-4514-a343-49529481951a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "971b251b-c041-4370-b107-4e37fcd3fd8e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "09c9725e-e148-473a-80cc-f26f8f5fa92c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e448eaf1-4d4a-48dd-b41e-00d7e45fd0c3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/b2d7a06d-bdbe-4d11-afbe-2213bb983f19") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "09a9776e-e548-4066-a3d1-e7a2e7a01590") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d7359fe1-70e0-46d5-8dde-c4145aace5c2") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "418e9d7a-4086-4bc2-8685-c38486cd4a19") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2106e8b4-98c8-4f9d-9ac4-34a53931c3c5") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3591a350-3c7c-4559-bc93-87fa94e6c6d9") + ) + (fp_line + (start -1.33 8.95) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f9690ca8-e661-4972-a04f-a0a3049e7f11") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "763f953e-4dde-4899-a2ec-4d8bda603555") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "78341129-d9c9-45a9-86cd-63d138915eda") + ) + (fp_line + (start 1.8 9.4) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cad6ac4a-94fa-46f6-8f9b-a89bc1406fc2") + ) + (fp_line + (start -1.8 9.4) + (end 1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e56f597e-042b-4f7a-a5b0-82a0a476cca8") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5edce481-e2da-404e-9fb9-02d1d21a5334") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "302a27da-a423-476e-ba9b-5939cd1aca8f") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fff6508e-0859-4e8d-a3ac-0a67fe845d2e") + ) + (fp_line + (start 1.27 8.89) + (end -1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3b179ef6-72bd-4037-9f1b-132578d99a00") + ) + (fp_line + (start -1.27 8.89) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "935254c8-31b5-4d15-9672-d7a401cd624a") + ) + (fp_text user "${REFERENCE}" + (at 0 3.81 0) + (layer "F.Fab") + (uuid "d353bc0b-3c55-41b4-8481-2a24332e05dc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 13 "/KNOB1_A") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "464c37f0-12ff-4b55-9f63-a8dc08417fcb") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 14 "/KNOB1_B") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "50ed5f45-0284-4846-8490-141f5d9d1b87") + ) + (pad "3" thru_hole oval + (at 0 5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 15 "/KNOB1_BUT") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "da8a7de6-e57c-4d7b-b4e3-5df460eb6db9") + ) + (pad "4" thru_hole oval + (at 0 7.62 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "3150daf3-47db-45f2-9a0f-51ea6dfdb43a") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "da33061b-4967-40a0-ad10-eb4691003f9e") + (at 29.55 32) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C2" + (at 0 -1.68 0) + (layer "F.SilkS") + (uuid "80b81c78-d619-4a88-a4bc-3800695bb131") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uF" + (at -4.05 1.5 0) + (layer "F.Fab") + (uuid "e7ab550c-4eea-4166-a2b6-630eed96e13b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a0d131a1-5f8f-4c8e-bf1f-b4aed3d99fc1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "09f81c51-32ed-4093-b2c6-bce4fc707cc5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "da82a07a-9475-4bd3-8375-b7a639894ca2") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/47ed2581-9371-4ee6-8d2a-4d8d6518797f") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "27228f1a-7ac1-4aac-941a-e6434d0dac99") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c14ce1a3-9190-4723-9633-f1ad38bb1cae") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "32ebfc94-286a-4480-b275-bc3c1d4c1e52") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f34acdd6-7708-4d01-90f1-cbfe12c98c44") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f9ffccad-3980-478b-a166-51a08a583c57") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f036e20f-33c8-459f-a8cd-599f73060c3c") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "118dc920-b6f2-4101-a8f3-0c050d724aa8") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0f87d521-17c2-469f-8e3b-88577702bd74") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dbdfc14d-99ee-47dd-a526-0f25615f828a") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9e528e9d-c34e-47af-98f2-a61e104e764e") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "9ed28737-8655-4255-a6f9-1d4d2f885fa0") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pintype "passive") + (uuid "5536e6e5-58b5-40a6-beef-99c53f24194a") + ) + (pad "2" smd roundrect + (at 0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "2d23b636-929b-48bc-adbf-ef4b1e7c79bc") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "debc2d29-a3ea-49a5-8f85-2777a8967ee4") + (at 27.42 51.5 90) + (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x04 2.54mm single row") + (property "Reference" "J7" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "87b4c137-4f0a-4d6b-8270-6e6bb22a65cd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "I2C" + (at 0 9.95 90) + (layer "F.Fab") + (uuid "b351459b-e554-407f-9800-2c92987ad865") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fb2c136b-dfe2-4216-a8a5-16415f86809a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d5e1c233-1822-4fa8-838e-900d85b6d84f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "05df230d-3a87-4bc5-abf2-f76faa3c7331") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/0da2f368-9baa-4a75-b3b3-a0e31ce5434b") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "84a3797a-9b94-4706-ae37-367519c637f6") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "da5d6840-14b8-46e5-8bec-67c8a91854fc") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "501f0bbc-d2dc-460c-ac20-4fe47335792e") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7160a456-dbb6-48c3-a4f0-a6794db05946") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a065e860-d407-4d89-ad2f-39838911c0b2") + ) + (fp_line + (start -1.33 8.95) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f78646b1-b977-4b73-9f2a-266b0a64adb9") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "37c14d03-4674-43cd-ab3b-7f8a38d09d93") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ab88fb2c-c988-446c-84f0-938aac2111e5") + ) + (fp_line + (start 1.8 9.4) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "96201d70-2899-4062-b591-c0205657d99c") + ) + (fp_line + (start -1.8 9.4) + (end 1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bd446546-bdd7-4721-be2a-80e0653dad6b") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fc171ffd-3a99-448f-8ac1-4833e286b02a") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e7443138-4878-4679-acd3-a1d4f32f3f5f") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0227ec54-1728-48a9-a8ae-664e1fc152bb") + ) + (fp_line + (start 1.27 8.89) + (end -1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3353b6c4-9203-45f3-b8f4-5ab609c0f094") + ) + (fp_line + (start -1.27 8.89) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "97fdc025-5bb7-4c2c-ac51-1ebba174bc52") + ) + (fp_text user "${REFERENCE}" + (at 0 3.81 360) + (layer "F.Fab") + (uuid "4fefc22d-ff87-42cd-a76c-8b29c9cfcb39") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 5 "+5V") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "aadab2e8-c19d-4fc5-a567-10164500e6e3") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 6 "/I2S_DA") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "fb972cfc-f629-42aa-b9d4-7f635057804c") + ) + (pad "3" thru_hole oval + (at 0 5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "/I2S_CL") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "71ced545-b9e4-4dfd-835e-8bd0e79e2708") + ) + (pad "4" thru_hole oval + (at 0 7.62 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "e31ba988-8fd9-4c88-b59b-f9a04a5ebcd8") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "e2a2473a-e7e1-4ea3-a49e-913049532b6d") + (at 65.475 32 90) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Reference" "J6" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "d8a25f44-d44e-4ba0-af5a-126fd44c4c3c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Programming" + (at 0 7.41 90) + (layer "F.Fab") + (uuid "3d18a592-6b87-4392-b625-59a3dd7c6a97") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "96d48c6b-09f6-4f9d-9960-b44fd3bd0033") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a9628e75-caeb-41a5-b0ab-a97f84f840a9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a42a2742-9df8-4207-83dc-29aae18ec404") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/3b20fe75-ba15-43d5-833c-cb9a238f12d7") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2471b06d-614b-4943-b404-bf2d1f90f78e") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a42b98a-29ca-4220-8256-3d359af2777a") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9243bd6b-cc8a-4c70-b243-48ceeffac3e3") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3903dd1e-afd1-4531-b412-c2d53d495426") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "75421879-1a2a-41cd-8c07-786014f0c33c") + ) + (fp_line + (start -1.33 6.41) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "737408c2-2805-4755-a5ec-420648e4c9d4") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "52719374-5b0d-4097-81f7-beb9268dd23e") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6ac4e812-1d95-4c77-bbda-77ef95088a74") + ) + (fp_line + (start 1.8 6.85) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "eaa23885-8ef4-458e-92dd-f37d953cfc2c") + ) + (fp_line + (start -1.8 6.85) + (end 1.8 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "57000f9d-a90f-47fb-96ea-25c5b0044316") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bc771391-3f1b-47bd-9834-3ee2d35d4b29") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c19409c4-2f33-409f-858f-6e6072fef2b4") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8047ad9e-aab5-4863-998f-66563616421e") + ) + (fp_line + (start 1.27 6.35) + (end -1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d8fdf01a-2d5d-4398-b9c6-d01d7221036b") + ) + (fp_line + (start -1.27 6.35) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d7cd8154-a7b9-4028-bc0c-ed0492e9ff3b") + ) + (fp_text user "${REFERENCE}" + (at 0 2.54 0) + (layer "F.Fab") + (uuid "2a0258e5-6edf-4e55-94d0-133536c5d7d5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 8 "/TX") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "e0cd5989-d1ec-4bb8-ac88-b698c88f24aa") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 7 "/RX") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "2d42a0b9-654a-40b1-b067-f6b2a542dbae") + ) + (pad "3" thru_hole oval + (at 0 5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "52ca434b-f51f-4454-abf6-c05031e6c473") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "fbe97d9d-063c-4960-b73d-e81aa9233ed4") + (at 65.475 27.5 90) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Reference" "J5" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "a2897bda-3aa6-44a7-930e-64eb9063b173") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "WS2812B" + (at 0 7.41 90) + (layer "F.Fab") + (uuid "4239e8b9-1513-4478-b1a4-cc202d5f26f7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8b966329-f062-4deb-89db-4fa0eee54850") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0027e4e3-e98a-4a4f-b30d-2bb77ec723fa") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a17b92d5-5b14-4bf4-8ce4-a80ef8e1fa01") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/99fb932d-bbe8-4030-815a-74f9eb962f9b") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5da9ac81-1409-47ae-b6dc-0f3097e3046c") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c71bf1a2-bfeb-4726-ac64-83bbdd03497b") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bdf9b49a-f02a-4c38-bf65-65fd40dbd06f") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1464579e-51b7-4350-bac9-1178fbd92133") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d1cfe5b8-7d32-4b05-8f45-a328afd9077e") + ) + (fp_line + (start -1.33 6.41) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "de12943d-658d-4b98-a83f-901379892717") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "983bf77e-b14c-4186-862b-68ee814e4ffd") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f7d7c8fd-541b-453f-9096-3fb3da2332dd") + ) + (fp_line + (start 1.8 6.85) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0bd089a5-2de5-405c-8a76-bef1d224e558") + ) + (fp_line + (start -1.8 6.85) + (end 1.8 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f06d0185-f5d6-4da0-8db2-7e0dda9d5ec3") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2f5f74db-11b3-4084-8649-0568335d2de9") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c3a767ca-85ba-43dc-a2f1-3542bbc55146") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e56573df-83b1-406e-bc0f-9fb5dbe3e726") + ) + (fp_line + (start 1.27 6.35) + (end -1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d846606e-cdd5-4beb-9dfb-866f002b1542") + ) + (fp_line + (start -1.27 6.35) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "90bd4f2f-1ac0-4e8f-a02d-cc6084d1b77b") + ) + (fp_text user "${REFERENCE}" + (at 0 2.54 0) + (layer "F.Fab") + (uuid "78debf6e-a0f3-4c2a-a4ee-f4c4b32fc0b3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 5 "+5V") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "444ff77e-9656-41b4-9d69-49be79f78578") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 9 "/LED_DATA") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "01bca7a2-c91e-44ab-b928-2b9252e83af3") + ) + (pad "3" thru_hole oval + (at 0 5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "0baaeeb4-92a7-4ca1-80cd-e6dcd49d28ea") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (segment + (start 32.5 51.5) + (end 39.8 44.2) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "5976393f-00fd-4b45-9d94-57889d45fbd0") + ) + (segment + (start 39.8 44.2) + (end 41 44.2) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "ab64c217-1ddb-4921-863b-c50d7566c8a5") + ) + (segment + (start 28 40.1) + (end 28 39.9) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "2588d919-f30d-4a35-8490-ad5db53e3ddb") + ) + (segment + (start 31 35) + (end 30.5 34.5) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "3c417ad4-33b7-4054-acf5-e186e5159eda") + ) + (segment + (start 28 39.9) + (end 30.7 37.2) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "656043d5-30b1-4e01-a9ea-db5d1040a062") + ) + (segment + (start 30.7 32.2) + (end 30.5 32) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "84d8152d-45a7-43f6-a04f-4c1bbc61b7b2") + ) + (segment + (start 30.7 37.2) + (end 30.7 32.2) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "863561e3-33b3-4b76-9d76-a16022ebe0f8") + ) + (segment + (start 38.5 35) + (end 31 35) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "c0f7028d-ea11-4631-9eaf-15b9d2f66664") + ) + (segment + (start 36.33 32.77) + (end 36 33.1) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "06238f67-12a4-4d44-bd2d-1e5b3fcdf431") + ) + (segment + (start 39.75 34.04) + (end 41 34.04) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "344093ff-4d11-442e-b3bc-3386089db2d4") + ) + (segment + (start 41 34.04) + (end 41 32.77) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "45fcdd96-a7e9-4e53-ae75-6df23cfed2c7") + ) + (segment + (start 38.83 32.77) + (end 38.5 33.1) + (width 0.2) + (layer "F.Cu") + (net 3) + (uuid "94ee1d51-e75e-4f32-8c25-df1a3cb67256") + ) + (segment + (start 37 39.5) + (end 39.725 36.775) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "b8204647-c759-48ba-b4e0-3e3ce32e7b8a") + ) + (segment + (start 39.725 34.065) + (end 39.75 34.04) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "be6abff4-7e2f-4475-9d3a-9dd765aa0fa0") + ) + (segment + (start 30.7 39.5) + (end 37 39.5) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "cb2ea160-7e00-44c8-a9d8-8d5e12a5a286") + ) + (segment + (start 41 32.77) + (end 36.33 32.77) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "ee8938b1-38af-48b7-b0c0-9a05138d36fd") + ) + (segment + (start 39.725 36.775) + (end 39.725 34.065) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "f3c66e03-f476-4554-a383-d935b8333a1c") + ) + (segment + (start 28 45.46) + (end 26.96 46.5) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "157dbc80-dc0f-4e5a-a413-f50f664930cb") + ) + (segment + (start 30.5 42) + (end 30.7 41.8) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "25b09225-5291-44af-9259-e8c9396ac8c2") + ) + (segment + (start 28.9 28.3) + (end 28.6 28.6) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "25d09bee-6593-4b86-aa01-7402a5e98214") + ) + (segment + (start 28 42) + (end 30.5 42) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "65ec324f-7b03-45d8-8a36-22080da7d069") + ) + (segment + (start 28.6 28.6) + (end 28.6 34.5) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "7d0a5e6c-ecf2-4ea7-95fc-79b253d6ef5c") + ) + (segment + (start 26.775 36.325) + (end 26.775 40.775) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "82c947c6-9381-4819-8856-2e261c8d2fd6") + ) + (segment + (start 26.775 40.775) + (end 28 42) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "8e260967-0742-4e53-9972-e1af01267b98") + ) + (segment + (start 27 27) + (end 28.6 28.6) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "ab693518-ad6f-4740-945b-16d1f3492511") + ) + (segment + (start 28.6 34.5) + (end 26.775 36.325) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "ac22106a-2d73-4c05-8574-a78f9aff53ef") + ) + (segment + (start 28 42) + (end 28 45.46) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "cc78921a-7e82-459f-bc24-b20ac199d8a6") + ) + (segment + (start 30.2 28.3) + (end 28.9 28.3) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "dcba3659-094f-419c-bc28-d735468c6c90") + ) + (segment + (start 65.475 21.025) + (end 65.5 21) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "04978285-1feb-42cf-ab50-31a696affe1c") + ) + (segment + (start 37.5 21) + (end 37 20.5) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "0a2ebad7-08e8-4b86-82cb-9b99dde0e180") + ) + (segment + (start 36.5 21) + (end 37 20.5) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "5105eeff-69ea-44c4-b40b-85f1db2c9564") + ) + (segment + (start 36.5 26) + (end 36.5 21) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "683c99f3-dd3e-4899-beba-c6fcc2e47894") + ) + (segment + (start 31.7 21.1) + (end 31.7 24.5) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "7350f63e-bac8-48bc-95f0-3ce7e499e77e") + ) + (segment + (start 35 24.5) + (end 36.5 26) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "9d478da1-5ef6-4b02-88f0-dbff46885a93") + ) + (segment + (start 31.7 24.5) + (end 30.2 26) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "af15e52b-860f-433b-81e2-293fde3da576") + ) + (segment + (start 31.7 24.5) + (end 35 24.5) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "b92d0d4d-9e3d-4b0f-81fb-4f822a603b54") + ) + (segment + (start 65.475 27.5) + (end 65.475 21.025) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "d6d74758-e69e-4850-95c1-49d1b1808794") + ) + (segment + (start 31.1 20.5) + (end 31.7 21.1) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "e6aa1594-147a-405c-8c32-887472aef100") + ) + (segment + (start 65.5 21) + (end 37.5 21) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "f54f2ef3-11c4-4bc0-98cf-1a11bb8997c9") + ) + (segment + (start 41 42.93) + (end 38.53 42.93) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "51bb0ce4-2c19-47a6-bc48-90e15b894e5c") + ) + (segment + (start 38.53 42.93) + (end 29.96 51.5) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "d3ed8b77-0e5b-44aa-a15d-5ba00cec18c5") + ) + (segment + (start 66.015 34) + (end 62.5 34) + (width 0.5) + (layer "F.Cu") + (net 7) + (uuid "53c92f62-b537-4e7a-9f0f-2afdbb7efaa1") + ) + (segment + (start 68.015 32) + (end 66.015 34) + (width 0.5) + (layer "F.Cu") + (net 7) + (uuid "a69de0f6-79a0-40f3-885e-d09b615bf5da") + ) + (segment + (start 62.5 34) + (end 59.92 36.58) + (width 0.5) + (layer "F.Cu") + (net 7) + (uuid "a721d17f-9b36-422e-a369-237348a181b4") + ) + (segment + (start 59.92 36.58) + (end 58.5 36.58) + (width 0.5) + (layer "F.Cu") + (net 7) + (uuid "d3623a6e-5cd3-4838-b1aa-6c67d1676903") + ) + (segment + (start 63.06 32) + (end 65.475 32) + (width 0.5) + (layer "F.Cu") + (net 8) + (uuid "26978a47-b4f4-49e0-a0df-e60f086e7dda") + ) + (segment + (start 59.75 35.31) + (end 63.06 32) + (width 0.5) + (layer "F.Cu") + (net 8) + (uuid "45bc67fd-3f0b-4697-a1fc-5f5d56104b2d") + ) + (segment + (start 58.5 35.31) + (end 59.75 35.31) + (width 0.5) + (layer "F.Cu") + (net 8) + (uuid "9687822a-e3c7-4dbc-9246-2a36422e31d7") + ) + (segment + (start 62.49 31) + (end 59.45 34.04) + (width 0.5) + (layer "F.Cu") + (net 9) + (uuid "15d255ca-a385-40bf-8d04-e49f11f8936d") + ) + (segment + (start 68.015 27.5) + (end 67.775 27.5) + (width 0.2) + (layer "F.Cu") + (net 9) + (uuid "39d27aab-dbf2-473f-b649-3d1543d98f62") + ) + (segment + (start 64.275 31) + (end 62.49 31) + (width 0.5) + (layer "F.Cu") + (net 9) + (uuid "8f4fe7f3-13f7-4dff-b3d8-859014f9d4b1") + ) + (segment + (start 67.775 27.5) + (end 64.275 31) + (width 0.5) + (layer "F.Cu") + (net 9) + (uuid "9056d5e6-ab34-44c4-9cb5-d2d5e65ccc77") + ) + (segment + (start 59.45 34.04) + (end 58.5 34.04) + (width 0.5) + (layer "F.Cu") + (net 9) + (uuid "a4475bd1-c8cd-4c4a-a6ea-7839e2a18ac1") + ) + (segment + (start 70.42 37) + (end 66.92 40.5) + (width 0.5) + (layer "F.Cu") + (net 10) + (uuid "1d5028bf-49b1-471a-9dae-c79ff0b8a0ea") + ) + (segment + (start 66.92 40.5) + (end 61.06066 40.5) + (width 0.5) + (layer "F.Cu") + (net 10) + (uuid "48dbe4d8-b4d5-4d86-8911-2cc1b9a5e6ab") + ) + (segment + (start 61.06066 40.5) + (end 59.90066 41.66) + (width 0.5) + (layer "F.Cu") + (net 10) + (uuid "5e85e3fd-0b5e-4fa0-ae2c-d66a3792d4c0") + ) + (segment + (start 59.90066 41.66) + (end 58.5 41.66) + (width 0.5) + (layer "F.Cu") + (net 10) + (uuid "9480eba0-566c-49c7-a927-e7b864bbd263") + ) + (segment + (start 61.5 39) + (end 60.11 40.39) + (width 0.5) + (layer "F.Cu") + (net 11) + (uuid "2e701a1e-202c-4fb4-a709-dc34bfd9b0e4") + ) + (segment + (start 60.11 40.39) + (end 58.5 40.39) + (width 0.5) + (layer "F.Cu") + (net 11) + (uuid "4f7cc984-a9e4-4d36-8f18-fb14e4751998") + ) + (segment + (start 67.88 37) + (end 65.88 39) + (width 0.5) + (layer "F.Cu") + (net 11) + (uuid "c4039a3c-2c8f-487d-bc38-fb2d0911a805") + ) + (segment + (start 65.88 39) + (end 61.5 39) + (width 0.5) + (layer "F.Cu") + (net 11) + (uuid "f1e4b75c-f66f-49e4-a6d5-eb52ae63c94e") + ) + (segment + (start 64.49 37.85) + (end 58.5 37.85) + (width 0.5) + (layer "F.Cu") + (net 12) + (uuid "2c82313b-5888-465e-b2d7-3605ed4fa2a3") + ) + (segment + (start 65.34 37) + (end 64.49 37.85) + (width 0.5) + (layer "F.Cu") + (net 12) + (uuid "35be048f-3fdc-4d84-befa-f3c833fda83a") + ) + (segment + (start 65.5 42) + (end 64.57 42.93) + (width 0.5) + (layer "F.Cu") + (net 13) + (uuid "611a03a8-1d92-4e29-b05d-4e274b544722") + ) + (segment + (start 64.57 42.93) + (end 58.5 42.93) + (width 0.5) + (layer "F.Cu") + (net 13) + (uuid "a7465e24-b715-41b0-9c47-50f672467b98") + ) + (segment + (start 68.04 42) + (end 66.04 44) + (width 0.5) + (layer "F.Cu") + (net 14) + (uuid "16917d9c-29d5-4f9a-a349-52e111f431c9") + ) + (segment + (start 62.5 44) + (end 59.76 46.74) + (width 0.5) + (layer "F.Cu") + (net 14) + (uuid "3d5e818f-8a8b-422f-ae7d-a76dd7fc971b") + ) + (segment + (start 66.04 44) + (end 62.5 44) + (width 0.5) + (layer "F.Cu") + (net 14) + (uuid "3dabb86d-9380-4da5-b1b2-a8804557bd2f") + ) + (segment + (start 59.76 46.74) + (end 58.5 46.74) + (width 0.5) + (layer "F.Cu") + (net 14) + (uuid "5ef9e9a0-f606-475d-a1fa-2f37c0e396e4") + ) + (segment + (start 59.45 46.74) + (end 58.5 46.74) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "d28112a2-de03-43a7-ae5d-4ca45642429d") + ) + (segment + (start 63.96 44.75) + (end 59.43 49.28) + (width 0.5) + (layer "F.Cu") + (net 15) + (uuid "16b4dc8b-1cac-4f9b-a54c-9e2245783cba") + ) + (segment + (start 67.83 44.75) + (end 63.96 44.75) + (width 0.5) + (layer "F.Cu") + (net 15) + (uuid "1ec19ab1-6413-4dde-8189-ca8227e44955") + ) + (segment + (start 59.43 49.28) + (end 58.5 49.28) + (width 0.5) + (layer "F.Cu") + (net 15) + (uuid "20ae9f76-2ec9-4738-8b45-9999d7d95372") + ) + (segment + (start 70.58 42) + (end 67.83 44.75) + (width 0.5) + (layer "F.Cu") + (net 15) + (uuid "5a055c25-cfc1-41af-befb-e542193faf24") + ) + (segment + (start 59.03 49.28) + (end 58.5 49.28) + (width 0.2) + (layer "F.Cu") + (net 15) + (uuid "abd1f911-90c2-4833-84be-c8e77787bbe5") + ) + (segment + (start 65.5 49.56) + (end 65.5 47) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "04f451b5-c555-4633-bdbc-930f139a47d4") + ) + (segment + (start 39 50.5) + (end 38.75 50.75) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "0ddf168a-2ef0-4ee8-9013-e67f580994c8") + ) + (segment + (start 59.06 56) + (end 65.5 49.56) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "1f9d9823-ac60-48ed-8812-705071a276b5") + ) + (segment + (start 38.75 56) + (end 59.06 56) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "6030beb1-063d-454a-b1b7-890ef8403df0") + ) + (segment + (start 39.05 50.55) + (end 39 50.5) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "88d7bc9c-415c-47ac-bdfc-bb7cfcbe7e27") + ) + (segment + (start 41 50.55) + (end 39.05 50.55) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "a88eff9c-c4e5-47c7-ae21-8a2b8b30d3c9") + ) + (segment + (start 38.75 50.75) + (end 38.75 56) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "bfbbfb10-317b-4eb0-ba56-2d5129facaff") + ) + (segment + (start 37 49.81) + (end 37 57.5) + (width 0.5) + (layer "F.Cu") + (net 17) + (uuid "18a62508-cd3f-4b55-bc72-516c0d170718") + ) + (segment + (start 60.08 57.5) + (end 70.58 47) + (width 0.5) + (layer "F.Cu") + (net 17) + (uuid "2777631d-9cf0-44c8-82b6-83885ac446c1") + ) + (segment + (start 37 57.5) + (end 60.08 57.5) + (width 0.5) + (layer "F.Cu") + (net 17) + (uuid "3b0a35e8-7abc-4afe-9f57-0df6f581ef54") + ) + (segment + (start 41 46.74) + (end 40.07 46.74) + (width 0.5) + (layer "F.Cu") + (net 17) + (uuid "69eaed03-3c51-4cd6-b3e4-4d7dee90e8b2") + ) + (segment + (start 40.07 46.74) + (end 37 49.81) + (width 0.5) + (layer "F.Cu") + (net 17) + (uuid "c9219d57-ff3a-4032-bc15-28d9d29b3d10") + ) + (segment + (start 40.07 48.01) + (end 41 48.01) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "0710ac63-cfe7-44e0-8b9b-d1e50a9f994e") + ) + (segment + (start 38 50.08) + (end 40.07 48.01) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "24fd9dda-6213-43dd-8f78-faaeb4035de9") + ) + (segment + (start 38 56.75) + (end 38 50.08) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "409d781f-8b3e-450b-9c55-43c5e9fdb60d") + ) + (segment + (start 68.04 47) + (end 68.04 48.47934) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "4f66cbdb-1665-48a4-bd71-d2b21b3a156a") + ) + (segment + (start 68.04 48.47934) + (end 59.76934 56.75) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "54106448-bd9b-4de9-8509-e75fe1151408") + ) + (segment + (start 59.76934 56.75) + (end 38 56.75) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "632ecefc-3d7d-4233-942d-9b752534305b") + ) + (zone + (net 2) + (net_name "GND") + (layer "F.Cu") + (uuid "f373d697-d6be-4309-aef3-c13613154185") + (hatch edge 0.5) + (connect_pads + (clearance 0.5) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 20 15) (xy 80 15) (xy 80 65) (xy 20 65) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 79.943039 15.019685) (xy 79.988794 15.072489) (xy 80 15.124) (xy 80 64.876) (xy 79.980315 64.943039) + (xy 79.927511 64.988794) (xy 79.876 65) (xy 20.124 65) (xy 20.056961 64.980315) (xy 20.011206 64.927511) + (xy 20 64.876) (xy 20 45.602135) (xy 25.6095 45.602135) (xy 25.6095 47.39787) (xy 25.609501 47.397876) + (xy 25.615908 47.457483) (xy 25.666202 47.592328) (xy 25.666206 47.592335) (xy 25.752452 47.707544) + (xy 25.752455 47.707547) (xy 25.867664 47.793793) (xy 25.867671 47.793797) (xy 26.002517 47.844091) + (xy 26.002516 47.844091) (xy 26.009444 47.844835) (xy 26.062127 47.8505) (xy 27.857872 47.850499) + (xy 27.917483 47.844091) (xy 28.052331 47.793796) (xy 28.167546 47.707546) (xy 28.253796 47.592331) + (xy 28.303002 47.460401) (xy 28.344872 47.404468) (xy 28.410337 47.38005) (xy 28.47861 47.394901) + (xy 28.506865 47.416053) (xy 28.628917 47.538105) (xy 28.822421 47.6736) (xy 29.036507 47.773429) + (xy 29.036516 47.773433) (xy 29.25 47.830634) (xy 29.25 46.933012) (xy 29.307007 46.965925) (xy 29.434174 47) + (xy 29.565826 47) (xy 29.692993 46.965925) (xy 29.75 46.933012) (xy 29.75 47.830633) (xy 29.963483 47.773433) + (xy 29.963492 47.773429) (xy 30.177578 47.6736) (xy 30.371082 47.538105) (xy 30.538105 47.371082) + (xy 30.6736 47.177578) (xy 30.773429 46.963492) (xy 30.773432 46.963486) (xy 30.830636 46.75) (xy 29.933012 46.75) + (xy 29.965925 46.692993) (xy 30 46.565826) (xy 30 46.434174) (xy 29.965925 46.307007) (xy 29.933012 46.25) + (xy 30.830636 46.25) (xy 30.830635 46.249999) (xy 30.773432 46.036513) (xy 30.773429 46.036507) + (xy 30.6736 45.822422) (xy 30.673599 45.82242) (xy 30.538113 45.628926) (xy 30.538108 45.62892) + (xy 30.371082 45.461894) (xy 30.177578 45.326399) (xy 29.963492 45.22657) (xy 29.963486 45.226567) + (xy 29.75 45.169364) (xy 29.75 46.066988) (xy 29.692993 46.034075) (xy 29.565826 46) (xy 29.434174 46) + (xy 29.307007 46.034075) (xy 29.25 46.066988) (xy 29.25 45.169364) (xy 29.249999 45.169364) (xy 29.036513 45.226567) + (xy 29.036502 45.226571) (xy 28.926904 45.277678) (xy 28.857827 45.28817) (xy 28.794043 45.25965) + (xy 28.755804 45.201173) (xy 28.7505 45.165296) (xy 28.7505 43.031057) (xy 28.770185 42.964018) + (xy 28.809401 42.92552) (xy 28.943656 42.842712) (xy 28.999549 42.786819) (xy 29.060872 42.753334) + (xy 29.08723 42.7505) (xy 29.3549 42.7505) (xy 29.421939 42.770185) (xy 29.447405 42.793086) (xy 29.447524 42.792968) + (xy 29.449767 42.795211) (xy 29.451545 42.79681) (xy 29.452278 42.797722) (xy 29.600704 42.91703) + (xy 29.600707 42.917032) (xy 29.771302 43.001639) (xy 29.771303 43.001639) (xy 29.771307 43.001641) + (xy 29.956111 43.0476) (xy 29.998877 43.0505) (xy 31.401122 43.050499) (xy 31.443889 43.0476) (xy 31.628693 43.001641) + (xy 31.799296 42.91703) (xy 31.947722 42.797722) (xy 32.06703 42.649296) (xy 32.151641 42.478693) + (xy 32.1976 42.293889) (xy 32.2005 42.251123) (xy 32.200499 41.348878) (xy 32.1976 41.306111) (xy 32.151641 41.121307) + (xy 32.129872 41.077413) (xy 32.067032 40.950707) (xy 32.06703 40.950704) (xy 31.947722 40.802278) + (xy 31.947721 40.802277) (xy 31.878514 40.746647) (xy 31.838595 40.689304) (xy 31.836015 40.619482) + (xy 31.871594 40.559349) (xy 31.878514 40.553353) (xy 31.887909 40.5458) (xy 31.947722 40.497722) + (xy 32.06703 40.349296) (xy 32.081854 40.319406) (xy 32.129275 40.268093) (xy 32.192942 40.2505) + (xy 35.375501 40.2505) (xy 35.44254 40.270185) (xy 35.488295 40.322989) (xy 35.499501 40.3745) (xy 35.499501 40.958036) + (xy 35.502691 40.993917) (xy 35.510113 41.077415) (xy 35.566089 41.273045) (xy 35.56609 41.273048) + (xy 35.566091 41.273049) (xy 35.660302 41.453407) (xy 35.660304 41.453409) (xy 35.78889 41.611109) + (xy 35.882803 41.687684) (xy 35.946593 41.739698) (xy 36.126951 41.833909) (xy 36.322582 41.889886) + (xy 36.441963 41.9005) (xy 37.558036 41.900499) (xy 37.677418 41.889886) (xy 37.873049 41.833909) + (xy 38.053407 41.739698) (xy 38.211109 41.611109) (xy 38.339698 41.453407) (xy 38.433909 41.273049) + (xy 38.489886 41.077418) (xy 38.5005 40.958037) (xy 38.5005 40.887844) (xy 39.75 40.887844) (xy 39.756401 40.947372) + (xy 39.756404 40.947383) (xy 39.769191 40.981668) (xy 39.774175 41.05136) (xy 39.769191 41.068332) + (xy 39.756404 41.102616) (xy 39.756401 41.102627) (xy 39.75 41.162155) (xy 39.75 41.41) (xy 40.75 41.41) + (xy 41.25 41.41) (xy 42.25 41.41) (xy 42.25 41.192844) (xy 45.9 41.192844) (xy 45.906401 41.252372) + (xy 45.906403 41.252379) (xy 45.956645 41.387086) (xy 45.956649 41.387093) (xy 46.042809 41.502187) + (xy 46.042812 41.50219) (xy 46.157906 41.58835) (xy 46.157913 41.588354) (xy 46.29262 41.638596) + (xy 46.292627 41.638598) (xy 46.352155 41.644999) (xy 46.352172 41.645) (xy 46.6 41.645) (xy 47.1 41.645) + (xy 47.347828 41.645) (xy 47.347844 41.644999) (xy 47.407372 41.638598) (xy 47.407376 41.638597) + (xy 47.506666 41.601564) (xy 47.576358 41.59658) (xy 47.593334 41.601564) (xy 47.692623 41.638597) + (xy 47.692627 41.638598) (xy 47.752155 41.644999) (xy 47.752172 41.645) (xy 48 41.645) (xy 48.5 41.645) + (xy 48.747828 41.645) (xy 48.747844 41.644999) (xy 48.807372 41.638598) (xy 48.807376 41.638597) + (xy 48.906666 41.601564) (xy 48.976358 41.59658) (xy 48.993334 41.601564) (xy 49.092623 41.638597) + (xy 49.092627 41.638598) (xy 49.152155 41.644999) (xy 49.152172 41.645) (xy 49.4 41.645) (xy 49.9 41.645) + (xy 50.147828 41.645) (xy 50.147844 41.644999) (xy 50.207372 41.638598) (xy 50.207379 41.638596) + (xy 50.342086 41.588354) (xy 50.342093 41.58835) (xy 50.457187 41.50219) (xy 50.45719 41.502187) + (xy 50.54335 41.387093) (xy 50.543354 41.387086) (xy 50.593596 41.252379) (xy 50.593598 41.252372) + (xy 50.599999 41.192844) (xy 50.6 41.192827) (xy 50.6 40.945) (xy 49.9 40.945) (xy 49.9 41.645) + (xy 49.4 41.645) (xy 49.4 40.945) (xy 48.5 40.945) (xy 48.5 41.645) (xy 48 41.645) (xy 48 40.945) + (xy 47.1 40.945) (xy 47.1 41.645) (xy 46.6 41.645) (xy 46.6 40.945) (xy 45.9 40.945) (xy 45.9 41.192844) + (xy 42.25 41.192844) (xy 42.25 41.162172) (xy 42.249999 41.162155) (xy 42.243598 41.102627) (xy 42.243597 41.102624) + (xy 42.230808 41.068335) (xy 42.225822 40.998644) (xy 42.230808 40.981665) (xy 42.243597 40.947375) + (xy 42.243598 40.947372) (xy 42.249999 40.887844) (xy 42.25 40.887827) (xy 42.25 40.64) (xy 41.25 40.64) + (xy 41.25 41.41) (xy 40.75 41.41) (xy 40.75 40.64) (xy 39.75 40.64) (xy 39.75 40.887844) (xy 38.5005 40.887844) + (xy 38.500499 39.617844) (xy 39.75 39.617844) (xy 39.756401 39.677372) (xy 39.756404 39.677383) + (xy 39.769191 39.711668) (xy 39.774175 39.78136) (xy 39.769191 39.798332) (xy 39.756404 39.832616) + (xy 39.756401 39.832627) (xy 39.75 39.892155) (xy 39.75 40.14) (xy 40.75 40.14) (xy 41.25 40.14) + (xy 42.25 40.14) (xy 42.25 39.892172) (xy 42.249999 39.892155) (xy 42.243598 39.832627) (xy 42.243597 39.832624) + (xy 42.230808 39.798335) (xy 42.230415 39.792844) (xy 45.9 39.792844) (xy 45.906401 39.852372) (xy 45.906403 39.852383) + (xy 45.943434 39.951668) (xy 45.948418 40.02136) (xy 45.943434 40.038332) (xy 45.906403 40.137616) + (xy 45.906401 40.137627) (xy 45.9 40.197155) (xy 45.9 40.445) (xy 46.6 40.445) (xy 47.1 40.445) + (xy 48 40.445) (xy 48.5 40.445) (xy 49.4 40.445) (xy 49.9 40.445) (xy 50.6 40.445) (xy 50.6 40.197172) + (xy 50.599999 40.197155) (xy 50.593598 40.137627) (xy 50.593597 40.137623) (xy 50.556564 40.038334) + (xy 50.55158 39.968642) (xy 50.556564 39.951666) (xy 50.593597 39.852376) (xy 50.593598 39.852372) + (xy 50.599999 39.792844) (xy 50.6 39.792827) (xy 50.6 39.545) (xy 49.9 39.545) (xy 49.9 40.445) + (xy 49.4 40.445) (xy 49.4 39.545) (xy 48.5 39.545) (xy 48.5 40.445) (xy 48 40.445) (xy 48 39.545) + (xy 47.1 39.545) (xy 47.1 40.445) (xy 46.6 40.445) (xy 46.6 39.545) (xy 45.9 39.545) (xy 45.9 39.792844) + (xy 42.230415 39.792844) (xy 42.225822 39.728644) (xy 42.230808 39.711665) (xy 42.243597 39.677375) + (xy 42.243598 39.677372) (xy 42.249999 39.617844) (xy 42.25 39.617827) (xy 42.25 39.37) (xy 41.25 39.37) + (xy 41.25 40.14) (xy 40.75 40.14) (xy 40.75 39.37) (xy 39.75 39.37) (xy 39.75 39.617844) (xy 38.500499 39.617844) + (xy 38.500499 39.112228) (xy 38.520184 39.04519) (xy 38.536813 39.024553) (xy 39.53832 38.023047) + (xy 39.599642 37.989563) (xy 39.669334 37.994547) (xy 39.725267 38.036419) (xy 39.749684 38.101883) + (xy 39.75 38.110729) (xy 39.75 38.347844) (xy 39.756401 38.407372) (xy 39.756404 38.407383) (xy 39.769191 38.441668) + (xy 39.774175 38.51136) (xy 39.769191 38.528332) (xy 39.756404 38.562616) (xy 39.756401 38.562627) + (xy 39.75 38.622155) (xy 39.75 38.87) (xy 40.75 38.87) (xy 41.25 38.87) (xy 42.25 38.87) (xy 42.25 38.622172) + (xy 42.249999 38.622155) (xy 42.243598 38.562627) (xy 42.243597 38.562624) (xy 42.230808 38.528335) + (xy 42.225822 38.458644) (xy 42.230808 38.441665) (xy 42.243597 38.407375) (xy 42.243598 38.407372) + (xy 42.24516 38.392844) (xy 45.895 38.392844) (xy 45.901401 38.452372) (xy 45.901403 38.452379) + (xy 45.940935 38.558369) (xy 45.945919 38.62806) (xy 45.940935 38.645035) (xy 45.906403 38.737619) + (xy 45.906401 38.737627) (xy 45.9 38.797155) (xy 45.9 39.045) (xy 46.6 39.045) (xy 46.6 38.861962) + (xy 46.597834 38.857996) (xy 46.595 38.831638) (xy 46.595 38.328037) (xy 47.095 38.328037) (xy 47.097166 38.332004) + (xy 47.1 38.358362) (xy 47.1 39.045) (xy 48 39.045) (xy 48.5 39.045) (xy 49.4 39.045) (xy 49.9 39.045) + (xy 50.6 39.045) (xy 50.6 38.797172) (xy 50.599999 38.797155) (xy 50.593598 38.737627) (xy 50.593597 38.737623) + (xy 50.556564 38.638334) (xy 50.55158 38.568642) (xy 50.556564 38.551666) (xy 50.593597 38.452376) + (xy 50.593598 38.452372) (xy 50.599999 38.392844) (xy 50.6 38.392827) (xy 50.6 38.145) (xy 49.9 38.145) + (xy 49.9 39.045) (xy 49.4 39.045) (xy 49.4 38.145) (xy 48.5 38.145) (xy 48.5 39.045) (xy 48 39.045) + (xy 48 38.145) (xy 47.095 38.145) (xy 47.095 38.328037) (xy 46.595 38.328037) (xy 46.595 38.145) + (xy 45.895 38.145) (xy 45.895 38.392844) (xy 42.24516 38.392844) (xy 42.249999 38.347844) (xy 42.25 38.347827) + (xy 42.25 38.1) (xy 41.25 38.1) (xy 41.25 38.87) (xy 40.75 38.87) (xy 40.75 37.6) (xy 41.25 37.6) + (xy 42.25 37.6) (xy 42.25 37.397155) (xy 45.895 37.397155) (xy 45.895 37.645) (xy 46.595 37.645) + (xy 47.095 37.645) (xy 48 37.645) (xy 48.5 37.645) (xy 49.4 37.645) (xy 49.9 37.645) (xy 50.6 37.645) + (xy 50.6 37.397172) (xy 50.599999 37.397155) (xy 50.593598 37.337627) (xy 50.593596 37.33762) (xy 50.543354 37.202913) + (xy 50.54335 37.202906) (xy 50.45719 37.087812) (xy 50.457187 37.087809) (xy 50.342093 37.001649) + (xy 50.342086 37.001645) (xy 50.207379 36.951403) (xy 50.207372 36.951401) (xy 50.147844 36.945) + (xy 49.9 36.945) (xy 49.9 37.645) (xy 49.4 37.645) (xy 49.4 36.945) (xy 49.152155 36.945) (xy 49.092627 36.951401) + (xy 49.092616 36.951403) (xy 48.993332 36.988434) (xy 48.92364 36.993418) (xy 48.906668 36.988434) + (xy 48.807383 36.951403) (xy 48.807372 36.951401) (xy 48.747844 36.945) (xy 48.5 36.945) (xy 48.5 37.645) + (xy 48 37.645) (xy 48 36.945) (xy 47.752155 36.945) (xy 47.692627 36.951401) (xy 47.692619 36.951403) + (xy 47.590833 36.989367) (xy 47.521141 36.994351) (xy 47.504167 36.989367) (xy 47.40238 36.951403) + (xy 47.402372 36.951401) (xy 47.342844 36.945) (xy 47.095 36.945) (xy 47.095 37.645) (xy 46.595 37.645) + (xy 46.595 36.945) (xy 46.347155 36.945) (xy 46.287627 36.951401) (xy 46.28762 36.951403) (xy 46.152913 37.001645) + (xy 46.152906 37.001649) (xy 46.037812 37.087809) (xy 46.037809 37.087812) (xy 45.951649 37.202906) + (xy 45.951645 37.202913) (xy 45.901403 37.33762) (xy 45.901401 37.337627) (xy 45.895 37.397155) + (xy 42.25 37.397155) (xy 42.25 37.352172) (xy 42.249999 37.352155) (xy 42.243598 37.292627) (xy 42.243597 37.292624) + (xy 42.230808 37.258335) (xy 42.225822 37.188644) (xy 42.230808 37.171665) (xy 42.243597 37.137375) + (xy 42.243598 37.137372) (xy 42.249999 37.077844) (xy 42.25 37.077827) (xy 42.25 36.83) (xy 41.25 36.83) + (xy 41.25 37.6) (xy 40.75 37.6) (xy 40.75 36.33) (xy 41.25 36.33) (xy 42.25 36.33) (xy 42.25 36.082172) + (xy 42.249999 36.082155) (xy 42.243598 36.022627) (xy 42.243597 36.022624) (xy 42.230808 35.988335) + (xy 42.225822 35.918644) (xy 42.230808 35.901665) (xy 42.243597 35.867375) (xy 42.243598 35.867372) + (xy 42.249999 35.807844) (xy 42.25 35.807827) (xy 42.25 35.56) (xy 41.25 35.56) (xy 41.25 36.33) + (xy 40.75 36.33) (xy 40.75 35.184) (xy 40.769685 35.116961) (xy 40.822489 35.071206) (xy 40.874 35.06) + (xy 42.25 35.06) (xy 42.25 34.812172) (xy 42.249999 34.812155) (xy 42.243597 34.752622) (xy 42.243597 34.75262) + (xy 42.231075 34.719048) (xy 42.226089 34.649356) (xy 42.231071 34.63239) (xy 42.244091 34.597483) + (xy 42.2505 34.537873) (xy 42.250499 33.542128) (xy 42.244091 33.482517) (xy 42.23134 33.448332) + (xy 42.226357 33.378642) (xy 42.231338 33.361672) (xy 42.244091 33.327483) (xy 42.2505 33.267873) + (xy 42.250499 32.272128) (xy 42.244091 32.212517) (xy 42.231073 32.177616) (xy 42.22609 32.107926) + (xy 42.231075 32.090949) (xy 42.243597 32.057375) (xy 42.243598 32.057372) (xy 42.249999 31.997844) + (xy 57.25 31.997844) (xy 57.256401 32.057372) (xy 57.256404 32.057383) (xy 57.269191 32.091668) + (xy 57.274175 32.16136) (xy 57.269191 32.178332) (xy 57.256404 32.212616) (xy 57.256401 32.212627) + (xy 57.25 32.272155) (xy 57.25 32.52) (xy 58.25 32.52) (xy 58.25 31.75) (xy 57.25 31.75) (xy 57.25 31.997844) + (xy 42.249999 31.997844) (xy 42.25 31.997827) (xy 42.25 31.75) (xy 39.75 31.75) (xy 39.75 31.8955) + (xy 39.730315 31.962539) (xy 39.677511 32.008294) (xy 39.626 32.0195) (xy 36.25608 32.0195) (xy 36.111093 32.04834) + (xy 36.111085 32.048342) (xy 36.010367 32.090061) (xy 35.962915 32.0995) (xy 35.474998 32.0995) + (xy 35.47498 32.099501) (xy 35.372203 32.11) (xy 35.3722 32.110001) (xy 35.205668 32.165185) (xy 35.205663 32.165187) + (xy 35.056342 32.257289) (xy 34.932289 32.381342) (xy 34.840187 32.530663) (xy 34.840186 32.530666) + (xy 34.785001 32.697203) (xy 34.785001 32.697204) (xy 34.785 32.697204) (xy 34.7745 32.799983) (xy 34.7745 33.400001) + (xy 34.774501 33.400019) (xy 34.785 33.502796) (xy 34.785001 33.502799) (xy 34.840185 33.669331) + (xy 34.840187 33.669336) (xy 34.862728 33.70588) (xy 34.932288 33.818656) (xy 35.056344 33.942712) + (xy 35.059628 33.944737) (xy 35.059653 33.944753) (xy 35.061445 33.946746) (xy 35.062011 33.947193) + (xy 35.061934 33.947289) (xy 35.106379 33.996699) (xy 35.117603 34.065661) (xy 35.089761 34.129744) + (xy 35.059665 34.155826) (xy 35.05666 34.157679) (xy 35.056655 34.157683) (xy 34.932684 34.281654) + (xy 34.840643 34.430875) (xy 34.840641 34.43088) (xy 34.785494 34.597302) (xy 34.785493 34.597309) + (xy 34.775 34.700013) (xy 34.775 34.75) (xy 38.626 34.75) (xy 38.693039 34.769685) (xy 38.738794 34.822489) + (xy 38.75 34.874) (xy 38.75 35.999999) (xy 38.8505 35.999999) (xy 38.917539 36.019684) (xy 38.963294 36.072488) + (xy 38.9745 36.123999) (xy 38.9745 36.412769) (xy 38.954815 36.479808) (xy 38.938181 36.50045) (xy 38.19985 37.23878) + (xy 38.138527 37.272265) (xy 38.068835 37.267281) (xy 38.054757 37.261008) (xy 38.053409 37.260304) + (xy 38.053407 37.260302) (xy 37.873049 37.166091) (xy 37.873048 37.16609) (xy 37.873045 37.166089) + (xy 37.748646 37.130495) (xy 37.677418 37.110114) (xy 37.677415 37.110113) (xy 37.677413 37.110113) + (xy 37.611102 37.104217) (xy 37.558037 37.0995) (xy 37.558032 37.0995) (xy 36.441971 37.0995) (xy 36.441965 37.0995) + (xy 36.441964 37.099501) (xy 36.430316 37.100536) (xy 36.322584 37.110113) (xy 36.126954 37.166089) + (xy 36.056472 37.202906) (xy 35.946593 37.260302) (xy 35.946591 37.260303) (xy 35.94659 37.260304) + (xy 35.78889 37.38889) (xy 35.660304 37.54659) (xy 35.566089 37.726954) (xy 35.52476 37.871396) + (xy 35.517193 37.897844) (xy 35.510114 37.922583) (xy 35.510113 37.922586) (xy 35.50702 37.957379) + (xy 35.499809 38.038495) (xy 35.4995 38.041966) (xy 35.4995 38.6255) (xy 35.479815 38.692539) (xy 35.427011 38.738294) + (xy 35.3755 38.7495) (xy 32.192942 38.7495) (xy 32.125903 38.729815) (xy 32.081854 38.680594) (xy 32.06703 38.650704) + (xy 31.947724 38.50228) (xy 31.947722 38.502278) (xy 31.878112 38.446324) (xy 31.838196 38.388985) + (xy 31.835616 38.319163) (xy 31.871194 38.25903) (xy 31.878115 38.253033) (xy 31.947366 38.197367) + (xy 31.947367 38.197366) (xy 32.066607 38.049025) (xy 32.066609 38.049022) (xy 32.151168 37.878523) + (xy 32.197102 37.693824) (xy 32.2 37.651096) (xy 32.2 37.45) (xy 29.2 37.45) (xy 29.2 37.651096) + (xy 29.202897 37.693824) (xy 29.248831 37.878523) (xy 29.33339 38.049022) (xy 29.333392 38.049025) + (xy 29.45263 38.197364) (xy 29.521884 38.253031) (xy 29.561803 38.310375) (xy 29.564383 38.380197) + (xy 29.528805 38.440329) (xy 29.521885 38.446326) (xy 29.462353 38.49418) (xy 29.452276 38.50228) + (xy 29.332969 38.650704) (xy 29.332967 38.650707) (xy 29.24836 38.821302) (xy 29.2024 39.006107) + (xy 29.1995 39.048879) (xy 29.1995 39.214477) (xy 29.179815 39.281516) (xy 29.127011 39.327271) + (xy 29.057853 39.337215) (xy 28.994297 39.30819) (xy 28.987819 39.302158) (xy 28.943345 39.257684) + (xy 28.794124 39.165643) (xy 28.794119 39.165641) (xy 28.627697 39.110494) (xy 28.62769 39.110493) + (xy 28.524986 39.1) (xy 28.25 39.1) (xy 28.25 40.226) (xy 28.230315 40.293039) (xy 28.177511 40.338794) + (xy 28.126 40.35) (xy 27.874 40.35) (xy 27.806961 40.330315) (xy 27.761206 40.277511) (xy 27.75 40.226) + (xy 27.75 39.1) (xy 27.6495 39.1) (xy 27.582461 39.080315) (xy 27.536706 39.027511) (xy 27.5255 38.976) + (xy 27.5255 36.687229) (xy 27.545185 36.62019) (xy 27.561815 36.599552) (xy 28.399549 35.761817) + (xy 28.460872 35.728333) (xy 28.48723 35.725499) (xy 28.900002 35.725499) (xy 28.900008 35.725499) + (xy 29.002797 35.714999) (xy 29.169334 35.659814) (xy 29.318656 35.567712) (xy 29.442712 35.443656) + (xy 29.444752 35.440347) (xy 29.446745 35.438555) (xy 29.447193 35.437989) (xy 29.447289 35.438065) + (xy 29.496694 35.393623) (xy 29.565656 35.382395) (xy 29.62974 35.410234) (xy 29.655829 35.440339) + (xy 29.657681 35.443341) (xy 29.657683 35.443344) (xy 29.781654 35.567315) (xy 29.930875 35.659356) + (xy 29.93088 35.659358) (xy 30.078559 35.708294) (xy 30.136004 35.748066) (xy 30.162827 35.812582) + (xy 30.150512 35.881358) (xy 30.102969 35.932558) (xy 30.039555 35.95) (xy 29.998903 35.95) (xy 29.956175 35.952897) + (xy 29.771476 35.998831) (xy 29.600977 36.08339) (xy 29.600974 36.083392) (xy 29.452633 36.202632) + (xy 29.452632 36.202633) (xy 29.333392 36.350974) (xy 29.33339 36.350977) (xy 29.248831 36.521476) + (xy 29.202897 36.706175) (xy 29.2 36.748903) (xy 29.2 36.95) (xy 32.2 36.95) (xy 32.2 36.748903) + (xy 32.197102 36.706175) (xy 32.151168 36.521476) (xy 32.066609 36.350977) (xy 32.066607 36.350974) + (xy 31.947367 36.202633) (xy 31.947366 36.202632) (xy 31.799025 36.083392) (xy 31.799022 36.08339) + (xy 31.628523 35.998831) (xy 31.443824 35.952897) (xy 31.401097 35.95) (xy 30.960447 35.95) (xy 30.893408 35.930315) + (xy 30.847653 35.877511) (xy 30.837709 35.808353) (xy 30.866734 35.744797) (xy 30.921443 35.708294) + (xy 31.069119 35.659358) (xy 31.069124 35.659356) (xy 31.218345 35.567315) (xy 31.342315 35.443345) + (xy 31.43074 35.299986) (xy 34.775001 35.299986) (xy 34.785494 35.402697) (xy 34.840641 35.569119) + (xy 34.840643 35.569124) (xy 34.932684 35.718345) (xy 35.056654 35.842315) (xy 35.205875 35.934356) + (xy 35.20588 35.934358) (xy 35.372302 35.989505) (xy 35.372309 35.989506) (xy 35.475019 35.999999) + (xy 35.749999 35.999999) (xy 36.25 35.999999) (xy 36.524972 35.999999) (xy 36.524986 35.999998) + (xy 36.627697 35.989505) (xy 36.794119 35.934358) (xy 36.794124 35.934356) (xy 36.943345 35.842315) + (xy 37.067315 35.718345) (xy 37.144461 35.593273) (xy 37.196409 35.546549) (xy 37.265372 35.535326) + (xy 37.329454 35.56317) (xy 37.355539 35.593273) (xy 37.432684 35.718345) (xy 37.556654 35.842315) + (xy 37.705875 35.934356) (xy 37.70588 35.934358) (xy 37.872302 35.989505) (xy 37.872309 35.989506) + (xy 37.975019 35.999999) (xy 38.249999 35.999999) (xy 38.25 35.999998) (xy 38.25 35.25) (xy 36.25 35.25) + (xy 36.25 35.999999) (xy 35.749999 35.999999) (xy 35.75 35.999998) (xy 35.75 35.25) (xy 34.775001 35.25) + (xy 34.775001 35.299986) (xy 31.43074 35.299986) (xy 31.434356 35.294124) (xy 31.434358 35.294119) + (xy 31.489505 35.127697) (xy 31.489506 35.12769) (xy 31.499999 35.024986) (xy 31.5 35.024973) (xy 31.5 34.75) + (xy 30.374 34.75) (xy 30.306961 34.730315) (xy 30.261206 34.677511) (xy 30.25 34.626) (xy 30.25 34.25) + (xy 30.75 34.25) (xy 31.499999 34.25) (xy 31.499999 33.975028) (xy 31.499998 33.975013) (xy 31.489505 33.872302) + (xy 31.434358 33.70588) (xy 31.434356 33.705875) (xy 31.342315 33.556654) (xy 31.218345 33.432684) + (xy 31.093273 33.355539) (xy 31.046549 33.303591) (xy 31.035326 33.234628) (xy 31.06317 33.170546) + (xy 31.093273 33.144461) (xy 31.218345 33.067315) (xy 31.342315 32.943345) (xy 31.434356 32.794124) + (xy 31.434358 32.794119) (xy 31.489505 32.627697) (xy 31.489506 32.62769) (xy 31.499999 32.524986) + (xy 31.5 32.524973) (xy 31.5 32.25) (xy 30.75 32.25) (xy 30.75 34.25) (xy 30.25 34.25) (xy 30.25 31.75) + (xy 30.75 31.75) (xy 31.499999 31.75) (xy 31.499999 31.475028) (xy 31.499998 31.475013) (xy 31.489505 31.372302) + (xy 31.434358 31.20588) (xy 31.434356 31.205875) (xy 31.342315 31.056654) (xy 31.287816 31.002155) + (xy 39.75 31.002155) (xy 39.75 31.25) (xy 42.25 31.25) (xy 42.25 31.002172) (xy 42.249999 31.002155) + (xy 42.243598 30.942627) (xy 42.243596 30.94262) (xy 42.193354 30.807913) (xy 42.19335 30.807906) + (xy 42.10719 30.692812) (xy 42.107187 30.692809) (xy 41.992093 30.606649) (xy 41.992088 30.606646) + (xy 41.974756 30.600182) (xy 41.918823 30.55831) (xy 41.894406 30.492846) (xy 41.909258 30.424573) + (xy 41.958663 30.375168) (xy 42.01809 30.36) (xy 57.48191 30.36) (xy 57.548949 30.379685) (xy 57.594704 30.432489) + (xy 57.604648 30.501647) (xy 57.575623 30.565203) (xy 57.525244 30.600182) (xy 57.507911 30.606646) + (xy 57.507906 30.606649) (xy 57.392812 30.692809) (xy 57.392809 30.692812) (xy 57.306649 30.807906) + (xy 57.306645 30.807913) (xy 57.256403 30.94262) (xy 57.256401 30.942627) (xy 57.25 31.002155) (xy 57.25 31.25) + (xy 59.75 31.25) (xy 59.75 31.002172) (xy 59.749999 31.002155) (xy 59.743598 30.942627) (xy 59.743596 30.94262) + (xy 59.693354 30.807913) (xy 59.69335 30.807906) (xy 59.60719 30.692812) (xy 59.607187 30.692809) + (xy 59.492093 30.606649) (xy 59.492086 30.606645) (xy 59.357379 30.556403) (xy 59.357372 30.556401) + (xy 59.297844 30.55) (xy 58.859362 30.55) (xy 58.792323 30.530315) (xy 58.746568 30.477511) (xy 58.736624 30.408353) + (xy 58.75 30.379063) (xy 58.75 24.06) (xy 40.75 24.06) (xy 40.75 30.378024) (xy 40.761804 30.399642) + (xy 40.75682 30.469334) (xy 40.714948 30.525267) (xy 40.649484 30.549684) (xy 40.640638 30.55) (xy 40.202155 30.55) + (xy 40.142627 30.556401) (xy 40.14262 30.556403) (xy 40.007913 30.606645) (xy 40.007906 30.606649) + (xy 39.892812 30.692809) (xy 39.892809 30.692812) (xy 39.806649 30.807906) (xy 39.806645 30.807913) + (xy 39.756403 30.94262) (xy 39.756401 30.942627) (xy 39.75 31.002155) (xy 31.287816 31.002155) (xy 31.218345 30.932684) + (xy 31.069124 30.840643) (xy 31.069119 30.840641) (xy 30.902697 30.785494) (xy 30.90269 30.785493) + (xy 30.799986 30.775) (xy 30.75 30.775) (xy 30.75 31.75) (xy 30.25 31.75) (xy 30.25 30.775) (xy 30.249999 30.774999) + (xy 30.200029 30.775) (xy 30.200011 30.775001) (xy 30.097302 30.785494) (xy 29.93088 30.840641) + (xy 29.930875 30.840643) (xy 29.781654 30.932684) (xy 29.657683 31.056655) (xy 29.657679 31.05666) + (xy 29.655826 31.059665) (xy 29.654018 31.06129) (xy 29.653202 31.062323) (xy 29.653025 31.062183) + (xy 29.603874 31.106385) (xy 29.534911 31.117601) (xy 29.470831 31.089752) (xy 29.444753 31.059653) + (xy 29.444737 31.059628) (xy 29.442712 31.056344) (xy 29.386819 31.000451) (xy 29.353334 30.939128) + (xy 29.3505 30.91277) (xy 29.3505 29.673131) (xy 29.370185 29.606092) (xy 29.422989 29.560337) (xy 29.482894 29.549416) + (xy 29.498877 29.5505) (xy 30.901122 29.550499) (xy 30.943889 29.5476) (xy 31.128693 29.501641) + (xy 31.299296 29.41703) (xy 31.447722 29.297722) (xy 31.56703 29.149296) (xy 31.651641 28.978693) + (xy 31.6976 28.793889) (xy 31.7005 28.751123) (xy 31.700499 27.848878) (xy 31.6976 27.806111) (xy 31.651641 27.621307) + (xy 31.636343 27.590461) (xy 31.567032 27.450707) (xy 31.56703 27.450704) (xy 31.447722 27.302278) + (xy 31.447721 27.302277) (xy 31.378514 27.246647) (xy 31.338595 27.189304) (xy 31.336015 27.119482) + (xy 31.371594 27.059349) (xy 31.378514 27.053353) (xy 31.402497 27.034075) (xy 31.447722 26.997722) + (xy 31.56703 26.849296) (xy 31.651641 26.678693) (xy 31.6976 26.493889) (xy 31.7005 26.451123) (xy 31.700499 25.612228) + (xy 31.720183 25.54519) (xy 31.736813 25.524553) (xy 31.974548 25.286819) (xy 32.035871 25.253334) + (xy 32.062229 25.2505) (xy 34.63777 25.2505) (xy 34.704809 25.270185) (xy 34.725451 25.286819) (xy 34.963181 25.524548) + (xy 34.996666 25.585871) (xy 34.9995 25.612229) (xy 34.9995 27.458028) (xy 34.999501 27.458034) + (xy 35.010113 27.577415) (xy 35.066089 27.773045) (xy 35.06609 27.773048) (xy 35.066091 27.773049) + (xy 35.160302 27.953407) (xy 35.168665 27.963663) (xy 35.28889 28.111109) (xy 35.326507 28.141781) + (xy 35.446593 28.239698) (xy 35.626951 28.333909) (xy 35.822582 28.389886) (xy 35.941963 28.4005) + (xy 37.058036 28.400499) (xy 37.177418 28.389886) (xy 37.373049 28.333909) (xy 37.553407 28.239698) + (xy 37.711109 28.111109) (xy 37.839698 27.953407) (xy 37.933909 27.773049) (xy 37.989886 27.577418) + (xy 38.0005 27.458037) (xy 38.000499 24.541964) (xy 37.989886 24.422582) (xy 37.933909 24.226951) + (xy 37.839698 24.046593) (xy 37.7518 23.938794) (xy 37.711109 23.88889) (xy 37.587383 23.788006) + (xy 37.553407 23.760302) (xy 37.373049 23.666091) (xy 37.373048 23.66609) (xy 37.373043 23.666088) + (xy 37.340387 23.656744) (xy 37.281349 23.619376) (xy 37.251887 23.556022) (xy 37.2505 23.537529) + (xy 37.2505 21.866668) (xy 37.270185 21.799629) (xy 37.322989 21.753874) (xy 37.392147 21.74393) + (xy 37.398684 21.74505) (xy 37.40816 21.746934) (xy 37.426079 21.7505) (xy 37.426082 21.7505) (xy 37.426083 21.7505) + (xy 37.573918 21.7505) (xy 64.6005 21.7505) (xy 64.667539 21.770185) (xy 64.713294 21.822989) (xy 64.7245 21.8745) + (xy 64.7245 26.0255) (xy 64.704815 26.092539) (xy 64.652011 26.138294) (xy 64.600505 26.1495) (xy 64.577132 26.1495) + (xy 64.577123 26.149501) (xy 64.517516 26.155908) (xy 64.382671 26.206202) (xy 64.382664 26.206206) + (xy 64.267455 26.292452) (xy 64.267452 26.292455) (xy 64.181206 26.407664) (xy 64.181202 26.407671) + (xy 64.130908 26.542517) (xy 64.124501 26.602116) (xy 64.1245 26.602135) (xy 64.1245 28.39787) (xy 64.124501 28.397876) + (xy 64.130908 28.457483) (xy 64.181202 28.592328) (xy 64.181206 28.592335) (xy 64.267452 28.707544) + (xy 64.267455 28.707547) (xy 64.382664 28.793793) (xy 64.382671 28.793797) (xy 64.517517 28.844091) + (xy 64.517516 28.844091) (xy 64.524444 28.844835) (xy 64.577127 28.8505) (xy 65.06377 28.850499) + (xy 65.130808 28.870183) (xy 65.176563 28.922987) (xy 65.186507 28.992146) (xy 65.157482 29.055702) + (xy 65.15145 29.06218) (xy 64.000451 30.213181) (xy 63.939128 30.246666) (xy 63.91277 30.2495) (xy 62.41608 30.2495) + (xy 62.271092 30.27834) (xy 62.271082 30.278343) (xy 62.134511 30.334912) (xy 62.134498 30.334919) + (xy 62.011584 30.417048) (xy 62.01158 30.417051) (xy 59.961681 32.46695) (xy 59.900358 32.500435) + (xy 59.830666 32.495451) (xy 59.774733 32.453579) (xy 59.750316 32.388115) (xy 59.75 32.379269) + (xy 59.75 32.272172) (xy 59.749999 32.272155) (xy 59.743598 32.212627) (xy 59.743597 32.212624) + (xy 59.730808 32.178335) (xy 59.725822 32.108644) (xy 59.730808 32.091665) (xy 59.743597 32.057375) + (xy 59.743598 32.057372) (xy 59.749999 31.997844) (xy 59.75 31.997827) (xy 59.75 31.75) (xy 58.75 31.75) + (xy 58.75 32.896) (xy 58.730315 32.963039) (xy 58.677511 33.008794) (xy 58.626 33.02) (xy 57.25 33.02) + (xy 57.25 33.267844) (xy 57.256401 33.327372) (xy 57.256403 33.327379) (xy 57.268925 33.360952) + (xy 57.273909 33.430643) (xy 57.268925 33.447617) (xy 57.255909 33.482514) (xy 57.255908 33.482516) + (xy 57.253728 33.502799) (xy 57.249501 33.542123) (xy 57.2495 33.542135) (xy 57.2495 34.53787) (xy 57.249501 34.537876) + (xy 57.255908 34.597481) (xy 57.268659 34.631669) (xy 57.273642 34.701361) (xy 57.268659 34.718331) + (xy 57.255908 34.752518) (xy 57.249501 34.812116) (xy 57.2495 34.812135) (xy 57.2495 35.80787) (xy 57.249501 35.807876) + (xy 57.255908 35.867481) (xy 57.268659 35.901669) (xy 57.273642 35.971361) (xy 57.268659 35.988331) + (xy 57.255908 36.022518) (xy 57.249501 36.082116) (xy 57.2495 36.082135) (xy 57.2495 37.07787) (xy 57.249501 37.077876) + (xy 57.255908 37.137481) (xy 57.268659 37.171669) (xy 57.273642 37.241361) (xy 57.268659 37.258331) + (xy 57.255908 37.292518) (xy 57.249501 37.352116) (xy 57.2495 37.352135) (xy 57.2495 38.34787) (xy 57.249501 38.347876) + (xy 57.255908 38.407481) (xy 57.268659 38.441669) (xy 57.273642 38.511361) (xy 57.268659 38.528331) + (xy 57.255908 38.562518) (xy 57.249501 38.622116) (xy 57.2495 38.622135) (xy 57.2495 39.61787) (xy 57.249501 39.617876) + (xy 57.255908 39.677481) (xy 57.268659 39.711669) (xy 57.273642 39.781361) (xy 57.268659 39.798331) + (xy 57.255908 39.832518) (xy 57.249501 39.892116) (xy 57.2495 39.892135) (xy 57.2495 40.88787) (xy 57.249501 40.887876) + (xy 57.255908 40.947481) (xy 57.268659 40.981669) (xy 57.273642 41.051361) (xy 57.268659 41.068331) + (xy 57.255908 41.102518) (xy 57.249501 41.162116) (xy 57.2495 41.162135) (xy 57.2495 42.15787) (xy 57.249501 42.157876) + (xy 57.255908 42.217481) (xy 57.268659 42.251669) (xy 57.273642 42.321361) (xy 57.268659 42.338331) + (xy 57.255908 42.372518) (xy 57.252653 42.402797) (xy 57.249501 42.432123) (xy 57.2495 42.432135) + (xy 57.2495 43.42787) (xy 57.249501 43.427876) (xy 57.255908 43.487481) (xy 57.268659 43.521669) + (xy 57.273642 43.591361) (xy 57.268659 43.608331) (xy 57.255908 43.642518) (xy 57.25062 43.691706) + (xy 57.249501 43.702123) (xy 57.2495 43.702135) (xy 57.2495 44.69787) (xy 57.249501 44.697876) (xy 57.255908 44.757481) + (xy 57.268659 44.791669) (xy 57.273642 44.861361) (xy 57.268659 44.878331) (xy 57.255908 44.912518) + (xy 57.249501 44.972116) (xy 57.249501 44.972123) (xy 57.2495 44.972135) (xy 57.2495 45.96787) (xy 57.249501 45.967876) + (xy 57.255908 46.027481) (xy 57.268659 46.061669) (xy 57.273642 46.131361) (xy 57.268659 46.148331) + (xy 57.255908 46.182518) (xy 57.249501 46.242116) (xy 57.249501 46.242123) (xy 57.2495 46.242135) + (xy 57.2495 47.23787) (xy 57.249501 47.237876) (xy 57.255908 47.297483) (xy 57.268925 47.332381) + (xy 57.273909 47.402072) (xy 57.268925 47.419047) (xy 57.256403 47.452619) (xy 57.256401 47.452627) + (xy 57.25 47.512155) (xy 57.25 47.76) (xy 58.626 47.76) (xy 58.693039 47.779685) (xy 58.738794 47.832489) + (xy 58.75 47.884) (xy 58.75 48.136) (xy 58.730315 48.203039) (xy 58.677511 48.248794) (xy 58.626 48.26) + (xy 57.25 48.26) (xy 57.25 48.507844) (xy 57.256401 48.567372) (xy 57.256403 48.567379) (xy 57.268925 48.600952) + (xy 57.273909 48.670643) (xy 57.268925 48.687617) (xy 57.255909 48.722514) (xy 57.255908 48.722516) + (xy 57.249501 48.782116) (xy 57.2495 48.782135) (xy 57.2495 49.77787) (xy 57.249501 49.777876) (xy 57.255908 49.837483) + (xy 57.268925 49.872381) (xy 57.273909 49.942072) (xy 57.268925 49.959047) (xy 57.256403 49.992619) + (xy 57.256401 49.992627) (xy 57.25 50.052155) (xy 57.25 50.3) (xy 59.75 50.3) (xy 59.75 50.052172) + (xy 59.749999 50.052164) (xy 59.749664 50.049046) (xy 59.762063 49.980285) (xy 59.804058 49.93268) + (xy 59.834729 49.912186) (xy 59.834729 49.912185) (xy 59.834731 49.912185) (xy 59.871038 49.887926) + (xy 59.908416 49.862952) (xy 64.00835 45.763016) (xy 64.069671 45.729533) (xy 64.139363 45.734517) + (xy 64.195296 45.776389) (xy 64.219713 45.841853) (xy 64.207364 45.898635) (xy 64.209303 45.899359) + (xy 64.155908 46.042517) (xy 64.149501 46.102116) (xy 64.1495 46.102135) (xy 64.1495 47.89787) (xy 64.149501 47.897876) + (xy 64.155908 47.957483) (xy 64.206202 48.092328) (xy 64.206206 48.092335) (xy 64.292452 48.207544) + (xy 64.292455 48.207547) (xy 64.407664 48.293793) (xy 64.407671 48.293797) (xy 64.452618 48.310561) + (xy 64.542517 48.344091) (xy 64.602127 48.3505) (xy 64.625497 48.350499) (xy 64.692536 48.370181) + (xy 64.738292 48.422983) (xy 64.7495 48.474499) (xy 64.7495 49.197769) (xy 64.729815 49.264808) + (xy 64.713181 49.28545) (xy 59.96218 54.036451) (xy 59.900857 54.069936) (xy 59.831165 54.064952) + (xy 59.775232 54.02308) (xy 59.750815 53.957616) (xy 59.750499 53.94877) (xy 59.750499 53.862129) + (xy 59.750498 53.862123) (xy 59.750497 53.862116) (xy 59.744091 53.802517) (xy 59.73134 53.768332) + (xy 59.726357 53.698642) (xy 59.73134 53.681669) (xy 59.744091 53.647483) (xy 59.7505 53.587873) + (xy 59.750499 52.592128) (xy 59.744091 52.532517) (xy 59.73134 52.498332) (xy 59.726357 52.428642) + (xy 59.73134 52.411669) (xy 59.744091 52.377483) (xy 59.7505 52.317873) (xy 59.750499 51.322128) + (xy 59.744091 51.262517) (xy 59.731073 51.227616) (xy 59.72609 51.157926) (xy 59.731075 51.140949) + (xy 59.743597 51.107375) (xy 59.743598 51.107372) (xy 59.749999 51.047844) (xy 59.75 51.047827) + (xy 59.75 50.8) (xy 57.25 50.8) (xy 57.25 51.047844) (xy 57.256401 51.107372) (xy 57.256403 51.107379) + (xy 57.268925 51.140952) (xy 57.273909 51.210643) (xy 57.268925 51.227617) (xy 57.255909 51.262514) + (xy 57.255908 51.262516) (xy 57.25062 51.311706) (xy 57.249501 51.322123) (xy 57.2495 51.322135) + (xy 57.2495 52.31787) (xy 57.249501 52.317876) (xy 57.255908 52.377481) (xy 57.268659 52.411669) + (xy 57.273642 52.481361) (xy 57.268659 52.498331) (xy 57.255908 52.532518) (xy 57.249501 52.592116) + (xy 57.249501 52.592123) (xy 57.2495 52.592135) (xy 57.2495 53.58787) (xy 57.249501 53.587876) (xy 57.255908 53.647481) + (xy 57.268659 53.681669) (xy 57.273642 53.751361) (xy 57.268659 53.768331) (xy 57.255908 53.802518) + (xy 57.249501 53.862116) (xy 57.249501 53.862123) (xy 57.2495 53.862135) (xy 57.2495 54.85787) (xy 57.249501 54.857876) + (xy 57.255908 54.917483) (xy 57.306202 55.052328) (xy 57.310454 55.060114) (xy 57.308978 55.060919) + (xy 57.329766 55.116655) (xy 57.314914 55.184928) (xy 57.265508 55.234333) (xy 57.206082 55.2495) + (xy 42.293918 55.2495) (xy 42.226879 55.229815) (xy 42.181124 55.177011) (xy 42.17118 55.107853) + (xy 42.190694 55.060741) (xy 42.189546 55.060114) (xy 42.193793 55.052334) (xy 42.193796 55.052331) + (xy 42.244091 54.917483) (xy 42.2505 54.857873) (xy 42.250499 53.862128) (xy 42.244091 53.802517) + (xy 42.23134 53.768332) (xy 42.226357 53.698642) (xy 42.23134 53.681669) (xy 42.244091 53.647483) + (xy 42.2505 53.587873) (xy 42.250499 52.592128) (xy 42.244091 52.532517) (xy 42.23134 52.498332) + (xy 42.226357 52.428642) (xy 42.23134 52.411669) (xy 42.244091 52.377483) (xy 42.2505 52.317873) + (xy 42.250499 51.322128) (xy 42.244091 51.262517) (xy 42.23134 51.228332) (xy 42.226357 51.158642) + (xy 42.231338 51.141672) (xy 42.244091 51.107483) (xy 42.2505 51.047873) (xy 42.250499 50.052128) + (xy 42.244091 49.992517) (xy 42.231073 49.957616) (xy 42.22609 49.887926) (xy 42.231075 49.870949) + (xy 42.243597 49.837375) (xy 42.243598 49.837372) (xy 42.249999 49.777844) (xy 42.25 49.777827) + (xy 42.25 49.53) (xy 40.874 49.53) (xy 40.806961 49.510315) (xy 40.761206 49.457511) (xy 40.75 49.406) + (xy 40.75 49.154) (xy 40.769685 49.086961) (xy 40.822489 49.041206) (xy 40.874 49.03) (xy 42.25 49.03) + (xy 42.25 48.782172) (xy 42.249999 48.782155) (xy 42.243597 48.722622) (xy 42.243597 48.72262) (xy 42.231075 48.689048) + (xy 42.226089 48.619356) (xy 42.231071 48.60239) (xy 42.244091 48.567483) (xy 42.2505 48.507873) + (xy 42.250499 47.512128) (xy 42.244091 47.452517) (xy 42.23134 47.418332) (xy 42.226357 47.348642) + (xy 42.231338 47.331672) (xy 42.244091 47.297483) (xy 42.2505 47.237873) (xy 42.250499 46.242128) + (xy 42.244091 46.182517) (xy 42.231073 46.147616) (xy 42.22609 46.077926) (xy 42.231075 46.060949) + (xy 42.243597 46.027375) (xy 42.243598 46.027372) (xy 42.249999 45.967844) (xy 42.25 45.967827) + (xy 42.25 45.72) (xy 40.874 45.72) (xy 40.806961 45.700315) (xy 40.761206 45.647511) (xy 40.75 45.596) + (xy 40.75 45.344) (xy 40.769685 45.276961) (xy 40.822489 45.231206) (xy 40.874 45.22) (xy 42.25 45.22) + (xy 42.25 44.972172) (xy 42.249999 44.972155) (xy 42.243597 44.912622) (xy 42.243597 44.91262) (xy 42.231075 44.879048) + (xy 42.226089 44.809356) (xy 42.231071 44.79239) (xy 42.244091 44.757483) (xy 42.2505 44.697873) + (xy 42.250499 43.702128) (xy 42.244091 43.642517) (xy 42.23134 43.608332) (xy 42.226357 43.538642) + (xy 42.23134 43.521669) (xy 42.244091 43.487483) (xy 42.2505 43.427873) (xy 42.250499 42.432128) + (xy 42.244091 42.372517) (xy 42.231073 42.337616) (xy 42.22609 42.267926) (xy 42.231075 42.250949) + (xy 42.243597 42.217375) (xy 42.243598 42.217372) (xy 42.249999 42.157844) (xy 42.25 42.157827) + (xy 42.25 41.91) (xy 39.75 41.91) (xy 39.75 42.0555) (xy 39.730315 42.122539) (xy 39.677511 42.168294) + (xy 39.626 42.1795) (xy 38.45608 42.1795) (xy 38.311092 42.20834) (xy 38.311082 42.208343) (xy 38.174511 42.264912) + (xy 38.174498 42.264919) (xy 38.051584 42.347048) (xy 38.05158 42.347051) (xy 30.2715 50.12713) + (xy 30.210177 50.160615) (xy 30.173012 50.162977) (xy 29.960002 50.144341) (xy 29.959999 50.144341) + (xy 29.724596 50.164936) (xy 29.724586 50.164938) (xy 29.496344 50.226094) (xy 29.496335 50.226098) + (xy 29.282171 50.325964) (xy 29.282169 50.325965) (xy 29.0886 50.461503) (xy 28.966673 50.58343) + (xy 28.90535 50.616914) (xy 28.835658 50.61193) (xy 28.779725 50.570058) (xy 28.76281 50.539081) + (xy 28.713797 50.407671) (xy 28.713793 50.407664) (xy 28.627547 50.292455) (xy 28.627544 50.292452) + (xy 28.512335 50.206206) (xy 28.512328 50.206202) (xy 28.377482 50.155908) (xy 28.377483 50.155908) + (xy 28.317883 50.149501) (xy 28.317881 50.1495) (xy 28.317873 50.1495) (xy 28.317864 50.1495) (xy 26.522129 50.1495) + (xy 26.522123 50.149501) (xy 26.462516 50.155908) (xy 26.327671 50.206202) (xy 26.327664 50.206206) + (xy 26.212455 50.292452) (xy 26.212452 50.292455) (xy 26.126206 50.407664) (xy 26.126202 50.407671) + (xy 26.075908 50.542517) (xy 26.069501 50.602116) (xy 26.0695 50.602135) (xy 26.0695 52.39787) (xy 26.069501 52.397876) + (xy 26.075908 52.457483) (xy 26.126202 52.592328) (xy 26.126206 52.592335) (xy 26.212452 52.707544) + (xy 26.212455 52.707547) (xy 26.327664 52.793793) (xy 26.327671 52.793797) (xy 26.462517 52.844091) + (xy 26.462516 52.844091) (xy 26.469444 52.844835) (xy 26.522127 52.8505) (xy 28.317872 52.850499) + (xy 28.377483 52.844091) (xy 28.512331 52.793796) (xy 28.627546 52.707546) (xy 28.713796 52.592331) + (xy 28.76281 52.460916) (xy 28.804681 52.404984) (xy 28.870145 52.380566) (xy 28.938418 52.395417) + (xy 28.966673 52.416569) (xy 29.088599 52.538495) (xy 29.185384 52.606265) (xy 29.282165 52.674032) + (xy 29.282167 52.674033) (xy 29.28217 52.674035) (xy 29.496337 52.773903) (xy 29.724592 52.835063) + (xy 29.901034 52.8505) (xy 29.959999 52.855659) (xy 29.96 52.855659) (xy 29.960001 52.855659) (xy 30.018966 52.8505) + (xy 30.195408 52.835063) (xy 30.423663 52.773903) (xy 30.63783 52.674035) (xy 30.831401 52.538495) + (xy 30.998495 52.371401) (xy 31.128425 52.185842) (xy 31.183002 52.142217) (xy 31.2525 52.135023) + (xy 31.314855 52.166546) (xy 31.331575 52.185842) (xy 31.461278 52.371078) (xy 31.461505 52.371401) + (xy 31.628599 52.538495) (xy 31.725384 52.606265) (xy 31.822165 52.674032) (xy 31.822167 52.674033) + (xy 31.82217 52.674035) (xy 32.036337 52.773903) (xy 32.264592 52.835063) (xy 32.441034 52.8505) + (xy 32.499999 52.855659) (xy 32.5 52.855659) (xy 32.500001 52.855659) (xy 32.558966 52.8505) (xy 32.735408 52.835063) + (xy 32.963663 52.773903) (xy 33.17783 52.674035) (xy 33.371401 52.538495) (xy 33.538495 52.371401) + (xy 33.66873 52.185405) (xy 33.723307 52.141781) (xy 33.792805 52.134587) (xy 33.85516 52.16611) + (xy 33.871879 52.185405) (xy 34.00189 52.371078) (xy 34.168917 52.538105) (xy 34.362421 52.6736) + (xy 34.576507 52.773429) (xy 34.576516 52.773433) (xy 34.79 52.830634) (xy 34.79 51.933012) (xy 34.847007 51.965925) + (xy 34.974174 52) (xy 35.105826 52) (xy 35.232993 51.965925) (xy 35.29 51.933012) (xy 35.29 52.830633) + (xy 35.503483 52.773433) (xy 35.503492 52.773429) (xy 35.717578 52.6736) (xy 35.911082 52.538105) + (xy 36.037819 52.411369) (xy 36.099142 52.377884) (xy 36.168834 52.382868) (xy 36.224767 52.42474) + (xy 36.249184 52.490204) (xy 36.2495 52.49905) (xy 36.2495 57.426082) (xy 36.2495 57.573918) (xy 36.2495 57.57392) + (xy 36.249499 57.57392) (xy 36.27834 57.718907) (xy 36.278343 57.718917) (xy 36.334912 57.855488) + (xy 36.334919 57.855501) (xy 36.417048 57.978415) (xy 36.417051 57.978419) (xy 36.52158 58.082948) + (xy 36.521584 58.082951) (xy 36.644498 58.16508) (xy 36.644511 58.165087) (xy 36.781082 58.221656) + (xy 36.781087 58.221658) (xy 36.781091 58.221658) (xy 36.781092 58.221659) (xy 36.926079 58.2505) + (xy 36.926082 58.2505) (xy 60.15392 58.2505) (xy 60.251462 58.231096) (xy 60.298913 58.221658) (xy 60.435495 58.165084) + (xy 60.484729 58.132186) (xy 60.558416 58.082952) (xy 70.268498 48.372867) (xy 70.329819 48.339384) + (xy 70.366983 48.337022) (xy 70.509861 48.349522) (xy 70.579999 48.355659) (xy 70.58 48.355659) + (xy 70.580001 48.355659) (xy 70.638966 48.3505) (xy 70.815408 48.335063) (xy 71.043663 48.273903) + (xy 71.25783 48.174035) (xy 71.451401 48.038495) (xy 71.618495 47.871401) (xy 71.74873 47.685405) + (xy 71.803307 47.641781) (xy 71.872805 47.634587) (xy 71.93516 47.66611) (xy 71.951879 47.685405) + (xy 72.08189 47.871078) (xy 72.248917 48.038105) (xy 72.442421 48.1736) (xy 72.656507 48.273429) + (xy 72.656516 48.273433) (xy 72.87 48.330634) (xy 72.87 47.433012) (xy 72.927007 47.465925) (xy 73.054174 47.5) + (xy 73.185826 47.5) (xy 73.312993 47.465925) (xy 73.37 47.433012) (xy 73.37 48.330633) (xy 73.583483 48.273433) + (xy 73.583492 48.273429) (xy 73.797578 48.1736) (xy 73.991082 48.038105) (xy 74.158105 47.871082) + (xy 74.2936 47.677578) (xy 74.393429 47.463492) (xy 74.393432 47.463486) (xy 74.450636 47.25) (xy 73.553012 47.25) + (xy 73.585925 47.192993) (xy 73.62 47.065826) (xy 73.62 46.934174) (xy 73.585925 46.807007) (xy 73.553012 46.75) + (xy 74.450636 46.75) (xy 74.450635 46.749999) (xy 74.393432 46.536513) (xy 74.393429 46.536507) + (xy 74.2936 46.322422) (xy 74.293599 46.32242) (xy 74.158113 46.128926) (xy 74.158108 46.12892) + (xy 73.991082 45.961894) (xy 73.797578 45.826399) (xy 73.583492 45.72657) (xy 73.583486 45.726567) + (xy 73.37 45.669364) (xy 73.37 46.566988) (xy 73.312993 46.534075) (xy 73.185826 46.5) (xy 73.054174 46.5) + (xy 72.927007 46.534075) (xy 72.87 46.566988) (xy 72.87 45.669364) (xy 72.869999 45.669364) (xy 72.656513 45.726567) + (xy 72.656507 45.72657) (xy 72.442422 45.826399) (xy 72.44242 45.8264) (xy 72.248926 45.961886) + (xy 72.24892 45.961891) (xy 72.081891 46.12892) (xy 72.08189 46.128922) (xy 71.95188 46.314595) + (xy 71.897303 46.358219) (xy 71.827804 46.365412) (xy 71.76545 46.33389) (xy 71.74873 46.314594) + (xy 71.618494 46.128597) (xy 71.451402 45.961506) (xy 71.451395 45.961501) (xy 71.418426 45.938416) + (xy 71.374518 45.907671) (xy 71.257834 45.825967) (xy 71.25783 45.825965) (xy 71.193375 45.795909) + (xy 71.043663 45.726097) (xy 71.043659 45.726096) (xy 71.043655 45.726094) (xy 70.815413 45.664938) + (xy 70.815403 45.664936) (xy 70.580001 45.644341) (xy 70.579999 45.644341) (xy 70.344596 45.664936) + (xy 70.344586 45.664938) (xy 70.116344 45.726094) (xy 70.116335 45.726098) (xy 69.902171 45.825964) + (xy 69.902169 45.825965) (xy 69.708597 45.961505) (xy 69.541505 46.128597) (xy 69.411575 46.314158) + (xy 69.356998 46.357783) (xy 69.2875 46.364977) (xy 69.225145 46.333454) (xy 69.208425 46.314158) + (xy 69.078494 46.128597) (xy 68.911402 45.961506) (xy 68.911395 45.961501) (xy 68.878426 45.938416) + (xy 68.834518 45.907671) (xy 68.717834 45.825967) (xy 68.71783 45.825965) (xy 68.653375 45.795909) + (xy 68.503663 45.726097) (xy 68.503659 45.726096) (xy 68.503655 45.726094) (xy 68.275413 45.664938) + (xy 68.275403 45.664936) (xy 68.20798 45.659037) (xy 68.142912 45.633584) (xy 68.101934 45.576992) + (xy 68.098057 45.50723) (xy 68.132511 45.446446) (xy 68.171337 45.420948) (xy 68.185495 45.415084) + (xy 68.234729 45.382186) (xy 68.308416 45.332952) (xy 70.268498 43.372867) (xy 70.329819 43.339384) + (xy 70.366983 43.337022) (xy 70.509861 43.349522) (xy 70.579999 43.355659) (xy 70.58 43.355659) + (xy 70.580001 43.355659) (xy 70.619234 43.352226) (xy 70.815408 43.335063) (xy 71.043663 43.273903) + (xy 71.25783 43.174035) (xy 71.451401 43.038495) (xy 71.618495 42.871401) (xy 71.74873 42.685405) + (xy 71.803307 42.641781) (xy 71.872805 42.634587) (xy 71.93516 42.66611) (xy 71.951879 42.685405) + (xy 72.08189 42.871078) (xy 72.248917 43.038105) (xy 72.442421 43.1736) (xy 72.656507 43.273429) + (xy 72.656516 43.273433) (xy 72.87 43.330634) (xy 72.87 42.433012) (xy 72.927007 42.465925) (xy 73.054174 42.5) + (xy 73.185826 42.5) (xy 73.312993 42.465925) (xy 73.37 42.433012) (xy 73.37 43.330633) (xy 73.583483 43.273433) + (xy 73.583492 43.273429) (xy 73.797578 43.1736) (xy 73.991082 43.038105) (xy 74.158105 42.871082) + (xy 74.2936 42.677578) (xy 74.393429 42.463492) (xy 74.393432 42.463486) (xy 74.450636 42.25) (xy 73.553012 42.25) + (xy 73.585925 42.192993) (xy 73.62 42.065826) (xy 73.62 41.934174) (xy 73.585925 41.807007) (xy 73.553012 41.75) + (xy 74.450636 41.75) (xy 74.450635 41.749999) (xy 74.393432 41.536513) (xy 74.393429 41.536507) + (xy 74.2936 41.322422) (xy 74.293599 41.32242) (xy 74.158113 41.128926) (xy 74.158108 41.12892) + (xy 73.991082 40.961894) (xy 73.797578 40.826399) (xy 73.583492 40.72657) (xy 73.583486 40.726567) + (xy 73.37 40.669364) (xy 73.37 41.566988) (xy 73.312993 41.534075) (xy 73.185826 41.5) (xy 73.054174 41.5) + (xy 72.927007 41.534075) (xy 72.87 41.566988) (xy 72.87 40.669364) (xy 72.869999 40.669364) (xy 72.656513 40.726567) + (xy 72.656507 40.72657) (xy 72.442422 40.826399) (xy 72.44242 40.8264) (xy 72.248926 40.961886) + (xy 72.24892 40.961891) (xy 72.081891 41.12892) (xy 72.08189 41.128922) (xy 71.95188 41.314595) + (xy 71.897303 41.358219) (xy 71.827804 41.365412) (xy 71.76545 41.33389) (xy 71.74873 41.314594) + (xy 71.618494 41.128597) (xy 71.451402 40.961506) (xy 71.451395 40.961501) (xy 71.435975 40.950704) + (xy 71.346248 40.887876) (xy 71.257834 40.825967) (xy 71.25783 40.825965) (xy 71.087732 40.746647) + (xy 71.043663 40.726097) (xy 71.043659 40.726096) (xy 71.043655 40.726094) (xy 70.815413 40.664938) + (xy 70.815403 40.664936) (xy 70.580001 40.644341) (xy 70.579999 40.644341) (xy 70.344596 40.664936) + (xy 70.344586 40.664938) (xy 70.116344 40.726094) (xy 70.116335 40.726098) (xy 69.902171 40.825964) + (xy 69.902169 40.825965) (xy 69.708597 40.961505) (xy 69.541505 41.128597) (xy 69.411575 41.314158) + (xy 69.356998 41.357783) (xy 69.2875 41.364977) (xy 69.225145 41.333454) (xy 69.208425 41.314158) + (xy 69.078494 41.128597) (xy 68.911402 40.961506) (xy 68.911395 40.961501) (xy 68.895975 40.950704) + (xy 68.806248 40.887876) (xy 68.717834 40.825967) (xy 68.71783 40.825965) (xy 68.547732 40.746647) + (xy 68.503663 40.726097) (xy 68.503659 40.726096) (xy 68.503655 40.726094) (xy 68.275413 40.664938) + (xy 68.275403 40.664936) (xy 68.135398 40.652687) (xy 68.118258 40.651187) (xy 68.053191 40.625735) + (xy 68.012212 40.569144) (xy 68.008334 40.499382) (xy 68.041384 40.439981) (xy 70.108498 38.372867) + (xy 70.169819 38.339384) (xy 70.206983 38.337022) (xy 70.330996 38.347872) (xy 70.419999 38.355659) + (xy 70.42 38.355659) (xy 70.420001 38.355659) (xy 70.484681 38.35) (xy 70.655408 38.335063) (xy 70.883663 38.273903) + (xy 71.09783 38.174035) (xy 71.291401 38.038495) (xy 71.458495 37.871401) (xy 71.588425 37.685842) + (xy 71.643002 37.642217) (xy 71.7125 37.635023) (xy 71.774855 37.666546) (xy 71.791575 37.685842) + (xy 71.921505 37.871401) (xy 72.088599 38.038495) (xy 72.165135 38.092086) (xy 72.282165 38.174032) + (xy 72.282167 38.174033) (xy 72.28217 38.174035) (xy 72.496337 38.273903) (xy 72.724592 38.335063) + (xy 72.895319 38.35) (xy 72.959999 38.355659) (xy 72.96 38.355659) (xy 72.960001 38.355659) (xy 73.024681 38.35) + (xy 73.195408 38.335063) (xy 73.423663 38.273903) (xy 73.63783 38.174035) (xy 73.831401 38.038495) + (xy 73.953717 37.916178) (xy 74.015036 37.882696) (xy 74.084728 37.88768) (xy 74.140662 37.929551) + (xy 74.157577 37.960528) (xy 74.206646 38.092088) (xy 74.206649 38.092093) (xy 74.292809 38.207187) + (xy 74.292812 38.20719) (xy 74.407906 38.29335) (xy 74.407913 38.293354) (xy 74.54262 38.343596) + (xy 74.542627 38.343598) (xy 74.602155 38.349999) (xy 74.602172 38.35) (xy 75.25 38.35) (xy 75.25 37.433012) + (xy 75.307007 37.465925) (xy 75.434174 37.5) (xy 75.565826 37.5) (xy 75.692993 37.465925) (xy 75.75 37.433012) + (xy 75.75 38.35) (xy 76.397828 38.35) (xy 76.397844 38.349999) (xy 76.457372 38.343598) (xy 76.457379 38.343596) + (xy 76.592086 38.293354) (xy 76.592093 38.29335) (xy 76.707187 38.20719) (xy 76.70719 38.207187) + (xy 76.79335 38.092093) (xy 76.793354 38.092086) (xy 76.843596 37.957379) (xy 76.843598 37.957372) + (xy 76.849999 37.897844) (xy 76.85 37.897827) (xy 76.85 37.25) (xy 75.933012 37.25) (xy 75.965925 37.192993) + (xy 76 37.065826) (xy 76 36.934174) (xy 75.965925 36.807007) (xy 75.933012 36.75) (xy 76.85 36.75) + (xy 76.85 36.102172) (xy 76.849999 36.102155) (xy 76.843598 36.042627) (xy 76.843596 36.04262) (xy 76.793354 35.907913) + (xy 76.79335 35.907906) (xy 76.70719 35.792812) (xy 76.707187 35.792809) (xy 76.592093 35.706649) + (xy 76.592086 35.706645) (xy 76.457379 35.656403) (xy 76.457372 35.656401) (xy 76.397844 35.65) + (xy 75.75 35.65) (xy 75.75 36.566988) (xy 75.692993 36.534075) (xy 75.565826 36.5) (xy 75.434174 36.5) + (xy 75.307007 36.534075) (xy 75.25 36.566988) (xy 75.25 35.65) (xy 74.602155 35.65) (xy 74.542627 35.656401) + (xy 74.54262 35.656403) (xy 74.407913 35.706645) (xy 74.407906 35.706649) (xy 74.292812 35.792809) + (xy 74.292809 35.792812) (xy 74.206649 35.907906) (xy 74.206645 35.907913) (xy 74.157578 36.03947) + (xy 74.115707 36.095404) (xy 74.050242 36.119821) (xy 73.981969 36.104969) (xy 73.953715 36.083819) + (xy 73.909366 36.03947) (xy 73.831401 35.961505) (xy 73.831397 35.961502) (xy 73.831396 35.961501) + (xy 73.637834 35.825967) (xy 73.63783 35.825965) (xy 73.599038 35.807876) (xy 73.423663 35.726097) + (xy 73.423659 35.726096) (xy 73.423655 35.726094) (xy 73.195413 35.664938) (xy 73.195403 35.664936) + (xy 72.960001 35.644341) (xy 72.959999 35.644341) (xy 72.724596 35.664936) (xy 72.724586 35.664938) + (xy 72.496344 35.726094) (xy 72.496335 35.726098) (xy 72.282171 35.825964) (xy 72.282169 35.825965) + (xy 72.088597 35.961505) (xy 71.921505 36.128597) (xy 71.791575 36.314158) (xy 71.736998 36.357783) + (xy 71.6675 36.364977) (xy 71.605145 36.333454) (xy 71.588425 36.314158) (xy 71.458494 36.128597) + (xy 71.291402 35.961506) (xy 71.291395 35.961501) (xy 71.279107 35.952897) (xy 71.214854 35.907906) + (xy 71.097834 35.825967) (xy 71.09783 35.825965) (xy 71.059038 35.807876) (xy 70.883663 35.726097) + (xy 70.883659 35.726096) (xy 70.883655 35.726094) (xy 70.655413 35.664938) (xy 70.655403 35.664936) + (xy 70.420001 35.644341) (xy 70.419999 35.644341) (xy 70.184596 35.664936) (xy 70.184586 35.664938) + (xy 69.956344 35.726094) (xy 69.956335 35.726098) (xy 69.742171 35.825964) (xy 69.742169 35.825965) + (xy 69.548597 35.961505) (xy 69.381505 36.128597) (xy 69.251575 36.314158) (xy 69.196998 36.357783) + (xy 69.1275 36.364977) (xy 69.065145 36.333454) (xy 69.048425 36.314158) (xy 68.918494 36.128597) + (xy 68.751402 35.961506) (xy 68.751395 35.961501) (xy 68.739107 35.952897) (xy 68.674854 35.907906) + (xy 68.557834 35.825967) (xy 68.55783 35.825965) (xy 68.519038 35.807876) (xy 68.343663 35.726097) + (xy 68.343659 35.726096) (xy 68.343655 35.726094) (xy 68.115413 35.664938) (xy 68.115403 35.664936) + (xy 67.880001 35.644341) (xy 67.879999 35.644341) (xy 67.644596 35.664936) (xy 67.644586 35.664938) + (xy 67.416344 35.726094) (xy 67.416335 35.726098) (xy 67.202171 35.825964) (xy 67.202169 35.825965) + (xy 67.008597 35.961505) (xy 66.841505 36.128597) (xy 66.711575 36.314158) (xy 66.656998 36.357783) + (xy 66.5875 36.364977) (xy 66.525145 36.333454) (xy 66.508425 36.314158) (xy 66.378494 36.128597) + (xy 66.211402 35.961506) (xy 66.211395 35.961501) (xy 66.199107 35.952897) (xy 66.134854 35.907906) + (xy 66.017834 35.825967) (xy 66.01783 35.825965) (xy 65.979038 35.807876) (xy 65.803663 35.726097) + (xy 65.803659 35.726096) (xy 65.803655 35.726094) (xy 65.575413 35.664938) (xy 65.575403 35.664936) + (xy 65.340001 35.644341) (xy 65.339999 35.644341) (xy 65.104596 35.664936) (xy 65.104586 35.664938) + (xy 64.876344 35.726094) (xy 64.876335 35.726098) (xy 64.662171 35.825964) (xy 64.662169 35.825965) + (xy 64.468597 35.961505) (xy 64.301505 36.128597) (xy 64.165965 36.322169) (xy 64.165964 36.322171) + (xy 64.066098 36.536335) (xy 64.066094 36.536344) (xy 64.004938 36.764586) (xy 64.004936 36.764596) + (xy 63.985539 36.986308) (xy 63.960086 37.051376) (xy 63.903495 37.092355) (xy 63.862011 37.0995) + (xy 60.76123 37.0995) (xy 60.694191 37.079815) (xy 60.648436 37.027011) (xy 60.638492 36.957853) + (xy 60.667517 36.894297) (xy 60.673549 36.887819) (xy 62.774549 34.786819) (xy 62.835872 34.753334) + (xy 62.86223 34.7505) (xy 66.08892 34.7505) (xy 66.190392 34.730315) (xy 66.233913 34.721658) (xy 66.370495 34.665084) + (xy 66.441457 34.617669) (xy 66.493416 34.582952) (xy 67.703498 33.372867) (xy 67.764819 33.339384) + (xy 67.801983 33.337022) (xy 67.923676 33.347669) (xy 68.014999 33.355659) (xy 68.015 33.355659) + (xy 68.015001 33.355659) (xy 68.054234 33.352226) (xy 68.250408 33.335063) (xy 68.478663 33.273903) + (xy 68.69283 33.174035) (xy 68.886401 33.038495) (xy 69.053495 32.871401) (xy 69.18373 32.685405) + (xy 69.238307 32.641781) (xy 69.307805 32.634587) (xy 69.37016 32.66611) (xy 69.386879 32.685405) + (xy 69.51689 32.871078) (xy 69.683917 33.038105) (xy 69.877421 33.1736) (xy 70.091507 33.273429) + (xy 70.091516 33.273433) (xy 70.305 33.330634) (xy 70.305 32.433012) (xy 70.362007 32.465925) (xy 70.489174 32.5) + (xy 70.620826 32.5) (xy 70.747993 32.465925) (xy 70.805 32.433012) (xy 70.805 33.330633) (xy 71.018483 33.273433) + (xy 71.018492 33.273429) (xy 71.232578 33.1736) (xy 71.426082 33.038105) (xy 71.593105 32.871082) + (xy 71.7286 32.677578) (xy 71.828429 32.463492) (xy 71.828432 32.463486) (xy 71.885636 32.25) (xy 70.988012 32.25) + (xy 71.020925 32.192993) (xy 71.055 32.065826) (xy 71.055 31.934174) (xy 71.020925 31.807007) (xy 70.988012 31.75) + (xy 71.885636 31.75) (xy 71.885635 31.749999) (xy 71.828432 31.536513) (xy 71.828429 31.536507) + (xy 71.7286 31.322422) (xy 71.728599 31.32242) (xy 71.593113 31.128926) (xy 71.593108 31.12892) + (xy 71.426082 30.961894) (xy 71.232578 30.826399) (xy 71.018492 30.72657) (xy 71.018486 30.726567) + (xy 70.805 30.669364) (xy 70.805 31.566988) (xy 70.747993 31.534075) (xy 70.620826 31.5) (xy 70.489174 31.5) + (xy 70.362007 31.534075) (xy 70.305 31.566988) (xy 70.305 30.669364) (xy 70.304999 30.669364) (xy 70.091513 30.726567) + (xy 70.091507 30.72657) (xy 69.877422 30.826399) (xy 69.87742 30.8264) (xy 69.683926 30.961886) + (xy 69.68392 30.961891) (xy 69.516891 31.12892) (xy 69.51689 31.128922) (xy 69.38688 31.314595) + (xy 69.332303 31.358219) (xy 69.262804 31.365412) (xy 69.20045 31.33389) (xy 69.18373 31.314594) + (xy 69.053494 31.128597) (xy 68.886402 30.961506) (xy 68.886395 30.961501) (xy 68.692834 30.825967) + (xy 68.69283 30.825965) (xy 68.654102 30.807906) (xy 68.478663 30.726097) (xy 68.478659 30.726096) + (xy 68.478655 30.726094) (xy 68.250413 30.664938) (xy 68.250403 30.664936) (xy 68.015001 30.644341) + (xy 68.014999 30.644341) (xy 67.779596 30.664936) (xy 67.779586 30.664938) (xy 67.551344 30.726094) + (xy 67.551335 30.726098) (xy 67.337171 30.825964) (xy 67.337169 30.825965) (xy 67.1436 30.961503) + (xy 67.021673 31.08343) (xy 66.96035 31.116914) (xy 66.890658 31.11193) (xy 66.834725 31.070058) + (xy 66.81781 31.039081) (xy 66.768797 30.907671) (xy 66.768793 30.907664) (xy 66.682547 30.792455) + (xy 66.682544 30.792452) (xy 66.567335 30.706206) (xy 66.567328 30.706202) (xy 66.432482 30.655908) + (xy 66.432483 30.655908) (xy 66.372883 30.649501) (xy 66.372881 30.6495) (xy 66.372873 30.6495) + (xy 66.372865 30.6495) (xy 65.986229 30.6495) (xy 65.91919 30.629815) (xy 65.873435 30.577011) (xy 65.863491 30.507853) + (xy 65.892516 30.444297) (xy 65.898548 30.437819) (xy 67.038645 29.297721) (xy 67.509491 28.826874) + (xy 67.570812 28.793391) (xy 67.629259 28.794781) (xy 67.779592 28.835063) (xy 67.956034 28.8505) + (xy 68.014999 28.855659) (xy 68.015 28.855659) (xy 68.015001 28.855659) (xy 68.073966 28.8505) (xy 68.250408 28.835063) + (xy 68.478663 28.773903) (xy 68.69283 28.674035) (xy 68.886401 28.538495) (xy 69.053495 28.371401) + (xy 69.18373 28.185405) (xy 69.238307 28.141781) (xy 69.307805 28.134587) (xy 69.37016 28.16611) + (xy 69.386879 28.185405) (xy 69.51689 28.371078) (xy 69.683917 28.538105) (xy 69.877421 28.6736) + (xy 70.091507 28.773429) (xy 70.091516 28.773433) (xy 70.305 28.830634) (xy 70.305 27.933012) (xy 70.362007 27.965925) + (xy 70.489174 28) (xy 70.620826 28) (xy 70.747993 27.965925) (xy 70.805 27.933012) (xy 70.805 28.830633) + (xy 71.018483 28.773433) (xy 71.018492 28.773429) (xy 71.232578 28.6736) (xy 71.426082 28.538105) + (xy 71.593105 28.371082) (xy 71.7286 28.177578) (xy 71.828429 27.963492) (xy 71.828432 27.963486) + (xy 71.885636 27.75) (xy 70.988012 27.75) (xy 71.020925 27.692993) (xy 71.055 27.565826) (xy 71.055 27.434174) + (xy 71.020925 27.307007) (xy 70.988012 27.25) (xy 71.885636 27.25) (xy 71.885635 27.249999) (xy 71.828432 27.036513) + (xy 71.828429 27.036507) (xy 71.7286 26.822422) (xy 71.728599 26.82242) (xy 71.593113 26.628926) + (xy 71.593108 26.62892) (xy 71.426082 26.461894) (xy 71.232578 26.326399) (xy 71.018492 26.22657) + (xy 71.018486 26.226567) (xy 70.805 26.169364) (xy 70.805 27.066988) (xy 70.747993 27.034075) (xy 70.620826 27) + (xy 70.489174 27) (xy 70.362007 27.034075) (xy 70.305 27.066988) (xy 70.305 26.169364) (xy 70.304999 26.169364) + (xy 70.091513 26.226567) (xy 70.091507 26.22657) (xy 69.877422 26.326399) (xy 69.87742 26.3264) + (xy 69.683926 26.461886) (xy 69.68392 26.461891) (xy 69.516891 26.62892) (xy 69.51689 26.628922) + (xy 69.38688 26.814595) (xy 69.332303 26.858219) (xy 69.262804 26.865412) (xy 69.20045 26.83389) + (xy 69.18373 26.814594) (xy 69.053494 26.628597) (xy 68.886402 26.461506) (xy 68.886395 26.461501) + (xy 68.871572 26.451122) (xy 68.809518 26.407671) (xy 68.692834 26.325967) (xy 68.69283 26.325965) + (xy 68.692828 26.325964) (xy 68.478663 26.226097) (xy 68.478659 26.226096) (xy 68.478655 26.226094) + (xy 68.250413 26.164938) (xy 68.250403 26.164936) (xy 68.015001 26.144341) (xy 68.014999 26.144341) + (xy 67.779596 26.164936) (xy 67.779586 26.164938) (xy 67.551344 26.226094) (xy 67.551335 26.226098) + (xy 67.337171 26.325964) (xy 67.337169 26.325965) (xy 67.1436 26.461503) (xy 67.021673 26.58343) + (xy 66.96035 26.616914) (xy 66.890658 26.61193) (xy 66.834725 26.570058) (xy 66.81781 26.539081) + (xy 66.768797 26.407671) (xy 66.768793 26.407664) (xy 66.682547 26.292455) (xy 66.682544 26.292452) + (xy 66.567335 26.206206) (xy 66.567328 26.206202) (xy 66.432482 26.155908) (xy 66.432483 26.155908) + (xy 66.372883 26.149501) (xy 66.372881 26.1495) (xy 66.372873 26.1495) (xy 66.372865 26.1495) (xy 66.3495 26.1495) + (xy 66.282461 26.129815) (xy 66.236706 26.077011) (xy 66.2255 26.0255) (xy 66.2255 21.21181) (xy 66.227883 21.187618) + (xy 66.2505 21.07392) (xy 66.2505 20.92608) (xy 66.221658 20.781089) (xy 66.221657 20.781085) (xy 66.206506 20.744506) + (xy 66.165087 20.644511) (xy 66.16508 20.644498) (xy 66.082951 20.521584) (xy 66.082948 20.52158) + (xy 65.978419 20.417051) (xy 65.978415 20.417048) (xy 65.855501 20.334919) (xy 65.855488 20.334912) + (xy 65.718917 20.278343) (xy 65.718907 20.27834) (xy 65.57392 20.2495) (xy 65.573918 20.2495) (xy 38.124499 20.2495) + (xy 38.05746 20.229815) (xy 38.011705 20.177011) (xy 38.000499 20.1255) (xy 38.000499 19.974998) + (xy 38.000498 19.974981) (xy 37.989999 19.872203) (xy 37.989998 19.8722) (xy 37.934814 19.705666) + (xy 37.842712 19.556344) (xy 37.718656 19.432288) (xy 37.569334 19.340186) (xy 37.402797 19.285001) + (xy 37.402795 19.285) (xy 37.30001 19.2745) (xy 36.699998 19.2745) (xy 36.69998 19.274501) (xy 36.597203 19.285) + (xy 36.5972 19.285001) (xy 36.430668 19.340185) (xy 36.430663 19.340187) (xy 36.281342 19.432289) + (xy 36.157288 19.556343) (xy 36.157283 19.556349) (xy 36.155241 19.559661) (xy 36.153247 19.561453) + (xy 36.152807 19.562011) (xy 36.152711 19.561935) (xy 36.103291 19.606383) (xy 36.034328 19.617602) + (xy 35.970247 19.589755) (xy 35.944168 19.559656) (xy 35.942319 19.556659) (xy 35.942316 19.556655) + (xy 35.818345 19.432684) (xy 35.669124 19.340643) (xy 35.669119 19.340641) (xy 35.502697 19.285494) + (xy 35.50269 19.285493) (xy 35.399986 19.275) (xy 35.35 19.275) (xy 35.35 21.724999) (xy 35.399972 21.724999) + (xy 35.399986 21.724998) (xy 35.502695 21.714506) (xy 35.586495 21.686737) (xy 35.656324 21.684335) + (xy 35.716366 21.720066) (xy 35.747559 21.782587) (xy 35.7495 21.804443) (xy 35.7495 23.537529) + (xy 35.729815 23.604568) (xy 35.677011 23.650323) (xy 35.659613 23.656744) (xy 35.626956 23.666088) + (xy 35.446591 23.760303) (xy 35.412615 23.788006) (xy 35.348218 23.815114) (xy 35.286805 23.806463) + (xy 35.218917 23.778343) (xy 35.218907 23.77834) (xy 35.07392 23.7495) (xy 35.073918 23.7495) (xy 32.5745 23.7495) + (xy 32.507461 23.729815) (xy 32.461706 23.677011) (xy 32.4505 23.6255) (xy 32.4505 21.836433) (xy 32.470185 21.769394) + (xy 32.522989 21.723639) (xy 32.590558 21.713923) (xy 32.590569 21.713818) (xy 32.590991 21.713861) + (xy 32.592147 21.713695) (xy 32.595849 21.714357) (xy 32.700019 21.724999) (xy 32.749999 21.724998) + (xy 32.75 21.724998) (xy 32.75 19.275) (xy 33.25 19.275) (xy 33.25 21.724999) (xy 33.299972 21.724999) + (xy 33.299986 21.724998) (xy 33.402697 21.714505) (xy 33.569119 21.659358) (xy 33.569124 21.659356) + (xy 33.718345 21.567315) (xy 33.842315 21.443345) (xy 33.934356 21.294124) (xy 33.937408 21.287579) + (xy 33.940255 21.288906) (xy 33.971914 21.243027) (xy 34.036387 21.216102) (xy 34.105182 21.228309) + (xy 34.156457 21.275771) (xy 34.161997 21.287856) (xy 34.162592 21.287579) (xy 34.165643 21.294124) + (xy 34.257684 21.443345) (xy 34.381654 21.567315) (xy 34.530875 21.659356) (xy 34.53088 21.659358) + (xy 34.697302 21.714505) (xy 34.697309 21.714506) (xy 34.800019 21.724999) (xy 34.849999 21.724998) + (xy 34.85 21.724998) (xy 34.85 19.275) (xy 34.849999 19.274999) (xy 34.800029 19.275) (xy 34.800011 19.275001) + (xy 34.697302 19.285494) (xy 34.53088 19.340641) (xy 34.530875 19.340643) (xy 34.381654 19.432684) + (xy 34.257684 19.556654) (xy 34.165643 19.705875) (xy 34.162592 19.712421) (xy 34.15978 19.711109) + (xy 34.127901 19.757121) (xy 34.063376 19.783922) (xy 33.994605 19.771585) (xy 33.943421 19.724024) + (xy 33.937996 19.712146) (xy 33.937408 19.712421) (xy 33.934356 19.705875) (xy 33.842315 19.556654) + (xy 33.718345 19.432684) (xy 33.569124 19.340643) (xy 33.569119 19.340641) (xy 33.402697 19.285494) + (xy 33.40269 19.285493) (xy 33.299986 19.275) (xy 33.25 19.275) (xy 32.75 19.275) (xy 32.749999 19.274999) + (xy 32.700029 19.275) (xy 32.700011 19.275001) (xy 32.597302 19.285494) (xy 32.43088 19.340641) + (xy 32.430875 19.340643) (xy 32.281654 19.432684) (xy 32.157683 19.556655) (xy 32.157679 19.55666) + (xy 32.155826 19.559665) (xy 32.154018 19.56129) (xy 32.153202 19.562323) (xy 32.153025 19.562183) + (xy 32.103874 19.606385) (xy 32.034911 19.617601) (xy 31.970831 19.589752) (xy 31.944753 19.559653) + (xy 31.944737 19.559628) (xy 31.942712 19.556344) (xy 31.818656 19.432288) (xy 31.669334 19.340186) + (xy 31.502797 19.285001) (xy 31.502795 19.285) (xy 31.40001 19.2745) (xy 30.799998 19.2745) (xy 30.79998 19.274501) + (xy 30.697203 19.285) (xy 30.6972 19.285001) (xy 30.530668 19.340185) (xy 30.530663 19.340187) (xy 30.381342 19.432289) + (xy 30.257289 19.556342) (xy 30.165187 19.705663) (xy 30.165185 19.705668) (xy 30.139254 19.783922) + (xy 30.110001 19.872203) (xy 30.110001 19.872204) (xy 30.11 19.872204) (xy 30.0995 19.974983) (xy 30.0995 21.025001) + (xy 30.099501 21.025019) (xy 30.11 21.127796) (xy 30.110001 21.127799) (xy 30.159035 21.275771) + (xy 30.165186 21.294334) (xy 30.257288 21.443656) (xy 30.381344 21.567712) (xy 30.530666 21.659814) + (xy 30.697203 21.714999) (xy 30.799991 21.7255) (xy 30.825498 21.725499) (xy 30.892536 21.745181) + (xy 30.938293 21.797984) (xy 30.9495 21.849499) (xy 30.9495 22.326) (xy 30.929815 22.393039) (xy 30.877011 22.438794) + (xy 30.8255 22.45) (xy 30.45 22.45) (xy 30.45 23.826) (xy 30.430315 23.893039) (xy 30.377511 23.938794) + (xy 30.326 23.95) (xy 28.7 23.95) (xy 28.7 24.151096) (xy 28.702897 24.193824) (xy 28.748831 24.378523) + (xy 28.83339 24.549022) (xy 28.833392 24.549025) (xy 28.95263 24.697364) (xy 29.021884 24.753031) + (xy 29.061803 24.810375) (xy 29.064383 24.880197) (xy 29.028805 24.940329) (xy 29.021885 24.946326) + (xy 28.952276 25.00228) (xy 28.832969 25.150704) (xy 28.832967 25.150707) (xy 28.74836 25.321302) + (xy 28.7024 25.506107) (xy 28.6995 25.548879) (xy 28.6995 26.451122) (xy 28.699501 26.451125) (xy 28.702399 26.493886) + (xy 28.702399 26.493887) (xy 28.74836 26.678696) (xy 28.832967 26.849292) (xy 28.832969 26.849295) + (xy 28.952277 26.997721) (xy 28.952278 26.997722) (xy 29.021486 27.053353) (xy 29.061405 27.110696) + (xy 29.063985 27.180518) (xy 29.028406 27.240651) (xy 29.021486 27.246647) (xy 28.952278 27.302277) + (xy 28.952277 27.302278) (xy 28.832969 27.450704) (xy 28.832967 27.450708) (xy 28.806453 27.504167) + (xy 28.759031 27.555479) (xy 28.719558 27.570688) (xy 28.71158 27.572275) (xy 28.641989 27.566048) + (xy 28.599707 27.538339) (xy 28.261818 27.20045) (xy 28.228333 27.139127) (xy 28.225499 27.112769) + (xy 28.225499 26.699998) (xy 28.225498 26.699981) (xy 28.214999 26.597203) (xy 28.214998 26.5972) + (xy 28.180763 26.493886) (xy 28.159814 26.430666) (xy 28.067712 26.281344) (xy 27.943656 26.157288) + (xy 27.940342 26.155243) (xy 27.938546 26.153248) (xy 27.937989 26.152807) (xy 27.938064 26.152711) + (xy 27.893618 26.103297) (xy 27.882397 26.034334) (xy 27.91024 25.970252) (xy 27.940348 25.944165) + (xy 27.943342 25.942318) (xy 28.067315 25.818345) (xy 28.159356 25.669124) (xy 28.159358 25.669119) + (xy 28.214505 25.502697) (xy 28.214506 25.50269) (xy 28.224999 25.399986) (xy 28.225 25.399973) + (xy 28.225 25.35) (xy 25.775001 25.35) (xy 25.775001 25.399986) (xy 25.785494 25.502697) (xy 25.840641 25.669119) + (xy 25.840643 25.669124) (xy 25.932684 25.818345) (xy 26.056655 25.942316) (xy 26.056659 25.942319) + (xy 26.059656 25.944168) (xy 26.061279 25.945972) (xy 26.062323 25.946798) (xy 26.062181 25.946976) + (xy 26.106381 25.996116) (xy 26.117602 26.065079) (xy 26.089759 26.129161) (xy 26.059661 26.155241) + (xy 26.056349 26.157283) (xy 26.056343 26.157288) (xy 25.932289 26.281342) (xy 25.840187 26.430663) + (xy 25.840185 26.430668) (xy 25.829839 26.461891) (xy 25.785001 26.597203) (xy 25.785001 26.597204) + (xy 25.785 26.597204) (xy 25.7745 26.699983) (xy 25.7745 27.300001) (xy 25.774501 27.300019) (xy 25.785 27.402796) + (xy 25.785001 27.402799) (xy 25.829915 27.538339) (xy 25.840186 27.569334) (xy 25.932288 27.718656) + (xy 26.056344 27.842712) (xy 26.205666 27.934814) (xy 26.372203 27.989999) (xy 26.474991 28.0005) + (xy 26.887769 28.000499) (xy 26.954808 28.020183) (xy 26.97545 28.036818) (xy 27.813181 28.874549) + (xy 27.846666 28.935872) (xy 27.8495 28.96223) (xy 27.8495 30.91277) (xy 27.829815 30.979809) (xy 27.813181 31.000451) + (xy 27.757289 31.056342) (xy 27.665187 31.205663) (xy 27.665185 31.205668) (xy 27.665115 31.20588) + (xy 27.610001 31.372203) (xy 27.610001 31.372204) (xy 27.61 31.372204) (xy 27.5995 31.474983) (xy 27.5995 32.525001) + (xy 27.599501 32.525019) (xy 27.61 32.627796) (xy 27.610001 32.627799) (xy 27.633 32.697203) (xy 27.665186 32.794334) + (xy 27.757096 32.943345) (xy 27.757289 32.943657) (xy 27.813181 32.999549) (xy 27.846666 33.060872) + (xy 27.8495 33.08723) (xy 27.8495 33.41277) (xy 27.829815 33.479809) (xy 27.813181 33.500451) (xy 27.757289 33.556342) + (xy 27.665187 33.705663) (xy 27.665185 33.705668) (xy 27.665115 33.70588) (xy 27.610001 33.872203) + (xy 27.610001 33.872204) (xy 27.61 33.872204) (xy 27.5995 33.974983) (xy 27.5995 34.387769) (xy 27.579815 34.454808) + (xy 27.563181 34.47545) (xy 26.192045 35.846586) (xy 26.161069 35.892949) (xy 26.161067 35.892952) + (xy 26.109919 35.969499) (xy 26.109912 35.969511) (xy 26.053343 36.106082) (xy 26.05334 36.106092) + (xy 26.0245 36.251079) (xy 26.0245 36.251082) (xy 26.0245 40.848918) (xy 26.0245 40.84892) (xy 26.024499 40.84892) + (xy 26.05334 40.993907) (xy 26.053343 40.993917) (xy 26.109913 41.13049) (xy 26.109914 41.130492) + (xy 26.133028 41.165084) (xy 26.133029 41.165086) (xy 26.192045 41.253414) (xy 26.192049 41.253418) + (xy 26.738181 41.799548) (xy 26.771666 41.860871) (xy 26.7745 41.887229) (xy 26.7745 42.300001) + (xy 26.774501 42.300019) (xy 26.785 42.402796) (xy 26.785001 42.402799) (xy 26.817211 42.5) (xy 26.840186 42.569334) + (xy 26.932288 42.718656) (xy 27.056344 42.842712) (xy 27.190597 42.925519) (xy 27.237321 42.977465) + (xy 27.2495 43.031057) (xy 27.2495 45.0255) (xy 27.229815 45.092539) (xy 27.177011 45.138294) (xy 27.1255 45.1495) + (xy 26.062129 45.1495) (xy 26.062123 45.149501) (xy 26.002516 45.155908) (xy 25.867671 45.206202) + (xy 25.867664 45.206206) (xy 25.752455 45.292452) (xy 25.752452 45.292455) (xy 25.666206 45.407664) + (xy 25.666202 45.407671) (xy 25.615908 45.542517) (xy 25.609501 45.602116) (xy 25.6095 45.602135) + (xy 20 45.602135) (xy 20 24.800013) (xy 25.775 24.800013) (xy 25.775 24.85) (xy 26.75 24.85) (xy 27.25 24.85) + (xy 28.224999 24.85) (xy 28.224999 24.800028) (xy 28.224998 24.800013) (xy 28.214505 24.697302) + (xy 28.159358 24.53088) (xy 28.159356 24.530875) (xy 28.067315 24.381654) (xy 27.943345 24.257684) + (xy 27.794124 24.165643) (xy 27.794119 24.165641) (xy 27.627697 24.110494) (xy 27.62769 24.110493) + (xy 27.524986 24.1) (xy 27.25 24.1) (xy 27.25 24.85) (xy 26.75 24.85) (xy 26.75 24.1) (xy 26.475029 24.1) + (xy 26.475012 24.100001) (xy 26.372302 24.110494) (xy 26.20588 24.165641) (xy 26.205875 24.165643) + (xy 26.056654 24.257684) (xy 25.932684 24.381654) (xy 25.840643 24.530875) (xy 25.840641 24.53088) + (xy 25.785494 24.697302) (xy 25.785493 24.697309) (xy 25.775 24.800013) (xy 20 24.800013) (xy 20 23.248903) + (xy 28.7 23.248903) (xy 28.7 23.45) (xy 29.95 23.45) (xy 29.95 22.45) (xy 29.498903 22.45) (xy 29.456175 22.452897) + (xy 29.271476 22.498831) (xy 29.100977 22.58339) (xy 29.100974 22.583392) (xy 28.952633 22.702632) + (xy 28.952632 22.702633) (xy 28.833392 22.850974) (xy 28.83339 22.850977) (xy 28.748831 23.021476) + (xy 28.702897 23.206175) (xy 28.7 23.248903) (xy 20 23.248903) (xy 20 15.124) (xy 20.019685 15.056961) + (xy 20.072489 15.011206) (xy 20.124 15) (xy 79.876 15) + ) + ) + ) +) diff --git a/Schematics/Schematics.kicad_prl b/Schematics/Schematics.kicad_prl new file mode 100644 index 0000000..64f002a --- /dev/null +++ b/Schematics/Schematics.kicad_prl @@ -0,0 +1,83 @@ +{ + "board": { + "active_layer": 0, + "active_layer_preset": "All Layers", + "auto_track_width": true, + "hidden_netclasses": [], + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "images": 0.6, + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": false, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36, + 39, + 40 + ], + "visible_layers": "fffffff_ffffffff", + "zone_display_mode": 0 + }, + "git": { + "repo_password": "", + "repo_type": "", + "repo_username": "", + "ssh_key": "" + }, + "meta": { + "filename": "Schematics.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/Schematics/Schematics.kicad_pro b/Schematics/Schematics.kicad_pro new file mode 100644 index 0000000..bc2d701 --- /dev/null +++ b/Schematics/Schematics.kicad_pro @@ -0,0 +1,584 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "apply_defaults_to_fp_fields": false, + "apply_defaults_to_fp_shapes": false, + "apply_defaults_to_fp_text": false, + "board_outline_line_width": 0.05, + "copper_line_width": 0.2, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.05, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.1, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.1, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.1, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.1, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.5 + } + }, + "diff_pair_dimensions": [], + "drc_exclusions": [], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_symbol_mismatch": "warning", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_near_hole": "error", + "holes_co_located": "warning", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "max_error": 0.005, + "min_clearance": 0.25, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.5, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.1, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.8, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.5, + "min_via_annular_width": 0.1, + "min_via_diameter": 0.5, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_onpadsmd": true, + "td_onroundshapesonly": false, + "td_ontrackend": false, + "td_onviapad": true + } + ], + "teardrop_parameters": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [], + "tuning_pattern_settings": { + "diff_pair_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 1.0 + }, + "diff_pair_skew_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + }, + "single_track_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + } + }, + "via_dimensions": [], + "zones_allow_external_fillets": false + }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "conflicting_netclasses": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "simulation_model_issue": "ignore", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "Schematics.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.2, + "via_diameter": 0.6, + "via_drill": 0.3, + "wire_width": 6 + } + ], + "meta": { + "version": 3 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "plot": "", + "pos_files": "", + "specctra_dsn": "", + "step": "", + "svg": "safd/", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "bom_export_filename": "", + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": false, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + } + ], + "filter_string": "", + "group_symbols": true, + "name": "Grouped By Value", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "page_layout_descr_file": "", + "plot_directory": "", + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_dissipations": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "e6fda718-069e-4009-9f9c-45233c83d734", + "Root" + ] + ], + "text_variables": {} +} diff --git a/Schematics/Schematics.kicad_sch b/Schematics/Schematics.kicad_sch new file mode 100644 index 0000000..10f4525 --- /dev/null +++ b/Schematics/Schematics.kicad_sch @@ -0,0 +1,6098 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "e6fda718-069e-4009-9f9c-45233c83d734") + (paper "A4") + (lib_symbols + (symbol "Connector_Generic:Conn_01x02" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x02" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x02_1_1" + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 1.27) + (end 1.27 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x03" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x03" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x03_1_1" + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 3.81) + (end 1.27 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x04" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x04" + (at 0 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x04_1_1" + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 3.81) + (end 1.27 -6.35) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x05" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x05" + (at 0 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x05_1_1" + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 5.207) + (end 0 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 6.35) + (end 1.27 -6.35) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at -5.08 5.08 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C_Polarized" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C_Polarized" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "CP_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_Polarized_0_1" + (rectangle + (start -2.286 0.508) + (end 2.286 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.778 2.286) (xy -0.762 2.286) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 2.794) (xy -1.27 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 2.286 -0.508) + (end -2.286 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "C_Polarized_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "PCM_Espressif:ESP32-WROVER-E" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -30.48 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "ESP32-WROVER-E" + (at -30.48 22.86 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_Espressif:ESP32-WROVER-E" + (at 2.54 -33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-wrover-e_esp32-wrover-ie_datasheet_en.pdf" + (at 2.54 -35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "ESP32-WROVER-E and ESP32-WROVER-IE are two powerful, generic WiFi-BT-BLE MCU modules that target a wide variety of applications, ranging from low-power sensor networks to the most demanding tasks, such as voice encoding, music streaming and MP3 decoding. ESP32-WROVER-E comes with a PCB antenna, and ESP32-WROVER-IE with an IPEX antenna. They both featurea 4 MB external SPI flash and an additional 8 MB SPI Pseudo static RAM (PSRAM)." + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "ESP32" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "ESP32-WROVER-E_0_1" + (rectangle + (start -33.02 20.32) + (end 33.02 -20.32) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "ESP32-WROVER-E_1_1" + (text "ESP32-­WROVER" + (at 7.62 0 0) + (effects + (font + (size 2.54 2.54) + ) + ) + ) + (pin power_in line + (at 0 -22.86 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -12.7 180) + (length 2.54) + (name "DAC_1/ADC2_CH8/GPIO25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -15.24 180) + (length 2.54) + (name "DAC_2/ADC2_CH9/GPIO26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -17.78 180) + (length 2.54) + (name "ADC2_CH7/GPIO27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 0 0) + (length 2.54) + (name "MTMS/GPIO14/ADC2_CH6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 5.08 0) + (length 2.54) + (name "MTDI/GPIO12/ADC2_CH5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 2.54 0) + (length 2.54) + (name "MTCK/GPIO13/ADC2_CH4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 22.86 270) + (length 2.54) + (name "3V3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 -2.54 0) + (length 2.54) + (name "MTDO/GPIO15/ADC2_CH3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 7.62 180) + (length 2.54) + (name "ADC2_CH2/GPIO2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 10.16 180) + (length 2.54) + (name "GPIO0/BOOT/ADC2_CH1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 5.08 180) + (length 2.54) + (name "ADC2_CH0/GPIO4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 2.54 180) + (length 2.54) + (name "GPIO5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -35.56 17.78 0) + (length 2.54) + (name "EN/CHIP_PU" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 0 180) + (length 2.54) + (name "GPIO18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -2.54 180) + (length 2.54) + (name "GPIO19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -5.08 180) + (length 2.54) + (name "GPIO21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 15.24 180) + (length 2.54) + (name "U0RXD/GPIO3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 17.78 180) + (length 2.54) + (name "U0TXD/GPIO1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -7.62 180) + (length 2.54) + (name "GPIO22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -10.16 180) + (length 2.54) + (name "GPIO23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 -22.86 90) + (length 2.54) + (name "GND_THERMAL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -35.56 -12.7 0) + (length 2.54) + (name "SENSOR_VP/GPIO36/ADC1_CH0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -35.56 -15.24 0) + (length 2.54) + (name "SENSOR_VN/GPIO39/ADC1_CH3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -35.56 -7.62 0) + (length 2.54) + (name "GPIO34/ADC1_CH6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -35.56 -10.16 0) + (length 2.54) + (name "GPIO35/ADC1_CH7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 12.7 0) + (length 2.54) + (name "32K_XP/GPIO32/ADC1_CH4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 10.16 0) + (length 2.54) + (name "32K_XN/GPIO33/ADC1_CH5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Regulator_Linear:AMS1117-3.3" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -3.81 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AMS1117-3.3" + (at 0 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 2.54 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "linear regulator ldo fixed positive" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?223*TabPin2*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AMS1117-3.3_0_1" + (rectangle + (start -5.08 -5.08) + (end 5.08 1.905) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "AMS1117-3.3_1_1" + (pin power_in line + (at 0 -7.62 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 7.62 0 180) + (length 2.54) + (name "VO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -7.62 0 0) + (length 2.54) + (name "VI" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Regulator_Linear:AMS1117-5.0" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -3.81 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AMS1117-5.0" + (at 0 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 2.54 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 5.0V fixed output, SOT-223" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "linear regulator ldo fixed positive" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?223*TabPin2*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AMS1117-5.0_0_1" + (rectangle + (start -5.08 -5.08) + (end 5.08 1.905) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "AMS1117-5.0_1_1" + (pin power_in line + (at 0 -7.62 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 7.62 0 180) + (length 2.54) + (name "VO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -7.62 0 0) + (length 2.54) + (name "VI" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+3.3V" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+5V" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+5V_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:VCC" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VCC\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "VCC_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "VCC_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 92.71 125.73) + (diameter 0) + (color 0 0 0 0) + (uuid "0855233e-17dc-40e9-88e5-f4293803037b") + ) + (junction + (at 64.77 149.86) + (diameter 0) + (color 0 0 0 0) + (uuid "0ac01c03-d8d9-4fa4-b797-c423b3828cbd") + ) + (junction + (at 93.98 157.48) + (diameter 0) + (color 0 0 0 0) + (uuid "0d2efe16-9976-44ba-bb39-2e66301c80f4") + ) + (junction + (at 107.95 96.52) + (diameter 0) + (color 0 0 0 0) + (uuid "19366a19-2b2c-4cb1-a54c-9055d313ee57") + ) + (junction + (at 104.14 149.86) + (diameter 0) + (color 0 0 0 0) + (uuid "2540262e-347d-4b0a-9cf5-e65c2621996d") + ) + (junction + (at 71.12 149.86) + (diameter 0) + (color 0 0 0 0) + (uuid "765e68e7-0122-48b3-ba26-b89fd43f6b2b") + ) + (junction + (at 69.85 133.35) + (diameter 0) + (color 0 0 0 0) + (uuid "9f8893bc-1556-4c1f-a99d-6ea5d8b13df3") + ) + (junction + (at 93.98 149.86) + (diameter 0) + (color 0 0 0 0) + (uuid "a00f5f48-3fa2-4c8e-8831-751649e0330b") + ) + (junction + (at 97.79 125.73) + (diameter 0) + (color 0 0 0 0) + (uuid "a29a9e29-f14c-4285-9e80-a1bf7c32ee64") + ) + (junction + (at 92.71 133.35) + (diameter 0) + (color 0 0 0 0) + (uuid "a3522a42-6a46-45f5-864f-a62618d84bb7") + ) + (junction + (at 59.69 125.73) + (diameter 0) + (color 0 0 0 0) + (uuid "aae94ae2-f4d1-4538-8e06-3c439b48fcb3") + ) + (junction + (at 83.82 157.48) + (diameter 0) + (color 0 0 0 0) + (uuid "c44de8a8-baeb-495f-b09f-39a82bbdc1f8") + ) + (junction + (at 83.82 133.35) + (diameter 0) + (color 0 0 0 0) + (uuid "ceb34c7c-ba47-49b2-84a9-0b32eed270b6") + ) + (junction + (at 71.12 157.48) + (diameter 0) + (color 0 0 0 0) + (uuid "d49208ad-e2f4-437b-b592-fbd53ffa2743") + ) + (junction + (at 69.85 125.73) + (diameter 0) + (color 0 0 0 0) + (uuid "fea54ea6-45d1-463f-83bc-9874b1f0a21d") + ) + (wire + (pts + (xy 191.77 78.74) (xy 203.2 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "022746c9-1f22-44c6-9ffc-ebb9994770bd") + ) + (wire + (pts + (xy 69.85 55.88) (xy 69.85 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "07e6270c-b2bd-47d3-a52e-439df73cb742") + ) + (wire + (pts + (xy 83.82 157.48) (xy 93.98 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0f938032-1f9c-47e6-9101-485fdbc302b2") + ) + (wire + (pts + (xy 92.71 133.35) (xy 106.68 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1179514a-0e1f-417d-ab88-95419d67fdb3") + ) + (wire + (pts + (xy 93.98 149.86) (xy 104.14 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "263a742c-728d-4bab-a426-a2c0485fff17") + ) + (wire + (pts + (xy 59.69 147.32) (xy 59.69 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "30a67723-d908-449b-80fe-5056a7f2831f") + ) + (wire + (pts + (xy 83.82 161.29) (xy 83.82 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "393b8439-5632-41a6-98fe-a69a016f4896") + ) + (wire + (pts + (xy 71.12 157.48) (xy 83.82 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "395d925f-ca76-4efc-a837-fbec6aec64cc") + ) + (wire + (pts + (xy 189.23 135.89) (xy 203.2 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3dea82da-f122-4907-8292-1c159a889a2f") + ) + (wire + (pts + (xy 191.77 76.2) (xy 203.2 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4075fe93-6d17-49c8-8034-4ea8b17bb33a") + ) + (wire + (pts + (xy 199.39 45.72) (xy 203.2 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4249b038-143c-40fd-88d1-e3f56667776f") + ) + (wire + (pts + (xy 114.3 149.86) (xy 114.3 148.59) + ) + (stroke + (width 0) + (type default) + ) + (uuid "43241c14-5af2-4155-a4e6-4118e2a65537") + ) + (wire + (pts + (xy 143.51 86.36) (xy 147.32 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "47a360d4-1cfd-444b-ab34-de8f26512ff6") + ) + (wire + (pts + (xy 92.71 125.73) (xy 97.79 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "493fa861-a5fb-40a5-ad14-8cf6d95cf491") + ) + (wire + (pts + (xy 59.69 121.92) (xy 59.69 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4a0544b3-cb2c-412c-b4c9-5b67478a26bd") + ) + (wire + (pts + (xy 59.69 71.12) (xy 72.39 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4b658360-3ab6-4887-9885-63b951f8d800") + ) + (wire + (pts + (xy 143.51 88.9) (xy 147.32 88.9) + ) + (stroke + (width 0) + (type default) + ) + (uuid "55df7756-e315-45a3-8290-33339e414a8d") + ) + (wire + (pts + (xy 69.85 125.73) (xy 76.2 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5aec2d96-81cc-4332-9dac-cda7447cc04c") + ) + (wire + (pts + (xy 143.51 78.74) (xy 147.32 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5af8ae40-022b-4ee0-b2e2-0883c6e2361a") + ) + (wire + (pts + (xy 143.51 76.2) (xy 147.32 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5e807d0c-36d4-4f6e-b52d-6e8040ccf904") + ) + (wire + (pts + (xy 193.04 106.68) (xy 203.2 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5fb0bf02-b1c1-41af-bdeb-c7ad22e146cf") + ) + (wire + (pts + (xy 143.51 58.42) (xy 148.59 58.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "62373c7a-7ffa-4862-8481-b3d5c2a8c760") + ) + (wire + (pts + (xy 59.69 125.73) (xy 69.85 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "627e7c64-5656-47b6-a6db-324fb8e19aee") + ) + (wire + (pts + (xy 106.68 125.73) (xy 97.79 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "650ca792-1765-42b7-a7ed-aae65b9be67e") + ) + (wire + (pts + (xy 199.39 62.23) (xy 203.2 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "656a8f07-790a-4c3d-91e0-5e2395754fad") + ) + (wire + (pts + (xy 199.39 59.69) (xy 203.2 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "65f737dd-046f-4f9a-bfaf-b05168578a39") + ) + (wire + (pts + (xy 91.44 149.86) (xy 93.98 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "664ce0ee-3f5a-425a-9a3d-e38c4330bc71") + ) + (wire + (pts + (xy 143.51 81.28) (xy 147.32 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "68283e7d-9647-48f2-ba8b-e9023315bf15") + ) + (wire + (pts + (xy 69.85 133.35) (xy 83.82 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6c29b56d-cfdf-4faa-9f1c-22a103a4df3b") + ) + (wire + (pts + (xy 64.77 149.86) (xy 71.12 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6c8d7712-201c-40b9-b15b-67da274df47d") + ) + (wire + (pts + (xy 143.51 68.58) (xy 147.32 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6eee89ee-0f55-4f10-a77b-c7f9a2008d5f") + ) + (wire + (pts + (xy 64.77 157.48) (xy 71.12 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "704ec63c-91d6-48fd-bd17-48f69868f6ef") + ) + (wire + (pts + (xy 83.82 133.35) (xy 83.82 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "71fba47d-7043-4242-aa04-6bf9c1a6af75") + ) + (wire + (pts + (xy 59.69 68.58) (xy 72.39 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "74552a21-15bc-4d1b-ab81-e96d6624e81e") + ) + (wire + (pts + (xy 143.51 55.88) (xy 148.59 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "750375cb-6686-4d81-ab70-2da0d67e974d") + ) + (wire + (pts + (xy 199.39 48.26) (xy 203.2 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "751bf6ed-26f8-48c3-bcbf-3f07784f1d02") + ) + (wire + (pts + (xy 189.23 133.35) (xy 203.2 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "89475352-93f6-45d5-8d3a-03cae25868c0") + ) + (wire + (pts + (xy 97.79 123.19) (xy 97.79 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "89e73e6f-9db4-45d1-8664-e59adc843fbc") + ) + (wire + (pts + (xy 189.23 91.44) (xy 203.2 91.44) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8ab43a16-49b6-4a07-b1ad-f669fe38ba9c") + ) + (wire + (pts + (xy 193.04 69.85) (xy 203.2 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9764f675-40fa-47bc-9639-a51ad918157f") + ) + (wire + (pts + (xy 189.23 88.9) (xy 203.2 88.9) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9c8d4990-0bfb-4bde-941d-61168836bbc7") + ) + (wire + (pts + (xy 57.15 133.35) (xy 69.85 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a1b10214-5a54-4ae1-af78-ee62c228f0be") + ) + (wire + (pts + (xy 57.15 125.73) (xy 59.69 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a234191f-9653-407d-bb2a-42957676e2dc") + ) + (wire + (pts + (xy 193.04 64.77) (xy 203.2 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a363f2a0-673b-492b-a534-f1ea3030ba85") + ) + (wire + (pts + (xy 91.44 125.73) (xy 92.71 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a5a89d1a-f28f-450c-b1bd-09693973d75c") + ) + (wire + (pts + (xy 107.95 45.72) (xy 107.95 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a944f499-32db-42d0-95ef-56df3b71fdc7") + ) + (wire + (pts + (xy 143.51 66.04) (xy 147.32 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a94d0ad4-7a31-440e-a20f-d72ac9233898") + ) + (wire + (pts + (xy 59.69 73.66) (xy 72.39 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b44c42ec-e3ca-4dd7-b15b-ea9006a3d573") + ) + (wire + (pts + (xy 143.51 73.66) (xy 147.32 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b6d558ae-94d8-421f-b859-614da85abf97") + ) + (wire + (pts + (xy 107.95 96.52) (xy 107.95 100.33) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b7510866-cd45-4bf3-8300-e55d12818d5f") + ) + (wire + (pts + (xy 189.23 93.98) (xy 203.2 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b8a55941-0eff-49d7-93a5-1a1c003bef51") + ) + (wire + (pts + (xy 104.14 149.86) (xy 114.3 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c226ebbb-46ec-4875-a537-c463a6ca9c85") + ) + (wire + (pts + (xy 71.12 149.86) (xy 76.2 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c4506b86-1b20-46fd-b23e-10c4b2da3564") + ) + (wire + (pts + (xy 72.39 55.88) (xy 69.85 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ca3409bc-8ffe-4ce2-b4fd-8720dec14963") + ) + (wire + (pts + (xy 143.51 71.12) (xy 147.32 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cfa76781-a131-4f8f-b7bc-8ba625eac631") + ) + (wire + (pts + (xy 59.69 149.86) (xy 64.77 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d2d52885-a238-4383-be80-819520faa161") + ) + (wire + (pts + (xy 193.04 67.31) (xy 203.2 67.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d620ee63-e453-4677-afb4-c806587f4a1c") + ) + (wire + (pts + (xy 93.98 157.48) (xy 104.14 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d65104c4-fb5e-4103-b8e0-63680cec69c4") + ) + (wire + (pts + (xy 107.95 96.52) (xy 110.49 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d8bc2f53-cd6c-4c66-bffc-3eaa7a1fc2f5") + ) + (wire + (pts + (xy 191.77 81.28) (xy 203.2 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ddbd9c04-508c-4116-9942-c9a9ef979ffb") + ) + (wire + (pts + (xy 83.82 133.35) (xy 92.71 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f7f3249d-7d11-4693-b3d5-2147343eafd5") + ) + (label "I2S_DA" + (at 147.32 86.36 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "04db30d9-3933-4f2c-a7a9-835ce0dc97d8") + ) + (label "I2S_CL" + (at 147.32 88.9 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0db685f3-7e65-420a-beec-ddabf89467f0") + ) + (label "KNOB2_BUT" + (at 59.69 71.12 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "18a953c4-541a-4107-8d7e-da63e3b7f82d") + ) + (label "I2S_LRCK" + (at 147.32 76.2 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "28f612de-de5b-4beb-b5ad-85ece33a500e") + ) + (label "LED_DATA" + (at 147.32 81.28 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4251f238-7f57-46ac-96c9-429cfd33e974") + ) + (label "I2S_DA" + (at 189.23 133.35 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "459ee4a5-349f-42b4-8528-fa76991ed323") + ) + (label "KNOB2_A" + (at 189.23 93.98 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "5eb627a4-61ba-47da-a6a7-1db4370db489") + ) + (label "RX" + (at 199.39 48.26 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "635c47f9-8a2d-44b6-baa7-0c6f070a187d") + ) + (label "RX" + (at 148.59 58.42 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6507ae65-3d5b-4dc5-8ed2-b185cb3978d6") + ) + (label "I2S_DATA" + (at 193.04 69.85 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6d55e109-55c4-4c92-90e0-39540f42839d") + ) + (label "KNOB2_B" + (at 189.23 91.44 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "96157de9-2bc2-49c8-81f5-5eeeaafe5a07") + ) + (label "KNOB1_B" + (at 147.32 68.58 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "9a9cf274-1e47-4815-9ee0-7299be62835e") + ) + (label "KNOB1_B" + (at 191.77 78.74 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a46afb5a-2d3a-406b-9a67-a0ec89eed79c") + ) + (label "KNOB2_A" + (at 59.69 73.66 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "aa8602ce-26ef-4ede-a1cb-2a8b4f28961d") + ) + (label "KNOB1_A" + (at 191.77 76.2 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "abe049fa-5a42-4e92-9bdf-bcd26e517c5a") + ) + (label "I2S_BCK" + (at 193.04 64.77 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "accdf5c1-cafb-40aa-a3e0-0038656ead7d") + ) + (label "I2S_LRCK" + (at 193.04 67.31 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b0f62abe-2ba9-424e-9170-f24c7ca2d5a0") + ) + (label "TX" + (at 148.59 55.88 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b15a3bae-cc91-44e3-8830-939b1917b8ce") + ) + (label "KNOB2_B" + (at 59.69 68.58 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b748e6ff-62fe-48de-92c1-46fc6dd9d098") + ) + (label "KNOB1_BUT" + (at 191.77 81.28 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b7f32195-495e-40ed-9dc4-8a21cf03918d") + ) + (label "KNOB1_A" + (at 147.32 71.12 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b919150d-cb16-4719-bae5-11a8b41bfe16") + ) + (label "I2S_DATA" + (at 147.32 78.74 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "be93abae-fba4-40a0-914b-1af2402e4c77") + ) + (label "LED_DATA" + (at 193.04 106.68 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c544cb60-6fe1-4fb5-ba28-7827808f4499") + ) + (label "I2S_BCK" + (at 147.32 73.66 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "cfc910fa-8a9d-4abe-9d99-52306d96c64c") + ) + (label "KNOB2_BUT" + (at 189.23 88.9 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d1f36d27-7f43-4b2d-a7f4-9d556a51c715") + ) + (label "TX" + (at 199.39 45.72 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d4bb6752-6583-4094-91d4-f4742156d3ed") + ) + (label "I2S_CL" + (at 189.23 135.89 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "ee0dd0d9-372f-43ec-847d-c491f9387265") + ) + (label "KNOB1_BUT" + (at 147.32 66.04 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f69dbcc1-fb7a-4ba4-a9bb-78c23fe4b1fd") + ) + (symbol + (lib_id "Device:C") + (at 92.71 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "062cd29a-32bd-447e-95fb-4bbbf29e43b7") + (property "Reference" "C8" + (at 96.52 128.2699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 96.52 130.8099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 93.6752 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 92.71 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 92.71 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "8f08c3c7-930a-4533-96e2-4ef30fde73a2") + ) + (pin "1" + (uuid "c499e9ea-74db-4230-affc-9c92d6b5dc17") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Regulator_Linear:AMS1117-3.3") + (at 83.82 125.73 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "09452429-3c6c-4fdf-ab5e-b206d942640b") + (property "Reference" "U2" + (at 83.82 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AMS1117-3.3" + (at 83.82 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 83.82 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 86.36 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" + (at 83.82 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9537df45-ded1-4443-b452-f813bf6030ff") + ) + (pin "2" + (uuid "a7d296dc-a474-402f-8740-b79dde3a3d1c") + ) + (pin "3" + (uuid "8fdba7d8-c037-407f-bb4e-db7a538ae06d") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "U2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3.3V") + (at 97.79 123.19 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "0ae110ae-c1b2-4b41-a1b9-12ac33b0a051") + (property "Reference" "#PWR01" + (at 97.79 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 97.79 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 97.79 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 97.79 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 97.79 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4fa2532a-fe32-4a62-86a9-4b9815fe13a6") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x04") + (at 208.28 133.35 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0da2f368-9baa-4a75-b3b3-a0e31ce5434b") + (property "Reference" "J7" + (at 213.868 133.096 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "I2C" + (at 210.312 136.144 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 208.28 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "3578766a-5bc4-4de6-87e4-6fb5563403bf") + ) + (pin "2" + (uuid "13ed7876-f470-4072-8186-73a09ffbfac1") + ) + (pin "3" + (uuid "7f69399a-1a4e-4f35-acab-0ec9132a9ff9") + ) + (pin "1" + (uuid "af6ddd24-defb-4edd-aa69-d73e8b9f54ac") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 199.39 62.23 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "12115c32-6111-4a72-a444-43b0536102d8") + (property "Reference" "#PWR017" + (at 203.2 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 195.834 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 199.39 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 199.39 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 199.39 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "613c5d4c-5158-475c-a1e7-d5fcc6c9705b") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR017") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 203.2 104.14 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "15d5ecbf-2f34-4e33-9fa6-d0095380512a") + (property "Reference" "#PWR016" + (at 203.2 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 203.2 100.584 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 203.2 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 203.2 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "552076fb-335d-4b5c-9e45-e6b561c0abcb") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR016") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 114.3 148.59 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2f1f5d08-8fd7-425b-adec-62aa72a84eac") + (property "Reference" "#PWR08" + (at 114.3 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 114.3 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 114.3 148.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 148.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 114.3 148.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "23a6d851-4e49-47de-ac5c-608752520833") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR08") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VCC") + (at 59.69 121.92 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "34eec6d6-615b-4d82-8952-39406d81fed2") + (property "Reference" "#PWR011" + (at 59.69 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 59.69 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 59.69 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 59.69 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VCC\"" + (at 59.69 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "31d0deec-a97b-4e63-b796-0a8a33a63ad6") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR011") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x03") + (at 208.28 48.26 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3b20fe75-ba15-43d5-833c-cb9a238f12d7") + (property "Reference" "J6" + (at 210.82 46.9899 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Programming" + (at 207.264 42.672 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 208.28 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "007692a6-bb0d-4c9c-ab49-c32818629e53") + ) + (pin "1" + (uuid "6cb7c2b9-4a5d-4b9f-9084-27ff1d39dccd") + ) + (pin "2" + (uuid "492aa748-5e95-4caa-bef2-a91ad32e5465") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Regulator_Linear:AMS1117-5.0") + (at 83.82 149.86 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3d4aaa66-9c5d-4a5c-9510-c6f5132b8af2") + (property "Reference" "U3" + (at 83.82 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AMS1117-5.0" + (at 83.82 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 83.82 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 86.36 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 5.0V fixed output, SOT-223" + (at 83.82 149.86 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "617fc78b-5bde-4a33-81cf-1c2289a3e965") + ) + (pin "1" + (uuid "7aba9d5a-de9f-4c05-9e2d-dad047a799c7") + ) + (pin "2" + (uuid "807631c7-0594-45a8-a59c-f31f492e0dc4") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "U3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3.3V") + (at 69.85 53.34 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3e5feb52-6ea1-4e8d-9536-84f418064c7a") + (property "Reference" "#PWR018" + (at 69.85 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 69.85 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 69.85 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 69.85 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 69.85 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3c6d1409-703d-46fe-b12e-2d9111d9c363") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR018") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 57.15 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "47ed2581-9371-4ee6-8d2a-4d8d6518797f") + (property "Reference" "C2" + (at 60.96 127.3809 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uF" + (at 60.96 129.9209 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 58.1152 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 57.15 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 57.15 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "8d385d9e-95a2-41f2-9888-05db684b9c81") + ) + (pin "1" + (uuid "9009b30f-1013-4349-93c9-94491b4bce5a") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 83.82 161.29 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "48058ae8-b9ae-4d11-9381-7f51e623b81e") + (property "Reference" "#PWR05" + (at 83.82 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 83.82 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 83.82 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 83.82 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 83.82 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "682a398c-f9c4-4653-9eec-ce02f2fb2056") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x02") + (at 208.28 119.38 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "4a115e1a-1a3d-486b-9fd7-8a09d1649a53") + (property "Reference" "J4" + (at 210.82 119.3799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "POWER IN" + (at 210.82 121.9199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" + (at 208.28 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7afdc379-9d5a-4f49-8630-0ee014aa2a1e") + ) + (pin "2" + (uuid "fff404e4-23fe-44b5-bffc-da6654eae187") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 199.39 59.69 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "4c38a671-417e-45ea-83e4-ed5ebe4afe4a") + (property "Reference" "#PWR014" + (at 193.04 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 194.31 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 199.39 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 199.39 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 199.39 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a6bae57d-e80f-4252-a3b4-39b5e6809c0e") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR014") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x05") + (at 208.28 64.77 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "4d1b4627-c9f1-457e-9a0a-542103462103") + (property "Reference" "J1" + (at 210.82 63.4999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "DAC_I2S" + (at 210.82 66.0399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" + (at 208.28 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "68c8a576-d5cb-40ca-95be-243efbf2956e") + ) + (pin "4" + (uuid "d10f69fb-6607-47d9-82c3-47a3ce3c8430") + ) + (pin "5" + (uuid "cd91cdda-dfa8-422f-bf31-1a31138284bb") + ) + (pin "2" + (uuid "ab58fb50-2caf-4e0d-a92e-a384d1415612") + ) + (pin "3" + (uuid "3cebbdf6-c201-4d01-8e04-194b2a635267") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VCC") + (at 59.69 147.32 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5df756b6-f80e-46fc-9d38-fc64562d185a") + (property "Reference" "#PWR010" + (at 59.69 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 59.69 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 59.69 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 59.69 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VCC\"" + (at 59.69 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d426a037-1a56-408f-81a8-01c6bf403e50") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR010") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 93.98 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "78c93ecb-818f-4a5d-a456-76127fdfa572") + (property "Reference" "C6" + (at 97.79 152.3999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 97.79 154.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 94.9452 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 93.98 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 93.98 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "99b8dd6d-c55f-433a-b4ce-58864913c13a") + ) + (pin "1" + (uuid "64f130b0-8851-4b3a-9f13-345ebe06c3ab") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 64.77 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "84e5ee43-1656-4504-876a-89cfe1207c34") + (property "Reference" "C3" + (at 58.166 151.384 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uF" + (at 52.07 156.972 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 65.7352 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 64.77 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 64.77 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "e7473549-eaeb-4cb4-95c5-f5f1c5f9d95e") + ) + (pin "1" + (uuid "06ec71cf-8622-4cd7-831d-d55f35de4a8c") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Espressif:ESP32-WROVER-E") + (at 107.95 73.66 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8500d52d-b549-413f-aeec-252f2687d2f3") + (property "Reference" "U1" + (at 110.1441 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "ESP32-WROVER-E" + (at 110.1441 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_Espressif:ESP32-WROVER-E" + (at 110.49 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-wrover-e_esp32-wrover-ie_datasheet_en.pdf" + (at 110.49 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "ESP32-WROVER-E and ESP32-WROVER-IE are two powerful, generic WiFi-BT-BLE MCU modules that target a wide variety of applications, ranging from low-power sensor networks to the most demanding tasks, such as voice encoding, music streaming and MP3 decoding. ESP32-WROVER-E comes with a PCB antenna, and ESP32-WROVER-IE with an IPEX antenna. They both featurea 4 MB external SPI flash and an additional 8 MB SPI Pseudo static RAM (PSRAM)." + (at 107.95 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1f362d47-890d-4e02-8da5-18ed07861eb7") + ) + (pin "11" + (uuid "4cd5c28f-cecd-49dd-b4c7-dabe9bf1e4e0") + ) + (pin "38" + (uuid "341c2fc9-0a8d-410d-92db-a0512f27df05") + ) + (pin "24" + (uuid "53718f83-d1ce-4406-a23c-f95cf104301f") + ) + (pin "8" + (uuid "526ae042-cae4-48cb-b5c6-97c1e3fbb170") + ) + (pin "33" + (uuid "81cd2c65-a2f5-43e7-b3d6-6a5d86382011") + ) + (pin "3" + (uuid "7d3a8b13-8941-492b-85d7-042dd3b405be") + ) + (pin "25" + (uuid "a026e164-3a72-4b85-9c57-3330e49386a8") + ) + (pin "30" + (uuid "8956df3d-1bc8-4413-bf7d-43f8f4993d71") + ) + (pin "7" + (uuid "5d0fa2ae-ca91-402f-b1ae-a4fee6c4355e") + ) + (pin "10" + (uuid "97dd2972-3fcc-46dd-a4ab-00c37d54e612") + ) + (pin "16" + (uuid "5e52b12a-5536-43dc-9330-8e009b15fc9d") + ) + (pin "5" + (uuid "fbbc4681-20a8-49fc-82be-3ff328f4a366") + ) + (pin "9" + (uuid "6c7c7032-6cdb-44fb-a35b-31f265c82eea") + ) + (pin "4" + (uuid "bf7fb16b-f7aa-46c8-aad4-da562cfad334") + ) + (pin "2" + (uuid "7addfc6e-6c15-475e-b6a0-ce3954256ffd") + ) + (pin "34" + (uuid "4bc4450b-cf30-49b6-8f9d-be3d59da5064") + ) + (pin "31" + (uuid "c7db0d33-a205-4e40-99fd-fca1aa7a861a") + ) + (pin "37" + (uuid "7c505944-3182-44e4-9134-524dd6dcc402") + ) + (pin "29" + (uuid "f290203c-d585-47c9-a4e9-d1c662ba0642") + ) + (pin "26" + (uuid "e6a149e8-748c-4359-8407-948c689b6716") + ) + (pin "13" + (uuid "076fb286-5f2b-443d-bf29-9cfa11994b7f") + ) + (pin "23" + (uuid "0a49ce7c-d768-42fd-92c0-717a866ccdc2") + ) + (pin "39" + (uuid "7659f0b0-ce66-454e-81d0-b69f5f3e01de") + ) + (pin "6" + (uuid "46b6ae26-7efc-4f45-9143-d64490e78e4e") + ) + (pin "12" + (uuid "a27c56f1-1864-48f1-8532-a19de07ec6d3") + ) + (pin "36" + (uuid "ddea6bc0-f4c1-4b3c-ba4e-1a698c7421f8") + ) + (pin "35" + (uuid "574b7cd7-a236-481a-99e9-cf9071a56436") + ) + (pin "14" + (uuid "93042795-5d5e-47e5-a250-83664540b629") + ) + (pin "15" + (uuid "7c034be1-6d4e-4064-a429-9b39d15e4dd0") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 109.22 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "88254290-b244-46ea-be15-a27a5a1d0f57") + (property "Reference" "#PWR013" + (at 203.2 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5106b19d-1f73-451a-b0bf-1829719e6e69") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR013") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 106.68 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8bb186f2-afd8-4f12-8676-3aa237b4cf59") + (property "Reference" "C1" + (at 110.49 127.3809 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100uF" + (at 110.49 129.9209 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 107.6452 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 106.68 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 106.68 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4d67824f-ca1e-445a-8ea9-715f8afb2274") + ) + (pin "2" + (uuid "c58785b3-49c5-40b6-98d5-a10157812637") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VCC") + (at 203.2 119.38 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8d58e71a-d8c0-42bc-9491-a2804e4b01d9") + (property "Reference" "#PWR09" + (at 203.2 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 203.2 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 203.2 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VCC\"" + (at 203.2 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d14ccd48-8116-457d-a27c-c432f930e1b1") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 96.52 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8e7f29d9-2abf-4aeb-8087-b5e3d5fe444a") + (property "Reference" "#PWR07" + (at 203.2 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "22206956-1a5f-491d-9508-8927d97d7f8a") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x04") + (at 208.28 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "97438a11-051e-4f1e-9a62-1c9d86760870") + (property "Reference" "J3" + (at 213.868 91.186 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SelectionKnob" + (at 210.312 94.234 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 208.28 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "ffd8c348-7174-4e47-b01c-743ad3a2298a") + ) + (pin "2" + (uuid "80e83c9c-8ac4-4064-9d2f-7d02577574cc") + ) + (pin "3" + (uuid "e9e4457b-ef2f-48f6-9b22-469c62f8dec8") + ) + (pin "1" + (uuid "57c957c6-cc3d-4c6f-a17f-a98fa3ea2a30") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x03") + (at 208.28 106.68 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "99fb932d-bbe8-4030-815a-74f9eb962f9b") + (property "Reference" "J5" + (at 210.82 105.4099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "WS2812B" + (at 210.82 107.9499 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 208.28 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2a2db6b5-d906-4be1-ab21-420efcf0118b") + ) + (pin "2" + (uuid "76a49145-e362-47f2-a55f-ff6ee72ab274") + ) + (pin "3" + (uuid "1340d329-e98f-4a43-8568-08b53b17ad56") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 107.95 100.33 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9b34656f-d7a5-485d-b812-a932c9ad5555") + (property "Reference" "#PWR04" + (at 107.95 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 107.95 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 107.95 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 107.95 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 107.95 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8a58b2e2-38ab-427e-92e8-7334383a9d1c") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3.3V") + (at 107.95 45.72 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a5b4ca9d-074e-404c-86b2-a69e473241fe") + (property "Reference" "#PWR02" + (at 107.95 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 107.95 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 107.95 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 107.95 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 107.95 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "aedb66df-4b1c-4a8f-9810-8d1e14aa507f") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x04") + (at 208.28 78.74 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b2d7a06d-bdbe-4d11-afbe-2213bb983f19") + (property "Reference" "J2" + (at 210.82 78.7399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "VolumeKnob" + (at 210.82 81.2799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 208.28 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "f70ee8b2-b3b3-4e33-8d1b-c2e0457b66f2") + ) + (pin "1" + (uuid "f1d055a6-4337-42ce-805c-86de14fc31fb") + ) + (pin "2" + (uuid "4e9eb729-2bb3-4793-9a7e-34f19adcff30") + ) + (pin "4" + (uuid "5a8006d4-7c7e-4403-903d-0c5cf84ddd80") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 50.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b62d2008-b177-4c1b-9a6e-d1a85639a559") + (property "Reference" "#PWR015" + (at 203.2 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b362a312-5b67-411c-9c5d-4eedeca1e643") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR015") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 71.12 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "cd330f67-3a18-4722-8b04-0d4e141a22e0") + (property "Reference" "C5" + (at 74.93 152.3999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 74.93 154.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 72.0852 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 71.12 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 71.12 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "2ee59a52-893f-47f8-8339-281f2523fac6") + ) + (pin "1" + (uuid "661adf58-1460-42c5-9a5e-6af7dcb7fab2") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 203.2 130.81 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "cd4cb271-4d37-4057-83f1-2f42767f3412") + (property "Reference" "#PWR019" + (at 203.2 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 203.2 127.254 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 203.2 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 203.2 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "78a8f3be-4988-4ac9-a273-caa21ff52258") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR019") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 104.14 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d5727e69-1d1a-4192-92ea-52d79a5cc18a") + (property "Reference" "C4" + (at 107.95 151.5109 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100uF" + (at 107.95 154.0509 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 105.1052 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 104.14 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 104.14 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3a659a43-6683-4c0c-a925-6f3e46945eed") + ) + (pin "2" + (uuid "bd7cf935-8457-4d1f-aac4-d811d56a4464") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 69.85 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "de225602-43b4-4c81-981d-050d04c52b5d") + (property "Reference" "C7" + (at 73.66 128.2699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 73.66 130.8099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 70.8152 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 69.85 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 69.85 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "cf8aa812-482b-411d-aa34-b3f56855c307") + ) + (pin "1" + (uuid "a8b428f2-ec18-4cea-9493-d8320f723db7") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 121.92 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e2ac151f-77f5-4db3-b5dd-e56d0b483cee") + (property "Reference" "#PWR03" + (at 203.2 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "58031cbe-02f9-421b-ad21-2a7ca6b910c6") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 83.82 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e56aa70f-f8ed-4251-9da3-20d1f3b4c7a7") + (property "Reference" "#PWR012" + (at 203.2 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 88.9 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b927e6ee-06c5-41f4-aa79-4ae936125abf") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR012") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 83.82 135.89 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ea616cd8-c832-4187-9a8d-36aa83bbb2c5") + (property "Reference" "#PWR06" + (at 83.82 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 83.82 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 83.82 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 83.82 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 83.82 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "54984552-ae15-4818-b046-5dcf8c89b294") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 138.43 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ef36f169-ae0e-4fa5-81f5-e522c0e51566") + (property "Reference" "#PWR020" + (at 203.2 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ea15438a-6c8b-4467-abd0-1067114d90f2") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR020") + (unit 1) + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) +) diff --git a/Schematics/_autosave-Schematics.kicad_pcb b/Schematics/_autosave-Schematics.kicad_pcb new file mode 100644 index 0000000..e394e9d --- /dev/null +++ b/Schematics/_autosave-Schematics.kicad_pcb @@ -0,0 +1,6527 @@ +(kicad_pcb + (version 20240108) + (generator "pcbnew") + (generator_version "8.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + (setup + (stackup + (layer "F.SilkS" + (type "Top Silk Screen") + ) + (layer "F.Paste" + (type "Top Solder Paste") + ) + (layer "F.Mask" + (type "Top Solder Mask") + (thickness 0.01) + ) + (layer "F.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "dielectric 1" + (type "core") + (thickness 1.51) + (material "FR4") + (epsilon_r 4.5) + (loss_tangent 0.02) + ) + (layer "B.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "B.Mask" + (type "Bottom Solder Mask") + (thickness 0.01) + ) + (layer "B.Paste" + (type "Bottom Solder Paste") + ) + (layer "B.SilkS" + (type "Bottom Silk Screen") + ) + (copper_finish "None") + (dielectric_constraints no) + ) + (pad_to_mask_clearance 0) + (allow_soldermask_bridges_in_footprints no) + (pcbplotparams + (layerselection 0x0001000_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref no) + (viasonmask no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plotreference yes) + (plotvalue yes) + (plotfptext yes) + (plotinvisibletext no) + (sketchpadsonfab no) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 0) + (scaleselection 1) + (outputdirectory "") + ) + ) + (net 0 "") + (net 1 "/I2S_CL") + (net 2 "GND") + (net 3 "+3.3V") + (net 4 "VCC") + (net 5 "+5V") + (net 6 "/I2S_DA") + (net 7 "/RX") + (net 8 "/TX") + (net 9 "/LED_DATA") + (net 10 "/I2S_BCK") + (net 11 "/I2S_LRCK") + (net 12 "/I2S_DATA") + (net 13 "/KNOB1_A") + (net 14 "/KNOB1_B") + (net 15 "/KNOB1_BUT") + (net 16 "/KNOB2_BUT") + (net 17 "/KNOB2_A") + (net 18 "/KNOB2_B") + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "10a0845e-167d-4005-84b5-86b2e265dc93") + (at 28 41.05 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C5" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "2334a12c-324a-48d8-8836-8a1e7e770b78") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "be55e4fc-586d-4532-82e7-c581499dc7ff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "eb061fac-b54d-4425-acae-eb24ba207dac") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a8e79167-f32b-4447-84b1-9e1a8ff4e77f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "97d00ed1-103f-4071-aa94-d4415ae09b22") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/cd330f67-3a18-4722-8b04-0d4e141a22e0") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "52636367-23d2-4282-a2b6-25fce306ca78") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3800ac92-760f-48be-9262-dac601d1fa9f") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b60b8630-f691-40d4-a89d-e9ab1d26dc94") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "45a8243d-d81a-438c-bd06-97a67e5dfe34") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "17f2ed72-87b1-4e44-b712-a09f765cbfbd") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "989ec35d-45dd-4742-906f-e64c49dc6919") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dbbf5aca-321a-41e8-8a30-ccca3aa1511c") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "17704530-cd37-4665-96bd-41758fadea66") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6099f211-970d-431f-b261-db9606916927") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1f087467-5f7a-4976-8599-4fc8bd8b1697") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "3477f955-229d-416f-a991-0963064f5aff") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 90) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pintype "passive") + (uuid "9c8c9c89-68e2-4172-bdb8-c3db98805d99") + ) + (pad "2" smd roundrect + (at 0.95 0 90) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "2c19742b-e37f-4b1d-919d-b4060b726968") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "1437d25f-b994-414c-99c6-a2a7e6064188") + (at 75.5 37 -90) + (descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x05 2.54mm single row") + (property "Reference" "J1" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "54343b8f-70fe-439b-8ae8-82b4205f12f6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "DAC_I2S" + (at 0 12.49 90) + (layer "F.Fab") + (uuid "75004e67-23f1-4a5a-be58-cdd19e8f7d2b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "05e81af6-3985-489b-aa26-d08444927645") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "374f4190-4973-4fee-aaae-46537bbaaae9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "10e4adbf-b648-4118-a51d-71aea975bee3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/4d1b4627-c9f1-457e-9a0a-542103462103") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 11.49) + (end 1.33 11.49) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "147a54d8-6b6d-4130-9345-4ee93f604582") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 11.49) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "23158dfd-9579-4399-b8f9-1d6b111f3c40") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d9a1f16d-eb6a-4a84-882b-591548b810bd") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 11.49) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "64e6b5fc-6f98-48d3-aa80-47132b3d01a2") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e5859059-ad4c-4ad0-ac16-647b45feee68") + ) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4c23b105-28c4-413e-9ca3-51c20e322727") + ) + (fp_line + (start -1.8 11.95) + (end 1.8 11.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5f1816e6-8aba-4d5e-b8f7-13c5f9846c4b") + ) + (fp_line + (start 1.8 11.95) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "02178f9b-a724-49b2-aadc-58a723bbc1c1") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 11.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a9ea90b9-20c6-4987-8646-3a538f9e3106") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3f79f64e-3fb1-460b-971b-e67ef04acfbb") + ) + (fp_line + (start -1.27 11.43) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cf55d08f-3e20-4519-94ea-715cdde26f2c") + ) + (fp_line + (start 1.27 11.43) + (end -1.27 11.43) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e5414e3e-a6e8-4ec3-90cb-dd09cd2e0632") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "eac35747-b84c-4639-aa0a-39573b43bcdf") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "54ccd44f-99fb-4347-9979-6c944cb34c1b") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 11.43) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dba6dea1-a406-41b1-bc7a-6609dd341a46") + ) + (fp_text user "${REFERENCE}" + (at 0 5.08 0) + (layer "F.Fab") + (uuid "18ff36d6-d150-42f6-89fc-f66cbf7bfe8a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "52d6c5ff-cee6-4c03-a3d1-640fc6fc785e") + ) + (pad "2" thru_hole oval + (at 0 2.54 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 5 "+5V") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "7f52568f-ae85-4059-869f-d9ef3af84019") + ) + (pad "3" thru_hole oval + (at 0 5.08 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 10 "/I2S_BCK") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "2abe8ecf-9097-4b05-a455-46e46c40ab2d") + ) + (pad "4" thru_hole oval + (at 0 7.62 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 11 "/I2S_LRCK") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "63254794-4353-497c-bda4-e5d621d97cfc") + ) + (pad "5" thru_hole oval + (at 0 10.16 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 12 "/I2S_DATA") + (pinfunction "Pin_5") + (pintype "passive") + (uuid "b956a1d7-e2f6-4a84-a60a-71c077a281a6") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "36c0d42d-489d-4029-9bbd-acaf94d8fed4") + (at 36.05 20.5 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C4" + (at 0 -1.68 360) + (layer "F.SilkS") + (uuid "a54eb34e-2502-4599-b497-dd839f12e585") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100uF" + (at 0 1.68 360) + (layer "F.Fab") + (uuid "98980bc1-5423-4acf-a8d4-aa4442c2fda7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e6e365a3-8cd0-4961-a796-3a832f5b04dd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0fee20ca-6c84-41c0-8723-8a84bb8701be") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "72a1fbea-592d-4c66-a19f-d72a87978165") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/d5727e69-1d1a-4192-92ea-52d79a5cc18a") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "646111d6-2c7b-4ef0-85fd-c97399dc12e2") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "83db75cb-2e75-4064-840e-52b2ea1780b1") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bb016e8f-5fae-4959-84f9-6d1fa5525e5d") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "975d06e6-d813-4a2f-8f4d-8b2f4eb287f1") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bcb90bf4-ce27-4deb-93f2-6769907670f0") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c2d26b8c-74cc-43d9-854f-949cccbafcd6") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "55c06f49-23c6-484f-b80b-aa7b60eb4d7a") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bd5add64-b726-40ef-94ed-cc608ff55f73") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ccb68eba-0b84-4f70-bb16-a33b4d2c5c52") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7843424e-a26f-4516-8d7d-5adb672fa1cc") + ) + (fp_text user "${REFERENCE}" + (at 0 0 360) + (layer "F.Fab") + (uuid "ff51eae6-e617-4771-8dd3-aa927226ed15") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 180) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "+5V") + (pintype "passive") + (uuid "e047e7c7-9982-45d3-ba3d-03f1477e045b") + ) + (pad "2" smd roundrect + (at 0.95 0 180) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "d62cf978-b07d-4066-8520-d8751e158110") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (layer "F.Cu") + (uuid "36c37616-3b3c-4b85-9ff9-6862204e6a67") + (at 33.35 26) + (descr "module CMS SOT223 4 pins") + (tags "CMS SOT") + (property "Reference" "U3" + (at -1.5 -4 0) + (layer "F.SilkS") + (uuid "9603df39-dc50-4287-b67a-eccf37fbc8ac") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "AMS1117-5.0" + (at 0 4.5 0) + (layer "F.Fab") + (uuid "bb36f85a-5ec9-4354-b1c9-161950d98bd0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e42c8f55-ab16-4218-9d0a-c540f2224524") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e62aa243-ad89-4a64-93d5-8d2d3a4fe70d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 5.0V fixed output, SOT-223" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "38bbfeb4-ff1c-460c-b6b8-1646ea96f17a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOT?223*TabPin2*") + (path "/3d4aaa66-9c5d-4a5c-9510-c6f5132b8af2") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -1.85 -3.41) + (end 1.91 -3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e7ef1141-6a81-4026-83d3-05d5d268ae22") + ) + (fp_line + (start -1.85 3.41) + (end 1.91 3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "26571031-ebaa-44e2-9d8b-2552b03faf9b") + ) + (fp_line + (start 1.91 -3.41) + (end 1.91 -2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aeae1fc0-32bf-4e9e-b473-5c472a3ebc34") + ) + (fp_line + (start 1.91 3.41) + (end 1.91 2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5cd7f490-22b9-4cea-b2c6-200957ad0426") + ) + (fp_poly + (pts + (xy -3.13 -3.31) (xy -3.37 -3.64) (xy -2.89 -3.64) (xy -3.13 -3.31) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "0c8b041a-0434-4869-aaf2-94b340c20ec4") + ) + (fp_line + (start -4.4 -3.6) + (end -4.4 3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2d33ccf1-6a18-4044-a262-b666e39bde90") + ) + (fp_line + (start -4.4 3.6) + (end 4.4 3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "439b76d1-cfe6-471e-b922-1e86c98a1d29") + ) + (fp_line + (start 4.4 -3.6) + (end -4.4 -3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bd85f537-01e8-4094-a20b-64d4f1e2a7de") + ) + (fp_line + (start 4.4 3.6) + (end 4.4 -3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4f4a0ca3-8982-41e3-af32-87f3cd89941d") + ) + (fp_line + (start -1.85 -2.35) + (end -1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "65a17217-9ffe-433e-a99c-9dc1c10b7861") + ) + (fp_line + (start -1.85 -2.35) + (end -0.85 -3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "359e7351-674c-4d6e-8bbb-c2704e9a5306") + ) + (fp_line + (start -1.85 3.35) + (end 1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b4c368e1-2b96-46bd-b833-8ab748bfd2cb") + ) + (fp_line + (start -0.85 -3.35) + (end 1.85 -3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9dc19eaf-d02f-43b5-98a7-77eb37c29d44") + ) + (fp_line + (start 1.85 -3.35) + (end 1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "55d4bce3-e910-44a5-a4d1-d8e1c9ba5153") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "6b610fe0-c588-4e8e-8328-8d8386482c1f") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -3.15 -2.3) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "1cfcc11f-cc7b-492b-a81a-a13604f3c2d4") + ) + (pad "2" smd roundrect + (at -3.15 0) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "+5V") + (pinfunction "VO") + (pintype "power_out") + (uuid "c6cd2bf8-d182-4dc5-a207-9458574002d7") + ) + (pad "2" smd roundrect + (at 3.15 0) + (size 2 3.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "+5V") + (pinfunction "VO") + (pintype "power_out") + (uuid "a95aa022-2818-4f5d-9fe6-e03874837a44") + ) + (pad "3" smd roundrect + (at -3.15 2.3) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pinfunction "VI") + (pintype "power_in") + (uuid "0f671689-17cb-48b5-91d2-ff48e4e5d268") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "3caa33a0-4b32-4451-8eda-80b63a9a1e1a") + (at 38.5 34.05 -90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C8" + (at -2.55 0 180) + (layer "F.SilkS") + (uuid "82a77053-97b9-4e3f-94e4-9ea2ea25def7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 3.95 0 90) + (layer "F.Fab") + (uuid "368ffdf1-608a-482f-87f3-ab4a0fcc04db") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ce822820-397e-4f76-92cc-e9b7a61bc9a9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3beaa4c2-1ebc-498f-9910-e80ff6ec47fc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "db90c691-565f-4b9c-be82-43710e54e89e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/062cd29a-32bd-447e-95fb-4bbbf29e43b7") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9030369f-739d-47ac-8bf5-c192ddf724e0") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7c534e28-7254-476f-b4c5-15f339b81c67") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5196cf44-674c-40e6-9970-ff92ac6b177d") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c6062831-6714-4868-a2b0-4777dcaac0d6") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "590791ca-2b75-4d77-a54a-6bb1d417866f") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7cf3ca0d-6a01-4815-88bf-9e94c6d40eb4") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b8abb0c3-d23c-45a4-89c5-175a8600573e") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ecfa19ad-911d-4fbe-9f46-757a52916f64") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f5ba9e62-06fe-4825-bc7e-351adbe606ef") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a4c56d10-0d21-408f-9f9c-daa2f961717e") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "6348ca1d-b895-4563-8c7b-b4544b4a30a2") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "6e332846-51c5-414e-ab48-6e7f48f1f24e") + ) + (pad "2" smd roundrect + (at 0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "eddc516e-3ccc-400f-a681-357504c8a8d0") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "483b730f-74c0-4d1e-8d4b-ce9a5b19ff38") + (at 26.96 46.5 90) + (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x02 2.54mm single row") + (property "Reference" "J4" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "41aaba64-ef21-499b-b051-327e72eb2963") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "POWER IN" + (at 0 4.87 90) + (layer "F.Fab") + (uuid "341eef26-c8b9-43f5-a984-c241d53d56d9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "735e5a47-0314-4198-bd96-5a4d871645be") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "385b680e-6758-4594-b41e-aa702b2b8abd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f2c79474-c650-4cc3-830d-335c272bb6fc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/4a115e1a-1a3d-486b-9fd7-8a09d1649a53") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a12b352-3c5d-4d7e-aa7e-6155efd98097") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "45487352-abe4-4658-9c85-eee06915fdcb") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 3.87) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d660f14f-434a-432b-9eef-701948f112e3") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f7350abf-7c83-4113-b2f4-aeca7250a274") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 3.87) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "701354ab-b6db-40f6-ad5f-40cabfad9e92") + ) + (fp_line + (start -1.33 3.87) + (end 1.33 3.87) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cd68a48c-803d-47c1-929b-7df8bca1fee1") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c94cf06e-1713-49b5-8c88-e5d9158a29dc") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 4.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b12c1800-4f33-4549-aecb-cf816e5b7181") + ) + (fp_line + (start 1.8 4.35) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "24d63983-587d-41f0-b649-c710e98e3cd3") + ) + (fp_line + (start -1.8 4.35) + (end 1.8 4.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9a0c85dd-0a2a-4b4a-b612-8ae5ccddae83") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 3.81) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7063c565-190b-47b5-be5e-669bba47d92a") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "37b55005-f6db-4e94-bcfd-c1ba78835bd8") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "085a208c-1ba8-4077-8d6a-e3c98e6631d3") + ) + (fp_line + (start 1.27 3.81) + (end -1.27 3.81) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d0558cee-2333-4a24-92e0-8f474bb4d8a5") + ) + (fp_line + (start -1.27 3.81) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "52267a25-6e62-4360-979f-320f52dcaf1c") + ) + (fp_text user "${REFERENCE}" + (at 0 1.27 0) + (layer "F.Fab") + (uuid "3e7a2562-81e0-47e0-9502-6639bf7b4e67") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "VCC") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "ed63aacd-bde0-4e5d-942e-350ee8c9a903") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "2ccd5bb1-e24b-4f6f-a141-b2fec5036780") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_Espressif:ESP32-WROVER-E" + (layer "F.Cu") + (uuid "666b3b18-e442-425e-be14-60f2ed7fda64") + (at 49.75 39.755) + (descr "ESP32-WROVER-E: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf") + (tags "esp32 module") + (property "Reference" "U1" + (at -0.14 -17.145 0) + (layer "F.SilkS") + (uuid "765a1163-e675-4ed0-81a2-7e169228f3d3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "ESP32-WROVER-E" + (at -0.14 17.145 0) + (layer "F.Fab") + (uuid "235f0261-9b2e-40ce-89a4-3c7e3a7a04a7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "PCM_Espressif:ESP32-WROVER-E" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "dd786212-58ff-441c-83e8-fcdd3bbcf9a9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-wrover-e_esp32-wrover-ie_datasheet_en.pdf" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "2b6f6741-1cb9-4ed8-a895-567310de7c9a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "ESP32-WROVER-E and ESP32-WROVER-IE are two powerful, generic WiFi-BT-BLE MCU modules that target a wide variety of applications, ranging from low-power sensor networks to the most demanding tasks, such as voice encoding, music streaming and MP3 decoding. ESP32-WROVER-E comes with a PCB antenna, and ESP32-WROVER-IE with an IPEX antenna. They both featurea 4 MB external SPI flash and an additional 8 MB SPI Pseudo static RAM (PSRAM)." + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "17c77dfb-e8d8-44f1-8833-140b6a6626a9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/8500d52d-b549-413f-aeec-252f2687d2f3") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -9 -15.695) + (end -9 -8.9) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d0b604b8-0057-4c86-b5bc-acc83db11d00") + ) + (fp_line + (start -9 -9.385) + (end 9 -9.385) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "87d58d57-42e7-4aab-b519-979a829635c5") + ) + (fp_line + (start -9 15.705) + (end -9 15.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2b682a34-fdce-4361-861f-9be44bdc704f") + ) + (fp_line + (start -9 15.705) + (end 9 15.705) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "13e91535-fe52-4e9d-918a-f6ce176c6e92") + ) + (fp_line + (start 9 -15.695) + (end -9 -15.695) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5e409443-815d-4992-b1da-927cb3ec5412") + ) + (fp_line + (start 9 -15.65) + (end 9 -8.9) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bfdcb29e-d0e4-4d44-8913-79052a188e7c") + ) + (fp_line + (start 9 15.705) + (end 9 15.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "89d49ffe-8377-425f-8932-c3ce201d0f9c") + ) + (fp_line + (start -9 -15.695) + (end -9 15.705) + (stroke + (width 0.12) + (type solid) + ) + (layer "Eco2.User") + (uuid "df0985ee-5758-4633-8c07-f5c11924af6e") + ) + (fp_line + (start -9 -9.385) + (end 9 -9.385) + (stroke + (width 0.12) + (type solid) + ) + (layer "Eco2.User") + (uuid "53ba8170-3e1c-4917-b941-064ff0a30ab7") + ) + (fp_line + (start -9 15.705) + (end 9 15.705) + (stroke + (width 0.12) + (type solid) + ) + (layer "Eco2.User") + (uuid "1d6e12d3-df88-4d25-8ba2-251eacdd62d7") + ) + (fp_line + (start 9 -15.695) + (end -9 -15.695) + (stroke + (width 0.12) + (type solid) + ) + (layer "Eco2.User") + (uuid "2403006b-237e-4128-85bb-1a32559f6c5d") + ) + (fp_line + (start 9 15.705) + (end 9 -15.695) + (stroke + (width 0.12) + (type solid) + ) + (layer "Eco2.User") + (uuid "41d31e9b-b307-4f2a-9ae2-591c199410f6") + ) + (fp_line + (start -10 -16.295) + (end 10 -16.295) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7d16092d-af49-4af1-9e89-6dd3aaa5eee6") + ) + (fp_line + (start -10 16.205) + (end -10 -16.295) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f9f774fa-b2c9-45aa-ac30-f8fd63d38ecb") + ) + (fp_line + (start 10 -16.295) + (end 10 16.205) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f1c69567-51b3-4b1d-b67d-9197dd6eccea") + ) + (fp_line + (start 10 16.205) + (end -10 16.205) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.CrtYd") + (uuid "95a3ac51-064a-4456-8cf5-ccbbd6225c81") + ) + (fp_text user "Antenna Area" + (at 0.5 -12.795 0) + (unlocked yes) + (layer "F.SilkS") + (uuid "221014b7-dd61-4a45-8d23-871bb1624ec3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "0a077acd-62f3-4355-a813-4f78a5dd8725") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd rect + (at -8.75 -8.255) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "5f40f83d-be8c-43e3-a05a-b10f70ed0e81") + ) + (pad "2" smd rect + (at -8.75 -6.985) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "+3.3V") + (pinfunction "3V3") + (pintype "power_in") + (uuid "aa9e01ad-559f-438a-afd7-ad5cd69a85ab") + ) + (pad "3" smd rect + (at -8.75 -5.715) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "+3.3V") + (pinfunction "EN/CHIP_PU") + (pintype "input") + (uuid "9801e0d3-04ba-44e8-91a8-ec11b05d6ed3") + ) + (pad "4" smd rect + (at -8.75 -4.445) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "SENSOR_VP/GPIO36/ADC1_CH0") + (pintype "input") + (uuid "614184b7-794e-440b-86a7-1aaad8db9fe0") + ) + (pad "5" smd rect + (at -8.75 -3.175) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "SENSOR_VN/GPIO39/ADC1_CH3") + (pintype "input") + (uuid "04015931-f37a-478f-b6b2-5ca8c90ad009") + ) + (pad "6" smd rect + (at -8.75 -1.905) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GPIO34/ADC1_CH6") + (pintype "input") + (uuid "6d5f4774-573a-420b-a815-507af4261411") + ) + (pad "7" smd rect + (at -8.75 -0.635) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GPIO35/ADC1_CH7") + (pintype "input") + (uuid "1ce7a6c1-5a76-4bf6-97bc-394fe9cab11b") + ) + (pad "8" smd rect + (at -8.75 0.635) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "32K_XP/GPIO32/ADC1_CH4") + (pintype "bidirectional") + (uuid "8357cdac-b5ab-4577-8c6f-60ce6ab31311") + ) + (pad "9" smd rect + (at -8.75 1.905) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "32K_XN/GPIO33/ADC1_CH5") + (pintype "bidirectional") + (uuid "7517eef6-e4c5-41f4-85c0-551feac57a5e") + ) + (pad "10" smd rect + (at -8.75 3.175) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 6 "/I2S_DA") + (pinfunction "DAC_1/ADC2_CH8/GPIO25") + (pintype "bidirectional") + (uuid "5f92d69f-5e92-419b-9e63-9c19386a5338") + ) + (pad "11" smd rect + (at -8.75 4.445) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "/I2S_CL") + (pinfunction "DAC_2/ADC2_CH9/GPIO26") + (pintype "bidirectional") + (uuid "e8e4e8a8-8ef7-4a42-b554-00a2c761c90a") + ) + (pad "12" smd rect + (at -8.75 5.715) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "ADC2_CH7/GPIO27") + (pintype "bidirectional") + (uuid "eb184d24-5d59-4229-880c-6c5ecf80350c") + ) + (pad "13" smd rect + (at -8.75 6.985) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 17 "/KNOB2_A") + (pinfunction "MTMS/GPIO14/ADC2_CH6") + (pintype "bidirectional") + (uuid "95f1e809-01c7-4038-bb9f-2df48bec474f") + ) + (pad "14" smd rect + (at -8.75 8.255) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 18 "/KNOB2_B") + (pinfunction "MTDI/GPIO12/ADC2_CH5") + (pintype "bidirectional") + (uuid "6e2c2558-0b59-46c1-82e2-303c0572dfc4") + ) + (pad "15" smd rect + (at -8.75 9.525) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "16e42e35-0e64-4024-8db8-d295f9521ae8") + ) + (pad "16" smd rect + (at -8.75 10.795) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 16 "/KNOB2_BUT") + (pinfunction "MTCK/GPIO13/ADC2_CH4") + (pintype "bidirectional") + (uuid "b1fa2a14-496e-4e87-8da6-b33b6ca142fa") + ) + (pad "17" smd rect + (at -8.75 12.065) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "38b64879-fbad-4def-bb2e-8cc83f39a625") + ) + (pad "18" smd rect + (at -8.75 13.335) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "abefc150-528a-4361-8112-645a7d03f379") + ) + (pad "19" smd rect + (at -8.75 14.605) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "d5bbc4b3-57db-40e2-abc6-a1d06f9db80d") + ) + (pad "20" smd rect + (at 8.75 14.605) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "ef73c8b5-aeb5-44f1-9003-bceca833a4ab") + ) + (pad "21" smd rect + (at 8.75 13.335) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "3d74452d-6401-4a1d-a77a-70485141f9e4") + ) + (pad "22" smd rect + (at 8.75 12.065) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "0982a3a4-d9f2-4bca-a30d-1b3f96cbb4d7") + ) + (pad "23" smd rect + (at 8.75 10.795) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "MTDO/GPIO15/ADC2_CH3") + (pintype "bidirectional") + (uuid "6c006792-e826-4091-9225-83d51998ea66") + ) + (pad "24" smd rect + (at 8.75 9.525) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 15 "/KNOB1_BUT") + (pinfunction "ADC2_CH2/GPIO2") + (pintype "bidirectional") + (uuid "c58c305c-a189-4daa-8035-7f5f9166471a") + ) + (pad "25" smd rect + (at 8.75 8.255) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GPIO0/BOOT/ADC2_CH1") + (pintype "bidirectional") + (uuid "b592e6a8-af6e-48b7-902e-fa2cd79efe90") + ) + (pad "26" smd rect + (at 8.75 6.985) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 14 "/KNOB1_B") + (pinfunction "ADC2_CH0/GPIO4") + (pintype "bidirectional") + (uuid "afb0e0fd-ba13-43c5-9159-6badee0ac8e8") + ) + (pad "27" smd rect + (at 8.75 5.715) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "980597f6-5112-4bab-9455-c542a71cf995") + ) + (pad "28" smd rect + (at 8.75 4.445) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "318a18b5-7325-4b30-b45f-e4942676c70c") + ) + (pad "29" smd rect + (at 8.75 3.175) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 13 "/KNOB1_A") + (pinfunction "GPIO5") + (pintype "bidirectional") + (uuid "d07dc9cb-0120-4805-9c33-d98b14fbe846") + ) + (pad "30" smd rect + (at 8.75 1.905) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 10 "/I2S_BCK") + (pinfunction "GPIO18") + (pintype "bidirectional") + (uuid "a77520d2-35cc-40ad-b9dd-91281a37873c") + ) + (pad "31" smd rect + (at 8.75 0.635) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 11 "/I2S_LRCK") + (pinfunction "GPIO19") + (pintype "bidirectional") + (uuid "ef0dc70b-dbaa-4942-9917-cbde0bae6916") + ) + (pad "32" smd rect + (at 8.75 -0.635) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "13e37c7c-de7f-4ff2-bfef-2c39f54013d3") + ) + (pad "33" smd rect + (at 8.75 -1.905) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 12 "/I2S_DATA") + (pinfunction "GPIO21") + (pintype "bidirectional") + (uuid "16702f67-8b75-4a1a-8979-44cc1b1d89d6") + ) + (pad "34" smd rect + (at 8.75 -3.175) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "/RX") + (pinfunction "U0RXD/GPIO3") + (pintype "bidirectional") + (uuid "463a68d4-dbb9-4a4e-b165-537757cd542c") + ) + (pad "35" smd rect + (at 8.75 -4.445) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 8 "/TX") + (pinfunction "U0TXD/GPIO1") + (pintype "bidirectional") + (uuid "0e44a9b6-10ad-4a85-8505-02ff515f020a") + ) + (pad "36" smd rect + (at 8.75 -5.715) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "/LED_DATA") + (pinfunction "GPIO22") + (pintype "bidirectional") + (uuid "e5184ab8-dee6-4e5a-b80b-308b04fc6893") + ) + (pad "37" smd rect + (at 8.75 -6.985) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GPIO23") + (pintype "bidirectional") + (uuid "8b11a2d8-3967-44dc-9deb-22b4c779d165") + ) + (pad "38" smd rect + (at 8.75 -8.255) + (size 1.5 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "04ade7f9-b67b-4065-bbcf-0a73127b321b") + ) + (pad "39" smd rect + (at -2.905 -1.86) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "f8203a06-e09e-4822-886d-ea0dd2a72e32") + ) + (pad "39" smd rect + (at -2.9 -0.46) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "6b5e3c0d-cf9b-46c6-a9bc-b84e9af131ac") + ) + (pad "39" smd rect + (at -2.9 0.94) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "0be57e84-09f4-4d95-a273-66b38ab09c43") + ) + (pad "39" smd rect + (at -1.5 -1.86) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "082fae2f-d7ad-4c53-8894-de3290992880") + ) + (pad "39" smd rect + (at -1.5 -0.46) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "6cf5fb36-af66-4cd4-92d4-43a95c2edbdc") + ) + (pad "39" smd rect + (at -1.5 0.94) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "d2838ec3-458f-46ad-9f93-f2d9fc2a9c4b") + ) + (pad "39" smd rect + (at -0.1 -1.86) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "96be8f20-5472-4126-b3d1-a0e6b96741c4") + ) + (pad "39" smd rect + (at -0.1 -0.46) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "fd502938-1762-41b6-805e-82572b206366") + ) + (pad "39" smd rect + (at -0.1 0.94) + (size 0.9 0.9) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND_THERMAL") + (pintype "power_in") + (uuid "0e161aad-7bdc-4793-91da-fda2ffcf3cdf") + ) + (zone + (net 0) + (net_name "") + (layers "*.Cu") + (uuid "c33f6d89-d6bb-4c7f-b32a-c4544e74170a") + (name "antenna keepout") + (hatch edge 0.508) + (connect_pads + (clearance 0) + ) + (min_thickness 0.254) + (filled_areas_thickness no) + (keepout + (tracks not_allowed) + (vias not_allowed) + (pads not_allowed) + (copperpour not_allowed) + (footprints not_allowed) + ) + (fill + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 58.75 30.36) (xy 40.75 30.36) (xy 40.75 24.06) (xy 58.75 24.06) + ) + ) + ) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_espressif_kicad-libraries/espressif.3dshapes/ESP32-WROVER-E.STEP" + (offset + (xyz -9 -15.7 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "7d55cb34-0a6c-4a8a-8d95-a4fe60ee5325") + (at 27 26.05 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C7" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "c539c19c-2fc2-4ea7-8ff1-d870bf0d129c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "8cdd3a96-b604-48e1-bdba-a1004bda1dc5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4d4078ad-bc7c-485d-911a-78293343bca6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8019aaff-fb11-4ffb-9e0e-5f86d5501940") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a2c58614-bbc5-40a6-8378-9d3e83f97245") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/de225602-43b4-4c81-981d-050d04c52b5d") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8b9dccbf-b5e0-4ecf-ac89-b1d33b92e3cc") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "542bdf46-c642-45d9-8b7b-91a150ead56e") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b171d855-bee7-48f4-8e7a-3145412a1bbb") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0cf7e444-758c-4a2e-b282-64b656f4f281") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7cdecf2f-52ea-4b71-b789-d74109b2b399") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c995b2fa-a1ae-4a5a-a337-7f970e8ddb3d") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0898fa77-3d69-4941-a085-57a07f91f4ba") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "29d93318-a520-4e84-8250-64a4c4521278") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1d60c503-293d-4a36-9594-b76e2a8a7876") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "af8cdff0-1348-4c37-9f5e-19032c057c4a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "98d8f011-aa37-479d-b24b-57a51862495d") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 90) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pintype "passive") + (uuid "0ee0fc7c-5507-48ae-b1cf-9a1ead20df20") + ) + (pad "2" smd roundrect + (at 0.95 0 90) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "15a48188-3cfc-4e96-a172-85756020388d") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (layer "F.Cu") + (uuid "7ec7d17b-19ba-4471-9eb7-5aff60f1f208") + (at 33.85 39.5) + (descr "module CMS SOT223 4 pins") + (tags "CMS SOT") + (property "Reference" "U2" + (at 0 -4.5 0) + (layer "F.SilkS") + (uuid "8e75b762-77aa-4133-bf57-88837b450322") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "AMS1117-3.3" + (at 0 4.5 0) + (layer "F.Fab") + (uuid "9cf2ca1f-0b48-4348-b260-3af127e53f1f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "704709dd-8d51-4e04-8e0f-85fd1939ff20") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6a3aeef1-cefc-4a4a-9ee1-eeafd921ad30") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6a3c8096-ae0c-4f62-b9a9-1f6522005ff6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOT?223*TabPin2*") + (path "/09452429-3c6c-4fdf-ab5e-b206d942640b") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -1.85 -3.41) + (end 1.91 -3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4887d532-fb65-4c2f-a032-01ce168f67e2") + ) + (fp_line + (start -1.85 3.41) + (end 1.91 3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3748e9cb-9dde-48fd-b3ee-6c66c8877e92") + ) + (fp_line + (start 1.91 -3.41) + (end 1.91 -2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6da1b1b2-5f65-48d7-b968-39b9b2598e10") + ) + (fp_line + (start 1.91 3.41) + (end 1.91 2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e3335858-f04d-47d1-b1f8-bb72a9cb3dac") + ) + (fp_poly + (pts + (xy -3.13 -3.31) (xy -3.37 -3.64) (xy -2.89 -3.64) (xy -3.13 -3.31) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "90f79d89-b64b-4f14-8c53-e3091e4e0da9") + ) + (fp_line + (start -4.4 -3.6) + (end -4.4 3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "27246a04-e302-4101-b37a-232d0d42257f") + ) + (fp_line + (start -4.4 3.6) + (end 4.4 3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fed85336-b928-487c-8f3e-99ae7abcde9e") + ) + (fp_line + (start 4.4 -3.6) + (end -4.4 -3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "edd33c4a-d4e9-4cdf-a309-9a5aea52a470") + ) + (fp_line + (start 4.4 3.6) + (end 4.4 -3.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7238daf6-4240-4956-8273-cfe5c4307e9f") + ) + (fp_line + (start -1.85 -2.35) + (end -1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ecb79631-4943-4228-9ec3-d090c6d8c19b") + ) + (fp_line + (start -1.85 -2.35) + (end -0.85 -3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c25d2972-20a3-42cf-8164-791f42c9221f") + ) + (fp_line + (start -1.85 3.35) + (end 1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2d225ec4-25a9-42fa-a529-a18397233541") + ) + (fp_line + (start -0.85 -3.35) + (end 1.85 -3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "894e0387-e9ff-4619-b295-0442ed391c3a") + ) + (fp_line + (start 1.85 -3.35) + (end 1.85 3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f45fb397-fcc2-4155-97ac-b3a55e9b4e58") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "731687ce-77c8-4a67-9ec0-a5fd1ad280f3") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -3.15 -2.3) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "bde628d4-040f-49e6-aa68-211c0ed56233") + ) + (pad "2" smd roundrect + (at -3.15 0) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pinfunction "VO") + (pintype "power_out") + (uuid "ad662111-61ca-4ea8-81e1-6aebbe3fa0a3") + ) + (pad "2" smd roundrect + (at 3.15 0) + (size 2 3.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pinfunction "VO") + (pintype "power_out") + (uuid "8a4b2a2c-370d-4688-b73d-bf1778f750f0") + ) + (pad "3" smd roundrect + (at -3.15 2.3) + (size 2 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pinfunction "VI") + (pintype "power_in") + (uuid "005169bc-e304-4700-90b1-6e6b774623b1") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "ae0b5ce9-59c0-4cd1-a737-ecb4d300ba32") + (at 36 34.05 -90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C1" + (at -2.55 0 180) + (layer "F.SilkS") + (uuid "77625a8b-0426-4dcd-8d71-7eeebd24ae00") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100uF" + (at 3.95 0 90) + (layer "F.Fab") + (uuid "de84f684-1fbb-41b8-a85d-fd8ceee927c0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "51780694-5148-48d4-8099-b76ef29c5bc1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7b835ad4-2b50-4d03-bf5d-0dde8cea3ace") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1ccdb8ad-fd47-40e5-89da-2d03ab4dcf6a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/8bb186f2-afd8-4f12-8676-3aa237b4cf59") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "72a4c6f2-35ec-45e2-9cd7-61ebfcf2356c") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7568e3c5-e53e-40d5-b59e-0e2e4924852c") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3aad9fe2-ac23-4f28-9fe8-d4055e856a0f") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9c44f362-4e91-48c3-a2bd-c085cb6740a6") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3f0677a2-e3c9-4838-8bcd-89d5425387c0") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4a5bdb1a-3ba3-488e-b93a-89f7abce0668") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "819cb317-aef0-43c3-b24d-1ebb04279502") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7a16239b-245b-4522-b6b8-2e659a06eb77") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6b0da4a2-910c-4f55-b303-5420e322cdfc") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "aa13ece4-21ff-4d9b-bd81-bc69ab586566") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "20f88e32-ff9c-49f2-b3a3-f965156ac04e") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "3e91210b-0688-4af8-a708-e6d0cb70446e") + ) + (pad "2" smd roundrect + (at 0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "f5563c08-7c6c-465c-9ad4-a44d9eac6e9b") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "b6a51c9b-8fbb-46ad-8099-4ce7ef33f8bd") + (at 29.55 34.5) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C3" + (at 2.95 0 0) + (layer "F.SilkS") + (uuid "6484970e-42bf-4a5a-b328-323f43514d6b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uF" + (at -3.55 0 0) + (layer "F.Fab") + (uuid "3d549d37-1fea-4453-ba1d-bc81d1ea5062") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2274d43c-ea08-4473-9a6c-fb12f6551b86") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2e09509a-3b0e-41c1-ab49-570d53f479f0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c5113d44-56de-4df9-8c49-05856012914c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/84e5ee43-1656-4504-876a-89cfe1207c34") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "106e13bc-73ce-411c-9742-d17227d8e2a5") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8e53a073-995b-4b11-8fcc-b598833ca2b0") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3b4c8b83-f0c4-4ef9-8132-2a6a82ffe001") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7a1c7041-391a-4f77-9b09-e90b5f3c2657") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cc17c00f-d025-4beb-b0f4-26b0977d7cd8") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b0c3f969-fb76-4a78-8e4e-767c9b243486") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "490b8956-c452-426d-89c5-54c8d4043c85") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2f335f4b-68d4-4da6-b921-9f3a99e2aade") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7039d5bf-e427-4a1e-8253-289f60b3f0cf") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0bc885ba-992b-432b-b222-379d6d712453") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "eb190bc5-ba0c-4c96-8922-b63f75062d2b") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pintype "passive") + (uuid "9faee7a0-ad35-48f1-bf52-a23866ef493e") + ) + (pad "2" smd roundrect + (at 0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "2335ec31-a57b-481f-8bf9-da1cc2525e54") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "b7e812e7-bedd-44d3-9515-e841199a712f") + (at 65.5 47 90) + (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x04 2.54mm single row") + (property "Reference" "J3" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "0ae299dc-0539-4f06-b109-ca112ee8aae9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SelectionKnob" + (at 0 9.95 90) + (layer "F.Fab") + (uuid "95d82d5c-8520-4e8a-9615-8ee67717ad90") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "26bc0086-e92c-4625-a4b9-9bdc3b0f1230") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bf04c786-f322-4741-a16a-8a4ae06b2970") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0a75395f-aba3-4f72-9117-78014dcfb559") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/97438a11-051e-4f1e-9a62-1c9d86760870") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9a5089c4-4190-46be-a52a-3a9138be0501") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ba6b14a5-4177-40b1-957d-f7a3d43d368c") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3215eeb1-8b24-48ad-9f43-117c6966e0ff") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e8eb380b-f0de-4cd7-8242-065a0c61344e") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "750b5f61-39cb-4860-b10f-9c3acdebbaeb") + ) + (fp_line + (start -1.33 8.95) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3b638fdd-f00b-44ee-a742-ecc507ac807b") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "10e0db53-9e0d-466f-91a7-6e50ef36c9fd") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2c81ac0a-5967-433d-8e12-ef874638f340") + ) + (fp_line + (start 1.8 9.4) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8abd8ba0-ce47-4beb-ad47-722abba325e0") + ) + (fp_line + (start -1.8 9.4) + (end 1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "80384181-6ef6-42d7-8dce-e6a1b00cf204") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4bec7dcb-4bbb-4899-b67e-07cb4e60c94e") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0648162f-abaa-4067-8974-8f07ab737ecb") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2480ce08-0c1b-4ff4-91e6-9d5cf6861f5c") + ) + (fp_line + (start 1.27 8.89) + (end -1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a00240d-af47-4c01-bb9a-a4fbab7afb43") + ) + (fp_line + (start -1.27 8.89) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c31d0557-2998-4a26-800e-c08918befc7e") + ) + (fp_text user "${REFERENCE}" + (at 0 3.81 0) + (layer "F.Fab") + (uuid "99377040-8b4c-48f4-8873-e7560cb7eebf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 16 "/KNOB2_BUT") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "1c02a5d2-0ab4-4347-8f5d-7885d0efa199") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 18 "/KNOB2_B") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "f63c1db3-abfa-474c-b78f-af47059316d3") + ) + (pad "3" thru_hole oval + (at 0 5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 17 "/KNOB2_A") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "b93bfadd-0020-4366-9720-f62f347ddf44") + ) + (pad "4" thru_hole oval + (at 0 7.62 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "035f27e4-be6a-4cfe-b411-c4ed7c7410c6") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "beffda02-de74-4d6a-959b-e3ed25c2c471") + (at 32.05 20.5) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C6" + (at 0 -1.68 360) + (layer "F.SilkS") + (uuid "b45d7f7d-e6fa-4be9-b35b-c400fe58eb46") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.68 360) + (layer "F.Fab") + (uuid "42491b04-b565-42ac-a26a-27af3ce05ecb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bb232792-d8ff-404f-9732-0b4551c23741") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cf3c2d29-13ed-4efc-912d-8e86dedbf63f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "36da30fb-7d09-4367-88f9-668092988441") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/78c93ecb-818f-4a5d-a456-76127fdfa572") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cd7b0392-cbbf-4b1e-9ca8-78418ecde488") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f6ea17f7-a0c7-4c05-95f4-5b497ce3b769") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7e154097-5530-4023-b9de-61b2439d8de8") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "167decd2-1fc0-4d25-a074-73290434c3c0") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9f058441-80a2-46d2-a49a-c718e4778a84") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e966c5be-add2-4388-9b6e-bbd40ff5dc85") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "88fcf5ab-26b7-4fbc-9713-be9a82b912fc") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2bbb9d11-c3c8-4713-93f2-f18c9b070538") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b8fdae3b-4052-4051-8838-be95efbe37ac") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8be022da-343c-4e79-be69-0a3a5ca6f040") + ) + (fp_text user "${REFERENCE}" + (at 0 0 360) + (layer "F.Fab") + (uuid "593fe41a-bcf2-4cf1-a6ce-1d163b3e58fc") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "+5V") + (pintype "passive") + (uuid "af616cec-4b06-4d4a-aac7-4ae75ff4705a") + ) + (pad "2" smd roundrect + (at 0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "e8f579dc-6e17-4d24-8236-f5c25db1710b") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "d64c0ed0-5b70-40c5-b939-0dbe9506b5ab") + (at 65.5 42 90) + (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x04 2.54mm single row") + (property "Reference" "J2" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "3b25b86c-4bbb-40cd-9a70-d6729e95e96e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "VolumeKnob" + (at 0 9.95 90) + (layer "F.Fab") + (uuid "649540a9-2ce6-4514-a343-49529481951a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "971b251b-c041-4370-b107-4e37fcd3fd8e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "09c9725e-e148-473a-80cc-f26f8f5fa92c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e448eaf1-4d4a-48dd-b41e-00d7e45fd0c3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/b2d7a06d-bdbe-4d11-afbe-2213bb983f19") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "09a9776e-e548-4066-a3d1-e7a2e7a01590") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d7359fe1-70e0-46d5-8dde-c4145aace5c2") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "418e9d7a-4086-4bc2-8685-c38486cd4a19") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2106e8b4-98c8-4f9d-9ac4-34a53931c3c5") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3591a350-3c7c-4559-bc93-87fa94e6c6d9") + ) + (fp_line + (start -1.33 8.95) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f9690ca8-e661-4972-a04f-a0a3049e7f11") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "763f953e-4dde-4899-a2ec-4d8bda603555") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "78341129-d9c9-45a9-86cd-63d138915eda") + ) + (fp_line + (start 1.8 9.4) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cad6ac4a-94fa-46f6-8f9b-a89bc1406fc2") + ) + (fp_line + (start -1.8 9.4) + (end 1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e56f597e-042b-4f7a-a5b0-82a0a476cca8") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5edce481-e2da-404e-9fb9-02d1d21a5334") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "302a27da-a423-476e-ba9b-5939cd1aca8f") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fff6508e-0859-4e8d-a3ac-0a67fe845d2e") + ) + (fp_line + (start 1.27 8.89) + (end -1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3b179ef6-72bd-4037-9f1b-132578d99a00") + ) + (fp_line + (start -1.27 8.89) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "935254c8-31b5-4d15-9672-d7a401cd624a") + ) + (fp_text user "${REFERENCE}" + (at 0 3.81 0) + (layer "F.Fab") + (uuid "d353bc0b-3c55-41b4-8481-2a24332e05dc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 13 "/KNOB1_A") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "464c37f0-12ff-4b55-9f63-a8dc08417fcb") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 14 "/KNOB1_B") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "50ed5f45-0284-4846-8490-141f5d9d1b87") + ) + (pad "3" thru_hole oval + (at 0 5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 15 "/KNOB1_BUT") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "da8a7de6-e57c-4d7b-b4e3-5df460eb6db9") + ) + (pad "4" thru_hole oval + (at 0 7.62 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "3150daf3-47db-45f2-9a0f-51ea6dfdb43a") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "da33061b-4967-40a0-ad10-eb4691003f9e") + (at 29.55 32) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C2" + (at 0 -1.68 0) + (layer "F.SilkS") + (uuid "80b81c78-d619-4a88-a4bc-3800695bb131") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uF" + (at -4.05 1.5 0) + (layer "F.Fab") + (uuid "e7ab550c-4eea-4166-a2b6-630eed96e13b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a0d131a1-5f8f-4c8e-bf1f-b4aed3d99fc1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "09f81c51-32ed-4093-b2c6-bce4fc707cc5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "da82a07a-9475-4bd3-8375-b7a639894ca2") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/47ed2581-9371-4ee6-8d2a-4d8d6518797f") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "27228f1a-7ac1-4aac-941a-e6434d0dac99") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c14ce1a3-9190-4723-9633-f1ad38bb1cae") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "32ebfc94-286a-4480-b275-bc3c1d4c1e52") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f34acdd6-7708-4d01-90f1-cbfe12c98c44") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f9ffccad-3980-478b-a166-51a08a583c57") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f036e20f-33c8-459f-a8cd-599f73060c3c") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "118dc920-b6f2-4101-a8f3-0c050d724aa8") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0f87d521-17c2-469f-8e3b-88577702bd74") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dbdfc14d-99ee-47dd-a526-0f25615f828a") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9e528e9d-c34e-47af-98f2-a61e104e764e") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "9ed28737-8655-4255-a6f9-1d4d2f885fa0") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "VCC") + (pintype "passive") + (uuid "5536e6e5-58b5-40a6-beef-99c53f24194a") + ) + (pad "2" smd roundrect + (at 0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "2d23b636-929b-48bc-adbf-ef4b1e7c79bc") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "debc2d29-a3ea-49a5-8f85-2777a8967ee4") + (at 27.42 51.5 90) + (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x04 2.54mm single row") + (property "Reference" "J7" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "87b4c137-4f0a-4d6b-8270-6e6bb22a65cd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "I2C" + (at 0 9.95 90) + (layer "F.Fab") + (uuid "b351459b-e554-407f-9800-2c92987ad865") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fb2c136b-dfe2-4216-a8a5-16415f86809a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d5e1c233-1822-4fa8-838e-900d85b6d84f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "05df230d-3a87-4bc5-abf2-f76faa3c7331") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/0da2f368-9baa-4a75-b3b3-a0e31ce5434b") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "84a3797a-9b94-4706-ae37-367519c637f6") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "da5d6840-14b8-46e5-8bec-67c8a91854fc") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "501f0bbc-d2dc-460c-ac20-4fe47335792e") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7160a456-dbb6-48c3-a4f0-a6794db05946") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a065e860-d407-4d89-ad2f-39838911c0b2") + ) + (fp_line + (start -1.33 8.95) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f78646b1-b977-4b73-9f2a-266b0a64adb9") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "37c14d03-4674-43cd-ab3b-7f8a38d09d93") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ab88fb2c-c988-446c-84f0-938aac2111e5") + ) + (fp_line + (start 1.8 9.4) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "96201d70-2899-4062-b591-c0205657d99c") + ) + (fp_line + (start -1.8 9.4) + (end 1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bd446546-bdd7-4721-be2a-80e0653dad6b") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fc171ffd-3a99-448f-8ac1-4833e286b02a") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e7443138-4878-4679-acd3-a1d4f32f3f5f") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0227ec54-1728-48a9-a8ae-664e1fc152bb") + ) + (fp_line + (start 1.27 8.89) + (end -1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3353b6c4-9203-45f3-b8f4-5ab609c0f094") + ) + (fp_line + (start -1.27 8.89) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "97fdc025-5bb7-4c2c-ac51-1ebba174bc52") + ) + (fp_text user "${REFERENCE}" + (at 0 3.81 360) + (layer "F.Fab") + (uuid "4fefc22d-ff87-42cd-a76c-8b29c9cfcb39") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 5 "+5V") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "aadab2e8-c19d-4fc5-a567-10164500e6e3") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 6 "/I2S_DA") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "fb972cfc-f629-42aa-b9d4-7f635057804c") + ) + (pad "3" thru_hole oval + (at 0 5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "/I2S_CL") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "71ced545-b9e4-4dfd-835e-8bd0e79e2708") + ) + (pad "4" thru_hole oval + (at 0 7.62 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "e31ba988-8fd9-4c88-b59b-f9a04a5ebcd8") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "e2a2473a-e7e1-4ea3-a49e-913049532b6d") + (at 65.475 32 90) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Reference" "J6" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "d8a25f44-d44e-4ba0-af5a-126fd44c4c3c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Programming" + (at 0 7.41 90) + (layer "F.Fab") + (uuid "3d18a592-6b87-4392-b625-59a3dd7c6a97") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "96d48c6b-09f6-4f9d-9960-b44fd3bd0033") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a9628e75-caeb-41a5-b0ab-a97f84f840a9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a42a2742-9df8-4207-83dc-29aae18ec404") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/3b20fe75-ba15-43d5-833c-cb9a238f12d7") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2471b06d-614b-4943-b404-bf2d1f90f78e") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a42b98a-29ca-4220-8256-3d359af2777a") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9243bd6b-cc8a-4c70-b243-48ceeffac3e3") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3903dd1e-afd1-4531-b412-c2d53d495426") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "75421879-1a2a-41cd-8c07-786014f0c33c") + ) + (fp_line + (start -1.33 6.41) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "737408c2-2805-4755-a5ec-420648e4c9d4") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "52719374-5b0d-4097-81f7-beb9268dd23e") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6ac4e812-1d95-4c77-bbda-77ef95088a74") + ) + (fp_line + (start 1.8 6.85) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "eaa23885-8ef4-458e-92dd-f37d953cfc2c") + ) + (fp_line + (start -1.8 6.85) + (end 1.8 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "57000f9d-a90f-47fb-96ea-25c5b0044316") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bc771391-3f1b-47bd-9834-3ee2d35d4b29") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c19409c4-2f33-409f-858f-6e6072fef2b4") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8047ad9e-aab5-4863-998f-66563616421e") + ) + (fp_line + (start 1.27 6.35) + (end -1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d8fdf01a-2d5d-4398-b9c6-d01d7221036b") + ) + (fp_line + (start -1.27 6.35) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d7cd8154-a7b9-4028-bc0c-ed0492e9ff3b") + ) + (fp_text user "${REFERENCE}" + (at 0 2.54 0) + (layer "F.Fab") + (uuid "2a0258e5-6edf-4e55-94d0-133536c5d7d5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 8 "/TX") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "e0cd5989-d1ec-4bb8-ac88-b698c88f24aa") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 7 "/RX") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "2d42a0b9-654a-40b1-b067-f6b2a542dbae") + ) + (pad "3" thru_hole oval + (at 0 5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "52ca434b-f51f-4454-abf6-c05031e6c473") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "fbe97d9d-063c-4960-b73d-e81aa9233ed4") + (at 65.475 27.5 90) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Reference" "J5" + (at 0 -2.33 90) + (layer "F.SilkS") + (uuid "a2897bda-3aa6-44a7-930e-64eb9063b173") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "WS2812B" + (at 0 7.41 90) + (layer "F.Fab") + (uuid "4239e8b9-1513-4478-b1a4-cc202d5f26f7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8b966329-f062-4deb-89db-4fa0eee54850") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0027e4e3-e98a-4a4f-b30d-2bb77ec723fa") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a17b92d5-5b14-4bf4-8ce4-a80ef8e1fa01") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/99fb932d-bbe8-4030-815a-74f9eb962f9b") + (sheetname "Root") + (sheetfile "Schematics.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5da9ac81-1409-47ae-b6dc-0f3097e3046c") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c71bf1a2-bfeb-4726-ac64-83bbdd03497b") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bdf9b49a-f02a-4c38-bf65-65fd40dbd06f") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1464579e-51b7-4350-bac9-1178fbd92133") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d1cfe5b8-7d32-4b05-8f45-a328afd9077e") + ) + (fp_line + (start -1.33 6.41) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "de12943d-658d-4b98-a83f-901379892717") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "983bf77e-b14c-4186-862b-68ee814e4ffd") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f7d7c8fd-541b-453f-9096-3fb3da2332dd") + ) + (fp_line + (start 1.8 6.85) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0bd089a5-2de5-405c-8a76-bef1d224e558") + ) + (fp_line + (start -1.8 6.85) + (end 1.8 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f06d0185-f5d6-4da0-8db2-7e0dda9d5ec3") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2f5f74db-11b3-4084-8649-0568335d2de9") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c3a767ca-85ba-43dc-a2f1-3542bbc55146") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e56573df-83b1-406e-bc0f-9fb5dbe3e726") + ) + (fp_line + (start 1.27 6.35) + (end -1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d846606e-cdd5-4beb-9dfb-866f002b1542") + ) + (fp_line + (start -1.27 6.35) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "90bd4f2f-1ac0-4e8f-a02d-cc6084d1b77b") + ) + (fp_text user "${REFERENCE}" + (at 0 2.54 0) + (layer "F.Fab") + (uuid "78debf6e-a0f3-4c2a-a4ee-f4c4b32fc0b3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 5 "+5V") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "444ff77e-9656-41b4-9d69-49be79f78578") + ) + (pad "2" thru_hole oval + (at 0 2.54 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 9 "/LED_DATA") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "01bca7a2-c91e-44ab-b928-2b9252e83af3") + ) + (pad "3" thru_hole oval + (at 0 5.08 90) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "0baaeeb4-92a7-4ca1-80cd-e6dcd49d28ea") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (segment + (start 32.5 51.5) + (end 39.8 44.2) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "5976393f-00fd-4b45-9d94-57889d45fbd0") + ) + (segment + (start 39.8 44.2) + (end 41 44.2) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "ab64c217-1ddb-4921-863b-c50d7566c8a5") + ) + (segment + (start 28 40.1) + (end 28 39.9) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "2588d919-f30d-4a35-8490-ad5db53e3ddb") + ) + (segment + (start 31 35) + (end 30.5 34.5) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "3c417ad4-33b7-4054-acf5-e186e5159eda") + ) + (segment + (start 28 39.9) + (end 30.7 37.2) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "656043d5-30b1-4e01-a9ea-db5d1040a062") + ) + (segment + (start 30.7 32.2) + (end 30.5 32) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "84d8152d-45a7-43f6-a04f-4c1bbc61b7b2") + ) + (segment + (start 30.7 37.2) + (end 30.7 32.2) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "863561e3-33b3-4b76-9d76-a16022ebe0f8") + ) + (segment + (start 38.5 35) + (end 31 35) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "c0f7028d-ea11-4631-9eaf-15b9d2f66664") + ) + (segment + (start 36.33 32.77) + (end 36 33.1) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "06238f67-12a4-4d44-bd2d-1e5b3fcdf431") + ) + (segment + (start 39.75 34.04) + (end 41 34.04) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "344093ff-4d11-442e-b3bc-3386089db2d4") + ) + (segment + (start 41 34.04) + (end 41 32.77) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "45fcdd96-a7e9-4e53-ae75-6df23cfed2c7") + ) + (segment + (start 38.83 32.77) + (end 38.5 33.1) + (width 0.2) + (layer "F.Cu") + (net 3) + (uuid "94ee1d51-e75e-4f32-8c25-df1a3cb67256") + ) + (segment + (start 37 39.5) + (end 39.725 36.775) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "b8204647-c759-48ba-b4e0-3e3ce32e7b8a") + ) + (segment + (start 39.725 34.065) + (end 39.75 34.04) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "be6abff4-7e2f-4475-9d3a-9dd765aa0fa0") + ) + (segment + (start 30.7 39.5) + (end 37 39.5) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "cb2ea160-7e00-44c8-a9d8-8d5e12a5a286") + ) + (segment + (start 41 32.77) + (end 36.33 32.77) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "ee8938b1-38af-48b7-b0c0-9a05138d36fd") + ) + (segment + (start 39.725 36.775) + (end 39.725 34.065) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "f3c66e03-f476-4554-a383-d935b8333a1c") + ) + (segment + (start 28 45.46) + (end 26.96 46.5) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "157dbc80-dc0f-4e5a-a413-f50f664930cb") + ) + (segment + (start 30.5 42) + (end 30.7 41.8) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "25b09225-5291-44af-9259-e8c9396ac8c2") + ) + (segment + (start 28.9 28.3) + (end 28.6 28.6) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "25d09bee-6593-4b86-aa01-7402a5e98214") + ) + (segment + (start 28 42) + (end 30.5 42) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "65ec324f-7b03-45d8-8a36-22080da7d069") + ) + (segment + (start 28.6 28.6) + (end 28.6 34.5) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "7d0a5e6c-ecf2-4ea7-95fc-79b253d6ef5c") + ) + (segment + (start 26.775 36.325) + (end 26.775 40.775) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "82c947c6-9381-4819-8856-2e261c8d2fd6") + ) + (segment + (start 26.775 40.775) + (end 28 42) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "8e260967-0742-4e53-9972-e1af01267b98") + ) + (segment + (start 27 27) + (end 28.6 28.6) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "ab693518-ad6f-4740-945b-16d1f3492511") + ) + (segment + (start 28.6 34.5) + (end 26.775 36.325) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "ac22106a-2d73-4c05-8574-a78f9aff53ef") + ) + (segment + (start 28 42) + (end 28 45.46) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "cc78921a-7e82-459f-bc24-b20ac199d8a6") + ) + (segment + (start 30.2 28.3) + (end 28.9 28.3) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "dcba3659-094f-419c-bc28-d735468c6c90") + ) + (segment + (start 65.475 21.025) + (end 65.5 21) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "04978285-1feb-42cf-ab50-31a696affe1c") + ) + (segment + (start 37.5 21) + (end 37 20.5) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "0a2ebad7-08e8-4b86-82cb-9b99dde0e180") + ) + (segment + (start 36.5 21) + (end 37 20.5) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "5105eeff-69ea-44c4-b40b-85f1db2c9564") + ) + (segment + (start 36.5 26) + (end 36.5 21) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "683c99f3-dd3e-4899-beba-c6fcc2e47894") + ) + (segment + (start 31.7 21.1) + (end 31.7 24.5) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "7350f63e-bac8-48bc-95f0-3ce7e499e77e") + ) + (segment + (start 35 24.5) + (end 36.5 26) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "9d478da1-5ef6-4b02-88f0-dbff46885a93") + ) + (segment + (start 31.7 24.5) + (end 30.2 26) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "af15e52b-860f-433b-81e2-293fde3da576") + ) + (segment + (start 31.7 24.5) + (end 35 24.5) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "b92d0d4d-9e3d-4b0f-81fb-4f822a603b54") + ) + (segment + (start 65.475 27.5) + (end 65.475 21.025) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "d6d74758-e69e-4850-95c1-49d1b1808794") + ) + (segment + (start 31.1 20.5) + (end 31.7 21.1) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "e6aa1594-147a-405c-8c32-887472aef100") + ) + (segment + (start 65.5 21) + (end 37.5 21) + (width 0.5) + (layer "F.Cu") + (net 5) + (uuid "f54f2ef3-11c4-4bc0-98cf-1a11bb8997c9") + ) + (segment + (start 41 42.93) + (end 38.53 42.93) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "51bb0ce4-2c19-47a6-bc48-90e15b894e5c") + ) + (segment + (start 38.53 42.93) + (end 29.96 51.5) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "d3ed8b77-0e5b-44aa-a15d-5ba00cec18c5") + ) + (segment + (start 66.015 34) + (end 62.5 34) + (width 0.5) + (layer "F.Cu") + (net 7) + (uuid "53c92f62-b537-4e7a-9f0f-2afdbb7efaa1") + ) + (segment + (start 68.015 32) + (end 66.015 34) + (width 0.5) + (layer "F.Cu") + (net 7) + (uuid "a69de0f6-79a0-40f3-885e-d09b615bf5da") + ) + (segment + (start 62.5 34) + (end 59.92 36.58) + (width 0.5) + (layer "F.Cu") + (net 7) + (uuid "a721d17f-9b36-422e-a369-237348a181b4") + ) + (segment + (start 59.92 36.58) + (end 58.5 36.58) + (width 0.5) + (layer "F.Cu") + (net 7) + (uuid "d3623a6e-5cd3-4838-b1aa-6c67d1676903") + ) + (segment + (start 63.06 32) + (end 65.475 32) + (width 0.5) + (layer "F.Cu") + (net 8) + (uuid "26978a47-b4f4-49e0-a0df-e60f086e7dda") + ) + (segment + (start 59.75 35.31) + (end 63.06 32) + (width 0.5) + (layer "F.Cu") + (net 8) + (uuid "45bc67fd-3f0b-4697-a1fc-5f5d56104b2d") + ) + (segment + (start 58.5 35.31) + (end 59.75 35.31) + (width 0.5) + (layer "F.Cu") + (net 8) + (uuid "9687822a-e3c7-4dbc-9246-2a36422e31d7") + ) + (segment + (start 62.49 31) + (end 59.45 34.04) + (width 0.5) + (layer "F.Cu") + (net 9) + (uuid "15d255ca-a385-40bf-8d04-e49f11f8936d") + ) + (segment + (start 68.015 27.5) + (end 67.775 27.5) + (width 0.2) + (layer "F.Cu") + (net 9) + (uuid "39d27aab-dbf2-473f-b649-3d1543d98f62") + ) + (segment + (start 64.275 31) + (end 62.49 31) + (width 0.5) + (layer "F.Cu") + (net 9) + (uuid "8f4fe7f3-13f7-4dff-b3d8-859014f9d4b1") + ) + (segment + (start 67.775 27.5) + (end 64.275 31) + (width 0.5) + (layer "F.Cu") + (net 9) + (uuid "9056d5e6-ab34-44c4-9cb5-d2d5e65ccc77") + ) + (segment + (start 59.45 34.04) + (end 58.5 34.04) + (width 0.5) + (layer "F.Cu") + (net 9) + (uuid "a4475bd1-c8cd-4c4a-a6ea-7839e2a18ac1") + ) + (segment + (start 70.42 37) + (end 66.92 40.5) + (width 0.5) + (layer "F.Cu") + (net 10) + (uuid "1d5028bf-49b1-471a-9dae-c79ff0b8a0ea") + ) + (segment + (start 66.92 40.5) + (end 61.06066 40.5) + (width 0.5) + (layer "F.Cu") + (net 10) + (uuid "48dbe4d8-b4d5-4d86-8911-2cc1b9a5e6ab") + ) + (segment + (start 61.06066 40.5) + (end 59.90066 41.66) + (width 0.5) + (layer "F.Cu") + (net 10) + (uuid "5e85e3fd-0b5e-4fa0-ae2c-d66a3792d4c0") + ) + (segment + (start 59.90066 41.66) + (end 58.5 41.66) + (width 0.5) + (layer "F.Cu") + (net 10) + (uuid "9480eba0-566c-49c7-a927-e7b864bbd263") + ) + (segment + (start 61.5 39) + (end 60.11 40.39) + (width 0.5) + (layer "F.Cu") + (net 11) + (uuid "2e701a1e-202c-4fb4-a709-dc34bfd9b0e4") + ) + (segment + (start 60.11 40.39) + (end 58.5 40.39) + (width 0.5) + (layer "F.Cu") + (net 11) + (uuid "4f7cc984-a9e4-4d36-8f18-fb14e4751998") + ) + (segment + (start 67.88 37) + (end 65.88 39) + (width 0.5) + (layer "F.Cu") + (net 11) + (uuid "c4039a3c-2c8f-487d-bc38-fb2d0911a805") + ) + (segment + (start 65.88 39) + (end 61.5 39) + (width 0.5) + (layer "F.Cu") + (net 11) + (uuid "f1e4b75c-f66f-49e4-a6d5-eb52ae63c94e") + ) + (segment + (start 64.49 37.85) + (end 58.5 37.85) + (width 0.5) + (layer "F.Cu") + (net 12) + (uuid "2c82313b-5888-465e-b2d7-3605ed4fa2a3") + ) + (segment + (start 65.34 37) + (end 64.49 37.85) + (width 0.5) + (layer "F.Cu") + (net 12) + (uuid "35be048f-3fdc-4d84-befa-f3c833fda83a") + ) + (segment + (start 65.5 42) + (end 64.57 42.93) + (width 0.5) + (layer "F.Cu") + (net 13) + (uuid "611a03a8-1d92-4e29-b05d-4e274b544722") + ) + (segment + (start 64.57 42.93) + (end 58.5 42.93) + (width 0.5) + (layer "F.Cu") + (net 13) + (uuid "a7465e24-b715-41b0-9c47-50f672467b98") + ) + (segment + (start 68.04 42) + (end 66.04 44) + (width 0.5) + (layer "F.Cu") + (net 14) + (uuid "16917d9c-29d5-4f9a-a349-52e111f431c9") + ) + (segment + (start 62.5 44) + (end 59.76 46.74) + (width 0.5) + (layer "F.Cu") + (net 14) + (uuid "3d5e818f-8a8b-422f-ae7d-a76dd7fc971b") + ) + (segment + (start 66.04 44) + (end 62.5 44) + (width 0.5) + (layer "F.Cu") + (net 14) + (uuid "3dabb86d-9380-4da5-b1b2-a8804557bd2f") + ) + (segment + (start 59.76 46.74) + (end 58.5 46.74) + (width 0.5) + (layer "F.Cu") + (net 14) + (uuid "5ef9e9a0-f606-475d-a1fa-2f37c0e396e4") + ) + (segment + (start 59.45 46.74) + (end 58.5 46.74) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "d28112a2-de03-43a7-ae5d-4ca45642429d") + ) + (segment + (start 63.96 44.75) + (end 59.43 49.28) + (width 0.5) + (layer "F.Cu") + (net 15) + (uuid "16b4dc8b-1cac-4f9b-a54c-9e2245783cba") + ) + (segment + (start 67.83 44.75) + (end 63.96 44.75) + (width 0.5) + (layer "F.Cu") + (net 15) + (uuid "1ec19ab1-6413-4dde-8189-ca8227e44955") + ) + (segment + (start 59.43 49.28) + (end 58.5 49.28) + (width 0.5) + (layer "F.Cu") + (net 15) + (uuid "20ae9f76-2ec9-4738-8b45-9999d7d95372") + ) + (segment + (start 70.58 42) + (end 67.83 44.75) + (width 0.5) + (layer "F.Cu") + (net 15) + (uuid "5a055c25-cfc1-41af-befb-e542193faf24") + ) + (segment + (start 59.03 49.28) + (end 58.5 49.28) + (width 0.2) + (layer "F.Cu") + (net 15) + (uuid "abd1f911-90c2-4833-84be-c8e77787bbe5") + ) + (segment + (start 65.5 49.56) + (end 65.5 47) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "04f451b5-c555-4633-bdbc-930f139a47d4") + ) + (segment + (start 39 50.5) + (end 38.75 50.75) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "0ddf168a-2ef0-4ee8-9013-e67f580994c8") + ) + (segment + (start 59.06 56) + (end 65.5 49.56) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "1f9d9823-ac60-48ed-8812-705071a276b5") + ) + (segment + (start 38.75 56) + (end 59.06 56) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "6030beb1-063d-454a-b1b7-890ef8403df0") + ) + (segment + (start 39.05 50.55) + (end 39 50.5) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "88d7bc9c-415c-47ac-bdfc-bb7cfcbe7e27") + ) + (segment + (start 41 50.55) + (end 39.05 50.55) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "a88eff9c-c4e5-47c7-ae21-8a2b8b30d3c9") + ) + (segment + (start 38.75 50.75) + (end 38.75 56) + (width 0.5) + (layer "F.Cu") + (net 16) + (uuid "bfbbfb10-317b-4eb0-ba56-2d5129facaff") + ) + (segment + (start 37 49.81) + (end 37 57.5) + (width 0.5) + (layer "F.Cu") + (net 17) + (uuid "18a62508-cd3f-4b55-bc72-516c0d170718") + ) + (segment + (start 60.08 57.5) + (end 70.58 47) + (width 0.5) + (layer "F.Cu") + (net 17) + (uuid "2777631d-9cf0-44c8-82b6-83885ac446c1") + ) + (segment + (start 37 57.5) + (end 60.08 57.5) + (width 0.5) + (layer "F.Cu") + (net 17) + (uuid "3b0a35e8-7abc-4afe-9f57-0df6f581ef54") + ) + (segment + (start 41 46.74) + (end 40.07 46.74) + (width 0.5) + (layer "F.Cu") + (net 17) + (uuid "69eaed03-3c51-4cd6-b3e4-4d7dee90e8b2") + ) + (segment + (start 40.07 46.74) + (end 37 49.81) + (width 0.5) + (layer "F.Cu") + (net 17) + (uuid "c9219d57-ff3a-4032-bc15-28d9d29b3d10") + ) + (segment + (start 40.07 48.01) + (end 41 48.01) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "0710ac63-cfe7-44e0-8b9b-d1e50a9f994e") + ) + (segment + (start 38 50.08) + (end 40.07 48.01) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "24fd9dda-6213-43dd-8f78-faaeb4035de9") + ) + (segment + (start 38 56.75) + (end 38 50.08) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "409d781f-8b3e-450b-9c55-43c5e9fdb60d") + ) + (segment + (start 68.04 47) + (end 68.04 48.47934) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "4f66cbdb-1665-48a4-bd71-d2b21b3a156a") + ) + (segment + (start 68.04 48.47934) + (end 59.76934 56.75) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "54106448-bd9b-4de9-8509-e75fe1151408") + ) + (segment + (start 59.76934 56.75) + (end 38 56.75) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "632ecefc-3d7d-4233-942d-9b752534305b") + ) + (zone + (net 2) + (net_name "GND") + (layer "F.Cu") + (uuid "f373d697-d6be-4309-aef3-c13613154185") + (hatch edge 0.5) + (connect_pads yes + (clearance 0.5) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 20 15) (xy 80 15) (xy 80 65) (xy 20 65) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 79.943039 15.019685) (xy 79.988794 15.072489) (xy 80 15.124) (xy 80 64.876) (xy 79.980315 64.943039) + (xy 79.927511 64.988794) (xy 79.876 65) (xy 20.124 65) (xy 20.056961 64.980315) (xy 20.011206 64.927511) + (xy 20 64.876) (xy 20 45.602135) (xy 25.6095 45.602135) (xy 25.6095 47.39787) (xy 25.609501 47.397876) + (xy 25.615908 47.457483) (xy 25.666202 47.592328) (xy 25.666206 47.592335) (xy 25.752452 47.707544) + (xy 25.752455 47.707547) (xy 25.867664 47.793793) (xy 25.867671 47.793797) (xy 26.002517 47.844091) + (xy 26.002516 47.844091) (xy 26.009444 47.844835) (xy 26.062127 47.8505) (xy 27.857872 47.850499) + (xy 27.917483 47.844091) (xy 28.052331 47.793796) (xy 28.167546 47.707546) (xy 28.253796 47.592331) + (xy 28.303002 47.460401) (xy 28.344872 47.404468) (xy 28.410337 47.38005) (xy 28.47861 47.394901) + (xy 28.506865 47.416053) (xy 28.628917 47.538105) (xy 28.822421 47.6736) (xy 29.036507 47.773429) + (xy 29.036516 47.773433) (xy 29.25 47.830634) (xy 29.25 46.933012) (xy 29.307007 46.965925) (xy 29.434174 47) + (xy 29.565826 47) (xy 29.692993 46.965925) (xy 29.75 46.933012) (xy 29.75 47.830633) (xy 29.963483 47.773433) + (xy 29.963492 47.773429) (xy 30.177578 47.6736) (xy 30.371082 47.538105) (xy 30.538105 47.371082) + (xy 30.6736 47.177578) (xy 30.773429 46.963492) (xy 30.773432 46.963486) (xy 30.830636 46.75) (xy 29.933012 46.75) + (xy 29.965925 46.692993) (xy 30 46.565826) (xy 30 46.434174) (xy 29.965925 46.307007) (xy 29.933012 46.25) + (xy 30.830636 46.25) (xy 30.830635 46.249999) (xy 30.773432 46.036513) (xy 30.773429 46.036507) + (xy 30.6736 45.822422) (xy 30.673599 45.82242) (xy 30.538113 45.628926) (xy 30.538108 45.62892) + (xy 30.371082 45.461894) (xy 30.177578 45.326399) (xy 29.963492 45.22657) (xy 29.963486 45.226567) + (xy 29.75 45.169364) (xy 29.75 46.066988) (xy 29.692993 46.034075) (xy 29.565826 46) (xy 29.434174 46) + (xy 29.307007 46.034075) (xy 29.25 46.066988) (xy 29.25 45.169364) (xy 29.249999 45.169364) (xy 29.036513 45.226567) + (xy 29.036502 45.226571) (xy 28.926904 45.277678) (xy 28.857827 45.28817) (xy 28.794043 45.25965) + (xy 28.755804 45.201173) (xy 28.7505 45.165296) (xy 28.7505 43.031057) (xy 28.770185 42.964018) + (xy 28.809401 42.92552) (xy 28.943656 42.842712) (xy 28.999549 42.786819) (xy 29.060872 42.753334) + (xy 29.08723 42.7505) (xy 29.3549 42.7505) (xy 29.421939 42.770185) (xy 29.447405 42.793086) (xy 29.447524 42.792968) + (xy 29.449767 42.795211) (xy 29.451545 42.79681) (xy 29.452278 42.797722) (xy 29.600704 42.91703) + (xy 29.600707 42.917032) (xy 29.771302 43.001639) (xy 29.771303 43.001639) (xy 29.771307 43.001641) + (xy 29.956111 43.0476) (xy 29.998877 43.0505) (xy 31.401122 43.050499) (xy 31.443889 43.0476) (xy 31.628693 43.001641) + (xy 31.799296 42.91703) (xy 31.947722 42.797722) (xy 32.06703 42.649296) (xy 32.151641 42.478693) + (xy 32.1976 42.293889) (xy 32.2005 42.251123) (xy 32.200499 41.348878) (xy 32.1976 41.306111) (xy 32.151641 41.121307) + (xy 32.129872 41.077413) (xy 32.067032 40.950707) (xy 32.06703 40.950704) (xy 31.947722 40.802278) + (xy 31.947721 40.802277) (xy 31.878514 40.746647) (xy 31.838595 40.689304) (xy 31.836015 40.619482) + (xy 31.871594 40.559349) (xy 31.878514 40.553353) (xy 31.887909 40.5458) (xy 31.947722 40.497722) + (xy 32.06703 40.349296) (xy 32.081854 40.319406) (xy 32.129275 40.268093) (xy 32.192942 40.2505) + (xy 35.375501 40.2505) (xy 35.44254 40.270185) (xy 35.488295 40.322989) (xy 35.499501 40.3745) (xy 35.499501 40.958036) + (xy 35.502691 40.993917) (xy 35.510113 41.077415) (xy 35.566089 41.273045) (xy 35.56609 41.273048) + (xy 35.566091 41.273049) (xy 35.660302 41.453407) (xy 35.660304 41.453409) (xy 35.78889 41.611109) + (xy 35.882803 41.687684) (xy 35.946593 41.739698) (xy 36.126951 41.833909) (xy 36.322582 41.889886) + (xy 36.441963 41.9005) (xy 37.558036 41.900499) (xy 37.677418 41.889886) (xy 37.873049 41.833909) + (xy 38.053407 41.739698) (xy 38.211109 41.611109) (xy 38.339698 41.453407) (xy 38.433909 41.273049) + (xy 38.489886 41.077418) (xy 38.5005 40.958037) (xy 38.5005 40.887844) (xy 39.75 40.887844) (xy 39.756401 40.947372) + (xy 39.756404 40.947383) (xy 39.769191 40.981668) (xy 39.774175 41.05136) (xy 39.769191 41.068332) + (xy 39.756404 41.102616) (xy 39.756401 41.102627) (xy 39.75 41.162155) (xy 39.75 41.41) (xy 40.75 41.41) + (xy 41.25 41.41) (xy 42.25 41.41) (xy 42.25 41.192844) (xy 45.9 41.192844) (xy 45.906401 41.252372) + (xy 45.906403 41.252379) (xy 45.956645 41.387086) (xy 45.956649 41.387093) (xy 46.042809 41.502187) + (xy 46.042812 41.50219) (xy 46.157906 41.58835) (xy 46.157913 41.588354) (xy 46.29262 41.638596) + (xy 46.292627 41.638598) (xy 46.352155 41.644999) (xy 46.352172 41.645) (xy 46.6 41.645) (xy 47.1 41.645) + (xy 47.347828 41.645) (xy 47.347844 41.644999) (xy 47.407372 41.638598) (xy 47.407376 41.638597) + (xy 47.506666 41.601564) (xy 47.576358 41.59658) (xy 47.593334 41.601564) (xy 47.692623 41.638597) + (xy 47.692627 41.638598) (xy 47.752155 41.644999) (xy 47.752172 41.645) (xy 48 41.645) (xy 48.5 41.645) + (xy 48.747828 41.645) (xy 48.747844 41.644999) (xy 48.807372 41.638598) (xy 48.807376 41.638597) + (xy 48.906666 41.601564) (xy 48.976358 41.59658) (xy 48.993334 41.601564) (xy 49.092623 41.638597) + (xy 49.092627 41.638598) (xy 49.152155 41.644999) (xy 49.152172 41.645) (xy 49.4 41.645) (xy 49.9 41.645) + (xy 50.147828 41.645) (xy 50.147844 41.644999) (xy 50.207372 41.638598) (xy 50.207379 41.638596) + (xy 50.342086 41.588354) (xy 50.342093 41.58835) (xy 50.457187 41.50219) (xy 50.45719 41.502187) + (xy 50.54335 41.387093) (xy 50.543354 41.387086) (xy 50.593596 41.252379) (xy 50.593598 41.252372) + (xy 50.599999 41.192844) (xy 50.6 41.192827) (xy 50.6 40.945) (xy 49.9 40.945) (xy 49.9 41.645) + (xy 49.4 41.645) (xy 49.4 40.945) (xy 48.5 40.945) (xy 48.5 41.645) (xy 48 41.645) (xy 48 40.945) + (xy 47.1 40.945) (xy 47.1 41.645) (xy 46.6 41.645) (xy 46.6 40.945) (xy 45.9 40.945) (xy 45.9 41.192844) + (xy 42.25 41.192844) (xy 42.25 41.162172) (xy 42.249999 41.162155) (xy 42.243598 41.102627) (xy 42.243597 41.102624) + (xy 42.230808 41.068335) (xy 42.225822 40.998644) (xy 42.230808 40.981665) (xy 42.243597 40.947375) + (xy 42.243598 40.947372) (xy 42.249999 40.887844) (xy 42.25 40.887827) (xy 42.25 40.64) (xy 41.25 40.64) + (xy 41.25 41.41) (xy 40.75 41.41) (xy 40.75 40.64) (xy 39.75 40.64) (xy 39.75 40.887844) (xy 38.5005 40.887844) + (xy 38.500499 39.617844) (xy 39.75 39.617844) (xy 39.756401 39.677372) (xy 39.756404 39.677383) + (xy 39.769191 39.711668) (xy 39.774175 39.78136) (xy 39.769191 39.798332) (xy 39.756404 39.832616) + (xy 39.756401 39.832627) (xy 39.75 39.892155) (xy 39.75 40.14) (xy 40.75 40.14) (xy 41.25 40.14) + (xy 42.25 40.14) (xy 42.25 39.892172) (xy 42.249999 39.892155) (xy 42.243598 39.832627) (xy 42.243597 39.832624) + (xy 42.230808 39.798335) (xy 42.230415 39.792844) (xy 45.9 39.792844) (xy 45.906401 39.852372) (xy 45.906403 39.852383) + (xy 45.943434 39.951668) (xy 45.948418 40.02136) (xy 45.943434 40.038332) (xy 45.906403 40.137616) + (xy 45.906401 40.137627) (xy 45.9 40.197155) (xy 45.9 40.445) (xy 46.6 40.445) (xy 47.1 40.445) + (xy 48 40.445) (xy 48.5 40.445) (xy 49.4 40.445) (xy 49.9 40.445) (xy 50.6 40.445) (xy 50.6 40.197172) + (xy 50.599999 40.197155) (xy 50.593598 40.137627) (xy 50.593597 40.137623) (xy 50.556564 40.038334) + (xy 50.55158 39.968642) (xy 50.556564 39.951666) (xy 50.593597 39.852376) (xy 50.593598 39.852372) + (xy 50.599999 39.792844) (xy 50.6 39.792827) (xy 50.6 39.545) (xy 49.9 39.545) (xy 49.9 40.445) + (xy 49.4 40.445) (xy 49.4 39.545) (xy 48.5 39.545) (xy 48.5 40.445) (xy 48 40.445) (xy 48 39.545) + (xy 47.1 39.545) (xy 47.1 40.445) (xy 46.6 40.445) (xy 46.6 39.545) (xy 45.9 39.545) (xy 45.9 39.792844) + (xy 42.230415 39.792844) (xy 42.225822 39.728644) (xy 42.230808 39.711665) (xy 42.243597 39.677375) + (xy 42.243598 39.677372) (xy 42.249999 39.617844) (xy 42.25 39.617827) (xy 42.25 39.37) (xy 41.25 39.37) + (xy 41.25 40.14) (xy 40.75 40.14) (xy 40.75 39.37) (xy 39.75 39.37) (xy 39.75 39.617844) (xy 38.500499 39.617844) + (xy 38.500499 39.112228) (xy 38.520184 39.04519) (xy 38.536813 39.024553) (xy 39.53832 38.023047) + (xy 39.599642 37.989563) (xy 39.669334 37.994547) (xy 39.725267 38.036419) (xy 39.749684 38.101883) + (xy 39.75 38.110729) (xy 39.75 38.347844) (xy 39.756401 38.407372) (xy 39.756404 38.407383) (xy 39.769191 38.441668) + (xy 39.774175 38.51136) (xy 39.769191 38.528332) (xy 39.756404 38.562616) (xy 39.756401 38.562627) + (xy 39.75 38.622155) (xy 39.75 38.87) (xy 40.75 38.87) (xy 41.25 38.87) (xy 42.25 38.87) (xy 42.25 38.622172) + (xy 42.249999 38.622155) (xy 42.243598 38.562627) (xy 42.243597 38.562624) (xy 42.230808 38.528335) + (xy 42.225822 38.458644) (xy 42.230808 38.441665) (xy 42.243597 38.407375) (xy 42.243598 38.407372) + (xy 42.24516 38.392844) (xy 45.895 38.392844) (xy 45.901401 38.452372) (xy 45.901403 38.452379) + (xy 45.940935 38.558369) (xy 45.945919 38.62806) (xy 45.940935 38.645035) (xy 45.906403 38.737619) + (xy 45.906401 38.737627) (xy 45.9 38.797155) (xy 45.9 39.045) (xy 46.6 39.045) (xy 46.6 38.861962) + (xy 46.597834 38.857996) (xy 46.595 38.831638) (xy 46.595 38.328037) (xy 47.095 38.328037) (xy 47.097166 38.332004) + (xy 47.1 38.358362) (xy 47.1 39.045) (xy 48 39.045) (xy 48.5 39.045) (xy 49.4 39.045) (xy 49.9 39.045) + (xy 50.6 39.045) (xy 50.6 38.797172) (xy 50.599999 38.797155) (xy 50.593598 38.737627) (xy 50.593597 38.737623) + (xy 50.556564 38.638334) (xy 50.55158 38.568642) (xy 50.556564 38.551666) (xy 50.593597 38.452376) + (xy 50.593598 38.452372) (xy 50.599999 38.392844) (xy 50.6 38.392827) (xy 50.6 38.145) (xy 49.9 38.145) + (xy 49.9 39.045) (xy 49.4 39.045) (xy 49.4 38.145) (xy 48.5 38.145) (xy 48.5 39.045) (xy 48 39.045) + (xy 48 38.145) (xy 47.095 38.145) (xy 47.095 38.328037) (xy 46.595 38.328037) (xy 46.595 38.145) + (xy 45.895 38.145) (xy 45.895 38.392844) (xy 42.24516 38.392844) (xy 42.249999 38.347844) (xy 42.25 38.347827) + (xy 42.25 38.1) (xy 41.25 38.1) (xy 41.25 38.87) (xy 40.75 38.87) (xy 40.75 37.6) (xy 41.25 37.6) + (xy 42.25 37.6) (xy 42.25 37.397155) (xy 45.895 37.397155) (xy 45.895 37.645) (xy 46.595 37.645) + (xy 47.095 37.645) (xy 48 37.645) (xy 48.5 37.645) (xy 49.4 37.645) (xy 49.9 37.645) (xy 50.6 37.645) + (xy 50.6 37.397172) (xy 50.599999 37.397155) (xy 50.593598 37.337627) (xy 50.593596 37.33762) (xy 50.543354 37.202913) + (xy 50.54335 37.202906) (xy 50.45719 37.087812) (xy 50.457187 37.087809) (xy 50.342093 37.001649) + (xy 50.342086 37.001645) (xy 50.207379 36.951403) (xy 50.207372 36.951401) (xy 50.147844 36.945) + (xy 49.9 36.945) (xy 49.9 37.645) (xy 49.4 37.645) (xy 49.4 36.945) (xy 49.152155 36.945) (xy 49.092627 36.951401) + (xy 49.092616 36.951403) (xy 48.993332 36.988434) (xy 48.92364 36.993418) (xy 48.906668 36.988434) + (xy 48.807383 36.951403) (xy 48.807372 36.951401) (xy 48.747844 36.945) (xy 48.5 36.945) (xy 48.5 37.645) + (xy 48 37.645) (xy 48 36.945) (xy 47.752155 36.945) (xy 47.692627 36.951401) (xy 47.692619 36.951403) + (xy 47.590833 36.989367) (xy 47.521141 36.994351) (xy 47.504167 36.989367) (xy 47.40238 36.951403) + (xy 47.402372 36.951401) (xy 47.342844 36.945) (xy 47.095 36.945) (xy 47.095 37.645) (xy 46.595 37.645) + (xy 46.595 36.945) (xy 46.347155 36.945) (xy 46.287627 36.951401) (xy 46.28762 36.951403) (xy 46.152913 37.001645) + (xy 46.152906 37.001649) (xy 46.037812 37.087809) (xy 46.037809 37.087812) (xy 45.951649 37.202906) + (xy 45.951645 37.202913) (xy 45.901403 37.33762) (xy 45.901401 37.337627) (xy 45.895 37.397155) + (xy 42.25 37.397155) (xy 42.25 37.352172) (xy 42.249999 37.352155) (xy 42.243598 37.292627) (xy 42.243597 37.292624) + (xy 42.230808 37.258335) (xy 42.225822 37.188644) (xy 42.230808 37.171665) (xy 42.243597 37.137375) + (xy 42.243598 37.137372) (xy 42.249999 37.077844) (xy 42.25 37.077827) (xy 42.25 36.83) (xy 41.25 36.83) + (xy 41.25 37.6) (xy 40.75 37.6) (xy 40.75 36.33) (xy 41.25 36.33) (xy 42.25 36.33) (xy 42.25 36.082172) + (xy 42.249999 36.082155) (xy 42.243598 36.022627) (xy 42.243597 36.022624) (xy 42.230808 35.988335) + (xy 42.225822 35.918644) (xy 42.230808 35.901665) (xy 42.243597 35.867375) (xy 42.243598 35.867372) + (xy 42.249999 35.807844) (xy 42.25 35.807827) (xy 42.25 35.56) (xy 41.25 35.56) (xy 41.25 36.33) + (xy 40.75 36.33) (xy 40.75 35.184) (xy 40.769685 35.116961) (xy 40.822489 35.071206) (xy 40.874 35.06) + (xy 42.25 35.06) (xy 42.25 34.812172) (xy 42.249999 34.812155) (xy 42.243597 34.752622) (xy 42.243597 34.75262) + (xy 42.231075 34.719048) (xy 42.226089 34.649356) (xy 42.231071 34.63239) (xy 42.244091 34.597483) + (xy 42.2505 34.537873) (xy 42.250499 33.542128) (xy 42.244091 33.482517) (xy 42.23134 33.448332) + (xy 42.226357 33.378642) (xy 42.231338 33.361672) (xy 42.244091 33.327483) (xy 42.2505 33.267873) + (xy 42.250499 32.272128) (xy 42.244091 32.212517) (xy 42.231073 32.177616) (xy 42.22609 32.107926) + (xy 42.231075 32.090949) (xy 42.243597 32.057375) (xy 42.243598 32.057372) (xy 42.249999 31.997844) + (xy 57.25 31.997844) (xy 57.256401 32.057372) (xy 57.256404 32.057383) (xy 57.269191 32.091668) + (xy 57.274175 32.16136) (xy 57.269191 32.178332) (xy 57.256404 32.212616) (xy 57.256401 32.212627) + (xy 57.25 32.272155) (xy 57.25 32.52) (xy 58.25 32.52) (xy 58.25 31.75) (xy 57.25 31.75) (xy 57.25 31.997844) + (xy 42.249999 31.997844) (xy 42.25 31.997827) (xy 42.25 31.75) (xy 39.75 31.75) (xy 39.75 31.8955) + (xy 39.730315 31.962539) (xy 39.677511 32.008294) (xy 39.626 32.0195) (xy 36.25608 32.0195) (xy 36.111093 32.04834) + (xy 36.111085 32.048342) (xy 36.010367 32.090061) (xy 35.962915 32.0995) (xy 35.474998 32.0995) + (xy 35.47498 32.099501) (xy 35.372203 32.11) (xy 35.3722 32.110001) (xy 35.205668 32.165185) (xy 35.205663 32.165187) + (xy 35.056342 32.257289) (xy 34.932289 32.381342) (xy 34.840187 32.530663) (xy 34.840186 32.530666) + (xy 34.785001 32.697203) (xy 34.785001 32.697204) (xy 34.785 32.697204) (xy 34.7745 32.799983) (xy 34.7745 33.400001) + (xy 34.774501 33.400019) (xy 34.785 33.502796) (xy 34.785001 33.502799) (xy 34.840185 33.669331) + (xy 34.840187 33.669336) (xy 34.862728 33.70588) (xy 34.932288 33.818656) (xy 35.056344 33.942712) + (xy 35.059628 33.944737) (xy 35.059653 33.944753) (xy 35.061445 33.946746) (xy 35.062011 33.947193) + (xy 35.061934 33.947289) (xy 35.106379 33.996699) (xy 35.117603 34.065661) (xy 35.089761 34.129744) + (xy 35.059665 34.155826) (xy 35.05666 34.157679) (xy 35.056655 34.157683) (xy 34.932684 34.281654) + (xy 34.840643 34.430875) (xy 34.840641 34.43088) (xy 34.785494 34.597302) (xy 34.785493 34.597309) + (xy 34.775 34.700013) (xy 34.775 34.75) (xy 38.626 34.75) (xy 38.693039 34.769685) (xy 38.738794 34.822489) + (xy 38.75 34.874) (xy 38.75 35.999999) (xy 38.8505 35.999999) (xy 38.917539 36.019684) (xy 38.963294 36.072488) + (xy 38.9745 36.123999) (xy 38.9745 36.412769) (xy 38.954815 36.479808) (xy 38.938181 36.50045) (xy 38.19985 37.23878) + (xy 38.138527 37.272265) (xy 38.068835 37.267281) (xy 38.054757 37.261008) (xy 38.053409 37.260304) + (xy 38.053407 37.260302) (xy 37.873049 37.166091) (xy 37.873048 37.16609) (xy 37.873045 37.166089) + (xy 37.748646 37.130495) (xy 37.677418 37.110114) (xy 37.677415 37.110113) (xy 37.677413 37.110113) + (xy 37.611102 37.104217) (xy 37.558037 37.0995) (xy 37.558032 37.0995) (xy 36.441971 37.0995) (xy 36.441965 37.0995) + (xy 36.441964 37.099501) (xy 36.430316 37.100536) (xy 36.322584 37.110113) (xy 36.126954 37.166089) + (xy 36.056472 37.202906) (xy 35.946593 37.260302) (xy 35.946591 37.260303) (xy 35.94659 37.260304) + (xy 35.78889 37.38889) (xy 35.660304 37.54659) (xy 35.566089 37.726954) (xy 35.52476 37.871396) + (xy 35.517193 37.897844) (xy 35.510114 37.922583) (xy 35.510113 37.922586) (xy 35.50702 37.957379) + (xy 35.499809 38.038495) (xy 35.4995 38.041966) (xy 35.4995 38.6255) (xy 35.479815 38.692539) (xy 35.427011 38.738294) + (xy 35.3755 38.7495) (xy 32.192942 38.7495) (xy 32.125903 38.729815) (xy 32.081854 38.680594) (xy 32.06703 38.650704) + (xy 31.947724 38.50228) (xy 31.947722 38.502278) (xy 31.878112 38.446324) (xy 31.838196 38.388985) + (xy 31.835616 38.319163) (xy 31.871194 38.25903) (xy 31.878115 38.253033) (xy 31.947366 38.197367) + (xy 31.947367 38.197366) (xy 32.066607 38.049025) (xy 32.066609 38.049022) (xy 32.151168 37.878523) + (xy 32.197102 37.693824) (xy 32.2 37.651096) (xy 32.2 37.45) (xy 29.2 37.45) (xy 29.2 37.651096) + (xy 29.202897 37.693824) (xy 29.248831 37.878523) (xy 29.33339 38.049022) (xy 29.333392 38.049025) + (xy 29.45263 38.197364) (xy 29.521884 38.253031) (xy 29.561803 38.310375) (xy 29.564383 38.380197) + (xy 29.528805 38.440329) (xy 29.521885 38.446326) (xy 29.462353 38.49418) (xy 29.452276 38.50228) + (xy 29.332969 38.650704) (xy 29.332967 38.650707) (xy 29.24836 38.821302) (xy 29.2024 39.006107) + (xy 29.1995 39.048879) (xy 29.1995 39.214477) (xy 29.179815 39.281516) (xy 29.127011 39.327271) + (xy 29.057853 39.337215) (xy 28.994297 39.30819) (xy 28.987819 39.302158) (xy 28.943345 39.257684) + (xy 28.794124 39.165643) (xy 28.794119 39.165641) (xy 28.627697 39.110494) (xy 28.62769 39.110493) + (xy 28.524986 39.1) (xy 28.25 39.1) (xy 28.25 40.226) (xy 28.230315 40.293039) (xy 28.177511 40.338794) + (xy 28.126 40.35) (xy 27.874 40.35) (xy 27.806961 40.330315) (xy 27.761206 40.277511) (xy 27.75 40.226) + (xy 27.75 39.1) (xy 27.6495 39.1) (xy 27.582461 39.080315) (xy 27.536706 39.027511) (xy 27.5255 38.976) + (xy 27.5255 36.687229) (xy 27.545185 36.62019) (xy 27.561815 36.599552) (xy 28.399549 35.761817) + (xy 28.460872 35.728333) (xy 28.48723 35.725499) (xy 28.900002 35.725499) (xy 28.900008 35.725499) + (xy 29.002797 35.714999) (xy 29.169334 35.659814) (xy 29.318656 35.567712) (xy 29.442712 35.443656) + (xy 29.444752 35.440347) (xy 29.446745 35.438555) (xy 29.447193 35.437989) (xy 29.447289 35.438065) + (xy 29.496694 35.393623) (xy 29.565656 35.382395) (xy 29.62974 35.410234) (xy 29.655829 35.440339) + (xy 29.657681 35.443341) (xy 29.657683 35.443344) (xy 29.781654 35.567315) (xy 29.930875 35.659356) + (xy 29.93088 35.659358) (xy 30.078559 35.708294) (xy 30.136004 35.748066) (xy 30.162827 35.812582) + (xy 30.150512 35.881358) (xy 30.102969 35.932558) (xy 30.039555 35.95) (xy 29.998903 35.95) (xy 29.956175 35.952897) + (xy 29.771476 35.998831) (xy 29.600977 36.08339) (xy 29.600974 36.083392) (xy 29.452633 36.202632) + (xy 29.452632 36.202633) (xy 29.333392 36.350974) (xy 29.33339 36.350977) (xy 29.248831 36.521476) + (xy 29.202897 36.706175) (xy 29.2 36.748903) (xy 29.2 36.95) (xy 32.2 36.95) (xy 32.2 36.748903) + (xy 32.197102 36.706175) (xy 32.151168 36.521476) (xy 32.066609 36.350977) (xy 32.066607 36.350974) + (xy 31.947367 36.202633) (xy 31.947366 36.202632) (xy 31.799025 36.083392) (xy 31.799022 36.08339) + (xy 31.628523 35.998831) (xy 31.443824 35.952897) (xy 31.401097 35.95) (xy 30.960447 35.95) (xy 30.893408 35.930315) + (xy 30.847653 35.877511) (xy 30.837709 35.808353) (xy 30.866734 35.744797) (xy 30.921443 35.708294) + (xy 31.069119 35.659358) (xy 31.069124 35.659356) (xy 31.218345 35.567315) (xy 31.342315 35.443345) + (xy 31.43074 35.299986) (xy 34.775001 35.299986) (xy 34.785494 35.402697) (xy 34.840641 35.569119) + (xy 34.840643 35.569124) (xy 34.932684 35.718345) (xy 35.056654 35.842315) (xy 35.205875 35.934356) + (xy 35.20588 35.934358) (xy 35.372302 35.989505) (xy 35.372309 35.989506) (xy 35.475019 35.999999) + (xy 35.749999 35.999999) (xy 36.25 35.999999) (xy 36.524972 35.999999) (xy 36.524986 35.999998) + (xy 36.627697 35.989505) (xy 36.794119 35.934358) (xy 36.794124 35.934356) (xy 36.943345 35.842315) + (xy 37.067315 35.718345) (xy 37.144461 35.593273) (xy 37.196409 35.546549) (xy 37.265372 35.535326) + (xy 37.329454 35.56317) (xy 37.355539 35.593273) (xy 37.432684 35.718345) (xy 37.556654 35.842315) + (xy 37.705875 35.934356) (xy 37.70588 35.934358) (xy 37.872302 35.989505) (xy 37.872309 35.989506) + (xy 37.975019 35.999999) (xy 38.249999 35.999999) (xy 38.25 35.999998) (xy 38.25 35.25) (xy 36.25 35.25) + (xy 36.25 35.999999) (xy 35.749999 35.999999) (xy 35.75 35.999998) (xy 35.75 35.25) (xy 34.775001 35.25) + (xy 34.775001 35.299986) (xy 31.43074 35.299986) (xy 31.434356 35.294124) (xy 31.434358 35.294119) + (xy 31.489505 35.127697) (xy 31.489506 35.12769) (xy 31.499999 35.024986) (xy 31.5 35.024973) (xy 31.5 34.75) + (xy 30.374 34.75) (xy 30.306961 34.730315) (xy 30.261206 34.677511) (xy 30.25 34.626) (xy 30.25 34.25) + (xy 30.75 34.25) (xy 31.499999 34.25) (xy 31.499999 33.975028) (xy 31.499998 33.975013) (xy 31.489505 33.872302) + (xy 31.434358 33.70588) (xy 31.434356 33.705875) (xy 31.342315 33.556654) (xy 31.218345 33.432684) + (xy 31.093273 33.355539) (xy 31.046549 33.303591) (xy 31.035326 33.234628) (xy 31.06317 33.170546) + (xy 31.093273 33.144461) (xy 31.218345 33.067315) (xy 31.342315 32.943345) (xy 31.434356 32.794124) + (xy 31.434358 32.794119) (xy 31.489505 32.627697) (xy 31.489506 32.62769) (xy 31.499999 32.524986) + (xy 31.5 32.524973) (xy 31.5 32.25) (xy 30.75 32.25) (xy 30.75 34.25) (xy 30.25 34.25) (xy 30.25 31.75) + (xy 30.75 31.75) (xy 31.499999 31.75) (xy 31.499999 31.475028) (xy 31.499998 31.475013) (xy 31.489505 31.372302) + (xy 31.434358 31.20588) (xy 31.434356 31.205875) (xy 31.342315 31.056654) (xy 31.287816 31.002155) + (xy 39.75 31.002155) (xy 39.75 31.25) (xy 42.25 31.25) (xy 42.25 31.002172) (xy 42.249999 31.002155) + (xy 42.243598 30.942627) (xy 42.243596 30.94262) (xy 42.193354 30.807913) (xy 42.19335 30.807906) + (xy 42.10719 30.692812) (xy 42.107187 30.692809) (xy 41.992093 30.606649) (xy 41.992088 30.606646) + (xy 41.974756 30.600182) (xy 41.918823 30.55831) (xy 41.894406 30.492846) (xy 41.909258 30.424573) + (xy 41.958663 30.375168) (xy 42.01809 30.36) (xy 57.48191 30.36) (xy 57.548949 30.379685) (xy 57.594704 30.432489) + (xy 57.604648 30.501647) (xy 57.575623 30.565203) (xy 57.525244 30.600182) (xy 57.507911 30.606646) + (xy 57.507906 30.606649) (xy 57.392812 30.692809) (xy 57.392809 30.692812) (xy 57.306649 30.807906) + (xy 57.306645 30.807913) (xy 57.256403 30.94262) (xy 57.256401 30.942627) (xy 57.25 31.002155) (xy 57.25 31.25) + (xy 59.75 31.25) (xy 59.75 31.002172) (xy 59.749999 31.002155) (xy 59.743598 30.942627) (xy 59.743596 30.94262) + (xy 59.693354 30.807913) (xy 59.69335 30.807906) (xy 59.60719 30.692812) (xy 59.607187 30.692809) + (xy 59.492093 30.606649) (xy 59.492086 30.606645) (xy 59.357379 30.556403) (xy 59.357372 30.556401) + (xy 59.297844 30.55) (xy 58.859362 30.55) (xy 58.792323 30.530315) (xy 58.746568 30.477511) (xy 58.736624 30.408353) + (xy 58.75 30.379063) (xy 58.75 24.06) (xy 40.75 24.06) (xy 40.75 30.378024) (xy 40.761804 30.399642) + (xy 40.75682 30.469334) (xy 40.714948 30.525267) (xy 40.649484 30.549684) (xy 40.640638 30.55) (xy 40.202155 30.55) + (xy 40.142627 30.556401) (xy 40.14262 30.556403) (xy 40.007913 30.606645) (xy 40.007906 30.606649) + (xy 39.892812 30.692809) (xy 39.892809 30.692812) (xy 39.806649 30.807906) (xy 39.806645 30.807913) + (xy 39.756403 30.94262) (xy 39.756401 30.942627) (xy 39.75 31.002155) (xy 31.287816 31.002155) (xy 31.218345 30.932684) + (xy 31.069124 30.840643) (xy 31.069119 30.840641) (xy 30.902697 30.785494) (xy 30.90269 30.785493) + (xy 30.799986 30.775) (xy 30.75 30.775) (xy 30.75 31.75) (xy 30.25 31.75) (xy 30.25 30.775) (xy 30.249999 30.774999) + (xy 30.200029 30.775) (xy 30.200011 30.775001) (xy 30.097302 30.785494) (xy 29.93088 30.840641) + (xy 29.930875 30.840643) (xy 29.781654 30.932684) (xy 29.657683 31.056655) (xy 29.657679 31.05666) + (xy 29.655826 31.059665) (xy 29.654018 31.06129) (xy 29.653202 31.062323) (xy 29.653025 31.062183) + (xy 29.603874 31.106385) (xy 29.534911 31.117601) (xy 29.470831 31.089752) (xy 29.444753 31.059653) + (xy 29.444737 31.059628) (xy 29.442712 31.056344) (xy 29.386819 31.000451) (xy 29.353334 30.939128) + (xy 29.3505 30.91277) (xy 29.3505 29.673131) (xy 29.370185 29.606092) (xy 29.422989 29.560337) (xy 29.482894 29.549416) + (xy 29.498877 29.5505) (xy 30.901122 29.550499) (xy 30.943889 29.5476) (xy 31.128693 29.501641) + (xy 31.299296 29.41703) (xy 31.447722 29.297722) (xy 31.56703 29.149296) (xy 31.651641 28.978693) + (xy 31.6976 28.793889) (xy 31.7005 28.751123) (xy 31.700499 27.848878) (xy 31.6976 27.806111) (xy 31.651641 27.621307) + (xy 31.636343 27.590461) (xy 31.567032 27.450707) (xy 31.56703 27.450704) (xy 31.447722 27.302278) + (xy 31.447721 27.302277) (xy 31.378514 27.246647) (xy 31.338595 27.189304) (xy 31.336015 27.119482) + (xy 31.371594 27.059349) (xy 31.378514 27.053353) (xy 31.402497 27.034075) (xy 31.447722 26.997722) + (xy 31.56703 26.849296) (xy 31.651641 26.678693) (xy 31.6976 26.493889) (xy 31.7005 26.451123) (xy 31.700499 25.612228) + (xy 31.720183 25.54519) (xy 31.736813 25.524553) (xy 31.974548 25.286819) (xy 32.035871 25.253334) + (xy 32.062229 25.2505) (xy 34.63777 25.2505) (xy 34.704809 25.270185) (xy 34.725451 25.286819) (xy 34.963181 25.524548) + (xy 34.996666 25.585871) (xy 34.9995 25.612229) (xy 34.9995 27.458028) (xy 34.999501 27.458034) + (xy 35.010113 27.577415) (xy 35.066089 27.773045) (xy 35.06609 27.773048) (xy 35.066091 27.773049) + (xy 35.160302 27.953407) (xy 35.168665 27.963663) (xy 35.28889 28.111109) (xy 35.326507 28.141781) + (xy 35.446593 28.239698) (xy 35.626951 28.333909) (xy 35.822582 28.389886) (xy 35.941963 28.4005) + (xy 37.058036 28.400499) (xy 37.177418 28.389886) (xy 37.373049 28.333909) (xy 37.553407 28.239698) + (xy 37.711109 28.111109) (xy 37.839698 27.953407) (xy 37.933909 27.773049) (xy 37.989886 27.577418) + (xy 38.0005 27.458037) (xy 38.000499 24.541964) (xy 37.989886 24.422582) (xy 37.933909 24.226951) + (xy 37.839698 24.046593) (xy 37.7518 23.938794) (xy 37.711109 23.88889) (xy 37.587383 23.788006) + (xy 37.553407 23.760302) (xy 37.373049 23.666091) (xy 37.373048 23.66609) (xy 37.373043 23.666088) + (xy 37.340387 23.656744) (xy 37.281349 23.619376) (xy 37.251887 23.556022) (xy 37.2505 23.537529) + (xy 37.2505 21.866668) (xy 37.270185 21.799629) (xy 37.322989 21.753874) (xy 37.392147 21.74393) + (xy 37.398684 21.74505) (xy 37.40816 21.746934) (xy 37.426079 21.7505) (xy 37.426082 21.7505) (xy 37.426083 21.7505) + (xy 37.573918 21.7505) (xy 64.6005 21.7505) (xy 64.667539 21.770185) (xy 64.713294 21.822989) (xy 64.7245 21.8745) + (xy 64.7245 26.0255) (xy 64.704815 26.092539) (xy 64.652011 26.138294) (xy 64.600505 26.1495) (xy 64.577132 26.1495) + (xy 64.577123 26.149501) (xy 64.517516 26.155908) (xy 64.382671 26.206202) (xy 64.382664 26.206206) + (xy 64.267455 26.292452) (xy 64.267452 26.292455) (xy 64.181206 26.407664) (xy 64.181202 26.407671) + (xy 64.130908 26.542517) (xy 64.124501 26.602116) (xy 64.1245 26.602135) (xy 64.1245 28.39787) (xy 64.124501 28.397876) + (xy 64.130908 28.457483) (xy 64.181202 28.592328) (xy 64.181206 28.592335) (xy 64.267452 28.707544) + (xy 64.267455 28.707547) (xy 64.382664 28.793793) (xy 64.382671 28.793797) (xy 64.517517 28.844091) + (xy 64.517516 28.844091) (xy 64.524444 28.844835) (xy 64.577127 28.8505) (xy 65.06377 28.850499) + (xy 65.130808 28.870183) (xy 65.176563 28.922987) (xy 65.186507 28.992146) (xy 65.157482 29.055702) + (xy 65.15145 29.06218) (xy 64.000451 30.213181) (xy 63.939128 30.246666) (xy 63.91277 30.2495) (xy 62.41608 30.2495) + (xy 62.271092 30.27834) (xy 62.271082 30.278343) (xy 62.134511 30.334912) (xy 62.134498 30.334919) + (xy 62.011584 30.417048) (xy 62.01158 30.417051) (xy 59.961681 32.46695) (xy 59.900358 32.500435) + (xy 59.830666 32.495451) (xy 59.774733 32.453579) (xy 59.750316 32.388115) (xy 59.75 32.379269) + (xy 59.75 32.272172) (xy 59.749999 32.272155) (xy 59.743598 32.212627) (xy 59.743597 32.212624) + (xy 59.730808 32.178335) (xy 59.725822 32.108644) (xy 59.730808 32.091665) (xy 59.743597 32.057375) + (xy 59.743598 32.057372) (xy 59.749999 31.997844) (xy 59.75 31.997827) (xy 59.75 31.75) (xy 58.75 31.75) + (xy 58.75 32.896) (xy 58.730315 32.963039) (xy 58.677511 33.008794) (xy 58.626 33.02) (xy 57.25 33.02) + (xy 57.25 33.267844) (xy 57.256401 33.327372) (xy 57.256403 33.327379) (xy 57.268925 33.360952) + (xy 57.273909 33.430643) (xy 57.268925 33.447617) (xy 57.255909 33.482514) (xy 57.255908 33.482516) + (xy 57.253728 33.502799) (xy 57.249501 33.542123) (xy 57.2495 33.542135) (xy 57.2495 34.53787) (xy 57.249501 34.537876) + (xy 57.255908 34.597481) (xy 57.268659 34.631669) (xy 57.273642 34.701361) (xy 57.268659 34.718331) + (xy 57.255908 34.752518) (xy 57.249501 34.812116) (xy 57.2495 34.812135) (xy 57.2495 35.80787) (xy 57.249501 35.807876) + (xy 57.255908 35.867481) (xy 57.268659 35.901669) (xy 57.273642 35.971361) (xy 57.268659 35.988331) + (xy 57.255908 36.022518) (xy 57.249501 36.082116) (xy 57.2495 36.082135) (xy 57.2495 37.07787) (xy 57.249501 37.077876) + (xy 57.255908 37.137481) (xy 57.268659 37.171669) (xy 57.273642 37.241361) (xy 57.268659 37.258331) + (xy 57.255908 37.292518) (xy 57.249501 37.352116) (xy 57.2495 37.352135) (xy 57.2495 38.34787) (xy 57.249501 38.347876) + (xy 57.255908 38.407481) (xy 57.268659 38.441669) (xy 57.273642 38.511361) (xy 57.268659 38.528331) + (xy 57.255908 38.562518) (xy 57.249501 38.622116) (xy 57.2495 38.622135) (xy 57.2495 39.61787) (xy 57.249501 39.617876) + (xy 57.255908 39.677481) (xy 57.268659 39.711669) (xy 57.273642 39.781361) (xy 57.268659 39.798331) + (xy 57.255908 39.832518) (xy 57.249501 39.892116) (xy 57.2495 39.892135) (xy 57.2495 40.88787) (xy 57.249501 40.887876) + (xy 57.255908 40.947481) (xy 57.268659 40.981669) (xy 57.273642 41.051361) (xy 57.268659 41.068331) + (xy 57.255908 41.102518) (xy 57.249501 41.162116) (xy 57.2495 41.162135) (xy 57.2495 42.15787) (xy 57.249501 42.157876) + (xy 57.255908 42.217481) (xy 57.268659 42.251669) (xy 57.273642 42.321361) (xy 57.268659 42.338331) + (xy 57.255908 42.372518) (xy 57.252653 42.402797) (xy 57.249501 42.432123) (xy 57.2495 42.432135) + (xy 57.2495 43.42787) (xy 57.249501 43.427876) (xy 57.255908 43.487481) (xy 57.268659 43.521669) + (xy 57.273642 43.591361) (xy 57.268659 43.608331) (xy 57.255908 43.642518) (xy 57.25062 43.691706) + (xy 57.249501 43.702123) (xy 57.2495 43.702135) (xy 57.2495 44.69787) (xy 57.249501 44.697876) (xy 57.255908 44.757481) + (xy 57.268659 44.791669) (xy 57.273642 44.861361) (xy 57.268659 44.878331) (xy 57.255908 44.912518) + (xy 57.249501 44.972116) (xy 57.249501 44.972123) (xy 57.2495 44.972135) (xy 57.2495 45.96787) (xy 57.249501 45.967876) + (xy 57.255908 46.027481) (xy 57.268659 46.061669) (xy 57.273642 46.131361) (xy 57.268659 46.148331) + (xy 57.255908 46.182518) (xy 57.249501 46.242116) (xy 57.249501 46.242123) (xy 57.2495 46.242135) + (xy 57.2495 47.23787) (xy 57.249501 47.237876) (xy 57.255908 47.297483) (xy 57.268925 47.332381) + (xy 57.273909 47.402072) (xy 57.268925 47.419047) (xy 57.256403 47.452619) (xy 57.256401 47.452627) + (xy 57.25 47.512155) (xy 57.25 47.76) (xy 58.626 47.76) (xy 58.693039 47.779685) (xy 58.738794 47.832489) + (xy 58.75 47.884) (xy 58.75 48.136) (xy 58.730315 48.203039) (xy 58.677511 48.248794) (xy 58.626 48.26) + (xy 57.25 48.26) (xy 57.25 48.507844) (xy 57.256401 48.567372) (xy 57.256403 48.567379) (xy 57.268925 48.600952) + (xy 57.273909 48.670643) (xy 57.268925 48.687617) (xy 57.255909 48.722514) (xy 57.255908 48.722516) + (xy 57.249501 48.782116) (xy 57.2495 48.782135) (xy 57.2495 49.77787) (xy 57.249501 49.777876) (xy 57.255908 49.837483) + (xy 57.268925 49.872381) (xy 57.273909 49.942072) (xy 57.268925 49.959047) (xy 57.256403 49.992619) + (xy 57.256401 49.992627) (xy 57.25 50.052155) (xy 57.25 50.3) (xy 59.75 50.3) (xy 59.75 50.052172) + (xy 59.749999 50.052164) (xy 59.749664 50.049046) (xy 59.762063 49.980285) (xy 59.804058 49.93268) + (xy 59.834729 49.912186) (xy 59.834729 49.912185) (xy 59.834731 49.912185) (xy 59.871038 49.887926) + (xy 59.908416 49.862952) (xy 64.00835 45.763016) (xy 64.069671 45.729533) (xy 64.139363 45.734517) + (xy 64.195296 45.776389) (xy 64.219713 45.841853) (xy 64.207364 45.898635) (xy 64.209303 45.899359) + (xy 64.155908 46.042517) (xy 64.149501 46.102116) (xy 64.1495 46.102135) (xy 64.1495 47.89787) (xy 64.149501 47.897876) + (xy 64.155908 47.957483) (xy 64.206202 48.092328) (xy 64.206206 48.092335) (xy 64.292452 48.207544) + (xy 64.292455 48.207547) (xy 64.407664 48.293793) (xy 64.407671 48.293797) (xy 64.452618 48.310561) + (xy 64.542517 48.344091) (xy 64.602127 48.3505) (xy 64.625497 48.350499) (xy 64.692536 48.370181) + (xy 64.738292 48.422983) (xy 64.7495 48.474499) (xy 64.7495 49.197769) (xy 64.729815 49.264808) + (xy 64.713181 49.28545) (xy 59.96218 54.036451) (xy 59.900857 54.069936) (xy 59.831165 54.064952) + (xy 59.775232 54.02308) (xy 59.750815 53.957616) (xy 59.750499 53.94877) (xy 59.750499 53.862129) + (xy 59.750498 53.862123) (xy 59.750497 53.862116) (xy 59.744091 53.802517) (xy 59.73134 53.768332) + (xy 59.726357 53.698642) (xy 59.73134 53.681669) (xy 59.744091 53.647483) (xy 59.7505 53.587873) + (xy 59.750499 52.592128) (xy 59.744091 52.532517) (xy 59.73134 52.498332) (xy 59.726357 52.428642) + (xy 59.73134 52.411669) (xy 59.744091 52.377483) (xy 59.7505 52.317873) (xy 59.750499 51.322128) + (xy 59.744091 51.262517) (xy 59.731073 51.227616) (xy 59.72609 51.157926) (xy 59.731075 51.140949) + (xy 59.743597 51.107375) (xy 59.743598 51.107372) (xy 59.749999 51.047844) (xy 59.75 51.047827) + (xy 59.75 50.8) (xy 57.25 50.8) (xy 57.25 51.047844) (xy 57.256401 51.107372) (xy 57.256403 51.107379) + (xy 57.268925 51.140952) (xy 57.273909 51.210643) (xy 57.268925 51.227617) (xy 57.255909 51.262514) + (xy 57.255908 51.262516) (xy 57.25062 51.311706) (xy 57.249501 51.322123) (xy 57.2495 51.322135) + (xy 57.2495 52.31787) (xy 57.249501 52.317876) (xy 57.255908 52.377481) (xy 57.268659 52.411669) + (xy 57.273642 52.481361) (xy 57.268659 52.498331) (xy 57.255908 52.532518) (xy 57.249501 52.592116) + (xy 57.249501 52.592123) (xy 57.2495 52.592135) (xy 57.2495 53.58787) (xy 57.249501 53.587876) (xy 57.255908 53.647481) + (xy 57.268659 53.681669) (xy 57.273642 53.751361) (xy 57.268659 53.768331) (xy 57.255908 53.802518) + (xy 57.249501 53.862116) (xy 57.249501 53.862123) (xy 57.2495 53.862135) (xy 57.2495 54.85787) (xy 57.249501 54.857876) + (xy 57.255908 54.917483) (xy 57.306202 55.052328) (xy 57.310454 55.060114) (xy 57.308978 55.060919) + (xy 57.329766 55.116655) (xy 57.314914 55.184928) (xy 57.265508 55.234333) (xy 57.206082 55.2495) + (xy 42.293918 55.2495) (xy 42.226879 55.229815) (xy 42.181124 55.177011) (xy 42.17118 55.107853) + (xy 42.190694 55.060741) (xy 42.189546 55.060114) (xy 42.193793 55.052334) (xy 42.193796 55.052331) + (xy 42.244091 54.917483) (xy 42.2505 54.857873) (xy 42.250499 53.862128) (xy 42.244091 53.802517) + (xy 42.23134 53.768332) (xy 42.226357 53.698642) (xy 42.23134 53.681669) (xy 42.244091 53.647483) + (xy 42.2505 53.587873) (xy 42.250499 52.592128) (xy 42.244091 52.532517) (xy 42.23134 52.498332) + (xy 42.226357 52.428642) (xy 42.23134 52.411669) (xy 42.244091 52.377483) (xy 42.2505 52.317873) + (xy 42.250499 51.322128) (xy 42.244091 51.262517) (xy 42.23134 51.228332) (xy 42.226357 51.158642) + (xy 42.231338 51.141672) (xy 42.244091 51.107483) (xy 42.2505 51.047873) (xy 42.250499 50.052128) + (xy 42.244091 49.992517) (xy 42.231073 49.957616) (xy 42.22609 49.887926) (xy 42.231075 49.870949) + (xy 42.243597 49.837375) (xy 42.243598 49.837372) (xy 42.249999 49.777844) (xy 42.25 49.777827) + (xy 42.25 49.53) (xy 40.874 49.53) (xy 40.806961 49.510315) (xy 40.761206 49.457511) (xy 40.75 49.406) + (xy 40.75 49.154) (xy 40.769685 49.086961) (xy 40.822489 49.041206) (xy 40.874 49.03) (xy 42.25 49.03) + (xy 42.25 48.782172) (xy 42.249999 48.782155) (xy 42.243597 48.722622) (xy 42.243597 48.72262) (xy 42.231075 48.689048) + (xy 42.226089 48.619356) (xy 42.231071 48.60239) (xy 42.244091 48.567483) (xy 42.2505 48.507873) + (xy 42.250499 47.512128) (xy 42.244091 47.452517) (xy 42.23134 47.418332) (xy 42.226357 47.348642) + (xy 42.231338 47.331672) (xy 42.244091 47.297483) (xy 42.2505 47.237873) (xy 42.250499 46.242128) + (xy 42.244091 46.182517) (xy 42.231073 46.147616) (xy 42.22609 46.077926) (xy 42.231075 46.060949) + (xy 42.243597 46.027375) (xy 42.243598 46.027372) (xy 42.249999 45.967844) (xy 42.25 45.967827) + (xy 42.25 45.72) (xy 40.874 45.72) (xy 40.806961 45.700315) (xy 40.761206 45.647511) (xy 40.75 45.596) + (xy 40.75 45.344) (xy 40.769685 45.276961) (xy 40.822489 45.231206) (xy 40.874 45.22) (xy 42.25 45.22) + (xy 42.25 44.972172) (xy 42.249999 44.972155) (xy 42.243597 44.912622) (xy 42.243597 44.91262) (xy 42.231075 44.879048) + (xy 42.226089 44.809356) (xy 42.231071 44.79239) (xy 42.244091 44.757483) (xy 42.2505 44.697873) + (xy 42.250499 43.702128) (xy 42.244091 43.642517) (xy 42.23134 43.608332) (xy 42.226357 43.538642) + (xy 42.23134 43.521669) (xy 42.244091 43.487483) (xy 42.2505 43.427873) (xy 42.250499 42.432128) + (xy 42.244091 42.372517) (xy 42.231073 42.337616) (xy 42.22609 42.267926) (xy 42.231075 42.250949) + (xy 42.243597 42.217375) (xy 42.243598 42.217372) (xy 42.249999 42.157844) (xy 42.25 42.157827) + (xy 42.25 41.91) (xy 39.75 41.91) (xy 39.75 42.0555) (xy 39.730315 42.122539) (xy 39.677511 42.168294) + (xy 39.626 42.1795) (xy 38.45608 42.1795) (xy 38.311092 42.20834) (xy 38.311082 42.208343) (xy 38.174511 42.264912) + (xy 38.174498 42.264919) (xy 38.051584 42.347048) (xy 38.05158 42.347051) (xy 30.2715 50.12713) + (xy 30.210177 50.160615) (xy 30.173012 50.162977) (xy 29.960002 50.144341) (xy 29.959999 50.144341) + (xy 29.724596 50.164936) (xy 29.724586 50.164938) (xy 29.496344 50.226094) (xy 29.496335 50.226098) + (xy 29.282171 50.325964) (xy 29.282169 50.325965) (xy 29.0886 50.461503) (xy 28.966673 50.58343) + (xy 28.90535 50.616914) (xy 28.835658 50.61193) (xy 28.779725 50.570058) (xy 28.76281 50.539081) + (xy 28.713797 50.407671) (xy 28.713793 50.407664) (xy 28.627547 50.292455) (xy 28.627544 50.292452) + (xy 28.512335 50.206206) (xy 28.512328 50.206202) (xy 28.377482 50.155908) (xy 28.377483 50.155908) + (xy 28.317883 50.149501) (xy 28.317881 50.1495) (xy 28.317873 50.1495) (xy 28.317864 50.1495) (xy 26.522129 50.1495) + (xy 26.522123 50.149501) (xy 26.462516 50.155908) (xy 26.327671 50.206202) (xy 26.327664 50.206206) + (xy 26.212455 50.292452) (xy 26.212452 50.292455) (xy 26.126206 50.407664) (xy 26.126202 50.407671) + (xy 26.075908 50.542517) (xy 26.069501 50.602116) (xy 26.0695 50.602135) (xy 26.0695 52.39787) (xy 26.069501 52.397876) + (xy 26.075908 52.457483) (xy 26.126202 52.592328) (xy 26.126206 52.592335) (xy 26.212452 52.707544) + (xy 26.212455 52.707547) (xy 26.327664 52.793793) (xy 26.327671 52.793797) (xy 26.462517 52.844091) + (xy 26.462516 52.844091) (xy 26.469444 52.844835) (xy 26.522127 52.8505) (xy 28.317872 52.850499) + (xy 28.377483 52.844091) (xy 28.512331 52.793796) (xy 28.627546 52.707546) (xy 28.713796 52.592331) + (xy 28.76281 52.460916) (xy 28.804681 52.404984) (xy 28.870145 52.380566) (xy 28.938418 52.395417) + (xy 28.966673 52.416569) (xy 29.088599 52.538495) (xy 29.185384 52.606265) (xy 29.282165 52.674032) + (xy 29.282167 52.674033) (xy 29.28217 52.674035) (xy 29.496337 52.773903) (xy 29.724592 52.835063) + (xy 29.901034 52.8505) (xy 29.959999 52.855659) (xy 29.96 52.855659) (xy 29.960001 52.855659) (xy 30.018966 52.8505) + (xy 30.195408 52.835063) (xy 30.423663 52.773903) (xy 30.63783 52.674035) (xy 30.831401 52.538495) + (xy 30.998495 52.371401) (xy 31.128425 52.185842) (xy 31.183002 52.142217) (xy 31.2525 52.135023) + (xy 31.314855 52.166546) (xy 31.331575 52.185842) (xy 31.461278 52.371078) (xy 31.461505 52.371401) + (xy 31.628599 52.538495) (xy 31.725384 52.606265) (xy 31.822165 52.674032) (xy 31.822167 52.674033) + (xy 31.82217 52.674035) (xy 32.036337 52.773903) (xy 32.264592 52.835063) (xy 32.441034 52.8505) + (xy 32.499999 52.855659) (xy 32.5 52.855659) (xy 32.500001 52.855659) (xy 32.558966 52.8505) (xy 32.735408 52.835063) + (xy 32.963663 52.773903) (xy 33.17783 52.674035) (xy 33.371401 52.538495) (xy 33.538495 52.371401) + (xy 33.66873 52.185405) (xy 33.723307 52.141781) (xy 33.792805 52.134587) (xy 33.85516 52.16611) + (xy 33.871879 52.185405) (xy 34.00189 52.371078) (xy 34.168917 52.538105) (xy 34.362421 52.6736) + (xy 34.576507 52.773429) (xy 34.576516 52.773433) (xy 34.79 52.830634) (xy 34.79 51.933012) (xy 34.847007 51.965925) + (xy 34.974174 52) (xy 35.105826 52) (xy 35.232993 51.965925) (xy 35.29 51.933012) (xy 35.29 52.830633) + (xy 35.503483 52.773433) (xy 35.503492 52.773429) (xy 35.717578 52.6736) (xy 35.911082 52.538105) + (xy 36.037819 52.411369) (xy 36.099142 52.377884) (xy 36.168834 52.382868) (xy 36.224767 52.42474) + (xy 36.249184 52.490204) (xy 36.2495 52.49905) (xy 36.2495 57.426082) (xy 36.2495 57.573918) (xy 36.2495 57.57392) + (xy 36.249499 57.57392) (xy 36.27834 57.718907) (xy 36.278343 57.718917) (xy 36.334912 57.855488) + (xy 36.334919 57.855501) (xy 36.417048 57.978415) (xy 36.417051 57.978419) (xy 36.52158 58.082948) + (xy 36.521584 58.082951) (xy 36.644498 58.16508) (xy 36.644511 58.165087) (xy 36.781082 58.221656) + (xy 36.781087 58.221658) (xy 36.781091 58.221658) (xy 36.781092 58.221659) (xy 36.926079 58.2505) + (xy 36.926082 58.2505) (xy 60.15392 58.2505) (xy 60.251462 58.231096) (xy 60.298913 58.221658) (xy 60.435495 58.165084) + (xy 60.484729 58.132186) (xy 60.558416 58.082952) (xy 70.268498 48.372867) (xy 70.329819 48.339384) + (xy 70.366983 48.337022) (xy 70.509861 48.349522) (xy 70.579999 48.355659) (xy 70.58 48.355659) + (xy 70.580001 48.355659) (xy 70.638966 48.3505) (xy 70.815408 48.335063) (xy 71.043663 48.273903) + (xy 71.25783 48.174035) (xy 71.451401 48.038495) (xy 71.618495 47.871401) (xy 71.74873 47.685405) + (xy 71.803307 47.641781) (xy 71.872805 47.634587) (xy 71.93516 47.66611) (xy 71.951879 47.685405) + (xy 72.08189 47.871078) (xy 72.248917 48.038105) (xy 72.442421 48.1736) (xy 72.656507 48.273429) + (xy 72.656516 48.273433) (xy 72.87 48.330634) (xy 72.87 47.433012) (xy 72.927007 47.465925) (xy 73.054174 47.5) + (xy 73.185826 47.5) (xy 73.312993 47.465925) (xy 73.37 47.433012) (xy 73.37 48.330633) (xy 73.583483 48.273433) + (xy 73.583492 48.273429) (xy 73.797578 48.1736) (xy 73.991082 48.038105) (xy 74.158105 47.871082) + (xy 74.2936 47.677578) (xy 74.393429 47.463492) (xy 74.393432 47.463486) (xy 74.450636 47.25) (xy 73.553012 47.25) + (xy 73.585925 47.192993) (xy 73.62 47.065826) (xy 73.62 46.934174) (xy 73.585925 46.807007) (xy 73.553012 46.75) + (xy 74.450636 46.75) (xy 74.450635 46.749999) (xy 74.393432 46.536513) (xy 74.393429 46.536507) + (xy 74.2936 46.322422) (xy 74.293599 46.32242) (xy 74.158113 46.128926) (xy 74.158108 46.12892) + (xy 73.991082 45.961894) (xy 73.797578 45.826399) (xy 73.583492 45.72657) (xy 73.583486 45.726567) + (xy 73.37 45.669364) (xy 73.37 46.566988) (xy 73.312993 46.534075) (xy 73.185826 46.5) (xy 73.054174 46.5) + (xy 72.927007 46.534075) (xy 72.87 46.566988) (xy 72.87 45.669364) (xy 72.869999 45.669364) (xy 72.656513 45.726567) + (xy 72.656507 45.72657) (xy 72.442422 45.826399) (xy 72.44242 45.8264) (xy 72.248926 45.961886) + (xy 72.24892 45.961891) (xy 72.081891 46.12892) (xy 72.08189 46.128922) (xy 71.95188 46.314595) + (xy 71.897303 46.358219) (xy 71.827804 46.365412) (xy 71.76545 46.33389) (xy 71.74873 46.314594) + (xy 71.618494 46.128597) (xy 71.451402 45.961506) (xy 71.451395 45.961501) (xy 71.418426 45.938416) + (xy 71.374518 45.907671) (xy 71.257834 45.825967) (xy 71.25783 45.825965) (xy 71.193375 45.795909) + (xy 71.043663 45.726097) (xy 71.043659 45.726096) (xy 71.043655 45.726094) (xy 70.815413 45.664938) + (xy 70.815403 45.664936) (xy 70.580001 45.644341) (xy 70.579999 45.644341) (xy 70.344596 45.664936) + (xy 70.344586 45.664938) (xy 70.116344 45.726094) (xy 70.116335 45.726098) (xy 69.902171 45.825964) + (xy 69.902169 45.825965) (xy 69.708597 45.961505) (xy 69.541505 46.128597) (xy 69.411575 46.314158) + (xy 69.356998 46.357783) (xy 69.2875 46.364977) (xy 69.225145 46.333454) (xy 69.208425 46.314158) + (xy 69.078494 46.128597) (xy 68.911402 45.961506) (xy 68.911395 45.961501) (xy 68.878426 45.938416) + (xy 68.834518 45.907671) (xy 68.717834 45.825967) (xy 68.71783 45.825965) (xy 68.653375 45.795909) + (xy 68.503663 45.726097) (xy 68.503659 45.726096) (xy 68.503655 45.726094) (xy 68.275413 45.664938) + (xy 68.275403 45.664936) (xy 68.20798 45.659037) (xy 68.142912 45.633584) (xy 68.101934 45.576992) + (xy 68.098057 45.50723) (xy 68.132511 45.446446) (xy 68.171337 45.420948) (xy 68.185495 45.415084) + (xy 68.234729 45.382186) (xy 68.308416 45.332952) (xy 70.268498 43.372867) (xy 70.329819 43.339384) + (xy 70.366983 43.337022) (xy 70.509861 43.349522) (xy 70.579999 43.355659) (xy 70.58 43.355659) + (xy 70.580001 43.355659) (xy 70.619234 43.352226) (xy 70.815408 43.335063) (xy 71.043663 43.273903) + (xy 71.25783 43.174035) (xy 71.451401 43.038495) (xy 71.618495 42.871401) (xy 71.74873 42.685405) + (xy 71.803307 42.641781) (xy 71.872805 42.634587) (xy 71.93516 42.66611) (xy 71.951879 42.685405) + (xy 72.08189 42.871078) (xy 72.248917 43.038105) (xy 72.442421 43.1736) (xy 72.656507 43.273429) + (xy 72.656516 43.273433) (xy 72.87 43.330634) (xy 72.87 42.433012) (xy 72.927007 42.465925) (xy 73.054174 42.5) + (xy 73.185826 42.5) (xy 73.312993 42.465925) (xy 73.37 42.433012) (xy 73.37 43.330633) (xy 73.583483 43.273433) + (xy 73.583492 43.273429) (xy 73.797578 43.1736) (xy 73.991082 43.038105) (xy 74.158105 42.871082) + (xy 74.2936 42.677578) (xy 74.393429 42.463492) (xy 74.393432 42.463486) (xy 74.450636 42.25) (xy 73.553012 42.25) + (xy 73.585925 42.192993) (xy 73.62 42.065826) (xy 73.62 41.934174) (xy 73.585925 41.807007) (xy 73.553012 41.75) + (xy 74.450636 41.75) (xy 74.450635 41.749999) (xy 74.393432 41.536513) (xy 74.393429 41.536507) + (xy 74.2936 41.322422) (xy 74.293599 41.32242) (xy 74.158113 41.128926) (xy 74.158108 41.12892) + (xy 73.991082 40.961894) (xy 73.797578 40.826399) (xy 73.583492 40.72657) (xy 73.583486 40.726567) + (xy 73.37 40.669364) (xy 73.37 41.566988) (xy 73.312993 41.534075) (xy 73.185826 41.5) (xy 73.054174 41.5) + (xy 72.927007 41.534075) (xy 72.87 41.566988) (xy 72.87 40.669364) (xy 72.869999 40.669364) (xy 72.656513 40.726567) + (xy 72.656507 40.72657) (xy 72.442422 40.826399) (xy 72.44242 40.8264) (xy 72.248926 40.961886) + (xy 72.24892 40.961891) (xy 72.081891 41.12892) (xy 72.08189 41.128922) (xy 71.95188 41.314595) + (xy 71.897303 41.358219) (xy 71.827804 41.365412) (xy 71.76545 41.33389) (xy 71.74873 41.314594) + (xy 71.618494 41.128597) (xy 71.451402 40.961506) (xy 71.451395 40.961501) (xy 71.435975 40.950704) + (xy 71.346248 40.887876) (xy 71.257834 40.825967) (xy 71.25783 40.825965) (xy 71.087732 40.746647) + (xy 71.043663 40.726097) (xy 71.043659 40.726096) (xy 71.043655 40.726094) (xy 70.815413 40.664938) + (xy 70.815403 40.664936) (xy 70.580001 40.644341) (xy 70.579999 40.644341) (xy 70.344596 40.664936) + (xy 70.344586 40.664938) (xy 70.116344 40.726094) (xy 70.116335 40.726098) (xy 69.902171 40.825964) + (xy 69.902169 40.825965) (xy 69.708597 40.961505) (xy 69.541505 41.128597) (xy 69.411575 41.314158) + (xy 69.356998 41.357783) (xy 69.2875 41.364977) (xy 69.225145 41.333454) (xy 69.208425 41.314158) + (xy 69.078494 41.128597) (xy 68.911402 40.961506) (xy 68.911395 40.961501) (xy 68.895975 40.950704) + (xy 68.806248 40.887876) (xy 68.717834 40.825967) (xy 68.71783 40.825965) (xy 68.547732 40.746647) + (xy 68.503663 40.726097) (xy 68.503659 40.726096) (xy 68.503655 40.726094) (xy 68.275413 40.664938) + (xy 68.275403 40.664936) (xy 68.135398 40.652687) (xy 68.118258 40.651187) (xy 68.053191 40.625735) + (xy 68.012212 40.569144) (xy 68.008334 40.499382) (xy 68.041384 40.439981) (xy 70.108498 38.372867) + (xy 70.169819 38.339384) (xy 70.206983 38.337022) (xy 70.330996 38.347872) (xy 70.419999 38.355659) + (xy 70.42 38.355659) (xy 70.420001 38.355659) (xy 70.484681 38.35) (xy 70.655408 38.335063) (xy 70.883663 38.273903) + (xy 71.09783 38.174035) (xy 71.291401 38.038495) (xy 71.458495 37.871401) (xy 71.588425 37.685842) + (xy 71.643002 37.642217) (xy 71.7125 37.635023) (xy 71.774855 37.666546) (xy 71.791575 37.685842) + (xy 71.921505 37.871401) (xy 72.088599 38.038495) (xy 72.165135 38.092086) (xy 72.282165 38.174032) + (xy 72.282167 38.174033) (xy 72.28217 38.174035) (xy 72.496337 38.273903) (xy 72.724592 38.335063) + (xy 72.895319 38.35) (xy 72.959999 38.355659) (xy 72.96 38.355659) (xy 72.960001 38.355659) (xy 73.024681 38.35) + (xy 73.195408 38.335063) (xy 73.423663 38.273903) (xy 73.63783 38.174035) (xy 73.831401 38.038495) + (xy 73.953717 37.916178) (xy 74.015036 37.882696) (xy 74.084728 37.88768) (xy 74.140662 37.929551) + (xy 74.157577 37.960528) (xy 74.206646 38.092088) (xy 74.206649 38.092093) (xy 74.292809 38.207187) + (xy 74.292812 38.20719) (xy 74.407906 38.29335) (xy 74.407913 38.293354) (xy 74.54262 38.343596) + (xy 74.542627 38.343598) (xy 74.602155 38.349999) (xy 74.602172 38.35) (xy 75.25 38.35) (xy 75.25 37.433012) + (xy 75.307007 37.465925) (xy 75.434174 37.5) (xy 75.565826 37.5) (xy 75.692993 37.465925) (xy 75.75 37.433012) + (xy 75.75 38.35) (xy 76.397828 38.35) (xy 76.397844 38.349999) (xy 76.457372 38.343598) (xy 76.457379 38.343596) + (xy 76.592086 38.293354) (xy 76.592093 38.29335) (xy 76.707187 38.20719) (xy 76.70719 38.207187) + (xy 76.79335 38.092093) (xy 76.793354 38.092086) (xy 76.843596 37.957379) (xy 76.843598 37.957372) + (xy 76.849999 37.897844) (xy 76.85 37.897827) (xy 76.85 37.25) (xy 75.933012 37.25) (xy 75.965925 37.192993) + (xy 76 37.065826) (xy 76 36.934174) (xy 75.965925 36.807007) (xy 75.933012 36.75) (xy 76.85 36.75) + (xy 76.85 36.102172) (xy 76.849999 36.102155) (xy 76.843598 36.042627) (xy 76.843596 36.04262) (xy 76.793354 35.907913) + (xy 76.79335 35.907906) (xy 76.70719 35.792812) (xy 76.707187 35.792809) (xy 76.592093 35.706649) + (xy 76.592086 35.706645) (xy 76.457379 35.656403) (xy 76.457372 35.656401) (xy 76.397844 35.65) + (xy 75.75 35.65) (xy 75.75 36.566988) (xy 75.692993 36.534075) (xy 75.565826 36.5) (xy 75.434174 36.5) + (xy 75.307007 36.534075) (xy 75.25 36.566988) (xy 75.25 35.65) (xy 74.602155 35.65) (xy 74.542627 35.656401) + (xy 74.54262 35.656403) (xy 74.407913 35.706645) (xy 74.407906 35.706649) (xy 74.292812 35.792809) + (xy 74.292809 35.792812) (xy 74.206649 35.907906) (xy 74.206645 35.907913) (xy 74.157578 36.03947) + (xy 74.115707 36.095404) (xy 74.050242 36.119821) (xy 73.981969 36.104969) (xy 73.953715 36.083819) + (xy 73.909366 36.03947) (xy 73.831401 35.961505) (xy 73.831397 35.961502) (xy 73.831396 35.961501) + (xy 73.637834 35.825967) (xy 73.63783 35.825965) (xy 73.599038 35.807876) (xy 73.423663 35.726097) + (xy 73.423659 35.726096) (xy 73.423655 35.726094) (xy 73.195413 35.664938) (xy 73.195403 35.664936) + (xy 72.960001 35.644341) (xy 72.959999 35.644341) (xy 72.724596 35.664936) (xy 72.724586 35.664938) + (xy 72.496344 35.726094) (xy 72.496335 35.726098) (xy 72.282171 35.825964) (xy 72.282169 35.825965) + (xy 72.088597 35.961505) (xy 71.921505 36.128597) (xy 71.791575 36.314158) (xy 71.736998 36.357783) + (xy 71.6675 36.364977) (xy 71.605145 36.333454) (xy 71.588425 36.314158) (xy 71.458494 36.128597) + (xy 71.291402 35.961506) (xy 71.291395 35.961501) (xy 71.279107 35.952897) (xy 71.214854 35.907906) + (xy 71.097834 35.825967) (xy 71.09783 35.825965) (xy 71.059038 35.807876) (xy 70.883663 35.726097) + (xy 70.883659 35.726096) (xy 70.883655 35.726094) (xy 70.655413 35.664938) (xy 70.655403 35.664936) + (xy 70.420001 35.644341) (xy 70.419999 35.644341) (xy 70.184596 35.664936) (xy 70.184586 35.664938) + (xy 69.956344 35.726094) (xy 69.956335 35.726098) (xy 69.742171 35.825964) (xy 69.742169 35.825965) + (xy 69.548597 35.961505) (xy 69.381505 36.128597) (xy 69.251575 36.314158) (xy 69.196998 36.357783) + (xy 69.1275 36.364977) (xy 69.065145 36.333454) (xy 69.048425 36.314158) (xy 68.918494 36.128597) + (xy 68.751402 35.961506) (xy 68.751395 35.961501) (xy 68.739107 35.952897) (xy 68.674854 35.907906) + (xy 68.557834 35.825967) (xy 68.55783 35.825965) (xy 68.519038 35.807876) (xy 68.343663 35.726097) + (xy 68.343659 35.726096) (xy 68.343655 35.726094) (xy 68.115413 35.664938) (xy 68.115403 35.664936) + (xy 67.880001 35.644341) (xy 67.879999 35.644341) (xy 67.644596 35.664936) (xy 67.644586 35.664938) + (xy 67.416344 35.726094) (xy 67.416335 35.726098) (xy 67.202171 35.825964) (xy 67.202169 35.825965) + (xy 67.008597 35.961505) (xy 66.841505 36.128597) (xy 66.711575 36.314158) (xy 66.656998 36.357783) + (xy 66.5875 36.364977) (xy 66.525145 36.333454) (xy 66.508425 36.314158) (xy 66.378494 36.128597) + (xy 66.211402 35.961506) (xy 66.211395 35.961501) (xy 66.199107 35.952897) (xy 66.134854 35.907906) + (xy 66.017834 35.825967) (xy 66.01783 35.825965) (xy 65.979038 35.807876) (xy 65.803663 35.726097) + (xy 65.803659 35.726096) (xy 65.803655 35.726094) (xy 65.575413 35.664938) (xy 65.575403 35.664936) + (xy 65.340001 35.644341) (xy 65.339999 35.644341) (xy 65.104596 35.664936) (xy 65.104586 35.664938) + (xy 64.876344 35.726094) (xy 64.876335 35.726098) (xy 64.662171 35.825964) (xy 64.662169 35.825965) + (xy 64.468597 35.961505) (xy 64.301505 36.128597) (xy 64.165965 36.322169) (xy 64.165964 36.322171) + (xy 64.066098 36.536335) (xy 64.066094 36.536344) (xy 64.004938 36.764586) (xy 64.004936 36.764596) + (xy 63.985539 36.986308) (xy 63.960086 37.051376) (xy 63.903495 37.092355) (xy 63.862011 37.0995) + (xy 60.76123 37.0995) (xy 60.694191 37.079815) (xy 60.648436 37.027011) (xy 60.638492 36.957853) + (xy 60.667517 36.894297) (xy 60.673549 36.887819) (xy 62.774549 34.786819) (xy 62.835872 34.753334) + (xy 62.86223 34.7505) (xy 66.08892 34.7505) (xy 66.190392 34.730315) (xy 66.233913 34.721658) (xy 66.370495 34.665084) + (xy 66.441457 34.617669) (xy 66.493416 34.582952) (xy 67.703498 33.372867) (xy 67.764819 33.339384) + (xy 67.801983 33.337022) (xy 67.923676 33.347669) (xy 68.014999 33.355659) (xy 68.015 33.355659) + (xy 68.015001 33.355659) (xy 68.054234 33.352226) (xy 68.250408 33.335063) (xy 68.478663 33.273903) + (xy 68.69283 33.174035) (xy 68.886401 33.038495) (xy 69.053495 32.871401) (xy 69.18373 32.685405) + (xy 69.238307 32.641781) (xy 69.307805 32.634587) (xy 69.37016 32.66611) (xy 69.386879 32.685405) + (xy 69.51689 32.871078) (xy 69.683917 33.038105) (xy 69.877421 33.1736) (xy 70.091507 33.273429) + (xy 70.091516 33.273433) (xy 70.305 33.330634) (xy 70.305 32.433012) (xy 70.362007 32.465925) (xy 70.489174 32.5) + (xy 70.620826 32.5) (xy 70.747993 32.465925) (xy 70.805 32.433012) (xy 70.805 33.330633) (xy 71.018483 33.273433) + (xy 71.018492 33.273429) (xy 71.232578 33.1736) (xy 71.426082 33.038105) (xy 71.593105 32.871082) + (xy 71.7286 32.677578) (xy 71.828429 32.463492) (xy 71.828432 32.463486) (xy 71.885636 32.25) (xy 70.988012 32.25) + (xy 71.020925 32.192993) (xy 71.055 32.065826) (xy 71.055 31.934174) (xy 71.020925 31.807007) (xy 70.988012 31.75) + (xy 71.885636 31.75) (xy 71.885635 31.749999) (xy 71.828432 31.536513) (xy 71.828429 31.536507) + (xy 71.7286 31.322422) (xy 71.728599 31.32242) (xy 71.593113 31.128926) (xy 71.593108 31.12892) + (xy 71.426082 30.961894) (xy 71.232578 30.826399) (xy 71.018492 30.72657) (xy 71.018486 30.726567) + (xy 70.805 30.669364) (xy 70.805 31.566988) (xy 70.747993 31.534075) (xy 70.620826 31.5) (xy 70.489174 31.5) + (xy 70.362007 31.534075) (xy 70.305 31.566988) (xy 70.305 30.669364) (xy 70.304999 30.669364) (xy 70.091513 30.726567) + (xy 70.091507 30.72657) (xy 69.877422 30.826399) (xy 69.87742 30.8264) (xy 69.683926 30.961886) + (xy 69.68392 30.961891) (xy 69.516891 31.12892) (xy 69.51689 31.128922) (xy 69.38688 31.314595) + (xy 69.332303 31.358219) (xy 69.262804 31.365412) (xy 69.20045 31.33389) (xy 69.18373 31.314594) + (xy 69.053494 31.128597) (xy 68.886402 30.961506) (xy 68.886395 30.961501) (xy 68.692834 30.825967) + (xy 68.69283 30.825965) (xy 68.654102 30.807906) (xy 68.478663 30.726097) (xy 68.478659 30.726096) + (xy 68.478655 30.726094) (xy 68.250413 30.664938) (xy 68.250403 30.664936) (xy 68.015001 30.644341) + (xy 68.014999 30.644341) (xy 67.779596 30.664936) (xy 67.779586 30.664938) (xy 67.551344 30.726094) + (xy 67.551335 30.726098) (xy 67.337171 30.825964) (xy 67.337169 30.825965) (xy 67.1436 30.961503) + (xy 67.021673 31.08343) (xy 66.96035 31.116914) (xy 66.890658 31.11193) (xy 66.834725 31.070058) + (xy 66.81781 31.039081) (xy 66.768797 30.907671) (xy 66.768793 30.907664) (xy 66.682547 30.792455) + (xy 66.682544 30.792452) (xy 66.567335 30.706206) (xy 66.567328 30.706202) (xy 66.432482 30.655908) + (xy 66.432483 30.655908) (xy 66.372883 30.649501) (xy 66.372881 30.6495) (xy 66.372873 30.6495) + (xy 66.372865 30.6495) (xy 65.986229 30.6495) (xy 65.91919 30.629815) (xy 65.873435 30.577011) (xy 65.863491 30.507853) + (xy 65.892516 30.444297) (xy 65.898548 30.437819) (xy 67.038645 29.297721) (xy 67.509491 28.826874) + (xy 67.570812 28.793391) (xy 67.629259 28.794781) (xy 67.779592 28.835063) (xy 67.956034 28.8505) + (xy 68.014999 28.855659) (xy 68.015 28.855659) (xy 68.015001 28.855659) (xy 68.073966 28.8505) (xy 68.250408 28.835063) + (xy 68.478663 28.773903) (xy 68.69283 28.674035) (xy 68.886401 28.538495) (xy 69.053495 28.371401) + (xy 69.18373 28.185405) (xy 69.238307 28.141781) (xy 69.307805 28.134587) (xy 69.37016 28.16611) + (xy 69.386879 28.185405) (xy 69.51689 28.371078) (xy 69.683917 28.538105) (xy 69.877421 28.6736) + (xy 70.091507 28.773429) (xy 70.091516 28.773433) (xy 70.305 28.830634) (xy 70.305 27.933012) (xy 70.362007 27.965925) + (xy 70.489174 28) (xy 70.620826 28) (xy 70.747993 27.965925) (xy 70.805 27.933012) (xy 70.805 28.830633) + (xy 71.018483 28.773433) (xy 71.018492 28.773429) (xy 71.232578 28.6736) (xy 71.426082 28.538105) + (xy 71.593105 28.371082) (xy 71.7286 28.177578) (xy 71.828429 27.963492) (xy 71.828432 27.963486) + (xy 71.885636 27.75) (xy 70.988012 27.75) (xy 71.020925 27.692993) (xy 71.055 27.565826) (xy 71.055 27.434174) + (xy 71.020925 27.307007) (xy 70.988012 27.25) (xy 71.885636 27.25) (xy 71.885635 27.249999) (xy 71.828432 27.036513) + (xy 71.828429 27.036507) (xy 71.7286 26.822422) (xy 71.728599 26.82242) (xy 71.593113 26.628926) + (xy 71.593108 26.62892) (xy 71.426082 26.461894) (xy 71.232578 26.326399) (xy 71.018492 26.22657) + (xy 71.018486 26.226567) (xy 70.805 26.169364) (xy 70.805 27.066988) (xy 70.747993 27.034075) (xy 70.620826 27) + (xy 70.489174 27) (xy 70.362007 27.034075) (xy 70.305 27.066988) (xy 70.305 26.169364) (xy 70.304999 26.169364) + (xy 70.091513 26.226567) (xy 70.091507 26.22657) (xy 69.877422 26.326399) (xy 69.87742 26.3264) + (xy 69.683926 26.461886) (xy 69.68392 26.461891) (xy 69.516891 26.62892) (xy 69.51689 26.628922) + (xy 69.38688 26.814595) (xy 69.332303 26.858219) (xy 69.262804 26.865412) (xy 69.20045 26.83389) + (xy 69.18373 26.814594) (xy 69.053494 26.628597) (xy 68.886402 26.461506) (xy 68.886395 26.461501) + (xy 68.871572 26.451122) (xy 68.809518 26.407671) (xy 68.692834 26.325967) (xy 68.69283 26.325965) + (xy 68.692828 26.325964) (xy 68.478663 26.226097) (xy 68.478659 26.226096) (xy 68.478655 26.226094) + (xy 68.250413 26.164938) (xy 68.250403 26.164936) (xy 68.015001 26.144341) (xy 68.014999 26.144341) + (xy 67.779596 26.164936) (xy 67.779586 26.164938) (xy 67.551344 26.226094) (xy 67.551335 26.226098) + (xy 67.337171 26.325964) (xy 67.337169 26.325965) (xy 67.1436 26.461503) (xy 67.021673 26.58343) + (xy 66.96035 26.616914) (xy 66.890658 26.61193) (xy 66.834725 26.570058) (xy 66.81781 26.539081) + (xy 66.768797 26.407671) (xy 66.768793 26.407664) (xy 66.682547 26.292455) (xy 66.682544 26.292452) + (xy 66.567335 26.206206) (xy 66.567328 26.206202) (xy 66.432482 26.155908) (xy 66.432483 26.155908) + (xy 66.372883 26.149501) (xy 66.372881 26.1495) (xy 66.372873 26.1495) (xy 66.372865 26.1495) (xy 66.3495 26.1495) + (xy 66.282461 26.129815) (xy 66.236706 26.077011) (xy 66.2255 26.0255) (xy 66.2255 21.21181) (xy 66.227883 21.187618) + (xy 66.2505 21.07392) (xy 66.2505 20.92608) (xy 66.221658 20.781089) (xy 66.221657 20.781085) (xy 66.206506 20.744506) + (xy 66.165087 20.644511) (xy 66.16508 20.644498) (xy 66.082951 20.521584) (xy 66.082948 20.52158) + (xy 65.978419 20.417051) (xy 65.978415 20.417048) (xy 65.855501 20.334919) (xy 65.855488 20.334912) + (xy 65.718917 20.278343) (xy 65.718907 20.27834) (xy 65.57392 20.2495) (xy 65.573918 20.2495) (xy 38.124499 20.2495) + (xy 38.05746 20.229815) (xy 38.011705 20.177011) (xy 38.000499 20.1255) (xy 38.000499 19.974998) + (xy 38.000498 19.974981) (xy 37.989999 19.872203) (xy 37.989998 19.8722) (xy 37.934814 19.705666) + (xy 37.842712 19.556344) (xy 37.718656 19.432288) (xy 37.569334 19.340186) (xy 37.402797 19.285001) + (xy 37.402795 19.285) (xy 37.30001 19.2745) (xy 36.699998 19.2745) (xy 36.69998 19.274501) (xy 36.597203 19.285) + (xy 36.5972 19.285001) (xy 36.430668 19.340185) (xy 36.430663 19.340187) (xy 36.281342 19.432289) + (xy 36.157288 19.556343) (xy 36.157283 19.556349) (xy 36.155241 19.559661) (xy 36.153247 19.561453) + (xy 36.152807 19.562011) (xy 36.152711 19.561935) (xy 36.103291 19.606383) (xy 36.034328 19.617602) + (xy 35.970247 19.589755) (xy 35.944168 19.559656) (xy 35.942319 19.556659) (xy 35.942316 19.556655) + (xy 35.818345 19.432684) (xy 35.669124 19.340643) (xy 35.669119 19.340641) (xy 35.502697 19.285494) + (xy 35.50269 19.285493) (xy 35.399986 19.275) (xy 35.35 19.275) (xy 35.35 21.724999) (xy 35.399972 21.724999) + (xy 35.399986 21.724998) (xy 35.502695 21.714506) (xy 35.586495 21.686737) (xy 35.656324 21.684335) + (xy 35.716366 21.720066) (xy 35.747559 21.782587) (xy 35.7495 21.804443) (xy 35.7495 23.537529) + (xy 35.729815 23.604568) (xy 35.677011 23.650323) (xy 35.659613 23.656744) (xy 35.626956 23.666088) + (xy 35.446591 23.760303) (xy 35.412615 23.788006) (xy 35.348218 23.815114) (xy 35.286805 23.806463) + (xy 35.218917 23.778343) (xy 35.218907 23.77834) (xy 35.07392 23.7495) (xy 35.073918 23.7495) (xy 32.5745 23.7495) + (xy 32.507461 23.729815) (xy 32.461706 23.677011) (xy 32.4505 23.6255) (xy 32.4505 21.836433) (xy 32.470185 21.769394) + (xy 32.522989 21.723639) (xy 32.590558 21.713923) (xy 32.590569 21.713818) (xy 32.590991 21.713861) + (xy 32.592147 21.713695) (xy 32.595849 21.714357) (xy 32.700019 21.724999) (xy 32.749999 21.724998) + (xy 32.75 21.724998) (xy 32.75 19.275) (xy 33.25 19.275) (xy 33.25 21.724999) (xy 33.299972 21.724999) + (xy 33.299986 21.724998) (xy 33.402697 21.714505) (xy 33.569119 21.659358) (xy 33.569124 21.659356) + (xy 33.718345 21.567315) (xy 33.842315 21.443345) (xy 33.934356 21.294124) (xy 33.937408 21.287579) + (xy 33.940255 21.288906) (xy 33.971914 21.243027) (xy 34.036387 21.216102) (xy 34.105182 21.228309) + (xy 34.156457 21.275771) (xy 34.161997 21.287856) (xy 34.162592 21.287579) (xy 34.165643 21.294124) + (xy 34.257684 21.443345) (xy 34.381654 21.567315) (xy 34.530875 21.659356) (xy 34.53088 21.659358) + (xy 34.697302 21.714505) (xy 34.697309 21.714506) (xy 34.800019 21.724999) (xy 34.849999 21.724998) + (xy 34.85 21.724998) (xy 34.85 19.275) (xy 34.849999 19.274999) (xy 34.800029 19.275) (xy 34.800011 19.275001) + (xy 34.697302 19.285494) (xy 34.53088 19.340641) (xy 34.530875 19.340643) (xy 34.381654 19.432684) + (xy 34.257684 19.556654) (xy 34.165643 19.705875) (xy 34.162592 19.712421) (xy 34.15978 19.711109) + (xy 34.127901 19.757121) (xy 34.063376 19.783922) (xy 33.994605 19.771585) (xy 33.943421 19.724024) + (xy 33.937996 19.712146) (xy 33.937408 19.712421) (xy 33.934356 19.705875) (xy 33.842315 19.556654) + (xy 33.718345 19.432684) (xy 33.569124 19.340643) (xy 33.569119 19.340641) (xy 33.402697 19.285494) + (xy 33.40269 19.285493) (xy 33.299986 19.275) (xy 33.25 19.275) (xy 32.75 19.275) (xy 32.749999 19.274999) + (xy 32.700029 19.275) (xy 32.700011 19.275001) (xy 32.597302 19.285494) (xy 32.43088 19.340641) + (xy 32.430875 19.340643) (xy 32.281654 19.432684) (xy 32.157683 19.556655) (xy 32.157679 19.55666) + (xy 32.155826 19.559665) (xy 32.154018 19.56129) (xy 32.153202 19.562323) (xy 32.153025 19.562183) + (xy 32.103874 19.606385) (xy 32.034911 19.617601) (xy 31.970831 19.589752) (xy 31.944753 19.559653) + (xy 31.944737 19.559628) (xy 31.942712 19.556344) (xy 31.818656 19.432288) (xy 31.669334 19.340186) + (xy 31.502797 19.285001) (xy 31.502795 19.285) (xy 31.40001 19.2745) (xy 30.799998 19.2745) (xy 30.79998 19.274501) + (xy 30.697203 19.285) (xy 30.6972 19.285001) (xy 30.530668 19.340185) (xy 30.530663 19.340187) (xy 30.381342 19.432289) + (xy 30.257289 19.556342) (xy 30.165187 19.705663) (xy 30.165185 19.705668) (xy 30.139254 19.783922) + (xy 30.110001 19.872203) (xy 30.110001 19.872204) (xy 30.11 19.872204) (xy 30.0995 19.974983) (xy 30.0995 21.025001) + (xy 30.099501 21.025019) (xy 30.11 21.127796) (xy 30.110001 21.127799) (xy 30.159035 21.275771) + (xy 30.165186 21.294334) (xy 30.257288 21.443656) (xy 30.381344 21.567712) (xy 30.530666 21.659814) + (xy 30.697203 21.714999) (xy 30.799991 21.7255) (xy 30.825498 21.725499) (xy 30.892536 21.745181) + (xy 30.938293 21.797984) (xy 30.9495 21.849499) (xy 30.9495 22.326) (xy 30.929815 22.393039) (xy 30.877011 22.438794) + (xy 30.8255 22.45) (xy 30.45 22.45) (xy 30.45 23.826) (xy 30.430315 23.893039) (xy 30.377511 23.938794) + (xy 30.326 23.95) (xy 28.7 23.95) (xy 28.7 24.151096) (xy 28.702897 24.193824) (xy 28.748831 24.378523) + (xy 28.83339 24.549022) (xy 28.833392 24.549025) (xy 28.95263 24.697364) (xy 29.021884 24.753031) + (xy 29.061803 24.810375) (xy 29.064383 24.880197) (xy 29.028805 24.940329) (xy 29.021885 24.946326) + (xy 28.952276 25.00228) (xy 28.832969 25.150704) (xy 28.832967 25.150707) (xy 28.74836 25.321302) + (xy 28.7024 25.506107) (xy 28.6995 25.548879) (xy 28.6995 26.451122) (xy 28.699501 26.451125) (xy 28.702399 26.493886) + (xy 28.702399 26.493887) (xy 28.74836 26.678696) (xy 28.832967 26.849292) (xy 28.832969 26.849295) + (xy 28.952277 26.997721) (xy 28.952278 26.997722) (xy 29.021486 27.053353) (xy 29.061405 27.110696) + (xy 29.063985 27.180518) (xy 29.028406 27.240651) (xy 29.021486 27.246647) (xy 28.952278 27.302277) + (xy 28.952277 27.302278) (xy 28.832969 27.450704) (xy 28.832967 27.450708) (xy 28.806453 27.504167) + (xy 28.759031 27.555479) (xy 28.719558 27.570688) (xy 28.71158 27.572275) (xy 28.641989 27.566048) + (xy 28.599707 27.538339) (xy 28.261818 27.20045) (xy 28.228333 27.139127) (xy 28.225499 27.112769) + (xy 28.225499 26.699998) (xy 28.225498 26.699981) (xy 28.214999 26.597203) (xy 28.214998 26.5972) + (xy 28.180763 26.493886) (xy 28.159814 26.430666) (xy 28.067712 26.281344) (xy 27.943656 26.157288) + (xy 27.940342 26.155243) (xy 27.938546 26.153248) (xy 27.937989 26.152807) (xy 27.938064 26.152711) + (xy 27.893618 26.103297) (xy 27.882397 26.034334) (xy 27.91024 25.970252) (xy 27.940348 25.944165) + (xy 27.943342 25.942318) (xy 28.067315 25.818345) (xy 28.159356 25.669124) (xy 28.159358 25.669119) + (xy 28.214505 25.502697) (xy 28.214506 25.50269) (xy 28.224999 25.399986) (xy 28.225 25.399973) + (xy 28.225 25.35) (xy 25.775001 25.35) (xy 25.775001 25.399986) (xy 25.785494 25.502697) (xy 25.840641 25.669119) + (xy 25.840643 25.669124) (xy 25.932684 25.818345) (xy 26.056655 25.942316) (xy 26.056659 25.942319) + (xy 26.059656 25.944168) (xy 26.061279 25.945972) (xy 26.062323 25.946798) (xy 26.062181 25.946976) + (xy 26.106381 25.996116) (xy 26.117602 26.065079) (xy 26.089759 26.129161) (xy 26.059661 26.155241) + (xy 26.056349 26.157283) (xy 26.056343 26.157288) (xy 25.932289 26.281342) (xy 25.840187 26.430663) + (xy 25.840185 26.430668) (xy 25.829839 26.461891) (xy 25.785001 26.597203) (xy 25.785001 26.597204) + (xy 25.785 26.597204) (xy 25.7745 26.699983) (xy 25.7745 27.300001) (xy 25.774501 27.300019) (xy 25.785 27.402796) + (xy 25.785001 27.402799) (xy 25.829915 27.538339) (xy 25.840186 27.569334) (xy 25.932288 27.718656) + (xy 26.056344 27.842712) (xy 26.205666 27.934814) (xy 26.372203 27.989999) (xy 26.474991 28.0005) + (xy 26.887769 28.000499) (xy 26.954808 28.020183) (xy 26.97545 28.036818) (xy 27.813181 28.874549) + (xy 27.846666 28.935872) (xy 27.8495 28.96223) (xy 27.8495 30.91277) (xy 27.829815 30.979809) (xy 27.813181 31.000451) + (xy 27.757289 31.056342) (xy 27.665187 31.205663) (xy 27.665185 31.205668) (xy 27.665115 31.20588) + (xy 27.610001 31.372203) (xy 27.610001 31.372204) (xy 27.61 31.372204) (xy 27.5995 31.474983) (xy 27.5995 32.525001) + (xy 27.599501 32.525019) (xy 27.61 32.627796) (xy 27.610001 32.627799) (xy 27.633 32.697203) (xy 27.665186 32.794334) + (xy 27.757096 32.943345) (xy 27.757289 32.943657) (xy 27.813181 32.999549) (xy 27.846666 33.060872) + (xy 27.8495 33.08723) (xy 27.8495 33.41277) (xy 27.829815 33.479809) (xy 27.813181 33.500451) (xy 27.757289 33.556342) + (xy 27.665187 33.705663) (xy 27.665185 33.705668) (xy 27.665115 33.70588) (xy 27.610001 33.872203) + (xy 27.610001 33.872204) (xy 27.61 33.872204) (xy 27.5995 33.974983) (xy 27.5995 34.387769) (xy 27.579815 34.454808) + (xy 27.563181 34.47545) (xy 26.192045 35.846586) (xy 26.161069 35.892949) (xy 26.161067 35.892952) + (xy 26.109919 35.969499) (xy 26.109912 35.969511) (xy 26.053343 36.106082) (xy 26.05334 36.106092) + (xy 26.0245 36.251079) (xy 26.0245 36.251082) (xy 26.0245 40.848918) (xy 26.0245 40.84892) (xy 26.024499 40.84892) + (xy 26.05334 40.993907) (xy 26.053343 40.993917) (xy 26.109913 41.13049) (xy 26.109914 41.130492) + (xy 26.133028 41.165084) (xy 26.133029 41.165086) (xy 26.192045 41.253414) (xy 26.192049 41.253418) + (xy 26.738181 41.799548) (xy 26.771666 41.860871) (xy 26.7745 41.887229) (xy 26.7745 42.300001) + (xy 26.774501 42.300019) (xy 26.785 42.402796) (xy 26.785001 42.402799) (xy 26.817211 42.5) (xy 26.840186 42.569334) + (xy 26.932288 42.718656) (xy 27.056344 42.842712) (xy 27.190597 42.925519) (xy 27.237321 42.977465) + (xy 27.2495 43.031057) (xy 27.2495 45.0255) (xy 27.229815 45.092539) (xy 27.177011 45.138294) (xy 27.1255 45.1495) + (xy 26.062129 45.1495) (xy 26.062123 45.149501) (xy 26.002516 45.155908) (xy 25.867671 45.206202) + (xy 25.867664 45.206206) (xy 25.752455 45.292452) (xy 25.752452 45.292455) (xy 25.666206 45.407664) + (xy 25.666202 45.407671) (xy 25.615908 45.542517) (xy 25.609501 45.602116) (xy 25.6095 45.602135) + (xy 20 45.602135) (xy 20 24.800013) (xy 25.775 24.800013) (xy 25.775 24.85) (xy 26.75 24.85) (xy 27.25 24.85) + (xy 28.224999 24.85) (xy 28.224999 24.800028) (xy 28.224998 24.800013) (xy 28.214505 24.697302) + (xy 28.159358 24.53088) (xy 28.159356 24.530875) (xy 28.067315 24.381654) (xy 27.943345 24.257684) + (xy 27.794124 24.165643) (xy 27.794119 24.165641) (xy 27.627697 24.110494) (xy 27.62769 24.110493) + (xy 27.524986 24.1) (xy 27.25 24.1) (xy 27.25 24.85) (xy 26.75 24.85) (xy 26.75 24.1) (xy 26.475029 24.1) + (xy 26.475012 24.100001) (xy 26.372302 24.110494) (xy 26.20588 24.165641) (xy 26.205875 24.165643) + (xy 26.056654 24.257684) (xy 25.932684 24.381654) (xy 25.840643 24.530875) (xy 25.840641 24.53088) + (xy 25.785494 24.697302) (xy 25.785493 24.697309) (xy 25.775 24.800013) (xy 20 24.800013) (xy 20 23.248903) + (xy 28.7 23.248903) (xy 28.7 23.45) (xy 29.95 23.45) (xy 29.95 22.45) (xy 29.498903 22.45) (xy 29.456175 22.452897) + (xy 29.271476 22.498831) (xy 29.100977 22.58339) (xy 29.100974 22.583392) (xy 28.952633 22.702632) + (xy 28.952632 22.702633) (xy 28.833392 22.850974) (xy 28.83339 22.850977) (xy 28.748831 23.021476) + (xy 28.702897 23.206175) (xy 28.7 23.248903) (xy 20 23.248903) (xy 20 15.124) (xy 20.019685 15.056961) + (xy 20.072489 15.011206) (xy 20.124 15) (xy 79.876 15) + ) + ) + ) +) diff --git a/Schematics/_autosave-Schematics.kicad_sch b/Schematics/_autosave-Schematics.kicad_sch new file mode 100644 index 0000000..66f837f --- /dev/null +++ b/Schematics/_autosave-Schematics.kicad_sch @@ -0,0 +1,6548 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "e6fda718-069e-4009-9f9c-45233c83d734") + (paper "A4") + (lib_symbols + (symbol "Connector_Generic:Conn_01x02" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x02" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x02_1_1" + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 1.27) + (end 1.27 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x03" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x03" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x03_1_1" + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 3.81) + (end 1.27 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x04" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x04" + (at 0 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x04_1_1" + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 3.81) + (end 1.27 -6.35) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x05" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x05" + (at 0 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x05_1_1" + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 5.207) + (end 0 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 6.35) + (end 1.27 -6.35) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at -5.08 5.08 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C_Polarized" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C_Polarized" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "CP_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_Polarized_0_1" + (rectangle + (start -2.286 0.508) + (end 2.286 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.778 2.286) (xy -0.762 2.286) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 2.794) (xy -1.27 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 2.286 -0.508) + (end -2.286 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "C_Polarized_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "PCM_Espressif:ESP32-WROVER-E" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -30.48 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "ESP32-WROVER-E" + (at -30.48 22.86 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_Espressif:ESP32-WROVER-E" + (at 2.54 -33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-wrover-e_esp32-wrover-ie_datasheet_en.pdf" + (at 2.54 -35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "ESP32-WROVER-E and ESP32-WROVER-IE are two powerful, generic WiFi-BT-BLE MCU modules that target a wide variety of applications, ranging from low-power sensor networks to the most demanding tasks, such as voice encoding, music streaming and MP3 decoding. ESP32-WROVER-E comes with a PCB antenna, and ESP32-WROVER-IE with an IPEX antenna. They both featurea 4 MB external SPI flash and an additional 8 MB SPI Pseudo static RAM (PSRAM)." + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "ESP32" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "ESP32-WROVER-E_0_1" + (rectangle + (start -33.02 20.32) + (end 33.02 -20.32) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "ESP32-WROVER-E_1_1" + (text "ESP32-­WROVER" + (at 7.62 0 0) + (effects + (font + (size 2.54 2.54) + ) + ) + ) + (pin power_in line + (at 0 -22.86 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -12.7 180) + (length 2.54) + (name "DAC_1/ADC2_CH8/GPIO25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -15.24 180) + (length 2.54) + (name "DAC_2/ADC2_CH9/GPIO26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -17.78 180) + (length 2.54) + (name "ADC2_CH7/GPIO27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 0 0) + (length 2.54) + (name "MTMS/GPIO14/ADC2_CH6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 5.08 0) + (length 2.54) + (name "MTDI/GPIO12/ADC2_CH5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 2.54 0) + (length 2.54) + (name "MTCK/GPIO13/ADC2_CH4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 22.86 270) + (length 2.54) + (name "3V3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 -2.54 0) + (length 2.54) + (name "MTDO/GPIO15/ADC2_CH3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 7.62 180) + (length 2.54) + (name "ADC2_CH2/GPIO2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 10.16 180) + (length 2.54) + (name "GPIO0/BOOT/ADC2_CH1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 5.08 180) + (length 2.54) + (name "ADC2_CH0/GPIO4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 2.54 180) + (length 2.54) + (name "GPIO5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -35.56 17.78 0) + (length 2.54) + (name "EN/CHIP_PU" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 0 180) + (length 2.54) + (name "GPIO18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -2.54 180) + (length 2.54) + (name "GPIO19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -5.08 180) + (length 2.54) + (name "GPIO21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 15.24 180) + (length 2.54) + (name "U0RXD/GPIO3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 17.78 180) + (length 2.54) + (name "U0TXD/GPIO1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -7.62 180) + (length 2.54) + (name "GPIO22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 35.56 -10.16 180) + (length 2.54) + (name "GPIO23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 -22.86 90) + (length 2.54) + (name "GND_THERMAL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -35.56 -12.7 0) + (length 2.54) + (name "SENSOR_VP/GPIO36/ADC1_CH0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -35.56 -15.24 0) + (length 2.54) + (name "SENSOR_VN/GPIO39/ADC1_CH3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -35.56 -7.62 0) + (length 2.54) + (name "GPIO34/ADC1_CH6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -35.56 -10.16 0) + (length 2.54) + (name "GPIO35/ADC1_CH7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 12.7 0) + (length 2.54) + (name "32K_XP/GPIO32/ADC1_CH4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -35.56 10.16 0) + (length 2.54) + (name "32K_XN/GPIO33/ADC1_CH5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Regulator_Linear:AMS1117-3.3" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -3.81 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AMS1117-3.3" + (at 0 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 2.54 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "linear regulator ldo fixed positive" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?223*TabPin2*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AMS1117-3.3_0_1" + (rectangle + (start -5.08 -5.08) + (end 5.08 1.905) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "AMS1117-3.3_1_1" + (pin power_in line + (at 0 -7.62 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 7.62 0 180) + (length 2.54) + (name "VO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -7.62 0 0) + (length 2.54) + (name "VI" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Regulator_Linear:AMS1117-5.0" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -3.81 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AMS1117-5.0" + (at 0 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 2.54 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 5.0V fixed output, SOT-223" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "linear regulator ldo fixed positive" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?223*TabPin2*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AMS1117-5.0_0_1" + (rectangle + (start -5.08 -5.08) + (end 5.08 1.905) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "AMS1117-5.0_1_1" + (pin power_in line + (at 0 -7.62 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 7.62 0 180) + (length 2.54) + (name "VO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -7.62 0 0) + (length 2.54) + (name "VI" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+3.3V" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+5V" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+5V_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:VCC" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VCC\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "VCC_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "VCC_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 72.39 81.28) + (diameter 0) + (color 0 0 0 0) + (uuid "02d4a41c-3418-482a-98d8-4a48121ef40b") + ) + (junction + (at 92.71 125.73) + (diameter 0) + (color 0 0 0 0) + (uuid "0855233e-17dc-40e9-88e5-f4293803037b") + ) + (junction + (at 64.77 149.86) + (diameter 0) + (color 0 0 0 0) + (uuid "0ac01c03-d8d9-4fa4-b797-c423b3828cbd") + ) + (junction + (at 93.98 157.48) + (diameter 0) + (color 0 0 0 0) + (uuid "0d2efe16-9976-44ba-bb39-2e66301c80f4") + ) + (junction + (at 107.95 96.52) + (diameter 0) + (color 0 0 0 0) + (uuid "19366a19-2b2c-4cb1-a54c-9055d313ee57") + ) + (junction + (at 72.39 83.82) + (diameter 0) + (color 0 0 0 0) + (uuid "202811b0-cfe6-447b-99c1-cb52960bd4ad") + ) + (junction + (at 104.14 149.86) + (diameter 0) + (color 0 0 0 0) + (uuid "2540262e-347d-4b0a-9cf5-e65c2621996d") + ) + (junction + (at 72.39 88.9) + (diameter 0) + (color 0 0 0 0) + (uuid "49ae84e2-040d-4fd2-8679-fda15f87144e") + ) + (junction + (at 71.12 149.86) + (diameter 0) + (color 0 0 0 0) + (uuid "765e68e7-0122-48b3-ba26-b89fd43f6b2b") + ) + (junction + (at 69.85 133.35) + (diameter 0) + (color 0 0 0 0) + (uuid "9f8893bc-1556-4c1f-a99d-6ea5d8b13df3") + ) + (junction + (at 93.98 149.86) + (diameter 0) + (color 0 0 0 0) + (uuid "a00f5f48-3fa2-4c8e-8831-751649e0330b") + ) + (junction + (at 97.79 125.73) + (diameter 0) + (color 0 0 0 0) + (uuid "a29a9e29-f14c-4285-9e80-a1bf7c32ee64") + ) + (junction + (at 92.71 133.35) + (diameter 0) + (color 0 0 0 0) + (uuid "a3522a42-6a46-45f5-864f-a62618d84bb7") + ) + (junction + (at 59.69 125.73) + (diameter 0) + (color 0 0 0 0) + (uuid "aae94ae2-f4d1-4538-8e06-3c439b48fcb3") + ) + (junction + (at 72.39 60.96) + (diameter 0) + (color 0 0 0 0) + (uuid "ad549597-1c41-4c4d-95fb-ce8c2869f3b5") + ) + (junction + (at 83.82 157.48) + (diameter 0) + (color 0 0 0 0) + (uuid "c44de8a8-baeb-495f-b09f-39a82bbdc1f8") + ) + (junction + (at 83.82 133.35) + (diameter 0) + (color 0 0 0 0) + (uuid "ceb34c7c-ba47-49b2-84a9-0b32eed270b6") + ) + (junction + (at 71.12 157.48) + (diameter 0) + (color 0 0 0 0) + (uuid "d49208ad-e2f4-437b-b592-fbd53ffa2743") + ) + (junction + (at 72.39 86.36) + (diameter 0) + (color 0 0 0 0) + (uuid "f953c3e6-64d7-4840-8134-accc240893b1") + ) + (junction + (at 69.85 125.73) + (diameter 0) + (color 0 0 0 0) + (uuid "fea54ea6-45d1-463f-83bc-9874b1f0a21d") + ) + (wire + (pts + (xy 191.77 78.74) (xy 203.2 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "022746c9-1f22-44c6-9ffc-ebb9994770bd") + ) + (wire + (pts + (xy 72.39 88.9) (xy 72.39 91.44) + ) + (stroke + (width 0) + (type default) + ) + (uuid "034eea5a-71da-42c5-a6b7-aa2ffd219244") + ) + (wire + (pts + (xy 69.85 55.88) (xy 69.85 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "07e6270c-b2bd-47d3-a52e-439df73cb742") + ) + (wire + (pts + (xy 72.39 81.28) (xy 72.39 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0cfbe115-3621-47dd-af96-54e9ad01b338") + ) + (wire + (pts + (xy 83.82 157.48) (xy 93.98 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0f938032-1f9c-47e6-9101-485fdbc302b2") + ) + (wire + (pts + (xy 92.71 133.35) (xy 106.68 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1179514a-0e1f-417d-ab88-95419d67fdb3") + ) + (wire + (pts + (xy 93.98 149.86) (xy 104.14 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "263a742c-728d-4bab-a426-a2c0485fff17") + ) + (wire + (pts + (xy 68.58 60.96) (xy 72.39 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "286519d5-7656-4d94-a0a7-2591b54a6b0e") + ) + (wire + (pts + (xy 59.69 147.32) (xy 59.69 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "30a67723-d908-449b-80fe-5056a7f2831f") + ) + (wire + (pts + (xy 83.82 161.29) (xy 83.82 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "393b8439-5632-41a6-98fe-a69a016f4896") + ) + (wire + (pts + (xy 71.12 157.48) (xy 83.82 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "395d925f-ca76-4efc-a837-fbec6aec64cc") + ) + (wire + (pts + (xy 143.51 63.5) (xy 160.02 63.5) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3b369d5f-999d-4a8e-8483-4833371d93ce") + ) + (wire + (pts + (xy 189.23 135.89) (xy 203.2 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3dea82da-f122-4907-8292-1c159a889a2f") + ) + (wire + (pts + (xy 191.77 76.2) (xy 203.2 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4075fe93-6d17-49c8-8034-4ea8b17bb33a") + ) + (wire + (pts + (xy 199.39 45.72) (xy 203.2 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4249b038-143c-40fd-88d1-e3f56667776f") + ) + (wire + (pts + (xy 114.3 149.86) (xy 114.3 148.59) + ) + (stroke + (width 0) + (type default) + ) + (uuid "43241c14-5af2-4155-a4e6-4118e2a65537") + ) + (wire + (pts + (xy 143.51 86.36) (xy 147.32 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "47a360d4-1cfd-444b-ab34-de8f26512ff6") + ) + (wire + (pts + (xy 92.71 125.73) (xy 97.79 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "493fa861-a5fb-40a5-ad14-8cf6d95cf491") + ) + (wire + (pts + (xy 59.69 121.92) (xy 59.69 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4a0544b3-cb2c-412c-b4c9-5b67478a26bd") + ) + (wire + (pts + (xy 59.69 71.12) (xy 72.39 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4b658360-3ab6-4887-9885-63b951f8d800") + ) + (wire + (pts + (xy 143.51 88.9) (xy 147.32 88.9) + ) + (stroke + (width 0) + (type default) + ) + (uuid "55df7756-e315-45a3-8290-33339e414a8d") + ) + (wire + (pts + (xy 69.85 125.73) (xy 76.2 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5aec2d96-81cc-4332-9dac-cda7447cc04c") + ) + (wire + (pts + (xy 143.51 78.74) (xy 147.32 78.74) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5af8ae40-022b-4ee0-b2e2-0883c6e2361a") + ) + (wire + (pts + (xy 143.51 76.2) (xy 147.32 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5e807d0c-36d4-4f6e-b52d-6e8040ccf904") + ) + (wire + (pts + (xy 193.04 106.68) (xy 203.2 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5fb0bf02-b1c1-41af-bdeb-c7ad22e146cf") + ) + (wire + (pts + (xy 143.51 58.42) (xy 148.59 58.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "62373c7a-7ffa-4862-8481-b3d5c2a8c760") + ) + (wire + (pts + (xy 59.69 125.73) (xy 69.85 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "627e7c64-5656-47b6-a6db-324fb8e19aee") + ) + (wire + (pts + (xy 106.68 125.73) (xy 97.79 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "650ca792-1765-42b7-a7ed-aae65b9be67e") + ) + (wire + (pts + (xy 199.39 62.23) (xy 203.2 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "656a8f07-790a-4c3d-91e0-5e2395754fad") + ) + (wire + (pts + (xy 199.39 59.69) (xy 203.2 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "65f737dd-046f-4f9a-bfaf-b05168578a39") + ) + (wire + (pts + (xy 91.44 149.86) (xy 93.98 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "664ce0ee-3f5a-425a-9a3d-e38c4330bc71") + ) + (wire + (pts + (xy 143.51 81.28) (xy 147.32 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "68283e7d-9647-48f2-ba8b-e9023315bf15") + ) + (wire + (pts + (xy 69.85 133.35) (xy 83.82 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6c29b56d-cfdf-4faa-9f1c-22a103a4df3b") + ) + (wire + (pts + (xy 64.77 149.86) (xy 71.12 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6c8d7712-201c-40b9-b15b-67da274df47d") + ) + (wire + (pts + (xy 143.51 68.58) (xy 147.32 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6eee89ee-0f55-4f10-a77b-c7f9a2008d5f") + ) + (wire + (pts + (xy 72.39 76.2) (xy 72.39 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6f2a67ed-df4b-4878-b555-5ba6adef4ded") + ) + (wire + (pts + (xy 64.77 157.48) (xy 71.12 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "704ec63c-91d6-48fd-bd17-48f69868f6ef") + ) + (wire + (pts + (xy 83.82 133.35) (xy 83.82 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "71fba47d-7043-4242-aa04-6bf9c1a6af75") + ) + (wire + (pts + (xy 59.69 68.58) (xy 72.39 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "74552a21-15bc-4d1b-ab81-e96d6624e81e") + ) + (wire + (pts + (xy 143.51 55.88) (xy 148.59 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "750375cb-6686-4d81-ab70-2da0d67e974d") + ) + (wire + (pts + (xy 199.39 48.26) (xy 203.2 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "751bf6ed-26f8-48c3-bcbf-3f07784f1d02") + ) + (wire + (pts + (xy 189.23 133.35) (xy 203.2 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "89475352-93f6-45d5-8d3a-03cae25868c0") + ) + (wire + (pts + (xy 97.79 123.19) (xy 97.79 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "89e73e6f-9db4-45d1-8664-e59adc843fbc") + ) + (wire + (pts + (xy 189.23 91.44) (xy 203.2 91.44) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8ab43a16-49b6-4a07-b1ad-f669fe38ba9c") + ) + (wire + (pts + (xy 72.39 83.82) (xy 72.39 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8ece76f4-53d2-49c1-ad07-7641c0ee31f2") + ) + (wire + (pts + (xy 193.04 69.85) (xy 203.2 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9764f675-40fa-47bc-9639-a51ad918157f") + ) + (wire + (pts + (xy 189.23 88.9) (xy 203.2 88.9) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9c8d4990-0bfb-4bde-941d-61168836bbc7") + ) + (wire + (pts + (xy 72.39 86.36) (xy 72.39 88.9) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9f365718-da4a-494c-b6a2-db3f26509085") + ) + (wire + (pts + (xy 57.15 133.35) (xy 69.85 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a1b10214-5a54-4ae1-af78-ee62c228f0be") + ) + (wire + (pts + (xy 57.15 125.73) (xy 59.69 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a234191f-9653-407d-bb2a-42957676e2dc") + ) + (wire + (pts + (xy 193.04 64.77) (xy 203.2 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a363f2a0-673b-492b-a534-f1ea3030ba85") + ) + (wire + (pts + (xy 91.44 125.73) (xy 92.71 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a5a89d1a-f28f-450c-b1bd-09693973d75c") + ) + (wire + (pts + (xy 107.95 45.72) (xy 107.95 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a944f499-32db-42d0-95ef-56df3b71fdc7") + ) + (wire + (pts + (xy 143.51 66.04) (xy 147.32 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a94d0ad4-7a31-440e-a20f-d72ac9233898") + ) + (wire + (pts + (xy 143.51 83.82) (xy 157.48 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aa2681d8-91e6-4223-991a-7289eb729812") + ) + (wire + (pts + (xy 59.69 73.66) (xy 72.39 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b44c42ec-e3ca-4dd7-b15b-ea9006a3d573") + ) + (wire + (pts + (xy 72.39 63.5) (xy 72.39 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b52428cc-aca6-4965-a5d8-07a254dec41b") + ) + (wire + (pts + (xy 143.51 73.66) (xy 147.32 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b6d558ae-94d8-421f-b859-614da85abf97") + ) + (wire + (pts + (xy 107.95 96.52) (xy 107.95 100.33) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b7510866-cd45-4bf3-8300-e55d12818d5f") + ) + (wire + (pts + (xy 189.23 93.98) (xy 203.2 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b8a55941-0eff-49d7-93a5-1a1c003bef51") + ) + (wire + (pts + (xy 104.14 149.86) (xy 114.3 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c226ebbb-46ec-4875-a537-c463a6ca9c85") + ) + (wire + (pts + (xy 71.12 149.86) (xy 76.2 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c4506b86-1b20-46fd-b23e-10c4b2da3564") + ) + (wire + (pts + (xy 72.39 55.88) (xy 69.85 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ca3409bc-8ffe-4ce2-b4fd-8720dec14963") + ) + (wire + (pts + (xy 143.51 71.12) (xy 147.32 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cfa76781-a131-4f8f-b7bc-8ba625eac631") + ) + (wire + (pts + (xy 59.69 149.86) (xy 64.77 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d2d52885-a238-4383-be80-819520faa161") + ) + (wire + (pts + (xy 193.04 67.31) (xy 203.2 67.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d620ee63-e453-4677-afb4-c806587f4a1c") + ) + (wire + (pts + (xy 93.98 157.48) (xy 104.14 157.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d65104c4-fb5e-4103-b8e0-63680cec69c4") + ) + (wire + (pts + (xy 107.95 96.52) (xy 110.49 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d8bc2f53-cd6c-4c66-bffc-3eaa7a1fc2f5") + ) + (wire + (pts + (xy 191.77 81.28) (xy 203.2 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ddbd9c04-508c-4116-9942-c9a9ef979ffb") + ) + (wire + (pts + (xy 83.82 133.35) (xy 92.71 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f7f3249d-7d11-4693-b3d5-2147343eafd5") + ) + (label "I2S_DA" + (at 147.32 86.36 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "04db30d9-3933-4f2c-a7a9-835ce0dc97d8") + ) + (label "I2S_CL" + (at 147.32 88.9 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0db685f3-7e65-420a-beec-ddabf89467f0") + ) + (label "KNOB2_BUT" + (at 59.69 71.12 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "18a953c4-541a-4107-8d7e-da63e3b7f82d") + ) + (label "I2S_LRCK" + (at 147.32 76.2 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "28f612de-de5b-4beb-b5ad-85ece33a500e") + ) + (label "LED_DATA" + (at 147.32 81.28 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4251f238-7f57-46ac-96c9-429cfd33e974") + ) + (label "I2S_DA" + (at 189.23 133.35 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "459ee4a5-349f-42b4-8528-fa76991ed323") + ) + (label "KNOB2_A" + (at 189.23 93.98 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "5eb627a4-61ba-47da-a6a7-1db4370db489") + ) + (label "RX" + (at 199.39 48.26 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "635c47f9-8a2d-44b6-baa7-0c6f070a187d") + ) + (label "RX" + (at 148.59 58.42 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6507ae65-3d5b-4dc5-8ed2-b185cb3978d6") + ) + (label "I2S_DATA" + (at 193.04 69.85 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6d55e109-55c4-4c92-90e0-39540f42839d") + ) + (label "KNOB2_B" + (at 189.23 91.44 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "96157de9-2bc2-49c8-81f5-5eeeaafe5a07") + ) + (label "KNOB1_B" + (at 147.32 68.58 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "9a9cf274-1e47-4815-9ee0-7299be62835e") + ) + (label "KNOB1_B" + (at 191.77 78.74 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a46afb5a-2d3a-406b-9a67-a0ec89eed79c") + ) + (label "KNOB2_A" + (at 59.69 73.66 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "aa8602ce-26ef-4ede-a1cb-2a8b4f28961d") + ) + (label "KNOB1_A" + (at 191.77 76.2 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "abe049fa-5a42-4e92-9bdf-bcd26e517c5a") + ) + (label "I2S_BCK" + (at 193.04 64.77 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "accdf5c1-cafb-40aa-a3e0-0038656ead7d") + ) + (label "I2S_LRCK" + (at 193.04 67.31 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b0f62abe-2ba9-424e-9170-f24c7ca2d5a0") + ) + (label "TX" + (at 148.59 55.88 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b15a3bae-cc91-44e3-8830-939b1917b8ce") + ) + (label "KNOB2_B" + (at 59.69 68.58 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b748e6ff-62fe-48de-92c1-46fc6dd9d098") + ) + (label "KNOB1_BUT" + (at 191.77 81.28 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b7f32195-495e-40ed-9dc4-8a21cf03918d") + ) + (label "KNOB1_A" + (at 147.32 71.12 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b919150d-cb16-4719-bae5-11a8b41bfe16") + ) + (label "I2S_DATA" + (at 147.32 78.74 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "be93abae-fba4-40a0-914b-1af2402e4c77") + ) + (label "LED_DATA" + (at 193.04 106.68 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c544cb60-6fe1-4fb5-ba28-7827808f4499") + ) + (label "I2S_BCK" + (at 147.32 73.66 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "cfc910fa-8a9d-4abe-9d99-52306d96c64c") + ) + (label "KNOB2_BUT" + (at 189.23 88.9 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d1f36d27-7f43-4b2d-a7f4-9d556a51c715") + ) + (label "TX" + (at 199.39 45.72 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d4bb6752-6583-4094-91d4-f4742156d3ed") + ) + (label "I2S_CL" + (at 189.23 135.89 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "ee0dd0d9-372f-43ec-847d-c491f9387265") + ) + (label "KNOB1_BUT" + (at 147.32 66.04 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f69dbcc1-fb7a-4ba4-a9bb-78c23fe4b1fd") + ) + (symbol + (lib_id "Device:C") + (at 92.71 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "062cd29a-32bd-447e-95fb-4bbbf29e43b7") + (property "Reference" "C8" + (at 96.52 128.2699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 96.52 130.8099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 93.6752 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 92.71 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 92.71 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "8f08c3c7-930a-4533-96e2-4ef30fde73a2") + ) + (pin "1" + (uuid "c499e9ea-74db-4230-affc-9c92d6b5dc17") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Regulator_Linear:AMS1117-3.3") + (at 83.82 125.73 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "09452429-3c6c-4fdf-ab5e-b206d942640b") + (property "Reference" "U2" + (at 83.82 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AMS1117-3.3" + (at 83.82 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 83.82 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 86.36 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" + (at 83.82 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9537df45-ded1-4443-b452-f813bf6030ff") + ) + (pin "2" + (uuid "a7d296dc-a474-402f-8740-b79dde3a3d1c") + ) + (pin "3" + (uuid "8fdba7d8-c037-407f-bb4e-db7a538ae06d") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "U2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3.3V") + (at 97.79 123.19 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "0ae110ae-c1b2-4b41-a1b9-12ac33b0a051") + (property "Reference" "#PWR01" + (at 97.79 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 97.79 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 97.79 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 97.79 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 97.79 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4fa2532a-fe32-4a62-86a9-4b9815fe13a6") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x04") + (at 208.28 133.35 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0da2f368-9baa-4a75-b3b3-a0e31ce5434b") + (property "Reference" "J7" + (at 213.868 133.096 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "I2C" + (at 210.312 136.144 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 208.28 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "3578766a-5bc4-4de6-87e4-6fb5563403bf") + ) + (pin "2" + (uuid "13ed7876-f470-4072-8186-73a09ffbfac1") + ) + (pin "3" + (uuid "7f69399a-1a4e-4f35-acab-0ec9132a9ff9") + ) + (pin "1" + (uuid "af6ddd24-defb-4edd-aa69-d73e8b9f54ac") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 199.39 62.23 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "12115c32-6111-4a72-a444-43b0536102d8") + (property "Reference" "#PWR017" + (at 203.2 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 195.834 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 199.39 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 199.39 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 199.39 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "613c5d4c-5158-475c-a1e7-d5fcc6c9705b") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR017") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 203.2 104.14 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "15d5ecbf-2f34-4e33-9fa6-d0095380512a") + (property "Reference" "#PWR016" + (at 203.2 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 203.2 100.584 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 203.2 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 203.2 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "552076fb-335d-4b5c-9e45-e6b561c0abcb") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR016") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 157.48 83.82 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "19bad70b-7695-44e8-90d1-c4e1d3ad9f40") + (property "Reference" "#PWR024" + (at 157.48 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 157.48 88.9 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 157.48 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 157.48 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 157.48 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "198f5f29-7943-427d-87ed-42f3a49e3922") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR024") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 114.3 148.59 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2f1f5d08-8fd7-425b-adec-62aa72a84eac") + (property "Reference" "#PWR08" + (at 114.3 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 114.3 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 114.3 148.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 148.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 114.3 148.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "23a6d851-4e49-47de-ac5c-608752520833") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR08") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VCC") + (at 59.69 121.92 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "34eec6d6-615b-4d82-8952-39406d81fed2") + (property "Reference" "#PWR011" + (at 59.69 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 59.69 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 59.69 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 59.69 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VCC\"" + (at 59.69 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "31d0deec-a97b-4e63-b796-0a8a33a63ad6") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR011") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x03") + (at 208.28 48.26 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3b20fe75-ba15-43d5-833c-cb9a238f12d7") + (property "Reference" "J6" + (at 210.82 46.9899 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Programming" + (at 207.264 42.672 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 208.28 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "007692a6-bb0d-4c9c-ab49-c32818629e53") + ) + (pin "1" + (uuid "6cb7c2b9-4a5d-4b9f-9084-27ff1d39dccd") + ) + (pin "2" + (uuid "492aa748-5e95-4caa-bef2-a91ad32e5465") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Regulator_Linear:AMS1117-5.0") + (at 83.82 149.86 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3d4aaa66-9c5d-4a5c-9510-c6f5132b8af2") + (property "Reference" "U3" + (at 83.82 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AMS1117-5.0" + (at 83.82 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" + (at 83.82 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" + (at 86.36 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1A Low Dropout regulator, positive, 5.0V fixed output, SOT-223" + (at 83.82 149.86 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "617fc78b-5bde-4a33-81cf-1c2289a3e965") + ) + (pin "1" + (uuid "7aba9d5a-de9f-4c05-9e2d-dad047a799c7") + ) + (pin "2" + (uuid "807631c7-0594-45a8-a59c-f31f492e0dc4") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "U3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3.3V") + (at 69.85 53.34 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3e5feb52-6ea1-4e8d-9536-84f418064c7a") + (property "Reference" "#PWR018" + (at 69.85 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 69.85 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 69.85 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 69.85 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 69.85 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3c6d1409-703d-46fe-b12e-2d9111d9c363") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR018") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 57.15 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "47ed2581-9371-4ee6-8d2a-4d8d6518797f") + (property "Reference" "C2" + (at 60.96 127.3809 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uF" + (at 60.96 129.9209 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 58.1152 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 57.15 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 57.15 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "8d385d9e-95a2-41f2-9888-05db684b9c81") + ) + (pin "1" + (uuid "9009b30f-1013-4349-93c9-94491b4bce5a") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 83.82 161.29 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "48058ae8-b9ae-4d11-9381-7f51e623b81e") + (property "Reference" "#PWR05" + (at 83.82 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 83.82 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 83.82 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 83.82 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 83.82 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "682a398c-f9c4-4653-9eec-ce02f2fb2056") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x02") + (at 208.28 119.38 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "4a115e1a-1a3d-486b-9fd7-8a09d1649a53") + (property "Reference" "J4" + (at 210.82 119.3799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "POWER IN" + (at 210.82 121.9199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" + (at 208.28 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7afdc379-9d5a-4f49-8630-0ee014aa2a1e") + ) + (pin "2" + (uuid "fff404e4-23fe-44b5-bffc-da6654eae187") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 199.39 59.69 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "4c38a671-417e-45ea-83e4-ed5ebe4afe4a") + (property "Reference" "#PWR014" + (at 193.04 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 194.31 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 199.39 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 199.39 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 199.39 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a6bae57d-e80f-4252-a3b4-39b5e6809c0e") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR014") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x05") + (at 208.28 64.77 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "4d1b4627-c9f1-457e-9a0a-542103462103") + (property "Reference" "J1" + (at 210.82 63.4999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "DAC_I2S" + (at 210.82 66.0399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" + (at 208.28 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "68c8a576-d5cb-40ca-95be-243efbf2956e") + ) + (pin "4" + (uuid "d10f69fb-6607-47d9-82c3-47a3ce3c8430") + ) + (pin "5" + (uuid "cd91cdda-dfa8-422f-bf31-1a31138284bb") + ) + (pin "2" + (uuid "ab58fb50-2caf-4e0d-a92e-a384d1415612") + ) + (pin "3" + (uuid "3cebbdf6-c201-4d01-8e04-194b2a635267") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 160.02 63.5 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "4daf5840-ada3-4bb4-8b54-95afb960591a") + (property "Reference" "#PWR025" + (at 160.02 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 160.02 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 160.02 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 160.02 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 160.02 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6a0909ce-f9bf-4fdc-8c25-735e28d13853") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR025") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 143.51 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "52890ad3-f651-418e-824b-abf988af1865") + (property "Reference" "#PWR023" + (at 143.51 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 143.51 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 143.51 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 143.51 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 143.51 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bcb33e9d-7200-4095-be6f-78e83c285015") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR023") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VCC") + (at 59.69 147.32 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5df756b6-f80e-46fc-9d38-fc64562d185a") + (property "Reference" "#PWR010" + (at 59.69 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 59.69 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 59.69 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 59.69 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VCC\"" + (at 59.69 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d426a037-1a56-408f-81a8-01c6bf403e50") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR010") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 93.98 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "78c93ecb-818f-4a5d-a456-76127fdfa572") + (property "Reference" "C6" + (at 97.79 152.3999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 97.79 154.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 94.9452 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 93.98 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 93.98 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "99b8dd6d-c55f-433a-b4ce-58864913c13a") + ) + (pin "1" + (uuid "64f130b0-8851-4b3a-9f13-345ebe06c3ab") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 64.77 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "84e5ee43-1656-4504-876a-89cfe1207c34") + (property "Reference" "C3" + (at 58.166 151.384 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uF" + (at 52.07 156.972 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 65.7352 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 64.77 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 64.77 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "e7473549-eaeb-4cb4-95c5-f5f1c5f9d95e") + ) + (pin "1" + (uuid "06ec71cf-8622-4cd7-831d-d55f35de4a8c") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Espressif:ESP32-WROVER-E") + (at 107.95 73.66 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8500d52d-b549-413f-aeec-252f2687d2f3") + (property "Reference" "U1" + (at 110.1441 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "ESP32-WROVER-E" + (at 110.1441 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_Espressif:ESP32-WROVER-E" + (at 110.49 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-wrover-e_esp32-wrover-ie_datasheet_en.pdf" + (at 110.49 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "ESP32-WROVER-E and ESP32-WROVER-IE are two powerful, generic WiFi-BT-BLE MCU modules that target a wide variety of applications, ranging from low-power sensor networks to the most demanding tasks, such as voice encoding, music streaming and MP3 decoding. ESP32-WROVER-E comes with a PCB antenna, and ESP32-WROVER-IE with an IPEX antenna. They both featurea 4 MB external SPI flash and an additional 8 MB SPI Pseudo static RAM (PSRAM)." + (at 107.95 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1f362d47-890d-4e02-8da5-18ed07861eb7") + ) + (pin "11" + (uuid "4cd5c28f-cecd-49dd-b4c7-dabe9bf1e4e0") + ) + (pin "38" + (uuid "341c2fc9-0a8d-410d-92db-a0512f27df05") + ) + (pin "24" + (uuid "53718f83-d1ce-4406-a23c-f95cf104301f") + ) + (pin "8" + (uuid "526ae042-cae4-48cb-b5c6-97c1e3fbb170") + ) + (pin "33" + (uuid "81cd2c65-a2f5-43e7-b3d6-6a5d86382011") + ) + (pin "3" + (uuid "7d3a8b13-8941-492b-85d7-042dd3b405be") + ) + (pin "25" + (uuid "a026e164-3a72-4b85-9c57-3330e49386a8") + ) + (pin "30" + (uuid "8956df3d-1bc8-4413-bf7d-43f8f4993d71") + ) + (pin "7" + (uuid "5d0fa2ae-ca91-402f-b1ae-a4fee6c4355e") + ) + (pin "10" + (uuid "97dd2972-3fcc-46dd-a4ab-00c37d54e612") + ) + (pin "16" + (uuid "5e52b12a-5536-43dc-9330-8e009b15fc9d") + ) + (pin "5" + (uuid "fbbc4681-20a8-49fc-82be-3ff328f4a366") + ) + (pin "9" + (uuid "6c7c7032-6cdb-44fb-a35b-31f265c82eea") + ) + (pin "4" + (uuid "bf7fb16b-f7aa-46c8-aad4-da562cfad334") + ) + (pin "2" + (uuid "7addfc6e-6c15-475e-b6a0-ce3954256ffd") + ) + (pin "34" + (uuid "4bc4450b-cf30-49b6-8f9d-be3d59da5064") + ) + (pin "31" + (uuid "c7db0d33-a205-4e40-99fd-fca1aa7a861a") + ) + (pin "37" + (uuid "7c505944-3182-44e4-9134-524dd6dcc402") + ) + (pin "29" + (uuid "f290203c-d585-47c9-a4e9-d1c662ba0642") + ) + (pin "26" + (uuid "e6a149e8-748c-4359-8407-948c689b6716") + ) + (pin "13" + (uuid "076fb286-5f2b-443d-bf29-9cfa11994b7f") + ) + (pin "23" + (uuid "0a49ce7c-d768-42fd-92c0-717a866ccdc2") + ) + (pin "39" + (uuid "7659f0b0-ce66-454e-81d0-b69f5f3e01de") + ) + (pin "6" + (uuid "46b6ae26-7efc-4f45-9143-d64490e78e4e") + ) + (pin "12" + (uuid "a27c56f1-1864-48f1-8532-a19de07ec6d3") + ) + (pin "36" + (uuid "ddea6bc0-f4c1-4b3c-ba4e-1a698c7421f8") + ) + (pin "35" + (uuid "574b7cd7-a236-481a-99e9-cf9071a56436") + ) + (pin "14" + (uuid "93042795-5d5e-47e5-a250-83664540b629") + ) + (pin "15" + (uuid "7c034be1-6d4e-4064-a429-9b39d15e4dd0") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 109.22 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "88254290-b244-46ea-be15-a27a5a1d0f57") + (property "Reference" "#PWR013" + (at 203.2 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5106b19d-1f73-451a-b0bf-1829719e6e69") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR013") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 106.68 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8bb186f2-afd8-4f12-8676-3aa237b4cf59") + (property "Reference" "C1" + (at 110.49 127.3809 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100uF" + (at 110.49 129.9209 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 107.6452 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 106.68 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 106.68 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4d67824f-ca1e-445a-8ea9-715f8afb2274") + ) + (pin "2" + (uuid "c58785b3-49c5-40b6-98d5-a10157812637") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VCC") + (at 203.2 119.38 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8d58e71a-d8c0-42bc-9491-a2804e4b01d9") + (property "Reference" "#PWR09" + (at 203.2 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VCC" + (at 203.2 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 203.2 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VCC\"" + (at 203.2 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d14ccd48-8116-457d-a27c-c432f930e1b1") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 96.52 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8e7f29d9-2abf-4aeb-8087-b5e3d5fe444a") + (property "Reference" "#PWR07" + (at 203.2 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "22206956-1a5f-491d-9508-8927d97d7f8a") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x04") + (at 208.28 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "97438a11-051e-4f1e-9a62-1c9d86760870") + (property "Reference" "J3" + (at 213.868 91.186 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SelectionKnob" + (at 210.312 94.234 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 208.28 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "ffd8c348-7174-4e47-b01c-743ad3a2298a") + ) + (pin "2" + (uuid "80e83c9c-8ac4-4064-9d2f-7d02577574cc") + ) + (pin "3" + (uuid "e9e4457b-ef2f-48f6-9b22-469c62f8dec8") + ) + (pin "1" + (uuid "57c957c6-cc3d-4c6f-a17f-a98fa3ea2a30") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x03") + (at 208.28 106.68 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "99fb932d-bbe8-4030-815a-74f9eb962f9b") + (property "Reference" "J5" + (at 210.82 105.4099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "WS2812B" + (at 210.82 107.9499 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 208.28 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2a2db6b5-d906-4be1-ab21-420efcf0118b") + ) + (pin "2" + (uuid "76a49145-e362-47f2-a55f-ff6ee72ab274") + ) + (pin "3" + (uuid "1340d329-e98f-4a43-8568-08b53b17ad56") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 107.95 100.33 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9b34656f-d7a5-485d-b812-a932c9ad5555") + (property "Reference" "#PWR04" + (at 107.95 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 107.95 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 107.95 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 107.95 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 107.95 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8a58b2e2-38ab-427e-92e8-7334383a9d1c") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3.3V") + (at 107.95 45.72 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a5b4ca9d-074e-404c-86b2-a69e473241fe") + (property "Reference" "#PWR02" + (at 107.95 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 107.95 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 107.95 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 107.95 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 107.95 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "aedb66df-4b1c-4a8f-9810-8d1e14aa507f") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 68.58 60.96 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ae5fd593-bff5-4c51-9523-555e9da1fb07") + (property "Reference" "#PWR022" + (at 68.58 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 68.58 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 68.58 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 68.58 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 68.58 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4db14646-cfed-42ff-a8ca-180cf141b804") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR022") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x04") + (at 208.28 78.74 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b2d7a06d-bdbe-4d11-afbe-2213bb983f19") + (property "Reference" "J2" + (at 210.82 78.7399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "VolumeKnob" + (at 210.82 81.2799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 208.28 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 208.28 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "f70ee8b2-b3b3-4e33-8d1b-c2e0457b66f2") + ) + (pin "1" + (uuid "f1d055a6-4337-42ce-805c-86de14fc31fb") + ) + (pin "2" + (uuid "4e9eb729-2bb3-4793-9a7e-34f19adcff30") + ) + (pin "4" + (uuid "5a8006d4-7c7e-4403-903d-0c5cf84ddd80") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "J2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 50.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b62d2008-b177-4c1b-9a6e-d1a85639a559") + (property "Reference" "#PWR015" + (at 203.2 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b362a312-5b67-411c-9c5d-4eedeca1e643") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR015") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 72.39 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ba6db0f1-4280-46fa-9f6e-331f13ff9bd1") + (property "Reference" "#PWR021" + (at 72.39 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 72.39 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 72.39 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 72.39 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 72.39 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "da14eb18-3a55-44be-b5b7-f799301c17f1") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR021") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 71.12 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "cd330f67-3a18-4722-8b04-0d4e141a22e0") + (property "Reference" "C5" + (at 74.93 152.3999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 74.93 154.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 72.0852 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 71.12 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 71.12 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "2ee59a52-893f-47f8-8339-281f2523fac6") + ) + (pin "1" + (uuid "661adf58-1460-42c5-9a5e-6af7dcb7fab2") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 203.2 130.81 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "cd4cb271-4d37-4057-83f1-2f42767f3412") + (property "Reference" "#PWR019" + (at 203.2 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 203.2 127.254 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 203.2 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 203.2 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "78a8f3be-4988-4ac9-a273-caa21ff52258") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR019") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 104.14 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d5727e69-1d1a-4192-92ea-52d79a5cc18a") + (property "Reference" "C4" + (at 107.95 151.5109 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100uF" + (at 107.95 154.0509 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 105.1052 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 104.14 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 104.14 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3a659a43-6683-4c0c-a925-6f3e46945eed") + ) + (pin "2" + (uuid "bd7cf935-8457-4d1f-aac4-d811d56a4464") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 69.85 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "de225602-43b4-4c81-981d-050d04c52b5d") + (property "Reference" "C7" + (at 73.66 128.2699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 73.66 130.8099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 70.8152 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 69.85 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 69.85 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "cf8aa812-482b-411d-aa34-b3f56855c307") + ) + (pin "1" + (uuid "a8b428f2-ec18-4cea-9493-d8320f723db7") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "C7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 121.92 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e2ac151f-77f5-4db3-b5dd-e56d0b483cee") + (property "Reference" "#PWR03" + (at 203.2 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "58031cbe-02f9-421b-ad21-2a7ca6b910c6") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 83.82 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e56aa70f-f8ed-4251-9da3-20d1f3b4c7a7") + (property "Reference" "#PWR012" + (at 203.2 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 88.9 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b927e6ee-06c5-41f4-aa79-4ae936125abf") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR012") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 83.82 135.89 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ea616cd8-c832-4187-9a8d-36aa83bbb2c5") + (property "Reference" "#PWR06" + (at 83.82 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 83.82 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 83.82 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 83.82 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 83.82 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "54984552-ae15-4818-b046-5dcf8c89b294") + ) + (instances + (project "" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 138.43 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ef36f169-ae0e-4fa5-81f5-e522c0e51566") + (property "Reference" "#PWR020" + (at 203.2 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 203.2 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ea15438a-6c8b-4467-abd0-1067114d90f2") + ) + (instances + (project "Schematics" + (path "/e6fda718-069e-4009-9f9c-45233c83d734" + (reference "#PWR020") + (unit 1) + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) +) diff --git a/Schematics/apa102/SVG/apa102-F_Cu.png b/Schematics/apa102/SVG/apa102-F_Cu.png new file mode 100644 index 0000000..66330cb Binary files /dev/null and b/Schematics/apa102/SVG/apa102-F_Cu.png differ diff --git a/Schematics/apa102/SVG/apa102-F_Cu.svg b/Schematics/apa102/SVG/apa102-F_Cu.svg new file mode 100644 index 0000000..fdf0115 --- /dev/null +++ b/Schematics/apa102/SVG/apa102-F_Cu.svg @@ -0,0 +1,64 @@ + + + +SVG Image created as apa102-F_Cu.svg date 2024/07/20 12:31:13 + Image generated by PCBNEW + + + + + + + + + + + diff --git a/Schematics/apa102/SVG/apa102-F_Cu2.png b/Schematics/apa102/SVG/apa102-F_Cu2.png new file mode 100644 index 0000000..779a985 Binary files /dev/null and b/Schematics/apa102/SVG/apa102-F_Cu2.png differ diff --git a/Schematics/apa102/SVG/apa102-F_Cu2.svg b/Schematics/apa102/SVG/apa102-F_Cu2.svg new file mode 100644 index 0000000..5db3676 --- /dev/null +++ b/Schematics/apa102/SVG/apa102-F_Cu2.svg @@ -0,0 +1,196 @@ + + + + SVG Image created as apa102-F_Cu.svg date 2024/07/06 13:32:34 + Image generated by PCBNEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SVG Image created as apa102-F_Cu.svg date 2024/07/06 13:32:34 + + + + diff --git a/Schematics/apa102/SVG/apa102-brd.svg b/Schematics/apa102/SVG/apa102-brd.svg new file mode 100644 index 0000000..144a395 --- /dev/null +++ b/Schematics/apa102/SVG/apa102-brd.svg @@ -0,0 +1,2576 @@ + + + +SVG Image created as apa102-brd.svg date 2024/07/06 12:44:02 + Image generated by PCBNEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Schematics/apa102/apa102-F_Cu.dxf b/Schematics/apa102/apa102-F_Cu.dxf new file mode 100644 index 0000000..dcaa232 --- /dev/null +++ b/Schematics/apa102/apa102-F_Cu.dxf @@ -0,0 +1,2346 @@ + 0 +SECTION + 2 +HEADER + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +1 + 9 +$MEASUREMENT + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +4 + 0 +LTYPE + 5 +40F + 2 +CONTINUOUS + 70 +0 + 3 +Solid line + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 5 +410 + 2 +DASHDOT + 70 +0 + 3 +Dash Dot ____ _ ____ _ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 5 +411 + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ + 72 +65 + 73 +2 + 40 +0.75 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 5 +43B + 2 +DOTTED + 70 +0 + 3 +Dotted . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +4 + 0 +STYLE + 2 +KICAD + 70 +0 + 40 +0 + 41 +1 + 42 +1 + 50 +0 + 71 +0 + 3 +isocp.shx + 0 +STYLE + 2 +KICADB + 70 +0 + 40 +0 + 41 +1 + 42 +1 + 50 +0 + 71 +0 + 3 +isocp.shx + 0 +STYLE + 2 +KICADI + 70 +0 + 40 +0 + 41 +1 + 42 +1 + 50 +15 + 71 +0 + 3 +isocp.shx + 0 +STYLE + 2 +KICADBI + 70 +0 + 40 +0 + 41 +1 + 42 +1 + 50 +15 + 71 +0 + 3 +isocp.shx + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +1 + 0 +LAYER + 2 +BLACK + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7303149606299213 +20 +-3.9826771653543305 +11 +3.7302174015748029 +21 +-3.9826771653543305 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7302174015748029 +20 +-3.9826771653543305 +11 +3.7302864173228345 +21 +-4.0060822440944879 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7302864173228345 +20 +-4.0060822440944879 +11 +3.8879497244094487 +21 +-4.0059157086614174 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8879497244094487 +20 +-4.0059157086614174 +11 +3.8878812204724409 +21 +-3.9826771653543305 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8878812204724409 +20 +-3.9826771653543305 +11 +3.8877952755905509 +21 +-3.9826771653543305 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8877952755905509 +20 +-3.9826771653543305 +11 +3.8877952755905509 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8877952755905509 +20 +-3.9244094488188974 +11 +3.9074803149606296 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9074803149606296 +20 +-3.9244094488188974 +11 +3.9074803149606296 +21 +-3.9826771653543305 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9074803149606296 +20 +-3.9826771653543305 +11 +3.9073827559055117 +21 +-3.9826771653543305 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9073827559055117 +20 +-3.9826771653543305 +11 +3.9074803149606296 +21 +-4.015748031496063 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9074803149606296 +20 +-4.015748031496063 +11 +3.9072911811023623 +21 +-4.0176682283464569 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9072911811023623 +20 +-4.0176682283464569 +11 +3.9058215354330708 +21 +-4.0212162598425198 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9058215354330708 +20 +-4.0212162598425198 +11 +3.9031060236220472 +21 +-4.023931771653543 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9031060236220472 +20 +-4.023931771653543 +11 +3.8995579921259842 +21 +-4.0254014173228345 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8995579921259842 +20 +-4.0254014173228345 +11 +3.7204724409448819 +21 +-4.0255905511811019 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7204724409448819 +20 +-4.0255905511811019 +11 +3.718552244094488 +21 +-4.0254014173228345 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.718552244094488 +20 +-4.0254014173228345 +11 +3.7150042125984251 +21 +-4.023931771653543 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7150042125984251 +20 +-4.023931771653543 +11 +3.7122887007874015 +21 +-4.0212162598425198 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7122887007874015 +20 +-4.0212162598425198 +11 +3.7108190551181099 +21 +-4.0176682283464569 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7108190551181099 +20 +-4.0176682283464569 +11 +3.7107158661417321 +21 +-3.9826771653543305 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7107158661417321 +20 +-3.9826771653543305 +11 +3.7106299212598426 +21 +-3.9826771653543305 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7106299212598426 +20 +-3.9826771653543305 +11 +3.7106299212598426 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7106299212598426 +20 +-3.9244094488188974 +11 +3.7303149606299213 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7303149606299213 +20 +-3.9244094488188974 +11 +3.7303149606299213 +21 +-3.9826771653543305 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5881453543307087 +20 +-3.9485091732283464 +11 +3.5959160236220473 +21 +-3.9560827559055118 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5959160236220473 +20 +-3.9560827559055118 +11 +3.6712598425196847 +21 +-3.9559361417322836 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.6712598425196847 +20 +-3.9559361417322836 +11 +3.6712598425196847 +21 +-3.9559055118110233 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.6712598425196847 +20 +-3.9559055118110233 +11 +3.7027559055118111 +21 +-3.9559055118110233 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7027559055118111 +20 +-3.9559055118110233 +11 +3.7027559055118111 +21 +-3.9755905511811021 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7027559055118111 +20 +-3.9755905511811021 +11 +3.6712598425196847 +21 +-3.9755905511811021 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.6712598425196847 +20 +-3.9755905511811021 +11 +3.6712598425196847 +21 +-3.9754357874015747 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.6712598425196847 +20 +-3.9754357874015747 +11 +3.5917322834645669 +21 +-3.9755905511811021 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5917322834645669 +20 +-3.9755905511811021 +11 +3.5898120866141729 +21 +-3.9754014173228347 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5898120866141729 +20 +-3.9754014173228347 +11 +3.58626405511811 +21 +-3.9739317716535432 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.58626405511811 +20 +-3.9739317716535432 +11 +3.5862625196850395 +21 +-3.9739302362204723 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5862625196850395 +20 +-3.9739302362204723 +11 +3.575717440944882 +21 +-3.9636526377952754 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.575717440944882 +20 +-3.9636526377952754 +11 +3.5744934251968501 +21 +-3.9621611023622045 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5744934251968501 +20 +-3.9621611023622045 +11 +3.573023779527559 +21 +-3.9586130708661416 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.573023779527559 +20 +-3.9586130708661416 +11 +3.573023779527559 +21 +-3.9547727559055117 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.573023779527559 +20 +-3.9547727559055117 +11 +3.5744934251968501 +21 +-3.9512247244094487 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5744934251968501 +20 +-3.9512247244094487 +11 +3.5772089763779529 +21 +-3.9485091732283464 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5772089763779529 +20 +-3.9485091732283464 +11 +3.5807570078740159 +21 +-3.9470395275590549 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5807570078740159 +20 +-3.9470395275590549 +11 +3.5845973228346457 +21 +-3.9470395275590549 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5845973228346457 +20 +-3.9470395275590549 +11 +3.5881453543307087 +21 +-3.9485091732283464 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7696850393700787 +20 +-3.9560648425196852 +11 +3.8484251968503935 +21 +-3.9559320472440942 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8484251968503935 +20 +-3.9559320472440942 +11 +3.8484251968503935 +21 +-3.9559055118110233 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8484251968503935 +20 +-3.9559055118110233 +11 +3.8799212598425195 +21 +-3.9559055118110233 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8799212598425195 +20 +-3.9559055118110233 +11 +3.8799212598425195 +21 +-3.9755905511811021 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8799212598425195 +20 +-3.9755905511811021 +11 +3.8484251968503935 +21 +-3.9755905511811021 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8484251968503935 +20 +-3.9755905511811021 +11 +3.8484251968503935 +21 +-3.9754311811023619 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8484251968503935 +20 +-3.9754311811023619 +11 +3.7696850393700787 +21 +-3.9755639763779524 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7696850393700787 +20 +-3.9755639763779524 +11 +3.7696850393700787 +21 +-3.9755905511811021 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7696850393700787 +20 +-3.9755905511811021 +11 +3.7539370078740157 +21 +-3.9755905511811021 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7539370078740157 +20 +-3.9755905511811021 +11 +3.7381889763779528 +21 +-3.9755905511811021 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7381889763779528 +20 +-3.9755905511811021 +11 +3.7381889763779528 +21 +-3.9559055118110233 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7381889763779528 +20 +-3.9559055118110233 +11 +3.7696850393700787 +21 +-3.9559055118110233 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7696850393700787 +20 +-3.9559055118110233 +11 +3.7696850393700787 +21 +-3.9560648425196852 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9468503937007875 +20 +-3.9755905511811021 +11 +3.9153543307086611 +21 +-3.9755905511811021 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9153543307086611 +20 +-3.9755905511811021 +11 +3.9153543307086611 +21 +-3.9559055118110233 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9153543307086611 +20 +-3.9559055118110233 +11 +3.9468503937007875 +21 +-3.9559055118110233 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9468503937007875 +20 +-3.9559055118110233 +11 +3.9468503937007875 +21 +-3.9755905511811021 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5859580708661416 +20 +-3.912412559055118 +11 +3.5982053937007872 +21 +-3.9245183858267714 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5982053937007872 +20 +-3.9245183858267714 +11 +3.6712598425196847 +21 +-3.9244287401574804 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.6712598425196847 +20 +-3.9244287401574804 +11 +3.6712598425196847 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.6712598425196847 +20 +-3.9244094488188974 +11 +3.7027559055118111 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7027559055118111 +20 +-3.9244094488188974 +11 +3.7027559055118111 +21 +-3.9362204724409446 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7027559055118111 +20 +-3.9362204724409446 +11 +3.6712598425196847 +21 +-3.9362204724409446 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.6712598425196847 +20 +-3.9362204724409446 +11 +3.6712598425196847 +21 +-3.9361277165354331 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.6712598425196847 +20 +-3.9361277165354331 +11 +3.5956692913385826 +21 +-3.9362204724409446 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5956692913385826 +20 +-3.9362204724409446 +11 +3.5945171653543304 +21 +-3.9361070078740155 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5945171653543304 +20 +-3.9361070078740155 +11 +3.5932701181102362 +21 +-3.9355904330708662 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5932701181102362 +20 +-3.9355904330708662 +11 +3.5923883464566928 +21 +-3.9352252362204725 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5923883464566928 +20 +-3.9352252362204725 +11 +3.5785013385826772 +21 +-3.9214986614173228 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5785013385826772 +20 +-3.9214986614173228 +11 +3.5777668897637795 +21 +-3.92060374015748 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5777668897637795 +20 +-3.92060374015748 +11 +3.5768851181102361 +21 +-3.9184749212598424 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5768851181102361 +20 +-3.9184749212598424 +11 +3.5768851181102361 +21 +-3.916170748031496 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5768851181102361 +20 +-3.916170748031496 +11 +3.5777668897637795 +21 +-3.9140419291338584 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5777668897637795 +20 +-3.9140419291338584 +11 +3.5793962598425195 +21 +-3.912412559055118 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5793962598425195 +20 +-3.912412559055118 +11 +3.5815250787401576 +21 +-3.9115307874015746 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.5815250787401576 +20 +-3.9115307874015746 +11 +3.583829251968504 +21 +-3.9115307874015746 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.583829251968504 +20 +-3.9115307874015746 +11 +3.5859580708661416 +21 +-3.912412559055118 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7696850393700787 +20 +-3.9245056692913387 +11 +3.8484251968503935 +21 +-3.9244254724409449 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8484251968503935 +20 +-3.9244254724409449 +11 +3.8484251968503935 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8484251968503935 +20 +-3.9244094488188974 +11 +3.8799212598425195 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8799212598425195 +20 +-3.9244094488188974 +11 +3.8799212598425195 +21 +-3.9362204724409446 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8799212598425195 +20 +-3.9362204724409446 +11 +3.8484251968503935 +21 +-3.9362204724409446 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8484251968503935 +20 +-3.9362204724409446 +11 +3.8484251968503935 +21 +-3.936124212598425 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8484251968503935 +20 +-3.936124212598425 +11 +3.7696850393700787 +21 +-3.9362044094488189 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7696850393700787 +20 +-3.9362044094488189 +11 +3.7696850393700787 +21 +-3.9362204724409446 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7696850393700787 +20 +-3.9362204724409446 +11 +3.7539370078740157 +21 +-3.9362204724409446 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7539370078740157 +20 +-3.9362204724409446 +11 +3.7381889763779528 +21 +-3.9362204724409446 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7381889763779528 +20 +-3.9362204724409446 +11 +3.7381889763779528 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7381889763779528 +20 +-3.9244094488188974 +11 +3.7696850393700787 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7696850393700787 +20 +-3.9244094488188974 +11 +3.7696850393700787 +21 +-3.9245056692913387 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9468503937007875 +20 +-3.9362204724409446 +11 +3.9153543307086611 +21 +-3.9362204724409446 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9153543307086611 +20 +-3.9362204724409446 +11 +3.9153543307086611 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9153543307086611 +20 +-3.9244094488188974 +11 +3.9468503937007875 +21 +-3.9244094488188974 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9468503937007875 +20 +-3.9244094488188974 +11 +3.9468503937007875 +21 +-3.9362204724409446 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8787208267716533 +20 +-3.8347212992125983 +11 +3.8801400393700787 +21 +-3.8353091732283464 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8801400393700787 +20 +-3.8353091732283464 +11 +3.9004216929133859 +21 +-3.8554838188976377 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9004216929133859 +20 +-3.8554838188976377 +11 +3.9009112992125985 +21 +-3.8560804330708662 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9009112992125985 +20 +-3.8560804330708662 +11 +3.9014991732283462 +21 +-3.8574996456692912 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9014991732283462 +20 +-3.8574996456692912 +11 +3.901537716535433 +21 +-3.8779527559055116 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.901537716535433 +20 +-3.8779527559055116 +11 +3.9074803149606296 +21 +-3.8779527559055116 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9074803149606296 +20 +-3.8779527559055116 +11 +3.9074803149606296 +21 +-3.917322834645669 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9074803149606296 +20 +-3.917322834645669 +11 +3.8877952755905509 +21 +-3.917322834645669 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8877952755905509 +20 +-3.917322834645669 +11 +3.8877952755905509 +21 +-3.9045874803149605 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8877952755905509 +20 +-3.9045874803149605 +11 +3.8799212598425195 +21 +-3.9046331102362202 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8799212598425195 +20 +-3.9046331102362202 +11 +3.8799212598425195 +21 +-3.9047244094488187 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8799212598425195 +20 +-3.9047244094488187 +11 +3.8641732283464565 +21 +-3.9047244094488187 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8641732283464565 +20 +-3.9047244094488187 +11 +3.8484251968503935 +21 +-3.9047244094488187 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8484251968503935 +20 +-3.9047244094488187 +11 +3.8484251968503935 +21 +-3.88503937007874 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8484251968503935 +20 +-3.88503937007874 +11 +3.8799212598425195 +21 +-3.88503937007874 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8799212598425195 +20 +-3.88503937007874 +11 +3.8799212598425195 +21 +-3.8851260629921258 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8799212598425195 +20 +-3.8851260629921258 +11 +3.8877952755905509 +21 +-3.8850804330708661 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8877952755905509 +20 +-3.8850804330708661 +11 +3.8877952755905509 +21 +-3.8779527559055116 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8877952755905509 +20 +-3.8779527559055116 +11 +3.893737874015748 +21 +-3.8779527559055116 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.893737874015748 +20 +-3.8779527559055116 +11 +3.8937036614173226 +21 +-3.8598035826771651 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8937036614173226 +20 +-3.8598035826771651 +11 +3.8762533858267716 +21 +-3.8424453937007872 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8762533858267716 +20 +-3.8424453937007872 +11 +3.7416912992125981 +21 +-3.8425188188976378 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7416912992125981 +20 +-3.8425188188976378 +11 +3.7243391732283464 +21 +-3.8599629921259844 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7243391732283464 +20 +-3.8599629921259844 +11 +3.7243785039370079 +21 +-3.8779527559055116 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7243785039370079 +20 +-3.8779527559055116 +11 +3.7303149606299213 +21 +-3.8779527559055116 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7303149606299213 +20 +-3.8779527559055116 +11 +3.7303149606299213 +21 +-3.917322834645669 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7303149606299213 +20 +-3.917322834645669 +11 +3.7106299212598426 +21 +-3.917322834645669 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7106299212598426 +20 +-3.917322834645669 +11 +3.7106299212598426 +21 +-3.9045874803149605 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7106299212598426 +20 +-3.9045874803149605 +11 +3.7027559055118111 +21 +-3.9046331102362202 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7027559055118111 +20 +-3.9046331102362202 +11 +3.7027559055118111 +21 +-3.9047244094488187 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7027559055118111 +20 +-3.9047244094488187 +11 +3.6870078740157481 +21 +-3.9047244094488187 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.6870078740157481 +20 +-3.9047244094488187 +11 +3.6712598425196847 +21 +-3.9047244094488187 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.6712598425196847 +20 +-3.9047244094488187 +11 +3.6712598425196847 +21 +-3.88503937007874 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.6712598425196847 +20 +-3.88503937007874 +11 +3.7027559055118111 +21 +-3.88503937007874 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7027559055118111 +20 +-3.88503937007874 +11 +3.7027559055118111 +21 +-3.8851260629921258 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7027559055118111 +20 +-3.8851260629921258 +11 +3.7106299212598426 +21 +-3.8850804330708661 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7106299212598426 +20 +-3.8850804330708661 +11 +3.7106299212598426 +21 +-3.8779527559055116 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7106299212598426 +20 +-3.8779527559055116 +11 +3.7165725196850392 +21 +-3.8779527559055116 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7165725196850392 +20 +-3.8779527559055116 +11 +3.7165354330708662 +21 +-3.8582677165354329 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7165354330708662 +20 +-3.8582677165354329 +11 +3.7166110629921261 +21 +-3.8574996456692912 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7166110629921261 +20 +-3.8574996456692912 +11 +3.7171989370078737 +21 +-3.8560804330708662 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7171989370078737 +20 +-3.8560804330708662 +11 +3.7373735826771655 +21 +-3.835798779527559 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7373735826771655 +20 +-3.835798779527559 +11 +3.7379701968503936 +21 +-3.8353091732283464 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7379701968503936 +20 +-3.8353091732283464 +11 +3.7393894094488189 +21 +-3.8347212992125983 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7393894094488189 +20 +-3.8347212992125983 +11 +3.8779527559055116 +21 +-3.8346456692913384 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.8779527559055116 +20 +-3.8346456692913384 +11 +3.8787208267716533 +21 +-3.8347212992125983 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7696850393700787 +20 +-3.9047244094488187 +11 +3.7381889763779528 +21 +-3.9047244094488187 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7381889763779528 +20 +-3.9047244094488187 +11 +3.7381889763779528 +21 +-3.88503937007874 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7381889763779528 +20 +-3.88503937007874 +11 +3.7696850393700787 +21 +-3.88503937007874 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.7696850393700787 +20 +-3.88503937007874 +11 +3.7696850393700787 +21 +-3.9047244094488187 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9468503937007875 +20 +-3.9047244094488187 +11 +3.9153543307086611 +21 +-3.9047244094488187 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9153543307086611 +20 +-3.9047244094488187 +11 +3.9153543307086611 +21 +-3.88503937007874 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9153543307086611 +20 +-3.88503937007874 +11 +3.9468503937007875 +21 +-3.88503937007874 +0 +LINE +8 +BLACK +6 +CONTINUOUS +10 +3.9468503937007875 +20 +-3.88503937007874 +11 +3.9468503937007875 +21 +-3.9047244094488187 + 0 +ENDSEC + 0 +EOF diff --git a/Schematics/apa102/apa102-F_Cu.gbr.png b/Schematics/apa102/apa102-F_Cu.gbr.png new file mode 100644 index 0000000..667b81d Binary files /dev/null and b/Schematics/apa102/apa102-F_Cu.gbr.png differ diff --git a/Schematics/apa102/apa102-backups/apa102-2024-07-06_125846.zip b/Schematics/apa102/apa102-backups/apa102-2024-07-06_125846.zip new file mode 100644 index 0000000..d4baf8b Binary files /dev/null and b/Schematics/apa102/apa102-backups/apa102-2024-07-06_125846.zip differ diff --git a/Schematics/apa102/apa102-backups/apa102-2024-07-06_132604.zip b/Schematics/apa102/apa102-backups/apa102-2024-07-06_132604.zip new file mode 100644 index 0000000..dbaea2b Binary files /dev/null and b/Schematics/apa102/apa102-backups/apa102-2024-07-06_132604.zip differ diff --git a/Schematics/apa102/apa102-backups/apa102-2024-07-06_133917.zip b/Schematics/apa102/apa102-backups/apa102-2024-07-06_133917.zip new file mode 100644 index 0000000..c00e0d5 Binary files /dev/null and b/Schematics/apa102/apa102-backups/apa102-2024-07-06_133917.zip differ diff --git a/Schematics/apa102/apa102-backups/apa102-2024-07-06_141023.zip b/Schematics/apa102/apa102-backups/apa102-2024-07-06_141023.zip new file mode 100644 index 0000000..8004249 Binary files /dev/null and b/Schematics/apa102/apa102-backups/apa102-2024-07-06_141023.zip differ diff --git a/Schematics/apa102/apa102-backups/apa102-2024-07-06_141926.zip b/Schematics/apa102/apa102-backups/apa102-2024-07-06_141926.zip new file mode 100644 index 0000000..7884b1d Binary files /dev/null and b/Schematics/apa102/apa102-backups/apa102-2024-07-06_141926.zip differ diff --git a/Schematics/apa102/apa102-backups/apa102-2024-07-20_124102.zip b/Schematics/apa102/apa102-backups/apa102-2024-07-20_124102.zip new file mode 100644 index 0000000..d809b65 Binary files /dev/null and b/Schematics/apa102/apa102-backups/apa102-2024-07-20_124102.zip differ diff --git a/Schematics/apa102/apa102-backups/apa102-2024-07-20_125310.zip b/Schematics/apa102/apa102-backups/apa102-2024-07-20_125310.zip new file mode 100644 index 0000000..e3d1256 Binary files /dev/null and b/Schematics/apa102/apa102-backups/apa102-2024-07-20_125310.zip differ diff --git a/Schematics/apa102/apa102.kicad_pcb b/Schematics/apa102/apa102.kicad_pcb new file mode 100644 index 0000000..30edadd --- /dev/null +++ b/Schematics/apa102/apa102.kicad_pcb @@ -0,0 +1,807 @@ +(kicad_pcb + (version 20240108) + (generator "pcbnew") + (generator_version "8.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + (setup + (pad_to_mask_clearance 0) + (allow_soldermask_bridges_in_footprints no) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref no) + (viasonmask no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plotreference yes) + (plotvalue yes) + (plotfptext yes) + (plotinvisibletext no) + (sketchpadsonfab no) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + (net 0 "") + (net 1 "Net-(D1-VDD)") + (net 2 "GND") + (net 3 "Net-(D6-CKO)") + (net 4 "Net-(D6-SDO)") + (net 5 "Net-(D7-CKO)") + (net 6 "Net-(D7-SDO)") + (net 7 "unconnected-(D8-SDO-Pad3)") + (net 8 "unconnected-(D8-CKO-Pad2)") + (footprint "LED_SMD:LED-APA102-2020" + (layer "F.Cu") + (uuid "5c8a8bd0-2357-4686-b679-03cc50a171c1") + (at 94.5 99.83) + (descr "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf") + (tags "LED RGB SPI") + (property "Reference" "D8" + (at 0 2.11 0) + (layer "F.SilkS") + (uuid "6424f17b-9c96-4432-bf05-af89884cfc75") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "APA102-2020" + (at 0 -2 0) + (layer "F.Fab") + (uuid "0a700d11-3313-4197-8f2d-5167bb5694b1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "LED_SMD:LED-APA102-2020" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2f21fd76-3d32-45e2-a8ac-d30c6e8a5b85") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "10e62be0-f2a0-46b5-958b-e0887c777e82") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "RGB LED with integrated controller" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2a3df3dc-a9da-4874-8344-f5c6c9ca4447") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "LED*APA102*") + (path "/cb77db74-6408-4c3a-9de6-a235c6315ba3") + (sheetname "Root") + (sheetfile "apa102.kicad_sch") + (attr smd) + (fp_line + (start -1.2 1.4) + (end -0.5 1.4) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ead060e8-3d4e-4b3b-8fe0-784c655836de") + ) + (fp_line + (start -1.5 -1.4) + (end -1.5 1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0b390e54-0038-4827-8fc2-0636fb722b6b") + ) + (fp_line + (start -1.5 -1.4) + (end -0.5 -1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "88c20712-b90f-4499-9578-eb6c658f023d") + ) + (fp_line + (start -0.5 -1.58) + (end 0.5 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cee97c1c-e1b8-4b60-833f-a5c0db26448d") + ) + (fp_line + (start -0.5 -1.4) + (end -0.5 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f428fd6e-277b-498c-9917-23314eb6d91a") + ) + (fp_line + (start -0.5 1.4) + (end -1.5 1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a95ee39f-3b70-4cb6-8a2a-e5f3f1db372c") + ) + (fp_line + (start -0.5 1.4) + (end -0.5 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "517ab81c-3947-4408-a491-22cb76f5ae21") + ) + (fp_line + (start -0.5 1.58) + (end 0.5 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e2d63510-e962-48c1-9ecb-209a76371a16") + ) + (fp_line + (start 0.5 -1.58) + (end 0.5 -1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "751ad433-d087-4fb0-b83a-3722d9bc32f8") + ) + (fp_line + (start 0.5 -1.4) + (end 1.5 -1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d0b13da5-fe79-4095-8c0d-fb063736137f") + ) + (fp_line + (start 0.5 1.58) + (end 0.5 1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fc8329f0-89d4-4a42-95bd-9f457ffe3c7f") + ) + (fp_line + (start 1.5 -1.4) + (end 1.5 1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9a87176d-e07d-4321-9f04-f567dd00143e") + ) + (fp_line + (start 1.5 1.4) + (end 0.5 1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "77734d48-0467-474d-b28b-f7ff1e4c486d") + ) + (fp_line + (start -1 -1) + (end 1 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a24f1a0b-c90c-4b1f-84fe-5ca37710acd6") + ) + (fp_line + (start -1 0.5) + (end -1 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4823a812-2050-46b7-9aef-670c653d7910") + ) + (fp_line + (start -1 0.5) + (end -0.5 1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "035d7049-70b0-408b-bd3b-176ec7ebce5f") + ) + (fp_line + (start 1 -1) + (end 1 1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "06572b9f-65d2-4039-98c2-4b2d37cb8c29") + ) + (fp_line + (start 1 1) + (end -0.5 1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9654e123-279c-4b05-9daa-9d53b944fe6f") + ) + (fp_text user "1" + (at -1.7 -0.9 0) + (layer "F.SilkS") + (uuid "a82728c3-6858-41ba-af09-5c2db3502755") + (effects + (font + (size 0.6 0.6) + (thickness 0.1) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "b02e584c-edee-41d8-b48e-61709dc27277") + (effects + (font + (size 0.3 0.3) + (thickness 0.07) + ) + ) + ) + (pad "1" smd rect + (at -0.85 -0.9) + (size 0.8 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "Net-(D1-VDD)") + (pinfunction "VDD") + (pintype "power_in") + (uuid "c36e1532-f7a0-4aa3-90bb-2461ed90c02d") + ) + (pad "1" smd rect + (at 0 -0.83 90) + (size 1 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "Net-(D1-VDD)") + (pinfunction "VDD") + (pintype "power_in") + (uuid "d974963c-b88f-4e48-a3dc-d6428791cae2") + ) + (pad "2" smd rect + (at -0.85 0) + (size 0.8 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 8 "unconnected-(D8-CKO-Pad2)") + (pinfunction "CKO") + (pintype "output") + (uuid "1c24b9ff-d11b-412c-9fb3-a467de47dadb") + ) + (pad "3" smd rect + (at -0.85 0.9) + (size 0.8 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "unconnected-(D8-SDO-Pad3)") + (pinfunction "SDO") + (pintype "output") + (uuid "f89178a9-c1a3-4196-8ef8-3545a04ec4db") + ) + (pad "4" smd rect + (at 0.85 0.9) + (size 0.8 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 6 "Net-(D7-SDO)") + (pinfunction "SDI") + (pintype "input") + (uuid "5321f9c2-2f5c-4140-b700-5b611c944c1b") + ) + (pad "5" smd rect + (at 0.85 0) + (size 0.8 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(D7-CKO)") + (pinfunction "CKI") + (pintype "input") + (uuid "367047a3-e622-48ee-a643-bb7453b1c1a0") + ) + (pad "6" smd rect + (at 0 0.59 90) + (size 1.48 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "8ba5c9f9-c93a-4f3b-9706-761d35393dd4") + ) + (pad "6" smd rect + (at 0.85 -0.9) + (size 0.8 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "d02f5e65-5ac6-4e67-be53-3a884df21ef6") + ) + (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED-APA102-2020.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "LED_SMD:LED-APA102-2020" + (layer "F.Cu") + (uuid "e000c12e-fcea-4d0c-9dd3-479dd651d8af") + (at 90.45 99.83) + (descr "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf") + (tags "LED RGB SPI") + (property "Reference" "D7" + (at 0 2.11 0) + (layer "F.SilkS") + (uuid "86331e1e-b291-465e-bc5f-40994b38984e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "APA102-2020" + (at 0 -2 0) + (layer "F.Fab") + (uuid "f86f3092-fbf7-4dbc-ad0b-d395ab61d869") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "LED_SMD:LED-APA102-2020" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c7623db0-9e54-4787-b6e2-4ce25600eb27") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0dd1c17a-0961-4d6e-bc78-c2d62a71ed4a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "RGB LED with integrated controller" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7735990c-242a-4457-8b13-9763eb9faffc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "LED*APA102*") + (path "/3bf27c39-f38a-4261-acc6-0e816311775c") + (sheetname "Root") + (sheetfile "apa102.kicad_sch") + (attr smd) + (fp_line + (start -1.2 1.4) + (end -0.5 1.4) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "52a973cf-203b-488d-aace-35c64d2c6f96") + ) + (fp_line + (start -1.5 -1.4) + (end -1.5 1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "aea499ba-ec93-4e5d-b7be-05a5270c987a") + ) + (fp_line + (start -1.5 -1.4) + (end -0.5 -1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "21ff15b6-98c7-46e0-9c8c-d716633f5915") + ) + (fp_line + (start -0.5 -1.58) + (end 0.5 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "61dea483-d9ff-46ae-8c02-348d786d9705") + ) + (fp_line + (start -0.5 -1.4) + (end -0.5 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7b68813d-4d46-4d0d-8437-5d23fa5cd4f4") + ) + (fp_line + (start -0.5 1.4) + (end -1.5 1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2627f018-4151-4352-8358-f571b6b3b12c") + ) + (fp_line + (start -0.5 1.4) + (end -0.5 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9a5e75b1-bbb1-47c9-bd68-77d7ba25b3c3") + ) + (fp_line + (start -0.5 1.58) + (end 0.5 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b2aae1ee-1bd4-46fc-8217-d446e0c60951") + ) + (fp_line + (start 0.5 -1.58) + (end 0.5 -1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "43557d8d-e895-4d73-804b-b52a762a4270") + ) + (fp_line + (start 0.5 -1.4) + (end 1.5 -1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b893a483-eedd-431e-83ac-524a26f4fa69") + ) + (fp_line + (start 0.5 1.58) + (end 0.5 1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "33dddeab-62f9-40fa-aded-74c90335022d") + ) + (fp_line + (start 1.5 -1.4) + (end 1.5 1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4f0e59e9-d3f9-4949-a1a0-bd68e791f004") + ) + (fp_line + (start 1.5 1.4) + (end 0.5 1.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "aa2ef119-4bc2-4659-8bc6-b8f092e14feb") + ) + (fp_line + (start -1 -1) + (end 1 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7ccc39c0-00bd-4e37-be14-98c812e6d225") + ) + (fp_line + (start -1 0.5) + (end -1 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5d7e753f-b85a-44c9-a032-c38208a75e34") + ) + (fp_line + (start -1 0.5) + (end -0.5 1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fd730a25-a818-4544-8925-d5345ab29b59") + ) + (fp_line + (start 1 -1) + (end 1 1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c6ba57b4-89bf-49a2-b13f-6242fada88de") + ) + (fp_line + (start 1 1) + (end -0.5 1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b92450a6-8f5a-4f9f-a396-454df3446ef2") + ) + (fp_text user "1" + (at -1.7 -0.9 0) + (layer "F.SilkS") + (uuid "c8d203da-be32-4bb5-a7b0-dcf5cf69ce11") + (effects + (font + (size 0.6 0.6) + (thickness 0.1) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "b8117aea-c827-43f9-bc18-add532165e4d") + (effects + (font + (size 0.3 0.3) + (thickness 0.07) + ) + ) + ) + (pad "1" smd rect + (at -0.85 -0.9) + (size 0.8 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "Net-(D1-VDD)") + (pinfunction "VDD") + (pintype "power_in") + (uuid "d49067c9-547a-4097-a553-d6df5cf13151") + ) + (pad "1" smd rect + (at 0 -0.83 90) + (size 1 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "Net-(D1-VDD)") + (pinfunction "VDD") + (pintype "power_in") + (uuid "1f233c23-25d2-4b31-973c-b7f989c4e29b") + ) + (pad "2" smd rect + (at -0.85 0) + (size 0.8 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "Net-(D7-CKO)") + (pinfunction "CKO") + (pintype "output") + (uuid "53f687c4-ec36-415a-9370-5b033d9b095d") + ) + (pad "3" smd rect + (at -0.85 0.9) + (size 0.8 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 6 "Net-(D7-SDO)") + (pinfunction "SDO") + (pintype "output") + (uuid "444ded08-31b3-4dc4-8a6d-b134f22fa26a") + ) + (pad "4" smd rect + (at 0.85 0.9) + (size 0.8 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "Net-(D6-SDO)") + (pinfunction "SDI") + (pintype "input") + (uuid "1cd9a710-6b1d-47c4-8fd0-6a02d610fda6") + ) + (pad "5" smd rect + (at 0.85 0) + (size 0.8 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "Net-(D6-CKO)") + (pinfunction "CKI") + (pintype "input") + (uuid "df79c821-deb9-4b2a-aef0-3c23b8ebdd5c") + ) + (pad "6" smd rect + (at 0 0.59 90) + (size 1.48 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "934085be-0da7-4198-a6a5-4986f0b7d5b3") + ) + (pad "6" smd rect + (at 0.85 -0.9) + (size 0.8 0.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "a59ed716-2642-469a-9014-6f372199f76e") + ) + (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED-APA102-2020.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) +) diff --git a/Schematics/apa102/apa102.kicad_prl b/Schematics/apa102/apa102.kicad_prl new file mode 100644 index 0000000..a227413 --- /dev/null +++ b/Schematics/apa102/apa102.kicad_prl @@ -0,0 +1,83 @@ +{ + "board": { + "active_layer": 0, + "active_layer_preset": "All Layers", + "auto_track_width": true, + "hidden_netclasses": [], + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "images": 0.6, + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": false, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36, + 39, + 40 + ], + "visible_layers": "fffffff_ffffffff", + "zone_display_mode": 0 + }, + "git": { + "repo_password": "", + "repo_type": "", + "repo_username": "", + "ssh_key": "" + }, + "meta": { + "filename": "apa102.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/Schematics/apa102/apa102.kicad_pro b/Schematics/apa102/apa102.kicad_pro new file mode 100644 index 0000000..4bafa4f --- /dev/null +++ b/Schematics/apa102/apa102.kicad_pro @@ -0,0 +1,584 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "apply_defaults_to_fp_fields": false, + "apply_defaults_to_fp_shapes": false, + "apply_defaults_to_fp_text": false, + "board_outline_line_width": 0.05, + "copper_line_width": 0.2, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.05, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.1, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.1, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.1, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.1, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.25 + } + }, + "diff_pair_dimensions": [], + "drc_exclusions": [], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_symbol_mismatch": "warning", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_near_hole": "error", + "holes_co_located": "warning", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "max_error": 0.005, + "min_clearance": 0.0, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.5, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.1, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.8, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.0, + "min_via_annular_width": 0.1, + "min_via_diameter": 0.5, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_onpadsmd": true, + "td_onroundshapesonly": false, + "td_ontrackend": false, + "td_onviapad": true + } + ], + "teardrop_parameters": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [], + "tuning_pattern_settings": { + "diff_pair_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 1.0 + }, + "diff_pair_skew_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + }, + "single_track_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + } + }, + "via_dimensions": [], + "zones_allow_external_fillets": false + }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "conflicting_netclasses": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "simulation_model_issue": "ignore", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "apa102.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.2, + "via_diameter": 0.6, + "via_drill": 0.3, + "wire_width": 6 + } + ], + "meta": { + "version": 3 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "plot": "", + "pos_files": "", + "specctra_dsn": "", + "step": "", + "svg": "SVG/", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "bom_export_filename": "", + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": false, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + } + ], + "filter_string": "", + "group_symbols": true, + "name": "Grouped By Value", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "page_layout_descr_file": "", + "plot_directory": "", + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_dissipations": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "27d1add3-dfba-4d00-9720-939dd78e870a", + "Root" + ] + ], + "text_variables": {} +} diff --git a/Schematics/apa102/apa102.kicad_sch b/Schematics/apa102/apa102.kicad_sch new file mode 100644 index 0000000..c4bdf04 --- /dev/null +++ b/Schematics/apa102/apa102.kicad_sch @@ -0,0 +1,2915 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "27d1add3-dfba-4d00-9720-939dd78e870a") + (paper "A4") + (lib_symbols + (symbol "Connector:Conn_01x03_Socket" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x03_Socket_1_1" + (arc + (start 0 -2.032) + (mid -0.5058 -2.54) + (end 0 -3.048) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -2.54) (xy -0.508 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy -0.508 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 2.54) (xy -0.508 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 0.508) + (mid -0.5058 0) + (end 0 -0.508) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 3.048) + (mid -0.5058 2.54) + (end 0 2.032) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:Conn_01x04_Socket" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x04_Socket" + (at 0 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x04_Socket_1_1" + (arc + (start 0 -4.572) + (mid -0.5058 -5.08) + (end 0 -5.588) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -2.032) + (mid -0.5058 -2.54) + (end 0 -3.048) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -5.08) (xy -0.508 -5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -2.54) (xy -0.508 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy -0.508 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 2.54) (xy -0.508 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 0.508) + (mid -0.5058 0) + (end 0 -0.508) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 3.048) + (mid -0.5058 2.54) + (end 0 2.032) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:RotaryEncoder_Switch" + (pin_names + (offset 0.254) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "SW" + (at 0 6.604 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RotaryEncoder_Switch" + (at 0 -6.604 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -3.81 4.064 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 6.604 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Rotary encoder, dual channel, incremental quadrate outputs, with switch" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "rotary switch encoder switch push button" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "RotaryEncoder*Switch*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "RotaryEncoder_Switch_0_1" + (rectangle + (start -5.08 5.08) + (end 5.08 -5.08) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (circle + (center -3.81 0) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -0.381 0) + (radius 1.905) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -0.381 2.667) + (mid -3.0988 -0.0635) + (end -0.381 -2.794) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.635 -1.778) (xy -0.635 1.778) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.381 -1.778) (xy -0.381 1.778) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.127 1.778) (xy -0.127 -1.778) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 0) (xy 3.429 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 1.016) (xy 3.81 -1.016) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -2.54) (xy -3.81 -2.54) (xy -3.81 -2.032) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 2.54) (xy -3.81 2.54) (xy -3.81 2.032) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 -3.048) (xy -0.508 -2.794) (xy 0.127 -2.413) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 2.921) (xy -0.508 2.667) (xy 0.127 2.286) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 -2.54) (xy 4.318 -2.54) (xy 4.318 -1.016) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 2.54) (xy 4.318 2.54) (xy 4.318 1.016) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 0) (xy -3.81 0) (xy -3.81 -1.016) (xy -3.302 -2.032) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -4.318 0) (xy -3.81 0) (xy -3.81 1.016) (xy -3.302 2.032) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 4.318 -1.016) + (radius 0.127) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 4.318 1.016) + (radius 0.127) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "RotaryEncoder_Switch_1_1" + (pin passive line + (at -7.62 2.54 0) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -7.62 -2.54 0) + (length 2.54) + (name "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -7.62 0 0) + (length 2.54) + (name "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 2.54 180) + (length 2.54) + (name "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -2.54 180) + (length 2.54) + (name "S2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "LED:APA102-2020" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 5.08 5.715 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + ) + (property "Value" "APA102-2020" + (at 1.27 -5.715 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (property "Footprint" "LED_SMD:LED-APA102-2020" + (at 1.27 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf" + (at 2.54 -9.525 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "RGB LED with integrated controller" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "RGB LED addressable 8bit pwm 5bit greyscale" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "LED*APA102*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "APA102-2020_0_0" + (text "RGB" + (at 2.286 -4.191 0) + (effects + (font + (size 0.762 0.762) + ) + ) + ) + ) + (symbol "APA102-2020_0_1" + (polyline + (pts + (xy 1.27 -3.556) (xy 1.778 -3.556) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -2.54) (xy 1.778 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.699 -3.556) (xy 2.667 -3.556) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.286 -2.54) (xy 1.27 -3.556) (xy 1.27 -3.048) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.286 -1.524) (xy 1.27 -2.54) (xy 1.27 -2.032) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.683 -1.016) (xy 3.683 -3.556) (xy 3.683 -4.064) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.699 -1.524) (xy 2.667 -1.524) (xy 3.683 -3.556) (xy 4.699 -1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 5.08 5.08) + (end -5.08 -5.08) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "APA102-2020_1_1" + (pin power_in line + (at 0 7.62 270) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 7.62 0 180) + (length 2.54) + (name "CKO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 7.62 2.54 180) + (length 2.54) + (name "SDO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 2.54 0) + (length 2.54) + (name "SDI" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 0 0) + (length 2.54) + (name "CKI" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -7.62 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 88.9 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "080b5e6a-d9a5-413b-93ff-0272977f6a06") + ) + (junction + (at 203.2 77.47) + (diameter 0) + (color 0 0 0 0) + (uuid "1384669f-cb37-4e64-b867-874a9a052092") + ) + (junction + (at 128.27 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "2a3cacee-1d79-4ca1-b1aa-0e847ccc684c") + ) + (junction + (at 203.2 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "36464213-4240-42b0-911e-3b1926ea391b") + ) + (junction + (at 109.22 77.47) + (diameter 0) + (color 0 0 0 0) + (uuid "3978591c-927e-4502-8a6a-d963bac3d037") + ) + (junction + (at 166.37 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "3bd91a84-04cc-4f6d-bbcc-bcb3cfcaf232") + ) + (junction + (at 184.15 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "40ae439f-4fe7-43ed-a27b-8eb54d64c20c") + ) + (junction + (at 147.32 77.47) + (diameter 0) + (color 0 0 0 0) + (uuid "53241a85-03be-4c87-9e97-952551d90343") + ) + (junction + (at 184.15 77.47) + (diameter 0) + (color 0 0 0 0) + (uuid "62894707-3780-4730-bfa8-bd02de268940") + ) + (junction + (at 166.37 77.47) + (diameter 0) + (color 0 0 0 0) + (uuid "7aa5bfc7-bc14-45d7-9102-767b529428f8") + ) + (junction + (at 109.22 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "8036c470-84f4-48ff-8925-9207d0d93917") + ) + (junction + (at 128.27 77.47) + (diameter 0) + (color 0 0 0 0) + (uuid "b1920b71-4ee6-4673-a093-5973b029c4d0") + ) + (junction + (at 147.32 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "b41b65ae-3a12-4658-aa6a-a844ac060e4a") + ) + (junction + (at 88.9 77.47) + (diameter 0) + (color 0 0 0 0) + (uuid "c36d5ead-b659-4514-b1ee-5a639e79562d") + ) + (junction + (at 74.93 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "f69cbe4e-27d4-4e34-89a0-fb4b344294f8") + ) + (wire + (pts + (xy 72.39 106.68) (xy 72.39 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "098d2e09-2ce3-4479-8d3b-e6c41f29f9ce") + ) + (wire + (pts + (xy 116.84 82.55) (xy 120.65 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0c6eaf59-ef51-4438-b763-3613183f4dfb") + ) + (wire + (pts + (xy 72.39 109.22) (xy 80.01 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0e06ac46-417c-456d-a609-facbf725586e") + ) + (wire + (pts + (xy 81.28 86.36) (xy 81.28 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "15d9905d-f102-4d98-b489-1aa78d9a98f4") + ) + (wire + (pts + (xy 147.32 92.71) (xy 166.37 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1c018bac-fdb1-4a28-8bc9-e819ee111df9") + ) + (wire + (pts + (xy 154.94 82.55) (xy 158.75 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1d069e53-fe10-4e27-bdd9-4c6a82390ed7") + ) + (wire + (pts + (xy 128.27 92.71) (xy 147.32 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "25176446-2d4a-43db-9a15-fb38ad95bb39") + ) + (wire + (pts + (xy 74.93 80.01) (xy 74.93 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2d26a48d-2db1-4438-b904-5fb8c1091e42") + ) + (wire + (pts + (xy 74.93 77.47) (xy 88.9 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2dea8775-bb52-4715-8dd6-86088cf08fe4") + ) + (wire + (pts + (xy 69.85 82.55) (xy 62.23 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "32ec7a4d-a207-4ffe-9786-c4cb1c5c4065") + ) + (wire + (pts + (xy 99.06 116.84) (xy 99.06 104.14) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3343f239-b1ed-4f73-b9a8-b856b86ca247") + ) + (wire + (pts + (xy 109.22 77.47) (xy 128.27 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3c99cfe3-43f4-430f-bb4a-c47a94e00f9a") + ) + (wire + (pts + (xy 166.37 77.47) (xy 184.15 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3d13f061-38f1-4d39-a958-2225fd3c289a") + ) + (wire + (pts + (xy 69.85 87.63) (xy 74.93 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4287d253-8567-45a5-8468-b60774d77cff") + ) + (wire + (pts + (xy 96.52 82.55) (xy 101.6 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "47aed1e4-86be-401a-8a2b-daae46fea0e0") + ) + (wire + (pts + (xy 135.89 82.55) (xy 139.7 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4b774f20-db19-4bef-b9d7-168579591d3c") + ) + (wire + (pts + (xy 62.23 86.36) (xy 81.28 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "520f4c28-8fbb-4ede-bfb2-55b7d2c245f3") + ) + (wire + (pts + (xy 210.82 85.09) (xy 214.63 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5a2460e2-1386-41da-a719-2a0cb01bd128") + ) + (wire + (pts + (xy 67.31 116.84) (xy 99.06 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5c61778d-1591-4ada-96da-6d2a5ca30921") + ) + (wire + (pts + (xy 116.84 85.09) (xy 120.65 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5c876b24-beec-48e7-912d-8bb545e3d048") + ) + (wire + (pts + (xy 147.32 77.47) (xy 166.37 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "61e5fb8a-9c21-4a70-893a-0faaee1293d5") + ) + (wire + (pts + (xy 210.82 82.55) (xy 214.63 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "66acdc56-a18b-4f3b-89ba-16059a5b79d4") + ) + (wire + (pts + (xy 88.9 92.71) (xy 109.22 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7934a059-bcfe-4996-8420-3c3a30995512") + ) + (wire + (pts + (xy 73.66 85.09) (xy 73.66 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7a6aff7c-df24-477c-9e34-937e90a557c9") + ) + (wire + (pts + (xy 135.89 85.09) (xy 139.7 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "81068dc2-8517-4f52-b604-c91e736c7751") + ) + (wire + (pts + (xy 184.15 92.71) (xy 203.2 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "82526731-513b-4539-b31b-57e509a55a98") + ) + (wire + (pts + (xy 67.31 106.68) (xy 72.39 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8298bce0-4e14-427f-9eee-9f49be50301d") + ) + (wire + (pts + (xy 203.2 92.71) (xy 222.25 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8e13f103-97bd-4191-86cc-a6d28f8cc783") + ) + (wire + (pts + (xy 128.27 77.47) (xy 147.32 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8e83f782-da6a-4745-a7ec-53a0d354c109") + ) + (wire + (pts + (xy 173.99 85.09) (xy 176.53 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8f507275-b260-46c4-879d-52e5e29d4e41") + ) + (wire + (pts + (xy 76.2 106.68) (xy 80.01 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "901f8de6-e2cb-4f39-9c77-162d0129157e") + ) + (wire + (pts + (xy 109.22 92.71) (xy 128.27 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "950b01c6-01d2-47c4-905b-aba525c6c120") + ) + (wire + (pts + (xy 154.94 85.09) (xy 158.75 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9d190e66-4877-4977-b3d7-93a42a60e050") + ) + (wire + (pts + (xy 191.77 82.55) (xy 195.58 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a30f7f4f-ffa0-401e-8f4f-6deb868cd409") + ) + (wire + (pts + (xy 203.2 77.47) (xy 222.25 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ac65e53a-e87c-482b-978a-66a16ca589bf") + ) + (wire + (pts + (xy 191.77 85.09) (xy 195.58 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b5a93772-7e99-45b8-8e19-3041067fa010") + ) + (wire + (pts + (xy 173.99 82.55) (xy 176.53 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bb9de755-978f-48b0-8ce4-90059a571424") + ) + (wire + (pts + (xy 99.06 104.14) (xy 95.25 104.14) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bc8a8e2c-3b16-4d8e-83c3-db0936f7213e") + ) + (wire + (pts + (xy 166.37 92.71) (xy 184.15 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bd0a7208-2c94-4989-9257-645da65dbdaf") + ) + (wire + (pts + (xy 67.31 104.14) (xy 80.01 104.14) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bd994160-bd70-45ab-bfa5-ce236da9b4d5") + ) + (wire + (pts + (xy 73.66 82.55) (xy 81.28 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bdb94aab-8f10-40dc-a8ca-daa37af2f83c") + ) + (wire + (pts + (xy 69.85 85.09) (xy 73.66 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c2827cd4-d9d4-4eed-b0c8-3f68074300ef") + ) + (wire + (pts + (xy 67.31 109.22) (xy 67.31 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8cd7946-bd72-4101-9106-be56ce80c0ac") + ) + (wire + (pts + (xy 88.9 77.47) (xy 109.22 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d5a6d86e-cd91-4a7b-bf3d-d879c320da3b") + ) + (wire + (pts + (xy 184.15 77.47) (xy 203.2 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d5ae5b25-4147-44bc-931e-b8b73c212270") + ) + (wire + (pts + (xy 74.93 92.71) (xy 88.9 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e1189198-694b-4a96-b388-cf257c84f93b") + ) + (wire + (pts + (xy 62.23 82.55) (xy 62.23 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e6168b5d-98b2-4117-80b2-eb05e85355c8") + ) + (wire + (pts + (xy 74.93 87.63) (xy 74.93 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ebadf73f-4b0e-4fd0-8391-2e92b5df7327") + ) + (wire + (pts + (xy 96.52 85.09) (xy 101.6 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ed6a0ada-bffa-4d5d-90b0-42876df18add") + ) + (wire + (pts + (xy 69.85 80.01) (xy 74.93 80.01) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f4945dc0-30df-468e-9e9b-2725561939ba") + ) + (symbol + (lib_id "Connector:Conn_01x04_Socket") + (at 64.77 85.09 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "00064344-d882-4e17-b10f-cbbd9ce899d4") + (property "Reference" "J1" + (at 65.405 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x04_Socket" + (at 65.405 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 64.77 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 64.77 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 64.77 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "7caccc98-166e-43cd-b07b-7a798818d653") + ) + (pin "2" + (uuid "a8b8fc02-3d10-4de0-a754-4e84bb0e0c11") + ) + (pin "4" + (uuid "d3d866d6-b0e5-4bf8-952d-16b7b8b8c9d8") + ) + (pin "1" + (uuid "596112f9-7ab8-4c22-9239-733b05ae8698") + ) + (instances + (project "" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "J1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "LED:APA102-2020") + (at 166.37 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "11427144-9b8d-4e65-a833-716cee0d39c9") + (property "Reference" "D5" + (at 168.5641 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "APA102-2020" + (at 168.5641 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "LED_SMD:LED-APA102-2020" + (at 167.64 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf" + (at 168.91 94.615 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "RGB LED with integrated controller" + (at 166.37 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "5" + (uuid "2328c5ae-44e5-4733-8823-f1868145987e") + ) + (pin "4" + (uuid "2ef96aa4-a747-4c80-bf61-263dfc20a4a6") + ) + (pin "3" + (uuid "fa3154ac-fb91-482d-81f1-9c696348f1c8") + ) + (pin "2" + (uuid "bbbdb1ce-a89e-4281-867d-83904f3827c0") + ) + (pin "6" + (uuid "3bb089d0-2618-4a67-bb58-45c6581466dd") + ) + (pin "1" + (uuid "866c5df2-464a-418c-be94-2fd5f2b58834") + ) + (instances + (project "apa102" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "D5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 74.93 92.71 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "204ceccf-2390-458b-807a-4ee365f1a728") + (property "Reference" "#PWR01" + (at 74.93 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 74.93 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 74.93 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 74.93 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 74.93 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "24f0bb5d-89a2-4e13-a8b8-2600d487eda4") + ) + (instances + (project "" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "LED:APA102-2020") + (at 203.2 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3bf27c39-f38a-4261-acc6-0e816311775c") + (property "Reference" "D7" + (at 205.3941 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "APA102-2020" + (at 205.3941 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "LED_SMD:LED-APA102-2020" + (at 204.47 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf" + (at 205.74 94.615 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "RGB LED with integrated controller" + (at 203.2 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "5" + (uuid "fd33e4da-0edc-429b-a75f-0ac57b4c1192") + ) + (pin "4" + (uuid "98c9474d-c95f-48ae-906c-9e025616b9f9") + ) + (pin "3" + (uuid "4acbb21c-ce8a-40d4-b99d-ab655b0c5745") + ) + (pin "2" + (uuid "00229df9-2dc9-4255-adf2-c29ae0913696") + ) + (pin "6" + (uuid "c321f028-6f06-4334-b0cd-124ff0a811fa") + ) + (pin "1" + (uuid "4cd7ceee-12ae-4c5a-8388-0517baf9fd1b") + ) + (instances + (project "apa102" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "D7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:RotaryEncoder_Switch") + (at 87.63 106.68 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "400a6efb-2e28-4da1-8b76-2e49205fc947") + (property "Reference" "SW1" + (at 87.63 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RotaryEncoder_Switch" + (at 87.63 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Rotary_Encoder:RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm" + (at 83.82 102.616 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 87.63 100.076 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Rotary encoder, dual channel, incremental quadrate outputs, with switch" + (at 87.63 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "S1" + (uuid "855e8abc-c1c8-460a-9b90-2eee74598342") + ) + (pin "S2" + (uuid "2c9a4ed8-ddb5-4125-9a10-c4b94b90d668") + ) + (pin "A" + (uuid "d3ea202d-00d6-4981-b4b3-0c3e3f3c2a6a") + ) + (pin "B" + (uuid "07353b30-caba-40fb-888d-5a3e0fe47927") + ) + (pin "C" + (uuid "91cfb010-dd69-445b-9d33-4dd9487a6eb4") + ) + (instances + (project "" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "SW1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "LED:APA102-2020") + (at 184.15 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "6702b54d-b7ba-4f48-83dc-f17989ba2dd5") + (property "Reference" "D6" + (at 186.3441 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "APA102-2020" + (at 186.3441 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "LED_SMD:LED-APA102-2020" + (at 185.42 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf" + (at 186.69 94.615 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "RGB LED with integrated controller" + (at 184.15 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "5" + (uuid "bb96f292-19ce-4821-9b44-b52b7375a9ea") + ) + (pin "4" + (uuid "45edad30-9c82-4a58-b2d7-37f4fe4a14a0") + ) + (pin "3" + (uuid "410ab0cd-2bf6-4aba-adce-dcc0ce2feddd") + ) + (pin "2" + (uuid "c35f3e0c-a5be-4dbe-985c-8bc91bf35cea") + ) + (pin "6" + (uuid "d14f2650-e618-47de-aa33-330d3e611c8e") + ) + (pin "1" + (uuid "cd9d9aef-00c1-4588-8085-aeb33c2c5f89") + ) + (instances + (project "apa102" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "D6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "LED:APA102-2020") + (at 109.22 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8b75ce91-e4cb-4b91-88af-ef604005e755") + (property "Reference" "D2" + (at 111.4141 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "APA102-2020" + (at 111.4141 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "LED_SMD:LED-APA102-2020" + (at 110.49 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf" + (at 111.76 94.615 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "RGB LED with integrated controller" + (at 109.22 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "5" + (uuid "ff8e9912-6176-48d0-a4ff-115137f4a3a1") + ) + (pin "6" + (uuid "0f27be87-2033-403d-8c6b-6c743edec5f5") + ) + (pin "2" + (uuid "fda4d3b8-66dd-4c97-bdc3-5ef989ffd168") + ) + (pin "1" + (uuid "21560912-d4d5-4b6f-9806-7fbdfb126d57") + ) + (pin "3" + (uuid "c82425da-c4b3-4952-8842-bb0a1e13efcc") + ) + (pin "4" + (uuid "7ecc648b-7a27-4eb5-93c0-0d3518cd04b7") + ) + (instances + (project "" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "D2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "LED:APA102-2020") + (at 88.9 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9dcb0267-47d6-44d7-be68-c273add80f5d") + (property "Reference" "D1" + (at 91.0941 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "APA102-2020" + (at 91.0941 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "LED_SMD:LED-APA102-2020" + (at 90.17 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf" + (at 91.44 94.615 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "RGB LED with integrated controller" + (at 88.9 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "25149b77-aa9a-42a9-addc-991d2fbe9150") + ) + (pin "4" + (uuid "8dc9a24c-3790-4424-8fec-95a8c105262c") + ) + (pin "3" + (uuid "82307b19-f208-4f38-8159-088c61e9eb07") + ) + (pin "5" + (uuid "d9e294ee-c675-4b36-b498-37230cd651ec") + ) + (pin "2" + (uuid "a12f27b8-c3d3-4aa3-bfa4-062fab49e42d") + ) + (pin "6" + (uuid "b2e134c0-ad0b-4932-94c6-9b80e865b929") + ) + (instances + (project "" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "D1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 95.25 109.22 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a3e1efd8-154b-40b9-ba27-3676392a9cfc") + (property "Reference" "#PWR02" + (at 95.25 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 95.25 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 95.25 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 95.25 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 95.25 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4eb19b7c-2403-40c5-b27d-c57b7f658213") + ) + (instances + (project "apa102" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Socket") + (at 62.23 106.68 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a5be2936-213b-4c83-aaf7-e64411db5dc3") + (property "Reference" "J2" + (at 60.96 107.9501 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 60.96 105.4101 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical" + (at 62.23 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 62.23 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 62.23 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "5eeff5cb-b660-43ae-b266-ef82968dbec4") + ) + (pin "3" + (uuid "f59a4d51-9b55-45b7-a49a-7bf716d4e676") + ) + (pin "1" + (uuid "426a134e-6531-48c1-8b61-be1c3e68281a") + ) + (instances + (project "" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "J2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 76.2 106.68 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b0f3da3c-da32-437a-ae92-9c9847287ae7") + (property "Reference" "#PWR03" + (at 76.2 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 76.708 112.014 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 76.2 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 76.2 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 76.2 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "30c13d3e-2c14-4533-8bc5-3c6efd7eb225") + ) + (instances + (project "apa102" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "LED:APA102-2020") + (at 222.25 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "cb77db74-6408-4c3a-9de6-a235c6315ba3") + (property "Reference" "D8" + (at 224.4441 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "APA102-2020" + (at 224.4441 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "LED_SMD:LED-APA102-2020" + (at 223.52 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf" + (at 224.79 94.615 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "RGB LED with integrated controller" + (at 222.25 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "5" + (uuid "bc11cde7-2e70-4454-9e94-df4da476f1b5") + ) + (pin "4" + (uuid "0891b83f-ebdd-406b-9167-829c3b63c5d7") + ) + (pin "3" + (uuid "a34afbd1-57da-44f6-bed1-4e55c8bf47bb") + ) + (pin "2" + (uuid "5d36237a-71b1-4418-9899-3c056cb69598") + ) + (pin "6" + (uuid "c0469b02-4ad5-4584-9c32-43beb3fef073") + ) + (pin "1" + (uuid "d09c7e4b-24a2-4396-8757-94539082d762") + ) + (instances + (project "apa102" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "D8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "LED:APA102-2020") + (at 128.27 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "cd04ed0e-c2d3-4613-8761-48a420f8f639") + (property "Reference" "D3" + (at 130.4641 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "APA102-2020" + (at 130.4641 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "LED_SMD:LED-APA102-2020" + (at 129.54 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf" + (at 130.81 94.615 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "RGB LED with integrated controller" + (at 128.27 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "5" + (uuid "91f6108a-0a4c-44d8-8152-94bd2120fbfa") + ) + (pin "4" + (uuid "ac6eaa40-7a1c-47e5-b8e3-76542ab02a5a") + ) + (pin "3" + (uuid "829bb060-80ba-4d33-89f2-01f1d70f5550") + ) + (pin "2" + (uuid "23a50f4c-e3ab-4a5a-be9e-157b9cf34113") + ) + (pin "6" + (uuid "4a1edb7c-a5a0-41eb-9fb2-e4c506303304") + ) + (pin "1" + (uuid "e1169c3b-6f66-4907-a370-049c5d8e0ee9") + ) + (instances + (project "" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "D3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "LED:APA102-2020") + (at 147.32 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "eab66253-045b-4bb2-bc88-0af8c4a2ea7f") + (property "Reference" "D4" + (at 149.5141 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "APA102-2020" + (at 149.5141 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "LED_SMD:LED-APA102-2020" + (at 148.59 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf" + (at 149.86 94.615 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "RGB LED with integrated controller" + (at 147.32 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "5" + (uuid "2f2129be-0f8e-4f6f-ac6c-39c0457391a0") + ) + (pin "4" + (uuid "0aca3c26-c928-4c47-b990-883f78066843") + ) + (pin "3" + (uuid "d5f63d92-304c-4e3f-9889-d6d1160f3b42") + ) + (pin "2" + (uuid "a2de88c0-5ddf-4a21-803f-326dd0cd9d8a") + ) + (pin "6" + (uuid "de73f79d-9d3a-4bb2-90d1-83443e0723f5") + ) + (pin "1" + (uuid "ed222fb8-aeb2-4772-8e31-b37837cb9780") + ) + (instances + (project "apa102" + (path "/27d1add3-dfba-4d00-9720-939dd78e870a" + (reference "D4") + (unit 1) + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) +) diff --git a/Schematics/apa102/fp-info-cache b/Schematics/apa102/fp-info-cache new file mode 100644 index 0000000..3964137 --- /dev/null +++ b/Schematics/apa102/fp-info-cache @@ -0,0 +1,96895 @@ +23716028047202287 +Audio_Module +Reverb_BTDR-1H +Digital Reverberation Unit, http://www.belton.co.kr/inc/downfile.php?seq=17&file=pdf (footprint from http://www.uk-electronic.de/PDF/BTDR-1.pdf) +audio belton reverb +0 +7 +7 +Audio_Module +Reverb_BTDR-1V +Digital Reverberation Unit, http://www.belton.co.kr/inc/downfile.php?seq=17&file=pdf (footprint from http://www.uk-electronic.de/PDF/BTDR-1.pdf) +audio belton reverb +0 +7 +7 +Battery +BatteryClip_Keystone_54_D16-19mm +Battery clip for batteries with a diameter between 16-19 mm: https://www.keyelco.com/product.cfm/product_id/826 +battery clip 18650 18350 17350 CR123A 2/3A +0 +3 +1 +Battery +BatteryHolder_Bulgin_BX0036_1xC +Bulgin Battery Holder, BX0036, Battery Type C (https://www.bulgin.com/products/pub/media/bulgin/data/Battery_holders.pdf) +Bulgin BX0036 +0 +2 +2 +Battery +BatteryHolder_ComfortableElectronic_CH273-2450_1x2450 +Comfortable Electronic CR2450 battery holder, http://www.comf.com.tw/ProductDetail.asp?no=148 +Comfortable Electronic CR2450 +0 +2 +2 +Battery +BatteryHolder_Eagle_12BH611-GR +https://eu.mouser.com/datasheet/2/209/EPD-200766-1274481.pdf +9V Battery Holder +0 +2 +2 +Battery +BatteryHolder_Keystone_103_1x20mm +http://www.keyelco.com/product-pdf.cfm?p=719 +Keystone type 103 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_104_1x23mm +http://www.keyelco.com/product-pdf.cfm?p=744 +Keystone type 104 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_105_1x2430 +http://www.keyelco.com/product-pdf.cfm?p=745 +Keystone type 105 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_106_1x20mm +http://www.keyelco.com/product-pdf.cfm?p=720 +Keystone type 106 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_107_1x23mm +http://www.keyelco.com/product-pdf.cfm?p=746 +Keystone type 107 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_500 +Keystone #500, 12mm CR1220 battery holder, http://www.keyelco.com/product-pdf.cfm?p=710 +CR1220 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_590 +AA CR2 A battery holder with leaf spring, Keystone, https://ken.keyeuro.eu/cat/590.pdf +AA battery holder Keystone +0 +3 +1 +Battery +BatteryHolder_Keystone_1042_1x18650 +Battery holder for 18650 cylindrical cells http://www.keyelco.com/product.cfm/product_id/918 +18650 Keystone 1042 Li-ion +0 +2 +2 +Battery +BatteryHolder_Keystone_1057_1x2032 +SMT (Auto-In/Ultra-Low) Holder for 2032 Cell, 33.2 x 23.9mm, 2mm height above PCB, https://www.keyelco.com/userAssets/file/M65p4.pdf +Keystone type 1057 coin cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_1058_1x2032 +http://www.keyelco.com/product-pdf.cfm?p=14028 +Keystone type 1058 coin cell retainer +0 +2 +2 +Battery +BatteryHolder_Keystone_1060_1x2032 +http://www.keyelco.com/product-pdf.cfm?p=726 +CR2032 BR2032 BatteryHolder Battery +0 +2 +2 +Battery +BatteryHolder_Keystone_2460_1xAA +https://www.keyelco.com/product-pdf.cfm?p=1025 +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_2462_2xAA +2xAA cell battery holder, Keystone P/N 2462, https://www.keyelco.com/product-pdf.cfm?p=1027 +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_2466_1xAAA +1xAAA Battery Holder, Keystone, Plastic Case, http://www.keyelco.com/product-pdf.cfm?p=1031 +AAA battery holder Keystone +0 +2 +2 +Battery +BatteryHolder_Keystone_2468_2xAAA +2xAAA cell battery holder, Keystone P/N 2468, http://www.keyelco.com/product-pdf.cfm?p=1033 +AAA battery cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_2479_3xAAA +Keystone Battery Holder, 2479, Battery Type 3xAAA (Script generated with StandardBox.py) (Keystone Battery Holder, 2479, Battery Type 3xAAA) +Keystone Battery Holder 2479 Battery Type 3xAAA +0 +2 +2 +Battery +BatteryHolder_Keystone_2993 +http://www.keyelco.com/product-pdf.cfm?p=776 +Keystone type 2993 negative battery contact +0 +1 +1 +Battery +BatteryHolder_Keystone_2998_1x6.8mm +www.keyelco.com/product-pdf.cfm?p=763 +Keystone type 2998 battery holder +0 +3 +2 +Battery +BatteryHolder_Keystone_3000_1x12mm +http://www.keyelco.com/product-pdf.cfm?p=777 +Keystone type 3000 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3001_1x12mm +http://www.keyelco.com/product-pdf.cfm?p=778 +Keystone type 3001 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3002_1x2032 +https://www.tme.eu/it/Document/a823211ec201a9e209042d155fe22d2b/KEYS2996.pdf +BR2016 CR2016 DL2016 BR2020 CL2020 BR2025 CR2025 DL2025 DR2032 CR2032 DL2032 +0 +3 +2 +Battery +BatteryHolder_Keystone_3008_1x2450 +http://www.keyelco.com/product-pdf.cfm?p=786 +Keystone type 3008 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3009_1x2450 +http://www.keyelco.com/product-pdf.cfm?p=787 +Keystone type 3009 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3034_1x20mm +Keystone 3034 SMD battery holder for 2020, 2025 and 2032 coincell batteries. http://www.keyelco.com/product-pdf.cfm?p=798 +Keystone type 3034 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_LINX_BAT-HLD-012-SMT +SMT battery holder for CR1216/1220/1225, https://linxtechnologies.com/wp/wp-content/uploads/bat-hld-012-smt.pdf +battery holder coin cell cr1216 cr1220 cr1225 +0 +3 +2 +Battery +BatteryHolder_MPD_BA9VPC_1xPP3 +1xPP3 (9V) battery holder, Memory Protection Devices P/N BA9VPC, http://www.memoryprotectiondevices.com/datasheets/BA9VPC-datasheet.pdf +PP3 Battery Holder BA9VPC 9V +0 +2 +2 +Battery +BatteryHolder_MPD_BC2AAPC_2xAA +2xAA cell battery holder, Memory Protection Devices P/N BC2AAPC, http://www.memoryprotectiondevices.com/datasheets/BC2AAPC-datasheet.pdf +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_MPD_BC12AAPC_2xAA +2xAA cell battery holder, Memory Protection Devices P/N BC12AAPC, http://www.memoryprotectiondevices.com/datasheets/BC12AAPC-datasheet.pdf +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_MPD_BC2003_1x2032 +http://www.memoryprotectiondevices.com/datasheets/BC-2003-datasheet.pdf +BC2003 CR2032 2032 Battery Holder +0 +3 +2 +Battery +BatteryHolder_MPD_BH-18650-PC2 +18650 Battery Holder (http://www.memoryprotectiondevices.com/datasheets/BK-18650-PC2-datasheet.pdf) +18650 Battery Holder +0 +2 +2 +Battery +BatteryHolder_Multicomp_BC-2001_1x2032 +CR2032 retainer clip, SMT ( http://www.farnell.com/datasheets/1505853.pdf ) +BC-2001 CR2032 2032 Battery Holder +0 +3 +2 +Battery +BatteryHolder_Renata_SMTU2032-LF_1x2032 +https://www.renata.com/fr/downloads/?product=smtu2032-lf&fileid=6a9833a4d49dfb7b550194fe0f +Renata SMT battery holder coin cell 2032 +0 +2 +2 +Battery +BatteryHolder_Seiko_MS621F +Seiko MS621F, https://www.sii.co.jp/en/me/files/2014/02/file_EXTENDED_PRDCT_SPEC_75_FILE_11.jpg +Seiko MS621F +0 +2 +2 +Battery +BatteryHolder_TruPower_BH-331P_3xAA +Keystone Battery Holder BH-331P Battery Type 3xAA (Script generated with StandardBox.py) (Keystone Battery Holder BH-331P Battery Type 3xAA) +Battery Holder BH-331P Battery Type 3xAA +0 +2 +2 +Battery +Battery_CR1225 +CR1225 battery +battery CR1225 coin cell +0 +0 +0 +Battery +Battery_Panasonic_CR1025-VSK_Vertical_CircularHoles +Panasonic CR-1025/VSK battery +battery CR-1025 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR1220-VCN_Vertical_CircularHoles +Panasonic CR-1220/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D140.PDF +battery CR-1220 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR1632-V1AN_Vertical_CircularHoles +Panasonic CR-1632-V1AN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D464.PDF +battery CR-1632 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2025-V1AK_Vertical_CircularHoles +Panasonic CR-2025/V1AK battery, +battery CR-2025 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2032-HFN_Horizontal_CircularHoles +Panasonic CR-2032/HFN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D166.PDF +battery CR-2032 coin cell +0 +2 +2 +Battery +Battery_Panasonic_CR2032-VS1N_Vertical_CircularHoles +Panasonic CR-2032/VS1N battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D348.PDF +battery CR-2032 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2354-VCN_Vertical_CircularHoles +Panasonic CR-2354/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D486.PDF +battery CR-2354/VCN coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2450-VAN_Vertical_CircularHoles +Panasonic CR-2450/VAN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D492.PDF +battery CR-2450 coin cell +0 +2 +2 +Battery +Battery_Panasonic_CR2477-VCN_Vertical_CircularHoles +Panasonic CR-2477/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D502.PDF +battery CR-2477 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR3032-VCN_Vertical_CircularHoles +Panasonic CR-3032/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D508.PDF +battery CR-3032 coin cell vertical +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.00u_PCB +Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.00u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.00u_Plate +Cherry MX keyswitch, 1.00u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.00u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.25u_PCB +Cherry MX keyswitch, 1.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.25u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.25u_Plate +Cherry MX keyswitch, 1.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.25u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.50u_PCB +Cherry MX keyswitch, 1.50u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.50u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.50u_Plate +Cherry MX keyswitch, 1.50u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.50u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.75u_PCB +Cherry MX keyswitch, 1.75u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.75u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.75u_Plate +Cherry MX keyswitch, 1.75u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.75u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_PCB +Cherry MX keyswitch, 2.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_Plate +Cherry MX keyswitch, 2.00u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_Vertical_PCB +Cherry MX keyswitch, 2.00u, vertical, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u vertical PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_Vertical_Plate +Cherry MX keyswitch, 2.00u, vertical, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u vertical plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.25u_PCB +Cherry MX keyswitch, 2.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.25u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.25u_Plate +Cherry MX keyswitch, 2.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.25u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.75u_PCB +Cherry MX keyswitch, 2.75u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.75u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.75u_Plate +Cherry MX keyswitch, 2.75u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.75u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_6.25u_PCB +Cherry MX keyswitch, 6.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 6.25u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_6.25u_Plate +Cherry MX keyswitch, 6.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 6.25u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_ISOEnter_PCB +Cherry MX keyswitch, ISO Enter, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch ISO enter PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_ISOEnter_Plate +Cherry MX keyswitch, ISO Enter, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch ISO enter plate +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.00u +Matias/ALPS keyswitch, 1.00u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.00u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.25u +Matias/ALPS keyswitch, 1.25u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.25u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.50u +Matias/ALPS keyswitch, 1.50u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.50u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.75u +Matias/ALPS keyswitch, 1.75u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.75u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_2.00u +Matias/ALPS keyswitch, 2.00u, http://matias.ca/switches/ +Matias ALPS keyswitch 2.00u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_2.25u +Matias/ALPS keyswitch, 2.25u, http://matias.ca/switches/ +Matias ALPS keyswitch 2.25u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_2.75u +Matias/ALPS keyswitch, 2.75u, http://matias.ca/switches/ +Matias ALPS keyswitch 2.75u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_6.25u +Matias/ALPS keyswitch, 6.25u, http://matias.ca/switches/ +Matias ALPS keyswitch 6.25u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_ISOEnter +Matias/ALPS keyswitch, ISO Enter, http://matias.ca/switches/ +Matias ALPS keyswitch ISO enter +0 +2 +2 +Button_Switch_SMD +Nidec_Copal_CAS-120A +Slide Switch, SMD, Nidec CAS series, https://www.nidec-components.com/e/catalog/switch/cas.pdf +SMD slide switch Nidec CAS 120A +0 +3 +3 +Button_Switch_SMD +Nidec_Copal_SH-7010A +4-bit rotary coded switch, J-hook, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +6 +5 +Button_Switch_SMD +Nidec_Copal_SH-7010B +4-bit rotary coded switch, gull wing, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +6 +5 +Button_Switch_SMD +Nidec_Copal_SH-7040B +4-bit rotary coded switch, gull wing, Gray code, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +5 +5 +Button_Switch_SMD +Panasonic_EVQPUJ_EVQPUA +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUJ EVQPUA +0 +4 +2 +Button_Switch_SMD +Panasonic_EVQPUK_EVQPUB +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUK EVQPUB +0 +4 +2 +Button_Switch_SMD +Panasonic_EVQPUL_EVQPUC +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUL EVQPUC +0 +4 +2 +Button_Switch_SMD +Panasonic_EVQPUM_EVQPUD +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUM EVQPUD +0 +4 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 1x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_6.7x4.1mm_W8.61mm_P2.54mm_LowProfile +SMD 1x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_9.78x4.72mm_W8.61mm_P2.54mm +SMD 1x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x4.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Copal_CHS-01A_W5.08mm_P1.27mm_JPin +SMD 1x-dip-switch SPST Copal_CHS-01A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Copal_CHS-01B_W7.62mm_P1.27mm +SMD 1x-dip-switch SPST Copal_CHS-01B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Copal_CVS-01xB_W5.9mm_P1mm +SMD 1x-dip-switch SPST Copal_CVS-01xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +6 +3 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Omron_A6S-110x_W8.9mm_P2.54mm +SMD 1x-dip-switch SPST Omron_A6S-110x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_6.7x6.64mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 2x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_6.7x6.64mm_W8.61mm_P2.54mm_LowProfile +SMD 2x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_9.78x7.26mm_W8.61mm_P2.54mm +SMD 2x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x7.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Copal_CHS-02A_W5.08mm_P1.27mm_JPin +SMD 2x-dip-switch SPST Copal_CHS-02A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Copal_CHS-02B_W7.62mm_P1.27mm +SMD 2x-dip-switch SPST Copal_CHS-02B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Copal_CVS-02xB_W5.9mm_P1mm +SMD 2x-dip-switch SPST Copal_CVS-02xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +8 +5 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_KingTek_DSHP02TJ_W5.25mm_P1.27mm_JPin +SMD 2x-dip-switch SPST KingTek_DSHP02TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_KingTek_DSHP02TS_W7.62mm_P1.27mm +SMD 2x-dip-switch SPST KingTek_DSHP02TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Omron_A6H-2101_W6.15mm_P1.27mm +SMD 2x-dip-switch SPST Omron_A6H-2101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Omron_A6S-210x_W8.9mm_P2.54mm +SMD 2x-dip-switch SPST Omron_A6S-210x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_6.7x9.18mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 3x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_6.7x9.18mm_W8.61mm_P2.54mm_LowProfile +SMD 3x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_9.78x9.8mm_W8.61mm_P2.54mm +SMD 3x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x9.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_Copal_CVS-03xB_W5.9mm_P1mm +SMD 3x-dip-switch SPST Copal_CVS-03xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +10 +7 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_KingTek_DSHP03TJ_W5.25mm_P1.27mm_JPin +SMD 3x-dip-switch SPST KingTek_DSHP03TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_KingTek_DSHP03TS_W7.62mm_P1.27mm +SMD 3x-dip-switch SPST KingTek_DSHP03TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_Omron_A6S-310x_W8.9mm_P2.54mm +SMD 3x-dip-switch SPST Omron_A6S-310x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_6.7x11.72mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 4x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_6.7x11.72mm_W8.61mm_P2.54mm_LowProfile +SMD 4x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_9.78x12.34mm_W8.61mm_P2.54mm +SMD 4x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x12.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Copal_CHS-04A_W5.08mm_P1.27mm_JPin +SMD 4x-dip-switch SPST Copal_CHS-04A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Copal_CHS-04B_W7.62mm_P1.27mm +SMD 4x-dip-switch SPST Copal_CHS-04B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Copal_CVS-04xB_W5.9mm_P1mm +SMD 4x-dip-switch SPST Copal_CVS-04xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +12 +9 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_KingTek_DSHP04TJ_W5.25mm_P1.27mm_JPin +SMD 4x-dip-switch SPST KingTek_DSHP04TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_KingTek_DSHP04TS_W7.62mm_P1.27mm +SMD 4x-dip-switch SPST KingTek_DSHP04TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Omron_A6H-4101_W6.15mm_P1.27mm +SMD 4x-dip-switch SPST Omron_A6H-4101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Omron_A6S-410x_W8.9mm_P2.54mm +SMD 4x-dip-switch SPST Omron_A6S-410x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_6.7x14.26mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 5x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_6.7x14.26mm_W8.61mm_P2.54mm_LowProfile +SMD 5x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_9.78x14.88mm_W8.61mm_P2.54mm +SMD 5x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x14.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_KingTek_DSHP05TJ_W5.25mm_P1.27mm_JPin +SMD 5x-dip-switch SPST KingTek_DSHP05TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_KingTek_DSHP05TS_W7.62mm_P1.27mm +SMD 5x-dip-switch SPST KingTek_DSHP05TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_Omron_A6S-510x_W8.9mm_P2.54mm +SMD 5x-dip-switch SPST Omron_A6S-510x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_6.7x16.8mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 6x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_6.7x16.8mm_W8.61mm_P2.54mm_LowProfile +SMD 6x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_9.78x17.42mm_W8.61mm_P2.54mm +SMD 6x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x17.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Copal_CHS-06A_W5.08mm_P1.27mm_JPin +SMD 6x-dip-switch SPST Copal_CHS-06A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Copal_CHS-06B_W7.62mm_P1.27mm +SMD 6x-dip-switch SPST Copal_CHS-06B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_KingTek_DSHP06TJ_W5.25mm_P1.27mm_JPin +SMD 6x-dip-switch SPST KingTek_DSHP06TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_KingTek_DSHP06TS_W7.62mm_P1.27mm +SMD 6x-dip-switch SPST KingTek_DSHP06TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Omron_A6H-6101_W6.15mm_P1.27mm +SMD 6x-dip-switch SPST Omron_A6H-6101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Omron_A6S-610x_W8.9mm_P2.54mm +SMD 6x-dip-switch SPST Omron_A6S-610x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_6.7x19.34mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 7x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_6.7x19.34mm_W8.61mm_P2.54mm_LowProfile +SMD 7x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_9.78x19.96mm_W8.61mm_P2.54mm +SMD 7x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x19.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_KingTek_DSHP07TJ_W5.25mm_P1.27mm_JPin +SMD 7x-dip-switch SPST KingTek_DSHP07TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_KingTek_DSHP07TS_W7.62mm_P1.27mm +SMD 7x-dip-switch SPST KingTek_DSHP07TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_Omron_A6S-710x_W8.9mm_P2.54mm +SMD 7x-dip-switch SPST Omron_A6S-710x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_6.7x21.88mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 8x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_6.7x21.88mm_W8.61mm_P2.54mm_LowProfile +SMD 8x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_9.78x22.5mm_W8.61mm_P2.54mm +SMD 8x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x22.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Copal_CHS-08A_W5.08mm_P1.27mm_JPin +SMD 8x-dip-switch SPST Copal_CHS-08A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Copal_CHS-08B_W7.62mm_P1.27mm +SMD 8x-dip-switch SPST Copal_CHS-08B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Copal_CVS-08xB_W5.9mm_P1mm +SMD 8x-dip-switch SPST Copal_CVS-08xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +20 +17 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_KingTek_DSHP08TJ_W5.25mm_P1.27mm_JPin +SMD 8x-dip-switch SPST KingTek_DSHP08TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_KingTek_DSHP08TS_W7.62mm_P1.27mm +SMD 8x-dip-switch SPST KingTek_DSHP08TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Omron_A6H-8101_W6.15mm_P1.27mm +SMD 8x-dip-switch SPST Omron_A6H-8101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Omron_A6S-810x_W8.9mm_P2.54mm +SMD 8x-dip-switch SPST Omron_A6S-810x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_6.7x24.42mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 9x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_6.7x24.42mm_W8.61mm_P2.54mm_LowProfile +SMD 9x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_9.78x25.04mm_W8.61mm_P2.54mm +SMD 9x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x25.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_KingTek_DSHP09TJ_W5.25mm_P1.27mm_JPin +SMD 9x-dip-switch SPST KingTek_DSHP09TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_KingTek_DSHP09TS_W7.62mm_P1.27mm +SMD 9x-dip-switch SPST KingTek_DSHP09TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_Omron_A6S-910x_W8.9mm_P2.54mm +SMD 9x-dip-switch SPST Omron_A6S-910x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_6.7x26.96mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 10x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_6.7x26.96mm_W8.61mm_P2.54mm_LowProfile +SMD 10x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_9.78x27.58mm_W8.61mm_P2.54mm +SMD 10x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x27.58mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Copal_CHS-10A_W5.08mm_P1.27mm_JPin +SMD 10x-dip-switch SPST Copal_CHS-10A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Copal_CHS-10B_W7.62mm_P1.27mm +SMD 10x-dip-switch SPST Copal_CHS-10B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_KingTek_DSHP10TJ_W5.25mm_P1.27mm_JPin +SMD 10x-dip-switch SPST KingTek_DSHP10TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_KingTek_DSHP10TS_W7.62mm_P1.27mm +SMD 10x-dip-switch SPST KingTek_DSHP10TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Omron_A6H-10101_W6.15mm_P1.27mm +SMD 10x-dip-switch SPST Omron_A6H-10101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Omron_A6S-1010x_W8.9mm_P2.54mm +SMD 10x-dip-switch SPST Omron_A6S-1010x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx11_Slide_6.7x29.5mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 11x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +22 +22 +Button_Switch_SMD +SW_DIP_SPSTx11_Slide_6.7x29.5mm_W8.61mm_P2.54mm_LowProfile +SMD 11x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +22 +22 +Button_Switch_SMD +SW_DIP_SPSTx11_Slide_9.78x30.12mm_W8.61mm_P2.54mm +SMD 11x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x30.12mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +22 +22 +Button_Switch_SMD +SW_DIP_SPSTx12_Slide_6.7x32.04mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 12x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +24 +24 +Button_Switch_SMD +SW_DIP_SPSTx12_Slide_6.7x32.04mm_W8.61mm_P2.54mm_LowProfile +SMD 12x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +24 +24 +Button_Switch_SMD +SW_DIP_SPSTx12_Slide_9.78x32.66mm_W8.61mm_P2.54mm +SMD 12x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x32.66mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +24 +24 +Button_Switch_SMD +SW_DPDT_CK_JS202011JCQN +Sub-miniature slide switch, vertical, SMT J bend https://dznh3ojzb2azq.cloudfront.net/products/Slide/JS/documents/datasheet.pdf +switch DPDT SMT +0 +6 +6 +Button_Switch_SMD +SW_MEC_5GSH9 +MEC 5G single pole normally-open tactile switch +switch normally-open pushbutton push-button +0 +4 +4 +Button_Switch_SMD +SW_Push_1P1T-MP_NO_Horizontal_Alps_SKRTLAE010 +Side push button (https://www.alps.com/prod/info/E/PDF/Tact/SurfaceMount/SKRT/SKRT.pdf) +push horizontal SPST 1P1T +0 +5 +3 +Button_Switch_SMD +SW_Push_1P1T-SH_NO_CK_KMR2xxG +CK components KMR2 tactile switch with ground pin http://www.ckswitches.com/media/1479/kmr2.pdf +tactile switch kmr2 +0 +5 +3 +Button_Switch_SMD +SW_Push_1P1T_NO_6x6mm_H9.5mm +tactile push button, 6x6mm e.g. PTS645xx series, height=9.5mm +tact sw push 6mm smd +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_KMR2 +CK components KMR2 tactile switch http://www.ckswitches.com/media/1479/kmr2.pdf +tactile switch kmr2 +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_KSC6xxJ +CK components KSC6 tactile switch https://www.ckswitches.com/media/1972/ksc6.pdf +tactile switch ksc6 +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_KSC7xxJ +CK components KSC7 tactile switch https://www.ckswitches.com/media/1973/ksc7.pdf +tactile switch ksc7 +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_PTS125Sx43PSMTR +C&K Switches 1P1T SMD PTS125 Series 12mm Tact Switch with Pegs, https://www.ckswitches.com/media/1462/pts125.pdf +Button Tactile Switch SPST 1P1T +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_Vertical_Wuerth_434133025816 +https://katalog.we-online.com/em/datasheet/434133025816.pdf +tactile switch Wurth Wuerth +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_XKB_TS-1187A +SMD Tactile Switch, http://www.helloxkb.com/public/images/pdf/TS-1187A-X-X-X.pdf +SPST Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_Push_1TS009xxxx-xxxx-xxxx_6x6x5mm +tactile push button, 6x6mm, height=5mm, 12V 50mA, https://datasheet.lcsc.com/lcsc/1811151231_HYP--Hongyuan-Precision-1TS009A-1800-5000-CT_C319409.pdf +tact sw push 6mm silicone rubber +0 +2 +2 +Button_Switch_SMD +SW_Push_SPST_NO_Alps_SKRK +http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKRK/SKRKAHE020.html +SMD SMT button +0 +2 +2 +Button_Switch_SMD +SW_SP3T_PCM13 +Ultraminiature Surface Mount Slide Switch, right-angle, https://www.ckswitches.com/media/1424/pcm.pdf + +0 +8 +4 +Button_Switch_SMD +SW_SPDT_CK_JS102011SAQN +Sub-miniature slide switch, right-angle, http://www.ckswitches.com/media/1422/js.pdf +switch spdt +0 +3 +3 +Button_Switch_SMD +SW_SPDT_PCM12 +Ultraminiature Surface Mount Slide Switch, right-angle, https://www.ckswitches.com/media/1424/pcm.pdf + +0 +7 +3 +Button_Switch_SMD +SW_SPDT_REED_MSDM-DT +Littlefuse 14.73x2.54mm, 175VDC 5W, SPDT Reed Switch MSDM-DT, https://www.littelfuse.com/~/media/electronics/datasheets/reed_switches/littelfuse_reed_switches_mdsm_dt_datasheet.pdf.pdf +Littlefuse Reed SPDT Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_B3S-1000 +Surface Mount Tactile Switch for High-Density Packaging +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_B3S-1100 +Surface Mount Tactile Switch for High-Density Packaging with Ground Terminal +Tactile Switch +0 +5 +3 +Button_Switch_SMD +SW_SPST_B3SL-1002P +Middle Stroke Tactile Switch, B3SL +Middle Stroke Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_B3SL-1022P +Middle Stroke Tactile Switch, B3SL +Middle Stroke Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_B3U-1000P +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, without Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-1000P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, with Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-1100P +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, with Ground Terminal, without Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_B3U-1100P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, with Ground Terminal, with Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_B3U-3000P +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, without Ground Terminal, without Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-3000P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, without Ground Terminal, with Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-3100P +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, with Ground Terminal, without Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_B3U-3100P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, with Ground Terminal, with Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_CK_KMS2xxG +Microminiature SMT Side Actuated, 4.2 x 2.8 x 1.42mm, https://www.ckswitches.com/media/1482/kms.pdf +Switch SPST KMS2 +0 +5 +3 +Button_Switch_SMD +SW_SPST_CK_KMS2xxGP +Microminiature SMT Side Actuated, 4.2 x 2.8 x 1.42mm with pegs, https://www.ckswitches.com/media/1482/kms.pdf +Switch SPST KMS2 +0 +5 +3 +Button_Switch_SMD +SW_SPST_CK_KXT3 +https://www.ckswitches.com/media/1465/kxt3.pdf +Switch SPST KXT3 +0 +2 +2 +Button_Switch_SMD +SW_SPST_CK_RS282G05A3 +https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf +SPST button tactile switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_EVPBF +Light Touch Switch + +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP0 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE28.pdf + +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP2 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000C374.pdf +SMD SMT SPST EVQP2 +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP7A +Light Touch Switch, 2.2 N, https://www3.panasonic.biz/ac/e_download/control/switch/light-touch/catalog/sw_lt_eng_3529s_side.pdf?f_cd=402906 +tactile switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP7C +Light Touch Switch, 2.2 N, https://www3.panasonic.biz/ac/e_download/control/switch/light-touch/catalog/sw_lt_eng_3529s_side.pdf?f_cd=402906 +tactile switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQPE1 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE7.pdf + +0 +2 +2 +Button_Switch_SMD +SW_SPST_EVQQ2 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE28.pdf + +0 +4 +2 +Button_Switch_SMD +SW_SPST_FSMSM +http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1437566-3&DocType=Customer+Drawing&DocLang=English +SPST button tactile switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_Omron_B3FS-100xP +Surface Mount Tactile Switch for High-Density Mounting, 3.1mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_Omron_B3FS-101xP +Surface Mount Tactile Switch for High-Density Mounting, 4.3mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_Omron_B3FS-105xP +Surface Mount Tactile Switch for High-Density Mounting, 7.3mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS645 +C&K Components SPST SMD PTS645 Series 6mm Tact Switch +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS647_Sx38 +C&K Components SPST SMD PTS647 Series 4.5mm Tact Switch, 3.8mm Height, see https://www.ckswitches.com/media/2567/pts647.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS647_Sx50 +C&K Components SPST SMD PTS647 Series 4.5mm Tact Switch, 5.0mm Height, see https://www.ckswitches.com/media/2567/pts647.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS647_Sx70 +C&K Components SPST SMD PTS647 Series 4.5mm Tact Switch, 7.0mm Height, see https://www.ckswitches.com/media/2567/pts647.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS810 +C&K Components, PTS 810 Series, Microminiature SMT Top Actuated, http://www.ckswitches.com/media/1476/pts810.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_Panasonic_EVQPL_3PL_5PL_PT_A08 +Light Touch Switch, http://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE3.pdf +SMD SMT SPST EVQPL EVQPT +0 +6 +3 +Button_Switch_SMD +SW_SPST_Panasonic_EVQPL_3PL_5PL_PT_A15 +Light Touch Switch, http://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE3.pdf +SMD SMT SPST EVQPL EVQPT +0 +6 +3 +Button_Switch_SMD +SW_SPST_REED_CT05-XXXX-G1 +Coto Technologies SPST Reed Switch CT05-XXXX-G1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT05-XXXX-J1 +Coto Technologies SPST Reed Switch CT05-XXXX-J1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G1 +Coto Technologies SPST Reed Switch CT10-XXXX-G1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G2 +Coto Technologies SPST Reed Switch CT10-XXXX-G2 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G4 +Coto Technologies SPST Reed Switch CT10-XXXX-G4 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_SKQG_WithStem +ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, With stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAFE010.html +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_SKQG_WithoutStem +ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, Without stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAEE010.html +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305A +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305B +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305C +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3342 +Low-profile SMD Tactile Switch, https://www.e-switch.com/system/asset/product_line/data_sheet/165/TL3342.pdf +SPST Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_Tactile_SPST_NO_Straight_CK_PTS636Sx25SMTRLFS +Tactile switch, SPST, 6.0x3.5 mm, H2.5 mm, straight, NO, gull wing leads: https://www.ckswitches.com/media/2779/pts636.pdf +switch tactile SPST 1P1T straight NO SMTR C&K +0 +2 +2 +Button_Switch_THT +KSA_Tactile_SPST +KSA http://www.ckswitches.com/media/1457/ksa_ksl.pdf +SWITCH SMD KSA SW +0 +5 +5 +Button_Switch_THT +Nidec_Copal_SH-7010C +4-bit rotary coded switch, through-hole, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +6 +5 +Button_Switch_THT +Push_E-Switch_KS01Q01 +E-Switch KS01Q01 http://spec_sheets.e-switch.com/specs/29-KS01Q01.pdf +Push Button +0 +4 +4 +Button_Switch_THT +SW_CK_JS202011AQN_DPDT_Angled +C&K sub miniature slide switch, JS series, DPDT, right angle, http://www.ckswitches.com/media/1422/js.pdf +switch DPDT +0 +6 +6 +Button_Switch_THT +SW_CK_JS202011CQN_DPDT_Straight +C&K sub miniature slide switch, JS series, DPDT, right angle, http://www.ckswitches.com/media/1422/js.pdf +switch DPDT +0 +6 +6 +Button_Switch_THT +SW_CW_GPTS203211B +SPST Off-On Pushbutton, 1A, 30V, CW Industries P/N GPTS203211B, http://switches-connectors-custom.cwind.com/Asset/GPTS203211BR2.pdf +SPST button switch Off-On +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx01_Piano_10.8x4.1mm_W7.62mm_P2.54mm +1x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x4.1mm +DIP Switch SPST Piano 7.62mm 300mil +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile +1x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx01_Slide_9.78x4.72mm_W7.62mm_P2.54mm +1x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x4.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx02_Piano_10.8x6.64mm_W7.62mm_P2.54mm +2x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x6.64mm +DIP Switch SPST Piano 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Piano_CTS_Series194-2MSTN_W7.62mm_P2.54mm +2x-dip-switch SPST CTS_Series194-2MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Slide_6.7x6.64mm_W7.62mm_P2.54mm_LowProfile +2x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Slide_9.78x7.26mm_W7.62mm_P2.54mm +2x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x7.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx03_Piano_10.8x9.18mm_W7.62mm_P2.54mm +3x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x9.18mm +DIP Switch SPST Piano 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Piano_CTS_Series194-3MSTN_W7.62mm_P2.54mm +3x-dip-switch SPST CTS_Series194-3MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Slide_6.7x9.18mm_W7.62mm_P2.54mm_LowProfile +3x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Slide_9.78x9.8mm_W7.62mm_P2.54mm +3x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x9.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx04_Piano_10.8x11.72mm_W7.62mm_P2.54mm +4x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x11.72mm +DIP Switch SPST Piano 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Piano_CTS_Series194-4MSTN_W7.62mm_P2.54mm +4x-dip-switch SPST CTS_Series194-4MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Slide_6.7x11.72mm_W7.62mm_P2.54mm_LowProfile +4x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Slide_9.78x12.34mm_W7.62mm_P2.54mm +4x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x12.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx05_Piano_10.8x14.26mm_W7.62mm_P2.54mm +5x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x14.26mm +DIP Switch SPST Piano 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Piano_CTS_Series194-5MSTN_W7.62mm_P2.54mm +5x-dip-switch SPST CTS_Series194-5MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Slide_6.7x14.26mm_W7.62mm_P2.54mm_LowProfile +5x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Slide_9.78x14.88mm_W7.62mm_P2.54mm +5x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x14.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx06_Piano_10.8x16.8mm_W7.62mm_P2.54mm +6x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x16.8mm +DIP Switch SPST Piano 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Piano_CTS_Series194-6MSTN_W7.62mm_P2.54mm +6x-dip-switch SPST CTS_Series194-6MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Slide_6.7x16.8mm_W7.62mm_P2.54mm_LowProfile +6x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Slide_9.78x17.42mm_W7.62mm_P2.54mm +6x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x17.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx07_Piano_10.8x19.34mm_W7.62mm_P2.54mm +7x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x19.34mm +DIP Switch SPST Piano 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Piano_CTS_Series194-7MSTN_W7.62mm_P2.54mm +7x-dip-switch SPST CTS_Series194-7MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Slide_6.7x19.34mm_W7.62mm_P2.54mm_LowProfile +7x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Slide_9.78x19.96mm_W7.62mm_P2.54mm +7x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x19.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx08_Piano_10.8x21.88mm_W7.62mm_P2.54mm +8x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x21.88mm +DIP Switch SPST Piano 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Piano_CTS_Series194-8MSTN_W7.62mm_P2.54mm +8x-dip-switch SPST CTS_Series194-8MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Slide_6.7x21.88mm_W7.62mm_P2.54mm_LowProfile +8x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Slide_9.78x22.5mm_W7.62mm_P2.54mm +8x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x22.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx09_Piano_10.8x24.42mm_W7.62mm_P2.54mm +9x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x24.42mm +DIP Switch SPST Piano 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Piano_CTS_Series194-9MSTN_W7.62mm_P2.54mm +9x-dip-switch SPST CTS_Series194-9MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Slide_6.7x24.42mm_W7.62mm_P2.54mm_LowProfile +9x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Slide_9.78x25.04mm_W7.62mm_P2.54mm +9x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x25.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx10_Piano_10.8x26.96mm_W7.62mm_P2.54mm +10x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x26.96mm +DIP Switch SPST Piano 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Piano_CTS_Series194-10MSTN_W7.62mm_P2.54mm +10x-dip-switch SPST CTS_Series194-10MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Slide_6.7x26.96mm_W7.62mm_P2.54mm_LowProfile +10x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Slide_9.78x27.58mm_W7.62mm_P2.54mm +10x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x27.58mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx11_Piano_10.8x29.5mm_W7.62mm_P2.54mm +11x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x29.5mm +DIP Switch SPST Piano 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Piano_CTS_Series194-11MSTN_W7.62mm_P2.54mm +11x-dip-switch SPST CTS_Series194-11MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Slide_6.7x29.5mm_W7.62mm_P2.54mm_LowProfile +11x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Slide_9.78x30.12mm_W7.62mm_P2.54mm +11x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x30.12mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx12_Piano_10.8x32.04mm_W7.62mm_P2.54mm +12x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x32.04mm +DIP Switch SPST Piano 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Piano_CTS_Series194-12MSTN_W7.62mm_P2.54mm +12x-dip-switch SPST CTS_Series194-12MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Slide_6.7x32.04mm_W7.62mm_P2.54mm_LowProfile +12x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Slide_9.78x32.66mm_W7.62mm_P2.54mm +12x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x32.66mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_E-Switch_EG1224_SPDT_Angled +E-Switch slide switch, EG series, SPDT, right angle, http://spec_sheets.e-switch.com/specs/P040042.pdf +switch SPDT +0 +7 +3 +Button_Switch_THT +SW_E-Switch_EG1271_SPDT +E-Switch sub miniature slide switch, EG series, SPDT, https://www.e-switch.com/wp-content/uploads/2022/06/EG.pdf +switch SPDT +0 +6 +6 +Button_Switch_THT +SW_E-Switch_EG2219_DPDT_Angled +E-Switch slide switch, EG series, DPDT, right angle, http://spec_sheets.e-switch.com/specs/P040170.pdf +switch DPDT +0 +10 +6 +Button_Switch_THT +SW_Lever_1P2T_NKK_GW12LxH +Switch, single pole double throw, right angle, http://www.nkkswitches.com/pdf/GW.pdf +switch single-pole double-throw spdt ON-ON horizontal +0 +5 +3 +Button_Switch_THT +SW_MEC_5GTH9 +MEC 5G single pole normally-open tactile switch https://cdn.sos.sk/productdata/80/f6/aabf7be6/5gth9358222.pdf +switch normally-open pushbutton push-button +0 +4 +2 +Button_Switch_THT +SW_NKK_BB15AH +https://www.nkkswitches.com/pdf/Bpushbuttons-1.pdf +Pushbutton Right-angle +0 +5 +3 +Button_Switch_THT +SW_NKK_G1xJP +Switch NKK G1xJP http://www.nkkswitches.com/pdf/gwillum.pdf +SWITCH TOGGLE ILLUM SPDT NKK +0 +6 +6 +Button_Switch_THT +SW_NKK_GW12LJP +Switch, single pole double throw, illuminated paddle, http://www.nkkswitches.com/pdf/gwillum.pdf +switch single-pole double-throw spdt ON-ON illuminated LED +0 +6 +6 +Button_Switch_THT +SW_NKK_NR01 +NKK Switches NR01 series rotary switch, 10.7 x 10.7mm. https://www.nkkswitches.com/pdf/NR01%20Rotaries.pdf +NKK NR01 SP3T SP4T SP5T +0 +10 +7 +Button_Switch_THT +SW_PUSH-12mm +Generic SW PUSH 12mm, e.g https://sten-eswitch-13110800-production.s3.amazonaws.com/system/asset/product_line/data_sheet/143/TL1100.pdf +tact sw push 12mm +0 +4 +2 +Button_Switch_THT +SW_PUSH-12mm_Wuerth-430476085716 +SW PUSH 12mm http://katalog.we-online.de/em/datasheet/430476085716.pdf +tact sw push 12mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_1P1T_6x3.5mm_H4.3_APEM_MJTP1243 +tactile push button, 6x3.5mm, https://www.apem.com/idec-apem/en_US/PCB-switches/Tactile-Switches/MJTP-6mm-through-hole/c/MJTP_6mm_through%20hole?page=1 +PHAP3362 6mm tact sw THT +0 +2 +2 +Button_Switch_THT +SW_PUSH_1P1T_6x3.5mm_H5.0_APEM_MJTP1250 +tactile push button, 6x3.5mm, https://www.apem.com/idec-apem/en_US/PCB-switches/Tactile-Switches/MJTP-6mm-through-hole/c/MJTP_6mm_through%20hole?page=1 +PHAP3362A 6mm tact sw THT +0 +2 +2 +Button_Switch_THT +SW_PUSH_6mm +Generic 6mm SW tactile push button +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H4.3mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H7.3mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=7.3mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H8.5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=8.5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H8mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=8mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H9.5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=9.5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H13mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=13mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_E-Switch_FS5700DP_DPDT +FS5700 series pushbutton footswitch, DPDT, https://www.e-switch.com/system/asset/product_line/data_sheet/226/FS5700.pdf +switch DPDT footswitch +0 +6 +6 +Button_Switch_THT +SW_PUSH_LCD_E3_SAxxxx +Switch with LCD screen E3 SAxxxx +switch normally-open pushbutton push-button LCD +0 +6 +6 +Button_Switch_THT +SW_PUSH_LCD_E3_SAxxxx_SocketPins +Switch with LCD screen E3 SAxxxx +switch normally-open pushbutton push-button LCD +0 +6 +6 +Button_Switch_THT +SW_Push_1P1T_NO_LED_E-Switch_TL1250 +illuminated right angle tact switch https://www.e-switch.com/system/asset/product_line/data_sheet/148/TL1250.pdf +led push switch right angle +0 +6 +4 +Button_Switch_THT +SW_Push_1P2T_Vertical_E-Switch_800UDP8P1A1M6 + right angle SPDT push button https://www.e-switch.com/system/asset/product_line/data_sheet/210/800U.pdf +IP67 ultra-miniture horizontal +0 +5 +3 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH1xxxxxxV2 +momentary / push-push button, h=17.5mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH2xxxxxxV2 +momentary / push-push button, h=23mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH3xxxxxxV2 +momentary / push-push button, h=20.5mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH4xxxxxxV2 +momentary / push-push button, h=15mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2OAH5xxxxxxV2 +momentary / push-push button, h=13mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH1xxxxxxV2 +momentary / push-push button, h=17.5mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH2xxxxxxV2 +momentary / push-push button, h=23mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH3xxxxxxV2 +momentary / push-push button, h=20.5mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH4xxxxxxV2 +momentary / push-push button, h=15mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Vertical_E-Switch_800UDP8P1A1M6 + right angle DPDT push button https://www.e-switch.com/system/asset/product_line/data_sheet/210/800U.pdf +IP67 ultra-miniture horizontal +0 +8 +6 +Button_Switch_THT +SW_SPST_Omron_B3F-40xx +SW_THT_Tactile_Omron_B3F-40xx, 12x12 mm, Through hole switch from the B3F Family manufactured by Omron, https://www.omron.com/ecb/products/pdf/en-b3f.pdf +tactile switch THT button push B3F-4000 B3F-4050 B3F-4005 B3F-4055 +0 +4 +2 +Button_Switch_THT +SW_SPST_Omron_B3F-50xx +SW_THT_Tactile_Omron_B3F-50xx, 12x12x7,3 mm, Through hole switch from the B3F Family manufactured by Omron, https://www.omron.com/ecb/products/pdf/en-b3f.pdf +tactile omron switch tht B3F-5000 B3F-5050 B3F-5001 B3F-5051 +0 +4 +2 +Button_Switch_THT +SW_SPST_Omron_B3F-315x_Angled +tactile switch, 7.3mm x 6.25mm x 7.4mm, right angle, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf +tactile switch Omron B3F right angle through hole +0 +4 +2 +Button_Switch_THT +SW_Slide-03_Wuerth-WS-SLTV_10x2.5x6.4_P2.54mm +Wuerth, WS-SLTV, 450301014042, https://www.we-online.com/components/products/datasheet/450301014042.pdf +switch single-pole double-throw SPDT würth wurth +0 +3 +3 +Button_Switch_THT +SW_Slide_SPDT_Angled_CK_OS102011MA1Q +CuK miniature slide switch, OS series, SPDT, right angle, http://www.ckswitches.com/media/1428/os.pdf +switch SPDT +0 +5 +3 +Button_Switch_THT +SW_Slide_SPDT_Straight_CK_OS102011MS2Q +CuK miniature slide switch, OS series, SPDT, https://www.ckswitches.com/media/1428/os.pdf +switch SPDT +0 +5 +3 +Button_Switch_THT +SW_TH_Tactile_Omron_B3F-10xx +SW_TH_Tactile_Omron_B3F-10xx_https://www.omron.com/ecb/products/pdf/en-b3f.pdf +Omron B3F-10xx +0 +4 +2 +Button_Switch_THT +SW_Tactile_SKHH_Angled +tactile switch 6mm ALPS SKHH right angle http://www.alps.com/prod/info/E/HTML/Tact/SnapIn/SKHH/SKHHLUA010.html +tactile switch 6mm ALPS SKHH right angle +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx31-2LFS +tactile switch SPST right angle, PTS645VL31-2 LFS +tactile switch SPST angled PTS645VL31-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx39-2LFS +tactile switch SPST right angle, PTS645VL39-2 LFS +tactile switch SPST angled PTS645VL39-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx58-2LFS +tactile switch SPST right angle, PTS645VL58-2 LFS +tactile switch SPST angled PTS645VL58-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx83-2LFS +tactile switch SPST right angle, PTS645VL83-2 LFS +tactile switch SPST angled PTS645VL83-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_Straight_KSA0Axx1LFTR +SW PUSH SMALL http://www.ckswitches.com/media/1457/ksa_ksl.pdf +SW PUSH SMALL Tactile C&K +0 +4 +2 +Button_Switch_THT +SW_Tactile_Straight_KSL0Axx1LFTR +SW PUSH SMALL http://www.ckswitches.com/media/1457/ksa_ksl.pdf +SW PUSH SMALL Tactile C&K +0 +4 +2 +Buzzer_Beeper +Buzzer_12x9.5RM7.6 +Generic Buzzer, D12mm height 9.5mm with RM7.6mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_15x7.5RM7.6 +Generic Buzzer, D15mm height 7.5mm with RM7.6mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_CUI_CPT-9019S-SMT +https://www.cui.com/product/resource/cpt-9019s-smt.pdf +buzzer piezo +0 +2 +2 +Buzzer_Beeper +Buzzer_D14mm_H7mm_P10mm +Generic Buzzer, D14mm height 7mm with pitch 10mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_Mallory_AST1109MLTRQ +Mallory low-profile piezo buzzer, https://mspindy.com/spec-sheets/AST1109MLTRQ.pdf +buzzer piezo +0 +2 +2 +Buzzer_Beeper +Buzzer_Mallory_AST1240MLQ +Mallory low-profile piezo buzzer, https://www.mspindy.com/specifications/AST12140MLQ.pdf +piezo buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_Murata_PKLCS1212E +Murata Buzzer https://www.murata.com/~/media/webrenewal/support/library/catalog/products/sound/p37e.ashx +Murata Buzzer Beeper +0 +2 +2 +Buzzer_Beeper +Buzzer_Murata_PKMCS0909E +Murata Buzzer http://www.murata.com/en-us/api/pdfdownloadapi?cate=&partno=PKMCS0909E4000-R1 +Murata Buzzer Beeper +0 +2 +2 +Buzzer_Beeper +Buzzer_TDK_PS1240P02BT_D12.2mm_H6.5mm +Buzzer, D12.2mm height 6.5mm, https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf +buzzer +0 +2 +2 +Buzzer_Beeper +Indicator_PUI_AI-1440-TWT-24V-2-R +14mm Indicator, https://www.puiaudio.com/media/SpecSheet/AI-1440-TWT-24V-2-R.pdf +piezo buzzer self drive oscillator +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_CUI_CMT-8504-100-SMT +magnetic transducer buzzer, 5V, SPL of 100 dB at 10 cm, https://www.cuidevices.com/product/resource/pdf/cmt-8504-100-smt-tr.pdf +CMT 8504 +0 +4 +4 +Buzzer_Beeper +MagneticBuzzer_CUI_CST-931RP-A +CST-931RP-A, http://www.cui.com/product/resource/cst-931rp-a.pdf +CST-931RP-A +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_Kingstate_KCG0601 +Buzzer, Elektromagnetic Beeper, Summer, +Kingstate KCG0601 +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_Kobitone_254-EMB73-RO +MagneticBuzzer_Kobitone_254-EMB73-RO https://www.mouser.es/datasheet/2/209/joytech_11092018_KT-400379-1501513.pdf +MagneticBuzzer_Kobitone_254-EMB73-RO +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_Kobitone_254-EMB84Q-RO +MagneticBuzzer Kobitone 254-EMB84Q-RO https://www.mouser.es/datasheet/2/209/KT-400385-1171904.pdf +MagneticBuzzer Kobitone 254-EMB84Q-RO +0 +3 +3 +Buzzer_Beeper +MagneticBuzzer_PUI_AT-0927-TT-6-R +Buzzer Magnetic 9mm AT-0927-TT-6-R, http://www.puiaudio.com/pdf/AT-0927-TT-6-R.pdf +Buzzer Magnetic 9mm AT-0927-TT-6-R +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_PUI_SMT-1028-T-2-R +Buzzer, 2830Hz, 3.6Vpp, 90dbA@10cm, Top sound port, 10x10x3,5mm, https://api.puiaudio.com/file/612539d9-c50b-48de-88aa-b63ef8817a91.pdf +SMT 1028 +0 +4 +3 +Buzzer_Beeper +MagneticBuzzer_ProSignal_ABI-009-RC +Buzzer, Elektromagnetic Beeper, Summer, 6V-DC, +Pro Signal ABI-009-RC +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_ProSignal_ABI-010-RC +Buzzer, Elektromagnetic Beeper, Summer, 12V-DC, +Pro Signal ABI-010-RC +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_ProSignal_ABT-410-RC +Buzzer, Elektromagnetic Beeper, Summer, 1,5V-DC, +Pro Signal ABT-410-RC +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_ProjectsUnlimited_AI-4228-TWT-R +Buzzer, Elektromagnetic Beeper, Summer, 3-28V-DC, https://www.kynix.com/uploadfiles/pdf/AI-4228-TWT-R.pdf +Projects Unlimited AI-4228-TWT-R +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_HMB-06_HMB-12 +Buzzer, Elektromagnetic Beeper, Summer, +Star Micronics HMB-06 HMB-12 +0 +2 +2 +Buzzer_Beeper +PUIAudio_SMT_0825_S_4_R +SMD 8540, http://www.puiaudio.com/product-detail.aspx?partnumber=SMT-0825-S-4-R +SMD 8540 +0 +4 +4 +Buzzer_Beeper +Speaker_CUI_CMR-1206S-67 +Speaker, 30mW, 300-7000Hz, IP67 face, 12x6x2,25mm, https://www.cuidevices.com/product/resource/cmr-12062s-67.pdf +speaker CUI +0 +2 +2 +Calibration_Scale +Gauge_10mm_Type1_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 1, +Gauge Massstab 10mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type1_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 1, +Gauge Massstab 10mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type2_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 2, +Gauge Massstab 10mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type2_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 2, +Gauge Massstab 10mm SilkScreenTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type3_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 3, +Gauge Massstab 10mm CopperTop Type 3 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type3_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 3, +Gauge Massstab 10mm SilkScreenTop Type 3 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type4_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 4, +Gauge Massstab 10mm CopperTop Type 4 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type4_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 4, +Gauge Massstab 10mm SilkScreenTop Type 4 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type5_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 5, +Gauge Massstab 10mm CopperTop Type 5 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type5_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 5, +Gauge Massstab 10mm SilkScreenTop Type 5 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type1_CopperTop +Gauge, Massstab, 50mm, CopperTop, Type 1, +Gauge Massstab 50mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type1_SilkScreenTop +Gauge, Massstab, 50mm, SilkScreenTop, Type 1, +Gauge Massstab 50mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type2_CopperTop +Gauge, Massstab, 50mm, CopperTop, Type 2, +Gauge Massstab 50mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type2_SilkScreenTop +Gauge, Massstab, 50mm, SilkScreenTop, Type 2, +Gauge Massstab 50mm SilkScreenTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Grid_Type1_CopperTop +Gauge, Massstab, 100mm, Gitter, Grid, CopperTop, Type 1, +Gauge Massstab 100mm Gitter Grid CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type1_CopperTop +Gauge, Massstab, 100mm, CopperTop, Type 1, +Gauge Massstab 100mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type1_SilkScreenTop +Gauge, Massstab, 100mm, SilkScreenTop, Type 1, +Gauge Massstab 100mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type2_CopperTop +Gauge, Massstab, 100mm, CopperTop, Type 2, +Gauge Massstab 100mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type2_SilkScreenTop +Gauge, Massstab, 100mm, SilkScreenTop, Type 2, +Gauge Massstab 100mm SilkScreenTop Type 2 +0 +0 +0 +Capacitor_SMD +CP_Elec_3x5.3 +SMT capacitor, aluminium electrolytic, 3x5.3, Cornell Dubilier Electronics +Capacitor Electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_3x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 3.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x3 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.3 +SMD capacitor, aluminum electrolytic, Vishay, 4.0x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.4 +SMD capacitor, aluminum electrolytic, Panasonic A5 / Nichicon, 4.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 4.0x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.8 +SMD capacitor, aluminum electrolytic, Panasonic, 4.0x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x4.4 +SMD capacitor, aluminum electrolytic, Panasonic B45, 5.0x4.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 5.0x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.8 +SMD capacitor, aluminum electrolytic, Panasonic, 5.0x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.9 +SMD capacitor, aluminum electrolytic, Panasonic B6, 5.0x5.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x3 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x4.9 +SMD capacitor, aluminum electrolytic, Panasonic C5, 6.3x4.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.2 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.2mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.3 +SMD capacitor, aluminum electrolytic, Cornell Dubilier, 6.3x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.4_Nichicon +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.9 +SMD capacitor, aluminum electrolytic, Panasonic C6, 6.3x5.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x9.9 +SMD capacitor, aluminum electrolytic, Panasonic C10, 6.3x9.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.2 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x6.2mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.5 +SMD capacitor, aluminum electrolytic, Rubycon, 8.0x6.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 8.0x6.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.9 +SMD capacitor, aluminum electrolytic, Panasonic E7, 8.0x6.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x10 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x10mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x10.5 +SMD capacitor, aluminum electrolytic, Vishay 0810, 8.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x11.9 +SMD capacitor, aluminum electrolytic, Panasonic E12, 8.0x11.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x7.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x7.9 +SMD capacitor, aluminum electrolytic, Panasonic F8, 10.0x7.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x10 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x10.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x10.5 +SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x12.5 +SMD capacitor, aluminum electrolytic, Vishay 1012, 10.0x12.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x12.6 +SMD capacitor, aluminum electrolytic, Panasonic F12, 10.0x12.6mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x14.3 +SMD capacitor, aluminum electrolytic, Vishay 1014, 10.0x14.3mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_16x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1616, 16.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_16x22 +SMD capacitor, aluminum electrolytic, Vishay 1621, 16.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_18x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1816, 18.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_18x22 +SMD capacitor, aluminum electrolytic, Vishay 1821, 18.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_CAP-XX_DMF3Zxxxxxxxx3D +5.5V, 470mF supercapacitor, 45mohm, -40ºC to +70ºC, https://www.cap-xx.com/wp-content/uploads/datasheets/CAP-XX-DMF470mF-Datasheet.pdf +supercap +0 +3 +3 +Capacitor_SMD +C_0201_0603Metric +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +capacitor +0 +4 +2 +Capacitor_SMD +C_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +4 +2 +Capacitor_SMD +C_0402_1005Metric +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0402_1005Metric_Pad0.74x0.62mm_HandSolder +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0504_1310Metric +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0504_1310Metric_Pad0.83x1.28mm_HandSolder +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0603_1608Metric +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0603_1608Metric_Pad1.08x0.95mm_HandSolder +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0805_2012Metric +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0805_2012Metric_Pad1.18x1.45mm_HandSolder +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_01005_0402Metric +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +capacitor +0 +4 +2 +Capacitor_SMD +C_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +4 +2 +Capacitor_SMD +C_1206_3216Metric +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1206_3216Metric_Pad1.33x1.80mm_HandSolder +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_1210_3225Metric +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1210_3225Metric_Pad1.33x2.70mm_HandSolder +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_1812_4532Metric +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1812_4532Metric_Pad1.57x3.40mm_HandSolder +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_1825_4564Metric +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1825_4564Metric_Pad1.57x6.80mm_HandSolder +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_2220_5750Metric +Capacitor SMD 2220 (5750 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_2220_5750Metric_Pad1.97x5.40mm_HandSolder +Capacitor SMD 2220 (5750 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_2225_5664Metric +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_2225_5664Metric_Pad1.80x6.60mm_HandSolder +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_3640_9110Metric +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_3640_9110Metric_Pad2.10x10.45mm_HandSolder +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_Elec_3x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 3.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_4x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 4.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_4x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 4.0x5.8mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_5x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_5x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.8mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.8mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x7.7mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x6.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x6.2mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x10.2mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_10x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 10.0x10.2mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZB4-A +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZB4 TZB4-A +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZB4-B +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZB4 TZB4-A +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZC3 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZC3 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZR1 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZR1 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZW4 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZW4 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZY2 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZY2 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Sprague-Goodman_SGC3 +trimmer capacitor SMD horizontal, http://media.wix.com/ugd/d86717_38d9821e12823a7aa9cef38c6c2a73cc.pdf + Sprague Goodman SGC3 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JN +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JN +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JQ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JQ +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JR +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JR +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JV +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JV +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JZ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JR +0 +2 +2 +Capacitor_THT +CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D4.0mm_P1.50mm +CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D4.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D5.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D5.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D6.3mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D7.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P2.50mm_P5.00mm +CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +Capacitor_THT +CP_Radial_D10.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P5.00mm_P7.50mm +CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +Capacitor_THT +CP_Radial_D10.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D14.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D14.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D16.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D17.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D18.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=22mm, height=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm height 40mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D22.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=24mm, height=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm height 40mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D24.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=25mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm height 45mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D25.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=26mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm height 45mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D26.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=30mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm height 45mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D30.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=35mm, height=50mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm height 50mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D35.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=40mm, height=50mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm height 50mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D40.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D4.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D4.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D6.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D6.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D7.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D7.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D8.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D8.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D9.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D9.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D10.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D10.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm +0 +2 +2 +Capacitor_THT +C_Disc_D3.0mm_W1.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D3.0mm_W2.0mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor +C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D3.4mm_W2.1mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D3.8mm_W2.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D4.3mm_W1.9mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D4.7mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D5.0mm_W2.5mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D5.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D5.1mm_W3.2mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D6.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D6.0mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor +C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D11.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D11.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D11.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D12.0mm_W4.4mm_P7.75mm +C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor +C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D12.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D12.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D14.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D14.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D16.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D16.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D4.0mm_H5.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D4.0mm_H7.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D5.0mm_H5.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D5.0mm_H7.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D5.0mm_H11.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D6.3mm_H5.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D6.3mm_H7.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D6.3mm_H11.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D8.0mm_H7.0mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D8.0mm_H11.5mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D10.0mm_H12.5mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D10.0mm_H16.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D10.0mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D12.5mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D12.5mm_H25.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D16.0mm_H25.0mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D16.0mm_H31.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D18.0mm_H35.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.0mm_W2.5mm_P2.50mm +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor +C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W2.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W2.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm +C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor +C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor +0 +4 +2 +Capacitor_THT +C_Rect_L7.0mm_W3.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W4.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W6.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.5mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm +C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor +0 +4 +2 +Capacitor_THT +C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm +C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor +C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor +0 +4 +2 +Capacitor_THT +C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L27.0mm_W9.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor +C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L27.0mm_W9.0mm_P23.00mm +C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor +C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L27.0mm_W11.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor +C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L32.0mm_W15.0mm_P27.00mm +C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor +C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor +0 +2 +2 +Capacitor_THT +DX_5R5HxxxxU_D11.5mm_P10.00mm +CP, Radial series, Radial, pin pitch=10.00mm, diameter=11.5mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf +CP Radial series Radial pin pitch 10.00mm diameter 11.5mm supercapacitor +0 +2 +2 +Capacitor_THT +DX_5R5VxxxxU_D11.5mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, diameter=11.5mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf +CP Radial series Radial pin pitch 5.00mm diameter 11.5mm supercapacitor +0 +2 +2 +Capacitor_THT +DX_5R5VxxxxU_D19.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, diameter=19mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf +CP Radial series Radial pin pitch 5.00mm diameter 19mm supercapacitor +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-08_AVX-J +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-10_AVX-L +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-12_Kemet-R +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm_HandSolder +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-15_AVX-P +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-10_Kemet-I +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-12_Kemet-S +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-18_Kemet-A +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-12_Kemet-T +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-15_AVX-H +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-21_Kemet-B +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-15_Kemet-U +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-20_AVX-F +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-28_Kemet-C +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-20_AVX-U +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm_HandSolder +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-28_AVX-C +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm_HandSolder +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-15_AVX-R +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-20_AVX-M +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-28_AVX-M +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-38_AVX-R +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-15_Kemet-W +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-20_Kemet-V +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-30_AVX-N +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-31_Kemet-D +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-40_Kemet-Y +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-43_Kemet-X +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7360-38_Kemet-E +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm_HandSolder +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-38_AVX-V +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm_HandSolder +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-438_AVX-U +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm_HandSolder +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Connector +Banana_Cliff_FCR7350B_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, black, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana black +0 +1 +1 +Connector +Banana_Cliff_FCR7350G_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, green, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana green +0 +1 +1 +Connector +Banana_Cliff_FCR7350L_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, blue, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana blue +0 +1 +1 +Connector +Banana_Cliff_FCR7350N_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, brown, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana brown +0 +1 +1 +Connector +Banana_Cliff_FCR7350R_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, red, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana red +0 +1 +1 +Connector +Banana_Cliff_FCR7350Y_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, yellow, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana yellow +0 +1 +1 +Connector +Banana_Jack_1Pin +Single banana socket, footprint - 6mm drill +banana socket +0 +1 +1 +Connector +Banana_Jack_2Pin +Dual banana socket, footprint - 2 x 6mm drills +banana socket +0 +2 +2 +Connector +Banana_Jack_3Pin +Triple banana socket, footprint - 3 x 6mm drills +banana socket +0 +3 +3 +Connector +CUI_PD-30 +3 pin connector, PD-30, http://www.cui.com/product/resource/pd-30.pdf +connector 3-pin PD-30 power DIN +0 +4 +4 +Connector +CUI_PD-30S +3-pin nonstandard DIN connector, shielded, PD-30S, http://www.cui.com/product/resource/pd-30s.pdf +connector 3-pin PD-30S power DIN shielded +0 +8 +5 +Connector +CUI_PD-30S_CircularHoles +3-pin nonstandard DIN connector, shielded, PD-30S, http://www.cui.com/product/resource/pd-30s.pdf +connector 3-pin PD-30S power DIN shielded +0 +8 +5 +Connector +CalTest_CT3151 +Right-angle standard banana jack, http://www.caltestelectronics.com/images/attachments/P315100rH_drawing.pdf +banana jack horizontal +0 +4 +1 +Connector +Connector_SFP_and_Cage +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=2227302&DocType=Customer+Drawing&DocLang=English +SFP+ SFP +0 +40 +21 +Connector +DTF13-12Px +http://www.te.com/usa-en/product-DTF13-12PA-G003.html +DEUTSCH DT header 12 pin +0 +12 +12 +Connector +FanPinHeader_1x03_P2.54mm_Vertical +3-pin CPU fan Through hole pin header, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf +pin header 3-pin CPU fan +0 +3 +3 +Connector +FanPinHeader_1x04_P2.54mm_Vertical +4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf +pin header 4-pin CPU fan +0 +4 +4 +Connector +GB042-34S-H10 +http://www.lsmtron.com/pdf/Connector&Antenna_catalog.PDF +34pin SMD connector +0 +34 +34 +Connector +IHI_B6A-PCB-45_Vertical +https://lugsdirect.com/PDF_Webprint/B6A-PCB-45-XX(-X).pdf +connector IHI B6A-PCB-45 +0 +49 +1 +Connector +JWT_A3963_1x02_P3.96mm_Vertical +JWT A3963, 3.96mm pitch Pin head connector (http://www.jwt.com.tw/pro_pdf/A3963.pdf) +connector JWT A3963 pinhead +0 +2 +2 +Connector +Joint-Tech_C5080WR-04P_1x04_P5.08mm_Vertical +C5080 SERIES 90° Wafer, (https://datasheet.lcsc.com/lcsc/1912261836_HR-Joint-Tech-Elec-C5080WR-04P_C477015.pdf) +connector side-entry ATA PATA IDE 5.25 inch floppy drive power +0 +6 +5 +Connector +NS-Tech_Grove_1x04_P2mm_Vertical +https://statics3.seeedstudio.com/images/opl/datasheet/3470130P1.pdf +Grove-1x04 +0 +4 +4 +Connector +OCN_OK-01GM030-04_2x15_P0.4mm_Vertical +Board to board connector, 2x15, 0.4mm pitch, http://www.main-soul.com/datasheet/ocn/connector/Spec_Draw_OK-01.pdf +board-to-board +0 +30 +30 +Connector +SpringContact_Harwin_S1941-46R +7.25mm SMT Multi-directional Spring Contact (T+R), https://cdn.harwin.com/pdfs/S1941R.pdf +spring contact emi emc shield +0 +1 +1 +Connector +Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2030-IDC.pdf +tag connect programming header pogo pins +0 +6 +6 +Connector +Tag-Connect_TC2030-IDC-NL_2x03_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2030-IDC-NL.pdf +tag connect programming header pogo pins +0 +6 +6 +Connector +Tag-Connect_TC2050-IDC-FP_2x05_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2050-IDC-430%20Datasheet.pdf +tag connect programming header pogo pins +0 +10 +10 +Connector +Tag-Connect_TC2050-IDC-NL_2x05_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2050-IDC-NL%20Datasheet.pdf +tag connect programming header pogo pins +0 +10 +10 +Connector +Tag-Connect_TC2050-IDC-NL_2x05_P1.27mm_Vertical_with_bottom_clip +Tag-Connect programming header with bottom courtyard for TC2050-NL Clip board ; https://www.tag-connect.com/wp-content/uploads/bsk-pdf-manager/TC2050-IDC-NL_Datasheet_8.pdf https://www.tag-connect.com/wp-content/uploads/bsk-pdf-manager/TC2050-CLIP_Datasheet_25.pdf +tag connect programming header pogo pins +0 +10 +10 +Connector +Tag-Connect_TC2070-IDC-FP_2x07_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2070-IDC%20Datasheet.pdf +tag connect programming header pogo pins +0 +14 +14 +Connector_AMASS +AMASS_MR30PW-FB_1x03_P3.50mm_Horizontal +Connector XT30 Horizontal PCB Female, https://www.tme.eu/en/Document/5e47640ba39fa492dbd4c0f4c8ae7b93/MR30PW%20SPEC.pdf +RC Connector XT30 +0 +5 +3 +Connector_AMASS +AMASS_MR30PW-M_1x03_P3.50mm_Horizontal +Connector XT30 Horizontal PCB Male, https://www.tme.eu/en/Document/5e47640ba39fa492dbd4c0f4c8ae7b93/MR30PW%20SPEC.pdf +RC Connector XT30 +0 +5 +3 +Connector_AMASS +AMASS_XT30PW-F_1x02_P2.50mm_Horizontal +Connector XT30 Horizontal PCB Female, https://www.tme.eu/en/Document/ce4077e36b79046da520ca73227e15de/XT30PW%20SPEC.pdf +RC Connector XT30 +0 +4 +2 +Connector_AMASS +AMASS_XT30PW-M_1x02_P2.50mm_Horizontal +Connector XT30 Horizontal PCB Male, https://www.tme.eu/en/Document/ce4077e36b79046da520ca73227e15de/XT30PW%20SPEC.pdf +RC Connector XT30 +0 +4 +2 +Connector_AMASS +AMASS_XT30U-F_1x02_P5.0mm_Vertical +Connector XT30 Vertical Cable Female, https://www.tme.eu/en/Document/3cbfa5cfa544d79584972dd5234a409e/XT30U%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT30U-M_1x02_P5.0mm_Vertical +Connector XT30 Vertical Cable Male, https://www.tme.eu/en/Document/3cbfa5cfa544d79584972dd5234a409e/XT30U%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT30UPB-F_1x02_P5.0mm_Vertical +Connector XT30 Vertical PCB Female, https://www.tme.eu/en/Document/4acc913878197f8c2e30d4b8cdc47230/XT30UPB%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT30UPB-M_1x02_P5.0mm_Vertical +Connector XT30 Vertical PCB Male, https://www.tme.eu/en/Document/4acc913878197f8c2e30d4b8cdc47230/XT30UPB%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT60-F_1x02_P7.20mm_Vertical +AMASS female XT60, through hole, vertical, https://www.tme.eu/Document/2d152ced3b7a446066e6c419d84bb460/XT60%20SPEC.pdf +XT60 female vertical +0 +2 +2 +Connector_AMASS +AMASS_XT60-M_1x02_P7.20mm_Vertical +AMASS female XT60, through hole, vertical, https://www.tme.eu/Document/2d152ced3b7a446066e6c419d84bb460/XT60%20SPEC.pdf +XT60 female vertical +0 +2 +2 +Connector_AMASS +AMASS_XT60IPW-M_1x03_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Male, https://www.bto.pl/pdf/08988/XT60IPW-M3.pdf +RC Connector XT60 +0 +5 +3 +Connector_AMASS +AMASS_XT60PW-F_1x02_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Female, https://www.tme.eu/en/Document/9b8d0c5eb7094295f3d3112c214d3ade/XT60PW%20SPEC.pdf +RC Connector XT60 +0 +4 +2 +Connector_AMASS +AMASS_XT60PW-M_1x02_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Female, https://www.tme.eu/en/Document/9b8d0c5eb7094295f3d3112c214d3ade/XT60PW%20SPEC.pdf +RC Connector XT60 +0 +4 +2 +Connector_Amphenol +Amphenol_M8S-03PMMR-SF8001 +M8 Male connector for panel, 90° PCB mount (https://www.amphenolltw.com/2012download/2D%20PDF/03_M%20Series%20Sensor%20Connectors/M8S-XXPMMR-SF8001.pdf) +three-pin M8 +0 +5 +4 +Connector_Audio +Jack_3.5mm_CUI_SJ-3523-SMT_Horizontal +3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cui.com/product/resource/sj-352x-smt-series.pdf) +3.5mm audio cui horizontal jack stereo +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ-3524-SMT_Horizontal +3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cui.com/product/resource/sj-352x-smt-series.pdf) +3.5mm audio cui horizontal jack stereo +0 +4 +4 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3523N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3524N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +4 +4 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3525N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3533NG_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3533NG_Horizontal_CircularHoles +TRS 3.5mm, horizontal, through-hole, , circular holeshttps://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal circular +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3535NG_Horizontal +TRS 3.5mm, horizontal, through-hole, with switch, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3535NG_Horizontal_CircularHoles +TRS 3.5mm, horizontal, through-hole, with switch, circular holes, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal circular +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ2-3593D-SMT_Horizontal +3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cuidevices.com/product/resource/sj2-359x-smt.pdf) +3.5mm audio cui horizontal jack stereo +0 +5 +5 +Connector_Audio +Jack_3.5mm_KoreanHropartsElec_PJ-320D-4A_Horizontal +Korean Hroparts Elec PJ-320D-4A (https://datasheet.lcsc.com/lcsc/1810121716_Korean-Hroparts-Elec-PJ-320D-4A_C95562.pdf) +smt female jack horizontal +0 +4 +4 +Connector_Audio +Jack_3.5mm_Ledino_KB3SPRS_Horizontal +https://www.reichelt.de/index.html?ACTION=7&LA=3&OPEN=0&INDEX=0&FILENAME=C160%252FKB3SPRS.pdf +jack stereo TRS +0 +5 +5 +Connector_Audio +Jack_3.5mm_Lumberg_1503_02_Horizontal +TRS 3.5mm, horizontal, Surface Mount (SMT), https://downloads.lumberg.com/datenblaetter/en/1503_02.pdf +TRS audio jack horizontal +0 +4 +3 +Connector_Audio +Jack_3.5mm_Lumberg_1503_03_Horizontal +TRS 3.5mm, horizontal, Surface Mount (SMT), https://downloads.lumberg.com/datenblaetter/en/1503_03.pdf +TRS audio jack horizontal +0 +5 +4 +Connector_Audio +Jack_3.5mm_Lumberg_1503_07_Horizontal +TRS 3.5mm, horizontal, through-hole, height 5mm, width 6.5mm, https://downloads.lumberg.com/datenblaetter/en/1503_07.pdf +TRS audio jack horizontal +0 +4 +3 +Connector_Audio +Jack_3.5mm_PJ311_Horizontal +PJ311 6pin SMD 3.5mm stereo headphones jack. +headphones jack plug stereo 3.5mm PJ311 +0 +6 +6 +Connector_Audio +Jack_3.5mm_PJ320D_Horizontal +Headphones with microphone connector, 3.5mm, 4 pins (http://www.qingpu-electronics.com/en/products/WQP-PJ320D-72.html) +3.5mm jack mic microphone phones headphones 4pins audio plug +0 +4 +4 +Connector_Audio +Jack_3.5mm_PJ320E_Horizontal +Headphones with microphone connector, 3.5mm, 4 pins (http://www.qingpu-electronics.com/en/products/WQP-PJ320E-177.html) +3.5mm jack mic microphone phones headphones 4pins audio plug +0 +5 +4 +Connector_Audio +Jack_3.5mm_PJ31060-I_Horizontal +PJ31060-I 6pin SMD 3.5mm headphones jack (http://www.china-bsun.com/Product48/1577.html) +headphones jack plug stereo 3.5mm PJ31060-I PJ31060 +0 +6 +6 +Connector_Audio +Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles +TRS 3.5mm, vertical, Thonkiconn, PCB mount, (http://www.qingpu-electronics.com/en/products/WQP-PJ398SM-362.html) +WQP-PJ398SM WQP-PJ301M-12 TRS 3.5mm mono vertical jack thonkiconn qingpu +0 +3 +3 +Connector_Audio +Jack_3.5mm_Switronic_ST-005-G_horizontal +3.5mm horizontal headphones jack, http://akizukidenshi.com/download/ds/switronic/ST-005-G.pdf +Connector Audio Switronic ST-005-G +0 +4 +3 +Connector_Audio +Jack_3.5mm_Technik_TWP-3002_Horizontal +3.5mm Horizontal Waterproof Stereo Headphones Jack, https://www.technik.com.hk/images/pdf_product/WP3002-PA66-A.pdf +audio jack stereo horizontal waterproof +0 +7 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NJ2FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, Non-switching mono jack (T/S), https://www.neutrik.com/en/product/nj2fd-v +neutrik jack vertical +0 +2 +2 +Connector_Audio +Jack_6.35mm_Neutrik_NJ3FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, Non-switching stereo jack (T/R/S), https://www.neutrik.com/en/product/nj3fd-v +neutrik jack vertical +0 +3 +3 +Connector_Audio +Jack_6.35mm_Neutrik_NJ5FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, 2 x switching (normalling) stereo jack (T/TN/R/RN/S), https://www.neutrik.com/en/product/nj5fd-v +neutrik jack vertical +0 +5 +5 +Connector_Audio +Jack_6.35mm_Neutrik_NJ6FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, 3 x switching (normalling) stereo jack (T/TN/R/RN/S/SN), https://www.neutrik.com/en/product/nj6fd-v +neutrik jack vertical +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NJ6TB-V_Vertical +6.35mm (1/4 in) Vertical Jack, 3 x switching (normalling) stereo jack B-gauge type (T/TN/R/RN/S/SN), https://www.neutrik.com/en/product/nj6tb-v +neutrik jack vertical +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HCD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with chrome ferrule and straight PCB pins, https://www.neutrik.com/en/product/nmj4hcd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HFD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with full threaded nose and straight PCB pins, https://www.neutrik.com/en/product/nmj4hfd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HFD3_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with a full threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj4hfd3 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HHD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with a half threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj4hhd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HCD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with chrome ferrule and straight PCB pins, https://www.neutrik.com/en/product/nmj6hcd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HCD3_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with chrome ferrule and offset PCB pins, https://www.neutrik.com/en/product/nmj6hcd3 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD2-AU_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, full threaded nose, straight PCB pins, gold plated contacts, https://www.neutrik.com/en/product/nmj6hfd2-au +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and straight PCB pins, https://www.neutrik.com/en/product/nmj6hfd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD3_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj6hfd3 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD4_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and fishtail PCB pins, https://www.neutrik.com/en/product/nmj6hfd4 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HHD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with half threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj6hhd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ3HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, unswitched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj3hf-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj4hf-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HF_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, fully threaded nose, https://www.neutrik.com/en/product/nrj4hf +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HH-1_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, half threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj4hh-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HH_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, half threaded nose, https://www.neutrik.com/en/product/nrj4hh +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-1-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hf-1-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hf-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, fully threaded nose, https://www.neutrik.com/en/product/nrj6hf-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, fully threaded nose, https://www.neutrik.com/en/product/nrj6hf +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, half threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hh-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, half threaded nose, https://www.neutrik.com/en/product/nrj6hh-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, half threaded nose, https://www.neutrik.com/en/product/nrj6hh +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose, gold plated contacts, efficient chassis ground connection, T+R+S normalling contact, https://www.neutrik.com/en/product/nrj6hm-1-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1-PRE_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose, efficient chassis ground connection, T+R normalling contact, https://www.neutrik.com/en/product/nrj6hm-1-pre +neutrik jack slim +0 +6 +5 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose with efficient chassis ground connection, T+R+S normalling contact, https://www.neutrik.com/en/product/nrj6hm-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ8HC_Horizontal +Stacking Jacks, Mono dual jack, full nose, https://www.neutrik.com/en/product/nsj8hc +neutrik jack stacking +0 +9 +9 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ8HL_Horizontal +Stacking Jacks, Mono dual jack, quick fix nose, https://www.neutrik.com/en/product/nsj8hl +neutrik jack stacking +0 +9 +9 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HC_Horizontal +Stacking Jacks, Stereo dual jack, full nose, https://www.neutrik.com/en/product/nsj12hc +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HF-1_Horizontal +Stacking Jacks, Stereo dual jack, full threaded nose, https://www.neutrik.com/en/product/nsj12hf-1 +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HH-1_Horizontal +Stacking Jacks, Stereo dual jack, half threaded nose, https://www.neutrik.com/en/product/nsj12hh-1 +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HL_Horizontal +Stacking Jacks, Stereo dual jack, quick fix nose, https://www.neutrik.com/en/product/nsj12hl +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj5fi-h-0 +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj5fi-h +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj5fi-v-0 +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj5fi-v +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H-0_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fa-h-0 +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H-DA_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/ncj6fa-h-da +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, https://www.neutrik.com/en/product/ncj6fa-h +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V-0_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fa-v-0 +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V-DA_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/ncj6fa-v-da +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, https://www.neutrik.com/en/product/ncj6fa-v +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj6fi-h-0 +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fi-h +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj6fi-v-0 +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fi-v +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, horizontal PCB mount, https://www.neutrik.com/en/product/ncj9fi-h-0 +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj9fi-h +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, vertical PCB mount, https://www.neutrik.com/en/product/ncj9fi-v-0 +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj9fi-v +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj10fi-h-0 +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj10fi-h +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj10fi-v-0 +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj10fi-v +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah1-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1-DA_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3faah1-da +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH2-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah2-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH2_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah2 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV-0_Vertical +AA Series, 3 pole female receptacle, grounding: without ground/shell contact, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1-0_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav1-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1-DA_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3faav1-da +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV2-0_Vertical +AA Series, 3 pole female receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav2-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV2_Vertical +AA Series, 3 pole female receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav2 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV_Vertical +AA Series, 3 pole female receptacle, grounding: without ground/shell contact, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1-DA_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fah1-da +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2-DA_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fah2-da +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, lateral left PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahl-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahl1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3fahl1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3fahr1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR2-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR2_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3fahr2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1-DA_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fav1-da +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2-DA_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fav2-da +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV_Vertical +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-B_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbh1-b +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-DA_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbh1-da +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-E_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3fbh1-e +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fbh1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-B_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbh2-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-DA_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbh2-da +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-E_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3fbh2-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fbh2 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBHL1_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3fbhl1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-0_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring, no latch, https://www.neutrik.com/en/product/nc3fbv1-0 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-B_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbv1-b +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-DA_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbv1-da +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-B_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbv2-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-DA_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbv2-da +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-SW_Vertical +B Series, 3 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv2-sw +neutrik xlr b +0 +7 +7 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv2 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH-0_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH-1_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah-1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV-0_Vertical +AA Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV-1_Vertical +AA Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav-1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV_Vertical +AA Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAFH-PH_Horizontal +A Series, Chassis connector H female (A series layout), mates with Phoenix MSTB2,5/3-ST, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mafh-ph +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAH-0_Horizontal +A Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mah-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAHL_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3mahl +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAHR_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3mahr +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAH_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mah +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAMH-PH_Horizontal +A Series, Chassis connector Phoenix H male (A series layout), mates with Phoenix MSTB 2,5/3-ST, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mamh-ph +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAV-0_Vertical +A Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, vertical PCB mount, https://www.neutrik.com/en/product/nc3mav-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAV_Vertical +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3mav +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-0_Horizontal +B Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh-0 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-1_Horizontal +B Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh-1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbh-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-E_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3mbh-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHL-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral left PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbhl-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHL_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral left PCB mount, https://www.neutrik.com/en/product/nc3mbhl +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHR-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral right PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbhr-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHR_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral right PCB mount, https://www.neutrik.com/en/product/nc3mbhr +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-0_Vertical +B Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-0 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-1_Vertical +B Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-B_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbv-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-E_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3mbv-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-SW_Vertical +B Series, 3 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-sw +neutrik xlr b +0 +7 +7 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC4FAH-0_Horizontal +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc4fah-0 +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAH_Horizontal +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4fah +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAV-0_Vertical +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc4fav-0 +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAV_Vertical +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4fav +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FBH_Horizontal +B Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4fbh +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FBV_Vertical +B Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4fbv +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MAH_Horizontal +A Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4mah +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MAV_Vertical +A Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4mav +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MBH_Horizontal +B Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4mbh +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MBV_Vertical +B Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4mbv +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH-0_Horizontal +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc5fah-0 +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH-DA_Horizontal +A Series, 5 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc5fah-da +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH_Horizontal +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5fah +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV-DA_Vertical +A Series, 5 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc5fav-da +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV-SW_Vertical +A Series, 5 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, color coding possible, https://www.neutrik.com/en/product/nc5fav-sw +neutrik xlr a +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV_Vertical +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fav +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBH-B_Horizontal +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5fbh-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBH_Horizontal +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5fbh +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV-B_Vertical +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5fbv-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV-SW_Vertical +B Series, 5 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fbv-sw +neutrik xlr b +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV_Vertical +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fbv +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MAH_Horizontal +A Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5mah +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MAV-SW_Vertical +A Series, 5 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mav-sw +neutrik xlr a +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5MAV_Vertical +A Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mav +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBH-B_Horizontal +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5mbh-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBH_Horizontal +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5mbh +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV-B_Vertical +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5mbv-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV-SW_Vertical +B Series, 5 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mbv-sw +neutrik xlr b +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV_Vertical +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mbv +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_speakON-6.35mm_Neutrik_NLJ2MDXX-H_Horizontal +speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, horizontal pcb mount, replaces NLJ2MD-H, https://www.neutrik.com/en/product/nlj2mdxx-h +neutrik speakon combo +0 +2 +2 +Connector_Audio +Jack_speakON-6.35mm_Neutrik_NLJ2MDXX-V_Vertical +speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, vertical pcb mount, replaces NLJ2MD-V, https://www.neutrik.com/en/product/nlj2mdxx-v +neutrik speakon combo +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL2MDXX-H-3_Horizontal +speakON Chassis Connectors, 2 pole chassis connector, gray D-size flange, countersunk thru holes, horizontal PCB, replaces NL2MD-H, https://www.neutrik.com/en/product/nl2mdxx-h-3 +neutrik speakon +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL2MDXX-V_Vertical +speakON Chassis Connectors, 2 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, replaces NL2MD-V, https://www.neutrik.com/en/product/nl2mdxx-v +neutrik speakon +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-H-2_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), horizontal PCB mount, replaces NL4MD-H-2, https://www.neutrik.com/en/product/nl4mdxx-h-2 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-H-3_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), horizontal PCB mount, replaces NL4MD-H, NL4MD-H-1, NL4MD-H-3, https://www.neutrik.com/en/product/nl4mdxx-h-3 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-V-2_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), vertical PCB mount, replaces NL4MD-V-2, https://www.neutrik.com/en/product/nl4mdxx-v-2 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-V-3_Vertical +speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), vertical PCB mount, replaces NL4MD-V-1, https://www.neutrik.com/en/product/nl4mdxx-v-3 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-V_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, replaces NL4MD-V, NL4MD-V-R, NL4MD-V-S, https://www.neutrik.com/en/product/nl4mdxx-v +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL8MDXX-V-3_Vertical +speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, self tapping screw holes (A-screw), vertical PCB mount, replaces NL8MD-V-1, https://www.neutrik.com/en/product/nl8mdxx-v-3 +neutrik speakon +0 +8 +8 +Connector_Audio +Jack_speakON_Neutrik_NL8MDXX-V_Vertical +speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, countersunk thru holes, vertical PCB mount, replaces NL8MD-V, https://www.neutrik.com/en/product/nl8mdxx-v +neutrik speakon +0 +8 +8 +Connector_Audio +Jack_speakON_Neutrik_NLT4MD-V_Vertical +STX Series, 4 pole male chassis connector, metal housing, vertical PCB mount, self tapping screw holes (A-screw), https://www.neutrik.com/en/product/nlt4md-v +neutrik speakon stx +0 +4 +4 +Connector_Audio +MiniXLR-5_Switchcraft_TRAPC_Horizontal +http://www.switchcraft.com/ProductSummary.aspx?Parent=620 http://www.switchcraft.com/Drawings/TRAPC_X-TRASM_X_SERIES_CD.PDF +THT Mini XLR 5Pin right angle +0 +5 +5 +Connector_Audio +Plug_3.5mm_CUI_SP-3541 +4 contacts, 3.5mm audio plug, https://www.cuidevices.com/product/resource/pdf/sp-3541.pdf +3.5mm plug TRRS +0 +4 +4 +Connector_BarrelJack +BarrelJack_CLIFF_FC681465S_SMT_Horizontal +Surface-mount DC Barrel Jack, https://www.cliffuk.co.uk/products/dcconnectors/FC681465S.pdf +Power Jack SMT +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-036AH-SMT_Horizontal +Surface-mount DC Barrel Jack, http://www.cui.com/product/resource/pj-036ah-smt.pdf +Power Jack SMT +0 +3 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-063AH_Horizontal +Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf +barrel jack cui dc power +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-063AH_Horizontal_CircularHoles +Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf +barrel jack cui dc power +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-079BH_Horizontal +Barrel Jack, 2.5mm ID, 5.5mm OD, 24V, 5A, switch, https://www.cui.com/product/resource/pj-079bh.pdf +barrel jack cui dc power +0 +5 +4 +Connector_BarrelJack +BarrelJack_CUI_PJ-102AH_Horizontal +Thin-pin DC Barrel Jack, https://cdn-shop.adafruit.com/datasheets/21mmdcjackDatasheet.pdf +Power Jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_GCT_DCJ200-10-A_Horizontal +Barrel jack connector (5.5 mm outer diameter, 2.05 inner diameter ), https://gct.co/files/drawings/dcj200-10.pdf +connector barrel jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_Horizontal +DC Barrel Jack +Power Jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_Kycon_KLDX-0202-xC_Horizontal +DC Barrel Jack 2mm or 2.5mm center pin, https://www.kycon.com/Pub_Eng_Draw/KLDX-0202-AC%20&%20BC.pdf +power jack 2mm 2.5mm KLDX-0202-BC KLDX-0202-AC +0 +3 +3 +Connector_BarrelJack +BarrelJack_SwitchcraftConxall_RAPC10U_Horizontal +DC Power Jack, 13A, 24V, Panel Mount,Through-hole, https://www.switchcraft.com/Drawings/RAPC10U_CD.pdf +barreljack switchcraftconxall dc power +0 +2 +2 +Connector_BarrelJack +BarrelJack_Wuerth_694102107102_1.0x3.9mm +Wuerth Elektronik barrel jack connector, SMD, 3.9mm OD, 1.0mm ID, with switch, 18V, 5A, dimensions: 9.3 x 8 x 5.3 mm (L x W x H), datasheet: https://www.farnell.com/datasheets/2130962.pdf +barrel jack Wuerth Elektronik 694102107102 +0 +4 +3 +Connector_BarrelJack +BarrelJack_Wuerth_694103107102_1.35x3.9mm +Wuerth Elektronik barrel jack connector, SMD, 3.9mm OD, 1.35mm ID, with switch, 18V, 5A, dimensions: 9.3 x 8 x 5.3 mm (L x W x H), datasheet: https://www.we-online.com/components/products/datasheet/694103107102.pdf +barrel jack Wuerth Elektronik 694103107102 +0 +4 +3 +Connector_BarrelJack +BarrelJack_Wuerth_694106106102_2.0x5.5mm +Wuerth Elektronik 694106106102 Barrel Jack, 2.0x5.5mm, https://www.we-online.com/components/products/datasheet/694106106102.pdf +barrel jack Wuerth Elektronik 694106106102 +0 +4 +3 +Connector_BarrelJack +BarrelJack_Wuerth_694108106102_2.5x5.5mm +Wuerth Elektronik 694108106102 Barrel Jack, 2.5x5.5mm, https://www.we-online.com/components/products/datasheet/694106106102.pdf +barrel jack Wuerth Elektronik 694108106102 +0 +4 +3 +Connector_BarrelJack +BarrelJack_Wuerth_6941xx301002 +Wuerth electronics barrel jack connector (5.5mm outher diameter, inner diameter 2.05mm or 2.55mm depending on exact order number), See: http://katalog.we-online.de/em/datasheet/6941xx301002.pdf +connector barrel jack +0 +3 +3 +Connector_Card +CF-Card_3M_N7E50-A516xx-30 +Compact Flash Card connector, polarization inverse (https://multimedia.3m.com/mws/media/22424O/3mtm-cf-card-header-type-i-low-profile-surface-mount-ts0747.pdf) +connector cf +0 +54 +50 +Connector_Card +CF-Card_3M_N7E50-E516xx-30 +Compact Flash Card connector, normal polarization (https://multimedia.3m.com/mws/media/22424O/3mtm-cf-card-header-type-i-low-profile-surface-mount-ts0747.pdf) +connector cf +0 +54 +50 +Connector_Card +SD-SIM_microSD-microSIM_Molex_104168-1620 +microSD and microSIM connector, https://www.molex.com/pdm_docs/sd/1041681620_sd.pdf +Combo Connector microSD and microSIM +0 +25 +18 +Connector_Card +SD_Hirose_DM1AA_SF_PEJ82 +SD, SMD, top-mount, push-push (https://www.hirose.com/product/document?clcode=CL0609-0004-8-82&productname=DM1AA-SF-PEJ(82)&series=DM1&documenttype=2DDrawing&lang=en&documentid=0000915301) +SD card connector +0 +16 +13 +Connector_Card +SD_Kyocera_145638009211859+ +SD Card Connector, Normal Type, Outer Tail, Without Ejector (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638009511859+ +SD Card Connector, Normal Type, Outer Tail, Spring Eject Type (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638109211859+ +SD Card Connector, Reverse Type, Outer Tail, Without Ejector (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638109511859+ +SD Card Connector, Reverse Type, Outer Tail, Spring Eject Type (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_TE_2041021 +SD card connector, top mount, SMT (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2041021%7FB%7Fpdf%7FEnglish%7FENG_CD_2041021_B_C_2041021_B.pdf%7F2041021-4) +sd card +0 +15 +12 +Connector_Card +microSD_HC_Hirose_DM3AT-SF-PEJM5 +Micro SD, SMD, right-angle, push-pull (https://www.hirose.com/product/en/download_file/key_name/DM3AT-SF-PEJM5/category/Drawing%20(2D)/doc_file_id/44099/?file_category_id=6&item_id=06090031000&is_series=) +Micro SD +0 +14 +11 +Connector_Card +microSD_HC_Hirose_DM3BT-DSF-PEJS +Micro SD, SMD, reverse on-board, right-angle, push-pull (https://www.hirose.com/product/en/download_file/key_name/DM3BT-DSF-PEJS/category/Drawing%20(2D)/doc_file_id/44097/?file_category_id=6&item_id=06090029900&is_series=) +Micro SD +0 +16 +11 +Connector_Card +microSD_HC_Hirose_DM3D-SF +Micro SD, SMD, right-angle, push-pull (https://media.digikey.com/PDF/Data%20Sheets/Hirose%20PDFs/DM3D-SF.pdf) +Micro SD +0 +14 +11 +Connector_Card +microSD_HC_Molex_47219-2001 +1.10mm Pitch microSD Card Connector, Hinge Type, https://www.molex.com/pdm_docs/sd/472192001_sd.pdf +Micro SD +0 +12 +9 +Connector_Card +microSD_HC_Molex_104031-0811 +1.10mm Pitch microSD Memory Card Connector, Surface Mount, Push-Pull Type, 1.42mm Height, with Detect Switch (https://www.molex.com/pdm_docs/sd/1040310811_sd.pdf) +microSD SD molex +0 +14 +11 +Connector_Card +microSD_HC_Wuerth_693072010801 +http://katalog.we-online.de/em/datasheet/693072010801.pdf +Micro SD Wuerth Wurth Würth +0 +12 +9 +Connector_Card +microSIM_JAE_SF53S006VCBR2000 +micro SIM card connector, 6pos., 1.45mm height, Push-pull type, https://www.jae.com/direct/topics/topics_file_download/topics_id=68883&ext_no=06 +microSIM GSM Card +0 +14 +7 +Connector_Coaxial +BNC_Amphenol_031-5539_Vertical +BNC coaxial connector vertical, Amphenol 031-71059, https://www.amphenolrf.com/library/download/link/link_id/594427/parent/031-5539/ +BNC Amphenol Vertical +0 +4 +2 +Connector_Coaxial +BNC_Amphenol_031-6575_Horizontal +dual independently isolated BNC plug (https://www.amphenolrf.com/downloads/dl/file/id/2980/product/644/031_6575_customer_drawing.pdf) +Dual BNC Amphenol Horizontal +0 +6 +4 +Connector_Coaxial +BNC_Amphenol_B6252HB-NPP3G-50_Horizontal +http://www.farnell.com/datasheets/612848.pdf +BNC Amphenol Horizontal +0 +4 +2 +Connector_Coaxial +BNC_PanelMountable_Vertical +Panel-mountable BNC connector mounted through PCB, vertical +BNC connector +0 +2 +2 +Connector_Coaxial +BNC_TEConnectivity_1478035_Horizontal +BNC RF Interface, PCB mount 4 pin, Right Angle, Bayonet, 50Ohm, 4GHz, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1478035%7FB1%7Fpdf%7FEnglish%7FENG_CD_1478035_B1.pdf%7F1-1478035-0 +BNC RF interface bayonet 50ohm +0 +5 +2 +Connector_Coaxial +BNC_TEConnectivity_1478204_Vertical +BNC female PCB mount 4 pin straight chassis connector http://www.te.com/usa-en/product-1-1478204-0.html +BNC female PCB mount 4 pin straight chassis connector +0 +5 +2 +Connector_Coaxial +BNC_Win_364A2x95_Horizontal +Dual front isolated BNC plug (https://www.winconn.com/wp-content/uploads/364A2595.pdf) +Dual BNC Horizontal Isolated +0 +6 +3 +Connector_Coaxial +CoaxialSwitch_Hirose_MS-156C3_Horizontal +Subminiature Coaxial Switch 1.35mm High, DC to 11GHz +Switch Coaxial RF +0 +12 +3 +Connector_Coaxial +MMCX_Molex_73415-0961_Horizontal_0.8mm-PCB +Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf +Molex MMCX Horizontal Coaxial +0 +3 +2 +Connector_Coaxial +MMCX_Molex_73415-0961_Horizontal_1.0mm-PCB +Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf +Molex MMCX Horizontal Coaxial +0 +3 +2 +Connector_Coaxial +MMCX_Molex_73415-0961_Horizontal_1.6mm-PCB +Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf +Molex MMCX Horizontal Coaxial +0 +3 +2 +Connector_Coaxial +MMCX_Molex_73415-1471_Vertical +http://www.molex.com/pdm_docs/sd/734151471_sd.pdf +Molex MMCX Coaxial Connector 50 ohms Female Jack Vertical THT +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_901-143_Horizontal + Amphenol RF 901-143 https://www.amphenolrf.com/library/download/link/link_id/585682 +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_901-144_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/7023/product/3103/901_144_customer_drawing.pdf +SMA THT Female Jack Vertical +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-10_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/4007/product/2974/132134_10_customer_drawing.pdf +SMA SMD Female Jack Vertical +0 +3 +2 +Connector_Coaxial +SMA_Amphenol_132134-11_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/3406/product/2975/132134_11_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-14_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/1793/product/2976/132134_14_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-16_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/1141/product/2978/132134_16_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132203-12_Horizontal +https://www.amphenolrf.com/media/downloads/1769/132203-12.pdf +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132289_EdgeMount +http://www.amphenolrf.com/132289.html +SMA +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132291-12_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/1688/product/3020/132291_12_customer_drawing.pdf +SMA THT Female Jack Vertical Bulkhead +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132291_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/3222/product/2918/132291_customer_drawing.pdf +SMA THT Female Jack Vertical Bulkhead +0 +5 +2 +Connector_Coaxial +SMA_Molex_73251-1153_EdgeMount_Horizontal +Molex SMA RF Connectors, Edge Mount, (http://www.molex.com/pdm_docs/sd/732511150_sd.pdf) +sma edge +0 +11 +2 +Connector_Coaxial +SMA_Molex_73251-2120_EdgeMount_Horizontal +Molex SMA RF Connector, Edge Mount, (http://www.molex.com/pdm_docs/sd/732512120_sd.pdf) +sma edge +0 +7 +2 +Connector_Coaxial +SMA_Molex_73251-2200_Horizontal +https://www.molex.com/webdocs/datasheets/pdf/en-us/0732512200_RF_COAX_CONNECTORS.pdf +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Samtec_SMA-J-P-H-ST-EM1_EdgeMount +Connector SMA, 0Hz to 20GHz, 50Ohm, Edge Mount (http://suddendocs.samtec.com/prints/sma-j-p-x-st-em1-mkt.pdf) +SMA Straight Samtec Edge Mount +0 +5 +2 +Connector_Coaxial +SMA_Wurth_60312102114405_Vertical +Würth WR-SMA PCB SMT Jack, Vertical (https://www.we-online.com/components/products/datasheet/60312102114405.pdf) +Coaxial Connector 50 ohms Female +0 +3 +2 +Connector_Coaxial +SMA_Wurth_60312002114503_Vertical +https://www.we-online.de/katalog/datasheet/60312002114503.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMB_Jack_Vertical +SMB pcb mounting jack +SMB Jack Striaght +0 +5 +2 +Connector_Coaxial +U.FL_Hirose_U.FL-R-SMT-1_Vertical +Hirose U.FL Coaxial https://www.hirose.com/product/en/products/U.FL/U.FL-R-SMT-1%2810%29/ +Hirose U.FL Coaxial +0 +3 +2 +Connector_Coaxial +U.FL_Molex_MCRF_73412-0110_Vertical +Molex Microcoaxial RF Connectors (MCRF), mates Hirose U.FL, (http://www.molex.com/pdm_docs/sd/734120110_sd.pdf) +mcrf hirose ufl u.fl microcoaxial +0 +4 +2 +Connector_Coaxial +WR-MMCX_Wuerth_66012102111404_Vertical +Würth WR-MMCX PCB SMT Jack, Vertical (https://www.we-online.com/components/products/datasheet/66012102111404.pdf) +Coaxial Connector 50 ohms Female +0 +3 +2 +Connector_Coaxial +WR-MMCX_Wuerth_66011102111302_Horizontal +Würth WR-MMCX PCB SMT Jack, Horizontal (https://www.we-online.com/components/products/datasheet/66011102111302.pdf) +Coaxial Connector 50 ohms Female +0 +7 +2 +Connector_DIN +DIN41612_B2_2x8_Female_Vertical_THT +DIN41612 connector, type B/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +16 +16 +Connector_DIN +DIN41612_B2_2x8_Male_Horizontal_THT +DIN41612 connector, type B/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +16 +16 +Connector_DIN +DIN41612_B2_2x16_Female_Vertical_THT +DIN41612 connector, type B/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +32 +32 +Connector_DIN +DIN41612_B2_2x16_Male_Horizontal_THT +DIN41612 connector, type B/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +32 +32 +Connector_DIN +DIN41612_B3_2x5_Female_Vertical_THT +DIN41612 connector, type B/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +10 +10 +Connector_DIN +DIN41612_B3_2x5_Male_Horizontal_THT +DIN41612 connector, type B/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +10 +10 +Connector_DIN +DIN41612_B3_2x10_Female_Vertical_THT +DIN41612 connector, type B/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +20 +20 +Connector_DIN +DIN41612_B3_2x10_Male_Horizontal_THT +DIN41612 connector, type B/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +20 +20 +Connector_DIN +DIN41612_B_1x32_Female_Vertical_THT +DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_1x32_Male_Horizontal_THT +DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_2x16_Female_Vertical_THT +DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_2x16_Male_Horizontal_THT +DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_2x32_Female_Vertical_THT +DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +64 +64 +Connector_DIN +DIN41612_B_2x32_Male_Horizontal_THT +DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +64 +64 +Connector_DIN +DIN41612_C2_2x16_Female_Vertical_THT +DIN41612 connector, type C/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +32 +32 +Connector_DIN +DIN41612_C2_2x16_Male_Horizontal_THT +DIN41612 connector, type C/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +32 +32 +Connector_DIN +DIN41612_C2_3x16_Female_Vertical_THT +DIN41612 connector, type C/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +48 +48 +Connector_DIN +DIN41612_C2_3x16_Male_Horizontal_THT +DIN41612 connector, type C/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +48 +48 +Connector_DIN +DIN41612_C3_2x10_Female_Vertical_THT +DIN41612 connector, type C/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +20 +20 +Connector_DIN +DIN41612_C3_2x10_Male_Horizontal_THT +DIN41612 connector, type C/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +20 +20 +Connector_DIN +DIN41612_C3_3x10_Female_Vertical_THT +DIN41612 connector, type C/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +30 +30 +Connector_DIN +DIN41612_C3_3x10_Male_Horizontal_THT +DIN41612 connector, type C/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +30 +30 +Connector_DIN +DIN41612_C_1x32_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_1x32_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x16_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x16_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x32_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +64 +64 +Connector_DIN +DIN41612_C_2x32_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +64 +64 +Connector_DIN +DIN41612_C_3x16_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +48 +48 +Connector_DIN +DIN41612_C_3x16_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +48 +48 +Connector_DIN +DIN41612_C_3x32_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +96 +96 +Connector_DIN +DIN41612_C_3x32_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +96 +96 +Connector_DIN +DIN41612_D_2x8_Female_Vertical_THT +DIN41612 connector, type D, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +16 +16 +Connector_DIN +DIN41612_D_2x8_Male_Horizontal_THT +DIN41612 connector, type D, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +16 +16 +Connector_DIN +DIN41612_D_2x16_Female_Vertical_THT +DIN41612 connector, type D, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +32 +32 +Connector_DIN +DIN41612_D_2x16_Male_Horizontal_THT +DIN41612 connector, type D, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_RowsAC_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_RowsAC_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_3x16_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +48 +48 +Connector_DIN +DIN41612_E_3x16_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +48 +48 +Connector_DIN +DIN41612_F_2x16_Female_Vertical_THT +DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_Male_Horizontal_THT +DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_RowsZD_Female_Vertical_THT +DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_RowsZD_Male_Horizontal_THT +DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_3x16_Female_Vertical_THT +DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +48 +48 +Connector_DIN +DIN41612_F_3x16_Male_Horizontal_THT +DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +48 +48 +Connector_DIN +DIN41612_Q2_2x16_Female_Horizontal_THT +DIN41612 connector, type Q/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/2 +0 +32 +32 +Connector_DIN +DIN41612_Q2_2x16_Male_Vertical_THT +DIN41612 connector, type Q/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/2 +0 +32 +32 +Connector_DIN +DIN41612_Q3_2x10_Female_Horizontal_THT +DIN41612 connector, type Q/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/3 +0 +20 +20 +Connector_DIN +DIN41612_Q3_2x10_Male_Vertical_THT +DIN41612 connector, type Q/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/3 +0 +20 +20 +Connector_DIN +DIN41612_Q_2x32_Female_Horizontal_THT +DIN41612 connector, type Q, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q +0 +64 +64 +Connector_DIN +DIN41612_Q_2x32_Male_Vertical_THT +DIN41612 connector, type Q, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q +0 +64 +64 +Connector_DIN +DIN41612_R2_2x16_Female_Horizontal_THT +DIN41612 connector, type R/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +32 +32 +Connector_DIN +DIN41612_R2_2x16_Male_Vertical_THT +DIN41612 connector, type R/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +32 +32 +Connector_DIN +DIN41612_R2_3x16_Female_Horizontal_THT +DIN41612 connector, type R/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +48 +48 +Connector_DIN +DIN41612_R2_3x16_Male_Vertical_THT +DIN41612 connector, type R/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +48 +48 +Connector_DIN +DIN41612_R3_2x10_Female_Horizontal_THT +DIN41612 connector, type R/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +20 +20 +Connector_DIN +DIN41612_R3_2x10_Male_Vertical_THT +DIN41612 connector, type R/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +20 +20 +Connector_DIN +DIN41612_R3_3x10_Female_Horizontal_THT +DIN41612 connector, type R/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +30 +30 +Connector_DIN +DIN41612_R3_3x10_Male_Vertical_THT +DIN41612 connector, type R/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +30 +30 +Connector_DIN +DIN41612_R_1x32_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_1x32_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x16_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x16_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x32_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +64 +64 +Connector_DIN +DIN41612_R_2x32_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +64 +64 +Connector_DIN +DIN41612_R_3x16_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +48 +48 +Connector_DIN +DIN41612_R_3x16_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +48 +48 +Connector_DIN +DIN41612_R_3x32_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +96 +96 +Connector_DIN +DIN41612_R_3x32_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +96 +96 +Connector_Dsub +DSUB-9_Female_EdgeMount_P2.77mm +9-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Vertical_P2.77x2.84mm +9-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Vertical_P2.77x2.84mm_MountingHoles +9-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_EdgeMount_P2.77mm +9-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Vertical_P2.77x2.84mm +9-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Vertical_P2.77x2.84mm_MountingHoles +9-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 25mm +0 +11 +10 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Female_Vertical_P2.29x1.98mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Male_Vertical_P2.29x1.98mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 25mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_EdgeMount_P2.77mm +15-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Vertical_P2.77x2.84mm +15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Vertical_P2.77x2.84mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_EdgeMount_P2.77mm +15-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Vertical_P2.77x2.84mm +15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Vertical_P2.77x2.84mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-25_Female_EdgeMount_P2.77mm +25-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Vertical_P2.77x2.84mm +25-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Vertical_P2.77x2.84mm_MountingHoles +25-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_EdgeMount_P2.77mm +25-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Vertical_P2.77x2.84mm +25-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Vertical_P2.77x2.84mm_MountingHoles +25-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Female_Vertical_P2.29x1.98mm_MountingHoles +26-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Male_Vertical_P2.29x1.98mm_MountingHoles +26-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-37_Female_EdgeMount_P2.77mm +37-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Vertical_P2.77x2.84mm +37-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Vertical_P2.77x2.84mm_MountingHoles +37-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_EdgeMount_P2.77mm +37-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Vertical_P2.77x2.84mm +37-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Vertical_P2.77x2.84mm_MountingHoles +37-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Female_Vertical_P2.29x1.98mm_MountingHoles +44-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Male_Vertical_P2.29x1.98mm_MountingHoles +44-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x2.54mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x2.54mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Female_Vertical_P2.41x1.98mm_MountingHoles +62-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.41x1.98mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector straight vertical THT female pitch 2.41x1.98mm mounting holes distance 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x2.54mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x2.54mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Male_Vertical_P2.41x1.98mm_MountingHoles +62-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.41x1.98mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector straight vertical THT male pitch 2.41x1.98mm mounting holes distance 63.5mm +0 +64 +63 +Connector_FFC-FPC +Hirose_FH12-6S-0.5SH_1x06-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-6S-0.5SH, 6 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +8 +7 +Connector_FFC-FPC +Hirose_FH12-8S-0.5SH_1x08-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-8S-0.5SH, 8 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +10 +9 +Connector_FFC-FPC +Hirose_FH12-10S-0.5SH_1x10-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-10S-0.5SH, 10 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +12 +11 +Connector_FFC-FPC +Hirose_FH12-11S-0.5SH_1x11-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-11S-0.5SH, 11 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +13 +12 +Connector_FFC-FPC +Hirose_FH12-12S-0.5SH_1x12-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-12S-0.5SH, 12 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +14 +13 +Connector_FFC-FPC +Hirose_FH12-13S-0.5SH_1x13-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-13S-0.5SH, 13 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +15 +14 +Connector_FFC-FPC +Hirose_FH12-14S-0.5SH_1x14-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-14S-0.5SH, 14 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +16 +15 +Connector_FFC-FPC +Hirose_FH12-15S-0.5SH_1x15-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-15S-0.5SH, 15 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +17 +16 +Connector_FFC-FPC +Hirose_FH12-16S-0.5SH_1x16-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-16S-0.5SH, 16 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +18 +17 +Connector_FFC-FPC +Hirose_FH12-17S-0.5SH_1x17-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-17S-0.5SH, 17 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +19 +18 +Connector_FFC-FPC +Hirose_FH12-18S-0.5SH_1x18-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-18S-0.5SH, 18 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +20 +19 +Connector_FFC-FPC +Hirose_FH12-19S-0.5SH_1x19-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-19S-0.5SH, 19 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +21 +20 +Connector_FFC-FPC +Hirose_FH12-20S-0.5SH_1x20-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-20S-0.5SH, 20 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +22 +21 +Connector_FFC-FPC +Hirose_FH12-22S-0.5SH_1x22-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-22S-0.5SH, 22 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +24 +23 +Connector_FFC-FPC +Hirose_FH12-24S-0.5SH_1x24-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-24S-0.5SH, 24 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +26 +25 +Connector_FFC-FPC +Hirose_FH12-25S-0.5SH_1x25-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-25S-0.5SH, 25 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +27 +26 +Connector_FFC-FPC +Hirose_FH12-26S-0.5SH_1x26-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-26S-0.5SH, 26 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +28 +27 +Connector_FFC-FPC +Hirose_FH12-28S-0.5SH_1x28-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-28S-0.5SH, 28 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +30 +29 +Connector_FFC-FPC +Hirose_FH12-30S-0.5SH_1x30-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-30S-0.5SH, 30 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +32 +31 +Connector_FFC-FPC +Hirose_FH12-32S-0.5SH_1x32-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-32S-0.5SH, 32 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +34 +33 +Connector_FFC-FPC +Hirose_FH12-33S-0.5SH_1x33-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-33S-0.5SH, 33 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +35 +34 +Connector_FFC-FPC +Hirose_FH12-34S-0.5SH_1x34-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-34S-0.5SH, 34 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +36 +35 +Connector_FFC-FPC +Hirose_FH12-35S-0.5SH_1x35-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-35S-0.5SH, 35 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +37 +36 +Connector_FFC-FPC +Hirose_FH12-36S-0.5SH_1x36-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-36S-0.5SH, 36 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +38 +37 +Connector_FFC-FPC +Hirose_FH12-40S-0.5SH_1x40-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-40S-0.5SH, 40 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +42 +41 +Connector_FFC-FPC +Hirose_FH12-45S-0.5SH_1x45-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-45S-0.5SH, 45 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +47 +46 +Connector_FFC-FPC +Hirose_FH12-50S-0.5SH_1x50-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-50S-0.5SH, 50 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +52 +51 +Connector_FFC-FPC +Hirose_FH12-53S-0.5SH_1x53-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-53S-0.5SH, 53 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +55 +54 +Connector_FFC-FPC +Hirose_FH26-13S-0.3SHW_2Rows-13Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-13S-0.3SHW, 13 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +15 +14 +Connector_FFC-FPC +Hirose_FH26-15S-0.3SHW_2Rows-15Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-15S-0.3SHW, 15 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +17 +16 +Connector_FFC-FPC +Hirose_FH26-17S-0.3SHW_2Rows-17Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-17S-0.3SHW, 17 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +19 +18 +Connector_FFC-FPC +Hirose_FH26-19S-0.3SHW_2Rows-19Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-19S-0.3SHW, 19 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +21 +20 +Connector_FFC-FPC +Hirose_FH26-21S-0.3SHW_2Rows-21Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-21S-0.3SHW, 21 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +23 +22 +Connector_FFC-FPC +Hirose_FH26-23S-0.3SHW_2Rows-23Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-23S-0.3SHW, 23 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +25 +24 +Connector_FFC-FPC +Hirose_FH26-25S-0.3SHW_2Rows-25Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-25S-0.3SHW, 25 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +27 +26 +Connector_FFC-FPC +Hirose_FH26-27S-0.3SHW_2Rows-27Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-27S-0.3SHW, 27 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +29 +28 +Connector_FFC-FPC +Hirose_FH26-29S-0.3SHW_2Rows-29Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-29S-0.3SHW, 29 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +31 +30 +Connector_FFC-FPC +Hirose_FH26-31S-0.3SHW_2Rows-31Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-31S-0.3SHW, 31 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +33 +32 +Connector_FFC-FPC +Hirose_FH26-33S-0.3SHW_2Rows-33Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-33S-0.3SHW, 33 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +35 +34 +Connector_FFC-FPC +Hirose_FH26-35S-0.3SHW_2Rows-35Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-35S-0.3SHW, 35 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +37 +36 +Connector_FFC-FPC +Hirose_FH26-37S-0.3SHW_2Rows-37Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-37S-0.3SHW, 37 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +39 +38 +Connector_FFC-FPC +Hirose_FH26-39S-0.3SHW_2Rows-39Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-39S-0.3SHW, 39 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +41 +40 +Connector_FFC-FPC +Hirose_FH26-41S-0.3SHW_2Rows-41Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-41S-0.3SHW, 41 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +43 +42 +Connector_FFC-FPC +Hirose_FH26-45S-0.3SHW_2Rows-45Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-45S-0.3SHW, 45 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +47 +46 +Connector_FFC-FPC +Hirose_FH26-51S-0.3SHW_2Rows-51Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-51S-0.3SHW, 51 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +53 +52 +Connector_FFC-FPC +Hirose_FH26-55S-0.3SHW_2Rows-55Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-55S-0.3SHW, 55 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +57 +56 +Connector_FFC-FPC +Hirose_FH26-57S-0.3SHW_2Rows-57Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-57S-0.3SHW, 57 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +59 +58 +Connector_FFC-FPC +Hirose_FH26-61S-0.3SHW_2Rows-61Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-61S-0.3SHW, 61 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +63 +62 +Connector_FFC-FPC +Hirose_FH26-71S-0.3SHW_2Rows-71Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-71S-0.3SHW, 71 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +73 +72 +Connector_FFC-FPC +Hirose_FH41-30S-0.5SH_1x30_1MP_1SH_P0.5mm_Horizontal +Hirose FH41, FFC/FPC connector, FH41-30S-0.5SH, 30 Pins per row (https://www.hirose.com/fr/product/document?clcode=CL0580-2218-5-05&productname=FH41-30S-0.5SH(05)&series=FH41&documenttype=2DDrawing&lang=fr&documentid=0001001704) +connector Hirose FH41 horizontal +0 +38 +32 +Connector_FFC-FPC +JAE_FF0825SA1_2Rows-25Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0825SA1, 25 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +25 +25 +Connector_FFC-FPC +JAE_FF0829SA1_2Rows-29Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0829SA1, 29 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +29 +29 +Connector_FFC-FPC +JAE_FF0841SA1_2Rows-41Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0841SA1, 41 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +41 +41 +Connector_FFC-FPC +JAE_FF0851SA1_2Rows-51Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0851SA1, 51 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +51 +51 +Connector_FFC-FPC +JAE_FF0871SA1_2Rows-71Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0871SA1, 71 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +71 +71 +Connector_FFC-FPC +JAE_FF0881SA1_2Rows-81Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0881SA1, 81 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +81 +81 +Connector_FFC-FPC +Jushuo_AFC07-S06FCA-00_1x6-1MP_P0.50_Horizontal +Jushuo AFC07, FFC/FPC connector, AFC07-S06FCA-00, 6 Pins per row (https://datasheet.lcsc.com/lcsc/1811040204_JUSHUO-AFC07-S32FCC-00_C11061.pdf) +connector jushuo horizontal +0 +8 +7 +Connector_FFC-FPC +Jushuo_AFC07-S24FCA-00_1x24-1MP_P0.50_Horizontal +Jushuo AFC07, FFC/FPC connector, AFC07-S24FCA-00, 24 Pins per row (https://datasheet.lcsc.com/lcsc/1811040204_JUSHUO-AFC07-S32FCC-00_C11061.pdf) +connector jushuo horizontal +0 +26 +25 +Connector_FFC-FPC +Molex_52559-3652_2x18-1MP_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC, 52559-3652, 36 Circuits (https://www.molex.com/pdm_docs/sd/525593652_sd.pdf) +connector Molex top entry +0 +40 +37 +Connector_FFC-FPC +Molex_54132-5033_1x50-1MP_P0.5mm_Horizontal +Molex FFC/FPC connector, 50 bottom-side contacts, 0.5mm pitch, 2.0mm height, https://www.molex.com/pdm_docs/sd/541325033_sd.pdf +FFC FPC +0 +54 +51 +Connector_FFC-FPC +Molex_54548-1071_1x10-1MP_P0.5mm_Horizontal +Molex FFC/FPC connector, 10 bottom-side contacts, 0.5mm pitch, 1.2mm height, https://www.molex.com/pdm_docs/sd/545481071_sd.pdf +FFC FPC connector +0 +12 +11 +Connector_FFC-FPC +Molex_200528-0040_1x04-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0040, 4 Circuits (https://www.molex.com/pdm_docs/sd/2005280040_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +6 +5 +Connector_FFC-FPC +Molex_200528-0050_1x05-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0050, 5 Circuits (https://www.molex.com/pdm_docs/sd/2005280050_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +7 +6 +Connector_FFC-FPC +Molex_200528-0060_1x06-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0060, 6 Circuits (https://www.molex.com/pdm_docs/sd/2005280060_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +8 +7 +Connector_FFC-FPC +Molex_200528-0070_1x07-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0070, 7 Circuits (https://www.molex.com/pdm_docs/sd/2005280070_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +9 +8 +Connector_FFC-FPC +Molex_200528-0080_1x08-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0080, 8 Circuits (https://www.molex.com/pdm_docs/sd/2005280080_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +10 +9 +Connector_FFC-FPC +Molex_200528-0090_1x09-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0090, 9 Circuits (https://www.molex.com/pdm_docs/sd/2005280090_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +11 +10 +Connector_FFC-FPC +Molex_200528-0100_1x10-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0100, 10 Circuits (https://www.molex.com/pdm_docs/sd/2005280100_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +12 +11 +Connector_FFC-FPC +Molex_200528-0110_1x11-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0110, 11 Circuits (https://www.molex.com/pdm_docs/sd/2005280110_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +13 +12 +Connector_FFC-FPC +Molex_200528-0120_1x12-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0120, 12 Circuits (https://www.molex.com/pdm_docs/sd/2005280120_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +14 +13 +Connector_FFC-FPC +Molex_200528-0130_1x13-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0130, 13 Circuits (https://www.molex.com/pdm_docs/sd/2005280130_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +15 +14 +Connector_FFC-FPC +Molex_200528-0140_1x14-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0140, 14 Circuits (https://www.molex.com/pdm_docs/sd/2005280140_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +16 +15 +Connector_FFC-FPC +Molex_200528-0150_1x15-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0150, 15 Circuits (https://www.molex.com/pdm_docs/sd/2005280150_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +17 +16 +Connector_FFC-FPC +Molex_200528-0160_1x16-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0160, 16 Circuits (https://www.molex.com/pdm_docs/sd/2005280160_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +18 +17 +Connector_FFC-FPC +Molex_200528-0170_1x17-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0170, 17 Circuits (https://www.molex.com/pdm_docs/sd/2005280170_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +19 +18 +Connector_FFC-FPC +Molex_200528-0180_1x18-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0180, 18 Circuits (https://www.molex.com/pdm_docs/sd/2005280180_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +20 +19 +Connector_FFC-FPC +Molex_200528-0190_1x19-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0190, 19 Circuits (https://www.molex.com/pdm_docs/sd/2005280190_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +21 +20 +Connector_FFC-FPC +Molex_200528-0200_1x20-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0200, 20 Circuits (https://www.molex.com/pdm_docs/sd/2005280200_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +22 +21 +Connector_FFC-FPC +Molex_200528-0210_1x21-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0210, 21 Circuits (https://www.molex.com/pdm_docs/sd/2005280210_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +23 +22 +Connector_FFC-FPC +Molex_200528-0220_1x22-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0220, 22 Circuits (https://www.molex.com/pdm_docs/sd/2005280220_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +24 +23 +Connector_FFC-FPC +Molex_200528-0230_1x23-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0230, 23 Circuits (https://www.molex.com/pdm_docs/sd/2005280230_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +25 +24 +Connector_FFC-FPC +Molex_200528-0240_1x24-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0240, 24 Circuits (https://www.molex.com/pdm_docs/sd/2005280240_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +26 +25 +Connector_FFC-FPC +Molex_200528-0250_1x25-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0250, 25 Circuits (https://www.molex.com/pdm_docs/sd/2005280250_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +27 +26 +Connector_FFC-FPC +Molex_200528-0260_1x26-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0260, 26 Circuits (https://www.molex.com/pdm_docs/sd/2005280260_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +28 +27 +Connector_FFC-FPC +Molex_200528-0270_1x27-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0270, 27 Circuits (https://www.molex.com/pdm_docs/sd/2005280270_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +29 +28 +Connector_FFC-FPC +Molex_200528-0280_1x28-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0280, 28 Circuits (https://www.molex.com/pdm_docs/sd/2005280280_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +30 +29 +Connector_FFC-FPC +Molex_200528-0290_1x29-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0290, 29 Circuits (https://www.molex.com/pdm_docs/sd/2005280290_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +31 +30 +Connector_FFC-FPC +Molex_200528-0300_1x30-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0300, 30 Circuits (https://www.molex.com/pdm_docs/sd/2005280300_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +32 +31 +Connector_FFC-FPC +Molex_502231-1500_1x15-1SH_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 15 Circuits (https://www.molex.com/pdm_docs/sd/5022311500_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm vertical +0 +17 +16 +Connector_FFC-FPC +Molex_502231-2400_1x24-1SH_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 24 Circuits (https://www.molex.com/pdm_docs/sd/5022312400_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm vertical +0 +26 +25 +Connector_FFC-FPC +Molex_502231-3300_1x33-1SH_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 33 Circuits (https://www.molex.com/pdm_docs/sd/5022313300_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm vertical +0 +36 +34 +Connector_FFC-FPC +Molex_502244-1530_1x15-1MP_P0.5mm_Horizontal +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 15 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm right angle +0 +19 +16 +Connector_FFC-FPC +Molex_502244-2430_1x24-1MP_P0.5mm_Horizontal +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 24 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm right angle +0 +28 +25 +Connector_FFC-FPC +Molex_502244-3330_1x33-1MP_P0.5mm_Horizontal +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 33 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm right angle +0 +39 +34 +Connector_FFC-FPC +Molex_502250-1791_2Rows-17Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-1791, 17 Circuits (http://www.molex.com/pdm_docs/sd/5022501791_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +19 +18 +Connector_FFC-FPC +Molex_502250-2191_2Rows-21Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2191, 21 Circuits (http://www.molex.com/pdm_docs/sd/5022502191_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +23 +22 +Connector_FFC-FPC +Molex_502250-2391_2Rows-23Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2391, 23 Circuits (http://www.molex.com/pdm_docs/sd/5022502391_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +25 +24 +Connector_FFC-FPC +Molex_502250-2791_2Rows-27Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2791, 27 Circuits (http://www.molex.com/pdm_docs/sd/5022502791_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +29 +28 +Connector_FFC-FPC +Molex_502250-3391_2Rows-33Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3391, 33 Circuits (http://www.molex.com/pdm_docs/sd/5022503391_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +35 +34 +Connector_FFC-FPC +Molex_502250-3591_2Rows-35Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3591, 35 Circuits (http://www.molex.com/pdm_docs/sd/5022503591_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +37 +36 +Connector_FFC-FPC +Molex_502250-3991_2Rows-39Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3991, 39 Circuits (http://www.molex.com/pdm_docs/sd/5022503991_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +41 +40 +Connector_FFC-FPC +Molex_502250-4191_2Rows-41Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-4191, 41 Circuits (http://www.molex.com/pdm_docs/sd/5022504191_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +43 +42 +Connector_FFC-FPC +Molex_502250-5191_2Rows-51Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-5191, 51 Circuits (http://www.molex.com/pdm_docs/sd/5022505191_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +53 +52 +Connector_FFC-FPC +Omron_XF2M-4015-1A_1x40-1MP_P0.5mm_Horizontal +Omron FPC connector, 40 top-side contacts, 0.5mm pitch, SMT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-xf2m.pdf +omron fpc xf2m +0 +42 +41 +Connector_FFC-FPC +TE_0-1734839-5_1x05-1MP_P0.5mm_Horizontal +TE FPC connector, 05 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +7 +6 +Connector_FFC-FPC +TE_0-1734839-6_1x06-1MP_P0.5mm_Horizontal +TE FPC connector, 06 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +8 +7 +Connector_FFC-FPC +TE_0-1734839-7_1x07-1MP_P0.5mm_Horizontal +TE FPC connector, 07 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +9 +8 +Connector_FFC-FPC +TE_0-1734839-8_1x08-1MP_P0.5mm_Horizontal +TE FPC connector, 08 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +10 +9 +Connector_FFC-FPC +TE_0-1734839-9_1x09-1MP_P0.5mm_Horizontal +TE FPC connector, 09 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +11 +10 +Connector_FFC-FPC +TE_1-84952-0_1x10-1MP_P1.0mm_Horizontal +TE FPC connector, 10 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +12 +11 +Connector_FFC-FPC +TE_1-84952-1_1x11-1MP_P1.0mm_Horizontal +TE FPC connector, 11 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +13 +12 +Connector_FFC-FPC +TE_1-84952-2_1x12-1MP_P1.0mm_Horizontal +TE FPC connector, 12 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +14 +13 +Connector_FFC-FPC +TE_1-84952-3_1x13-1MP_P1.0mm_Horizontal +TE FPC connector, 13 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +15 +14 +Connector_FFC-FPC +TE_1-84952-4_1x14-1MP_P1.0mm_Horizontal +TE FPC connector, 14 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +16 +15 +Connector_FFC-FPC +TE_1-84952-5_1x15-1MP_P1.0mm_Horizontal +TE FPC connector, 15 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +17 +16 +Connector_FFC-FPC +TE_1-84952-6_1x16-1MP_P1.0mm_Horizontal +TE FPC connector, 16 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +18 +17 +Connector_FFC-FPC +TE_1-84952-7_1x17-1MP_P1.0mm_Horizontal +TE FPC connector, 17 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +19 +18 +Connector_FFC-FPC +TE_1-84952-8_1x18-1MP_P1.0mm_Horizontal +TE FPC connector, 18 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +20 +19 +Connector_FFC-FPC +TE_1-84952-9_1x19-1MP_P1.0mm_Horizontal +TE FPC connector, 19 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +21 +20 +Connector_FFC-FPC +TE_1-84953-0_1x10-1MP_P1.0mm_Horizontal +TE FPC connector, 10 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +12 +11 +Connector_FFC-FPC +TE_1-84953-1_1x11-1MP_P1.0mm_Horizontal +TE FPC connector, 11 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +13 +12 +Connector_FFC-FPC +TE_1-84953-2_1x12-1MP_P1.0mm_Horizontal +TE FPC connector, 12 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +14 +13 +Connector_FFC-FPC +TE_1-84953-3_1x13-1MP_P1.0mm_Horizontal +TE FPC connector, 13 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +15 +14 +Connector_FFC-FPC +TE_1-84953-4_1x14-1MP_P1.0mm_Horizontal +TE FPC connector, 14 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +16 +15 +Connector_FFC-FPC +TE_1-84953-5_1x15-1MP_P1.0mm_Horizontal +TE FPC connector, 15 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +17 +16 +Connector_FFC-FPC +TE_1-84953-6_1x16-1MP_P1.0mm_Horizontal +TE FPC connector, 16 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +18 +17 +Connector_FFC-FPC +TE_1-84953-7_1x17-1MP_P1.0mm_Horizontal +TE FPC connector, 17 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +19 +18 +Connector_FFC-FPC +TE_1-84953-8_1x18-1MP_P1.0mm_Horizontal +TE FPC connector, 18 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +20 +19 +Connector_FFC-FPC +TE_1-84953-9_1x19-1MP_P1.0mm_Horizontal +TE FPC connector, 19 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +21 +20 +Connector_FFC-FPC +TE_1-1734839-0_1x10-1MP_P0.5mm_Horizontal +TE FPC connector, 10 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +12 +11 +Connector_FFC-FPC +TE_1-1734839-1_1x11-1MP_P0.5mm_Horizontal +TE FPC connector, 11 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +13 +12 +Connector_FFC-FPC +TE_1-1734839-2_1x12-1MP_P0.5mm_Horizontal +TE FPC connector, 12 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +14 +13 +Connector_FFC-FPC +TE_1-1734839-3_1x13-1MP_P0.5mm_Horizontal +TE FPC connector, 13 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +15 +14 +Connector_FFC-FPC +TE_1-1734839-4_1x14-1MP_P0.5mm_Horizontal +TE FPC connector, 14 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +16 +15 +Connector_FFC-FPC +TE_1-1734839-5_1x15-1MP_P0.5mm_Horizontal +TE FPC connector, 15 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +17 +16 +Connector_FFC-FPC +TE_1-1734839-6_1x16-1MP_P0.5mm_Horizontal +TE FPC connector, 16 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +18 +17 +Connector_FFC-FPC +TE_1-1734839-7_1x17-1MP_P0.5mm_Horizontal +TE FPC connector, 17 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +19 +18 +Connector_FFC-FPC +TE_1-1734839-8_1x18-1MP_P0.5mm_Horizontal +TE FPC connector, 18 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +20 +19 +Connector_FFC-FPC +TE_1-1734839-9_1x19-1MP_P0.5mm_Horizontal +TE FPC connector, 19 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +21 +20 +Connector_FFC-FPC +TE_2-84952-0_1x20-1MP_P1.0mm_Horizontal +TE FPC connector, 20 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +22 +21 +Connector_FFC-FPC +TE_2-84952-1_1x21-1MP_P1.0mm_Horizontal +TE FPC connector, 21 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +23 +22 +Connector_FFC-FPC +TE_2-84952-2_1x22-1MP_P1.0mm_Horizontal +TE FPC connector, 22 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +24 +23 +Connector_FFC-FPC +TE_2-84952-3_1x23-1MP_P1.0mm_Horizontal +TE FPC connector, 23 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +25 +24 +Connector_FFC-FPC +TE_2-84952-4_1x24-1MP_P1.0mm_Horizontal +TE FPC connector, 24 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +26 +25 +Connector_FFC-FPC +TE_2-84952-5_1x25-1MP_P1.0mm_Horizontal +TE FPC connector, 25 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +27 +26 +Connector_FFC-FPC +TE_2-84952-6_1x26-1MP_P1.0mm_Horizontal +TE FPC connector, 26 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +28 +27 +Connector_FFC-FPC +TE_2-84952-7_1x27-1MP_P1.0mm_Horizontal +TE FPC connector, 27 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +29 +28 +Connector_FFC-FPC +TE_2-84952-8_1x28-1MP_P1.0mm_Horizontal +TE FPC connector, 28 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +30 +29 +Connector_FFC-FPC +TE_2-84952-9_1x29-1MP_P1.0mm_Horizontal +TE FPC connector, 29 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +31 +30 +Connector_FFC-FPC +TE_2-84953-0_1x20-1MP_P1.0mm_Horizontal +TE FPC connector, 20 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +22 +21 +Connector_FFC-FPC +TE_2-84953-1_1x21-1MP_P1.0mm_Horizontal +TE FPC connector, 21 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +23 +22 +Connector_FFC-FPC +TE_2-84953-2_1x22-1MP_P1.0mm_Horizontal +TE FPC connector, 22 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +24 +23 +Connector_FFC-FPC +TE_2-84953-3_1x23-1MP_P1.0mm_Horizontal +TE FPC connector, 23 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +25 +24 +Connector_FFC-FPC +TE_2-84953-4_1x24-1MP_P1.0mm_Horizontal +TE FPC connector, 24 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +26 +25 +Connector_FFC-FPC +TE_2-84953-5_1x25-1MP_P1.0mm_Horizontal +TE FPC connector, 25 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +27 +26 +Connector_FFC-FPC +TE_2-84953-6_1x26-1MP_P1.0mm_Horizontal +TE FPC connector, 26 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +28 +27 +Connector_FFC-FPC +TE_2-84953-7_1x27-1MP_P1.0mm_Horizontal +TE FPC connector, 27 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +29 +28 +Connector_FFC-FPC +TE_2-84953-8_1x28-1MP_P1.0mm_Horizontal +TE FPC connector, 28 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +30 +29 +Connector_FFC-FPC +TE_2-84953-9_1x29-1MP_P1.0mm_Horizontal +TE FPC connector, 29 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +31 +30 +Connector_FFC-FPC +TE_2-1734839-0_1x20-1MP_P0.5mm_Horizontal +TE FPC connector, 20 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +22 +21 +Connector_FFC-FPC +TE_2-1734839-1_1x21-1MP_P0.5mm_Horizontal +TE FPC connector, 21 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +23 +22 +Connector_FFC-FPC +TE_2-1734839-2_1x22-1MP_P0.5mm_Horizontal +TE FPC connector, 22 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +24 +23 +Connector_FFC-FPC +TE_2-1734839-3_1x23-1MP_P0.5mm_Horizontal +TE FPC connector, 23 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +25 +24 +Connector_FFC-FPC +TE_2-1734839-4_1x24-1MP_P0.5mm_Horizontal +TE FPC connector, 24 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +26 +25 +Connector_FFC-FPC +TE_2-1734839-5_1x25-1MP_P0.5mm_Horizontal +TE FPC connector, 25 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +27 +26 +Connector_FFC-FPC +TE_2-1734839-6_1x26-1MP_P0.5mm_Horizontal +TE FPC connector, 26 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +28 +27 +Connector_FFC-FPC +TE_2-1734839-7_1x27-1MP_P0.5mm_Horizontal +TE FPC connector, 27 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +29 +28 +Connector_FFC-FPC +TE_2-1734839-8_1x28-1MP_P0.5mm_Horizontal +TE FPC connector, 28 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +30 +29 +Connector_FFC-FPC +TE_2-1734839-9_1x29-1MP_P0.5mm_Horizontal +TE FPC connector, 29 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +31 +30 +Connector_FFC-FPC +TE_3-84952-0_1x30-1MP_P1.0mm_Horizontal +TE FPC connector, 30 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +32 +31 +Connector_FFC-FPC +TE_3-84953-0_1x30-1MP_P1.0mm_Horizontal +TE FPC connector, 30 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +32 +31 +Connector_FFC-FPC +TE_3-1734839-0_1x30-1MP_P0.5mm_Horizontal +TE FPC connector, 30 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +32 +31 +Connector_FFC-FPC +TE_3-1734839-1_1x31-1MP_P0.5mm_Horizontal +TE FPC connector, 31 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +33 +32 +Connector_FFC-FPC +TE_3-1734839-2_1x32-1MP_P0.5mm_Horizontal +TE FPC connector, 32 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +34 +33 +Connector_FFC-FPC +TE_3-1734839-3_1x33-1MP_P0.5mm_Horizontal +TE FPC connector, 33 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +35 +34 +Connector_FFC-FPC +TE_3-1734839-4_1x34-1MP_P0.5mm_Horizontal +TE FPC connector, 34 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +36 +35 +Connector_FFC-FPC +TE_3-1734839-5_1x35-1MP_P0.5mm_Horizontal +TE FPC connector, 35 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +37 +36 +Connector_FFC-FPC +TE_3-1734839-6_1x36-1MP_P0.5mm_Horizontal +TE FPC connector, 36 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +38 +37 +Connector_FFC-FPC +TE_3-1734839-7_1x37-1MP_P0.5mm_Horizontal +TE FPC connector, 37 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +39 +38 +Connector_FFC-FPC +TE_3-1734839-8_1x38-1MP_P0.5mm_Horizontal +TE FPC connector, 38 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +40 +39 +Connector_FFC-FPC +TE_3-1734839-9_1x39-1MP_P0.5mm_Horizontal +TE FPC connector, 39 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +41 +40 +Connector_FFC-FPC +TE_4-1734839-0_1x40-1MP_P0.5mm_Horizontal +TE FPC connector, 40 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +42 +41 +Connector_FFC-FPC +TE_4-1734839-1_1x41-1MP_P0.5mm_Horizontal +TE FPC connector, 41 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +43 +42 +Connector_FFC-FPC +TE_4-1734839-2_1x42-1MP_P0.5mm_Horizontal +TE FPC connector, 42 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +44 +43 +Connector_FFC-FPC +TE_4-1734839-3_1x43-1MP_P0.5mm_Horizontal +TE FPC connector, 43 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +45 +44 +Connector_FFC-FPC +TE_4-1734839-4_1x44-1MP_P0.5mm_Horizontal +TE FPC connector, 44 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +46 +45 +Connector_FFC-FPC +TE_4-1734839-5_1x45-1MP_P0.5mm_Horizontal +TE FPC connector, 45 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +47 +46 +Connector_FFC-FPC +TE_4-1734839-6_1x46-1MP_P0.5mm_Horizontal +TE FPC connector, 46 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +48 +47 +Connector_FFC-FPC +TE_4-1734839-7_1x47-1MP_P0.5mm_Horizontal +TE FPC connector, 47 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +49 +48 +Connector_FFC-FPC +TE_4-1734839-8_1x48-1MP_P0.5mm_Horizontal +TE FPC connector, 48 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +50 +49 +Connector_FFC-FPC +TE_4-1734839-9_1x49-1MP_P0.5mm_Horizontal +TE FPC connector, 49 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +51 +50 +Connector_FFC-FPC +TE_5-1734839-0_1x50-1MP_P0.5mm_Horizontal +TE FPC connector, 50 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +52 +51 +Connector_FFC-FPC +TE_84952-4_1x04-1MP_P1.0mm_Horizontal +TE FPC connector, 04 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +6 +5 +Connector_FFC-FPC +TE_84952-5_1x05-1MP_P1.0mm_Horizontal +TE FPC connector, 05 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +7 +6 +Connector_FFC-FPC +TE_84952-6_1x06-1MP_P1.0mm_Horizontal +TE FPC connector, 06 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +8 +7 +Connector_FFC-FPC +TE_84952-7_1x07-1MP_P1.0mm_Horizontal +TE FPC connector, 07 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +9 +8 +Connector_FFC-FPC +TE_84952-8_1x08-1MP_P1.0mm_Horizontal +TE FPC connector, 08 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +10 +9 +Connector_FFC-FPC +TE_84952-9_1x09-1MP_P1.0mm_Horizontal +TE FPC connector, 09 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +11 +10 +Connector_FFC-FPC +TE_84953-4_1x04-1MP_P1.0mm_Horizontal +TE FPC connector, 04 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +6 +5 +Connector_FFC-FPC +TE_84953-5_1x05-1MP_P1.0mm_Horizontal +TE FPC connector, 05 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +7 +6 +Connector_FFC-FPC +TE_84953-6_1x06-1MP_P1.0mm_Horizontal +TE FPC connector, 06 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +8 +7 +Connector_FFC-FPC +TE_84953-7_1x07-1MP_P1.0mm_Horizontal +TE FPC connector, 07 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +9 +8 +Connector_FFC-FPC +TE_84953-8_1x08-1MP_P1.0mm_Horizontal +TE FPC connector, 08 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +10 +9 +Connector_FFC-FPC +TE_84953-9_1x09-1MP_P1.0mm_Horizontal +TE FPC connector, 09 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +11 +10 +Connector_FFC-FPC +Wuerth_68611214422_1x12-1MP_P1.0mm_Horizontal +http://katalog.we-online.de/em/datasheet/68611214422.pdf +Wuerth FPC 68611214422 connector 12 bottom-side contacts 1.0mm pitch 1.0mm height SMT +0 +14 +13 +Connector_Harting +Harting_har-flexicon_14110213001xxx_1x02-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110213001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +4 +3 +Connector_Harting +Harting_har-flexicon_14110213002xxx_1x02-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110213002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +4 +3 +Connector_Harting +Harting_har-flexicon_14110213010xxx_1x02-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110213010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +4 +3 +Connector_Harting +Harting_har-flexicon_14110313001xxx_1x03-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110313001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +5 +4 +Connector_Harting +Harting_har-flexicon_14110313002xxx_1x03-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110313002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +5 +4 +Connector_Harting +Harting_har-flexicon_14110313010xxx_1x03-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110313010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +5 +4 +Connector_Harting +Harting_har-flexicon_14110413001xxx_1x04-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110413001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +6 +5 +Connector_Harting +Harting_har-flexicon_14110413002xxx_1x04-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110413002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +6 +5 +Connector_Harting +Harting_har-flexicon_14110413010xxx_1x04-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110413010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +6 +5 +Connector_Harting +Harting_har-flexicon_14110513001xxx_1x05-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110513001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +7 +6 +Connector_Harting +Harting_har-flexicon_14110513002xxx_1x05-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110513002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +7 +6 +Connector_Harting +Harting_har-flexicon_14110513010xxx_1x05-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110513010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +7 +6 +Connector_Harting +Harting_har-flexicon_14110613001xxx_1x06-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110613001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +8 +7 +Connector_Harting +Harting_har-flexicon_14110613002xxx_1x06-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110613002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +8 +7 +Connector_Harting +Harting_har-flexicon_14110613010xxx_1x06-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110613010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +8 +7 +Connector_Harting +Harting_har-flexicon_14110713001xxx_1x07-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110713001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +9 +8 +Connector_Harting +Harting_har-flexicon_14110713002xxx_1x07-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110713002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +9 +8 +Connector_Harting +Harting_har-flexicon_14110713010xxx_1x07-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110713010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +9 +8 +Connector_Harting +Harting_har-flexicon_14110813001xxx_1x08-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110813001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +10 +9 +Connector_Harting +Harting_har-flexicon_14110813002xxx_1x08-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110813002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +10 +9 +Connector_Harting +Harting_har-flexicon_14110813010xxx_1x08-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110813010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +10 +9 +Connector_Harting +Harting_har-flexicon_14110913001xxx_1x09-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110913001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +11 +10 +Connector_Harting +Harting_har-flexicon_14110913002xxx_1x09-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110913002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +11 +10 +Connector_Harting +Harting_har-flexicon_14110913010xxx_1x09-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110913010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +11 +10 +Connector_Harting +Harting_har-flexicon_14111013001xxx_1x10-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14111013001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +12 +11 +Connector_Harting +Harting_har-flexicon_14111013002xxx_1x10-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111013002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +12 +11 +Connector_Harting +Harting_har-flexicon_14111013010xxx_1x10-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111013010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +12 +11 +Connector_Harting +Harting_har-flexicon_14111113001xxx_1x11-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14111113001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +13 +12 +Connector_Harting +Harting_har-flexicon_14111113002xxx_1x11-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111113002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +13 +12 +Connector_Harting +Harting_har-flexicon_14111113010xxx_1x11-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111113010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +13 +12 +Connector_Harting +Harting_har-flexicon_14111213001xxx_1x12-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14111213001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +14 +13 +Connector_Harting +Harting_har-flexicon_14111213002xxx_1x12-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111213002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +14 +13 +Connector_Harting +Harting_har-flexicon_14111213010xxx_1x12-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111213010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +14 +13 +Connector_Harwin +Harwin_Gecko-G125-FVX0605L0X_2x03_P1.25mm_Vertical +Harwin Gecko Connector, 6 pins, dual row female, vertical entry, PN:G125-FVX0605L0X +connector harwin gecko +0 +6 +6 +Connector_Harwin +Harwin_Gecko-G125-FVX1005L0X_2x05_P1.25mm_Vertical +Harwin Gecko Connector, 10 pins, dual row female, vertical entry, PN:G125-FVX1005L0X +connector harwin gecko +0 +10 +10 +Connector_Harwin +Harwin_Gecko-G125-FVX1205L0X_2x06_P1.25mm_Vertical +Harwin Gecko Connector, 12 pins, dual row female, vertical entry, PN:G125-FVX1205L0X +connector harwin gecko +0 +12 +12 +Connector_Harwin +Harwin_Gecko-G125-FVX1605L0X_2x08_P1.25mm_Vertical +Harwin Gecko Connector, 16 pins, dual row female, vertical entry, PN:G125-FVX1605L0X +connector harwin gecko +0 +16 +16 +Connector_Harwin +Harwin_Gecko-G125-FVX2005L0X_2x10_P1.25mm_Vertical +Harwin Gecko Connector, 20 pins, dual row female, vertical entry, PN:G125-FVX2005L0X +connector harwin gecko +0 +20 +20 +Connector_Harwin +Harwin_Gecko-G125-FVX2605L0X_2x13_P1.25mm_Vertical +Harwin Gecko Connector, 26 pins, dual row female, vertical entry, PN:G125-FVX2605L0X +connector harwin gecko +0 +26 +26 +Connector_Harwin +Harwin_Gecko-G125-FVX3405L0X_2x17_P1.25mm_Vertical +Harwin Gecko Connector, 34 pins, dual row female, vertical entry, PN:G125-FVX3405L0X +connector harwin gecko +0 +34 +34 +Connector_Harwin +Harwin_Gecko-G125-FVX5005L0X_2x25_P1.25mm_Vertical +Harwin Gecko Connector, 50 pins, dual row female, vertical entry, PN:G125-FVX5005L0X +connector harwin gecko +0 +50 +50 +Connector_Harwin +Harwin_Gecko-G125-MVX0605L0X_2x03_P1.25mm_Vertical +Harwin Gecko Connector, 6 pins, dual row male, vertical entry, no latches, PN:G125-MVX0605L0X +connector harwin gecko +0 +6 +6 +Connector_Harwin +Harwin_Gecko-G125-MVX0605L1X_2x03_P1.25mm_Vertical +Harwin Gecko Connector, 6 pins, dual row male, vertical entry, with latches, PN:G125-MVX0605L1X +connector harwin gecko +0 +6 +6 +Connector_Harwin +Harwin_Gecko-G125-MVX1005L0X_2x05_P1.25mm_Vertical +Harwin Gecko Connector, 10 pins, dual row male, vertical entry, no latches, PN:G125-MVX1005L0X +connector harwin gecko +0 +10 +10 +Connector_Harwin +Harwin_Gecko-G125-MVX1005L1X_2x05_P1.25mm_Vertical +Harwin Gecko Connector, 10 pins, dual row male, vertical entry, with latches, PN:G125-MVX1005L1X +connector harwin gecko +0 +10 +10 +Connector_Harwin +Harwin_Gecko-G125-MVX1205L0X_2x06_P1.25mm_Vertical +Harwin Gecko Connector, 12 pins, dual row male, vertical entry, no latches, PN:G125-MVX1205L0X +connector harwin gecko +0 +12 +12 +Connector_Harwin +Harwin_Gecko-G125-MVX1205L1X_2x06_P1.25mm_Vertical +Harwin Gecko Connector, 12 pins, dual row male, vertical entry, with latches, PN:G125-MVX1205L1X +connector harwin gecko +0 +12 +12 +Connector_Harwin +Harwin_Gecko-G125-MVX1605L0X_2x08_P1.25mm_Vertical +Harwin Gecko Connector, 16 pins, dual row male, vertical entry, no latches, PN:G125-MVX1605L0X +connector harwin gecko +0 +16 +16 +Connector_Harwin +Harwin_Gecko-G125-MVX1605L1X_2x08_P1.25mm_Vertical +Harwin Gecko Connector, 16 pins, dual row male, vertical entry, with latches, PN:G125-MVX1605L1X +connector harwin gecko +0 +16 +16 +Connector_Harwin +Harwin_Gecko-G125-MVX2005L0X_2x10_P1.25mm_Vertical +Harwin Gecko Connector, 20 pins, dual row male, vertical entry, no latches, PN:G125-MVX2005L0X +connector harwin gecko +0 +20 +20 +Connector_Harwin +Harwin_Gecko-G125-MVX2005L1X_2x10_P1.25mm_Vertical +Harwin Gecko Connector, 20 pins, dual row male, vertical entry, with latches, PN:G125-MVX2005L1X +connector harwin gecko +0 +20 +20 +Connector_Harwin +Harwin_Gecko-G125-MVX2605L0X_2x13_P1.25mm_Vertical +Harwin Gecko Connector, 26 pins, dual row male, vertical entry, no latches, PN:G125-MVX2605L0X +connector harwin gecko +0 +26 +26 +Connector_Harwin +Harwin_Gecko-G125-MVX2605L1X_2x13_P1.25mm_Vertical +Harwin Gecko Connector, 26 pins, dual row male, vertical entry, with latches, PN:G125-MVX2605L1X +connector harwin gecko +0 +26 +26 +Connector_Harwin +Harwin_Gecko-G125-MVX3405L0X_2x17_P1.25mm_Vertical +Harwin Gecko Connector, 34 pins, dual row male, vertical entry, no latches, PN:G125-MVX3405L0X +connector harwin gecko +0 +34 +34 +Connector_Harwin +Harwin_Gecko-G125-MVX3405L1X_2x17_P1.25mm_Vertical +Harwin Gecko Connector, 34 pins, dual row male, vertical entry, with latches, PN:G125-MVX3405L1X +connector harwin gecko +0 +34 +34 +Connector_Harwin +Harwin_Gecko-G125-MVX5005L0X_2x25_P1.25mm_Vertical +Harwin Gecko Connector, 50 pins, dual row male, vertical entry, no latches, PN:G125-MVX5005L0X +connector harwin gecko +0 +50 +50 +Connector_Harwin +Harwin_Gecko-G125-MVX5005L1X_2x25_P1.25mm_Vertical +Harwin Gecko Connector, 50 pins, dual row male, vertical entry, with latches, PN:G125-MVX5005L1X +connector harwin gecko +0 +50 +50 +Connector_Harwin +Harwin_LTek-Male_02_P2.00mm_Vertical +Harwin LTek Connector, 2 pins, single row male, vertical entry +connector harwin ltek M80 +0 +2 +2 +Connector_Harwin +Harwin_LTek-Male_02_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 2 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +6 +2 +Connector_Harwin +Harwin_LTek-Male_2x02_P2.00mm_Vertical +Harwin LTek Connector, 4 pins, single row male, vertical entry +connector harwin ltek M80 +0 +4 +4 +Connector_Harwin +Harwin_LTek-Male_2x02_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 4 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +8 +4 +Connector_Harwin +Harwin_LTek-Male_2x03_P2.00mm_Vertical +Harwin LTek Connector, 6 pins, single row male, vertical entry +connector harwin ltek M80 +0 +6 +6 +Connector_Harwin +Harwin_LTek-Male_2x03_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 6 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +10 +6 +Connector_Harwin +Harwin_LTek-Male_2x04_P2.00mm_Vertical +Harwin LTek Connector, 8 pins, single row male, vertical entry +connector harwin ltek M80 +0 +8 +8 +Connector_Harwin +Harwin_LTek-Male_2x04_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 8 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +12 +8 +Connector_Harwin +Harwin_LTek-Male_2x05_P2.00mm_Vertical +Harwin LTek Connector, 10 pins, single row male, vertical entry +connector harwin ltek M80 +0 +10 +10 +Connector_Harwin +Harwin_LTek-Male_2x05_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 10 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +14 +10 +Connector_Harwin +Harwin_LTek-Male_2x06_P2.00mm_Vertical +Harwin LTek Connector, 12 pins, single row male, vertical entry +connector harwin ltek M80 +0 +12 +12 +Connector_Harwin +Harwin_LTek-Male_2x06_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 12 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +16 +12 +Connector_Harwin +Harwin_LTek-Male_2x07_P2.00mm_Vertical +Harwin LTek Connector, 14 pins, single row male, vertical entry +connector harwin ltek M80 +0 +14 +14 +Connector_Harwin +Harwin_LTek-Male_2x07_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 14 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +18 +14 +Connector_Harwin +Harwin_LTek-Male_2x08_P2.00mm_Vertical +Harwin LTek Connector, 16 pins, single row male, vertical entry +connector harwin ltek M80 +0 +16 +16 +Connector_Harwin +Harwin_LTek-Male_2x08_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 16 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +20 +16 +Connector_Harwin +Harwin_LTek-Male_2x09_P2.00mm_Vertical +Harwin LTek Connector, 18 pins, single row male, vertical entry +connector harwin ltek M80 +0 +18 +18 +Connector_Harwin +Harwin_LTek-Male_2x09_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 18 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +22 +18 +Connector_Harwin +Harwin_LTek-Male_2x10_P2.00mm_Vertical +Harwin LTek Connector, 20 pins, single row male, vertical entry +connector harwin ltek M80 +0 +20 +20 +Connector_Harwin +Harwin_LTek-Male_2x10_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 20 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +24 +20 +Connector_Harwin +Harwin_LTek-Male_2x13_P2.00mm_Vertical +Harwin LTek Connector, 26 pins, single row male, vertical entry +connector harwin ltek M80 +0 +26 +26 +Connector_Harwin +Harwin_LTek-Male_2x13_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 26 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +30 +26 +Connector_Harwin +Harwin_LTek-Male_2x17_P2.00mm_Vertical +Harwin LTek Connector, 34 pins, single row male, vertical entry +connector harwin ltek M80 +0 +34 +34 +Connector_Harwin +Harwin_LTek-Male_2x17_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 34 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +38 +34 +Connector_Harwin +Harwin_LTek-Male_2x22_P2.00mm_Vertical +Harwin LTek Connector, 44 pins, single row male, vertical entry +connector harwin ltek M80 +0 +44 +44 +Connector_Harwin +Harwin_LTek-Male_2x22_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 44 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +48 +44 +Connector_Harwin +Harwin_LTek-Male_03_P2.00mm_Vertical +Harwin LTek Connector, 3 pins, single row male, vertical entry +connector harwin ltek M80 +0 +3 +3 +Connector_Harwin +Harwin_LTek-Male_03_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 3 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +7 +3 +Connector_Harwin +Harwin_LTek-Male_04_P2.00mm_Vertical +Harwin LTek Connector, 4 pins, single row male, vertical entry +connector harwin ltek M80 +0 +4 +4 +Connector_Harwin +Harwin_LTek-Male_04_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 4 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +8 +4 +Connector_Harwin +Harwin_LTek-Male_05_P2.00mm_Vertical +Harwin LTek Connector, 5 pins, single row male, vertical entry +connector harwin ltek M80 +0 +5 +5 +Connector_Harwin +Harwin_LTek-Male_05_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 5 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +9 +5 +Connector_Harwin +Harwin_LTek-Male_06_P2.00mm_Vertical +Harwin LTek Connector, 6 pins, single row male, vertical entry +connector harwin ltek M80 +0 +6 +6 +Connector_Harwin +Harwin_LTek-Male_06_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 6 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +10 +6 +Connector_Harwin +Harwin_LTek-Male_07_P2.00mm_Vertical +Harwin LTek Connector, 7 pins, single row male, vertical entry +connector harwin ltek M80 +0 +7 +7 +Connector_Harwin +Harwin_LTek-Male_07_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 7 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +11 +7 +Connector_Harwin +Harwin_LTek-Male_17_P2.00mm_Vertical +Harwin LTek Connector, 17 pins, single row male, vertical entry +connector harwin ltek M80 +0 +17 +17 +Connector_Harwin +Harwin_LTek-Male_17_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 17 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +21 +17 +Connector_Harwin +Harwin_LTek-Male_22_P2.00mm_Vertical +Harwin LTek Connector, 22 pins, single row male, vertical entry +connector harwin ltek M80 +0 +22 +22 +Connector_Harwin +Harwin_LTek-Male_22_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 22 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +26 +22 +Connector_Harwin +Harwin_M20-89003xx_1x03_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89003xx, 3 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +4 +3 +Connector_Harwin +Harwin_M20-89004xx_1x04_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89004xx, 4 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +5 +4 +Connector_Harwin +Harwin_M20-89005xx_1x05_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89005xx, 5 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +6 +5 +Connector_Harwin +Harwin_M20-89006xx_1x06_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89006xx, 6 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +7 +6 +Connector_Harwin +Harwin_M20-89007xx_1x07_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89007xx, 7 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +8 +7 +Connector_Harwin +Harwin_M20-89008xx_1x08_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89008xx, 8 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +9 +8 +Connector_Harwin +Harwin_M20-89009xx_1x09_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89009xx, 9 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +10 +9 +Connector_Harwin +Harwin_M20-89010xx_1x10_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89010xx, 10 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +11 +10 +Connector_Harwin +Harwin_M20-89011xx_1x11_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89011xx, 11 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +12 +11 +Connector_Harwin +Harwin_M20-89012xx_1x12_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89012xx, 12 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +13 +12 +Connector_Harwin +Harwin_M20-89013xx_1x13_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89013xx, 13 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +14 +13 +Connector_Harwin +Harwin_M20-89014xx_1x14_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89014xx, 14 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +15 +14 +Connector_Harwin +Harwin_M20-89015xx_1x15_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89015xx, 15 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +16 +15 +Connector_Harwin +Harwin_M20-89016xx_1x16_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89016xx, 16 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +17 +16 +Connector_Harwin +Harwin_M20-89017xx_1x17_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89017xx, 17 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +18 +17 +Connector_Harwin +Harwin_M20-89018xx_1x18_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89018xx, 18 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +19 +18 +Connector_Harwin +Harwin_M20-89019xx_1x19_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89019xx, 19 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +20 +19 +Connector_Harwin +Harwin_M20-89020xx_1x20_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89020xx, 20 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +21 +20 +Connector_Harwin +Harwin_M20-7810245_2x02_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810245, 2 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +4 +4 +Connector_Harwin +Harwin_M20-7810345_2x03_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810345, 3 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +6 +6 +Connector_Harwin +Harwin_M20-7810445_2x04_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810445, 4 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +8 +8 +Connector_Harwin +Harwin_M20-7810545_2x05_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810545, 5 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +10 +10 +Connector_Harwin +Harwin_M20-7810645_2x06_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810645, 6 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +12 +12 +Connector_Harwin +Harwin_M20-7810745_2x07_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810745, 7 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +14 +14 +Connector_Harwin +Harwin_M20-7810845_2x08_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810845, 8 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +16 +16 +Connector_Harwin +Harwin_M20-7810945_2x09_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810945, 9 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +18 +18 +Connector_Harwin +Harwin_M20-7811045_2x10_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811045, 10 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +20 +20 +Connector_Harwin +Harwin_M20-7811245_2x12_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811245, 12 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +24 +24 +Connector_Harwin +Harwin_M20-7811545_2x15_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811545, 15 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +30 +30 +Connector_Harwin +Harwin_M20-7812045_2x20_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7812045, 20 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +40 +40 +Connector_Hirose +Hirose_BM23FR0.6-16DP-0.35V_2x08_1MP_Vertical +Hirose BM23 series connector, BM23FR0.6-16DP-0.35V (https://www.hirose.com/fr/product/document?clcode=CL0480-0290-0-95&productname=BM23FR0.6-16DP-0.35V(895)&series=BM23FR&documenttype=2DDrawing&lang=fr&documentid=D164551_en) +connector Hirose BM23 16pin header +0 +20 +17 +Connector_Hirose +Hirose_BM23FR0.6-16DS-0.35V_2x08_P0.35_1MP_Vertical +Hirose BM23 series connector, BM23FR0.6-16DS-0.35V (https://www.hirose.com/fr/product/document?clcode=CL0480-0295-0-51&productname=BM23FR0.6-16DS-0.35V(51)&series=BM23FR&documenttype=2DDrawing&lang=fr&documentid=D162179_en) +connector Hirose 16pin receptacle vertical +0 +20 +17 +Connector_Hirose +Hirose_BM24_BM24-40DP-2-0.35V_2x20_P0.35mm_PowerPin2_Vertical +Hirose BM24 series connector, BM24-40DP/2-0.35V (https://www.hirose.com/product/en/download_file/key_name/BM24/category/Catalog/doc_file_id/47680/?file_category_id=4&item_id=50&is_series=1) +connector Hirose BM24 40pin header +0 +44 +42 +Connector_Hirose +Hirose_BM24_BM24-40DS-2-0.35V_2x20_P0.35mm_PowerPin2_Vertical +Hirose BM24 series connector, BM24-40DS/2-0.35V (https://www.hirose.com/product/en/download_file/key_name/BM24/category/Catalog/doc_file_id/47680/?file_category_id=4&item_id=50&is_series=1) +connector Hirose 40pin receptacle vertical +0 +42 +42 +Connector_Hirose +Hirose_DF3EA-02P-2H_1x02-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-02P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +4 +3 +Connector_Hirose +Hirose_DF3EA-03P-2H_1x03-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-03P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +5 +4 +Connector_Hirose +Hirose_DF3EA-04P-2H_1x04-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-04P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +6 +5 +Connector_Hirose +Hirose_DF3EA-05P-2H_1x05-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-05P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +7 +6 +Connector_Hirose +Hirose_DF3EA-06P-2H_1x06-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-06P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +8 +7 +Connector_Hirose +Hirose_DF3EA-07P-2H_1x07-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-07P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +9 +8 +Connector_Hirose +Hirose_DF3EA-08P-2H_1x08-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-08P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +10 +9 +Connector_Hirose +Hirose_DF3EA-09P-2H_1x09-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-09P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +11 +10 +Connector_Hirose +Hirose_DF3EA-10P-2H_1x10-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-10P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +12 +11 +Connector_Hirose +Hirose_DF3EA-11P-2H_1x11-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-11P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +13 +12 +Connector_Hirose +Hirose_DF3EA-12P-2H_1x12-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-12P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +14 +13 +Connector_Hirose +Hirose_DF3EA-13P-2H_1x13-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-13P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +15 +14 +Connector_Hirose +Hirose_DF3EA-14P-2H_1x14-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-14P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +16 +15 +Connector_Hirose +Hirose_DF3EA-15P-2H_1x15-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-15P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +17 +16 +Connector_Hirose +Hirose_DF11-4DP-2DSA_2x02_P2.00mm_Vertical +Hirose DF11 through hole, DF11-4DP-2DSA, 2 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF11-6DP-2DSA_2x03_P2.00mm_Vertical +Hirose DF11 through hole, DF11-6DP-2DSA, 3 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +6 +6 +Connector_Hirose +Hirose_DF11-8DP-2DSA_2x04_P2.00mm_Vertical +Hirose DF11 through hole, DF11-8DP-2DSA, 4 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +8 +8 +Connector_Hirose +Hirose_DF11-10DP-2DSA_2x05_P2.00mm_Vertical +Hirose DF11 through hole, DF11-10DP-2DSA, 5 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +10 +10 +Connector_Hirose +Hirose_DF11-12DP-2DSA_2x06_P2.00mm_Vertical +Hirose DF11 through hole, DF11-12DP-2DSA, 6 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +12 +12 +Connector_Hirose +Hirose_DF11-14DP-2DSA_2x07_P2.00mm_Vertical +Hirose DF11 through hole, DF11-14DP-2DSA, 7 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +14 +14 +Connector_Hirose +Hirose_DF11-16DP-2DSA_2x08_P2.00mm_Vertical +Hirose DF11 through hole, DF11-16DP-2DSA, 8 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +16 +16 +Connector_Hirose +Hirose_DF11-18DP-2DSA_2x09_P2.00mm_Vertical +Hirose DF11 through hole, DF11-18DP-2DSA, 9 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +18 +18 +Connector_Hirose +Hirose_DF11-20DP-2DSA_2x10_P2.00mm_Vertical +Hirose DF11 through hole, DF11-20DP-2DSA, 10 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +20 +20 +Connector_Hirose +Hirose_DF11-22DP-2DSA_2x11_P2.00mm_Vertical +Hirose DF11 through hole, DF11-22DP-2DSA, 11 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +22 +22 +Connector_Hirose +Hirose_DF11-24DP-2DSA_2x12_P2.00mm_Vertical +Hirose DF11 through hole, DF11-24DP-2DSA, 12 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +24 +24 +Connector_Hirose +Hirose_DF11-26DP-2DSA_2x13_P2.00mm_Vertical +Hirose DF11 through hole, DF11-26DP-2DSA, 13 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +26 +26 +Connector_Hirose +Hirose_DF11-28DP-2DSA_2x14_P2.00mm_Vertical +Hirose DF11 through hole, DF11-28DP-2DSA, 14 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +28 +28 +Connector_Hirose +Hirose_DF11-30DP-2DSA_2x15_P2.00mm_Vertical +Hirose DF11 through hole, DF11-30DP-2DSA, 15 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +30 +30 +Connector_Hirose +Hirose_DF11-32DP-2DSA_2x16_P2.00mm_Vertical +Hirose DF11 through hole, DF11-32DP-2DSA, 16 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +32 +32 +Connector_Hirose +Hirose_DF12_DF12C3.0-10DS-0.5V_2x05_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-10DS-0.5V, 10 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +20 +10 +Connector_Hirose +Hirose_DF12_DF12C3.0-14DS-0.5V_2x07_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-14DS-0.5V, 14 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +28 +14 +Connector_Hirose +Hirose_DF12_DF12C3.0-20DS-0.5V_2x10_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-20DS-0.5V, 20 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +40 +20 +Connector_Hirose +Hirose_DF12_DF12C3.0-30DS-0.5V_2x15_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-30DS-0.5V, 30 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +60 +30 +Connector_Hirose +Hirose_DF12_DF12C3.0-32DS-0.5V_2x16_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-32DS-0.5V, 32 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +64 +32 +Connector_Hirose +Hirose_DF12_DF12C3.0-36DS-0.5V_2x18_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-36DS-0.5V, 36 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +72 +36 +Connector_Hirose +Hirose_DF12_DF12C3.0-40DS-0.5V_2x20_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-40DS-0.5V, 40 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +80 +40 +Connector_Hirose +Hirose_DF12_DF12C3.0-50DS-0.5V_2x25_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-50DS-0.5V, 50 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +100 +50 +Connector_Hirose +Hirose_DF12_DF12C3.0-60DS-0.5V_2x30_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-60DS-0.5V, 60 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +120 +60 +Connector_Hirose +Hirose_DF12_DF12E3.0-10DP-0.5V_2x05_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-10DP-0.5V, 10 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +20 +10 +Connector_Hirose +Hirose_DF12_DF12E3.0-14DP-0.5V_2x07_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-14DP-0.5V, 14 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +28 +14 +Connector_Hirose +Hirose_DF12_DF12E3.0-20DP-0.5V_2x10_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-20DP-0.5V, 20 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +40 +20 +Connector_Hirose +Hirose_DF12_DF12E3.0-30DP-0.5V_2x15_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-30DP-0.5V, 30 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +60 +30 +Connector_Hirose +Hirose_DF12_DF12E3.0-32DP-0.5V_2x16_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-32DP-0.5V, 32 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +64 +32 +Connector_Hirose +Hirose_DF12_DF12E3.0-36DP-0.5V_2x18_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-36DP-0.5V, 36 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +72 +36 +Connector_Hirose +Hirose_DF12_DF12E3.0-40DP-0.5V_2x20_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-40DP-0.5V, 40 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +80 +40 +Connector_Hirose +Hirose_DF12_DF12E3.0-50DP-0.5V_2x25_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-50DP-0.5V, 50 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +100 +50 +Connector_Hirose +Hirose_DF12_DF12E3.0-60DP-0.5V_2x30_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-60DP-0.5V, 60 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +120 +60 +Connector_Hirose +Hirose_DF12_DF12E3.0-80DP-0.5V_2x40_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-80DP-0.5V, 80 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +160 +80 +Connector_Hirose +Hirose_DF13-02P-1.25DSA_1x02_P1.25mm_Vertical +Hirose DF13 through hole, DF13-02P-1.25DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +2 +2 +Connector_Hirose +Hirose_DF13-02P-1.25DS_1x02_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-02P-1.25DS, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +2 +2 +Connector_Hirose +Hirose_DF13-03P-1.25DSA_1x03_P1.25mm_Vertical +Hirose DF13 through hole, DF13-03P-1.25DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +3 +3 +Connector_Hirose +Hirose_DF13-03P-1.25DS_1x03_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-03P-1.25DS, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +3 +3 +Connector_Hirose +Hirose_DF13-04P-1.25DSA_1x04_P1.25mm_Vertical +Hirose DF13 through hole, DF13-04P-1.25DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF13-04P-1.25DS_1x04_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-04P-1.25DS, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +4 +4 +Connector_Hirose +Hirose_DF13-05P-1.25DSA_1x05_P1.25mm_Vertical +Hirose DF13 through hole, DF13-05P-1.25DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +5 +5 +Connector_Hirose +Hirose_DF13-05P-1.25DS_1x05_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-05P-1.25DS, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +5 +5 +Connector_Hirose +Hirose_DF13-06P-1.25DSA_1x06_P1.25mm_Vertical +Hirose DF13 through hole, DF13-06P-1.25DSA, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +6 +6 +Connector_Hirose +Hirose_DF13-06P-1.25DS_1x06_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-06P-1.25DS, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +6 +6 +Connector_Hirose +Hirose_DF13-07P-1.25DSA_1x07_P1.25mm_Vertical +Hirose DF13 through hole, DF13-07P-1.25DSA, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +7 +7 +Connector_Hirose +Hirose_DF13-07P-1.25DS_1x07_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-07P-1.25DS, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +7 +7 +Connector_Hirose +Hirose_DF13-08P-1.25DSA_1x08_P1.25mm_Vertical +Hirose DF13 through hole, DF13-08P-1.25DSA, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +8 +8 +Connector_Hirose +Hirose_DF13-08P-1.25DS_1x08_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-08P-1.25DS, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +8 +8 +Connector_Hirose +Hirose_DF13-09P-1.25DSA_1x09_P1.25mm_Vertical +Hirose DF13 through hole, DF13-09P-1.25DSA, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +9 +9 +Connector_Hirose +Hirose_DF13-09P-1.25DS_1x09_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-09P-1.25DS, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +9 +9 +Connector_Hirose +Hirose_DF13-10P-1.25DSA_1x10_P1.25mm_Vertical +Hirose DF13 through hole, DF13-10P-1.25DSA, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +10 +10 +Connector_Hirose +Hirose_DF13-10P-1.25DS_1x10_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-10P-1.25DS, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +10 +10 +Connector_Hirose +Hirose_DF13-11P-1.25DSA_1x11_P1.25mm_Vertical +Hirose DF13 through hole, DF13-11P-1.25DSA, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +11 +11 +Connector_Hirose +Hirose_DF13-11P-1.25DS_1x11_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-11P-1.25DS, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +11 +11 +Connector_Hirose +Hirose_DF13-12P-1.25DSA_1x12_P1.25mm_Vertical +Hirose DF13 through hole, DF13-12P-1.25DSA, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +12 +12 +Connector_Hirose +Hirose_DF13-12P-1.25DS_1x12_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-12P-1.25DS, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +12 +12 +Connector_Hirose +Hirose_DF13-13P-1.25DSA_1x13_P1.25mm_Vertical +Hirose DF13 through hole, DF13-13P-1.25DSA, 13 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +13 +13 +Connector_Hirose +Hirose_DF13-14P-1.25DSA_1x14_P1.25mm_Vertical +Hirose DF13 through hole, DF13-14P-1.25DSA, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +14 +14 +Connector_Hirose +Hirose_DF13-14P-1.25DS_1x14_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-14P-1.25DS, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +14 +14 +Connector_Hirose +Hirose_DF13-15P-1.25DSA_1x15_P1.25mm_Vertical +Hirose DF13 through hole, DF13-15P-1.25DSA, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +15 +15 +Connector_Hirose +Hirose_DF13-15P-1.25DS_1x15_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-15P-1.25DS, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +15 +15 +Connector_Hirose +Hirose_DF13C_CL535-0402-2-51_1x02-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0402-2-51, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +4 +3 +Connector_Hirose +Hirose_DF13C_CL535-0403-5-51_1x03-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0403-5-51, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +5 +4 +Connector_Hirose +Hirose_DF13C_CL535-0404-8-51_1x04-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0404-8-51, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +6 +5 +Connector_Hirose +Hirose_DF13C_CL535-0405-0-51_1x05-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0405-0-51, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +7 +6 +Connector_Hirose +Hirose_DF13C_CL535-0406-3-51_1x06-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0406-3-51, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +8 +7 +Connector_Hirose +Hirose_DF13C_CL535-0407-6-51_1x07-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0407-6-51, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +9 +8 +Connector_Hirose +Hirose_DF13C_CL535-0408-9-51_1x08-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0408-9-51, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +10 +9 +Connector_Hirose +Hirose_DF13C_CL535-0409-1-51_1x09-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0409-1-51, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +11 +10 +Connector_Hirose +Hirose_DF13C_CL535-0410-4-51_1x10-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0410-4-51, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +12 +11 +Connector_Hirose +Hirose_DF13C_CL535-0411-3-51_1x11-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0411-3-51, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +13 +12 +Connector_Hirose +Hirose_DF13C_CL535-0412-6-51_1x12-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0412-6-51, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +14 +13 +Connector_Hirose +Hirose_DF13C_CL535-0414-1-51_1x14-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0414-1-51, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +16 +15 +Connector_Hirose +Hirose_DF13C_CL535-0415-4-51_1x15-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0415-4-51, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +17 +16 +Connector_Hirose +Hirose_DF52-2S-0.8H_1x02-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-2S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +4 +3 +Connector_Hirose +Hirose_DF52-3S-0.8H_1x03-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-3S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +5 +4 +Connector_Hirose +Hirose_DF52-4S-0.8H_1x04-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-4S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +6 +5 +Connector_Hirose +Hirose_DF52-5S-0.8H_1x05-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-5S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +7 +6 +Connector_Hirose +Hirose_DF52-6S-0.8H_1x06-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-6S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +8 +7 +Connector_Hirose +Hirose_DF52-7S-0.8H_1x07-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-7S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +9 +8 +Connector_Hirose +Hirose_DF52-8S-0.8H_1x08-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-8S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +10 +9 +Connector_Hirose +Hirose_DF52-9S-0.8H_1x09-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-9S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +11 +10 +Connector_Hirose +Hirose_DF52-10S-0.8H_1x10-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-10S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +12 +11 +Connector_Hirose +Hirose_DF52-11S-0.8H_1x11-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-11S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +13 +12 +Connector_Hirose +Hirose_DF52-12S-0.8H_1x12-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-12S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +14 +13 +Connector_Hirose +Hirose_DF52-14S-0.8H_1x14-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-14S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +16 +15 +Connector_Hirose +Hirose_DF52-15S-0.8H_1x15-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-15S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +17 +16 +Connector_Hirose +Hirose_DF63-5P-3.96DSA_1x05_P3.96mm_Vertical +Hirose DF63 through hole, DF63-5P-3.96DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +5 +5 +Connector_Hirose +Hirose_DF63-6P-3.96DSA_1x06_P3.96mm_Vertical +Hirose DF63 through hole, DF63-6P-3.96DSA, 6 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +6 +6 +Connector_Hirose +Hirose_DF63M-1P-3.96DSA_1x01_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-1P-3.96DSA, 1 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +1 +1 +Connector_Hirose +Hirose_DF63M-2P-3.96DSA_1x02_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-2P-3.96DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +2 +2 +Connector_Hirose +Hirose_DF63M-3P-3.96DSA_1x03_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-3P-3.96DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +3 +3 +Connector_Hirose +Hirose_DF63M-4P-3.96DSA_1x04_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-4P-3.96DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF63R-1P-3.96DSA_1x01_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-1P-3.96DSA, 1 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +1 +1 +Connector_Hirose +Hirose_DF63R-2P-3.96DSA_1x02_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-2P-3.96DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +2 +2 +Connector_Hirose +Hirose_DF63R-3P-3.96DSA_1x03_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-3P-3.96DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +3 +3 +Connector_Hirose +Hirose_DF63R-4P-3.96DSA_1x04_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-4P-3.96DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF63R-5P-3.96DSA_1x05_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-5P-3.96DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +5 +5 +Connector_IDC +IDC-Header_2x03_P2.54mm_Horizontal +Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x03_P2.54mm_Vertical +Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x03_P2.54mm_Vertical_SMD +SMD IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x04_P2.54mm_Horizontal +Through hole IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x04_P2.54mm_Vertical +Through hole IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x04_P2.54mm_Vertical_SMD +SMD IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05_P2.54mm_Horizontal +Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Vertical +Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Vertical_SMD +SMD IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06_P2.54mm_Horizontal +Through hole IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Vertical +Through hole IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Vertical_SMD +SMD IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07_P2.54mm_Horizontal +Through hole IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Horizontal_Lock +Connector IDC Locked, 10 contacts, compatible header: PANCON HE10 (Series 50, (https://www.reboul.fr/storage/00003af6.pdf) +connector idc locked +0 +16 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Vertical +Through hole IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Vertical_SMD +SMD IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08_P2.54mm_Horizontal +Through hole IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Vertical +Through hole IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Vertical_SMD +SMD IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x09_P2.54mm_Horizontal +Through hole IDC box header, 2x09, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x09 2.54mm double row +0 +18 +18 +Connector_IDC +IDC-Header_2x09_P2.54mm_Vertical +Through hole IDC box header, 2x09, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x09 2.54mm double row +0 +18 +18 +Connector_IDC +IDC-Header_2x09_P2.54mm_Vertical_SMD +SMD IDC box header, 2x09, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x09 2.54mm double row +0 +18 +18 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10_P2.54mm_Horizontal +Through hole IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Vertical +Through hole IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Vertical_SMD +SMD IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x11_P2.54mm_Horizontal +Through hole IDC box header, 2x11, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x11 2.54mm double row +0 +22 +22 +Connector_IDC +IDC-Header_2x11_P2.54mm_Vertical +Through hole IDC box header, 2x11, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x11 2.54mm double row +0 +22 +22 +Connector_IDC +IDC-Header_2x11_P2.54mm_Vertical_SMD +SMD IDC box header, 2x11, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x11 2.54mm double row +0 +22 +22 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12_P2.54mm_Horizontal +Through hole IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Vertical +Through hole IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Vertical_SMD +SMD IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13_P2.54mm_Horizontal +Through hole IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Vertical +Through hole IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Vertical_SMD +SMD IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15_P2.54mm_Horizontal +Through hole IDC box header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Vertical +Through hole IDC box header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17_P2.54mm_Horizontal +Through hole IDC box header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Vertical +Through hole IDC box header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20_P2.54mm_Horizontal +Through hole IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Vertical +Through hole IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Vertical_SMD +SMD IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x22_P2.54mm_Horizontal +Through hole IDC box header, 2x22, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x22 2.54mm double row +0 +44 +44 +Connector_IDC +IDC-Header_2x22_P2.54mm_Vertical +Through hole IDC box header, 2x22, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x22 2.54mm double row +0 +44 +44 +Connector_IDC +IDC-Header_2x22_P2.54mm_Vertical_SMD +SMD IDC box header, 2x22, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x22 2.54mm double row +0 +44 +44 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25_P2.54mm_Horizontal +Through hole IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Vertical +Through hole IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Vertical_SMD +SMD IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30_P2.54mm_Horizontal +Through hole IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Vertical +Through hole IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Vertical_SMD +SMD IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32_P2.54mm_Horizontal +Through hole IDC box header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Vertical +Through hole IDC box header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x32 2.54mm double row +0 +64 +64 +Connector_JAE +JAE_LY20-4P-DLT1_2x02_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-4P-DLT1, 2 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +4 +4 +Connector_JAE +JAE_LY20-4P-DT1_2x02_P2.00mm_Vertical +Molex LY 20 series connector, LY20-4P-DT1, 2 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +4 +4 +Connector_JAE +JAE_LY20-6P-DLT1_2x03_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-6P-DLT1, 3 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +6 +6 +Connector_JAE +JAE_LY20-6P-DT1_2x03_P2.00mm_Vertical +Molex LY 20 series connector, LY20-6P-DT1, 3 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +6 +6 +Connector_JAE +JAE_LY20-8P-DLT1_2x04_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-8P-DLT1, 4 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +8 +8 +Connector_JAE +JAE_LY20-8P-DT1_2x04_P2.00mm_Vertical +Molex LY 20 series connector, LY20-8P-DT1, 4 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +8 +8 +Connector_JAE +JAE_LY20-10P-DLT1_2x05_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-10P-DLT1, 5 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +10 +10 +Connector_JAE +JAE_LY20-10P-DT1_2x05_P2.00mm_Vertical +Molex LY 20 series connector, LY20-10P-DT1, 5 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +10 +10 +Connector_JAE +JAE_LY20-12P-DLT1_2x06_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-12P-DLT1, 6 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +12 +12 +Connector_JAE +JAE_LY20-12P-DT1_2x06_P2.00mm_Vertical +Molex LY 20 series connector, LY20-12P-DT1, 6 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +12 +12 +Connector_JAE +JAE_LY20-14P-DLT1_2x07_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-14P-DLT1, 7 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +14 +14 +Connector_JAE +JAE_LY20-14P-DT1_2x07_P2.00mm_Vertical +Molex LY 20 series connector, LY20-14P-DT1, 7 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +14 +14 +Connector_JAE +JAE_LY20-16P-DLT1_2x08_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-16P-DLT1, 8 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +16 +16 +Connector_JAE +JAE_LY20-16P-DT1_2x08_P2.00mm_Vertical +Molex LY 20 series connector, LY20-16P-DT1, 8 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +16 +16 +Connector_JAE +JAE_LY20-18P-DLT1_2x09_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-18P-DLT1, 9 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +18 +18 +Connector_JAE +JAE_LY20-18P-DT1_2x09_P2.00mm_Vertical +Molex LY 20 series connector, LY20-18P-DT1, 9 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +18 +18 +Connector_JAE +JAE_LY20-20P-DLT1_2x10_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-20P-DLT1, 10 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +20 +20 +Connector_JAE +JAE_LY20-20P-DT1_2x10_P2.00mm_Vertical +Molex LY 20 series connector, LY20-20P-DT1, 10 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +20 +20 +Connector_JAE +JAE_LY20-22P-DLT1_2x11_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-22P-DLT1, 11 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +22 +22 +Connector_JAE +JAE_LY20-22P-DT1_2x11_P2.00mm_Vertical +Molex LY 20 series connector, LY20-22P-DT1, 11 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +22 +22 +Connector_JAE +JAE_LY20-24P-DLT1_2x12_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-24P-DLT1, 12 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +24 +24 +Connector_JAE +JAE_LY20-24P-DT1_2x12_P2.00mm_Vertical +Molex LY 20 series connector, LY20-24P-DT1, 12 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +24 +24 +Connector_JAE +JAE_LY20-26P-DLT1_2x13_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-26P-DLT1, 13 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +26 +26 +Connector_JAE +JAE_LY20-26P-DT1_2x13_P2.00mm_Vertical +Molex LY 20 series connector, LY20-26P-DT1, 13 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +26 +26 +Connector_JAE +JAE_LY20-28P-DLT1_2x14_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-28P-DLT1, 14 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +28 +28 +Connector_JAE +JAE_LY20-28P-DT1_2x14_P2.00mm_Vertical +Molex LY 20 series connector, LY20-28P-DT1, 14 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +28 +28 +Connector_JAE +JAE_LY20-30P-DLT1_2x15_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-30P-DLT1, 15 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +30 +30 +Connector_JAE +JAE_LY20-30P-DT1_2x15_P2.00mm_Vertical +Molex LY 20 series connector, LY20-30P-DT1, 15 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +30 +30 +Connector_JAE +JAE_LY20-32P-DLT1_2x16_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-32P-DLT1, 16 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +32 +32 +Connector_JAE +JAE_LY20-32P-DT1_2x16_P2.00mm_Vertical +Molex LY 20 series connector, LY20-32P-DT1, 16 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +32 +32 +Connector_JAE +JAE_LY20-34P-DLT1_2x17_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-34P-DLT1, 17 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +34 +34 +Connector_JAE +JAE_LY20-34P-DT1_2x17_P2.00mm_Vertical +Molex LY 20 series connector, LY20-34P-DT1, 17 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +34 +34 +Connector_JAE +JAE_LY20-36P-DLT1_2x18_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-36P-DLT1, 18 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +36 +36 +Connector_JAE +JAE_LY20-36P-DT1_2x18_P2.00mm_Vertical +Molex LY 20 series connector, LY20-36P-DT1, 18 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +36 +36 +Connector_JAE +JAE_LY20-38P-DLT1_2x19_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-38P-DLT1, 19 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +38 +38 +Connector_JAE +JAE_LY20-38P-DT1_2x19_P2.00mm_Vertical +Molex LY 20 series connector, LY20-38P-DT1, 19 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +38 +38 +Connector_JAE +JAE_LY20-40P-DLT1_2x20_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-40P-DLT1, 20 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +40 +40 +Connector_JAE +JAE_LY20-40P-DT1_2x20_P2.00mm_Vertical +Molex LY 20 series connector, LY20-40P-DT1, 20 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +40 +40 +Connector_JAE +JAE_LY20-42P-DLT1_2x21_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-42P-DLT1, 21 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +42 +42 +Connector_JAE +JAE_LY20-42P-DT1_2x21_P2.00mm_Vertical +Molex LY 20 series connector, LY20-42P-DT1, 21 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +42 +42 +Connector_JAE +JAE_LY20-44P-DLT1_2x22_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-44P-DLT1, 22 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +44 +44 +Connector_JAE +JAE_LY20-44P-DT1_2x22_P2.00mm_Vertical +Molex LY 20 series connector, LY20-44P-DT1, 22 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +44 +44 +Connector_JAE +JAE_MM70-314-310B1 +http://www.heilind.com/marketing/documents/jae/JAE_MM70.pdf +connector JAE MXM +0 +280 +279 +Connector_JAE +JAE_SIM_Card_SF72S006 +SIM Card, Push-Push, https://www.jae.com/direct/topics/topics_file_download/topics_id=68892&ext_no=06&index=0&_lang=en&v=202003111511468456809 +SIM Card with Detect Switch +0 +18 +9 +Connector_JST +JST_ACH_BM01B-ACHSS-A-GAN-ETF_1x01-1MP_P1.20mm_Vertical +JST ACH series connector, BM01B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +3 +2 +Connector_JST +JST_ACH_BM02B-ACHSS-GAN-ETF_1x02-1MP_P1.20mm_Vertical +JST ACH series connector, BM02B-ACHSS-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +4 +3 +Connector_JST +JST_ACH_BM03B-ACHSS-GAN-ETF_1x03-1MP_P1.20mm_Vertical +JST ACH series connector, BM03B-ACHSS-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +5 +4 +Connector_JST +JST_ACH_BM04B-ACHSS-A-GAN-ETF_1x04-1MP_P1.20mm_Vertical +JST ACH series connector, BM04B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +6 +5 +Connector_JST +JST_ACH_BM05B-ACHSS-A-GAN-ETF_1x05-1MP_P1.20mm_Vertical +JST ACH series connector, BM05B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +7 +6 +Connector_JST +JST_AUH_BM03B-AUHKS-GA-TB_1x03-1MP_P1.50mm_Vertical +JST AUH series connector, BM03B-AUHKS-GA-TB (http://www.jst-mfg.com/product/pdf/eng/eAUH.pdf), generated with kicad-footprint-generator +connector JST AUH vertical +0 +5 +4 +Connector_JST +JST_AUH_BM05B-AUHKS-GA-TB_1x05-1MP_P1.50mm_Vertical +JST AUH series connector, BM05B-AUHKS-GA-TB (http://www.jst-mfg.com/product/pdf/eng/eAUH.pdf), generated with kicad-footprint-generator +connector JST AUH vertical +0 +7 +6 +Connector_JST +JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical +JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +2 +2 +Connector_JST +JST_EH_B3B-EH-A_1x03_P2.50mm_Vertical +JST EH series connector, B3B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +3 +3 +Connector_JST +JST_EH_B4B-EH-A_1x04_P2.50mm_Vertical +JST EH series connector, B4B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +4 +4 +Connector_JST +JST_EH_B5B-EH-A_1x05_P2.50mm_Vertical +JST EH series connector, B5B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +5 +5 +Connector_JST +JST_EH_B6B-EH-A_1x06_P2.50mm_Vertical +JST EH series connector, B6B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +6 +6 +Connector_JST +JST_EH_B7B-EH-A_1x07_P2.50mm_Vertical +JST EH series connector, B7B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +7 +7 +Connector_JST +JST_EH_B8B-EH-A_1x08_P2.50mm_Vertical +JST EH series connector, B8B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +8 +8 +Connector_JST +JST_EH_B9B-EH-A_1x09_P2.50mm_Vertical +JST EH series connector, B9B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +9 +9 +Connector_JST +JST_EH_B10B-EH-A_1x10_P2.50mm_Vertical +JST EH series connector, B10B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +10 +10 +Connector_JST +JST_EH_B11B-EH-A_1x11_P2.50mm_Vertical +JST EH series connector, B11B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +11 +11 +Connector_JST +JST_EH_B12B-EH-A_1x12_P2.50mm_Vertical +JST EH series connector, B12B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +12 +12 +Connector_JST +JST_EH_B13B-EH-A_1x13_P2.50mm_Vertical +JST EH series connector, B13B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +13 +13 +Connector_JST +JST_EH_B14B-EH-A_1x14_P2.50mm_Vertical +JST EH series connector, B14B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +14 +14 +Connector_JST +JST_EH_B15B-EH-A_1x15_P2.50mm_Vertical +JST EH series connector, B15B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +15 +15 +Connector_JST +JST_EH_S2B-EH_1x02_P2.50mm_Horizontal +JST EH series connector, S2B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +2 +2 +Connector_JST +JST_EH_S3B-EH_1x03_P2.50mm_Horizontal +JST EH series connector, S3B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +3 +3 +Connector_JST +JST_EH_S4B-EH_1x04_P2.50mm_Horizontal +JST EH series connector, S4B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +4 +4 +Connector_JST +JST_EH_S5B-EH_1x05_P2.50mm_Horizontal +JST EH series connector, S5B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +5 +5 +Connector_JST +JST_EH_S6B-EH_1x06_P2.50mm_Horizontal +JST EH series connector, S6B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +6 +6 +Connector_JST +JST_EH_S7B-EH_1x07_P2.50mm_Horizontal +JST EH series connector, S7B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +7 +7 +Connector_JST +JST_EH_S8B-EH_1x08_P2.50mm_Horizontal +JST EH series connector, S8B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +8 +8 +Connector_JST +JST_EH_S9B-EH_1x09_P2.50mm_Horizontal +JST EH series connector, S9B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +9 +9 +Connector_JST +JST_EH_S10B-EH_1x10_P2.50mm_Horizontal +JST EH series connector, S10B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +10 +10 +Connector_JST +JST_EH_S11B-EH_1x11_P2.50mm_Horizontal +JST EH series connector, S11B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +11 +11 +Connector_JST +JST_EH_S12B-EH_1x12_P2.50mm_Horizontal +JST EH series connector, S12B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +12 +12 +Connector_JST +JST_EH_S13B-EH_1x13_P2.50mm_Horizontal +JST EH series connector, S13B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +13 +13 +Connector_JST +JST_EH_S14B-EH_1x14_P2.50mm_Horizontal +JST EH series connector, S14B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +14 +14 +Connector_JST +JST_EH_S15B-EH_1x15_P2.50mm_Horizontal +JST EH series connector, S15B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +15 +15 +Connector_JST +JST_GH_BM02B-GHS-TBT_1x02-1MP_P1.25mm_Vertical +JST GH series connector, BM02B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +4 +3 +Connector_JST +JST_GH_BM03B-GHS-TBT_1x03-1MP_P1.25mm_Vertical +JST GH series connector, BM03B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +5 +4 +Connector_JST +JST_GH_BM04B-GHS-TBT_1x04-1MP_P1.25mm_Vertical +JST GH series connector, BM04B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +6 +5 +Connector_JST +JST_GH_BM05B-GHS-TBT_1x05-1MP_P1.25mm_Vertical +JST GH series connector, BM05B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +7 +6 +Connector_JST +JST_GH_BM06B-GHS-TBT_1x06-1MP_P1.25mm_Vertical +JST GH series connector, BM06B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +8 +7 +Connector_JST +JST_GH_BM07B-GHS-TBT_1x07-1MP_P1.25mm_Vertical +JST GH series connector, BM07B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +9 +8 +Connector_JST +JST_GH_BM08B-GHS-TBT_1x08-1MP_P1.25mm_Vertical +JST GH series connector, BM08B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +10 +9 +Connector_JST +JST_GH_BM09B-GHS-TBT_1x09-1MP_P1.25mm_Vertical +JST GH series connector, BM09B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +11 +10 +Connector_JST +JST_GH_BM10B-GHS-TBT_1x10-1MP_P1.25mm_Vertical +JST GH series connector, BM10B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +12 +11 +Connector_JST +JST_GH_BM11B-GHS-TBT_1x11-1MP_P1.25mm_Vertical +JST GH series connector, BM11B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +13 +12 +Connector_JST +JST_GH_BM12B-GHS-TBT_1x12-1MP_P1.25mm_Vertical +JST GH series connector, BM12B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +14 +13 +Connector_JST +JST_GH_BM13B-GHS-TBT_1x13-1MP_P1.25mm_Vertical +JST GH series connector, BM13B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +15 +14 +Connector_JST +JST_GH_BM14B-GHS-TBT_1x14-1MP_P1.25mm_Vertical +JST GH series connector, BM14B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +16 +15 +Connector_JST +JST_GH_BM15B-GHS-TBT_1x15-1MP_P1.25mm_Vertical +JST GH series connector, BM15B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +17 +16 +Connector_JST +JST_GH_SM02B-GHS-TB_1x02-1MP_P1.25mm_Horizontal +JST GH series connector, SM02B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +4 +3 +Connector_JST +JST_GH_SM03B-GHS-TB_1x03-1MP_P1.25mm_Horizontal +JST GH series connector, SM03B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +5 +4 +Connector_JST +JST_GH_SM04B-GHS-TB_1x04-1MP_P1.25mm_Horizontal +JST GH series connector, SM04B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +6 +5 +Connector_JST +JST_GH_SM05B-GHS-TB_1x05-1MP_P1.25mm_Horizontal +JST GH series connector, SM05B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +7 +6 +Connector_JST +JST_GH_SM06B-GHS-TB_1x06-1MP_P1.25mm_Horizontal +JST GH series connector, SM06B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +8 +7 +Connector_JST +JST_GH_SM07B-GHS-TB_1x07-1MP_P1.25mm_Horizontal +JST GH series connector, SM07B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +9 +8 +Connector_JST +JST_GH_SM08B-GHS-TB_1x08-1MP_P1.25mm_Horizontal +JST GH series connector, SM08B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +10 +9 +Connector_JST +JST_GH_SM09B-GHS-TB_1x09-1MP_P1.25mm_Horizontal +JST GH series connector, SM09B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +11 +10 +Connector_JST +JST_GH_SM10B-GHS-TB_1x10-1MP_P1.25mm_Horizontal +JST GH series connector, SM10B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +12 +11 +Connector_JST +JST_GH_SM11B-GHS-TB_1x11-1MP_P1.25mm_Horizontal +JST GH series connector, SM11B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +13 +12 +Connector_JST +JST_GH_SM12B-GHS-TB_1x12-1MP_P1.25mm_Horizontal +JST GH series connector, SM12B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +14 +13 +Connector_JST +JST_GH_SM13B-GHS-TB_1x13-1MP_P1.25mm_Horizontal +JST GH series connector, SM13B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +15 +14 +Connector_JST +JST_GH_SM14B-GHS-TB_1x14-1MP_P1.25mm_Horizontal +JST GH series connector, SM14B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +16 +15 +Connector_JST +JST_GH_SM15B-GHS-TB_1x15-1MP_P1.25mm_Horizontal +JST GH series connector, SM15B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +17 +16 +Connector_JST +JST_J2100_B06B-J21DK-GGXR_2x03_P2.50x4.00mm_Vertical +JST J2100 series connector, B06B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +8 +6 +Connector_JST +JST_J2100_B08B-J21DK-GGXR_2x04_P2.50x4.00mm_Vertical +JST J2100 series connector, B08B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +10 +8 +Connector_JST +JST_J2100_B10B-J21DK-GGXR_2x05_P2.50x4.00mm_Vertical +JST J2100 series connector, B10B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +12 +10 +Connector_JST +JST_J2100_B12B-J21DK-GGXR_2x06_P2.50x4.00mm_Vertical +JST J2100 series connector, B12B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +14 +12 +Connector_JST +JST_J2100_B16B-J21DK-GGXR_2x08_P2.50x4.00mm_Vertical +JST J2100 series connector, B16B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +18 +16 +Connector_JST +JST_J2100_B20B-J21DK-GGXR_2x10_P2.50x4.00mm_Vertical +JST J2100 series connector, B20B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +22 +20 +Connector_JST +JST_J2100_S06B-J21DK-GGXR_2x03_P2.50mm_Horizontal +JST J2100 series connector, S06B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +7 +6 +Connector_JST +JST_J2100_S08B-J21DK-GGXR_2x04_P2.50mm_Horizontal +JST J2100 series connector, S08B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +10 +8 +Connector_JST +JST_J2100_S10B-J21DK-GGXR_2x05_P2.50mm_Horizontal +JST J2100 series connector, S10B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +12 +10 +Connector_JST +JST_J2100_S12B-J21DK-GGXR_2x06_P2.50mm_Horizontal +JST J2100 series connector, S12B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +14 +12 +Connector_JST +JST_J2100_S16B-J21DK-GGXR_2x08_P2.50mm_Horizontal +JST J2100 series connector, S16B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +18 +16 +Connector_JST +JST_J2100_S20B-J21DK-GGXR_2x10_P2.50mm_Horizontal +JST J2100 series connector, S20B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +22 +20 +Connector_JST +JST_JWPF_B02B-JWPF-SK-R_1x02_P2.00mm_Vertical +JST JWPF series connector, B02B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +2 +2 +Connector_JST +JST_JWPF_B03B-JWPF-SK-R_1x03_P2.00mm_Vertical +JST JWPF series connector, B03B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +3 +3 +Connector_JST +JST_JWPF_B04B-JWPF-SK-R_1x04_P2.00mm_Vertical +JST JWPF series connector, B04B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +4 +4 +Connector_JST +JST_JWPF_B06B-JWPF-SK-R_2x03_P2.00mm_Vertical +JST JWPF series connector, B06B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +6 +6 +Connector_JST +JST_JWPF_B08B-JWPF-SK-R_2x04_P2.00mm_Vertical +JST JWPF series connector, B08B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +8 +8 +Connector_JST +JST_LEA_SM02B-LEASS-TF_1x02-1MP_P4.20mm_Horizontal +JST LEA series connector, SM02B-LEASS-TF (http://www.jst-mfg.com/product/pdf/eng/eLEA.pdf), generated with kicad-footprint-generator +connector JST LEA horizontal +0 +4 +3 +Connector_JST +JST_NV_B02P-NV_1x02_P5.00mm_Vertical +JST NV series connector, B02P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator +connector JST NV side entry +0 +2 +2 +Connector_JST +JST_NV_B03P-NV_1x03_P5.00mm_Vertical +JST NV series connector, B03P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator +connector JST NV side entry +0 +3 +3 +Connector_JST +JST_NV_B04P-NV_1x04_P5.00mm_Vertical +JST NV series connector, B04P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator +connector JST NV side entry +0 +4 +4 +Connector_JST +JST_PHD_B8B-PHDSS_2x04_P2.00mm_Vertical +JST PHD series connector, B8B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +8 +8 +Connector_JST +JST_PHD_B10B-PHDSS_2x05_P2.00mm_Vertical +JST PHD series connector, B10B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +10 +10 +Connector_JST +JST_PHD_B12B-PHDSS_2x06_P2.00mm_Vertical +JST PHD series connector, B12B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +12 +12 +Connector_JST +JST_PHD_B14B-PHDSS_2x07_P2.00mm_Vertical +JST PHD series connector, B14B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +14 +14 +Connector_JST +JST_PHD_B16B-PHDSS_2x08_P2.00mm_Vertical +JST PHD series connector, B16B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +16 +16 +Connector_JST +JST_PHD_B18B-PHDSS_2x09_P2.00mm_Vertical +JST PHD series connector, B18B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +18 +18 +Connector_JST +JST_PHD_B20B-PHDSS_2x10_P2.00mm_Vertical +JST PHD series connector, B20B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +20 +20 +Connector_JST +JST_PHD_B22B-PHDSS_2x11_P2.00mm_Vertical +JST PHD series connector, B22B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +22 +22 +Connector_JST +JST_PHD_B24B-PHDSS_2x12_P2.00mm_Vertical +JST PHD series connector, B24B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +24 +24 +Connector_JST +JST_PHD_B26B-PHDSS_2x13_P2.00mm_Vertical +JST PHD series connector, B26B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +26 +26 +Connector_JST +JST_PHD_B28B-PHDSS_2x14_P2.00mm_Vertical +JST PHD series connector, B28B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +28 +28 +Connector_JST +JST_PHD_B30B-PHDSS_2x15_P2.00mm_Vertical +JST PHD series connector, B30B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +30 +30 +Connector_JST +JST_PHD_B32B-PHDSS_2x16_P2.00mm_Vertical +JST PHD series connector, B32B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +32 +32 +Connector_JST +JST_PHD_B34B-PHDSS_2x17_P2.00mm_Vertical +JST PHD series connector, B34B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +34 +34 +Connector_JST +JST_PHD_S8B-PHDSS_2x04_P2.00mm_Horizontal +JST PHD series connector, S8B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +8 +8 +Connector_JST +JST_PHD_S10B-PHDSS_2x05_P2.00mm_Horizontal +JST PHD series connector, S10B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +10 +10 +Connector_JST +JST_PHD_S12B-PHDSS_2x06_P2.00mm_Horizontal +JST PHD series connector, S12B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +12 +12 +Connector_JST +JST_PHD_S14B-PHDSS_2x07_P2.00mm_Horizontal +JST PHD series connector, S14B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +14 +14 +Connector_JST +JST_PHD_S16B-PHDSS_2x08_P2.00mm_Horizontal +JST PHD series connector, S16B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +16 +16 +Connector_JST +JST_PHD_S18B-PHDSS_2x09_P2.00mm_Horizontal +JST PHD series connector, S18B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +18 +18 +Connector_JST +JST_PHD_S20B-PHDSS_2x10_P2.00mm_Horizontal +JST PHD series connector, S20B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +20 +20 +Connector_JST +JST_PHD_S22B-PHDSS_2x11_P2.00mm_Horizontal +JST PHD series connector, S22B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +22 +22 +Connector_JST +JST_PHD_S24B-PHDSS_2x12_P2.00mm_Horizontal +JST PHD series connector, S24B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +24 +24 +Connector_JST +JST_PHD_S26B-PHDSS_2x13_P2.00mm_Horizontal +JST PHD series connector, S26B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +26 +26 +Connector_JST +JST_PHD_S28B-PHDSS_2x14_P2.00mm_Horizontal +JST PHD series connector, S28B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +28 +28 +Connector_JST +JST_PHD_S30B-PHDSS_2x15_P2.00mm_Horizontal +JST PHD series connector, S30B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +30 +30 +Connector_JST +JST_PHD_S32B-PHDSS_2x16_P2.00mm_Horizontal +JST PHD series connector, S32B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +32 +32 +Connector_JST +JST_PHD_S34B-PHDSS_2x17_P2.00mm_Horizontal +JST PHD series connector, S34B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +34 +34 +Connector_JST +JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical +JST PH series connector, B2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +2 +2 +Connector_JST +JST_PH_B2B-PH-SM4-TB_1x02-1MP_P2.00mm_Vertical +JST PH series connector, B2B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +4 +3 +Connector_JST +JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical +JST PH series connector, B3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +3 +3 +Connector_JST +JST_PH_B3B-PH-SM4-TB_1x03-1MP_P2.00mm_Vertical +JST PH series connector, B3B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +5 +4 +Connector_JST +JST_PH_B4B-PH-K_1x04_P2.00mm_Vertical +JST PH series connector, B4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +4 +4 +Connector_JST +JST_PH_B4B-PH-SM4-TB_1x04-1MP_P2.00mm_Vertical +JST PH series connector, B4B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +6 +5 +Connector_JST +JST_PH_B5B-PH-K_1x05_P2.00mm_Vertical +JST PH series connector, B5B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +5 +5 +Connector_JST +JST_PH_B5B-PH-SM4-TB_1x05-1MP_P2.00mm_Vertical +JST PH series connector, B5B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +7 +6 +Connector_JST +JST_PH_B6B-PH-K_1x06_P2.00mm_Vertical +JST PH series connector, B6B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +6 +6 +Connector_JST +JST_PH_B6B-PH-SM4-TB_1x06-1MP_P2.00mm_Vertical +JST PH series connector, B6B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +8 +7 +Connector_JST +JST_PH_B7B-PH-K_1x07_P2.00mm_Vertical +JST PH series connector, B7B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +7 +7 +Connector_JST +JST_PH_B7B-PH-SM4-TB_1x07-1MP_P2.00mm_Vertical +JST PH series connector, B7B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +9 +8 +Connector_JST +JST_PH_B8B-PH-K_1x08_P2.00mm_Vertical +JST PH series connector, B8B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +8 +8 +Connector_JST +JST_PH_B8B-PH-SM4-TB_1x08-1MP_P2.00mm_Vertical +JST PH series connector, B8B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +10 +9 +Connector_JST +JST_PH_B9B-PH-K_1x09_P2.00mm_Vertical +JST PH series connector, B9B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +9 +9 +Connector_JST +JST_PH_B9B-PH-SM4-TB_1x09-1MP_P2.00mm_Vertical +JST PH series connector, B9B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +11 +10 +Connector_JST +JST_PH_B10B-PH-K_1x10_P2.00mm_Vertical +JST PH series connector, B10B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +10 +10 +Connector_JST +JST_PH_B10B-PH-SM4-TB_1x10-1MP_P2.00mm_Vertical +JST PH series connector, B10B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +12 +11 +Connector_JST +JST_PH_B11B-PH-K_1x11_P2.00mm_Vertical +JST PH series connector, B11B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +11 +11 +Connector_JST +JST_PH_B11B-PH-SM4-TB_1x11-1MP_P2.00mm_Vertical +JST PH series connector, B11B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +13 +12 +Connector_JST +JST_PH_B12B-PH-K_1x12_P2.00mm_Vertical +JST PH series connector, B12B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +12 +12 +Connector_JST +JST_PH_B12B-PH-SM4-TB_1x12-1MP_P2.00mm_Vertical +JST PH series connector, B12B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +14 +13 +Connector_JST +JST_PH_B13B-PH-K_1x13_P2.00mm_Vertical +JST PH series connector, B13B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +13 +13 +Connector_JST +JST_PH_B13B-PH-SM4-TB_1x13-1MP_P2.00mm_Vertical +JST PH series connector, B13B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +15 +14 +Connector_JST +JST_PH_B14B-PH-K_1x14_P2.00mm_Vertical +JST PH series connector, B14B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +14 +14 +Connector_JST +JST_PH_B14B-PH-SM4-TB_1x14-1MP_P2.00mm_Vertical +JST PH series connector, B14B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +16 +15 +Connector_JST +JST_PH_B15B-PH-K_1x15_P2.00mm_Vertical +JST PH series connector, B15B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +15 +15 +Connector_JST +JST_PH_B15B-PH-SM4-TB_1x15-1MP_P2.00mm_Vertical +JST PH series connector, B15B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +17 +16 +Connector_JST +JST_PH_B16B-PH-K_1x16_P2.00mm_Vertical +JST PH series connector, B16B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +16 +16 +Connector_JST +JST_PH_B16B-PH-SM4-TB_1x16-1MP_P2.00mm_Vertical +JST PH series connector, B16B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +18 +17 +Connector_JST +JST_PH_S2B-PH-K_1x02_P2.00mm_Horizontal +JST PH series connector, S2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +2 +2 +Connector_JST +JST_PH_S2B-PH-SM4-TB_1x02-1MP_P2.00mm_Horizontal +JST PH series connector, S2B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +4 +3 +Connector_JST +JST_PH_S3B-PH-K_1x03_P2.00mm_Horizontal +JST PH series connector, S3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +3 +3 +Connector_JST +JST_PH_S3B-PH-SM4-TB_1x03-1MP_P2.00mm_Horizontal +JST PH series connector, S3B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +5 +4 +Connector_JST +JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal +JST PH series connector, S4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +4 +4 +Connector_JST +JST_PH_S4B-PH-SM4-TB_1x04-1MP_P2.00mm_Horizontal +JST PH series connector, S4B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +6 +5 +Connector_JST +JST_PH_S5B-PH-K_1x05_P2.00mm_Horizontal +JST PH series connector, S5B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +5 +5 +Connector_JST +JST_PH_S5B-PH-SM4-TB_1x05-1MP_P2.00mm_Horizontal +JST PH series connector, S5B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +7 +6 +Connector_JST +JST_PH_S6B-PH-K_1x06_P2.00mm_Horizontal +JST PH series connector, S6B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +6 +6 +Connector_JST +JST_PH_S6B-PH-SM4-TB_1x06-1MP_P2.00mm_Horizontal +JST PH series connector, S6B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +8 +7 +Connector_JST +JST_PH_S7B-PH-K_1x07_P2.00mm_Horizontal +JST PH series connector, S7B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +7 +7 +Connector_JST +JST_PH_S7B-PH-SM4-TB_1x07-1MP_P2.00mm_Horizontal +JST PH series connector, S7B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +9 +8 +Connector_JST +JST_PH_S8B-PH-K_1x08_P2.00mm_Horizontal +JST PH series connector, S8B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +8 +8 +Connector_JST +JST_PH_S8B-PH-SM4-TB_1x08-1MP_P2.00mm_Horizontal +JST PH series connector, S8B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +10 +9 +Connector_JST +JST_PH_S9B-PH-K_1x09_P2.00mm_Horizontal +JST PH series connector, S9B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +9 +9 +Connector_JST +JST_PH_S9B-PH-SM4-TB_1x09-1MP_P2.00mm_Horizontal +JST PH series connector, S9B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +11 +10 +Connector_JST +JST_PH_S10B-PH-K_1x10_P2.00mm_Horizontal +JST PH series connector, S10B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +10 +10 +Connector_JST +JST_PH_S10B-PH-SM4-TB_1x10-1MP_P2.00mm_Horizontal +JST PH series connector, S10B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +12 +11 +Connector_JST +JST_PH_S11B-PH-K_1x11_P2.00mm_Horizontal +JST PH series connector, S11B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +11 +11 +Connector_JST +JST_PH_S11B-PH-SM4-TB_1x11-1MP_P2.00mm_Horizontal +JST PH series connector, S11B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +13 +12 +Connector_JST +JST_PH_S12B-PH-K_1x12_P2.00mm_Horizontal +JST PH series connector, S12B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +12 +12 +Connector_JST +JST_PH_S12B-PH-SM4-TB_1x12-1MP_P2.00mm_Horizontal +JST PH series connector, S12B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +14 +13 +Connector_JST +JST_PH_S13B-PH-K_1x13_P2.00mm_Horizontal +JST PH series connector, S13B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +13 +13 +Connector_JST +JST_PH_S13B-PH-SM4-TB_1x13-1MP_P2.00mm_Horizontal +JST PH series connector, S13B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +15 +14 +Connector_JST +JST_PH_S14B-PH-K_1x14_P2.00mm_Horizontal +JST PH series connector, S14B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +14 +14 +Connector_JST +JST_PH_S14B-PH-SM4-TB_1x14-1MP_P2.00mm_Horizontal +JST PH series connector, S14B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +16 +15 +Connector_JST +JST_PH_S15B-PH-K_1x15_P2.00mm_Horizontal +JST PH series connector, S15B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +15 +15 +Connector_JST +JST_PH_S15B-PH-SM4-TB_1x15-1MP_P2.00mm_Horizontal +JST PH series connector, S15B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +17 +16 +Connector_JST +JST_PH_S16B-PH-K_1x16_P2.00mm_Horizontal +JST PH series connector, S16B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +16 +16 +Connector_JST +JST_PUD_B08B-PUDSS_2x04_P2.00mm_Vertical +JST PUD series connector, B08B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +8 +8 +Connector_JST +JST_PUD_B10B-PUDSS_2x05_P2.00mm_Vertical +JST PUD series connector, B10B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +10 +10 +Connector_JST +JST_PUD_B12B-PUDSS_2x06_P2.00mm_Vertical +JST PUD series connector, B12B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +12 +12 +Connector_JST +JST_PUD_B14B-PUDSS_2x07_P2.00mm_Vertical +JST PUD series connector, B14B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +14 +14 +Connector_JST +JST_PUD_B16B-PUDSS_2x08_P2.00mm_Vertical +JST PUD series connector, B16B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +16 +16 +Connector_JST +JST_PUD_B18B-PUDSS_2x09_P2.00mm_Vertical +JST PUD series connector, B18B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +18 +18 +Connector_JST +JST_PUD_B20B-PUDSS_2x10_P2.00mm_Vertical +JST PUD series connector, B20B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +20 +20 +Connector_JST +JST_PUD_B22B-PUDSS_2x11_P2.00mm_Vertical +JST PUD series connector, B22B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +22 +22 +Connector_JST +JST_PUD_B24B-PUDSS_2x12_P2.00mm_Vertical +JST PUD series connector, B24B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +24 +24 +Connector_JST +JST_PUD_B26B-PUDSS_2x13_P2.00mm_Vertical +JST PUD series connector, B26B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +26 +26 +Connector_JST +JST_PUD_B28B-PUDSS_2x14_P2.00mm_Vertical +JST PUD series connector, B28B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +28 +28 +Connector_JST +JST_PUD_B30B-PUDSS_2x15_P2.00mm_Vertical +JST PUD series connector, B30B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +30 +30 +Connector_JST +JST_PUD_B32B-PUDSS_2x16_P2.00mm_Vertical +JST PUD series connector, B32B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +32 +32 +Connector_JST +JST_PUD_B34B-PUDSS_2x17_P2.00mm_Vertical +JST PUD series connector, B34B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +34 +34 +Connector_JST +JST_PUD_B36B-PUDSS_2x18_P2.00mm_Vertical +JST PUD series connector, B36B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +36 +36 +Connector_JST +JST_PUD_B38B-PUDSS_2x19_P2.00mm_Vertical +JST PUD series connector, B38B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +38 +38 +Connector_JST +JST_PUD_B40B-PUDSS_2x20_P2.00mm_Vertical +JST PUD series connector, B40B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +40 +40 +Connector_JST +JST_PUD_S08B-PUDSS-1_2x04_P2.00mm_Horizontal +JST PUD series connector, S08B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +8 +8 +Connector_JST +JST_PUD_S10B-PUDSS-1_2x05_P2.00mm_Horizontal +JST PUD series connector, S10B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +10 +10 +Connector_JST +JST_PUD_S12B-PUDSS-1_2x06_P2.00mm_Horizontal +JST PUD series connector, S12B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +12 +12 +Connector_JST +JST_PUD_S14B-PUDSS-1_2x07_P2.00mm_Horizontal +JST PUD series connector, S14B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +14 +14 +Connector_JST +JST_PUD_S16B-PUDSS-1_2x08_P2.00mm_Horizontal +JST PUD series connector, S16B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +16 +16 +Connector_JST +JST_PUD_S18B-PUDSS-1_2x09_P2.00mm_Horizontal +JST PUD series connector, S18B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +18 +18 +Connector_JST +JST_PUD_S20B-PUDSS-1_2x10_P2.00mm_Horizontal +JST PUD series connector, S20B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +20 +20 +Connector_JST +JST_PUD_S22B-PUDSS-1_2x11_P2.00mm_Horizontal +JST PUD series connector, S22B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +22 +22 +Connector_JST +JST_PUD_S24B-PUDSS-1_2x12_P2.00mm_Horizontal +JST PUD series connector, S24B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +24 +24 +Connector_JST +JST_PUD_S26B-PUDSS-1_2x13_P2.00mm_Horizontal +JST PUD series connector, S26B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +26 +26 +Connector_JST +JST_PUD_S28B-PUDSS-1_2x14_P2.00mm_Horizontal +JST PUD series connector, S28B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +28 +28 +Connector_JST +JST_PUD_S30B-PUDSS-1_2x15_P2.00mm_Horizontal +JST PUD series connector, S30B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +30 +30 +Connector_JST +JST_PUD_S32B-PUDSS-1_2x16_P2.00mm_Horizontal +JST PUD series connector, S32B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +32 +32 +Connector_JST +JST_PUD_S34B-PUDSS-1_2x17_P2.00mm_Horizontal +JST PUD series connector, S34B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +34 +34 +Connector_JST +JST_PUD_S36B-PUDSS-1_2x18_P2.00mm_Horizontal +JST PUD series connector, S36B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +36 +36 +Connector_JST +JST_PUD_S38B-PUDSS-1_2x19_P2.00mm_Horizontal +JST PUD series connector, S38B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +38 +38 +Connector_JST +JST_PUD_S40B-PUDSS-1_2x20_P2.00mm_Horizontal +JST PUD series connector, S40B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +40 +40 +Connector_JST +JST_SFH_SM02B-SFHRS-TF_1x02-1MP_P4.20mm_Horizontal +JST SFH series connector, SM02B-SFHRS-TF (http://www.jst-mfg.com/product/pdf/eng/eSFH.pdf), generated with kicad-footprint-generator +connector JST SFH horizontal +0 +4 +3 +Connector_JST +JST_SHL_SM02B-SHLS-TF_1x02-1MP_P1.00mm_Horizontal +JST SHL series connector, SM02B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +4 +3 +Connector_JST +JST_SHL_SM05B-SHLS-TF_1x05-1MP_P1.00mm_Horizontal +JST SHL series connector, SM05B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +7 +6 +Connector_JST +JST_SHL_SM06B-SHLS-TF_1x06-1MP_P1.00mm_Horizontal +JST SHL series connector, SM06B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +8 +7 +Connector_JST +JST_SHL_SM07B-SHLS-TF_1x07-1MP_P1.00mm_Horizontal +JST SHL series connector, SM07B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +9 +8 +Connector_JST +JST_SHL_SM08B-SHLS-TF_1x08-1MP_P1.00mm_Horizontal +JST SHL series connector, SM08B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +10 +9 +Connector_JST +JST_SHL_SM10B-SHLS-TF_1x10-1MP_P1.00mm_Horizontal +JST SHL series connector, SM10B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +12 +11 +Connector_JST +JST_SHL_SM11B-SHLS-TF_1x11-1MP_P1.00mm_Horizontal +JST SHL series connector, SM11B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +13 +12 +Connector_JST +JST_SHL_SM12B-SHLS-TF_1x12-1MP_P1.00mm_Horizontal +JST SHL series connector, SM12B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +14 +13 +Connector_JST +JST_SHL_SM14B-SHLS-TF_1x14-1MP_P1.00mm_Horizontal +JST SHL series connector, SM14B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +16 +15 +Connector_JST +JST_SHL_SM16B-SHLS-TF_1x16-1MP_P1.00mm_Horizontal +JST SHL series connector, SM16B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +18 +17 +Connector_JST +JST_SHL_SM20B-SHLS-TF_1x20-1MP_P1.00mm_Horizontal +JST SHL series connector, SM20B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +22 +21 +Connector_JST +JST_SHL_SM22B-SHLS-TF_1x22-1MP_P1.00mm_Horizontal +JST SHL series connector, SM22B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +24 +23 +Connector_JST +JST_SHL_SM26B-SHLS-TF_1x26-1MP_P1.00mm_Horizontal +JST SHL series connector, SM26B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +28 +27 +Connector_JST +JST_SHL_SM30B-SHLS-TF_1x30-1MP_P1.00mm_Horizontal +JST SHL series connector, SM30B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +32 +31 +Connector_JST +JST_SH_BM02B-SRSS-TB_1x02-1MP_P1.00mm_Vertical +JST SH series connector, BM02B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +4 +3 +Connector_JST +JST_SH_BM03B-SRSS-TB_1x03-1MP_P1.00mm_Vertical +JST SH series connector, BM03B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +5 +4 +Connector_JST +JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical +JST SH series connector, BM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +6 +5 +Connector_JST +JST_SH_BM05B-SRSS-TB_1x05-1MP_P1.00mm_Vertical +JST SH series connector, BM05B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +7 +6 +Connector_JST +JST_SH_BM06B-SRSS-TB_1x06-1MP_P1.00mm_Vertical +JST SH series connector, BM06B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +8 +7 +Connector_JST +JST_SH_BM07B-SRSS-TB_1x07-1MP_P1.00mm_Vertical +JST SH series connector, BM07B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +9 +8 +Connector_JST +JST_SH_BM08B-SRSS-TB_1x08-1MP_P1.00mm_Vertical +JST SH series connector, BM08B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +10 +9 +Connector_JST +JST_SH_BM09B-SRSS-TB_1x09-1MP_P1.00mm_Vertical +JST SH series connector, BM09B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +11 +10 +Connector_JST +JST_SH_BM10B-SRSS-TB_1x10-1MP_P1.00mm_Vertical +JST SH series connector, BM10B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +12 +11 +Connector_JST +JST_SH_BM11B-SRSS-TB_1x11-1MP_P1.00mm_Vertical +JST SH series connector, BM11B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +13 +12 +Connector_JST +JST_SH_BM12B-SRSS-TB_1x12-1MP_P1.00mm_Vertical +JST SH series connector, BM12B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +14 +13 +Connector_JST +JST_SH_BM13B-SRSS-TB_1x13-1MP_P1.00mm_Vertical +JST SH series connector, BM13B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +15 +14 +Connector_JST +JST_SH_BM14B-SRSS-TB_1x14-1MP_P1.00mm_Vertical +JST SH series connector, BM14B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +16 +15 +Connector_JST +JST_SH_BM15B-SRSS-TB_1x15-1MP_P1.00mm_Vertical +JST SH series connector, BM15B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +17 +16 +Connector_JST +JST_SH_SM02B-SRSS-TB_1x02-1MP_P1.00mm_Horizontal +JST SH series connector, SM02B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +4 +3 +Connector_JST +JST_SH_SM03B-SRSS-TB_1x03-1MP_P1.00mm_Horizontal +JST SH series connector, SM03B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +5 +4 +Connector_JST +JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal +JST SH series connector, SM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +6 +5 +Connector_JST +JST_SH_SM05B-SRSS-TB_1x05-1MP_P1.00mm_Horizontal +JST SH series connector, SM05B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +7 +6 +Connector_JST +JST_SH_SM06B-SRSS-TB_1x06-1MP_P1.00mm_Horizontal +JST SH series connector, SM06B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +8 +7 +Connector_JST +JST_SH_SM07B-SRSS-TB_1x07-1MP_P1.00mm_Horizontal +JST SH series connector, SM07B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +9 +8 +Connector_JST +JST_SH_SM08B-SRSS-TB_1x08-1MP_P1.00mm_Horizontal +JST SH series connector, SM08B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +10 +9 +Connector_JST +JST_SH_SM09B-SRSS-TB_1x09-1MP_P1.00mm_Horizontal +JST SH series connector, SM09B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +11 +10 +Connector_JST +JST_SH_SM10B-SRSS-TB_1x10-1MP_P1.00mm_Horizontal +JST SH series connector, SM10B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +12 +11 +Connector_JST +JST_SH_SM11B-SRSS-TB_1x11-1MP_P1.00mm_Horizontal +JST SH series connector, SM11B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +13 +12 +Connector_JST +JST_SH_SM12B-SRSS-TB_1x12-1MP_P1.00mm_Horizontal +JST SH series connector, SM12B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +14 +13 +Connector_JST +JST_SH_SM13B-SRSS-TB_1x13-1MP_P1.00mm_Horizontal +JST SH series connector, SM13B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +15 +14 +Connector_JST +JST_SH_SM14B-SRSS-TB_1x14-1MP_P1.00mm_Horizontal +JST SH series connector, SM14B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +16 +15 +Connector_JST +JST_SH_SM15B-SRSS-TB_1x15-1MP_P1.00mm_Horizontal +JST SH series connector, SM15B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +17 +16 +Connector_JST +JST_SH_SM20B-SRSS-TB_1x20-1MP_P1.00mm_Horizontal +JST SH series connector, SM20B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +22 +21 +Connector_JST +JST_SUR_BM02B-SURS-TF_1x02-1MP_P0.80mm_Vertical +JST SUR series connector, BM02B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +4 +3 +Connector_JST +JST_SUR_BM03B-SURS-TF_1x03-1MP_P0.80mm_Vertical +JST SUR series connector, BM03B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +5 +4 +Connector_JST +JST_SUR_BM04B-SURS-TF_1x04-1MP_P0.80mm_Vertical +JST SUR series connector, BM04B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +6 +5 +Connector_JST +JST_SUR_BM05B-SURS-TF_1x05-1MP_P0.80mm_Vertical +JST SUR series connector, BM05B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +7 +6 +Connector_JST +JST_SUR_BM06B-SURS-TF_1x06-1MP_P0.80mm_Vertical +JST SUR series connector, BM06B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +8 +7 +Connector_JST +JST_SUR_BM08B-SURS-TF_1x08-1MP_P0.80mm_Vertical +JST SUR series connector, BM08B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +10 +9 +Connector_JST +JST_SUR_BM10B-SURS-TF_1x10-1MP_P0.80mm_Vertical +JST SUR series connector, BM10B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +12 +11 +Connector_JST +JST_SUR_BM12B-SURS-TF_1x12-1MP_P0.80mm_Vertical +JST SUR series connector, BM12B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +14 +13 +Connector_JST +JST_SUR_BM14B-SURS-TF_1x14-1MP_P0.80mm_Vertical +JST SUR series connector, BM14B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +16 +15 +Connector_JST +JST_SUR_BM15B-SURS-TF_1x15-1MP_P0.80mm_Vertical +JST SUR series connector, BM15B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +17 +16 +Connector_JST +JST_SUR_BM16B-SURS-TF_1x16-1MP_P0.80mm_Vertical +JST SUR series connector, BM16B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +18 +17 +Connector_JST +JST_SUR_BM17B-SURS-TF_1x17-1MP_P0.80mm_Vertical +JST SUR series connector, BM17B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +19 +18 +Connector_JST +JST_SUR_BM20B-SURS-TF_1x20-1MP_P0.80mm_Vertical +JST SUR series connector, BM20B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +22 +21 +Connector_JST +JST_SUR_SM02B-SURS-TF_1x02-1MP_P0.80mm_Horizontal +JST SUR series connector, SM02B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +4 +3 +Connector_JST +JST_SUR_SM03B-SURS-TF_1x03-1MP_P0.80mm_Horizontal +JST SUR series connector, SM03B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +5 +4 +Connector_JST +JST_SUR_SM04B-SURS-TF_1x04-1MP_P0.80mm_Horizontal +JST SUR series connector, SM04B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +6 +5 +Connector_JST +JST_SUR_SM05B-SURS-TF_1x05-1MP_P0.80mm_Horizontal +JST SUR series connector, SM05B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +7 +6 +Connector_JST +JST_SUR_SM06B-SURS-TF_1x06-1MP_P0.80mm_Horizontal +JST SUR series connector, SM06B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +8 +7 +Connector_JST +JST_SUR_SM08B-SURS-TF_1x08-1MP_P0.80mm_Horizontal +JST SUR series connector, SM08B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +10 +9 +Connector_JST +JST_SUR_SM10B-SURS-TF_1x10-1MP_P0.80mm_Horizontal +JST SUR series connector, SM10B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +12 +11 +Connector_JST +JST_SUR_SM12B-SURS-TF_1x12-1MP_P0.80mm_Horizontal +JST SUR series connector, SM12B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +14 +13 +Connector_JST +JST_SUR_SM14B-SURS-TF_1x14-1MP_P0.80mm_Horizontal +JST SUR series connector, SM14B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +16 +15 +Connector_JST +JST_SUR_SM15B-SURS-TF_1x15-1MP_P0.80mm_Horizontal +JST SUR series connector, SM15B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +17 +16 +Connector_JST +JST_SUR_SM16B-SURS-TF_1x16-1MP_P0.80mm_Horizontal +JST SUR series connector, SM16B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +18 +17 +Connector_JST +JST_SUR_SM17B-SURS-TF_1x17-1MP_P0.80mm_Horizontal +JST SUR series connector, SM17B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +19 +18 +Connector_JST +JST_SUR_SM20B-SURS-TF_1x20-1MP_P0.80mm_Horizontal +JST SUR series connector, SM20B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +22 +21 +Connector_JST +JST_SUR_SM22B-SURS-TF_1x22-1MP_P0.80mm_Horizontal +JST SUR series connector, SM22B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +24 +23 +Connector_JST +JST_VH_B2P-VH-B_1x02_P3.96mm_Vertical +JST VH PBT series connector, B2P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +2 +2 +Connector_JST +JST_VH_B2P-VH-FB-B_1x02_P3.96mm_Vertical +JST VH series connector, B2P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +2 +2 +Connector_JST +JST_VH_B2P-VH_1x02_P3.96mm_Vertical +JST VH series connector, B2P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +2 +2 +Connector_JST +JST_VH_B2P3-VH_1x02_P7.92mm_Vertical +JST VH series connector, B2P3-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +2 +2 +Connector_JST +JST_VH_B2PS-VH_1x02_P3.96mm_Horizontal +JST VH series connector, B2PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +2 +2 +Connector_JST +JST_VH_B3P-VH-B_1x03_P3.96mm_Vertical +JST VH PBT series connector, B3P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +3 +3 +Connector_JST +JST_VH_B3P-VH-FB-B_1x03_P3.96mm_Vertical +JST VH series connector, B3P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +3 +3 +Connector_JST +JST_VH_B3P-VH_1x03_P3.96mm_Vertical +JST VH series connector, B3P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +3 +3 +Connector_JST +JST_VH_B3PS-VH_1x03_P3.96mm_Horizontal +JST VH series connector, B3PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +3 +3 +Connector_JST +JST_VH_B4P-VH-B_1x04_P3.96mm_Vertical +JST VH PBT series connector, B4P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +4 +4 +Connector_JST +JST_VH_B4P-VH-FB-B_1x04_P3.96mm_Vertical +JST VH series connector, B4P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +4 +4 +Connector_JST +JST_VH_B4P-VH_1x04_P3.96mm_Vertical +JST VH series connector, B4P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +4 +4 +Connector_JST +JST_VH_B4PS-VH_1x04_P3.96mm_Horizontal +JST VH series connector, B4PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +4 +4 +Connector_JST +JST_VH_B5P-VH-B_1x05_P3.96mm_Vertical +JST VH PBT series connector, B5P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +5 +5 +Connector_JST +JST_VH_B5P-VH-FB-B_1x05_P3.96mm_Vertical +JST VH series connector, B5P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +5 +5 +Connector_JST +JST_VH_B5P-VH_1x05_P3.96mm_Vertical +JST VH series connector, B5P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +5 +5 +Connector_JST +JST_VH_B5PS-VH_1x05_P3.96mm_Horizontal +JST VH series connector, B5PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +5 +5 +Connector_JST +JST_VH_B6P-VH-B_1x06_P3.96mm_Vertical +JST VH PBT series connector, B6P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +6 +6 +Connector_JST +JST_VH_B6P-VH-FB-B_1x06_P3.96mm_Vertical +JST VH series connector, B6P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +6 +6 +Connector_JST +JST_VH_B6P-VH_1x06_P3.96mm_Vertical +JST VH series connector, B6P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +6 +6 +Connector_JST +JST_VH_B6PS-VH_1x06_P3.96mm_Horizontal +JST VH series connector, B6PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +6 +6 +Connector_JST +JST_VH_B7P-VH-B_1x07_P3.96mm_Vertical +JST VH PBT series connector, B7P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +7 +7 +Connector_JST +JST_VH_B7P-VH-FB-B_1x07_P3.96mm_Vertical +JST VH series connector, B7P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +7 +7 +Connector_JST +JST_VH_B7P-VH_1x07_P3.96mm_Vertical +JST VH series connector, B7P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +7 +7 +Connector_JST +JST_VH_B7PS-VH_1x07_P3.96mm_Horizontal +JST VH series connector, B7PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +7 +7 +Connector_JST +JST_VH_B8P-VH-B_1x08_P3.96mm_Vertical +JST VH PBT series connector, B8P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +8 +8 +Connector_JST +JST_VH_B8P-VH-FB-B_1x08_P3.96mm_Vertical +JST VH series connector, B8P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +8 +8 +Connector_JST +JST_VH_B8P-VH_1x08_P3.96mm_Vertical +JST VH series connector, B8P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +8 +8 +Connector_JST +JST_VH_B8PS-VH_1x08_P3.96mm_Horizontal +JST VH series connector, B8PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +8 +8 +Connector_JST +JST_VH_B9P-VH-B_1x09_P3.96mm_Vertical +JST VH PBT series connector, B9P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +9 +9 +Connector_JST +JST_VH_B9P-VH-FB-B_1x09_P3.96mm_Vertical +JST VH series connector, B9P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +9 +9 +Connector_JST +JST_VH_B9P-VH_1x09_P3.96mm_Vertical +JST VH series connector, B9P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +9 +9 +Connector_JST +JST_VH_B9PS-VH_1x09_P3.96mm_Horizontal +JST VH series connector, B9PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +9 +9 +Connector_JST +JST_VH_B10P-VH-B_1x10_P3.96mm_Vertical +JST VH PBT series connector, B10P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +10 +10 +Connector_JST +JST_VH_B10P-VH-FB-B_1x10_P3.96mm_Vertical +JST VH series connector, B10P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +10 +10 +Connector_JST +JST_VH_B10P-VH_1x10_P3.96mm_Vertical +JST VH series connector, B10P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +10 +10 +Connector_JST +JST_VH_B10PS-VH_1x10_P3.96mm_Horizontal +JST VH series connector, B10PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +10 +10 +Connector_JST +JST_VH_B11P-VH-B_1x11_P3.96mm_Vertical +JST VH PBT series connector, B11P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +11 +11 +Connector_JST +JST_VH_S2P-VH_1x02_P3.96mm_Horizontal +JST VH series connector, S2P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +2 +2 +Connector_JST +JST_VH_S3P-VH_1x03_P3.96mm_Horizontal +JST VH series connector, S3P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +3 +3 +Connector_JST +JST_VH_S4P-VH_1x04_P3.96mm_Horizontal +JST VH series connector, S4P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +4 +4 +Connector_JST +JST_VH_S5P-VH_1x05_P3.96mm_Horizontal +JST VH series connector, S5P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +5 +5 +Connector_JST +JST_VH_S6P-VH_1x06_P3.96mm_Horizontal +JST VH series connector, S6P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +6 +6 +Connector_JST +JST_VH_S7P-VH_1x07_P3.96mm_Horizontal +JST VH series connector, S7P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +7 +7 +Connector_JST +JST_XAG_SM05B-XAGKS-BN-TB_1x05-1MP_P2.50mm_Horizontal +JST XAG series connector, SM05B-XAGKS-BN-TB (http://www.jst-mfg.com/product/pdf/eng/eXAG.pdf), generated with kicad-footprint-generator +connector JST XAG horizontal +0 +7 +6 +Connector_JST +JST_XA_B02B-XASK-1-A_1x02_P2.50mm_Vertical +JST XA series connector, B02B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +2 +2 +Connector_JST +JST_XA_B02B-XASK-1_1x02_P2.50mm_Vertical +JST XA series connector, B02B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +2 +2 +Connector_JST +JST_XA_B03B-XASK-1-A_1x03_P2.50mm_Vertical +JST XA series connector, B03B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +3 +3 +Connector_JST +JST_XA_B03B-XASK-1_1x03_P2.50mm_Vertical +JST XA series connector, B03B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +3 +3 +Connector_JST +JST_XA_B04B-XASK-1-A_1x04_P2.50mm_Vertical +JST XA series connector, B04B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +4 +4 +Connector_JST +JST_XA_B04B-XASK-1_1x04_P2.50mm_Vertical +JST XA series connector, B04B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +4 +4 +Connector_JST +JST_XA_B05B-XASK-1-A_1x05_P2.50mm_Vertical +JST XA series connector, B05B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +5 +5 +Connector_JST +JST_XA_B05B-XASK-1_1x05_P2.50mm_Vertical +JST XA series connector, B05B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +5 +5 +Connector_JST +JST_XA_B06B-XASK-1-A_1x06_P2.50mm_Vertical +JST XA series connector, B06B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +6 +6 +Connector_JST +JST_XA_B06B-XASK-1_1x06_P2.50mm_Vertical +JST XA series connector, B06B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +6 +6 +Connector_JST +JST_XA_B07B-XASK-1-A_1x07_P2.50mm_Vertical +JST XA series connector, B07B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +7 +7 +Connector_JST +JST_XA_B07B-XASK-1_1x07_P2.50mm_Vertical +JST XA series connector, B07B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +7 +7 +Connector_JST +JST_XA_B08B-XASK-1-A_1x08_P2.50mm_Vertical +JST XA series connector, B08B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +8 +8 +Connector_JST +JST_XA_B08B-XASK-1_1x08_P2.50mm_Vertical +JST XA series connector, B08B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +8 +8 +Connector_JST +JST_XA_B09B-XASK-1-A_1x09_P2.50mm_Vertical +JST XA series connector, B09B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +9 +9 +Connector_JST +JST_XA_B09B-XASK-1_1x09_P2.50mm_Vertical +JST XA series connector, B09B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +9 +9 +Connector_JST +JST_XA_B10B-XASK-1-A_1x10_P2.50mm_Vertical +JST XA series connector, B10B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +10 +10 +Connector_JST +JST_XA_B10B-XASK-1_1x10_P2.50mm_Vertical +JST XA series connector, B10B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +10 +10 +Connector_JST +JST_XA_B11B-XASK-1-A_1x11_P2.50mm_Vertical +JST XA series connector, B11B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +11 +11 +Connector_JST +JST_XA_B11B-XASK-1_1x11_P2.50mm_Vertical +JST XA series connector, B11B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +11 +11 +Connector_JST +JST_XA_B12B-XASK-1-A_1x12_P2.50mm_Vertical +JST XA series connector, B12B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +12 +12 +Connector_JST +JST_XA_B12B-XASK-1_1x12_P2.50mm_Vertical +JST XA series connector, B12B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +12 +12 +Connector_JST +JST_XA_B13B-XASK-1-A_1x13_P2.50mm_Vertical +JST XA series connector, B13B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +13 +13 +Connector_JST +JST_XA_B13B-XASK-1_1x13_P2.50mm_Vertical +JST XA series connector, B13B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +13 +13 +Connector_JST +JST_XA_B14B-XASK-1-A_1x14_P2.50mm_Vertical +JST XA series connector, B14B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +14 +14 +Connector_JST +JST_XA_B14B-XASK-1_1x14_P2.50mm_Vertical +JST XA series connector, B14B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +14 +14 +Connector_JST +JST_XA_B15B-XASK-1-A_1x15_P2.50mm_Vertical +JST XA series connector, B15B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +15 +15 +Connector_JST +JST_XA_B15B-XASK-1_1x15_P2.50mm_Vertical +JST XA series connector, B15B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +15 +15 +Connector_JST +JST_XA_B18B-XASK-1_1x18_P2.50mm_Vertical +JST XA series connector, B18B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +18 +18 +Connector_JST +JST_XA_B20B-XASK-1-A_1x20_P2.50mm_Vertical +JST XA series connector, B20B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +20 +20 +Connector_JST +JST_XA_B20B-XASK-1_1x20_P2.50mm_Vertical +JST XA series connector, B20B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +20 +20 +Connector_JST +JST_XA_S02B-XASK-1N-BN_1x02_P2.50mm_Horizontal +JST XA series connector, S02B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +2 +2 +Connector_JST +JST_XA_S02B-XASK-1_1x02_P2.50mm_Horizontal +JST XA series connector, S02B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +2 +2 +Connector_JST +JST_XA_S03B-XASK-1N-BN_1x03_P2.50mm_Horizontal +JST XA series connector, S03B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +3 +3 +Connector_JST +JST_XA_S03B-XASK-1_1x03_P2.50mm_Horizontal +JST XA series connector, S03B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +3 +3 +Connector_JST +JST_XA_S04B-XASK-1N-BN_1x04_P2.50mm_Horizontal +JST XA series connector, S04B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +4 +4 +Connector_JST +JST_XA_S04B-XASK-1_1x04_P2.50mm_Horizontal +JST XA series connector, S04B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +4 +4 +Connector_JST +JST_XA_S05B-XASK-1N-BN_1x05_P2.50mm_Horizontal +JST XA series connector, S05B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +5 +5 +Connector_JST +JST_XA_S05B-XASK-1_1x05_P2.50mm_Horizontal +JST XA series connector, S05B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +5 +5 +Connector_JST +JST_XA_S06B-XASK-1N-BN_1x06_P2.50mm_Horizontal +JST XA series connector, S06B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +6 +6 +Connector_JST +JST_XA_S06B-XASK-1_1x06_P2.50mm_Horizontal +JST XA series connector, S06B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +6 +6 +Connector_JST +JST_XA_S07B-XASK-1N-BN_1x07_P2.50mm_Horizontal +JST XA series connector, S07B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +7 +7 +Connector_JST +JST_XA_S07B-XASK-1_1x07_P2.50mm_Horizontal +JST XA series connector, S07B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +7 +7 +Connector_JST +JST_XA_S08B-XASK-1N-BN_1x08_P2.50mm_Horizontal +JST XA series connector, S08B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +8 +8 +Connector_JST +JST_XA_S08B-XASK-1_1x08_P2.50mm_Horizontal +JST XA series connector, S08B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +8 +8 +Connector_JST +JST_XA_S09B-XASK-1N-BN_1x09_P2.50mm_Horizontal +JST XA series connector, S09B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +9 +9 +Connector_JST +JST_XA_S09B-XASK-1_1x09_P2.50mm_Horizontal +JST XA series connector, S09B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +9 +9 +Connector_JST +JST_XA_S10B-XASK-1N-BN_1x10_P2.50mm_Horizontal +JST XA series connector, S10B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +10 +10 +Connector_JST +JST_XA_S10B-XASK-1_1x10_P2.50mm_Horizontal +JST XA series connector, S10B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +10 +10 +Connector_JST +JST_XA_S11B-XASK-1N-BN_1x11_P2.50mm_Horizontal +JST XA series connector, S11B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +11 +11 +Connector_JST +JST_XA_S11B-XASK-1_1x11_P2.50mm_Horizontal +JST XA series connector, S11B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +11 +11 +Connector_JST +JST_XA_S12B-XASK-1N-BN_1x12_P2.50mm_Horizontal +JST XA series connector, S12B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +12 +12 +Connector_JST +JST_XA_S12B-XASK-1_1x12_P2.50mm_Horizontal +JST XA series connector, S12B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +12 +12 +Connector_JST +JST_XA_S13B-XASK-1N-BN_1x13_P2.50mm_Horizontal +JST XA series connector, S13B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +13 +13 +Connector_JST +JST_XA_S13B-XASK-1_1x13_P2.50mm_Horizontal +JST XA series connector, S13B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +13 +13 +Connector_JST +JST_XA_S14B-XASK-1N-BN_1x14_P2.50mm_Horizontal +JST XA series connector, S14B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +14 +14 +Connector_JST +JST_XA_S14B-XASK-1_1x14_P2.50mm_Horizontal +JST XA series connector, S14B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +14 +14 +Connector_JST +JST_XH_B1B-XH-AM_1x01_P2.50mm_Vertical +JST XH series connector, B1B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +1 +1 +Connector_JST +JST_XH_B2B-XH-AM_1x02_P2.50mm_Vertical +JST XH series connector, B2B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +2 +2 +Connector_JST +JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical +JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +2 +2 +Connector_JST +JST_XH_B3B-XH-AM_1x03_P2.50mm_Vertical +JST XH series connector, B3B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +3 +3 +Connector_JST +JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical +JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +3 +3 +Connector_JST +JST_XH_B4B-XH-AM_1x04_P2.50mm_Vertical +JST XH series connector, B4B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +4 +4 +Connector_JST +JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical +JST XH series connector, B4B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +4 +4 +Connector_JST +JST_XH_B5B-XH-AM_1x05_P2.50mm_Vertical +JST XH series connector, B5B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +5 +5 +Connector_JST +JST_XH_B5B-XH-A_1x05_P2.50mm_Vertical +JST XH series connector, B5B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +5 +5 +Connector_JST +JST_XH_B6B-XH-AM_1x06_P2.50mm_Vertical +JST XH series connector, B6B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +6 +6 +Connector_JST +JST_XH_B6B-XH-A_1x06_P2.50mm_Vertical +JST XH series connector, B6B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +6 +6 +Connector_JST +JST_XH_B7B-XH-AM_1x07_P2.50mm_Vertical +JST XH series connector, B7B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +7 +7 +Connector_JST +JST_XH_B7B-XH-A_1x07_P2.50mm_Vertical +JST XH series connector, B7B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +7 +7 +Connector_JST +JST_XH_B8B-XH-AM_1x08_P2.50mm_Vertical +JST XH series connector, B8B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +8 +8 +Connector_JST +JST_XH_B8B-XH-A_1x08_P2.50mm_Vertical +JST XH series connector, B8B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +8 +8 +Connector_JST +JST_XH_B9B-XH-AM_1x09_P2.50mm_Vertical +JST XH series connector, B9B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +9 +9 +Connector_JST +JST_XH_B9B-XH-A_1x09_P2.50mm_Vertical +JST XH series connector, B9B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +9 +9 +Connector_JST +JST_XH_B10B-XH-AM_1x10_P2.50mm_Vertical +JST XH series connector, B10B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry boss +0 +10 +10 +Connector_JST +JST_XH_B10B-XH-A_1x10_P2.50mm_Vertical +JST XH series connector, B10B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +10 +10 +Connector_JST +JST_XH_B11B-XH-A_1x11_P2.50mm_Vertical +JST XH series connector, B11B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +11 +11 +Connector_JST +JST_XH_B12B-XH-AM_1x12_P2.50mm_Vertical +JST XH series connector, B12B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry boss +0 +12 +12 +Connector_JST +JST_XH_B12B-XH-A_1x12_P2.50mm_Vertical +JST XH series connector, B12B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +12 +12 +Connector_JST +JST_XH_B13B-XH-A_1x13_P2.50mm_Vertical +JST XH series connector, B13B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +13 +13 +Connector_JST +JST_XH_B14B-XH-A_1x14_P2.50mm_Vertical +JST XH series connector, B14B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +14 +14 +Connector_JST +JST_XH_B15B-XH-A_1x15_P2.50mm_Vertical +JST XH series connector, B15B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +15 +15 +Connector_JST +JST_XH_B16B-XH-A_1x16_P2.50mm_Vertical +JST XH series connector, B16B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +16 +16 +Connector_JST +JST_XH_B20B-XH-A_1x20_P2.50mm_Vertical +JST XH series connector, B20B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +20 +20 +Connector_JST +JST_XH_S2B-XH-A-1_1x02_P2.50mm_Horizontal +JST XH series connector, S2B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +2 +2 +Connector_JST +JST_XH_S2B-XH-A_1x02_P2.50mm_Horizontal +JST XH series connector, S2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +2 +2 +Connector_JST +JST_XH_S3B-XH-A-1_1x03_P2.50mm_Horizontal +JST XH series connector, S3B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +3 +3 +Connector_JST +JST_XH_S3B-XH-A_1x03_P2.50mm_Horizontal +JST XH series connector, S3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +3 +3 +Connector_JST +JST_XH_S4B-XH-A-1_1x04_P2.50mm_Horizontal +JST XH series connector, S4B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +4 +4 +Connector_JST +JST_XH_S4B-XH-A_1x04_P2.50mm_Horizontal +JST XH series connector, S4B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +4 +4 +Connector_JST +JST_XH_S5B-XH-A-1_1x05_P2.50mm_Horizontal +JST XH series connector, S5B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +5 +5 +Connector_JST +JST_XH_S5B-XH-A_1x05_P2.50mm_Horizontal +JST XH series connector, S5B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +5 +5 +Connector_JST +JST_XH_S6B-XH-A-1_1x06_P2.50mm_Horizontal +JST XH series connector, S6B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +6 +6 +Connector_JST +JST_XH_S6B-XH-A_1x06_P2.50mm_Horizontal +JST XH series connector, S6B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +6 +6 +Connector_JST +JST_XH_S7B-XH-A-1_1x07_P2.50mm_Horizontal +JST XH series connector, S7B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +7 +7 +Connector_JST +JST_XH_S7B-XH-A_1x07_P2.50mm_Horizontal +JST XH series connector, S7B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +7 +7 +Connector_JST +JST_XH_S8B-XH-A-1_1x08_P2.50mm_Horizontal +JST XH series connector, S8B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +8 +8 +Connector_JST +JST_XH_S8B-XH-A_1x08_P2.50mm_Horizontal +JST XH series connector, S8B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +8 +8 +Connector_JST +JST_XH_S9B-XH-A-1_1x09_P2.50mm_Horizontal +JST XH series connector, S9B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +9 +9 +Connector_JST +JST_XH_S9B-XH-A_1x09_P2.50mm_Horizontal +JST XH series connector, S9B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +9 +9 +Connector_JST +JST_XH_S10B-XH-A-1_1x10_P2.50mm_Horizontal +JST XH series connector, S10B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +10 +10 +Connector_JST +JST_XH_S10B-XH-A_1x10_P2.50mm_Horizontal +JST XH series connector, S10B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +10 +10 +Connector_JST +JST_XH_S11B-XH-A-1_1x11_P2.50mm_Horizontal +JST XH series connector, S11B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +11 +11 +Connector_JST +JST_XH_S11B-XH-A_1x11_P2.50mm_Horizontal +JST XH series connector, S11B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +11 +11 +Connector_JST +JST_XH_S12B-XH-A-1_1x12_P2.50mm_Horizontal +JST XH series connector, S12B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +12 +12 +Connector_JST +JST_XH_S12B-XH-A_1x12_P2.50mm_Horizontal +JST XH series connector, S12B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +12 +12 +Connector_JST +JST_XH_S13B-XH-A-1_1x13_P2.50mm_Horizontal +JST XH series connector, S13B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +13 +13 +Connector_JST +JST_XH_S13B-XH-A_1x13_P2.50mm_Horizontal +JST XH series connector, S13B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +13 +13 +Connector_JST +JST_XH_S14B-XH-A-1_1x14_P2.50mm_Horizontal +JST XH series connector, S14B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +14 +14 +Connector_JST +JST_XH_S14B-XH-A_1x14_P2.50mm_Horizontal +JST XH series connector, S14B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +14 +14 +Connector_JST +JST_XH_S15B-XH-A-1_1x15_P2.50mm_Horizontal +JST XH series connector, S15B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +15 +15 +Connector_JST +JST_XH_S15B-XH-A_1x15_P2.50mm_Horizontal +JST XH series connector, S15B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +15 +15 +Connector_JST +JST_XH_S16B-XH-A_1x16_P2.50mm_Horizontal +JST XH series connector, S16B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +16 +16 +Connector_JST +JST_ZE_B02B-ZESK-1D_1x02_P1.50mm_Vertical +JST ZE series connector, B02B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +2 +2 +Connector_JST +JST_ZE_B03B-ZESK-1D_1x03_P1.50mm_Vertical +JST ZE series connector, B03B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +3 +3 +Connector_JST +JST_ZE_B03B-ZESK-D_1x03_P1.50mm_Vertical +JST ZE series connector, B03B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +3 +3 +Connector_JST +JST_ZE_B04B-ZESK-1D_1x04_P1.50mm_Vertical +JST ZE series connector, B04B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +4 +4 +Connector_JST +JST_ZE_B04B-ZESK-D_1x04_P1.50mm_Vertical +JST ZE series connector, B04B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +4 +4 +Connector_JST +JST_ZE_B05B-ZESK-1D_1x05_P1.50mm_Vertical +JST ZE series connector, B05B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +5 +5 +Connector_JST +JST_ZE_B05B-ZESK-D_1x05_P1.50mm_Vertical +JST ZE series connector, B05B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +5 +5 +Connector_JST +JST_ZE_B06B-ZESK-1D_1x06_P1.50mm_Vertical +JST ZE series connector, B06B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +6 +6 +Connector_JST +JST_ZE_B06B-ZESK-D_1x06_P1.50mm_Vertical +JST ZE series connector, B06B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +6 +6 +Connector_JST +JST_ZE_B07B-ZESK-1D_1x07_P1.50mm_Vertical +JST ZE series connector, B07B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +7 +7 +Connector_JST +JST_ZE_B07B-ZESK-D_1x07_P1.50mm_Vertical +JST ZE series connector, B07B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +7 +7 +Connector_JST +JST_ZE_B08B-ZESK-1D_1x08_P1.50mm_Vertical +JST ZE series connector, B08B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +8 +8 +Connector_JST +JST_ZE_B08B-ZESK-D_1x08_P1.50mm_Vertical +JST ZE series connector, B08B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +8 +8 +Connector_JST +JST_ZE_B09B-ZESK-1D_1x09_P1.50mm_Vertical +JST ZE series connector, B09B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +9 +9 +Connector_JST +JST_ZE_B09B-ZESK-D_1x09_P1.50mm_Vertical +JST ZE series connector, B09B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +9 +9 +Connector_JST +JST_ZE_B10B-ZESK-1D_1x10_P1.50mm_Vertical +JST ZE series connector, B10B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +10 +10 +Connector_JST +JST_ZE_B10B-ZESK-D_1x10_P1.50mm_Vertical +JST ZE series connector, B10B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +10 +10 +Connector_JST +JST_ZE_B11B-ZESK-1D_1x11_P1.50mm_Vertical +JST ZE series connector, B11B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +11 +11 +Connector_JST +JST_ZE_B11B-ZESK-D_1x11_P1.50mm_Vertical +JST ZE series connector, B11B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +11 +11 +Connector_JST +JST_ZE_B12B-ZESK-1D_1x12_P1.50mm_Vertical +JST ZE series connector, B12B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +12 +12 +Connector_JST +JST_ZE_B12B-ZESK-D_1x12_P1.50mm_Vertical +JST ZE series connector, B12B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +12 +12 +Connector_JST +JST_ZE_B13B-ZESK-1D_1x13_P1.50mm_Vertical +JST ZE series connector, B13B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +13 +13 +Connector_JST +JST_ZE_B13B-ZESK-D_1x13_P1.50mm_Vertical +JST ZE series connector, B13B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +13 +13 +Connector_JST +JST_ZE_B14B-ZESK-1D_1x14_P1.50mm_Vertical +JST ZE series connector, B14B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +14 +14 +Connector_JST +JST_ZE_B14B-ZESK-D_1x14_P1.50mm_Vertical +JST ZE series connector, B14B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +14 +14 +Connector_JST +JST_ZE_B15B-ZESK-1D_1x15_P1.50mm_Vertical +JST ZE series connector, B15B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +15 +15 +Connector_JST +JST_ZE_B15B-ZESK-D_1x15_P1.50mm_Vertical +JST ZE series connector, B15B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +15 +15 +Connector_JST +JST_ZE_B16B-ZESK-1D_1x16_P1.50mm_Vertical +JST ZE series connector, B16B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +16 +16 +Connector_JST +JST_ZE_B16B-ZESK-D_1x16_P1.50mm_Vertical +JST ZE series connector, B16B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +16 +16 +Connector_JST +JST_ZE_BM02B-ZESS-TBT_1x02-1MP_P1.50mm_Vertical +JST ZE series connector, BM02B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +4 +3 +Connector_JST +JST_ZE_BM03B-ZESS-TBT_1x03-1MP_P1.50mm_Vertical +JST ZE series connector, BM03B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +5 +4 +Connector_JST +JST_ZE_BM04B-ZESS-TBT_1x04-1MP_P1.50mm_Vertical +JST ZE series connector, BM04B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +6 +5 +Connector_JST +JST_ZE_BM05B-ZESS-TBT_1x05-1MP_P1.50mm_Vertical +JST ZE series connector, BM05B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +7 +6 +Connector_JST +JST_ZE_BM06B-ZESS-TBT_1x06-1MP_P1.50mm_Vertical +JST ZE series connector, BM06B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +8 +7 +Connector_JST +JST_ZE_BM07B-ZESS-TBT_1x07-1MP_P1.50mm_Vertical +JST ZE series connector, BM07B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +9 +8 +Connector_JST +JST_ZE_BM08B-ZESS-TBT_1x08-1MP_P1.50mm_Vertical +JST ZE series connector, BM08B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +10 +9 +Connector_JST +JST_ZE_BM09B-ZESS-TBT_1x09-1MP_P1.50mm_Vertical +JST ZE series connector, BM09B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +11 +10 +Connector_JST +JST_ZE_BM10B-ZESS-TBT_1x10-1MP_P1.50mm_Vertical +JST ZE series connector, BM10B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +12 +11 +Connector_JST +JST_ZE_BM11B-ZESS-TBT_1x11-1MP_P1.50mm_Vertical +JST ZE series connector, BM11B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +13 +12 +Connector_JST +JST_ZE_BM12B-ZESS-TBT_1x12-1MP_P1.50mm_Vertical +JST ZE series connector, BM12B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +14 +13 +Connector_JST +JST_ZE_BM13B-ZESS-TBT_1x13-1MP_P1.50mm_Vertical +JST ZE series connector, BM13B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +15 +14 +Connector_JST +JST_ZE_BM14B-ZESS-TBT_1x14-1MP_P1.50mm_Vertical +JST ZE series connector, BM14B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +16 +15 +Connector_JST +JST_ZE_BM15B-ZESS-TBT_1x15-1MP_P1.50mm_Vertical +JST ZE series connector, BM15B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +17 +16 +Connector_JST +JST_ZE_BM16B-ZESS-TBT_1x16-1MP_P1.50mm_Vertical +JST ZE series connector, BM16B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +18 +17 +Connector_JST +JST_ZE_S02B-ZESK-2D_1x02_P1.50mm_Horizontal +JST ZE series connector, S02B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +2 +2 +Connector_JST +JST_ZE_S03B-ZESK-2D_1x03_P1.50mm_Horizontal +JST ZE series connector, S03B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +3 +3 +Connector_JST +JST_ZE_S04B-ZESK-2D_1x04_P1.50mm_Horizontal +JST ZE series connector, S04B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +4 +4 +Connector_JST +JST_ZE_S05B-ZESK-2D_1x05_P1.50mm_Horizontal +JST ZE series connector, S05B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +5 +5 +Connector_JST +JST_ZE_S06B-ZESK-2D_1x06_P1.50mm_Horizontal +JST ZE series connector, S06B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +6 +6 +Connector_JST +JST_ZE_S07B-ZESK-2D_1x07_P1.50mm_Horizontal +JST ZE series connector, S07B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +7 +7 +Connector_JST +JST_ZE_S08B-ZESK-2D_1x08_P1.50mm_Horizontal +JST ZE series connector, S08B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +8 +8 +Connector_JST +JST_ZE_S09B-ZESK-2D_1x09_P1.50mm_Horizontal +JST ZE series connector, S09B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +9 +9 +Connector_JST +JST_ZE_S10B-ZESK-2D_1x10_P1.50mm_Horizontal +JST ZE series connector, S10B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +10 +10 +Connector_JST +JST_ZE_S11B-ZESK-2D_1x11_P1.50mm_Horizontal +JST ZE series connector, S11B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +11 +11 +Connector_JST +JST_ZE_S12B-ZESK-2D_1x12_P1.50mm_Horizontal +JST ZE series connector, S12B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +12 +12 +Connector_JST +JST_ZE_S13B-ZESK-2D_1x13_P1.50mm_Horizontal +JST ZE series connector, S13B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +13 +13 +Connector_JST +JST_ZE_S14B-ZESK-2D_1x14_P1.50mm_Horizontal +JST ZE series connector, S14B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +14 +14 +Connector_JST +JST_ZE_S15B-ZESK-2D_1x15_P1.50mm_Horizontal +JST ZE series connector, S15B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +15 +15 +Connector_JST +JST_ZE_S16B-ZESK-2D_1x16_P1.50mm_Horizontal +JST ZE series connector, S16B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +16 +16 +Connector_JST +JST_ZE_SM02B-ZESS-TB_1x02-1MP_P1.50mm_Horizontal +JST ZE series connector, SM02B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +4 +3 +Connector_JST +JST_ZE_SM03B-ZESS-TB_1x03-1MP_P1.50mm_Horizontal +JST ZE series connector, SM03B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +5 +4 +Connector_JST +JST_ZE_SM04B-ZESS-TB_1x04-1MP_P1.50mm_Horizontal +JST ZE series connector, SM04B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +6 +5 +Connector_JST +JST_ZE_SM05B-ZESS-TB_1x05-1MP_P1.50mm_Horizontal +JST ZE series connector, SM05B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +7 +6 +Connector_JST +JST_ZE_SM06B-ZESS-TB_1x06-1MP_P1.50mm_Horizontal +JST ZE series connector, SM06B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +8 +7 +Connector_JST +JST_ZE_SM07B-ZESS-TB_1x07-1MP_P1.50mm_Horizontal +JST ZE series connector, SM07B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +9 +8 +Connector_JST +JST_ZE_SM08B-ZESS-TB_1x08-1MP_P1.50mm_Horizontal +JST ZE series connector, SM08B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +10 +9 +Connector_JST +JST_ZE_SM09B-ZESS-TB_1x09-1MP_P1.50mm_Horizontal +JST ZE series connector, SM09B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +11 +10 +Connector_JST +JST_ZE_SM10B-ZESS-TB_1x10-1MP_P1.50mm_Horizontal +JST ZE series connector, SM10B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +12 +11 +Connector_JST +JST_ZE_SM11B-ZESS-TB_1x11-1MP_P1.50mm_Horizontal +JST ZE series connector, SM11B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +13 +12 +Connector_JST +JST_ZE_SM12B-ZESS-TB_1x12-1MP_P1.50mm_Horizontal +JST ZE series connector, SM12B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +14 +13 +Connector_JST +JST_ZE_SM13B-ZESS-TB_1x13-1MP_P1.50mm_Horizontal +JST ZE series connector, SM13B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +15 +14 +Connector_JST +JST_ZE_SM14B-ZESS-TB_1x14-1MP_P1.50mm_Horizontal +JST ZE series connector, SM14B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +16 +15 +Connector_JST +JST_ZE_SM15B-ZESS-TB_1x15-1MP_P1.50mm_Horizontal +JST ZE series connector, SM15B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +17 +16 +Connector_JST +JST_ZE_SM16B-ZESS-TB_1x16-1MP_P1.50mm_Horizontal +JST ZE series connector, SM16B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +18 +17 +Connector_JST +JST_ZH_B2B-ZR-SM4-TF_1x02-1MP_P1.50mm_Vertical +JST ZH series connector, B2B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +4 +3 +Connector_JST +JST_ZH_B2B-ZR_1x02_P1.50mm_Vertical +JST ZH series connector, B2B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +2 +2 +Connector_JST +JST_ZH_B3B-ZR-SM4-TF_1x03-1MP_P1.50mm_Vertical +JST ZH series connector, B3B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +5 +4 +Connector_JST +JST_ZH_B3B-ZR_1x03_P1.50mm_Vertical +JST ZH series connector, B3B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +3 +3 +Connector_JST +JST_ZH_B4B-ZR-SM4-TF_1x04-1MP_P1.50mm_Vertical +JST ZH series connector, B4B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +6 +5 +Connector_JST +JST_ZH_B4B-ZR_1x04_P1.50mm_Vertical +JST ZH series connector, B4B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +4 +4 +Connector_JST +JST_ZH_B5B-ZR-SM4-TF_1x05-1MP_P1.50mm_Vertical +JST ZH series connector, B5B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +7 +6 +Connector_JST +JST_ZH_B5B-ZR_1x05_P1.50mm_Vertical +JST ZH series connector, B5B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +5 +5 +Connector_JST +JST_ZH_B6B-ZR-SM4-TF_1x06-1MP_P1.50mm_Vertical +JST ZH series connector, B6B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +8 +7 +Connector_JST +JST_ZH_B6B-ZR_1x06_P1.50mm_Vertical +JST ZH series connector, B6B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +6 +6 +Connector_JST +JST_ZH_B7B-ZR-SM4-TF_1x07-1MP_P1.50mm_Vertical +JST ZH series connector, B7B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +9 +8 +Connector_JST +JST_ZH_B7B-ZR_1x07_P1.50mm_Vertical +JST ZH series connector, B7B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +7 +7 +Connector_JST +JST_ZH_B8B-ZR-SM4-TF_1x08-1MP_P1.50mm_Vertical +JST ZH series connector, B8B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +10 +9 +Connector_JST +JST_ZH_B8B-ZR_1x08_P1.50mm_Vertical +JST ZH series connector, B8B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +8 +8 +Connector_JST +JST_ZH_B9B-ZR-SM4-TF_1x09-1MP_P1.50mm_Vertical +JST ZH series connector, B9B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +11 +10 +Connector_JST +JST_ZH_B9B-ZR_1x09_P1.50mm_Vertical +JST ZH series connector, B9B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +9 +9 +Connector_JST +JST_ZH_B10B-ZR-SM4-TF_1x10-1MP_P1.50mm_Vertical +JST ZH series connector, B10B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +12 +11 +Connector_JST +JST_ZH_B10B-ZR_1x10_P1.50mm_Vertical +JST ZH series connector, B10B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +10 +10 +Connector_JST +JST_ZH_B11B-ZR-SM4-TF_1x11-1MP_P1.50mm_Vertical +JST ZH series connector, B11B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +13 +12 +Connector_JST +JST_ZH_B11B-ZR_1x11_P1.50mm_Vertical +JST ZH series connector, B11B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +11 +11 +Connector_JST +JST_ZH_B12B-ZR-SM4-TF_1x12-1MP_P1.50mm_Vertical +JST ZH series connector, B12B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +14 +13 +Connector_JST +JST_ZH_B12B-ZR_1x12_P1.50mm_Vertical +JST ZH series connector, B12B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +12 +12 +Connector_JST +JST_ZH_B13B-ZR-SM4-TF_1x13-1MP_P1.50mm_Vertical +JST ZH series connector, B13B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +15 +14 +Connector_JST +JST_ZH_S2B-ZR-SM4A-TF_1x02-1MP_P1.50mm_Horizontal +JST ZH series connector, S2B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +4 +3 +Connector_JST +JST_ZH_S3B-ZR-SM4A-TF_1x03-1MP_P1.50mm_Horizontal +JST ZH series connector, S3B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +5 +4 +Connector_JST +JST_ZH_S4B-ZR-SM4A-TF_1x04-1MP_P1.50mm_Horizontal +JST ZH series connector, S4B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +6 +5 +Connector_JST +JST_ZH_S5B-ZR-SM4A-TF_1x05-1MP_P1.50mm_Horizontal +JST ZH series connector, S5B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +7 +6 +Connector_JST +JST_ZH_S6B-ZR-SM4A-TF_1x06-1MP_P1.50mm_Horizontal +JST ZH series connector, S6B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +8 +7 +Connector_JST +JST_ZH_S7B-ZR-SM4A-TF_1x07-1MP_P1.50mm_Horizontal +JST ZH series connector, S7B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +9 +8 +Connector_JST +JST_ZH_S8B-ZR-SM4A-TF_1x08-1MP_P1.50mm_Horizontal +JST ZH series connector, S8B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +10 +9 +Connector_JST +JST_ZH_S9B-ZR-SM4A-TF_1x09-1MP_P1.50mm_Horizontal +JST ZH series connector, S9B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +11 +10 +Connector_JST +JST_ZH_S10B-ZR-SM4A-TF_1x10-1MP_P1.50mm_Horizontal +JST ZH series connector, S10B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +12 +11 +Connector_JST +JST_ZH_S11B-ZR-SM4A-TF_1x11-1MP_P1.50mm_Horizontal +JST ZH series connector, S11B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +13 +12 +Connector_JST +JST_ZH_S12B-ZR-SM4A-TF_1x12-1MP_P1.50mm_Horizontal +JST ZH series connector, S12B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +14 +13 +Connector_JST +JST_ZH_S13B-ZR-SM4A-TF_1x13-1MP_P1.50mm_Horizontal +JST ZH series connector, S13B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502382-0270_1x02-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0270 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502382-0370_1x03-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0370 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502382-0470_1x04-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0470 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502382-0570_1x05-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0570 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502382-0670_1x06-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0670 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502382-0770_1x07-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0770 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502382-0870_1x08-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0870 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502382-0970_1x09-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0970 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502382-1070_1x10-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1070 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502382-1170_1x11-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1170 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_502382-1270_1x12-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1270 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502382-1370_1x13-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1370 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502382-1470_1x14-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1470 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502382-1570_1x15-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1570 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502386-0270_1x02-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0270 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0370 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502386-0470_1x04-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0470 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502386-0570_1x05-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0570 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502386-0670_1x06-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0670 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502386-0770_1x07-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0770 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502386-0870_1x08-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0870 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502386-0970_1x09-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0970 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502386-1070_1x10-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1070 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502386-1170_1x11-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1170 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_502386-1270_1x12-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1270 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502386-1370_1x13-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1370 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502386-1470_1x14-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1470 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502386-1570_1x15-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1570 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502443-0270_1x02-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0270 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502443-0370_1x03-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0370 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502443-0470_1x04-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0470 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502443-0570_1x05-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0570 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502443-0670_1x06-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0670 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502443-0770_1x07-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0770 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502443-0870_1x08-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0870 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502443-0970_1x09-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0970 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502443-1270_1x12-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1270 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502443-1370_1x13-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1370 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502443-1470_1x14-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1470 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502443-1570_1x15-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1570 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502494-0270_1x02-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0270 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502494-0370_1x03-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0370 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502494-0470_1x04-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0470 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502494-0670_1x06-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0670 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502494-0870_1x08-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0870 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502494-1070_1x10-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1070 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502494-1270_1x12-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1270 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502494-1370_1x13-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1370 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502494-1470_1x14-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1470 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502494-1570_1x15-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1570 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502585-0270_1x02-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0270 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502585-0370_1x03-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0370 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502585-0470_1x04-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0470 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502585-0570_1x05-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0570 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502585-0670_1x06-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0670 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502585-0770_1x07-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0770 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502585-0870_1x08-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0870 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502585-0970_1x09-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0970 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502585-1070_1x10-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1070 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502585-1170_1x11-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1170 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_502585-1270_1x12-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1270 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502585-1370_1x13-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1370 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502585-1470_1x14-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1470 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502585-1570_1x15-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1570 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_505405-0270_1x02-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0270 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_505405-0370_1x03-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0370 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_505405-0470_1x04-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0470 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_505405-0570_1x05-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0570 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_505405-0670_1x06-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0670 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_505405-0770_1x07-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0770 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_505405-0870_1x08-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0870 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_505405-0970_1x09-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0970 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_505405-1070_1x10-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1070 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_505405-1170_1x11-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1170 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_505405-1270_1x12-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1270 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_505405-1370_1x13-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1370 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_505405-1470_1x14-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1470 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_505405-1570_1x15-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1570 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +17 +16 +Connector_Molex +Molex_KK-254_AE-6410-02A_1x02_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-02A example for new part number: 22-27-2021, 2 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +2 +2 +Connector_Molex +Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-03A example for new part number: 22-27-2031, 3 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +3 +3 +Connector_Molex +Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +4 +4 +Connector_Molex +Molex_KK-254_AE-6410-05A_1x05_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-05A example for new part number: 22-27-2051, 5 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +5 +5 +Connector_Molex +Molex_KK-254_AE-6410-06A_1x06_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-06A example for new part number: 22-27-2061, 6 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +6 +6 +Connector_Molex +Molex_KK-254_AE-6410-07A_1x07_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-07A example for new part number: 22-27-2071, 7 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +7 +7 +Connector_Molex +Molex_KK-254_AE-6410-08A_1x08_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-08A example for new part number: 22-27-2081, 8 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +8 +8 +Connector_Molex +Molex_KK-254_AE-6410-09A_1x09_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-09A example for new part number: 22-27-2091, 9 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +9 +9 +Connector_Molex +Molex_KK-254_AE-6410-10A_1x10_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-10A example for new part number: 22-27-2101, 10 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +10 +10 +Connector_Molex +Molex_KK-254_AE-6410-11A_1x11_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-11A example for new part number: 22-27-2111, 11 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +11 +11 +Connector_Molex +Molex_KK-254_AE-6410-12A_1x12_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-12A example for new part number: 22-27-2121, 12 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +12 +12 +Connector_Molex +Molex_KK-254_AE-6410-13A_1x13_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-13A example for new part number: 22-27-2131, 13 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +13 +13 +Connector_Molex +Molex_KK-254_AE-6410-14A_1x14_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-14A example for new part number: 22-27-2141, 14 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +14 +14 +Connector_Molex +Molex_KK-254_AE-6410-15A_1x15_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-15A example for new part number: 22-27-2151, 15 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +15 +15 +Connector_Molex +Molex_KK-254_AE-6410-16A_1x16_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-16A example for new part number: 22-27-2161, 16 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +16 +16 +Connector_Molex +Molex_KK-396_5273-02A_1x02_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-02A example for new part number: 09-65-2028, 2 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +2 +2 +Connector_Molex +Molex_KK-396_5273-03A_1x03_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-03A example for new part number: 09-65-2038, 3 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +3 +3 +Connector_Molex +Molex_KK-396_5273-04A_1x04_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-04A example for new part number: 09-65-2048, 4 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +4 +4 +Connector_Molex +Molex_KK-396_5273-05A_1x05_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-05A example for new part number: 09-65-2058, 5 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +5 +5 +Connector_Molex +Molex_KK-396_5273-06A_1x06_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-06A example for new part number: 09-65-2068, 6 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +6 +6 +Connector_Molex +Molex_KK-396_5273-07A_1x07_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-07A example for new part number: 09-65-2078, 7 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +7 +7 +Connector_Molex +Molex_KK-396_5273-08A_1x08_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-08A example for new part number: 09-65-2088, 8 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +8 +8 +Connector_Molex +Molex_KK-396_5273-09A_1x09_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-09A example for new part number: 09-65-2098, 9 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +9 +9 +Connector_Molex +Molex_KK-396_5273-10A_1x10_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-10A example for new part number: 09-65-2108, 10 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +10 +10 +Connector_Molex +Molex_KK-396_5273-11A_1x11_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-11A example for new part number: 09-65-2118, 11 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +11 +11 +Connector_Molex +Molex_KK-396_5273-12A_1x12_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-12A example for new part number: 09-65-2128, 12 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +12 +12 +Connector_Molex +Molex_KK-396_A-41791-0002_1x02_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0002 example for new part number: 26-60-4020, 2 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +2 +2 +Connector_Molex +Molex_KK-396_A-41791-0003_1x03_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0003 example for new part number: 26-60-4030, 3 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +3 +3 +Connector_Molex +Molex_KK-396_A-41791-0004_1x04_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0004 example for new part number: 26-60-4040, 4 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +4 +4 +Connector_Molex +Molex_KK-396_A-41791-0005_1x05_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0005 example for new part number: 26-60-4050, 5 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +5 +5 +Connector_Molex +Molex_KK-396_A-41791-0006_1x06_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0006 example for new part number: 26-60-4060, 6 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +6 +6 +Connector_Molex +Molex_KK-396_A-41791-0007_1x07_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0007 example for new part number: 26-60-4070, 7 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +7 +7 +Connector_Molex +Molex_KK-396_A-41791-0008_1x08_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0008 example for new part number: 26-60-4080, 8 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +8 +8 +Connector_Molex +Molex_KK-396_A-41791-0009_1x09_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0009 example for new part number: 26-60-4090, 9 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +9 +9 +Connector_Molex +Molex_KK-396_A-41791-0010_1x10_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0010 example for new part number: 26-60-4100, 10 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +10 +10 +Connector_Molex +Molex_KK-396_A-41791-0011_1x11_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0011 example for new part number: 26-60-4110, 11 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +11 +11 +Connector_Molex +Molex_KK-396_A-41791-0012_1x12_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0012 example for new part number: 26-60-4120, 12 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +12 +12 +Connector_Molex +Molex_KK-396_A-41791-0013_1x13_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0013 example for new part number: 26-60-4130, 13 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +13 +13 +Connector_Molex +Molex_KK-396_A-41791-0014_1x14_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0014 example for new part number: 26-60-4140, 14 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +14 +14 +Connector_Molex +Molex_KK-396_A-41791-0015_1x15_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0015 example for new part number: 26-60-4150, 15 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +15 +15 +Connector_Molex +Molex_KK-396_A-41791-0016_1x16_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0016 example for new part number: 26-60-4160, 16 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +16 +16 +Connector_Molex +Molex_KK-396_A-41791-0017_1x17_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0017 example for new part number: 26-60-4170, 17 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +17 +17 +Connector_Molex +Molex_KK-396_A-41791-0018_1x18_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0018 example for new part number: 26-60-4180, 18 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +18 +18 +Connector_Molex +Molex_KK-396_A-41792-0002_1x02_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0002 example for new part number: 26-60-5020, 2 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +2 +2 +Connector_Molex +Molex_KK-396_A-41792-0003_1x03_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0003 example for new part number: 26-60-5030, 3 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +3 +3 +Connector_Molex +Molex_KK-396_A-41792-0004_1x04_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0004 example for new part number: 26-60-5040, 4 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +4 +4 +Connector_Molex +Molex_KK-396_A-41792-0005_1x05_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0005 example for new part number: 26-60-5050, 5 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +5 +5 +Connector_Molex +Molex_KK-396_A-41792-0006_1x06_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0006 example for new part number: 26-60-5060, 6 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +6 +6 +Connector_Molex +Molex_KK-396_A-41792-0007_1x07_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0007 example for new part number: 26-60-5070, 7 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +7 +7 +Connector_Molex +Molex_KK-396_A-41792-0008_1x08_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0008 example for new part number: 26-60-5080, 8 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +8 +8 +Connector_Molex +Molex_KK-396_A-41792-0009_1x09_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0009 example for new part number: 26-60-5090, 9 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +9 +9 +Connector_Molex +Molex_KK-396_A-41792-0010_1x10_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0010 example for new part number: 26-60-5100, 10 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +10 +10 +Connector_Molex +Molex_KK-396_A-41792-0011_1x11_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0011 example for new part number: 26-60-5110, 11 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +11 +11 +Connector_Molex +Molex_KK-396_A-41792-0012_1x12_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0012 example for new part number: 26-60-5120, 12 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +12 +12 +Connector_Molex +Molex_KK-396_A-41792-0013_1x13_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0013 example for new part number: 26-60-5130, 13 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +13 +13 +Connector_Molex +Molex_KK-396_A-41792-0014_1x14_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0014 example for new part number: 26-60-5140, 14 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +14 +14 +Connector_Molex +Molex_KK-396_A-41792-0015_1x15_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0015 example for new part number: 26-60-5150, 15 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +15 +15 +Connector_Molex +Molex_KK-396_A-41792-0016_1x16_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0016 example for new part number: 26-60-5160, 16 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +16 +16 +Connector_Molex +Molex_KK-396_A-41792-0017_1x17_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0017 example for new part number: 26-60-5170, 17 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +17 +17 +Connector_Molex +Molex_KK-396_A-41792-0018_1x18_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0018 example for new part number: 26-60-5180, 18 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +18 +18 +Connector_Molex +Molex_Mega-Fit_76825-0002_2x01_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0002 (compatible alternatives: 172064-0002, 172064-1002), 1 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +2 +2 +Connector_Molex +Molex_Mega-Fit_76825-0004_2x02_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0004 (compatible alternatives: 172064-0004, 172064-1004), 2 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +4 +4 +Connector_Molex +Molex_Mega-Fit_76825-0006_2x03_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0006 (compatible alternatives: 172064-0006, 172064-1006), 3 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +6 +6 +Connector_Molex +Molex_Mega-Fit_76825-0008_2x04_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0008 (compatible alternatives: 172064-0008, 172064-1008), 4 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +8 +8 +Connector_Molex +Molex_Mega-Fit_76825-0010_2x05_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0010 (compatible alternatives: 172064-0010, 172064-1010), 5 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +10 +10 +Connector_Molex +Molex_Mega-Fit_76825-0012_2x06_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0012 (compatible alternatives: 172064-0012, 172064-1012), 6 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +12 +12 +Connector_Molex +Molex_Mega-Fit_76829-0002_2x01_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0002 (compatible alternatives: 172065-0002, 172065-1002), 1 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +2 +2 +Connector_Molex +Molex_Mega-Fit_76829-0004_2x02_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0004 (compatible alternatives: 172065-0004, 172065-1004), 2 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Mega-Fit_76829-0006_2x03_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0006 (compatible alternatives: 172065-0006, 172065-1006), 3 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Mega-Fit_76829-0008_2x04_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0008 (compatible alternatives: 172065-0008, 172065-1008), 4 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Mega-Fit_76829-0010_2x05_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0010 (compatible alternatives: 172065-0010, 172065-1010), 5 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +10 +10 +Connector_Molex +Molex_Mega-Fit_76829-0012_2x06_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0012 (compatible alternatives: 172065-0012, 172065-1012), 6 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +12 +12 +Connector_Molex +Molex_Mega-Fit_76829-0102_2x01_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0102 (compatible alternatives: 172065-0202, 172065-0302), 1 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +2 +2 +Connector_Molex +Molex_Mega-Fit_76829-0104_2x02_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0104 (compatible alternatives: 172065-0204, 172065-0304), 2 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Mega-Fit_76829-0106_2x03_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0106 (compatible alternatives: 172065-0206, 172065-0306), 3 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Mega-Fit_76829-0108_2x04_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0108 (compatible alternatives: 172065-0208, 172065-0308), 4 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Mega-Fit_76829-0110_2x05_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0110 (compatible alternatives: 172065-0210, 172065-0310), 5 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +10 +10 +Connector_Molex +Molex_Mega-Fit_76829-0112_2x06_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0112 (compatible alternatives: 172065-0212, 172065-0312), 6 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0200_2x01_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0200 (alternative finishes: 43045-020x), 1 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0210_2x01-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0210 (compatible alternatives: 43045-0211, 43045-0209), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0212_2x01_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0212 (compatible alternatives: 43045-0213, 43045-0224), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0215_2x01_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0215 (compatible alternatives: 43045-0216, 43045-0217), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0218_2x01-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0218 (compatible alternatives: 43045-0219, 43045-0220), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0221_2x01-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0221 (alternative finishes: 43045-022x), 1 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0400_2x02_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0400 (alternative finishes: 43045-040x), 2 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0410_2x02-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0410 (compatible alternatives: 43045-0411, 43045-0409), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0412_2x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0412 (compatible alternatives: 43045-0413, 43045-0424), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0415_2x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0415 (compatible alternatives: 43045-0416, 43045-0417), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0418_2x02-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0418 (compatible alternatives: 43045-0419, 43045-0420), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0421_2x02-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0421 (alternative finishes: 43045-042x), 2 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0600_2x03_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0600 (alternative finishes: 43045-060x), 3 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0610_2x03-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0610 (compatible alternatives: 43045-0611, 43045-0609), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0612_2x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0612 (compatible alternatives: 43045-0613, 43045-0624), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0615_2x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0615 (compatible alternatives: 43045-0616, 43045-0617), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0618_2x03-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0618 (compatible alternatives: 43045-0619, 43045-0620), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0621_2x03-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0621 (alternative finishes: 43045-062x), 3 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0800_2x04_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0800 (alternative finishes: 43045-080x), 4 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0810_2x04-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0810 (compatible alternatives: 43045-0811, 43045-0809), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0812_2x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0812 (compatible alternatives: 43045-0813, 43045-0824), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0815_2x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0815 (compatible alternatives: 43045-0816, 43045-0817), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0818_2x04-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0818 (compatible alternatives: 43045-0819, 43045-0820), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0821_2x04-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0821 (alternative finishes: 43045-082x), 4 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1000_2x05_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1000 (alternative finishes: 43045-100x), 5 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1010_2x05-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1010 (compatible alternatives: 43045-1011, 43045-1009), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1012_2x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1012 (compatible alternatives: 43045-1013, 43045-1024), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1015_2x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1015 (compatible alternatives: 43045-1016, 43045-1017), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1018_2x05-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1018 (compatible alternatives: 43045-1019, 43045-1020), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1021_2x05-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1021 (alternative finishes: 43045-102x), 5 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1200_2x06_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1200 (alternative finishes: 43045-120x), 6 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1210_2x06-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1210 (compatible alternatives: 43045-1211, 43045-1209), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1212_2x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1212 (compatible alternatives: 43045-1213, 43045-1224), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1215_2x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1215 (compatible alternatives: 43045-1216, 43045-1217), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1218_2x06-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1218 (compatible alternatives: 43045-1219, 43045-1220), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1221_2x06-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1221 (alternative finishes: 43045-122x), 6 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1400_2x07_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1400 (alternative finishes: 43045-140x), 7 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +14 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1410_2x07-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1410 (compatible alternatives: 43045-1411, 43045-1409), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +16 +15 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1412_2x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1412 (compatible alternatives: 43045-1413, 43045-1424), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +14 +14 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1415_2x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1415 (compatible alternatives: 43045-1416, 43045-1417), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +14 +14 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1418_2x07-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1418 (compatible alternatives: 43045-1419, 43045-1420), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +16 +15 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1421_2x07-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1421 (alternative finishes: 43045-142x), 7 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +16 +15 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1600_2x08_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1600 (alternative finishes: 43045-160x), 8 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +16 +16 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1610_2x08-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1610 (compatible alternatives: 43045-1611, 43045-1609), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +18 +17 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1612_2x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1612 (compatible alternatives: 43045-1613, 43045-1624), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +16 +16 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1615_2x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1615 (compatible alternatives: 43045-1616, 43045-1617), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +16 +16 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1618_2x08-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1618 (compatible alternatives: 43045-1619, 43045-1620), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +18 +17 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1621_2x08-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1621 (alternative finishes: 43045-162x), 8 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +18 +17 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1800_2x09_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1800 (alternative finishes: 43045-180x), 9 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +18 +18 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1810_2x09-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1810 (compatible alternatives: 43045-1811, 43045-1809), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +20 +19 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1812_2x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1812 (compatible alternatives: 43045-1813, 43045-1824), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +18 +18 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1815_2x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1815 (compatible alternatives: 43045-1816, 43045-1817), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +18 +18 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1818_2x09-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1818 (compatible alternatives: 43045-1819, 43045-1820), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +20 +19 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1821_2x09-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1821 (alternative finishes: 43045-182x), 9 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +20 +19 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2000_2x10_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2000 (alternative finishes: 43045-200x), 10 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +20 +20 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2010_2x10-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2010 (compatible alternatives: 43045-2011, 43045-2009), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +22 +21 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2012_2x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2012 (compatible alternatives: 43045-2013, 43045-2024), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +20 +20 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2015_2x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2015 (compatible alternatives: 43045-2016, 43045-2017), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +20 +20 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2018_2x10-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2018 (compatible alternatives: 43045-2019, 43045-2020), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +22 +21 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2021_2x10-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2021 (alternative finishes: 43045-202x), 10 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +22 +21 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2200_2x11_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2200 (alternative finishes: 43045-220x), 11 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +22 +22 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2210_2x11-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2210 (compatible alternatives: 43045-2211, 43045-2209), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +24 +23 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2212_2x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2212 (compatible alternatives: 43045-2213, 43045-2224), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +22 +22 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2215_2x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2215 (compatible alternatives: 43045-2216, 43045-2217), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +22 +22 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2218_2x11-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2218 (compatible alternatives: 43045-2219, 43045-2220), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +24 +23 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2221_2x11-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2221 (alternative finishes: 43045-222x), 11 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +24 +23 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2400_2x12_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2400 (alternative finishes: 43045-240x), 12 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +24 +24 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2410_2x12-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2410 (compatible alternatives: 43045-2411, 43045-2409), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +26 +25 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2412_2x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2412 (compatible alternatives: 43045-2413, 43045-2424), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +24 +24 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2415_2x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2415 (compatible alternatives: 43045-2416, 43045-2417), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +24 +24 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2418_2x12-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2418 (compatible alternatives: 43045-2419, 43045-2420), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +26 +25 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2421_2x12-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2421 (alternative finishes: 43045-242x), 12 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +26 +25 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0200_1x02_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0200 (compatible alternatives: 43650-0201, 43650-0202), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0210_1x02-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0210 (compatible alternatives: 43650-0211, 43650-0209), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0210_1x02-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0210 (compatible alternatives: 43650-0211, 43650-0209), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0215_1x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0215 (compatible alternatives: 43650-0216, 43650-0217), 2 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0221_1x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0221 (compatible alternatives: 43650-0222, 43650-0223), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0224_1x02-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0224 (compatible alternatives: 43650-0225, 43650-0226), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0300_1x03_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0300 (compatible alternatives: 43650-0301, 43650-0302), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +3 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0310_1x03-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0310 (compatible alternatives: 43650-0311, 43650-0309), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +5 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0310_1x03-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0310 (compatible alternatives: 43650-0311, 43650-0309), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +5 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0315_1x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0315 (compatible alternatives: 43650-0316, 43650-0317), 3 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +3 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0321_1x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0321 (compatible alternatives: 43650-0322, 43650-0323), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +3 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0324_1x03-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0324 (compatible alternatives: 43650-0325, 43650-0326), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +5 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0400_1x04_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0400 (compatible alternatives: 43650-0401, 43650-0402), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0410_1x04-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0410 (compatible alternatives: 43650-0411, 43650-0409), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0410_1x04-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0410 (compatible alternatives: 43650-0411, 43650-0409), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0415_1x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0415 (compatible alternatives: 43650-0416, 43650-0417), 4 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0421_1x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0421 (compatible alternatives: 43650-0422, 43650-0423), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0424_1x04-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0424 (compatible alternatives: 43650-0425, 43650-0426), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0500_1x05_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0500 (compatible alternatives: 43650-0501, 43650-0502), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +5 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0510_1x05-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0510 (compatible alternatives: 43650-0511, 43650-0509), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +7 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0510_1x05-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0510 (compatible alternatives: 43650-0511, 43650-0509), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +7 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0515_1x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0515 (compatible alternatives: 43650-0516, 43650-0517), 5 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +5 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0521_1x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0521 (compatible alternatives: 43650-0522, 43650-0523), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +5 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0524_1x05-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0524 (compatible alternatives: 43650-0525, 43650-0526), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +7 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0600_1x06_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0600 (compatible alternatives: 43650-0601, 43650-0602), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0610_1x06-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0610 (compatible alternatives: 43650-0611, 43650-0609), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0610_1x06-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0610 (compatible alternatives: 43650-0611, 43650-0609), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0615_1x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0615 (compatible alternatives: 43650-0616, 43650-0617), 6 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0621_1x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0621 (compatible alternatives: 43650-0622, 43650-0623), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0624_1x06-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0624 (compatible alternatives: 43650-0625, 43650-0626), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0700_1x07_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0700 (compatible alternatives: 43650-0701, 43650-0702), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +7 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0710_1x07-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0710 (compatible alternatives: 43650-0711, 43650-0709), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +9 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0710_1x07-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0710 (compatible alternatives: 43650-0711, 43650-0709), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +9 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0715_1x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0715 (compatible alternatives: 43650-0716, 43650-0717), 7 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +7 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0721_1x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0721 (compatible alternatives: 43650-0722, 43650-0723), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +7 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0724_1x07-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0724 (compatible alternatives: 43650-0725, 43650-0726), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +9 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0800_1x08_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0800 (compatible alternatives: 43650-0801, 43650-0802), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0810_1x08-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0810 (compatible alternatives: 43650-0811, 43650-0809), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0810_1x08-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0810 (compatible alternatives: 43650-0811, 43650-0809), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0815_1x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0815 (compatible alternatives: 43650-0816, 43650-0817), 8 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0821_1x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0821 (compatible alternatives: 43650-0822, 43650-0823), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0824_1x08-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0824 (compatible alternatives: 43650-0825, 43650-0826), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0900_1x09_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0900 (compatible alternatives: 43650-0901, 43650-0902), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +9 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0910_1x09-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0910 (compatible alternatives: 43650-0911, 43650-0909), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +11 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0910_1x09-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0910 (compatible alternatives: 43650-0911, 43650-0909), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +11 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0915_1x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0915 (compatible alternatives: 43650-0916, 43650-0917), 9 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +9 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0921_1x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0921 (compatible alternatives: 43650-0922, 43650-0923), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +9 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0924_1x09-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0924 (compatible alternatives: 43650-0925, 43650-0926), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +11 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1000_1x10_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1000 (compatible alternatives: 43650-1001, 43650-1002), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1010_1x10-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1010 (compatible alternatives: 43650-1011, 43650-1009), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1010_1x10-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-1010 (compatible alternatives: 43650-1011, 43650-1009), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1015_1x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1015 (compatible alternatives: 43650-1016, 43650-1017), 10 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1021_1x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1021 (compatible alternatives: 43650-1022, 43650-1023), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1024_1x10-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1024 (compatible alternatives: 43650-1025, 43650-1026), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1100_1x11_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1100 (compatible alternatives: 43650-1101, 43650-1102), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +11 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1110_1x11-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1110 (compatible alternatives: 43650-1111, 43650-1109), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +13 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1110_1x11-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-1110 (compatible alternatives: 43650-1111, 43650-1109), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +13 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1115_1x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1115 (compatible alternatives: 43650-1116, 43650-1117), 11 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +11 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1121_1x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1121 (compatible alternatives: 43650-1122, 43650-1123), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +11 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1124_1x11-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1124 (compatible alternatives: 43650-1125, 43650-1126), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +13 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1200_1x12_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1200 (compatible alternatives: 43650-1201, 43650-1202), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1210_1x12-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1210 (compatible alternatives: 43650-1211, 43650-1209), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1210_1x12-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-1210 (compatible alternatives: 43650-1211, 43650-1209), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1215_1x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1215 (compatible alternatives: 43650-1216, 43650-1217), 12 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1221_1x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1221 (compatible alternatives: 43650-1222, 43650-1223), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1224_1x12-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1224 (compatible alternatives: 43650-1225, 43650-1226), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +14 +13 +Connector_Molex +Molex_Micro-Latch_53253-0270_1x02_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0270 (compatible alternatives: 53253-0250), 2 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +2 +2 +Connector_Molex +Molex_Micro-Latch_53253-0370_1x03_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0370 (compatible alternatives: 53253-0350), 3 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +3 +3 +Connector_Molex +Molex_Micro-Latch_53253-0470_1x04_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0470 (compatible alternatives: 53253-0450), 4 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +4 +4 +Connector_Molex +Molex_Micro-Latch_53253-0570_1x05_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0570 (compatible alternatives: 53253-0550), 5 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +5 +5 +Connector_Molex +Molex_Micro-Latch_53253-0670_1x06_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0670 (compatible alternatives: 53253-0650), 6 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +6 +6 +Connector_Molex +Molex_Micro-Latch_53253-0770_1x07_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0770 (compatible alternatives: 53253-0750), 7 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +7 +7 +Connector_Molex +Molex_Micro-Latch_53253-0870_1x08_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0870 (compatible alternatives: 53253-0850), 8 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +8 +8 +Connector_Molex +Molex_Micro-Latch_53253-0970_1x09_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0970 (compatible alternatives: 53253-0950), 9 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +9 +9 +Connector_Molex +Molex_Micro-Latch_53253-1070_1x10_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1070 (compatible alternatives: 53253-1050), 10 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +10 +10 +Connector_Molex +Molex_Micro-Latch_53253-1170_1x11_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1170 (compatible alternatives: 53253-1150), 11 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +11 +11 +Connector_Molex +Molex_Micro-Latch_53253-1270_1x12_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1270 (compatible alternatives: 53253-1250), 12 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +12 +12 +Connector_Molex +Molex_Micro-Latch_53253-1370_1x13_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1370 (compatible alternatives: 53253-1350), 13 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +13 +13 +Connector_Molex +Molex_Micro-Latch_53253-1470_1x14_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1470 (compatible alternatives: 53253-1450), 14 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +14 +14 +Connector_Molex +Molex_Micro-Latch_53253-1570_1x15_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1570 (compatible alternatives: 53253-1550), 15 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +15 +15 +Connector_Molex +Molex_Micro-Latch_53254-0270_1x02_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0270 (compatible alternatives: 53254-0250), 2 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +2 +2 +Connector_Molex +Molex_Micro-Latch_53254-0370_1x03_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0370 (compatible alternatives: 53254-0350), 3 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +3 +3 +Connector_Molex +Molex_Micro-Latch_53254-0470_1x04_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0470 (compatible alternatives: 53254-0450), 4 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +4 +4 +Connector_Molex +Molex_Micro-Latch_53254-0570_1x05_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0570 (compatible alternatives: 53254-0550), 5 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +5 +5 +Connector_Molex +Molex_Micro-Latch_53254-0670_1x06_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0670 (compatible alternatives: 53254-0650), 6 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +6 +6 +Connector_Molex +Molex_Micro-Latch_53254-0770_1x07_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0770 (compatible alternatives: 53254-0750), 7 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +7 +7 +Connector_Molex +Molex_Micro-Latch_53254-0870_1x08_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0870 (compatible alternatives: 53254-0850), 8 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +8 +8 +Connector_Molex +Molex_Micro-Latch_53254-0970_1x09_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0970 (compatible alternatives: 53254-0950), 9 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +9 +9 +Connector_Molex +Molex_Micro-Latch_53254-1070_1x10_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1070 (compatible alternatives: 53254-1050), 10 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +10 +10 +Connector_Molex +Molex_Micro-Latch_53254-1170_1x11_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1170 (compatible alternatives: 53254-1150), 11 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +11 +11 +Connector_Molex +Molex_Micro-Latch_53254-1270_1x12_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1270 (compatible alternatives: 53254-1250), 12 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +12 +12 +Connector_Molex +Molex_Micro-Latch_53254-1370_1x13_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1370 (compatible alternatives: 53254-1350), 13 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +13 +13 +Connector_Molex +Molex_Micro-Latch_53254-1470_1x14_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1470 (compatible alternatives: 53254-1450), 14 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +14 +14 +Connector_Molex +Molex_Micro-Latch_53254-1570_1x15_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1570 (compatible alternatives: 53254-1550), 15 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55932-0210_1x02_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0210, with PCB locator, 2 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55932-0230_1x02_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0230, 2 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55932-0310_1x03_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0310, with PCB locator, 3 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55932-0330_1x03_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0330, 3 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55932-0410_1x04_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0410, with PCB locator, 4 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55932-0430_1x04_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0430, 4 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55932-0510_1x05_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0510, with PCB locator, 5 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55932-0530_1x05_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0530, 5 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55932-0610_1x06_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0610, with PCB locator, 6 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55932-0630_1x06_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0630, 6 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55932-0710_1x07_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0710, with PCB locator, 7 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55932-0730_1x07_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0730, 7 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55932-0810_1x08_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0810, with PCB locator, 8 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55932-0830_1x08_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0830, 8 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55932-0910_1x09_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0910, with PCB locator, 9 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55932-0930_1x09_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0930, 9 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55932-1010_1x10_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1010, with PCB locator, 10 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55932-1030_1x10_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1030, 10 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55932-1110_1x11_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1110, with PCB locator, 11 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55932-1130_1x11_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1130, 11 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55932-1210_1x12_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1210, with PCB locator, 12 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55932-1230_1x12_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1230, 12 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55932-1310_1x13_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1310, with PCB locator, 13 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55932-1330_1x13_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1330, 13 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55932-1410_1x14_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1410, with PCB locator, 14 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55932-1430_1x14_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1430, 14 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55932-1510_1x15_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1510, with PCB locator, 15 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55932-1530_1x15_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1530, 15 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55935-0210_1x02_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0210, with PCB locator, 2 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55935-0230_1x02_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0230, 2 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55935-0310_1x03_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0310, with PCB locator, 3 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55935-0330_1x03_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0330, 3 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55935-0410_1x04_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0410, with PCB locator, 4 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55935-0430_1x04_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0430, 4 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55935-0510_1x05_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0510, with PCB locator, 5 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55935-0530_1x05_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0530, 5 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55935-0610_1x06_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0610, with PCB locator, 6 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55935-0630_1x06_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0630, 6 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55935-0710_1x07_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0710, with PCB locator, 7 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55935-0730_1x07_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0730, 7 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55935-0810_1x08_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0810, with PCB locator, 8 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55935-0830_1x08_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0830, 8 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55935-0910_1x09_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0910, with PCB locator, 9 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55935-0930_1x09_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0930, 9 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55935-1010_1x10_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1010, with PCB locator, 10 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55935-1030_1x10_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1030, 10 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55935-1110_1x11_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1110, with PCB locator, 11 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55935-1130_1x11_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1130, 11 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55935-1210_1x12_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1210, with PCB locator, 12 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55935-1230_1x12_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1230, 12 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55935-1310_1x13_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1310, with PCB locator, 13 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55935-1330_1x13_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1330, 13 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55935-1410_1x14_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1410, with PCB locator, 14 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55935-1430_1x14_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1430, 14 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55935-1510_1x15_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1510, with PCB locator, 15 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55935-1530_1x15_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1530, 15 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +15 +15 +Connector_Molex +Molex_Mini-Fit_Jr_5566-02A2_2x01_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-02A2, example for new mpn: 39-28-902x, 1 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5566-02A_2x01_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-02A, example for new mpn: 39-28-x02x, 1 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5566-04A2_2x02_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-04A2, example for new mpn: 39-28-904x, 2 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5566-04A_2x02_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-04A, example for new mpn: 39-28-x04x, 2 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5566-06A2_2x03_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-06A2, example for new mpn: 39-28-906x, 3 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5566-06A_2x03_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-06A, example for new mpn: 39-28-x06x, 3 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5566-08A2_2x04_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-08A2, example for new mpn: 39-28-908x, 4 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5566-08A_2x04_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-08A, example for new mpn: 39-28-x08x, 4 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5566-10A2_2x05_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-10A2, example for new mpn: 39-28-910x, 5 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5566-10A_2x05_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-10A, example for new mpn: 39-28-x10x, 5 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5566-12A2_2x06_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-12A2, example for new mpn: 39-28-912x, 6 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5566-12A_2x06_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-12A, example for new mpn: 39-28-x12x, 6 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5566-14A2_2x07_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-14A2, example for new mpn: 39-28-914x, 7 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5566-14A_2x07_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-14A, example for new mpn: 39-28-x14x, 7 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5566-16A2_2x08_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-16A2, example for new mpn: 39-28-916x, 8 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5566-16A_2x08_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-16A, example for new mpn: 39-28-x16x, 8 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5566-18A2_2x09_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-18A2, example for new mpn: 39-28-918x, 9 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5566-18A_2x09_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-18A, example for new mpn: 39-28-x18x, 9 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5566-20A2_2x10_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-20A2, example for new mpn: 39-28-920x, 10 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5566-20A_2x10_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-20A, example for new mpn: 39-28-x20x, 10 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5566-22A2_2x11_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-22A2, example for new mpn: 39-28-922x, 11 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5566-22A_2x11_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-22A, example for new mpn: 39-28-x22x, 11 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5566-24A2_2x12_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-24A2, example for new mpn: 39-28-924x, 12 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Jr_5566-24A_2x12_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-24A, example for new mpn: 39-28-x24x, 12 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Jr_5569-02A1_2x01_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-02A1, example for new mpn: 39-29-4029, 1 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5569-02A2_2x01_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-02A2, example for new mpn: 39-30-0020, 1 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5569-04A1_2x02_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-04A1, example for new mpn: 39-29-4049, 2 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5569-04A2_2x02_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-04A2, example for new mpn: 39-30-0040, 2 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5569-06A1_2x03_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-06A1, example for new mpn: 39-29-4069, 3 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5569-06A2_2x03_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-06A2, example for new mpn: 39-30-0060, 3 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5569-08A1_2x04_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-08A1, example for new mpn: 39-29-4089, 4 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5569-08A2_2x04_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-08A2, example for new mpn: 39-30-0080, 4 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5569-10A1_2x05_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-10A1, example for new mpn: 39-29-4109, 5 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5569-10A2_2x05_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-10A2, example for new mpn: 39-30-0100, 5 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5569-12A1_2x06_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-12A1, example for new mpn: 39-29-4129, 6 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5569-12A2_2x06_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-12A2, example for new mpn: 39-30-0120, 6 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5569-14A1_2x07_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-14A1, example for new mpn: 39-29-4149, 7 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5569-14A2_2x07_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-14A2, example for new mpn: 39-30-0140, 7 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5569-16A1_2x08_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-16A1, example for new mpn: 39-29-4169, 8 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5569-16A2_2x08_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-16A2, example for new mpn: 39-30-0160, 8 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5569-18A1_2x09_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-18A1, example for new mpn: 39-29-4189, 9 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5569-18A2_2x09_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-18A2, example for new mpn: 39-30-0180, 9 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5569-20A1_2x10_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-20A1, example for new mpn: 39-29-4209, 10 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5569-20A2_2x10_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-20A2, example for new mpn: 39-30-0200, 10 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5569-22A1_2x11_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-22A1, example for new mpn: 39-29-4229, 11 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5569-22A2_2x11_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-22A2, example for new mpn: 39-30-0220, 11 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5569-24A1_2x12_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-24A1, example for new mpn: 39-29-4249, 12 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Jr_5569-24A2_2x12_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-24A2, example for new mpn: 39-30-0240, 12 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Sr_42819-22XX_1x02_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-22XX, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +6 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42819-22XX_1x02_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-22XX, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +32 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42819-32XX_1x03_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-32XX, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +8 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42819-32XX_1x03_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-32XX, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +47 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42819-42XX_1x04_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-42XX, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +10 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42819-42XX_1x04_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-42XX, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +62 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42819-52XX_1x05_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-52XX, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +12 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42819-52XX_1x05_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-52XX, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +77 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42819-62XX_1x06_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-62XX, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +14 +6 +Connector_Molex +Molex_Mini-Fit_Sr_42819-62XX_1x06_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-62XX, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +92 +6 +Connector_Molex +Molex_Mini-Fit_Sr_42820-22XX_1x02_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-22XX, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +6 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42820-22XX_1x02_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-22XX, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +32 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42820-32XX_1x03_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-32XX, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +8 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42820-32XX_1x03_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-32XX, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +47 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42820-42XX_1x04_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-42XX, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +10 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42820-42XX_1x04_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-42XX, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +62 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42820-52XX_1x05_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-52XX, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +12 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42820-52XX_1x05_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-52XX, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +77 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42820-62XX_1x06_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-62XX, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +14 +6 +Connector_Molex +Molex_Mini-Fit_Sr_42820-62XX_1x06_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-62XX, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +92 +6 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx06_2x03_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +14 +6 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx06_2x03_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx06, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +92 +6 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx08_2x04_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +18 +8 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx08_2x04_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx08, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +122 +8 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx10_2x05_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +22 +10 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx10_2x05_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx10, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +152 +10 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx12_2x06_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +26 +12 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx12_2x06_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx12, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +182 +12 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx14_2x07_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +30 +14 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx14_2x07_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx14, With thermal vias in pads, 7 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +212 +14 +Connector_Molex +Molex_Nano-Fit_105309-xx02_1x02_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx02, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +2 +2 +Connector_Molex +Molex_Nano-Fit_105309-xx03_1x03_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx03, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +3 +3 +Connector_Molex +Molex_Nano-Fit_105309-xx04_1x04_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx04, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105309-xx05_1x05_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx05, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +5 +5 +Connector_Molex +Molex_Nano-Fit_105309-xx06_1x06_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx06, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105309-xx07_1x07_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx07, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +7 +7 +Connector_Molex +Molex_Nano-Fit_105309-xx08_1x08_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx08, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105310-xx04_2x02_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx04, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105310-xx06_2x03_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105310-xx08_2x04_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105310-xx10_2x05_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +10 +10 +Connector_Molex +Molex_Nano-Fit_105310-xx12_2x06_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +12 +12 +Connector_Molex +Molex_Nano-Fit_105310-xx14_2x07_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +14 +14 +Connector_Molex +Molex_Nano-Fit_105310-xx16_2x08_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx16, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +16 +16 +Connector_Molex +Molex_Nano-Fit_105313-xx02_1x02_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx02, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +2 +2 +Connector_Molex +Molex_Nano-Fit_105313-xx03_1x03_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx03, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +3 +3 +Connector_Molex +Molex_Nano-Fit_105313-xx04_1x04_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx04, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105313-xx05_1x05_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx05, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +5 +5 +Connector_Molex +Molex_Nano-Fit_105313-xx06_1x06_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx06, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105313-xx07_1x07_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx07, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +7 +7 +Connector_Molex +Molex_Nano-Fit_105313-xx08_1x08_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx08, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105314-xx04_2x02_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx04, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105314-xx06_2x03_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105314-xx08_2x04_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105314-xx10_2x05_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +10 +10 +Connector_Molex +Molex_Nano-Fit_105314-xx12_2x06_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +12 +12 +Connector_Molex +Molex_Nano-Fit_105314-xx14_2x07_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +14 +14 +Connector_Molex +Molex_Nano-Fit_105314-xx16_2x08_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx16, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +16 +16 +Connector_Molex +Molex_Panelmate_53780-0270_1x02-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0270 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +4 +3 +Connector_Molex +Molex_Panelmate_53780-0370_1x03-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0370 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +5 +4 +Connector_Molex +Molex_Panelmate_53780-0470_1x04-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0470 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +6 +5 +Connector_Molex +Molex_Panelmate_53780-0570_1x05-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0570 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +7 +6 +Connector_Molex +Molex_Panelmate_53780-0670_1x06-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0670 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +8 +7 +Connector_Molex +Molex_Panelmate_53780-0770_1x07-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0770 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +9 +8 +Connector_Molex +Molex_Panelmate_53780-0870_1x08-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0870 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +10 +9 +Connector_Molex +Molex_Panelmate_53780-0970_1x09-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0970 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +11 +10 +Connector_Molex +Molex_Panelmate_53780-1070_1x10-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1070 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +12 +11 +Connector_Molex +Molex_Panelmate_53780-1270_1x12-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1270 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +14 +13 +Connector_Molex +Molex_Panelmate_53780-1470_1x14-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1470 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +16 +15 +Connector_Molex +Molex_Panelmate_53780-1570_1x15-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1570 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +17 +16 +Connector_Molex +Molex_Panelmate_53780-1870_1x18-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1870 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +20 +19 +Connector_Molex +Molex_Panelmate_53780-3070_1x30-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-3070 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +32 +31 +Connector_Molex +Molex_Pico-Clasp_202396-0207_1x02-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0207 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +4 +3 +Connector_Molex +Molex_Pico-Clasp_202396-0307_1x03-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0307 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +5 +4 +Connector_Molex +Molex_Pico-Clasp_202396-0407_1x04-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0407 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +6 +5 +Connector_Molex +Molex_Pico-Clasp_202396-0507_1x05-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0507 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +7 +6 +Connector_Molex +Molex_Pico-Clasp_202396-0607_1x06-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0607 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +8 +7 +Connector_Molex +Molex_Pico-Clasp_202396-0707_1x07-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0707 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +9 +8 +Connector_Molex +Molex_Pico-Clasp_202396-0807_1x08-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0807 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +10 +9 +Connector_Molex +Molex_Pico-Clasp_202396-0907_1x09-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0907 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +11 +10 +Connector_Molex +Molex_Pico-Clasp_202396-1007_1x10-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1007 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +12 +11 +Connector_Molex +Molex_Pico-Clasp_202396-1107_1x11-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1107 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +13 +12 +Connector_Molex +Molex_Pico-Clasp_202396-1207_1x12-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1207 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +14 +13 +Connector_Molex +Molex_Pico-Clasp_202396-1307_1x13-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1307 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +15 +14 +Connector_Molex +Molex_Pico-Clasp_202396-1407_1x14-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1407 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +16 +15 +Connector_Molex +Molex_Pico-Clasp_202396-1507_1x15-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1507 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +17 +16 +Connector_Molex +Molex_Pico-Clasp_501331-0207_1x02-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0207 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +4 +3 +Connector_Molex +Molex_Pico-Clasp_501331-0307_1x03-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0307 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +5 +4 +Connector_Molex +Molex_Pico-Clasp_501331-0407_1x04-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0407 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +6 +5 +Connector_Molex +Molex_Pico-Clasp_501331-0507_1x05-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0507 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +7 +6 +Connector_Molex +Molex_Pico-Clasp_501331-0607_1x06-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0607 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +8 +7 +Connector_Molex +Molex_Pico-Clasp_501331-0707_1x07-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0707 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +9 +8 +Connector_Molex +Molex_Pico-Clasp_501331-0807_1x08-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0807 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +10 +9 +Connector_Molex +Molex_Pico-Clasp_501331-0907_1x09-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0907 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +11 +10 +Connector_Molex +Molex_Pico-Clasp_501331-1007_1x10-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1007 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +12 +11 +Connector_Molex +Molex_Pico-Clasp_501331-1107_1x11-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1107 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +13 +12 +Connector_Molex +Molex_Pico-Clasp_501331-1207_1x12-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1207 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +14 +13 +Connector_Molex +Molex_Pico-Clasp_501331-1307_1x13-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1307 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +15 +14 +Connector_Molex +Molex_Pico-Clasp_501331-1407_1x14-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1407 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +16 +15 +Connector_Molex +Molex_Pico-Clasp_501331-1507_1x15-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1507 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +17 +16 +Connector_Molex +Molex_Pico-EZmate_78171-0002_1x02-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0002 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +4 +3 +Connector_Molex +Molex_Pico-EZmate_78171-0003_1x03-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0003 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +5 +4 +Connector_Molex +Molex_Pico-EZmate_78171-0004_1x04-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0004 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +6 +5 +Connector_Molex +Molex_Pico-EZmate_78171-0005_1x05-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0005 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +7 +6 +Connector_Molex +Molex_Pico-EZmate_Slim_202656-0021_1x02-1MP_P1.20mm_Vertical +Molex Pico-EZmate_Slim series connector, 202656-0021 (http://www.molex.com/pdm_docs/sd/2026560021_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate_Slim side entry +0 +4 +3 +Connector_Molex +Molex_Pico-Lock_205338-0002_1x02-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0002 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +4 +3 +Connector_Molex +Molex_Pico-Lock_205338-0004_1x04-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0004 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +6 +5 +Connector_Molex +Molex_Pico-Lock_205338-0006_1x06-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0006 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +8 +7 +Connector_Molex +Molex_Pico-Lock_205338-0008_1x08-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0008 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +10 +9 +Connector_Molex +Molex_Pico-Lock_205338-0010_1x10-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0010 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +12 +11 +Connector_Molex +Molex_Pico-Lock_504050-0291_1x02-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0291 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +4 +3 +Connector_Molex +Molex_Pico-Lock_504050-0391_1x03-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0391 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +5 +4 +Connector_Molex +Molex_Pico-Lock_504050-0491_1x04-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0491 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +6 +5 +Connector_Molex +Molex_Pico-Lock_504050-0591_1x05-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0591 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +7 +6 +Connector_Molex +Molex_Pico-Lock_504050-0691_1x06-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0691 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +8 +7 +Connector_Molex +Molex_Pico-Lock_504050-0791_1x07-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0791 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +9 +8 +Connector_Molex +Molex_Pico-Lock_504050-0891_1x08-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0891 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +10 +9 +Connector_Molex +Molex_Pico-Lock_504050-0991_1x09-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0991 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +11 +10 +Connector_Molex +Molex_Pico-Lock_504050-1091_1x10-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-1091 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +12 +11 +Connector_Molex +Molex_Pico-Lock_504050-1191_1x11-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-1191 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +13 +12 +Connector_Molex +Molex_Pico-Lock_504050-1291_1x12-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-1291 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +14 +13 +Connector_Molex +Molex_Pico-SPOX_87437-1443_1x14-P1.5mm_Vertical +Molex Pico-SPOX Connector System, 87437-1443, 14 Pins per row (https://www.molex.com/pdm_docs/sd/874371443_sd.pdf#page=2) +molex pico spox 14 +0 +28 +14 +Connector_Molex +Molex_PicoBlade_53047-0210_1x02_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0210, 2 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +2 +2 +Connector_Molex +Molex_PicoBlade_53047-0310_1x03_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0310, 3 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +3 +3 +Connector_Molex +Molex_PicoBlade_53047-0410_1x04_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0410, 4 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +4 +4 +Connector_Molex +Molex_PicoBlade_53047-0510_1x05_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +5 +5 +Connector_Molex +Molex_PicoBlade_53047-0610_1x06_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0610, 6 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +6 +6 +Connector_Molex +Molex_PicoBlade_53047-0710_1x07_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0710, 7 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +7 +7 +Connector_Molex +Molex_PicoBlade_53047-0810_1x08_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0810, 8 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +8 +8 +Connector_Molex +Molex_PicoBlade_53047-0910_1x09_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0910, 9 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +9 +9 +Connector_Molex +Molex_PicoBlade_53047-1010_1x10_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1010, 10 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +10 +10 +Connector_Molex +Molex_PicoBlade_53047-1110_1x11_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1110, 11 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +11 +11 +Connector_Molex +Molex_PicoBlade_53047-1210_1x12_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1210, 12 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +12 +12 +Connector_Molex +Molex_PicoBlade_53047-1310_1x13_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1310, 13 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +13 +13 +Connector_Molex +Molex_PicoBlade_53047-1410_1x14_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1410, 14 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +14 +14 +Connector_Molex +Molex_PicoBlade_53047-1510_1x15_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1510, 15 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +15 +15 +Connector_Molex +Molex_PicoBlade_53048-0210_1x02_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0210, 2 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +2 +2 +Connector_Molex +Molex_PicoBlade_53048-0310_1x03_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0310, 3 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +3 +3 +Connector_Molex +Molex_PicoBlade_53048-0410_1x04_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0410, 4 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +4 +4 +Connector_Molex +Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +5 +5 +Connector_Molex +Molex_PicoBlade_53048-0610_1x06_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0610, 6 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +6 +6 +Connector_Molex +Molex_PicoBlade_53048-0710_1x07_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0710, 7 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +7 +7 +Connector_Molex +Molex_PicoBlade_53048-0810_1x08_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0810, 8 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +8 +8 +Connector_Molex +Molex_PicoBlade_53048-0910_1x09_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0910, 9 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +9 +9 +Connector_Molex +Molex_PicoBlade_53048-1010_1x10_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1010, 10 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +10 +10 +Connector_Molex +Molex_PicoBlade_53048-1110_1x11_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1110, 11 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +11 +11 +Connector_Molex +Molex_PicoBlade_53048-1210_1x12_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1210, 12 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +12 +12 +Connector_Molex +Molex_PicoBlade_53048-1310_1x13_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1310, 13 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +13 +13 +Connector_Molex +Molex_PicoBlade_53048-1410_1x14_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1410, 14 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +14 +14 +Connector_Molex +Molex_PicoBlade_53048-1510_1x15_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1510, 15 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +15 +15 +Connector_Molex +Molex_PicoBlade_53261-0271_1x02-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0271 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +4 +3 +Connector_Molex +Molex_PicoBlade_53261-0371_1x03-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0371 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +5 +4 +Connector_Molex +Molex_PicoBlade_53261-0471_1x04-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0471 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +6 +5 +Connector_Molex +Molex_PicoBlade_53261-0571_1x05-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0571 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +7 +6 +Connector_Molex +Molex_PicoBlade_53261-0671_1x06-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0671 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +8 +7 +Connector_Molex +Molex_PicoBlade_53261-0771_1x07-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0771 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +9 +8 +Connector_Molex +Molex_PicoBlade_53261-0871_1x08-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0871 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +10 +9 +Connector_Molex +Molex_PicoBlade_53261-0971_1x09-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0971 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +11 +10 +Connector_Molex +Molex_PicoBlade_53261-1071_1x10-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1071 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +12 +11 +Connector_Molex +Molex_PicoBlade_53261-1171_1x11-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1171 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +13 +12 +Connector_Molex +Molex_PicoBlade_53261-1271_1x12-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1271 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +14 +13 +Connector_Molex +Molex_PicoBlade_53261-1371_1x13-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1371 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +15 +14 +Connector_Molex +Molex_PicoBlade_53261-1471_1x14-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1471 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +16 +15 +Connector_Molex +Molex_PicoBlade_53261-1571_1x15-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1571 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +17 +16 +Connector_Molex +Molex_PicoBlade_53261-1771_1x17-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1771 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +19 +18 +Connector_Molex +Molex_PicoBlade_53398-0271_1x02-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0271 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +4 +3 +Connector_Molex +Molex_PicoBlade_53398-0371_1x03-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0371 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +5 +4 +Connector_Molex +Molex_PicoBlade_53398-0471_1x04-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0471 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +6 +5 +Connector_Molex +Molex_PicoBlade_53398-0571_1x05-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0571 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +7 +6 +Connector_Molex +Molex_PicoBlade_53398-0671_1x06-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0671 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +8 +7 +Connector_Molex +Molex_PicoBlade_53398-0771_1x07-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0771 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +9 +8 +Connector_Molex +Molex_PicoBlade_53398-0871_1x08-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0871 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +10 +9 +Connector_Molex +Molex_PicoBlade_53398-0971_1x09-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0971 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +11 +10 +Connector_Molex +Molex_PicoBlade_53398-1071_1x10-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1071 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +12 +11 +Connector_Molex +Molex_PicoBlade_53398-1171_1x11-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1171 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +13 +12 +Connector_Molex +Molex_PicoBlade_53398-1271_1x12-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1271 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +14 +13 +Connector_Molex +Molex_PicoBlade_53398-1371_1x13-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1371 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +15 +14 +Connector_Molex +Molex_PicoBlade_53398-1471_1x14-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1471 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +16 +15 +Connector_Molex +Molex_PicoBlade_53398-1571_1x15-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1571 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +17 +16 +Connector_Molex +Molex_Picoflex_90325-0004_2x02_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0004, 4 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +4 +4 +Connector_Molex +Molex_Picoflex_90325-0006_2x03_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0006, 6 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +6 +6 +Connector_Molex +Molex_Picoflex_90325-0008_2x04_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0008, 8 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +8 +8 +Connector_Molex +Molex_Picoflex_90325-0010_2x05_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0010, 10 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +10 +10 +Connector_Molex +Molex_Picoflex_90325-0012_2x06_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0012, 12 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +12 +12 +Connector_Molex +Molex_Picoflex_90325-0014_2x07_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0014, 14 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +14 +14 +Connector_Molex +Molex_Picoflex_90325-0016_2x08_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0016, 16 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +16 +16 +Connector_Molex +Molex_Picoflex_90325-0018_2x09_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0018, 18 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +18 +18 +Connector_Molex +Molex_Picoflex_90325-0020_2x10_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0020, 20 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +20 +20 +Connector_Molex +Molex_Picoflex_90325-0022_2x11_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0022, 22 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +22 +22 +Connector_Molex +Molex_Picoflex_90325-0024_2x12_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0024, 24 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +24 +24 +Connector_Molex +Molex_Picoflex_90325-0026_2x13_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0026, 26 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +26 +26 +Connector_Molex +Molex_Picoflex_90814-0004_2x02_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0004, 4 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +4 +4 +Connector_Molex +Molex_Picoflex_90814-0006_2x03_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0006, 6 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +6 +6 +Connector_Molex +Molex_Picoflex_90814-0008_2x04_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0008, 8 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +8 +8 +Connector_Molex +Molex_Picoflex_90814-0010_2x05_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0010, 10 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +10 +10 +Connector_Molex +Molex_Picoflex_90814-0012_2x06_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0012, 12 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +12 +12 +Connector_Molex +Molex_Picoflex_90814-0014_2x07_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0014, 14 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +14 +14 +Connector_Molex +Molex_Picoflex_90814-0016_2x08_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0016, 16 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +16 +16 +Connector_Molex +Molex_Picoflex_90814-0018_2x09_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0018, 18 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +18 +18 +Connector_Molex +Molex_Picoflex_90814-0020_2x10_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0020, 20 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +20 +20 +Connector_Molex +Molex_Picoflex_90814-0022_2x11_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0022, 22 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +22 +22 +Connector_Molex +Molex_Picoflex_90814-0024_2x12_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0024, 24 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +24 +24 +Connector_Molex +Molex_Picoflex_90814-0026_2x13_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0026, 26 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +26 +26 +Connector_Molex +Molex_SL_171971-0002_1x02_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0002 (compatible alternatives: 171971-0102, 171971-0202), 2 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +2 +2 +Connector_Molex +Molex_SL_171971-0003_1x03_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0003 (compatible alternatives: 171971-0103, 171971-0203), 3 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +3 +3 +Connector_Molex +Molex_SL_171971-0004_1x04_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0004 (compatible alternatives: 171971-0104, 171971-0204), 4 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +4 +4 +Connector_Molex +Molex_SL_171971-0005_1x05_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0005 (compatible alternatives: 171971-0105, 171971-0205), 5 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +5 +5 +Connector_Molex +Molex_SL_171971-0006_1x06_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0006 (compatible alternatives: 171971-0106, 171971-0206), 6 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +6 +6 +Connector_Molex +Molex_SL_171971-0007_1x07_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0007 (compatible alternatives: 171971-0107, 171971-0207), 7 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +7 +7 +Connector_Molex +Molex_SL_171971-0008_1x08_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0008 (compatible alternatives: 171971-0108, 171971-0208), 8 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +8 +8 +Connector_Molex +Molex_SL_171971-0009_1x09_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0009 (compatible alternatives: 171971-0109, 171971-0209), 9 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +9 +9 +Connector_Molex +Molex_SL_171971-0010_1x10_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0010 (compatible alternatives: 171971-0110, 171971-0210), 10 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +10 +10 +Connector_Molex +Molex_SL_171971-0011_1x11_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0011 (compatible alternatives: 171971-0111, 171971-0211), 11 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +11 +11 +Connector_Molex +Molex_SL_171971-0012_1x12_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0012 (compatible alternatives: 171971-0112, 171971-0212), 12 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +12 +12 +Connector_Molex +Molex_SL_171971-0013_1x13_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0013 (compatible alternatives: 171971-0113, 171971-0213), 13 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +13 +13 +Connector_Molex +Molex_SL_171971-0014_1x14_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0014 (compatible alternatives: 171971-0114, 171971-0214), 14 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +14 +14 +Connector_Molex +Molex_SL_171971-0015_1x15_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0015 (compatible alternatives: 171971-0115, 171971-0215), 15 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +15 +15 +Connector_Molex +Molex_SL_171971-0016_1x16_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0016 (compatible alternatives: 171971-0116, 171971-0216), 16 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +16 +16 +Connector_Molex +Molex_SL_171971-0017_1x17_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0017 (compatible alternatives: 171971-0117, 171971-0217), 17 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +17 +17 +Connector_Molex +Molex_SL_171971-0018_1x18_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0018 (compatible alternatives: 171971-0118, 171971-0218), 18 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +18 +18 +Connector_Molex +Molex_SL_171971-0019_1x19_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0019 (compatible alternatives: 171971-0119, 171971-0219), 19 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +19 +19 +Connector_Molex +Molex_SL_171971-0020_1x20_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0020 (compatible alternatives: 171971-0120, 171971-0220), 20 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +20 +20 +Connector_Molex +Molex_SL_171971-0021_1x21_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0021 (compatible alternatives: 171971-0121, 171971-0221), 21 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +21 +21 +Connector_Molex +Molex_SL_171971-0022_1x22_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0022 (compatible alternatives: 171971-0122, 171971-0222), 22 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +22 +22 +Connector_Molex +Molex_SL_171971-0023_1x23_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0023 (compatible alternatives: 171971-0123, 171971-0223), 23 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +23 +23 +Connector_Molex +Molex_SL_171971-0024_1x24_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0024 (compatible alternatives: 171971-0124, 171971-0224), 24 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +24 +24 +Connector_Molex +Molex_SL_171971-0025_1x25_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0025 (compatible alternatives: 171971-0125, 171971-0225), 25 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +25 +25 +Connector_Molex +Molex_SPOX_5267-02A_1x02_P2.50mm_Vertical +Molex SPOX Connector System, 5267-02A, 2 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +2 +2 +Connector_Molex +Molex_SPOX_5267-03A_1x03_P2.50mm_Vertical +Molex SPOX Connector System, 5267-03A, 3 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +3 +3 +Connector_Molex +Molex_SPOX_5267-04A_1x04_P2.50mm_Vertical +Molex SPOX Connector System, 5267-04A, 4 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +4 +4 +Connector_Molex +Molex_SPOX_5267-05A_1x05_P2.50mm_Vertical +Molex SPOX Connector System, 5267-05A, 5 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +5 +5 +Connector_Molex +Molex_SPOX_5267-06A_1x06_P2.50mm_Vertical +Molex SPOX Connector System, 5267-06A, 6 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +6 +6 +Connector_Molex +Molex_SPOX_5267-07A_1x07_P2.50mm_Vertical +Molex SPOX Connector System, 5267-07A, 7 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +7 +7 +Connector_Molex +Molex_SPOX_5267-08A_1x08_P2.50mm_Vertical +Molex SPOX Connector System, 5267-08A, 8 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +8 +8 +Connector_Molex +Molex_SPOX_5267-09A_1x09_P2.50mm_Vertical +Molex SPOX Connector System, 5267-09A, 9 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +9 +9 +Connector_Molex +Molex_SPOX_5267-10A_1x10_P2.50mm_Vertical +Molex SPOX Connector System, 5267-10A, 10 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +10 +10 +Connector_Molex +Molex_SPOX_5267-11A_1x11_P2.50mm_Vertical +Molex SPOX Connector System, 5267-11A, 11 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +11 +11 +Connector_Molex +Molex_SPOX_5267-12A_1x12_P2.50mm_Vertical +Molex SPOX Connector System, 5267-12A, 12 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +12 +12 +Connector_Molex +Molex_SPOX_5267-13A_1x13_P2.50mm_Vertical +Molex SPOX Connector System, 5267-13A, 13 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +13 +13 +Connector_Molex +Molex_SPOX_5267-14A_1x14_P2.50mm_Vertical +Molex SPOX Connector System, 5267-14A, 14 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +14 +14 +Connector_Molex +Molex_SPOX_5267-15A_1x15_P2.50mm_Vertical +Molex SPOX Connector System, 5267-15A, 15 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +15 +15 +Connector_Molex +Molex_SPOX_5268-02A_1x02_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-02A, 2 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +2 +2 +Connector_Molex +Molex_SPOX_5268-03A_1x03_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-03A, 3 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +3 +3 +Connector_Molex +Molex_SPOX_5268-04A_1x04_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-04A, 4 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +4 +4 +Connector_Molex +Molex_SPOX_5268-05A_1x05_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-05A, 5 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +5 +5 +Connector_Molex +Molex_SPOX_5268-06A_1x06_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-06A, 6 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +6 +6 +Connector_Molex +Molex_SPOX_5268-07A_1x07_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-07A, 7 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +7 +7 +Connector_Molex +Molex_SPOX_5268-08A_1x08_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-08A, 8 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +8 +8 +Connector_Molex +Molex_SPOX_5268-09A_1x09_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-09A, 9 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +9 +9 +Connector_Molex +Molex_SPOX_5268-10A_1x10_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-10A, 10 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +10 +10 +Connector_Molex +Molex_SPOX_5268-11A_1x11_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-11A, 11 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +11 +11 +Connector_Molex +Molex_SPOX_5268-12A_1x12_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-12A, 12 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +12 +12 +Connector_Molex +Molex_SPOX_5268-13A_1x13_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-13A, 13 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +13 +13 +Connector_Molex +Molex_SPOX_5268-14A_1x14_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-14A, 14 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +14 +14 +Connector_Molex +Molex_SPOX_5268-15A_1x15_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-15A, 15 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +15 +15 +Connector_Molex +Molex_Sabre_43160-0102_1x02_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +4 +2 +Connector_Molex +Molex_Sabre_43160-0102_1x02_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +30 +2 +Connector_Molex +Molex_Sabre_43160-0103_1x03_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +6 +3 +Connector_Molex +Molex_Sabre_43160-0103_1x03_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +45 +3 +Connector_Molex +Molex_Sabre_43160-0104_1x04_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +8 +4 +Connector_Molex +Molex_Sabre_43160-0104_1x04_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +60 +4 +Connector_Molex +Molex_Sabre_43160-0105_1x05_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +10 +5 +Connector_Molex +Molex_Sabre_43160-0105_1x05_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +75 +5 +Connector_Molex +Molex_Sabre_43160-0106_1x06_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +12 +6 +Connector_Molex +Molex_Sabre_43160-0106_1x06_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +90 +6 +Connector_Molex +Molex_Sabre_43160-1102_1x02_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +6 +2 +Connector_Molex +Molex_Sabre_43160-1102_1x02_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +32 +2 +Connector_Molex +Molex_Sabre_43160-1103_1x03_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +8 +3 +Connector_Molex +Molex_Sabre_43160-1103_1x03_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +47 +3 +Connector_Molex +Molex_Sabre_43160-1104_1x04_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +10 +4 +Connector_Molex +Molex_Sabre_43160-1104_1x04_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +62 +4 +Connector_Molex +Molex_Sabre_43160-1105_1x05_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +12 +5 +Connector_Molex +Molex_Sabre_43160-1105_1x05_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +77 +5 +Connector_Molex +Molex_Sabre_43160-1106_1x06_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +14 +6 +Connector_Molex +Molex_Sabre_43160-1106_1x06_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +92 +6 +Connector_Molex +Molex_Sabre_43160-2102_1x02_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +6 +2 +Connector_Molex +Molex_Sabre_43160-2102_1x02_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +32 +2 +Connector_Molex +Molex_Sabre_43160-2103_1x03_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +8 +3 +Connector_Molex +Molex_Sabre_43160-2103_1x03_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +47 +3 +Connector_Molex +Molex_Sabre_43160-2104_1x04_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +10 +4 +Connector_Molex +Molex_Sabre_43160-2104_1x04_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +62 +4 +Connector_Molex +Molex_Sabre_43160-2105_1x05_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +12 +5 +Connector_Molex +Molex_Sabre_43160-2105_1x05_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +77 +5 +Connector_Molex +Molex_Sabre_43160-2106_1x06_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +14 +6 +Connector_Molex +Molex_Sabre_43160-2106_1x06_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +92 +6 +Connector_Molex +Molex_Sabre_46007-1102_1x02_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +4 +2 +Connector_Molex +Molex_Sabre_46007-1102_1x02_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +30 +2 +Connector_Molex +Molex_Sabre_46007-1103_1x03_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +6 +3 +Connector_Molex +Molex_Sabre_46007-1103_1x03_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +45 +3 +Connector_Molex +Molex_Sabre_46007-1104_1x04_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +8 +4 +Connector_Molex +Molex_Sabre_46007-1104_1x04_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +60 +4 +Connector_Molex +Molex_Sabre_46007-1105_1x05_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +10 +5 +Connector_Molex +Molex_Sabre_46007-1105_1x05_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +75 +5 +Connector_Molex +Molex_Sabre_46007-1106_1x06_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +12 +6 +Connector_Molex +Molex_Sabre_46007-1106_1x06_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +90 +6 +Connector_Molex +Molex_SlimStack_52991-0208_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0208, 20 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +20 +20 +Connector_Molex +Molex_SlimStack_52991-0308_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0308, 30 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +30 +30 +Connector_Molex +Molex_SlimStack_52991-0408_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0408, 40 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +40 +40 +Connector_Molex +Molex_SlimStack_52991-0508_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0508, 50 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +50 +50 +Connector_Molex +Molex_SlimStack_52991-0608_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0608, 60 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +60 +60 +Connector_Molex +Molex_SlimStack_52991-0708_2x35_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0708, 70 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +70 +70 +Connector_Molex +Molex_SlimStack_52991-0808_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0808, 80 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +80 +80 +Connector_Molex +Molex_SlimStack_53748-0208_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0208, 20 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +20 +20 +Connector_Molex +Molex_SlimStack_53748-0308_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0308, 30 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +30 +30 +Connector_Molex +Molex_SlimStack_53748-0408_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0408, 40 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +40 +40 +Connector_Molex +Molex_SlimStack_53748-0608_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0608, 60 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +60 +60 +Connector_Molex +Molex_SlimStack_53748-0708_2x35_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0708, 70 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +70 +70 +Connector_Molex +Molex_SlimStack_53748-0808_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0808, 80 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +80 +80 +Connector_Molex +Molex_SlimStack_54722-0164_2x08_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0164, 16 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +16 +16 +Connector_Molex +Molex_SlimStack_54722-0204_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0204, 20 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_54722-0224_2x11_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0224, 22 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_54722-0244_2x12_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0244, 24 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_54722-0304_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0304, 30 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_54722-0344_2x17_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0344, 34 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_54722-0404_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0404, 40 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_54722-0504_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0504, 50 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_54722-0604_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0604, 60 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_54722-0804_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0804, 80 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_Molex +Molex_SlimStack_55560-0161_2x08_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0161, 16 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +16 +16 +Connector_Molex +Molex_SlimStack_55560-0201_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0201, 20 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_55560-0221_2x11_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0221, 22 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_55560-0241_2x12_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0241, 24 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_55560-0301_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0301, 30 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_55560-0341_2x17_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0341, 34 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_55560-0401_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0401, 40 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_55560-0501_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0501, 50 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_55560-0601_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0601, 60 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_55560-0801_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0801, 80 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_Molex +Molex_SlimStack_501920-3001_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-3001, 30 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_501920-4001_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-4001, 40 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_501920-5001_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-5001, 50 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_502426-0810_2x04_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-0810, 8 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +8 +8 +Connector_Molex +Molex_SlimStack_502426-1410_2x07_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-1410, 14 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +14 +14 +Connector_Molex +Molex_SlimStack_502426-2010_2x10_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2010, 20 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_502426-2210_2x11_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2210, 22 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_502426-2410_2x12_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2410, 24 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_502426-2610_2x13_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2610, 26 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +26 +26 +Connector_Molex +Molex_SlimStack_502426-3010_2x15_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3010, 30 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_502426-3210_2x16_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3210, 32 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +32 +32 +Connector_Molex +Molex_SlimStack_502426-3410_2x17_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3410, 34 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_502426-4010_2x20_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-4010, 40 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_502426-4410_2x22_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-4410, 44 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +44 +44 +Connector_Molex +Molex_SlimStack_502426-5010_2x25_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-5010, 50 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_502426-6010_2x30_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-6010, 60 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_502426-6410_2x32_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-6410, 64 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +64 +64 +Connector_Molex +Molex_SlimStack_502426-8010_2x40_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-8010, 80 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_Molex +Molex_SlimStack_502430-0820_2x04_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-0820, 8 Pins (http://www.molex.com/pdm_docs/sd/5024300820_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +8 +8 +Connector_Molex +Molex_SlimStack_502430-1410_2x07_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-1410, 14 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +14 +14 +Connector_Molex +Molex_SlimStack_502430-2010_2x10_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2010, 20 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_502430-2210_2x11_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2210, 22 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_502430-2410_2x12_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2410, 24 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_502430-2610_2x13_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2610, 26 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +26 +26 +Connector_Molex +Molex_SlimStack_502430-3010_2x15_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3010, 30 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_502430-3210_2x16_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3210, 32 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +32 +32 +Connector_Molex +Molex_SlimStack_502430-3410_2x17_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3410, 34 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_502430-4010_2x20_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-4010, 40 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_502430-4410_2x22_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-4410, 44 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +44 +44 +Connector_Molex +Molex_SlimStack_502430-5010_2x25_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-5010, 50 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_502430-6010_2x30_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-6010, 60 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_502430-6410_2x32_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-6410, 64 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +64 +64 +Connector_Molex +Molex_SlimStack_502430-8010_2x40_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-8010, 80 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_PCBEdge +4UCON_10156_2x40_P1.27mm_Socket_Horizontal +4UCON 10156 Card edge socket with 80 contacts (40 each side), through-hole, http://www.4uconnector.com/online/object/4udrawing/10156.pdf +4UCON 10156 Card edge socket with 80 contacts +0 +80 +80 +Connector_PCBEdge +BUS_AT +AT ISA 16 bits Bus Edge Connector +BUS ISA AT Edge connector +0 +98 +98 +Connector_PCBEdge +BUS_PCI +PCI bus Edge Connector +PCI bus Edge Connector +0 +240 +120 +Connector_PCBEdge +BUS_PCI_Express_Mini +Mini-PCI Express bus connector (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=11) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCI_Express_Mini_Dual +Mini-PCI Express bus connector full size with dual clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=28) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCI_Express_Mini_Full +Mini-PCI Express bus connector full size with clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=24) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCI_Express_Mini_Half +Mini-PCI Express bus connector half size with clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=25) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCIexpress_x1 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +36 +36 +Connector_PCBEdge +BUS_PCIexpress_x4 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +64 +64 +Connector_PCBEdge +BUS_PCIexpress_x8 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +98 +98 +Connector_PCBEdge +BUS_PCIexpress_x16 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +164 +164 +Connector_PCBEdge +JAE_MM60-EZH039-Bx_BUS_PCI_Express_Holder +PCI Express mini card latch for 3.9mm connector height, https://www.jae.com/direct/topics/topics_file_download/?topics_id=68909&ext_no=06&index=0&_lang=en&v=2022071912512930114109 +MiniPCI +0 +6 +1 +Connector_PCBEdge +JAE_MM60-EZH059-Bx_BUS_PCI_Express_Holder +PCI Express mini card latch for 5.9mm connector height, https://www.jae.com/direct/topics/topics_file_download/topics_id=68910&ext_no=06&index=0&_lang=en&v= +MiniPCI +0 +6 +1 +Connector_PCBEdge +SODIMM-200_1.8V_Card_edge +SODIMM 200-pins edge connector, Jedec MO-224 Variation AB compliant (1.8V DDR2 SDRAM), 0.6mm pitch, https://www.jst-mfg.com/product/pdf/eng/eDM-200P.pdf +sodimm +0 +200 +200 +Connector_PCBEdge +SODIMM-200_2.5V_Card_edge +SODIMM 200-pins edge connector, Jedec MO-224 Variation AA compliant (2.5V DDR SDRAM), 0.6mm pitch, https://www.jst-mfg.com/product/pdf/eng/eDM-200P.pdf +sodimm +0 +200 +200 +Connector_PCBEdge +Samtec_MECF-05-0_-L-DV_2x05_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-0_-NP-L-DV_2x05_P1.27mm_Edge +Highspeed card edge connector for PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-05-01-L-DV-WT_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +10 +8 +Connector_PCBEdge +Samtec_MECF-05-01-L-DV_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-01-NP-L-DV-WT_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +12 +10 +Connector_PCBEdge +Samtec_MECF-05-01-NP-L-DV_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-05-02-L-DV-WT_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +10 +8 +Connector_PCBEdge +Samtec_MECF-05-02-L-DV_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-02-NP-L-DV-WT_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +12 +10 +Connector_PCBEdge +Samtec_MECF-05-02-NP-L-DV_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-08-0_-L-DV_2x08_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-0_-NP-L-DV_2x08_P1.27mm_Edge +Highspeed card edge connector for PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-08-01-L-DV-WT_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +16 +14 +Connector_PCBEdge +Samtec_MECF-08-01-L-DV_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-01-NP-L-DV-WT_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +18 +16 +Connector_PCBEdge +Samtec_MECF-08-01-NP-L-DV_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-08-02-L-DV-WT_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +16 +14 +Connector_PCBEdge +Samtec_MECF-08-02-L-DV_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-02-NP-L-DV-WT_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +18 +16 +Connector_PCBEdge +Samtec_MECF-08-02-NP-L-DV_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-20-0_-L-DV_2x20_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-0_-NP-L-DV_2x20_P1.27mm_Edge +Highspeed card edge connector for PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-20-01-L-DV-WT_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +40 +38 +Connector_PCBEdge +Samtec_MECF-20-01-L-DV_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-01-NP-L-DV-WT_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +42 +40 +Connector_PCBEdge +Samtec_MECF-20-01-NP-L-DV_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-20-02-L-DV-WT_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +40 +38 +Connector_PCBEdge +Samtec_MECF-20-02-L-DV_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-02-NP-L-DV-WT_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +42 +40 +Connector_PCBEdge +Samtec_MECF-20-02-NP-L-DV_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-30-0_-L-DV_2x30_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-0_-NP-L-DV_2x30_P1.27mm_Edge +Highspeed card edge connector for PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-30-01-L-DV-WT_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +60 +58 +Connector_PCBEdge +Samtec_MECF-30-01-L-DV_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-01-NP-L-DV-WT_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +62 +60 +Connector_PCBEdge +Samtec_MECF-30-01-NP-L-DV_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-30-02-L-DV-WT_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +60 +58 +Connector_PCBEdge +Samtec_MECF-30-02-L-DV_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-02-NP-L-DV-WT_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +62 +60 +Connector_PCBEdge +Samtec_MECF-30-02-NP-L-DV_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-40-0_-L-DV_2x40_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-0_-NP-L-DV_2x40_P1.27mm_Edge +Highspeed card edge connector for PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-40-01-L-DV-WT_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +80 +78 +Connector_PCBEdge +Samtec_MECF-40-01-L-DV_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-01-NP-L-DV-WT_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +82 +80 +Connector_PCBEdge +Samtec_MECF-40-01-NP-L-DV_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-40-02-L-DV-WT_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +80 +78 +Connector_PCBEdge +Samtec_MECF-40-02-L-DV_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-02-NP-L-DV-WT_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +82 +80 +Connector_PCBEdge +Samtec_MECF-40-02-NP-L-DV_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-50-0_-L-DV_2x50_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-0_-NP-L-DV_2x50_P1.27mm_Edge +Highspeed card edge connector for PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-50-01-L-DV-WT_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +100 +98 +Connector_PCBEdge +Samtec_MECF-50-01-L-DV_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-01-NP-L-DV-WT_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +102 +100 +Connector_PCBEdge +Samtec_MECF-50-01-NP-L-DV_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-50-02-L-DV-WT_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +100 +98 +Connector_PCBEdge +Samtec_MECF-50-02-L-DV_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-02-NP-L-DV-WT_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +102 +100 +Connector_PCBEdge +Samtec_MECF-50-02-NP-L-DV_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-60-0_-L-DV_2x60_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-0_-NP-L-DV_2x60_P1.27mm_Edge +Highspeed card edge connector for PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-60-01-L-DV-WT_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +118 +116 +Connector_PCBEdge +Samtec_MECF-60-01-L-DV_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-01-NP-L-DV-WT_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +122 +120 +Connector_PCBEdge +Samtec_MECF-60-01-NP-L-DV_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-60-02-L-DV-WT_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +118 +116 +Connector_PCBEdge +Samtec_MECF-60-02-L-DV_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-02-NP-L-DV-WT_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +122 +120 +Connector_PCBEdge +Samtec_MECF-60-02-NP-L-DV_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-70-0_-L-DV_2x70_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-0_-NP-L-DV_2x70_P1.27mm_Edge +Highspeed card edge connector for PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +Samtec_MECF-70-01-L-DV-WT_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +138 +136 +Connector_PCBEdge +Samtec_MECF-70-01-L-DV_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-01-NP-L-DV-WT_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +142 +140 +Connector_PCBEdge +Samtec_MECF-70-01-NP-L-DV_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +Samtec_MECF-70-02-L-DV-WT_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +138 +136 +Connector_PCBEdge +Samtec_MECF-70-02-L-DV_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-02-NP-L-DV-WT_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +142 +140 +Connector_PCBEdge +Samtec_MECF-70-02-NP-L-DV_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +molex_EDGELOCK_2-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +2 +2 +Connector_PCBEdge +molex_EDGELOCK_4-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +4 +4 +Connector_PCBEdge +molex_EDGELOCK_6-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +6 +6 +Connector_PCBEdge +molex_EDGELOCK_8-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_2-G-7,62_1x02_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/2-G-7,62; number of pins: 02; pin pitch: 7.62mm; Angled || order number: 1766233 12A 630V +phoenix_contact connector GMSTBA_01x02_G_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_2-G_1x02_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/2-G; number of pins: 02; pin pitch: 7.50mm; Angled || order number: 1766343 12A 630V +phoenix_contact connector GMSTBA_01x02_G_7.50mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_3-G-7,62_1x03_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/3-G-7,62; number of pins: 03; pin pitch: 7.62mm; Angled || order number: 1766246 12A 630V +phoenix_contact connector GMSTBA_01x03_G_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_3-G_1x03_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/3-G; number of pins: 03; pin pitch: 7.50mm; Angled || order number: 1766356 12A 630V +phoenix_contact connector GMSTBA_01x03_G_7.50mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_4-G-7,62_1x04_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/4-G-7,62; number of pins: 04; pin pitch: 7.62mm; Angled || order number: 1766259 12A 630V +phoenix_contact connector GMSTBA_01x04_G_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_4-G_1x04_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/4-G; number of pins: 04; pin pitch: 7.50mm; Angled || order number: 1766369 12A 630V +phoenix_contact connector GMSTBA_01x04_G_7.50mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_5-G-7,62_1x05_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/5-G-7,62; number of pins: 05; pin pitch: 7.62mm; Angled || order number: 1766262 12A 630V +phoenix_contact connector GMSTBA_01x05_G_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_5-G_1x05_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/5-G; number of pins: 05; pin pitch: 7.50mm; Angled || order number: 1766372 12A 630V +phoenix_contact connector GMSTBA_01x05_G_7.50mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_6-G-7,62_1x06_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/6-G-7,62; number of pins: 06; pin pitch: 7.62mm; Angled || order number: 1766275 12A 630V +phoenix_contact connector GMSTBA_01x06_G_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_6-G_1x06_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/6-G; number of pins: 06; pin pitch: 7.50mm; Angled || order number: 1766385 12A 630V +phoenix_contact connector GMSTBA_01x06_G_7.50mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_7-G-7,62_1x07_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/7-G-7,62; number of pins: 07; pin pitch: 7.62mm; Angled || order number: 1766288 12A 630V +phoenix_contact connector GMSTBA_01x07_G_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_7-G_1x07_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/7-G; number of pins: 07; pin pitch: 7.50mm; Angled || order number: 1766398 12A 630V +phoenix_contact connector GMSTBA_01x07_G_7.50mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_8-G-7,62_1x08_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/8-G-7,62; number of pins: 08; pin pitch: 7.62mm; Angled || order number: 1766291 12A 630V +phoenix_contact connector GMSTBA_01x08_G_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_8-G_1x08_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/8-G; number of pins: 08; pin pitch: 7.50mm; Angled || order number: 1766408 12A 630V +phoenix_contact connector GMSTBA_01x08_G_7.50mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_9-G-7,62_1x09_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/9-G-7,62; number of pins: 09; pin pitch: 7.62mm; Angled || order number: 1766301 12A 630V +phoenix_contact connector GMSTBA_01x09_G_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_9-G_1x09_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/9-G; number of pins: 09; pin pitch: 7.50mm; Angled || order number: 1766411 12A 630V +phoenix_contact connector GMSTBA_01x09_G_7.50mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_10-G-7,62_1x10_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/10-G-7,62; number of pins: 10; pin pitch: 7.62mm; Angled || order number: 1766314 12A 630V +phoenix_contact connector GMSTBA_01x10_G_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_10-G_1x10_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/10-G; number of pins: 10; pin pitch: 7.50mm; Angled || order number: 1766424 12A 630V +phoenix_contact connector GMSTBA_01x10_G_7.50mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_11-G-7,62_1x11_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/11-G-7,62; number of pins: 11; pin pitch: 7.62mm; Angled || order number: 1766327 12A 630V +phoenix_contact connector GMSTBA_01x11_G_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_11-G_1x11_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/11-G; number of pins: 11; pin pitch: 7.50mm; Angled || order number: 1766437 12A 630V +phoenix_contact connector GMSTBA_01x11_G_7.50mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_12-G-7,62_1x12_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/12-G-7,62; number of pins: 12; pin pitch: 7.62mm; Angled || order number: 1766330 12A 630V +phoenix_contact connector GMSTBA_01x12_G_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_12-G_1x12_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/12-G; number of pins: 12; pin pitch: 7.50mm; Angled || order number: 1766440 12A 630V +phoenix_contact connector GMSTBA_01x12_G_7.50mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_2-G-7,62_1x02_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/2-G-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical || order number: 1766770 12A 630V +phoenix_contact connector GMSTBVA_01x02_G_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_2-G_1x02_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/2-G; number of pins: 02; pin pitch: 7.50mm; Vertical || order number: 1766660 12A 630V +phoenix_contact connector GMSTBVA_01x02_G_7.50mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_3-G-7,62_1x03_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/3-G-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical || order number: 1766783 12A 630V +phoenix_contact connector GMSTBVA_01x03_G_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_3-G_1x03_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/3-G; number of pins: 03; pin pitch: 7.50mm; Vertical || order number: 1766673 12A 630V +phoenix_contact connector GMSTBVA_01x03_G_7.50mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_4-G-7,62_1x04_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/4-G-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical || order number: 1766796 12A 630V +phoenix_contact connector GMSTBVA_01x04_G_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_4-G_1x04_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/4-G; number of pins: 04; pin pitch: 7.50mm; Vertical || order number: 1766686 12A 630V +phoenix_contact connector GMSTBVA_01x04_G_7.50mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_5-G-7,62_1x05_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/5-G-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical || order number: 1766806 12A 630V +phoenix_contact connector GMSTBVA_01x05_G_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_5-G_1x05_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/5-G; number of pins: 05; pin pitch: 7.50mm; Vertical || order number: 1766699 12A 630V +phoenix_contact connector GMSTBVA_01x05_G_7.50mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_6-G-7,62_1x06_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/6-G-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical || order number: 1766819 12A 630V +phoenix_contact connector GMSTBVA_01x06_G_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_6-G_1x06_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/6-G; number of pins: 06; pin pitch: 7.50mm; Vertical || order number: 1766709 12A 630V +phoenix_contact connector GMSTBVA_01x06_G_7.50mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_7-G-7,62_1x07_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/7-G-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical || order number: 1766822 12A 630V +phoenix_contact connector GMSTBVA_01x07_G_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_7-G_1x07_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/7-G; number of pins: 07; pin pitch: 7.50mm; Vertical || order number: 1766712 12A 630V +phoenix_contact connector GMSTBVA_01x07_G_7.50mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_8-G-7,62_1x08_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/8-G-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical || order number: 1766835 12A 630V +phoenix_contact connector GMSTBVA_01x08_G_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_8-G_1x08_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/8-G; number of pins: 08; pin pitch: 7.50mm; Vertical || order number: 1766725 12A 630V +phoenix_contact connector GMSTBVA_01x08_G_7.50mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_9-G-7,62_1x09_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/9-G-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical || order number: 1766848 12A 630V +phoenix_contact connector GMSTBVA_01x09_G_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_9-G_1x09_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/9-G; number of pins: 09; pin pitch: 7.50mm; Vertical || order number: 1766738 12A 630V +phoenix_contact connector GMSTBVA_01x09_G_7.50mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_10-G-7,62_1x10_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/10-G-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical || order number: 1766851 12A 630V +phoenix_contact connector GMSTBVA_01x10_G_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_10-G_1x10_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/10-G; number of pins: 10; pin pitch: 7.50mm; Vertical || order number: 1766741 12A 630V +phoenix_contact connector GMSTBVA_01x10_G_7.50mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_11-G-7,62_1x11_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/11-G-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical || order number: 1766864 12A 630V +phoenix_contact connector GMSTBVA_01x11_G_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_11-G_1x11_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/11-G; number of pins: 11; pin pitch: 7.50mm; Vertical || order number: 1766754 12A 630V +phoenix_contact connector GMSTBVA_01x11_G_7.50mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_12-G-7,62_1x12_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/12-G-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical || order number: 1766877 12A 630V +phoenix_contact connector GMSTBVA_01x12_G_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_12-G_1x12_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/12-G; number of pins: 12; pin pitch: 7.50mm; Vertical || order number: 1766767 12A 630V +phoenix_contact connector GMSTBVA_01x12_G_7.50mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_2-GF-7,62_1x02_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829154 12A 630V +phoenix_contact connector GMSTBV_01x02_GF_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_2-GF-7,62_1x02_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829154 12A 630V +phoenix_contact connector GMSTBV_01x02_GF_7.62mm_MH +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_3-GF-7,62_1x03_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829167 12A 630V +phoenix_contact connector GMSTBV_01x03_GF_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_3-GF-7,62_1x03_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829167 12A 630V +phoenix_contact connector GMSTBV_01x03_GF_7.62mm_MH +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_4-GF-7,62_1x04_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829170 12A 630V +phoenix_contact connector GMSTBV_01x04_GF_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_4-GF-7,62_1x04_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829170 12A 630V +phoenix_contact connector GMSTBV_01x04_GF_7.62mm_MH +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_5-GF-7,62_1x05_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829183 12A 630V +phoenix_contact connector GMSTBV_01x05_GF_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_5-GF-7,62_1x05_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829183 12A 630V +phoenix_contact connector GMSTBV_01x05_GF_7.62mm_MH +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_6-GF-7,62_1x06_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829196 12A 630V +phoenix_contact connector GMSTBV_01x06_GF_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_6-GF-7,62_1x06_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829196 12A 630V +phoenix_contact connector GMSTBV_01x06_GF_7.62mm_MH +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_7-GF-7,62_1x07_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829206 12A 630V +phoenix_contact connector GMSTBV_01x07_GF_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_7-GF-7,62_1x07_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829206 12A 630V +phoenix_contact connector GMSTBV_01x07_GF_7.62mm_MH +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_8-GF-7,62_1x08_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829219 12A 630V +phoenix_contact connector GMSTBV_01x08_GF_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_8-GF-7,62_1x08_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829219 12A 630V +phoenix_contact connector GMSTBV_01x08_GF_7.62mm_MH +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_9-GF-7,62_1x09_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829222 12A 630V +phoenix_contact connector GMSTBV_01x09_GF_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_9-GF-7,62_1x09_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829222 12A 630V +phoenix_contact connector GMSTBV_01x09_GF_7.62mm_MH +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_10-GF-7,62_1x10_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829235 12A 630V +phoenix_contact connector GMSTBV_01x10_GF_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_10-GF-7,62_1x10_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829235 12A 630V +phoenix_contact connector GMSTBV_01x10_GF_7.62mm_MH +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_11-GF-7,62_1x11_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829248 12A 630V +phoenix_contact connector GMSTBV_01x11_GF_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_11-GF-7,62_1x11_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829248 12A 630V +phoenix_contact connector GMSTBV_01x11_GF_7.62mm_MH +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_12-GF-7,62_1x12_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829251 12A 630V +phoenix_contact connector GMSTBV_01x12_GF_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_12-GF-7,62_1x12_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829251 12A 630V +phoenix_contact connector GMSTBV_01x12_GF_7.62mm_MH +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_2-GF-7,62_1x02_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806229 12A 630V +phoenix_contact connector GMSTB_01x02_GF_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_2-GF-7,62_1x02_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806229 12A 630V +phoenix_contact connector GMSTB_01x02_GF_7.62mm_MH +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_3-GF-7,62_1x03_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806232 12A 630V +phoenix_contact connector GMSTB_01x03_GF_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_3-GF-7,62_1x03_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806232 12A 630V +phoenix_contact connector GMSTB_01x03_GF_7.62mm_MH +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_4-GF-7,62_1x04_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806245 12A 630V +phoenix_contact connector GMSTB_01x04_GF_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_4-GF-7,62_1x04_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806245 12A 630V +phoenix_contact connector GMSTB_01x04_GF_7.62mm_MH +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_5-GF-7,62_1x05_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806258 12A 630V +phoenix_contact connector GMSTB_01x05_GF_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_5-GF-7,62_1x05_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806258 12A 630V +phoenix_contact connector GMSTB_01x05_GF_7.62mm_MH +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_6-GF-7,62_1x06_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806261 12A 630V +phoenix_contact connector GMSTB_01x06_GF_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_6-GF-7,62_1x06_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806261 12A 630V +phoenix_contact connector GMSTB_01x06_GF_7.62mm_MH +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_7-GF-7,62_1x07_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806274 12A 630V +phoenix_contact connector GMSTB_01x07_GF_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_7-GF-7,62_1x07_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806274 12A 630V +phoenix_contact connector GMSTB_01x07_GF_7.62mm_MH +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_8-GF-7,62_1x08_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806287 12A 630V +phoenix_contact connector GMSTB_01x08_GF_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_8-GF-7,62_1x08_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806287 12A 630V +phoenix_contact connector GMSTB_01x08_GF_7.62mm_MH +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_9-GF-7,62_1x09_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806290 12A 630V +phoenix_contact connector GMSTB_01x09_GF_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_9-GF-7,62_1x09_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806290 12A 630V +phoenix_contact connector GMSTB_01x09_GF_7.62mm_MH +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_10-GF-7,62_1x10_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806300 12A 630V +phoenix_contact connector GMSTB_01x10_GF_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_10-GF-7,62_1x10_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806300 12A 630V +phoenix_contact connector GMSTB_01x10_GF_7.62mm_MH +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_11-GF-7,62_1x11_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806313 12A 630V +phoenix_contact connector GMSTB_01x11_GF_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_11-GF-7,62_1x11_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806313 12A 630V +phoenix_contact connector GMSTB_01x11_GF_7.62mm_MH +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_12-GF-7,62_1x12_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806326 12A 630V +phoenix_contact connector GMSTB_01x12_GF_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_12-GF-7,62_1x12_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806326 12A 630V +phoenix_contact connector GMSTB_01x12_GF_7.62mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-G-3.5_1x02_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical || order number: 1843606 8A 160V +phoenix_contact connector MCV_01x02_G_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-G-3.81_1x02_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical || order number: 1803426 8A 160V +phoenix_contact connector MCV_01x02_G_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.5_1x02_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843224 8A 160V +phoenix_contact connector MCV_01x02_GF_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.5_1x02_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843224 8A 160V +phoenix_contact connector MCV_01x02_GF_3.5mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.81_1x02_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830596 8A 160V +phoenix_contact connector MCV_01x02_GF_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.81_1x02_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830596 8A 160V +phoenix_contact connector MCV_01x02_GF_3.81mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-G-3.5_1x03_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical || order number: 1843619 8A 160V +phoenix_contact connector MCV_01x03_G_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-G-3.81_1x03_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical || order number: 1803439 8A 160V +phoenix_contact connector MCV_01x03_G_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.5_1x03_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843237 8A 160V +phoenix_contact connector MCV_01x03_GF_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.5_1x03_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843237 8A 160V +phoenix_contact connector MCV_01x03_GF_3.5mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.81_1x03_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830606 8A 160V +phoenix_contact connector MCV_01x03_GF_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.81_1x03_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830606 8A 160V +phoenix_contact connector MCV_01x03_GF_3.81mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-G-3.5_1x04_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical || order number: 1843622 8A 160V +phoenix_contact connector MCV_01x04_G_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical || order number: 1803442 8A 160V +phoenix_contact connector MCV_01x04_G_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.5_1x04_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843240 8A 160V +phoenix_contact connector MCV_01x04_GF_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.5_1x04_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843240 8A 160V +phoenix_contact connector MCV_01x04_GF_3.5mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.81_1x04_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830619 8A 160V +phoenix_contact connector MCV_01x04_GF_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.81_1x04_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830619 8A 160V +phoenix_contact connector MCV_01x04_GF_3.81mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-G-3.5_1x05_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical || order number: 1843635 8A 160V +phoenix_contact connector MCV_01x05_G_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-G-3.81_1x05_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical || order number: 1803455 8A 160V +phoenix_contact connector MCV_01x05_G_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.5_1x05_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843253 8A 160V +phoenix_contact connector MCV_01x05_GF_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.5_1x05_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843253 8A 160V +phoenix_contact connector MCV_01x05_GF_3.5mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.81_1x05_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830622 8A 160V +phoenix_contact connector MCV_01x05_GF_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.81_1x05_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830622 8A 160V +phoenix_contact connector MCV_01x05_GF_3.81mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-G-3.5_1x06_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical || order number: 1843648 8A 160V +phoenix_contact connector MCV_01x06_G_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-G-3.81_1x06_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical || order number: 1803468 8A 160V +phoenix_contact connector MCV_01x06_G_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.5_1x06_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843266 8A 160V +phoenix_contact connector MCV_01x06_GF_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.5_1x06_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843266 8A 160V +phoenix_contact connector MCV_01x06_GF_3.5mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.81_1x06_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830635 8A 160V +phoenix_contact connector MCV_01x06_GF_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.81_1x06_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830635 8A 160V +phoenix_contact connector MCV_01x06_GF_3.81mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-G-3.5_1x07_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical || order number: 1843651 8A 160V +phoenix_contact connector MCV_01x07_G_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-G-3.81_1x07_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical || order number: 1803471 8A 160V +phoenix_contact connector MCV_01x07_G_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.5_1x07_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843279 8A 160V +phoenix_contact connector MCV_01x07_GF_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.5_1x07_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843279 8A 160V +phoenix_contact connector MCV_01x07_GF_3.5mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.81_1x07_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830648 8A 160V +phoenix_contact connector MCV_01x07_GF_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.81_1x07_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830648 8A 160V +phoenix_contact connector MCV_01x07_GF_3.81mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-G-3.5_1x08_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical || order number: 1843664 8A 160V +phoenix_contact connector MCV_01x08_G_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-G-3.81_1x08_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical || order number: 1803484 8A 160V +phoenix_contact connector MCV_01x08_G_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.5_1x08_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843282 8A 160V +phoenix_contact connector MCV_01x08_GF_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.5_1x08_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843282 8A 160V +phoenix_contact connector MCV_01x08_GF_3.5mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.81_1x08_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830651 8A 160V +phoenix_contact connector MCV_01x08_GF_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.81_1x08_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830651 8A 160V +phoenix_contact connector MCV_01x08_GF_3.81mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-G-3.5_1x09_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical || order number: 1843677 8A 160V +phoenix_contact connector MCV_01x09_G_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-G-3.81_1x09_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical || order number: 1803497 8A 160V +phoenix_contact connector MCV_01x09_G_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.5_1x09_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843295 8A 160V +phoenix_contact connector MCV_01x09_GF_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.5_1x09_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843295 8A 160V +phoenix_contact connector MCV_01x09_GF_3.5mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.81_1x09_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830664 8A 160V +phoenix_contact connector MCV_01x09_GF_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.81_1x09_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830664 8A 160V +phoenix_contact connector MCV_01x09_GF_3.81mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-G-3.5_1x10_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical || order number: 1843680 8A 160V +phoenix_contact connector MCV_01x10_G_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-G-3.81_1x10_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical || order number: 1803507 8A 160V +phoenix_contact connector MCV_01x10_G_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.5_1x10_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843305 8A 160V +phoenix_contact connector MCV_01x10_GF_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.5_1x10_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843305 8A 160V +phoenix_contact connector MCV_01x10_GF_3.5mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.81_1x10_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830677 8A 160V +phoenix_contact connector MCV_01x10_GF_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.81_1x10_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830677 8A 160V +phoenix_contact connector MCV_01x10_GF_3.81mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-G-3.5_1x11_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical || order number: 1843693 8A 160V +phoenix_contact connector MCV_01x11_G_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-G-3.81_1x11_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical || order number: 1803510 8A 160V +phoenix_contact connector MCV_01x11_G_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.5_1x11_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843318 8A 160V +phoenix_contact connector MCV_01x11_GF_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.5_1x11_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843318 8A 160V +phoenix_contact connector MCV_01x11_GF_3.5mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.81_1x11_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830680 8A 160V +phoenix_contact connector MCV_01x11_GF_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.81_1x11_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830680 8A 160V +phoenix_contact connector MCV_01x11_GF_3.81mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-G-3.5_1x12_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical || order number: 1843703 8A 160V +phoenix_contact connector MCV_01x12_G_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-G-3.81_1x12_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical || order number: 1803523 8A 160V +phoenix_contact connector MCV_01x12_G_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.5_1x12_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843321 8A 160V +phoenix_contact connector MCV_01x12_GF_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.5_1x12_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843321 8A 160V +phoenix_contact connector MCV_01x12_GF_3.5mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.81_1x12_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830693 8A 160V +phoenix_contact connector MCV_01x12_GF_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.81_1x12_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830693 8A 160V +phoenix_contact connector MCV_01x12_GF_3.81mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-G-3.5_1x13_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/13-G-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical || order number: 1843716 8A 160V +phoenix_contact connector MCV_01x13_G_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-G-3.81_1x13_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/13-G-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical || order number: 1803536 8A 160V +phoenix_contact connector MCV_01x13_G_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.5_1x13_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843334 8A 160V +phoenix_contact connector MCV_01x13_GF_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.5_1x13_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843334 8A 160V +phoenix_contact connector MCV_01x13_GF_3.5mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.81_1x13_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830703 8A 160V +phoenix_contact connector MCV_01x13_GF_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.81_1x13_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830703 8A 160V +phoenix_contact connector MCV_01x13_GF_3.81mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-G-3.5_1x14_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/14-G-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical || order number: 1843729 8A 160V +phoenix_contact connector MCV_01x14_G_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-G-3.81_1x14_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/14-G-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical || order number: 1803549 8A 160V +phoenix_contact connector MCV_01x14_G_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.5_1x14_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843347 8A 160V +phoenix_contact connector MCV_01x14_GF_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.5_1x14_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843347 8A 160V +phoenix_contact connector MCV_01x14_GF_3.5mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.81_1x14_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830716 8A 160V +phoenix_contact connector MCV_01x14_GF_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.81_1x14_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830716 8A 160V +phoenix_contact connector MCV_01x14_GF_3.81mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-G-3.5_1x15_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/15-G-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical || order number: 1843732 8A 160V +phoenix_contact connector MCV_01x15_G_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-G-3.81_1x15_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/15-G-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical || order number: 1803552 8A 160V +phoenix_contact connector MCV_01x15_G_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.5_1x15_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843350 8A 160V +phoenix_contact connector MCV_01x15_GF_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.5_1x15_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843350 8A 160V +phoenix_contact connector MCV_01x15_GF_3.5mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.81_1x15_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830729 8A 160V +phoenix_contact connector MCV_01x15_GF_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.81_1x15_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830729 8A 160V +phoenix_contact connector MCV_01x15_GF_3.81mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-G-3.5_1x16_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/16-G-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical || order number: 1843745 8A 160V +phoenix_contact connector MCV_01x16_G_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-G-3.81_1x16_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/16-G-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical || order number: 1803565 8A 160V +phoenix_contact connector MCV_01x16_G_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.5_1x16_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843363 8A 160V +phoenix_contact connector MCV_01x16_GF_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.5_1x16_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843363 8A 160V +phoenix_contact connector MCV_01x16_GF_3.5mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.81_1x16_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830732 8A 160V +phoenix_contact connector MCV_01x16_GF_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.81_1x16_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830732 8A 160V +phoenix_contact connector MCV_01x16_GF_3.81mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-G-3.5_1x02_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-3.5; number of pins: 02; pin pitch: 3.50mm; Angled || order number: 1844210 8A 160V +phoenix_contact connector MC_01x02_G_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-G-3.81_1x02_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-3.81; number of pins: 02; pin pitch: 3.81mm; Angled || order number: 1803277 8A 160V +phoenix_contact connector MC_01x02_G_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.5_1x02_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843790 8A 160V +phoenix_contact connector MC_01x02_GF_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.5_1x02_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843790 8A 160V +phoenix_contact connector MC_01x02_GF_3.5mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.81_1x02_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827868 8A 160V +phoenix_contact connector MC_01x02_GF_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.81_1x02_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827868 8A 160V +phoenix_contact connector MC_01x02_GF_3.81mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-G-3.5_1x03_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-3.5; number of pins: 03; pin pitch: 3.50mm; Angled || order number: 1844223 8A 160V +phoenix_contact connector MC_01x03_G_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-G-3.81_1x03_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-3.81; number of pins: 03; pin pitch: 3.81mm; Angled || order number: 1803280 8A 160V +phoenix_contact connector MC_01x03_G_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.5_1x03_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843800 8A 160V +phoenix_contact connector MC_01x03_GF_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.5_1x03_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843800 8A 160V +phoenix_contact connector MC_01x03_GF_3.5mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.81_1x03_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827871 8A 160V +phoenix_contact connector MC_01x03_GF_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.81_1x03_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827871 8A 160V +phoenix_contact connector MC_01x03_GF_3.81mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-G-3.5_1x04_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-3.5; number of pins: 04; pin pitch: 3.50mm; Angled || order number: 1844236 8A 160V +phoenix_contact connector MC_01x04_G_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-G-3.81_1x04_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-3.81; number of pins: 04; pin pitch: 3.81mm; Angled || order number: 1803293 8A 160V +phoenix_contact connector MC_01x04_G_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.5_1x04_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843813 8A 160V +phoenix_contact connector MC_01x04_GF_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.5_1x04_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843813 8A 160V +phoenix_contact connector MC_01x04_GF_3.5mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.81_1x04_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827884 8A 160V +phoenix_contact connector MC_01x04_GF_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.81_1x04_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827884 8A 160V +phoenix_contact connector MC_01x04_GF_3.81mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-G-3.5_1x05_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-3.5; number of pins: 05; pin pitch: 3.50mm; Angled || order number: 1844249 8A 160V +phoenix_contact connector MC_01x05_G_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-G-3.81_1x05_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-3.81; number of pins: 05; pin pitch: 3.81mm; Angled || order number: 1803303 8A 160V +phoenix_contact connector MC_01x05_G_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.5_1x05_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843826 8A 160V +phoenix_contact connector MC_01x05_GF_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.5_1x05_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843826 8A 160V +phoenix_contact connector MC_01x05_GF_3.5mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.81_1x05_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827897 8A 160V +phoenix_contact connector MC_01x05_GF_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.81_1x05_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827897 8A 160V +phoenix_contact connector MC_01x05_GF_3.81mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-G-3.5_1x06_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-3.5; number of pins: 06; pin pitch: 3.50mm; Angled || order number: 1844252 8A 160V +phoenix_contact connector MC_01x06_G_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-G-3.81_1x06_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-3.81; number of pins: 06; pin pitch: 3.81mm; Angled || order number: 1803316 8A 160V +phoenix_contact connector MC_01x06_G_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.5_1x06_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843839 8A 160V +phoenix_contact connector MC_01x06_GF_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.5_1x06_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843839 8A 160V +phoenix_contact connector MC_01x06_GF_3.5mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.81_1x06_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827907 8A 160V +phoenix_contact connector MC_01x06_GF_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.81_1x06_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827907 8A 160V +phoenix_contact connector MC_01x06_GF_3.81mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-G-3.5_1x07_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-3.5; number of pins: 07; pin pitch: 3.50mm; Angled || order number: 1844265 8A 160V +phoenix_contact connector MC_01x07_G_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-G-3.81_1x07_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-3.81; number of pins: 07; pin pitch: 3.81mm; Angled || order number: 1803329 8A 160V +phoenix_contact connector MC_01x07_G_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.5_1x07_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843842 8A 160V +phoenix_contact connector MC_01x07_GF_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.5_1x07_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843842 8A 160V +phoenix_contact connector MC_01x07_GF_3.5mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.81_1x07_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827910 8A 160V +phoenix_contact connector MC_01x07_GF_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.81_1x07_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827910 8A 160V +phoenix_contact connector MC_01x07_GF_3.81mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-G-3.5_1x08_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-3.5; number of pins: 08; pin pitch: 3.50mm; Angled || order number: 1844278 8A 160V +phoenix_contact connector MC_01x08_G_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-G-3.81_1x08_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-3.81; number of pins: 08; pin pitch: 3.81mm; Angled || order number: 1803332 8A 160V +phoenix_contact connector MC_01x08_G_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.5_1x08_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843855 8A 160V +phoenix_contact connector MC_01x08_GF_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.5_1x08_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843855 8A 160V +phoenix_contact connector MC_01x08_GF_3.5mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.81_1x08_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827923 8A 160V +phoenix_contact connector MC_01x08_GF_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.81_1x08_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827923 8A 160V +phoenix_contact connector MC_01x08_GF_3.81mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-G-3.5_1x09_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-3.5; number of pins: 09; pin pitch: 3.50mm; Angled || order number: 1844281 8A 160V +phoenix_contact connector MC_01x09_G_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-G-3.81_1x09_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-3.81; number of pins: 09; pin pitch: 3.81mm; Angled || order number: 1803345 8A 160V +phoenix_contact connector MC_01x09_G_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.5_1x09_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843868 8A 160V +phoenix_contact connector MC_01x09_GF_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.5_1x09_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843868 8A 160V +phoenix_contact connector MC_01x09_GF_3.5mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.81_1x09_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827936 8A 160V +phoenix_contact connector MC_01x09_GF_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.81_1x09_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827936 8A 160V +phoenix_contact connector MC_01x09_GF_3.81mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-G-3.5_1x10_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-3.5; number of pins: 10; pin pitch: 3.50mm; Angled || order number: 1844294 8A 160V +phoenix_contact connector MC_01x10_G_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-G-3.81_1x10_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-3.81; number of pins: 10; pin pitch: 3.81mm; Angled || order number: 1803358 8A 160V +phoenix_contact connector MC_01x10_G_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.5_1x10_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843871 8A 160V +phoenix_contact connector MC_01x10_GF_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.5_1x10_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843871 8A 160V +phoenix_contact connector MC_01x10_GF_3.5mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.81_1x10_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827949 8A 160V +phoenix_contact connector MC_01x10_GF_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.81_1x10_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827949 8A 160V +phoenix_contact connector MC_01x10_GF_3.81mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-G-3.5_1x11_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-3.5; number of pins: 11; pin pitch: 3.50mm; Angled || order number: 1844304 8A 160V +phoenix_contact connector MC_01x11_G_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-G-3.81_1x11_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-3.81; number of pins: 11; pin pitch: 3.81mm; Angled || order number: 1803361 8A 160V +phoenix_contact connector MC_01x11_G_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.5_1x11_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843884 8A 160V +phoenix_contact connector MC_01x11_GF_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.5_1x11_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843884 8A 160V +phoenix_contact connector MC_01x11_GF_3.5mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.81_1x11_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827952 8A 160V +phoenix_contact connector MC_01x11_GF_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.81_1x11_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827952 8A 160V +phoenix_contact connector MC_01x11_GF_3.81mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-G-3.5_1x12_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-3.5; number of pins: 12; pin pitch: 3.50mm; Angled || order number: 1844317 8A 160V +phoenix_contact connector MC_01x12_G_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-G-3.81_1x12_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-3.81; number of pins: 12; pin pitch: 3.81mm; Angled || order number: 1803374 8A 160V +phoenix_contact connector MC_01x12_G_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.5_1x12_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843897 8A 160V +phoenix_contact connector MC_01x12_GF_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.5_1x12_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843897 8A 160V +phoenix_contact connector MC_01x12_GF_3.5mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.81_1x12_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827965 8A 160V +phoenix_contact connector MC_01x12_GF_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.81_1x12_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827965 8A 160V +phoenix_contact connector MC_01x12_GF_3.81mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-G-3.5_1x13_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/13-G-3.5; number of pins: 13; pin pitch: 3.50mm; Angled || order number: 1844320 8A 160V +phoenix_contact connector MC_01x13_G_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-G-3.81_1x13_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/13-G-3.81; number of pins: 13; pin pitch: 3.81mm; Angled || order number: 1803387 8A 160V +phoenix_contact connector MC_01x13_G_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.5_1x13_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843907 8A 160V +phoenix_contact connector MC_01x13_GF_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.5_1x13_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843907 8A 160V +phoenix_contact connector MC_01x13_GF_3.5mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.81_1x13_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827978 8A 160V +phoenix_contact connector MC_01x13_GF_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.81_1x13_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827978 8A 160V +phoenix_contact connector MC_01x13_GF_3.81mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-G-3.5_1x14_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/14-G-3.5; number of pins: 14; pin pitch: 3.50mm; Angled || order number: 1844333 8A 160V +phoenix_contact connector MC_01x14_G_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-G-3.81_1x14_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/14-G-3.81; number of pins: 14; pin pitch: 3.81mm; Angled || order number: 1803390 8A 160V +phoenix_contact connector MC_01x14_G_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.5_1x14_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843910 8A 160V +phoenix_contact connector MC_01x14_GF_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.5_1x14_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843910 8A 160V +phoenix_contact connector MC_01x14_GF_3.5mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.81_1x14_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827981 8A 160V +phoenix_contact connector MC_01x14_GF_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.81_1x14_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827981 8A 160V +phoenix_contact connector MC_01x14_GF_3.81mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-G-3.5_1x15_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/15-G-3.5; number of pins: 15; pin pitch: 3.50mm; Angled || order number: 1844346 8A 160V +phoenix_contact connector MC_01x15_G_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-G-3.81_1x15_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/15-G-3.81; number of pins: 15; pin pitch: 3.81mm; Angled || order number: 1803400 8A 160V +phoenix_contact connector MC_01x15_G_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.5_1x15_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843923 8A 160V +phoenix_contact connector MC_01x15_GF_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.5_1x15_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843923 8A 160V +phoenix_contact connector MC_01x15_GF_3.5mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.81_1x15_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827994 8A 160V +phoenix_contact connector MC_01x15_GF_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.81_1x15_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827994 8A 160V +phoenix_contact connector MC_01x15_GF_3.81mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-G-3.5_1x16_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/16-G-3.5; number of pins: 16; pin pitch: 3.50mm; Angled || order number: 1844359 8A 160V +phoenix_contact connector MC_01x16_G_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-G-3.81_1x16_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/16-G-3.81; number of pins: 16; pin pitch: 3.81mm; Angled || order number: 1803413 8A 160V +phoenix_contact connector MC_01x16_G_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.5_1x16_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843936 8A 160V +phoenix_contact connector MC_01x16_GF_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.5_1x16_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843936 8A 160V +phoenix_contact connector MC_01x16_GF_3.5mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.81_1x16_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Angled; threaded flange || order number: 1828003 8A 160V +phoenix_contact connector MC_01x16_GF_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.81_1x16_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1828003 8A 160V +phoenix_contact connector MC_01x16_GF_3.81mm_MH +0 +16 +16 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-G-5.08_1x02_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical || order number: 1836299 8A 320V +phoenix_contact connector MCV_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-GF-5.08_1x02_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847615 8A 320V +phoenix_contact connector MCV_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-GF-5.08_1x02_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847615 8A 320V +phoenix_contact connector MCV_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-G-5.08_1x03_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical || order number: 1836309 8A 320V +phoenix_contact connector MCV_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-GF-5.08_1x03_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847628 8A 320V +phoenix_contact connector MCV_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-GF-5.08_1x03_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847628 8A 320V +phoenix_contact connector MCV_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-G-5.08_1x04_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical || order number: 1836312 8A 320V +phoenix_contact connector MCV_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-GF-5.08_1x04_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847631 8A 320V +phoenix_contact connector MCV_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-GF-5.08_1x04_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847631 8A 320V +phoenix_contact connector MCV_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-G-5.08_1x05_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical || order number: 1836325 8A 320V +phoenix_contact connector MCV_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-GF-5.08_1x05_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847644 8A 320V +phoenix_contact connector MCV_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-GF-5.08_1x05_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847644 8A 320V +phoenix_contact connector MCV_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-G-5.08_1x06_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical || order number: 1836338 8A 320V +phoenix_contact connector MCV_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-GF-5.08_1x06_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847657 8A 320V +phoenix_contact connector MCV_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-GF-5.08_1x06_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847657 8A 320V +phoenix_contact connector MCV_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-G-5.08_1x07_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical || order number: 1836341 8A 320V +phoenix_contact connector MCV_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-GF-5.08_1x07_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847660 8A 320V +phoenix_contact connector MCV_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-GF-5.08_1x07_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847660 8A 320V +phoenix_contact connector MCV_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-G-5.08_1x08_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical || order number: 1836354 8A 320V +phoenix_contact connector MCV_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-GF-5.08_1x08_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847673 8A 320V +phoenix_contact connector MCV_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-GF-5.08_1x08_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847673 8A 320V +phoenix_contact connector MCV_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-G-5.08_1x09_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical || order number: 1836367 8A 320V +phoenix_contact connector MCV_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-GF-5.08_1x09_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847686 8A 320V +phoenix_contact connector MCV_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-GF-5.08_1x09_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847686 8A 320V +phoenix_contact connector MCV_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-G-5.08_1x10_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical || order number: 1836370 8A 320V +phoenix_contact connector MCV_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-GF-5.08_1x10_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847699 8A 320V +phoenix_contact connector MCV_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-GF-5.08_1x10_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847699 8A 320V +phoenix_contact connector MCV_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-G-5.08_1x11_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical || order number: 1836383 8A 320V +phoenix_contact connector MCV_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-GF-5.08_1x11_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847709 8A 320V +phoenix_contact connector MCV_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-GF-5.08_1x11_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847709 8A 320V +phoenix_contact connector MCV_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-G-5.08_1x12_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical || order number: 1836396 8A 320V +phoenix_contact connector MCV_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-GF-5.08_1x12_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847712 8A 320V +phoenix_contact connector MCV_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-GF-5.08_1x12_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847712 8A 320V +phoenix_contact connector MCV_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-G-5.08_1x02_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-5.08; number of pins: 02; pin pitch: 5.08mm; Angled || order number: 1836189 8A 320V +phoenix_contact connector MC_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-GF-5.08_1x02_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847466 8A 320V +phoenix_contact connector MC_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-GF-5.08_1x02_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847466 8A 320V +phoenix_contact connector MC_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-G-5.08_1x03_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-5.08; number of pins: 03; pin pitch: 5.08mm; Angled || order number: 1836192 8A 320V +phoenix_contact connector MC_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-GF-5.08_1x03_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847479 8A 320V +phoenix_contact connector MC_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-GF-5.08_1x03_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847479 8A 320V +phoenix_contact connector MC_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-G-5.08_1x04_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-5.08; number of pins: 04; pin pitch: 5.08mm; Angled || order number: 1836202 8A 320V +phoenix_contact connector MC_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-GF-5.08_1x04_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847482 8A 320V +phoenix_contact connector MC_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-GF-5.08_1x04_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847482 8A 320V +phoenix_contact connector MC_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-G-5.08_1x05_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-5.08; number of pins: 05; pin pitch: 5.08mm; Angled || order number: 1836215 8A 320V +phoenix_contact connector MC_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-GF-5.08_1x05_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847495 8A 320V +phoenix_contact connector MC_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-GF-5.08_1x05_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847495 8A 320V +phoenix_contact connector MC_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-G-5.08_1x06_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-5.08; number of pins: 06; pin pitch: 5.08mm; Angled || order number: 1836228 8A 320V +phoenix_contact connector MC_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-GF-5.08_1x06_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847505 8A 320V +phoenix_contact connector MC_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-GF-5.08_1x06_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847505 8A 320V +phoenix_contact connector MC_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-G-5.08_1x07_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-5.08; number of pins: 07; pin pitch: 5.08mm; Angled || order number: 1836231 8A 320V +phoenix_contact connector MC_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-GF-5.08_1x07_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847518 8A 320V +phoenix_contact connector MC_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-GF-5.08_1x07_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847518 8A 320V +phoenix_contact connector MC_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-G-5.08_1x08_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-5.08; number of pins: 08; pin pitch: 5.08mm; Angled || order number: 1836244 8A 320V +phoenix_contact connector MC_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-GF-5.08_1x08_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847521 8A 320V +phoenix_contact connector MC_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-GF-5.08_1x08_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847521 8A 320V +phoenix_contact connector MC_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-G-5.08_1x09_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-5.08; number of pins: 09; pin pitch: 5.08mm; Angled || order number: 1836257 8A 320V +phoenix_contact connector MC_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-GF-5.08_1x09_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847534 8A 320V +phoenix_contact connector MC_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-GF-5.08_1x09_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847534 8A 320V +phoenix_contact connector MC_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-G-5.08_1x10_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-5.08; number of pins: 10; pin pitch: 5.08mm; Angled || order number: 1836260 8A 320V +phoenix_contact connector MC_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-GF-5.08_1x10_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847547 8A 320V +phoenix_contact connector MC_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-GF-5.08_1x10_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847547 8A 320V +phoenix_contact connector MC_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-G-5.08_1x11_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-5.08; number of pins: 11; pin pitch: 5.08mm; Angled || order number: 1836273 8A 320V +phoenix_contact connector MC_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-GF-5.08_1x11_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847550 8A 320V +phoenix_contact connector MC_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-GF-5.08_1x11_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847550 8A 320V +phoenix_contact connector MC_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-G-5.08_1x12_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-5.08; number of pins: 12; pin pitch: 5.08mm; Angled || order number: 1836286 8A 320V +phoenix_contact connector MC_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-GF-5.08_1x12_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847563 8A 320V +phoenix_contact connector MC_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-GF-5.08_1x12_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847563 8A 320V +phoenix_contact connector MC_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_2-G-5,08_1x02_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/2-G-5,08; number of pins: 02; pin pitch: 5.08mm; Angled || order number: 1757242 12A || order number: 1923869 16A (HC) +phoenix_contact connector MSTBA_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_2-G_1x02_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/2-G; number of pins: 02; pin pitch: 5.00mm; Angled || order number: 1757475 12A || order number: 1923759 16A (HC) +phoenix_contact connector MSTBA_01x02_G_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/3-G-5,08; number of pins: 03; pin pitch: 5.08mm; Angled || order number: 1757255 12A || order number: 1923872 16A (HC) +phoenix_contact connector MSTBA_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_3-G_1x03_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/3-G; number of pins: 03; pin pitch: 5.00mm; Angled || order number: 1757488 12A || order number: 1923762 16A (HC) +phoenix_contact connector MSTBA_01x03_G_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_4-G-5,08_1x04_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/4-G-5,08; number of pins: 04; pin pitch: 5.08mm; Angled || order number: 1757268 12A || order number: 1923885 16A (HC) +phoenix_contact connector MSTBA_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_4-G_1x04_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/4-G; number of pins: 04; pin pitch: 5.00mm; Angled || order number: 1757491 12A || order number: 1923775 16A (HC) +phoenix_contact connector MSTBA_01x04_G_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_5-G-5,08_1x05_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/5-G-5,08; number of pins: 05; pin pitch: 5.08mm; Angled || order number: 1757271 12A || order number: 1923898 16A (HC) +phoenix_contact connector MSTBA_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_5-G_1x05_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/5-G; number of pins: 05; pin pitch: 5.00mm; Angled || order number: 1757501 12A || order number: 1923788 16A (HC) +phoenix_contact connector MSTBA_01x05_G_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_6-G-5,08_1x06_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/6-G-5,08; number of pins: 06; pin pitch: 5.08mm; Angled || order number: 1757284 12A || order number: 1923908 16A (HC) +phoenix_contact connector MSTBA_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_6-G_1x06_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/6-G; number of pins: 06; pin pitch: 5.00mm; Angled || order number: 1757514 12A || order number: 1923791 16A (HC) +phoenix_contact connector MSTBA_01x06_G_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_7-G-5,08_1x07_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/7-G-5,08; number of pins: 07; pin pitch: 5.08mm; Angled || order number: 1757297 12A || order number: 1923911 16A (HC) +phoenix_contact connector MSTBA_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_7-G_1x07_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/7-G; number of pins: 07; pin pitch: 5.00mm; Angled || order number: 1757493 12A || order number: 1923801 16A (HC) +phoenix_contact connector MSTBA_01x07_G_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_8-G-5,08_1x08_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/8-G-5,08; number of pins: 08; pin pitch: 5.08mm; Angled || order number: 1757307 12A || order number: 1923924 16A (HC) +phoenix_contact connector MSTBA_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_8-G_1x08_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/8-G; number of pins: 08; pin pitch: 5.00mm; Angled || order number: 1757527 12A || order number: 1923814 16A (HC) +phoenix_contact connector MSTBA_01x08_G_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_9-G-5,08_1x09_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/9-G-5,08; number of pins: 09; pin pitch: 5.08mm; Angled || order number: 1757310 12A || order number: 1923937 16A (HC) +phoenix_contact connector MSTBA_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_9-G_1x09_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/9-G; number of pins: 09; pin pitch: 5.00mm; Angled || order number: 1757530 12A || order number: 1923827 16A (HC) +phoenix_contact connector MSTBA_01x09_G_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_10-G-5,08_1x10_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/10-G-5,08; number of pins: 10; pin pitch: 5.08mm; Angled || order number: 1757323 12A || order number: 1923940 16A (HC) +phoenix_contact connector MSTBA_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_10-G_1x10_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/10-G; number of pins: 10; pin pitch: 5.00mm; Angled || order number: 1757543 12A || order number: 1923830 16A (HC) +phoenix_contact connector MSTBA_01x10_G_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_11-G-5,08_1x11_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/11-G-5,08; number of pins: 11; pin pitch: 5.08mm; Angled || order number: 1757336 12A || order number: 1923953 16A (HC) +phoenix_contact connector MSTBA_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_11-G_1x11_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/11-G; number of pins: 11; pin pitch: 5.00mm; Angled || order number: 1757556 12A || order number: 1923843 16A (HC) +phoenix_contact connector MSTBA_01x11_G_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_12-G-5,08_1x12_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/12-G-5,08; number of pins: 12; pin pitch: 5.08mm; Angled || order number: 1757349 12A || order number: 1923966 16A (HC) +phoenix_contact connector MSTBA_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_12-G_1x12_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/12-G; number of pins: 12; pin pitch: 5.00mm; Angled || order number: 1757569 12A || order number: 1923856 16A (HC) +phoenix_contact connector MSTBA_01x12_G_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_13-G-5,08_1x13_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/13-G-5,08; number of pins: 13; pin pitch: 5.08mm; Angled || order number: 1757352 12A +phoenix_contact connector MSTBA_01x13_G_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_13-G_1x13_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/13-G; number of pins: 13; pin pitch: 5.00mm; Angled || order number: 1757572 12A +phoenix_contact connector MSTBA_01x13_G_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_14-G-5,08_1x14_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/14-G-5,08; number of pins: 14; pin pitch: 5.08mm; Angled || order number: 1757365 12A +phoenix_contact connector MSTBA_01x14_G_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_14-G_1x14_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/14-G; number of pins: 14; pin pitch: 5.00mm; Angled || order number: 1757585 12A +phoenix_contact connector MSTBA_01x14_G_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_15-G-5,08_1x15_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/15-G-5,08; number of pins: 15; pin pitch: 5.08mm; Angled || order number: 1757378 12A +phoenix_contact connector MSTBA_01x15_G_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_15-G_1x15_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/15-G; number of pins: 15; pin pitch: 5.00mm; Angled || order number: 1757598 12A +phoenix_contact connector MSTBA_01x15_G_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_16-G-5,08_1x16_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/16-G-5,08; number of pins: 16; pin pitch: 5.08mm; Angled || order number: 1757381 12A +phoenix_contact connector MSTBA_01x16_G_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_16-G_1x16_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/16-G; number of pins: 16; pin pitch: 5.00mm; Angled || order number: 1757608 12A +phoenix_contact connector MSTBA_01x16_G_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_2-G-5,08_1x02_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/2-G-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical || order number: 1755736 12A || order number: 1924305 16A (HC) +phoenix_contact connector MSTBVA_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_2-G_1x02_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/2-G; number of pins: 02; pin pitch: 5.00mm; Vertical || order number: 1755516 12A || order number: 1924198 16A (HC) +phoenix_contact connector MSTBVA_01x02_G_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_3-G-5,08_1x03_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/3-G-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical || order number: 1755749 12A || order number: 1924318 16A (HC) +phoenix_contact connector MSTBVA_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_3-G_1x03_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/3-G; number of pins: 03; pin pitch: 5.00mm; Vertical || order number: 1755529 12A || order number: 1924208 16A (HC) +phoenix_contact connector MSTBVA_01x03_G_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_4-G-5,08_1x04_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/4-G-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical || order number: 1755752 12A || order number: 1924321 16A (HC) +phoenix_contact connector MSTBVA_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_4-G_1x04_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/4-G; number of pins: 04; pin pitch: 5.00mm; Vertical || order number: 1755532 12A || order number: 1924211 16A (HC) +phoenix_contact connector MSTBVA_01x04_G_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_5-G-5,08_1x05_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/5-G-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical || order number: 1755765 12A || order number: 1924334 16A (HC) +phoenix_contact connector MSTBVA_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_5-G_1x05_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/5-G; number of pins: 05; pin pitch: 5.00mm; Vertical || order number: 1755545 12A || order number: 1924224 16A (HC) +phoenix_contact connector MSTBVA_01x05_G_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_6-G-5,08_1x06_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/6-G-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical || order number: 1755778 12A || order number: 1924347 16A (HC) +phoenix_contact connector MSTBVA_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_6-G_1x06_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/6-G; number of pins: 06; pin pitch: 5.00mm; Vertical || order number: 1755558 12A || order number: 1924237 16A (HC) +phoenix_contact connector MSTBVA_01x06_G_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_7-G-5,08_1x07_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/7-G-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical || order number: 1755781 12A || order number: 1924350 16A (HC) +phoenix_contact connector MSTBVA_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_7-G_1x07_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/7-G; number of pins: 07; pin pitch: 5.00mm; Vertical || order number: 1755561 12A || order number: 1924240 16A (HC) +phoenix_contact connector MSTBVA_01x07_G_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_8-G-5,08_1x08_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/8-G-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical || order number: 1755794 12A || order number: 1924363 16A (HC) +phoenix_contact connector MSTBVA_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_8-G_1x08_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/8-G; number of pins: 08; pin pitch: 5.00mm; Vertical || order number: 1755574 12A || order number: 1924253 16A (HC) +phoenix_contact connector MSTBVA_01x08_G_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_9-G-5,08_1x09_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/9-G-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical || order number: 1755804 12A || order number: 1924376 16A (HC) +phoenix_contact connector MSTBVA_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_9-G_1x09_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/9-G; number of pins: 09; pin pitch: 5.00mm; Vertical || order number: 1755587 12A || order number: 1924266 16A (HC) +phoenix_contact connector MSTBVA_01x09_G_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_10-G-5,08_1x10_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/10-G-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical || order number: 1755817 12A || order number: 1924389 16A (HC) +phoenix_contact connector MSTBVA_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_10-G_1x10_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/10-G; number of pins: 10; pin pitch: 5.00mm; Vertical || order number: 1755503 12A || order number: 1924279 16A (HC) +phoenix_contact connector MSTBVA_01x10_G_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_11-G-5,08_1x11_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/11-G-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical || order number: 1755820 12A || order number: 1924392 16A (HC) +phoenix_contact connector MSTBVA_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_11-G_1x11_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/11-G; number of pins: 11; pin pitch: 5.00mm; Vertical || order number: 1755590 12A || order number: 1924282 16A (HC) +phoenix_contact connector MSTBVA_01x11_G_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_12-G-5,08_1x12_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/12-G-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical || order number: 1755833 12A || order number: 1924402 16A (HC) +phoenix_contact connector MSTBVA_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_12-G_1x12_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/12-G; number of pins: 12; pin pitch: 5.00mm; Vertical || order number: 1755600 12A || order number: 1924295 16A (HC) +phoenix_contact connector MSTBVA_01x12_G_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_13-G-5,08_1x13_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/13-G-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical || order number: 1755846 12A +phoenix_contact connector MSTBVA_01x13_G_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_13-G_1x13_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/13-G; number of pins: 13; pin pitch: 5.00mm; Vertical || order number: 1755613 12A +phoenix_contact connector MSTBVA_01x13_G_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_14-G-5,08_1x14_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/14-G-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical || order number: 1755859 12A +phoenix_contact connector MSTBVA_01x14_G_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_14-G_1x14_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/14-G; number of pins: 14; pin pitch: 5.00mm; Vertical || order number: 1755626 12A +phoenix_contact connector MSTBVA_01x14_G_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_15-G-5,08_1x15_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/15-G-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical || order number: 1755862 12A +phoenix_contact connector MSTBVA_01x15_G_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_15-G_1x15_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/15-G; number of pins: 15; pin pitch: 5.00mm; Vertical || order number: 1755639 12A +phoenix_contact connector MSTBVA_01x15_G_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_16-G-5,08_1x16_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/16-G-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical || order number: 1755875 12A +phoenix_contact connector MSTBVA_01x16_G_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_16-G_1x16_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/16-G; number of pins: 16; pin pitch: 5.00mm; Vertical || order number: 1755642 12A +phoenix_contact connector MSTBVA_01x16_G_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF-5,08_1x02_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777073 12A || order number: 1924525 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF-5,08_1x02_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777073 12A || order number: 1924525 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF_1x02_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776883 12A || order number: 1924415 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF_1x02_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776883 12A || order number: 1924415 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.00mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF-5,08_1x03_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777086 12A || order number: 1924538 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF-5,08_1x03_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777086 12A || order number: 1924538 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF_1x03_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776896 12A || order number: 1924428 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF_1x03_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776896 12A || order number: 1924428 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.00mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF-5,08_1x04_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777099 12A || order number: 1924541 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF-5,08_1x04_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777099 12A || order number: 1924541 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF_1x04_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776906 12A || order number: 1924431 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF_1x04_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776906 12A || order number: 1924431 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.00mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF-5,08_1x05_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777109 12A || order number: 1924554 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF-5,08_1x05_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777109 12A || order number: 1924554 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF_1x05_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776919 12A || order number: 1924444 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF_1x05_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776919 12A || order number: 1924444 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.00mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF-5,08_1x06_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777112 12A || order number: 1924567 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF-5,08_1x06_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777112 12A || order number: 1924567 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF_1x06_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776922 12A || order number: 1924457 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF_1x06_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776922 12A || order number: 1924457 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.00mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF-5,08_1x07_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777125 12A || order number: 1924570 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF-5,08_1x07_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777125 12A || order number: 1924570 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF_1x07_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776935 12A || order number: 1924460 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF_1x07_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776935 12A || order number: 1924460 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.00mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF-5,08_1x08_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777138 12A || order number: 1924583 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF-5,08_1x08_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777138 12A || order number: 1924583 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF_1x08_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776948 12A || order number: 1924473 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF_1x08_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776948 12A || order number: 1924473 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.00mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF-5,08_1x09_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777141 12A || order number: 1924596 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF-5,08_1x09_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777141 12A || order number: 1924596 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF_1x09_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776951 12A || order number: 1924486 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF_1x09_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776951 12A || order number: 1924486 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.00mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF-5,08_1x10_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777154 12A || order number: 1924606 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF-5,08_1x10_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777154 12A || order number: 1924606 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF_1x10_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776964 12A || order number: 1924499 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF_1x10_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776964 12A || order number: 1924499 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.00mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF-5,08_1x11_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777167 12A || order number: 1924619 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF-5,08_1x11_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777167 12A || order number: 1924619 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF_1x11_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776977 12A || order number: 1924509 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF_1x11_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776977 12A || order number: 1924509 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.00mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF-5,08_1x12_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777170 12A || order number: 1924622 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF-5,08_1x12_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777170 12A || order number: 1924622 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF_1x12_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776980 12A || order number: 1924512 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF_1x12_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776980 12A || order number: 1924512 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.00mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF-5,08_1x13_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777183 12A +phoenix_contact connector MSTBV_01x13_GF_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF-5,08_1x13_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777183 12A +phoenix_contact connector MSTBV_01x13_GF_5.08mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF_1x13_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776993 12A +phoenix_contact connector MSTBV_01x13_GF_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF_1x13_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776993 12A +phoenix_contact connector MSTBV_01x13_GF_5.00mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF-5,08_1x14_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777196 12A +phoenix_contact connector MSTBV_01x14_GF_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF-5,08_1x14_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777196 12A +phoenix_contact connector MSTBV_01x14_GF_5.08mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF_1x14_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776002 12A +phoenix_contact connector MSTBV_01x14_GF_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF_1x14_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776002 12A +phoenix_contact connector MSTBV_01x14_GF_5.00mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF-5,08_1x15_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777206 12A +phoenix_contact connector MSTBV_01x15_GF_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF-5,08_1x15_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777206 12A +phoenix_contact connector MSTBV_01x15_GF_5.08mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF_1x15_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776015 12A +phoenix_contact connector MSTBV_01x15_GF_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF_1x15_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776015 12A +phoenix_contact connector MSTBV_01x15_GF_5.00mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF-5,08_1x16_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777219 12A +phoenix_contact connector MSTBV_01x16_GF_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF-5,08_1x16_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777219 12A +phoenix_contact connector MSTBV_01x16_GF_5.08mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF_1x16_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776028 12A +phoenix_contact connector MSTBV_01x16_GF_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF_1x16_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776028 12A +phoenix_contact connector MSTBV_01x16_GF_5.00mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF-5,08_1x02_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776508 12A || order number: 1924088 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF-5,08_1x02_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776508 12A || order number: 1924088 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF_1x02_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776692 12A || order number: 1923979 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF_1x02_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776692 12A || order number: 1923979 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.00mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF-5,08_1x03_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776511 12A || order number: 1924091 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF-5,08_1x03_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776511 12A || order number: 1924091 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF_1x03_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776702 12A || order number: 1923982 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF_1x03_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776702 12A || order number: 1923982 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.00mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF-5,08_1x04_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776524 12A || order number: 1924101 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF-5,08_1x04_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776524 12A || order number: 1924101 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF_1x04_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776715 12A || order number: 1923995 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF_1x04_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776715 12A || order number: 1923995 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.00mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF-5,08_1x05_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776537 12A || order number: 1924114 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF-5,08_1x05_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776537 12A || order number: 1924114 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF_1x05_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776728 12A || order number: 1924004 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF_1x05_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776728 12A || order number: 1924004 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.00mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF-5,08_1x06_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776540 12A || order number: 1924127 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF-5,08_1x06_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776540 12A || order number: 1924127 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF_1x06_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776731 12A || order number: 1924017 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF_1x06_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776731 12A || order number: 1924017 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.00mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF-5,08_1x07_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776553 12A || order number: 1924130 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF-5,08_1x07_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776553 12A || order number: 1924130 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF_1x07_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776744 12A || order number: 1924020 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF_1x07_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776744 12A || order number: 1924020 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.00mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF-5,08_1x08_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776566 12A || order number: 1924143 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF-5,08_1x08_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776566 12A || order number: 1924143 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF_1x08_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776757 12A || order number: 1924033 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF_1x08_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776757 12A || order number: 1924033 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.00mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF-5,08_1x09_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776579 12A || order number: 1924156 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF-5,08_1x09_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776579 12A || order number: 1924156 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF_1x09_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776760 12A || order number: 1924046 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF_1x09_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776760 12A || order number: 1924046 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.00mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF-5,08_1x10_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776582 12A || order number: 1924169 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF-5,08_1x10_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776582 12A || order number: 1924169 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF_1x10_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776773 12A || order number: 1924059 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF_1x10_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776773 12A || order number: 1924059 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.00mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF-5,08_1x11_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776595 12A || order number: 1924172 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF-5,08_1x11_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776595 12A || order number: 1924172 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF_1x11_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776786 12A || order number: 1924062 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF_1x11_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776786 12A || order number: 1924062 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.00mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF-5,08_1x12_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776605 12A || order number: 1924185 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF-5,08_1x12_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776605 12A || order number: 1924185 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF_1x12_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776799 12A || order number: 1924075 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF_1x12_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776799 12A || order number: 1924075 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.00mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF-5,08_1x13_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776618 12A +phoenix_contact connector MSTB_01x13_GF_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF-5,08_1x13_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776618 12A +phoenix_contact connector MSTB_01x13_GF_5.08mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF_1x13_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776809 12A +phoenix_contact connector MSTB_01x13_GF_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF_1x13_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776809 12A +phoenix_contact connector MSTB_01x13_GF_5.00mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF-5,08_1x14_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776621 12A +phoenix_contact connector MSTB_01x14_GF_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF-5,08_1x14_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776621 12A +phoenix_contact connector MSTB_01x14_GF_5.08mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF_1x14_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776812 12A +phoenix_contact connector MSTB_01x14_GF_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF_1x14_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776812 12A +phoenix_contact connector MSTB_01x14_GF_5.00mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF-5,08_1x15_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776634 12A +phoenix_contact connector MSTB_01x15_GF_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF-5,08_1x15_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776634 12A +phoenix_contact connector MSTB_01x15_GF_5.08mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF_1x15_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776825 12A +phoenix_contact connector MSTB_01x15_GF_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF_1x15_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776825 12A +phoenix_contact connector MSTB_01x15_GF_5.00mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF-5,08_1x16_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776647 12A +phoenix_contact connector MSTB_01x16_GF_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF-5,08_1x16_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776647 12A +phoenix_contact connector MSTB_01x16_GF_5.08mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF_1x16_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776838 12A +phoenix_contact connector MSTB_01x16_GF_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF_1x16_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776838 12A +phoenix_contact connector MSTB_01x16_GF_5.00mm_MH +0 +16 +16 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_2-H-3.5_1x02_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/2-H-3.5 Terminal Block, 1990737 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990737), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/2-H-3.5 1990737 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_3-H-3.5_1x03_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/3-H-3.5 Terminal Block, 1990740 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990740), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/3-H-3.5 1990740 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_4-H-3.5_1x04_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/4-H-3.5 Terminal Block, 1990753 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990753), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/4-H-3.5 1990753 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_5-H-3.5_1x05_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/5-H-3.5 Terminal Block, 1990766 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990766), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/5-H-3.5 1990766 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_6-H-3.5_1x06_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/6-H-3.5 Terminal Block, 1990779 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990779), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/6-H-3.5 1990779 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_7-H-3.5_1x07_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/7-H-3.5 Terminal Block, 1990782 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990782), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/7-H-3.5 1990782 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_8-H-3.5_1x08_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/8-H-3.5 Terminal Block, 1990795 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990795), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/8-H-3.5 1990795 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_9-H-3.5_1x09_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/9-H-3.5 Terminal Block, 1990805 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990805), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/9-H-3.5 1990805 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_10-H-3.5_1x10_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/10-H-3.5 Terminal Block, 1990818 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990818), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/10-H-3.5 1990818 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_11-H-3.5_1x11_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/11-H-3.5 Terminal Block, 1990821 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990821), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/11-H-3.5 1990821 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_12-H-3.5_1x12_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/12-H-3.5 Terminal Block, 1990834 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990834), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/12-H-3.5 1990834 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_1-H-5.0_1x01_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/1-H-5.0 Terminal Block, 1751066 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1751066), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/1-H-5.0 1751066 +0 +2 +1 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_2-H-5.0-EX_1x02_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/2-H-5.0-EX Terminal Block, 1732386 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732386), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/2-H-5.0-EX 1732386 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_2-H-5.0_1x02_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/2-H-5.0 Terminal Block, 1990973 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990973), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/2-H-5.0 1990973 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_2-V-5.0-EX_1x02_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/2-V-5.0-EX Terminal Block, 1732496 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732496), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/2-V-5.0-EX 1732496 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_3-H-5.0-EX_1x03_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/3-H-5.0-EX Terminal Block, 1732399 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732399), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/3-H-5.0-EX 1732399 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_3-H-5.0_1x03_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/3-H-5.0 Terminal Block, 1990986 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990986), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/3-H-5.0 1990986 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_3-V-5.0-EX_1x03_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/3-V-5.0-EX Terminal Block, 1732506 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732506), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/3-V-5.0-EX 1732506 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_4-H-5.0-EX_1x04_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/4-H-5.0-EX Terminal Block, 1732409 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732409), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/4-H-5.0-EX 1732409 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_4-H-5.0_1x04_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/4-H-5.0 Terminal Block, 1990999 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990999), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/4-H-5.0 1990999 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_4-V-5.0-EX_1x04_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/4-V-5.0-EX Terminal Block, 1732519 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732519), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/4-V-5.0-EX 1732519 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_5-H-5.0-EX_1x05_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/5-H-5.0-EX Terminal Block, 1732412 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732412), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/5-H-5.0-EX 1732412 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_5-H-5.0_1x05_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/5-H-5.0 Terminal Block, 1991008 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991008), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/5-H-5.0 1991008 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_5-V-5.0-EX_1x05_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/5-V-5.0-EX Terminal Block, 1732522 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732522), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/5-V-5.0-EX 1732522 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_6-H-5.0-EX_1x06_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/6-H-5.0-EX Terminal Block, 1732425 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732425), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/6-H-5.0-EX 1732425 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_6-H-5.0_1x06_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/6-H-5.0 Terminal Block, 1991011 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991011), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/6-H-5.0 1991011 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_6-V-5.0-EX_1x06_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/6-V-5.0-EX Terminal Block, 1732535 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732535), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/6-V-5.0-EX 1732535 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_7-H-5.0-EX_1x07_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/7-H-5.0-EX Terminal Block, 1732438 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732438), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/7-H-5.0-EX 1732438 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_7-H-5.0_1x07_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/7-H-5.0 Terminal Block, 1991024 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991024), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/7-H-5.0 1991024 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_7-V-5.0-EX_1x07_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/7-V-5.0-EX Terminal Block, 1732548 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732548), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/7-V-5.0-EX 1732548 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_8-H-5.0-EX_1x08_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/8-H-5.0-EX Terminal Block, 1732441 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732441), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/8-H-5.0-EX 1732441 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_8-H-5.0_1x08_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/8-H-5.0 Terminal Block, 1991037 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991037), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/8-H-5.0 1991037 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_8-V-5.0-EX_1x08_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/8-V-5.0-EX Terminal Block, 1732551 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732551), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/8-V-5.0-EX 1732551 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_9-H-5.0-EX_1x09_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/9-H-5.0-EX Terminal Block, 1732454 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732454), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/9-H-5.0-EX 1732454 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_9-H-5.0_1x09_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/9-H-5.0 Terminal Block, 1991040 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991040), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/9-H-5.0 1991040 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_9-V-5.0-EX_1x09_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/9-V-5.0-EX Terminal Block, 1732564 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732564), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/9-V-5.0-EX 1732564 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_10-H-5.0-EX_1x10_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/10-H-5.0-EX Terminal Block, 1732467 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732467), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/10-H-5.0-EX 1732467 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_10-H-5.0_1x10_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/10-H-5.0 Terminal Block, 1991053 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991053), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/10-H-5.0 1991053 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_10-V-5.0-EX_1x10_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/10-V-5.0-EX Terminal Block, 1732577 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732577), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/10-V-5.0-EX 1732577 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_11-H-5.0-EX_1x11_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/11-H-5.0-EX Terminal Block, 1732470 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732470), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/11-H-5.0-EX 1732470 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_11-H-5.0_1x11_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/11-H-5.0 Terminal Block, 1991066 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991066), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/11-H-5.0 1991066 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_11-V-5.0-EX_1x11_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/11-V-5.0-EX Terminal Block, 1732580 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732580), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/11-V-5.0-EX 1732580 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_12-H-5.0-EX_1x12_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/12-H-5.0-EX Terminal Block, 1732483 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732483), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/12-H-5.0-EX 1732483 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_12-H-5.0_1x12_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/12-H-5.0 Terminal Block, 1991079 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991079), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/12-H-5.0 1991079 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_12-V-5.0-EX_1x12_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/12-V-5.0-EX Terminal Block, 1732593 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732593), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/12-V-5.0-EX 1732593 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_1-H-7.5_1x01_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/1-H-7.5 Terminal Block, 1719189 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719189), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/1-H-7.5 1719189 +0 +2 +1 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_1-V-7.5_1x01_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/1-V-7.5 Terminal Block, 1719309 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719309), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/1-V-7.5 1719309 +0 +2 +1 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_2-H-7.5-ZB_1x02_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/2-H-7.5-ZB Terminal Block, 1719192 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719192), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/2-H-7.5-ZB 1719192 +0 +2 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_2-V-7.5_1x02_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/2-V-7.5 Terminal Block, 1738144 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1738144), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/2-V-7.5 1738144 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_3-H-7.5-ZB_1x03_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/3-H-7.5-ZB Terminal Block, 1719202 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719202), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/3-H-7.5-ZB 1719202 +0 +3 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_3-H-7.5_1x03_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/3-H-7.5 Terminal Block, 1701361 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1701361), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/3-H-7.5 1701361 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_3-V-7.5-ZB_1x03_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/3-V-7.5-ZB Terminal Block, 1719325 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719325), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/3-V-7.5-ZB 1719325 +0 +3 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_4-H-7.5-ZB_1x04_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/4-H-7.5-ZB Terminal Block, 1719215 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719215), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/4-H-7.5-ZB 1719215 +0 +4 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_5-H-7.5-ZB_1x05_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/5-H-7.5-ZB Terminal Block, 1719228 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719228), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/5-H-7.5-ZB 1719228 +0 +5 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_5-V-7.5-ZB_1x05_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/5-V-7.5-ZB Terminal Block, 1719341 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719341), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/5-V-7.5-ZB 1719341 +0 +5 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_6-H-7.5-ZB_1x06_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/6-H-7.5-ZB Terminal Block, 1719231 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719231), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/6-H-7.5-ZB 1719231 +0 +6 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_6-V-7.5-ZB_1x06_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/6-V-7.5-ZB Terminal Block, 1719354 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719354), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/6-V-7.5-ZB 1719354 +0 +6 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_7-H-7.5-ZB_1x07_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/7-H-7.5-ZB Terminal Block, 1719244 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719244), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/7-H-7.5-ZB 1719244 +0 +7 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_7-V-7.5-ZB_1x07_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/7-V-7.5-ZB Terminal Block, 1719367 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719367), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/7-V-7.5-ZB 1719367 +0 +7 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_8-H-7.5-ZB_1x08_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/8-H-7.5-ZB Terminal Block, 1719257 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719257), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/8-H-7.5-ZB 1719257 +0 +8 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_8-V-7.5-ZB_1x08_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/8-V-7.5-ZB Terminal Block, 1719370 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719370), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/8-V-7.5-ZB 1719370 +0 +8 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_9-H-7.5-ZB_1x09_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/9-H-7.5-ZB Terminal Block, 1719260 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719260), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/9-H-7.5-ZB 1719260 +0 +9 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_9-V-7.5-ZB_1x09_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/9-V-7.5-ZB Terminal Block, 1719383 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719383), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/9-V-7.5-ZB 1719383 +0 +9 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_10-H-7.5-ZB_1x10_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/10-H-7.5-ZB Terminal Block, 1719273 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719273), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/10-H-7.5-ZB 1719273 +0 +10 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_10-V-7.5-ZB_1x10_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/10-V-7.5-ZB Terminal Block, 1719396 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719396), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/10-V-7.5-ZB 1719396 +0 +10 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_11-H-7.5-ZB_1x11_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/11-H-7.5-ZB Terminal Block, 1719286 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719286), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/11-H-7.5-ZB 1719286 +0 +11 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_11-V-7.5-ZB_1x11_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/11-V-7.5-ZB Terminal Block, 1719406 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719406), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/11-V-7.5-ZB 1719406 +0 +11 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_12-H-7.5-ZB_1x12_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/12-H-7.5-ZB Terminal Block, 1719299 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719299), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/12-H-7.5-ZB 1719299 +0 +12 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_12-V-7.5-ZB_1x12_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/12-V-7.5-ZB Terminal Block, 1719419 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719419), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/12-V-7.5-ZB 1719419 +0 +12 +12 +Connector_Pin +Pin_D0.7mm_L6.5mm_W1.8mm_FlatFork +solder Pin_ with flat fork, hole diameter 0.7mm, length 6.5mm, width 1.8mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D0.9mm_L10.0mm_W2.4mm_FlatFork +solder Pin_ with flat fork, hole diameter 0.9mm, length 10.0mm, width 2.4mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.0mm_L10.0mm +solder Pin_ diameter 1.0mm, hole diameter 1.0mm (press fit), length 10.0mm +solder Pin_ press fit +0 +1 +1 +Connector_Pin +Pin_D1.0mm_L10.0mm_LooseFit +solder Pin_ diameter 1.0mm, hole diameter 1.2mm (loose fit), length 10.0mm +solder Pin_ loose fit +0 +1 +1 +Connector_Pin +Pin_D1.1mm_L8.5mm_W2.5mm_FlatFork +solder Pin_ with flat fork, hole diameter 1.1mm, length 8.5mm, width 2.5mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.1mm_L10.2mm_W3.5mm_Flat +solder Pin_ with flat with hole, hole diameter 1.1mm, length 10.2mm, width 3.5mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.2mm_L10.2mm_W2.9mm_FlatFork +solder Pin_ with flat with fork, hole diameter 1.2mm, length 11.3mm, width 3.0mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.2mm_L11.3mm_W3.0mm_Flat +solder Pin_ with flat with hole, hole diameter 1.2mm, length 11.3mm, width 3.0mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L10.0mm_W3.5mm_Flat +solder Pin_ with flat with hole, hole diameter 1.3mm, length 10.0mm, width 3.5mm, e.g. Ettinger 13.13.865, https://katalog.ettinger.de/#p=434 +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.0mm +solder Pin_ diameter 1.3mm, hole diameter 1.3mm, length 11.0mm +solder Pin_ pressfit +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.0mm_LooseFit +solder Pin_ diameter 1.3mm, hole diameter 1.5mm (loose fit), length 11.0mm +solder Pin_ loose fit +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.3mm_W2.8mm_Flat +solder Pin_ with flat with hole, hole diameter 1.3mm, length 11.3mm, width 2.8mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.4mm_L8.5mm_W2.8mm_FlatFork +solder Pin_ with flat with fork, hole diameter 1.4mm, length 8.5mm, width 2.8mm, e.g. Ettinger 13.13.890, https://katalog.ettinger.de/#p=434 +solder Pin_ with flat fork +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x01_P1.00mm_Horizontal +Through hole angled pin header, 1x01, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x01 1.00mm single row +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x01_P1.00mm_Vertical +Through hole straight pin header, 1x01, 1.00mm pitch, single row +Through hole pin header THT 1x01 1.00mm single row +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Horizontal +Through hole angled pin header, 1x02, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical +Through hole straight pin header, 1x02, 1.00mm pitch, single row +Through hole pin header THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 1.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 1.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Horizontal +Through hole angled pin header, 1x03, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical +Through hole straight pin header, 1x03, 1.00mm pitch, single row +Through hole pin header THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 1.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 1.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Horizontal +Through hole angled pin header, 1x04, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical +Through hole straight pin header, 1x04, 1.00mm pitch, single row +Through hole pin header THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 1.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 1.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Horizontal +Through hole angled pin header, 1x05, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical +Through hole straight pin header, 1x05, 1.00mm pitch, single row +Through hole pin header THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 1.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 1.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Horizontal +Through hole angled pin header, 1x06, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical +Through hole straight pin header, 1x06, 1.00mm pitch, single row +Through hole pin header THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 1.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 1.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Horizontal +Through hole angled pin header, 1x07, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical +Through hole straight pin header, 1x07, 1.00mm pitch, single row +Through hole pin header THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 1.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 1.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Horizontal +Through hole angled pin header, 1x08, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical +Through hole straight pin header, 1x08, 1.00mm pitch, single row +Through hole pin header THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 1.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 1.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Horizontal +Through hole angled pin header, 1x09, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical +Through hole straight pin header, 1x09, 1.00mm pitch, single row +Through hole pin header THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 1.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 1.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Horizontal +Through hole angled pin header, 1x10, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical +Through hole straight pin header, 1x10, 1.00mm pitch, single row +Through hole pin header THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 1.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 1.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Horizontal +Through hole angled pin header, 1x11, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical +Through hole straight pin header, 1x11, 1.00mm pitch, single row +Through hole pin header THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 1.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 1.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Horizontal +Through hole angled pin header, 1x12, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical +Through hole straight pin header, 1x12, 1.00mm pitch, single row +Through hole pin header THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 1.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 1.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Horizontal +Through hole angled pin header, 1x13, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical +Through hole straight pin header, 1x13, 1.00mm pitch, single row +Through hole pin header THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 1.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 1.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Horizontal +Through hole angled pin header, 1x14, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical +Through hole straight pin header, 1x14, 1.00mm pitch, single row +Through hole pin header THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 1.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 1.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Horizontal +Through hole angled pin header, 1x15, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical +Through hole straight pin header, 1x15, 1.00mm pitch, single row +Through hole pin header THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 1.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 1.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Horizontal +Through hole angled pin header, 1x16, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical +Through hole straight pin header, 1x16, 1.00mm pitch, single row +Through hole pin header THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 1.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 1.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Horizontal +Through hole angled pin header, 1x17, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical +Through hole straight pin header, 1x17, 1.00mm pitch, single row +Through hole pin header THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 1.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 1.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Horizontal +Through hole angled pin header, 1x18, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical +Through hole straight pin header, 1x18, 1.00mm pitch, single row +Through hole pin header THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 1.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 1.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Horizontal +Through hole angled pin header, 1x19, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical +Through hole straight pin header, 1x19, 1.00mm pitch, single row +Through hole pin header THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 1.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 1.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Horizontal +Through hole angled pin header, 1x20, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical +Through hole straight pin header, 1x20, 1.00mm pitch, single row +Through hole pin header THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 1.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 1.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Horizontal +Through hole angled pin header, 1x21, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical +Through hole straight pin header, 1x21, 1.00mm pitch, single row +Through hole pin header THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 1.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 1.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Horizontal +Through hole angled pin header, 1x22, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical +Through hole straight pin header, 1x22, 1.00mm pitch, single row +Through hole pin header THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 1.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 1.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Horizontal +Through hole angled pin header, 1x23, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical +Through hole straight pin header, 1x23, 1.00mm pitch, single row +Through hole pin header THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 1.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 1.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Horizontal +Through hole angled pin header, 1x24, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical +Through hole straight pin header, 1x24, 1.00mm pitch, single row +Through hole pin header THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 1.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 1.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Horizontal +Through hole angled pin header, 1x25, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical +Through hole straight pin header, 1x25, 1.00mm pitch, single row +Through hole pin header THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 1.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 1.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Horizontal +Through hole angled pin header, 1x26, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical +Through hole straight pin header, 1x26, 1.00mm pitch, single row +Through hole pin header THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 1.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 1.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Horizontal +Through hole angled pin header, 1x27, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical +Through hole straight pin header, 1x27, 1.00mm pitch, single row +Through hole pin header THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 1.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 1.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Horizontal +Through hole angled pin header, 1x28, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical +Through hole straight pin header, 1x28, 1.00mm pitch, single row +Through hole pin header THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 1.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 1.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Horizontal +Through hole angled pin header, 1x29, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical +Through hole straight pin header, 1x29, 1.00mm pitch, single row +Through hole pin header THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 1.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 1.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Horizontal +Through hole angled pin header, 1x30, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical +Through hole straight pin header, 1x30, 1.00mm pitch, single row +Through hole pin header THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 1.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 1.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Horizontal +Through hole angled pin header, 1x31, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical +Through hole straight pin header, 1x31, 1.00mm pitch, single row +Through hole pin header THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 1.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 1.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Horizontal +Through hole angled pin header, 1x32, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical +Through hole straight pin header, 1x32, 1.00mm pitch, single row +Through hole pin header THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 1.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 1.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Horizontal +Through hole angled pin header, 1x33, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical +Through hole straight pin header, 1x33, 1.00mm pitch, single row +Through hole pin header THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 1.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 1.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Horizontal +Through hole angled pin header, 1x34, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical +Through hole straight pin header, 1x34, 1.00mm pitch, single row +Through hole pin header THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 1.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 1.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Horizontal +Through hole angled pin header, 1x35, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical +Through hole straight pin header, 1x35, 1.00mm pitch, single row +Through hole pin header THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 1.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 1.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Horizontal +Through hole angled pin header, 1x36, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical +Through hole straight pin header, 1x36, 1.00mm pitch, single row +Through hole pin header THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 1.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 1.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Horizontal +Through hole angled pin header, 1x37, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical +Through hole straight pin header, 1x37, 1.00mm pitch, single row +Through hole pin header THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 1.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 1.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Horizontal +Through hole angled pin header, 1x38, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical +Through hole straight pin header, 1x38, 1.00mm pitch, single row +Through hole pin header THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 1.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 1.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Horizontal +Through hole angled pin header, 1x39, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical +Through hole straight pin header, 1x39, 1.00mm pitch, single row +Through hole pin header THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 1.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 1.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Horizontal +Through hole angled pin header, 1x40, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical +Through hole straight pin header, 1x40, 1.00mm pitch, single row +Through hole pin header THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 1.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 1.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Horizontal +Through hole angled pin header, 2x01, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Vertical +Through hole straight pin header, 2x01, 1.00mm pitch, double rows +Through hole pin header THT 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Horizontal +Through hole angled pin header, 2x02, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Vertical +Through hole straight pin header, 2x02, 1.00mm pitch, double rows +Through hole pin header THT 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Horizontal +Through hole angled pin header, 2x03, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Vertical +Through hole straight pin header, 2x03, 1.00mm pitch, double rows +Through hole pin header THT 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Horizontal +Through hole angled pin header, 2x04, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Vertical +Through hole straight pin header, 2x04, 1.00mm pitch, double rows +Through hole pin header THT 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Horizontal +Through hole angled pin header, 2x05, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Vertical +Through hole straight pin header, 2x05, 1.00mm pitch, double rows +Through hole pin header THT 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Horizontal +Through hole angled pin header, 2x06, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Vertical +Through hole straight pin header, 2x06, 1.00mm pitch, double rows +Through hole pin header THT 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Horizontal +Through hole angled pin header, 2x07, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Vertical +Through hole straight pin header, 2x07, 1.00mm pitch, double rows +Through hole pin header THT 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Horizontal +Through hole angled pin header, 2x08, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Vertical +Through hole straight pin header, 2x08, 1.00mm pitch, double rows +Through hole pin header THT 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Horizontal +Through hole angled pin header, 2x09, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Vertical +Through hole straight pin header, 2x09, 1.00mm pitch, double rows +Through hole pin header THT 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Horizontal +Through hole angled pin header, 2x10, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Vertical +Through hole straight pin header, 2x10, 1.00mm pitch, double rows +Through hole pin header THT 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Horizontal +Through hole angled pin header, 2x11, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Vertical +Through hole straight pin header, 2x11, 1.00mm pitch, double rows +Through hole pin header THT 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Horizontal +Through hole angled pin header, 2x12, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Vertical +Through hole straight pin header, 2x12, 1.00mm pitch, double rows +Through hole pin header THT 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Horizontal +Through hole angled pin header, 2x13, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Vertical +Through hole straight pin header, 2x13, 1.00mm pitch, double rows +Through hole pin header THT 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Horizontal +Through hole angled pin header, 2x14, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Vertical +Through hole straight pin header, 2x14, 1.00mm pitch, double rows +Through hole pin header THT 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Horizontal +Through hole angled pin header, 2x15, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Vertical +Through hole straight pin header, 2x15, 1.00mm pitch, double rows +Through hole pin header THT 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Horizontal +Through hole angled pin header, 2x16, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Vertical +Through hole straight pin header, 2x16, 1.00mm pitch, double rows +Through hole pin header THT 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Horizontal +Through hole angled pin header, 2x17, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Vertical +Through hole straight pin header, 2x17, 1.00mm pitch, double rows +Through hole pin header THT 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Horizontal +Through hole angled pin header, 2x18, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Vertical +Through hole straight pin header, 2x18, 1.00mm pitch, double rows +Through hole pin header THT 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Horizontal +Through hole angled pin header, 2x19, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Vertical +Through hole straight pin header, 2x19, 1.00mm pitch, double rows +Through hole pin header THT 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Horizontal +Through hole angled pin header, 2x20, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Vertical +Through hole straight pin header, 2x20, 1.00mm pitch, double rows +Through hole pin header THT 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Horizontal +Through hole angled pin header, 2x21, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Vertical +Through hole straight pin header, 2x21, 1.00mm pitch, double rows +Through hole pin header THT 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Horizontal +Through hole angled pin header, 2x22, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Vertical +Through hole straight pin header, 2x22, 1.00mm pitch, double rows +Through hole pin header THT 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Horizontal +Through hole angled pin header, 2x23, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Vertical +Through hole straight pin header, 2x23, 1.00mm pitch, double rows +Through hole pin header THT 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Horizontal +Through hole angled pin header, 2x24, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Vertical +Through hole straight pin header, 2x24, 1.00mm pitch, double rows +Through hole pin header THT 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Horizontal +Through hole angled pin header, 2x25, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Vertical +Through hole straight pin header, 2x25, 1.00mm pitch, double rows +Through hole pin header THT 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Horizontal +Through hole angled pin header, 2x26, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Vertical +Through hole straight pin header, 2x26, 1.00mm pitch, double rows +Through hole pin header THT 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Horizontal +Through hole angled pin header, 2x27, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Vertical +Through hole straight pin header, 2x27, 1.00mm pitch, double rows +Through hole pin header THT 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Horizontal +Through hole angled pin header, 2x28, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Vertical +Through hole straight pin header, 2x28, 1.00mm pitch, double rows +Through hole pin header THT 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Horizontal +Through hole angled pin header, 2x29, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Vertical +Through hole straight pin header, 2x29, 1.00mm pitch, double rows +Through hole pin header THT 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Horizontal +Through hole angled pin header, 2x30, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Vertical +Through hole straight pin header, 2x30, 1.00mm pitch, double rows +Through hole pin header THT 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Horizontal +Through hole angled pin header, 2x31, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Vertical +Through hole straight pin header, 2x31, 1.00mm pitch, double rows +Through hole pin header THT 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Horizontal +Through hole angled pin header, 2x32, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Vertical +Through hole straight pin header, 2x32, 1.00mm pitch, double rows +Through hole pin header THT 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Horizontal +Through hole angled pin header, 2x33, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Vertical +Through hole straight pin header, 2x33, 1.00mm pitch, double rows +Through hole pin header THT 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Horizontal +Through hole angled pin header, 2x34, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Vertical +Through hole straight pin header, 2x34, 1.00mm pitch, double rows +Through hole pin header THT 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Horizontal +Through hole angled pin header, 2x35, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Vertical +Through hole straight pin header, 2x35, 1.00mm pitch, double rows +Through hole pin header THT 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Horizontal +Through hole angled pin header, 2x36, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Vertical +Through hole straight pin header, 2x36, 1.00mm pitch, double rows +Through hole pin header THT 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Horizontal +Through hole angled pin header, 2x37, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Vertical +Through hole straight pin header, 2x37, 1.00mm pitch, double rows +Through hole pin header THT 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Horizontal +Through hole angled pin header, 2x38, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Vertical +Through hole straight pin header, 2x38, 1.00mm pitch, double rows +Through hole pin header THT 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Horizontal +Through hole angled pin header, 2x39, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Vertical +Through hole straight pin header, 2x39, 1.00mm pitch, double rows +Through hole pin header THT 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Horizontal +Through hole angled pin header, 2x40, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Vertical +Through hole straight pin header, 2x40, 1.00mm pitch, double rows +Through hole pin header THT 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_1x01_P1.27mm_Horizontal +Through hole angled pin header, 1x01, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinHeader_1.27mm +PinHeader_1x01_P1.27mm_Vertical +Through hole straight pin header, 1x01, 1.27mm pitch, single row +Through hole pin header THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Horizontal +Through hole angled pin header, 1x02, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical +Through hole straight pin header, 1x02, 1.27mm pitch, single row +Through hole pin header THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 1.27mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 1.27mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Horizontal +Through hole angled pin header, 1x03, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical +Through hole straight pin header, 1x03, 1.27mm pitch, single row +Through hole pin header THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 1.27mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 1.27mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Horizontal +Through hole angled pin header, 1x04, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical +Through hole straight pin header, 1x04, 1.27mm pitch, single row +Through hole pin header THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 1.27mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 1.27mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Horizontal +Through hole angled pin header, 1x05, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical +Through hole straight pin header, 1x05, 1.27mm pitch, single row +Through hole pin header THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 1.27mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 1.27mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Horizontal +Through hole angled pin header, 1x06, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical +Through hole straight pin header, 1x06, 1.27mm pitch, single row +Through hole pin header THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 1.27mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 1.27mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Horizontal +Through hole angled pin header, 1x07, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical +Through hole straight pin header, 1x07, 1.27mm pitch, single row +Through hole pin header THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 1.27mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 1.27mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Horizontal +Through hole angled pin header, 1x08, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical +Through hole straight pin header, 1x08, 1.27mm pitch, single row +Through hole pin header THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 1.27mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 1.27mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Horizontal +Through hole angled pin header, 1x09, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical +Through hole straight pin header, 1x09, 1.27mm pitch, single row +Through hole pin header THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 1.27mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 1.27mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Horizontal +Through hole angled pin header, 1x10, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical +Through hole straight pin header, 1x10, 1.27mm pitch, single row +Through hole pin header THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 1.27mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 1.27mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Horizontal +Through hole angled pin header, 1x11, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical +Through hole straight pin header, 1x11, 1.27mm pitch, single row +Through hole pin header THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 1.27mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 1.27mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Horizontal +Through hole angled pin header, 1x12, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical +Through hole straight pin header, 1x12, 1.27mm pitch, single row +Through hole pin header THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 1.27mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 1.27mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Horizontal +Through hole angled pin header, 1x13, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical +Through hole straight pin header, 1x13, 1.27mm pitch, single row +Through hole pin header THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 1.27mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 1.27mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Horizontal +Through hole angled pin header, 1x14, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical +Through hole straight pin header, 1x14, 1.27mm pitch, single row +Through hole pin header THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 1.27mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 1.27mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Horizontal +Through hole angled pin header, 1x15, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical +Through hole straight pin header, 1x15, 1.27mm pitch, single row +Through hole pin header THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 1.27mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 1.27mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Horizontal +Through hole angled pin header, 1x16, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical +Through hole straight pin header, 1x16, 1.27mm pitch, single row +Through hole pin header THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 1.27mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 1.27mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Horizontal +Through hole angled pin header, 1x17, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical +Through hole straight pin header, 1x17, 1.27mm pitch, single row +Through hole pin header THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 1.27mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 1.27mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Horizontal +Through hole angled pin header, 1x18, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical +Through hole straight pin header, 1x18, 1.27mm pitch, single row +Through hole pin header THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 1.27mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 1.27mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Horizontal +Through hole angled pin header, 1x19, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical +Through hole straight pin header, 1x19, 1.27mm pitch, single row +Through hole pin header THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 1.27mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 1.27mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Horizontal +Through hole angled pin header, 1x20, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical +Through hole straight pin header, 1x20, 1.27mm pitch, single row +Through hole pin header THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 1.27mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 1.27mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Horizontal +Through hole angled pin header, 1x21, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical +Through hole straight pin header, 1x21, 1.27mm pitch, single row +Through hole pin header THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 1.27mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 1.27mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Horizontal +Through hole angled pin header, 1x22, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical +Through hole straight pin header, 1x22, 1.27mm pitch, single row +Through hole pin header THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 1.27mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 1.27mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Horizontal +Through hole angled pin header, 1x23, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical +Through hole straight pin header, 1x23, 1.27mm pitch, single row +Through hole pin header THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 1.27mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 1.27mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Horizontal +Through hole angled pin header, 1x24, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical +Through hole straight pin header, 1x24, 1.27mm pitch, single row +Through hole pin header THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 1.27mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 1.27mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Horizontal +Through hole angled pin header, 1x25, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical +Through hole straight pin header, 1x25, 1.27mm pitch, single row +Through hole pin header THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 1.27mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 1.27mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Horizontal +Through hole angled pin header, 1x26, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical +Through hole straight pin header, 1x26, 1.27mm pitch, single row +Through hole pin header THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 1.27mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 1.27mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Horizontal +Through hole angled pin header, 1x27, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical +Through hole straight pin header, 1x27, 1.27mm pitch, single row +Through hole pin header THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 1.27mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 1.27mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Horizontal +Through hole angled pin header, 1x28, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical +Through hole straight pin header, 1x28, 1.27mm pitch, single row +Through hole pin header THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 1.27mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 1.27mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Horizontal +Through hole angled pin header, 1x29, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical +Through hole straight pin header, 1x29, 1.27mm pitch, single row +Through hole pin header THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 1.27mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 1.27mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Horizontal +Through hole angled pin header, 1x30, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical +Through hole straight pin header, 1x30, 1.27mm pitch, single row +Through hole pin header THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 1.27mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 1.27mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Horizontal +Through hole angled pin header, 1x31, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical +Through hole straight pin header, 1x31, 1.27mm pitch, single row +Through hole pin header THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 1.27mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 1.27mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Horizontal +Through hole angled pin header, 1x32, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical +Through hole straight pin header, 1x32, 1.27mm pitch, single row +Through hole pin header THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 1.27mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 1.27mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Horizontal +Through hole angled pin header, 1x33, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical +Through hole straight pin header, 1x33, 1.27mm pitch, single row +Through hole pin header THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 1.27mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 1.27mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Horizontal +Through hole angled pin header, 1x34, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical +Through hole straight pin header, 1x34, 1.27mm pitch, single row +Through hole pin header THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 1.27mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 1.27mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Horizontal +Through hole angled pin header, 1x35, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical +Through hole straight pin header, 1x35, 1.27mm pitch, single row +Through hole pin header THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 1.27mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 1.27mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Horizontal +Through hole angled pin header, 1x36, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical +Through hole straight pin header, 1x36, 1.27mm pitch, single row +Through hole pin header THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 1.27mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 1.27mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Horizontal +Through hole angled pin header, 1x37, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical +Through hole straight pin header, 1x37, 1.27mm pitch, single row +Through hole pin header THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 1.27mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 1.27mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Horizontal +Through hole angled pin header, 1x38, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical +Through hole straight pin header, 1x38, 1.27mm pitch, single row +Through hole pin header THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 1.27mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 1.27mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Horizontal +Through hole angled pin header, 1x39, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical +Through hole straight pin header, 1x39, 1.27mm pitch, single row +Through hole pin header THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 1.27mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 1.27mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Horizontal +Through hole angled pin header, 1x40, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical +Through hole straight pin header, 1x40, 1.27mm pitch, single row +Through hole pin header THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 1.27mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 1.27mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Horizontal +Through hole angled pin header, 2x01, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Vertical +Through hole straight pin header, 2x01, 1.27mm pitch, double rows +Through hole pin header THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Horizontal +Through hole angled pin header, 2x02, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Vertical +Through hole straight pin header, 2x02, 1.27mm pitch, double rows +Through hole pin header THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Horizontal +Through hole angled pin header, 2x03, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Vertical +Through hole straight pin header, 2x03, 1.27mm pitch, double rows +Through hole pin header THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Horizontal +Through hole angled pin header, 2x04, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Vertical +Through hole straight pin header, 2x04, 1.27mm pitch, double rows +Through hole pin header THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Horizontal +Through hole angled pin header, 2x05, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Vertical +Through hole straight pin header, 2x05, 1.27mm pitch, double rows +Through hole pin header THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Horizontal +Through hole angled pin header, 2x06, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Vertical +Through hole straight pin header, 2x06, 1.27mm pitch, double rows +Through hole pin header THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Horizontal +Through hole angled pin header, 2x07, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Vertical +Through hole straight pin header, 2x07, 1.27mm pitch, double rows +Through hole pin header THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Horizontal +Through hole angled pin header, 2x08, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Vertical +Through hole straight pin header, 2x08, 1.27mm pitch, double rows +Through hole pin header THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Horizontal +Through hole angled pin header, 2x09, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Vertical +Through hole straight pin header, 2x09, 1.27mm pitch, double rows +Through hole pin header THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Horizontal +Through hole angled pin header, 2x10, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Vertical +Through hole straight pin header, 2x10, 1.27mm pitch, double rows +Through hole pin header THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Horizontal +Through hole angled pin header, 2x11, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Vertical +Through hole straight pin header, 2x11, 1.27mm pitch, double rows +Through hole pin header THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Horizontal +Through hole angled pin header, 2x12, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Vertical +Through hole straight pin header, 2x12, 1.27mm pitch, double rows +Through hole pin header THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Horizontal +Through hole angled pin header, 2x13, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Vertical +Through hole straight pin header, 2x13, 1.27mm pitch, double rows +Through hole pin header THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Horizontal +Through hole angled pin header, 2x14, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Vertical +Through hole straight pin header, 2x14, 1.27mm pitch, double rows +Through hole pin header THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Horizontal +Through hole angled pin header, 2x15, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Vertical +Through hole straight pin header, 2x15, 1.27mm pitch, double rows +Through hole pin header THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Horizontal +Through hole angled pin header, 2x16, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Vertical +Through hole straight pin header, 2x16, 1.27mm pitch, double rows +Through hole pin header THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Horizontal +Through hole angled pin header, 2x17, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Vertical +Through hole straight pin header, 2x17, 1.27mm pitch, double rows +Through hole pin header THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Horizontal +Through hole angled pin header, 2x18, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Vertical +Through hole straight pin header, 2x18, 1.27mm pitch, double rows +Through hole pin header THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Horizontal +Through hole angled pin header, 2x19, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Vertical +Through hole straight pin header, 2x19, 1.27mm pitch, double rows +Through hole pin header THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Horizontal +Through hole angled pin header, 2x20, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Vertical +Through hole straight pin header, 2x20, 1.27mm pitch, double rows +Through hole pin header THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Horizontal +Through hole angled pin header, 2x21, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Vertical +Through hole straight pin header, 2x21, 1.27mm pitch, double rows +Through hole pin header THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Horizontal +Through hole angled pin header, 2x22, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Vertical +Through hole straight pin header, 2x22, 1.27mm pitch, double rows +Through hole pin header THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Horizontal +Through hole angled pin header, 2x23, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Vertical +Through hole straight pin header, 2x23, 1.27mm pitch, double rows +Through hole pin header THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Horizontal +Through hole angled pin header, 2x24, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Vertical +Through hole straight pin header, 2x24, 1.27mm pitch, double rows +Through hole pin header THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Horizontal +Through hole angled pin header, 2x25, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Vertical +Through hole straight pin header, 2x25, 1.27mm pitch, double rows +Through hole pin header THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Horizontal +Through hole angled pin header, 2x26, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Vertical +Through hole straight pin header, 2x26, 1.27mm pitch, double rows +Through hole pin header THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Horizontal +Through hole angled pin header, 2x27, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Vertical +Through hole straight pin header, 2x27, 1.27mm pitch, double rows +Through hole pin header THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Horizontal +Through hole angled pin header, 2x28, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Vertical +Through hole straight pin header, 2x28, 1.27mm pitch, double rows +Through hole pin header THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Horizontal +Through hole angled pin header, 2x29, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Vertical +Through hole straight pin header, 2x29, 1.27mm pitch, double rows +Through hole pin header THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Horizontal +Through hole angled pin header, 2x30, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Vertical +Through hole straight pin header, 2x30, 1.27mm pitch, double rows +Through hole pin header THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Horizontal +Through hole angled pin header, 2x31, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Vertical +Through hole straight pin header, 2x31, 1.27mm pitch, double rows +Through hole pin header THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Horizontal +Through hole angled pin header, 2x32, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Vertical +Through hole straight pin header, 2x32, 1.27mm pitch, double rows +Through hole pin header THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Horizontal +Through hole angled pin header, 2x33, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Vertical +Through hole straight pin header, 2x33, 1.27mm pitch, double rows +Through hole pin header THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Horizontal +Through hole angled pin header, 2x34, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Vertical +Through hole straight pin header, 2x34, 1.27mm pitch, double rows +Through hole pin header THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Horizontal +Through hole angled pin header, 2x35, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Vertical +Through hole straight pin header, 2x35, 1.27mm pitch, double rows +Through hole pin header THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Horizontal +Through hole angled pin header, 2x36, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Vertical +Through hole straight pin header, 2x36, 1.27mm pitch, double rows +Through hole pin header THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Horizontal +Through hole angled pin header, 2x37, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Vertical +Through hole straight pin header, 2x37, 1.27mm pitch, double rows +Through hole pin header THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Horizontal +Through hole angled pin header, 2x38, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Vertical +Through hole straight pin header, 2x38, 1.27mm pitch, double rows +Through hole pin header THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Horizontal +Through hole angled pin header, 2x39, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Vertical +Through hole straight pin header, 2x39, 1.27mm pitch, double rows +Through hole pin header THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Horizontal +Through hole angled pin header, 2x40, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Vertical +Through hole straight pin header, 2x40, 1.27mm pitch, double rows +Through hole pin header THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_1x01_P2.00mm_Horizontal +Through hole angled pin header, 1x01, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinHeader_2.00mm +PinHeader_1x01_P2.00mm_Vertical +Through hole straight pin header, 1x01, 2.00mm pitch, single row +Through hole pin header THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Horizontal +Through hole angled pin header, 1x02, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical +Through hole straight pin header, 1x02, 2.00mm pitch, single row +Through hole pin header THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 2.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 2.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Horizontal +Through hole angled pin header, 1x03, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical +Through hole straight pin header, 1x03, 2.00mm pitch, single row +Through hole pin header THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 2.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 2.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Horizontal +Through hole angled pin header, 1x04, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical +Through hole straight pin header, 1x04, 2.00mm pitch, single row +Through hole pin header THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 2.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 2.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Horizontal +Through hole angled pin header, 1x05, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical +Through hole straight pin header, 1x05, 2.00mm pitch, single row +Through hole pin header THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 2.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 2.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Horizontal +Through hole angled pin header, 1x06, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical +Through hole straight pin header, 1x06, 2.00mm pitch, single row +Through hole pin header THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 2.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 2.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Horizontal +Through hole angled pin header, 1x07, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical +Through hole straight pin header, 1x07, 2.00mm pitch, single row +Through hole pin header THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 2.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 2.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Horizontal +Through hole angled pin header, 1x08, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical +Through hole straight pin header, 1x08, 2.00mm pitch, single row +Through hole pin header THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 2.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 2.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Horizontal +Through hole angled pin header, 1x09, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical +Through hole straight pin header, 1x09, 2.00mm pitch, single row +Through hole pin header THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 2.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 2.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Horizontal +Through hole angled pin header, 1x10, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical +Through hole straight pin header, 1x10, 2.00mm pitch, single row +Through hole pin header THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 2.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 2.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Horizontal +Through hole angled pin header, 1x11, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical +Through hole straight pin header, 1x11, 2.00mm pitch, single row +Through hole pin header THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 2.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 2.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Horizontal +Through hole angled pin header, 1x12, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical +Through hole straight pin header, 1x12, 2.00mm pitch, single row +Through hole pin header THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 2.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 2.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Horizontal +Through hole angled pin header, 1x13, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical +Through hole straight pin header, 1x13, 2.00mm pitch, single row +Through hole pin header THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 2.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 2.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Horizontal +Through hole angled pin header, 1x14, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical +Through hole straight pin header, 1x14, 2.00mm pitch, single row +Through hole pin header THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 2.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 2.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Horizontal +Through hole angled pin header, 1x15, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical +Through hole straight pin header, 1x15, 2.00mm pitch, single row +Through hole pin header THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 2.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 2.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Horizontal +Through hole angled pin header, 1x16, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical +Through hole straight pin header, 1x16, 2.00mm pitch, single row +Through hole pin header THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 2.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 2.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Horizontal +Through hole angled pin header, 1x17, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical +Through hole straight pin header, 1x17, 2.00mm pitch, single row +Through hole pin header THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 2.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 2.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Horizontal +Through hole angled pin header, 1x18, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical +Through hole straight pin header, 1x18, 2.00mm pitch, single row +Through hole pin header THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 2.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 2.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Horizontal +Through hole angled pin header, 1x19, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical +Through hole straight pin header, 1x19, 2.00mm pitch, single row +Through hole pin header THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 2.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 2.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Horizontal +Through hole angled pin header, 1x20, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical +Through hole straight pin header, 1x20, 2.00mm pitch, single row +Through hole pin header THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 2.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 2.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Horizontal +Through hole angled pin header, 1x21, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical +Through hole straight pin header, 1x21, 2.00mm pitch, single row +Through hole pin header THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 2.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 2.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Horizontal +Through hole angled pin header, 1x22, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical +Through hole straight pin header, 1x22, 2.00mm pitch, single row +Through hole pin header THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 2.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 2.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Horizontal +Through hole angled pin header, 1x23, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical +Through hole straight pin header, 1x23, 2.00mm pitch, single row +Through hole pin header THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 2.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 2.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Horizontal +Through hole angled pin header, 1x24, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical +Through hole straight pin header, 1x24, 2.00mm pitch, single row +Through hole pin header THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 2.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 2.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Horizontal +Through hole angled pin header, 1x25, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical +Through hole straight pin header, 1x25, 2.00mm pitch, single row +Through hole pin header THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 2.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 2.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Horizontal +Through hole angled pin header, 1x26, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical +Through hole straight pin header, 1x26, 2.00mm pitch, single row +Through hole pin header THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 2.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 2.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Horizontal +Through hole angled pin header, 1x27, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical +Through hole straight pin header, 1x27, 2.00mm pitch, single row +Through hole pin header THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 2.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 2.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Horizontal +Through hole angled pin header, 1x28, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical +Through hole straight pin header, 1x28, 2.00mm pitch, single row +Through hole pin header THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 2.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 2.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Horizontal +Through hole angled pin header, 1x29, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical +Through hole straight pin header, 1x29, 2.00mm pitch, single row +Through hole pin header THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 2.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 2.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Horizontal +Through hole angled pin header, 1x30, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical +Through hole straight pin header, 1x30, 2.00mm pitch, single row +Through hole pin header THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 2.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 2.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Horizontal +Through hole angled pin header, 1x31, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical +Through hole straight pin header, 1x31, 2.00mm pitch, single row +Through hole pin header THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 2.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 2.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Horizontal +Through hole angled pin header, 1x32, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical +Through hole straight pin header, 1x32, 2.00mm pitch, single row +Through hole pin header THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 2.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 2.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Horizontal +Through hole angled pin header, 1x33, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical +Through hole straight pin header, 1x33, 2.00mm pitch, single row +Through hole pin header THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 2.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 2.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Horizontal +Through hole angled pin header, 1x34, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical +Through hole straight pin header, 1x34, 2.00mm pitch, single row +Through hole pin header THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 2.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 2.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Horizontal +Through hole angled pin header, 1x35, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical +Through hole straight pin header, 1x35, 2.00mm pitch, single row +Through hole pin header THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 2.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 2.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Horizontal +Through hole angled pin header, 1x36, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical +Through hole straight pin header, 1x36, 2.00mm pitch, single row +Through hole pin header THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 2.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 2.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Horizontal +Through hole angled pin header, 1x37, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical +Through hole straight pin header, 1x37, 2.00mm pitch, single row +Through hole pin header THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 2.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 2.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Horizontal +Through hole angled pin header, 1x38, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical +Through hole straight pin header, 1x38, 2.00mm pitch, single row +Through hole pin header THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 2.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 2.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Horizontal +Through hole angled pin header, 1x39, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical +Through hole straight pin header, 1x39, 2.00mm pitch, single row +Through hole pin header THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 2.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 2.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Horizontal +Through hole angled pin header, 1x40, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical +Through hole straight pin header, 1x40, 2.00mm pitch, single row +Through hole pin header THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 2.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 2.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Horizontal +Through hole angled pin header, 2x01, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Vertical +Through hole straight pin header, 2x01, 2.00mm pitch, double rows +Through hole pin header THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Horizontal +Through hole angled pin header, 2x02, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Vertical +Through hole straight pin header, 2x02, 2.00mm pitch, double rows +Through hole pin header THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Horizontal +Through hole angled pin header, 2x03, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Vertical +Through hole straight pin header, 2x03, 2.00mm pitch, double rows +Through hole pin header THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Horizontal +Through hole angled pin header, 2x04, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Vertical +Through hole straight pin header, 2x04, 2.00mm pitch, double rows +Through hole pin header THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Horizontal +Through hole angled pin header, 2x05, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Vertical +Through hole straight pin header, 2x05, 2.00mm pitch, double rows +Through hole pin header THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Horizontal +Through hole angled pin header, 2x06, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Vertical +Through hole straight pin header, 2x06, 2.00mm pitch, double rows +Through hole pin header THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Horizontal +Through hole angled pin header, 2x07, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Vertical +Through hole straight pin header, 2x07, 2.00mm pitch, double rows +Through hole pin header THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Horizontal +Through hole angled pin header, 2x08, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Vertical +Through hole straight pin header, 2x08, 2.00mm pitch, double rows +Through hole pin header THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Horizontal +Through hole angled pin header, 2x09, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Vertical +Through hole straight pin header, 2x09, 2.00mm pitch, double rows +Through hole pin header THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Horizontal +Through hole angled pin header, 2x10, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Vertical +Through hole straight pin header, 2x10, 2.00mm pitch, double rows +Through hole pin header THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Horizontal +Through hole angled pin header, 2x11, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Vertical +Through hole straight pin header, 2x11, 2.00mm pitch, double rows +Through hole pin header THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Horizontal +Through hole angled pin header, 2x12, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Vertical +Through hole straight pin header, 2x12, 2.00mm pitch, double rows +Through hole pin header THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Horizontal +Through hole angled pin header, 2x13, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Vertical +Through hole straight pin header, 2x13, 2.00mm pitch, double rows +Through hole pin header THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Horizontal +Through hole angled pin header, 2x14, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Vertical +Through hole straight pin header, 2x14, 2.00mm pitch, double rows +Through hole pin header THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Horizontal +Through hole angled pin header, 2x15, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Vertical +Through hole straight pin header, 2x15, 2.00mm pitch, double rows +Through hole pin header THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Horizontal +Through hole angled pin header, 2x16, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Vertical +Through hole straight pin header, 2x16, 2.00mm pitch, double rows +Through hole pin header THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Horizontal +Through hole angled pin header, 2x17, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Vertical +Through hole straight pin header, 2x17, 2.00mm pitch, double rows +Through hole pin header THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Horizontal +Through hole angled pin header, 2x18, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Vertical +Through hole straight pin header, 2x18, 2.00mm pitch, double rows +Through hole pin header THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Horizontal +Through hole angled pin header, 2x19, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Vertical +Through hole straight pin header, 2x19, 2.00mm pitch, double rows +Through hole pin header THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Horizontal +Through hole angled pin header, 2x20, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Vertical +Through hole straight pin header, 2x20, 2.00mm pitch, double rows +Through hole pin header THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Horizontal +Through hole angled pin header, 2x21, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Vertical +Through hole straight pin header, 2x21, 2.00mm pitch, double rows +Through hole pin header THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Horizontal +Through hole angled pin header, 2x22, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Vertical +Through hole straight pin header, 2x22, 2.00mm pitch, double rows +Through hole pin header THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Horizontal +Through hole angled pin header, 2x23, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Vertical +Through hole straight pin header, 2x23, 2.00mm pitch, double rows +Through hole pin header THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Horizontal +Through hole angled pin header, 2x24, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Vertical +Through hole straight pin header, 2x24, 2.00mm pitch, double rows +Through hole pin header THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Horizontal +Through hole angled pin header, 2x25, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Vertical +Through hole straight pin header, 2x25, 2.00mm pitch, double rows +Through hole pin header THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Horizontal +Through hole angled pin header, 2x26, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Vertical +Through hole straight pin header, 2x26, 2.00mm pitch, double rows +Through hole pin header THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Horizontal +Through hole angled pin header, 2x27, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Vertical +Through hole straight pin header, 2x27, 2.00mm pitch, double rows +Through hole pin header THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Horizontal +Through hole angled pin header, 2x28, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Vertical +Through hole straight pin header, 2x28, 2.00mm pitch, double rows +Through hole pin header THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Horizontal +Through hole angled pin header, 2x29, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Vertical +Through hole straight pin header, 2x29, 2.00mm pitch, double rows +Through hole pin header THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Horizontal +Through hole angled pin header, 2x30, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Vertical +Through hole straight pin header, 2x30, 2.00mm pitch, double rows +Through hole pin header THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Horizontal +Through hole angled pin header, 2x31, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Vertical +Through hole straight pin header, 2x31, 2.00mm pitch, double rows +Through hole pin header THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Horizontal +Through hole angled pin header, 2x32, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Vertical +Through hole straight pin header, 2x32, 2.00mm pitch, double rows +Through hole pin header THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Horizontal +Through hole angled pin header, 2x33, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Vertical +Through hole straight pin header, 2x33, 2.00mm pitch, double rows +Through hole pin header THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Horizontal +Through hole angled pin header, 2x34, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Vertical +Through hole straight pin header, 2x34, 2.00mm pitch, double rows +Through hole pin header THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Horizontal +Through hole angled pin header, 2x35, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Vertical +Through hole straight pin header, 2x35, 2.00mm pitch, double rows +Through hole pin header THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Horizontal +Through hole angled pin header, 2x36, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Vertical +Through hole straight pin header, 2x36, 2.00mm pitch, double rows +Through hole pin header THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Horizontal +Through hole angled pin header, 2x37, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Vertical +Through hole straight pin header, 2x37, 2.00mm pitch, double rows +Through hole pin header THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Horizontal +Through hole angled pin header, 2x38, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Vertical +Through hole straight pin header, 2x38, 2.00mm pitch, double rows +Through hole pin header THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Horizontal +Through hole angled pin header, 2x39, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Vertical +Through hole straight pin header, 2x39, 2.00mm pitch, double rows +Through hole pin header THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Horizontal +Through hole angled pin header, 2x40, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Vertical +Through hole straight pin header, 2x40, 2.00mm pitch, double rows +Through hole pin header THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_1x01_P2.54mm_Horizontal +Through hole angled pin header, 1x01, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinHeader_2.54mm +PinHeader_1x01_P2.54mm_Vertical +Through hole straight pin header, 1x01, 2.54mm pitch, single row +Through hole pin header THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Horizontal +Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical +Through hole straight pin header, 1x02, 2.54mm pitch, single row +Through hole pin header THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 2.54mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 2.54mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Horizontal +Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical +Through hole straight pin header, 1x03, 2.54mm pitch, single row +Through hole pin header THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 2.54mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 2.54mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Horizontal +Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical +Through hole straight pin header, 1x04, 2.54mm pitch, single row +Through hole pin header THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 2.54mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 2.54mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Horizontal +Through hole angled pin header, 1x05, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical +Through hole straight pin header, 1x05, 2.54mm pitch, single row +Through hole pin header THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 2.54mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 2.54mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Horizontal +Through hole angled pin header, 1x06, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical +Through hole straight pin header, 1x06, 2.54mm pitch, single row +Through hole pin header THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 2.54mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 2.54mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Horizontal +Through hole angled pin header, 1x07, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical +Through hole straight pin header, 1x07, 2.54mm pitch, single row +Through hole pin header THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 2.54mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 2.54mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Horizontal +Through hole angled pin header, 1x08, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical +Through hole straight pin header, 1x08, 2.54mm pitch, single row +Through hole pin header THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 2.54mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 2.54mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Horizontal +Through hole angled pin header, 1x09, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical +Through hole straight pin header, 1x09, 2.54mm pitch, single row +Through hole pin header THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 2.54mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 2.54mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Horizontal +Through hole angled pin header, 1x10, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical +Through hole straight pin header, 1x10, 2.54mm pitch, single row +Through hole pin header THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 2.54mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 2.54mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Horizontal +Through hole angled pin header, 1x11, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical +Through hole straight pin header, 1x11, 2.54mm pitch, single row +Through hole pin header THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 2.54mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 2.54mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Horizontal +Through hole angled pin header, 1x12, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical +Through hole straight pin header, 1x12, 2.54mm pitch, single row +Through hole pin header THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 2.54mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 2.54mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Horizontal +Through hole angled pin header, 1x13, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical +Through hole straight pin header, 1x13, 2.54mm pitch, single row +Through hole pin header THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 2.54mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 2.54mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Horizontal +Through hole angled pin header, 1x14, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical +Through hole straight pin header, 1x14, 2.54mm pitch, single row +Through hole pin header THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 2.54mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 2.54mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Horizontal +Through hole angled pin header, 1x15, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical +Through hole straight pin header, 1x15, 2.54mm pitch, single row +Through hole pin header THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 2.54mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 2.54mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Horizontal +Through hole angled pin header, 1x16, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical +Through hole straight pin header, 1x16, 2.54mm pitch, single row +Through hole pin header THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 2.54mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 2.54mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Horizontal +Through hole angled pin header, 1x17, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical +Through hole straight pin header, 1x17, 2.54mm pitch, single row +Through hole pin header THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 2.54mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 2.54mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Horizontal +Through hole angled pin header, 1x18, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical +Through hole straight pin header, 1x18, 2.54mm pitch, single row +Through hole pin header THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 2.54mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 2.54mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Horizontal +Through hole angled pin header, 1x19, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical +Through hole straight pin header, 1x19, 2.54mm pitch, single row +Through hole pin header THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 2.54mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 2.54mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Horizontal +Through hole angled pin header, 1x20, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical +Through hole straight pin header, 1x20, 2.54mm pitch, single row +Through hole pin header THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 2.54mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 2.54mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Horizontal +Through hole angled pin header, 1x21, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical +Through hole straight pin header, 1x21, 2.54mm pitch, single row +Through hole pin header THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 2.54mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 2.54mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Horizontal +Through hole angled pin header, 1x22, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical +Through hole straight pin header, 1x22, 2.54mm pitch, single row +Through hole pin header THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 2.54mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 2.54mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Horizontal +Through hole angled pin header, 1x23, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical +Through hole straight pin header, 1x23, 2.54mm pitch, single row +Through hole pin header THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 2.54mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 2.54mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Horizontal +Through hole angled pin header, 1x24, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical +Through hole straight pin header, 1x24, 2.54mm pitch, single row +Through hole pin header THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 2.54mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 2.54mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Horizontal +Through hole angled pin header, 1x25, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical +Through hole straight pin header, 1x25, 2.54mm pitch, single row +Through hole pin header THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 2.54mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 2.54mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Horizontal +Through hole angled pin header, 1x26, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical +Through hole straight pin header, 1x26, 2.54mm pitch, single row +Through hole pin header THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 2.54mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 2.54mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Horizontal +Through hole angled pin header, 1x27, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical +Through hole straight pin header, 1x27, 2.54mm pitch, single row +Through hole pin header THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 2.54mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 2.54mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Horizontal +Through hole angled pin header, 1x28, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical +Through hole straight pin header, 1x28, 2.54mm pitch, single row +Through hole pin header THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 2.54mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 2.54mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Horizontal +Through hole angled pin header, 1x29, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical +Through hole straight pin header, 1x29, 2.54mm pitch, single row +Through hole pin header THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 2.54mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 2.54mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Horizontal +Through hole angled pin header, 1x30, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical +Through hole straight pin header, 1x30, 2.54mm pitch, single row +Through hole pin header THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 2.54mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 2.54mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Horizontal +Through hole angled pin header, 1x31, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical +Through hole straight pin header, 1x31, 2.54mm pitch, single row +Through hole pin header THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 2.54mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 2.54mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Horizontal +Through hole angled pin header, 1x32, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical +Through hole straight pin header, 1x32, 2.54mm pitch, single row +Through hole pin header THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 2.54mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 2.54mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Horizontal +Through hole angled pin header, 1x33, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical +Through hole straight pin header, 1x33, 2.54mm pitch, single row +Through hole pin header THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 2.54mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 2.54mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Horizontal +Through hole angled pin header, 1x34, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical +Through hole straight pin header, 1x34, 2.54mm pitch, single row +Through hole pin header THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 2.54mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 2.54mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Horizontal +Through hole angled pin header, 1x35, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical +Through hole straight pin header, 1x35, 2.54mm pitch, single row +Through hole pin header THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 2.54mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 2.54mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Horizontal +Through hole angled pin header, 1x36, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical +Through hole straight pin header, 1x36, 2.54mm pitch, single row +Through hole pin header THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 2.54mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 2.54mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Horizontal +Through hole angled pin header, 1x37, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical +Through hole straight pin header, 1x37, 2.54mm pitch, single row +Through hole pin header THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 2.54mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 2.54mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Horizontal +Through hole angled pin header, 1x38, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical +Through hole straight pin header, 1x38, 2.54mm pitch, single row +Through hole pin header THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 2.54mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 2.54mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Horizontal +Through hole angled pin header, 1x39, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical +Through hole straight pin header, 1x39, 2.54mm pitch, single row +Through hole pin header THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 2.54mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 2.54mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Horizontal +Through hole angled pin header, 1x40, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical +Through hole straight pin header, 1x40, 2.54mm pitch, single row +Through hole pin header THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 2.54mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 2.54mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Horizontal +Through hole angled pin header, 2x01, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Vertical +Through hole straight pin header, 2x01, 2.54mm pitch, double rows +Through hole pin header THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Horizontal +Through hole angled pin header, 2x02, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Vertical +Through hole straight pin header, 2x02, 2.54mm pitch, double rows +Through hole pin header THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Horizontal +Through hole angled pin header, 2x03, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Vertical +Through hole straight pin header, 2x03, 2.54mm pitch, double rows +Through hole pin header THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Horizontal +Through hole angled pin header, 2x04, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Vertical +Through hole straight pin header, 2x04, 2.54mm pitch, double rows +Through hole pin header THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Horizontal +Through hole angled pin header, 2x05, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Vertical +Through hole straight pin header, 2x05, 2.54mm pitch, double rows +Through hole pin header THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Horizontal +Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Vertical +Through hole straight pin header, 2x06, 2.54mm pitch, double rows +Through hole pin header THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Horizontal +Through hole angled pin header, 2x07, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Vertical +Through hole straight pin header, 2x07, 2.54mm pitch, double rows +Through hole pin header THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Horizontal +Through hole angled pin header, 2x08, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Vertical +Through hole straight pin header, 2x08, 2.54mm pitch, double rows +Through hole pin header THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Horizontal +Through hole angled pin header, 2x09, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Vertical +Through hole straight pin header, 2x09, 2.54mm pitch, double rows +Through hole pin header THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Horizontal +Through hole angled pin header, 2x10, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Vertical +Through hole straight pin header, 2x10, 2.54mm pitch, double rows +Through hole pin header THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Horizontal +Through hole angled pin header, 2x11, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Vertical +Through hole straight pin header, 2x11, 2.54mm pitch, double rows +Through hole pin header THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Horizontal +Through hole angled pin header, 2x12, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Vertical +Through hole straight pin header, 2x12, 2.54mm pitch, double rows +Through hole pin header THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Horizontal +Through hole angled pin header, 2x13, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Vertical +Through hole straight pin header, 2x13, 2.54mm pitch, double rows +Through hole pin header THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Horizontal +Through hole angled pin header, 2x14, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Vertical +Through hole straight pin header, 2x14, 2.54mm pitch, double rows +Through hole pin header THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Horizontal +Through hole angled pin header, 2x15, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Vertical +Through hole straight pin header, 2x15, 2.54mm pitch, double rows +Through hole pin header THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Horizontal +Through hole angled pin header, 2x16, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Vertical +Through hole straight pin header, 2x16, 2.54mm pitch, double rows +Through hole pin header THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Horizontal +Through hole angled pin header, 2x17, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Vertical +Through hole straight pin header, 2x17, 2.54mm pitch, double rows +Through hole pin header THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Horizontal +Through hole angled pin header, 2x18, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Vertical +Through hole straight pin header, 2x18, 2.54mm pitch, double rows +Through hole pin header THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Horizontal +Through hole angled pin header, 2x19, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Vertical +Through hole straight pin header, 2x19, 2.54mm pitch, double rows +Through hole pin header THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Horizontal +Through hole angled pin header, 2x20, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Vertical +Through hole straight pin header, 2x20, 2.54mm pitch, double rows +Through hole pin header THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Horizontal +Through hole angled pin header, 2x21, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Vertical +Through hole straight pin header, 2x21, 2.54mm pitch, double rows +Through hole pin header THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Horizontal +Through hole angled pin header, 2x22, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Vertical +Through hole straight pin header, 2x22, 2.54mm pitch, double rows +Through hole pin header THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Horizontal +Through hole angled pin header, 2x23, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Vertical +Through hole straight pin header, 2x23, 2.54mm pitch, double rows +Through hole pin header THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Horizontal +Through hole angled pin header, 2x24, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Vertical +Through hole straight pin header, 2x24, 2.54mm pitch, double rows +Through hole pin header THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Horizontal +Through hole angled pin header, 2x25, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Vertical +Through hole straight pin header, 2x25, 2.54mm pitch, double rows +Through hole pin header THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Horizontal +Through hole angled pin header, 2x26, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Vertical +Through hole straight pin header, 2x26, 2.54mm pitch, double rows +Through hole pin header THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Horizontal +Through hole angled pin header, 2x27, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Vertical +Through hole straight pin header, 2x27, 2.54mm pitch, double rows +Through hole pin header THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Horizontal +Through hole angled pin header, 2x28, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Vertical +Through hole straight pin header, 2x28, 2.54mm pitch, double rows +Through hole pin header THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Horizontal +Through hole angled pin header, 2x29, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Vertical +Through hole straight pin header, 2x29, 2.54mm pitch, double rows +Through hole pin header THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Horizontal +Through hole angled pin header, 2x30, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Vertical +Through hole straight pin header, 2x30, 2.54mm pitch, double rows +Through hole pin header THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Horizontal +Through hole angled pin header, 2x31, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Vertical +Through hole straight pin header, 2x31, 2.54mm pitch, double rows +Through hole pin header THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Horizontal +Through hole angled pin header, 2x32, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Vertical +Through hole straight pin header, 2x32, 2.54mm pitch, double rows +Through hole pin header THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Horizontal +Through hole angled pin header, 2x33, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Vertical +Through hole straight pin header, 2x33, 2.54mm pitch, double rows +Through hole pin header THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Horizontal +Through hole angled pin header, 2x34, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Vertical +Through hole straight pin header, 2x34, 2.54mm pitch, double rows +Through hole pin header THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Horizontal +Through hole angled pin header, 2x35, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Vertical +Through hole straight pin header, 2x35, 2.54mm pitch, double rows +Through hole pin header THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Horizontal +Through hole angled pin header, 2x36, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Vertical +Through hole straight pin header, 2x36, 2.54mm pitch, double rows +Through hole pin header THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Horizontal +Through hole angled pin header, 2x37, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Vertical +Through hole straight pin header, 2x37, 2.54mm pitch, double rows +Through hole pin header THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Horizontal +Through hole angled pin header, 2x38, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Vertical +Through hole straight pin header, 2x38, 2.54mm pitch, double rows +Through hole pin header THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Horizontal +Through hole angled pin header, 2x39, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Vertical +Through hole straight pin header, 2x39, 2.54mm pitch, double rows +Through hole pin header THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Horizontal +Through hole angled pin header, 2x40, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Vertical +Through hole straight pin header, 2x40, 2.54mm pitch, double rows +Through hole pin header THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical +Through hole straight socket strip, 1x02, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x02 1.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x02 1.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical +Through hole straight socket strip, 1x03, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x03 1.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x03 1.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical +Through hole straight socket strip, 1x04, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x04 1.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x04 1.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical +Through hole straight socket strip, 1x05, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x05 1.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x05 1.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical +Through hole straight socket strip, 1x06, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x06 1.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x06 1.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical +Through hole straight socket strip, 1x07, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x07 1.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x07 1.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical +Through hole straight socket strip, 1x08, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x08 1.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x08 1.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical +Through hole straight socket strip, 1x09, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x09 1.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x09 1.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical +Through hole straight socket strip, 1x10, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x10 1.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x10 1.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical +Through hole straight socket strip, 1x11, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x11 1.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x11 1.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical +Through hole straight socket strip, 1x12, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x12 1.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x12 1.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical +Through hole straight socket strip, 1x13, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x13 1.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x13 1.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical +Through hole straight socket strip, 1x14, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x14 1.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x14 1.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical +Through hole straight socket strip, 1x15, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x15 1.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x15 1.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical +Through hole straight socket strip, 1x16, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x16 1.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x16 1.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical +Through hole straight socket strip, 1x17, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x17 1.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x17 1.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical +Through hole straight socket strip, 1x18, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x18 1.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x18 1.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical +Through hole straight socket strip, 1x19, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x19 1.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x19 1.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical +Through hole straight socket strip, 1x20, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x20 1.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x20 1.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical +Through hole straight socket strip, 1x21, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x21 1.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x21 1.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical +Through hole straight socket strip, 1x22, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x22 1.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x22 1.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical +Through hole straight socket strip, 1x23, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x23 1.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x23 1.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical +Through hole straight socket strip, 1x24, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x24 1.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x24 1.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical +Through hole straight socket strip, 1x25, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x25 1.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x25 1.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical +Through hole straight socket strip, 1x26, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x26 1.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x26 1.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical +Through hole straight socket strip, 1x27, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x27 1.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x27 1.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical +Through hole straight socket strip, 1x28, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x28 1.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x28 1.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical +Through hole straight socket strip, 1x29, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x29 1.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x29 1.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical +Through hole straight socket strip, 1x30, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x30 1.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x30 1.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical +Through hole straight socket strip, 1x31, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x31 1.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x31 1.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical +Through hole straight socket strip, 1x32, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x32 1.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x32 1.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical +Through hole straight socket strip, 1x33, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x33 1.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x33 1.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical +Through hole straight socket strip, 1x34, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x34 1.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x34 1.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical +Through hole straight socket strip, 1x35, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x35 1.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x35 1.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical +Through hole straight socket strip, 1x36, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x36 1.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x36 1.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical +Through hole straight socket strip, 1x37, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x37 1.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x37 1.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical +Through hole straight socket strip, 1x38, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x38 1.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x38 1.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical +Through hole straight socket strip, 1x39, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x39 1.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x39 1.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical +Through hole straight socket strip, 1x40, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x40 1.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x40 1.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_2x02_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x02 1.00mm double row +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_2x03_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x03 1.00mm double row +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_2x04_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x04 1.00mm double row +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_2x05_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x05 1.00mm double row +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_2x06_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x06 1.00mm double row +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_2x07_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x07 1.00mm double row +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_2x08_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x08 1.00mm double row +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_2x09_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x09 1.00mm double row +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_2x10_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x10 1.00mm double row +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_2x11_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x11 1.00mm double row +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_2x12_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x12 1.00mm double row +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_2x13_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x13 1.00mm double row +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_2x14_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x14 1.00mm double row +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_2x15_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x15 1.00mm double row +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_2x16_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x16 1.00mm double row +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_2x17_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x17 1.00mm double row +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_2x18_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x18 1.00mm double row +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_2x19_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x19 1.00mm double row +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_2x20_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x20 1.00mm double row +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_2x21_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x21 1.00mm double row +0 +42 +42 +Connector_PinSocket_1.00mm +PinSocket_2x22_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x22 1.00mm double row +0 +44 +44 +Connector_PinSocket_1.00mm +PinSocket_2x23_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x23 1.00mm double row +0 +46 +46 +Connector_PinSocket_1.00mm +PinSocket_2x24_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x24 1.00mm double row +0 +48 +48 +Connector_PinSocket_1.00mm +PinSocket_2x25_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x25 1.00mm double row +0 +50 +50 +Connector_PinSocket_1.00mm +PinSocket_2x26_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x26 1.00mm double row +0 +52 +52 +Connector_PinSocket_1.00mm +PinSocket_2x27_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x27 1.00mm double row +0 +54 +54 +Connector_PinSocket_1.00mm +PinSocket_2x28_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x28 1.00mm double row +0 +56 +56 +Connector_PinSocket_1.00mm +PinSocket_2x29_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x29 1.00mm double row +0 +58 +58 +Connector_PinSocket_1.00mm +PinSocket_2x30_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x30 1.00mm double row +0 +60 +60 +Connector_PinSocket_1.00mm +PinSocket_2x31_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x31 1.00mm double row +0 +62 +62 +Connector_PinSocket_1.00mm +PinSocket_2x32_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x32 1.00mm double row +0 +64 +64 +Connector_PinSocket_1.00mm +PinSocket_2x33_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x33 1.00mm double row +0 +66 +66 +Connector_PinSocket_1.00mm +PinSocket_2x34_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x34 1.00mm double row +0 +68 +68 +Connector_PinSocket_1.00mm +PinSocket_2x35_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x35 1.00mm double row +0 +70 +70 +Connector_PinSocket_1.00mm +PinSocket_2x36_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x36 1.00mm double row +0 +72 +72 +Connector_PinSocket_1.00mm +PinSocket_2x37_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x37 1.00mm double row +0 +74 +74 +Connector_PinSocket_1.00mm +PinSocket_2x38_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x38 1.00mm double row +0 +76 +76 +Connector_PinSocket_1.00mm +PinSocket_2x39_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x39 1.00mm double row +0 +78 +78 +Connector_PinSocket_1.00mm +PinSocket_2x40_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x40 1.00mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_1x01_P1.27mm_Vertical +Through hole straight socket strip, 1x01, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical +Through hole straight socket strip, 1x02, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x02 1.27mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x02 1.27mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical +Through hole straight socket strip, 1x03, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x03 1.27mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x03 1.27mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical +Through hole straight socket strip, 1x04, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x04 1.27mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x04 1.27mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical +Through hole straight socket strip, 1x05, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x05 1.27mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x05 1.27mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical +Through hole straight socket strip, 1x06, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x06 1.27mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x06 1.27mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical +Through hole straight socket strip, 1x07, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x07 1.27mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x07 1.27mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical +Through hole straight socket strip, 1x08, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x08 1.27mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x08 1.27mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical +Through hole straight socket strip, 1x09, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x09 1.27mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x09 1.27mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical +Through hole straight socket strip, 1x10, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x10 1.27mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x10 1.27mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical +Through hole straight socket strip, 1x11, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x11 1.27mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x11 1.27mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical +Through hole straight socket strip, 1x12, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x12 1.27mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x12 1.27mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical +Through hole straight socket strip, 1x13, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x13 1.27mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x13 1.27mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical +Through hole straight socket strip, 1x14, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x14 1.27mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x14 1.27mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical +Through hole straight socket strip, 1x15, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x15 1.27mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x15 1.27mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical +Through hole straight socket strip, 1x16, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x16 1.27mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x16 1.27mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical +Through hole straight socket strip, 1x17, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x17 1.27mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x17 1.27mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical +Through hole straight socket strip, 1x18, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x18 1.27mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x18 1.27mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical +Through hole straight socket strip, 1x19, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x19 1.27mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x19 1.27mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical +Through hole straight socket strip, 1x20, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x20 1.27mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x20 1.27mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical +Through hole straight socket strip, 1x21, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x21 1.27mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x21 1.27mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical +Through hole straight socket strip, 1x22, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x22 1.27mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x22 1.27mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical +Through hole straight socket strip, 1x23, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x23 1.27mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x23 1.27mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical +Through hole straight socket strip, 1x24, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x24 1.27mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x24 1.27mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical +Through hole straight socket strip, 1x25, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x25 1.27mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x25 1.27mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical +Through hole straight socket strip, 1x26, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x26 1.27mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x26 1.27mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical +Through hole straight socket strip, 1x27, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x27 1.27mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x27 1.27mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical +Through hole straight socket strip, 1x28, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x28 1.27mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x28 1.27mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical +Through hole straight socket strip, 1x29, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x29 1.27mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x29 1.27mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical +Through hole straight socket strip, 1x30, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x30 1.27mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x30 1.27mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical +Through hole straight socket strip, 1x31, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x31 1.27mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x31 1.27mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical +Through hole straight socket strip, 1x32, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x32 1.27mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x32 1.27mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical +Through hole straight socket strip, 1x33, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x33 1.27mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x33 1.27mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical +Through hole straight socket strip, 1x34, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x34 1.27mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x34 1.27mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical +Through hole straight socket strip, 1x35, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x35 1.27mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x35 1.27mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical +Through hole straight socket strip, 1x36, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x36 1.27mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x36 1.27mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical +Through hole straight socket strip, 1x37, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x37 1.27mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x37 1.27mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical +Through hole straight socket strip, 1x38, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x38 1.27mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x38 1.27mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical +Through hole straight socket strip, 1x39, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x39 1.27mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x39 1.27mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical +Through hole straight socket strip, 1x40, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x40 1.27mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x40 1.27mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x01_P1.27mm_Vertical +Through hole straight socket strip, 2x01, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_2x01_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x01 1.27mm double row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_2x02_P1.27mm_Vertical +Through hole straight socket strip, 2x02, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_2x02_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x02 1.27mm double row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Horizontal +Through hole angled socket strip, 2x03, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Vertical +Through hole straight socket strip, 2x03, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Horizontal +Through hole angled socket strip, 2x04, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Vertical +Through hole straight socket strip, 2x04, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Horizontal +Through hole angled socket strip, 2x05, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Vertical +Through hole straight socket strip, 2x05, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Horizontal +Through hole angled socket strip, 2x06, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Vertical +Through hole straight socket strip, 2x06, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Horizontal +Through hole angled socket strip, 2x07, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Vertical +Through hole straight socket strip, 2x07, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Horizontal +Through hole angled socket strip, 2x08, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Vertical +Through hole straight socket strip, 2x08, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Horizontal +Through hole angled socket strip, 2x09, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Vertical +Through hole straight socket strip, 2x09, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Horizontal +Through hole angled socket strip, 2x10, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Vertical +Through hole straight socket strip, 2x10, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Horizontal +Through hole angled socket strip, 2x11, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Vertical +Through hole straight socket strip, 2x11, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Horizontal +Through hole angled socket strip, 2x12, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Vertical +Through hole straight socket strip, 2x12, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Horizontal +Through hole angled socket strip, 2x13, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Vertical +Through hole straight socket strip, 2x13, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Horizontal +Through hole angled socket strip, 2x14, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Vertical +Through hole straight socket strip, 2x14, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Horizontal +Through hole angled socket strip, 2x15, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Vertical +Through hole straight socket strip, 2x15, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Horizontal +Through hole angled socket strip, 2x16, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Vertical +Through hole straight socket strip, 2x16, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Horizontal +Through hole angled socket strip, 2x17, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Vertical +Through hole straight socket strip, 2x17, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Horizontal +Through hole angled socket strip, 2x18, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Vertical +Through hole straight socket strip, 2x18, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Horizontal +Through hole angled socket strip, 2x19, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Vertical +Through hole straight socket strip, 2x19, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Horizontal +Through hole angled socket strip, 2x20, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Vertical +Through hole straight socket strip, 2x20, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Horizontal +Through hole angled socket strip, 2x21, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Vertical +Through hole straight socket strip, 2x21, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Horizontal +Through hole angled socket strip, 2x22, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Vertical +Through hole straight socket strip, 2x22, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Horizontal +Through hole angled socket strip, 2x23, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Vertical +Through hole straight socket strip, 2x23, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Horizontal +Through hole angled socket strip, 2x24, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Vertical +Through hole straight socket strip, 2x24, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Horizontal +Through hole angled socket strip, 2x25, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Vertical +Through hole straight socket strip, 2x25, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Horizontal +Through hole angled socket strip, 2x26, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Vertical +Through hole straight socket strip, 2x26, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Horizontal +Through hole angled socket strip, 2x27, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Vertical +Through hole straight socket strip, 2x27, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Horizontal +Through hole angled socket strip, 2x28, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Vertical +Through hole straight socket strip, 2x28, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Horizontal +Through hole angled socket strip, 2x29, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Vertical +Through hole straight socket strip, 2x29, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Horizontal +Through hole angled socket strip, 2x30, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Vertical +Through hole straight socket strip, 2x30, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Horizontal +Through hole angled socket strip, 2x31, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Vertical +Through hole straight socket strip, 2x31, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Horizontal +Through hole angled socket strip, 2x32, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Vertical +Through hole straight socket strip, 2x32, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Horizontal +Through hole angled socket strip, 2x33, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Vertical +Through hole straight socket strip, 2x33, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Horizontal +Through hole angled socket strip, 2x34, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Vertical +Through hole straight socket strip, 2x34, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Horizontal +Through hole angled socket strip, 2x35, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Vertical +Through hole straight socket strip, 2x35, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Horizontal +Through hole angled socket strip, 2x36, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Vertical +Through hole straight socket strip, 2x36, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Horizontal +Through hole angled socket strip, 2x37, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Vertical +Through hole straight socket strip, 2x37, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Horizontal +Through hole angled socket strip, 2x38, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Vertical +Through hole straight socket strip, 2x38, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Horizontal +Through hole angled socket strip, 2x39, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Vertical +Through hole straight socket strip, 2x39, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Horizontal +Through hole angled socket strip, 2x40, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Vertical +Through hole straight socket strip, 2x40, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x41_P1.27mm_Horizontal +Through hole angled socket strip, 2x41, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x41 1.27mm double row +0 +82 +82 +Connector_PinSocket_1.27mm +PinSocket_2x42_P1.27mm_Horizontal +Through hole angled socket strip, 2x42, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x42 1.27mm double row +0 +84 +84 +Connector_PinSocket_1.27mm +PinSocket_2x43_P1.27mm_Horizontal +Through hole angled socket strip, 2x43, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x43 1.27mm double row +0 +86 +86 +Connector_PinSocket_1.27mm +PinSocket_2x44_P1.27mm_Horizontal +Through hole angled socket strip, 2x44, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x44 1.27mm double row +0 +88 +88 +Connector_PinSocket_1.27mm +PinSocket_2x45_P1.27mm_Horizontal +Through hole angled socket strip, 2x45, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x45 1.27mm double row +0 +90 +90 +Connector_PinSocket_1.27mm +PinSocket_2x46_P1.27mm_Horizontal +Through hole angled socket strip, 2x46, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x46 1.27mm double row +0 +92 +92 +Connector_PinSocket_1.27mm +PinSocket_2x47_P1.27mm_Horizontal +Through hole angled socket strip, 2x47, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x47 1.27mm double row +0 +94 +94 +Connector_PinSocket_1.27mm +PinSocket_2x48_P1.27mm_Horizontal +Through hole angled socket strip, 2x48, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x48 1.27mm double row +0 +96 +96 +Connector_PinSocket_1.27mm +PinSocket_2x49_P1.27mm_Horizontal +Through hole angled socket strip, 2x49, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x49 1.27mm double row +0 +98 +98 +Connector_PinSocket_1.27mm +PinSocket_2x50_P1.27mm_Horizontal +Through hole angled socket strip, 2x50, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x50 1.27mm double row +0 +100 +100 +Connector_PinSocket_2.00mm +PinSocket_1x01_P2.00mm_Horizontal +Through hole angled socket strip, 1x01, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinSocket_2.00mm +PinSocket_1x01_P2.00mm_Vertical +Through hole straight socket strip, 1x01, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Horizontal +Through hole angled socket strip, 1x02, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical +Through hole straight socket strip, 1x02, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x02 2.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x02 2.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Horizontal +Through hole angled socket strip, 1x03, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical +Through hole straight socket strip, 1x03, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x03 2.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x03 2.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Horizontal +Through hole angled socket strip, 1x04, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical +Through hole straight socket strip, 1x04, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x04 2.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x04 2.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Horizontal +Through hole angled socket strip, 1x05, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical +Through hole straight socket strip, 1x05, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x05 2.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x05 2.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Horizontal +Through hole angled socket strip, 1x06, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical +Through hole straight socket strip, 1x06, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x06 2.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x06 2.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Horizontal +Through hole angled socket strip, 1x07, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical +Through hole straight socket strip, 1x07, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x07 2.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x07 2.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Horizontal +Through hole angled socket strip, 1x08, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical +Through hole straight socket strip, 1x08, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x08 2.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x08 2.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Horizontal +Through hole angled socket strip, 1x09, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical +Through hole straight socket strip, 1x09, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x09 2.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x09 2.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Horizontal +Through hole angled socket strip, 1x10, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical +Through hole straight socket strip, 1x10, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x10 2.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x10 2.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Horizontal +Through hole angled socket strip, 1x11, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical +Through hole straight socket strip, 1x11, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x11 2.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x11 2.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Horizontal +Through hole angled socket strip, 1x12, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical +Through hole straight socket strip, 1x12, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x12 2.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x12 2.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Horizontal +Through hole angled socket strip, 1x13, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical +Through hole straight socket strip, 1x13, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x13 2.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x13 2.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Horizontal +Through hole angled socket strip, 1x14, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical +Through hole straight socket strip, 1x14, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x14 2.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x14 2.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Horizontal +Through hole angled socket strip, 1x15, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical +Through hole straight socket strip, 1x15, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x15 2.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x15 2.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Horizontal +Through hole angled socket strip, 1x16, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical +Through hole straight socket strip, 1x16, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x16 2.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x16 2.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Horizontal +Through hole angled socket strip, 1x17, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical +Through hole straight socket strip, 1x17, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x17 2.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x17 2.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Horizontal +Through hole angled socket strip, 1x18, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical +Through hole straight socket strip, 1x18, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x18 2.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x18 2.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Horizontal +Through hole angled socket strip, 1x19, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical +Through hole straight socket strip, 1x19, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x19 2.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x19 2.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Horizontal +Through hole angled socket strip, 1x20, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical +Through hole straight socket strip, 1x20, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x20 2.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x20 2.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Horizontal +Through hole angled socket strip, 1x21, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical +Through hole straight socket strip, 1x21, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x21 2.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x21 2.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Horizontal +Through hole angled socket strip, 1x22, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical +Through hole straight socket strip, 1x22, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x22 2.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x22 2.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Horizontal +Through hole angled socket strip, 1x23, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical +Through hole straight socket strip, 1x23, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x23 2.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x23 2.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Horizontal +Through hole angled socket strip, 1x24, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical +Through hole straight socket strip, 1x24, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x24 2.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x24 2.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Horizontal +Through hole angled socket strip, 1x25, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical +Through hole straight socket strip, 1x25, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x25 2.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x25 2.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Horizontal +Through hole angled socket strip, 1x26, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical +Through hole straight socket strip, 1x26, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x26 2.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x26 2.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Horizontal +Through hole angled socket strip, 1x27, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical +Through hole straight socket strip, 1x27, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x27 2.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x27 2.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Horizontal +Through hole angled socket strip, 1x28, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical +Through hole straight socket strip, 1x28, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x28 2.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x28 2.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Horizontal +Through hole angled socket strip, 1x29, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical +Through hole straight socket strip, 1x29, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x29 2.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x29 2.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Horizontal +Through hole angled socket strip, 1x30, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical +Through hole straight socket strip, 1x30, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x30 2.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x30 2.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Horizontal +Through hole angled socket strip, 1x31, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical +Through hole straight socket strip, 1x31, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x31 2.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x31 2.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Horizontal +Through hole angled socket strip, 1x32, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical +Through hole straight socket strip, 1x32, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x32 2.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x32 2.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Horizontal +Through hole angled socket strip, 1x33, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical +Through hole straight socket strip, 1x33, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x33 2.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x33 2.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Horizontal +Through hole angled socket strip, 1x34, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical +Through hole straight socket strip, 1x34, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x34 2.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x34 2.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Horizontal +Through hole angled socket strip, 1x35, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical +Through hole straight socket strip, 1x35, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x35 2.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x35 2.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Horizontal +Through hole angled socket strip, 1x36, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical +Through hole straight socket strip, 1x36, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x36 2.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x36 2.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Horizontal +Through hole angled socket strip, 1x37, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical +Through hole straight socket strip, 1x37, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x37 2.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x37 2.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Horizontal +Through hole angled socket strip, 1x38, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical +Through hole straight socket strip, 1x38, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x38 2.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x38 2.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Horizontal +Through hole angled socket strip, 1x39, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical +Through hole straight socket strip, 1x39, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x39 2.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x39 2.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Horizontal +Through hole angled socket strip, 1x40, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical +Through hole straight socket strip, 1x40, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x40 2.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x40 2.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Horizontal +Through hole angled socket strip, 2x01, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Vertical +Through hole straight socket strip, 2x01, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Horizontal +Through hole angled socket strip, 2x02, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Vertical +Through hole straight socket strip, 2x02, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Horizontal +Through hole angled socket strip, 2x03, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Vertical +Through hole straight socket strip, 2x03, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Horizontal +Through hole angled socket strip, 2x04, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Vertical +Through hole straight socket strip, 2x04, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Horizontal +Through hole angled socket strip, 2x05, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Vertical +Through hole straight socket strip, 2x05, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Horizontal +Through hole angled socket strip, 2x06, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Vertical +Through hole straight socket strip, 2x06, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Horizontal +Through hole angled socket strip, 2x07, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Vertical +Through hole straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Horizontal +Through hole angled socket strip, 2x08, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Vertical +Through hole straight socket strip, 2x08, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Horizontal +Through hole angled socket strip, 2x09, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Vertical +Through hole straight socket strip, 2x09, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Horizontal +Through hole angled socket strip, 2x10, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Vertical +Through hole straight socket strip, 2x10, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Horizontal +Through hole angled socket strip, 2x11, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Vertical +Through hole straight socket strip, 2x11, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Horizontal +Through hole angled socket strip, 2x12, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Vertical +Through hole straight socket strip, 2x12, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Horizontal +Through hole angled socket strip, 2x13, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Vertical +Through hole straight socket strip, 2x13, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Horizontal +Through hole angled socket strip, 2x14, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Vertical +Through hole straight socket strip, 2x14, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Horizontal +Through hole angled socket strip, 2x15, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Vertical +Through hole straight socket strip, 2x15, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Horizontal +Through hole angled socket strip, 2x16, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Vertical +Through hole straight socket strip, 2x16, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Horizontal +Through hole angled socket strip, 2x17, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Vertical +Through hole straight socket strip, 2x17, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Horizontal +Through hole angled socket strip, 2x18, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Vertical +Through hole straight socket strip, 2x18, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Horizontal +Through hole angled socket strip, 2x19, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Vertical +Through hole straight socket strip, 2x19, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Horizontal +Through hole angled socket strip, 2x20, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Vertical +Through hole straight socket strip, 2x20, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Horizontal +Through hole angled socket strip, 2x21, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Vertical +Through hole straight socket strip, 2x21, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Horizontal +Through hole angled socket strip, 2x22, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Vertical +Through hole straight socket strip, 2x22, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Horizontal +Through hole angled socket strip, 2x23, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Vertical +Through hole straight socket strip, 2x23, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Horizontal +Through hole angled socket strip, 2x24, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Vertical +Through hole straight socket strip, 2x24, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Horizontal +Through hole angled socket strip, 2x25, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Vertical +Through hole straight socket strip, 2x25, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Horizontal +Through hole angled socket strip, 2x26, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Vertical +Through hole straight socket strip, 2x26, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Horizontal +Through hole angled socket strip, 2x27, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Vertical +Through hole straight socket strip, 2x27, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Horizontal +Through hole angled socket strip, 2x28, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Vertical +Through hole straight socket strip, 2x28, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Horizontal +Through hole angled socket strip, 2x29, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Vertical +Through hole straight socket strip, 2x29, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Horizontal +Through hole angled socket strip, 2x30, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Vertical +Through hole straight socket strip, 2x30, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Horizontal +Through hole angled socket strip, 2x31, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Vertical +Through hole straight socket strip, 2x31, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Horizontal +Through hole angled socket strip, 2x32, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Vertical +Through hole straight socket strip, 2x32, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Horizontal +Through hole angled socket strip, 2x33, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Vertical +Through hole straight socket strip, 2x33, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Horizontal +Through hole angled socket strip, 2x34, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Vertical +Through hole straight socket strip, 2x34, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Horizontal +Through hole angled socket strip, 2x35, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Vertical +Through hole straight socket strip, 2x35, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Horizontal +Through hole angled socket strip, 2x36, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Vertical +Through hole straight socket strip, 2x36, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Horizontal +Through hole angled socket strip, 2x37, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Vertical +Through hole straight socket strip, 2x37, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Horizontal +Through hole angled socket strip, 2x38, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Vertical +Through hole straight socket strip, 2x38, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Horizontal +Through hole angled socket strip, 2x39, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Vertical +Through hole straight socket strip, 2x39, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Horizontal +Through hole angled socket strip, 2x40, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Vertical +Through hole straight socket strip, 2x40, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Horizontal +Through hole angled socket strip, 1x01, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Vertical +Through hole straight socket strip, 1x01, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Horizontal +Through hole angled socket strip, 1x02, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical +Through hole straight socket strip, 1x02, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Horizontal +Through hole angled socket strip, 1x03, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical +Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Horizontal +Through hole angled socket strip, 1x04, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical +Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Horizontal +Through hole angled socket strip, 1x05, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical +Through hole straight socket strip, 1x05, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Horizontal +Through hole angled socket strip, 1x06, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical +Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Horizontal +Through hole angled socket strip, 1x07, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical +Through hole straight socket strip, 1x07, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Horizontal +Through hole angled socket strip, 1x08, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical +Through hole straight socket strip, 1x08, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Horizontal +Through hole angled socket strip, 1x09, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical +Through hole straight socket strip, 1x09, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Horizontal +Through hole angled socket strip, 1x10, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical +Through hole straight socket strip, 1x10, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Horizontal +Through hole angled socket strip, 1x11, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical +Through hole straight socket strip, 1x11, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Horizontal +Through hole angled socket strip, 1x12, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical +Through hole straight socket strip, 1x12, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Horizontal +Through hole angled socket strip, 1x13, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical +Through hole straight socket strip, 1x13, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Horizontal +Through hole angled socket strip, 1x14, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical +Through hole straight socket strip, 1x14, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Horizontal +Through hole angled socket strip, 1x15, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical +Through hole straight socket strip, 1x15, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Horizontal +Through hole angled socket strip, 1x16, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical +Through hole straight socket strip, 1x16, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Horizontal +Through hole angled socket strip, 1x17, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical +Through hole straight socket strip, 1x17, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Horizontal +Through hole angled socket strip, 1x18, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical +Through hole straight socket strip, 1x18, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Horizontal +Through hole angled socket strip, 1x19, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical +Through hole straight socket strip, 1x19, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Horizontal +Through hole angled socket strip, 1x20, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical +Through hole straight socket strip, 1x20, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Horizontal +Through hole angled socket strip, 1x21, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical +Through hole straight socket strip, 1x21, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Horizontal +Through hole angled socket strip, 1x22, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical +Through hole straight socket strip, 1x22, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Horizontal +Through hole angled socket strip, 1x23, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical +Through hole straight socket strip, 1x23, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Horizontal +Through hole angled socket strip, 1x24, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical +Through hole straight socket strip, 1x24, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Horizontal +Through hole angled socket strip, 1x25, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical +Through hole straight socket strip, 1x25, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Horizontal +Through hole angled socket strip, 1x26, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical +Through hole straight socket strip, 1x26, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Horizontal +Through hole angled socket strip, 1x27, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical +Through hole straight socket strip, 1x27, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Horizontal +Through hole angled socket strip, 1x28, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical +Through hole straight socket strip, 1x28, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Horizontal +Through hole angled socket strip, 1x29, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical +Through hole straight socket strip, 1x29, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Horizontal +Through hole angled socket strip, 1x30, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical +Through hole straight socket strip, 1x30, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Horizontal +Through hole angled socket strip, 1x31, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical +Through hole straight socket strip, 1x31, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Horizontal +Through hole angled socket strip, 1x32, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical +Through hole straight socket strip, 1x32, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Horizontal +Through hole angled socket strip, 1x33, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical +Through hole straight socket strip, 1x33, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Horizontal +Through hole angled socket strip, 1x34, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical +Through hole straight socket strip, 1x34, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Horizontal +Through hole angled socket strip, 1x35, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical +Through hole straight socket strip, 1x35, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Horizontal +Through hole angled socket strip, 1x36, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical +Through hole straight socket strip, 1x36, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Horizontal +Through hole angled socket strip, 1x37, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical +Through hole straight socket strip, 1x37, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Horizontal +Through hole angled socket strip, 1x38, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical +Through hole straight socket strip, 1x38, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Horizontal +Through hole angled socket strip, 1x39, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical +Through hole straight socket strip, 1x39, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Horizontal +Through hole angled socket strip, 1x40, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical +Through hole straight socket strip, 1x40, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Horizontal +Through hole angled socket strip, 2x01, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical +Through hole straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Horizontal +Through hole angled socket strip, 2x02, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical +Through hole straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Horizontal +Through hole angled socket strip, 2x03, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical +Through hole straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Horizontal +Through hole angled socket strip, 2x04, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical +Through hole straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Horizontal +Through hole angled socket strip, 2x05, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical +Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Horizontal +Through hole angled socket strip, 2x06, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical +Through hole straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Horizontal +Through hole angled socket strip, 2x07, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical +Through hole straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Horizontal +Through hole angled socket strip, 2x08, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical +Through hole straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Horizontal +Through hole angled socket strip, 2x09, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical +Through hole straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Horizontal +Through hole angled socket strip, 2x10, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical +Through hole straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Horizontal +Through hole angled socket strip, 2x11, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical +Through hole straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Horizontal +Through hole angled socket strip, 2x12, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical +Through hole straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Horizontal +Through hole angled socket strip, 2x13, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical +Through hole straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Horizontal +Through hole angled socket strip, 2x14, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical +Through hole straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Horizontal +Through hole angled socket strip, 2x15, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical +Through hole straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Horizontal +Through hole angled socket strip, 2x16, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical +Through hole straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Horizontal +Through hole angled socket strip, 2x17, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical +Through hole straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Horizontal +Through hole angled socket strip, 2x18, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical +Through hole straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Horizontal +Through hole angled socket strip, 2x19, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical +Through hole straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Horizontal +Through hole angled socket strip, 2x20, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical +Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Horizontal +Through hole angled socket strip, 2x21, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical +Through hole straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Horizontal +Through hole angled socket strip, 2x22, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical +Through hole straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Horizontal +Through hole angled socket strip, 2x23, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical +Through hole straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Horizontal +Through hole angled socket strip, 2x24, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical +Through hole straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Horizontal +Through hole angled socket strip, 2x25, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical +Through hole straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Horizontal +Through hole angled socket strip, 2x26, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical +Through hole straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Horizontal +Through hole angled socket strip, 2x27, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical +Through hole straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Horizontal +Through hole angled socket strip, 2x28, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical +Through hole straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Horizontal +Through hole angled socket strip, 2x29, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical +Through hole straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Horizontal +Through hole angled socket strip, 2x30, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical +Through hole straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Horizontal +Through hole angled socket strip, 2x31, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical +Through hole straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Horizontal +Through hole angled socket strip, 2x32, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical +Through hole straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Horizontal +Through hole angled socket strip, 2x33, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical +Through hole straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Horizontal +Through hole angled socket strip, 2x34, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical +Through hole straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Horizontal +Through hole angled socket strip, 2x35, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical +Through hole straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Horizontal +Through hole angled socket strip, 2x36, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical +Through hole straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Horizontal +Through hole angled socket strip, 2x37, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical +Through hole straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Horizontal +Through hole angled socket strip, 2x38, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical +Through hole straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Horizontal +Through hole angled socket strip, 2x39, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical +Through hole straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Horizontal +Through hole angled socket strip, 2x40, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical +Through hole straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x40 2.54mm double row +0 +80 +80 +Connector_RJ +RJ9_Evercom_5301-440xxx_Horizontal +Evercom 5301-4P4C RJ9 receptacle, unshielded, https://datasheet.lcsc.com/lcsc/2207051802_EVERCOM-5301-4P4C_C3097715.pdf +RJ9 Connector tab down +0 +4 +4 +Connector_RJ +RJ12_Amphenol_54601-x06_Horizontal +RJ12 6P6C horizontal socket, plastic body, tab down, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/c-bmj-0082.pdf +RJ12 connector +0 +6 +6 +Connector_RJ +RJ14_Connfly_DS1133-S4_Horizontal +RJ14 connector 6P4C Horizontal http://www.connfly.com/userfiles/image/UpLoadFile/File/2012/10/26/DS1133.pdf +RJ14 connector 6P4C Connfly DS1133 +0 +4 +4 +Connector_RJ +RJ25_Wayconn_MJEA-660X1_Horizontal +RJ25 6P6C Socket 90 degrees, https://wayconn.com/wp-content/themes/way/datasheet/MJEA-660X1XXX_RJ25_6P6C_PCB_RA.pdf +RJ12 RJ18 RJ25 jack connector 6P6C +0 +6 +6 +Connector_RJ +RJ45_Abracon_ARJP11A-MA_Horizontal +Shielded RJ45 ethernet connector with transformer and POE, https://abracon.com/Magnetics/lan/ARJP11A.PDF +ethernet 8p8c transformer poe rj45 +0 +15 +14 +Connector_RJ +RJ45_Amphenol_54602-x08_Horizontal +8 Pol Shallow Latch Connector, Modjack, RJ45 (https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/c-bmj-0102.pdf) +RJ45 +0 +8 +8 +Connector_RJ +RJ45_Amphenol_RJHSE538X +Shielded, 2 LED, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X.pdf +RJ45 8p8c ethernet cat5 +0 +14 +13 +Connector_RJ +RJ45_Amphenol_RJHSE538X-02 +Shielded, 2 LED, 2 Ports, http://www.amphenolinfocom.eu/NavData/Drawings/RJHSE-538X-02-REVC.pdf +RJ45 8p8c dual ethernet cat5 +0 +26 +25 +Connector_RJ +RJ45_Amphenol_RJHSE538X-04 +Shielded, LEDs, 4 Ports, https://cdn.amphenol-cs.com/media/wysiwyg/files/drawing/rjhse538x04.pdf +RJ45 8p8c quad ethernet cat5 +0 +52 +49 +Connector_RJ +RJ45_Amphenol_RJHSE5380 +Shielded, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X.pdf +RJ45 8p8c ethernet cat5 +0 +10 +9 +Connector_RJ +RJ45_Amphenol_RJHSE5380-08 +Shielded, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X08.pdf +RJ45 8p8c ethernet cat5 +0 +68 +65 +Connector_RJ +RJ45_Amphenol_RJMG1BD3B8K1ANR +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, AutoMDIX, https://www.amphenol-cs.com/media/wysiwyg/files/drawing/rjmg1bd3b8k1anr.pdf +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_BEL_SS74301-00x_Vertical +https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-74301-001-ss-74301-002-ss-74301-005.pdf +RJ45 Vertical Shield LED Green Yellow +0 +14 +13 +Connector_RJ +RJ45_Bel_SI-60062-F +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, AutoMDIX, https://belfuse.com/resources/drawings/magneticsolutions/dr-mag-si-60062-f.pdf +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_Bel_V895-1001-AW_Vertical +1 Port RJ45 Magjack Vertical Connector SMD 10/100 Base-T, https://www.belfuse.com/resources/drawings/magneticsolutions/dr-mag-v895-1001-aw.pdf +RJ45 Magjack +0 +14 +11 +Connector_RJ +RJ45_Cetus_J1B1211CCD_Horizontal +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, Cetus, used and distributed by WIZnet (https://wizwiki.net/wiki/lib/exe/fetch.php?media=products:wiz550web:wiz550webds_kr:j1b1211ccd.pdf) +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_Connfly_DS1128-09-S8xx-S_Horizontal +1 Port RJ45 8p8c receptacle, shielded, through hole, 2 LEDs, tab up, http://en.connfly.group/static/upload/file//DS1128-09.pdf +RJ45 8p8c ethernet +0 +14 +13 +Connector_RJ +RJ45_HALO_HFJ11-x2450E-LxxRL_Horizontal +Halo FastJack, Shielded, 2 LEDs, https://www.haloelectronics.com/pdf/fastjack-100baset.pdf +10/100 Ethernet RJ45 Tab-Down +0 +14 +13 +Connector_RJ +RJ45_HALO_HFJ11-x2450ERL_Horizontal +Halo FastJack, Shielded, https://www.haloelectronics.com/pdf/fastjack-100baset.pdf +10/100 Ethernet RJ45 Tab-Down +0 +9 +8 +Connector_RJ +RJ45_HALO_HFJ11-x2450HRL_Horizontal +Halo FastJack, Shielded, https://www.haloelectronics.com/pdf/fastjack-100baset.pdf +10/100 Ethernet RJ45 Tab-Down +0 +10 +9 +Connector_RJ +RJ45_Hanrun_HR911105A_Horizontal +1 Port RJ45 8P8C receptacle, shielded, with magnetics, through hole, 2 LEDs, tab down, http://www.hanrun.com/public/upload/down/2020/09-11/cc11be56d66bb63d5f1eeb85492439c0.pdf +RJ45 Magjack ethernet +0 +14 +13 +Connector_RJ +RJ45_Kycon_G7LX-A88S7-BP-xx_Horizontal +10/100Base-T RJ45 ethernet magnetic transformer connector horizontal with green/yellow LEDs http://www.kycon.com/Pub_Eng_Draw/G7LX-A88S7-BP-GY.pdf +RJ45 ethernet magnetic +0 +16 +15 +Connector_RJ +RJ45_Molex_9346520x_Horizontal +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, two LED, tab up +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_Molex_0855135013_Vertical +1 Port, RJ45, Series 85513, vertical, SMD, https://www.molex.com/pdm_docs/sd/855135013_sd.pdf +RJ45 Vertical +0 +9 +9 +Connector_RJ +RJ45_Ninigi_GE +1 port ethernet throughhole connector, https://en.ninigi.com/product/rj45ge/pdf +RJ45 ethernet 8p8c +0 +10 +9 +Connector_RJ +RJ45_OST_PJ012-8P8CX_Vertical +RJ45 vertical connector https://www.on-shore.com/wp-content/uploads/PJ012-8P8CX.pdf +RJ45 PJ012 +0 +8 +8 +Connector_RJ +RJ45_Plug_Metz_AJP92A8813 +plug, ethernet, 8P8C, RJ45 Plug +AJP92A8813 8P8C RJ45 ethernet plug +0 +8 +8 +Connector_RJ +RJ45_Pulse_JK00177NL_Horizontal +10/100/1000 Base-T RJ45 single port with LEDs and 75W POE, https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/J432/doc_part/J432.pdf +RJ45 8p8c ethernet POE +0 +22 +21 +Connector_RJ +RJ45_Pulse_JK0654219NL_Horizontal +10/100/1000 Base-T RJ45 single port with LEDs https://media.digikey.com/pdf/Data%20Sheets/Pulse%20PDFs/JK%20Series.pdf#page=2 +RJ45 8p8c ethernet +0 +18 +17 +Connector_RJ +RJ45_Pulse_JXD6-0001NL_Horizontal +RJ45 ethernet transformer with magnetics (https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/JXD6-0001NL/doc_part/JXD6-0001NL.pdf) +ethernet 8p8c transformer magjack +0 +12 +11 +Connector_RJ +RJ45_UDE_RB1-125B8G1A +1 Port RJ45 Connector Through Hole 10/100/1000 Base-T, https://datasheet.lcsc.com/szlcsc/1901091107_UDE-Corp-RB1-125B8G1A_C363353.pdf#page=3 +RJ45 ethernet +0 +16 +15 +Connector_RJ +RJ45_Wuerth_7499010001A_Horizontal +10/100Base-TX RJ45 ethernet magnetic transformer connector horizontal https://katalog.we-online.de/pbs/datasheet/7499010001A.pdf +RJ45 ethernet magnetic +0 +10 +9 +Connector_RJ +RJ45_Wuerth_7499010121A_Horizontal +10/100Base-TX RJ45 ethernet magnetic transformer connector horizontal with green/orange LEDs https://katalog.we-online.de/pbs/datasheet/7499010121A.pdf +RJ45 ethernet magnetic +0 +14 +13 +Connector_RJ +RJ45_Wuerth_7499111446_Horizontal +LAN-Transformer WE-RJ45LAN 10/100/1000 BaseT +ethernet lan connector +0 +16 +15 +Connector_RJ +RJ45_Wuerth_7499151120_Horizontal +Wuerth 7499151120, LAN-Transformer WE-RJ45LAN 10/100/1000 BaseT, Dual Ethernet Jack (http://katalog.we-online.de/pbs/datasheet/7499151120.pdf) +ethernet lan connector +0 +32 +29 +Connector_RJ +RJ45_Wuerth_74980111211_Horizontal +RJ45 LAN Transformer 10/100BaseT (https://katalog.we-online.de/pbs/datasheet/74980111211.pdf) +lan magnetics transformer +0 +14 +13 +Connector_SATA_SAS +SAS-mini_TEConnectivity_1888174_Vertical +36pin mini SAS connector, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1888174&DocType=Customer+Drawing&DocLang=English +SAS mini connector +0 +44 +44 +Connector_SATA_SAS +SATA_Amphenol_10029364-001LF_Horizontal +https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10029364.pdf +SATA +0 +24 +23 +Connector_Samtec +Samtec_FMC_ASP-134486-01_10x40_P1.27mm_Vertical +http://suddendocs.samtec.com/prints/asp-134486-01-mkt.pdf +FMC HPC +0 +400 +400 +Connector_Samtec +Samtec_FMC_ASP-134602-01_10x40_P1.27mm_Vertical +https://www.marutsu.co.jp/contents/shop/marutsu/ds/asp-134602-01.pdf +FMC HPC +0 +400 +400 +Connector_Samtec +Samtec_FMC_ASP-134604-01_4x40_Vertical +https://suddendocs.samtec.com/prints/asp-134604-01-mkt.pdf +FMC LPC VITA +0 +160 +160 +Connector_Samtec +Samtec_LSHM-105-xx.x-x-DV-N_2x05_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-105-xx.x-x-DV-N, 5 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +10 +10 +Connector_Samtec +Samtec_LSHM-105-xx.x-x-DV-S_2x05-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-105-xx.x-x-DV-S, 5 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +12 +11 +Connector_Samtec +Samtec_LSHM-110-xx.x-x-DV-N_2x10_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-110-xx.x-x-DV-N, 10 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +20 +20 +Connector_Samtec +Samtec_LSHM-110-xx.x-x-DV-S_2x10-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-110-xx.x-x-DV-S, 10 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +22 +21 +Connector_Samtec +Samtec_LSHM-120-xx.x-x-DV-N_2x20_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-120-xx.x-x-DV-N, 20 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +40 +40 +Connector_Samtec +Samtec_LSHM-120-xx.x-x-DV-S_2x20-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-120-xx.x-x-DV-S, 20 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +42 +41 +Connector_Samtec +Samtec_LSHM-130-xx.x-x-DV-N_2x30_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-130-xx.x-x-DV-N, 30 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +60 +60 +Connector_Samtec +Samtec_LSHM-130-xx.x-x-DV-S_2x30-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-130-xx.x-x-DV-S, 30 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +62 +61 +Connector_Samtec +Samtec_LSHM-140-xx.x-x-DV-N_2x40_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-140-xx.x-x-DV-N, 40 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +80 +80 +Connector_Samtec +Samtec_LSHM-140-xx.x-x-DV-S_2x40-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-140-xx.x-x-DV-S, 40 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +82 +81 +Connector_Samtec +Samtec_LSHM-150-xx.x-x-DV-N_2x50_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-150-xx.x-x-DV-N, 50 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +100 +100 +Connector_Samtec +Samtec_LSHM-150-xx.x-x-DV-S_2x50-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-150-xx.x-x-DV-S, 50 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +102 +101 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV-BE-LC_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-BE-LC, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV-BE_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-BE, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV-LC_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-LC, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV-BE-LC_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-BE-LC, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV-BE_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-BE, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV-LC_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-LC, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-A_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-A, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-BE-A_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE-A, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-BE-LC_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-BE_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-LC_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-A_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-A, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-BE-A_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE-A, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-BE-LC_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-BE_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-LC_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-A_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-A, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-BE-A_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE-A, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-BE-LC_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-BE_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-LC_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-A_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-A, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-BE-A_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE-A, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-BE-LC_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-BE_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-LC_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-A_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-A, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-BE-A_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE-A, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-BE-LC_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-BE_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-LC_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-A_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-A, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-BE-A_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE-A, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-BE-LC_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-BE_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-LC_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-A_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-A, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-BE-A_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE-A, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-BE-LC_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-BE_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-LC_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-A_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-A, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-BE-A_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE-A, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-BE-LC_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-BE_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-LC_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-A_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-A, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-BE-A_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE-A, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-BE-LC_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-BE_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-LC_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-A_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-A, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-BE-A_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE-A, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-BE-LC_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-BE_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-LC_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-A_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-A, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-BE-A_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE-A, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-BE-LC_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-BE_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-LC_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-A_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-A, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-BE-A_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE-A, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-BE-LC_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-BE_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-LC_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-A_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-A, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-BE-A_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE-A, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-BE-LC_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-BE_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-LC_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-A_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-A, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-BE-A_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE-A, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-BE-LC_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-BE_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-LC_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-A_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-A, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-BE-A_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE-A, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-BE-LC_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-BE_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-LC_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-A_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-A, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-BE-A_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE-A, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-BE-LC_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-BE_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-LC_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-A_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-A, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-BE-A_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE-A, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-BE-LC_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-BE_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-LC_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-A_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-A, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-BE-A_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE-A, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-BE-LC_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-BE_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-LC_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-A_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-A, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-BE-A_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE-A, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-BE-LC_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-BE_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-LC_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-A_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-A, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-BE-A_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE-A, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-BE-LC_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-BE_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-LC_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-A_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-A, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-BE-A_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE-A, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-BE-LC_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-BE_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-LC_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-A_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-A, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-BE-A_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE-A, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-BE-LC_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-BE_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-LC_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-A_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-A, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-BE-A_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE-A, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-BE-LC_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-BE_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-LC_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-A_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-A, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-BE-A_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE-A, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-BE-LC_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-BE_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-LC_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-A_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-A, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-BE-A_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE-A, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-BE-LC_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-BE_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-LC_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-A_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-A, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-BE-A_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE-A, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-BE-LC_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-BE_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-LC_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-A_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-A, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-BE-A_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE-A, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-BE-LC_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-BE_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-LC_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-A_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-A, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-BE-A_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE-A, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-BE-LC_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-BE_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-LC_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-A_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-A, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-BE-A_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE-A, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-BE-LC_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-BE_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-LC_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-A_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-A, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-BE-A_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE-A, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-BE-LC_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-BE_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-LC_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-A_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-A, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-BE-A_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE-A, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-BE-LC_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-BE_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-LC_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-A_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-A, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-BE-A_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE-A, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-BE-LC_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-BE_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-LC_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-A_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-A, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-BE-A_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE-A, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-BE-LC_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-BE_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-LC_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-A_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-A, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-BE-A_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE-A, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-BE-LC_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-BE_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-LC_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-A_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-A, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-BE-A_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE-A, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-BE-LC_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-BE_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-LC_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-A_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-A, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-BE-A_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE-A, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-BE-LC_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-BE_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-LC_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-A_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-A, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-BE-A_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE-A, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-BE-LC_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-BE_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-LC_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-A_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-A, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-BE-A_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE-A, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-BE-LC_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-BE_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-LC_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-A_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-A, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-BE-A_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE-A, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-BE-LC_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-BE_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-LC_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-A_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-A, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-BE-A_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE-A, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-BE-LC_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-BE_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-LC_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-A_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-A, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-BE-A_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE-A, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-BE-LC_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-BE_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-LC_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-A_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-A, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-BE-A_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE-A, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-BE-LC_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-BE_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-LC_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-A_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-A, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-BE-A_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE-A, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-BE-LC_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-BE_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-LC_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-A_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-A, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-BE-A_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE-A, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-BE-LC_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-BE_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-LC_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-A_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-A, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-BE-A_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE-A, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-BE-LC_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-BE_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-LC_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-A_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-A, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-BE-A_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE-A, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-BE-LC_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-BE_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-LC_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-A_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-A, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-BE-A_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE-A, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-BE-LC_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-BE_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-LC_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_THT +Samtec_HLE-104-02-xx-DV-PE-LC_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-PE-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +8 +8 +Connector_Samtec_HLE_THT +Samtec_HLE-104-02-xx-DV-PE_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-PE (compatible alternatives: HLE-104-02-xx-DV-PE-BE), 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +8 +8 +Connector_Samtec_HLE_THT +Samtec_HLE-104-02-xx-DV-TE_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-TE, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +8 +8 +Connector_Samtec_HLE_THT +Samtec_HLE-105-02-xx-DV-PE-LC_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-PE-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +10 +10 +Connector_Samtec_HLE_THT +Samtec_HLE-105-02-xx-DV-PE_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-PE (compatible alternatives: HLE-105-02-xx-DV-PE-BE), 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +10 +10 +Connector_Samtec_HLE_THT +Samtec_HLE-105-02-xx-DV-TE_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-TE, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +10 +10 +Connector_Samtec_HLE_THT +Samtec_HLE-106-02-xx-DV-PE-LC_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-PE-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +12 +12 +Connector_Samtec_HLE_THT +Samtec_HLE-106-02-xx-DV-PE_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-PE (compatible alternatives: HLE-106-02-xx-DV-PE-BE), 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +12 +12 +Connector_Samtec_HLE_THT +Samtec_HLE-106-02-xx-DV-TE_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-TE, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +12 +12 +Connector_Samtec_HLE_THT +Samtec_HLE-107-02-xx-DV-PE-LC_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-PE-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +14 +14 +Connector_Samtec_HLE_THT +Samtec_HLE-107-02-xx-DV-PE_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-PE (compatible alternatives: HLE-107-02-xx-DV-PE-BE), 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +14 +14 +Connector_Samtec_HLE_THT +Samtec_HLE-107-02-xx-DV-TE_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-TE, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +14 +14 +Connector_Samtec_HLE_THT +Samtec_HLE-108-02-xx-DV-PE-LC_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-PE-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +16 +16 +Connector_Samtec_HLE_THT +Samtec_HLE-108-02-xx-DV-PE_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-PE (compatible alternatives: HLE-108-02-xx-DV-PE-BE), 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +16 +16 +Connector_Samtec_HLE_THT +Samtec_HLE-108-02-xx-DV-TE_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-TE, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +16 +16 +Connector_Samtec_HLE_THT +Samtec_HLE-109-02-xx-DV-PE-LC_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-PE-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +18 +18 +Connector_Samtec_HLE_THT +Samtec_HLE-109-02-xx-DV-PE_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-PE (compatible alternatives: HLE-109-02-xx-DV-PE-BE), 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +18 +18 +Connector_Samtec_HLE_THT +Samtec_HLE-109-02-xx-DV-TE_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-TE, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +18 +18 +Connector_Samtec_HLE_THT +Samtec_HLE-110-02-xx-DV-PE-LC_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-PE-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +20 +20 +Connector_Samtec_HLE_THT +Samtec_HLE-110-02-xx-DV-PE_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-PE (compatible alternatives: HLE-110-02-xx-DV-PE-BE), 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +20 +20 +Connector_Samtec_HLE_THT +Samtec_HLE-110-02-xx-DV-TE_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-TE, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +20 +20 +Connector_Samtec_HLE_THT +Samtec_HLE-111-02-xx-DV-PE-LC_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-PE-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +22 +22 +Connector_Samtec_HLE_THT +Samtec_HLE-111-02-xx-DV-PE_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-PE (compatible alternatives: HLE-111-02-xx-DV-PE-BE), 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +22 +22 +Connector_Samtec_HLE_THT +Samtec_HLE-111-02-xx-DV-TE_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-TE, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +22 +22 +Connector_Samtec_HLE_THT +Samtec_HLE-112-02-xx-DV-PE-LC_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-PE-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +24 +24 +Connector_Samtec_HLE_THT +Samtec_HLE-112-02-xx-DV-PE_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-PE (compatible alternatives: HLE-112-02-xx-DV-PE-BE), 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +24 +24 +Connector_Samtec_HLE_THT +Samtec_HLE-112-02-xx-DV-TE_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-TE, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +24 +24 +Connector_Samtec_HLE_THT +Samtec_HLE-113-02-xx-DV-PE-LC_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-PE-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +26 +26 +Connector_Samtec_HLE_THT +Samtec_HLE-113-02-xx-DV-PE_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-PE (compatible alternatives: HLE-113-02-xx-DV-PE-BE), 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +26 +26 +Connector_Samtec_HLE_THT +Samtec_HLE-113-02-xx-DV-TE_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-TE, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +26 +26 +Connector_Samtec_HLE_THT +Samtec_HLE-114-02-xx-DV-PE-LC_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-PE-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +28 +28 +Connector_Samtec_HLE_THT +Samtec_HLE-114-02-xx-DV-PE_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-PE (compatible alternatives: HLE-114-02-xx-DV-PE-BE), 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +28 +28 +Connector_Samtec_HLE_THT +Samtec_HLE-114-02-xx-DV-TE_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-TE, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +28 +28 +Connector_Samtec_HLE_THT +Samtec_HLE-115-02-xx-DV-PE-LC_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-PE-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +30 +30 +Connector_Samtec_HLE_THT +Samtec_HLE-115-02-xx-DV-PE_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-PE (compatible alternatives: HLE-115-02-xx-DV-PE-BE), 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +30 +30 +Connector_Samtec_HLE_THT +Samtec_HLE-115-02-xx-DV-TE_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-TE, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +30 +30 +Connector_Samtec_HLE_THT +Samtec_HLE-116-02-xx-DV-PE-LC_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-PE-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +32 +32 +Connector_Samtec_HLE_THT +Samtec_HLE-116-02-xx-DV-PE_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-PE (compatible alternatives: HLE-116-02-xx-DV-PE-BE), 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +32 +32 +Connector_Samtec_HLE_THT +Samtec_HLE-116-02-xx-DV-TE_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-TE, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +32 +32 +Connector_Samtec_HLE_THT +Samtec_HLE-117-02-xx-DV-PE-LC_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-PE-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +34 +34 +Connector_Samtec_HLE_THT +Samtec_HLE-117-02-xx-DV-PE_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-PE (compatible alternatives: HLE-117-02-xx-DV-PE-BE), 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +34 +34 +Connector_Samtec_HLE_THT +Samtec_HLE-117-02-xx-DV-TE_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-TE, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +34 +34 +Connector_Samtec_HLE_THT +Samtec_HLE-118-02-xx-DV-PE-LC_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-PE-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +36 +36 +Connector_Samtec_HLE_THT +Samtec_HLE-118-02-xx-DV-PE_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-PE (compatible alternatives: HLE-118-02-xx-DV-PE-BE), 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +36 +36 +Connector_Samtec_HLE_THT +Samtec_HLE-118-02-xx-DV-TE_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-TE, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +36 +36 +Connector_Samtec_HLE_THT +Samtec_HLE-119-02-xx-DV-PE-LC_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-PE-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +38 +38 +Connector_Samtec_HLE_THT +Samtec_HLE-119-02-xx-DV-PE_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-PE (compatible alternatives: HLE-119-02-xx-DV-PE-BE), 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +38 +38 +Connector_Samtec_HLE_THT +Samtec_HLE-119-02-xx-DV-TE_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-TE, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +38 +38 +Connector_Samtec_HLE_THT +Samtec_HLE-120-02-xx-DV-PE-LC_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-PE-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +40 +40 +Connector_Samtec_HLE_THT +Samtec_HLE-120-02-xx-DV-PE_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-PE (compatible alternatives: HLE-120-02-xx-DV-PE-BE), 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +40 +40 +Connector_Samtec_HLE_THT +Samtec_HLE-120-02-xx-DV-TE_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-TE, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +40 +40 +Connector_Samtec_HLE_THT +Samtec_HLE-121-02-xx-DV-PE-LC_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-PE-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +42 +42 +Connector_Samtec_HLE_THT +Samtec_HLE-121-02-xx-DV-PE_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-PE (compatible alternatives: HLE-121-02-xx-DV-PE-BE), 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +42 +42 +Connector_Samtec_HLE_THT +Samtec_HLE-121-02-xx-DV-TE_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-TE, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +42 +42 +Connector_Samtec_HLE_THT +Samtec_HLE-122-02-xx-DV-PE-LC_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-PE-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +44 +44 +Connector_Samtec_HLE_THT +Samtec_HLE-122-02-xx-DV-PE_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-PE (compatible alternatives: HLE-122-02-xx-DV-PE-BE), 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +44 +44 +Connector_Samtec_HLE_THT +Samtec_HLE-122-02-xx-DV-TE_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-TE, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +44 +44 +Connector_Samtec_HLE_THT +Samtec_HLE-123-02-xx-DV-PE-LC_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-PE-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +46 +46 +Connector_Samtec_HLE_THT +Samtec_HLE-123-02-xx-DV-PE_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-PE (compatible alternatives: HLE-123-02-xx-DV-PE-BE), 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +46 +46 +Connector_Samtec_HLE_THT +Samtec_HLE-123-02-xx-DV-TE_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-TE, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +46 +46 +Connector_Samtec_HLE_THT +Samtec_HLE-124-02-xx-DV-PE-LC_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-PE-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +48 +48 +Connector_Samtec_HLE_THT +Samtec_HLE-124-02-xx-DV-PE_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-PE (compatible alternatives: HLE-124-02-xx-DV-PE-BE), 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +48 +48 +Connector_Samtec_HLE_THT +Samtec_HLE-124-02-xx-DV-TE_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-TE, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +48 +48 +Connector_Samtec_HLE_THT +Samtec_HLE-125-02-xx-DV-PE-LC_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-PE-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +50 +50 +Connector_Samtec_HLE_THT +Samtec_HLE-125-02-xx-DV-PE_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-PE (compatible alternatives: HLE-125-02-xx-DV-PE-BE), 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +50 +50 +Connector_Samtec_HLE_THT +Samtec_HLE-125-02-xx-DV-TE_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-TE, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +50 +50 +Connector_Samtec_HLE_THT +Samtec_HLE-126-02-xx-DV-PE-LC_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-PE-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +52 +52 +Connector_Samtec_HLE_THT +Samtec_HLE-126-02-xx-DV-PE_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-PE (compatible alternatives: HLE-126-02-xx-DV-PE-BE), 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +52 +52 +Connector_Samtec_HLE_THT +Samtec_HLE-126-02-xx-DV-TE_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-TE, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +52 +52 +Connector_Samtec_HLE_THT +Samtec_HLE-127-02-xx-DV-PE-LC_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-PE-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +54 +54 +Connector_Samtec_HLE_THT +Samtec_HLE-127-02-xx-DV-PE_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-PE (compatible alternatives: HLE-127-02-xx-DV-PE-BE), 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +54 +54 +Connector_Samtec_HLE_THT +Samtec_HLE-127-02-xx-DV-TE_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-TE, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +54 +54 +Connector_Samtec_HLE_THT +Samtec_HLE-128-02-xx-DV-PE-LC_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-PE-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +56 +56 +Connector_Samtec_HLE_THT +Samtec_HLE-128-02-xx-DV-PE_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-PE (compatible alternatives: HLE-128-02-xx-DV-PE-BE), 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +56 +56 +Connector_Samtec_HLE_THT +Samtec_HLE-128-02-xx-DV-TE_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-TE, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +56 +56 +Connector_Samtec_HLE_THT +Samtec_HLE-129-02-xx-DV-PE-LC_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-PE-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +58 +58 +Connector_Samtec_HLE_THT +Samtec_HLE-129-02-xx-DV-PE_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-PE (compatible alternatives: HLE-129-02-xx-DV-PE-BE), 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +58 +58 +Connector_Samtec_HLE_THT +Samtec_HLE-129-02-xx-DV-TE_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-TE, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +58 +58 +Connector_Samtec_HLE_THT +Samtec_HLE-130-02-xx-DV-PE-LC_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-PE-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +60 +60 +Connector_Samtec_HLE_THT +Samtec_HLE-130-02-xx-DV-PE_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-PE (compatible alternatives: HLE-130-02-xx-DV-PE-BE), 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +60 +60 +Connector_Samtec_HLE_THT +Samtec_HLE-130-02-xx-DV-TE_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-TE, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +60 +60 +Connector_Samtec_HLE_THT +Samtec_HLE-131-02-xx-DV-PE-LC_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-PE-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +62 +62 +Connector_Samtec_HLE_THT +Samtec_HLE-131-02-xx-DV-PE_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-PE (compatible alternatives: HLE-131-02-xx-DV-PE-BE), 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +62 +62 +Connector_Samtec_HLE_THT +Samtec_HLE-131-02-xx-DV-TE_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-TE, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +62 +62 +Connector_Samtec_HLE_THT +Samtec_HLE-132-02-xx-DV-PE-LC_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-PE-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +64 +64 +Connector_Samtec_HLE_THT +Samtec_HLE-132-02-xx-DV-PE_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-PE (compatible alternatives: HLE-132-02-xx-DV-PE-BE), 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +64 +64 +Connector_Samtec_HLE_THT +Samtec_HLE-132-02-xx-DV-TE_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-TE, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +64 +64 +Connector_Samtec_HLE_THT +Samtec_HLE-133-02-xx-DV-PE-LC_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-PE-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +66 +66 +Connector_Samtec_HLE_THT +Samtec_HLE-133-02-xx-DV-PE_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-PE (compatible alternatives: HLE-133-02-xx-DV-PE-BE), 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +66 +66 +Connector_Samtec_HLE_THT +Samtec_HLE-133-02-xx-DV-TE_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-TE, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +66 +66 +Connector_Samtec_HLE_THT +Samtec_HLE-134-02-xx-DV-PE-LC_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-PE-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +68 +68 +Connector_Samtec_HLE_THT +Samtec_HLE-134-02-xx-DV-PE_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-PE (compatible alternatives: HLE-134-02-xx-DV-PE-BE), 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +68 +68 +Connector_Samtec_HLE_THT +Samtec_HLE-134-02-xx-DV-TE_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-TE, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +68 +68 +Connector_Samtec_HLE_THT +Samtec_HLE-135-02-xx-DV-PE-LC_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-PE-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +70 +70 +Connector_Samtec_HLE_THT +Samtec_HLE-135-02-xx-DV-PE_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-PE (compatible alternatives: HLE-135-02-xx-DV-PE-BE), 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +70 +70 +Connector_Samtec_HLE_THT +Samtec_HLE-135-02-xx-DV-TE_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-TE, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +70 +70 +Connector_Samtec_HLE_THT +Samtec_HLE-136-02-xx-DV-PE-LC_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-PE-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +72 +72 +Connector_Samtec_HLE_THT +Samtec_HLE-136-02-xx-DV-PE_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-PE (compatible alternatives: HLE-136-02-xx-DV-PE-BE), 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +72 +72 +Connector_Samtec_HLE_THT +Samtec_HLE-136-02-xx-DV-TE_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-TE, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +72 +72 +Connector_Samtec_HLE_THT +Samtec_HLE-137-02-xx-DV-PE-LC_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-PE-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +74 +74 +Connector_Samtec_HLE_THT +Samtec_HLE-137-02-xx-DV-PE_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-PE (compatible alternatives: HLE-137-02-xx-DV-PE-BE), 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +74 +74 +Connector_Samtec_HLE_THT +Samtec_HLE-137-02-xx-DV-TE_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-TE, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +74 +74 +Connector_Samtec_HLE_THT +Samtec_HLE-138-02-xx-DV-PE-LC_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-PE-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +76 +76 +Connector_Samtec_HLE_THT +Samtec_HLE-138-02-xx-DV-PE_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-PE (compatible alternatives: HLE-138-02-xx-DV-PE-BE), 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +76 +76 +Connector_Samtec_HLE_THT +Samtec_HLE-138-02-xx-DV-TE_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-TE, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +76 +76 +Connector_Samtec_HLE_THT +Samtec_HLE-139-02-xx-DV-PE-LC_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-PE-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +78 +78 +Connector_Samtec_HLE_THT +Samtec_HLE-139-02-xx-DV-PE_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-PE (compatible alternatives: HLE-139-02-xx-DV-PE-BE), 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +78 +78 +Connector_Samtec_HLE_THT +Samtec_HLE-139-02-xx-DV-TE_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-TE, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +78 +78 +Connector_Samtec_HLE_THT +Samtec_HLE-140-02-xx-DV-PE-LC_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-PE-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +80 +80 +Connector_Samtec_HLE_THT +Samtec_HLE-140-02-xx-DV-PE_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-PE (compatible alternatives: HLE-140-02-xx-DV-PE-BE), 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +80 +80 +Connector_Samtec_HLE_THT +Samtec_HLE-140-02-xx-DV-TE_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-TE, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +80 +80 +Connector_Samtec_HLE_THT +Samtec_HLE-141-02-xx-DV-PE-LC_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-PE-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +82 +82 +Connector_Samtec_HLE_THT +Samtec_HLE-141-02-xx-DV-PE_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-PE (compatible alternatives: HLE-141-02-xx-DV-PE-BE), 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +82 +82 +Connector_Samtec_HLE_THT +Samtec_HLE-141-02-xx-DV-TE_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-TE, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +82 +82 +Connector_Samtec_HLE_THT +Samtec_HLE-142-02-xx-DV-PE-LC_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-PE-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +84 +84 +Connector_Samtec_HLE_THT +Samtec_HLE-142-02-xx-DV-PE_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-PE (compatible alternatives: HLE-142-02-xx-DV-PE-BE), 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +84 +84 +Connector_Samtec_HLE_THT +Samtec_HLE-142-02-xx-DV-TE_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-TE, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +84 +84 +Connector_Samtec_HLE_THT +Samtec_HLE-143-02-xx-DV-PE-LC_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-PE-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +86 +86 +Connector_Samtec_HLE_THT +Samtec_HLE-143-02-xx-DV-PE_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-PE (compatible alternatives: HLE-143-02-xx-DV-PE-BE), 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +86 +86 +Connector_Samtec_HLE_THT +Samtec_HLE-143-02-xx-DV-TE_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-TE, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +86 +86 +Connector_Samtec_HLE_THT +Samtec_HLE-144-02-xx-DV-PE-LC_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-PE-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +88 +88 +Connector_Samtec_HLE_THT +Samtec_HLE-144-02-xx-DV-PE_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-PE (compatible alternatives: HLE-144-02-xx-DV-PE-BE), 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +88 +88 +Connector_Samtec_HLE_THT +Samtec_HLE-144-02-xx-DV-TE_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-TE, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +88 +88 +Connector_Samtec_HLE_THT +Samtec_HLE-145-02-xx-DV-PE-LC_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-PE-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +90 +90 +Connector_Samtec_HLE_THT +Samtec_HLE-145-02-xx-DV-PE_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-PE (compatible alternatives: HLE-145-02-xx-DV-PE-BE), 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +90 +90 +Connector_Samtec_HLE_THT +Samtec_HLE-145-02-xx-DV-TE_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-TE, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +90 +90 +Connector_Samtec_HLE_THT +Samtec_HLE-146-02-xx-DV-PE-LC_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-PE-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +92 +92 +Connector_Samtec_HLE_THT +Samtec_HLE-146-02-xx-DV-PE_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-PE (compatible alternatives: HLE-146-02-xx-DV-PE-BE), 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +92 +92 +Connector_Samtec_HLE_THT +Samtec_HLE-146-02-xx-DV-TE_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-TE, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +92 +92 +Connector_Samtec_HLE_THT +Samtec_HLE-147-02-xx-DV-PE-LC_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-PE-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +94 +94 +Connector_Samtec_HLE_THT +Samtec_HLE-147-02-xx-DV-PE_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-PE (compatible alternatives: HLE-147-02-xx-DV-PE-BE), 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +94 +94 +Connector_Samtec_HLE_THT +Samtec_HLE-147-02-xx-DV-TE_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-TE, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +94 +94 +Connector_Samtec_HLE_THT +Samtec_HLE-148-02-xx-DV-PE-LC_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-PE-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +96 +96 +Connector_Samtec_HLE_THT +Samtec_HLE-148-02-xx-DV-PE_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-PE (compatible alternatives: HLE-148-02-xx-DV-PE-BE), 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +96 +96 +Connector_Samtec_HLE_THT +Samtec_HLE-148-02-xx-DV-TE_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-TE, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +96 +96 +Connector_Samtec_HLE_THT +Samtec_HLE-149-02-xx-DV-PE-LC_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-PE-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +98 +98 +Connector_Samtec_HLE_THT +Samtec_HLE-149-02-xx-DV-PE_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-PE (compatible alternatives: HLE-149-02-xx-DV-PE-BE), 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +98 +98 +Connector_Samtec_HLE_THT +Samtec_HLE-149-02-xx-DV-TE_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-TE, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +98 +98 +Connector_Samtec_HLE_THT +Samtec_HLE-150-02-xx-DV-PE-LC_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-PE-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +100 +100 +Connector_Samtec_HLE_THT +Samtec_HLE-150-02-xx-DV-PE_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-PE (compatible alternatives: HLE-150-02-xx-DV-PE-BE), 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +100 +100 +Connector_Samtec_HLE_THT +Samtec_HLE-150-02-xx-DV-TE_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-TE, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +100 +100 +Connector_Samtec_HPM_THT +Samtec_HPM-01-01-x-S_Straight_1x01_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x01, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x01 5.08mm single row +0 +1 +1 +Connector_Samtec_HPM_THT +Samtec_HPM-01-05-x-S_Straight_1x01_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x01, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x01 5.08mm single row +0 +1 +1 +Connector_Samtec_HPM_THT +Samtec_HPM-02-01-x-S_Straight_1x02_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x02, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x02 5.08mm single row +0 +2 +2 +Connector_Samtec_HPM_THT +Samtec_HPM-02-05-x-S_Straight_1x02_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x02, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x02 5.08mm single row +0 +2 +2 +Connector_Samtec_HPM_THT +Samtec_HPM-03-01-x-S_Straight_1x03_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x03, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x03 5.08mm single row +0 +3 +3 +Connector_Samtec_HPM_THT +Samtec_HPM-03-05-x-S_Straight_1x03_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x03, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x03 5.08mm single row +0 +3 +3 +Connector_Samtec_HPM_THT +Samtec_HPM-04-01-x-S_Straight_1x04_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x04, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x04 5.08mm single row +0 +4 +4 +Connector_Samtec_HPM_THT +Samtec_HPM-04-05-x-S_Straight_1x04_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x04, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x04 5.08mm single row +0 +4 +4 +Connector_Samtec_HPM_THT +Samtec_HPM-05-01-x-S_Straight_1x05_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x05, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x05 5.08mm single row +0 +5 +5 +Connector_Samtec_HPM_THT +Samtec_HPM-05-05-x-S_Straight_1x05_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x05, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x05 5.08mm single row +0 +5 +5 +Connector_Samtec_HPM_THT +Samtec_HPM-06-01-x-S_Straight_1x06_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x06, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x06 5.08mm single row +0 +6 +6 +Connector_Samtec_HPM_THT +Samtec_HPM-06-05-x-S_Straight_1x06_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x06, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x06 5.08mm single row +0 +6 +6 +Connector_Samtec_HPM_THT +Samtec_HPM-07-01-x-S_Straight_1x07_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x07, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x07 5.08mm single row +0 +7 +7 +Connector_Samtec_HPM_THT +Samtec_HPM-07-05-x-S_Straight_1x07_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x07, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x07 5.08mm single row +0 +7 +7 +Connector_Samtec_HPM_THT +Samtec_HPM-08-01-x-S_Straight_1x08_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x08, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x08 5.08mm single row +0 +8 +8 +Connector_Samtec_HPM_THT +Samtec_HPM-08-05-x-S_Straight_1x08_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x08, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x08 5.08mm single row +0 +8 +8 +Connector_Samtec_HPM_THT +Samtec_HPM-09-01-x-S_Straight_1x09_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x09, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x09 5.08mm single row +0 +9 +9 +Connector_Samtec_HPM_THT +Samtec_HPM-09-05-x-S_Straight_1x09_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x09, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x09 5.08mm single row +0 +9 +9 +Connector_Samtec_HPM_THT +Samtec_HPM-10-01-x-S_Straight_1x10_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x10, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x10 5.08mm single row +0 +10 +10 +Connector_Samtec_HPM_THT +Samtec_HPM-10-05-x-S_Straight_1x10_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x10, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x10 5.08mm single row +0 +10 +10 +Connector_Samtec_HPM_THT +Samtec_HPM-11-01-x-S_Straight_1x11_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x11, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x11 5.08mm single row +0 +11 +11 +Connector_Samtec_HPM_THT +Samtec_HPM-11-05-x-S_Straight_1x11_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x11, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x11 5.08mm single row +0 +11 +11 +Connector_Samtec_HPM_THT +Samtec_HPM-12-01-x-S_Straight_1x12_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x12, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x12 5.08mm single row +0 +12 +12 +Connector_Samtec_HPM_THT +Samtec_HPM-12-05-x-S_Straight_1x12_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x12, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x12 5.08mm single row +0 +12 +12 +Connector_Samtec_HPM_THT +Samtec_HPM-13-01-x-S_Straight_1x13_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x13, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x13 5.08mm single row +0 +13 +13 +Connector_Samtec_HPM_THT +Samtec_HPM-13-05-x-S_Straight_1x13_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x13, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x13 5.08mm single row +0 +13 +13 +Connector_Samtec_HPM_THT +Samtec_HPM-14-01-x-S_Straight_1x14_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x14, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x14 5.08mm single row +0 +14 +14 +Connector_Samtec_HPM_THT +Samtec_HPM-14-05-x-S_Straight_1x14_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x14, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x14 5.08mm single row +0 +14 +14 +Connector_Samtec_HPM_THT +Samtec_HPM-15-01-x-S_Straight_1x15_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x15, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x15 5.08mm single row +0 +15 +15 +Connector_Samtec_HPM_THT +Samtec_HPM-15-05-x-S_Straight_1x15_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x15, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x15 5.08mm single row +0 +15 +15 +Connector_Samtec_HPM_THT +Samtec_HPM-16-01-x-S_Straight_1x16_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x16, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x16 5.08mm single row +0 +16 +16 +Connector_Samtec_HPM_THT +Samtec_HPM-16-05-x-S_Straight_1x16_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x16, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x16 5.08mm single row +0 +16 +16 +Connector_Samtec_HPM_THT +Samtec_HPM-17-01-x-S_Straight_1x17_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x17, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x17 5.08mm single row +0 +17 +17 +Connector_Samtec_HPM_THT +Samtec_HPM-17-05-x-S_Straight_1x17_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x17, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x17 5.08mm single row +0 +17 +17 +Connector_Samtec_HPM_THT +Samtec_HPM-18-01-x-S_Straight_1x18_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x18, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x18 5.08mm single row +0 +18 +18 +Connector_Samtec_HPM_THT +Samtec_HPM-18-05-x-S_Straight_1x18_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x18, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x18 5.08mm single row +0 +18 +18 +Connector_Samtec_HPM_THT +Samtec_HPM-19-01-x-S_Straight_1x19_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x19, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x19 5.08mm single row +0 +19 +19 +Connector_Samtec_HPM_THT +Samtec_HPM-19-05-x-S_Straight_1x19_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x19, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x19 5.08mm single row +0 +19 +19 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-01-X-DV-A-BL_2x09_P0.8mm_Pol04_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-01-X-DV-A-WT_2x09_P0.8mm_Pol04_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-X-X-DV-BL_2x09_P0.8mm_Edge +Highspeed card edge for PCB's with 2x9 contacts (with board lock option) +conn samtec card-edge high-speed +0 +18 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-X-X-DV_2x09_P0.8mm_Edge +Highspeed card edge for PCB's with 2x9 contacts +conn samtec card-edge high-speed +0 +18 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-X-X-DV_2x09_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x9 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +18 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV-A-BL_2x10_P0.8mm_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +22 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV-A-WT_2x10_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +22 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV-A_2x10_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV_2x10_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-03-X-DV-A-WT_2x10_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +22 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-03-X-DV-A_2x10_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-03-X-DV_2x10_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-X-X-DV-BL_2x10_P0.8mm_Edge +Highspeed card edge for PCB's with 2x10 contacts (with board lock option) +conn samtec card-edge high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-X-X-DV_2x10_P0.8mm_Edge +Highspeed card edge for PCB's with 2x10 contacts +conn samtec card-edge high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-X-X-DV_2x10_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x10 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV-A-BL_2x13_P0.8mm_Pol06_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +28 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV-A-WT_2x13_P0.8mm_Pol06_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +28 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV-A_2x13_P0.8mm_Pol06_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV_2x13_P0.8mm_Pol06_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-X-X-DV-BL_2x13_P0.8mm_Edge +Highspeed card edge for PCB's with 2x13 contacts (with board lock option) +conn samtec card-edge high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-X-X-DV_2x13_P0.8mm_Edge +Highspeed card edge for PCB's with 2x13 contacts +conn samtec card-edge high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-X-X-DV_2x13_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x13 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV-A-BL_2x20_P0.8mm_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +42 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV-A-WT_2x20_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +42 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV-A_2x20_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV_2x20_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-03-X-DV-A-WT_2x20_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +42 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-03-X-DV-A_2x20_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-03-X-DV_2x20_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-X-X-DV-BL_2x20_P0.8mm_Edge +Highspeed card edge for PCB's with 2x20 contacts (with board lock option) +conn samtec card-edge high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-X-X-DV_2x20_P0.8mm_Edge +Highspeed card edge for PCB's with 2x20 contacts +conn samtec card-edge high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-X-X-DV_2x20_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x20 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV-A-BL_2x25_P0.8mm_Pol06_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +52 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV-A-WT_2x25_P0.8mm_Pol06_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +52 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV-A_2x25_P0.8mm_Pol06_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV_2x25_P0.8mm_Pol06_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-X-X-DV-BL_2x25_P0.8mm_Edge +Highspeed card edge for PCB's with 2x25 contacts (with board lock option) +conn samtec card-edge high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-X-X-DV_2x25_P0.8mm_Edge +Highspeed card edge for PCB's with 2x25 contacts +conn samtec card-edge high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-X-X-DV_2x25_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x25 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV-A-BL_2x30_P0.8mm_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +62 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV-A-WT_2x30_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +62 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV-A_2x30_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV_2x30_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-03-X-DV-A-WT_2x30_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +62 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-03-X-DV-A_2x30_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-03-X-DV_2x30_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-X-X-DV-BL_2x30_P0.8mm_Edge +Highspeed card edge for PCB's with 2x30 contacts (with board lock option) +conn samtec card-edge high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-X-X-DV_2x30_P0.8mm_Edge +Highspeed card edge for PCB's with 2x30 contacts +conn samtec card-edge high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-X-X-DV_2x30_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x30 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV-A-BL_2x37_P0.8mm_Pol21_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +76 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV-A-WT_2x37_P0.8mm_Pol21_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +76 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV-A_2x37_P0.8mm_Pol21_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV_2x37_P0.8mm_Pol21_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-X-X-DV-BL_2x37_P0.8mm_Edge +Highspeed card edge for PCB's with 2x37 contacts (with board lock option) +conn samtec card-edge high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-X-X-DV_2x37_P0.8mm_Edge +Highspeed card edge for PCB's with 2x37 contacts +conn samtec card-edge high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-X-X-DV_2x37_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x37 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV-A-BL_2x40_P0.8mm_Pol22_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +82 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV-A-WT_2x40_P0.8mm_Pol22_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +82 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV-A_2x40_P0.8mm_Pol22_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV_2x40_P0.8mm_Pol22_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-03-X-DV-A-WT_2x40_P0.8mm_Pol22_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +82 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-03-X-DV-A_2x40_P0.8mm_Pol22_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-03-X-DV_2x40_P0.8mm_Pol22_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-X-X-DV-BL_2x40_P0.8mm_Edge +Highspeed card edge for PCB's with 2x40 contacts (with board lock option) +conn samtec card-edge high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-X-X-DV_2x40_P0.8mm_Edge +Highspeed card edge for PCB's with 2x40 contacts +conn samtec card-edge high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-X-X-DV_2x40_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x40 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV-A-BL_2x49_P0.8mm_Pol27_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV-A-WT_2x49_P0.8mm_Pol27_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV-A_2x49_P0.8mm_Pol27_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV_2x49_P0.8mm_Pol27_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-X-X-DV-BL_2x49_P0.8mm_Edge +Highspeed card edge for PCB's with 2x49 contacts (with board lock option) +conn samtec card-edge high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-X-X-DV_2x49_P0.8mm_Edge +Highspeed card edge for PCB's with 2x49 contacts +conn samtec card-edge high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-X-X-DV_2x49_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x49 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV-A-BL_2x50_P0.8mm_Pol27_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +102 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV-A-WT_2x50_P0.8mm_Pol27_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +102 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV-A_2x50_P0.8mm_Pol27_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV_2x50_P0.8mm_Pol27_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-03-X-DV-A-WT_2x50_P0.8mm_Pol27_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +102 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-03-X-DV-A_2x50_P0.8mm_Pol27_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-03-X-DV_2x50_P0.8mm_Pol27_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-X-X-DV-BL_2x50_P0.8mm_Edge +Highspeed card edge for PCB's with 2x50 contacts (with board lock option) +conn samtec card-edge high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-X-X-DV_2x50_P0.8mm_Edge +Highspeed card edge for PCB's with 2x50 contacts +conn samtec card-edge high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-X-X-DV_2x50_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x50 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV-A-BL_2x60_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +122 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV-A-WT_2x60_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +122 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV-A_2x60_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV_2x60_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-03-X-DV-A-WT_2x60_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +122 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-03-X-DV-A_2x60_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-03-X-DV_2x60_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-X-X-DV-BL_2x60_P0.8mm_Edge +Highspeed card edge for PCB's with 2x60 contacts (with board lock option) +conn samtec card-edge high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-X-X-DV_2x60_P0.8mm_Edge +Highspeed card edge for PCB's with 2x60 contacts +conn samtec card-edge high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-X-X-DV_2x60_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x60 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV-A-BL_2x70_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +142 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV-A-WT_2x70_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +142 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV-A_2x70_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV_2x70_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-03-X-DV-A-WT_2x70_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +142 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-03-X-DV-A_2x70_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-03-X-DV_2x70_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-X-X-DV-BL_2x70_P0.8mm_Edge +Highspeed card edge for PCB's with 2x70 contacts (with board lock option) +conn samtec card-edge high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-X-X-DV_2x70_P0.8mm_Edge +Highspeed card edge for PCB's with 2x70 contacts +conn samtec card-edge high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-X-X-DV_2x70_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x70 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV-A-BL_2x80_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +162 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV-A-WT_2x80_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +162 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV-A_2x80_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV_2x80_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-03-X-DV-A-WT_2x80_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +162 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-03-X-DV-A_2x80_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-03-X-DV_2x80_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-X-X-DV-BL_2x80_P0.8mm_Edge +Highspeed card edge for PCB's with 2x80 contacts (with board lock option) +conn samtec card-edge high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-X-X-DV_2x80_P0.8mm_Edge +Highspeed card edge for PCB's with 2x80 contacts +conn samtec card-edge high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-X-X-DV_2x80_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x80 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV-A-BL_2x90_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +182 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV-A-WT_2x90_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +182 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV-A_2x90_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV_2x90_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-03-X-DV-A-WT_2x90_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +182 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-03-X-DV-A_2x90_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-03-X-DV_2x90_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-X-X-DV-BL_2x90_P0.8mm_Edge +Highspeed card edge for PCB's with 2x90 contacts (with board lock option) +conn samtec card-edge high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-X-X-DV_2x90_P0.8mm_Edge +Highspeed card edge for PCB's with 2x90 contacts +conn samtec card-edge high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-X-X-DV_2x90_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x90 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV-A-BL_2x100_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +202 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV-A-WT_2x100_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +202 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV-A_2x100_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV_2x100_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-03-X-DV-A-WT_2x100_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +202 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-03-X-DV-A_2x100_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-03-X-DV_2x100_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-X-X-DV-BL_2x100_P0.8mm_Edge +Highspeed card edge for PCB's with 2x100 contacts (with board lock option) +conn samtec card-edge high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-X-X-DV_2x100_P0.8mm_Edge +Highspeed card edge for PCB's with 2x100 contacts +conn samtec card-edge high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-X-X-DV_2x100_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x100 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +200 +200 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-S-RA_1x02-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-S-V_1x02-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-SH-L_1x02-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-SV-L_1x02-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-S-RA_1x03-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-S-V_1x03-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-SH-L_1x03-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-SV-L_1x03-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-S-RA_1x04-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-S-V_1x04-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-SH-L_1x04-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-SV-L_1x04-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-S-RA_1x05-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-S-V_1x05-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-SH-L_1x05-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-SV-L_1x05-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-S-RA_1x06-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-S-V_1x06-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-SH-L_1x06-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-SV-L_1x06-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-S-RA_1x07-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-S-V_1x07-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-SH-L_1x07-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-SV-L_1x07-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-S-RA_1x08-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-S-V_1x08-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-SH-L_1x08-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-SV-L_1x08-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-S-RA_1x09-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-S-V_1x09-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-SH-L_1x09-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-SV-L_1x09-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-S-RA_1x10-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-S-V_1x10-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-SH-L_1x10-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-SV-L_1x10-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-S-RA_1x11-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-S-V_1x11-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-SH-L_1x11-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-SV-L_1x11-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-S-RA_1x12-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-S-V_1x12-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-SH-L_1x12-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-SV-L_1x12-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-S-RA_1x13-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-S-V_1x13-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-SH-L_1x13-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-SV-L_1x13-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-S-RA_1x14-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-S-V_1x14-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-SH-L_1x14-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-SV-L_1x14-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-S-RA_1x15-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-S-V_1x15-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-SH-L_1x15-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-SV-L_1x15-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-S-RA_1x16-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-S-V_1x16-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-SH-L_1x16-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-SV-L_1x16-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-S-RA_1x17-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-S-V_1x17-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-SH-L_1x17-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-SV-L_1x17-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-S-RA_1x18-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-S-V_1x18-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-SH-L_1x18-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-SV-L_1x18-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-S-RA_1x19-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-S-V_1x19-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-SH-L_1x19-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-SV-L_1x19-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-S-RA_1x20-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-S-V_1x20-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-SH-L_1x20-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-SV-L_1x20-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroPower +Samtec_UMPS-02-XX.X-X-V-S-W_1x02-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +10 +3 +Connector_Samtec_MicroPower +Samtec_UMPS-02-XX.X-X-V-S_1x02_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +2 +2 +Connector_Samtec_MicroPower +Samtec_UMPS-03-XX.X-X-V-S-W_1x03-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +11 +4 +Connector_Samtec_MicroPower +Samtec_UMPS-03-XX.X-X-V-S_1x03_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +3 +3 +Connector_Samtec_MicroPower +Samtec_UMPS-04-XX.X-X-V-S-W_1x04-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +12 +5 +Connector_Samtec_MicroPower +Samtec_UMPS-04-XX.X-X-V-S_1x04_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +4 +4 +Connector_Samtec_MicroPower +Samtec_UMPS-05-XX.X-X-V-S-W_1x05-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +13 +6 +Connector_Samtec_MicroPower +Samtec_UMPS-05-XX.X-X-V-S_1x05_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +5 +5 +Connector_Samtec_MicroPower +Samtec_UMPS-06-XX.X-X-V-S-W_1x06-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +14 +7 +Connector_Samtec_MicroPower +Samtec_UMPS-06-XX.X-X-V-S_1x06_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +6 +6 +Connector_Samtec_MicroPower +Samtec_UMPS-07-XX.X-X-V-S-W_1x07-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +15 +8 +Connector_Samtec_MicroPower +Samtec_UMPS-07-XX.X-X-V-S_1x07_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +7 +7 +Connector_Samtec_MicroPower +Samtec_UMPS-08-XX.X-X-V-S-W_1x08-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +16 +9 +Connector_Samtec_MicroPower +Samtec_UMPS-08-XX.X-X-V-S_1x08_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +8 +8 +Connector_Samtec_MicroPower +Samtec_UMPS-09-XX.X-X-V-S-W_1x09-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +17 +10 +Connector_Samtec_MicroPower +Samtec_UMPS-09-XX.X-X-V-S_1x09_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +9 +9 +Connector_Samtec_MicroPower +Samtec_UMPS-10-XX.X-X-V-S-W_1x10-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +18 +11 +Connector_Samtec_MicroPower +Samtec_UMPS-10-XX.X-X-V-S_1x10_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +10 +10 +Connector_Samtec_MicroPower +Samtec_UMPT-02-XX.X-X-V-S-W_1x02-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +10 +3 +Connector_Samtec_MicroPower +Samtec_UMPT-02-XX.X-X-V-S_1x02_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +2 +2 +Connector_Samtec_MicroPower +Samtec_UMPT-03-XX.X-X-V-S-W_1x03-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +11 +4 +Connector_Samtec_MicroPower +Samtec_UMPT-03-XX.X-X-V-S_1x03_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +3 +3 +Connector_Samtec_MicroPower +Samtec_UMPT-04-XX.X-X-V-S-W_1x04-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +12 +5 +Connector_Samtec_MicroPower +Samtec_UMPT-04-XX.X-X-V-S_1x04_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +4 +4 +Connector_Samtec_MicroPower +Samtec_UMPT-05-XX.X-X-V-S-W_1x05-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +13 +6 +Connector_Samtec_MicroPower +Samtec_UMPT-05-XX.X-X-V-S_1x05_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +5 +5 +Connector_Samtec_MicroPower +Samtec_UMPT-06-XX.X-X-V-S-W_1x06-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +14 +7 +Connector_Samtec_MicroPower +Samtec_UMPT-06-XX.X-X-V-S_1x06_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +6 +6 +Connector_Samtec_MicroPower +Samtec_UMPT-07-XX.X-X-V-S-W_1x07-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +15 +8 +Connector_Samtec_MicroPower +Samtec_UMPT-07-XX.X-X-V-S_1x07_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +7 +7 +Connector_Samtec_MicroPower +Samtec_UMPT-08-XX.X-X-V-S-W_1x08-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +16 +9 +Connector_Samtec_MicroPower +Samtec_UMPT-08-XX.X-X-V-S_1x08_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +8 +8 +Connector_Samtec_MicroPower +Samtec_UMPT-09-XX.X-X-V-S-W_1x09-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +17 +10 +Connector_Samtec_MicroPower +Samtec_UMPT-09-XX.X-X-V-S_1x09_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +9 +9 +Connector_Samtec_MicroPower +Samtec_UMPT-10-XX.X-X-V-S-W_1x10-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +18 +11 +Connector_Samtec_MicroPower +Samtec_UMPT-10-XX.X-X-V-S_1x10_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +10 +10 +Connector_Stocko +Stocko_MKS_1651-6-0-202_1x2_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +2 +2 +Connector_Stocko +Stocko_MKS_1652-6-0-202_1x2_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +2 +2 +Connector_Stocko +Stocko_MKS_1653-6-0-303_1x3_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +3 +3 +Connector_Stocko +Stocko_MKS_1654-6-0-404_1x4_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +4 +4 +Connector_Stocko +Stocko_MKS_1655-6-0-505_1x5_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +5 +5 +Connector_Stocko +Stocko_MKS_1656-6-0-606_1x6_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +6 +6 +Connector_Stocko +Stocko_MKS_1657-6-0-707_1x7_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +7 +7 +Connector_Stocko +Stocko_MKS_1658-6-0-808_1x8_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +8 +8 +Connector_Stocko +Stocko_MKS_1659-6-0-909_1x9_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +9 +9 +Connector_Stocko +Stocko_MKS_1660-6-0-1010_1x10_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +10 +10 +Connector_Stocko +Stocko_MKS_1661-6-0-1111_1x11_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +11 +11 +Connector_Stocko +Stocko_MKS_1662-6-0-1212_1x12_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +12 +12 +Connector_Stocko +Stocko_MKS_1663-6-0-1313_1x13_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +13 +13 +Connector_Stocko +Stocko_MKS_1664-6-0-1414_1x14_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +14 +14 +Connector_Stocko +Stocko_MKS_1665-6-0-1515_1x15_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +15 +15 +Connector_Stocko +Stocko_MKS_1666-6-0-1616_1x16_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +16 +16 +Connector_Stocko +Stocko_MKS_1667-6-0-1717_1x17_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +17 +17 +Connector_Stocko +Stocko_MKS_1668-6-0-1818_1x18_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +18 +18 +Connector_Stocko +Stocko_MKS_1669-6-0-1919_1x19_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +19 +19 +Connector_Stocko +Stocko_MKS_1670-6-0-2020_1x20_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +20 +20 +Connector_TE-Connectivity +TE_1-826576-3_1x13_P3.96mm_Vertical +TE, 1-826576-3, 13 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +13 +13 +Connector_TE-Connectivity +TE_1-826576-5_1x15_P3.96mm_Vertical +TE, 1-826576-5, 15 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +15 +15 +Connector_TE-Connectivity +TE_1-826576-6_1x16_P3.96mm_Vertical +TE, 1-826576-6, 16 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +16 +16 +Connector_TE-Connectivity +TE_1-826576-7_1x17_P3.96mm_Vertical +TE, 1-826576-7, 17 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +17 +17 +Connector_TE-Connectivity +TE_1-826576-8_1x18_P3.96mm_Vertical +TE, 1-826576-8, 18 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +18 +18 +Connector_TE-Connectivity +TE_2-826576-0_1x20_P3.96mm_Vertical +TE, 2-826576-0, 20 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +20 +20 +Connector_TE-Connectivity +TE_3-826576-6_1x36_P3.96mm_Vertical +TE, 3-826576-6, 36 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +36 +36 +Connector_TE-Connectivity +TE_440054-2_1x02_P2.00mm_Vertical +TE Connectivity, HDI, Wire-to-Board, Fully Shrouded, Vertical Header: https://www.te.com/usa-en/product-440054-2.datasheet.pdf +connector header hdr horizontal vertical shrouded fully-shrounded 440054-2 2-440054-2 4-440054-2 6-440054-2 2-440054-6 4-440054-6 6-440054-6 +0 +2 +2 +Connector_TE-Connectivity +TE_440055-2_1x02_P2.00mm_Horizontal +TE Connectivity, HDI, Wire-to-Board, Fully Shrouded, Header: https://www.te.com/usa-en/product-440055-2.datasheet.pdf +connector header hdr horizontal right-angle shrouded fully-shrounded 440055-2 2-440055-2 4-440055-2 6-440055-2 8-440055-2 +0 +2 +2 +Connector_TE-Connectivity +TE_826576-2_1x02_P3.96mm_Vertical +TE, 826576-2, 2 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +2 +2 +Connector_TE-Connectivity +TE_826576-3_1x03_P3.96mm_Vertical +TE, 826576-3, 3 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +3 +3 +Connector_TE-Connectivity +TE_826576-5_1x05_P3.96mm_Vertical +TE, 826576-5, 5 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +5 +5 +Connector_TE-Connectivity +TE_826576-6_1x06_P3.96mm_Vertical +TE, 826576-6, 6 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +6 +6 +Connector_TE-Connectivity +TE_826576-7_1x07_P3.96mm_Vertical +TE, 826576-7, 7 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +7 +7 +Connector_TE-Connectivity +TE_826576-8_1x08_P3.96mm_Vertical +TE, 826576-8, 8 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +8 +8 +Connector_TE-Connectivity +TE_826576-9_1x09_P3.96mm_Vertical +TE, 826576-9, 9 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +9 +9 +Connector_TE-Connectivity +TE_2834006-1_1x01_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 1-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +2 +1 +Connector_TE-Connectivity +TE_2834006-2_1x02_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 2-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +4 +2 +Connector_TE-Connectivity +TE_2834006-3_1x03_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 3-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +6 +3 +Connector_TE-Connectivity +TE_2834006-4_1x04_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 4-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +8 +4 +Connector_TE-Connectivity +TE_2834006-5_1x05_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 5-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +10 +5 +Connector_TE-Connectivity +TE_5767171-1_2x19_P0.635mm_Vertical +PCB Mount Receptacle, Vertical, Board-to-Board, 38 Position, 24.003mm / .64mm [.945in] Centerline, Header Only, Palladium Nickel (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F5767171%7FB2%7Fpdf%7FEnglish%7FENG_CD_5767171_B2.pdf%7F5767171-1#page=2) +mictor38 receptacle board-to-board +0 +43 +39 +Connector_TE-Connectivity +TE_AMPSEAL_1-776087-x_3Rows_23_P0.4mm_Horizontal +Connector +TE 776087 +0 +23 +23 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770182-x_3x03_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770182-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +9 +9 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770186-x_3x04_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770186-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +12 +12 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770190-x_3x05_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770190-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +15 +15 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770621-x_2x06_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770621-x, 6 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +12 +12 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770858-x_2x05_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770858-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +10 +10 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770866-x_1x02_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770866-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +2 +2 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770870-x_1x03_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770870-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +3 +3 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770874-x_2x02_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770874-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +4 +4 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770875-x_2x03_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770875-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +6 +6 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770966-x_1x02_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770966-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +2 +2 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770967-x_1x03_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770967-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +3 +3 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770968-x_2x02_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770968-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +4 +4 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770969-x_2x03_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770969-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +6 +6 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770970-x_2x04_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770970-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +8 +8 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770971-x_2x05_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770971-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +10 +10 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770972-x_2x06_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770972-x, 6 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +12 +12 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770973-x_2x07_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770973-x, 7 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +14 +14 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770974-x_2x08_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770974-x, 8 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +16 +16 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794067-x_2x07_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794067-x, 7 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +14 +14 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794068-x_2x08_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794068-x, 8 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +16 +16 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794069-x_2x09_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794069-x, 9 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +18 +18 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794070-x_2x10_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794070-x, 10 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +20 +20 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794071-x_2x11_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794071-x, 11 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +22 +22 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794072-x_2x12_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794072-x, 12 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +24 +24 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794073-x_2x04_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794073-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +8 +8 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794105-x_2x09_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794105-x, 9 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +18 +18 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794106-x_2x10_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794106-x, 10 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +20 +20 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794107-x_2x11_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794107-x, 11 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +22 +22 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794108-x_2x12_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794108-x, 12 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +24 +24 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794374-x_1x01_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794374-x, 1 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +1 +1 +Connector_TE-Connectivity +TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F350211%7FU5%7Fpdf%7FEnglish%7FENG_CD_350211_U5.pdf%7F350211-1 +connector TE MATE-N-LOK top entry ATA PATA IDE 5.25 inch floppy drive power +0 +4 +4 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-0_2x05_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 10 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-0 8-215079-10 +0 +10 +10 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-2_2x06_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 12 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-2 8-215079-12 +0 +12 +12 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-4_2x07_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 14 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-4 8-215079-14 +0 +14 +14 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-6_2x08_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 16 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-6 8-215079-16 +0 +16 +16 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-8_2x09_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 18 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-8 8-215079-18 +0 +18 +18 +Connector_TE-Connectivity +TE_Micro-MaTch_2-215079-0_2x10_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 20 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 2-215079-0 9-215079-20 +0 +20 +20 +Connector_TE-Connectivity +TE_Micro-MaTch_215079-4_2x02_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 4 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 215079-4 7-215079-4 +0 +4 +4 +Connector_TE-Connectivity +TE_Micro-MaTch_215079-6_2x03_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 6 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 215079-6 7-215079-6 +0 +6 +6 +Connector_TE-Connectivity +TE_Micro-MaTch_215079-8_2x04_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 8 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 215079-8 7-215079-8 +0 +8 +8 +Connector_TE-Connectivity +TE_T4041037031-000_M8_03_Socket_Straight +Shielded M8 socket 3 ways connector panel, straight and rear mount (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7FT404103010X000%7FA%7Fpdf%7FEnglish%7FENG_CD_T404103010X000_A.pdf%7FT4041037041-000) +three-pin M8 +0 +5 +4 +Connector_TE-Connectivity +TE_T4041037041-000_M8_04_Socket_Straight +Shielded M8 socket 4 ways connector panel, straight and rear mount (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7FT404103010X000%7FA%7Fpdf%7FEnglish%7FENG_CD_T404103010X000_A.pdf%7FT4041037041-000) +four-pin M8 +0 +6 +5 +Connector_USB +USB3_A_Molex_48393-001 +USB 3.0, type A, right angle, http://www.molex.com/pdm_docs/sd/483930003_sd.pdf +USB 3.0 type A right angle +0 +13 +10 +Connector_USB +USB3_A_Molex_48406-0001_Horizontal_Stacked +USB 3.0, type A, right angle, stacked (https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/484/48406/484060001_sd.pdf) +USB 3.0 type A right angle stacked dual +0 +22 +19 +Connector_USB +USB3_A_Plug_Wuerth_692112030100_Horizontal +USB 3.0 Type A SMT Plug, Horizontal, https://www.we-online.com/components/products/datasheet/692112030100.pdf +usb A plug horizontal +0 +11 +10 +Connector_USB +USB3_A_Receptacle_Wuerth_692122030100 +USB 3.0, type A, right angle (https://www.we-online.com/katalog/datasheet/692122030100.pdf) +USB 3.0 type A right angle Würth +0 +11 +10 +Connector_USB +USB3_Micro-B_Connfly_DS1104-01 +Micro USB B receptable with flange, bottom-mount, SMD, right-angle (http://en.connfly.com/static/upload/file/pdf/DS1104-01.pdf) +USB 3.0 Micro B SMD right angle +0 +16 +11 +Connector_USB +USB_A_CNCTech_1001-011-01101_Horizontal +USB type A Plug, Horizontal, http://cnctech.us/pdfs/1001-011-01101.pdf +USB-A +0 +6 +5 +Connector_USB +USB_A_CONNFLY_DS1095-WNR0 +http://www.connfly.com/userfiles/image/UpLoadFile/File/2013/5/6/DS1095.pdf +USB-A receptacle horizontal through-hole +0 +6 +5 +Connector_USB +USB_A_CUI_UJ2-ADH-TH_Horizontal_Stacked +USB-A two stacked horizontal receptacle, through-hole (https://www.cuidevices.com/product/resource/uj2-adh-th.pdf) +USB-A CUI stacked horizontal through-hole +0 +12 +9 +Connector_USB +USB_A_Molex_48037-2200_Horizontal +USB type A Plug, Horizontal, https://www.molex.com/pdm_docs/sd/480372200_sd.pdf +USB-A +0 +6 +5 +Connector_USB +USB_A_Molex_67643_Horizontal +USB type A, Horizontal, https://www.molex.com/pdm_docs/sd/676433910_sd.pdf +USB_A Female Connector receptacle +0 +6 +5 +Connector_USB +USB_A_Molex_105057_Vertical +https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf +USB A Vertical +0 +7 +5 +Connector_USB +USB_A_Receptacle_GCT_USB1046 +GCT USB1046, USB Type A, https://gct.co/files/drawings/usb1046.pdf +USB SMD Type-A Receptacle Right Angle +0 +8 +5 +Connector_USB +USB_A_Stewart_SS-52100-001_Horizontal +USB A connector https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52100-001.pdf +USB_A Female Connector receptacle +0 +6 +5 +Connector_USB +USB_A_TE_292303-7_Horizontal +USB type A, Horizontal, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=292303&DocType=Customer+Drawing&DocLang=English +USB_A Female Connector receptacle +0 +6 +5 +Connector_USB +USB_A_Wuerth_614004134726_Horizontal +USB A connector https://www.we-online.com/catalog/datasheet/614004134726.pdf +USB_A Female Connector receptacle +0 +8 +5 +Connector_USB +USB_A_Wuerth_61400826021_Horizontal_Stacked +Stacked USB A connector http://katalog.we-online.de/em/datasheet/61400826021.pdf +Wuerth stacked USB_A +0 +12 +9 +Connector_USB +USB_B_Amphenol_MUSB-D511_Vertical_Rugged +A,phenol MUSB_D511, USB B female connector, straight, rugged, https://www.amphenolcanada.com/ProductSearch/drawings/AC/MUSBD511XX.pdf +USB_B_MUSB_Straight female connector straight rugged MUSB D511 +0 +6 +5 +Connector_USB +USB_B_Lumberg_2411_02_Horizontal +USB 2.0 receptacle type B, horizontal version, through-hole, https://downloads.lumberg.com/datenblaetter/en/2411_02.pdf +USB B receptacle horizontal through-hole +0 +6 +5 +Connector_USB +USB_B_OST_USB-B1HSxx_Horizontal +USB B receptacle, Horizontal, through-hole, http://www.on-shore.com/wp-content/uploads/2015/09/usb-b1hsxx.pdf +USB-B receptacle horizontal through-hole +0 +6 +5 +Connector_USB +USB_B_TE_5787834_Vertical +http://www.mouser.com/ds/2/418/NG_CD_5787834_A4-669110.pdf +USB_B USB B vertical female connector +0 +6 +5 +Connector_USB +USB_C_Plug_JAE_DX07P024AJ1 +Universal Serial Bus (USB) Shielded I/O Plug, Type C, Right Angle, Surface Mount, https://www.jae.com/en/searchfilter/?topics_keyword=DX07P024AJ1&mainItemSelect=1 +USB Type-C Plug Edge Mount +0 +30 +25 +Connector_USB +USB_C_Plug_Molex_105444 +Universal Serial Bus (USB) Shielded I/O Plug, Type C, Right Angle, Surface Mount, http://www.molex.com/pdm_docs/sd/1054440001_sd.pdf +USB Type-C Plug Edge Mount +0 +24 +23 +Connector_USB +USB_C_Plug_ShenzhenJingTuoJin_918-118A2021Y40002_Vertical +Low-profile vertical USB 2.0 Type C Plug Shenzhen Jing Tuo Jin Electronics Co 918-118A2021Y40002 ( https://datasheet.lcsc.com/lcsc/1912111437_Jing-Extension-of-the-Electronic-Co--918-118A2021Y40002_C399939.pdf ) also compatible with Korean HRO Parts Elec TYPE-C-31-G-06 +type-c usb2 +0 +18 +17 +Connector_USB +USB_C_Receptacle_Amphenol_12401548E4-2A +USB TYPE C, RA RCPT PCB, Hybrid, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401548E4%7e2A +USB C Type-C Receptacle Hybrid +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401548E4-2A_CircularHoles +USB TYPE C, RA RCPT PCB, Hybrid, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401548E4%7e2A +USB C Type-C Receptacle Hybrid +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401610E4-2A +USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401610E4-2A_CircularHoles +USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_CNCTech_C-ARA1-AK51X +USB Type-C 3.0 Receptacle, 24-pin, right angle (source: https://www.cnctech.us/pdfs/C-ARA1-AK512.pdf) +USB C Type-C Receptacle Hybrid CNCTech C-ARA1-AK51X +0 +32 +25 +Connector_USB +USB_C_Receptacle_G-Switch_GT-USB-7010ASV +USB Type C, right-angle, SMT, https://datasheet.lcsc.com/lcsc/2204071530_G-Switch-GT-USB-7010ASV_C2988369.pdf +USB C Type-C Receptacle SMD +0 +20 +17 +Connector_USB +USB_C_Receptacle_G-Switch_GT-USB-7025 +USB Type C, right-angle, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2312191005_G-Switch-GT-USB-7025_C963213.pdf +USB C Type-C Receptacle SMD +0 +22 +18 +Connector_USB +USB_C_Receptacle_G-Switch_GT-USB-7051x +USB Type C, vertical, SMT, https://datasheet.lcsc.com/lcsc/2108072030_G-Switch-GT-USB-7051A_C2843970.pdf +USB C Type-C Receptacle SMD GT-USB-7051A GT-USB-7051B +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4085 +USB 2.0 Type C Receptacle, https://gct.co/Files/Drawings/USB4085.pdf +USB Type-C Receptacle Through-hole Right angle +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal +USB 2.0 Type C Receptacle, GCT, 16P, top mounted, horizontal, 5A: https://gct.co/files/drawings/usb4105.pdf +USB C Type-C Receptacle SMD USB 2.0 16P 16C USB4105-15-A USB4105-15-A-060 USB4105-15-A-120 USB4105-GF-A USB4105-GF-A-060 USB4105-GF-A-120 +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4110 +USB 2.0 Type C Receptacle, GCT, 16P, top mounted, horizontal, 5A, https://gct.co/files/drawings/usb4110.pdf +USB 2.0 C Type-C Receptacle SMD 16P 16C USB4110-GF-A +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4115-03-C +USB TYPE C, VERT RCPT PCB, SMT, https://gct.co/files/drawings/usb4115.pdf +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_GCT_USB4125-xx-x-0190_6P_TopMnt_Horizontal +USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A, 1.9mm stake: https://gct.co/files/drawings/usb4125.pdf +USB C Type-C receptacle power-only charging-only 6P 6C right angled +0 +10 +7 +Connector_USB +USB_C_Receptacle_GCT_USB4125-xx-x_6P_TopMnt_Horizontal +USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A, 1mm stake: https://gct.co/files/drawings/usb4125.pdf +USB C Type-C receptacle power-only charging-only 6P 6C right angled +0 +10 +7 +Connector_USB +USB_C_Receptacle_GCT_USB4135-GF-A_6P_TopMnt_Horizontal +USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A: https://gct.co/files/drawings/usb4135.pdf +USB C Type-C Receptacle SMD USB Power-only Charging-only 6P 6C USB4135-GF-A +0 +10 +7 +Connector_USB +USB_C_Receptacle_HCTL_HC-TYPE-C-16P-01A +16-pin USB-C receptacle, USB2.0 and PD, 5A VBUS rating, https://datasheet.lcsc.com/lcsc/2211161000_HCTL-HC-TYPE-C-16P-01A_C2894897.pdf +usb usb-c 2.0 pd +0 +20 +17 +Connector_USB +USB_C_Receptacle_HRO_TYPE-C-31-M-12 +USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf +usb usb-c 2.0 pd +0 +20 +17 +Connector_USB +USB_C_Receptacle_JAE_DX07S016JA1R1500 +USB TYPE C, USB 2.0, SMT, https://www.jae.com/en/connectors/series/detail/product/id=91780 +USB C Type-C Receptacle SMD USB 2.0 +0 +22 +17 +Connector_USB +USB_C_Receptacle_JAE_DX07S024WJ1R350 +http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ117219.pdf +USB C Type-C Receptacle SMD +0 +30 +25 +Connector_USB +USB_C_Receptacle_JAE_DX07S024WJ3R400 +USB TYPE C, VERT RCPT PCB, SMT, http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ117928.pdf +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Molex_105450-0101 +USB 3.0 3.1 3.2 4.0 Type-C receptable, through-hole mount, SMD, right-angle (https://www.molex.com/pdm_docs/sd/1054500101_sd.pdf) +USB C Type-C USB3 receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Palconn_UTC16-G +http://www.palpilot.com/wp-content/uploads/2017/05/UTC027-GKN-OR-Rev-A.pdf +USB C Type-C Receptacle USB2.0 +0 +20 +17 +Connector_USB +USB_C_Receptacle_XKB_U262-16XN-4BVC11 +USB Type C, right-angle, SMT, https://datasheet.lcsc.com/szlcsc/1811141824_XKB-Enterprise-U262-161N-4BVC11_C319148.pdf +USB C Type-C Receptacle SMD +0 +20 +17 +Connector_USB +USB_Micro-AB_Molex_47590-0001 +Micro USB AB receptable, right-angle inverted (https://www.molex.com/pdm_docs/sd/475900001_sd.pdf) +Micro AB USB SMD +0 +14 +6 +Connector_USB +USB_Micro-B_Amphenol_10103594-0001LF_Horizontal +Micro USB Type B 10103594-0001LF, http://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10103594.pdf +USB USB_B USB_micro USB_OTG +0 +17 +6 +Connector_USB +USB_Micro-B_Amphenol_10104110_Horizontal +USB Micro-B, horizontal, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10104110.pdf +USB Micro B horizontal +0 +9 +6 +Connector_USB +USB_Micro-B_Amphenol_10118193-0001LF_Horizontal +USB Micro-B receptacle, horizontal, SMD, 10118193, with flange, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118193.pdf +USB Micro-B horizontal SMD +0 +11 +6 +Connector_USB +USB_Micro-B_Amphenol_10118193-0002LF_Horizontal +USB Micro-B receptacle, horizontal, SMD, 10118193, without flange, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118193.pdf +USB Micro-B horizontal SMD +0 +11 +6 +Connector_USB +USB_Micro-B_Amphenol_10118194_Horizontal +USB Micro-B receptacle, horizontal, SMD, 10118194, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118194.pdf +USB Micro B horizontal SMD +0 +17 +6 +Connector_USB +USB_Micro-B_GCT_USB3076-30-A +GCT Micro USB https://gct.co/files/drawings/usb3076.pdf +Micro-USB SMD Typ-B GCT +0 +11 +6 +Connector_USB +USB_Micro-B_Molex-105017-0001 +http://www.molex.com/pdm_docs/sd/1050170001_sd.pdf +Micro-USB SMD Typ-B +0 +13 +6 +Connector_USB +USB_Micro-B_Molex-105133-0001 +Molex Vertical Micro USB Typ-B (http://www.molex.com/pdm_docs/sd/1051330001_sd.pdf) +Micro-USB SMD Typ-B Vertical +0 +8 +6 +Connector_USB +USB_Micro-B_Molex-105133-0031 +Molex Vertical Micro USB Typ-B (http://www.molex.com/pdm_docs/sd/1051330031_sd.pdf) +Micro-USB SMD Typ-B Vertical +0 +8 +6 +Connector_USB +USB_Micro-B_Molex_47346-0001 +Micro USB B receptable with flange, bottom-mount, SMD, right-angle (http://www.molex.com/pdm_docs/sd/473460001_sd.pdf) +Micro B USB SMD +0 +11 +6 +Connector_USB +USB_Micro-B_Technik_TWP-4002D-H3 +Dustproof Micro USB Type B TWP-4002D-H3, https://www.technik.com.hk/images/pdf_product/WP4002D-H3-A_2.0.pdf +USB Micro B horizontal dustproof waterproof IP67 +0 +7 +6 +Connector_USB +USB_Micro-B_Wuerth_614105150721_Vertical +USB Micro-B receptacle, through-hole, vertical, http://katalog.we-online.de/em/datasheet/614105150721.pdf +usb micro receptacle vertical +0 +7 +6 +Connector_USB +USB_Micro-B_Wuerth_614105150721_Vertical_CircularHoles +USB Micro-B receptacle, through-hole, vertical, http://katalog.we-online.de/em/datasheet/614105150721.pdf +usb micro receptacle vertical +0 +7 +6 +Connector_USB +USB_Micro-B_Wuerth_629105150521 +USB Micro-B receptacle, http://www.mouser.com/ds/2/445/629105150521-469306.pdf +usb micro receptacle +0 +9 +6 +Connector_USB +USB_Micro-B_Wuerth_629105150521_CircularHoles +USB Micro-B receptacle, http://www.mouser.com/ds/2/445/629105150521-469306.pdf +usb micro receptacle +0 +9 +6 +Connector_USB +USB_Micro-B_XKB_U254-051T-4BH83-F1S +XKB Connectivity, USB Micro-B, right-angle, SMT, https://datasheet.lcsc.com/lcsc/2206091745_XKB-Connectivity-U254-051T-4BH83-F1S_C397452.pdf +USB Micro-B Receptacle SMD +0 +11 +6 +Connector_USB +USB_Mini-B_AdamTech_MUSB-B5-S-VT-TSMT-1_SMD_Vertical +http://www.adam-tech.com/upload/MUSB-B5-S-VT-TSMT-1.pdf +USB Mini-B +0 +7 +6 +Connector_USB +USB_Mini-B_Lumberg_2486_01_Horizontal +USB Mini-B 5-pin SMD connector, http://downloads.lumberg.com/datenblaetter/en/2486_01.pdf +USB USB_B USB_Mini connector +0 +9 +6 +Connector_USB +USB_Mini-B_Tensility_54-00023_Vertical +http://www.tensility.com/pdffiles/54-00023.pdf +usb mini receptacle vertical +0 +7 +6 +Connector_USB +USB_Mini-B_Tensility_54-00023_Vertical_CircularHoles +http://www.tensility.com/pdffiles/54-00023.pdf +usb mini receptacle vertical +0 +7 +6 +Connector_USB +USB_Mini-B_Wuerth_65100516121_Horizontal +Mini USB 2.0 Type B SMT Horizontal 5 Contacts (https://katalog.we-online.de/em/datasheet/65100516121.pdf) +Mini USB 2.0 Type B +0 +9 +6 +Connector_Video +DVI-D_Molex_74320-4004_Horizontal +DVI-D Dual Link connector, horizontal, 24 pins, Molex P/N 74320-4004, https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/743/74320/743204004_sd.pdf?inline +dvi right angle +0 +26 +25 +Connector_Video +DVI-I_Molex_74320-1004_Horizontal +DVI-I Dual Link connector, horizontal, 29 pins, Molex P/N 74320-1004, https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/743/74320/743201004_sd.pdf?inline +dvi right angle +0 +32 +30 +Connector_Video +HDMI_A_Amphenol_10029449-x01xLF_Horizontal +HDMI Type A connector, Amphenol 10029449-001TLF 10029449-001RLF 10029449-101TLF 10029449-101RLF, Right Angle(https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10029449.pdf) +hdmi right angle +0 +23 +20 +Connector_Video +HDMI_A_Contact_Technology_HDMI-19APL2_Horizontal +HDMI Contact Technology Type A http://www.contactswitch.com/en/download.aspx?id=1449 +HDMI Contact Technology Type A +0 +23 +20 +Connector_Video +HDMI_A_Kycon_KDMIX-SL1-NS-WS-B15_VerticalRightAngle +HDMI, Type A, Kycon KDMIX-SL1-NS-WS-B15, Vertical Right Angle, http://www.kycon.com/Pub_Eng_Draw/KDMIX-SL1-NS-WS-B15.pdf +hdmi type a +0 +23 +20 +Connector_Video +HDMI_A_Molex_208658-1001_Horizontal +HDMI Molex Type A https://www.molex.com/pdm_docs/sd/2086581001_sd.pdf +HDMI Molex Type A +0 +23 +20 +Connector_Video +HDMI_Micro-D_Molex_46765-0x01 +HDMI, Micro, Type D, SMD, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) +hdmi micro type d right angle smd +0 +23 +20 +Connector_Video +HDMI_Micro-D_Molex_46765-1x01 +HDMI, Micro, Type D, THT, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) +hdmi micro type d right angle tht +0 +23 +20 +Connector_Video +HDMI_Micro-D_Molex_46765-2x0x +HDMI, Micro, Type D, THT/SMD hybrid, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) +hdmi micro type d right angle tht smd hybrid +0 +23 +20 +Connector_Wago +Wago_734-132_1x02_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-132 , 2 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +2 +2 +Connector_Wago +Wago_734-133_1x03_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-133 , 3 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +3 +3 +Connector_Wago +Wago_734-134_1x04_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-134 , 4 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +4 +4 +Connector_Wago +Wago_734-135_1x05_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-135 , 5 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +5 +5 +Connector_Wago +Wago_734-136_1x06_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-136 , 6 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +6 +6 +Connector_Wago +Wago_734-137_1x07_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-137 , 7 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +7 +7 +Connector_Wago +Wago_734-138_1x08_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-138 , 8 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +8 +8 +Connector_Wago +Wago_734-139_1x09_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-139 , 9 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +9 +9 +Connector_Wago +Wago_734-140_1x10_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-140 , 10 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +10 +10 +Connector_Wago +Wago_734-141_1x11_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-141 , 11 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +11 +11 +Connector_Wago +Wago_734-142_1x12_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-142 , 12 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +12 +12 +Connector_Wago +Wago_734-143_1x13_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-143 , 13 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +13 +13 +Connector_Wago +Wago_734-144_1x14_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-144 , 14 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +14 +14 +Connector_Wago +Wago_734-146_1x16_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-146 , 16 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +16 +16 +Connector_Wago +Wago_734-148_1x18_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-148 , 18 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +18 +18 +Connector_Wago +Wago_734-150_1x20_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-150 , 20 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +20 +20 +Connector_Wago +Wago_734-154_1x24_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-154 , 24 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +24 +24 +Connector_Wago +Wago_734-162_1x02_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-162 , 2 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +2 +2 +Connector_Wago +Wago_734-163_1x03_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-163 , 3 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +3 +3 +Connector_Wago +Wago_734-164_1x04_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-164 , 4 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +4 +4 +Connector_Wago +Wago_734-165_1x05_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-165 , 5 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +5 +5 +Connector_Wago +Wago_734-166_1x06_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-166 , 6 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +6 +6 +Connector_Wago +Wago_734-167_1x07_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-167 , 7 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +7 +7 +Connector_Wago +Wago_734-168_1x08_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-168 , 8 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +8 +8 +Connector_Wago +Wago_734-169_1x09_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-169 , 9 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +9 +9 +Connector_Wago +Wago_734-170_1x10_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-170 , 10 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +10 +10 +Connector_Wago +Wago_734-171_1x11_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-171 , 11 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +11 +11 +Connector_Wago +Wago_734-172_1x12_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-172 , 12 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +12 +12 +Connector_Wago +Wago_734-173_1x13_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-173 , 13 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +13 +13 +Connector_Wago +Wago_734-174_1x14_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-174 , 14 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +14 +14 +Connector_Wago +Wago_734-176_1x16_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-176 , 16 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +16 +16 +Connector_Wago +Wago_734-178_1x18_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-178 , 18 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +18 +18 +Connector_Wago +Wago_734-180_1x20_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-180 , 20 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +20 +20 +Connector_Wago +Wago_734-184_1x24_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-184 , 24 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +24 +24 +Connector_Wire +SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm +Soldered wire connection, for a single 0.1 mm² wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.1 mm² wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.1 mm² wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 2 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 3 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 4 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 5 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 6 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm +Soldered wire connection, for a single 0.5 mm² wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.5 mm² wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.5 mm² wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm +Soldered wire connection, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 2 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 2 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 3 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 3 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 4 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 4 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 5 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 5 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 6 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 6 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm +Soldered wire connection, for a single 0.15 mm² wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.15 mm² wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.15 mm² wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 2 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 3 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 4 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 5 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 6 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm +Soldered wire connection, for a single 0.25 mm² wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.25 mm² wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.25 mm² wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm +Soldered wire connection, for a single 0.25 mm² wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.25 mm² wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.25 mm² wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 2 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 2 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 3 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 3 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 4 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 4 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 5 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 5 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 6 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 6 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm +Soldered wire connection, for a single 0.75 mm² wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.75 mm² wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.75 mm² wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm +Soldered wire connection, for a single 0.75 mm² wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.75 mm² wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.75 mm² wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 2 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 2 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 3 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 3 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 4 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 4 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 5 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 5 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 6 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 6 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm +Soldered wire connection, for a single 0.127 mm² wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.127 mm² wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.127 mm² wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 2 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 3 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 4 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 5 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 6 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm +Soldered wire connection, for a single 1.5 mm² wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for a single 1.5 mm² wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1.5 mm² wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm +Soldered wire connection, for a single 1.5 mm² wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for a single 1.5 mm² wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1.5 mm² wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 2 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 2 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 3 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 3 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 4 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 4 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 5 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 5 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 6 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 6 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm +Soldered wire connection, for a single 1 mm² wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for a single 1 mm² wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1 mm² wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm +Soldered wire connection, for a single 1 mm² wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for a single 1 mm² wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1 mm² wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 2 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 2 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 3 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 3 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 4 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 4 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 5 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 5 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 6 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 6 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm +Soldered wire connection, for a single 2.5 mm² wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for a single 2.5 mm² wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 2.5 mm² wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm +Soldered wire connection, for a single 2.5 mm² wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for a single 2.5 mm² wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 2.5 mm² wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 2 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 2 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 3 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 3 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 4 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 4 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 5 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 5 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 6 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 6 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2sqmm_1x01_D2mm_OD3.9mm +Soldered wire connection, for a single 2 mm² wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +1 +1 +Connector_Wire +SolderWire-2sqmm_1x01_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for a single 2 mm² wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2sqmm_1x01_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 2 mm² wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +2 +2 +Connector_Wire +SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 3 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +3 +3 +Connector_Wire +SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 4 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +4 +4 +Connector_Wire +SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 5 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +5 +5 +Connector_Wire +SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 6 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +6 +6 +Connector_Wire +SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWirePad_1x01_SMD_1x2mm +Wire Pad, Square, SMD Pad, 1mm x 2mm, +MesurementPoint Square SMDPad 1mmx2mm +0 +1 +1 +Connector_Wire +SolderWirePad_1x01_SMD_5x10mm +Wire Pad, Square, SMD Pad, 5mm x 10mm, +MesurementPoint Square SMDPad 5mmx10mm +0 +1 +1 +Connector_Wuerth +Wuerth_WR-PHD_613004216921_Large_2x02_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613004216921 (https://katalog.we-online.de/em/datasheet/613004216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613004216921 +0 +4 +4 +Connector_Wuerth +Wuerth_WR-PHD_613006216921_Large_2x03_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613006216921 (https://katalog.we-online.de/em/datasheet/613006216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613006216921 +0 +6 +6 +Connector_Wuerth +Wuerth_WR-PHD_613008216921_Large_2x04_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613008216921 (https://katalog.we-online.de/em/datasheet/613008216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613008216921 +0 +8 +8 +Connector_Wuerth +Wuerth_WR-PHD_613010216921_Large_2x05_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613010216921 (https://katalog.we-online.de/em/datasheet/613010216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613010216921 +0 +10 +10 +Connector_Wuerth +Wuerth_WR-PHD_613012216921_Large_2x06_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613012216921 (https://katalog.we-online.de/em/datasheet/613012216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613012216921 +0 +12 +12 +Connector_Wuerth +Wuerth_WR-PHD_613016216921_Large_2x08_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613016216921 (https://katalog.we-online.de/em/datasheet/613016216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613016216921 +0 +16 +16 +Connector_Wuerth +Wuerth_WR-PHD_613018216921_Large_2x09_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613018216921 (https://katalog.we-online.de/em/datasheet/613018216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613018216921 +0 +18 +18 +Connector_Wuerth +Wuerth_WR-PHD_613020216921_Large_2x10_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613020216921 (https://katalog.we-online.de/em/datasheet/613020216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613020216921 +0 +20 +20 +Connector_Wuerth +Wuerth_WR-PHD_613022216921_Large_2x11_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613022216921 (https://katalog.we-online.de/em/datasheet/613022216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613022216921 +0 +22 +22 +Connector_Wuerth +Wuerth_WR-PHD_613024216921_Large_2x12_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613024216921 (https://katalog.we-online.de/em/datasheet/613024216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613024216921 +0 +24 +24 +Connector_Wuerth +Wuerth_WR-PHD_613026216921_Large_2x13_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613026216921 (https://katalog.we-online.de/em/datasheet/613026216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613026216921 +0 +26 +26 +Connector_Wuerth +Wuerth_WR-PHD_613032216921_Large_2x16_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613032216921 (https://katalog.we-online.de/em/datasheet/613032216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613032216921 +0 +32 +32 +Connector_Wuerth +Wuerth_WR-PHD_613034216921_Large_2x17_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613034216921 (https://katalog.we-online.de/em/datasheet/613034216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613034216921 +0 +34 +34 +Connector_Wuerth +Wuerth_WR-PHD_610004243021_SMD_2x02_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610004243021 (https://katalog.we-online.de/em/datasheet/610004243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610004243021 +0 +4 +4 +Connector_Wuerth +Wuerth_WR-PHD_610006243021_SMD_2x03_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610006243021 (https://katalog.we-online.de/em/datasheet/610006243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610006243021 +0 +6 +6 +Connector_Wuerth +Wuerth_WR-PHD_610008243021_SMD_2x04_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610008243021 (https://katalog.we-online.de/em/datasheet/610008243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610008243021 +0 +8 +8 +Connector_Wuerth +Wuerth_WR-PHD_610010243021_SMD_2x05_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610010243021 (https://katalog.we-online.de/em/datasheet/610010243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610010243021 +0 +10 +10 +Connector_Wuerth +Wuerth_WR-PHD_610012243021_SMD_2x06_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610012243021 (https://katalog.we-online.de/em/datasheet/610012243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610012243021 +0 +12 +12 +Connector_Wuerth +Wuerth_WR-PHD_610016243021_SMD_2x08_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610016243021 (https://katalog.we-online.de/em/datasheet/610016243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610016243021 +0 +16 +16 +Connector_Wuerth +Wuerth_WR-PHD_610018243021_SMD_2x09_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610018243021 (https://katalog.we-online.de/em/datasheet/610018243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610018243021 +0 +18 +18 +Connector_Wuerth +Wuerth_WR-PHD_610020243021_SMD_2x10_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610020243021 (https://katalog.we-online.de/em/datasheet/610020243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610020243021 +0 +20 +20 +Connector_Wuerth +Wuerth_WR-PHD_610022243021_SMD_2x11_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610022243021 (https://katalog.we-online.de/em/datasheet/610022243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610022243021 +0 +22 +22 +Connector_Wuerth +Wuerth_WR-PHD_610024243021_SMD_2x12_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610024243021 (https://katalog.we-online.de/em/datasheet/610024243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610024243021 +0 +24 +24 +Connector_Wuerth +Wuerth_WR-PHD_610026243021_SMD_2x13_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610026243021 (https://katalog.we-online.de/em/datasheet/610026243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610026243021 +0 +26 +26 +Connector_Wuerth +Wuerth_WR-PHD_610032243021_SMD_2x16_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610032243021 (https://katalog.we-online.de/em/datasheet/610032243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610032243021 +0 +32 +32 +Connector_Wuerth +Wuerth_WR-PHD_610034243021_SMD_2x17_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610034243021 (https://katalog.we-online.de/em/datasheet/610034243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610034243021 +0 +34 +34 +Connector_Wuerth +Wuerth_WR-PHD_61300425721_Standard_2x02_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61300425721 (https://katalog.we-online.de/em/datasheet/61300425721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61300425721 +0 +4 +4 +Connector_Wuerth +Wuerth_WR-PHD_61300625721_Standard_2x03_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61300625721 (https://katalog.we-online.de/em/datasheet/61300625721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61300625721 +0 +6 +6 +Connector_Wuerth +Wuerth_WR-PHD_61300825721_Standard_2x04_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61300825721 (https://katalog.we-online.de/em/datasheet/61300825721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61300825721 +0 +8 +8 +Connector_Wuerth +Wuerth_WR-PHD_61301025721_Standard_2x05_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61301025721 (https://katalog.we-online.de/em/datasheet/61301025721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61301025721 +0 +10 +10 +Connector_Wuerth +Wuerth_WR-PHD_61301225721_Standard_2x06_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61301225721 (https://katalog.we-online.de/em/datasheet/61301225721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61301225721 +0 +12 +12 +Connector_Wuerth +Wuerth_WR-PHD_61301625721_Standard_2x08_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61301625721 (https://katalog.we-online.de/em/datasheet/61301625721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61301625721 +0 +16 +16 +Connector_Wuerth +Wuerth_WR-PHD_61302025721_Standard_2x10_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61302025721 (https://katalog.we-online.de/em/datasheet/61302025721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61302025721 +0 +20 +20 +Connector_Wuerth +Wuerth_WR-PHD_61302425721_Standard_2x12_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61302425721 (https://katalog.we-online.de/em/datasheet/61302425721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61302425721 +0 +24 +24 +Connector_Wuerth +Wuerth_WR-PHD_61302625721_Standard_2x13_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61302625721 (https://katalog.we-online.de/em/datasheet/61302625721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61302625721 +0 +26 +26 +Connector_Wuerth +Wuerth_WR-PHD_61303225721_Standard_2x16_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61303225721 (https://katalog.we-online.de/em/datasheet/61303225721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61303225721 +0 +32 +32 +Connector_Wuerth +Wuerth_WR-PHD_61303425721_Standard_2x17_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61303425721 (https://katalog.we-online.de/em/datasheet/61303425721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61303425721 +0 +34 +34 +Connector_Wuerth +Wuerth_WR-WTB_64800211622_1x02_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800211622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +2 +2 +Connector_Wuerth +Wuerth_WR-WTB_64800311622_1x03_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800311622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +3 +3 +Connector_Wuerth +Wuerth_WR-WTB_64800411622_1x04_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800411622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +4 +4 +Connector_Wuerth +Wuerth_WR-WTB_64800511622_1x05_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800511622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +5 +5 +Connector_Wuerth +Wuerth_WR-WTB_64800611622_1x06_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800611622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +6 +6 +Connector_Wuerth +Wuerth_WR-WTB_64800711622_1x07_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800711622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +7 +7 +Connector_Wuerth +Wuerth_WR-WTB_64800811622_1x08_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800811622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +8 +8 +Connector_Wuerth +Wuerth_WR-WTB_64800911622_1x09_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800911622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +9 +9 +Connector_Wuerth +Wuerth_WR-WTB_64801011622_1x10_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64801011622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +10 +10 +Converter_ACDC +Converter_ACDC_CUI_PBO-3-Sxx_THT_Vertical +ACDC-Converter, 3W, CUI PBO-3, THT https://www.cui.com/product/resource/pbo-3.pdf +Converter AC-DC THT Vertical +0 +6 +6 +Converter_ACDC +Converter_ACDC_Hahn_HS-400xx_THT +ACDC-Converter, 3W, Hahn-HS-400xx, THT https://www.schukat.com/schukat/schukat_cms_de.nsf/index/FrameView?OpenDocument&art=HS40009&wg=M7942 +Hahn ACDC-Converter THT +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-2Mxx +ACDC-Converter, 2W, Hi-Link, HLK-2Mxx, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%972W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%912W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%AF%B4%E6%98%8E%E4%B9%A6V2.6.pdf) +ACDC-Converter 2W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-5Mxx +ACDC-Converter, 5W, Hi-Link, HLK-5Mxx, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%975W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%915W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V2.8.pdf) +ACDC-Converter 5W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-10Mxx +ACDC-Converter, 10W, Hi-Link, HLK-10Mxx, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9710W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%9110W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V1.8.pdf) +ACDC-Converter 10W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-12MxxA +ACDC-Converter, 12W, Hi-Link, HLK-12MxxA, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9712W%E7%B3%BB%E5%88%97/1/12W%E7%B3%BB%E5%88%97%E8%A7%84%E6%A0%BC%E4%B9%A6.pdf) +ACDC-Converter 12W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-20Mxx +ACDC-Converter, 20W, Hi-Link, HLK-20Mxx, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9720W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%9120W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V1.6.pdf) +ACDC-Converter 20W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-30Mxx +ACDC-Converter, 30W, Hi-Link, HLK-30Mxx, HLK-30MxxC, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9730W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%9130W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V1.6.pdf) +ACDC-Converter 30W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-PMxx +ACDC-Converter, 3W, Hi-Link, HLK-PMxx, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%973W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%913W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V2.8.pdf) +ACDC-Converter 3W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-02-xx_SMD +ACDC-Converter, 3W, Meanwell, IRM-02, SMD, https://www.meanwell.com/Upload/PDF/IRM-02/IRM-02-SPEC.PDF +ACDC-Converter 3W +0 +14 +14 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-02-xx_THT +ACDC-Converter, 2W, Meanwell, IRM-02, THT, https://www.meanwell.co.uk/media/productPDF/IRM-02-spec.pdf +ACDC-Converter 2W THT +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-03-xx_SMD +ACDC-Converter, 3W, Meanwell, IRM-03, SMD, http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-03 +ACDC-Converter 3W +0 +14 +14 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-03-xx_THT +ACDC-Converter, 3W, Meanwell, IRM-03, THT, https://www.meanwell.com/Upload/PDF/IRM-03/IRM-03-SPEC.PDF +ACDC-Converter 3W THT +0 +5 +5 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-05-xx_THT +http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-05 +ACDC-Converter 5W Meanwell IRM-05 +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-10-xx_THT +http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-10 +ACDC-Converter 10W Meanwell IRM-10 +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-20-xx_THT +ACDC-Converter, 20W, Meanwell, IRM-20, THT http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-20 +ACDC-Converter 20W Meanwell IRM-20 +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-60-xx_THT +ACDC-Converter, 50-60W, Meanwell, IRM-60, THT https://www.meanwellusa.com/productPdf.aspx?i=687 +switching power supply +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_MFM-10-xx_THT +AC/DC board mount open frame power converter, input 80 ~ 264 VAC, 10W output, https://www.meanwellusa.com/upload/pdf/MFM-10/MFM-10-spec.pdf +AC/DC power converter +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_MFM-15-xx_THT +AC/DC board mount open frame power converter, input 80 ~ 264 VAC, 15W output, https://www.meanwell.com/Upload/PDF/MFM-15/MFM-15-SPEC.PDF +AC/DC power converter +0 +4 +4 +Converter_ACDC +Converter_ACDC_Murata_BAC05SxxDC_THT +ACDC-Converter, Murata, 5W, ClassB, https://www.murata.com/products/productdata/8809982558238/KAC-BAC05.pdf +switching power supply tht +0 +5 +5 +Converter_ACDC +Converter_ACDC_RECOM_RAC01-xxSGB_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC01-GB.pdf +recom power ac dc rac01xxgb rac01-05sgb rac01-12sgb +0 +4 +4 +Converter_ACDC +Converter_ACDC_RECOM_RAC04-xxSGx_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC04-GA.pdf +recom power ac dc +0 +5 +5 +Converter_ACDC +Converter_ACDC_RECOM_RAC05-xxSK_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC05-K.pdf +recom power ac dc +0 +5 +5 +Converter_ACDC +Converter_ACDC_Recom_RAC20-xxDK_THT +Recom RAC20-xxDK https://recom-power.com/pdf/Powerline_AC-DC/RAC20-K.pdf#page=6 Rev. 6/2020 +Recom RAC20-xxDK +0 +5 +5 +Converter_ACDC +Converter_ACDC_Recom_RAC20-xxSK_THT +Recom RAC20-xxSK https://recom-power.com/pdf/Powerline_AC-DC/RAC20-K.pdf#page=6 Rev. 6/2020 +Recom RAC20-xxSK +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMG-15_THT +ACDC-Converter, TRACO, TMG Series 15 https://www.tracopower.com/products/tmg.pdf +ACDC-Converter TRACO TMG Series 15 +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMLM-04_THT +ACDC-Converter, TRACO, TMLM Series 04 https://www.tracopower.com/products/tmlm.pdf +ACDC-Converter TRACO TMLM Series 04 +0 +7 +7 +Converter_ACDC +Converter_ACDC_TRACO_TMLM-05_THT +ACDC-Converter, TRACO TMLM 05,https://www.tracopower.com/products/tmlm.pdf +ACDC-Converter TRACO TMLM 05 +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMLM-10-20_THT +ACDC-Converter, TRACO TMLM 10, TRACO TMLM 20, https://www.tracopower.com/products/tmlm.pdf +ACDC-Converter TRACO TMLM 10 and TMLM 20 +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TPP-15-1xx-D_THT +ACDC-Converter, 15W, TRACO TPP 15-D, 42 x 28.9 x 21.5mm, https://www.tracopower.com/sites/default/files/products/datasheets/tpp15_d_datasheet.pdf +ACDC-Converter TRACO TPP +0 +5 +5 +Converter_ACDC +Converter_ACDC_Vigortronix_VTX-214-010-xxx_THT +Vigortronix VTX-214-010-xxx serie of ACDC converter, http://www.vigortronix.com/10WattACDCPCBPowerModule.aspx +Vigortronix VTX-214-010-xxx serie of ACDC converter +0 +4 +4 +Converter_ACDC +Converter_ACDC_Vigortronix_VTX-214-015-1xx_THT +Vigortronix VTX-214-010-xxx serie of ACDC converter, http://www.vigortronix.com/10WattACDCPCBPowerModule.aspx +Vigortronix VTX-214-010-xxx serie of ACDC converter +0 +5 +5 +Converter_ACDC +Converter_ACDC_ZETTLER_ZPI03Sxx00WC_THT +PCB mounted switching power module, AC input voltage range: 90VAC-264VAC, Class II Construction, https://www.zettlermagnetics.com/pdfs/ZPI03SXX00WC.pdf +ACDC-Converter 3W ZETTLER ZPI +0 +4 +4 +Converter_DCDC +Converter_DCDC_Artesyn_ATA_SMD +DCDC-Converter, Artesyn, ATA Series, 3W Single and Dual Output, 1500VDC Isolation, 24.0x13.7x8.0mm https://www.artesyn.com/power/assets/ata_series_ds_01apr2015_79c25814fd.pdf https://www.artesyn.com/power/assets/trn_dc-dc_ata_3w_series_releas1430412818_techref.pdf +DCDC SMD +0 +7 +7 +Converter_DCDC +Converter_DCDC_Bothhand_CFUDxxxx_THT +DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), +DCDC-Converter BOTHHAND Type CFxxxx-Serie +0 +10 +10 +Converter_DCDC +Converter_DCDC_Bothhand_CFUSxxxxEH_THT +DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), +DCDC-Converter BOTHHAND Type CFxxxx-Serie +0 +9 +9 +Converter_DCDC +Converter_DCDC_Bothhand_CFUSxxxx_THT +DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), +DCDC-Converter BOTHHAND Type CFxxxx-Serie +0 +8 +8 +Converter_DCDC +Converter_DCDC_Cincon_EC5BExx_Dual_THT +DCDC-Converter, CINCON, EC5BExx, 18-36VDC to Dual output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/B%20CASE/SPEC-EC5BE-V24.pdf +DCDC-Converter CINCON EC5BExx 18-36VDC to Dual output +0 +6 +6 +Converter_DCDC +Converter_DCDC_Cincon_EC5BExx_Single_THT +DCDC-Converter, CINCON, EC5BExx, 18-36VDC to dual output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/B%20CASE/SPEC-EC5BE-V24.pdf +DCDC-Converter CINCON EC5BExx 18-36VDC to dual output +0 +4 +4 +Converter_DCDC +Converter_DCDC_Cincon_EC6Cxx_Dual-Triple_THT +DCDC-Converter, CINCON, EC6Cxx, dual or tripple output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/C%20CASE/SPEC-EC6C-V12.pdf +DCDC-Converter CINCON EC6Cxx dual or tripple output +0 +7 +7 +Converter_DCDC +Converter_DCDC_Cincon_EC6Cxx_Single_THT +DCDC-Converter, CINCON, EC6Cxx, single output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/C%20CASE/SPEC-EC6C-V12.pdf +DCDC-Converter CINCON EC6Cxx single output +0 +6 +6 +Converter_DCDC +Converter_DCDC_Cyntec_MUN12AD01-SH +http://www.cyntec.com/upfile/products/download/Cyntec%20MUN12AD01-SH_Datasheet.pdf +Power Module uPOL MUN12AD01 +0 +13 +9 +Converter_DCDC +Converter_DCDC_Cyntec_MUN12AD03-SH +http://www.cyntec.com/upfile/products/download/Cyntec%20MUN12AD03-SH_Datasheet.pdf +Power Module uPOL MUN12AD03 +0 +19 +11 +Converter_DCDC +Converter_DCDC_MeanWell_NID30_THT +Meanwell DCDC non-isolated converter SIP module, http://www.meanwell.com/webapp/product/search.aspx?prod=nid30 +DCDC non-isolated converter +0 +11 +11 +Converter_DCDC +Converter_DCDC_MeanWell_NID60_THT +MeanWell NID60, http://www.meanwell.com/Upload/PDF/NID60/NID60-SPEC.PDF +MeanWell NID60 +0 +11 +11 +Converter_DCDC +Converter_DCDC_MeanWell_NSD10_THT +MeanWell NSD10 (Script generated with StandardBox.py) (https://www.meanwell.com/webapp/product/search.aspx?prod=NSD10-D) +MeanWell NSD NSD10 +0 +6 +6 +Converter_DCDC +Converter_DCDC_Murata_CRE1xxxxxx3C_THT +Isolated 1W single output DC/DC, http://power.murata.com/data/power/ncl/kdc_cre1.pdf +Isolated 1W single output DC/DC +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_CRE1xxxxxxDC_THT +Isloated DC-DC, http://power.murata.com/data/power/ncl/kdc_cre1.pdf +Isloated DC-DC +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_CRE1xxxxxxSC_THT +http://power.murata.com/data/power/ncl/kdc_cre1.pdf +murata dc-dc transformer +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_MEE1SxxxxSC_THT +https://power.murata.com/pub/data/power/ncl/kdc_mee1.pdf +murata dc-dc transformer +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_MEE3SxxxxSC_THT +https://power.murata.com/pub/data/power/ncl/kdc_mee3.pdf +murata dc-dc transformer +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_MGJ2DxxxxxxSC_THT +Murata MGJ2DxxxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 2W, SIP package style, https://power.murata.com/data/power/ncl/kdc_mgj2.pdf +Murata MGJ2DxxxxxxSC +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_MGJ3 +Murata MGJ3, 5.2kVDC Isolated 3W Gate Drive, 15V/5V/5V Configurable, 22.61x23.11x14.19mm, https://power.murata.com/datasheet?/data/power/ncl/kdc_mgj3.pdf +DCDC SMD +0 +7 +7 +Converter_DCDC +Converter_DCDC_Murata_MYRxP +Murata MYRxP PicoBK DC/DC converter with inductor, 2x2.5mm, height 1.04mm. https://www.murata.com/en-global/products/power/nonisolated-dc-dc-converter/overview/lineup/picobk +PicoBK DC/DC MYRBP MYRGP MYRLP +0 +19 +9 +Converter_DCDC +Converter_DCDC_Murata_NCS1SxxxxSC_THT +Murata NCS1SxxxxSC https://power.murata.com/data/power/ncl/kdc_ncs1.pdf (Script generated with StandardBox.py) (Murata NCS1SxxxxSC https://power.murata.com/data/power/ncl/kdc_ncs1.pdf) +Murata NCS1SxxxxSC +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_NMAxxxxDC_THT +Isolated 1W DCDC-Converter, http://power.murata.com/data/power/ncl/kdc_nma.pdf +Isolated 1W DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_Murata_NMAxxxxSC_THT +Murata NMAxxxxSC footprint based on SIP7, http://power.murata.com/data/power/ncl/kdc_nma.pdf +Murata NMAxxxxSC DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_NXExSxxxxMC_SMD +Isolated 1W or 2W Single Output SM DC/DC Converters https://www.murata.com/products/productdata/8807031865374/kdc-nxe1.pdf#page=8 https://www.murata.com/products/productdata/8807031898142/kdc-nxe2.pdf#page=9 +Isolated 1W or 2W Single Output SM DC/DC Converters +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_OKI-78SR_Horizontal +https://power.murata.com/data/power/oki-78sr.pdf +78sr3.3 78sr5 78sr9 78sr12 78srXX +0 +3 +3 +Converter_DCDC +Converter_DCDC_Murata_OKI-78SR_Vertical +https://power.murata.com/data/power/oki-78sr.pdf +78sr3.3 78sr5 78sr9 78sr12 78srXX +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78B-2.0_THT +DCDC-Converter, RECOM, RECOM_R-78B-2.0, SIP-3, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78E-0.5_THT +DCDC-Converter, RECOM, RECOM_R-78E-0.5, SIP-3, pitch 2.54mm, package size 11.6x8.5x10.4mm^3, https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78HB-0.5L_THT +DCDC-Converter, RECOM, RECOM_R-78HB-0.5L, SIP-3, Horizontally Mounted, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78HB-0.5_THT +DCDC-Converter, RECOM, RECOM_R-78HB-0.5, SIP-3, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78S-0.1_THT +DCDC-Converter, RECOM, RECOM_R-78S-0.1, SIP-4, pitch 2.54mm, package size 11.6x8.5x10.4mm^3, https://www.recom-power.com/pdf/Innoline/R-78Sxx-0.1.pdf +dc-dc recom buck sip-4 pitch 2.54mm +0 +4 +4 +Converter_DCDC +Converter_DCDC_RECOM_R5xxxDA_THT +DCDC-Converter, RECOM, RECOM_R5xxxDA, SIP-12, Horizontally Mounted, pitch 2.54mm, package size 32.2x9.1x15mm^3, https://www.recom-power.com/pdf/Innoline/R-5xxxPA_DA.pdf +dc-dc recom buck sip-12 pitch 2.54mm +0 +12 +12 +Converter_DCDC +Converter_DCDC_RECOM_R5xxxPA_THT +DCDC-Converter, RECOM, RECOM_R5xxxPA, SIP-12, pitch 2.54mm, package size 32.2x9.1x15mm^3, https://www.recom-power.com/pdf/Innoline/R-5xxxPA_DA.pdf +dc-dc recom buck sip-12 pitch 2.54mm +0 +12 +12 +Converter_DCDC +Converter_DCDC_RECOM_RCD-24_THT +Constant current LED Driver DC/DC Converter, https://g.recomcdn.com/media/Datasheet/pdf/.fYUQjOlW/.t2a80a771bdbb0ef300f7/Datasheet-93/RCD-24.pdf +Led Driver DC-DC +0 +6 +6 +Converter_DCDC +Converter_DCDC_RECOM_RPA60-xxxxSFW +RPA60-FW 60W Isolated DC to DC Converters +DCDC Regulator Single +0 +6 +6 +Converter_DCDC +Converter_DCDC_RECOM_RPMx.x-x.0 +https://www.recom-power.com/pdf/Innoline/RPM-6.0.pdf +dc-dc recom buck lga-25 pitch 2.29mm +0 +25 +25 +Converter_DCDC +Converter_DCDC_Silvertel_Ag54xx +DCDC-Converter, 30W POE, Silvertel, pitch 2.54mm, package size 62x19.5x14mm, https://silvertel.com/images/datasheets/Ag5400-datasheet-high%20Efficiency-30W-Power-Over-Ethernet-Plus-Module-PoE+PD.pdf +DCDC-Converter Silvertel Ag5405 Ag5412 Ag5424 single output POE +0 +10 +10 +Converter_DCDC +Converter_DCDC_Silvertel_Ag99xxLP_THT +Converter, DCDC, Silvertel Ag9900 PoE, 1500VDC isolation, Vin 36V - 75V, 4.9W - 10W output, https://silvertel.com/images/datasheets/Ag9900M-datasheet-ultra-miniature-isolated-Power-over-Ethernet-POE-module.pdf +DCDC converter IEEE 802.3af +0 +8 +8 +Converter_DCDC +Converter_DCDC_Silvertel_Ag5810 +DCDC-Converter, 60W POE, Silvertel, pitch 2.54mm, package size 69.98x30x15.64mm, https://silvertel.com/images/datasheets/Ag5810-datasheet-IEEE802_3bt-Power-over-Ethernet-4-pair-PD.pdf +DCDC-Converter Silvertel Ag5810 single output POE +0 +163 +13 +Converter_DCDC +Converter_DCDC_TRACO_TBA1-xxxxE_Dual_THT +DCDC-Converter, TRACO, TBA1-xxxxE, Dual, 1W, Rev. October 31. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tba1e.pdf) +DCDC-Converter TRACO TBA1E THT SIP-7 1W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TBA1-xxxxE_Single_THT +DCDC-Converter, TRACO, TBA1-xxxxE, Single, 1W, Rev. October 31. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tba1e.pdf) +DCDC-Converter TRACO TBA1E THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TBA2-xxxx_Dual_THT +DCDC-Converter, TRACO, TBA2-xxxx, Dual, 2W, Rev. October 18. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tba2.pdf) +DCDC-Converter TRACO TBA2 THT SIP-7 2W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TBA2-xxxx_Single_THT +DCDC-Converter, TRACO, TBA2-xxxx, Single, 2W, Rev. October 18. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tba2.pdf) +DCDC-Converter TRACO TBA2 THT SIP-7 2W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TDN_5-xxxxWISM_SMD +Traco TDN 5WISM Series, 5W, SMD (https://assets.tracopower.com/20200225170127/TDN5WISM/documents/tdn5wism-datasheet.pdf#page=3) +dcdc traco 5w smd +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_TDN_5-xxxxWI_THT +Traco TDN 5WI Series, 5W (https://www.tracopower.com/sites/default/files/products/datasheets/tdn5wi_datasheet.pdf#page=4) +dcdc traco 5w +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_TDU1-xxxx_THT +DCDC-Converter, TRACO, TDU1-xxxx, 1W, Rev. October 24. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tdu1.pdf) +DCDC-Converter TRACO TDU1 THT DIP-8 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEA1-xxxxE_THT +DCDC-Converter, TRACO, TEA1-xxxxE, 1W, Rev. October 31. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tea1e.pdf) +DCDC-Converter TRACO TEA1E THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEA1-xxxxHI_THT +DCDC-Converter, TRACO, TEA1-xxxxHI, 1W, Rev. October 31. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tea1hi.pdf) +DCDC-Converter TRACO TEA1HI THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEA1-xxxx_THT +DCDC-Converter, TRACO, TEA1-xxxx, 1W, Rev. October 19. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tea1.pdf) +DCDC-Converter TRACO TEA1 THT SIP-4 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEL12-xxxx_THT +Traco 12W, THT (https://www.tracopower.com/sites/default/files/products/datasheets/tel12_datasheet.pdf) +traco dcdc tht 12w +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TEN10-xxxx_Dual_THT +DCDC-Converter, TRACO, TEN10-xxxx, single output, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf +DCDC-Converter TRACO TEN10-xxxx single output +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TEN10-xxxx_Single_THT +DCDC-Converter, TRACO, TEN10-xxxx, single output, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf +DCDC-Converter TRACO TEN10-xxxx single output +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEN10-xxxx_THT +DCDC-Converter, TRACO, TEN10-xxxx, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf +DCDC-Converter TRACO TEN10-xxxx +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEN20-xxxx-N4_THT +DCDC-Converter TRACO TEN20 Generic, https://assets.tracopower.com/20171102100522/TEN20/documents/ten20-datasheet.pdf +DCDC-Converter TRACO TEN20 Generic +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TEN20-xxxx_THT +DCDC-Converter TRACO TEN20 Generic, https://assets.tracopower.com/20171102100522/TEN20/documents/ten20-datasheet.pdf +DCDC-Converter TRACO TEN20 Generic +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_THB10-xxxx_Dual_THT +DCDC-Converter, TRACO, THB10-xxxx, Dual, 10W, Rev. December 07. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/thb10.pdf) +DCDC-Converter TRACO THB10 THT 2"x1" 10W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_THB10-xxxx_Single_THT +DCDC-Converter, TRACO, THB10-xxxx, Single, 10W, Rev. December 07. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/thb10.pdf) +DCDC-Converter TRACO THB10 THT 2"x1" 10W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_THD_15-xxxxWIN_THT +Traco THD 15WIN, 15W, THT (https://www.tracopower.com/products/thd15win.pdf#page=3) +traco dcdc tht 15w +0 +9 +9 +Converter_DCDC +Converter_DCDC_TRACO_THN30-xxxx_THT +DCDC-Converter TRACO THN 10 to 30W, Single or dual Output, (https://www.tracopower.com/sites/default/files/products/datasheets/thn30_datasheet.pdf) +DCDC-Converter TRACO THN30 Generic +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_TMA-05xxD_12xxD_Dual_THT +DCDC-Converter, TRACO, TMA-05xxD, TMA-12xxD, Dual, 1W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tma.pdf) +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TMA-05xxS_12xxS_Single_THT +DCDC-Converter, TRACO, TMA-05xxS, TMA-12xxS, Single, 1W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tma.pdf) +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TMA-15xxD_24xxD_Dual_THT +DCDC-Converter, TRACO, TMA-15xxD, TMA-25xxD, Dual, 1W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tma.pdf) +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TMA-15xxS_24xxS_Single_THT +DCDC-Converter, TRACO, TMA-15xxS, TMA-24xxS, Single, 1W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tma.pdf) +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TME_03xxS_05xxS_12xxS_Single_THT +DCDC-Converter, TRACO, TME-03xxS, TME-05xxS, TME-12xxS, 1W, Rev. September 26. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tme.pdf) +DCDC-Converter TRACO TME THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TME_24xxS_Single_THT +DCDC-Converter, TRACO, TME-24xxS, 1W, Rev. September 26. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tme.pdf) +DCDC-Converter TRACO TME THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TMR-1-xxxx_Dual_THT +DCDC-Converter, TRACO, TMR 1-xxxx, Dual output, Rev. March 21.2016 +DCDC-Converter TRACO TMR1-xxxx Dual_output +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TMR-1-xxxx_Single_THT +DCDC-Converter, TRACO, TMR 1-xxxx, Single output, Rev. March 21.2016 +DCDC-Converter TRACO TMR1-xxxx Single_output +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TMR-1SM_SMD +http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +DCDC SMD TRACO TMR-1SM +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TMR-2xxxxWI_THT +https://www.tracopower.com/products/tmr2wi.pdf +DCDC-Converter TRACO TMRxxxxWI Single/Dual_output +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TMR-xxxx_THT +DCDC-Converter, TRACO, TMR xxxx, Single/Dual output, http://www.datasheetlib.com/datasheet/135136/tmr-2-2410e_traco-power.html?page=3#datasheet +DCDC-Converter TRACO TMRxxxx Single/Dual_output +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TMR4-xxxxWI_THT +DCDC-Converter, TRACO, TMR4-xxxxWI, 4W, Rev. December 06. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tmr4wi.pdf) +DCDC-Converter TRACO TMR4WI THT SIP-8 4W +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TMU3-05xx_12xx_THT +DCDC-Converter, TRACO, TMU3-05xx, TMU3-12xx, 3W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tmu3.pdf) +DCDC-Converter TRACO TMU3 THT SIP-4 3W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TMU3-24xx_THT +DCDC-Converter, TRACO, TMU3-24xx, 3W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tmu3.pdf) +DCDC-Converter TRACO TMU3 THT SIP-4 3W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TOS06-05SIL_THT +DCDC-Converter, TRACO, TOS06-05SIL, 6A, Rev. March 20. 2024 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tos06sil.pdf) +DCDC-Converter POL TRACO TOS06SIL 2.54MM THT SIP-9 6A +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TOS06-12SIL_THT +DCDC-Converter, TRACO, TOS06-12SIL, 6A, Rev. March 20. 2024 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tos06sil.pdf) +DCDC-Converter POL TRACO TOS06SIL 2.54MM THT SIP-9 6A +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TRI1-xxxx_THT +DCDC-Converter, TRACO, TRI1-xxxx, 1W, Rev. November 13. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tri1.pdf) +DCDC-Converter TRACO TRI1 THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TSR-1_THT +DCDC-Converter, TRACO, TSR 1-xxxx +DCDC-Converter TRACO TSR-1 +0 +3 +3 +Converter_DCDC +Converter_DCDC_TRACO_TSR1-xxxxE_THT +DCDC-Converter, TRACO, TSR1-xxxxE, 1A, Rev. October 31. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tsr1e.pdf) +DCDC-Converter SWITCHING-REGULATOR STEP-DOWN TRACO TSR1E 2.54MM THT SIP-3 1A +0 +3 +3 +Converter_DCDC +Converter_DCDC_XP_POWER-IA48xxD_THT +XP_POWER IA48xxD, DIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IA48xxD DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IA48xxS_THT +XP_POWER IA48xxS, SIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IA48xxS SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IAxxxxD_THT +XP_POWER IAxxxxD, DIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IAxxxxD DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IAxxxxS_THT +XP_POWER IAxxxxS, SIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IAxxxxS SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxDH_THT +XP_POWER IHxxxxDH, DIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxDH DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxD_THT +XP_POWER IHxxxxD, DIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxD DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxSH_THT +XP_POWER IHxxxxSH, SIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxSH SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxS_THT +XP_POWER IHxxxxS, SIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxS SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-ISU02_SMD +DCDC-Converter, XP POWER, ISU02 Series, 2W Single and Dual Output, 1500VDC Isolation, 19.0x17.0x8.7mm https://www.xppower.com/Portals/0/pdfs/SF_ISU02.pdf +DCDC SMD XP POWER ISU02 +0 +7 +7 +Converter_DCDC +Converter_DCDC_XP_POWER-ITQxxxxS-H_THT +XP_POWER ITQxxxxS-H, SIP, (https://www.xppower.com/pdfs/SF_ITQ.pdf), generated with kicad-footprint-generator +XP_POWER ITQxxxxS-H SIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-ITXxxxxSA_THT +XP_POWER ITXxxxxSA, SIP, (https://www.xppower.com/pdfs/SF_ITX.pdf), generated with kicad-footprint-generator +XP_POWER ITXxxxxSA SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-ITxxxxxS_THT +XP_POWER ITxxxxxS, SIP, (https://www.xppower.com/portals/0/pdfs/SF_ITX.pdf https://www.xppower.com/portals/0/pdfs/SF_ITQ.pdf), generated with kicad-footprint-generator +XP_POWER ITxxxxxS SIP DCDC-Converter +0 +7 +7 +Converter_DCDC +Converter_DCDC_XP_POWER_JTDxxxxxxx_THT +XP Power JTD Series DC-DC Converter +DCDC Isolated +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER_JTExxxxDxx_THT +DCDC-Converter, XP POWER, Type JTE06 Series, Dual Output +DCDC-Converter XP_POWER JTE06 Dual +0 +8 +8 +Converter_DCDC +Converter_DCDC_muRata_MEJ1DxxxxSC_THT +muRata MEJ1DxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 1W, dual output, SIP package style, https://power.murata.com/data/power/ncl/kdc_mej1.pdf +muRata MEJ1D DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_muRata_MEJ1SxxxxSC_THT +muRata MEJ1SxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 1W, single output, SIP package style, https://power.murata.com/data/power/ncl/kdc_mej1.pdf +muRata MEJ1S DCDC-Converter +0 +4 +4 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +2 +2 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style1 +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +3 +3 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style2 +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +5 +3 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Vertical +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +2 +2 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +2 +2 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style1 +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +3 +3 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style2 +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +5 +3 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Vertical +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +2 +2 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +2 +2 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style1 +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +3 +3 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style2 +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +5 +3 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Vertical +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +2 +2 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +2 +2 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style1 +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +3 +3 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style2 +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +5 +3 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Vertical +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +2 +2 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +2 +2 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style1 +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +3 +3 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style2 +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +5 +3 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Vertical +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +2 +2 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +2 +2 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style1 +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +3 +3 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style2 +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +5 +3 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Vertical +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +2 +2 +Crystal +Crystal_HC18-U_Horizontal +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC18-U_Horizontal_1EP_style1 +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC18-U_Horizontal_1EP_style2 +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC18-U_Vertical +Crystal THT HC-18/U, http://5hertz.com/pdfs/04404_D.pdf +THT crystalHC-18/U +0 +2 +2 +Crystal +Crystal_HC33-U_Horizontal +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC33-U_Horizontal_1EP_style1 +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC33-U_Horizontal_1EP_style2 +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC33-U_Vertical +Crystal THT HC-33/U, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystalHC-33/U +0 +2 +2 +Crystal +Crystal_HC35-U +Crystal, Quarz, HC35/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/TO71xx.pdf +Crystal Quarz HC35/U +0 +3 +3 +Crystal +Crystal_HC49-4H_Vertical +Crystal THT HC-49-4H http://5hertz.com/pdfs/04404_D.pdf +THT crystalHC-49-4H +0 +2 +2 +Crystal +Crystal_HC49-U-3Pin_Vertical +Crystal THT HC-49/U, 3pin-version, http://www.raltron.com/products/pdfspecs/crystal_hc_49_45_51.pdf +THT crystalHC-49/U +0 +3 +3 +Crystal +Crystal_HC49-U_Horizontal +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC49-U_Horizontal_1EP_style1 +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC49-U_Horizontal_1EP_style2 +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC49-U_Vertical +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystalHC-49/U +0 +2 +2 +Crystal +Crystal_HC50_Horizontal +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC50_Horizontal_1EP_style1 +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC50_Horizontal_1EP_style2 +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC50_Vertical +Crystal THT HC-50, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystalHC-50 +0 +2 +2 +Crystal +Crystal_HC51-U_Vertical +Crystal THT HC-51/U, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystalHC-51/U +0 +2 +2 +Crystal +Crystal_HC51_Horizontal +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC51_Horizontal_1EP_style1 +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC51_Horizontal_1EP_style2 +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-6mm_Horizontal +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC52-6mm_Horizontal_1EP_style1 +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC52-6mm_Horizontal_1EP_style2 +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-6mm_Vertical +Crystal THT HC-52/6mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystalHC-49/U +0 +2 +2 +Crystal +Crystal_HC52-8mm_Horizontal +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC52-8mm_Horizontal_1EP_style1 +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC52-8mm_Horizontal_1EP_style2 +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-8mm_Vertical +Crystal THT HC-52/8mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystalHC-49/U +0 +2 +2 +Crystal +Crystal_HC52-U-3Pin_Vertical +Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystalHC-52/U +0 +3 +3 +Crystal +Crystal_HC52-U_Horizontal +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC52-U_Horizontal_1EP_style1 +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC52-U_Horizontal_1EP_style2 +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-U_Vertical +Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal HC-52/U +0 +2 +2 +Crystal +Crystal_Round_D1.0mm_Vertical +Crystal THT DS10 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +2 +2 +Crystal +Crystal_Round_D1.5mm_Vertical +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +2 +2 +Crystal +Crystal_Round_D2.0mm_Vertical +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +2 +2 +Crystal +Crystal_Round_D3.0mm_Vertical +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +2 +2 +Crystal +Crystal_SMD_0603-2Pin_6.0x3.5mm +SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, 6.0x3.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering +SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_0603-4Pin_6.0x3.5mm +SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, 6.0x3.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_0603-4Pin_6.0x3.5mm_HandSoldering +SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, hand-soldering, 6.0x3.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_2012-2Pin_2.0x1.2mm +SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_2012-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_2016-4Pin_2.0x1.6mm +SMD Crystal SERIES SMD2016/4 http://www.q-crystal.com/upload/5/2015552223166229.pdf, 2.0x1.6mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_2520-4Pin_2.5x2.0mm +SMD Crystal SERIES SMD2520/4 http://www.newxtal.com/UploadFiles/Images/2012-11-12-09-29-09-776.pdf, 2.5x2.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_3215-2Pin_3.2x1.5mm +SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf +SMD SMT Crystal +0 +2 +2 +Crystal +Crystal_SMD_3225-4Pin_3.2x2.5mm +SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_5032-2Pin_5.0x3.2mm +SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_5032-2Pin_5.0x3.2mm_HandSoldering +SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_5032-4Pin_5.0x3.2mm +SMD Crystal SERIES SMD2520/4 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_7050-2Pin_7.0x5.0mm +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_7050-2Pin_7.0x5.0mm_HandSoldering +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_7050-4Pin_7.0x5.0mm +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm_HandSoldering +Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM3B-4Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3B http://www.abracon.com/Resonators/abm3b.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM3C-4Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3C http://www.abracon.com/Resonators/abm3c.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM7-2Pin_6.0x3.5mm +SMD Crystal Abracon ABM7, https://abracon.com/Resonators/abm7.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM8AIG-4Pin_3.2x2.5mm +Abracon Miniature Ceramic Smd Crystal ABM8AIG https://abracon.com/AIGcrystals/ABM8AIG.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM8G-4Pin_3.2x2.5mm +Abracon Miniature Ceramic Smd Crystal ABM8G http://www.abracon.com/Resonators/ABM8G.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM10-4Pin_2.5x2.0mm +Abracon Miniature Ceramic Smd Crystal ABM10 http://www.abracon.com/Resonators/ABM10.pdf +SMD SMT crystal Abracon ABM10 +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABS25-4Pin_8.0x3.8mm +Abracon Miniature Ceramic SMD Crystal ABS25 https://abracon.com/Resonators/abs25.pdf, 8.0x3.8mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_ECS_CSM3X-2Pin_7.6x4.1mm +http://www.ecsxtal.com/store/pdf/CSM-3X.pdf +Crystal CSM-3X +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm +SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, 3.2x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, hand-soldering, 3.2x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm +SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm_HandSoldering +SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm +SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm_HandSoldering +SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm +SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm_HandSoldering +SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm +SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm +SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, 2.5x2.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm_HandSoldering +SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, hand-soldering, 2.5x2.0mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm +crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, 7.5x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm_HandSoldering +crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, hand-soldering, 7.5x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm_HandSoldering +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-4Pin_7.0x5.0mm +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_FrontierElectronics_FM206 +SMD Watch Crystal FrontierElectronics FM206 6.0mm length 1.9mm diameter http://www.chinafronter.com/wp-content/uploads/2013/12/FM206.pdf +['FM206'] +0 +3 +3 +Crystal +Crystal_SMD_G8-2Pin_3.2x1.5mm +SMD Crystal G8, 3.2x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_G8-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal G8, hand-soldering, 3.2x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_HC49-SD +SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, 11.4x4.7mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_HC49-SD_HandSoldering +SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, hand-soldering, 11.4x4.7mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm +SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, 8.0x3.7mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_HandSoldering +SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, hand-soldering, 8.0x3.7mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm +SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, 5.0x1.9mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm_HandSoldering +SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, hand-soldering, 5.0x1.9mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm +SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, 4.1x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm_HandSoldering +SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, hand-soldering, 4.1x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm +SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC7V-T1A.pdf, 3.2x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf, hand-soldering, 3.2x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm +SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC8V-T1A.pdf, 2.0x1.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf, hand-soldering, 2.0x1.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm +SMD Crystal MicroCrystal CM9V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CM9V-T1A.pdf, 1.6x1.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm_HandSoldering +SMD Crystal MicroCrystal CM9V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf, hand-soldering, 1.6x1.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_MS1V-T1K +SMD Watch Crystal MicroCrystal MS1V-T1K 6.1mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS1V-T1K.pdf +['MS1V-T1K'] +0 +3 +3 +Crystal +Crystal_SMD_MicroCrystal_MS3V-T1R +SMD Watch Crystal MicroCrystal MS3V-T1R 5.2mm length 1.4mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS3V-T1R.pdf +['MS3V-T1R'] +0 +3 +3 +Crystal +Crystal_SMD_Qantek_QC5CB-2Pin_5x3.2mm +SMD Crystal Qantek QC5CB, https://www.qantek.com/tl_files/products/crystals/QC5CB.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_FA128-4Pin_2.0x1.6mm +crystal Epson Toyocom FA-128 (https://support.epson.biz/td/api/doc_check.php?dl=brief_FA-128&lang=en), 2x1.6mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm +crystal Epson Toyocom FA-238 https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm +crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom FA-238 series http://www.mouser.com/ds/2/137/1721499-465440.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 11.7x4.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm_HandSoldering +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 11.7x4.0mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm +SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm_HandSoldering +SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm_HandSoldering +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm +SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 6.7x1.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm_HandSoldering +SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 6.7x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm +SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 7.1x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm_HandSoldering +SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 7.1x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm +SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 8.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm_HandSoldering +SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 8.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm +SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm_HandSoldering +SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm +SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm_HandSoldering +SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm +crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_TXC_7A-2Pin_5x3.2mm +SMD Crystal TXC 7A http://txccrystal.com/images/pdf/7a.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm +SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm +SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_TXC_AX_8045-2Pin_8.0x4.5mm +http://www.txccrystal.com/images/pdf/ax-automotive.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Resonator-2Pin_W6.0mm_H3.0mm +Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-2Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-2Pin_W8.0mm_H3.5mm +Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-2Pin_W10.0mm_H5.0mm +Ceramic Resomator/Filter 10.0x5.0 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-3Pin_W6.0mm_H3.0mm +Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator-3Pin_W8.0mm_H3.5mm +Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator-3Pin_W10.0mm_H5.0mm +Ceramic Resomator/Filter 10.0x5.0mm^2 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator_Murata_CSTLSxxxG-3Pin_W8.0mm_H3.0mm +Ceramic Resomator/Filter Murata CSTLSxxxG, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=8.0x3.0mm^2 package, package length=8.0mm, package width=3.0mm, 3 pins +THT ceramic resonator filter CSTLSxxxG +0 +3 +3 +Crystal +Resonator_Murata_CSTLSxxxX-3Pin_W5.5mm_H3.0mm +Ceramic Resomator/Filter Murata CSTLSxxxX, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=5.5x3.0mm^2 package, package length=5.5mm, package width=3.0mm, 3 pins +THT ceramic resonator filter CSTLSxxxX +0 +3 +3 +Crystal +Resonator_Murata_DSN6-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter Murata DSN6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins +THT ceramic resonator filter DSN6 +0 +3 +3 +Crystal +Resonator_Murata_DSS6-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter Murata DSS6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins +THT ceramic resonator filter DSS6 +0 +3 +3 +Crystal +Resonator_SMD-3Pin_7.2x3.0mm +SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, 7.2x3.0mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD-3Pin_7.2x3.0mm_HandSoldering +SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, hand-soldering, 7.2x3.0mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Crystal +Resonator_SMD_Murata_CDSCB-2Pin_4.5x2.0mm +SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 4.5x2.0mm^2 package +SMD SMT ceramic resonator filter filter +0 +2 +2 +Crystal +Resonator_SMD_Murata_CDSCB-2Pin_4.5x2.0mm_HandSoldering +SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 4.5x2.0mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +2 +2 +Crystal +Resonator_SMD_Murata_CSTCR_4.5x2x1.15mm +Piezoelectric Ceramic Resonator, 4.5mm x 2mm x 1.15mm, https://www.murata.com/products/productdata/8801051639838/SPEC-CSTCR4M00G53-R0.pdf?1517839209000 +Crystal Oscillator +0 +9 +3 +Crystal +Resonator_SMD_Murata_CSTxExxV-3Pin_3.0x1.1mm +SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf +SMD SMT ceramic resonator filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_CSTxExxV-3Pin_3.0x1.1mm_HandSoldering +SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf +SMD SMT ceramic resonator filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFECV-3Pin_6.9x2.9mm +SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 6.9x2.9mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFECV-3Pin_6.9x2.9mm_HandSoldering +SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 6.9x2.9mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFSKA-3Pin_7.9x3.8mm +SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFSKA-3Pin_7.9x3.8mm_HandSoldering +SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Crystal +Resonator_SMD_Murata_TPSKA-3Pin_7.9x3.8mm +SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_TPSKA-3Pin_7.9x3.8mm_HandSoldering +SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Diode_SMD +D_0201_0603Metric +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +diode +0 +4 +2 +Diode_SMD +D_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +diode handsolder +0 +4 +2 +Diode_SMD +D_0402_1005Metric +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_0603_1608Metric +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_0805_2012Metric +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_01005_0402Metric +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +diode +0 +4 +2 +Diode_SMD +D_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +diode handsolder +0 +4 +2 +Diode_SMD +D_1206_3216Metric +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_1210_3225Metric +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_1812_4532Metric +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2010_5025Metric +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2114_3652Metric +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2114_3652Metric_Pad1.85x3.75mm_HandSolder +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2512_6332Metric +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_3220_8050Metric +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_3220_8050Metric_Pad2.65x5.15mm_HandSolder +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_MELF +Diode, MELF,, +Diode MELF +0 +2 +2 +Diode_SMD +D_MELF-RM10_Universal_Handsoldering +Diode, Universal, MELF, RM10, Handsoldering, SMD, Thruhole, +Diode Universal MELF RM10 Handsoldering SMD Thruhole +0 +2 +2 +Diode_SMD +D_MELF_Handsoldering +Diode MELF Handsoldering +Diode MELF Handsoldering +0 +2 +2 +Diode_SMD +D_MicroMELF +Diode, MicroMELF, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf +MicroMELF Diode +0 +2 +2 +Diode_SMD +D_MicroMELF_Handsoldering +Diode, MicroMELF, Hand Soldering, http://www.vishay.com/docs/85597/bzm55.pdf +MicroMELF Diode +0 +2 +2 +Diode_SMD +D_MicroSMP_AK +Diode MicroSMP (DO-219AD), large-pad cathode, https://www.vishay.com/docs/89020/mss1p3l.pdf +Diode MicroSMP (DO-219AD) +0 +2 +2 +Diode_SMD +D_MicroSMP_KA +Diode MicroSMP (DO-219AD), large-pad anode, https://www.vishay.com/docs/89457/msmp6a.pdf +Diode MicroSMP (DO-219AD) +0 +2 +2 +Diode_SMD +D_MiniMELF +Diode Mini-MELF (SOD-80) +Diode Mini-MELF (SOD-80) +0 +2 +2 +Diode_SMD +D_MiniMELF_Handsoldering +Diode Mini-MELF (SOD-80) Handsoldering +Diode Mini-MELF (SOD-80) Handsoldering +0 +2 +2 +Diode_SMD +D_PowerDI-5 +PowerDI,Diode,Vishay,https://www.diodes.com/assets/Package-Files/PowerDI5.pdf +PowerDI diode vishay +0 +3 +2 +Diode_SMD +D_PowerDI-123 +http://www.diodes.com/_files/datasheets/ds30497.pdf +PowerDI diode vishay +0 +2 +2 +Diode_SMD +D_Powermite2_AK +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341) +PowerMite2 +0 +2 +2 +Diode_SMD +D_Powermite2_KA +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341) +PowerMite2 +0 +2 +2 +Diode_SMD +D_Powermite3 +Microsemi Powermite 3 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5340) +PowerMite3 +0 +3 +3 +Diode_SMD +D_Powermite_AK +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF) +Powermite +0 +2 +2 +Diode_SMD +D_Powermite_KA +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF) +Powermite +0 +2 +2 +Diode_SMD +D_QFN_3.3x3.3mm_P0.65mm +QFN, diode, 3.3x3.3x1mm (https://www.wolfspeed.com/media/downloads/846/C3D1P7060Q.pdf) +diode qfn 3.3 +0 +3 +2 +Diode_SMD +D_SC-80 +JEITA SC-80 +SC-80 +0 +2 +2 +Diode_SMD +D_SC-80_HandSoldering +JEITA SC-80 +SC-80 +0 +2 +2 +Diode_SMD +D_SMA +Diode SMA (DO-214AC) +Diode SMA (DO-214AC) +0 +2 +2 +Diode_SMD +D_SMA-SMB_Universal_Handsoldering +Diode, Universal, SMA (DO-214AC) or SMB (DO-214AA), Handsoldering, +Diode Universal SMA (DO-214AC) SMB (DO-214AA) Handsoldering +0 +2 +2 +Diode_SMD +D_SMA_Handsoldering +Diode SMA (DO-214AC) Handsoldering +Diode SMA (DO-214AC) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB +Diode SMB (DO-214AA) +Diode SMB (DO-214AA) +0 +2 +2 +Diode_SMD +D_SMB-SMC_Universal_Handsoldering +Diode, Universal, SMB(DO-214AA) or SMC (DO-214AB), Handsoldering, +Diode Universal SMB(DO-214AA) SMC (DO-214AB) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB_Handsoldering +Diode SMB (DO-214AA) Handsoldering +Diode SMB (DO-214AA) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB_Modified +Diode SMB (DO-214AA) Modified (http://www.littelfuse.com/~/media/electronics/datasheets/sidactors/littelfuse_sidactor_battrax_positive_negative_modified_do_214_datasheet.pdf.pdf) +Diode SMB (DO-214AA) +0 +3 +3 +Diode_SMD +D_SMC +Diode SMC (DO-214AB) +Diode SMC (DO-214AB) +0 +2 +2 +Diode_SMD +D_SMC-RM10_Universal_Handsoldering +Diode, Universal, SMC (DO-214AB), RM10, Handsoldering, SMD, Thruhole +Diode Universal SMC (DO-214AB) RM10 Handsoldering SMD Thruhole +0 +2 +2 +Diode_SMD +D_SMC_Handsoldering +Diode SMC (DO-214AB) Handsoldering +Diode SMC (DO-214AB) Handsoldering +0 +2 +2 +Diode_SMD +D_SMF +Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf +Diode SMF (DO-214AB) +0 +2 +2 +Diode_SMD +D_SMP_DO-220AA +SMP DO-220AA (https://www.vishay.com/docs/89016/esh2pb.pdf) +SMP DO-220AA +0 +2 +2 +Diode_SMD +D_SOD-110 +SOD-110 +SOD-110 +0 +2 +2 +Diode_SMD +D_SOD-123 +SOD-123 +SOD-123 +0 +2 +2 +Diode_SMD +D_SOD-123F +D_SOD-123F +D_SOD-123F +0 +2 +2 +Diode_SMD +D_SOD-128 +D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf +D_SOD-128 +0 +2 +2 +Diode_SMD +D_SOD-323 +SOD-323 +SOD-323 +0 +2 +2 +Diode_SMD +D_SOD-323F +SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf +SOD-323F +0 +2 +2 +Diode_SMD +D_SOD-323_HandSoldering +SOD-323 +SOD-323 +0 +2 +2 +Diode_SMD +D_SOD-523 +http://www.diodes.com/datasheets/ap02001.pdf p.144 +Diode SOD523 +0 +2 +2 +Diode_SMD +D_SOD-882 +SOD-882, DFN1006-2, body 1.0 x 0.6 x 0.48mm, pitch 0.65mm, https://assets.nexperia.com/documents/package-information/SOD882.pdf +Diode SOD882 DFN1006-2 +0 +4 +2 +Diode_SMD +D_SOD-882D +SOD-882D, DFN1006D-2, body 1.0 x 0.6 x 0.4mm, pitch 0.65mm, https://assets.nexperia.com/documents/data-sheet/PESD5V0L1ULD.pdf +Diode SOD882D DFN1006D-2 +0 +4 +2 +Diode_SMD +D_SOD-923 +https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4 +Diode SOD923 +0 +2 +2 +Diode_SMD +D_TUMD2 +ROHM - TUMD2 +TUMD2 +0 +2 +2 +Diode_SMD +Diode_Bridge_Bourns_CD-DF4xxS +8.1x10.5mm, 4A, single phase bridge rectifier, https://www.bourns.com/docs/Product-Datasheets/CD-DF4xxSL.pdf +Surface Mount Bridge Rectifier Diode +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_ABS +SMD diode bridge ABS (Diotec), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/abs2.pdf +ABS MBLS +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_MicroDil_3.0x3.0x1.8mm +SMD package Diotec Diotec MicroDil, body 3.0x3.0x1.8mm (e.g. diode bridge), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/mys40.pdf +Diotec MicroDil diode bridge +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_SO-DIL-Slim +SMD diode bridge Diotec SO-DIL Slim, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40fs.pdf +DFS SO-DIL Slim +0 +4 +4 +Diode_SMD +Diode_Bridge_OnSemi_SDIP-4L +SMD diode bridge OnSemi SDIP-4L, see https://www.onsemi.com/pdf/datasheet/df10s1-d.pdf +OnSemi Diode Bridge SDIP-4L +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_DFS +SMD diode bridge DFS, see http://www.vishay.com/docs/88854/padlayouts.pdf +DFS +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_DFSFlat +SMD diode bridge Low Profile DFS "Flat", see http://www.vishay.com/docs/88874/dfl15005.pdf +DFS +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_MBLS +SMD diode bridge MBLS, see http://www.vishay.com/docs/89959/mbl104s.pdf http://www.vishay.com/docs/88854/padlayouts.pdf +DFS +0 +4 +4 +Diode_SMD +Infineon_SG-WLL-2-3_0.58x0.28_P0.36mm +Infineon SG-WLL-2-3, 0.58x0.28x0.15mm, https://www.infineon.com/dgdl/Infineon-SG-WLL-2-3_SPO_PDF-Package-v02_00-EN.pdf?fileId=5546d46271bf4f9201723159ce71239d +Infineon WLL +0 +4 +2 +Diode_SMD +Littelfuse_PolyZen-LS +http://m.littelfuse.com/~/media/electronics/datasheets/polyzen_devices/littelfuse_polyzen_standard_polyzen_catalog_datasheet.pdf.pdf +Diode Polymer Protected Zener Diode Littelfuse LS +0 +3 +3 +Diode_SMD +Nexperia_CFP3_SOD-123W +Nexperia CFP3 (SOD-123W), https://assets.nexperia.com/documents/outline-drawing/SOD123W.pdf +CFP3 SOD-123W +0 +2 +2 +Diode_SMD +Nexperia_DSN0603-2_0.6x0.3mm_P0.4mm +SOD962-2 silicon, leadless ultra small package; 2 terminals; 0.4 mm pitch; 0.6 mm x 0.3 mm x 0.3 mm body (https://assets.nexperia.com/documents/package-information/SOD962-2.pdf https://www.nexperia.com/packages/SOD962-2.html) +TVS protection diodes +0 +2 +2 +Diode_SMD +Nexperia_DSN1608-2_1.6x0.8mm +Diode SMD DSN1608, 1.6 x 0.8 x 0.29 mm, https://assets.nexperia.com/documents/package-information/SOD964.pdf +diode SOD964 SOD-964 +0 +2 +2 +Diode_SMD +ST_QFN-2L_1.6x1.0mm +Unidirectional high power transient voltage suppressor (https://www.st.com/resource/en/datasheet/esda7p120-1u1m.pdf) +QFN-2L Diode +0 +2 +2 +Diode_SMD +Vishay_SMPA +Diode SMPA (DO-221BC), https://www.vishay.com/docs/87659/v8pa10.pdf +Diode SMPA (DO-221BC) +0 +2 +2 +Diode_THT +D_5KPW_P7.62mm_Vertical_AnodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KPW_P7.62mm_Vertical_KathodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KPW_P12.70mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KP_P7.62mm_Vertical_AnodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P7.62mm_Vertical_KathodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P10.16mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P12.70mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5W_P5.08mm_Vertical_AnodeUp +Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P5.08mm_Vertical_KathodeUp +Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P10.16mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P12.70mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_A-405_P2.54mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P2.54mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P5.08mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P5.08mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P7.62mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P10.16mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P12.70mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-15_P2.54mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P2.54mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P3.81mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P3.81mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P5.08mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P5.08mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P10.16mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P12.70mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P15.24mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-27_P5.08mm_Vertical_AnodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P5.08mm_Vertical_KathodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P12.70mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P15.24mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P7.62mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P10.16mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P12.70mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P7.62mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P10.16mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P12.70mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P7.62mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P10.16mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P12.70mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-201AD_P3.81mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P3.81mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P5.08mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P5.08mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P12.70mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P15.24mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AE_P3.81mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P3.81mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P5.08mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P5.08mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P12.70mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P15.24mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201_P3.81mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P3.81mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P5.08mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P5.08mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P12.70mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P15.24mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-247_Horizontal_TabDown +Diode, DO-247 series, Horizontal, TabDown, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_DO-247_Horizontal_TabUp +Diode, DO-247 series, Horizontal, TabUp, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_DO-247_Vertical +Diode, DO-247 series, Vertical, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_P600_R-6_P7.62mm_Vertical_AnodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P7.62mm_Vertical_KathodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P12.70mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P20.00mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_T-1_P2.54mm_Vertical_AnodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P2.54mm_Vertical_KathodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P5.08mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P10.16mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P12.70mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +Diode_Bridge_15.1x15.1x6.3mm_P10.9mm +Single phase bridge rectifier case 15.1x15.1mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xxS +0 +4 +4 +Diode_THT +Diode_Bridge_15.2x15.2x6.3mm_P10.9mm +Single phase bridge rectifier case 15.2x15.2mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc600.pdf +Diode Bridge KBPC6xx +0 +4 +4 +Diode_THT +Diode_Bridge_15.7x15.7x6.3mm_P10.8mm +Single phase bridge rectifier case 15.7x15.7 +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_16.7x16.7x6.3mm_P10.8mm +Single phase bridge rectifier case 16.7x16.7 +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_19.0x3.5x10.0mm_P5.0mm +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_19.0x19.0x6.8mm_P12.7mm +Single phase bridge rectifier case 19x19mm, pitch 12.7mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xx +0 +4 +4 +Diode_THT +Diode_Bridge_28.6x28.6x7.3mm_P18.0mm_P11.6mm +Single phase bridge rectifier case 28.6x28.6mm, pitch 18.0mm & 11.6mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc1500fw.pdf +Diode Bridge KBPCxxxxWP +0 +4 +4 +Diode_THT +Diode_Bridge_32.0x5.6x17.0mm_P10.0mm_P7.5mm +Diotec 32x5.6x17mm rectifier package, 7.5mm/10mm pitch, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40c3700.pdf +Diotec rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Comchip_SCVB-L +Three phase, Bridge, Rectifier, https://www.comchiptech.com/admin/files/product/SC35VB80S-G%20Thru506369.%20SC35VB160S-G%20RevB.pdf +diode module +0 +5 +5 +Diode_THT +Diode_Bridge_DIGITRON_KBPC_T +Single phase, Bridge rectifier, 28.614x28.614mm, case KBPC_T(FP), https://www.digitroncorp.com/Digitron/media/Files/Datasheets/KBPC15005-SERIES.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_DIP-4_W5.08mm_P2.54mm +4-lead dip package for diode bridges, row spacing 5.08mm, pin-spacing 2.54mm, see http://www.vishay.com/docs/88898/b2m.pdf +DIL DIP PDIP 5.08mm 2.54 +0 +4 +4 +Diode_THT +Diode_Bridge_DIP-4_W7.62mm_P5.08mm +4-lead dip package for diode bridges, row spacing 7.62 mm (300 mils), see http://cdn-reichelt.de/documents/datenblatt/A400/HDBL101G_20SERIES-TSC.pdf +DIL DIP PDIP 5.08mm 7.62mm 300mil +0 +4 +4 +Diode_THT +Diode_Bridge_GeneSiC_KBPC_T +Single phase, Bridge rectifier, 28.55x28.55mm, case KBPC_T(FP), https://www.diodemodule.com/bridge-rectifier/kbpc/kbpc1501t.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_GeneSiC_KBPC_W +Single phase, Bridge Rectifier, 28.55x28.55mm, case KBPC_W(WP), https://www.diodemodule.com/bridge-rectifier/kbpc/kbpc15005w.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_IXYS_GUFP +Three phase, Bridge, Rectifier +diode module +0 +5 +5 +Diode_THT +Diode_Bridge_Round_D8.9mm +4-lead round diode bridge package, diameter 8.9mm, pin pitch 5.08mm, see http://cdn-reichelt.de/documents/datenblatt/A400/W005M-W10M_SEP.PDF +diode bridge 8.9mm 8.85mm WOB pitch 5.08mm +0 +4 +4 +Diode_THT +Diode_Bridge_Round_D9.0mm +4-lead round diode bridge package, diameter 9.0mm, pin pitch 5.0mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40r.pdf +diode bridge 9.0mm 8.85mm WOB pitch 5.0mm +0 +4 +4 +Diode_THT +Diode_Bridge_Round_D9.8mm +4-lead round diode bridge package, diameter 9.8mm, pin pitch 5.08mm, see http://www.vishay.com/docs/88769/woo5g.pdf +diode bridge 9.8mm WOG pitch 5.08mm +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_GBL +Vishay GBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88609/gbl005.pdf +Vishay GBL rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_GBU +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBL +Vishay KBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88655/kbl005.pdf +Vishay KBL rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPC1 +Single phase bridge rectifier case KBPC1, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPC6 +Single phase bridge rectifier case KBPC6, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPM +Vishay KBM rectifier package, 3.95mm pitch (http://www.farnell.com/datasheets/2238158.pdf, http://www.cdil.com/s/kbp2005_.pdf) +Vishay KBM rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBU +Vishay KBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88656/kbu4.pdf +Vishay KBU rectifier diode bridge +0 +4 +4 +Display +AG12864E +STN/FSTN LCD 128x64 dot https://www.digchip.com/datasheets/parts/datasheet/1121/AG-12864E-pdf.php +AG12864E Graphics Display 128x64 Ampire +0 +24 +20 +Display +Adafruit_SSD1306 +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI https://learn.adafruit.com/monochrome-oled-breakouts/downloads +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI +0 +8 +8 +Display +Adafruit_SSD1306_No_Mounting_Holes +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI https://learn.adafruit.com/monochrome-oled-breakouts/downloads +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI +0 +8 +8 +Display +CR2013-MI2120 +CR2013-MI2120 ILI9341 LCD Breakout http://pan.baidu.com/s/11Y990 +CR2013-MI2120 ILI9341 LCD Breakout +0 +18 +14 +Display +EA-eDIP128B-XXX +LCD-graphical display with LED backlight 128x64 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip128-6e.pdf +LCD-graphical display with LED backlight 128x64 RS-232 I2C or SPI +0 +32 +32 +Display +EA_DOGL128-6 +Graphical,Display,LCD,128x64 https://www.lcd-module.com/eng/pdf/grafik/dogl128-6e.pdf +EA DOGL128 +0 +26 +26 +Display +EA_DOGM128-6 +Graphical,Display,LCD,128x64 https://www.lcd-module.de/eng/pdf/grafik/dogm128e.pdf +EA DOGM128-6 +0 +26 +26 +Display +EA_DOGS104X-A +LCD 4x10 character 3.3V VDD I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/doma/dogs104e.pdf +LCD 4x10 character 3.3V VDD I2C or SPI +0 +14 +14 +Display +EA_DOGXL160-7 +Grapchical,Display,LCD,160x104 http://www.lcd-module.com/eng/pdf/grafik/dogxl160-7e.pdf +EA_DOGXL160-7 +0 +22 +22 +Display +EA_DOGXL160-7_Backlight +Grapchical,Display,LCD,160x104 http://www.lcd-module.com/eng/pdf/grafik/dogxl160-7e.pdf +EA_DOGXL160-7_Backlight +0 +22 +22 +Display +EA_T123X-I2C +http://www.lcd-module.de/pdf/doma/t123-i2c.pdf +3 Line 12 character wide alpha numeric LCD +0 +6 +6 +Display +EA_eDIP160-XXX +LCD-graphical display with LED backlight 160x104 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip160-7e.pdf +LCD-graphical display with LED backlight 160x104 RS-232 I2C or SPI +0 +40 +40 +Display +EA_eDIP240-XXX +LCD graphical display LED backlight 240x128 http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip240-7e.pdf +LCD graphical display LED backlight 240x128 +0 +40 +40 +Display +EA_eDIP320X-XXX +LCD display 320x340 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip320-8e.pdf +LCD display 320x340 RS-232 I2C or SPI +0 +48 +48 +Display +EA_eDIPTFT32-XXX +TFT-graphic display 320x240 16 bit colour with led backlight http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft32-ae.pdf +TFT-graphic display 320x240 16 bit colour with led backlight +0 +40 +40 +Display +EA_eDIPTFT43-ATC +http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft43-ae.pdf +TFT graphical display 480x272 16-bit colour with LED backlight +0 +40 +40 +Display +EA_eDIPTFT43-XXX +TFT graphical display 480x272 16-bit colour with LED backlight http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft43-ae.pdf +TFT graphical display 480x272 16-bit colour with LED backlight +0 +40 +40 +Display +EA_eDIPTFT57-XXX +http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft57-ae.pdf +TFT-graphic display 640x480 16 bit colour +0 +48 +48 +Display +EA_eDIPTFT70-ATC +TFT-graphical display 800x480 16-bit colours with capacitive touch panel http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft70-ae.pdf +TFT-graphical display 800x480 16-bit colours with capacitive touch panel +0 +48 +48 +Display +EA_eDIPTFT70-XXX +TFT-graphical display 800x480 16-bit colours http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft70-ae.pdf +TFT-graphical display 800x480 16-bit colours and touch display +0 +48 +48 +Display +ERM19264 +STN/FSTN LCD 192x64 dot https://www.buydisplay.com/download/manual/ERM19264-1_Series_Datasheet.pdf +ERM19264 Graphics Display 192x64 +0 +20 +20 +Display +HDSM-441B_HDSM-443B +2 Digit 7 segemnt blue LED, right hand decimal, https://docs.broadcom.com/docs/AV02-1589EN +2 Digit 7 segment blue LED +0 +10 +10 +Display +HDSM-541B_HDSM-543B +2 digit 7 segement blue LED with right hand decimal, https://docs.broadcom.com/docs/AV02-1588EN +2 digit 7 segement blue LED with right hand decimal +0 +10 +10 +Display +HDSP-48xx +10-Element Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Bar Graph Array +0 +20 +20 +Display +HDSP-4830 +10-Element Red Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Bar Graph Array +0 +20 +20 +Display +HDSP-4832 +10-Element Red Yellow Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Yellow Green Bar Graph Array +0 +20 +20 +Display +HDSP-4836 +10-Element Red Yellow Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Yellow Green Bar Graph Array +0 +20 +20 +Display +HDSP-4840 +10-Element Yellow Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Yellow Bar Graph Array +0 +20 +20 +Display +HDSP-4850 +10-Element Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Green Bar Graph Array +0 +20 +20 +Display +HLCP-J100 +10-Element Red Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Bar Graph Array +0 +20 +20 +Display +HY1602E +http://www.icbank.com/data/ICBShop/board/HY1602E.pdf +LCD 16x2 Alphanumeric 16pin +0 +20 +16 +Display +LCD-016N002L +16 x 2 Character LCD, http://www.vishay.com/product?docid=37299 +LCD-016N002L 16 x 2 Character LCD +0 +24 +20 +Display +LM16255 +LCD LM16255 16x2 character http://www.datasheetlib.com/datasheet/259542/lm16255_sharp-electronics.html +LCD 12x2 +0 +14 +14 +Display +NHD-0420H1Z +NHD-0420H1Z LCD http://www.newhavendisplay.com/specs/NHD-0420H1Z-FSW-GBW-33V3.pdf +NHD-0420H1Z LCD +0 +16 +16 +Display +NHD-C0220BiZ +NHD-C0220BiZ LCD http://www.newhavendisplay.com/specs/NHD-C0220BiZ-FSW-FBW-3V3M.pdf +NHD-C0220BiZ LCD +0 +10 +10 +Display +NHD-C0220BiZ-FSRGB +NHD-C0220BiZ-FSRGB LCD https://newhavendisplay.com/content/specs/NHD-C0220BiZ-FSRGB-FBW-3VM.pdf +NHD-C0220BiZ-FSRGB 2 x 20 character LCD RGB backlight +0 +12 +12 +Display +NHD-C12832A1Z-FSRGB +128x32 LCD with RGB backlight https://www.newhavendisplay.com/specs/NHD-C12832A1Z-FSRGB-FBW-3V.pdf +lcd rgb st7565 +0 +21 +21 +Display +OLED-128O064D +128x64 OLED display +display oled +0 +30 +30 +Display +RC1602A +http://www.raystar-optronics.com/down.php?ProID=18 +LCD 16x2 Alphanumeric 16pin +0 +22 +18 +Display +WC1602A +LCD 16x2 http://www.wincomlcd.com/pdf/WC1602A-SFYLYHTC06.pdf +LCD 16x2 Alphanumeric 16pin +0 +20 +16 +Display_7Segment +7SEGMENT-LED__HDSM531_HDSM533_SMD +7-Segment Display, HDSM53x, https://docs.broadcom.com/docs/AV02-0713EN +7segment LED HDSM531 HDSM533 +0 +10 +10 +Display_7Segment +7SegmentLED_LTS6760_LTS6780 +7-Segment Display, LTS67x0, http://optoelectronics.liteon.com/upload/download/DS30-2001-355/S6760jd.pdf +7Segment LED LTS6760 LTS6780 +0 +10 +10 +Display_7Segment +AD-121F2 +Single Digit 7-segment RGB LED Display, 1-inch digit height, common anode, http://usasyck.com/products/AD-121F2_cat_e.pdf +RGB LED digit +0 +22 +22 +Display_7Segment +AFF_2x7SEG-DIGIT_10mm +Afficheur 7 segments 10mm DIGIT +AFFICHEUR +0 +16 +16 +Display_7Segment +CA56-12CGKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12CGKWA(Ver.9A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12EWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-12EWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SEKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SEKWA(Ver.7A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SRWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-12SRWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SURKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SURKWA(Ver.8A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SYKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SYKWA(Ver.6A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CC56-12GWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-11GWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CC56-12YWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CC56-12YWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +D1X8K +https://ia800903.us.archive.org/24/items/CTKD1x8K/Cromatek%20D168K.pdf +Single digit 7 segment ultra bright red +0 +10 +10 +Display_7Segment +DA04-11CGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11CGKWA(Ver.6A).pdf +Dubble digit green 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SEKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SEKWA(Ver.9A).pdf +Dubble digit super bright orange 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SURKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SURKWA(Ver.10A).pdf +Dubble digit hyper red 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SYKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SYKWA(Ver.6A).pdf +Dubble digit super bright yellow 7 segment LED display +0 +16 +16 +Display_7Segment +DA56-11CGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11CGKWA(Ver.16A).pdf +Double digit seven segment green LED display +0 +18 +18 +Display_7Segment +DA56-11SEKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SEKWA(Ver.9A).pdf +Double digit seven segment super bright orange LED display +0 +18 +18 +Display_7Segment +DA56-11SURKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SURKWA(Ver.11A).pdf +Double digit seven segment hyper red LED display +0 +18 +18 +Display_7Segment +DA56-11SYKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SYKWA(Ver.11A).pdf +Double digit seven segment super bright yellow LED display +0 +18 +18 +Display_7Segment +DE113-XX-XX +http://www.display-elektronik.de/filter/DE113-RS-20_635.pdf +3 1/5 digit LOW BAT + 7-Segment LCD +0 +40 +40 +Display_7Segment +DE114-RS-20 +http://www.display-elektronik.de/filter/DE113-RS-20_635.pdf +3 1/5 digit reflective LCD LOW-BAT + 7-Segment +0 +40 +40 +Display_7Segment +DE119-XX-XX +https://www.display-elektronik.de/filter/DE119-RS-20_635.pdf +4 digit 7 segment LCD +0 +40 +40 +Display_7Segment +DE122-XX-XX +http://www.display-elektronik.de/filter/DE122-RS-20_635.pdf +6 digit 7 segment LCD +0 +50 +50 +Display_7Segment +DE152-XX-XX +https://tft-module.de/filter/DE152-RS-20_75.pdf +4 digit 7 segment LCD +0 +40 +40 +Display_7Segment +DE170-XX-XX +http://www.display-elektronik.de/filter/DE170-RS-20_75.pdf +3 1/5 digit reflective arrow bat + 7 segment LCD +0 +40 +40 +Display_7Segment +ELD_426XXXX +http://www.everlight.com/file/ProductFile/D426SYGWA-S530-E2.pdf +Double digit 7 segment brilliant yellow green LED +0 +10 +10 +Display_7Segment +HDSP-7401 +One digit 7 segment yellow, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment yellow +0 +10 +10 +Display_7Segment +HDSP-7507 ++-1 overflow 7 segment high efficiency red, https://docs.broadcom.com/docs/AV02-2553EN ++-1 overflow 7 segment high efficiency red +0 +10 +10 +Display_7Segment +HDSP-7801 +One digit 7 segment green, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment green +0 +10 +10 +Display_7Segment +HDSP-7807 ++-1 overflow 7 segment green, https://docs.broadcom.com/docs/AV02-2553EN ++-1 overflow 7 segment green +0 +10 +10 +Display_7Segment +HDSP-A151 +One digit 7 segment red, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment high efficiency red +0 +10 +10 +Display_7Segment +HDSP-A401 +One digit 7 segment orange, common anode, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment orange common anode +0 +10 +10 +Display_7Segment +KCSC02-105 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-105(Ver.9A).pdf +Single digit 7 segement hyper red LED +0 +10 +10 +Display_7Segment +KCSC02-106 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-106(Ver.10A).pdf +Single digit 7 segement super bright orange LED +0 +10 +10 +Display_7Segment +KCSC02-107 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-107(Ver.9A).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +KCSC02-123 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-123(Ver.10A).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +KCSC02-136 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-136(Ver.6B).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +LTC-4627Jx +http://optoelectronics.liteon.com/upload/download/DS30-2001-393/C4627JG.pdf +4 digit 7 segment LED +0 +14 +14 +Display_7Segment +MAN71A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment red LED with right dot +0 +14 +14 +Display_7Segment +MAN72A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment red LED with left dot +0 +14 +14 +Display_7Segment +MAN73A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +Overflow +- 1 red LED +0 +14 +14 +Display_7Segment +MAN3410A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment green LED with dot +0 +14 +14 +Display_7Segment +MAN3420A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment green LED with left dot +0 +14 +14 +Display_7Segment +MAN3610A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment orange LED with right dot +0 +14 +14 +Display_7Segment +MAN3620A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment orange LED with left dot +0 +14 +14 +Display_7Segment +MAN3630A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +Overflow +- 1 orange LED +0 +14 +14 +Display_7Segment +MAN3810A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment yellow LED with right dot +0 +14 +14 +Display_7Segment +MAN3820A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment yellow LED with left dot +0 +14 +14 +Display_7Segment +SA15-11xxx +http://www.kingbrightusa.com/images/catalog/SPEC/SA15-11SRWA.pdf +SA15-11xxx single digit 7 segment display 38.1mm 1.5inch +0 +10 +10 +Display_7Segment +SBC18-11SURKCGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/SBC18-11SURKCGKWA(Ver.6A).pdf +single digit 7 segemnt red/green LED +0 +10 +10 +Display_7Segment +Sx39-1xxxxx +Single digit 7 segment LED display in red, yellow or green colour http://www.kingbrightusa.com/images/catalog/SPEC/sa39-11ewa.pdf +One digit LED 7 segment SA39-11 SC39-11 SA39-12 SC39-12 +0 +10 +10 +Ferrite_THT +LairdTech_28C0236-0JW-10 +Ferrite, vertical, LairdTech 28C0236-0JW-10, https://assets.lairdtech.com/home/brandworld/files/28C0236-0JW-10.pdf, JW Miller core https://www.bourns.com/products/magnetic-products/j.w.-miller-through-hole-ferrite-beads-emi-filters +Ferrite vertical LairdTech 28C0236-0JW-10 +0 +2 +2 +Fiducial +Fiducial_0.5mm_Mask1.5mm +Circular Fiducial, 0.5mm bare copper, 1.5mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_0.5mm_Mask1mm +Circular Fiducial, 0.5mm bare copper, 1mm soldermask opening (Level C) +fiducial +0 +1 +0 +Fiducial +Fiducial_0.75mm_Mask1.5mm +Circular Fiducial, 0.75mm bare copper, 1.5mm soldermask opening (Level B) +fiducial +0 +1 +0 +Fiducial +Fiducial_0.75mm_Mask2.25mm +Circular Fiducial, 0.75mm bare copper, 2.25mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1.5mm_Mask3mm +Circular Fiducial, 1.5mm bare copper, 3mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1.5mm_Mask4.5mm +Circular Fiducial, 1.5mm bare copper, 4.5mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1mm_Mask2mm +Circular Fiducial, 1mm bare copper, 2mm soldermask opening (Level A) +fiducial +0 +1 +0 +Fiducial +Fiducial_1mm_Mask3mm +Circular Fiducial, 1mm bare copper, 3mm soldermask opening (recommended) +fiducial +0 +1 +0 +Filter +Filter_1109-5_1.1x0.9mm +5-pin SAW filter package - 1.1x0.9 mm Body; (see https://www.murata.com/~/media/webrenewal/support/library/catalog/products/filter/rf/p73e.ashx?la=en-gb) +Filter 5 +0 +5 +5 +Filter +Filter_1411-5_1.4x1.1mm +5-pin filter package - 1.4x1.1 mm Body; (see https://global.kyocera.com/prdct/electro/product/pdf/sf14_tdlte.pdf) +Filter 5 +0 +5 +5 +Filter +Filter_Bourns_SRF0905_6.0x9.2mm +https://www.bourns.com/docs/Product-Datasheets/SRF0905.pdf +Line Filter +0 +4 +4 +Filter +Filter_FILTERCON_1FPxx +0.5A, 250VAC, 50/60Hz line filter (https://filtercon.com.pl/wp-content/uploads/2019/07/Karta-katalogowa-FP-12-1.pdf) +EMI filter +0 +4 +4 +Filter +Filter_Mini-Circuits_FV1206 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206.pdf +Mini-Circuits Filter SMD 1206 +0 +6 +4 +Filter +Filter_Mini-Circuits_FV1206-1 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-1.pdf +Mini-Circuits Filter SMD 1206 +0 +6 +6 +Filter +Filter_Mini-Circuits_FV1206-4 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-4.pdf +Mini-Circuits Filter SMD 1206 +0 +8 +4 +Filter +Filter_Mini-Circuits_FV1206-5 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-5.pdf +Mini-Circuits Filter SMD 1206 +0 +8 +4 +Filter +Filter_Mini-Circuits_FV1206-6 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-6.pdf +Mini-Circuits Filter SMD 1206 +0 +14 +8 +Filter +Filter_Mini-Circuits_FV1206-7 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-7.pdf +Mini-Circuits Filter SMD 1206 +0 +5 +3 +Filter +Filter_Murata_BNX025 +https://www.murata.com/en-us/products/productdata/8796778004510/QNFH9101.pdf?1496719830000 +EMI Filter +0 +6 +4 +Filter +Filter_Murata_BNX025_ThermalVias +https://www.murata.com/en-us/products/productdata/8796778004510/QNFH9101.pdf?1496719830000 +EMI Filter +0 +19 +4 +Filter +Filter_Murata_SFECF-6 +SMD Type 10.7MHz Ceramic Filter https://www.murata.com/en-us/products/filter/cerafil/sfecf +10.7MHz smd ceramic +0 +6 +6 +Filter +Filter_Murata_SFECF-6_HandSoldering +SMD Type 10.7MHz Ceramic Filter https://www.murata.com/en-us/products/filter/cerafil/sfecf +10.7MHz smd ceramic +0 +6 +6 +Filter +Filter_SAW-6_3.8x3.8mm +6-pin 3.8 x 3.8mm SAW filter package, https://www.golledge.com/media/3785/mp08167.pdf +SAW filter 6-pin +0 +6 +6 +Filter +Filter_SAW-8_3.8x3.8mm +8-pin 3.8x3.8mm SAW filter, https://www.golledge.com/media/1831/ma05497.pdf +SAW filter 8-pin +0 +8 +8 +Filter +Filter_SAW_Epcos_DCC6C_3x3mm +EPCOS/TDK Electronics/Qualcomm DCC6c SAW filter package based on EPCOS app note 93 (https://www.catagle.com/45-2/PDF_AN93.htm) +SAW filter 6-pin +0 +6 +6 +Filter +Filter_Schaffner_FN405 +Compact PCB mounting EMI filter (https://www.schaffner.com/product/FN405/Schaffner_datasheet_FN405.pdf) +EMI filter +0 +5 +5 +Filter +Filter_Schaffner_FN406 +Ultra Compact EMC Filter (https://www.schaffner.com/product/FN406/Schaffner_datasheet_FN406.pdf) +emi filter +0 +5 +5 +Fuse +FuseHolder_Blade_ATO_Littelfuse_FLR_178.6165 +Littelfuse fuse holder for ATO/FKS blade fuses, 80V, vertical, 20 x 6mm, PCB thickness up to 1.5mm, http://www.littelfuse.com/~/media/commercial-vehicle/datasheets/automotive-fuse-holders/ato/littelfuse-fuse-holder-ato-flr-pcb-datasheet.pdf +ATO FKS blade fuse holder +0 +8 +2 +Fuse +Fuse_0402_1005Metric +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_0603_1608Metric +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_0805_2012Metric +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1206_3216Metric +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1210_3225Metric +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1812_4532Metric +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2010_5025Metric +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2512_6332Metric +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2920_7451Metric +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm +Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm +Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm +Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm +Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm +Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm +Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm +Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm +Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm +Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm +Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm +Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm +Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm +Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_Blade_ATO_directSolder +car blade fuse direct solder +car blade fuse +0 +2 +2 +Fuse +Fuse_Blade_Mini_directSolder +car blade fuse mini, direct solder +car blade fuse mini +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT050 +PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT070 +PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT100 +PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT200 +PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT550 +PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT750 +PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1300 +PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-SM_7.98x5.44mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +Fuse +Fuse_Bourns_MF-SM_9.5x6.71mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +Fuse +Fuse_Bourns_TBU-CA +Bourns TBU-CA Fuse, 2 Pin (https://www.bourns.com/data/global/pdfs/TBU-CA.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Bourns Fuse NoLead +0 +3 +3 +Fuse +Fuse_Littelfuse-LVR100 +Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR100 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-LVR125 +Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR125 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-LVR200 +Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR200 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-NANO2-451_453 +Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf.pdf +Fuse Nano2 +0 +2 +2 +Fuse +Fuse_Littelfuse-NANO2-462 +Littelfuse NANO2, 250VAC/VDC, 350VAC/VDC, 10.5 x 4.5 x 4.5mm, https://www.littelfuse.com/media?resourcetype=datasheets&itemid=6201db33-6e55-43f2-b41f-15e38bdd2c99&filename=littelfuse-fuse-462-datasheet +Fuse Nano2 462 +0 +2 +2 +Fuse +Fuse_Littelfuse-NANO2-885 +Littelfuse NANO2, 350VAC, 450/500VDC, 10.86 x 4.78 x 4.78mm, https://www.littelfuse.com/media?resourcetype=datasheets&itemid=888f12ed-ed3b-4b45-b910-06af8854ad76&filename=littelfuse-fuse-885-datasheet +Fuse Nano2 885 +0 +2 +2 +Fuse +Fuse_Littelfuse_372_D8.50mm +Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf +fuse tht radial +0 +2 +2 +Fuse +Fuse_Littelfuse_395Series +Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, +Fuse TE5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +Fuse +Fuse_Schurter_UMT250 +Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf) +Schurter fuse smd +0 +2 +2 +Fuse +Fuse_Schurter_UMZ250 +Surface Mount Fuse with Clip, 4.2 x 11.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMZ_250.pdf) +fuse smd mount holder +0 +2 +2 +Fuse +Fuse_SunFuse-6HP +SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF +UL/CSA 6x32mm Ceramic Slow Blow Fuse +0 +2 +2 +Fuse +Fuseholder_Blade_ATO_Littelfuse_Pudenz_2_Pin +Fuseholder ATO Blade littelfuse Pudenz 2 Pin +Fuseholder ATO Blade littelfuse Pudenz 2 Pin +0 +2 +2 +Fuse +Fuseholder_Blade_Mini_Keystone_3568 +fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306 +car blade fuse mini +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Bel_FC-203-22_Lateral_P17.80x5.00mm_D1.17mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Lateral, Horizontal, Bel FC-203-22, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0672-fuse-clips-series.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Eaton_1A5601-01_Inline_P20.80x6.76mm_D1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Eaton 1A5601-01, https://www.eaton.com/content/dam/eaton/products/electronic-components/resources/data-sheet/eaton-1axxxx-pcb-fuse-clips-atc-atm-blade-data-sheet.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3512P_Inline_P23.62x7.27mm_D1.02x2.41x1.02x1.57mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3512P, http://www.keyelco.com/product-pdf.cfm?p=1386 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3512_Inline_P23.62x7.27mm_D1.02x1.57mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3512, http://www.keyelco.com/product-pdf.cfm?p=356 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3517_Inline_P23.11x6.76mm_D1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3517, http://www.keyelco.com/product-pdf.cfm?p=354 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3518P_Inline_P23.11x6.76mm_D2.44x1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3518P, http://www.keyelco.com/product-pdf.cfm?p=1387 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_100_Inline_P20.50x4.60mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 100, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_111_Inline_P20.00x5.00mm_D1.05mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 111, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_519_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_111_Lateral_P18.80x5.00mm_D1.17mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 111 (501 and 506), https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 445/030, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_519_Inline_P20.60x5.00mm_D1.00mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 519, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_519_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_520_Inline_P20.50x5.80mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 520, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_521_Lateral_P17.00x5.00mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 521, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_520_521_102071_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Schurter_CQM_Inline_P20.60x5.00mm_D1.00mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Schurter CQM (0752), https://www.schurter.com/en/datasheet/typ_CQM.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Schurter_OG_Lateral_P15.00x5.00mm_D1.3mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Schurter OG, https://ch.schurter.com/en/datasheet/typ_OG__Clip__5x20.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102_122_Inline_P34.21x7.62mm_D1.98mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102/122 Straight Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102_Inline_P34.21x7.62mm_D2.54mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102 Bowed Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_122_Inline_P34.21x7.62mm_D2.54mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 122 Bowed Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102071_Inline_P34.70x7.60mm_D2.00mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102071, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_520_521_102071_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed +Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf +Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed +Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, +Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed +PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf +Fuseholder horizontal open 5x20 Schurter 0031.8201 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed +Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf) +Fuseholder 5x20mm closed horizontal +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed +Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf) +fuse holder vertical 5x20mm +0 +4 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf +Fuseholder 5x20mm horizontal closed +0 +3 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf) +Fuseholder horizontal open 5x20 Schurter 0031.8221 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open +https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf +Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Wuerth_696103101002-SMD_Horizontal_Open +Fuseholder horizontal open 5x20mm 250V 10A Würth 696103101002 +Fuseholder horizontal open 5x20mm 250V 10A +0 +2 +2 +Fuse +Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open +Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf +Fuseholder horizontal open 6.3x32 Schurter 0031.8002 +0 +2 +2 +Fuse +Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf +Fuseholder 6.3x32mm horizontal closed +0 +3 +2 +Fuse +Fuseholder_Keystone_3555-2 +Maxi APX ATX Automotive Blade Fuse Clip Holder https://www.keyelco.com/userAssets/file/M65p40.pdf +Maxi APX ATX Automotive Blade Fuse Clip Holder +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x20mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x25mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x30mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x20mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x25mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x30mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_Nano2_154x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_154_154t_154l_154tl_datasheet.pdf.pdf +SMD Nano2 holder +0 +2 +2 +Fuse +Fuseholder_Littelfuse_Nano2_157x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf +SMD Nano2 holder +0 +2 +2 +Fuse +Fuseholder_TR5_Littelfuse_No560_No460 +Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf +Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +Heatsink +Heatsink_35x26mm_1xFixation3mm_Fischer-SK486-35 +Heatsink, 35mm x 26mm, 1x Fixation 3mm, Fischer SK486-35 +heatsink +0 +1 +1 +Heatsink +Heatsink_38x38mm_SpringFixation +Heatsink, 38x38mm, Spring Fixation, diagonal, +heatsink +0 +4 +1 +Heatsink +Heatsink_62x40mm_2xFixation3mm +Heatsink, 62 x 40mm, 2x 3mm Drills, +heatsink +0 +2 +1 +Heatsink +Heatsink_125x35x50mm_3xFixationM3 +Heatsink, 125x35x50mm, 3 fixation holes 3.2mm +heatsink +0 +0 +0 +Heatsink +Heatsink_AAVID_573300D00010G_TO-263 +Heatsink, 12.70mm x 26.16mm x 10.16, SMD, 18K/W, TO-263, D2 Pak, https://www.shopaavid.com/Product/573300D00000G +Heatsink AAVID TO-263 D2 Pak +0 +2 +1 +Heatsink +Heatsink_AAVID_576802B03900G +Heatsink, 14.48x12.7x19.05mm, TO-220/ TO-262, https://www.boydcorp.com/aavid-datasheets/Board-Level-Cooling-Plug-In-5768.pdf +heatsink +0 +1 +1 +Heatsink +Heatsink_AAVID_590302B03600G +Heatsink, 25.4x25.4x42.54mm, TO-220, https://www.boydcorp.com/aavid-datasheets/Board-Level-Cooling-Channel-5903.pdf +heatsink +0 +2 +2 +Heatsink +Heatsink_AAVID_TV5G_TO220_Horizontal +Heatsink TV5G TO-220 Horizontal, https://www.shopaavid.com/Product/TV-5G +Heatsink TV5G TO-220 Horizontal +0 +0 +0 +Heatsink +Heatsink_Fischer_FK224xx2201_25x8.3mm +25x8.3mm Heatsink, 18K/W, TO-220, https://www.fischerelektronik.de/web_fischer/en_GB/$catalogue/fischerData/PR/FK224_220_1_/datasheet.xhtml?branch=heatsinks +heatsink TO-220 +0 +2 +1 +Heatsink +Heatsink_Fischer_FK24413D2PAK_26x13mm +26x13 mm SMD heatsink for TO-252 TO-263 TO-268, https://www.fischerelektronik.de/pim/upload/fischerData/cadpdf/base/fk_244_13_d2_pak.pdf +heatsink TO-252 TO-263 TO-268 +0 +2 +1 +Heatsink +Heatsink_Fischer_FK24413DPAK_23x13mm +23x13 mm SMD heatsink for TO-252 TO-263 TO-268, https://www.fischerelektronik.de/pim/upload/fischerData/cadpdf/base/fk_244_13_d_pak.pdf +heatsink TO-252 TO-263 TO-268 +0 +2 +1 +Heatsink +Heatsink_Fischer_SK104-STC-STIC_35x13mm_2xDrill2.5mm +Heatsink, 35mm x 13mm, 2x Fixation 2,5mm Drill, Soldering, Fischer SK104-STC-STIC, +Heatsink fischer TO-220 +0 +2 +1 +Heatsink +Heatsink_Fischer_SK104-STCB_35x13mm__2xDrill3.5mm_ScrewM3 +Heatsink, 35mm x 13mm, 2x Fixation 2,5mm Drill, Soldering, Fischer SK104-STC-STIC, +Heatsink fischer TO-220 +0 +2 +1 +Heatsink +Heatsink_Fischer_SK129-STS_42x25mm_2xDrill2.5mm +Heatsink, Fischer SK129 +heatsink fischer +0 +2 +1 +Heatsink +Heatsink_SheetType_50x7mm_2Fixations +Heatsink, Sheet type, 50x7mm, 2 fixations (solder), +Heatsink sheet +0 +2 +1 +Heatsink +Heatsink_Stonecold_HS-130_30x12mm_2xFixation2.5mm +Heatsink, StoneCold HS, https://www.tme.eu/Document/da20d9b42617e16f6777c881dc9e3434/hs-130.pdf +heatsink +0 +2 +1 +Heatsink +Heatsink_Stonecold_HS-132_32x14mm_2xFixation1.5mm +Heatsink, StoneCold HS +heatsink +0 +2 +1 +Heatsink +Heatsink_Stonecold_HS-S01_13.21x6.35mm +Heatsink, Stonecold, HS, https://www.tme.eu/Document/f7f93f538b934e0b08e09747396fb95f/hs-s.pdf +heatsink +0 +0 +0 +Heatsink +Heatsink_Stonecold_HS-S02_13.21x9.53mm +Heatsink, Stonecold, HS, https://www.tme.eu/Document/f7f93f538b934e0b08e09747396fb95f/hs-s.pdf +heatsink +0 +0 +0 +Heatsink +Heatsink_Stonecold_HS-S03_13.21x12.7mm +Heatsink, Stonecold, HS, https://www.tme.eu/Document/f7f93f538b934e0b08e09747396fb95f/hs-s.pdf +heatsink +0 +0 +0 +Inductor_SMD +L_6.3x6.3_H3 +Choke, SMD, 6.3x6.3mm 3mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_7.3x7.3_H3.5 +Choke, SMD, 7.3x7.3mm 3.5mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_7.3x7.3_H4.5 +Choke, SMD, 7.3x7.3mm 4.5mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_10.4x10.4_H4.8 +Choke, SMD, 10.4x10.4mm 4.8mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_12x12mm_H4.5mm +Choke, SMD, 12x12mm 4.5mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_12x12mm_H6mm +Choke, SMD, 12x12mm 6mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_12x12mm_H8mm +Choke, SMD, 12x12mm 8mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_0201_0603Metric +Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +inductor +0 +4 +2 +Inductor_SMD +L_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +4 +2 +Inductor_SMD +L_0402_1005Metric +Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_0603_1608Metric +Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_0805_2012Metric +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_0805_2012Metric_Pad1.05x1.20mm_HandSolder +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_01005_0402Metric +Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +inductor +0 +4 +2 +Inductor_SMD +L_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +4 +2 +Inductor_SMD +L_1008_2520Metric +Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1008_2520Metric_Pad1.43x2.20mm_HandSolder +Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1206_3216Metric +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1206_3216Metric_Pad1.22x1.90mm_HandSolder +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1210_3225Metric +Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1806_4516Metric +Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1806_4516Metric_Pad1.45x1.90mm_HandSolder +Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1812_4532Metric +Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_2010_5025Metric +Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_2512_6332Metric +Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_AVX_LMLP07A7 +Inductor, AVX Kyocera, LMLP Series, style D, 6.6mmx7.3mm, 3.0mm height. (Script generated with StandardBox.py) (https://datasheets.avx.com/LMLPD.pdf) +Inductor LMLP +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-0425 +Inductor, Abracon, ASPI-0425, 4.0x4.0x2.5mm, https://abracon.com/Magnetics/new/ASPI-0425.pdf +Inductor power shielded low-profile +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-0630LR +smd shielded power inductor https://abracon.com/Magnetics/power/ASPI-0630LR.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-3012S +smd shielded power inductor http://www.abracon.com/Magnetics/power/ASPI-3012S.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-4030S +smd shielded power inductor 4x4x3mm, Abracon ASPI-4030S, https://abracon.com/Magnetics/power/ASPI-4030S.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Abracon_ASPIAIG-F4020 +Inductor, Abracon, ASPIAIG-F4020, 4.4x4.4x1.9mm, https://abracon.com/Magnetics/power/ASPIAIG-F4020.pdf +Inductor power shielded +0 +2 +2 +Inductor_SMD +L_Bourns-SRN1060 +Bourns SRN1060 series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRN1060.pdf +Bourns SRN1060 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRN4018 +Bourns SRN4018 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRN4018.pdf +Bourns SRN4018 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRN6028 +Bourns SRN6028 series SMD inductor +Bourns SRN6028 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRN8040_8x8.15mm +Bourns SRN8040 series SMD inductor 8x8.15mm, https://www.bourns.com/docs/Product-Datasheets/SRN8040.pdf +Bourns SRN8040 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRR1005 +Bourns SRR1005 series SMD inductor +Bourns SRR1005 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRU1028_10.0x10.0mm +Bourns SRU1028 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRU1028.pdf +Bourns SRU1028 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRU8028_8.0x8.0mm +Bourns SRU8028 series SMD inductor +Bourns SRU8028 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRU8043 +Bourns SRU8043 series SMD inductor +Bourns SRU8043 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SDR0604 +SMD Power Inductor, https://www.bourns.com/pdfs/SDR0604.pdf +SMD Power Inductor SDR0604 +0 +2 +2 +Inductor_SMD +L_Bourns_SDR1806 +https://www.bourns.com/docs/Product-Datasheets/SDR1806.pdf +Bourns SDR1806 +0 +2 +2 +Inductor_SMD +L_Bourns_SRF1260 +Inductor, Bourns, SRF1260, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://www.bourns.com/docs/Product-Datasheets/SRF1260.pdf) +Inductor Bourns_SRF1260 +0 +4 +4 +Inductor_SMD +L_Bourns_SRN6045TA +http://www.bourns.com/docs/product-datasheets/srn6045ta.pdf +Semi-shielded Power Inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRN8040TA +https://www.bourns.com/docs/product-datasheets/srn8040ta.pdf +Inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1038C_10.0x10.0mm +Bourns SRP1038C series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1038C.pdf +Bourns SRP1038C SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1050WA +Inductor, Bourns, SRP1050WA, 10.1mmx10mm (Script generated with StandardBox.py) (https://www.bourns.com/docs/product-datasheets/SRP1050WA.pdf) +Inductor Bourns_SRP1050WA +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1245A +Bourns SRP1245A series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1245A.pdf +Bourns SRP1245A SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1770TA_16.9x16.9mm +Bourns SRP1770TA series SMD Inductor http://www.bourns.com/docs/Product-Datasheets/SRP1770TA.pdf +Bourns SRP1770TA series SMD Inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP2313AA +Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/product-datasheets/srp2313aa.pdf +Bourns SRR1260 SMD inductor +0 +4 +2 +Inductor_SMD +L_Bourns_SRP5030T +Inductor, Bourns, SRP5030T, 5.7mmx5.2mm (Script generated with StandardBox.py) (https://www.bourns.com/data/global/pdfs/SRP5030T.pdf) +Inductor Bourns_SRP5030T +0 +2 +2 +Inductor_SMD +L_Bourns_SRP7028A_7.3x6.6mm +Shielded Power Inductors (https://www.bourns.com/docs/product-datasheets/srp7028a.pdf) +Shielded Inductors Bourns SMD SRP7028A +0 +2 +2 +Inductor_SMD +L_Bourns_SRR1208_12.7x12.7mm +Bourns SRP1208 series SMD inductor https://www.bourns.com/pdfs/SRR1208.pdf +Bourns SRP1208 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRR1210A +Bourns SRR1210A series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRR1210A.pdf +Bourns SRR1210A SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRR1260 +Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRR1260.pdf +Bourns SRR1260 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRU5016_5.2x5.2mm +Bourns SRU5016 series shielded SMD power inductor, 1.6mm height https://www.bourns.com/docs/product-datasheets/sru5016.pdf +Bourns SRU5016 SMD inductor +0 +4 +3 +Inductor_SMD +L_Cenker_CKCS3012 +Inductor, Cenker, CKCS3012, 3.0x3.0x1.3mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS3015 +Inductor, Cenker, CKCS3015, 3.0x3.0x1.7mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS4018 +Inductor, Cenker, CKCS4018, 4.0x4.0x1.8mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS4020 +Inductor, Cenker, CKCS4020, 4.0x4.0x2.0mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS4030 +Inductor, Cenker, CKCS4030, 4.0x4.0x3.0mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS5020 +Inductor, Cenker, CKCS5020, 5.0x5.0x2.1mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS5040 +Inductor, Cenker, CKCS5040, 5.0x5.0x4.0mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS6020 +Inductor, Cenker, CKCS6020, 6.0x6.0x2.1mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS6028 +Inductor, Cenker, CKCS6028, 6.0x6.0x3.0mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS6045 +Inductor, Cenker, CKCS6045, 6.0x6.0x4.7mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS8040 +Inductor, Cenker, CKCS8040, 8.0x8.0x4.2mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS8060 +Inductor, Cenker, CKCS8060, 8.0x8.0x6.2mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS8080 +Inductor, Cenker, CKCS8080, 8.0x8.0x8.0mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS201610 +Inductor, Cenker, CKCS201610, 2.0x1.6x1.05mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS252010 +Inductor, Cenker, CKCS252010, 2.5x2.0x1.05mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS252012 +Inductor, Cenker, CKCS252012, 2.5x2.0x1.25mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3010S +Inductor, Changjiang, FNR3010S, 3.0x3.0x1.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3012S +Inductor, Changjiang, FNR3012S, 3.0x3.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3015S +Inductor, Changjiang, FNR3015S, 3.0x3.0x1.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3021S +Inductor, Changjiang, FNR3021S, 3.0x3.0x2.35mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4010S +Inductor, Changjiang, FNR4010S, 4.0x4.0x1.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4012S +Inductor, Changjiang, FNR4012S, 4.0x4.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4015S +Inductor, Changjiang, FNR4015S, 4.0x4.0x1.65mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4018S +Inductor, Changjiang, FNR4018S, 4.0x4.0x1.8mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4020S +Inductor, Changjiang, FNR4020S, 4.0x4.0x2.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4026S +Inductor, Changjiang, FNR4026S, 4.0x4.0x2.6mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4030S +Inductor, Changjiang, FNR4030S, 4.0x4.0x3.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5012S +Inductor, Changjiang, FNR5012S, 5.0x5.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5015S +Inductor, Changjiang, FNR5015S, 5.0x5.0x1.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5020S +Inductor, Changjiang, FNR5020S, 5.0x5.0x2.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5030S +Inductor, Changjiang, FNR5030S, 5.0x5.0x3.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5040S +Inductor, Changjiang, FNR5040S, 5.0x5.0x4.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5045S +Inductor, Changjiang, FNR5045S, 5.0x5.0x4.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6020S +Inductor, Changjiang, FNR6020S, 6.0x6.0x2.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6028S +Inductor, Changjiang, FNR6028S, 6.0x6.0x2.8mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6040S +Inductor, Changjiang, FNR6040S, 6.0x6.0x4.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6045S +Inductor, Changjiang, FNR6045S, 6.0x6.0x4.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR8040S +Inductor, Changjiang, FNR8040S, 8.0x8.0x4.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR8050S +Inductor, Changjiang, FNR8050S, 8.0x8.0x5.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR8065S +Inductor, Changjiang, FNR8065S, 8.0x8.0x6.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR252010S +Inductor, Changjiang, FNR252010S, 2.5x2.0x1.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR252012S +Inductor, Changjiang, FNR252012S, 2.5x2.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL1365 +Inductor, Changjiang, FXL1365, 12.9x12.6x6.5mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2303201000_cjiang--Changjiang-Microelectronics-Tech-FXL1365-330-M_C5359277.pdf +Inductor power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00040415 +Inductor, Chilisin, BMRA00040415, 4.6x4.1x1.5mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00040420 +Inductor, Chilisin, BMRA00040420, 4.6x4.1x2.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00050520 +Inductor, Chilisin, BMRA00050520, 5.7x5.4x1.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00050530 +Inductor, Chilisin, BMRA00050530, 5.7x5.4x3.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00050512 +Inductor, Chilisin, BMRB00050512, 5.7x5.4x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00050518 +Inductor, Chilisin, BMRB00050518, 5.7x5.4x1.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00050518-B +Inductor, Chilisin, BMRB00050518-B, 5.4x5.2x1.6mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060612 +Inductor, Chilisin, BMRB00060612, 7.3x6.6x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060618 +Inductor, Chilisin, BMRB00060618, 7.3x6.6x1.6mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060624 +Inductor, Chilisin, BMRB00060624, 7.3x6.6x2.4mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060650 +Inductor, Chilisin, BMRB00060650, 7.3x6.6x5.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00101040 +Inductor, Chilisin, BMRF00101040, 11.6x10.1x4.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00131350 +Inductor, Chilisin, BMRF00131350, 13.8x12.6x5.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00131360 +Inductor, Chilisin, BMRF00131360, 13.8x12.6x5.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00171770 +Inductor, Chilisin, BMRF00171770, 17.15x17.15x6.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRG00101030 +Inductor, Chilisin, BMRG00101030, 11.6x10.1x3.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRG00131360 +Inductor, Chilisin, BMRG00131360, 13.8x12.6x6.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00040412 +Inductor, Chilisin, BMRx00040412, 4.6x4.1x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00050512-B +Inductor, Chilisin, BMRx00050512-B, 5.4x5.2x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00050515 +Inductor, Chilisin, BMRx00050515, 5.7x5.4x1.5mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00060615 +Inductor, Chilisin, BMRx00060615, 7.3x6.6x1.3mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00060630 +Inductor, Chilisin, BMRx00060630, 7.3x6.6x3.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS3010 +Shielded Power Inductor SMD 3x3x1mm, Coilcraft LPS3010, https://www.coilcraft.com/pdfs/lps3010.pdf +inductor low profile +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS3314 +SMD Inductor, 3.3x3.3x1.4mm, Coilcraft LPS3314, https://www.coilcraft.com/pdfs/lps3314.pdf +L Coilcraft LPS3314 +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS4018 +SMD Inductor Coilcraft LPS4018 https://www.coilcraft.com/pdfs/lps4018.pdf +L Coilcraft LPS4018 +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS4414 +SMD Inductor Coilcraft LPS4414, https://www.coilcraft.com/getmedia/fa8805ca-b278-4819-915a-b5cf632f0239/lps4414.pdf +L Coilcraft LPS4414 +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS5030 +Shielded Power Inductor SMD, Coilcraft LPS5030, https://www.coilcraft.com/pdfs/lps5030.pdf, StepUp generated footprint +inductor +0 +2 +2 +Inductor_SMD +L_Coilcraft_MOS6020-XXX +Inductor, Coilcraft, MOS6020-XXX, 6.8x6.0x2.4mm, (https://www.coilcraft.com/getmedia/c3eb212d-a1a9-4db6-9f14-a01f21fd984c/mos6020.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1038-XXX +Inductor, Coilcraft, MSS1038-XXX, 10.2x10.0x3.8mm, (https://www.coilcraft.com/getmedia/3e03a7b4-3b1d-4f31-b1f3-e7c621695ac0/mss1038.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1038T-XXX +Inductor, Coilcraft, MSS1038T-XXX, 10.2x10.0x3.8mm, (https://www.coilcraft.com/getmedia/ea4800a7-100e-49d9-9bbc-6ba8b238dc0d/mss1038t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1048-XXX +Inductor, Coilcraft, MSS1048-XXX, 10.2x10.0x4.8mm, (https://www.coilcraft.com/getmedia/bd5140ec-db32-4346-a029-5182269dc08e/mss1048.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1048T-XXX +Inductor, Coilcraft, MSS1048T-XXX, 10.2x10.0x4.8mm, (https://www.coilcraft.com/getmedia/bd5140ec-db32-4346-a029-5182269dc08e/mss1048t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1210-XXX +Inductor, Coilcraft, MSS1210-XXX, 12.0x12.0x10.0mm, (https://www.coilcraft.com/getmedia/f1a1bc5f-bdff-42f8-9ca8-1a0fb1d5094f/MSS1210.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1210H-XXX +Inductor, Coilcraft, MSS1210H-XXX, 12.0x12.0x10.0mm, (https://www.coilcraft.com/getmedia/52078704-21eb-4c2b-9b72-1e07b4a2e252/mss1210h.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1246-XXX +Inductor, Coilcraft, MSS1246-XXX, 12.0x12.0x4.6mm, (https://www.coilcraft.com/getmedia/960fadbe-0ca0-40e2-ae20-64edb15f3a07/mss1246.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1246H-XXX +Inductor, Coilcraft, MSS1246H-XXX, 12.0x12.0x4.65mm, (https://www.coilcraft.com/getmedia/25f62276-187e-4c2c-9b9b-4568b9a9a423/mss1246h.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1246T-XXX +Inductor, Coilcraft, MSS1246T-XXX, 12.0x12.0x4.6mm, (https://www.coilcraft.com/getmedia/dec41de3-f4b7-4c07-b144-cc21921ccfd5/mss1246t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1260-XXX +Inductor, Coilcraft, MSS1260-XXX, 12.0x12.0x6.0mm, (https://www.coilcraft.com/getmedia/febefb9b-60f9-4a2c-8525-9c396f34e363/mss1260.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1260H-XXX +Inductor, Coilcraft, MSS1260H-XXX, 12.0x12.0x6.0mm, (https://www.coilcraft.com/getmedia/352767ff-7c30-4312-ab84-989443b4047e/mss1260h.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1260T-XXX +Inductor, Coilcraft, MSS1260T-XXX, 12.0x12.0x6.0mm, (https://www.coilcraft.com/getmedia/ce88ed45-272e-474e-a25e-981003944639/mss1260t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1278-XXX +Inductor, Coilcraft, MSS1278-XXX, 12.0x12.0x7.8mm, (https://www.coilcraft.com/getmedia/6eb5ea38-40e4-41a6-9f92-3cdf8e907dcd/mss1278.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1278H-XXX +Inductor, Coilcraft, MSS1278H-XXX, 12.0x12.0x7.8mm, (https://www.coilcraft.com/getmedia/72ffd561-3941-457d-b0e7-bb55b1b2d1a7/MSS1278H.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1278T-XXX +Inductor, Coilcraft, MSS1278T-XXX, 12.0x12.0x7.8mm, (https://www.coilcraft.com/getmedia/e8d7b32a-defa-4500-bc0f-6ecc558fcde6/mss1278t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1514V-XXX +Inductor, Coilcraft, MSS1514V-XXX, 15.0x15.0x8.6mm, (https://www.coilcraft.com/getmedia/a1319e1c-d611-4bc0-be30-c17e52e4e667/mss1514v.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1583-XXX +Inductor, Coilcraft, MSS1583-XXX, 15.0x15.0x8.6mm, (https://www.coilcraft.com/getmedia/fbfe8ea7-f5d8-4484-859e-2285f427326d/mss1583.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1812T-XXX +Inductor, Coilcraft, MSS1812T-XXX, 18.3x18.3x12.0mm, (https://www.coilcraft.com/getmedia/148807de-bc83-43dc-9fce-d4df334864cd/mss1812t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS7348-XXX +Inductor, Coilcraft, MSS7348-XXX, 7.0x7.0x4.5mm, (https://www.coilcraft.com/getmedia/018a2bda-2036-409a-8b19-945e531c18b5/MSS7348.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1010-XXX +Inductor, Coilcraft, XAL1010-XXX, 10.5x11.8x10.0mm, https://www.coilcraft.com/getmedia/dd74e670-e705-456a-9a69-585fe02eaf3c/xal1010.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1030-XXX +Inductor, Coilcraft, XAL1030-XXX, 10.5x11.8x3.1mm, https://www.coilcraft.com/getmedia/7b108457-7731-456d-9256-ca72f2e1a551/xal1030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1060-XXX +Inductor, Coilcraft, XAL1060-XXX, 10.5x11.8x6.0mm, https://www.coilcraft.com/getmedia/8909f858-b441-4d60-acff-8b8ca36f9ede/xal1060.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1350-XXX +Inductor, Coilcraft, XAL1350-XXX, 13.2x14.2x5.0mm, https://www.coilcraft.com/getmedia/dc536f86-3a3b-454f-950e-8e153260e61c/xal1350.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-103 +Inductor, Coilcraft, XAL1510-103, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-153 +Inductor, Coilcraft, XAL1510-153, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-223 +Inductor, Coilcraft, XAL1510-223, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-333 +Inductor, Coilcraft, XAL1510-333, 15.4x16.4x11.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-472 +Inductor, Coilcraft, XAL1510-472, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-682 +Inductor, Coilcraft, XAL1510-682, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-822 +Inductor, Coilcraft, XAL1510-822, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1513-153 +Inductor, Coilcraft, XAL1513-153, 15.4x16.4x13.0mm, https://www.coilcraft.com/getmedia/129ad6f3-0445-47fd-a0b3-edeb49177c17/xal1513.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-102 +Inductor, Coilcraft, XAL1580-102, 15.4x16.4x8.2mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-132 +Inductor, Coilcraft, XAL1580-132, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-182 +Inductor, Coilcraft, XAL1580-182, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-202 +Inductor, Coilcraft, XAL1580-202, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-302 +Inductor, Coilcraft, XAL1580-302, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-401 +Inductor, Coilcraft, XAL1580-401, 15.4x16.4x8.2mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-452 +Inductor, Coilcraft, XAL1580-452, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-532 +Inductor, Coilcraft, XAL1580-532, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-612 +Inductor, Coilcraft, XAL1580-612, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-741 +Inductor, Coilcraft, XAL1580-741, 15.4x16.4x8.2mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL4020-XXX +Inductor, Coilcraft, XAL4020-XXX, 4.3x4.3x2.1mm, https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL4030-XXX +Inductor, Coilcraft, XAL4030-XXX, 4.3x4.3x3.1mm, https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL4040-XXX +Inductor, Coilcraft, XAL4040-XXX, 4.3x4.3x4.1mm, https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL5020-XXX +Inductor, Coilcraft, XAL5020-XXX, 5.48x5.68x2.0mm, https://www.coilcraft.com/getmedia/1941eff1-c018-493c-8cd6-d88d2edf5029/xal5020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL5030-XXX +Inductor, Coilcraft, XAL5030-XXX, 5.48x5.68x3.1mm, https://www.coilcraft.com/getmedia/49bc46c8-4b2c-45b9-9b6c-2eaa235ea698/xal50xx.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL5050-XXX +Inductor, Coilcraft, XAL5050-XXX, 5.48x5.68x5.1mm, https://www.coilcraft.com/getmedia/49bc46c8-4b2c-45b9-9b6c-2eaa235ea698/xal50xx.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL6020-XXX +Inductor, Coilcraft, XAL6020-XXX, 6.56x6.76x2.1mm, https://www.coilcraft.com/getmedia/467ff589-8942-4e57-92d0-5bef6e04ce09/xal6020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL6030-XXX +Inductor, Coilcraft, XAL6030-XXX, 6.56x6.76x3.1mm, https://www.coilcraft.com/getmedia/ea51f14b-7f32-4dc6-8dfe-d4b70549040f/xal60xx.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL6060-XXX +Inductor, Coilcraft, XAL6060-XXX, 6.56x6.76x6.1mm, https://www.coilcraft.com/getmedia/ea51f14b-7f32-4dc6-8dfe-d4b70549040f/xal60xx.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-102 +Inductor, Coilcraft, XAL7020-102, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-122 +Inductor, Coilcraft, XAL7020-122, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-151 +Inductor, Coilcraft, XAL7020-151, 8.0x8.0x2.05mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-152 +Inductor, Coilcraft, XAL7020-152, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-222 +Inductor, Coilcraft, XAL7020-222, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-271 +Inductor, Coilcraft, XAL7020-271, 8.0x8.0x2.05mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-331 +Inductor, Coilcraft, XAL7020-331, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-471 +Inductor, Coilcraft, XAL7020-471, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-681 +Inductor, Coilcraft, XAL7020-681, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-102 +Inductor, Coilcraft, XAL7030-102, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-103 +Inductor, Coilcraft, XAL7030-103, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-152 +Inductor, Coilcraft, XAL7030-152, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-161 +Inductor, Coilcraft, XAL7030-161, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-222 +Inductor, Coilcraft, XAL7030-222, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-272 +Inductor, Coilcraft, XAL7030-272, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-301 +Inductor, Coilcraft, XAL7030-301, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-332 +Inductor, Coilcraft, XAL7030-332, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-472 +Inductor, Coilcraft, XAL7030-472, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-562 +Inductor, Coilcraft, XAL7030-562, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-601 +Inductor, Coilcraft, XAL7030-601, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-682 +Inductor, Coilcraft, XAL7030-682, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-822 +Inductor, Coilcraft, XAL7030-822, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7050-XXX +Inductor, Coilcraft, XAL7050-XXX, 7.7x8.0x5.0mm, https://www.coilcraft.com/getmedia/13a991b3-4273-4be3-81ba-f3cf372b4691/xal7050.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7070-XXX +Inductor, Coilcraft, XAL7070-XXX, 7.7x8.0x7.0mm, https://www.coilcraft.com/getmedia/1ba55433-bcc8-4838-9b21-382f497e12e0/xal7070.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL8050-223 +Inductor, Coilcraft, XAL8050-223, 8.3x8.8x5.0mm, https://www.coilcraft.com/getmedia/5885ede8-ea4f-464a-9dcb-18dbf143a845/xal8050.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL8080-XXX +Inductor, Coilcraft, XAL8080-XXX, 8.3x8.8x8.0mm, https://www.coilcraft.com/getmedia/345e50d6-a804-4ecb-9a92-5185221faf3e/xal8080.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XFL2010 +Coilcraft XFL2010, Shielded power inductor, 0808, 1.9x2.0mm, https://www.coilcraft.com/getmedia/50382b97-998f-4b75-b5ee-4a93b0ac4411/xfl2010.pdf +miniature +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4020 +L_Coilcraft_XxL4020 https://www.coilcraft.com/pdfs/xfl4020.pdf +L Coilcraft XxL4020 +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4030 +L_Coilcraft_XxL4030 https://www.coilcraft.com/pdfs/xfl4030.pdf +L Coilcraft XxL4030 +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4040 +L_Coilcraft_XxL4040 https://www.coilcraft.com/pdfs/xal4000.pdf +L Coilcraft XxL4040 +0 +2 +2 +Inductor_SMD +L_CommonModeChoke_Coilcraft_0603USB +Coilcraft 0603USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0603usb.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Coilcraft_0805USB +Coilcraft 0805USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0805usb.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Coilcraft_1812CAN +Coilcraft 1812CAN Series Common Mode Choke, https://www.coilcraft.com/pdfs/1812can.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Murata_DLW5BTMxxxSQ2x_5x5mm +Wire Wound Chip Common Mode Choke Coil SMD, Murata DLW5BTxxxSQ2x, https://www.murata.com/products/productdata/8796762701854/EFLC0020.pdf, manual footprint +inductor common mode choke +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_TDK_ACM2520-2P +TDK ACM2520 common-mode filter, SMD, 2x2.5mm, height 1.2mm https://product.tdk.com/system/files/dam/doc/product/emc/emc/cmf_cmc/catalog/cmf_commercial_signal_acm2520_en.pdf +ACM2520 common-mode filter 4 pin +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_TDK_ACM2520-3P +TDK ACM2520 common-mode filter, SMD, 2x2.5mm, height 1.2mm https://product.tdk.com/system/files/dam/doc/product/emc/emc/cmf_cmc/catalog/cmf_commercial_signal_acm2520_en.pdf +ACM2520 common-mode filter 6 pin +0 +6 +6 +Inductor_SMD +L_CommonModeChoke_TDK_ACM7060 +ACM7060 SMT Common Mode Filter, https://product.tdk.com/system/files/dam/doc/product/emc/emc/cmf_cmc/catalog/cmf_commercial_power_acm7060_en.pdf +SMT Common Mode Line Filter +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Wuerth_WE-SL5 +WE-SL5 SMT Common Mode Line Filter, 9.5x8.3mm, height 5mm, https://www.we-online.com/components/products/datasheet/744273222.pdf +SMT Common Mode Line Filter +0 +4 +4 +Inductor_SMD +L_CommonMode_Delevan_4222 +API Delevan, Surface Mount Common Mode Bead, 4222 4222R, http://www.delevan.com/seriesPDFs/4222.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonMode_Wuerth_WE-SL2 +http://katalog.we-online.de/en/pbs/WE-SL2?sid=5fbec16187#vs_t1:c1_ct:1 +Wuerth WE-SL2 +0 +4 +4 +Inductor_SMD +L_CommonMode_Wurth_WE-CNSW-1206 +WE-CNSW SMT Common Mode Line Filter, https://www.we-online.com/components/products/datasheet/744232090.pdf +common mode choke 1206 cnsw +0 +4 +4 +Inductor_SMD +L_Eaton_MCL2012V1 +Inductor, Eaton, MCL2012V1, 2.0x1.2x0.9mm, https://eu.mouser.com/datasheet/2/87/eaton-mcl2012v1-multilayer-chip-inductor-data-shee-1622891.pdf +Inductor ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Fastron_PISN +Choke, Drossel, PISN, SMD, Fastron, +Choke Drossel PISN SMD Fastron +0 +2 +2 +Inductor_SMD +L_Fastron_PISN_Handsoldering +Choke, Drossel, PISN, SMD, Fastron, +Choke Drossel PISN SMD Fastron +0 +2 +2 +Inductor_SMD +L_Fastron_PISR +Choke, Drossel, PISR, Fastron, SMD, +Choke Drossel PISR Fastron SMD +0 +2 +2 +Inductor_SMD +L_Fastron_PISR_Handsoldering +Choke, Drossel, PISR, Fastron, SMD, +Choke Drossel PISR Fastron SMD +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0302 +Ferrocore DLG-0302 unshielded SMD power inductor, 3.0x2.8x2.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0302 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0403 + Ferrocore DLG-0403 unshielded SMD power inductor, 4.5x4.0x3.2mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0403 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0504 +Ferrocore DLG-0504 unshielded SMD power inductor, 5.8x5.2x4.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0504 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0703 +Ferrocore DLG-0703 unshielded SMD power inductor, 7.8x7.0x3.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0703 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0705 +Ferrocore DLG-0705 unshielded SMD power inductor, 7.8x7.0x5.0mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0705 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-1004 +Ferrocore DLG-1004 unshielded SMD power inductor, 10.0x9.0x4.0mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-1004 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-1005 +Ferrocore DLG-1005 unshielded SMD power inductor, 10.0x9.0x5.4mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-1005 +0 +2 +2 +Inductor_SMD +L_KOHERelec_MDA7030 +Inductor, KOHERelec, MDA7030, 7.1x6.6x2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2401252310_KOHERelec-MDA7030-220M_C2847487.pdf +Inductor high-current power shielded +0 +2 +2 +Inductor_SMD +L_Murata_DEM35xxC +https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundferritetypeforpl/m_dem3518c.ashx +Inductor SMD DEM35xxC +0 +2 +2 +Inductor_SMD +L_Murata_DFE201610P +Inductor, Murata, DFE201610P, 2.0x1.6x1.0mm, https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundmetalalloychiptype/m_dfe201610p.ashx +Inductor power chip flatwire +0 +2 +2 +Inductor_SMD +L_Murata_LQH2MCNxxxx02_2.0x1.6mm +Inductor, Murata, LQH2MCN_02 series, 1.6x2.0x0.9mm (https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0053.pdf) +chip coil inductor Murata LQH2MC +0 +2 +2 +Inductor_SMD +L_Murata_LQH55DN_5.7x5.0mm +Inductor, SMD, 5.7x5.0x4.7mm, https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0045.pdf +inductor smd +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_1turn_HDM0131A +Neosid, Air-Coil, SML, 1turn, HDM0131A, +Neosid Air-Coil SML 1turn HDM0131A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_2turn_HAM0231A +Neosid, Air-Coil, SML, 2turn, HAM0231A, +Neosid Air-Coil SML 2turn HAM0231A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_2turn_HDM0231A +Neosid, Air-Coil, SML, 2turn, HDM0231A, +Neosid Air-Coil SML 2turn HDM0231A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_3turn_HAM0331A +Neosid, Air-Coil, SML, 2turn, HAM0331A, +Neosid Air-Coil SML 3turn HAM0331A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_3turn_HDM0331A +Neosid, Air-Coil, SML, 3turn, HDM0331A, +Neosid Air-Coil SML 3turn HDM0331A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_4turn_HAM0431A +Neosid, Air-Coil, SML, 4turn, HAM0431A, +Neosid Air-Coil SML 4turn HAM0431A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_4turn_HDM0431A +Neosid, Air-Coil, SML, 4turn, HDM0431A, +Neosid Air-Coil SML 4turn HDM0431A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_5turn_HAM0531A +Neosid, Air-Coil, SML, 5turn, HAM0531A, +Neosid Air-Coil SML 5turn HAM0531A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_5turn_HDM0531A +Neosid, Air-Coil, SML, 5turn, HDM0531A, +Neosid Air-Coil SML 5turn HDM0531A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6-10turn_HAM0631A-HAM1031A +Neosid, Air-Coil, SML, 6-10turn, HAM0631A-HAM1031A, +Neosid Air-Coil SML 6-10turn HAM0631A-HAM1031A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6-10turn_HDM0431A-HDM1031A +Neosid, Air-Coil, SML, 6-10turn, HDM0431A-HDM1031A, +Neosid Air-Coil SML 6-10turn HDM0431A-HDM1031A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6turn_HAM0631A +Neosid, Air-Coil, SML, 6turn, HAM0631A, +Neosid Air-Coil SML 6turn HAM0631A +0 +2 +2 +Inductor_SMD +L_Neosid_MicroCoil_Ms36-L +Neosid, Micro Coil, Inductor, Ms36-L, SMD, Fixed inductor, anti clockwise, https://neosid.de/en/products/inductors/rod-core-chokes/smd-rod-core-chokes/52026/ms-36/7-h?c=94 +Neosid Micro Coil Inductor Ms36-L SMD Fixed inductor anti clockwise +0 +2 +2 +Inductor_SMD +L_Neosid_Ms42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_Ms42.pdf +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_Ms50 +Neosid, Power Inductor, Ms50, SMD, Fixed inductor, https://neosid.de/import-data/product-pdf/neoFestind_Ms50.pdf +Neosid Power Inductor Ms50 SMD Fixed inductor +0 +2 +2 +Inductor_SMD +L_Neosid_Ms50T +Neosid, Power Inductor, Ms50T, SMD, Fixed inductor, high temperature, https://neosid.de/import-data/product-pdf/neoFestind_Ms50T.pdf +Neosid Power Inductor Ms50T SMD Fixed inductor high temperature +0 +2 +2 +Inductor_SMD +L_Neosid_Ms85 +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85.pdf +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms85T +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85T.pdf +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95 +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95T +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95T.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95a +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95a.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE95H +Neosid, Inductor,SM-NE95H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE95H.pdf +Neosid Inductor SM-NE95H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE127 +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE127_HandSoldering +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE150 +Neosid, Inductor, SM-NE150, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE150.pdf +Neosid Inductor SM-NE150 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0512H +Neosid, Inductor, PIC0512H, Power Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0512H.pdf +Neosid Inductor PIC0512H Power Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0602H +Neosid, Power Inductor, SM-PIC0602H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0602H.pdf +Neosid Power Inductor SM-PIC0602H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0612H +Neosid, Power Inductor, SM-PIC0612H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0612H.pdf +Neosid Power Inductor SM-PIC0612H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC1004H +Neosid, Inductor, SM-PIC1004H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC1004H.pdf +Neosid Inductor SM-PIC1004H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SMS-ME3010 +Neosid, Inductor, SMS-ME3010, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3010.pdf +Neosid Inductor SMS-ME3010 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMS-ME3015 +Neosid, Power Inductor, SMS-ME3015, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3015.pdf +Neosid Power Inductor SMS-ME3015 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs42.pdf +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs50 +Neosid, Inductor, SMs50, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs50.pdf +Neosid Inductor SMs50 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs85 +Neosid, Inductor, SMs85, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs85.pdf +Neosid Inductor SMs85 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs95_SMs95p +Neosid, Inductor, SMs95, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMs95SMs95p.pdf +Neosid Inductor SMs95 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Pulse_P059x +1:1, Power Inductor, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/p0599nl +inductor coil choke +0 +4 +4 +Inductor_SMD +L_Pulse_PA4320 +Inductor SMD Pulse PA4320 http://productfinder.pulseeng.com/products/datasheets/P787.pdf +Inductor SMD Pulse PA4320 +0 +2 +2 +Inductor_SMD +L_Pulse_PA4344 +Pulse PA4344 / PM4344 Series SMD Inductors https://productfinder.pulseelectronics.com/api/public/uploads/product-attachments/datasheet_p771_1608107700.pdf +Pulse PA4344 PM4344 Series SMD Inductors +0 +2 +2 +Inductor_SMD +L_Pulse_PA4349 +Shielded Molded High Current Power Inductors 23.5x22mm, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/pa4349.104anlt +Shielded Molded High Current Power Inductor +0 +2 +2 +Inductor_SMD +L_SOREDE_SNR.1050_10x10x5mm +Sorede 10x10x5mm Power Inductor, https://datasheet.lcsc.com/lcsc/2201141530_SOREDE-SNR-1050-TYD4R7MT00_C2942304.pdf +Inductor Sorede SNR +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI62 +Inductor, SXN, SMDRI62, 6.5x6.8x3.0mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI64 +Inductor, SXN, SMDRI64, 6.5x6.8x5.0mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI73 +Inductor, SXN, SMDRI73, 7.5x7.5x3.4mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI74 +Inductor, SXN, SMDRI74, 7.5x7.5x4.5mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI124 +Inductor, SXN, SMDRI124, 12.3x12.3x4.5mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI125 +Inductor, SXN, SMDRI125, 12.3x12.3x6.0mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI127 +Inductor, SXN, SMDRI127, 12.3x12.3x8.0mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_Sagami_CER1242B +Inductor, Sagami, h=4.5mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CER1257B +Inductor, Sagami, h=6.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CER1277B +Inductor, Sagami, h=8.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CWR1242C +Sagami power inductor, CWR1242C, H=4.5mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_Sagami_CWR1257C +Sagami power inductor, CWR1242C, H=6.0mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_Sagami_CWR1277C +Sagami power inductor, CWR1242C, H=7.7mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_SigTra_SC3316F +http://www.signaltransformer.com/sites/all/pdf/smd/P080_SC3316F.pdf +Choke +0 +2 +2 +Inductor_SMD +L_Sumida_CDMC6D28_7.25x6.5mm +SMD Power Inductor (http://products.sumida.com/products/pdf/CDMC6D28.pdf) +Inductor Sumida SMD CDMC6D28 +0 +2 +2 +Inductor_SMD +L_Sumida_CR75 +Inductor, Sumida, 8.1mm × 7.3mm × 5.5 mm, Unshielded, http://products.sumida.com/products/pdf/CR75.pdf +Inductor SMD CR75 Unshielded +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0402S +Inductor, Sunlord, MWSA0402S, 4.4x4.2x1.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0412S +Inductor, Sunlord, MWSA0412S, 4.4x4.2x1.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0503S +Inductor, Sunlord, MWSA0503S, 5.4x5.2x2.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0518S +Inductor, Sunlord, MWSA0518S, 5.4x5.2x1.6mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0602S +Inductor, Sunlord, MWSA0602S, 7.0x6.6x1.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0603S +Inductor, Sunlord, MWSA0603S, 7.0x6.6x2.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0604S +Inductor, Sunlord, MWSA0604S, 7.0x6.6x3.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0605S +Inductor, Sunlord, MWSA0605S, 7.0x6.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0615S +Inductor, Sunlord, MWSA0615S, 7.0x6.6x1.3mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0618S +Inductor, Sunlord, MWSA0618S, 7.0x6.6x1.6mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0624S +Inductor, Sunlord, MWSA0624S, 7.0x6.6x2.2mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0804S +Inductor, Sunlord, MWSA0804S, 8.2x8.8x3.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1003S +Inductor, Sunlord, MWSA1003S, 11.5x10.0x2.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1004S +Inductor, Sunlord, MWSA1004S, 11.0x10.0x3.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1005S +Inductor, Sunlord, MWSA1005S, 11.5x10.0x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-1R0 +Inductor, Sunlord, MWSA1204S-1R0, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-1R5 +Inductor, Sunlord, MWSA1204S-1R5, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-2R2 +Inductor, Sunlord, MWSA1204S-2R2, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-3R3 +Inductor, Sunlord, MWSA1204S-3R3, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-4R7 +Inductor, Sunlord, MWSA1204S-4R7, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-6R8 +Inductor, Sunlord, MWSA1204S-6R8, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-100 +Inductor, Sunlord, MWSA1204S-100, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-150 +Inductor, Sunlord, MWSA1204S-150, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-220 +Inductor, Sunlord, MWSA1204S-220, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R22 +Inductor, Sunlord, MWSA1204S-R22, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R47 +Inductor, Sunlord, MWSA1204S-R47, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R68 +Inductor, Sunlord, MWSA1204S-R68, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R82 +Inductor, Sunlord, MWSA1204S-R82, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-1R0 +Inductor, Sunlord, MWSA1205S-1R0, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-1R5 +Inductor, Sunlord, MWSA1205S-1R5, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-2R2 +Inductor, Sunlord, MWSA1205S-2R2, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-3R3 +Inductor, Sunlord, MWSA1205S-3R3, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-4R7 +Inductor, Sunlord, MWSA1205S-4R7, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-6R8 +Inductor, Sunlord, MWSA1205S-6R8, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-100 +Inductor, Sunlord, MWSA1205S-100, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-150 +Inductor, Sunlord, MWSA1205S-150, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-220 +Inductor, Sunlord, MWSA1205S-220, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-330 +Inductor, Sunlord, MWSA1205S-330, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-470 +Inductor, Sunlord, MWSA1205S-470, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R22 +Inductor, Sunlord, MWSA1205S-R22, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R36 +Inductor, Sunlord, MWSA1205S-R36, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R50 +Inductor, Sunlord, MWSA1205S-R50, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R68 +Inductor, Sunlord, MWSA1205S-R68, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R82 +Inductor, Sunlord, MWSA1205S-R82, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-1R5 +Inductor, Sunlord, MWSA1206S-1R5, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-2R2 +Inductor, Sunlord, MWSA1206S-2R2, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-3R3 +Inductor, Sunlord, MWSA1206S-3R3, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-4R7 +Inductor, Sunlord, MWSA1206S-4R7, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-5R6 +Inductor, Sunlord, MWSA1206S-5R6, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-6R8 +Inductor, Sunlord, MWSA1206S-6R8, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-8R2 +Inductor, Sunlord, MWSA1206S-8R2, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-100 +Inductor, Sunlord, MWSA1206S-100, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-101 +Inductor, Sunlord, MWSA1206S-101, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-120 +Inductor, Sunlord, MWSA1206S-120, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-121 +Inductor, Sunlord, MWSA1206S-121, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-150 +Inductor, Sunlord, MWSA1206S-150, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-151 +Inductor, Sunlord, MWSA1206S-151, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-180 +Inductor, Sunlord, MWSA1206S-180, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-220 +Inductor, Sunlord, MWSA1206S-220, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-270 +Inductor, Sunlord, MWSA1206S-270, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-330 +Inductor, Sunlord, MWSA1206S-330, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-470 +Inductor, Sunlord, MWSA1206S-470, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-680 +Inductor, Sunlord, MWSA1206S-680, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-R68 +Inductor, Sunlord, MWSA1206S-R68, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1265S +Inductor, Sunlord, MWSA1265S, 13.45x12.6x6.5mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1707S +Inductor, Sunlord, MWSA1707S, 17.15x17.15x6.7mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA2213S +Inductor, Sunlord, MWSA2213S, 23.5x22.0x12.6mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA3010S +Inductor, Sunlord, SWPA3010S, 3.0x3.0x1.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA3012S +Inductor, Sunlord, SWPA3012S, 3.0x3.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA3015S +Inductor, Sunlord, SWPA3015S, 3.0x3.0x1.5mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4010S +Inductor, Sunlord, SWPA4010S, 4.0x4.0x1.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4012S +Inductor, Sunlord, SWPA4012S, 4.0x4.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4018S +Inductor, Sunlord, SWPA4018S, 4.0x4.0x1.8mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4020S +Inductor, Sunlord, SWPA4020S, 4.0x4.0x2.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4026S +Inductor, Sunlord, SWPA4026S, 4.0x4.0x2.6mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4030S +Inductor, Sunlord, SWPA4030S, 4.0x4.0x3.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5012S +Inductor, Sunlord, SWPA5012S, 5.0x5.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5020S +Inductor, Sunlord, SWPA5020S, 5.0x5.0x2.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5040S +Inductor, Sunlord, SWPA5040S, 5.0x5.0x4.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6020S +Inductor, Sunlord, SWPA6020S, 6.0x6.0x2.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6028S +Inductor, Sunlord, SWPA6028S, 6.0x6.0x2.8mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6040S +Inductor, Sunlord, SWPA6040S, 6.0x6.0x4.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6045S +Inductor, Sunlord, SWPA6045S, 6.0x6.0x4.5mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA8040S +Inductor, Sunlord, SWPA8040S, 8.0x8.0x4.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA252010S +Inductor, Sunlord, SWPA252010S, 2.5x2.0x1.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA252012S +Inductor, Sunlord, SWPA252012S, 2.5x2.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWRB1204S +Inductor, Sunlord, SWRB1204S, 12.5x12.5x5.0mm, https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en +Inductor swrb +0 +2 +2 +Inductor_SMD +L_Sunlord_SWRB1205S +Inductor, Sunlord, SWRB1205S, 12.5x12.5x6.0mm, https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en +Inductor swrb +0 +2 +2 +Inductor_SMD +L_Sunlord_SWRB1207S +Inductor, Sunlord, SWRB1207S, 12.5x12.5x8.0mm, https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en +Inductor swrb +0 +2 +2 +Inductor_SMD +L_TDK_MLZ1608 +Inductor, TDK, MLZ1608, 1.6x0.8x0.8mm, "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz1608_en.pdf" +Inductor MLZ +0 +2 +2 +Inductor_SMD +L_TDK_MLZ2012_h0.85mm +Inductor, TDK, MLZ2012_h0.85mm, 2.0x1.25x0.85mm, "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz2012_en.pdf" +Inductor MLZ +0 +2 +2 +Inductor_SMD +L_TDK_MLZ2012_h1.25mm +Inductor, TDK, MLZ2012_h1.25mm, 2.0x1.25x1.25mm, "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz2012_en.pdf" +Inductor MLZ +0 +2 +2 +Inductor_SMD +L_TDK_NLV25_2.5x2.0mm +TDK NLV25, 2.5x2.0x1.8mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv25-ef_en.pdf +tdk nlv25 nlcv25 nlfv25 +0 +2 +2 +Inductor_SMD +L_TDK_NLV32_3.2x2.5mm +TDK NLV32, 3.2x2.5x2.2mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv32-ef_en.pdf +tdk nlv32 nlcv32 nlfv32 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6025 +Inductor, TDK, SLF6025, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6025_en.pdf) +Inductor TDK_SLF6025 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6028 +Inductor, TDK, SLF6028, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6028_en.pdf) +Inductor TDK_SLF6028 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6045 +Inductor, TDK, SLF6045, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6045_en.pdf) +Inductor TDK_SLF6045 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7032 +Inductor, TDK, SLF7032, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7032_en.pdf) +Inductor TDK_SLF7032 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7045 +Inductor, TDK, SLF7045, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7045_en.pdf) +Inductor TDK_SLF7045 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7055 +Inductor, TDK, SLF7055, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7055_en.pdf) +Inductor TDK_SLF7055 +0 +2 +2 +Inductor_SMD +L_TDK_SLF10145 +Inductor, TDK, SLF10145, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf10145-h_en.pdf) +Inductor TDK_SLF10145 +0 +2 +2 +Inductor_SMD +L_TDK_SLF10165 +Inductor, TDK, SLF10165, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf10165_en.pdf) +Inductor TDK_SLF10165 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12555 +Inductor, TDK, SLF12555, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf12555_en.pdf) +Inductor SLF12555 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12565 +Inductor, TDK, SLF12565, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12565-h_en.pdf) +Inductor SLF12565 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12575 +Inductor, TDK, SLF12575, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12575-h_en.pdf) +Inductor SLF12575 +0 +2 +2 +Inductor_SMD +L_TDK_VLF10040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm +inductor TDK VLP smd VLF10040 +0 +2 +2 +Inductor_SMD +L_TDK_VLP8040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm +inductor TDK VLP smd VLP8040 +0 +2 +2 +Inductor_SMD +L_TDK_VLS6045EX_VLS6045AF +Inductor,TDK, VLS-6045, 6x6x4.5mm, https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_power_vls6045ex_en.pdf +inductor TDK VLS SMD VLS6045EF VLS6045AF +0 +2 +2 +Inductor_SMD +L_TaiTech_TMPC1265_13.5x12.5mm +Tai Tech TMPC1265 series SMD inductor https://datasheet.lcsc.com/lcsc/2009171439_TAI-TECH-TMPC1265HP-100MG-D_C305223.pdf, 13.5x12.5x6.2mm +Tai Tech TMPC1265 SMD inductor +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_BK_Array_1206_3216Metric +Ferrite Bead Array 4x0603, Taiyo Yuden BK Series (see https://www.yuden.co.jp/productdata/catalog/mlci09_e.pdf) +ferrite bead array +0 +8 +8 +Inductor_SMD +L_Taiyo-Yuden_MD-1616 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-1616, 1.6mmx1.6mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-2020 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-2020, 2.0mmx2.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-3030 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-3030, 3.0mmx3.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-4040 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-4040, 4.0mmx4.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-5050 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-5050, 5.0mmx5.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-20xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-20xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-24xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-24xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-30xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-30xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-40xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-40xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-50xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-50xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-60xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-60xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-80xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-80xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-10050_9.8x10.0mm +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-10050_9.8x10.0mm_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_TracoPower_TCK-047_5.2x5.8mm +Inductor, Traco, TCK-047, 5.2x5.8mm, https://www.tracopower.com/products/tck047.pdf +inductor smd traco +0 +2 +2 +Inductor_SMD +L_TracoPower_TCK-141 +Choke, SMD, 4.0x4.0mm 2.1mm height, https://www.tracopower.com/products/tck141.pdf +Choke SMD +0 +2 +2 +Inductor_SMD +L_Vishay_IFSC-1515AH_4x4x1.8mm +Low Profile, High Current Inductors (https://www.vishay.com/docs/34295/sc15ah01.pdf) +SMD Vishay Inductor Low Profile +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-1212 +Inductor, Vishay, IHLP series, 3.0mmx3.0mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-1616 +Inductor, Vishay, IHLP series, 4.1mmx4.1mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-2020 +Inductor, Vishay, IHLP series, 5.1mmx5.1mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-2525 +Inductor, Vishay, IHLP series, 6.3mmx6.3mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-4040 +Inductor, Vishay, IHLP series, 10.2mmx10.2mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-5050 +Inductor, Vishay, IHLP series, 12.7mmx12.7mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-6767 +Inductor, Vishay, IHLP series, 17.0mmx17.0mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-3825 +Inductor, Vishay, Vishay_IHSM-3825, http://www.vishay.com/docs/34018/ihsm3825.pdf, 11.2mmx6.3mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-4825 +Inductor, Vishay, Vishay_IHSM-4825, http://www.vishay.com/docs/34019/ihsm4825.pdf, 13.7mmx6.3mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-5832 +Inductor, Vishay, Vishay_IHSM-5832, http://www.vishay.com/docs/34020/ihsm5832.pdf, 16.3mmx8.1mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-7832 +Inductor, Vishay, Vishay_IHSM-7832, http://www.vishay.com/docs/34021/ihsm7832.pdf, 19.8mmx8.1mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Walsin_WLFM201209x +Inductor, Walsin, WLFM201209x, 2.0x1.25x0.9mm, http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf +Inductor ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Walsin_WLFM201609x +Inductor, Walsin, WLFM201609x, 2.0x1.6x0.9mm, http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf +Inductor ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Walsin_WLFM252009x +Inductor, Walsin, WLFM252009x, 2.5x2.0x0.9mm, http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf +Inductor ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Wuerth_HCF-2013 +7443630070, http://katalog.we-online.de/pbs/datasheet/7443630070.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCF-2815 +74436410150, http://katalog.we-online.de/pbs/datasheet/74436410150.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCF-2818 +7443640330, http://katalog.we-online.de/pbs/datasheet/7443640330.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCI-1030 +Inductor, Wuerth Elektronik, Wuerth_HCI-1030, 10.6mmx10.6mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1040 +Inductor, Wuerth Elektronik, Wuerth_HCI-1040, 10.2mmx10.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1050 +Inductor, Wuerth Elektronik, Wuerth_HCI-1050, 10.2mmx10.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1335 +Inductor, Wuerth Elektronik, Wuerth_HCI-1335, 12.8mmx12.8mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1350 +Inductor, Wuerth Elektronik, Wuerth_HCI-1350, 12.8mmx12.8mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1365 +Inductor, Wuerth Elektronik, Wuerth_HCI-1365, 12.8mmx12.8mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1890 +Inductor, Wuerth Elektronik, Wuerth_HCI-1890, 18.2mmx18.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-2212 +Inductor, Wuerth Elektronik, Wuerth_HCI-2212, 22.5mmx22.0mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-5040 +Inductor, Wuerth Elektronik, Wuerth_HCI-5040, 5.5mmx5.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7030 +Inductor, Wuerth Elektronik, Wuerth_HCI-7030, 6.9mmx6.9mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7040 +Inductor, Wuerth Elektronik, Wuerth_HCI-7040, 6.9mmx6.9mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7050 +Inductor, Wuerth Elektronik, Wuerth_HCI-7050, 6.9mmx6.9mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1050 +Inductor, Wuerth Elektronik, Wuerth_HCM-1050, 10.2mmx7.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1052 +Inductor, Wuerth Elektronik, Wuerth_HCM-1052, 10.5mmx10.3mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1070 +Inductor, Wuerth Elektronik, Wuerth_HCM-1070, 10.1mmx7.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1078 +Inductor, Wuerth Elektronik, Wuerth_HCM-1078, 9.4mmx6.2mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1190 +Inductor, Wuerth Elektronik, Wuerth_HCM-1190, 10.5mmx11.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1240 +Inductor, Wuerth Elektronik, Wuerth_HCM-1240, 10.0mmx11.8mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1350 +Inductor, Wuerth Elektronik, Wuerth_HCM-1350, 13.5mmx13.3mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1390 +Inductor, Wuerth Elektronik, Wuerth_HCM-1390, 12.5mmx13.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-7050 +Inductor, Wuerth Elektronik, Wuerth_HCM-7050, 7.2mmx7.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-7070 +Inductor, Wuerth Elektronik, Wuerth_HCM-7070, 7.4mmx7.2mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-1610 +Inductor, Wuerth Elektronik, Wuerth_MAPI-1610, 1.6mmx1.6mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2010 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2010, 2.0mmx1.6mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2506 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2506, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2508 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2508, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2510 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2510, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2512 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2512, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3010 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3010, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3012 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3012, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3015 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3015, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3020 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3020, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-4020 +Inductor, Wuerth Elektronik, Wuerth_MAPI-4020, 4.0mmx4.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-4030 +Inductor, Wuerth Elektronik, Wuerth_MAPI-4030, 4.0mmx4.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-DD-Typ-L-Typ-XL-Typ-XXL +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ L, Typ XL, Typ XXL, https://katalog.we-online.com/pbs/datasheet/744874001.pdf +Choke Coupled Double Inductor SMD Wuerth WE-DD TypL TypXL TypXXL +0 +4 +4 +Inductor_SMD +L_Wuerth_WE-DD-Typ-M-Typ-S +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744878001.pdf, https://katalog.we-online.de/pbs/datasheet/744877001.pdf +Choke Coupled Double Inductor SMD Wuerth WE-DD TypM TypS +0 +4 +4 +Inductor_SMD +L_Wuerth_WE-GF-1210 +Unshielded Inductor, Wuerth Elektronik, WE-GF, SMD, 1210, https://www.we-online.de/katalog/datasheet/74476401.pdf +Unshielded Inductor WE-GF 1210 Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-7345 +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, 7345, https://katalog.we-online.com/pbs/datasheet/744777001.pdf +Choke Shielded Power Inductor WE-PD 7345 Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-LS +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-LS_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, Handsoldering, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-M-Typ-S +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744778005.pdf +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-M-Typ-S_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, Handsoldering, https://katalog.we-online.com/pbs/datasheet/744778005.pdf +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-L +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ L, , https://katalog.we-online.com/pbs/datasheet/74477510.pdf +Choke Power Inductor WE-PD2 TypL Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-MS +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ MS, https://katalog.we-online.com/pbs/datasheet/744774022.pdf +Choke Power Inductor WE-PD2 TypMS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-XL +Power Inductor, Wuerth Elektronik, WE-PD2, SMT, Typ XL, https://katalog.we-online.com/pbs/datasheet/744776012.pdf +Choke Power Inductor WE-PD2 TypXL Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD4-Typ-X +Power Inductor, Wuerth Elektronik, WE-PD4, SMT, Typ X, https://katalog.we-online.de/pbs/datasheet/74458001.pdf +Choke Power Inductor WE-PD4 TypX Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PDF +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf +Choke Shielded Power Inductor WE-PDF Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PDF_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, Handsoldering, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf +Choke Shielded Power Inductor WE-PDF Wuerth Handsoldering +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-TPC-3816 +L_Wuerth_WE-TPC-3816 StepUp generated footprint, http://katalog.we-online.de/pbs/datasheet/7440310047.pdf +wurth wuerth smd inductor +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-XHMI-8080 +Inductor, Wuerth, WE-XHMI 8080, 8.3mmx8.8mm (Script generated with StandardBox.py) (https://www.we-online.com/components/products/datasheet/74439358068.pdf) +Inductor Wuerth WE-XHMI 8080 +0 +2 +2 +Inductor_SMD +L_Wurth_WE-CAIR-5910 +WE-CAIR Air coil, https://www.we-online.com/components/products/datasheet/744918254.pdf +air coil inductor wurth we cair +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-2010 +Semi-Shielded High Saturation Power Inductor, body 2x1.6mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-2010 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-2512 +Semi-Shielded High Saturation Power Inductor, body 2.5x2mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-2512 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-3012 +Semi-Shielded High Saturation Power Inductor, body 3x3mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-3012 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-4020 +Semi-Shielded High Saturation Power Inductor, body 4x4mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-4020 +SMT +0 +2 +2 +Inductor_THT +Choke_EPCOS_B82722A +Current-Compensated Ring Core Double Chokes, EPCOS, B82722A, 22.3mmx22.7mm, https://en.tdk.eu/inf/30/db/ind_2008/b82722a_j.pdf +chokes epcos tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN102-04-14.0x14.0mm +Current-compensated Chokes, Schaffner, RN102-04, 14.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN112-04-17.7x17.1mm +Current-compensated Chokes, Schaffner, RN112-04, 17.7mmx17.1mm https://www.schaffner.com/fileadmin/user_upload/pim/products/datasheets/RN_series.pdf +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN114-04-22.5x21.5mm +Current-compensated Chokes, Schaffner, RN114-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN116-04-22.5x21.5mm +Current-compensated Chokes, Schaffner, RN116-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN122-04-28.0x27.0mm +Current-compensated Chokes, Schaffner, RN122-04, 28.0mmx27.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN142-04-33.1x32.5mm +Current-compensated Chokes, Schaffner, RN142-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN143-04-33.1x32.5mm +Current-compensated Chokes, Schaffner, RN143-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN152-04-43.0x41.8mm +Current-compensated Chokes, Schaffner, RN152-04, 43.0mmx41.8mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN202-04-8.8x18.2mm +Current-compensated Chokes, Schaffner, RN202-04, 8.8mmx18.2mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN204-04-9.0x14.0mm +Current-compensated Chokes, Schaffner, RN204-04, 9.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN212-04-12.5x18.0mm +Current-compensated Chokes, Schaffner, RN212-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN214-04-15.5x23.0mm +Current-compensated Chokes, Schaffner, RN214-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN216-04-15.5x23.0mm +Current-compensated Chokes, Schaffner, RN216-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN218-04-12.5x18.0mm +Current-compensated Chokes, Schaffner, RN218-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN222-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN222-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN232-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN232-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN242-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN242-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +L_Axial_L5.0mm_D3.6mm_P10.00mm_Horizontal_Murata_BL01RN1A2A2 +Inductor, Murata BL01RN1A2A2, Axial, Horizontal, pin pitch=10.00mm, length*diameter=5*3.6mm, https://www.murata.com/en-global/products/productdetail?partno=BL01RN1A2A2%23 +inductor axial horizontal +0 +2 +2 +Inductor_THT +L_Axial_L5.3mm_D2.2mm_P2.54mm_Vertical_Vishay_IM-1 +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Vertical pin pitch 2.54mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +Inductor_THT +L_Axial_L5.3mm_D2.2mm_P7.62mm_Horizontal_Vishay_IM-1 +Inductor, Axial series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Horizontal pin pitch 7.62mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +Inductor_THT +L_Axial_L5.3mm_D2.2mm_P10.16mm_Horizontal_Vishay_IM-1 +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +Inductor_THT +L_Axial_L6.6mm_D2.7mm_P2.54mm_Vertical_Vishay_IM-2 +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Vertical pin pitch 2.54mm length 6.6mm diameter 2.7mm Vishay IM-2 +0 +2 +2 +Inductor_THT +L_Axial_L6.6mm_D2.7mm_P10.16mm_Horizontal_Vishay_IM-2 +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 6.6mm diameter 2.7mm Vishay IM-2 +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P2.54mm_Vertical_Fastron_MICC +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 2.54mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P5.08mm_Vertical_Fastron_MICC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P10.16mm_Horizontal_Fastron_MICC +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P12.70mm_Horizontal_Fastron_MICC +Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 12.7mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P2.54mm_Vertical_Fastron_SMCC +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Vertical pin pitch 2.54mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P5.08mm_Vertical_Fastron_SMCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P12.70mm_Horizontal_Fastron_SMCC +Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P15.24mm_Horizontal_Fastron_SMCC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L11.0mm_D4.5mm_P5.08mm_Vertical_Fastron_MECC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +Inductor_THT +L_Axial_L11.0mm_D4.5mm_P7.62mm_Vertical_Fastron_MECC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +Inductor_THT +L_Axial_L11.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_MECC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +Inductor_THT +L_Axial_L12.0mm_D5.0mm_P5.08mm_Vertical_Fastron_MISC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +Inductor_THT +L_Axial_L12.0mm_D5.0mm_P7.62mm_Vertical_Fastron_MISC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +Inductor_THT +L_Axial_L12.0mm_D5.0mm_P15.24mm_Horizontal_Fastron_MISC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L13.0mm_D4.5mm_P5.08mm_Vertical_Fastron_HCCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +Inductor_THT +L_Axial_L13.0mm_D4.5mm_P7.62mm_Vertical_Fastron_HCCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +Inductor_THT +L_Axial_L13.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_HCCC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +Inductor_THT +L_Axial_L14.0mm_D4.5mm_P5.08mm_Vertical_Fastron_LACC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +Inductor_THT +L_Axial_L14.0mm_D4.5mm_P7.62mm_Vertical_Fastron_LACC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +Inductor_THT +L_Axial_L14.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_LACC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P5.08mm_Vertical_Fastron_VHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P7.62mm_Vertical_Fastron_VHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P20.32mm_Horizontal_Fastron_VHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P25.40mm_Horizontal_Fastron_VHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P5.08mm_Vertical_Fastron_XHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P7.62mm_Vertical_Fastron_XHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P20.32mm_Horizontal_Fastron_XHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P25.40mm_Horizontal_Fastron_XHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D9.5mm_P5.08mm_Vertical_Vishay_IM-10-37 +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 9.5mm Vishay IM-10-37 +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D9.5mm_P20.32mm_Horizontal_Vishay_IM-10-37 +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 9.5mm Vishay IM-10-37 +0 +2 +2 +Inductor_THT +L_Axial_L17.5mm_D12.0mm_P7.62mm_Vertical_Vishay_IM-10-46 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 17.5mm diameter 12mm Vishay IM-10-46 +0 +2 +2 +Inductor_THT +L_Axial_L17.5mm_D12.0mm_P20.32mm_Horizontal_Vishay_IM-10-46 +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 17.5mm diameter 12mm Vishay IM-10-46 +0 +2 +2 +Inductor_THT +L_Axial_L20.0mm_D8.0mm_P5.08mm_Vertical +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=20*8mm^2 +Inductor Axial series Axial Vertical pin pitch 5.08mm length 20mm diameter 8mm +0 +2 +2 +Inductor_THT +L_Axial_L20.0mm_D8.0mm_P7.62mm_Vertical +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20*8mm^2 +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20mm diameter 8mm +0 +2 +2 +Inductor_THT +L_Axial_L20.0mm_D8.0mm_P25.40mm_Horizontal +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20*8mm^2 +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20mm diameter 8mm +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-101 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.07mm Vishay IHA-101 +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.1mm_P28.50mm_Horizontal_Vishay_IHA-101 +Inductor, Axial series, Axial, Horizontal, pin pitch=28.5mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 28.5mm length 20.32mm diameter 12.07mm Vishay IHA-101 +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-201 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.7mm Vishay IHA-201 +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.7mm_P25.40mm_Horizontal_Vishay_IHA-201 +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20.32mm diameter 12.7mm Vishay IHA-201 +0 +2 +2 +Inductor_THT +L_Axial_L23.4mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-203 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 23.37mm diameter 12.7mm Vishay IHA-203 +0 +2 +2 +Inductor_THT +L_Axial_L23.4mm_D12.7mm_P32.00mm_Horizontal_Vishay_IHA-203 +Inductor, Axial series, Axial, Horizontal, pin pitch=32mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 32mm length 23.37mm diameter 12.7mm Vishay IHA-203 +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.1mm_P5.08mm_Vertical_Vishay_IM-10-28 +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.1mm Vishay IM-10-28 +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.1mm_P30.48mm_Horizontal_Vishay_IM-10-28 +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 24mm diameter 7.1mm Vishay IM-10-28 +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.5mm_P5.08mm_Vertical_Fastron_MESC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.5mm_P7.62mm_Vertical_Fastron_MESC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.5mm_P27.94mm_Horizontal_Fastron_MESC +Inductor, Axial series, Axial, Horizontal, pin pitch=27.94mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf +Inductor Axial series Axial Horizontal pin pitch 27.94mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D9.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D9.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D9.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D10.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D10.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D10.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D11.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D11.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D11.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-103 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 12.07mm Vishay IHA-103 +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D12.1mm_P35.00mm_Horizontal_Vishay_IHA-103 +Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 12.07mm Vishay IHA-103 +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-104 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 13.97mm Vishay IHA-104 +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D14.0mm_P35.00mm_Horizontal_Vishay_IHA-104 +Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 13.97mm Vishay IHA-104 +0 +2 +2 +Inductor_THT +L_Axial_L29.9mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-105 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 29.85mm diameter 13.97mm Vishay IHA-105 +0 +2 +2 +Inductor_THT +L_Axial_L29.9mm_D14.0mm_P38.00mm_Horizontal_Vishay_IHA-105 +Inductor, Axial series, Axial, Horizontal, pin pitch=38mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 38mm length 29.85mm diameter 13.97mm Vishay IHA-105 +0 +2 +2 +Inductor_THT +L_Axial_L30.0mm_D8.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L30.0mm_D8.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L30.0mm_D8.0mm_P35.56mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 35.56mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x105NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x155NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x205NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x405NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x705NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455xxx6NL_2 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_TDK_B82746S4143A040 +13A, 3Phase, Triple Coil, CM Choke, https://www.tdk-electronics.tdk.com/inf/30/ds/b82746s.pdf +common mode filter triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82746S6702A040 +8A, 3Phase, Triple Coil, CM Choke, https://www.tdk-electronics.tdk.com/inf/30/ds/b82746s.pdf +common mode filter triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6163A040 +16A, 3Phase, Triple Coil, CM Choke, drill hole 2mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6203A040 +20A, 3Phase, Triple Coil, CM Choke, drill hole 2.2mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6253A040 +25A, 3Phase, Triple Coil, CM Choke, drill hole 2.44mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6353A040 +35A, 3Phase, Triple Coil, CM Choke, drill hole 3mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82767S4123N030 +12A, 3Phase N, Quadruple Coil, https://www.tdk-electronics.tdk.com/inf/30/ds/b82767s4.pdf +common mode filter quadruple choke +0 +8 +8 +Inductor_THT +L_CommonMode_TDK_B82767S4193N030 +19A, 3Phase N, Quadruple Coil, https://www.tdk-electronics.tdk.com/inf/30/ds/b82767s4.pdf +common mode filter quadruple choke +0 +8 +8 +Inductor_THT +L_CommonMode_TDK_B82767S4263N030 +26A , 3Phase N, Quadruple Coil, https://www.tdk-electronics.tdk.com/inf/30/ds/b82767s4.pdf +common mode filter quadruple choke +0 +8 +8 +Inductor_THT +L_CommonMode_Toroid_Vertical_L19.3mm_W10.8mm_Px6.35mm_Py15.24mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=6.35*15.24mm^2, , length*width=19.304*10.795mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 6.35*15.24mm^2 length 19.304mm width 10.795mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L21.0mm_W10.0mm_Px5.08mm_Py12.70mm_Murata_5100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=5.08*12.70mm^2, , length*width=21*10mm^2, muRATA, 5100, http://www.murata-ps.com/data/magnetics/kmp_5100.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 5.08*12.70mm^2 length 21mm width 10mm muRATA 5100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L24.0mm_W16.3mm_Px10.16mm_Py20.32mm_Murata_5200 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=24*16.3mm^2, muRATA, 5200, http://www.murata-ps.com/data/magnetics/kmp_5200.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 24mm width 16.3mm muRATA 5200 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L30.5mm_W15.2mm_Px10.16mm_Py20.32mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=30.479999999999997*15.239999999999998mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 30.479999999999997mm width 15.239999999999998mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L34.3mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=34.29*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 34.29mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L36.8mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=36.83*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 36.83mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L38.1mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=38.099999999999994*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 38.099999999999994mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L39.4mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=39.37*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 39.37mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L41.9mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=41.91*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 41.91mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L43.2mm_W22.9mm_Px17.78mm_Py30.48mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=17.78*30.48mm^2, , length*width=43.18*22.86mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 17.78*30.48mm^2 length 43.18mm width 22.86mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_VAC_T60405-S6123-X140 +40A, 3Phase, Triple Coil, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X140.pdf +common mode filter +0 +6 +6 +Inductor_THT +L_CommonMode_VAC_T60405-S6123-X240 +40A, 3Phase, Triple Coil, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X240.pdf +common mode filter triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_VAC_T60405-S6123-X402 +30A, 3Phase N, Quadruple Coil, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X402.pdf +common mode filter quadruple choke +0 +8 +8 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-L +Wuerth, WE-CMB, Bauform L, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-M +Wuerth, WE-CMB, Bauform M, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-S +Wuerth, WE-CMB, Bauform S, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-XL +Wuerth, WE-CMB, Bauform XL, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-XS +Wuerth, WE-CMB, Bauform XS, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-XXL +Wuerth, WE-CMB, Bauform XXL, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM120 +Lodestone Pacific, 30.48mm diameter vertical toroid mount, 16AWG/1.27mm holes, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM160 +Lodestone Pacific, 40.64mm diameter vertical toroid mount, 16AWG/1.27mm holes, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM254 +Lodestone Pacific, 64.51mm diameter vertical toroid mount, 16AWG/1.27mm holes, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM280 +Lodestone Pacific, 71.12mm diameter vertical toroid mount, 16AWG/1.27mm holes, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM950-6 +Lodestone Pacific, vertical toroid mount, 11x19mm, 6 pins, https://www.lodestonepacific.com/wp-content/uploads/2021/05/VTM950-6.pdf +vertical inductor toroid mount +0 +6 +6 +Inductor_THT +L_Radial_D6.0mm_P4.00mm +Inductor, Radial series, Radial, pin pitch=4.00mm, , diameter=6.0mm, http://www.abracon.com/Magnetics/radial/AIUR-07.pdf +Inductor Radial series Radial pin pitch 4.00mm diameter 6.0mm +0 +2 +2 +Inductor_THT +L_Radial_D7.0mm_P3.00mm +Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7mm, http://www.abracon.com/Magnetics/radial/AIUR-16.pdf +Inductor Radial series Radial pin pitch 3.00mm diameter 7mm +0 +2 +2 +Inductor_THT +L_Radial_D7.2mm_P3.00mm_Murata_1700 +Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7.2mm, MuRATA, 1700, http://www.murata-ps.com/data/magnetics/kmp_1700.pdf +Inductor Radial series Radial pin pitch 3.00mm diameter 7.2mm MuRATA 1700 +0 +2 +2 +Inductor_THT +L_Radial_D7.5mm_P3.50mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=3.50mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 3.50mm diameter 7.5mm Fastron 07P +0 +2 +2 +Inductor_THT +L_Radial_D7.5mm_P5.00mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 7.5mm Fastron 07P +0 +2 +2 +Inductor_THT +L_Radial_D7.8mm_P5.00mm_Fastron_07HCP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.8mm, Fastron, 07HCP, http://www.abracon.com/Magnetics/radial/AISR875.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 7.8mm Fastron 07HCP +0 +2 +2 +Inductor_THT +L_Radial_D8.7mm_P5.00mm_Fastron_07HCP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=8.7mm, Fastron, 07HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_07HCP.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 8.7mm Fastron 07HCP +0 +2 +2 +Inductor_THT +L_Radial_D9.5mm_P5.00mm_Fastron_07HVP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=9.5mm, Fastron, 07HVP, http://www.fastrongroup.com/image-show/107/07HVP%2007HVP_T.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 9.5mm Fastron 07HVP +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Fastron_07M +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07M, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07M +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07P, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07P +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Neosid_SD12_style3 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12 style3 +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Neosid_SD12k_style3 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12k, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12k style3 +0 +2 +2 +Inductor_THT +L_Radial_D10.5mm_P4.00x5.00mm_Murata_1200RS +Inductor, Radial, Pitch=4.00x5.00mm, Diameter=10.5mm, Murata 1200RS, http://www.murata-ps.com/data/magnetics/kmp_1200rs.pdf +Inductor Radial Murata 1200RS +0 +4 +2 +Inductor_THT +L_Radial_D10.5mm_P5.00mm_Abacron_AISR-01 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Abacron, AISR-01, http://www.abracon.com/Magnetics/radial/AISR-01.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 10.5mm Abacron AISR-01 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P5.00mm_Fastron_11P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Fastron, 11P, http://cdn-reichelt.de/documents/datenblatt/B400/DS_11P.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Fastron 11P +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P5.00mm_Neosid_SD12_style2 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12 style2 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P5.00mm_Neosid_SD12k_style2 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12k, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12k style2 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P6.00mm_Murata_1900R +Inductor, Radial series, Radial, pin pitch=6.00mm, , diameter=12.0mm, MuRATA, 1900R, http://www.murata-ps.com/data/magnetics/kmp_1900r.pdf +Inductor Radial series Radial pin pitch 6.00mm diameter 12.0mm MuRATA 1900R +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P10.00mm_Neosid_SD12_style1 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12 style1 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P10.00mm_Neosid_SD12k_style1 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12k, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12k style1 +0 +2 +2 +Inductor_THT +L_Radial_D12.5mm_P7.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 7.00mm diameter 12.5mm Fastron 09HCP +0 +2 +2 +Inductor_THT +L_Radial_D12.5mm_P9.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=9.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 9.00mm diameter 12.5mm Fastron 09HCP +0 +2 +2 +Inductor_THT +L_Radial_D13.5mm_P7.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=13.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 7.00mm diameter 13.5mm Fastron 09HCP +0 +2 +2 +Inductor_THT +L_Radial_D14.2mm_P10.00mm_Neosid_SD14 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=14.2mm, Neosid, SD14, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd14.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 14.2mm Neosid SD14 +0 +2 +2 +Inductor_THT +L_Radial_D16.0mm_P10.00mm_Panasonic_15E-L +Panasonic ELC Type 15E-L inductor, radial, shielded, pin pitch=10.00mm, diameter=16.0mm, https://mediap.industry.panasonic.eu/assets/imported/industrial.panasonic.com/cdbs/www-data/pdf/AGB0000/AGB0000CE10.pdf +ELC15ExxxL +0 +3 +3 +Inductor_THT +L_Radial_D16.8mm_P11.43mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=11.43mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 11.43mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +Inductor_THT +L_Radial_D16.8mm_P12.07mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=12.07mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 12.07mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +Inductor_THT +L_Radial_D16.8mm_P12.70mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=12.70mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 12.70mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +Inductor_THT +L_Radial_D18.0mm_P10.00mm +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=18mm, http://www.abracon.com/Magnetics/radial/AIUR-15.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 18mm +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P14.61mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=14.61mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 14.61mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P15.00mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.00mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.00mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P15.24mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.24mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.24mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P15.75mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.75mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.75mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P19.00mm +Inductor, Radial series, Radial, pin pitch=19.00mm, , diameter=21mm, http://www.abracon.com/Magnetics/radial/AIRD02.pdf +Inductor Radial series Radial pin pitch 19.00mm diameter 21mm +0 +2 +2 +Inductor_THT +L_Radial_D24.0mm_P24.00mm +Inductor, Radial series, Radial, pin pitch=24.00mm, , diameter=24mm +Inductor Radial series Radial pin pitch 24.00mm diameter 24mm +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P22.90mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=22.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 22.90mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.10mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.10mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.10mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.40mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.40mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.40mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.70mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.70mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.70mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.90mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.90mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D27.9mm_P18.29mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=18.29mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 18.29mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +Inductor_THT +L_Radial_D27.9mm_P19.05mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=19.05mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 19.05mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +Inductor_THT +L_Radial_D27.9mm_P20.07mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=20.07mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 20.07mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +Inductor_THT +L_Radial_D28.0mm_P29.20mm +Inductor, Radial series, Radial, pin pitch=29.20mm, , diameter=28mm +Inductor Radial series Radial pin pitch 29.20mm diameter 28mm +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P28.30mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=28.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.30mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P28.50mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=28.50mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.50mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P28.80mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=28.80mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.80mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P29.00mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=29.00mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 29.00mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P29.30mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=29.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 29.30mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P26.16mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=26.16mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 26.16mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P27.18mm_Vishay_IHB-4 +Inductor, Radial series, Radial, pin pitch=27.18mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.18mm diameter 40.64mm Vishay IHB-4 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P27.94mm_Vishay_IHB-4 +Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-4 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P27.94mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P28.70mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=28.70mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 28.70mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P33.27mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=33.27mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 33.27mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P34.29mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=34.29mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 34.29mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P35.81mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=35.81mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 35.81mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P36.32mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=36.32mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 36.32mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P38.86mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=38.86mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 38.86mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_L7.5mm_W4.6mm_P5.00mm_Neosid_SD75 +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=7.5*4.6mm^2, Neosid, SD75, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd75.pdf +Inductor Radial series Radial pin pitch 5.00mm length 7.5mm width 4.6mm Neosid SD75 +0 +2 +2 +Inductor_THT +L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_NE-CPB-07E +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, NE-CPB-07E, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB07E.pdf +Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid NE-CPB-07E +0 +2 +2 +Inductor_THT +L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_SD8 +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, SD8, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd8.pdf +Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid SD8 +0 +2 +2 +Inductor_THT +L_Radial_L9.1mm_W9.1mm_Px6.35mm_Py6.35mm_Pulse_LP-25 +Inductor, Radial series, Radial, pin pitch=6.35*6.35mm^2, , length*width=9.14*9.14mm^2, Pulse, LP-25, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 6.35*6.35mm^2 length 9.14mm width 9.14mm Pulse LP-25 +0 +2 +2 +Inductor_THT +L_Radial_L10.2mm_W10.2mm_Px7.62mm_Py7.62mm_Pulse_LP-30 +Inductor, Radial series, Radial, pin pitch=7.62*7.62mm^2, , length*width=10.16*10.16mm^2, Pulse, LP-30, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 7.62*7.62mm^2 length 10.16mm width 10.16mm Pulse LP-30 +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.3mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.3mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.3mm +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.5mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.5mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.5mm +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.7mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.7mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.7mm +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.8mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.8mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.8mm +0 +2 +2 +Inductor_THT +L_Radial_L12.6mm_W12.6mm_Px9.52mm_Py9.52mm_Pulse_LP-37 +Inductor, Radial series, Radial, pin pitch=9.52*9.52mm^2, , length*width=12.57*12.57mm^2, Pulse, LP-37, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 9.52*9.52mm^2 length 12.57mm width 12.57mm Pulse LP-37 +0 +2 +2 +Inductor_THT +L_Radial_L16.1mm_W16.1mm_Px7.62mm_Py12.70mm_Pulse_LP-44 +Inductor, Radial series, Radial, pin pitch=7.62*12.70mm^2, , length*width=16.13*16.13mm^2, Pulse, LP-44, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 7.62*12.70mm^2 length 16.13mm width 16.13mm Pulse LP-44 +0 +2 +2 +Inductor_THT +L_SELF1408 +Self Ferrite 14 - 08 +SELF +0 +7 +3 +Inductor_THT +L_SELF1418 +Self Ferrite 14 - 18 +SELF +0 +10 +4 +Inductor_THT +L_Toroid_Horizontal_D3.2mm_P6.40mm_Diameter3-5mm_Amidon-T12 +L_Toroid, Horizontal series, Radial, pin pitch=6.40mm, , diameter=3.175mm, Diameter3-5mm, Amidon-T12 +L_Toroid Horizontal series Radial pin pitch 6.40mm diameter 3.175mm Diameter3-5mm Amidon-T12 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D4.1mm_P8.00mm_Diameter4-5mm_Amidon-T16 +L_Toroid, Horizontal series, Radial, pin pitch=8.00mm, , diameter=4.064mm, Diameter4-5mm, Amidon-T16 +L_Toroid Horizontal series Radial pin pitch 8.00mm diameter 4.064mm Diameter4-5mm Amidon-T16 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D5.1mm_P9.00mm_Diameter6-5mm_Amidon-T20 +L_Toroid, Horizontal series, Radial, pin pitch=9.00mm, , diameter=5.08mm, Diameter6-5mm, Amidon-T20 +L_Toroid Horizontal series Radial pin pitch 9.00mm diameter 5.08mm Diameter6-5mm Amidon-T20 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D6.5mm_P10.00mm_Diameter7-5mm_Amidon-T25 +L_Toroid, Horizontal series, Radial, pin pitch=10.00mm, , diameter=6.476999999999999mm, Diameter7-5mm, Amidon-T25 +L_Toroid Horizontal series Radial pin pitch 10.00mm diameter 6.476999999999999mm Diameter7-5mm Amidon-T25 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D7.8mm_P13.00mm_Diameter9-5mm_Amidon-T30 +L_Toroid, Horizontal series, Radial, pin pitch=13.00mm, , diameter=7.7978mm, Diameter9-5mm, Amidon-T30 +L_Toroid Horizontal series Radial pin pitch 13.00mm diameter 7.7978mm Diameter9-5mm Amidon-T30 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D9.5mm_P15.00mm_Diameter10-5mm_Amidon-T37 +L_Toroid, Horizontal series, Radial, pin pitch=15.00mm, , diameter=9.524999999999999mm, Diameter10-5mm, Amidon-T37 +L_Toroid Horizontal series Radial pin pitch 15.00mm diameter 9.524999999999999mm Diameter10-5mm Amidon-T37 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D11.2mm_P17.00mm_Diameter12-5mm_Amidon-T44 +L_Toroid, Horizontal series, Radial, pin pitch=17.00mm, , diameter=11.176mm, Diameter12-5mm, Amidon-T44 +L_Toroid Horizontal series Radial pin pitch 17.00mm diameter 11.176mm Diameter12-5mm Amidon-T44 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D12.7mm_P20.00mm_Diameter14-5mm_Amidon-T50 +L_Toroid, Horizontal series, Radial, pin pitch=20.00mm, , diameter=12.7mm, Diameter14-5mm, Amidon-T50 +L_Toroid Horizontal series Radial pin pitch 20.00mm diameter 12.7mm Diameter14-5mm Amidon-T50 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3 +L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3_BigPads +L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D17.3mm_P15.24mm_Bourns_2000 +L_Toroid, Horizontal series, Radial, pin pitch=15.24mm, , diameter=17.3mm, Bourns, 2000, http://www.bourns.com/docs/Product-Datasheets/2000_series.pdf?sfvrsn=5 +L_Toroid Horizontal series Radial pin pitch 15.24mm diameter 17.3mm Bourns 2000 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D21.8mm_P19.10mm_Bourns_2100 +L_Toroid, Horizontal series, Radial, pin pitch=19.10mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 19.10mm diameter 21.8mm Bourns 2100 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D21.8mm_P19.60mm_Bourns_2100 +L_Toroid, Horizontal series, Radial, pin pitch=19.60mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 19.60mm diameter 21.8mm Bourns 2100 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D22.4mm_P19.80mm_Vishay_TJ4 +L_Toroid, Horizontal series, Radial, pin pitch=19.80mm, , diameter=22.4mm, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 19.80mm diameter 22.4mm Vishay TJ4 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D24.1mm_P21.80mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=21.80mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 21.80mm diameter 24.1mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D24.1mm_P23.10mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=23.10mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 23.10mm diameter 24.1mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5 +L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5_BigPads +L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D26.0mm_P5.08mm +inductor 26mm diameter toroid +SELF INDUCTOR +0 +3 +2 +Inductor_THT +L_Toroid_Horizontal_D28.0mm_P25.10mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=25.10mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 25.10mm diameter 28mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D28.0mm_P26.67mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=26.67mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 26.67mm diameter 28mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D32.5mm_P28.90mm_Bourns_2300 +L_Toroid, Horizontal series, Radial, pin pitch=28.90mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 28.90mm diameter 32.5mm Bourns 2300 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D32.5mm_P30.00mm_Bourns_2300 +L_Toroid, Horizontal series, Radial, pin pitch=30.00mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 30.00mm diameter 32.5mm Bourns 2300 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D35.1mm_P31.00mm_Vishay_TJ6 +L_Toroid, Horizontal series, Radial, pin pitch=31.00mm, , diameter=35.1mm, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 31.00mm diameter 35.1mm Vishay TJ6 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D40.0mm_P48.26mm +L_Toroid, Horizontal series, Radial, pin pitch=48.26mm, , diameter=40mm +L_Toroid Horizontal series Radial pin pitch 48.26mm diameter 40mm +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D41.9mm_P37.60mm_Vishay_TJ7 +L_Toroid, Horizontal series, Radial, pin pitch=37.60mm, , diameter=41.9mm, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 37.60mm diameter 41.9mm Vishay TJ7 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D49.3mm_P44.60mm_Vishay_TJ8 +L_Toroid, Horizontal series, Radial, pin pitch=44.60mm, , diameter=49.3mm, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 44.60mm diameter 49.3mm Vishay TJ8 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D69.1mm_P63.20mm_Vishay_TJ9 +L_Toroid, Horizontal series, Radial, pin pitch=63.20mm, , diameter=69.1mm, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 63.20mm diameter 69.1mm Vishay TJ9 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L10.0mm_W5.0mm_P5.08mm +L_Toroid, Vertical series, Radial, pin pitch=5.08mm, , length*width=10*5mm^2 +L_Toroid Vertical series Radial pin pitch 5.08mm length 10mm width 5mm +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L13.0mm_W6.5mm_P5.60mm +L_Toroid, Vertical series, Radial, pin pitch=5.60mm, , length*width=13*6.5mm^2 +L_Toroid Vertical series Radial pin pitch 5.60mm length 13mm width 6.5mm +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L14.0mm_W5.6mm_P5.30mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=5.30mm, , length*width=14*5.6mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 5.30mm length 14mm width 5.6mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L14.0mm_W6.3mm_P4.57mm_Pulse_A +L_Toroid, Vertical series, Radial, pin pitch=4.57mm, , length*width=13.97*6.35mm^2, Pulse, A, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 4.57mm length 13.97mm width 6.35mm Pulse A +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L14.7mm_W8.6mm_P5.58mm_Pulse_KM-1 +L_Toroid, Vertical series, Radial, pin pitch=5.58mm, , length*width=14.73*8.64mm^2, Pulse, KM-1, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 5.58mm length 14.73mm width 8.64mm Pulse KM-1 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.0mm_W8.0mm_P7.62mm +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16*8mm^2 +L_Toroid Vertical series Radial pin pitch 7.62mm length 16mm width 8mm +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.3mm_W7.1mm_P7.11mm_Pulse_H +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=16.26*7.11mm^2, Pulse, H, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.11mm length 16.26mm width 7.11mm Pulse H +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.4mm_W7.6mm_P6.60mm_Vishay_TJ3 +L_Toroid, Vertical series, Radial, pin pitch=6.60mm, , length*width=16.4*7.6mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 6.60mm length 16.4mm width 7.6mm Vishay TJ3 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.5mm_W11.4mm_P7.62mm_Pulse_KM-2 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16.51*11.43mm^2, Pulse, KM-2, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.62mm length 16.51mm width 11.43mm Pulse KM-2 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3 +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3_BigPads +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L17.8mm_W8.1mm_P7.62mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=17.8*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 7.62mm length 17.8mm width 8.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L17.8mm_W9.7mm_P7.11mm_Pulse_B +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=17.78*9.65mm^2, Pulse, B, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.11mm length 17.78mm width 9.65mm Pulse B +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L19.1mm_W8.1mm_P7.10mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=19.1*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 7.10mm length 19.1mm width 8.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W8.4mm_P8.38mm_Pulse_G +L_Toroid, Vertical series, Radial, pin pitch=8.38mm, , length*width=21.59*8.38mm^2, Pulse, G, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 8.38mm length 21.59mm width 8.38mm Pulse G +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W9.1mm_P8.40mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=8.40mm, , length*width=21.6*9.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 8.40mm length 21.6mm width 9.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W9.5mm_P7.11mm_Pulse_C +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=21.59*9.53mm^2, Pulse, C, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.11mm length 21.59mm width 9.53mm Pulse C +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W11.4mm_P7.62mm_Pulse_KM-3 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=21.59*11.43mm^2, Pulse, KM-3, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.62mm length 21.59mm width 11.43mm Pulse KM-3 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L22.4mm_W10.2mm_P7.90mm_Vishay_TJ4 +L_Toroid, Vertical series, Radial, pin pitch=7.90mm, , length*width=22.4*10.2mm^2, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 7.90mm length 22.4mm width 10.2mm Vishay TJ4 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L24.6mm_W15.5mm_P11.44mm_Pulse_KM-4 +L_Toroid, Vertical series, Radial, pin pitch=11.44mm, , length*width=24.64*15.5mm^2, Pulse, KM-4, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 11.44mm length 24.64mm width 15.5mm Pulse KM-4 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5 +L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5_BigPads +L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L26.7mm_W14.0mm_P10.16mm_Pulse_D +L_Toroid, Vertical series, Radial, pin pitch=10.16mm, , length*width=26.67*13.97mm^2, Pulse, D, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 10.16mm length 26.67mm width 13.97mm Pulse D +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L28.6mm_W14.3mm_P11.43mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=11.43mm, , length*width=28.6*14.3mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 11.43mm length 28.6mm width 14.3mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L31.8mm_W15.9mm_P13.50mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=13.50mm, , length*width=31.8*15.9mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 13.50mm length 31.8mm width 15.9mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L33.0mm_W17.8mm_P12.70mm_Pulse_KM-5 +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=33.02*17.78mm^2, Pulse, KM-5, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 33.02mm width 17.78mm Pulse KM-5 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L35.1mm_W21.1mm_P18.50mm_Vishay_TJ6 +L_Toroid, Vertical series, Radial, pin pitch=18.50mm, , length*width=35.1*21.1mm^2, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 18.50mm length 35.1mm width 21.1mm Vishay TJ6 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L35.6mm_W17.8mm_P12.70mm_Pulse_E +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=35.56*17.78mm^2, Pulse, E, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 35.56mm width 17.78mm Pulse E +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L41.9mm_W17.8mm_P12.70mm_Pulse_F +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=41.91*17.78mm^2, Pulse, F, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 41.91mm width 17.78mm Pulse F +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L41.9mm_W19.1mm_P15.80mm_Vishay_TJ7 +L_Toroid, Vertical series, Radial, pin pitch=15.80mm, , length*width=41.9*19.1mm^2, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 15.80mm length 41.9mm width 19.1mm Vishay TJ7 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L46.0mm_W19.1mm_P21.80mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=21.80mm, , length*width=46*19.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 21.80mm length 46mm width 19.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L48.8mm_W25.4mm_P20.80mm_Vishay_TJ8 +L_Toroid, Vertical series, Radial, pin pitch=20.80mm, , length*width=48.8*25.4mm^2, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 20.80mm length 48.8mm width 25.4mm Vishay TJ8 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L54.0mm_W23.8mm_P20.10mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=20.10mm, , length*width=54*23.8mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 20.10mm length 54mm width 23.8mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L67.6mm_W36.1mm_P31.80mm_Vishay_TJ9 +L_Toroid, Vertical series, Radial, pin pitch=31.80mm, , length*width=67.6*36.1mm^2, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 31.80mm length 67.6mm width 36.1mm Vishay TJ9 +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2012_LeadDiameter1.2mm +Shielded High Current Inductor, body 17x22mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-2012-ROUND +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2012_LeadDiameter1.5mm +Shielded High Current Inductor, body 17x22mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-2012-ROUND +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2504 +Shielded High Current Inductor, body 22x25.7mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT_SIZE_2504 +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3521 +Shielded High Current Inductor, body 21.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3521 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3533_LeadDiameter1.8mm +Shielded High Current Inductor, body 34.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3533-ROUND +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3533_LeadDiameter2.0mm +Shielded High Current Inductor, body 34.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3533-ROUND +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter0.8mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter1.3mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter1.5mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter2.0mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged2Bar_Pad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, bridged with 2 copper strips +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged2Bar_RoundedPad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 2 copper strips +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged_Pad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, bridged with 1 copper strip +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open +solder jumper open +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open +solder jumper open +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open +solder jumper open +0 +2 +2 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_Pad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_Pad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_RoundedPad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_RoundedPad1.0x1.5mm_NumberLabels +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_Pad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_Pad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm_NumberLabels +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, open +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open, labeled with numbers +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open, labeled with numbers +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P2.0mm_Open_TrianglePad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open +solder jumper open +0 +5 +3 +Jumper +SolderJumper-3_P2.0mm_Open_TrianglePad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open, labeled with numbers +solder jumper open +0 +5 +3 +LED_SMD +LED-APA102-2020 +http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf +LED RGB SPI +0 +8 +6 +LED_SMD +LED-L1T2_LUMILEDS +http://www.lumileds.com/uploads/438/DS133-pdf +LUMILEDS LUXEON TX L1T2 LED +0 +3 +3 +LED_SMD +LED_1W_3W_R8 +https://www.gme.cz/data/attachments/dsh.518-234.1.pdf +LED 1W 3W 5W +0 +3 +3 +LED_SMD +LED_0201_0603Metric +LED SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +LED +0 +4 +2 +LED_SMD +LED_0201_0603Metric_Pad0.64x0.40mm_HandSolder +LED SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +LED handsolder +0 +4 +2 +LED_SMD +LED_0402_1005Metric +LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_0402_1005Metric_Pad0.77x0.64mm_HandSolder +LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_0603_1608Metric +LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder +LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_0805_2012Metric +LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder +LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_1206_3216Metric +LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder +LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_1206_3216Metric_ReverseMount_Hole1.8x2.4mm +LED SMD 1206 (3216 Metric), reverse mount, square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode reverse +0 +2 +2 +LED_SMD +LED_1210_3225Metric +LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_1210_3225Metric_Pad1.42x2.65mm_HandSolder +LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_1812_4532Metric +LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_1812_4532Metric_Pad1.30x3.40mm_HandSolder +LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_2010_5025Metric +LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_2010_5025Metric_Pad1.52x2.65mm_HandSolder +LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_2512_6332Metric +LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder +LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_ASMB-KTF0-0A306 +2220 Tricolor PLCC-4 LED, https://docs.broadcom.com/docs/ASMB-KTF0-0A306-DS100 +Tricolor LED +0 +4 +4 +LED_SMD +LED_Avago_PLCC4_3.2x2.8mm_CW +3.2mm x 2.8mm PLCC4 RGB LED, https://docs.broadcom.com/docs/AV02-4186EN +LED Avago PLCC-4 3528 ASMB-MTB0-0A3A2 +0 +4 +4 +LED_SMD +LED_Avago_PLCC6_3x2.8mm +https://docs.broadcom.com/docs/AV02-3793EN +LED Avago PLCC-6 ASMT-YTB7-0AA02 +0 +6 +6 +LED_SMD +LED_CSP_Samsung_LH181B_2.36x2.36mm +High Power CSP LED, 2.36mm x 2.36mm, 1.4A max, https://cdn.samsung.com/led/file/resource/2021/01/Data_Sheet_LH181B_Rev.4.0.pdf +LED Samsung LH181B +0 +2 +2 +LED_SMD +LED_Cree-PLCC4_2x2mm_CW +2.0mm x 2.0mm PLCC4 LED, https://assets.cree-led.com/a/ds/h/HB-CLMVC-FKA.pdf +LED Cree PLCC-4 2020 CLMVB-FKA CLMVC-FKA +0 +4 +4 +LED_SMD +LED_Cree-PLCC4_3.2x2.8mm_CCW +3.2mm x 2.8mm PLCC4 RGB LED, https://assets.cree-led.com/a/ds/h/HB-CLV1A-FKB.pdf +LED Cree PLCC-4 3528 CLV1A-FKB +0 +4 +4 +LED_SMD +LED_Cree-PLCC4_5x5mm_CW +5.0mm x 5.0mm PLCC4 LED +LED Cree PLCC-4 5050 +0 +4 +4 +LED_SMD +LED_Cree-PLCC6_4.7x1.5mm +4.7mm x 1.5mm PLCC6 LED, http://www.cree.com/led-components/media/documents/1381-QLS6AFKW.pdf +LED Cree PLCC-6 +0 +6 +6 +LED_SMD +LED_Cree-XB +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXBD.pdf +LED Cree XB +0 +5 +3 +LED_SMD +LED_Cree-XH +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XHB.pdf +LED Cree XH +0 +8 +2 +LED_SMD +LED_Cree-XHP35 +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds--XHP35.pdf +LED Cree XHP35 +0 +6 +3 +LED_SMD +LED_Cree-XHP50_6V +Cree XHP50, 6V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf +LED Cree XHP50 +0 +15 +3 +LED_SMD +LED_Cree-XHP50_12V +Cree XHP50, 12V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf +LED XHP50 Cree +0 +15 +3 +LED_SMD +LED_Cree-XHP70_6V +Cree XHP70 LED, 6V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf +LED Cree XHP70 +0 +15 +3 +LED_SMD +LED_Cree-XHP70_12V +Cree XHP70 LED, 12V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf +LED Cree XHP70 +0 +15 +3 +LED_SMD +LED_Cree-XP +LED Cree-XP http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXPE2.pdf +LED Cree XP +0 +6 +3 +LED_SMD +LED_Cree-XP-G +LED Cree-XP-G http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/XLampXPG.pdf +LED Cree XP-G +0 +6 +3 +LED_SMD +LED_Cree-XQ +LED Cree-XQ http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf +LED Cree XQ +0 +2 +2 +LED_SMD +LED_Cree-XQ_HandSoldering +LED Cree-XQ handsoldering pads http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf +LED Cree XQ +0 +2 +2 +LED_SMD +LED_Dialight_591 +LED SMD 3mm Right Angle series (http://www.dialightsignalsandcomponents.com/Assets/Drawings/2D_Drawings_DrawingDetailedSpec/C17354.pdf) +LED Dialight 591 +0 +2 +2 +LED_SMD +LED_Inolux_IN-P55TATRGB_PLCC6_5.0x5.5mm_P1.8mm +5.0x5.0mm PLCC-6 RGB LED, Inolux, https://www.inolux-corp.com/datasheet/SMDLED/RGB%20Top%20View/IN-P55TATRGB.pdf +LED RGB +0 +6 +6 +LED_SMD +LED_Inolux_IN-PI554FCH_PLCC4_5.0x5.0mm_P3.2mm +5.0mm x 5.0mm PLCC4 Addressable RGB LED, http://www.inolux-corp.com/datasheet/SMDLED/Addressable%20LED/IN-PI554FCH.pdf +LED RGB NeoPixel addressable PLCC-4 5050 +0 +4 +4 +LED_SMD +LED_Kingbright_AAA3528ESGCT +Kingbright, dual LED, 3.5 x 2.8 mm Surface Mount LED Lamp (http://www.kingbrightusa.com/images/catalog/SPEC/AAA3528ESGCT.pdf) +dual led smd +0 +4 +4 +LED_SMD +LED_Kingbright_APA1606_1.6x0.6mm_Horizontal +Right angled LED, 1.6x1.2 mm, H0.6 mm +LED chip right angled vertical +0 +2 +2 +LED_SMD +LED_Kingbright_APDA3020VBCD +LED, SMD, APDA3020VBC/D, https://www.kingbrightusa.com/images/catalog/SPEC/APDA3020VBC-D.pdf +LED APDA3020VBC/D Kingbright +0 +2 +2 +LED_SMD +LED_Kingbright_APFA3010_3x1.5mm_Horizontal +LED RGB, APFA3010, http://www.kingbrightusa.com/images/catalog/SPEC/APFA3010LSEEZGKQBKC.pdf +LED RGB APFA3010 KINGBRIGHT 3x1.5mm +0 +4 +4 +LED_SMD +LED_Kingbright_APHBM2012_2x1.25mm +Dual LED SMD https://www.kingbrightusa.com/KCpack.asp?txtPack=APHBM2012 +LED Kingbright APHM2012 +0 +4 +4 +LED_SMD +LED_Kingbright_KPA-3010_3x2x1mm +Kingbright surface mount LED, right angle, 3.0 x 2.0 x 1.0 mm, https://www.kingbright.com/attachments/file/psearch/000/00/00/KPA-3010SURCK(Ver.26A).pdf +Kingbright LED right-angle +0 +3 +3 +LED_SMD +LED_Kingbright_KPBD-3224 +Kingbright, dual LED, red-green, dome lens, 3.2 x 2.4 mm Surface Mount LED Lamp (https://www.kingbright.com/attachments/file/psearch/000/00/00/KPBD-3224SURKCGKC(Ver.20A).pdf) +Kingbright dual LED KPBD-3224 +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-C19HE1WT +LiteOn RGB LED; https://optoelectronics.liteon.com/upload/download/DS22-2008-0044/LTST-C19HE1WT.pdf +LED RGB Chip SMD +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-C235KGKRKT +downfacing reverse mount led, https://optoelectronics.liteon.com/upload/download/DS22-2009-0219/LTST-C235KGKRKT.pdf +LED reverse down facing +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-C295K_1.6x0.8mm +Topview dual http://optoelectronics.liteon.com/upload/download/DS22-2009-0072/LTST-C295KGKRKT.PDF +SMD Top view Dual colour +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-E563C_PLCC4_5.0x5.0mm_P3.2mm +RGB addressable LED, 5x5mm body, 1.57mm height, https://optoelectronics.liteon.com/upload/download/DS35-2018-0092/LTST-E563CHEGBW-AW.PDF +LED RGB 5050 PLCC-4 +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-E563C_PLCC4_5.0x5.0mm_P3.2mm_HandSoldering +RGB addressable LED, 5x5mm body, 1.57mm height, https://optoelectronics.liteon.com/upload/download/DS35-2018-0092/LTST-E563CHEGBW-AW.PDF +LED RGB 5050 PLCC-4 +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-S326 +http://optoelectronics.liteon.com/upload/download/DS22-2000-287/LTST-S326KGJRKT.PDF +LED SMD right angle CCA +0 +3 +3 +LED_SMD +LED_Lumex_SML-LX0303SIUPGUSB +Lumex RGB LED, clear, SMD, https://www.lumex.com/spec/SML-LX0303SIUPGUSB.pdf +LED RGB +0 +4 +4 +LED_SMD +LED_Lumex_SML-LX0404SIUPGUSB +Lumex RGB LED, clear, SMD, https://www.lumex.com/spec/SML-LX0404SIUPGUSB.pdf +LED RGB +0 +4 +4 +LED_SMD +LED_Luminus_MP-3030-1100_3.0x3.0mm +Mid Power LED, Luminus MP-3030-1100, 3.0x3.0mm, 816mW, https://download.luminus.com/datasheets/Luminus_MP3030_1100_Datasheet.pdf +LED Luminus MP-3030-1100 +0 +5 +2 +LED_SMD +LED_Osram_Lx_P47F_D2mm_ReverseMount +OSRAM, reverse-mount LED, SMD, 2mm diameter, http://www.farnell.com/datasheets/2711587.pdf +LED ReverseMount Reverse +0 +4 +2 +LED_SMD +LED_PLCC-2_3.4x3.0mm_AK +LED PLCC-2 SMD package, orientation marker at anode, https://dammedia.osram.info/media/resource/hires/osram-dam-5824137/SFH%204257_EN.pdf +LED PLCC-2 SMD TOPLED +0 +2 +2 +LED_SMD +LED_PLCC-2_3.4x3.0mm_KA +LED PLCC-2 SMD package, orientation marker at cathode, https://dammedia.osram.info/media/resource/hires/osram-dam-6035009/SFH%204253_EN.pdf +LED PLCC-2 SMD TOPLED +0 +2 +2 +LED_SMD +LED_PLCC-2_3x2mm_AK +LED, SMD, PLCC-2, 3.0 x 2.0mm, orientation marker at anode, https://media.digikey.com/pdf/Data%20Sheets/CREE%20Power/CLM3A-BKW,GKW.pdf +LED PLCC-2 SMD +0 +2 +2 +LED_SMD +LED_PLCC-2_3x2mm_KA +LED, SMD, PLCC-2, 3.0 x 2.0mm, orientation marker at cathode, https://optoelectronics.liteon.com/upload/download/DS22-2009-0099/LTW-M670ZVS-M5_0906.pdf +LED PLCC-2 SMD +0 +2 +2 +LED_SMD +LED_PLCC_2835 +https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf +LED +0 +2 +2 +LED_SMD +LED_PLCC_2835_Handsoldering +https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf +LED +0 +2 +2 +LED_SMD +LED_RGB_1210 +RGB LED 3.2x2.7mm http://www.avagotech.com/docs/AV02-0610EN +LED 3227 +0 +4 +4 +LED_SMD +LED_RGB_5050-6 +http://cdn.sparkfun.com/datasheets/Components/LED/5060BRG4.pdf +RGB LED 5050-6 +0 +6 +6 +LED_SMD +LED_RGB_Cree-PLCC-6_6x5mm_P2.1mm +http://www.farnell.com/datasheets/2003905.pdf +LED RGB PLCC-6 CLP6C-FBK +0 +6 +6 +LED_SMD +LED_RGB_Everlight_EASV3015RGBA0_Horizontal +LED, RGB, right-angle, clear, https://everlightamericas.com/index.php?controller=attachment&id_attachment=3220 +LED RGB right-angle +0 +4 +4 +LED_SMD +LED_RGB_Getian_GT-P6PRGB4303 +https://www.gme.sk/img/cache/doc/518/177/vykonova-led-getian-gt-p6prgb4303-datasheet-1.pdf +LED RGB +0 +7 +7 +LED_SMD +LED_RGB_Lumex_SML-LXT0805SIUGUBW +RGB LED 0805 2.0mm x 1.3mm, orientation marker at common anode https://www.mouser.de/datasheet/2/244/SML-LXT0805SIUGUBW-1776540.pdf +RGB LED 0805 +0 +4 +4 +LED_SMD +LED_RGB_PLCC-6 +RGB LED PLCC-6 +RGB LED PLCC-6 +0 +6 +6 +LED_SMD +LED_RGB_Wuerth-PLCC4_3.2x2.8mm_150141M173100 +3.2mm x 2.8mm PLCC4 LED, https://www.we-online.de/katalog/datasheet/150141M173100.pdf +LED RGB Wurth PLCC-4 3528 +0 +4 +4 +LED_SMD +LED_RGB_Wuerth_150080M153000 +RGB LED 0805 2.0mm x 1.3mm, orientation marker at common anode https://www.we-online.com/components/products/datasheet/150080M153000.pdf +RGB LED 0805 +0 +4 +4 +LED_SMD +LED_ROHM_SMLVN6 +https://www.rohm.com/datasheet/SMLVN6RGB1U +LED ROHM SMLVN6 +0 +6 +6 +LED_SMD +LED_SK6805_PLCC4_2.4x2.7mm_P1.3mm +https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf +LED RGB NeoPixel Nano PLCC-4 +0 +4 +4 +LED_SMD +LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm +3.5mm x 3.5mm PLCC4 Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf +LED RGB NeoPixel Mini PLCC-4 3535 +0 +4 +4 +LED_SMD +LED_SK6812_EC15_1.5x1.5mm +RGB addressable LED, 0.1W, 1.5mm x 1.5mm, 0.65m height, orientation mark at GND, http://ledstrip-china.com/productshow.asp?id=322 +LED RGB NeoPixel +0 +4 +4 +LED_SMD +LED_SK6812_PLCC4_5.0x5.0mm_P3.2mm +5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf +LED RGB NeoPixel PLCC-4 5050 +0 +4 +4 +LED_SMD +LED_WS2812B-2020_PLCC4_2.0x2.0mm +2.0mm x 2.0mm Addressable RGB LED NeoPixel Nano, 12 mA, https://cdn-shop.adafruit.com/product-files/4684/4684_WS2812B-2020_V1.3_EN.pdf +LED RGB NeoPixel Nano PLCC-4 2020 +0 +4 +4 +LED_SMD +LED_WS2812B-Mini_PLCC4_3.5x3.5mm +Addressable RGB LED NeoPixel Mini, 12 mA, https://web.archive.org/web/20200131233647/http://www.world-semi.com/DownLoadFile/112 +LED RGB NeoPixel Mini +0 +4 +4 +LED_SMD +LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm +5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf +LED RGB NeoPixel PLCC-4 5050 +0 +4 +4 +LED_SMD +LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm +https://cdn-shop.adafruit.com/datasheets/WS2812.pdf +LED RGB NeoPixel +0 +6 +6 +LED_SMD +LED_Wurth_150044M155260 +Wurth Common anode RGB LED, SMD, 0404, 1x1x1.65mm, https://www.we-online.com/catalog/datasheet/150044M155260.pdf +LED RGB ARGB +0 +4 +4 +LED_SMD +LED_Yuji_5730 +LED,Yuji,5730,https://cdn.shopify.com/s/files/1/0344/6401/files/YJWJ014-1.1_YJ-BC-5730L-G02.pdf +LED Yuji 5730 +0 +3 +2 +LED_SMD +LED_miniPLCC_2315 +https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true +LED +0 +2 +2 +LED_SMD +LED_miniPLCC_2315_Handsoldering +https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true +LED +0 +2 +2 +LED_THT +LED_BL-FL7680RGB +'Piranha' RGB LED, through hole, common anode, 7.62x7.62mm, BGRA pin order, https://cdn-shop.adafruit.com/datasheets/BL-FL7680RGB.pdf +RGB LED Piranha Super-Flux BetLux +0 +4 +4 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W3.3mm_H2.4mm +LED, Round, Rectangular size 3.3x2.4mm^2 diameter 1.8mm, 2 pins +LED Round Rectangular size 3.3x2.4mm^2 diameter 1.8mm 2 pins +0 +2 +2 +LED_THT +LED_D2.0mm_W4.0mm_H2.8mm_FlatTop +LED, Round, FlatTop, Rectangular size 4.0x2.8mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-1034IDT(Ver.9A).pdf +LED Round FlatTop Rectangular size 4.0x2.8mm^2 diameter 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D2.0mm_W4.8mm_H2.5mm_FlatTop +LED, Round, FlatTop, Rectangular size 4.8x2.5mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-13GD(Ver.11B).pdf +LED Round FlatTop Rectangular size 4.8x2.5mm^2 diameter 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm +LED, diameter 3.0mm, 2 pins +LED diameter 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm-3 +LED, diameter 3.0mm, 2 pins, diameter 3.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-3VSURKCGKC(Ver.8A).pdf +LED diameter 3.0mm 2 pins diameter 3.0mm 3 pins +0 +3 +3 +LED_THT +LED_D3.0mm_Clear +IR-LED, diameter 3.0mm, 2 pins, color: clear +IR infrared LED diameter 3.0mm 2 pins clear +0 +2 +2 +LED_THT +LED_D3.0mm_FlatTop +LED, Round, FlatTop, diameter 3.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-47XEC(Ver.9A).pdf +LED Round FlatTop diameter 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_Clear +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRBlack +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRGrey +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_IRBlack +IR-ED, diameter 3.0mm, 2 pins, color: black +IR infrared LED diameter 3.0mm 2 pins black +0 +2 +2 +LED_THT +LED_D3.0mm_IRGrey +IR-LED, diameter 3.0mm, 2 pins, color: grey +IR infrared LED diameter 3.0mm 2 pins grey +0 +2 +2 +LED_THT +LED_D4.0mm +LED, diameter 4.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-43GD(Ver.12B).pdf +LED diameter 4.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm-3 +LED, diameter 5.0mm, 2 pins, diameter 5.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-59EGC(Ver.17A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins +0 +3 +3 +LED_THT +LED_D5.0mm-3_Horizontal_O3.81mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 3 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 3 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +LED_THT +LED_D5.0mm-4_RGB +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins diameter 5.0mm 4 pins RGB RGBLED +0 +4 +4 +LED_THT +LED_D5.0mm-4_RGB_Staggered_Pins +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +rgb led +0 +4 +4 +LED_THT +LED_D5.0mm-4_RGB_Wide_Pins +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins diameter 5.0mm 4 pins RGB RGBLED +0 +4 +4 +LED_THT +LED_D5.0mm_Clear +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_FlatTop +LED, Round, FlatTop, diameter 5.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-483GDT(Ver.15B).pdf +LED Round FlatTop diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_Clear +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRBlack +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRGrey +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_IRBlack +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_IRGrey +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D8.0mm +LED, diameter 8.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED8MMGE_LED8MMGN_LED8MMRT%23KIN.pdf +LED diameter 8.0mm 2 pins +0 +2 +2 +LED_THT +LED_D8.0mm-3 +LED, diameter 8.0mm, 2 pins, diameter 8.0mm, 3 pins +LED diameter 8.0mm 2 pins diameter 8.0mm 3 pins +0 +3 +3 +LED_THT +LED_D10.0mm +LED, diameter 10.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED10-4500RT%23KIN.pdf +LED diameter 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D10.0mm-3 +LED, diameter 10.0mm, 2 pins, diameter 10.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-819EGW(Ver.14A).pdf +LED diameter 10.0mm 2 pins diameter 10.0mm 3 pins +0 +3 +3 +LED_THT +LED_D20.0mm +LED, diameter 20.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/DLC2-6GD%28V6%29.pdf +LED diameter 20.0mm 2 pins +0 +2 +2 +LED_THT +LED_Oval_W5.2mm_H3.8mm +LED_Oval, Oval, Oval size 5.2x3.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-5603QBC-D(Ver.12B).pdf +LED_Oval Oval Oval size 5.2x3.8mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.0mm_H2.0mm +LED_Rectangular, Rectangular, Rectangular size 3.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 3.0x2.0mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.9mm_H1.8mm +LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.9mm_H1.8mm_FlatTop +LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.9mm_H1.9mm +LED_Rectangular, Rectangular, Rectangular size 3.9x1.9mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-144GDT(Ver.14B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.9mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm-3Pins +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 3 pins +0 +3 +3 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W7.62mm_H4.55mm_P5.08mm_R3 +Datasheet can be found at https://www.gme.cz/data/attachments/dsh.511-795.1.pdf +LED automotive super flux 7.62mm +0 +4 +2 +LED_THT +LED_SideEmitter_Rectangular_W4.5mm_H1.6mm +LED_SideEmitter_Rectangular, Rectangular, SideEmitter, Rectangular size 4.5x1.6mm^2, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED15MMGE_LED15MMGN%23KIN.pdf +LED_SideEmitter_Rectangular Rectangular SideEmitter Rectangular size 4.5x1.6mm^2 2 pins +0 +2 +2 +LED_THT +LED_VCCLite_5381H1_6.35x6.35mm +Red 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Red 5381 Series LED +0 +2 +2 +LED_THT +LED_VCCLite_5381H3_6.35x6.35mm +Amber 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Amber 5381 Series LED +0 +2 +2 +LED_THT +LED_VCCLite_5381H5_6.35x6.35mm +Green 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Green 5381 Series LED +0 +2 +2 +LED_THT +LED_VCCLite_5381H7_6.35x6.35mm +Yellow 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Yellow 5381 Series LED +0 +2 +2 +Library +QFN-28_EP_5.8x5.8_Pitch0.5mm + + +0 +45 +29 +Module +A20_OLINUXINO_LIME2 +A20 Olinuxino LIME2, 1.2GHz, 512-1024MB RAM, Micro-SD, NAND or eMMC, 1000Mbit Ethernet +A20 Olimex Olinuxino LIME2 development board +0 +180 +180 +Module +Adafruit_Feather +Common footprint for the Adafruit Feather series of boards, https://learn.adafruit.com/adafruit-feather/feather-specification +Adafruit Feather +0 +28 +28 +Module +Adafruit_Feather_32u4_FONA +Footprint for the Adafruit Feather 32u4 FONA board, https://learn.adafruit.com/adafruit-feather-32u4-fona +Adafruit Feather 32u4 FONA +0 +28 +28 +Module +Adafruit_Feather_32u4_FONA_WithMountingHoles +Footprint for the Adafruit Feather 32u4 FONA board, https://learn.adafruit.com/adafruit-feather-32u4-fona +Adafruit Feather 32u4 FONA +0 +28 +28 +Module +Adafruit_Feather_32u4_RFM +Footprint for the Adafruit Feather 32u4 RFM series of boards, https://learn.adafruit.com/adafruit-feather-32u4-radio-with-rfm69hcw-module +Adafruit Feather 32u4 RFM +0 +31 +31 +Module +Adafruit_Feather_32u4_RFM_WithMountingHoles +Footprint for the Adafruit Feather 32u4 RFM series of boards, https://learn.adafruit.com/adafruit-feather-32u4-radio-with-rfm69hcw-module +Adafruit Feather 32u4 RFM +0 +31 +31 +Module +Adafruit_Feather_M0_RFM +Footprint for the Adafruit Feather M0 RFM series of boards, e.g. https://learn.adafruit.com/adafruit-feather-m0-radio-with-rfm69-packet-radio +Adafruit Feather M0 RFM +0 +32 +32 +Module +Adafruit_Feather_M0_RFM_WithMountingHoles +Footprint for the Adafruit Feather M0 RFM series of boards, e.g. https://learn.adafruit.com/adafruit-feather-m0-radio-with-rfm69-packet-radio + Adafruit Feather M0 RFM +0 +32 +32 +Module +Adafruit_Feather_M0_Wifi +Footprint for the Adafruit Feather M0 Wifi board, https://learn.adafruit.com/adafruit-feather-m0-wifi-atwinc1500/ +Adafruit Feather M0 Wifi +0 +28 +28 +Module +Adafruit_Feather_M0_Wifi_WithMountingHoles +Footprint for the Adafruit Feather M0 Wifi board, https://learn.adafruit.com/adafruit-feather-m0-wifi-atwinc1500/ +Adafruit Feather M0 Wifi +0 +28 +28 +Module +Adafruit_Feather_WICED +Footprint for the Adafruit Feather WICED Wifi board, https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi +Adafruit Feather WICED Wifi +0 +29 +29 +Module +Adafruit_Feather_WICED_WithMountingHoles +Footprint for the Adafruit Feather WICED Wifi board, https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi +Adafruit Feather WICED Wifi +0 +29 +29 +Module +Adafruit_Feather_WithMountingHoles +Common footprint for the Adafruit Feather series of boards, https://learn.adafruit.com/adafruit-feather/feather-specification +Adafruit Feather +0 +28 +28 +Module +Adafruit_HUZZAH_ESP8266_breakout +32-bit microcontroller module with WiFi, https://www.adafruit.com/product/2471 +ESP8266 WiFi microcontroller +0 +20 +20 +Module +Adafruit_HUZZAH_ESP8266_breakout_WithMountingHoles +32-bit microcontroller module with WiFi, https://www.adafruit.com/product/2471 +ESP8266 WiFi microcontroller +0 +20 +20 +Module +Arduino_Nano +Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino Nano +0 +30 +30 +Module +Arduino_Nano_WithMountingHoles +Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino Nano +0 +30 +30 +Module +Arduino_UNO_R2 +Arduino UNO R2, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R2 +0 +30 +30 +Module +Arduino_UNO_R2_WithMountingHoles +Arduino UNO R2, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R2 +0 +30 +30 +Module +Arduino_UNO_R3 +Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R3 +0 +32 +32 +Module +Arduino_UNO_R3_WithMountingHoles +Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R3 +0 +32 +32 +Module +BeagleBoard_PocketBeagle +PocketBeagle, https://github.com/beagleboard/pocketbeagle/wiki/System-Reference-Manual#71_Expansion_Header_Connectors +PocketBeagle +0 +72 +72 +Module +Carambola2 +8devices Carambola2, OpenWRT, industrial SoM computer, https://www.8devices.com/media/products/carambola2/downloads/carambola2-datasheet.pdf +carambola2 8devices +0 +104 +52 +Module +Electrosmith_Daisy_Seed +Embedded platform for audio applications. 96kHz / 24-bit audio hardware. 64MB of SDRAM for up to 10 minute long audio. ARM Cortex-M7 MCU, running at 480MHz. 31 total GPIO pins with configurable functionality. 12-bit Digital to Analog Converters (x2). SD card interfaces. PWM outputs. Serial Protocols for connecting external sensors and devices (SPI, UART, I2S, I2C). Dedicated VIN pin for power. Micro USB port, and additional USB pins for full OTG-support as host and device. https://static1.squarespace.com/static/58d03fdc1b10e3bf442567b8/t/6227e6236f02fb68d1577146/1646781988478/Daisy_Seed_datasheet_v1.0.3.pdf +Electrosmith Daisy Seed Microcontroller Module ARM Cortex-M7 Audio Codec +0 +40 +40 +Module +Maple_Mini +Maple Mini, http://docs.leaflabs.com/static.leaflabs.com/pub/leaflabs/maple-docs/0.0.12/hardware/maple-mini.html +Maple Mini +0 +40 +40 +Module +Olimex_MOD-WIFI-ESP8266-DEV +ESP8266 development board https://www.olimex.com/Products/IoT/ESP8266/MOD-WIFI-ESP8266-DEV/resources/dimensions-WIFI-ESP8266-DEV.png +ESP8266 +0 +22 +22 +Module +Onion_Omega2+ +https://onion.io/omega2/ +Omega Onion module +0 +32 +32 +Module +Onion_Omega2S +https://github.com/OnionIoT/Omega2/raw/master/Documents/Omega2S%20Datasheet.pdf +onion omega module +0 +89 +64 +Module +Pololu_Breakout-16_15.2x20.3mm +Pololu Breakout 16-pin 15.2x20.3mm 0.6x0.8\ +Pololu Breakout +0 +16 +16 +Module +Raspberry_Pi_Zero_Socketed_THT_FaceDown_MountingHoles +Raspberry Pi Zero using through hole straight pin socket, 2x20, 2.54mm pitch, https://www.raspberrypi.org/documentation/hardware/raspberrypi/mechanical/rpi_MECH_Zero_1p2.pdf +raspberry pi zero through hole +0 +40 +40 +Module +ST_Morpho_Connector_144_STLink +ST Morpho Connector 144 With STLink +ST Morpho Connector 144 STLink +0 +148 +148 +Module +ST_Morpho_Connector_144_STLink_MountingHoles +ST Morpho Connector 144 With STLink +ST Morpho Connector 144 STLink +0 +148 +148 +Module +Sipeed-M1 +AI accelerated MCU with optional wifi, https://dl.sipeed.com/MAIX/HDK/Sipeed-M1&M1W/Specifications +AI Kendryte K210 RISC-V +0 +85 +77 +Module +Texas_EUK_R-PDSS-T7_THT +Texas Instruments EUK 7 Pin Double Sided Module +module pcb +0 +7 +7 +Module +Texas_EUS_R-PDSS-T5_THT +Texas Instruments EUS 5 Pin Double Sided Module +module pcb +0 +5 +5 +Module +Texas_EUW_R-PDSS-T7_THT +Texas Instruments EUW 7 Pin Double Sided Module +module pcb +0 +7 +7 +Module +WEMOS_D1_mini_light +16-pin module, column spacing 22.86 mm (900 mils), https://wiki.wemos.cc/products:d1:d1_mini, https://c1.staticflickr.com/1/734/31400410271_f278b087db_z.jpg +ESP8266 WiFi microcontroller +0 +16 +16 +Motors +Vybronics_VZ30C1T8219732L +Vibration motor, 2.3-3.2V, 14000rpm, 0.7G, https://www.vybronics.com/wp-content/uploads/datasheet-files/Vybronics-VZ30C1T8219732L-datasheet.pdf +vibration motor Vybronics +0 +12 +3 +MountingEquipment +DINRailAdapter_3xM3_PhoenixContact_1201578 +https://www.phoenixcontact.com/online/portal/us?uri=pxc-oc-itemdetail:pid=1201578&library=usen&tab=1 +DIN rail adapter universal three M3 clearance holes +0 +0 +0 +MountingHole +MountingHole_2.1mm +Mounting Hole 2.1mm, no annular +mounting hole 2.1mm no annular +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2 +Mounting Hole 2.2mm, no annular, M2 +mounting hole 2.2mm no annular m2 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_DIN965 +Mounting Hole 2.2mm, no annular, M2, DIN965 +mounting hole 2.2mm no annular m2 din965 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad +Mounting Hole 2.2mm, M2, DIN965 +mounting hole 2.2mm m2 din965 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad_TopBottom +Mounting Hole 2.2mm, M2, DIN965 +mounting hole 2.2mm m2 din965 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad_TopOnly +Mounting Hole 2.2mm, M2, DIN965 +mounting hole 2.2mm m2 din965 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380 +Mounting Hole 2.2mm, no annular, M2, ISO7380 +mounting hole 2.2mm no annular m2 iso7380 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad +Mounting Hole 2.2mm, M2, ISO7380 +mounting hole 2.2mm m2 iso7380 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad_TopBottom +Mounting Hole 2.2mm, M2, ISO7380 +mounting hole 2.2mm m2 iso7380 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad_TopOnly +Mounting Hole 2.2mm, M2, ISO7380 +mounting hole 2.2mm m2 iso7380 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580 +Mounting Hole 2.2mm, no annular, M2, ISO14580 +mounting hole 2.2mm no annular m2 iso14580 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad +Mounting Hole 2.2mm, M2, ISO14580 +mounting hole 2.2mm m2 iso14580 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad_TopBottom +Mounting Hole 2.2mm, M2, ISO14580 +mounting hole 2.2mm m2 iso14580 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad_TopOnly +Mounting Hole 2.2mm, M2, ISO14580 +mounting hole 2.2mm m2 iso14580 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_Pad +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_TopBottom +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_TopOnly +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_Via +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +9 +1 +MountingHole +MountingHole_2.5mm +Mounting Hole 2.5mm, no annular +mounting hole 2.5mm no annular +0 +0 +0 +MountingHole +MountingHole_2.5mm_Pad +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +1 +1 +MountingHole +MountingHole_2.5mm_Pad_TopBottom +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +3 +1 +MountingHole +MountingHole_2.5mm_Pad_TopOnly +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +2 +1 +MountingHole +MountingHole_2.5mm_Pad_Via +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +9 +1 +MountingHole +MountingHole_2.7mm +Mounting Hole 2.7mm, no annular +mounting hole 2.7mm no annular +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5 +Mounting Hole 2.7mm, no annular, M2.5 +mounting hole 2.7mm no annular m2.5 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_DIN965 +Mounting Hole 2.7mm, no annular, M2.5, DIN965 +mounting hole 2.7mm no annular m2.5 din965 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad +Mounting Hole 2.7mm, M2.5, DIN965 +mounting hole 2.7mm m2.5 din965 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, DIN965 +mounting hole 2.7mm m2.5 din965 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, DIN965 +mounting hole 2.7mm m2.5 din965 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380 +Mounting Hole 2.7mm, no annular, M2.5, ISO7380 +mounting hole 2.7mm no annular m2.5 iso7380 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad +Mounting Hole 2.7mm, M2.5, ISO7380 +mounting hole 2.7mm m2.5 iso7380 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, ISO7380 +mounting hole 2.7mm m2.5 iso7380 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, ISO7380 +mounting hole 2.7mm m2.5 iso7380 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580 +Mounting Hole 2.7mm, no annular, M2.5, ISO14580 +mounting hole 2.7mm no annular m2.5 iso14580 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad +Mounting Hole 2.7mm, M2.5, ISO14580 +mounting hole 2.7mm m2.5 iso14580 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, ISO14580 +mounting hole 2.7mm m2.5 iso14580 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, ISO14580 +mounting hole 2.7mm m2.5 iso14580 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad +Mounting Hole 2.7mm, M2.5 +mounting hole 2.7mm m2.5 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_TopBottom +Mounting Hole 2.7mm, M2.5 +mounting hole 2.7mm m2.5 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_TopOnly +Mounting Hole 2.7mm, M2.5 +mounting hole 2.7mm m2.5 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_Via +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +9 +1 +MountingHole +MountingHole_2.7mm_Pad +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +1 +1 +MountingHole +MountingHole_2.7mm_Pad_TopBottom +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +3 +1 +MountingHole +MountingHole_2.7mm_Pad_TopOnly +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +2 +1 +MountingHole +MountingHole_2.7mm_Pad_Via +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +9 +1 +MountingHole +MountingHole_2mm +Mounting Hole 2mm, no annular +mounting hole 2mm no annular +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3 +Mounting Hole 3.2mm, no annular, M3 +mounting hole 3.2mm no annular m3 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_DIN965 +Mounting Hole 3.2mm, no annular, M3, DIN965 +mounting hole 3.2mm no annular m3 din965 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad +Mounting Hole 3.2mm, M3, DIN965 +mounting hole 3.2mm m3 din965 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad_TopBottom +Mounting Hole 3.2mm, M3, DIN965 +mounting hole 3.2mm m3 din965 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad_TopOnly +Mounting Hole 3.2mm, M3, DIN965 +mounting hole 3.2mm m3 din965 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380 +Mounting Hole 3.2mm, no annular, M3, ISO7380 +mounting hole 3.2mm no annular m3 iso7380 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad +Mounting Hole 3.2mm, M3, ISO7380 +mounting hole 3.2mm m3 iso7380 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad_TopBottom +Mounting Hole 3.2mm, M3, ISO7380 +mounting hole 3.2mm m3 iso7380 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad_TopOnly +Mounting Hole 3.2mm, M3, ISO7380 +mounting hole 3.2mm m3 iso7380 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580 +Mounting Hole 3.2mm, no annular, M3, ISO14580 +mounting hole 3.2mm no annular m3 iso14580 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad +Mounting Hole 3.2mm, M3, ISO14580 +mounting hole 3.2mm m3 iso14580 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad_TopBottom +Mounting Hole 3.2mm, M3, ISO14580 +mounting hole 3.2mm m3 iso14580 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad_TopOnly +Mounting Hole 3.2mm, M3, ISO14580 +mounting hole 3.2mm m3 iso14580 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_Pad +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_TopBottom +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_TopOnly +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_Via +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +9 +1 +MountingHole +MountingHole_3.5mm +Mounting Hole 3.5mm, no annular +mounting hole 3.5mm no annular +0 +0 +0 +MountingHole +MountingHole_3.5mm_Pad +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +1 +1 +MountingHole +MountingHole_3.5mm_Pad_TopBottom +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +3 +1 +MountingHole +MountingHole_3.5mm_Pad_TopOnly +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +2 +1 +MountingHole +MountingHole_3.5mm_Pad_Via +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +9 +1 +MountingHole +MountingHole_3.7mm +Mounting Hole 3.7mm, no annular +mounting hole 3.7mm no annular +0 +0 +0 +MountingHole +MountingHole_3.7mm_Pad +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +1 +1 +MountingHole +MountingHole_3.7mm_Pad_TopBottom +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +3 +1 +MountingHole +MountingHole_3.7mm_Pad_TopOnly +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +2 +1 +MountingHole +MountingHole_3.7mm_Pad_Via +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +9 +1 +MountingHole +MountingHole_3mm +Mounting Hole 3mm, no annular +mounting hole 3mm no annular +0 +0 +0 +MountingHole +MountingHole_3mm_Pad +Mounting Hole 3mm +mounting hole 3mm +0 +1 +1 +MountingHole +MountingHole_3mm_Pad_TopBottom +Mounting Hole 3mm +mounting hole 3mm +0 +3 +1 +MountingHole +MountingHole_3mm_Pad_TopOnly +Mounting Hole 3mm +mounting hole 3mm +0 +2 +1 +MountingHole +MountingHole_3mm_Pad_Via +Mounting Hole 3mm +mounting hole 3mm +0 +9 +1 +MountingHole +MountingHole_4.3mm_M4 +Mounting Hole 4.3mm, no annular, M4 +mounting hole 4.3mm no annular m4 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_DIN965 +Mounting Hole 4.3mm, no annular, M4, DIN965 +mounting hole 4.3mm no annular m4 din965 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad +Mounting Hole 4.3mm, M4, DIN965 +mounting hole 4.3mm m4 din965 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad_TopBottom +Mounting Hole 4.3mm, M4, DIN965 +mounting hole 4.3mm m4 din965 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad_TopOnly +Mounting Hole 4.3mm, M4, DIN965 +mounting hole 4.3mm m4 din965 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380 +Mounting Hole 4.3mm, no annular, M4, ISO7380 +mounting hole 4.3mm no annular m4 iso7380 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad +Mounting Hole 4.3mm, M4, ISO7380 +mounting hole 4.3mm m4 iso7380 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad_TopBottom +Mounting Hole 4.3mm, M4, ISO7380 +mounting hole 4.3mm m4 iso7380 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad_TopOnly +Mounting Hole 4.3mm, M4, ISO7380 +mounting hole 4.3mm m4 iso7380 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580 +Mounting Hole 4.3mm, no annular, M4, ISO14580 +mounting hole 4.3mm no annular m4 iso14580 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad +Mounting Hole 4.3mm, M4, ISO14580 +mounting hole 4.3mm m4 iso14580 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad_TopBottom +Mounting Hole 4.3mm, M4, ISO14580 +mounting hole 4.3mm m4 iso14580 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad_TopOnly +Mounting Hole 4.3mm, M4, ISO14580 +mounting hole 4.3mm m4 iso14580 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_Pad +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_TopBottom +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_TopOnly +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_Via +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +9 +1 +MountingHole +MountingHole_4.3x6.2mm_M4_Pad +Mounting Hole 4.3x6.2mm, M4 +mounting hole 4.3x6.2mm m4 +0 +1 +1 +MountingHole +MountingHole_4.3x6.2mm_M4_Pad_Via +Mounting Hole 4.3x6.2mm, M4 +mounting hole 4.3x6.2mm m4 +0 +17 +1 +MountingHole +MountingHole_4.5mm +Mounting Hole 4.5mm, no annular +mounting hole 4.5mm no annular +0 +0 +0 +MountingHole +MountingHole_4.5mm_Pad +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +1 +1 +MountingHole +MountingHole_4.5mm_Pad_TopBottom +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +3 +1 +MountingHole +MountingHole_4.5mm_Pad_TopOnly +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +2 +1 +MountingHole +MountingHole_4.5mm_Pad_Via +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +9 +1 +MountingHole +MountingHole_4mm +Mounting Hole 4mm, no annular +mounting hole 4mm no annular +0 +0 +0 +MountingHole +MountingHole_4mm_Pad +Mounting Hole 4mm +mounting hole 4mm +0 +1 +1 +MountingHole +MountingHole_4mm_Pad_TopBottom +Mounting Hole 4mm +mounting hole 4mm +0 +3 +1 +MountingHole +MountingHole_4mm_Pad_TopOnly +Mounting Hole 4mm +mounting hole 4mm +0 +2 +1 +MountingHole +MountingHole_4mm_Pad_Via +Mounting Hole 4mm +mounting hole 4mm +0 +9 +1 +MountingHole +MountingHole_5.3mm_M5 +Mounting Hole 5.3mm, no annular, M5 +mounting hole 5.3mm no annular m5 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_DIN965 +Mounting Hole 5.3mm, no annular, M5, DIN965 +mounting hole 5.3mm no annular m5 din965 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad +Mounting Hole 5.3mm, M5, DIN965 +mounting hole 5.3mm m5 din965 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad_TopBottom +Mounting Hole 5.3mm, M5, DIN965 +mounting hole 5.3mm m5 din965 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad_TopOnly +Mounting Hole 5.3mm, M5, DIN965 +mounting hole 5.3mm m5 din965 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380 +Mounting Hole 5.3mm, no annular, M5, ISO7380 +mounting hole 5.3mm no annular m5 iso7380 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad +Mounting Hole 5.3mm, M5, ISO7380 +mounting hole 5.3mm m5 iso7380 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad_TopBottom +Mounting Hole 5.3mm, M5, ISO7380 +mounting hole 5.3mm m5 iso7380 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad_TopOnly +Mounting Hole 5.3mm, M5, ISO7380 +mounting hole 5.3mm m5 iso7380 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580 +Mounting Hole 5.3mm, no annular, M5, ISO14580 +mounting hole 5.3mm no annular m5 iso14580 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad +Mounting Hole 5.3mm, M5, ISO14580 +mounting hole 5.3mm m5 iso14580 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad_TopBottom +Mounting Hole 5.3mm, M5, ISO14580 +mounting hole 5.3mm m5 iso14580 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad_TopOnly +Mounting Hole 5.3mm, M5, ISO14580 +mounting hole 5.3mm m5 iso14580 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_Pad +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_TopBottom +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_TopOnly +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_Via +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +9 +1 +MountingHole +MountingHole_5.5mm +Mounting Hole 5.5mm, no annular +mounting hole 5.5mm no annular +0 +0 +0 +MountingHole +MountingHole_5.5mm_Pad +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +1 +1 +MountingHole +MountingHole_5.5mm_Pad_TopBottom +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +3 +1 +MountingHole +MountingHole_5.5mm_Pad_TopOnly +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +2 +1 +MountingHole +MountingHole_5.5mm_Pad_Via +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +9 +1 +MountingHole +MountingHole_5mm +Mounting Hole 5mm, no annular +mounting hole 5mm no annular +0 +0 +0 +MountingHole +MountingHole_5mm_Pad +Mounting Hole 5mm +mounting hole 5mm +0 +1 +1 +MountingHole +MountingHole_5mm_Pad_TopBottom +Mounting Hole 5mm +mounting hole 5mm +0 +3 +1 +MountingHole +MountingHole_5mm_Pad_TopOnly +Mounting Hole 5mm +mounting hole 5mm +0 +2 +1 +MountingHole +MountingHole_5mm_Pad_Via +Mounting Hole 5mm +mounting hole 5mm +0 +9 +1 +MountingHole +MountingHole_6.4mm_M6 +Mounting Hole 6.4mm, no annular, M6 +mounting hole 6.4mm no annular m6 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_DIN965 +Mounting Hole 6.4mm, no annular, M6, DIN965 +mounting hole 6.4mm no annular m6 din965 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad +Mounting Hole 6.4mm, M6, DIN965 +mounting hole 6.4mm m6 din965 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad_TopBottom +Mounting Hole 6.4mm, M6, DIN965 +mounting hole 6.4mm m6 din965 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad_TopOnly +Mounting Hole 6.4mm, M6, DIN965 +mounting hole 6.4mm m6 din965 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380 +Mounting Hole 6.4mm, no annular, M6, ISO7380 +mounting hole 6.4mm no annular m6 iso7380 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad +Mounting Hole 6.4mm, M6, ISO7380 +mounting hole 6.4mm m6 iso7380 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad_TopBottom +Mounting Hole 6.4mm, M6, ISO7380 +mounting hole 6.4mm m6 iso7380 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad_TopOnly +Mounting Hole 6.4mm, M6, ISO7380 +mounting hole 6.4mm m6 iso7380 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580 +Mounting Hole 6.4mm, no annular, M6, ISO14580 +mounting hole 6.4mm no annular m6 iso14580 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad +Mounting Hole 6.4mm, M6, ISO14580 +mounting hole 6.4mm m6 iso14580 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad_TopBottom +Mounting Hole 6.4mm, M6, ISO14580 +mounting hole 6.4mm m6 iso14580 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad_TopOnly +Mounting Hole 6.4mm, M6, ISO14580 +mounting hole 6.4mm m6 iso14580 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_Pad +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_TopBottom +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_TopOnly +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_Via +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +9 +1 +MountingHole +MountingHole_6.5mm +Mounting Hole 6.5mm, no annular +mounting hole 6.5mm no annular +0 +0 +0 +MountingHole +MountingHole_6.5mm_Pad +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +1 +1 +MountingHole +MountingHole_6.5mm_Pad_TopBottom +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +3 +1 +MountingHole +MountingHole_6.5mm_Pad_TopOnly +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +2 +1 +MountingHole +MountingHole_6.5mm_Pad_Via +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +9 +1 +MountingHole +MountingHole_6mm +Mounting Hole 6mm, no annular +mounting hole 6mm no annular +0 +0 +0 +MountingHole +MountingHole_6mm_Pad +Mounting Hole 6mm +mounting hole 6mm +0 +1 +1 +MountingHole +MountingHole_6mm_Pad_TopBottom +Mounting Hole 6mm +mounting hole 6mm +0 +3 +1 +MountingHole +MountingHole_6mm_Pad_TopOnly +Mounting Hole 6mm +mounting hole 6mm +0 +2 +1 +MountingHole +MountingHole_6mm_Pad_Via +Mounting Hole 6mm +mounting hole 6mm +0 +9 +1 +MountingHole +MountingHole_8.4mm_M8 +Mounting Hole 8.4mm, no annular, M8 +mounting hole 8.4mm no annular m8 +0 +0 +0 +MountingHole +MountingHole_8.4mm_M8_Pad +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +1 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_TopBottom +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +3 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_TopOnly +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +2 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_Via +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +9 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMRA-D3.3mm_L7mm_7466300R_Horizontal +Right-angle SMD mounting hardware, inside through hole 3.3mm, lenght 7mm, total height 5mm, Würth electronics 7466300R (https://www.we-online.com/components/products/datasheet/7466300R.pdf) +screw +0 +4 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMRA-M3_L7mm_7466303R_Horizontal +Right-angle SMD mounting Hardware, inside threaded M3, length 7m, total height 5mm, Würth electronics 7466303R (https://www.we-online.com/components/products/datasheet/7466303R.pdf) +threaded screw +0 +4 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H5mm_9771050360 +Mounting Hardware, external M3, height 5, Wuerth electronics 9771050360 (https://katalog.we-online.com/em/datasheet/9771050360.pdf), generated with kicad-footprint-generator +Mounting M3 9771050360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H6mm_9771060360 +Mounting Hardware, external M3, height 6, Wuerth electronics 9771060360 (https://katalog.we-online.com/em/datasheet/9771060360.pdf), generated with kicad-footprint-generator +Mounting M3 9771060360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H7mm_9771070360 +Mounting Hardware, external M3, height 7, Wuerth electronics 9771070360 (https://katalog.we-online.com/em/datasheet/9771070360.pdf), generated with kicad-footprint-generator +Mounting M3 9771070360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H8mm_9771080360 +Mounting Hardware, external M3, height 8, Wuerth electronics 9771080360 (https://katalog.we-online.com/em/datasheet/9771080360.pdf), generated with kicad-footprint-generator +Mounting M3 9771080360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H9mm_9771090360 +Mounting Hardware, external M3, height 9, Wuerth electronics 9771090360 (https://katalog.we-online.com/em/datasheet/9771090360.pdf), generated with kicad-footprint-generator +Mounting M3 9771090360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H10mm_9771100360 +Mounting Hardware, external M3, height 10, Wuerth electronics 9771100360 (https://katalog.we-online.com/em/datasheet/9771100360.pdf), generated with kicad-footprint-generator +Mounting M3 9771100360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H11mm_9771110360 +Mounting Hardware, external M3, height 11, Wuerth electronics 9771110360 (https://katalog.we-online.com/em/datasheet/9771110360.pdf), generated with kicad-footprint-generator +Mounting M3 9771110360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H12mm_9771120360 +Mounting Hardware, external M3, height 12, Wuerth electronics 9771120360 (https://katalog.we-online.com/em/datasheet/9771120360.pdf), generated with kicad-footprint-generator +Mounting M3 9771120360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H13mm_9771130360 +Mounting Hardware, external M3, height 13, Wuerth electronics 9771130360 (https://katalog.we-online.com/em/datasheet/9771130360.pdf), generated with kicad-footprint-generator +Mounting M3 9771130360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H14mm_9771140360 +Mounting Hardware, external M3, height 14, Wuerth electronics 9771140360 (https://katalog.we-online.com/em/datasheet/9771140360.pdf), generated with kicad-footprint-generator +Mounting M3 9771140360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H15mm_9771150360 +Mounting Hardware, external M3, height 15, Wuerth electronics 9771150360 (https://katalog.we-online.com/em/datasheet/9771150360.pdf), generated with kicad-footprint-generator +Mounting M3 9771150360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H1mm_9774010482 +Mounting Hardware, inside through hole 4.5mm, height 1, Wuerth electronics 9774010482 (https://katalog.we-online.de/em/datasheet/9774010482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774010482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H2mm_9774020482 +Mounting Hardware, inside through hole 4.5mm, height 2, Wuerth electronics 9774020482 (https://katalog.we-online.de/em/datasheet/9774020482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774020482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H3mm_9774030482 +Mounting Hardware, inside through hole 4.5mm, height 3, Wuerth electronics 9774030482 (https://katalog.we-online.de/em/datasheet/9774030482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774030482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H4mm_9774040482 +Mounting Hardware, inside through hole 4.5mm, height 4, Wuerth electronics 9774040482 (https://katalog.we-online.de/em/datasheet/9774040482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774040482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H5mm_9774050482 +Mounting Hardware, inside through hole 4.5mm, height 5, Wuerth electronics 9774050482 (https://katalog.we-online.de/em/datasheet/9774050482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774050482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H6mm_9774060482 +Mounting Hardware, inside through hole 4.5mm, height 6, Wuerth electronics 9774060482 (https://katalog.we-online.de/em/datasheet/9774060482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774060482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H7mm_9774070482 +Mounting Hardware, inside through hole 4.5mm, height 7, Wuerth electronics 9774070482 (https://katalog.we-online.de/em/datasheet/9774070482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774070482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H8mm_9774080482 +Mounting Hardware, inside through hole 4.5mm, height 8, Wuerth electronics 9774080482 (https://katalog.we-online.de/em/datasheet/9774080482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774080482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H9mm_9774090482 +Mounting Hardware, inside through hole 4.5mm, height 9, Wuerth electronics 9774090482 (https://katalog.we-online.de/em/datasheet/9774090482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774090482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H10mm_9774100482 +Mounting Hardware, inside through hole 4.5mm, height 10, Wuerth electronics 9774100482 (https://katalog.we-online.de/em/datasheet/9774100482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774100482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H1.5mm_9774015633 +Mounting Hardware, inside through hole M1.6, height 1.5, Wuerth electronics 9774015633 (https://katalog.we-online.com/em/datasheet/9774015633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774015633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H1mm_9774010633 +Mounting Hardware, inside through hole M1.6, height 1, Wuerth electronics 9774010633 (https://katalog.we-online.com/em/datasheet/9774010633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774010633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_9774025633 +Mounting Hardware, inside through hole M1.6, height 2.5, Wuerth electronics 9774025633 (https://katalog.we-online.com/em/datasheet/9774025633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774025633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_ThreadDepth1.5mm_97730256332 +Mounting Hardware, inside blind hole M1.6, height 2.5, Wuerth electronics 97730256332 (https://katalog.we-online.com/em/datasheet/97730256332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730256332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_ThreadDepth1.5mm_NoNPTH_97730256330 +Mounting Hardware, inside blind hole M1.6, height 2.5, Wuerth electronics 97730256330 (https://katalog.we-online.com/em/datasheet/97730256330R.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730256330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2mm_9774020633 +Mounting Hardware, inside through hole M1.6, height 2, Wuerth electronics 9774020633 (https://katalog.we-online.com/em/datasheet/9774020633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774020633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_97730356332 +Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356332 (https://katalog.we-online.com/em/datasheet/97730356332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730356332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_97730356334 +Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356334 (https://katalog.we-online.com/em/datasheet/97730356334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730356334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_NoNPTH_97730356330 +Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356330 (https://katalog.we-online.com/em/datasheet/97730356330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730356330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3mm_9774030633 +Mounting Hardware, inside through hole M1.6, height 3, Wuerth electronics 9774030633 (https://katalog.we-online.com/em/datasheet/9774030633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774030633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3mm_ThreadDepth1.8mm_97730306332 +Mounting Hardware, inside blind hole M1.6, height 3, Wuerth electronics 97730306332 (https://katalog.we-online.com/em/datasheet/97730306332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730306332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3mm_ThreadDepth1.8mm_NoNPTH_97730306330 +Mounting Hardware, inside blind hole M1.6, height 3, Wuerth electronics 97730306330 (https://katalog.we-online.com/em/datasheet/97730306330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730306330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_97730456332 +Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456332 (https://katalog.we-online.com/em/datasheet/97730456332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730456332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_97730456334 +Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456334 (https://katalog.we-online.com/em/datasheet/97730456334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730456334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_NoNPTH_97730456330 +Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456330 (https://katalog.we-online.com/em/datasheet/97730456330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730456330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_97730406332 +Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406332 (https://katalog.we-online.com/em/datasheet/97730406332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730406332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_97730406334 +Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406334 (https://katalog.we-online.com/em/datasheet/97730406334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730406334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_NoNPTH_97730406330 +Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406330 (https://katalog.we-online.com/em/datasheet/97730406330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730406330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_97730506332 +Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506332 (https://katalog.we-online.com/em/datasheet/97730506332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730506332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_97730506334 +Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506334 (https://katalog.we-online.com/em/datasheet/97730506334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730506334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_NoNPTH_97730506330 +Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506330 (https://katalog.we-online.com/em/datasheet/97730506330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730506330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_97730606332 +Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606332 (https://katalog.we-online.com/em/datasheet/97730606332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730606332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_97730606334 +Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606334 (https://katalog.we-online.com/em/datasheet/97730606334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730606334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_NoNPTH_97730606330 +Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606330 (https://katalog.we-online.com/em/datasheet/97730606330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730606330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H1.5mm_9774015243 +Mounting Hardware, inside through hole M2, height 1.5, Wuerth electronics 9774015243 (https://katalog.we-online.de/em/datasheet/9774015243.pdf), generated with kicad-footprint-generator +Mounting M2 9774015243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H1mm_9774010243 +Mounting Hardware, inside through hole M2, height 1, Wuerth electronics 9774010243 (https://katalog.we-online.de/em/datasheet/9774010243.pdf), generated with kicad-footprint-generator +Mounting M2 9774010243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H2.5mm_9774025243 +Mounting Hardware, inside through hole M2, height 2.5, Wuerth electronics 9774025243 (https://katalog.we-online.de/em/datasheet/9774025243.pdf), generated with kicad-footprint-generator +Mounting M2 9774025243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H2mm_9774020243 +Mounting Hardware, inside through hole M2, height 2, Wuerth electronics 9774020243 (https://katalog.we-online.de/em/datasheet/9774020243.pdf), generated with kicad-footprint-generator +Mounting M2 9774020243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H3.5mm_9774035243 +Mounting Hardware, inside through hole M2, height 3.5, Wuerth electronics 9774035243 (https://katalog.we-online.de/em/datasheet/9774035243.pdf), generated with kicad-footprint-generator +Mounting M2 9774035243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H3mm_9774030243 +Mounting Hardware, inside through hole M2, height 3, Wuerth electronics 9774030243 (https://katalog.we-online.de/em/datasheet/9774030243.pdf), generated with kicad-footprint-generator +Mounting M2 9774030243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H4.5mm_9774045243 +Mounting Hardware, inside through hole M2, height 4.5, Wuerth electronics 9774045243 (https://katalog.we-online.de/em/datasheet/9774045243.pdf), generated with kicad-footprint-generator +Mounting M2 9774045243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H4mm_9774040243 +Mounting Hardware, inside through hole M2, height 4, Wuerth electronics 9774040243 (https://katalog.we-online.de/em/datasheet/9774040243.pdf), generated with kicad-footprint-generator +Mounting M2 9774040243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H5mm_9774050243 +Mounting Hardware, inside through hole M2, height 5, Wuerth electronics 9774050243 (https://katalog.we-online.de/em/datasheet/9774050243.pdf), generated with kicad-footprint-generator +Mounting M2 9774050243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H6mm_9774060243 +Mounting Hardware, inside through hole M2, height 6, Wuerth electronics 9774060243 (https://katalog.we-online.de/em/datasheet/9774060243.pdf), generated with kicad-footprint-generator +Mounting M2 9774060243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H7mm_9774070243 +Mounting Hardware, inside through hole M2, height 7, Wuerth electronics 9774070243 (https://katalog.we-online.de/em/datasheet/9774070243.pdf), generated with kicad-footprint-generator +Mounting M2 9774070243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H8mm_9774080243 +Mounting Hardware, inside through hole M2, height 8, Wuerth electronics 9774080243 (https://katalog.we-online.de/em/datasheet/9774080243.pdf), generated with kicad-footprint-generator +Mounting M2 9774080243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H1.5mm_9774015360 +Mounting Hardware, inside through hole M3, height 1.5, Wuerth electronics 9774015360 (https://katalog.we-online.de/em/datasheet/9774015360.pdf), generated with kicad-footprint-generator +Mounting M3 9774015360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H1mm_9774010360 +Mounting Hardware, inside through hole M3, height 1, Wuerth electronics 9774010360 (https://katalog.we-online.de/em/datasheet/9774010360.pdf), generated with kicad-footprint-generator +Mounting M3 9774010360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H2.5mm_9774025360 +Mounting Hardware, inside through hole M3, height 2.5, Wuerth electronics 9774025360 (https://katalog.we-online.de/em/datasheet/9774025360.pdf), generated with kicad-footprint-generator +Mounting M3 9774025360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H2mm_9774020360 +Mounting Hardware, inside through hole M3, height 2, Wuerth electronics 9774020360 (https://katalog.we-online.de/em/datasheet/9774020360.pdf), generated with kicad-footprint-generator +Mounting M3 9774020360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H3mm_9774030360 +Mounting Hardware, inside through hole M3, height 3, Wuerth electronics 9774030360 (https://katalog.we-online.de/em/datasheet/9774030360R.pdf), generated with kicad-footprint-generator +Mounting M3 9774030360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H4mm_9774040360 +Mounting Hardware, inside through hole M3, height 4, Wuerth electronics 9774040360 (https://katalog.we-online.de/em/datasheet/9774040360.pdf), generated with kicad-footprint-generator +Mounting M3 9774040360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H5mm_9774050360 +Mounting Hardware, inside through hole M3, height 5, Wuerth electronics 9774050360 (https://katalog.we-online.de/em/datasheet/9774050360.pdf), generated with kicad-footprint-generator +Mounting M3 9774050360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H6mm_9774060360 +Mounting Hardware, inside through hole M3, height 6, Wuerth electronics 9774060360 (https://katalog.we-online.de/em/datasheet/9774060360.pdf), generated with kicad-footprint-generator +Mounting M3 9774060360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H7mm_9774070360 +Mounting Hardware, inside through hole M3, height 7, Wuerth electronics 9774070360 (https://katalog.we-online.de/em/datasheet/9774070360.pdf), generated with kicad-footprint-generator +Mounting M3 9774070360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H8mm_9774080360 +Mounting Hardware, inside through hole M3, height 8, Wuerth electronics 9774080360 (https://katalog.we-online.de/em/datasheet/9774080360.pdf), generated with kicad-footprint-generator +Mounting M3 9774080360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H9mm_9774090360 +Mounting Hardware, inside through hole M3, height 9, Wuerth electronics 9774090360 (https://katalog.we-online.de/em/datasheet/9774090360.pdf), generated with kicad-footprint-generator +Mounting M3 9774090360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H10mm_9774100360 +Mounting Hardware, inside through hole M3, height 10, Wuerth electronics 9774100360 (https://katalog.we-online.de/em/datasheet/9774100360.pdf), generated with kicad-footprint-generator +Mounting M3 9774100360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H11mm_9774110360 +Mounting Hardware, inside through hole M3, height 11, Wuerth electronics 9774110360 (https://katalog.we-online.de/em/datasheet/9774110360.pdf), generated with kicad-footprint-generator +Mounting M3 9774110360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H12mm_9774120360 +Mounting Hardware, inside through hole M3, height 12, Wuerth electronics 9774120360 (https://katalog.we-online.de/em/datasheet/9774120360.pdf), generated with kicad-footprint-generator +Mounting M3 9774120360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H13mm_9774130360 +Mounting Hardware, inside through hole M3, height 13, Wuerth electronics 9774130360 (https://katalog.we-online.de/em/datasheet/9774130360.pdf), generated with kicad-footprint-generator +Mounting M3 9774130360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H14mm_9774140360 +Mounting Hardware, inside through hole M3, height 14, Wuerth electronics 9774140360 (https://katalog.we-online.de/em/datasheet/9774140360.pdf), generated with kicad-footprint-generator +Mounting M3 9774140360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H15mm_9774150360 +Mounting Hardware, inside through hole M3, height 15, Wuerth electronics 9774150360 (https://katalog.we-online.de/em/datasheet/9774150360.pdf), generated with kicad-footprint-generator +Mounting M3 9774150360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H2.6mm_ReverseMount_9775026960 +Mounting Hardware, inside through hole 3.2mm, height 2.6, Wuerth electronics 9775026960 (https://katalog.we-online.com/em/datasheet/9775026960R.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775026960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H3.1mm_ReverseMount_9775031960 +Mounting Hardware, inside through hole 3.2mm, height 3.1, Wuerth electronics 9775031960 (https://katalog.we-online.com/em/datasheet/9775031960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775031960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H3.6mm_ReverseMount_9775036960 +Mounting Hardware, inside through hole 3.2mm, height 3.6, Wuerth electronics 9775036960 (https://katalog.we-online.com/em/datasheet/9775036960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775036960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H4.1mm_ReverseMount_9775041960 +Mounting Hardware, inside through hole 3.2mm, height 4.1, Wuerth electronics 9775041960 (https://katalog.we-online.com/em/datasheet/9775041960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775041960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H4.6mm_ReverseMount_9775046960 +Mounting Hardware, inside through hole 3.2mm, height 4.6, Wuerth electronics 9775046960 (https://katalog.we-online.com/em/datasheet/9775046960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775046960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H5.1mm_ReverseMount_9775051960 +Mounting Hardware, inside through hole 3.2mm, height 5.1, Wuerth electronics 9775051960 (https://katalog.we-online.com/em/datasheet/9775051960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775051960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H5.6mm_ReverseMount_9775056960 +Mounting Hardware, inside through hole 3.2mm, height 5.6, Wuerth electronics 9775056960 (https://katalog.we-online.com/em/datasheet/9775056960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775056960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H6.6mm_ReverseMount_9775066960 +Mounting Hardware, inside through hole 3.2mm, height 6.6, Wuerth electronics 9775066960 (https://katalog.we-online.com/em/datasheet/9775066960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775066960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H7.6mm_ReverseMount_9775076960 +Mounting Hardware, inside through hole 3.2mm, height 7.6, Wuerth electronics 9775076960 (https://katalog.we-online.com/em/datasheet/9775076960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775076960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H8.6mm_ReverseMount_9775086960 +Mounting Hardware, inside through hole 3.2mm, height 8.6, Wuerth electronics 9775086960 (https://katalog.we-online.com/em/datasheet/9775086960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775086960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H9.6mm_ReverseMount_9775096960 +Mounting Hardware, inside through hole 3.2mm, height 9.6, Wuerth electronics 9775096960 (https://katalog.we-online.com/em/datasheet/9775096960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775096960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H10.6mm_ReverseMount_9775106960 +Mounting Hardware, inside through hole 3.2mm, height 10.6, Wuerth electronics 9775106960 (https://katalog.we-online.com/em/datasheet/9775106960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775106960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H11.6mm_ReverseMount_9775116960 +Mounting Hardware, inside through hole 3.2mm, height 11.6, Wuerth electronics 9775116960 (https://katalog.we-online.com/em/datasheet/9775116960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775116960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H2.6mm_ReverseMount_9775026360 +Mounting Hardware, inside through hole M3, height 2.6, Wuerth electronics 9775026360 (https://katalog.we-online.com/em/datasheet/9775026360.pdf), generated with kicad-footprint-generator +Mounting M3 9775026360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H3.1mm_ReverseMount_9775031360 +Mounting Hardware, inside through hole M3, height 3.1, Wuerth electronics 9775031360 (https://katalog.we-online.com/em/datasheet/9775031360.pdf), generated with kicad-footprint-generator +Mounting M3 9775031360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H3.6mm_ReverseMount_9775036360 +Mounting Hardware, inside through hole M3, height 3.6, Wuerth electronics 9775036360 (https://katalog.we-online.com/em/datasheet/9775036360.pdf), generated with kicad-footprint-generator +Mounting M3 9775036360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H4.1mm_ReverseMount_9775041360 +Mounting Hardware, inside through hole M3, height 4.1, Wuerth electronics 9775041360 (https://katalog.we-online.com/em/datasheet/9775041360.pdf), generated with kicad-footprint-generator +Mounting M3 9775041360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H4.6mm_ReverseMount_9775046360 +Mounting Hardware, inside through hole M3, height 4.6, Wuerth electronics 9775046360 (https://katalog.we-online.com/em/datasheet/9775046360.pdf), generated with kicad-footprint-generator +Mounting M3 9775046360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H5.1mm_ReverseMount_9775051360 +Mounting Hardware, inside through hole M3, height 5.1, Wuerth electronics 9775051360 (https://katalog.we-online.com/em/datasheet/9775051360.pdf), generated with kicad-footprint-generator +Mounting M3 9775051360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H5.6mm_ReverseMount_9775056360 +Mounting Hardware, inside through hole M3, height 5.6, Wuerth electronics 9775056360 (https://katalog.we-online.com/em/datasheet/9775056360.pdf), generated with kicad-footprint-generator +Mounting M3 9775056360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H6.6mm_ReverseMount_9775066360 +Mounting Hardware, inside through hole M3, height 6.6, Wuerth electronics 9775066360 (https://katalog.we-online.com/em/datasheet/9775066360.pdf), generated with kicad-footprint-generator +Mounting M3 9775066360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H7.6mm_ReverseMount_9775076360 +Mounting Hardware, inside through hole M3, height 7.6, Wuerth electronics 9775076360 (https://katalog.we-online.com/em/datasheet/9775076360.pdf), generated with kicad-footprint-generator +Mounting M3 9775076360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H8.6mm_ReverseMount_9775086360 +Mounting Hardware, inside through hole M3, height 8.6, Wuerth electronics 9775086360 (https://katalog.we-online.com/em/datasheet/9775086360.pdf), generated with kicad-footprint-generator +Mounting M3 9775086360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H9.6mm_ReverseMount_9775096360 +Mounting Hardware, inside through hole M3, height 9.6, Wuerth electronics 9775096360 (https://katalog.we-online.com/em/datasheet/9775096360.pdf), generated with kicad-footprint-generator +Mounting M3 9775096360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H10.6mm_ReverseMount_9775106360 +Mounting Hardware, inside through hole M3, height 10.6, Wuerth electronics 9775106360 (https://katalog.we-online.com/em/datasheet/9775106360.pdf), generated with kicad-footprint-generator +Mounting M3 9775106360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H11.6mm_ReverseMount_9775116360 +Mounting Hardware, inside through hole M3, height 11.6, Wuerth electronics 9775116360 (https://katalog.we-online.com/em/datasheet/9775116360.pdf), generated with kicad-footprint-generator +Mounting M3 9775116360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H2.5mm_SnapRivet_9776025960 +Mounting Hardware, inside through hole 3.3mm, height 2.5, Wuerth electronics 9776025960 (https://katalog.we-online.com/em/datasheet/9776025960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776025960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H2mm_SnapRivet_9776020960 +Mounting Hardware, inside through hole 3.3mm, height 2, Wuerth electronics 9776020960 (https://katalog.we-online.com/em/datasheet/9776020960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776020960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H3mm_SnapRivet_9776030960 +Mounting Hardware, inside through hole 3.3mm, height 3, Wuerth electronics 9776030960 (https://katalog.we-online.com/em/datasheet/9776030960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776030960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H4mm_SnapRivet_9776040960 +Mounting Hardware, inside through hole 3.3mm, height 4, Wuerth electronics 9776040960 (https://katalog.we-online.com/em/datasheet/9776040960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776040960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H5mm_SnapRivet_9776050960 +Mounting Hardware, inside through hole 3.3mm, height 5, Wuerth electronics 9776050960 (https://katalog.we-online.com/em/datasheet/9776050960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776050960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H6mm_SnapRivet_9776060960 +Mounting Hardware, inside through hole 3.3mm, height 6, Wuerth electronics 9776060960 (https://katalog.we-online.com/em/datasheet/9776060960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776060960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H7mm_SnapRivet_9776070960 +Mounting Hardware, inside through hole 3.3mm, height 7, Wuerth electronics 9776070960 (https://katalog.we-online.com/em/datasheet/9776070960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776070960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H8mm_SnapRivet_9776080960 +Mounting Hardware, inside through hole 3.3mm, height 8, Wuerth electronics 9776080960 (https://katalog.we-online.com/em/datasheet/9776080960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776080960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H9mm_SnapRivet_9776090960 +Mounting Hardware, inside through hole 3.3mm, height 9, Wuerth electronics 9776090960 (https://katalog.we-online.com/em/datasheet/9776090960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776090960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H10mm_SnapRivet_9776100960 +Mounting Hardware, inside through hole 3.3mm, height 10, Wuerth electronics 9776100960 (https://katalog.we-online.com/em/datasheet/9776100960R.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776100960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H1.5mm_9774015951 +Mounting Hardware, inside through hole 2.7mm, height 1.5, Wuerth electronics 9774015951 (https://katalog.we-online.de/em/datasheet/9774015951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774015951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H1mm_9774010951 +Mounting Hardware, inside through hole 2.7mm, height 1, Wuerth electronics 9774010951 (https://katalog.we-online.de/em/datasheet/9774010951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774010951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H2.5mm_9774025951 +Mounting Hardware, inside through hole 2.7mm, height 2.5, Wuerth electronics 9774025951 (https://katalog.we-online.de/em/datasheet/9774025951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774025951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H2mm_9774020951 +Mounting Hardware, inside through hole 2.7mm, height 2, Wuerth electronics 9774020951 (https://katalog.we-online.de/em/datasheet/9774020951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774020951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H3mm_9774030951 +Mounting Hardware, inside through hole 2.7mm, height 3, Wuerth electronics 9774030951 (https://katalog.we-online.de/em/datasheet/9774030951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774030951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H4mm_9774040951 +Mounting Hardware, inside through hole 2.7mm, height 4, Wuerth electronics 9774040951 (https://katalog.we-online.de/em/datasheet/9774040951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774040951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H5.5mm_9774055951 +Mounting Hardware, inside through hole 2.7mm, height 5.5, Wuerth electronics 9774055951 (https://katalog.we-online.de/em/datasheet/9774055951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774055951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H5mm_9774050951 +Mounting Hardware, inside through hole 2.7mm, height 5, Wuerth electronics 9774050951 (https://katalog.we-online.de/em/datasheet/9774050951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774050951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H6.5mm_9774065951 +Mounting Hardware, inside through hole 2.7mm, height 6.5, Wuerth electronics 9774065951 (https://katalog.we-online.de/em/datasheet/9774065951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774065951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H6mm_9774060951 +Mounting Hardware, inside through hole 2.7mm, height 6, Wuerth electronics 9774060951 (https://katalog.we-online.de/em/datasheet/9774060951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774060951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H7mm_9774070951 +Mounting Hardware, inside through hole 2.7mm, height 7, Wuerth electronics 9774070951 (https://katalog.we-online.de/em/datasheet/9774070951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774070951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H8mm_9774080951 +Mounting Hardware, inside through hole 2.7mm, height 8, Wuerth electronics 9774080951 (https://katalog.we-online.de/em/datasheet/9774080951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774080951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H9mm_9774090951 +Mounting Hardware, inside through hole 2.7mm, height 9, Wuerth electronics 9774090951 (https://katalog.we-online.de/em/datasheet/9774090951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774090951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H10mm_9774100951 +Mounting Hardware, inside through hole 2.7mm, height 10, Wuerth electronics 9774100951 (https://katalog.we-online.de/em/datasheet/9774100951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774100951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H1.5mm_9774015943 +Mounting Hardware, inside through hole 2.25mm, height 1.5, Wuerth electronics 9774015943 (https://katalog.we-online.de/em/datasheet/9774015943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774015943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H1mm_9774010943 +Mounting Hardware, inside through hole 2.25mm, height 1, Wuerth electronics 9774010943 (https://katalog.we-online.de/em/datasheet/9774010943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774010943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H2.5mm_9774025943 +Mounting Hardware, inside through hole 2.25mm, height 2.5, Wuerth electronics 9774025943 (https://katalog.we-online.de/em/datasheet/9774025943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774025943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H2mm_9774020943 +Mounting Hardware, inside through hole 2.25mm, height 2, Wuerth electronics 9774020943 (https://katalog.we-online.de/em/datasheet/9774020943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774020943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H3.5mm_9774035943 +Mounting Hardware, inside through hole 2.25mm, height 3.5, Wuerth electronics 9774035943 (https://katalog.we-online.de/em/datasheet/9774035943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774035943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H3mm_9774030943 +Mounting Hardware, inside through hole 2.25mm, height 3, Wuerth electronics 9774030943 (https://katalog.we-online.de/em/datasheet/9774030943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774030943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H4.5mm_9774045943 +Mounting Hardware, inside through hole 2.25mm, height 4.5, Wuerth electronics 9774045943 (https://katalog.we-online.de/em/datasheet/9774045943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774045943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H4mm_9774040943 +Mounting Hardware, inside through hole 2.25mm, height 4, Wuerth electronics 9774040943 (https://katalog.we-online.de/em/datasheet/9774040943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774040943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H5mm_9774050943 +Mounting Hardware, inside through hole 2.25mm, height 5, Wuerth electronics 9774050943 (https://katalog.we-online.de/em/datasheet/9774050943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774050943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H6mm_9774060943 +Mounting Hardware, inside through hole 2.25mm, height 6, Wuerth electronics 9774060943 (https://katalog.we-online.de/em/datasheet/9774060943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774060943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H7mm_9774070943 +Mounting Hardware, inside through hole 2.25mm, height 7, Wuerth electronics 9774070943 (https://katalog.we-online.de/em/datasheet/9774070943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774070943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H8mm_9774080943 +Mounting Hardware, inside through hole 2.25mm, height 8, Wuerth electronics 9774080943 (https://katalog.we-online.de/em/datasheet/9774080943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774080943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H1.5mm_9774015960 +Mounting Hardware, inside through hole 3.3mm, height 1.5, Wuerth electronics 9774015960 (https://katalog.we-online.de/em/datasheet/9774015960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774015960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H1mm_9774010960 +Mounting Hardware, inside through hole 3.3mm, height 1, Wuerth electronics 9774010960 (https://katalog.we-online.de/em/datasheet/9774010960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774010960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H2.5mm_9774025960 +Mounting Hardware, inside through hole 3.3mm, height 2.5, Wuerth electronics 9774025960 (https://katalog.we-online.de/em/datasheet/9774025960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774025960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H2mm_9774020960 +Mounting Hardware, inside through hole 3.3mm, height 2, Wuerth electronics 9774020960 (https://katalog.we-online.de/em/datasheet/9774020960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774020960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H3mm_9774030960 +Mounting Hardware, inside through hole 3.3mm, height 3, Wuerth electronics 9774030960 (https://katalog.we-online.de/em/datasheet/9774030960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774030960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H4mm_9774040960 +Mounting Hardware, inside through hole 3.3mm, height 4, Wuerth electronics 9774040960 (https://katalog.we-online.de/em/datasheet/9774040960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774040960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H5mm_9774050960 +Mounting Hardware, inside through hole 3.3mm, height 5, Wuerth electronics 9774050960 (https://katalog.we-online.de/em/datasheet/9774050960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774050960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H6mm_9774060960 +Mounting Hardware, inside through hole 3.3mm, height 6, Wuerth electronics 9774060960 (https://katalog.we-online.de/em/datasheet/9774060960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774060960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H7mm_9774070960 +Mounting Hardware, inside through hole 3.3mm, height 7, Wuerth electronics 9774070960 (https://katalog.we-online.de/em/datasheet/9774070960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774070960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H8mm_9774080960 +Mounting Hardware, inside through hole 3.3mm, height 8, Wuerth electronics 9774080960 (https://katalog.we-online.de/em/datasheet/9774080960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774080960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H9mm_9774090960 +Mounting Hardware, inside through hole 3.3mm, height 9, Wuerth electronics 9774090960 (https://katalog.we-online.de/em/datasheet/9774090960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774090960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H10mm_9774100960 +Mounting Hardware, inside through hole 3.3mm, height 10, Wuerth electronics 9774100960 (https://katalog.we-online.de/em/datasheet/9774100960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774100960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H11mm_9774110960 +Mounting Hardware, inside through hole 3.3mm, height 11, Wuerth electronics 9774110960 (https://katalog.we-online.de/em/datasheet/9774110960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774110960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H12mm_9774120960 +Mounting Hardware, inside through hole 3.3mm, height 12, Wuerth electronics 9774120960 (https://katalog.we-online.de/em/datasheet/9774120960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774120960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H13mm_9774130960 +Mounting Hardware, inside through hole 3.3mm, height 13, Wuerth electronics 9774130960 (https://katalog.we-online.de/em/datasheet/9774130960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774130960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H14mm_9774140960 +Mounting Hardware, inside through hole 3.3mm, height 14, Wuerth electronics 9774140960 (https://katalog.we-online.de/em/datasheet/9774140960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774140960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H15mm_9774150960 +Mounting Hardware, inside through hole 3.3mm, height 15, Wuerth electronics 9774150960 (https://katalog.we-online.de/em/datasheet/9774150960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774150960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H1mm_9774010982 +Mounting Hardware, inside through hole 4.5mm, height 1, Wuerth electronics 9774010982 (https://katalog.we-online.de/em/datasheet/9774010982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774010982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H2mm_9774020982 +Mounting Hardware, inside through hole 4.5mm, height 2, Wuerth electronics 9774020982 (https://katalog.we-online.de/em/datasheet/9774020982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774020982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H3mm_9774030982 +Mounting Hardware, inside through hole 4.5mm, height 3, Wuerth electronics 9774030982 (https://katalog.we-online.de/em/datasheet/9774030982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774030982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H4mm_9774040982 +Mounting Hardware, inside through hole 4.5mm, height 4, Wuerth electronics 9774040982 (https://katalog.we-online.de/em/datasheet/9774040982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774040982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H5mm_9774050982 +Mounting Hardware, inside through hole 4.5mm, height 5, Wuerth electronics 9774050982 (https://katalog.we-online.de/em/datasheet/9774050982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774050982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H6mm_9774060982 +Mounting Hardware, inside through hole 4.5mm, height 6, Wuerth electronics 9774060982 (https://katalog.we-online.de/em/datasheet/9774060982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774060982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H7mm_9774070982 +Mounting Hardware, inside through hole 4.5mm, height 7, Wuerth electronics 9774070982 (https://katalog.we-online.de/em/datasheet/9774070982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774070982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H8mm_9774080982 +Mounting Hardware, inside through hole 4.5mm, height 8, Wuerth electronics 9774080982 (https://katalog.we-online.de/em/datasheet/9774080982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774080982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H9mm_9774090982 +Mounting Hardware, inside through hole 4.5mm, height 9, Wuerth electronics 9774090982 (https://katalog.we-online.de/em/datasheet/9774090982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774090982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H10mm_9774100982 +Mounting Hardware, inside through hole 4.5mm, height 10, Wuerth electronics 9774100982 (https://katalog.we-online.de/em/datasheet/9774100982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774100982 +0 +8 +1 +NetTie +NetTie-2_SMD_Pad0.5mm +Net tie, 2 pin, 0.5mm square SMD pads +net tie +0 +2 +2 +NetTie +NetTie-2_SMD_Pad2.0mm +Net tie, 2 pin, 2.0mm square SMD pads +net tie +0 +2 +2 +NetTie +NetTie-2_THT_Pad0.3mm +Net tie, 2 pin, 0.3mm round THT pads +net tie +0 +2 +2 +NetTie +NetTie-2_THT_Pad1.0mm +Net tie, 2 pin, 1.0mm round THT pads +net tie +0 +2 +2 +NetTie +NetTie-3_SMD_Pad0.5mm +Net tie, 3 pin, 0.5mm square SMD pads +net tie +0 +3 +3 +NetTie +NetTie-3_SMD_Pad2.0mm +Net tie, 3 pin, 2.0mm square SMD pads +net tie +0 +3 +3 +NetTie +NetTie-3_THT_Pad0.3mm +Net tie, 3 pin, 0.3mm round THT pads +net tie +0 +3 +3 +NetTie +NetTie-3_THT_Pad1.0mm +Net tie, 3 pin, 1.0mm round THT pads +net tie +0 +3 +3 +NetTie +NetTie-4_SMD_Pad0.5mm +Net tie, 4 pin, 0.5mm square SMD pads +net tie +0 +4 +4 +NetTie +NetTie-4_SMD_Pad2.0mm +Net tie, 4 pin, 2.0mm square SMD pads +net tie +0 +4 +4 +NetTie +NetTie-4_THT_Pad0.3mm +Net tie, 4 pin, 0.3mm round THT pads +net tie +0 +4 +4 +NetTie +NetTie-4_THT_Pad1.0mm +Net tie, 4 pin, 1.0mm round THT pads +net tie +0 +4 +4 +OptoDevice +ADNS-9800 +Laser Gaming Sensor ADNS-9800 +MOUSE MOUSE_SENSOR LASER_GAMING_SENSOR +0 +16 +16 +OptoDevice +AGILENT_HFBR-152x +Fiberoptic Transmitter TX, HFBR series (https://docs.broadcom.com/docs/AV02-3283EN) +Fiberoptic Transmitter +0 +6 +6 +OptoDevice +AGILENT_HFBR-252x +Fiberoptic Receiver RX, HFBR series (https://docs.broadcom.com/docs/AV02-3283EN) +Fiberoptic Transmitter +0 +6 +6 +OptoDevice +AMS_TSL2550_SMD +http://ams.com/eng/content/download/250130/975613/142977 +TSL2550 ambient light sensor +0 +4 +4 +OptoDevice +AMS_TSL25911FN +DFN, 6 Pin (https://ams.com/documents/20143/9331680/TSL2591_DS000338_7-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +6 +6 +OptoDevice +Broadcom_AFBR-16xxZ_Horizontal +Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN +Fiber Optic Transmitter and Receiver +0 +6 +6 +OptoDevice +Broadcom_AFBR-16xxZ_Tilted +Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN +Fiber Optic Transmitter and Receiver +0 +6 +6 +OptoDevice +Broadcom_AFBR-16xxZ_Vertical +Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN +Fiber Optic Transmitter and Receiver +0 +6 +6 +OptoDevice +Broadcom_APDS-9160-003 +Broadcom DFN, 8 Pin (https://docs.broadcom.com/docs/APDS-9160-003-DS) +proximity sensor avago +0 +8 +8 +OptoDevice +Broadcom_APDS-9301 +ambient light sensor, i2c interface, 6-pin chipled package, https://docs.broadcom.com/docs/AV02-2315EN +ambient light sensor chipled +0 +6 +6 +OptoDevice +Broadcom_DFN-6_2x2mm_P0.65mm +Broadcom DFN, 6 Pin (https://docs.broadcom.com/docs/AV02-4755EN), generated with kicad-footprint-generator ipc_noLead_generator.py +Broadcom DFN NoLead +0 +6 +6 +OptoDevice +Broadcom_LGA-8_2x2mm_P0.5mm +Broadcom LGA, 8 Pin (https://docs.broadcom.com/doc/APDS-9251-001-DS#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +Broadcom LGA NoLead +0 +8 +8 +OptoDevice +Broadcom_LGA-8_2x2mm_P0.53mm +Broadcom LGA, 8 Pin (https://docs.broadcom.com/docs/AV02-4755EN), generated with kicad-footprint-generator ipc_noLead_generator.py +Broadcom LGA NoLead +0 +8 +8 +OptoDevice +Everlight_ITR1201SR10AR +package for Everlight ITR1201SR10AR, light-direction upwards, see https://www.everlight.com/file/ProductFile/ITR1201SR10AR-TR.pdf +reflective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307 +package for Everlight ITR8307 with PCB cutout, light-direction upwards, see http://www.everlight.com/file/ProductFile/ITR8307.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307F43 +package for Everlight ITR8307/F43, see https://everlighteurope.com/index.php?controller=attachment&id_attachment=5385 +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307_Reverse +package for Everlight ITR8307 with PCB cutout, light-direction downwards, see http://www.everlight.com/file/ProductFile/ITR8307.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR9608-F +Fork-type photointerrupter (https://everlighteurope.com/index.php?controller=attachment&id_attachment=5389) +Photointerrupter infrared LED +0 +4 +4 +OptoDevice +Finder_34.81 +Relay SPST, Finder Type 34.81 (opto relays/coupler), vertical/standing form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf +Relay SPST Finder +0 +4 +4 +OptoDevice +Hamamatsu_C12880 +Hamamatsu spectrometer, see http://www.hamamatsu.com/resources/pdf/ssd/c12880ma_kacc1226e.pdf +opto spectrometer Hamamatsu +0 +10 +10 +OptoDevice +Hamamatsu_S13360-30CS +SiPM, 2pin +Hamamatsu SiPM +0 +2 +2 +OptoDevice +Kingbright_KPS-3227 +3.2mmx2.7mm, light sensor, https://www.kingbright.com/attachments/file/psearch/000/00/00/KPS-3227SP1C(Ver.16).pdf +KPS-3227 Ambient Light Photo Sensor +0 +4 +4 +OptoDevice +Kingbright_KPS-5130 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KPS-5130PD7C(Ver.14).pdf +KPS-5130 photodiode RGB sensor +0 +4 +4 +OptoDevice +Kingbright_KRC011_Horizontal +Subminiature Reflective Optical Sensor, http://www.kingbright.com/attachments/file/psearch/000/00/00/KRC011(Ver.15).pdf +Subminiature Reflective Optical Sensor +0 +4 +4 +OptoDevice +Kingbright_KRC011_Vertical +Subminiature Reflective Optical Sensor, http://www.kingbright.com/attachments/file/psearch/000/00/00/KRC011(Ver.15).pdf +Subminiature Reflective Optical Sensor +0 +4 +4 +OptoDevice +Kodenshi_LG206D +http://kodenshi.co.jp/products/pdf/sensor/photointerrupter_ic/LG206D.pdf +Photointerrupter infrared LED with photo IC +0 +5 +5 +OptoDevice +Kodenshi_LG206L +http://kodenshi.co.jp/products/pdf/sensor/photointerrupter_ic/LG205L.pdf +Photointerrupter infrared LED with photo IC +0 +5 +5 +OptoDevice +Kodenshi_SG105 +package for Kodenshi SG-105 with PCB cutout, light-direction upwards, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Kodenshi_SG105F +package for Kodenshi SG-105F, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105F.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Kodenshi_SG105_Reverse +package for Kodenshi SG-105 with PCB cutout, light-direction downwards, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +LaserDiode_TO3.3-D3.3-3 +Laser Diode, TO-3.3mm, 3pin +Laser Diode TO3.3 +0 +3 +3 +OptoDevice +LaserDiode_TO5-D9-3 +Laser Diode, TO5-like (D=9mm), 3pin +Laser Diode TO5-like +0 +3 +3 +OptoDevice +LaserDiode_TO18-D5.6-3 +Laser Diode, TO18-like (D=5.6mm), 3pin +Laser Diode TO18-like +0 +3 +3 +OptoDevice +LaserDiode_TO38ICut-3 +Laser Diode, TO-38-ICut, 3pin +Laser Diode TO38-ICut +0 +3 +3 +OptoDevice +LaserDiode_TO56-3 +Laser Diode, TO-56, 3pin +Laser Diode TO56 +0 +3 +3 +OptoDevice +Lightpipe_Bivar_RLP1-400-650 +1-way, 2.8mm lightpipe, 10mm lens output height, 17mm protrusion, https://www.bivar.com/parts_content/Datasheets/RLP1-XXX-XXX.pdf +planar light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-100-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 2.54mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-100-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 2.54mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-150-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 3.81mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-150-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 3.81mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-200-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 5.08mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-250-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 6.35mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-250-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 6.35mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-300-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 7.62mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-300-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 7.62mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-450-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 11.43mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Dialight_515-1064F +https://www.dialightsignalsandcomponents.com/515-optopipe-light-pipe-trilevel-2-5mm-rnd-flat-diff-lens-press-fit/#tab-resources +lightpipe triple tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_LPF-C012303S +https://www.lumex.com/spec/LPF-C012303S.pdf +lightpipe dual tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_LPF-C013301S +https://www.lumex.com/spec/LPF-C013301S.pdf +lightpipe triple tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1275.x00x +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +spherical light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1276.1004 +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +spherical light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1276.2004 +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +planar light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lite-On_LTR-303ALS-01 +ambient light sensor, i2c interface, 6-pin chipled package, http://optoelectronics.liteon.com/upload/download/DS86-2013-0004/LTR-303ALS-01_DS_V1.pdf +ambient light sensor chipled +0 +6 +6 +OptoDevice +Luna_NSL-32 +Optoisolator with LED and photoresistor +optoisolator +0 +4 +4 +OptoDevice +Maxim_OLGA-14_3.3x5.6mm_P0.8mm +https://pdfserv.maximintegrated.com/land_patterns/90-0602.PDF +OLGA-14 OESIP-14 +0 +14 +14 +OptoDevice +ONSemi_QSE15x +3 Lead Plastic Package +ONSemi QSE158 QSE159 +0 +3 +3 +OptoDevice +OnSemi_CASE100AQ +OnSemi CASE 100AQ for QRE1113, see https://www.onsemi.com/pub/Collateral/QRE1113-D.PDF +reflective opto couple photo coupler +0 +4 +4 +OptoDevice +OnSemi_CASE100CY +OnSemi CASE 100CY, light-direction upwards, see http://www.onsemi.com/pub/Collateral/QRE1113-D.PDF +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Osram_BP104-SMD +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.2x2.2mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5989350/BP%20104%20FAS_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_BPW34S-SMD +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5488319/BPW%2034%20S_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_BPW82 +PhotoDiode, BPW82, RM2.54 +PhotoDiode BPW82 RM2.54 +0 +2 +2 +OptoDevice +Osram_DIL2_4.3x4.65mm_P5.08mm +PhotoDiode, plastic DIL, 4.3x4.65mm², RM5.08 +PhotoDiode plastic DIL RM5.08 +0 +2 +2 +OptoDevice +Osram_LPT80A +PhotoTransistor, sidelooker package, RM2.54 +PhotoTransistor sidelooker package RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH9x0x +package for Osram SFH9x0x series of reflective photo interrupters/couplers, see http://www.osram-os.com/Graphics/XPic6/00200860_0.pdf +reflective photo interrupter SMD +0 +6 +6 +OptoDevice +Osram_SFH205 +PhotoDiode, SFH205, RM2.54 +PhotoDiode SFH205 RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH225 +PhotoDiode, SFH225, RM2.54 +PhotoDiode SFH225 RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH2201 +PhotoDiode, Clear Silicone, Osram TOPLED, 4x5.09mm, area: 2.85x2.85mm, Orientation mark at cathode, https://dammedia.osram.info/media/resource/hires/osram-dam-25688470/SFH%202201%20A01_EN.pdf +PhotoDiode silicone +0 +6 +2 +OptoDevice +Osram_SFH2430 +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5467144/SFH%202430_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_SFH2440 +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5467146/SFH%202440_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_SFH3710 +Osram SHF3710 NPN phototransistor, SMD Chip LED package, 2.0 x 1.25mm, height 0.85mm, https://look.ams-osram.com/m/14a91a7e00106d22/original/SFH-3710.pdf +phototransistor npn +0 +2 +2 +OptoDevice +Osram_SMD-SmartDIL +PhotoDiode, plastic SMD SmatDIL +PhotoDiode plastic SMD SmatDIL +0 +3 +3 +OptoDevice +Panasonic_APV-AQY_SSOP-4_4.45x2.65mm_P1.27mm +https://www.panasonic-electric-works.com/cps/rde/xbcr/pew_eu_en/technical_information_photomos_en.pdf +SSOP4 APV21 AQY22 +0 +4 +4 +OptoDevice +PerkinElmer_VTL5C +Axial Vactrol (http://www.qsl.net/wa1ion/vactrol/vactrol.pdf) +vactrol +0 +4 +4 +OptoDevice +PerkinElmer_VTL5Cx2 +Axial Vactrol (http://www.qsl.net/wa1ion/vactrol/vactrol.pdf) +vactrol +0 +5 +5 +OptoDevice +R_LDR_4.9x4.2mm_P2.54mm_Vertical +Resistor, LDR 4.9x4.2mm +Resistor LDR4.9x4.2 +0 +2 +2 +OptoDevice +R_LDR_5.0x4.1mm_P3mm_Vertical +Resistor, LDR 5x4.1mm, see http://cdn-reichelt.de/documents/datenblatt/A500/A90xxxx%23PE.pdf +Resistor LDR5x4.1mm +0 +2 +2 +OptoDevice +R_LDR_5.1x4.3mm_P3.4mm_Vertical +Resistor, LDR 5.1x3.4mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR5.1x3.4mm +0 +2 +2 +OptoDevice +R_LDR_5.2x5.2mm_P3.5mm_Horizontal +Resistor, LDR 5.2x5.2, upright, see http://cdn-reichelt.de/documents/datenblatt/A500/M996011A.pdf +Resistor LDR5.2x5.2 +0 +2 +2 +OptoDevice +R_LDR_7x6mm_P5.1mm_Vertical +Resistor, LDR 7x6mm +Resistor LDR7x6mm +0 +2 +2 +OptoDevice +R_LDR_10x8.5mm_P7.6mm_Vertical +Resistor, LDR 10x8.5mm +Resistor LDR10.8.5mm +0 +2 +2 +OptoDevice +R_LDR_11x9.4mm_P8.2mm_Vertical +Resistor, LDR 11x9.4mm +Resistor LDR11x9.4mm +0 +2 +2 +OptoDevice +R_LDR_12x10.8mm_P9.0mm_Vertical +Resistor, LDR 12x10.8mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR12x10.8mm +0 +2 +2 +OptoDevice +R_LDR_D6.4mm_P3.4mm_Vertical +Resistor, LDR D=6.4mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDRD=6.4mm +0 +2 +2 +OptoDevice +R_LDR_D13.8mm_P9.0mm_Vertical +Resistor, diameter 13.8mm pitch 9mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR +0 +2 +2 +OptoDevice +R_LDR_D20mm_P17.5mm_Vertical +Resistor, LDR 20mm diameter, pin pitch 17.5mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR +0 +2 +2 +OptoDevice +Renesas_DFN-6_1.5x1.6mm_P0.5mm +DFN, 6 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-hodfn-6pin-l615x16?language=en&r=568376) +DFN NoLead +0 +6 +6 +OptoDevice +Rohm_RPR-0720 +Rohm DFN, 6 Pin (https://fscdn.rohm.com/en/products/databook/datasheet/opto/optical_sensor/photosensor/rpr-0720-e.pdf) +proximity sensor rohm +0 +6 +6 +OptoDevice +ST_VL53L0X +https://www.st.com/resource/en/datasheet/vl53l1x.pdf +laser-ranging sensor +0 +12 +12 +OptoDevice +Sharp_GP2S700HCP +Sharp GP2S700HCP, light-direction upwards, see: https://www.sharpsde.com/fileadmin/products/Optoelectronics/Isolation%20Devices/Specs_Photointerrupter/GP2S700HCP_03Oct05_DS_D3-A02201FEN.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Sharp_GP2Y0A41SK0F +http://www.sharp-world.com/products/device/lineup/data/pdf/datasheet/gp2y0a41sk_e.pdf +Distance Sensor Sharp +0 +2 +2 +OptoDevice +Sharp_IS471F +Sharp OPIC IS471F, see http://pdf.datasheetcatalog.com/datasheet/Sharp/mXvrzty.pdf +Sharp OPIC IS471F +0 +4 +4 +OptoDevice +Sharp_IS485 +Sharp OPIC, IS485, IS486, see http://microrato.ua.pt/main/Actividades/Estagios/Docs/IS485_6.pdf +Sharp OPIC IS485 IS486 +0 +3 +3 +OptoDevice +Siemens_SFH900 +package for Siemens SFH900 reflex photo interrupter/coupler/object detector, see https://www.batronix.com/pdf/sfh900.pdf +Siemens SFH900 reflex photo interrupter coupler object detector +0 +3 +3 +OptoDevice +Toshiba_TORX170_TORX173_TORX193_TORX194 +Fiberoptic Reciver, RX, Toshiba, Toslink, TORX170, TORX173, TORX193, TORX194 +Fiberoptic Reciver RX Toshiba Toslink TORX170 TORX173 TORX193 TORX194 +0 +6 +6 +OptoDevice +Toshiba_TOTX170_TOTX173_TOTX193_TOTX194 +Fiberoptic Reciver, RX, Toshiba, Toslink, TORX170, TORX173, TORX193, TORX194 +Fiberoptic Reciver RX Toshiba Toslink TORX170 TORX173 TORX193 TORX194 +0 +6 +6 +OptoDevice +Vishay_CAST-3Pin +IR Receiver Vishay TSOP-xxxx, CAST package, see https://www.vishay.com/docs/82493/tsop311.pdf +IRReceiverVishayTSOP-xxxx CAST +0 +3 +3 +OptoDevice +Vishay_CNY70 +package for Vishay CNY70 refective photo coupler/interrupter, https://www.vishay.com/docs/83751/cny70.pdf +Vishay CNY70 refective photo coupler +0 +4 +4 +OptoDevice +Vishay_MINICAST-3Pin +IR Receiver Vishay TSOP-xxxx, MINICAST package, see https://www.vishay.com/docs/82669/tsop32s40f.pdf +IR Receiver Vishay TSOP-xxxx MINICAST +0 +3 +3 +OptoDevice +Vishay_MINIMOLD-3Pin +IR Receiver Vishay TSOP-xxxx, MINIMOLD package, see https://www.vishay.com/docs/82742/tsop331.pdf +IR Receiver Vishay TSOP-xxxx MINIMOLD +0 +3 +3 +OptoDevice +Vishay_MOLD-3Pin +IR Receiver Vishay TSOP-xxxx, MOLD package, see https://www.vishay.com/docs/82669/tsop32s40f.pdf +IR Receiver Vishay TSOP-xxxx MOLD +0 +3 +3 +OptoDevice +Vishay_TCRT5000 +IR Reflective Optical Sensor with Transistor Output TCRT5000 https://www.vishay.com/docs/83760/tcrt5000.pdf +IR Reflective Optical Sensor with Transistor Output TCRT5000 Vishay Distance Sensor +0 +4 +4 +Oscillator +Oscillator_DIP-8 +Oscillator, DIP8,http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_DIP-8_LargePads +Oscillator, DIP8, Large Pads, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_DIP-14 +Oscillator, DIP14, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_DIP-14_LargePads +Oscillator, DIP14, Large Pads, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_OCXO_Morion_MV267 +http://www.morion.com.ru/catalog_pdf/MV267.pdf +OCXO +0 +5 +5 +Oscillator +Oscillator_OCXO_Morion_MV317 +https://www.morion-us.com/catalog_pdf/mv317.pdf +OCXO +0 +5 +5 +Oscillator +Oscillator_SMD_Abracon_ABLNO +https://abracon.com/Precisiontiming/ABLNO.pdf +VCXO XO +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASCO-4Pin_1.6x1.2mm +Miniature Crystal Clock Oscillator Abracon ASCO series, https://abracon.com/Oscillators/ASCO.pdf, 1.6x1.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASDMB-4Pin_2.5x2.0mm +Miniature Crystal Clock Oscillator Abracon ASDMB series, 2.5x2.0mm package, http://www.abracon.com/Oscillators/ASDMB.pdf +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm +Miniature Crystal Clock Oscillator Abracon ASE series, http://www.abracon.com/Oscillators/ASEseries.pdf, 3.2x2.5mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm_HandSoldering +Miniature Crystal Clock Oscillator Abracon ASE series, http://www.abracon.com/Oscillators/ASEseries.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASV-4Pin_7.0x5.1mm +Miniature Crystal Clock Oscillator Abracon ASV series, http://www.abracon.com/Oscillators/ASV.pdf, 7.0x5.1mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASV-4Pin_7.0x5.1mm_HandSoldering +Miniature Crystal Clock Oscillator Abracon ASV series, http://www.abracon.com/Oscillators/ASV.pdf, hand-soldering, 7.0x5.1mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Diodes_FN-4Pin_7.0x5.0mm +FN Series Crystal Clock Oscillator (XO) (https://www.diodes.com/assets/Datasheets/FN_3-3V.pdf) +Oscillator Crystal SMD SMT +0 +4 +4 +Oscillator +Oscillator_SMD_ECS_2520MV-xxx-xx-4Pin_2.5x2.0mm +Miniature Crystal Clock Oscillator ECS 2520MV series, https://www.ecsxtal.com/store/pdf/ECS-2520MV.pdf +Miniature Crystal Clock Oscillator ECS 2520MV series SMD SMT HCMOS +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO32-4Pin_3.2x2.5mm +Miniature Crystal Clock Oscillator EuroQuartz XO32 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO32.pdf, 3.2x2.5mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO32-4Pin_3.2x2.5mm_HandSoldering +Miniature Crystal Clock Oscillator EuroQuartz XO32 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO32.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm +Miniature Crystal Clock Oscillator EuroQuartz XO53 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO53.pdf, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm_HandSoldering +Miniature Crystal Clock Oscillator EuroQuartz XO53 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO53.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO91-4Pin_7.0x5.0mm +Miniature Crystal Clock Oscillator EuroQuartz XO91 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO91.pdf, 7.0x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO91-4Pin_7.0x5.0mm_HandSoldering +Miniature Crystal Clock Oscillator EuroQuartz XO91 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO91.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS1-6Pin_14.8x9.1mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S1-KHZ/LHZ, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 14.8x9.1mm^2 package +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_Fordahl_DFAS2-4Pin_7.3x5.1mm +Mminiature Crystal Clock Oscillator TXCO Fordahl DFA S2-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.3x5.1mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS2-4Pin_7.3x5.1mm_HandSoldering +Mminiature Crystal Clock Oscillator TXCO Fordahl DFA S2-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.3x5.1mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS3-4Pin_9.1x7.2mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S3-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 9.1x7.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS3-4Pin_9.1x7.2mm_HandSoldering +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S3-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 9.1x7.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS7-4Pin_19.9x12.9mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S7-K/L, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 19.9x12.9mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS7-4Pin_19.9x12.9mm_HandSoldering +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S7-K/L, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 19.9x12.9mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS11-4Pin_7.0x5.0mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S11-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.0x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS11-4Pin_7.0x5.0mm_HandSoldering +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S11-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS15-4Pin_5.0x3.2mm +Ultraminiature Crystal Clock Oscillator TXCO Fordahl DFA S15-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS15-4Pin_5.0x3.2mm_HandSoldering +Ultraminiature Crystal Clock Oscillator TXCO Fordahl DFA S15-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fox_FT5H_5.0x3.2mm +https://foxonline.com/wp-content/uploads/pdfs/T5HN_T5HV.pdf +Fox TXCO temperature compensated oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_IDT_JS6-6_5.0x3.2mm_P1.27mm +SMD Crystal Oscillator IDT https://www.idt.com/document/dst/xu-family-datasheet#page=15, 5.0x3.2mm +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_IDT_JU6-6_7.0x5.0mm_P2.54mm +SMD Crystal Oscillator IDT https://www.idt.com/document/dst/xu-family-datasheet#page=17, 7.0x5.0mm +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_IQD_IQXO70-4Pin_7.5x5.0mm +IQD Crystal Clock Oscillator IQXO-70, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.5x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_IQD_IQXO70-4Pin_7.5x5.0mm_HandSoldering +IQD Crystal Clock Oscillator IQXO-70, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.5x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Kyocera_2520-6Pin_2.5x2.0mm +https://global.kyocera.com/prdct/electro/product/pdf/kt2520_e.pdf +2.5mm 2mm SMD +0 +6 +6 +Oscillator +Oscillator_SMD_Kyocera_KC2520Z-4Pin_2.5x2.0mm +https://global.kyocera.com/prdct/electro/product/pdf/clock_z_xz_e.pdf +2.5mm 2mm SMD +0 +4 +4 +Oscillator +Oscillator_SMD_OCXO_ConnorWinfield_OH300 +http://www.conwin.com/datasheets/cx/cx282.pdf +OCXO +0 +7 +7 +Oscillator +Oscillator_SMD_SI570_SI571_HandSoldering +SI570, SI571, Programmable oscillator, Standard +SI570 SI571 Programmable oscillator Standard +0 +8 +8 +Oscillator +Oscillator_SMD_SI570_SI571_Standard +SI570, SI571, Programmable oscillator, Standard +SI570 SI571 Programmable oscillator Standard +0 +8 +8 +Oscillator +Oscillator_SMD_SeikoEpson_SG210-4Pin_2.5x2.0mm +SMD Crystal Oscillator Seiko Epson SG-210 https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-210SED, 2.5x2.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG210-4Pin_2.5x2.0mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-210 https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-210SED, hand-soldering, 2.5x2.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG3030CM +SMD Crystal Oscillator Seiko Epson SG-3030CM package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CA-4Pin_7.0x5.0mm +SMD Crystal Oscillator Seiko Epson SG-8002CA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 7.0x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CA-4Pin_7.0x5.0mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002CA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CE-4Pin_3.2x2.5mm +SMD Crystal Oscillator Seiko Epson SG-8002CE https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 3.2x2.5mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CE-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002CE https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JA-4Pin_14.0x8.7mm +SMD Crystal Oscillator Seiko Epson SG-8002JA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 14.0x8.7mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JA-4Pin_14.0x8.7mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002JA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 14.0x8.7mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JC-4Pin_10.5x5.0mm +SMD Crystal Oscillator Seiko Epson SG-8002JC https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 10.5x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JC-4Pin_10.5x5.0mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002JC https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 10.5x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002LB-4Pin_5.0x3.2mm +SMD Crystal Oscillator Seiko Epson SG-8002LB https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002LB-4Pin_5.0x3.2mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002LB https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_TG2520SMN-xxx-xxxxxx-4Pin_2.5x2.0mm +Miniature Crystal Clock Oscillator TG2520 series, https://support.epson.biz/td/api/doc_check.php?dl=app_TG2520SMN&lang=en +Miniature Crystal Clock Oscillator TG2520 series SMD SMT +0 +4 +4 +Oscillator +Oscillator_SMD_SiTime_PQFD-6L_3.2x2.5mm +3.2x2.5mm, 6-pin QFN (https://www.sitime.com/datasheet/SiT9365 page 13) +SMD SMT mems oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_SiTime_SiT9121-6Pin_3.2x2.5mm +3.2x2.5mm, 1-220MHz High Performance Differential Oscillator SiTime SiT9121 https://www.sitime.com/datasheet/SiT9121 +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_Silicon_Labs_LGA-6_2.5x3.2mm_P1.25mm +Silicon_Labs LGA, 6 Pin (https://www.silabs.com/documents/public/data-sheets/si512-13.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Silicon_Labs LGA NoLead +0 +6 +6 +Oscillator +Oscillator_SMD_TCXO_G158 +TCXO +TCXO +0 +4 +4 +Oscillator +Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm +Miniature Crystal Clock Oscillator TXC 7C series, http://www.txccorp.com/download/products/osc/7C_o.pdf, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm_HandSoldering +Miniature Crystal Clock Oscillator TXC 7C series, http://www.txccorp.com/download/products/osc/7C_o.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SeikoEpson_SG-8002DB +14-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +Oscillator +Oscillator_SeikoEpson_SG-8002DC +8-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +PCM_Espressif +ESP32-C3-DevKitC-02 + + +0 +30 +30 +PCM_Espressif +ESP32-C3-DevKitM-1 + + +0 +30 +30 +PCM_Espressif +ESP32-C3-MINI-1 +ESP32-C3-MINI-1: https://www.espressif.com/sites/default/files/documentation/esp32-c3-mini-1_datasheet_en.pdf +ESP32-C3 +0 +61 +53 +PCM_Espressif +ESP32-C3-MINI-1U +ESP32-C3-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-c3-mini-1_datasheet_en.pdf +ESP32-C3 +0 +61 +53 +PCM_Espressif +ESP32-C3-MINI-1_HandSoldering +ESP32-C3-MINI-1: https://www.espressif.com/sites/default/files/documentation/esp32-c3-mini-1_datasheet_en.pdf +ESP32-C3 +0 +61 +53 +PCM_Espressif +ESP32-C3-WROOM-02 +ESP32-C3-WROOM-02: https://www.espressif.com/sites/default/files/documentation/esp32-c3-wroom-02_datasheet_en.pdf +ESP32-C3 +0 +27 +19 +PCM_Espressif +ESP32-C3-WROOM-02U +ESP32-C3-WROOM-02: https://www.espressif.com/sites/default/files/documentation/esp32-c3-wroom-02_datasheet_en.pdf +ESP32-C3 +0 +27 +19 +PCM_Espressif +ESP32-C6-DevKitC-1 +ESP32-C6 general-purpose development board, based on ESP32-2-WROOM-1,It has all the ESP32-C6 pins exposed and is easy to connect and use. +ESP32-C6 +0 +32 +32 +PCM_Espressif +ESP32-C6-DevKitM-1 +ESP32-C6 general-purpose development board, based on ESP32-2-WROOM-1,It has all the ESP32-C6 pins exposed and is easy to connect and use. +ESP32-C6 +0 +30 +30 +PCM_Espressif +ESP32-C6-MINI-1 +ESP32-C6-MINI-1: https://www.espressif.com/sites/default/files/documentation/esp32-c6-mini-1_datasheet_en.pdf +ESP32-C6 +0 +61 +53 +PCM_Espressif +ESP32-C6-MINI-1U +ESP32-C6-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-c6-mini-1_datasheet_en.pdf +ESP32-C6 +0 +61 +53 +PCM_Espressif +ESP32-C6-WROOM-1 +ESP32-C6-WROOM-1: https://www.espressif.com/sites/default/files/documentation/esp32-c6-wroom-1_datasheet_en.pdf +esp32-c6 +0 +37 +29 +PCM_Espressif +ESP32-C6-WROOM-1U +ESP32-C6-WROOM-1U: https://www.espressif.com/sites/default/files/documentation/esp32-c6-wroom-1_wroom-1u_datasheet_en.pdf +esp32-c6 +0 +37 +29 +PCM_Espressif +ESP32-DevKitC +ESP32-DevKitC: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/hw-reference/esp32/get-started-devkitc.html +ESP32 +0 +38 +38 +PCM_Espressif +ESP32-H2-MINI-1 +ESP32-H2-MINI-1: https://www.espressif.com/sites/default/files/documentation/esp32-h2-mini-1_mini-1u_datasheet_en.pdf +ESP32-H2 +0 +61 +53 +PCM_Espressif +ESP32-MINI-1 +ESP32-MINI-1: https://www.espressif.com/sites/default/files/documentation/esp32-mini-1_datasheet_en.pdf +ESP32-MINI-1 +0 +63 +55 +PCM_Espressif +ESP32-MINI-1U +ESP32-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-mini-1_datasheet_en.pdf +ESP32-MINI-1U +0 +63 +55 +PCM_Espressif +ESP32-PICO-MINI-02 +ESP32-PICO-MINI-02: https://www.espressif.com/sites/default/files/documentation/esp32-pico-mini-02_datasheet_en.pdf +ESP32-PICO-MINI-02 +0 +61 +53 +PCM_Espressif +ESP32-PICO-MINI-02U +ESP32-PICO-MINI-02U: https://www.espressif.com/sites/default/files/documentation/esp32-pico-mini-02_datasheet_en.pdf +ESP32-PICO-MINI-02U +0 +61 +53 +PCM_Espressif +ESP32-PICO-MINI-02_HandSoldering +ESP32-PICO-MINI-02: https://www.espressif.com/sites/default/files/documentation/esp32-pico-mini-02_datasheet_en.pdf +ESP32-PICO-MINI-02 +0 +61 +53 +PCM_Espressif +ESP32-S2-DevKitC-1 +ESP32-S2 general-purpose development board, based on ESP32-S2-SOLO or ESP32-S2-SOLO-U,It has all the ESP32-S2 pins exposed and is easy to connect and use. +ESP32-S2 +0 +44 +44 +PCM_Espressif +ESP32-S2-DevKitM +ESP32-S2 general-purpose development board +ESP32-S2 +0 +42 +42 +PCM_Espressif +ESP32-S2-MINI-1 +ESP32-S2-MINI-1 and ESP32-S2-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-s2-mini-1_esp32-s2-mini-1u_datasheet_en.pdf +ESP32-S2 +0 +73 +65 +PCM_Espressif +ESP32-S2-MINI-1U +ESP32-S2-MINI-1 and ESP32-S2-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-s2-mini-1_esp32-s2-mini-1u_datasheet_en.pdf +ESP32-S2 +0 +73 +65 +PCM_Espressif +ESP32-S2-MINI-1_HandSoldering +ESP32-S2-MINI-1 and ESP32-S2-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-s2-mini-1_esp32-s2-mini-1u_datasheet_en.pdf +ESP32-S2 Hand Soldering +0 +73 +65 +PCM_Espressif +ESP32-S2-SOLO +ESP32-S2-SOLO https://www.espressif.com/sites/default/files/documentation/esp32-s2-solo_esp32-s2-solo-u_datasheet_en.pdf +esp32-s2 module +0 +49 +41 +PCM_Espressif +ESP32-S2-SOLO-2U +ESP32-S2-SOLO-2U https://www.espressif.com/sites/default/files/documentation/esp32-s2-solo-2_esp32-s2-solo-2u_datasheet_en.pdf +esp32-s2 module +0 +49 +41 +PCM_Espressif +ESP32-S2-Saola-1 +Espressif ESP32-S2-Saola-1 Development Kit: https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-saola-1-v1.2.html +esp32-s2 devkit +0 +42 +42 +PCM_Espressif +ESP32-S2-WROOM +ESP32-S2-WROOM and ESP32-S2-WROOM-I: https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf +ESP32-S2 +0 +51 +43 +PCM_Espressif +ESP32-S2-WROVER +ESP32-S2-WROVER and ESP32-S2-WROVER-I: https://www.espressif.com/sites/default/files/documentation/esp32-s2-wrover_esp32-s2-wrover-i_datasheet_en.pdf +ESP32-S2 +0 +55 +43 +PCM_Espressif +ESP32-S3-DevKitC +ESP32-S3 general-purpose development board, based on ESP32-S3-WROOM-1 or ESP32-S3-WROOM-1U,It has all the ESP32-S3 pins exposed and is easy to connect and use. +ESP32-S3 +0 +44 +44 +PCM_Espressif +ESP32-S3-MINI-1 +ESP32-S3-MINI-1 +esp32-s3 +0 +73 +65 +PCM_Espressif +ESP32-S3-MINI-1U +ESP32-S3-MINI-1 and ESP32-S3-MINI-1U +esp32-s3 +0 +73 +65 +PCM_Espressif +ESP32-S3-WROOM-1 +ESP32-S3-WROOM-1 is a powerful, generic Wi-Fi + Bluetooth LE MCU modules that have Dual core CPU , a rich set of peripherals, provides acceleration for neural network computing and signal processing workloads. They are an ideal choice for a wide variety of application scenarios related to AI + Internet of Things (AIoT), such as wake word detection and speech commands recognition , face detection and recognition, smart home, smart appliance, smart control panel, smart speaker etc. +esp32-s3 +0 +51 +41 +PCM_Espressif +ESP32-S3-WROOM-1U +ESP32-S3-WROOM-1 is a powerful, generic Wi-Fi + Bluetooth LE MCU modules that have Dual core CPU , a rich set of peripherals, provides acceleration for neural network computing and signal processing workloads. They are an ideal choice for a wide variety of application scenarios related to AI + Internet of Things (AIoT), such as wake word detection and speech commands recognition , face detection and recognition, smart home, smart appliance, smart control panel, smart speaker etc. +esp32-s3 +0 +49 +41 +PCM_Espressif +ESP32-S3-WROOM-2 +ESP32-S3-WROOM-2 is a powerful, generic Wi-Fi + Bluetooth LE MCU modules that have Dual core CPU , a rich set of peripherals, provides acceleration for neural network computing and signal processing workloads. They are an ideal choice for a wide variety of application scenarios related to AI + Internet of Things (AIoT), such as wake word detection and speech commands recognition , face detection and recognition, smart home, smart appliance, smart control panel, smart speaker etc. +esp32-s3 +0 +51 +41 +PCM_Espressif +ESP32-WROOM-32E +ESP32-WROOM-32E and ESP32-WROOM-32UE: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +ESP32 +0 +50 +39 +PCM_Espressif +ESP32-WROOM-32UE +ESP32-WROOM-32E and ESP32-WROOM-32UE: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +ESP32 +0 +47 +39 +PCM_Espressif +ESP32-WROOM-DA +ESP32-WROOM-DA: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-da_datasheet_en.pdf +ESP32 Dual Antenna DA +0 +49 +41 +PCM_Espressif +ESP32-WROVER-E +ESP32-WROVER-E: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +esp32 module +0 +47 +39 +PCM_Espressif +ESP32-WROVER-E_ThermalVias +ESP32-WROVER-E: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +esp32 module thermal vias +0 +59 +39 +PCM_Espressif +ESP8685-WROOM-06 +ESP32-WROOM-06: https://www.espressif.com/sites/default/files/documentation/esp8685-wroom-06_datasheet_en.pdf +esp32 module +0 +31 +22 +PCM_Espressif +QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_BGA +Alliance_TFBGA-54_8x8mm_Layout9x9_P0.8mm +Alliance TFBGA 54 pins, 8x8mm, 54 Ball, 9x9 Layout, 0.8mm Pitch, https://www.alliancememory.com/wp-content/uploads/pdf/dram/Alliance_Memory_64M-AS4C4M16SA-CI_v5.0_October_2018.pdf#page=54 +BGA 54 0.8 +0 +54 +54 +Package_BGA +Analog_BGA-28_4.0x6.25mm_Layout4x7_P0.8mm_Ball0.45mm_Pad0.4 +Analog BGA-28, 0.4mm pad, 4.0x6.25mm, 28 Ball, 4x7 Layout, 0.8mm Pitch, https://www.analog.com/media/en/technical-documentation/data-sheets/8063fa.pdf +BGA 28 0.8 +0 +28 +28 +Package_BGA +Analog_BGA-49_6.25x6.25mm_Layout7x7_P0.8mm_Ball0.5mm_Pad0.4mm +Analog BGA-49, 6.25x6.25mm, 49 Ball, 7x7 Layout, 0.8mm Pitch, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081600_0_bga49.pdf https://www.analog.com/media/en/technical-documentation/product-information/assembly-considerations-for-umodule-bga-lga-package.pdf +BGA 49 0.8 +0 +49 +49 +Package_BGA +Analog_BGA-77_9.0x15.0mm_Layout7x11_P1.27mm_Ball0.63mm +Analog Devices BGA-77, 0.63mm pad, 9x15mm, 77 Ball, 7x11 Layout, 1.27mm Pitch, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081964_B_bga77.pdf +BGA 77 1.27 LTC Dwg 05-08-1964 Rev. B +0 +77 +77 +Package_BGA +Analog_BGA-209_9.5x16mm_Layout11x19_P0.8mm_Ball0.5mm_Pad0.4mm +Analog BGA-209 (Reference LTC DWG#05-08-1561 Rev B), 9.5x16.0mm, 209 Ball, 11x19 Layout, 0.8mm Pitch, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081561_bga209.pdf +BGA 209 0.8 +0 +209 +209 +Package_BGA +BGA-9_1.6x1.6mm_Layout3x3_P0.5mm +BGA-9, http://www.ti.com/lit/ds/symlink/bq27421-g1.pdf +BGA-9 +0 +9 +9 +Package_BGA +BGA-16_1.92x1.92mm_Layout4x4_P0.5mm +BGA-16, http://www.st.com/content/ccc/resource/technical/document/datasheet/group2/bc/cd/62/9e/8f/30/47/69/CD00151267/files/CD00151267.pdf/jcr:content/translations/en.CD00151267.pdf +BGA-16 +0 +16 +16 +Package_BGA +BGA-25_6.35x6.35mm_Layout5x5_P1.27mm +BGA-25, http://cds.linear.com/docs/en/datasheet/4624fc.pdf +BGA-25 uModule +0 +25 +25 +Package_BGA +BGA-36_3.396x3.466mm_Layout6x6_P0.4mm_Ball0.25mm_Pad0.2mm_NSMD +Altera V36, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00486-00.pdf +Altera BGA-36 V36 VBGA +0 +36 +36 +Package_BGA +BGA-48_8.0x9.0mm_Layout6x8_P0.8mm +BGA-48 - pitch 0.8 mm +BGA-48 +0 +48 +48 +Package_BGA +BGA-64_9.0x9.0mm_Layout10x10_P0.8mm +BGA-64, 10x10 raster, 9x9mm package, pitch 0.8mm +BGA-64 +0 +64 +64 +Package_BGA +BGA-68_5.0x5.0mm_Layout9x9_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-68, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00344-01.pdf +Altera BGA-68 M68 MBGA +0 +68 +68 +Package_BGA +BGA-81_4.496x4.377mm_Layout9x9_P0.4mm_Ball0.25mm_Pad0.2mm_NSMD +Altera V81, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00478-01.pdf +Altera VBGA V81 BGA-81 +0 +81 +81 +Package_BGA +BGA-90_8.0x13.0mm_Layout2x3x15_P0.8mm +BGA-90, http://www.issi.com/WW/pdf/42-45S32800J.pdf +BGA-90 +0 +90 +90 +Package_BGA +BGA-96_9.0x13.0mm_Layout2x3x16_P0.8mm +BGA-96, http://www.mouser.com/ds/2/198/43-46TR16640B-81280BL-706483.pdf +BGA-96 +0 +96 +96 +Package_BGA +BGA-100_6.0x6.0mm_Layout11x11_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-100, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00345-01.pdf +Altera BGA-100 M100 MBGA +0 +100 +100 +Package_BGA +BGA-100_11.0x11.0mm_Layout10x10_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD +BGA-100, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00223-02.pdf +BGA-100 +0 +100 +100 +Package_BGA +BGA-121_9.0x9.0mm_Layout11x11_P0.8mm_Ball0.4mm_Pad0.35mm_NSMD +121-ball, 0.8mm BGA (based on http://www.latticesemi.com/view_document?document_id=213) +BGA 0.8mm 9mm 121 +0 +121 +121 +Package_BGA +BGA-121_12.0x12.0mm_Layout11x11_P1.0mm +BGA-121, http://cds.linear.com/docs/en/packaging/05081891_A_bga121.pdf +BGA-121 +0 +121 +121 +Package_BGA +BGA-132_12x18mm_Layout11x17_P1.0mm +BGA-132 11x17 12x18mm 1.0pitch +BGA-132 +0 +132 +132 +Package_BGA +BGA-144_7.0x7.0mm_Layout13x13_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-144, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00346-00.pdf +Altera BGA-144 M144 MBGA +0 +144 +144 +Package_BGA +BGA-144_13.0x13.0mm_Layout12x12_P1.0mm +BGA-144, http://www.topline.tv/drawings/pdf/BGA%201,0mm%20pitch/LBGA144T1.0-DC128.pdf +BGA-144 +0 +144 +144 +Package_BGA +BGA-152_14x18mm_Layout13x17_P0.5mm +BGA-152_14x18mm_Layout13x17_P0.5mm +VBGA-152 +0 +152 +152 +Package_BGA +BGA-153_8.0x8.0mm_Layout15x15_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-153, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00471-00.pdf +Altera BGA-153 M153 MBGA +0 +153 +153 +Package_BGA +BGA-169_11.0x11.0mm_Layout13x13_P0.8mm_Ball0.5mm_Pad0.4mm_NSMD +Altera U169, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00470-01.pdf +Altera UBGA U169 BGA-169 +0 +169 +169 +Package_BGA +BGA-200_10.0x14.5mm_Layout12x22_P0.80x0.65mm +BGA-200, 10.0x14.5mm, 200 Ball, 12x22 Layout, 0.8x0.65mm Pitch, http://www.issi.com/WW/pdf/43-46LQ32256A-AL.pdf +BGA 200 0.8x0.65 +0 +200 +200 +Package_BGA +BGA-256_11.0x11.0mm_Layout20x20_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-256, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00348-01.pdf +Altera BGA-256 M256 MBGA +0 +256 +256 +Package_BGA +BGA-256_14.0x14.0mm_Layout16x16_P0.8mm_Ball0.45mm_Pad0.32mm_NSMD +BGA-256, dimensions: https://www.xilinx.com/support/documentation/package_specs/ft256.pdf, design rules: https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf +BGA-256 +0 +256 +256 +Package_BGA +BGA-256_17.0x17.0mm_Layout16x16_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD +BGA-256, dimensions: https://www.xilinx.com/support/documentation/package_specs/ft256.pdf, design rules: https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf +BGA-256 +0 +256 +256 +Package_BGA +BGA-324_15.0x15.0mm_Layout18x18_P0.8mm_Ball0.5mm_Pad0.4mm_NSMD +Altera U324, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00474-02.pdf +Altera UBGA U324 BGA-324 +0 +324 +324 +Package_BGA +BGA-324_15.0x15.0mm_Layout18x18_P0.8mm_Ball0.45mm_Pad0.4mm_NSMD +BGA-324, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, https://colognechip.com/docs/ds1001-gatemate1-datasheet-2022-05.pdf#page=92 +BGA 324 0.8 GateMate FPGA +0 +324 +324 +Package_BGA +BGA-324_19.0x19.0mm_Layout18x18_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD +BGA-324, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00233-03.pdf +BGA-324 +0 +324 +324 +Package_BGA +BGA-352_35.0x35.0mm_Layout26x26_P1.27mm +BGA-352, https://www.fujitsu.com/downloads/MICRO/fma/pdfmcu/b352p05.pdf +BGA-352 +0 +352 +352 +Package_BGA +BGA-400_21.0x21.0mm_Layout20x20_P1.0mm +BGA-400, https://www.xilinx.com/support/documentation/package_specs/fg400.pdf +BGA-400 +0 +400 +400 +Package_BGA +BGA-484_23.0x23.0mm_Layout22x22_P1.0mm +BGA-484, https://www.xilinx.com/support/documentation/package_specs/fg484.pdf +BGA-484 +0 +484 +484 +Package_BGA +BGA-529_19x19mm_Layout23x23_P0.8mm +BGA-529, NSMD, 19.0x19.0mm, 529 Ball, 23x23 Layout, 0.8mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 529 0.8 529-ball FBGA +0 +529 +529 +Package_BGA +BGA-624_21.0x21.0mm_Layout25x25_P0.8mm +BGA-624, 21.0x21.0mm, 624 Ball, 25x25 Layout, 0.8mm Pitch, https://www.nxp.com/docs/en/package-information/SOT1529-1.pdf +BGA 624 0.8 +0 +624 +624 +Package_BGA +BGA-625_21.0x21.0mm_Layout25x25_P0.8mm +BGA-625 +BGA-625 +0 +625 +625 +Package_BGA +BGA-672_27.0x27.0mm_Layout26x26_P1.0mm_Ball0.6mm_Pad0.5mm_NSMD +Altera BGA-672, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00472-00.pdf +Altera BGA-672 F672 FBGA +0 +672 +672 +Package_BGA +BGA-676_27.0x27.0mm_Layout26x26_P1.0mm_Ball0.6mm_Pad0.5mm_NSMD +XILINX BGA-676, https://www.xilinx.com/support/documentation/package_specs/fg676.pdf +XILINX BGA-676 FG676/FGG676 +0 +676 +676 +Package_BGA +BGA-1023_33.0x33.0mm_Layout32x32_P1.0mm +BGA-1023 +BGA-1023 +0 +1023 +1023 +Package_BGA +BGA-1156_35.0x35.0mm_Layout34x34_P1.0mm +BGA-1156 +BGA-1156 +0 +1156 +1156 +Package_BGA +BGA-1295_37.5x37.5mm_Layout36x36_P1.0mm +BGA-1295 +BGA-1295 +0 +1295 +1295 +Package_BGA +EPC_BGA-4_0.9x0.9mm_Layout2x2_P0.45mm +EPC BGA-4, 0.9x09mm, Pitch 0.4mm, https://epc-co.com/epc/Portals/0/epc/documents/datasheets/EPC2035_datasheet.pdf +EPC BGA-4 +0 +8 +4 +Package_BGA +FB-BGA-484_23.0x23.0mm_Layout22x22_P1.0mm +Xilinx FB-484, https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf +FB-BGA-484 +0 +484 +484 +Package_BGA +FBGA-78_7.5x11mm_Layout2x3x13_P0.8mm +FBGA-78, https://www.skhynix.com/product/filedata/fileDownload.do?seq=7687 +FBGA-78 +0 +78 +78 +Package_BGA +Fujitsu_WLP-15_2.28x3.092mm_Layout3x5_P0.4mm +WLP-15, 3x5 raster, 2.28x3.092mm package, pitch 0.4mm; http://www.fujitsu.com/global/documents/products/devices/semiconductor/fram/lineup/MB85RS1MT-DS501-00022-7v0-E.pdf +BGA 8 0.4 +0 +8 +8 +Package_BGA +Infineon_LFBGA-292_17x17mm_Layout20x20_P0.8mm_Ball0.5mm_Pad0.35 +Infineon LFBGA-292, 0.35mm pad, 17.0x17.0mm, 292 Ball, 20x20 Layout, 0.8mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-LFBGA/PG-LFBGA-292-11/ +BGA 292 0.8 +0 +292 +292 +Package_BGA +LFBGA-100_10x10mm_Layout10x10_P0.8mm +LFBGA-100, 10.0x10.0mm, 100 Ball, 10x10 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/stm32f103tb.pdf#page=87 +BGA 100 0.8 +0 +100 +100 +Package_BGA +LFBGA-144_10x10mm_Layout12x12_P0.8mm +LFBGA-144, 10.0x10.0mm, 144 Ball, 12x12 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/stm32f103ze.pdf#page=114 +BGA 144 0.8 +0 +144 +144 +Package_BGA +LFBGA-169_16x12mm_Layout28x14_P0.5mm_Ball0.3_Pad0.3mm_NSMD +https://4donline.ihs.com/images/VipMasterIC/IC/SGST/SGSTS20279/SGSTS20279-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0 +eMMC Flash LFBGA169 +0 +169 +169 +Package_BGA +LFBGA-289_14x14mm_Layout17x17_P0.8mm +LFBGA-289, 14.0x14.0mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp131c.pdf +BGA 289 0.8 +0 +289 +289 +Package_BGA +LFBGA-400_16x16mm_Layout20x20_P0.8mm +LFBGA-400, NSMD, 16.0x16.0mm, 400 Ball, 20x20 Layout, 0.8mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 400 0.8 400-ball FBGA +0 +400 +400 +Package_BGA +LFBGA-484_18x18mm_Layout22x22_P0.8mm +LFBGA-484, NSMD, 18.0x18.0mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 484 0.8 484-ball LFBGA +0 +484 +484 +Package_BGA +Lattice_caBGA-381_17.0x17.0mm_Layout20x20_P0.8mm_Ball0.4mm_Pad0.4mm +Lattice caBGA-381, ECP5 FPGAs, 17.0x17.0mm, 381 Ball, 20x20 Layout, 0.8mm Pitch, http://www.latticesemi.com/view_document?document_id=213 +BGA 381 0.8 +0 +381 +381 +Package_BGA +Lattice_caBGA-381_17.0x17.0mm_Layout20x20_P0.8mm_Ball0.4mm_Pad0.4mm_NSMD +Lattice caBGA-381 footprint for ECP5 FPGAs, based on http://www.latticesemi.com/view_document?document_id=213 +BGA 381 0.8 +0 +381 +381 +Package_BGA +Lattice_caBGA-381_17.0x17.0mm_Layout20x20_P0.8mm_Ball0.4mm_Pad0.6mm_SMD +Lattice caBGA-381, ECP5 FPGAs, 17.0x17.0mm, 381 Ball, 20x20 Layout, 0.8mm Pitch, http://www.latticesemi.com/view_document?document_id=213 +BGA 381 0.8 +0 +381 +381 +Package_BGA +Lattice_caBGA-756_27.0x27.0mm_Layout32x32_P0.8mm +Lattice caBGA-756, ECP5 FPGAs, 27.0x27.0mm, 756 Ball, 32x32 Layout, 0.8mm Pitch, http://www.latticesemi.com/view_document?document_id=213 +BGA 756 0.8 +0 +756 +756 +Package_BGA +Linear_BGA-133_15.0x15.0mm_Layout12x12_P1.27mm +Analog Devices (Linear Tech), 133-pin BGA uModule, 15.0x15.0x4.92mm, https://www.analog.com/media/en/technical-documentation/data-sheets/4637fc.pdf +133 pin bga +0 +134 +134 +Package_BGA +MAPBGA_9x9mm_Layout17x17_P0.5mm +MAPBGA 9x9x1.11 PKG, 9.0x9.0mm, 272 Ball, 17x17 Layout, 0.5mm Pitch, https://www.nxp.com/docs/en/package-information/98ASA00869D.pdf#page=1 +BGA 272 0.5 +0 +272 +272 +Package_BGA +MAPBGA_14x14mm_Layout17x17_P0.8mm +MAPBGA 14x14x1.18 PKG, 14.0x14.0mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, https://www.nxp.com/docs/en/package-information/98ASA00855D.pdf#page=1 +BGA 289 0.8 +0 +289 +289 +Package_BGA +Maxim_WLP-9_1.595x1.415_Layout3x3_P0.4mm_Ball0.27mm_Pad0.25mm_NSMD +Maxim_WLP-9 W91C1+1 https://pdfserv.maximintegrated.com/package_dwgs/21-0459.PDF +Maxim_WLP-9 +0 +9 +9 +Package_BGA +Maxim_WLP-12 +Maxim_WLP-12 W121B2+1 http://pdfserv.maximintegrated.com/package_dwgs/21-0009.PDF +Maxim_WLP-12 +0 +12 +12 +Package_BGA +Maxim_WLP-12_1.608x2.008mm_Layout4x3_P0.4mm_Ball0.27mm_Pad0.25mm_NSMD +Maxim WLP-12, W121H2+1, 2.008x1.608mm, 12 Ball, 4x3 Layout, 0.4mm Pitch, https://pdfserv.maximintegrated.com/package_dwgs/21-100302.PDF, https://pdfserv.maximintegrated.com/package_dwgs/21-100302.PDF +BGA 12 0.4 +0 +12 +12 +Package_BGA +Microchip_TFBGA-196_11x11mm_Layout14x14_P0.75mm_SMD +TFBGA-196, 11.0x11.0mm, 196 Ball, 14x14 Layout, 0.75mm Pitch, http://ww1.microchip.com/downloads/en/DeviceDoc/SAMA5D2-Series-Data-Sheet-DS60001476C.pdf#page=2956 +BGA 196 0.75 +0 +196 +196 +Package_BGA +Micron_FBGA-78_7.5x10.6mm_Layout9x13_P0.8mm +FBGA-78, 7.5x10.6mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=24 +BGA 78 0.8 +0 +78 +78 +Package_BGA +Micron_FBGA-78_8x10.5mm_Layout9x13_P0.8mm +FBGA-78, 8.0x10.5mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=25 +BGA 78 0.8 +0 +78 +78 +Package_BGA +Micron_FBGA-78_9x10.5mm_Layout9x13_P0.8mm +FBGA-78, 9.0x10.5mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=23 +BGA 78 0.8 +0 +78 +78 +Package_BGA +Micron_FBGA-96_7.5x13.5mm_Layout9x16_P0.8mm +FBGA-96, 7.5x13.5mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=27 +BGA 96 0.8 +0 +96 +96 +Package_BGA +Micron_FBGA-96_8x14mm_Layout9x16_P0.8mm +FBGA-96, 8.0x14.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=28 +BGA 96 0.8 +0 +96 +96 +Package_BGA +Micron_FBGA-96_9x14mm_Layout9x16_P0.8mm +FBGA-96, 9.0x14.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=26 +BGA 96 0.8 +0 +96 +96 +Package_BGA +NXP_VFBGA-42_2.6x3mm_Layout6x7_P0.4mm_Ball0.25mm_Pad0.24mm +NXP VFBGA-42, 2.6x3.0mm, 42 Ball, 6x7 Layout, 0.4mm Pitch, https://www.nxp.com/docs/en/package-information/SOT1963-1.pdf +BGA 42 0.4 +0 +42 +42 +Package_BGA +ST_LFBGA-354_16x16mm_Layout19x19_P0.8mm +ST LFBGA-354, 16.0x16.0mm, 354 Ball, 19x19 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 354 0.8 +0 +354 +354 +Package_BGA +ST_LFBGA-448_18x18mm_Layout22x22_P0.8mm +ST LFBGA-448, 18.0x18.0mm, 448 Ball, 22x22 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 448 0.8 +0 +448 +448 +Package_BGA +ST_TFBGA-169_7x7mm_Layout13x13_P0.5mm +ST TFBGA-169, 7.0x7.0mm, 169 Ball, 13x13 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32u595aj.pdf +BGA 169 0.5 +0 +169 +169 +Package_BGA +ST_TFBGA-225_13x13mm_Layout15x15_P0.8mm +ST TFBGA-225, 13.0x13.0mm, 225 Ball, 15x15 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32h7b3ri.pdf +BGA 225 0.8 +0 +225 +225 +Package_BGA +ST_TFBGA-257_10x10mm_Layout19x19_P0.5mmP0.65mm +ST TFBGA-257, 10.0x10.0mm, 257 Ball, 19x19 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 257 0.5 +0 +257 +257 +Package_BGA +ST_TFBGA-320_11x11mm_Layout21x21_P0.5mm +ST TFBGA-320, 11.0x11.0mm, 320 Ball, 21x21 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp131c.pdf +BGA 320 0.5 +0 +320 +320 +Package_BGA +ST_TFBGA-361_12x12mm_Layout23x23_P0.5mmP0.65mm +ST TFBGA-361, 12.0x12.0mm, 361 Ball, 23x23 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 361 0.5 +0 +361 +361 +Package_BGA +ST_UFBGA-59_5x5mm_Layout8x8_P0.5mm +ST UFBGA-59, 5.0x5.0mm, 59 Ball, 8x8 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32wba55ug.pdf +BGA 59 0.5 +0 +59 +59 +Package_BGA +ST_UFBGA-73_5x5mm_Layout9x9_P0.5mm +ST UFBGA-73, 5.0x5.0mm, 73 Ball, 9x9 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32wl54jc.pdf +BGA 73 0.5 +0 +73 +73 +Package_BGA +ST_UFBGA-81_5x5mm_Layout9x9_P0.5mm +ST UFBGA-81, 5.0x5.0mm, 81 Ball, 9x9 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32u073mb.pdf +BGA 81 0.5 +0 +81 +81 +Package_BGA +ST_UFBGA-121_6x6mm_Layout11x11_P0.5mm +ST UFBGA-121, 6.0x6.0mm, 121 Ball, 11x11 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32g473pb.pdf +BGA 121 0.5 +0 +121 +121 +Package_BGA +ST_UFBGA-129_7x7mm_Layout13x13_P0.5mm +ST UFBGA-129, 7.0x7.0mm, 129 Ball, 13x13 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb55vc.pdf +BGA 129 0.5 +0 +129 +129 +Package_BGA +ST_uTFBGA-36_3.6x3.6mm_Layout6x6_P0.5mm +ST uTFBGA-36, 0.25mm pad, 3.6x3.6mm, 36 Ball, 6x6 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stulpi01a.pdf +BGA 36 0.5 +0 +36 +36 +Package_BGA +TFBGA-49_3x3mm_Layout7x7_P0.4mm +TFBGA-49, NSMD, 3.0x3.0mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 49 0.4 49-ball FBGA +0 +49 +49 +Package_BGA +TFBGA-64_5x5mm_Layout8x8_P0.5mm +TFBGA-64, 5.0x5.0mm, 64 Ball, 8x8 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f100v8.pdf#page=83 +BGA 64 0.5 +0 +64 +64 +Package_BGA +TFBGA-81_5x5mm_Layout8x8_P0.5mm +TFBGA-81, NSMD, 5.0x5.0mm, 81 Ball, 9x9 Layout, 0.5mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 81 0.5 81-ball FBGA +0 +81 +81 +Package_BGA +TFBGA-100_5.5x5.5mm_Layout10x10_P0.5mm +TFBGA-100, NSMD, 5.5x5.5mm, 100 Ball, 10x10 Layout, 0.5mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 100 0.5 100-ball FBGA +0 +100 +100 +Package_BGA +TFBGA-100_8x8mm_Layout10x10_P0.8mm +TFBGA-100, 8.0x8.0mm, 100 Ball, 10x10 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/stm32f746zg.pdf#page=199 +BGA 100 0.8 +0 +100 +100 +Package_BGA +TFBGA-100_9.0x9.0mm_Layout10x10_P0.8mm +TFBGA-100, 10x10, 9x9mm package, pitch 0.8mm +TFBGA-100 +0 +100 +100 +Package_BGA +TFBGA-121_10x10mm_Layout11x11_P0.8mm +TFBGA-121, 10.0x10.0mm, 121 Ball, 11x11 Layout, 0.8mm Pitch, http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#p495 +BGA 121 0.8 +0 +121 +121 +Package_BGA +TFBGA-169_9x9mm_Layout13x13_P0.65mm +TFBGA-169, NSMD, 9.0x9.0mm, 169 Ball, 13x13 Layout, 0.65mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 169 0.65 169-ball FBGA +0 +169 +169 +Package_BGA +TFBGA-216_13x13mm_Layout15x15_P0.8mm +TFBGA-216, 13.0x13.0mm, 216 Ball, 15x15 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/stm32f746zg.pdf#page=219 +BGA 216 0.8 +0 +216 +216 +Package_BGA +TFBGA-225_10x10mm_Layout15x15_P0.65mm +TFBGA-225, NSMD, 10.0x10.0mm, 225 Ball, 15x15 Layout, 0.65mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 225 0.65 225-ball FBGA +0 +225 +225 +Package_BGA +TFBGA-256_13x13mm_Layout16x16_P0.8mm +TFBGA-256, NSMD, 13.0x13.0mm, 256 Ball, 16x16 Layout, 0.8mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 256 0.8 256-ball FBGA +0 +256 +256 +Package_BGA +TFBGA-265_14x14mm_Layout17x17_P0.8mm +TFBGA-265, 14.0x14.0mm, 265 Ball, 17x17 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/DM00387108.pdf#page=223 +BGA 265 0.8 +0 +265 +265 +Package_BGA +TFBGA-289_9x9mm_Layout17x17_P0.5mm +TFBGA-289, 9.0x9.0mm, 289 Ball, 17x17 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp131c.pdf +BGA 289 0.5 +0 +289 +289 +Package_BGA +TFBGA-324_12x12mm_Layout18x18_P0.8mm +TFBGA-324, NSMD, 12.0x12.0mm, 324 Ball, 18x18 Layout, 0.65mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 324 0.65 324-ball FBGA +0 +324 +324 +Package_BGA +TFBGA-361_13x13mm_Layout19x19_P0.65mm +TFBGA-361, NSMD, 13.0x13.0mm, 361 Ball, 19x19 Layout, 0.65mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 361 0.65 361-ball FBGA +0 +361 +361 +Package_BGA +TFBGA-576_16x16mm_Layout24x24_P0.65mm +TFBGA-576, NSMD, 16.0x16.0mm, 576 Ball, 24x24 Layout, 0.65mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 576 0.65 576-ball FBGA +0 +576 +576 +Package_BGA +Texas_BGA-289_15.0x15.0mm_Layout17x17_P0.8mm_Ball0.5mm_Pad0.4mm +Texas Instruments BGA-289, 0.4mm pad, 15x15mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, https://www.ti.com/lit/ml/mpbg777/mpbg777.pdf +BGA 289 0.8 ZAV S-PBGA-N289 +0 +289 +289 +Package_BGA +Texas_DSBGA-5_0.822x1.116mm_Layout2x1x2_P0.4mm +Texas Instruments, DSBGA, 0.822x1.116mm, 5 bump 2x1x2 array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/opa330.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YFF S-XBGA-N5 +0 +10 +5 +Package_BGA +Texas_DSBGA-5_0.8875x1.3875mm_Layout2x3_P0.5mm +Texas Instruments, DSBGA, area grid, NSMD, YZP0005 pad definition, 0.8875x1.3875mm, 5 Ball, 2x3 Layout, 0.5mm Pitch, https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=42, https://www.ti.com/lit/ml/mxbg018l/mxbg018l.pdf +BGA 5 0.5 YZP +0 +5 +5 +Package_BGA +Texas_DSBGA-5_1.5855x1.6365mm_Layout3x2_P0.5mm +Texas Instruments, DSBGA, area grid, YTA0005 pad definition, 1.5855x1.6365mm, 5 Ball, 3x2 Layout, 0.5mm Pitch, https://www.ti.com/lit/ml/mxbg263/mxbg263.pdf, https://www.ti.com/lit/ds/symlink/lm74.pdf#page=24 +BGA 5 0.5 YTA +0 +5 +5 +Package_BGA +Texas_DSBGA-6_0.9x1.4mm_Layout2x3_P0.5mm +Texas Instruments, DSBGA, 0.9x1.4mm, 6 bump 2x3 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/ts5a3159a.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N6 +0 +12 +6 +Package_BGA +Texas_DSBGA-6_0.95x1.488mm_Layout2x3_P0.4mm +Texas Instruments, DSBGA, area grid, YBG pad definition, 0.95x1.488mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, https://www.ti.com/lit/ml/mxbg419/mxbg419.pdf, https://www.ti.com/lit/ds/symlink/tmp117.pdf +BGA 6 0.4 +0 +6 +6 +Package_BGA +Texas_DSBGA-6_0.704x1.054mm_Layout2x3_P0.35mm +Texas Instruments, DSBGA-6, 0.704x1.054mm, NSMD, YKA pad definition, 0.704x1.054mm, 6 Ball, 2x3 Layout, 0.35mm Pitch, https://www.ti.com/lit/ml/mxbg383/mxbg383.pdf, https://www.ti.com/lit/ds/symlink/tps62800.pdf +BGA 6 0.35 +0 +6 +6 +Package_BGA +Texas_DSBGA-6_0.855x1.255mm_Layout2x3_P0.4mm_LevelB +Texas Instruments, DSBGA, area grid, YBG pad definition, 0.95x1.488mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, YFF0006, NSMD pad definition, https://www.ti.com/lit/ds/symlink/lmg1020.pdf, https://www.ti.com/lit/ml/mxbg078z/mxbg078z.pdf +BGA 6 0.4 YFF0006 +0 +6 +6 +Package_BGA +Texas_DSBGA-6_0.855x1.255mm_Layout2x3_P0.4mm_LevelC +Texas Instruments, DSBGA, area grid, YBG pad definition, 0.95x1.488mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, YFF0006, NSMD pad definition, https://www.ti.com/lit/ds/symlink/lmg1020.pdf, https://www.ti.com/lit/ml/mxbg078z/mxbg078z.pdf +BGA 6 0.4 YFF0006 +0 +6 +6 +Package_BGA +Texas_DSBGA-8_0.9x1.9mm_Layout2x4_P0.5mm +Texas Instruments, DSBGA, 0.9x1.9mm, 8 bump 2x4 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/txb0102.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N8 +0 +16 +8 +Package_BGA +Texas_DSBGA-8_0.705x1.468mm_Layout2x4_P0.4mm +Texas Instruments, DSBGA, area grid, NSMD, YBJ0008 pad definition, 0.705x1.468mm, 8 Ball, 2x4 Layout, 0.4mm Pitch, https://www.ti.com/lit/gpn/ina234 +BGA 8 0.4 +0 +8 +8 +Package_BGA +Texas_DSBGA-8_1.43x1.41mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, 1.43x1.41mm, 8 bump 3x3 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/lmc555.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N8 +0 +16 +8 +Package_BGA +Texas_DSBGA-8_1.5195x1.5195mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, area grid, YZR pad definition, 1.5195x1.5195mm, 8 Ball, 3x3 Layout, 0.5mm Pitch, http://www.ti.com/lit/ml/mxbg270/mxbg270.pdf +BGA 8 0.5 +0 +8 +8 +Package_BGA +Texas_DSBGA-9_1.62mmx1.58mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, area grid, NSMD, YZF0009 pad definition, 1.62x1.58mm, 9 Ball, 3x3 Layout, 0.5mm Pitch, https://www.ti.com/lit/ml/mxbg027n/mxbg027n.pdf +BGA 9 0.5 +0 +9 +9 +Package_BGA +Texas_DSBGA-9_1.4715x1.4715mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, 1.4715x1.4715mm, 9 bump 3x3 array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/lm4990.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZR0009 +0 +18 +9 +Package_BGA +Texas_DSBGA-10_1.36x1.86mm_Layout3x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZP, YZP0010, 1.86x1.36mm, 10 Ball, 3x4 Layout, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/ts3a24159.pdf +BGA 10 0.5 +0 +20 +10 +Package_BGA +Texas_DSBGA-12_1.36x1.86mm_Layout3x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZT, 1.86x1.36mm, 12 Ball, 3x4 Layout, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/txb0104.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 12 0.5 R-XBGA-N12 +0 +24 +12 +Package_BGA +Texas_DSBGA-16_2.39x2.39mm_Layout4x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZF, YZF0016, 2.39x2.39mm, 16 Ball, 4x4 Layout, 0.5mm Pitch, https://www.ti.com/lit/ds/symlink/dac80508.pdf +BGA 16 0.5 +0 +32 +16 +Package_BGA +Texas_DSBGA-28_1.9x3.0mm_Layout4x7_P0.4mm +Texas Instruments, DSBGA, area grid, 1.9x3.0mm, 28 Ball, 4x7 Layout, 0.4mm Pitch, http://www.ti.com/lit/ds/symlink/bq51050b.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 28 0.4 +0 +28 +28 +Package_BGA +Texas_DSBGA-49_3.33x3.488mm_Layout7x7_P0.4mm +Texas Instruments, DSBGA, area grid, 3.33x3.488mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.ti.com/lit/ds/symlink/msp430f2234.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 49 0.4 +0 +49 +49 +Package_BGA +Texas_DSBGA-64_3.415x3.535mm_Layout8x8_P0.4mm +Texas Instruments, DSBGA, area grid, 3.415x3.535mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.ti.com/lit/ds/slas718g/slas718g.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 64 0.4 +0 +64 +64 +Package_BGA +Texas_MicroStar_Junior_BGA-12_2.0x2.5mm_Layout4x3_P0.5mm +Texas Instruments, BGA Microstar Junior, 2x2.5mm, 12 bump 4x3 grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/txb0104.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf) +Texas_Junior_BGA-12 +0 +12 +12 +Package_BGA +Texas_MicroStar_Junior_BGA-80_5.0x5.0mm_Layout9x9_P0.5mm +Texas Instruments, BGA Microstar Junior, 5x5mm, 80 ball 9x9 grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/tlv320aic23b.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf) +Texas_Junior_BGA-80 +0 +80 +80 +Package_BGA +Texas_MicroStar_Junior_BGA-113_7.0x7.0mm_Layout12x12_P0.5mm +Texas Instruments, BGA Microstar Junior, NSMD, 7x7mm, 113 Ball, 12x12 Layout, 0.5mm Pitch, http://www.ti.com/lit/ml/mpbg674/mpbg674.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf +BGA 113 0.5 +0 +113 +113 +Package_BGA +Texas_YFP0020_DSBGA-20_1.56x1.96mm_Layout4x5_P0.4mm +Texas Instruments, YFP0020, DSBGA-20, area grid, 1.588x1.988mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, https://www.ti.com/lit/ds/symlink/txs0206.pdf +BGA 20 0.4 +0 +20 +20 +Package_BGA +UCBGA-36_2.5x2.5mm_Layout6x6_P0.4mm +UCBGA-36, 2.5x2.5mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, https://www.latticesemi.com/view_document?document_id=213 +BGA 36 0.4 +0 +36 +36 +Package_BGA +UCBGA-49_3x3mm_Layout7x7_P0.4mm +UCBGA-49, 3x3mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.latticesemi.com/view_document?document_id=213 +BGA 49 0.4 +0 +49 +49 +Package_BGA +UCBGA-81_4x4mm_Layout9x9_P0.4mm +UCBGA-81, 4x4mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, https://www.latticesemi.com/view_document?document_id=213 +BGA 81 0.4 +0 +81 +81 +Package_BGA +UFBGA-15_3.0x3.0mm_Layout4x4_P0.65mm +UFBGA-15, 4x4, 3x3mm package, pitch 0.65mm +UFBGA-15 +0 +15 +15 +Package_BGA +UFBGA-32_4.0x4.0mm_Layout6x6_P0.5mm +UFBGA-32, 6x6, 4x4mm package, pitch 0.5mm +UFBGA-32 +0 +32 +32 +Package_BGA +UFBGA-64_5x5mm_Layout8x8_P0.5mm +UFBGA-64, 5.0x5.0mm, 64 Ball, 8x8 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f051t8.pdf#page=91 +BGA 64 0.5 +0 +64 +64 +Package_BGA +UFBGA-100_7x7mm_Layout12x12_P0.5mm +UFBGA-100, 7.0x7.0mm, 100 Ball, 12x12 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f103tb.pdf#page=93 +BGA 100 0.5 +0 +100 +100 +Package_BGA +UFBGA-132_7x7mm_Layout12x12_P0.5mm +UFBGA-132, 7.0x7.0mm, 132 Ball, 12x12 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32l152zc.pdf#page=123 +BGA 132 0.5 +0 +132 +132 +Package_BGA +UFBGA-132_7x7mm_P0.5mm +UFBGA 132 Pins, 0.5mm Pitch, 0.3mm Ball, http://www.st.com/resource/en/datasheet/stm32l486qg.pdf +ufbga bga small-pitch +0 +132 +132 +Package_BGA +UFBGA-144_7x7mm_Layout12x12_P0.5mm +UFBGA-144, 7.0x7.0mm, 144 Ball, 12x12 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f446ze.pdf#page=186 +BGA 144 0.5 +0 +144 +144 +Package_BGA +UFBGA-144_10x10mm_Layout12x12_P0.8mm +UFBGA-144, 10.0x10.0mm, 144 Ball, 12x12 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/stm32f446ze.pdf#page=189 +BGA 144 0.8 +0 +144 +144 +Package_BGA +UFBGA-169_7x7mm_Layout13x13_P0.5mm +UFBGA-169, 7.0x7.0mm, 169 Ball, 13x13 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f429ng.pdf#page=218 +BGA 169 0.5 +0 +169 +169 +Package_BGA +UFBGA-201_10x10mm_Layout15x15_P0.65mm +UFBGA-201, 10.0x10.0mm, 201 Ball, 15x15 Layout, 0.65mm Pitch, http://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=166 +BGA 201 0.65 +0 +201 +201 +Package_BGA +VFBGA-49_5.0x5.0mm_Layout7x7_P0.65mm +VFBGA-49, 7x7, 5x5mm package, pitch 0.65mm +VFBGA-49 +0 +49 +49 +Package_BGA +VFBGA-86_6x6mm_Layout10x10_P0.55mm_Ball0.25mm_Pad0.2mm +VFBGA-86, 6.0x6.0mm, 86 Ball, 10x10 Layout, 0.55mm Pitch, https://www.dialog-semiconductor.com/sites/default/files/da1469x_datasheet_3v1.pdf#page=740 +BGA 86 0.55 +0 +86 +86 +Package_BGA +VFBGA-100_7.0x7.0mm_Layout10x10_P0.65mm +VFBGA-100, 10x10, 7x7mm package, pitch 0.65mm +VFBGA-100 +0 +100 +100 +Package_BGA +WLP-4_0.73x0.73mm_Layout2x2_P0.35mm_Ball0.22mm_Pad0.2mm +WLP-4, 0.728x0.728mm, 4 Ball, 2x2 Layout, 0.35mm Pitch, https://datasheets.maximintegrated.com/en/ds/MAX40200.pdf +BGA 4 0.35 +0 +4 +4 +Package_BGA +WLP-4_0.73x0.73mm_Layout2x2_P0.35mm_Ball0.22mm_Pad0.2mm_NSMD +WLP-4, 2x2 raster, 0.73x0.73mm package, pitch 0.35mm; https://datasheets.maximintegrated.com/en/ds/MAX40200.pdf +BGA 4 0.35 +0 +4 +4 +Package_BGA +WLP-4_0.83x0.83mm_P0.4mm +WLP-4_0.83x0.83mm_P0.4mm https://pdfserv.maximintegrated.com/package_dwgs/21-100107.PDF, https://www.maximintegrated.com/en/app-notes/index.mvp/id/1891 +WLP-4 +0 +4 +4 +Package_BGA +WLP-4_0.86x0.86mm_P0.4mm +WLP-4_0.86x0.86mm_P0.4mm https://pdfserv.maximintegrated.com/package_dwgs/21-0612.PDF, https://www.maximintegrated.com/en/app-notes/index.mvp/id/1891 +WLP-4 +0 +4 +4 +Package_BGA +WLP-9_1.448x1.468mm_Layout3x3_P0.4mm_Ball0.27mm_Pad0.25mm +WLP-9, 1.468x1.448mm, 9 Ball, 3x3 Layout, 0.4mm Pitch, https://pdfserv.maximintegrated.com/package_dwgs/21-100168.PDF +BGA 9 0.4 +0 +9 +9 +Package_BGA +XBGA-121_10x10mm_Layout11x11_P0.8mm +XBGA-121, 10.0x10.0mm, 121 Ball, 11x11 Layout, 0.8mm Pitch, http://ww1.microchip.com/downloads/en/DeviceDoc/39969b.pdf +BGA 121 0.8 +0 +121 +121 +Package_BGA +XFBGA-36_3.5x3.5mm_Layout6x6_P0.5mm +XFBGA-36, https://www.nxp.com/docs/en/package-information/SOT1555-1.pdf +XFBGA-36 +0 +36 +36 +Package_BGA +XFBGA-64_5.0x5.0mm_Layout8x8_P0.5mm +XFBGA-64, https://www.nxp.com/docs/en/package-information/SOT1555-1.pdf +XFBGA-64 +0 +64 +64 +Package_BGA +XFBGA-121_8x8mm_Layout11x11_P0.65mm +XFBGA-121, https://www.nxp.com/docs/en/package-information/SOT1533-1.pdf +XFBGA-121 +0 +121 +121 +Package_BGA +Xilinx_CLG225 +Zynq-7000 BGA, NSMD pad definition Appendix A, 13x13mm, 225 Ball, 15x15 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=77 +BGA 225 0.8 CLG225 +0 +225 +225 +Package_BGA +Xilinx_CLG400 +Zynq-7000 BGA, NSMD pad definition Appendix A, 17x17mm, 400 Ball, 20x20 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=78 +BGA 400 0.8 CLG400 CL400 +0 +400 +400 +Package_BGA +Xilinx_CLG484_CLG485 +Zynq-7000 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=79 +BGA 484 0.8 CLG484 CL484 CLG485 CL485 +0 +484 +484 +Package_BGA +Xilinx_CPG236 +Artix-7 BGA, NSMD pad definition Appendix A, 10x10mm, 238 Ball, 19x19 Layout, 0.5mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=266 +BGA 238 0.5 CP236 CPG236 +0 +238 +238 +Package_BGA +Xilinx_CPG238 +Artix-7 BGA, NSMD pad definition Appendix A, 10x10mm, 238 Ball, 19x19 Layout, 0.5mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=267 +BGA 238 0.5 CPG238 +0 +238 +238 +Package_BGA +Xilinx_CPGA196 +Spartan-7 BGA, NSMD pad definition Appendix A, 8x8mm, 196 Ball, 14x14 Layout, 0.5mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=260 +BGA 196 0.5 CPGA196 +0 +196 +196 +Package_BGA +Xilinx_CSG324 +Artix-7 BGA, NSMD pad definition Appendix A, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=268 +BGA 324 0.8 CS324 CSG324 +0 +324 +324 +Package_BGA +Xilinx_CSG325 +Artix-7 BGA, NSMD pad definition Appendix A, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=268 +BGA 324 0.8 CS325 CSG235 +0 +324 +324 +Package_BGA +Xilinx_CSGA225 +Spartan-7 BGA, NSMD pad definition Appendix A, 13x13mm, 225 Ball, 15x15 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=262 +BGA 225 0.8 CSGA225 +0 +225 +225 +Package_BGA +Xilinx_CSGA324 +Spartan-7 BGA, NSMD pad definition Appendix A, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=263 +BGA 324 0.8 CSGA324 +0 +324 +324 +Package_BGA +Xilinx_FBG484 +Artix-7, Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=271, ttps://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=281, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=82 +BGA 484 1 FB484 FBG484 FBV484 +0 +484 +484 +Package_BGA +Xilinx_FBG676 +Artix-7, Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=273, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=284, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=84 +BGA 676 1 FB676 FBG676 FBV676 +0 +676 +676 +Package_BGA +Xilinx_FBG900 +Kintex-7 BGA, NSMD pad definition Appendix A, 31x31mm, 900 Ball, 30x30 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=289 +BGA 900 1 FB900 FBG900 FBV900 +0 +900 +900 +Package_BGA +Xilinx_FFG676 +Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=292, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=88 +BGA 676 1 FF676 FFG676 FFV676 +0 +676 +676 +Package_BGA +Xilinx_FFG900_FFG901 +Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 31x31mm, 900 Ball, 30x30 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=294, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=90 +BGA 900 1 FF900 FFG900 FFV900 FF901 FFG901 FFV901 +0 +900 +900 +Package_BGA +Xilinx_FFG1156 +Artix-7, Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=277, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=296, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=91 +BGA 1156 1 FF1156 FFG1156 FFV1156 +0 +1156 +1156 +Package_BGA +Xilinx_FFG1157_FFG1158 +Virtex-7 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=299 +BGA 1156 1 FF1157 FFG1157 FFV1157 FF1158 FFG1158 FFV1158 +0 +1156 +1156 +Package_BGA +Xilinx_FFG1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 42.5x42.5mm, 1760 Ball, 42x42 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=300 +BGA 1760 1 FF1761 FFG1761 +0 +1760 +1760 +Package_BGA +Xilinx_FFG1926_FFG1927_FFG1928_FFG1930 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1924 Ball, 44x44 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=303 +BGA 1924 1 FF1926 FFG1926 FF1927 FFG1927 FFV1927 FF1928 FFG1928 FF1930 FFG1930 +0 +1924 +1924 +Package_BGA +Xilinx_FFV1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 42.5x42.5mm, 1760 Ball, 42x42 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=301 +BGA 1760 1 FFV1761 +0 +1760 +1760 +Package_BGA +Xilinx_FGG484 +Artix-7 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=275 +BGA 484 1 FG484 FGG484 +0 +484 +484 +Package_BGA +Xilinx_FGG676 +Artix-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=276 +BGA 676 1 FG676 FGG676 +0 +676 +676 +Package_BGA +Xilinx_FGGA484 +Spartan-7 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=264 +BGA 484 1 FGGA484 +0 +484 +484 +Package_BGA +Xilinx_FGGA676 +Spartan-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=265 +BGA 676 1 FGGA676 +0 +676 +676 +Package_BGA +Xilinx_FHG1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1760 Ball, 42x42 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=302 +BGA 1760 1 FH1761 FHG1761 +0 +1760 +1760 +Package_BGA +Xilinx_FLG1925_FLG1926_FLG1928_FLG1930 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1924 Ball, 44x44 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=304 +BGA 1924 1 FL1925 FLG1925 FL1926 FLG1926 FL1928 FLG1928 FL1930 FLG1930 +0 +1924 +1924 +Package_BGA +Xilinx_FTG256 +Artix-7 BGA, NSMD pad definition Appendix A, 17x17mm, 256 Ball, 16x16 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=269 +BGA 256 1 FT256 FTG256 +0 +256 +256 +Package_BGA +Xilinx_FTGB196 +Spartan-7 BGA, NSMD pad definition Appendix A, 15x15mm, 196 Ball, 14x14 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=261 +BGA 196 1 FTGB196 +0 +196 +196 +Package_BGA +Xilinx_RB484 +Artix-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=278, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=92 +BGA 484 1 RB484 +0 +484 +484 +Package_BGA +Xilinx_RB676 +Artix-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=280 +BGA 676 1 RB676 +0 +676 +676 +Package_BGA +Xilinx_RF676 +Kintex-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=297 +BGA 676 1 RF676 +0 +676 +676 +Package_BGA +Xilinx_RF900 +Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 31x31mm, 900 Ball, 30x30 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=298, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=94 +BGA 900 1 RF900 +0 +900 +900 +Package_BGA +Xilinx_RF1156 +Zynq-7000 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=95 +BGA 1156 1 RF1156 +0 +1156 +1156 +Package_BGA +Xilinx_RF1157_RF1158 +Virtex-7 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=305 +BGA 1156 1 RF1157 RF1158 +0 +1156 +1156 +Package_BGA +Xilinx_RF1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 42.5x42.5mm, 1760 Ball, 42x42 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=306 +BGA 1760 1 RF1761 +0 +1760 +1760 +Package_BGA +Xilinx_RF1930 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1924 Ball, 44x44 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=307 +BGA 1924 1 RF1930 +0 +1924 +1924 +Package_BGA +Xilinx_RFG676 +Zynq-7000 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=93 +BGA 676 1 RF676 RFG676 +0 +676 +676 +Package_BGA +Xilinx_RS484 +Artix-7 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=279 +BGA 484 0.8 RS484 +0 +484 +484 +Package_BGA +Xilinx_SBG484 +Artix-7 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=270 +BGA 484 0.8 SB484 SBG484 SBV484 +0 +484 +484 +Package_BGA +Xilinx_SBG485 +Zynq-7000 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=80 +BGA 484 0.8 SBG485 SBV485 +0 +484 +484 +Package_CSP +Analog_LFCSP-8-1EP_3x3mm_P0.5mm_EP1.53x1.85mm +LFCSP, exposed pad, Analog Devices (http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5542.pdf) +LFCSP 8 0.5 +0 +12 +5 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_23.pdf, CP-16-23), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +21 +17 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_23.pdf, CP-16-23), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +31 +17 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.35x2.35mm +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_20.pdf, CP-16-20), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +21 +17 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.35x2.35mm_ThermalVias +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_20.pdf, CP-16-20), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +31 +17 +Package_CSP +Analog_LFCSP-UQ-10_1.3x1.6mm_P0.4mm +Analog LFCSP-UQ, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_10_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP-UQ NoLead +0 +10 +10 +Package_CSP +Dialog_WLCSP-34_4.54x1.66mm_Stagger +Dialog Semiconductor (Renesas) WLCSP-34, staggered array, 4.54x1.66mm, 34 Ball, 17x4 Layout, 0.25x0.34mm Pitch, https://www.renesas.com/us/en/document/dst/da7212-datasheet +CSP 34 0.25x0.34 34-ball +0 +34 +34 +Package_CSP +DiodesInc_GEA20_WLCSP-20_1.70x2.10mm_Layout4x5_P0.4mm +Diodes Incorporated WLCSP-20, GEA20, 1.7x2.1mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, https://www.diodes.com/assets/Package-Files/GEA20.pdf +CSP 20 0.4 +0 +20 +20 +Package_CSP +Efinix_WLCSP-64_3.5353x3.3753mm_Layout8x8_P0.4mm +Efinix WLCSP, NSMD pad definition Page 60, 3.5353x3.3753mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +CSP 64 0.4 64-ball WLCSP +0 +64 +64 +Package_CSP +Efinix_WLCSP-80_4.4567x3.5569mm_Layout10x8_P0.4mm +WLCSP-80, NSMD pad definition Page 54, 4.4567x3.5569mm, 80 Ball, 10x8 Layout, 0.4mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +CSP 80 0.4 80-ball WLCSP +0 +80 +80 +Package_CSP +LFCSP-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +LFCSP, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_6_3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +11 +7 +Package_CSP +LFCSP-8-1EP_3x2mm_P0.5mm_EP1.6x1.65mm +LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/57080735642908cp_8_4.pdf +LFCSP 8pin thermal pad 3x2mm Pitch 0.5mm +0 +9 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.6x2.34mm +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +13 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.6x2.34mm_ThermalVias +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +20 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.45x1.74mm +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-8/CP_8_13.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +13 +9 +Package_CSP +LFCSP-8_2x2mm_P0.5mm +LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_8_6.pdf +LFCSP 8pin 2x2mm Pitch 0.5mm +0 +8 +8 +Package_CSP +LFCSP-10_2x2mm_P0.5mm +LFCSP, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/cp_10_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +10 +10 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.5x1.5mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp_16_27.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.854x1.854mm +16-Lead Lead Frame Chip Scale Package, 3x3mm, 0.5mm pitch, 1.854mm thermal pad (CP-16-22, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_22.pdf) +LFCSP 16 0.5 +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +LFCSP, 16 pin, 4x4mm, 2.1mm sq pad (http://www.analog.com/media/en/technical-documentation/data-sheets/ADG633.pdf) +LFCSP 16 0.65 +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +31 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_17.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_17.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +31 +17 +Package_CSP +LFCSP-16_3x3mm_P0.5mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_32.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +16 +16 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +20-Lead Frame Chip Scale Package - 4x4x0.9 mm Body [LFCSP], (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_20_6.pdf) +LFCSP 0.5 +0 +25 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py +LFCSP DFN_QFN +0 +25 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py +LFCSP DFN_QFN +0 +35 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +25 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +35 +21 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +29 +25 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm_ThermalVias +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +39 +25 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +29 +25 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +39 +25 +Package_CSP +LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm +LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +33 +29 +Package_CSP +LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm_ThermalVias +LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +43 +29 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +42 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +59 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/3416438741201015623cp_32_4.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +37 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/3416438741201015623cp_32_4.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +47 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm +LFCSP, 32 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7280.PDF#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +37 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7280.PDF#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +47 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +32-Lead Frame Chip Scale Package LFCSP (5mm x 5mm); (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-32/CP_32_27.pdf +LFCSP 0.5 +0 +37 +33 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP3.9x3.9mm +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_40_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +45 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP3.9x3.9mm_ThermalVias +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_40_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +55 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-40/CP_40_15.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +45 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-40/CP_40_15.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +55 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.65x4.65mm +LFCSP, 40 Pin (https://www.jedec.org/system/files/docs/MO-220K01.pdf (variation VJJD-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +45 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.65x4.65mm_ThermalVias +LFCSP, 40 Pin (https://www.jedec.org/system/files/docs/MO-220K01.pdf (variation VJJD-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +55 +41 +Package_CSP +LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm +LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +58 +49 +Package_CSP +LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm_ThermalVias +LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +75 +49 +Package_CSP +LFCSP-56-1EP_8x8mm_P0.5mm_EP6.6x6.6mm +LFCSP, 56 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-56/CP_56_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead Analog-LFCSP_WQ-CP-56-9 +0 +66 +57 +Package_CSP +LFCSP-56-1EP_8x8mm_P0.5mm_EP6.6x6.6mm_ThermalVias +LFCSP, 56 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-56/CP_56_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead Analog-LFCSP_WQ-CP-56-9 +0 +71 +57 +Package_CSP +LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm +LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +69 +65 +Package_CSP +LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm_ThermalVias +LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +86 +65 +Package_CSP +LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm +LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +82 +73 +Package_CSP +LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm_ThermalVias +LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +99 +73 +Package_CSP +LFCSP-72-1EP_10x10mm_P0.5mm_EP6.15x6.15mm +72-Lead Frame Chip Scale Package - 10x10x0.9 mm Body [LFCSP]; (see https://www.intersil.com/content/dam/Intersil/documents/l72_/l72.10x10c.pdf) +LFCSP 0.5 +0 +77 +73 +Package_CSP +LFCSP-VQ-24-1EP_4x4mm_P0.5mm_EP2.642x2.642mm +LFCSP VQ, 24 pin, exposed pad, 4x4mm body, pitch 0.5mm (http://www.analog.com/media/en/package-pcb-resources/package/56702234806764cp_24_3.pdf, http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5801.pdf) +LFCSP 0.5 +0 +29 +25 +Package_CSP +LFCSP-VQ-48-1EP_7x7mm_P0.5mm +LFCSP VQ, 48 pin, exposed pad, 7x7mm body (http://www.analog.com/media/en/technical-documentation/data-sheets/AD7951.pdf, http://www.analog.com/en/design-center/packaging-quality-symbols-footprints/symbols-and-footprints/AD7951.html) +LFCSP 48 +0 +65 +49 +Package_CSP +LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm +LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +15 +9 +Package_CSP +LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm_ThermalVias +LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +22 +9 +Package_CSP +LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm +LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +17 +11 +Package_CSP +LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm_ThermalVias +LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +24 +11 +Package_CSP +Macronix_WLCSP-12_2.02x2.09mm_P0.5mm +WLCSP-12, 2.02x2.09mm, 12 Ball, 4x4 Layout, 0.5mm Pitch, https://www.macronix.com/Lists/Datasheet/Attachments/8909/MX25U3232F,%201.8V,%2032Mb,%20v1.2.pdf#page=93 +CSP 12 0.5 +0 +12 +12 +Package_CSP +Maxim_WLCSP-35_3.0x2.17mm_Layout7x5_P0.4mm_Ball0.27mm_Pad0.25mm +WLCSP-35, 2.998x2.168mm, 35 Ball, 7x5 Layout, 0.4mm Pitch, https://pdfserv.maximintegrated.com/package_dwgs/21-100489.PDF +CSP 35 0.4 +0 +35 +35 +Package_CSP +Nexperia_WLCSP-15_6-3-6_2.37x1.17mm_Layout6x3_P0.4mm +Nexperia wafer level chip-size package; 15 bumps (6-3-6), 2.37x1.17mm, 15 Ball, 6x3 Layout, 0.4mm Pitch, https://assets.nexperia.com/documents/data-sheet/PCMFXUSB3S_SER.pdf +CSP 15 0.4 +0 +15 +15 +Package_CSP +ST_WLCSP-12_1.70x1.42mm_P0.35mm_Stagger +ST WLCSP-12, ST Die ID 443, 1.7x1.42mm, 12 Ball, Y-staggered 4x6 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32c011d6.pdf +CSP 12 0.35 +0 +12 +12 +Package_CSP +ST_WLCSP-18_1.86x2.14mm_P0.4mm_Stagger +ST WLCSP-18, ST Die ID 466, 1.86x2.14mm, 18 Ball, X-staggered 7x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g031y8.pdf +CSP 18 0.4 +0 +18 +18 +Package_CSP +ST_WLCSP-20_1.94x2.40mm_Layout4x5_P0.4mm +ST WLCSP-20, ST die ID 456, 1.94x2.4mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g051f8.pdf#page=102 +CSP 20 0.4 +0 +20 +20 +Package_CSP +ST_WLCSP-25_2.30x2.48mm_Layout5x5_P0.4mm +ST WLCSP-25, ST die ID 460, 2.3x2.48mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g071eb.pdf +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_2.33x2.24mm_Layout5x5_P0.4mm +ST WLCSP-25, ST Die ID 474, 2.33x2.24mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32h503eb.pdf +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die425 +WLCSP-25, 2.097x2.493mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l031f6.pdf#page=112 +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die444 +WLCSP-25, 2.423x2.325mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f031k6.pdf#page=93 +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die457 +WLCSP-25, 2.133x2.07mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l011k3.pdf#page=100 +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-27_2.34x2.55mm_P0.40mm_Stagger +ST WLCSP-27, ST Die ID 459, 2.34x2.55mm, 27 Ball, X-staggered 9x6 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u031g6.pdf +CSP 27 0.4 +0 +27 +27 +Package_CSP +ST_WLCSP-27_2.55x2.34mm_P0.40mm_Stagger +ST WLCSP-27, ST Die ID 459, 2.55x2.34mm, 27 Ball, X-staggered 9x6 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u031g6.pdf +CSP 27 0.4 +0 +27 +27 +Package_CSP +ST_WLCSP-36_2.58x3.07mm_Layout6x6_P0.4mm +ST WLCSP-36, ST die ID 464, 2.58x3.07mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l412t8.pdf +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die417 +WLCSP-36, 2.61x2.88mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l052t8.pdf#page=123 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die440 +WLCSP-36, 2.605x2.703mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f051t8.pdf#page=103 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die445 +WLCSP-36, 2.605x2.703mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=96 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die458 +WLCSP-36, 2.553x2.579mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f410t8.pdf#page=119 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-42_2.82x2.93mm_P0.40mm_Stagger +ST WLCSP-42, ST Die ID 489, 2.82x2.93mm, 42 Ball, X-staggered 12x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u073rc.pdf +CSP 42 0.4 +0 +42 +42 +Package_CSP +ST_WLCSP-42_2.93mmx2.82_P0.40mm_Stagger +ST WLCSP-42, ST Die ID 489, 2.93x2.82mm, 42 Ball, X-staggered 12x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u073rc.pdf +CSP 42 0.4 +0 +42 +42 +Package_CSP +ST_WLCSP-49_3.15x3.13mm_Layout7x7_P0.4mm +ST WLCSP-49, ST die ID 468, 3.15x3.13mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g431c6.pdf +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_3.30x3.38mm_Layout7x7_P0.4mm_Offcenter +ST WLCSP-49, off-center ball grid, ST die ID 494, 3.3x3.38mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb15cc.pdf#page=119 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die423 +WLCSP-49, 2.965x2.965mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f401vc.pdf#page=115 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die431 +WLCSP-49, 2.999x3.185mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f411vc.pdf#page=124 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die433 +WLCSP-49, 3.029x3.029mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f401ce.pdf#page=116 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die435 +WLCSP-49, 3.141x3.127mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00257211.pdf#page=191 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die438 +WLCSP-49, 3.89x3.74mm, 49 Ball, 7x7 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f303r8.pdf#page=112 +CSP 49 0.5 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die439 +WLCSP-49, 3.417x3.151mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f301r8.pdf#page=117 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die447 +WLCSP-49, 3.294x3.258mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l072kz.pdf#page=134 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die448 +WLCSP-49, 3.277x3.109mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f071v8.pdf#page=106 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-52_3.09x3.15mm_P0.4mm_Stagger +ST WLCSP-52, ST die ID 467, 3.09x3.15mm, 52 Ball, X-staggered 13x8 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g0b1ne.pdf#page=136 +CSP 52 0.4 +0 +52 +52 +Package_CSP +ST_WLCSP-56_3.38x3.38mm_P0.4m_Stagger +ST WLCSP-56, ST die ID 455, 3.38x3.38mm, 56 Ball, X-staggered 14x8 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u535je.pdf +CSP 56 0.4 +0 +56 +56 +Package_CSP +ST_WLCSP-63_Die427 +WLCSP-63, 3.228x4.164mm, 63 Ball, 7x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l151cc.pdf#page=125 +CSP 63 0.4 +0 +63 +63 +Package_CSP +ST_WLCSP-64_3.56x3.52mm_Layout8x8_P0.4mm +ST WLCSP-64, ST die ID 479, 3.56x3.52mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g491re.pdf +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die414 +WLCSP-64, 4.466x4.395mm, 64 Ball, 8x8 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f103ze.pdf#page=120 +CSP 64 0.5 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die427 +WLCSP-64, 4.539x4.911mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l152zc.pdf#page=126 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die435 +WLCSP-64, 3.141x3.127mm, 64 Ball, 8x8 Layout, 0.35mm Pitch, http://www.st.com/resource/en/datasheet/DM00257211.pdf#page=188 +CSP 64 0.35 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die436 +WLCSP-64, 4.539x4.911mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l152zd.pdf#page=143 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die441 +WLCSP-64, 3.623x3.651mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00213872.pdf#page=167 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die442 +WLCSP-64, 3.347x3.585mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f091vb.pdf#page=109 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die462 +WLCSP-64, 3.357x3.657mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00340475.pdf#page=189 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-66_Die411 +WLCSP-66, 3.639x3.971mm, 66 Ball, 9x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=154 +CSP 66 0.4 +0 +66 +66 +Package_CSP +ST_WLCSP-66_Die432 +WLCSP-66, 3.767x4.229mm, 66 Ball, 8x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f378vc.pdf#page=114 +CSP 66 0.4 +0 +66 +66 +Package_CSP +ST_WLCSP-72_3.38x3.38mm_P0.35m_Stagger +ST WLCSP-72, ST die ID 455, 3.38x3.38mm, 72 Ball, X-staggered 16x9 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32u535je.pdf +CSP 72 0.35 +0 +72 +72 +Package_CSP +ST_WLCSP-72_Die415 +WLCSP-72, 4.4084x3.7594mm, 72 Ball, 9x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l476me.pdf#page=255 +CSP 72 0.4 +0 +72 +72 +Package_CSP +ST_WLCSP-80_3.50x3.27mm_P0.35mm_Stagger +ST WLCSP-80, ST die ID 484, 3.5x3.27mm, 80 Ball, Y-staggered 10x16 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h563mi.pdf +CSP 80 0.35 +0 +80 +80 +Package_CSP +ST_WLCSP-81_4.02x4.27mm_Layout9x9_P0.4mm +ST WLCSP-81, ST die ID 469, 4.02x4.27mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g483me.pdf +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_4.36x4.07mm_Layout9x9_P0.4mm +ST WLCSP-81, ST die ID 472, 4.36x4.07mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l562ce.pdf +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die415 +WLCSP-81, 4.4084x3.7594mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l476me.pdf#page=252 +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die421 +WLCSP-81, 3.693x3.815mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f446ze.pdf#page=192 +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die463 +WLCSP-81, 4.039x3.951mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00282249.pdf#page=175 +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-90_4.20x3.95mm_P0.4mm_Stagger +ST WLCSP-90, ST die ID 482, 4.2x3.95mm, 90 Ball, X-staggered 18x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u575og.pdf#page=306 +CSP 90 0.4 +0 +90 +90 +Package_CSP +ST_WLCSP-90_Die413 +WLCSP-90, 4.223x3.969mm, 90 Ball, 10x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f405og.pdf#page=164 +CSP 90 0.4 +0 +90 +90 +Package_CSP +ST_WLCSP-99_4.42x3.77mm_Layout9x11_P0.35mm +ST WLCSP-99, ST die ID 415, 4.42x3.77mm, 99 Ball, 11x9 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32l476vg.pdf +CSP 99 0.35 +0 +99 +99 +Package_CSP +ST_WLCSP-100_4.40x4.38mm_Layout10x10_P0.4mm_Offcenter +ST WLCSP-100, off-center ball grid, ST die ID 495, 4.4x4.38mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb55vc.pdf +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_4.437x4.456mm_Layout10x10_P0.4mm +ST WLCSP-100, ST die ID 471, 4.437x4.456mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l4p5ve.pdf +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die422 +WLCSP-100, 4.201x4.663mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f302vc.pdf#page=133 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die446 +WLCSP-100, 4.775x5.041mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f303zd.pdf#page=162 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die452 +WLCSP-100, 4.201x4.663mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00330506.pdf#page=218 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die461 +WLCSP-100, 4.618x4.142mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00284211.pdf#page=259 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-101_3.86x3.79mm_P0.35mm_Stagger +ST WLCSP-101, ST Die ID 485, 3.86x3.79mm, 101 Ball, Y-staggered 11x19 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h7r3v8.pdf +CSP 101 0.35 +0 +101 +101 +Package_CSP +ST_WLCSP-104_Die437 +WLCSP-104, 4.095x5.094mm, 104 Ball, 9x12 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l152ze.pdf#page=127 +CSP 104 0.4 +0 +104 +104 +Package_CSP +ST_WLCSP-115_3.73x4.15mm_P0.35mm_Stagger +ST WLCSP-115, ST die ID 483, 3.73x4.15mm, 115 Ball, Y-staggered 11x21 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h725vg.pdf +CSP 115 0.35 +0 +115 +115 +Package_CSP +ST_WLCSP-115_4.63x4.15mm_P0.4mm_Stagger +ST WLCSP-115, ST die ID 461, 4.63x4.15mm, 115 Ball, X-staggered 21x11 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l496wg.pdf +CSP 115 0.4 +0 +115 +115 +Package_CSP +ST_WLCSP-132_4.57x4.37mm_Layout12x11_P0.35mm +ST WLCSP-132, ST die ID 480, 4.57x4.37mm, 132 Ball, 12x11 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h7a3ai.pdf +CSP 132 0.35 +0 +132 +132 +Package_CSP +ST_WLCSP-143_Die419 +WLCSP-143, 4.521x5.547mm, 143 Ball, 11x13 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f429ng.pdf#page=203 +CSP 143 0.4 +0 +143 +143 +Package_CSP +ST_WLCSP-143_Die449 +WLCSP-143, 4.539x5.849mm, 143 Ball, 11x13 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f746zg.pdf#page=202 +CSP 143 0.4 +0 +143 +143 +Package_CSP +ST_WLCSP-144_Die470 +WLCSP-144, 5.24x5.24mm, 144 Ball, 12x12 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00366448.pdf#page=295 +CSP 144 0.4 +0 +144 +144 +Package_CSP +ST_WLCSP-150_5.38x5.47mm_P0.4m_Stagger +ST WLCSP-150, ST die ID 481, 5.38x5.47mm, 150 Ball, Y-staggered 13x23 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u595zj.pdf +CSP 150 0.4 +0 +150 +150 +Package_CSP +ST_WLCSP-156_4.96x4.64mm_Layout13x12_P0.35mm +ST WLCSP-156, ST die ID 450, 4.96x4.64mm, 156 Ball, 13x12 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h747xi.pdf +CSP 156 0.35 +0 +156 +156 +Package_CSP +ST_WLCSP-168_Die434 +WLCSP-168, 4.891x5.692mm, 168 Ball, 12x14 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f469ni.pdf#page=198 +CSP 168 0.4 +0 +168 +168 +Package_CSP +ST_WLCSP-180_Die451 +WLCSP-180, 5.537x6.095mm, 180 Ball, 13x14 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00273119.pdf#page=240 +CSP 180 0.4 +0 +180 +180 +Package_CSP +ST_WLCSP-208_5.8x5.6mm_P0.35_Stagger +ST WLCSP-208, ST die ID 476, 5.8x5.6mm, 208 Ball, X-staggered 26x16 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32u5f9bj.pdf +CSP 208 0.35 +0 +208 +208 +Package_CSP +ST_WLCSP-208_5.38x5.47mm_P0.35mm_Stagger +ST WLCSP-208, ST die ID 481, 5.38x5.47mm, 208 Ball, X-staggered 26x16 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32u5a5aj.pdf +CSP 208 0.35 +0 +208 +208 +Package_CSP +WLCSP-4-X1-WLB0909-4_0.89x0.89mm_P0.5mm +X1-WLB0909, 0.89x0.89mm, 4 Ball, 2x2 Layout, 0.5mm Pitch, https://www.diodes.com/assets/Datasheets/AP22913.pdf +CSP 4 0.5 +0 +4 +4 +Package_CSP +WLCSP-4_0.64x0.64mm_P0.35mm +WLCSP-4, 0.64x0.64mm, 4 Ball, 2x2 Layout, 0.35mm Pitch, https://www.onsemi.com/pdf/datasheet/ncp163-d.pdf#page=23 +CSP 4 0.35 +0 +4 +4 +Package_CSP +WLCSP-6_1.4x1.0mm_P0.4mm +6pin Pitch 0.4mm +6pin Pitch 0.4mm WLCSP +0 +6 +6 +Package_CSP +WLCSP-8_1.58x1.63x0.35mm_Layout3x5_P0.35x0.4mm_Ball0.25mm_Pad0.25mm_NSMD +WLCSP/XFBGA 8-pin package, staggered pins, http://www.adestotech.com/wp-content/uploads/DS-AT25DF041B_040.pdf +WLCSP WLCSP-8 XFBGA XFBGA-8 CSP BGA Chip-Scale Glass-Top +0 +8 +8 +Package_CSP +WLCSP-8_1.551x2.284mm_P0.5mm +WLCSP-8, 1.551x2.284mm, 8 Ball, 2x4 Layout, 0.5mm Pitch, https://www.adestotech.com/wp-content/uploads/AT25SL321_112.pdf#page=75 +CSP 8 0.5 +0 +8 +8 +Package_CSP +WLCSP-9_1.21x1.22mm_P0.4mm +WLCSP-9, 1.21x1.22mm, 9 Ball, 3x3 Layout, 0.4mm Pitch, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/wlcspcb/cb_9_3.pdf +CSP 9 0.4 +0 +9 +9 +Package_CSP +WLCSP-12_1.56x1.56mm_P0.4mm +WLCSP 12 1.56x1.56 https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMM150-DS001-01.pdf +BMM150 WLCSP +0 +12 +12 +Package_CSP +WLCSP-12_1.403x1.555mm_P0.4mm_Stagger +WLCSP-12, staggered array, 1.403x1.555mm, 12 Ball, 6x4 Layout, 0.2x0.346333mm Pitch, http://ww1.microchip.com/downloads/en/devicedoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=208 +CSP 12 0.2x0.346333 +0 +12 +12 +Package_CSP +WLCSP-16_1.409x1.409mm_P0.35mm +WLCSP-16, 1.409x1.409mm, 16 Ball, 4x4 Layout, 0.35mm Pitch, http://www.latticesemi.com/view_document?document_id=213 +CSP 16 0.35 +0 +16 +16 +Package_CSP +WLCSP-16_2.225x2.17mm_P0.5mm +WLCSP-16 2.225x2.17mm, 2.225x2.17mm, 16 Ball, 4x4 Layout, 0.5mm Pitch, https://ww1.microchip.com/downloads/en/DeviceDoc/16B_WLCSP_CS_C04-06036c.pdf +CSP 16 0.5 +0 +16 +16 +Package_CSP +WLCSP-16_4x4_B2.17x2.32mm_P0.5mm +WLCSP-16, http://www.nxp.com/documents/data_sheet/LPC1102_1104.pdf, http://www.nxp.com/assets/documents/data/en/application-notes/AN3846.pdf +WLCSP-16 NXP +0 +16 +16 +Package_CSP +WLCSP-20_1.934x2.434mm_Layout4x5_P0.4mm +WLCSP-20, 4x5 raster, 1.934x2.434mm package, pitch 0.4mm; see section 36.2.3 of http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf +BGA 20 0.4 +0 +20 +20 +Package_CSP +WLCSP-20_1.994x1.94mm_Layout4x5_P0.4mm +WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00539D.pdf +WLCSP-20 +0 +20 +20 +Package_CSP +WLCSP-20_1.994x1.609mm_Layout5x4_P0.4mm +WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00676D.pdf +WLCSP-20 +0 +20 +20 +Package_CSP +WLCSP-36_2.82x2.67mm_Layout6x6_P0.4mm +WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00949D.pdf +WLCSP-36 +0 +36 +36 +Package_CSP +WLCSP-36_2.374x2.459mm_Layout6x6_P0.35mm +WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00604D.pdf +WLCSP-36 +0 +36 +36 +Package_CSP +WLCSP-56_3.170x3.444mm_Layout7x8_P0.4mm +WLCSP-56, 7x8 raster, 3.170x3.444mm package, pitch 0.4mm; see section 48.2.4 of http://ww1.microchip.com/downloads/en/DeviceDoc/DS60001479B.pdf +BGA 56 0.4 +0 +56 +56 +Package_CSP +WLCSP-81_4.41x3.76mm_P0.4mm +WLCSP-81, 9x9, 0.4mm Pitch, http://www.st.com/content/ccc/resource/technical/document/technical_note/92/30/3c/a1/4c/bb/43/6f/DM00103228.pdf/files/DM00103228.pdf/jcr:content/translations/en.DM00103228.pdf +WLCSP ST +0 +81 +81 +Package_CSP +pSemi_CSP-16_1.64x2.04mm_P0.4mm +pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf) +psemi csp 16 +0 +16 +16 +Package_CSP +pSemi_CSP-16_1.64x2.04mm_P0.4mm_Pad0.18mm +pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf) +psemi csp 16 +0 +16 +16 +Package_DFN_QFN +AMS_QFN-4-1EP_2x2mm_P0.95mm_EP0.7x1.6mm +UFD Package, 4-Lead Plastic QFN (2mm x 2mm), http://ams.com/eng/content/download/950231/2267959/483138 +QFN 0.95 +0 +6 +5 +Package_DFN_QFN +AO_AOZ666xDI_DFN-8-1EP_3x3mm_P0.65mm_EP1.25x2.7mm +AO AOZ666xDI DFN, 8 Pin (https://aosmd.com/res/data_sheets/AOZ6663DI-01.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +AO DFN NoLead +0 +13 +9 +Package_DFN_QFN +AO_DFN-8-1EP_5.55x5.2mm_P1.27mm_EP4.12x4.6mm +DD Package; 8-Lead Plastic DFN (5.55mm x 5.2mm), Pin 5-8 connected to EP (http://www.aosmd.com/res/packaging_information/DFN5x6_8L_EP1_P.pdf) +dfn +0 +25 +5 +Package_DFN_QFN +Cypress_QFN-56-1EP_8x8mm_P0.5mm_EP6.22x6.22mm_ThermalVias +56-Lead Plastic Quad Flat, No Lead Package (ML) - 8x8x0.9 mm Body [QFN] (see datasheet at http://www.cypress.com/file/138911/download and app note at http://www.cypress.com/file/140006/download) +QFN 0.5 +0 +87 +57 +Package_DFN_QFN +DFN-6-1EP_1.2x1.2mm_P0.4mm_EP0.3x0.94mm_PullBack +DFN, 6 Pin (http://www.onsemi.com/pub/Collateral/NCP133-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x1.6mm_P0.5mm_EP1.15x1.3mm +DFN, 6 Pin (https://www.onsemi.com/pdf/datasheet/ncp349-d.pdf#page=12), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x1.8mm_P0.5mm_EP1.2x1.6mm +DFN, 6 Pin (https://www.diodes.com/assets/Package-Files/U-DFN2018-6.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.5mm_EP0.6x1.37mm +DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081703_C_DC6.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.5mm_EP0.7x1.6mm +DFN, 6 Pin (http://www.junmintech.com/UploadFiles/Product/20211129145204_37021.pdf#page=10), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.5mm_EP0.61x1.42mm +DC6 Package; 6-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_6_05-08-1703.pdf) +DFN 0.5 +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.65mm_EP1.01x1.7mm +DFN, 6 Pin (https://www.diodes.com/assets/Package-Files/U-DFN2020-6%20(Type%20C).pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +6-Lead Plastic Dual Flat, No Lead Package (MA) - 2x2x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.65 +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_3x2mm_P0.5mm_EP1.65x1.35mm +DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/(DCB6)%20DFN%2005-08-1715%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +7 +Package_DFN_QFN +DFN-6-1EP_3x3mm_P0.95mm_EP1.7x2.6mm +DFN6 3*3 MM, 0.95 PITCH; CASE 506AH-01 (see ON Semiconductor 506AH.PDF) +DFN 0.95 +0 +13 +7 +Package_DFN_QFN +DFN-6-1EP_3x3mm_P1mm_EP1.5x2.4mm +DFN, 6 Pin (https://www.silabs.com/documents/public/data-sheets/Si7020-A20.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +7 +Package_DFN_QFN +DFN-6_1.3x1.2mm_P0.4mm +6-Lead Plastic DFN (1.3mm x 1.2mm) +DFN 0.4 +0 +6 +6 +Package_DFN_QFN +DFN-8-1EP_1.5x1.5mm_P0.4mm_EP0.7x1.2mm +DFN, 8 Pin (https://www.kinet-ic.com/uploads/KTD2026-7-04h.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm +DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/506AQ.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead 506AQ +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.6mm +DFN, 8 Pin (https://www.qorvo.com/products/d/da007268), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +10 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.3mm +DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/NB3N551-D.PDF#page=7), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.5mm +DFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8127-AVR-8-bit-Microcontroller-ATtiny4-ATtiny5-ATtiny9-ATtiny10_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm +DFN, 8 Pin (https://www.st.com/resource/en/datasheet/lm2903.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +10 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm +DFN8 2x2, 0.5P; CASE 506CN (see ON Semiconductor 506CN.PDF) +DFN 0.5 +0 +11 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.45mm_EP0.64x1.38mm +DC8 Package 8-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_8_05-08-1719.pdf) +DFN 0.45 +0 +11 +9 +Package_DFN_QFN +DFN-8-1EP_2x3mm_P0.5mm_EP0.61x2.2mm +DFN, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081702_c_ddb8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead Linear-DDB +0 +11 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.5mm +8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body [UDFN] (see Atmel-8815-SEEPROM-AT24CS01-02-Datasheet.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.7x1.4mm +DFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_DFN_2x3x0_9_MC_C04-123C.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.7x1.6mm +DFN, 8 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP8904DD/document_id/1244/), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.36x1.46mm +8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body (http://ww1.microchip.com/downloads/en/DeviceDoc/20005010F.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.75x1.45mm +8-Lead Plastic Dual Flat, No Lead Package (MC) - 2x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.45mm_EP1.66x1.36mm +DCB Package 8-Lead Plastic DFN (2mm x 3mm) (see Linear Technology DFN_8_05-08-1718.pdf) +DFN 0.45 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.7x2.4mm +DFN, 8 Pin (https://stcmicro.com/datasheet/STC8G-en.pdf#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead STC8G1K08A-36I-DFN8 +0 +10 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.7x2.4mm_ThermalVias +DFN, 8 Pin (https://stcmicro.com/datasheet/STC8G-en.pdf#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead STC8G1K08A-36I-DFN8 +0 +20 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.65x2.38mm +DFN, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4320fb.pdf#page=10), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +10 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.65x2.38mm_ThermalVias +DFN, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4320fb.pdf#page=10), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +20 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.66x2.38mm +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.65mm_EP1.5x2.25mm +DFN, 8 Pin (https://www.diodes.com/assets/Package-Files/U-DFN3030-8-Type-E.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.65mm_EP1.7x2.05mm +DFN, 8 Pin (http://www.ixysic.com/home/pdfs.nsf/www/IX4426-27-28.pdf/$file/IX4426-27-28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.65mm_EP1.55x2.4mm +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.65 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_4x4mm_P0.8mm_EP2.3x3.24mm +DFN, 8 Pin (https://www.st.com/resource/en/datasheet/ld1086.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_4x4mm_P0.8mm_EP2.5x3.6mm +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.8 +0 +15 +9 +Package_DFN_QFN +DFN-8-1EP_4x4mm_P0.8mm_EP2.39x2.21mm +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF) +DFN 0.8 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_6x5mm_P1.27mm_EP2x2mm +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download) +dfn +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_6x5mm_P1.27mm_EP4x4mm +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download) +dfn +0 +25 +9 +Package_DFN_QFN +DFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P; No exposed pad - Ref http://pdfserv.maximintegrated.com/land_patterns/90-0349.PDF +DFN 0.5 +0 +8 +8 +Package_DFN_QFN +DFN-10-1EP_2.6x2.6mm_P0.5mm_EP1.3x2.2mm +DFN, 10 Pin (https://www.nxp.com/docs/en/data-sheet/PCF85063A.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_2.6x2.6mm_P0.5mm_EP1.3x2.2mm_ThermalVias +DFN, 10 Pin (https://www.nxp.com/docs/en/data-sheet/PCF85063A.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +22 +11 +Package_DFN_QFN +DFN-10-1EP_2x3mm_P0.5mm_EP0.64x2.4mm +DDB Package; 10-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_10_05-08-1722.pdf) +DFN 0.5 +0 +13 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.7x2.5mm +DFN, 10 Pin (https://www.monolithicpower.com/pub/media/document/MPQ2483_r1.05.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.55x2.48mm +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.58x2.35mm +DFN, 10 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/OTH/ProductDocuments/DataSheets/22005b.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.58x2.35mm_ThermalVias +DFN, 10 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/OTH/ProductDocuments/DataSheets/22005b.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +20 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm +DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm_ThermalVias +DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +22 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.75x2.7mm +10-Lead Plastic Dual Flat No-Lead Package, 3x3mm Body (see Atmel Appnote 8826) +DFN 0.5 +0 +15 +11 +Package_DFN_QFN +DFN-10_2x2mm_P0.4mm +10-Lead Plastic DFN (2mm x 2mm) 0.40mm pitch +DFN 10 0.4mm +0 +10 +10 +Package_DFN_QFN +DFN-12-1EP_2x3mm_P0.45mm_EP0.64x2.4mm +DDB Package; 12-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_12_05-08-1723.pdf) +DFN 0.45 +0 +15 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.5mm_EP1.6x2.5mm +DFN, 12 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MIC2207-2MHz-3A-PWM-Buck-Regulator-DS20006470A.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +17 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.5mm_EP1.6x2.5mm_ThermalVias +DFN, 12 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MIC2207-2MHz-3A-PWM-Buck-Regulator-DS20006470A.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +24 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.5mm_EP2.05x2.86mm +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +17 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.45mm_EP1.65x2.38mm +DFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/DFN_12_05-08-1725.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +17 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.45mm_EP1.65x2.38mm_ThermalVias +DFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/DFN_12_05-08-1725.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +24 +13 +Package_DFN_QFN +DFN-12-1EP_3x4mm_P0.5mm_EP1.7x3.3mm +DE/UE Package; 12-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_12_05-08-1695.pdf) +DFN 0.5 +0 +21 +13 +Package_DFN_QFN +DFN-12-1EP_4x4mm_P0.5mm_EP2.66x3.38mm +DF Package; 12-Lead Plastic DFN (4mm x 4mm) (see Linear Technology 05081733_A_DF12.pdf) +DFN 0.5 +0 +21 +13 +Package_DFN_QFN +DFN-12-1EP_4x4mm_P0.65mm_EP2.64x3.54mm +DFN12, 4x4, 0.65P; CASE 506CE (see ON Semiconductor 506CE.PDF) +DFN 0.65 +0 +21 +13 +Package_DFN_QFN +DFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm +DD Package; 14-Lead Plastic DFN (3mm x 3mm) (http://pdfserv.maximintegrated.com/land_patterns/90-0063.PDF) +DFN 0.40 +0 +19 +15 +Package_DFN_QFN +DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm +14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf) +VDFN DFN 0.65mm +0 +23 +15 +Package_DFN_QFN +DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm_ThermalVias +14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf) +VDFN DFN 0.65mm +0 +33 +15 +Package_DFN_QFN +DFN-14-1EP_3x4mm_P0.5mm_EP1.7x3.3mm +DE Package; 14-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_14_05-08-1708.pdf) +DFN 0.5 +0 +23 +15 +Package_DFN_QFN +DFN-14_1.35x3.5mm_P0.5mm +DFN, 14 Pin (https://m.littelfuse.com/media?resourcetype=datasheets&itemid=9fbe09c9-efee-4022-a889-ca0005cd9b07&filename=littelfuse-tvs-diode-array-sp3012-datasheet#page=5), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +14 +14 +Package_DFN_QFN +DFN-16-1EP_3x4mm_P0.45mm_EP1.7x3.3mm +DE Package; 16-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_16_05-08-1732.pdf) +DFN 0.45 +0 +25 +17 +Package_DFN_QFN +DFN-16-1EP_3x5mm_P0.5mm_EP1.66x4.4mm +DHC Package; 16-Lead Plastic DFN (5mm x 3mm) (see Linear Technology DFN_16_05-08-1706.pdf) +DFN 0.5 +0 +27 +17 +Package_DFN_QFN +DFN-16-1EP_4x5mm_P0.5mm_EP2.44x4.34mm +DHD Package; 16-Lead Plastic DFN (5mm x 4mm) (see Linear Technology 05081707_A_DHD16.pdf) +DFN 0.5 +0 +25 +17 +Package_DFN_QFN +DFN-16-1EP_5x5mm_P0.5mm_EP3.46x4mm +DH Package; 16-Lead Plastic DFN (5mm x 5mm) (see Linear Technology DFN_16_05-08-1709.pdf) +DFN 0.5 +0 +26 +17 +Package_DFN_QFN +DFN-18-1EP_3x5mm_P0.5mm_EP1.66x4.4mm +DHC Package; 18-Lead Plastic DFN (5mm x 3mm) (see Linear Technology 05081955_0_DHC18.pdf) +DFN 0.5 +0 +29 +19 +Package_DFN_QFN +DFN-18-1EP_4x5mm_P0.5mm_EP2.44x4.34mm +DHD Package; 18-Lead Plastic DFN (5mm x 4mm) (see Linear Technology DFN_18_05-08-1778.pdf) +DFN 0.5 +0 +27 +19 +Package_DFN_QFN +DFN-20-1EP_5x6mm_P0.5mm_EP3.24x4.24mm +DFN20, 6x5, 0.5P; CASE 505AB (see ON Semiconductor 505AB.PDF) +DFN 0.5 +0 +33 +21 +Package_DFN_QFN +DFN-22-1EP_5x6mm_P0.5mm_EP3.14x4.3mm +DFN22 6*5*0.9 MM, 0.5 P; CASE 506AF\xe2\x88\x9201 (see ON Semiconductor 506AF.PDF) +DFN 0.5 +0 +35 +23 +Package_DFN_QFN +DFN-24-1EP_4x7mm_P0.5mm_EP2.64x6.44mm +DKD Package; 24-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_24_05-08-1864.pdf) +DFN 0.5 +0 +35 +25 +Package_DFN_QFN +DFN-32-1EP_4x7mm_P0.4mm_EP2.64x6.44mm +DKD Package; 32-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_32_05-08-1734.pdf) +DFN 0.4 +0 +43 +33 +Package_DFN_QFN +DFN-44-1EP_5x8.9mm_P0.4mm_EP3.7x8.4mm +DFN44 8.9x5, 0.4P; CASE 506BU-01 (see ON Semiconductor 506BU.PDF) +DFN 0.4 +0 +63 +45 +Package_DFN_QFN +DFN-S-8-1EP_6x5mm_P1.27mm +8-Lead Plastic Dual Flat, No Lead Package (MF) - 6x5 mm Body [DFN-S] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 1.27 +0 +16 +9 +Package_DFN_QFN +DHVQFN-14-1EP_2.5x3mm_P0.5mm_EP1x1.5mm +DHVQFN, 14 Pin (JEDEC MO-241/VAA, https://assets.nexperia.com/documents/package-information/SOT762-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DHVQFN NoLead +0 +16 +15 +Package_DFN_QFN +DHVQFN-16-1EP_2.5x3.5mm_P0.5mm_EP1x2mm +DHVQFN, 16 Pin (JEDEC MO-241/VAB, https://assets.nexperia.com/documents/package-information/SOT763-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DHVQFN NoLead +0 +19 +17 +Package_DFN_QFN +DHVQFN-20-1EP_2.5x4.5mm_P0.5mm_EP1x3mm +DHVQFN, 20 Pin (JEDEC MO-241/VAC, https://assets.nexperia.com/documents/package-information/SOT764-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DHVQFN NoLead +0 +23 +21 +Package_DFN_QFN +Diodes_DFN1006-3 +DFN package size 1006 3 pins +DFN package size 1006 3 pins +0 +3 +3 +Package_DFN_QFN +Diodes_UDFN-10_1.0x2.5mm_P0.5mm +U-DFN2510-10 package used by Diodes Incorporated (https://www.diodes.com/assets/Package-Files/U-DFN2510-10-Type-CJ.pdf) +UDFN-10 U-DFN2510-10 Diodes +0 +10 +10 +Package_DFN_QFN +Diodes_UDFN2020-6_Type-F +U-DFN2020-6 (Type F) (https://www.diodes.com/assets/Package-Files/U-DFN2020-6-Type-F.pdf) +U-DFN2020-6 (Type F) +0 +8 +8 +Package_DFN_QFN +Diodes_ZL32_TQFN-32-1EP_3x6mm_P0.4mm_EP1.25x3.5mm +Diodes ZL32 TQFN, 32 Pin (https://www.diodes.com/assets/Package-Files/ZL32.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Diodes TQFN NoLead +0 +41 +33 +Package_DFN_QFN +HVQFN-16-1EP_3x3mm_P0.5mm_EP1.5x1.5mm +HVQFN, 16 Pin (https://www.nxp.com/docs/en/package-information/SOT758-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +21 +17 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +34 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +29 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +39 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +34 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +39 +25 +Package_DFN_QFN +HVQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +HVQFN, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT617-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +42 +33 +Package_DFN_QFN +HVQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +HVQFN, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT617-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +59 +33 +Package_DFN_QFN +HVQFN-40-1EP_6x6mm_P0.5mm_EP4.1x4.1mm +HVQFN, 40 Pin (https://www.nxp.com/docs/en/package-information/SOT618-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +50 +41 +Package_DFN_QFN +HVQFN-40-1EP_6x6mm_P0.5mm_EP4.1x4.1mm_ThermalVias +HVQFN, 40 Pin (https://www.nxp.com/docs/en/package-information/SOT618-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +67 +41 +Package_DFN_QFN +Infineon_MLPQ-16-14-1EP_4x4mm_P0.5mm +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +mlpq 32 7x7mm +0 +19 +15 +Package_DFN_QFN +Infineon_MLPQ-40-32-1EP_7x7mm_P0.5mm +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +mlpq 32 7x7mm +0 +76 +33 +Package_DFN_QFN +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2052mpbf.pdf?fileId=5546d462533600a401535675d3b32788) +mlpq 32 7x7mm +0 +115 +49 +Package_DFN_QFN +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_EP5.55x5.55mm +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793) +mlpq 32 7x7mm +0 +113 +49 +Package_DFN_QFN +Infineon_PQFN-22-15-4EP_6x5mm_P0.65mm +PQFN 22 leads, 5x6mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4301.pdf?fileId=5546d462533600a4015355d5fc691819, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +pqfn 22 5x6mm +0 +56 +15 +Package_DFN_QFN +Infineon_PQFN-44-31-5EP_7x7mm_P0.5mm +PQFN 44 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4302.pdf?fileId=5546d462533600a4015355d602a9181d, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +pqfn 44 7x7mm +0 +125 +27 +Package_DFN_QFN +LQFN-10-1EP_2x2mm_P0.5mm_EP0.7x0.7mm +LQFN, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081644_0_LQFN10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LQFN NoLead +0 +12 +11 +Package_DFN_QFN +LQFN-12-1EP_2x2mm_P0.5mm_EP0.7x0.7mm +LQFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081530_B_LQFN12.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LQFN NoLead +0 +14 +13 +Package_DFN_QFN +LQFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +LQFN, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081595_0_lqfn16.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LQFN NoLead +0 +18 +17 +Package_DFN_QFN +Linear_DE14MA +14-Lead Plastic DFN, 4mm x 3mm (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081731_C_DE14MA.pdf) +DFN 0.5 +0 +14 +14 +Package_DFN_QFN +Linear_UGK52_QFN-46-52 +Linear UKG52(46) package, QFN-52-1EP variant (see http://cds.linear.com/docs/en/datasheet/3886fe.pdf) +QFN 0.5 +0 +62 +47 +Package_DFN_QFN +MLF-6-1EP_1.6x1.6mm_P0.5mm_EP0.5x1.26mm +MLF, 6 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5353.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +9 +7 +Package_DFN_QFN +MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm +8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf) +DFN MLF 0.65 +0 +12 +9 +Package_DFN_QFN +MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm_ThermalVias +8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf) +DFN MLF 0.65 +0 +15 +9 +Package_DFN_QFN +MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +25 +21 +Package_DFN_QFN +MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +30 +21 +Package_DFN_QFN +MLPQ-16-1EP_4x4mm_P0.65mm_EP2.8x2.8mm +Micro Leadframe Package, 16 pin with exposed pad +MLPQ- 0.65 +0 +21 +17 +Package_DFN_QFN +MPS_QFN-12_2x2mm_P0.4mm +MPS QFN, 12 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP5087A#page24), generated with kicad-footprint-generator ipc_noLead_generator.py +MPS QFN NoLead +0 +12 +12 +Package_DFN_QFN +Maxim_FC2QFN-14_2.5x2.5mm_P0.5mm +14-FC2QFN, 14/12 Pin, https://pdfserv.maximintegrated.com/land_patterns/90-100127.PDF +FC2QFN NoLead +0 +12 +12 +Package_DFN_QFN +Maxim_TDFN-6-1EP_3x3mm_P0.95mm_EP1.5x2.3mm +Maxim TDFN, 6 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/MAX4460-MAX4462.pdf#page=19, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tdfn-ep/21-0137.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Maxim TDFN NoLead +0 +11 +7 +Package_DFN_QFN +Maxim_TDFN-12-1EP_3x3mm_P0.5mm_EP1.7x2.5mm +Maxim TDFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/land-pattern/tdfn/90-0397.pdf) +DFN NoLead +0 +17 +13 +Package_DFN_QFN +Maxim_TDFN-12-1EP_3x3mm_P0.5mm_EP1.7x2.5mm_ThermalVias +Maxim TDFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/land-pattern/tdfn/90-0397.pdf) +DFN NoLead +0 +23 +13 +Package_DFN_QFN +Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm +Micrel MLF, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic23050.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Micrel MLF NoLead +0 +11 +9 +Package_DFN_QFN +Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm_ThermalVias +Micrel MLF, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic23050.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Micrel MLF NoLead +0 +16 +9 +Package_DFN_QFN +Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.8x1.3mm_ThermalVias +http://ww1.microchip.com/downloads/en/DeviceDoc/mic2290.pdf +mlf 8 2x2 mm +0 +14 +9 +Package_DFN_QFN +Microchip_8E-16 +16-Lead Quad Flat, No Lead Package (8E) - 4x4x0.9 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN Microchip 8E 16 +0 +20 +17 +Package_DFN_QFN +Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm +QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf) +QFN dual row +0 +49 +45 +Package_DFN_QFN +Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm_ThermalVias +QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf) +QFN dual row +0 +59 +45 +Package_DFN_QFN +Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm +QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf) +QFN dual row +0 +74 +65 +Package_DFN_QFN +Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm_ThermalVias +QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf) +QFN dual row +0 +91 +65 +Package_DFN_QFN +Microsemi_QFN-40-32-2EP_6x8mm_P0.5mm +40-Lead (32-Lead Populated) Plastic Quad Flat, No Lead Package - 6x8x0.9mm Body (https://www.microsemi.com/document-portal/doc_download/131677-pd70224-data-sheet) +QFN 0.5 +0 +92 +34 +Package_DFN_QFN +Mini-Circuits_DL805 +https://ww2.minicircuits.com/case_style/DL805.pdf +RF Switch +0 +11 +9 +Package_DFN_QFN +Mini-Circuits_FG873-4_3x3mm +Mini Circuits Case style FG (https://ww2.minicircuits.com/case_style/FG873.pdf) +FG873 +0 +4 +4 +Package_DFN_QFN +NXP_LQFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_16xMask0.45x0.45 +LQFN, 48 Pin (https://www.nxp.com/docs/en/package-information/98ASA00694D.pdf) +NXP LQFN NoLead +0 +65 +49 +Package_DFN_QFN +NXP_LQFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_16xMask0.45x0.45_ThermalVias +LQFN, 48 Pin (https://www.nxp.com/docs/en/package-information/98ASA00694D.pdf) +NXP LQFN NoLead +0 +75 +49 +Package_DFN_QFN +Nordic_AQFN-73-1EP_7x7mm_P0.5mm +http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf52%2Fdita%2Fnrf52%2Fchips%2Fnrf52840.html +AQFN 7mm +0 +78 +74 +Package_DFN_QFN +Nordic_AQFN-94-1EP_7x7mm_P0.4mm +aQFN, Nordic, nRF5340, https://infocenter.nordicsemi.com/pdf/nRF5340_PS_v1.2.pdf +aqfn qfn nordic nrf nrf5340 aqfn94 +0 +103 +95 +Package_DFN_QFN +OnSemi_DFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P (https://www.onsemi.com/pub/Collateral/511AT.PDF) +DFN 0.5 +0 +8 +8 +Package_DFN_QFN +OnSemi_SIP-38-6EP-9x7mm_P0.65mm_EP1.2x1.2mm +On Semiconductor, SIP-38, 9x7mm, (https://www.onsemi.com/pub/Collateral/AX-SIP-SFEU-D.PDF#page=19) +On Semiconductor SIP +0 +44 +44 +Package_DFN_QFN +OnSemi_UDFN-8_1.2x1.8mm_P0.4mm +8-Lead Plastic Dual Flat, No Lead Package, 1.2x1.8x1.55 mm Body [UDFN] (See http://www.onsemi.com/pub/Collateral/NLSV2T244-D.PDF) +dfn udfn dual flat +0 +8 +8 +Package_DFN_QFN +OnSemi_UDFN-14-1EP_4x4mm_P0.5mm_EP2.7x3.4mm +OnSemi UDFN, 14 Pin (https://www.onsemi.com/pub/Collateral/506CM.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +OnSemi UDFN NoLead +0 +24 +15 +Package_DFN_QFN +OnSemi_UDFN-16-1EP_1.35x3.3mm_P0.4mm_EP0.4x2.8mm +OnSemi UDFN, 16 Pin (https://www.onsemi.com/pdf/datasheet/cm1624-d.pdf#page=7), generated with kicad-footprint-generator ipc_noLead_generator.py +OnSemi UDFN NoLead +0 +20 +17 +Package_DFN_QFN +OnSemi_VCT-28_3.5x3.5mm_P0.4mm +OnSemi VCT, 28 Pin (http://www.onsemi.com/pub/Collateral/601AE.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +OnSemi VCT NoLead +0 +28 +28 +Package_DFN_QFN +OnSemi_XDFN-10_1.35x2.2mm_P0.4mm +10-Lead Plastic XDFN (1.35mm x 2.2mm) (see https://www.onsemi.com/pdf/datasheet/emi8132-d.pdf) +OnSemi XDFN-10 0.4 +0 +10 +10 +Package_DFN_QFN +OnSemi_XDFN4-1EP_1.0x1.0mm_EP0.52x0.52mm +XDFN4 footprint (as found on the https://www.onsemi.com/pub/Collateral/NCP115-D.PDF) +OnSemi XDFN4 +0 +5 +5 +Package_DFN_QFN +PQFN-8-EP_6x5mm_P1.27mm_Generic +Universal Footprint for Thermally-enhanced SO-8 packages; compatible with Vishay PowerPAK SO−8, International Rectifier PQFN, Texas Instrument SON 5 × 6 mm (Q5A), Alpha and Omega DFN 5 × 6, ST Microelectronics PowerFLAT™ 5 × 6, Toshiba SOP Advance, Infineon Super SO8, NXP LFPAK (SOT669), Renesas WPAK(3F) / LFPAK, Fairchild Power 56, APEC PMPAK 5 × 6, MagnaChip PowerDFN56, ROHM HSOP8, UBIQ PRPAK56, NIKO−SEM PDFN 5 × 6, NEC 8-pin HVSON. Datasheets: https://www.onsemi.com/pub/Collateral/AND9137-D.PDF, https://assets.nexperia.com/documents/leaflet/75016838.pdf +Thermally-enhanced SO-8 PowerPAK PQFN Q5A PowerFLAT LFPAK SOT669 WPAK(3F) LFPAK Power56 PMPAK PowerDFN56 HSOP8 PRPAK56 PDFN HVSON +0 +21 +5 +Package_DFN_QFN +Panasonic_HQFN-16-1EP_4x4mm_P0.65mm_EP2.9x2.9mm +Panasonic HQFN-16, 4x4x0.85mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HQFN016-A-0404XZL_EN.pdf) +panasonic hqfn +0 +37 +17 +Package_DFN_QFN +Panasonic_HSON-8_8x8mm_P2.00mm +Panasonic HSON-8, 8x8x1.25mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HSON008-A-0808XXI_EN.pdf) +panasonic hson +0 +27 +9 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +QFN, 12 Pin (https://www.nxp.com/docs/en/data-sheet/MMZ09332B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +17 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +QFN, 12 Pin (https://www.nxp.com/docs/en/data-sheet/MMZ09332B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +32 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm +QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +17 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm_ThermalVias +QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +22 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.51mm_EP1.45x1.45mm +QFN, 12 Pin (https://ww2.minicircuits.com/case_style/DQ1225.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +17 +13 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +QFN, 16 Pin (https://www.st.com/resource/en/datasheet/tsv521.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias +QFN, 16 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py +QFN DFN_QFN +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm +QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm_ThermalVias +QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +26 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm +QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias +QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +26 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm +QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm_ThermalVias +QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +26 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm +QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm_ThermalVias +QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm +QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack +QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack_ThermalVias +QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias +QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm +QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm_ThermalVias +QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm +QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm_ThermalVias +QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm +QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm_ThermalVias +QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm +QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias +QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm_ThermalVias +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +32 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +27 +21 +Package_DFN_QFN +QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +40 +21 +Package_DFN_QFN +QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +35 +21 +Package_DFN_QFN +QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm +QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm_ThermalVias +QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +34 +25 +Package_DFN_QFN +QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm +QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +25 +Package_DFN_QFN +QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm_ThermalVias +QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm +QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm_ThermalVias +QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm +QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.15x2.15mm +QFN, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.15x2.15mm_ThermalVias +QFN, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm +QFN, 24 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm_ThermalVias +QFN, 24 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.75x2.75mm +QFN, 24 Pin (https://www.infineon.com/dgdl/Infineon-EZ-PD_BCR_Datasheet_USB_Type-C_Port_Controller_for_Power_Sinks-DataSheet-v03_00-EN.pdf?fileId=8ac78c8c7d0d8da4017d0ee7ce9d70ad), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.75x2.75mm_ThermalVias +QFN, 24 Pin (https://www.infineon.com/dgdl/Infineon-EZ-PD_BCR_Datasheet_USB_Type-C_Port_Controller_for_Power_Sinks-DataSheet-v03_00-EN.pdf?fileId=8ac78c8c7d0d8da4017d0ee7ce9d70ad), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +25 +Package_DFN_QFN +QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +44 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +51 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm +QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm_ThermalVias +QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm +QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +34 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm_ThermalVias +QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +67 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.25x3.25mm +QFN, 24 Pin (https://semtech.my.salesforce.com/sfc/p/#E0000000JelG/a/44000000MDkO/lWPNMeJClEs8Zvyu7AlDlKSyZqhYdVpQzFLVfUp.EXs), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.25x3.25mm_ThermalVias +QFN, 24 Pin (https://semtech.my.salesforce.com/sfc/p/#E0000000JelG/a/44000000MDkO/lWPNMeJClEs8Zvyu7AlDlKSyZqhYdVpQzFLVfUp.EXs), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +51 +25 +Package_DFN_QFN +QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +29 +Package_DFN_QFN +QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +53 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm +QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm_ThermalVias +QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm +QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm_ThermalVias +QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +35 +29 +Package_DFN_QFN +QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +48 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +QFN, 28 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/TMC2202_TMC2208_TMC2224_datasheet_rev1.14.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +QFN, 28 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/TMC2202_TMC2208_TMC2224_datasheet_rev1.14.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +71 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +55 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.75x3.75mm +QFN, 28 Pin (https://www.cmlmicro.com/wp-content/uploads/2017/10/CMX901_ds.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.75x3.75mm_ThermalVias +QFN, 28 Pin (https://www.cmlmicro.com/wp-content/uploads/2017/10/CMX901_ds.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +29 +Package_DFN_QFN +QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +41 +29 +Package_DFN_QFN +QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +62 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm +QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm_ThermalVias +QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +71 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +71 +29 +Package_DFN_QFN +QFN-28_4x4mm_P0.5mm +QFN, 28 Pin (http://www.st.com/resource/en/datasheet/stm32f031k6.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +28 +28 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +47 +33 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm +QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm_ThermalVias +QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm +QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias +QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm +QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm_ThermalVias +QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm +QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm_ThermalVias +QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm +QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm_ThermalVias +QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm +QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm_ThermalVias +QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm +QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm_ThermalVias +QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +33 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm +QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +46 +37 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm_ThermalVias +QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +56 +37 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm +QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +37 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm_ThermalVias +QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +56 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm +QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +46 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm_ThermalVias +QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +63 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm +QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +46 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm_ThermalVias +QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +63 +37 +Package_DFN_QFN +QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +47 +39 +Package_DFN_QFN +QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm_ThermalVias +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +56 +39 +Package_DFN_QFN +QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +54 +39 +Package_DFN_QFN +QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm_ThermalVias +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +63 +39 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +50 +41 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm_ThermalVias +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +67 +41 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm +QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +50 +41 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias +QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +67 +41 +Package_DFN_QFN +QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +57 +41 +Package_DFN_QFN +QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +83 +41 +Package_DFN_QFN +QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm +QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +55 +43 +Package_DFN_QFN +QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm_ThermalVias +QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +76 +43 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +61 +45 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm_ThermalVias +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +87 +45 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +61 +45 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +87 +45 +Package_DFN_QFN +QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +70 +45 +Package_DFN_QFN +QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm_ThermalVias +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +45 +Package_DFN_QFN +QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm +44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN]; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf +QFN 0.65 +0 +49 +45 +Package_DFN_QFN +QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm_ThermalVias +44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN] with thermal vias; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf +QFN 0.65 +0 +55 +45 +Package_DFN_QFN +QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=47), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm_ThermalVias +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=47), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm +QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm_ThermalVias +QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm_ThermalVias +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm +QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm_ThermalVias +QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm +QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm_ThermalVias +QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=69), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_ThermalVias +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=69), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm_ThermalVias +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm +QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm_ThermalVias +QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm +QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm_ThermalVias +QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm +QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm_ThermalVias +QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm +QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +49 +Package_DFN_QFN +QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm_ThermalVias +QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +49 +Package_DFN_QFN +QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm +QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +53 +Package_DFN_QFN +QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm_ThermalVias +QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +104 +53 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm +QFN, 56 Pin (https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#page=634), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +61 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm_ThermalVias +QFN, 56 Pin (https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#page=634), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +66 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP4x4mm +QFN, 56 Pin (https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf#page=41), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +66 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP4x4mm_ThermalVias +QFN, 56 Pin (https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf#page=41), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +71 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm +QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm_ThermalVias +QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm_ThermalVias +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm +QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm_ThermalVias +QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm_ThermalVias_TopTented +QFN, 56 Pin top tented version (manually modified). For information see: http://www.cypress.com/file/138911/download +QFN DFN_QFN +0 +115 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm +QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm_ThermalVias +QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.9x5.9mm +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001734B.pdf#page=50), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.9x5.9mm_ThermalVias +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001734B.pdf#page=50), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP6.1x6.1mm +QFN, 56 Pin (http://intantech.com/files/Intan_RHD2000_series_datasheet.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP6.1x6.1mm_ThermalVias +QFN, 56 Pin (http://intantech.com/files/Intan_RHD2000_series_datasheet.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.4x3.4mm +QFN, 64 Pin (www.intel.com/content/www/us/en/ethernet-controllers/i210-ethernet-controller-datasheet.html), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.4x3.4mm_ThermalVias +QFN, 64 Pin (www.intel.com/content/www/us/en/ethernet-controllers/i210-ethernet-controller-datasheet.html), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +79 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm +QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm_ThermalVias +QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +79 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.1x4.1mm +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/cp2108-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.1x4.1mm_ThermalVias +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/cp2108-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +79 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm +QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm_ThermalVias +QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.2x5.2mm +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/Si5345-44-42-D-DataSheet.pdf#page=51), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.2x5.2mm_ThermalVias +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/Si5345-44-42-D-DataSheet.pdf#page=51), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm +QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm_ThermalVias +QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm_ThermalVias +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +101 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +151 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm +QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias +QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.25x7.25mm +64-Lead Plastic Quad Flat No-Lead Package, 9x9mm Body (see Atmel Appnote 8826) +QFN 0.5 +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.35x7.35mm +64-Lead Plastic Quad Flat, No Lead Package (MR) - 9x9x0.9 mm Body [QFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN 0.5 +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +101 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +151 +65 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm +QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +85 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm_ThermalVias +QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP6.4x6.4mm +QFN, 68 Pin (https://www.st.com/resource/en/datasheet/stm32h725ze.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +85 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP6.4x6.4mm_ThermalVias +QFN, 68 Pin (https://www.st.com/resource/en/datasheet/stm32h725ze.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +69 +Package_DFN_QFN +QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm +QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +82 +73 +Package_DFN_QFN +QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm_ThermalVias +QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +135 +73 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm +QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +86 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm_ThermalVias +QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +103 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP5.81x6.31mm +QFN, 76 Pin (https://ftdichip.com/wp-content/uploads/2020/07/DS_FT600Q-FT601Q-IC-Datasheet.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +78 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP5.81x6.31mm_ThermalVias +QFN, 76 Pin (https://ftdichip.com/wp-content/uploads/2020/07/DS_FT600Q-FT601Q-IC-Datasheet.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +103 +77 +Package_DFN_QFN +Qorvo_DFN-8-1EP_2x2mm_P0.5mm +DFN 8 2x2mm, 0.5mm http://www.qorvo.com/products/d/da000896 +DFN 0.5 Qorvo 2x2mm +0 +9 +9 +Package_DFN_QFN +Qorvo_TQFN66-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm +Qorvo TQFN66, 48 Pin (https://www.qorvo.com/products/d/da006847), generated with kicad-footprint-generator ipc_noLead_generator.py +Qorvo TQFN66 NoLead +0 +58 +49 +Package_DFN_QFN +Qorvo_TQFN66-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm_ThermalVias +Qorvo TQFN66, 48 Pin (https://www.qorvo.com/products/d/da006847), generated with kicad-footprint-generator ipc_noLead_generator.py +Qorvo TQFN66 NoLead +0 +75 +49 +Package_DFN_QFN +ROHM_DFN0604-3 +DFN package size 0604 3 pins +DFN package size 0604 3 pins +0 +3 +3 +Package_DFN_QFN +ST_UFDFPN-12-1EP_3x3mm_P0.5mm_EP1.4x2.55mm +ST UFDFPN, 12 Pin (https://www.st.com/resource/en/datasheet/st25dv04k.pdf#page=152), generated with kicad-footprint-generator ipc_noLead_generator.py +ST UFDFPN NoLead +0 +14 +13 +Package_DFN_QFN +ST_UFQFPN-20_3x3mm_P0.5mm +UFQFPN 20-lead, 3 x 3 mm, 0.5 mm pitch, ultra thin fine pitch quad flat package (http://www.st.com/resource/en/datasheet/stm8s003f3.pdf) +UFQFPN 0.5 +0 +20 +20 +Package_DFN_QFN +ST_UQFN-6L_1.5x1.7mm_P0.5mm +ST UQFN 6 pin 0.5mm Pitch http://www.st.com/resource/en/datasheet/ecmf02-2amx6.pdf +UQFN DFN 0.5 ST +0 +6 +6 +Package_DFN_QFN +SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm +20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf +QFN 0.5 +0 +25 +21 +Package_DFN_QFN +SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias +20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads and thermal vias; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf +QFN 0.5 +0 +31 +21 +Package_DFN_QFN +TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm +TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +11 +7 +Package_DFN_QFN +TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm_ThermalVias +TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +18 +7 +Package_DFN_QFN +TDFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.2mm +TDFN, 8 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0168.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm +TDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/MCP6V66-Family-Data-Sheet-DS20006266A.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.4x1.4mm +TDFN, 8 Pin (http://ww1.microchip.com/downloads/en/devicedoc/20005514a.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm +8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf) +TDFN DFN 0.5mm +0 +12 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm_ThermalVias +8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf) +TDFN DFN 0.5mm +0 +17 +9 +Package_DFN_QFN +TDFN-8_1.4x1.6mm_P0.4mm +TDFN, 8 Pin (https://www.silabs.com/documents/public/data-sheets/si7210-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +8 +8 +Package_DFN_QFN +TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm +TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +11 +Package_DFN_QFN +TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm_ThermalVias +TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +16 +11 +Package_DFN_QFN +TDFN-12-1EP_3x3mm_P0.4mm_EP1.7x2.45mm +TDFN, 12 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-tdfn-12pin-l123x3c), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +25 +13 +Package_DFN_QFN +TDFN-12-1EP_3x3mm_P0.4mm_EP1.7x2.45mm_ThermalVias +TDFN, 12 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-tdfn-12pin-l123x3c), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +32 +13 +Package_DFN_QFN +TDFN-12_2x3mm_P0.5mm +TDFN, 12 Pads, No exposed, http://www.st.com/resource/en/datasheet/stm6600.pdf +DFN +0 +12 +12 +Package_DFN_QFN +TDFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm +TDFN, 14 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0137.PDF (T1433-2C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +19 +15 +Package_DFN_QFN +TDFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm_ThermalVias +TDFN, 14 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0137.PDF (T1433-2C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +26 +15 +Package_DFN_QFN +TQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +TQFN, 16 Pin (https://www.diodes.com/assets/Datasheets/PI6C5946002.pdf#page=12), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead Pericom-TQFN-16-ZH Analog-CP-16-22 +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +26 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +26 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +31 +17 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +30 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-5C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-5C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.9x2.9mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100172.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.9x2.9mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100172.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +TQFN, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +29 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +39 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +TQFN, 24 Pin (http://pdfserv.maxim-ic.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +29 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +TQFN, 24 Pin (http://pdfserv.maxim-ic.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +39 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack +TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +29 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack_ThermalVias +TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +39 +25 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +33 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm_ThermalVias +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +38 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +33 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm_ThermalVias +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +43 +29 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +42 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +47 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +47 +33 +Package_DFN_QFN +TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm +TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +45 +41 +Package_DFN_QFN +TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm_ThermalVias +TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +55 +41 +Package_DFN_QFN +TQFN-44-1EP_7x7mm_P0.5mm_EP4.7x4.7mm +TQFN, 44 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0144.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead T4477+2 T4477+2C T4477+3 +0 +54 +45 +Package_DFN_QFN +TQFN-44-1EP_7x7mm_P0.5mm_EP4.7x4.7mm_ThermalVias +TQFN, 44 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0144.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead T4477+2 T4477+2C T4477+3 +0 +71 +45 +Package_DFN_QFN +TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm +TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +58 +49 +Package_DFN_QFN +TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm_ThermalVias +TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +75 +49 +Package_DFN_QFN +Texas_B3QFN-14-1EP_5x5.5mm_P0.65mm +Texas instruments QFN Package, datasheet: https://www.ti.com/lit/ds/symlink/tpsm53602.pdf +Texas instruments QFN +0 +15 +15 +Package_DFN_QFN +Texas_B3QFN-14-1EP_5x5.5mm_P0.65mm_ThermalVia +Texas instruments QFN Package, datasheet: https://www.ti.com/lit/ds/symlink/tpsm53602.pdf +Texas instruments QFN +0 +34 +15 +Package_DFN_QFN +Texas_DRB0008A +DFN-8, 3x3x1mm, http://www.ti.com/lit/ds/symlink/ucc24610.pdf +DRB0008A +0 +23 +9 +Package_DFN_QFN +Texas_MOF0009A +Texas Instruments, QFM MOF0009A, 6x8x2mm (http://www.ti.com/lit/ml/mpsi063a/mpsi063a.pdf) +ti qfm mof0009a +0 +24 +9 +Package_DFN_QFN +Texas_QFN-41_10x16mm +QFN, 41 Pin (http://www.ti.com/lit/ml/mpqf506/mpqf506.pdf) +QFN DFN_QFN +0 +65 +41 +Package_DFN_QFN +Texas_R-PUQFN-N10 +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=MPQF186&fileType=pdf +Texas_R-PUQFN-N10 +0 +10 +10 +Package_DFN_QFN +Texas_R-PUQFN-N12 +Texas_R-PUQFN-N12 http://www.ti.com/lit/ds/symlink/txb0104.pdf +Texas_R-PUQFN-N12 +0 +13 +12 +Package_DFN_QFN +Texas_RGC0064B_VQFN-64-1EP_9x9mm_P0.5mm_EP4.25x4.25mm +Texas RGC0064B VQFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=122), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +69 +65 +Package_DFN_QFN +Texas_RGC0064B_VQFN-64-1EP_9x9mm_P0.5mm_EP4.25x4.25mm_ThermalVias +Texas RGC0064B VQFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=122), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +127 +65 +Package_DFN_QFN +Texas_RGE0024C_VQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +Texas RGE0024C VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RGE0024C_VQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias +Texas RGE0024C VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_RGE0024H_VQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +Texas RGE0024H VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RGE0024H_VQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +Texas RGE0024H VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_RGP0020D_VQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +Texas RGP0020D VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGP0020D_VQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +Texas RGP0020D VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +35 +21 +Package_DFN_QFN +Texas_RGP0020H_VQFN-20-1EP_4x4mm_P0.5mm_EP2.4x2.4mm +Texas RGP0020H VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGP0020H_VQFN-20-1EP_4x4mm_P0.5mm_EP2.4x2.4mm_ThermalVias +Texas RGP0020H VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +35 +21 +Package_DFN_QFN +Texas_RGV0016A_VQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +Texas RGV0016A VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RGV0016A_VQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +Texas RGV0016A VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RGW0020A_VQFN-20-1EP_5x5mm_P0.65mm_EP3.15x3.15mm +Texas RGW0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps7a47.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGW0020A_VQFN-20-1EP_5x5mm_P0.65mm_EP3.15x3.15mm_ThermalVias +Texas RGW0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps7a47.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +47 +21 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N16_EP2.05x2.55mm +QFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts5v330.pdf#page=28) +QFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N16_EP2.05x2.55mm_ThermalVias +QFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts5v330.pdf#page=28) +QFN NoLead +0 +27 +18 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N20_EP2.05x3.05mm +QFN, 20 Pin, RGY0020A (https://www.ti.com/lit/ds/symlink/txb0108.pdf#page=33) +QFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N20_EP2.05x3.05mm_ThermalVias +QFN, 20 Pin, RGY0020A (https://www.ti.com/lit/ds/symlink/txb0108.pdf#page=33) +QFN NoLead +0 +29 +21 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40) +QFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm_ThermalVias +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40) +QFN NoLead +0 +36 +25 +Package_DFN_QFN +Texas_RGZ0048A_VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +Texas RGZ0048A VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=113), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +65 +49 +Package_DFN_QFN +Texas_RGZ0048A_VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +Texas RGZ0048A VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=113), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +111 +49 +Package_DFN_QFN +Texas_RHA0040B_VQFN-40-1EP_6x6mm_P0.5mm_EP4.15x4.15mm +Texas RHA0040B VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=72 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +50 +41 +Package_DFN_QFN +Texas_RHA0040B_VQFN-40-1EP_6x6mm_P0.5mm_EP4.15x4.15mm_ThermalVias +Texas RHA0040B VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=72 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +83 +41 +Package_DFN_QFN +Texas_RHA0040D_VQFN-40-1EP_6x6mm_P0.5mm_EP2.9x2.9mm +Texas RHA0040D VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +45 +41 +Package_DFN_QFN +Texas_RHA0040D_VQFN-40-1EP_6x6mm_P0.5mm_EP2.9x2.9mm_ThermalVias +Texas RHA0040D VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +55 +41 +Package_DFN_QFN +Texas_RHA0040E_VQFN-40-1EP_6x6mm_P0.5mm_EP3.52x2.62mm +Texas RHA0040E VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=57 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +47 +41 +Package_DFN_QFN +Texas_RHA0040E_VQFN-40-1EP_6x6mm_P0.5mm_EP3.52x2.62mm_ThermalVias +Texas RHA0040E VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=57 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +60 +41 +Package_DFN_QFN +Texas_RHA_VQFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm +Texas RHA VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +50 +41 +Package_DFN_QFN +Texas_RHA_VQFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias +Texas RHA VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +83 +41 +Package_DFN_QFN +Texas_RHB0032E_VQFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm +Texas RHB0032E VQFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +42 +33 +Package_DFN_QFN +Texas_RHB0032E_VQFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm_ThermalVias +Texas RHB0032E VQFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +59 +33 +Package_DFN_QFN +Texas_RHH0036C_VQFN-36-1EP_6x6mm_P0.5mm_EP4.4x4.4mm +Texas RHH0036C VQFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +46 +37 +Package_DFN_QFN +Texas_RHH0036C_VQFN-36-1EP_6x6mm_P0.5mm_EP4.4x4.4mm_ThermalVias +Texas RHH0036C VQFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +79 +37 +Package_DFN_QFN +Texas_RJE0020A_VQFN-20-1EP_3x3mm_P0.45mm_EP0.675x0.76mm +Texas RJE0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps51396a.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +22 +21 +Package_DFN_QFN +Texas_RJE0020A_VQFN-20-1EP_3x3mm_P0.45mm_EP0.675x0.76mm_ThermalVias +Texas RJE0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps51396a.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +24 +21 +Package_DFN_QFN +Texas_RMG0012A_WQFN-12_1.8x1.8mm_P0.4mm +Texas RMG0012A WQFN, 12 Pin (https://www.ti.com/lit/ds/symlink/tmux131.pdf#page=18), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +12 +12 +Package_DFN_QFN +Texas_RNN0018A +Texas Instruments, VQFN-HR RNN0018A (http://www.ti.com/lit/ds/symlink/tps568215.pdf) +ti vqfn-hr rnn0018a +0 +26 +18 +Package_DFN_QFN +Texas_RSA_VQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm +Texas RSA VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +26 +17 +Package_DFN_QFN +Texas_RSA_VQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias +Texas RSA VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RSN_WQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm +Texas RSN WQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +37 +33 +Package_DFN_QFN +Texas_RSN_WQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm_ThermalVias +Texas RSN WQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +47 +33 +Package_DFN_QFN +Texas_RTE0016D_WQFN-16-1EP_3x3mm_P0.5mm_EP0.8x0.8mm +Texas RTE0016D WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/dac80504.pdf#page=47), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RTE0016D_WQFN-16-1EP_3x3mm_P0.5mm_EP0.8x0.8mm_ThermalVias +Texas RTE0016D WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/dac80504.pdf#page=47), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +20 +17 +Package_DFN_QFN +Texas_RTE_WQFN-16-1EP_3x3mm_P0.5mm_EP1.2x0.8mm +Texas RTE WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tps43060.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RTE_WQFN-16-1EP_3x3mm_P0.5mm_EP1.2x0.8mm_ThermalVias +Texas RTE WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tps43060.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +23 +17 +Package_DFN_QFN +Texas_RTW_WQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +Texas RTW WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RTW_WQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +Texas RTW WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_RTY_WQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +Texas RTY WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=36 MO-220 variation VGGC), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RTY_WQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +Texas RTY WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=36 MO-220 variation VGGC), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RUM0016A_WQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm +Texas RUM0016A WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RUM0016A_WQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias +Texas RUM0016A WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RUN0010A_WQFN-10_2x2mm_P0.5mm +Texas RUN0010A WQFN, 10 Pin (https://www.ti.com/lit/ds/symlink/tmp461.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +10 +10 +Package_DFN_QFN +Texas_RVA_VQFN-16-1EP_3.5x3.5mm_P0.5mm_EP2.14x2.14mm +Texas RVA VQFN, 16 Pin (https://www.ti.com/lit/pdf/MPQF232), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RVA_VQFN-16-1EP_3.5x3.5mm_P0.5mm_EP2.14x2.14mm_ThermalVias +Texas RVA VQFN, 16 Pin (https://www.ti.com/lit/pdf/MPQF232), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +26 +17 +Package_DFN_QFN +Texas_RVE0028A_VQFN-28-1EP_3.5x4.5mm_P0.4mm_EP2.1x3.1mm +Texas RVE0028A VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +33 +29 +Package_DFN_QFN +Texas_RVE0028A_VQFN-28-1EP_3.5x4.5mm_P0.4mm_EP2.1x3.1mm_ThermalVias +Texas RVE0028A VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +43 +29 +Package_DFN_QFN +Texas_RWH0032A +Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf) +ti rwh0032a +0 +71 +33 +Package_DFN_QFN +Texas_RWH0032A_ThermalVias +Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf) +ti rwh0032a +0 +94 +33 +Package_DFN_QFN +Texas_RWU0007A_VQFN-7_2x2mm_P0.5mm +Texas RWU0007A VQFN, 2x2mm, 7 Pin (https://www.ti.com/lit/ds/symlink/tps61022.pdf) +Texas VQFN NoLead +0 +13 +7 +Package_DFN_QFN +Texas_S-PDSO-N10_EP1.2x2mm +DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +Texas_S-PDSO-N10_EP1.2x2mm_ThermalVias +DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +22 +11 +Package_DFN_QFN +Texas_S-PVQFN-N14 +Texas_S-PVQFN-N14 http://www.ti.com/lit/ds/symlink/txb0104.pdf +Texas_S-PVQFN-N14_4.3x4.3_Pitch0.5mm_ThermalPad +0 +19 +15 +Package_DFN_QFN +Texas_S-PVQFN-N14_ThermalVias +Texas_S-PVQFN-N14_ThermalVias http://www.ti.com/lit/ds/symlink/txb0104.pdf +Texas_S-PVQFN-N14_ThermalVias +0 +24 +15 +Package_DFN_QFN +Texas_S-PWQFN-N20 +20-Pin Plastic Quad Flatpack No-Lead Package, Body 3.0x3.0x0.8mm, Texas Instruments (http://www.ti.com/lit/ds/symlink/tps22993.pdf) +QFN 0.4 +0 +24 +20 +Package_DFN_QFN +Texas_S-PWQFN-N100_EP5.5x5.5mm +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf +MultiRow QFN +0 +114 +105 +Package_DFN_QFN +Texas_S-PWQFN-N100_EP5.5x5.5mm_ThermalVias +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf +MultiRow QFN +0 +131 +105 +Package_DFN_QFN +Texas_S-PX2QFN-14 +Texas QFN, 14 Pin (http://www.ti.com/lit/ds/symlink/tlv9004.pdf#page=64), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas QFN NoLead +0 +14 +14 +Package_DFN_QFN +Texas_UQFN-10_1.5x2mm_P0.5mm +Texas RSE0010A UQFN, 10 Pin (https://www.ti.com/lit/ml/mpqf186d/mpqf186d.pdf) +Texas RSE0010 UQFN NoLead +0 +10 +10 +Package_DFN_QFN +Texas_VQFN-HR-12_2x2.5mm_P0.5mm +Texas VQFN-HR, 12 Pin, http://www.ti.com/lit/ml/mpqf508/mpqf508.pdf +RUX0012A Texas VQFN-HR NoLead +0 +12 +12 +Package_DFN_QFN +Texas_VQFN-HR-12_2x2.5mm_P0.5mm_ThermalVias +Texas VQFN-HR, 12 Pin, http://www.ti.com/lit/ml/mpqf508/mpqf508.pdf +RUX0012A Texas VQFN-HR NoLead +0 +16 +12 +Package_DFN_QFN +Texas_VQFN-HR-20_3x2.5mm_P0.5mm_RQQ0011A +Texas VQFN-HR, 11 Pin, https://www.ti.com/lit/ml/mpqf579/mpqf579.pdf +RQQ0011A +0 +15 +11 +Package_DFN_QFN +Texas_VQFN-RHL-20 +http://www.ti.com/lit/ds/symlink/bq51050b.pdf +RHL0020A +0 +33 +21 +Package_DFN_QFN +Texas_VQFN-RHL-20_ThermalVias +http://www.ti.com/lit/ds/symlink/bq51050b.pdf +RHL0020A +0 +41 +21 +Package_DFN_QFN +Texas_VQFN-RNR0011A-11 +RNR0011A, VQFN-11 (https://www.ti.com/lit/ds/symlink/tps61089.pdf#Page=27) +TI RNR0011A +0 +20 +11 +Package_DFN_QFN +Texas_WQFN-MR-100_3x3-DapStencil +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf +MultiRow QFN +0 +113 +105 +Package_DFN_QFN +Texas_WQFN-MR-100_ThermalVias_3x3-DapStencil +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf +MultiRow QFN +0 +126 +105 +Package_DFN_QFN +Texas_X2QFN-12_1.6x1.6mm_P0.4mm +Texas X2QFN, 12 Pin (http://www.ti.com/lit/ml/mpqf391c/mpqf391c.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas X2QFN NoLead +0 +12 +12 +Package_DFN_QFN +Texas_X2QFN-RUE-12_1.4x2mm_P0.4mm +Texas X2QFN-RUE, 12 Pin (https://www.ti.com/lit/ml/mpqf214b/mpqf214b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas X2QFN-RUE NoLead +0 +12 +12 +Package_DFN_QFN +UDC-QFN-20-4EP_3x4mm_P0.5mm_EP0.41x0.25mm +UDC QFN, 20 Pin, Exposed Pad Variation AB (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081536_B_UDC20(AB).pdf), modifed from generated QFN-20-1EP_3x4mm_P0.5 +QFN NoLead +0 +24 +24 +Package_DFN_QFN +UDFN-4-1EP_1x1mm_P0.65mm_EP0.48x0.48mm +UDFN-4_1x1mm_P0.65mm, http://ww1.microchip.com/downloads/en/DeviceDoc/MIC550x-300mA-Single-Output-LDO-in-Small-Packages-DS20006006A.pdf +UDFN-4_1x1mm_P0.65mm +0 +5 +5 +Package_DFN_QFN +UDFN-9_1.0x3.8mm_P0.5mm +9-pin UDFN package, 1.0x3.8mm, (Ref: https://katalog.we-online.de/pbs/datasheet/824014881.pdf) +UDFN SMD +0 +9 +9 +Package_DFN_QFN +UDFN-10_1.35x2.6mm_P0.5mm +http://www.st.com/content/ccc/resource/technical/document/datasheet/f2/11/8a/ed/40/31/40/56/DM00088292.pdf/files/DM00088292.pdf/jcr:content/translations/en.DM00088292.pdf +UDFN 0.5 uQFN +0 +10 +10 +Package_DFN_QFN +UFQFPN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm +UFQFPN, 32 Pin (https://www.st.com/resource/en/datasheet/stm32g071k8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UFQFPN NoLead +0 +37 +33 +Package_DFN_QFN +UFQFPN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias +UFQFPN, 32 Pin (https://www.st.com/resource/en/datasheet/stm32g071k8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UFQFPN NoLead +0 +47 +33 +Package_DFN_QFN +UQFN-10_1.3x1.8mm_P0.4mm +UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 9)), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +10 +10 +Package_DFN_QFN +UQFN-10_1.4x1.8mm_P0.4mm +UQFN 10pin, https://www.onsemi.com/pub/Collateral/488AT.PDF +UQFN-10_1.4x1.8mm_P0.4mm +0 +10 +10 +Package_DFN_QFN +UQFN-10_1.6x2.1mm_P0.5mm +UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 12)), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +10 +10 +Package_DFN_QFN +UQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm +16-Lead Ultra Thin Quad Flat, No Lead Package (UC) - 3x3x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN 0.5 +0 +21 +17 +Package_DFN_QFN +UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm +UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +21 +17 +Package_DFN_QFN +UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias +UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +31 +17 +Package_DFN_QFN +UQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm +16-Lead Ultra Thin Plastic Quad Flat, No Lead Package (JQ) - 4x4x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN 0.65 +0 +21 +17 +Package_DFN_QFN +UQFN-16_1.8x2.6mm_P0.4mm +UQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts3a5017.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +16 +16 +Package_DFN_QFN +UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +25 +21 +Package_DFN_QFN +UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm_ThermalVias +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +30 +21 +Package_DFN_QFN +UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +25 +21 +Package_DFN_QFN +UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +35 +21 +Package_DFN_QFN +UQFN-20_3x3mm_P0.4mm +UQFN, 20 Pin (https://resurgentsemi.com/wp-content/uploads/2018/09/MPR121_rev5-Resurgent.pdf?d453f8&d453f8), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +20 +20 +Package_DFN_QFN +UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm +UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +33 +29 +Package_DFN_QFN +UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm_ThermalVias +UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +43 +29 +Package_DFN_QFN +UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm +UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +50 +41 +Package_DFN_QFN +UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias +UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +67 +41 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm +UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +58 +49 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm_ThermalVias +UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +75 +49 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm +UQFN, 48 Pin (https://gitlab.com/kicad/libraries/kicad-symbols/-/merge_requests/1189#note_423250741), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +53 +49 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm_ThermalVias +UQFN, 48 Pin (https://gitlab.com/kicad/libraries/kicad-symbols/-/merge_requests/1189#note_423250741), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +75 +49 +Package_DFN_QFN +VDFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.7mm +8-Lead Very Thin Dual Flatpack No-Lead (LZ) - 2x3x0.9 mm Body [VDFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +11 +9 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.1x1.1mm +VQFN, 16 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/16L_VQFN-WFS_3x3mm_4MX_C04-00508a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +18 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.1x1.1mm_ThermalVias +VQFN, 16 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/16L_VQFN-WFS_3x3mm_4MX_C04-00508a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +23 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm +VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias +VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +25 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +30 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +25 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm_ThermalVias +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +30 +21 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +VQFN, 24 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/product-documents/package-drawings/24L-VQFN%E2%80%934x4x0.9mm-MJ-C04-00143b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +29 +25 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +VQFN, 24 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/product-documents/package-drawings/24L-VQFN%E2%80%934x4x0.9mm-MJ-C04-00143b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +39 +25 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +34 +25 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +39 +25 +Package_DFN_QFN +VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm +VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +33 +29 +Package_DFN_QFN +VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias +VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +43 +29 +Package_DFN_QFN +VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm +VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +35 +29 +Package_DFN_QFN +VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm_ThermalVias +VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +48 +29 +Package_DFN_QFN +VQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm +VQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/tps25750.pdf#page=78), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm_ThermalVias +VQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/tps25750.pdf#page=78), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm +VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias +VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.15x3.15mm +VQFN, 32 Pin (https://www.ti.com/lit/ds/slvs589d/slvs589d.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.15x3.15mm_ThermalVias +VQFN, 32 Pin (https://www.ti.com/lit/ds/slvs589d/slvs589d.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +Package_DFN_QFN +VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm +VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +53 +47 +Package_DFN_QFN +VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm_ThermalVias +VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +66 +47 +Package_DFN_QFN +VQFN-48-1EP_6x6mm_P0.4mm_EP4.1x4.1mm +VQFN, 48 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/48L_VQFN_6x6mm_6LX_C04-00494a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +58 +49 +Package_DFN_QFN +VQFN-48-1EP_6x6mm_P0.4mm_EP4.1x4.1mm_ThermalVias +VQFN, 48 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/48L_VQFN_6x6mm_6LX_C04-00494a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +75 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc430f5137.pdf#page=128), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +58 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm_ThermalVias +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc430f5137.pdf#page=128), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +75 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +53 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +79 +49 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm +VQFN, 64 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/PIC16LF19195-6-7-Data-Sheet-40001873D.pdf#page=718), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +74 +65 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm_ThermalVias +VQFN, 64 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/PIC16LF19195-6-7-Data-Sheet-40001873D.pdf#page=718), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +100 +65 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm +VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_QFN_9x9_MR_C04-00149e.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +74 +65 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias +VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_QFN_9x9_MR_C04-00149e.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +91 +65 +Package_DFN_QFN +Vishay_PowerPAK_MLP44-24L +PowerPAK PowerPAK MLP44-24L (https://www.vishay.com/docs/78231/mlp44-24l.pdf) +powerpak mlp44-24l +0 +28 +28 +Package_DFN_QFN +Vishay_PowerPAK_MLP44-24L_ThermalVias +PowerPAK PowerPAK MLP44-24L (https://www.vishay.com/docs/78231/mlp44-24l.pdf) +powerpak mlp44-24l +0 +35 +28 +Package_DFN_QFN +W-PDFN-8-1EP_6x5mm_P1.27mm_EP3x3mm +W-PDFN, 8 Pin (https://media-www.micron.com/-/media/client/global/documents/products/data-sheet/nor-flash/serial-nor/mt25q/die-rev-a/mt25q_qljs_u_256_aba_0.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +W-PDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-6-2EP_4.0x2.6mm_P0.65mm +WDFN, 6 pin, 4.0x2.6, 0.65P; Two exposed pads, (https://www.onsemi.com/pub/Collateral/511BZ.PDF) +DFN 0.65P dual flag +0 +8 +8 +Package_DFN_QFN +WDFN-8-1EP_2x2.2mm_P0.5mm_EP0.80x0.54 +https://www.onsemi.com/pub/Collateral/511BN.PDF +WDFN-8 1EP 2.2X2.0 0.5P +0 +9 +9 +Package_DFN_QFN +WDFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.2mm +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20005474E.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MNY_C04-0129E-MNY.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8-1EP_4x3mm_P0.65mm_EP2.4x1.8mm +WDFN, 8 Pin (https://www.onsemi.com/pub/Collateral/509AF.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8-1EP_4x3mm_P0.65mm_EP2.4x1.8mm_ThermalVias +WDFN, 8 Pin (https://www.onsemi.com/pub/Collateral/509AF.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +20 +9 +Package_DFN_QFN +WDFN-8-1EP_6x5mm_P1.27mm_EP3.4x4mm +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_WDFN_5x6mm_MF_C04210B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8-1EP_8x6mm_P1.27mm_EP6x4.8mm +WDFN, 8 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/8L_WDFN_6x8mm_MN_C04172A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead Microchip-8L-WDFN-6x8mm-MN-C04172A +0 +21 +9 +Package_DFN_QFN +WDFN-8-1EP_8x6mm_P1.27mm_EP6x4.8mm_ThermalVias +WDFN, 8 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/8L_WDFN_6x8mm_MN_C04172A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead Microchip-8L-WDFN-6x8mm-MN-C04172A +0 +42 +9 +Package_DFN_QFN +WDFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P; No exposed pad (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF) +DFN 0.5 +0 +8 +8 +Package_DFN_QFN +WDFN-10-1EP_3x3mm_P0.5mm_EP1.8x2.5mm +WDFN, 10 Pin (https://www.onsemi.com/pdf/datasheet/nis5420-d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +15 +11 +Package_DFN_QFN +WDFN-10-1EP_3x3mm_P0.5mm_EP1.8x2.5mm_ThermalVias +WDFN, 10 Pin (https://www.onsemi.com/pdf/datasheet/nis5420-d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +22 +11 +Package_DFN_QFN +WDFN-12-1EP_3x3mm_P0.45mm_EP1.7x2.5mm +WDFN, 12 Pin (https://www.diodes.com/assets/Datasheets/PAM2306.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +17 +13 +Package_DFN_QFN +WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm +WQFN, 14 Pin (https://www.onsemi.com/pub/Collateral/FUSB302B-D.PDF#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +19 +15 +Package_DFN_QFN +WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm_ThermalVias +WQFN, 14 Pin (https://www.onsemi.com/pub/Collateral/FUSB302B-D.PDF#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +24 +15 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tpa6132a2.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tpa6132a2.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +26 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tlv9064.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm_ThermalVias +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tlv9064.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +26 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm +WQFN, 16 Pin (https://www.onsemi.com/pub/Collateral/FUSB307B-D.PDF#page=56), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm_ThermalVias +WQFN, 16 Pin (https://www.onsemi.com/pub/Collateral/FUSB307B-D.PDF#page=56), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +26 +17 +Package_DFN_QFN +WQFN-16-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +31 +17 +Package_DFN_QFN +WQFN-20-1EP_2.5x4.5mm_P0.5mm_EP1x2.9mm +http://www.onsemi.com/pub/Collateral/510CD.PDF +WQFN-20 4.5mm 2.5mm 0.5mm +0 +24 +21 +Package_DFN_QFN +WQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm +WQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/ts3ds10224.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead Texas_RUK0020B +0 +25 +21 +Package_DFN_QFN +WQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias +WQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/ts3ds10224.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead Texas_RUK0020B +0 +30 +21 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/lm26480.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +29 +25 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/lm26480.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +39 +25 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/ts3a27518e.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +29 +25 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/ts3a27518e.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +39 +25 +Package_DFN_QFN +WQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +QFN, 32-Leads, Body 5x5x0.8mm, Pitch 0.5mm, Thermal Pad 3.1x3.1mm; (see Texas Instruments LM25119 http://www.ti.com/lit/ds/symlink/lm25119.pdf) +WQFN 0.5 +0 +37 +33 +Package_DFN_QFN +WQFN-42-1EP_3.5x9mm_P0.5mm_EP2.05x7.55mm +WQFN, 42 Pin (http://www.ti.com/lit/ds/symlink/ts3l501e.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +57 +43 +Package_DFN_QFN +WQFN-42-1EP_3.5x9mm_P0.5mm_EP2.05x7.55mm_ThermalVias +WQFN, 42 Pin (http://www.ti.com/lit/ds/symlink/ts3l501e.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +82 +43 +Package_DIP +CERDIP-8_W7.62mm_SideBrazed +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +8 +8 +Package_DIP +CERDIP-8_W7.62mm_SideBrazed_LongPads +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +8 +8 +Package_DIP +CERDIP-8_W7.62mm_SideBrazed_LongPads_Socket +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +8 +8 +Package_DIP +CERDIP-8_W7.62mm_SideBrazed_Socket +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +8 +8 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +14 +14 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed_LongPads +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +14 +14 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed_LongPads_Socket +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +14 +14 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed_Socket +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +14 +14 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +16 +16 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed_LongPads +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +16 +16 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed_LongPads_Socket +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +16 +16 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed_Socket +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +16 +16 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +18 +18 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed_LongPads +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +18 +18 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed_LongPads_Socket +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +18 +18 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed_Socket +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +18 +18 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +20 +20 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed_LongPads +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +20 +20 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed_LongPads_Socket +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +20 +20 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed_Socket +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +20 +20 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +22 +22 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed_LongPads +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +22 +22 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed_LongPads_Socket +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +22 +22 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed_Socket +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +22 +22 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +24 +24 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed_LongPads +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +24 +24 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed_LongPads_Socket +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +24 +24 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed_Socket +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +24 +24 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +28 +28 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed_LongPads +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +28 +28 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed_LongPads_Socket +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +28 +28 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed_Socket +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +28 +28 +Package_DIP +DIP-4_W7.62mm +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_LongPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_SMDSocket_SmallPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_Socket +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_Socket_LongPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +4 +4 +Package_DIP +DIP-4_W8.89mm_SMDSocket_LongPads +4-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +4 +4 +Package_DIP +DIP-4_W10.16mm +4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +4 +4 +Package_DIP +DIP-4_W10.16mm_LongPads +4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +4 +4 +Package_DIP +DIP-5-6_W7.62mm +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_LongPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_SMDSocket_SmallPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_Socket +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_Socket_LongPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +5 +5 +Package_DIP +DIP-5-6_W8.89mm_SMDSocket_LongPads +5-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +5 +5 +Package_DIP +DIP-5-6_W10.16mm +5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +5 +5 +Package_DIP +DIP-5-6_W10.16mm_LongPads +5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +5 +5 +Package_DIP +DIP-6_W7.62mm +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_LongPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_SMDSocket_SmallPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_Socket +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_Socket_LongPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +6 +6 +Package_DIP +DIP-6_W8.89mm_SMDSocket_LongPads +6-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +6 +6 +Package_DIP +DIP-6_W10.16mm +6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +6 +6 +Package_DIP +DIP-6_W10.16mm_LongPads +6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +6 +6 +Package_DIP +DIP-8-16_W7.62mm +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +DIP-8-16_W7.62mm_Socket +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +8 +8 +Package_DIP +DIP-8-16_W7.62mm_Socket_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +8 +8 +Package_DIP +DIP-8-N6_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 6 +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +DIP-8-N7_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 7 +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +DIP-8_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_LongPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_SMDSocket_SmallPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_Socket +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_Socket_LongPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +8 +8 +Package_DIP +DIP-8_W8.89mm_SMDSocket_LongPads +8-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +8 +8 +Package_DIP +DIP-8_W10.16mm +8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +8 +8 +Package_DIP +DIP-8_W10.16mm_LongPads +8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +8 +8 +Package_DIP +DIP-10_W7.62mm +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_LongPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_SMDSocket_SmallPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_Socket +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_Socket_LongPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +10 +10 +Package_DIP +DIP-10_W8.89mm_SMDSocket_LongPads +10-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +10 +10 +Package_DIP +DIP-10_W10.16mm +10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +10 +10 +Package_DIP +DIP-10_W10.16mm_LongPads +10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +10 +10 +Package_DIP +DIP-12_W7.62mm +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_LongPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_SMDSocket_SmallPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_Socket +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_Socket_LongPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +12 +12 +Package_DIP +DIP-12_W8.89mm_SMDSocket_LongPads +12-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +12 +12 +Package_DIP +DIP-12_W10.16mm +12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +12 +12 +Package_DIP +DIP-12_W10.16mm_LongPads +12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +12 +12 +Package_DIP +DIP-14_W7.62mm +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_LongPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_SMDSocket_SmallPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_Socket +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_Socket_LongPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +14 +14 +Package_DIP +DIP-14_W8.89mm_SMDSocket_LongPads +14-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +14 +14 +Package_DIP +DIP-14_W10.16mm +14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +14 +14 +Package_DIP +DIP-14_W10.16mm_LongPads +14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +14 +14 +Package_DIP +DIP-16_W7.62mm +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_SMDSocket_SmallPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_Socket +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_Socket_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +16 +16 +Package_DIP +DIP-16_W8.89mm_SMDSocket_LongPads +16-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +16 +16 +Package_DIP +DIP-16_W10.16mm +16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +16 +16 +Package_DIP +DIP-16_W10.16mm_LongPads +16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +16 +16 +Package_DIP +DIP-18_W7.62mm +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_LongPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_SMDSocket_SmallPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_Socket +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_Socket_LongPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +18 +18 +Package_DIP +DIP-18_W8.89mm_SMDSocket_LongPads +18-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +18 +18 +Package_DIP +DIP-20_W7.62mm +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_LongPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_SMDSocket_SmallPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_Socket +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_Socket_LongPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +20 +20 +Package_DIP +DIP-20_W8.89mm_SMDSocket_LongPads +20-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +20 +20 +Package_DIP +DIP-22_W7.62mm +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_LongPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_SMDSocket_SmallPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_Socket +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_Socket_LongPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +22 +22 +Package_DIP +DIP-22_W8.89mm_SMDSocket_LongPads +22-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +22 +22 +Package_DIP +DIP-22_W10.16mm +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_LongPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_SMDSocket_SmallPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_Socket +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_Socket_LongPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads +0 +22 +22 +Package_DIP +DIP-22_W11.43mm_SMDSocket_LongPads +22-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads +0 +22 +22 +Package_DIP +DIP-24_W7.62mm +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_LongPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_Socket +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +24 +24 +Package_DIP +DIP-24_W8.89mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +24 +24 +Package_DIP +DIP-24_W10.16mm +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_LongPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_Socket +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads +0 +24 +24 +Package_DIP +DIP-24_W11.43mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads +0 +24 +24 +Package_DIP +DIP-24_W15.24mm +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_LongPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_Socket +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +24 +24 +Package_DIP +DIP-24_W16.51mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +24 +24 +Package_DIP +DIP-28_W7.62mm +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_LongPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_SMDSocket_SmallPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_Socket +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_Socket_LongPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +28 +28 +Package_DIP +DIP-28_W8.89mm_SMDSocket_LongPads +28-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +28 +28 +Package_DIP +DIP-28_W15.24mm +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_LongPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_SMDSocket_SmallPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_Socket +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_Socket_LongPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +28 +28 +Package_DIP +DIP-28_W16.51mm_SMDSocket_LongPads +28-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +28 +28 +Package_DIP +DIP-32_W7.62mm +32-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +32 +32 +Package_DIP +DIP-32_W15.24mm +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_LongPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_SMDSocket_SmallPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_Socket +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_Socket_LongPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +32 +32 +Package_DIP +DIP-32_W16.51mm_SMDSocket_LongPads +32-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +32 +32 +Package_DIP +DIP-40_W15.24mm +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_LongPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_SMDSocket_SmallPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_Socket +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_Socket_LongPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +40 +40 +Package_DIP +DIP-40_W16.51mm_SMDSocket_LongPads +40-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +40 +40 +Package_DIP +DIP-40_W25.4mm +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_LongPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_SMDSocket_SmallPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_Socket +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_Socket_LongPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads +0 +40 +40 +Package_DIP +DIP-40_W26.67mm_SMDSocket_LongPads +40-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads +0 +40 +40 +Package_DIP +DIP-42_W15.24mm +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_LongPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_SMDSocket_SmallPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_Socket +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_Socket_LongPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +42 +42 +Package_DIP +DIP-42_W16.51mm_SMDSocket_LongPads +42-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +42 +42 +Package_DIP +DIP-48_W15.24mm +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_LongPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_SMDSocket_SmallPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_Socket +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_Socket_LongPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +48 +48 +Package_DIP +DIP-48_W16.51mm_SMDSocket_LongPads +48-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +48 +48 +Package_DIP +DIP-64_W15.24mm +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_LongPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_Socket +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +64 +64 +Package_DIP +DIP-64_W16.51mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +64 +64 +Package_DIP +DIP-64_W22.86mm +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils) +THT DIP DIL PDIP 2.54mm 22.86mm 900mil +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_LongPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), LongPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil LongPads +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil SMDSocket SmallPads +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_Socket +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket +THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket LongPads +0 +64 +64 +Package_DIP +DIP-64_W24.13mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 24.13 mm (950 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 24.13mm 950mil SMDSocket LongPads +0 +64 +64 +Package_DIP +DIP-64_W25.4mm +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_LongPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_Socket +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads +0 +64 +64 +Package_DIP +DIP-64_W26.67mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads +0 +64 +64 +Package_DIP +Fairchild_LSOP-8 +8-Lead, 300\" Wide, Surface Mount Package (https://www.fairchildsemi.com/package-drawings/ML/MLSOP08A.pdf) +LSOP 2.54mm 300mil +0 +8 +8 +Package_DIP +IXYS_Flatpak-8_6.3x9.7mm_P2.54mm +IXYS Flatpak, 8 Pin (https://www.littelfuse.com/media?resourcetype=datasheets&itemid=996c6e8f-cc1b-44f6-811e-251c6e004c56&filename=littelfuse-integrated-circuits-loc112-datasheet), generated with kicad-footprint-generator ipc_gullwing_generator.py +IXYS Flatpak DIP +0 +8 +8 +Package_DIP +IXYS_SMD-8_6.3x9.7mm_P2.54mm +IXYS Flatpak, 8 Pin (https://www.littelfuse.com/media?resourcetype=datasheets&itemid=996c6e8f-cc1b-44f6-811e-251c6e004c56&filename=littelfuse-integrated-circuits-loc112-datasheet), generated with kicad-footprint-generator ipc_gullwing_generator.py +IXYS Flatpak DIP +0 +8 +8 +Package_DIP +PowerIntegrations_PDIP-8B +Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +7 +7 +Package_DIP +PowerIntegrations_PDIP-8C +Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +7 +7 +Package_DIP +PowerIntegrations_SDIP-10C +PowerIntegrations variant of 10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/tophx_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +9 +9 +Package_DIP +PowerIntegrations_SMD-8 +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +PowerIntegrations_SMD-8B +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +PowerIntegrations_SMD-8C +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +PowerIntegrations_eDIP-12B +Power Integrations eDIP-12B, see https://www.power.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +11 +11 +Package_DIP +SMDIP-4_W7.62mm +4-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +4 +4 +Package_DIP +SMDIP-4_W9.53mm +4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +4 +4 +Package_DIP +SMDIP-4_W9.53mm_Clearance8mm +4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +4 +4 +Package_DIP +SMDIP-4_W11.48mm +4-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +4 +4 +Package_DIP +SMDIP-6_W7.62mm +6-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +6 +6 +Package_DIP +SMDIP-6_W9.53mm +6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +6 +6 +Package_DIP +SMDIP-6_W9.53mm_Clearance8mm +6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +6 +6 +Package_DIP +SMDIP-6_W11.48mm +6-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +6 +6 +Package_DIP +SMDIP-8_W7.62mm +8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +SMDIP-8_W9.53mm +8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +8 +8 +Package_DIP +SMDIP-8_W9.53mm_Clearance8mm +8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +8 +8 +Package_DIP +SMDIP-8_W11.48mm +8-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +8 +8 +Package_DIP +SMDIP-10_W7.62mm +10-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +10 +10 +Package_DIP +SMDIP-10_W9.53mm +10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +10 +10 +Package_DIP +SMDIP-10_W9.53mm_Clearance8mm +10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +10 +10 +Package_DIP +SMDIP-10_W11.48mm +10-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +10 +10 +Package_DIP +SMDIP-12_W7.62mm +12-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +12 +12 +Package_DIP +SMDIP-12_W9.53mm +12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +12 +12 +Package_DIP +SMDIP-12_W9.53mm_Clearance8mm +12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +12 +12 +Package_DIP +SMDIP-12_W11.48mm +12-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +12 +12 +Package_DIP +SMDIP-14_W7.62mm +14-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +14 +14 +Package_DIP +SMDIP-14_W9.53mm +14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +14 +14 +Package_DIP +SMDIP-14_W9.53mm_Clearance8mm +14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +14 +14 +Package_DIP +SMDIP-14_W11.48mm +14-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +14 +14 +Package_DIP +SMDIP-16_W7.62mm +16-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +16 +16 +Package_DIP +SMDIP-16_W9.53mm +16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +16 +16 +Package_DIP +SMDIP-16_W9.53mm_Clearance8mm +16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +16 +16 +Package_DIP +SMDIP-16_W11.48mm +16-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +16 +16 +Package_DIP +SMDIP-18_W7.62mm +18-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +18 +18 +Package_DIP +SMDIP-18_W9.53mm +18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +18 +18 +Package_DIP +SMDIP-18_W9.53mm_Clearance8mm +18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +18 +18 +Package_DIP +SMDIP-18_W11.48mm +18-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +18 +18 +Package_DIP +SMDIP-20_W7.62mm +20-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +20 +20 +Package_DIP +SMDIP-20_W9.53mm +20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +20 +20 +Package_DIP +SMDIP-20_W9.53mm_Clearance8mm +20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +20 +20 +Package_DIP +SMDIP-20_W11.48mm +20-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +20 +20 +Package_DIP +SMDIP-22_W7.62mm +22-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +22 +22 +Package_DIP +SMDIP-22_W9.53mm +22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +22 +22 +Package_DIP +SMDIP-22_W9.53mm_Clearance8mm +22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +22 +22 +Package_DIP +SMDIP-22_W11.48mm +22-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +22 +22 +Package_DIP +SMDIP-24_W7.62mm +24-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +24 +24 +Package_DIP +SMDIP-24_W9.53mm +24-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +24 +24 +Package_DIP +SMDIP-24_W11.48mm +24-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +24 +24 +Package_DIP +SMDIP-24_W15.24mm +24-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +24 +24 +Package_DIP +SMDIP-28_W15.24mm +28-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +28 +28 +Package_DIP +SMDIP-32_W7.62mm +32-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +32 +32 +Package_DIP +SMDIP-32_W9.53mm +32-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +32 +32 +Package_DIP +SMDIP-32_W11.48mm +32-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +32 +32 +Package_DIP +SMDIP-32_W15.24mm +32-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +32 +32 +Package_DIP +SMDIP-40_W15.24mm +40-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +40 +40 +Package_DIP +SMDIP-40_W25.24mm +40-lead surface-mounted (SMD) DIP package, row spacing 25.24 mm (993 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 25.24mm 993mil +0 +40 +40 +Package_DIP +SMDIP-42_W15.24mm +42-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +42 +42 +Package_DIP +SMDIP-48_W15.24mm +48-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +48 +48 +Package_DIP +SMDIP-64_W15.24mm +64-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +64 +64 +Package_DIP +Toshiba_11-7A9 +Toshiba 11-7A9 package, like 6-lead dip package with missing pin 5, row spacing 7.62 mm (300 mils), https://toshiba.semicon-storage.com/info/docget.jsp?did=1421&prodName=TLP3021(S) +Toshiba 11-7A9 DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +5 +5 +Package_DIP +Vishay_HVM-DIP-3_W7.62mm +3-lead though-hole mounted high-volatge DIP package (based on standard DIP-4), row spacing 7.62 mm (300 mils), see https://www.vishay.com/docs/91361/hexdip.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Vishay HVMDIP HEXDIP +0 +4 +3 +Package_DirectFET +DirectFET_L4 +DirectFET L4 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=41 +DirectFET L4 MOSFET Infineon +0 +11 +3 +Package_DirectFET +DirectFET_L6 +DirectFET L6 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=42 +DirectFET L6 MOSFET Infineon +0 +13 +3 +Package_DirectFET +DirectFET_L8 +DirectFET L8 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=43 +DirectFET L8 MOSFET Infineon +0 +15 +3 +Package_DirectFET +DirectFET_LA +DirectFET LA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=44 +DirectFET LA MOSFET Infineon +0 +15 +3 +Package_DirectFET +DirectFET_M2 +DirectFET M2 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=33 +DirectFET M2 MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_M4 +DirectFET M4 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=34 +DirectFET M4 MOSFET Infineon +0 +9 +3 +Package_DirectFET +DirectFET_MA +DirectFET MA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=35 +DirectFET MA MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_MB +DirectFET MB https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=36 +DirectFET MB MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_MC +DirectFET MC https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=37 +DirectFET MC MOSFET Infineon +0 +10 +3 +Package_DirectFET +DirectFET_MD +DirectFET MD https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=38 +DirectFET MD MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_ME +DirectFET ME https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=39 +DirectFET ME MOSFET Infineon +0 +10 +3 +Package_DirectFET +DirectFET_MF +DirectFET MF https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=40 +DirectFET MF MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_MN +DirectFET MN https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=30 +DirectFET MN MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MP +DirectFET MP https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=28 +DirectFET MP MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MQ +DirectFET MQ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=29 +DirectFET MQ MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MT +DirectFET MT https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=26 +DirectFET MT MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MU +DirectFET MU https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=32 +DirectFET MU MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MX +DirectFET MX https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=27 +DirectFET MX MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MZ +DirectFET MZ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=31 +DirectFET MZ MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_S1 +DirectFET S1 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=20 +DirectFET S1 MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_S2 +DirectFET S2 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=21 +DirectFET S2 MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_S3C +DirectFET S3C https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=25 +DirectFET S3C MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_SA +DirectFET SA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=22 +DirectFET SA MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_SB +DirectFET SB https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=23 +DirectFET SB MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_SC +DirectFET SC https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=24 +DirectFET SC MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_SH +DirectFET SH https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=19 +DirectFET SH MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_SJ +DirectFET SJ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=18 +DirectFET SJ MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_SQ +DirectFET SQ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=17 +DirectFET SQ MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_ST +DirectFET ST https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=16 +DirectFET ST MOSFET Infineon +0 +7 +3 +Package_LCC +Analog_LCC-8_5x5mm_P1.27mm +LCC, ceramic leaded chip carrier, 8 pins, surface mount, Analog Devices LS8, 5x5mm, height 1.45mm, https://www.analog.com/media/en/technical-documentation/data-sheets/ltc6655-6655ln.pdf +lcc smt +0 +8 +8 +Package_LCC +PLCC-20 +PLCC, 20 pins, surface mount +plcc smt +0 +20 +20 +Package_LCC +PLCC-20_SMD-Socket +PLCC, 20 pins, surface mount +plcc smt +0 +20 +20 +Package_LCC +PLCC-20_THT-Socket +PLCC, 20 pins, through hole +plcc leaded +0 +20 +20 +Package_LCC +PLCC-28 +PLCC, 28 pins, surface mount +plcc smt +0 +28 +28 +Package_LCC +PLCC-28_SMD-Socket +PLCC, 28 pins, surface mount +plcc smt +0 +28 +28 +Package_LCC +PLCC-28_THT-Socket +PLCC, 28 pins, through hole +plcc leaded +0 +28 +28 +Package_LCC +PLCC-32_11.4x14.0mm_P1.27mm +PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +32 +32 +Package_LCC +PLCC-32_THT-Socket +PLCC, 32 pins, through hole, http://www.assmann-wsw.com/fileadmin/datasheets/ASS_0981_CO.pdf +plcc leaded +0 +32 +32 +Package_LCC +PLCC-44 +PLCC, 44 pins, surface mount +plcc smt +0 +44 +44 +Package_LCC +PLCC-44_16.6x16.6mm_P1.27mm +PLCC, 44 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +44 +44 +Package_LCC +PLCC-44_SMD-Socket +PLCC, 44 pins, surface mount +plcc smt +0 +44 +44 +Package_LCC +PLCC-44_THT-Socket +PLCC, 44 pins, through hole +plcc leaded +0 +44 +44 +Package_LCC +PLCC-52 +PLCC, 52 pins, surface mount +plcc smt +0 +52 +52 +Package_LCC +PLCC-52_SMD-Socket +PLCC, 52 pins, surface mount +plcc smt +0 +52 +52 +Package_LCC +PLCC-52_THT-Socket +PLCC, 52 pins, through hole +plcc leaded +0 +52 +52 +Package_LCC +PLCC-68 +PLCC, 68 pins, surface mount +plcc smt +0 +68 +68 +Package_LCC +PLCC-68_24.2x24.2mm_P1.27mm +PLCC, 68 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +68 +68 +Package_LCC +PLCC-68_SMD-Socket +PLCC, 68 pins, surface mount +plcc smt +0 +68 +68 +Package_LCC +PLCC-68_THT-Socket +PLCC, 68 pins, through hole +plcc leaded +0 +68 +68 +Package_LCC +PLCC-84 +PLCC, 84 pins, surface mount +plcc smt +0 +84 +84 +Package_LCC +PLCC-84_29.3x29.3mm_P1.27mm +PLCC, 84 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +84 +84 +Package_LCC +PLCC-84_SMD-Socket +PLCC, 84 pins, surface mount +plcc smt +0 +84 +84 +Package_LCC +PLCC-84_THT-Socket +PLCC, 84 pins, through hole +plcc leaded +0 +84 +84 +Package_LGA +AMS_LGA-10-1EP_2.7x4mm_P0.6mm +LGA-10, http://ams.com/eng/content/download/951091/2269479/471718 +lga land grid array +0 +13 +11 +Package_LGA +AMS_LGA-20_4.7x4.5mm_P0.65mm +http://ams.com/eng/content/download/1008631/2361759/498838 +AMS LGA +0 +20 +20 +Package_LGA +AMS_OLGA-8_2x3.1mm_P0.8mm +AMS OLGA, 8 Pin (https://ams.com/documents/20143/36005/AS7341_DS000504_3-00.pdf/#page=63) +AMS OLGA NoLead +0 +8 +8 +Package_LGA +Bosch_LGA-8_2.5x2.5mm_P0.65mm_ClockwisePinNumbering +LGA-8 +lga land grid array +0 +8 +8 +Package_LGA +Bosch_LGA-8_2x2.5mm_P0.65mm_ClockwisePinNumbering +LGA-8, https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMP280-DS001-18.pdf +lga land grid array +0 +8 +8 +Package_LGA +Bosch_LGA-8_3x3mm_P0.8mm_ClockwisePinNumbering +Bosch LGA, 8 Pin (https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME680-DS001-00.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Bosch LGA NoLead +0 +8 +8 +Package_LGA +Bosch_LGA-14_3x2.5mm_P0.5mm +LGA-14 Bosch https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMI160-DS000-07.pdf +lga land grid array +0 +14 +14 +Package_LGA +Infineon_PG-TSNP-6-10_0.7x1.1mm_0.7x1.1mm_P0.4mm +6 lead, 1.1x0.7mm body, 0.37mm height, TSNP (https://www.infineon.com/cms/en/product/packages/PG-TSNP/PG-TSNP-6-10/) +PG-TSNP-6-10 TSNP +0 +12 +6 +Package_LGA +Kionix_LGA-12_2x2mm_P0.5mm_LayoutBorder2x4y +Kionix LGA, 12 Pin (http://kionixfs.kionix.com/en/document/TN008-PCB-Design-Guidelines-for-2x2-LGA-Sensors.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py +Kionix LGA NoLead +0 +12 +12 +Package_LGA +LGA-8_3x5mm_P1.25mm +LGA-8 +lga land grid array +0 +8 +8 +Package_LGA +LGA-8_8x6.2mm_P1.27mm +LGA, 8 Pin (https://datasheet.lcsc.com/lcsc/2303241700_Zetta-ZDSD64GLGEAG-R_C5277948.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +8 +8 +Package_LGA +LGA-8_8x6mm_P1.27mm +LGA, 8 Pin (https://datasheet.lcsc.com/lcsc/2005251034_XTX-XTSD01GLGEAG_C558837.pdf#page=6), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +8 +8 +Package_LGA +LGA-12_2x2mm_P0.5mm +LGA12 +lga land grid array +0 +12 +12 +Package_LGA +LGA-14_2x2mm_P0.35mm_LayoutBorder3x4y +LGA, 14 Pin (http://www.st.com/resource/en/datasheet/lis2dh.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-14_3x2.5mm_P0.5mm_LayoutBorder3x4y +LGA, 14 Pin (https://www.st.com/resource/en/datasheet/lsm6ds3tr-c.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-14_3x5mm_P0.8mm_LayoutBorder1x6y +LGA, 14 Pin (http://www.st.com/resource/en/datasheet/lsm303dlhc.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-16_3x3mm_P0.5mm +http://www.memsic.com/userfiles/files/DataSheets/Magnetic-Sensors-Datasheets/MMC5883MA-RevC.pdf +lga land grid array +0 +16 +16 +Package_LGA +LGA-16_3x3mm_P0.5mm_LayoutBorder3x5y +LGA, 16 Pin (http://www.st.com/resource/en/datasheet/lis331hh.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +16 +16 +Package_LGA +LGA-16_4x4mm_P0.65mm_LayoutBorder4x4y +LGA, 16 Pin (http://www.st.com/resource/en/datasheet/l3gd20.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +16 +16 +Package_LGA +LGA-24L_3x3.5mm_P0.43mm +LGA 24L 3x3.5mm Pitch 0.43mm +LGA 24L 3x3.5mm Pitch 0.43mm +0 +24 +24 +Package_LGA +LGA-28_5.2x3.8mm_P0.5mm +LGA 28 5.2x3.8mm Pitch 0.5mm +LGA 28 5.2x3.8mm Pitch 0.5mm +0 +28 +28 +Package_LGA +Linear_LGA-133_15.0x15.0mm_Layout12x12_P1.27mm +Analog Devices (Linear Tech), 133-pin LGA uModule, 15.0x15.0x4.32mm, https://www.analog.com/media/en/technical-documentation/data-sheets/4637fc.pdf +133 pin lga +0 +133 +133 +Package_LGA +MPS_LGA-18-10EP_12x12mm_P3.3mm +MPS LGA-18 12x12x3.82mm (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MPM3550EGLE/document_id/5102/) +MPS LGA +0 +18 +18 +Package_LGA +NXP_LGA-8_3x5mm_P1.25mm_H1.1mm +NXP LGA, 8 Pin (https://www.nxp.com/docs/en/data-sheet/MPL3115A2.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +NXP LGA NoLead +0 +8 +8 +Package_LGA +NXP_LGA-8_3x5mm_P1.25mm_H1.2mm +NXP LGA, 8 Pin (https://www.nxp.com/docs/en/data-sheet/MPL115A1.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +NXP LGA NoLead +0 +8 +8 +Package_LGA +Rohm_MLGA010V020A_LGA-10_2x2mm_P0.45mm_LayoutBorder2x3y +Rohm LGA, 10 Pin (https://fscdn.rohm.com/en/techdata_basic/ic/package/Jisso_MLGA010V020A-1-2_Rev005s_E2(MSL3).pdf) +Rohm LGA NoLead +0 +10 +10 +Package_LGA +ST_HLGA-10_2.5x2.5mm_P0.6mm_LayoutBorder3x2y +ST HLGA, 10 Pin (https://www.st.com/resource/en/datasheet/lps25hb.pdf#page=46), generated with kicad-footprint-generator ipc_noLead_generator.py +ST HLGA NoLead +0 +10 +10 +Package_LGA +ST_HLGA-10_2x2mm_P0.5mm_LayoutBorder3x2y +ST HLGA, 10 Pin (https://www.st.com/resource/en/datasheet/lps22hh.pdf#page=55), generated with kicad-footprint-generator ipc_noLead_generator.py +ST HLGA NoLead +0 +10 +10 +Package_LGA +Texas_SIL0008D_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm +Texas SIL0008D MicroSiP, 8 Pin (http://www.ti.com/lit/ds/symlink/tps82130.pdf#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +12 +9 +Package_LGA +Texas_SIL0008D_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm_ThermalVias +Texas SIL0008D MicroSiP, 8 Pin (http://www.ti.com/lit/ds/symlink/tps82130.pdf#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +16 +9 +Package_LGA +Texas_SIL0010A_MicroSiP-10-1EP_3.8x3mm_P0.6mm_EP0.7x2.9mm +Texas SIL0010A MicroSiP, 10 Pin (http://www.ti.com/lit/ml/mpds579b/mpds579b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +14 +11 +Package_LGA +Texas_SIL0010A_MicroSiP-10-1EP_3.8x3mm_P0.6mm_EP0.7x2.9mm_ThermalVias +Texas SIL0010A MicroSiP, 10 Pin (http://www.ti.com/lit/ml/mpds579b/mpds579b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +18 +11 +Package_LGA +VLGA-4_2x2.5mm_P1.65mm +VLGA, 4 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/DSC60XX-Ultra-Small-Ultra-Low-Power-MEMS-Oscillator-DS20005625C.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +VLGA NoLead +0 +4 +4 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +154 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +171 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +161 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +187 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +165 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +196 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +175 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +218 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +194 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +259 +145 +Package_QFP +HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad +HTQFP-64 Pitch 0.5 +0 +69 +65 +Package_QFP +HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_Mask4.4x4.4mm_ThermalVias +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad +HTQFP-64 Pitch 0.5 +0 +135 +65 +Package_QFP +LQFP-32_5x5mm_P0.5mm +LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT401-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +32 +32 +Package_QFP +LQFP-32_7x7mm_P0.8mm +LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT358-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +32 +32 +Package_QFP +LQFP-36_7x7mm_P0.65mm +LQFP, 36 Pin (https://www.onsemi.com/pub/Collateral/561AV.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +36 +36 +Package_QFP +LQFP-44_10x10mm_P0.8mm +LQFP, 44 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ASS23225W.pdf?&fsrch=1), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +44 +44 +Package_QFP +LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm +LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +58 +49 +Package_QFP +LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm_ThermalVias +LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +75 +49 +Package_QFP +LQFP-48_7x7mm_P0.5mm +LQFP, 48 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2358-16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +48 +48 +Package_QFP +LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm +LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +62 +53 +Package_QFP +LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm_ThermalVias +LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +95 +53 +Package_QFP +LQFP-52_10x10mm_P0.65mm +LQFP, 52 Pin (https://www.nxp.com/docs/en/package-information/98ARL10526D.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +52 +52 +Package_QFP +LQFP-52_14x14mm_P1mm +LQFP, 52 Pin (http://www.holtek.com/documents/10179/116711/HT1632Cv170.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +52 +52 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +90 +65 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm_ThermalVias +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +107 +65 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm +LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +90 +65 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm_ThermalVias +LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +127 +65 +Package_QFP +LQFP-64_7x7mm_P0.4mm +LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT414-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +64 +64 +Package_QFP +LQFP-64_10x10mm_P0.5mm +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7606_7606-6_7606-4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +64 +64 +Package_QFP +LQFP-64_14x14mm_P0.8mm +LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT791-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +64 +64 +Package_QFP +LQFP-80_10x10mm_P0.4mm +LQFP, 80 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q80.10x10.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +80 +80 +Package_QFP +LQFP-80_12x12mm_P0.5mm +LQFP, 80 Pin (https://www.nxp.com/docs/en/package-information/SOT315-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +80 +80 +Package_QFP +LQFP-80_14x14mm_P0.65mm +LQFP, 80 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +80 +80 +Package_QFP +LQFP-100_14x14mm_P0.5mm +LQFP, 100 Pin (https://www.nxp.com/docs/en/package-information/SOT407-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +100 +100 +Package_QFP +LQFP-128_14x14mm_P0.4mm +LQFP, 128 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q128.14x14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +128 +128 +Package_QFP +LQFP-128_14x20mm_P0.5mm +LQFP, 128 Pin (https://www.nxp.com/docs/en/package-information/SOT425-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +128 +128 +Package_QFP +LQFP-144-1EP_20x20mm_P0.5mm_EP6.5x6.5mm +LQFP, 144 Pin (https://www.infineon.com/cms/en/product/packages/PG-LQFP/PG-LQFP-144-22), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP Infineon-PG-LQFP-144-24 Infineon-PG-LQFP-144-26 +0 +154 +145 +Package_QFP +LQFP-144-1EP_20x20mm_P0.5mm_EP6.5x6.5mm_ThermalVias +LQFP, 144 Pin (https://www.infineon.com/cms/en/product/packages/PG-LQFP/PG-LQFP-144-22), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP Infineon-PG-LQFP-144-24 Infineon-PG-LQFP-144-26 +0 +171 +145 +Package_QFP +LQFP-144_20x20mm_P0.5mm +LQFP, 144 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=425), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +144 +144 +Package_QFP +LQFP-160_24x24mm_P0.5mm +LQFP, 160 Pin (https://www.nxp.com/docs/en/package-information/SOT435-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +160 +160 +Package_QFP +LQFP-176_20x20mm_P0.4mm +LQFP, 176 Pin (https://www.onsemi.com/pub/Collateral/566DB.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +176 +176 +Package_QFP +LQFP-176_24x24mm_P0.5mm +LQFP, 176 Pin (https://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=163), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +176 +176 +Package_QFP +LQFP-208_28x28mm_P0.5mm +LQFP, 208 Pin (https://www.nxp.com/docs/en/package-information/SOT459-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +208 +208 +Package_QFP +LQFP-216_24x24mm_P0.4mm +LQFP, 216 Pin (https://www.onsemi.com/pub/Collateral/561BE.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +216 +216 +Package_QFP +MQFP-44_10x10mm_P0.8mm +MQFP, 44 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7722.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MQFP QFP +0 +44 +44 +Package_QFP +PQFP-32_5x5mm_P0.5mm +PQFP, 32 Pin (https://www.ti.com/lit/ds/symlink/ads127l01.pdf#page=87), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +32 +32 +Package_QFP +PQFP-44_10x10mm_P0.8mm +44-Lead Plastic Quad Flatpack - 10x10x2.5mm Body (http://www.onsemi.com/pub/Collateral/122BK.PDF) +PQFP 0.8 +0 +44 +44 +Package_QFP +PQFP-64_14x14mm_P0.8mm +PQFP, 64 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-qfp-64pin-prqp0064gb), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +64 +64 +Package_QFP +PQFP-80_14x20mm_P0.8mm +PQFP80 14x20 / QIP80E CASE 122BS (see ON Semiconductor 122BS.PDF) +QFP 0.8 +0 +80 +80 +Package_QFP +PQFP-100_14x20mm_P0.65mm +PQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +100 +100 +Package_QFP +PQFP-112_20x20mm_P0.65mm +PQFP, 112 pins, 20mm sq body, 0.65mm pitch (http://cache.freescale.com/files/shared/doc/package_info/98ASS23330W.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) +PQFP 112 +0 +112 +112 +Package_QFP +PQFP-132_24x24mm_P0.635mm +PQFP, 132 pins, 24mm sq body, 0.635mm pitch (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) +PQFP 132 +0 +132 +132 +Package_QFP +PQFP-132_24x24mm_P0.635mm_i386 +PQFP, 132 pins, 24mm sq body, 0.635mm pitch, Intel 386EX (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) +PQFP 132 Intel 386EX +0 +132 +132 +Package_QFP +PQFP-144_28x28mm_P0.65mm +PQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +144 +144 +Package_QFP +PQFP-160_28x28mm_P0.65mm +PQFP, 160 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +160 +160 +Package_QFP +PQFP-168_28x28mm_P0.65mm +PQFP, 168 Pin (https://www.renesas.cn/cn/zh/document/psc/package-drawing-qfp-168pin-prqp0168jb), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +168 +168 +Package_QFP +PQFP-208_28x28mm_P0.5mm +PQFP, 208 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +208 +208 +Package_QFP +PQFP-240_32.1x32.1mm_P0.5mm +PQFP, 240 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +240 +240 +Package_QFP +PQFP-256_28x28mm_P0.4mm +PQFP256 28x28 / QFP256J CASE 122BX (see ON Semiconductor 122BX.PDF) +QFP 0.4 +0 +256 +256 +Package_QFP +TQFP-32_7x7mm_P0.8mm +32-Lead Plastic Thin Quad Flatpack (PT) - 7x7x1.0 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +32 +32 +Package_QFP +TQFP-44-1EP_10x10mm_P0.8mm_EP4.5x4.5mm +44-Lead Plastic Thin Quad Flatpack (MW) - 10x10x1.0 mm Body [TQFP] With 4.5x4.5 mm Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +54 +45 +Package_QFP +TQFP-44_10x10mm_P0.8mm +44-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1.0 mm Body [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +44 +44 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm +48-Lead Thin Quad Flatpack (PT) - 7x7x1.0 mm Body [TQFP] With Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.5 +0 +53 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP4.11x4.11mm +TQFP, 48 Pin (https://www.lumissil.com/assets/pdf/core/IS31FL3236_DS.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +65 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm +TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +65 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm_ThermalVias +TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +91 +49 +Package_QFP +TQFP-48_7x7mm_P0.5mm +TQFP, 48 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/48L_TQFP_7x7x1_0mm_PT_C04-00300d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +48 +48 +Package_QFP +TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm +TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), generated with kicad-footprint-generator ipc_qfp_generator.py +TQFP QFP +0 +78 +53 +Package_QFP +TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm_ThermalVias +TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), generated with kicad-footprint-generator ipc_qfp_generator.py +TQFP QFP +0 +79 +53 +Package_QFP +TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [TQFP] thermal pad +QFP 0.5 +0 +90 +65 +Package_QFP +TQFP-64_7x7mm_P0.4mm +TQFP64 7x7, 0.4P CASE 932BH (see ON Semiconductor 932BH.PDF) +QFP 0.4 +0 +64 +64 +Package_QFP +TQFP-64_10x10mm_P0.5mm +TQFP, 64 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +64 +64 +Package_QFP +TQFP-64_14x14mm_P0.8mm +64-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +64 +64 +Package_QFP +TQFP-80-1EP_14x14mm_P0.65mm_EP9.5x9.5mm +80-Lead Plastic Thin Quad Flatpack (PF) - 14x14mm body, 9.5mm sq thermal pad (http://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf) +QFP 0.65 +0 +85 +81 +Package_QFP +TQFP-80_12x12mm_P0.5mm +80-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.5 +0 +80 +80 +Package_QFP +TQFP-80_14x14mm_P0.65mm +80-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.65 +0 +80 +80 +Package_QFP +TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm +TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +117 +101 +Package_QFP +TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm_ThermalVias +TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +143 +101 +Package_QFP +TQFP-100_12x12mm_P0.4mm +100-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.4 +0 +100 +100 +Package_QFP +TQFP-100_14x14mm_P0.5mm +TQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +100 +100 +Package_QFP +TQFP-120_14x14mm_P0.4mm +TQFP120 14x14 / TQFP120 CASE 932AZ (see ON Semiconductor 932AZ.PDF) +QFP 0.4 +0 +120 +120 +Package_QFP +TQFP-128_14x14mm_P0.4mm +TQFP128 14x14 / TQFP128 CASE 932BB (see ON Semiconductor 932BB.PDF) +QFP 0.4 +0 +128 +128 +Package_QFP +TQFP-144_16x16mm_P0.4mm +144-Lead Plastic Thin Quad Flatpack (PH) - 16x16x1 mm Body, 2.00 mm Footprint [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.4 +0 +144 +144 +Package_QFP +TQFP-144_20x20mm_P0.5mm +TQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +144 +144 +Package_QFP +TQFP-176_24x24mm_P0.5mm +TQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +176 +176 +Package_QFP +Texas_PHP0048E_HTQFP-48-1EP_7x7mm_P0.5mm_EP6.5x6.5mm_Mask3.62x3.62mm +Texas PHP0048E HTQFP, 48 Pin (https://www.ti.com/lit/ds/symlink/tusb4020bi.pdf#page=42), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas HTQFP QFP +0 +51 +49 +Package_QFP +Texas_PHP0048E_HTQFP-48-1EP_7x7mm_P0.5mm_EP6.5x6.5mm_Mask3.62x3.62mm_ThermalVias +Texas PHP0048E HTQFP, 48 Pin (https://www.ti.com/lit/ds/symlink/tusb4020bi.pdf#page=42), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas HTQFP QFP +0 +88 +49 +Package_QFP +VQFP-80_14x14mm_P0.65mm +VQFP, 80 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +80 +80 +Package_QFP +VQFP-100_14x14mm_P0.5mm +VQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +100 +100 +Package_QFP +VQFP-128_14x14mm_P0.4mm +VQFP, 128 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +128 +128 +Package_QFP +VQFP-176_20x20mm_P0.4mm +VQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +176 +176 +Package_SIP +PowerIntegrations_eSIP-7C +eSIP-7C Vertical Flat Package with Heatsink Tab, https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +Power Integrations E Package +0 +6 +6 +Package_SIP +PowerIntegrations_eSIP-7F +eSIP-7F Flat Package with Heatsink Tab https://ac-dc.power.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +Power Integrations L Package +0 +6 +6 +Package_SIP +SIP-8_19x3mm_P2.54mm +SIP 8-pin (http://www.njr.com/semicon/PDF/package/SIP8_E.pdf) +SIP8 +0 +8 +8 +Package_SIP +SIP-9_21.54x3mm_P2.54mm +SIP 9-pin () +SIP8 +0 +9 +9 +Package_SIP +SIP-9_22.3x3mm_P2.54mm +SIP 9-pin () +SIP8 +0 +9 +9 +Package_SIP +SIP3_11.6x8.5mm +RECOM,R78EXX,https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +SIP3 Regulator Module +0 +3 +3 +Package_SIP +SIP4_Sharp-SSR_P7.62mm_Angled +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +Package_SIP +SIP4_Sharp-SSR_P7.62mm_Angled_NoHole +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +Package_SIP +SIP4_Sharp-SSR_P7.62mm_Straight +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +Package_SIP +SIP9_Housing +SIP9 +SIP9 +0 +9 +9 +Package_SIP +SIP9_Housing_BigPads +SIP9, large pads +SIP9 +0 +9 +9 +Package_SIP +SLA704XM +SIP SLA704XM (http://www.sumzi.com/upload/files/2007/07/2007073114282034189.PDF) +SIP +0 +18 +18 +Package_SIP +STK672-040-E +SIP-22 (http://www.onsemi.com/pub_link/Collateral/EN5227-D.PDF) +SIP-22 +0 +22 +22 +Package_SIP +STK672-080-E +SIP-15 (http://www.onsemi.com/pub_link/Collateral/EN6507-D.PDF) +SIP-15 +0 +15 +15 +Package_SIP +Sanyo_STK4xx-15_59.2x8.0mm_P2.54mm +Sanyo SIP-15, 59.2mm x 8.0mm bosy size, STK-433E STK-435E STK-436E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) +Sanyo SIP-15 +0 +15 +15 +Package_SIP +Sanyo_STK4xx-15_78.0x8.0mm_P2.54mm +Sanyo SIP-15, 78.0mm x 8.0mm bosy size, STK-437E STK-439E STK-441E STK-443E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) +Sanyo SIP-15 +0 +15 +15 +Package_SO +Diodes_PSOP-8 +8-Lead Plastic PSOP, Exposed Die Pad (see https://www.diodes.com/assets/Datasheets/AP2204.pdf) +SSOP 0.50 exposed pad +0 +12 +9 +Package_SO +Diodes_SO-8EP +8-Lead Plastic SO, Exposed Die Pad (see https://www.diodes.com/assets/Package-Files/SO-8EP.pdf) +SO exposed pad +0 +9 +9 +Package_SO +ETSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3x4.2mm +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body with Exposed Pad [eTSSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +27 +21 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.3x2.3mm +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l7980.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +13 +9 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.3x2.3mm_ThermalVias +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l7980.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +18 +9 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +13 +9 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm_ThermalVias +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +20 +9 +Package_SO +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown +HSOP 11.0x15.9mm Pitch 1.27mm Slug Down (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +23 +21 +Package_SO +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown_ThermalVias +HSOP 11.0x15.9mm Pitch 1.27mm Slug Down Thermal Vias (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +45 +21 +Package_SO +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugUp +HSOP 11.0x15.9mm Pitch 1.27mm Slug Up (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +20 +20 +Package_SO +HSOP-32-1EP_7.5x11mm_P0.65mm_EP4.7x4.7mm +HSOP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT1746-3.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +37 +33 +Package_SO +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown +HSOP 11.0x15.9mm Pitch 0.65mm Slug Down (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +39 +37 +Package_SO +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown_ThermalVias +HSOP 11.0x15.9mm Pitch 0.65mm Slug Down Thermal Vias (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +61 +37 +Package_SO +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugUp +HSOP 11.0x15.9mm Pitch 0.65mm Slug Up (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +36 +36 +Package_SO +HSOP-54-1EP_7.5x17.9mm_P0.65mm_EP4.6x4.6mm +HSOP, 54 Pin (https://www.nxp.com/docs/en/package-information/98ASA10506D.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +59 +55 +Package_SO +HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm +HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSOP SO +0 +13 +9 +Package_SO +HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm_ThermalVias +HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSOP SO +0 +20 +9 +Package_SO +HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm +HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0014A +0 +20 +15 +Package_SO +HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm_ThermalVias +HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0014A +0 +36 +15 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad; (http://www.ti.com/lit/ds/symlink/drv8833.pdf) +SSOP 0.65 +0 +29 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm +HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +20 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm_ThermalVias +HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +27 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3mm_ThermalVias +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad with vias; (http://www.ti.com/lit/ds/symlink/drv8800.pdf) +SSOP 0.65 +0 +46 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm +HTSSOP, 16 Pin (https://www.st.com/resource/en/datasheet/stp08cp05.pdf#page=20), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +21 +17 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.74x3.86mm +HTSSOP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4011fb.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Analog-FE-CB +0 +23 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.85x4mm +HTSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Maxim-U20E-1 +0 +23 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias +HTSSOP 0.65 +0 +29 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.4x3.7mm +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/bq24006.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP/R-PDSO-G20 +0 +24 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0020U +0 +26 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0020U +0 +42 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias_HandSolder +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +42 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm +HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0020T +0 +23 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm_ThermalVias +HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0020T +0 +42 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_ThermalVias +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias +HTSSOP 0.65 +0 +45 +21 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm +HTSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/stp16cp05.pdf#page=25), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +31 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x2.98mm +HTSSOP, 24 Pin (https://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0024P +0 +27 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x2.98mm_ThermalVias +HTSSOP, 24 Pin (https://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0024P +0 +49 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm +HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP/R-PDSO-G24 +0 +28 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm_ThermalVias +HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP/R-PDSO-G24 +0 +47 +25 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.75x6.2mm +HTSSOP, 28 Pin (https://www.trinamic.com/fileadmin/assets/Support/AppNotes/AN005x-IC_Package_PCB_Footprint_Guidelines_HTSSOP28_rev1.00.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +30 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.75x6.2mm_ThermalVias +HTSSOP, 28 Pin (https://www.trinamic.com/fileadmin/assets/Support/AppNotes/AN005x-IC_Package_PCB_Footprint_Guidelines_HTSSOP28_rev1.00.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +41 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm +HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +30 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm_ThermalVias +HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +41 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +39 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +40 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm_ThermalVias +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +55 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_ThermalVias +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +58 +29 +Package_SO +HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm +HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf) +SSOP 0.65 PowerPAD +0 +43 +33 +Package_SO +HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm_ThermalVias +HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf) +SSOP 0.65 PowerPAD +0 +83 +33 +Package_SO +HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm +HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=46), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-DAP/R-PDSO-G38 +0 +46 +39 +Package_SO +HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm_ThermalVias +HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=46), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-DAP/R-PDSO-G38 +0 +87 +39 +Package_SO +HTSSOP-44-1EP_6.1x14mm_P0.635mm_EP5.2x14mm_Mask4.31x8.26mm +HTSSOP, 44 Pin (http://www.ti.com/lit/pdf/pptd165), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-DDW0044B +0 +61 +45 +Package_SO +HTSSOP-44-1EP_6.1x14mm_P0.635mm_EP5.2x14mm_Mask4.31x8.26mm_ThermalVias +HTSSOP, 44 Pin (http://www.ti.com/lit/pdf/pptd165), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-DDW0044B +0 +118 +45 +Package_SO +HTSSOP-44_6.1x14mm_P0.635mm_TopEP4.14x7.01mm +HTSSOP, 44 Pin (http://www.ti.com/lit/ds/symlink/tpa3251.pdf#page=38), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-DDV0044D +0 +44 +44 +Package_SO +HTSSOP-56-1EP_6.1x14mm_P0.5mm_EP3.61x6.35mm +HTSSOP56: plastic thin shrink small outline package http://www.ti.com/lit/ds/symlink/drv8301.pdf +HTSSOP 0.5 +0 +72 +57 +Package_SO +HVSSOP-8-1EP_3x3mm_P0.65mm_EP1.57x1.89mm +HVSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa6110a2.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +13 +9 +Package_SO +HVSSOP-8-1EP_3x3mm_P0.65mm_EP1.57x1.89mm_ThermalVias +HVSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa6110a2.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +18 +9 +Package_SO +HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.57x1.88mm +HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +15 +11 +Package_SO +HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.57x1.88mm_ThermalVias +HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +20 +11 +Package_SO +Infineon_PG-DSO-8-24_4x5mm +Infineon PG-DSO, 8 Pin (https://www.infineon.com/dgdl/Infineon-BSP752R-DS-v01_02-EN.pdf?fileId=db3a304316f112290116f233cbd271e9#page=17), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +8 +8 +Package_SO +Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm +Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +13 +9 +Package_SO +Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm_ThermalVias +Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +23 +9 +Package_SO +Infineon_PG-DSO-8-43 +Infineon_PG-DSO-8-43 +DSO DSO-8 SOIC SOIC-8 +0 +12 +9 +Package_SO +Infineon_PG-DSO-8-59_7.5x6.3mm +Infineon PG-DSO, 8 Pin (https://www.infineon.com/dgdl/Infineon-1EDCxxI12AH-DS-v02_00-EN.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +8 +8 +Package_SO +Infineon_PG-DSO-12-9 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/) +PG-DSO +0 +23 +13 +Package_SO +Infineon_PG-DSO-12-9_ThermalVias +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/) +PG-DSO +0 +42 +13 +Package_SO +Infineon_PG-DSO-12-11 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/) +PG-DSO +0 +23 +13 +Package_SO +Infineon_PG-DSO-12-11_ThermalVias +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/) +PG-DSO +0 +42 +13 +Package_SO +Infineon_PG-DSO-20-30 +Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/) +DSO-20 +0 +31 +21 +Package_SO +Infineon_PG-DSO-20-30_ThermalVias +Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/) +DSO-20 +0 +45 +21 +Package_SO +Infineon_PG-DSO-20-32 +Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-32/) +DSO-20 +0 +20 +20 +Package_SO +Infineon_PG-DSO-20-85 +Infineon SO package 20pin with exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-85/) +DSO-20 +0 +31 +21 +Package_SO +Infineon_PG-DSO-20-85_ThermalVias +Infineon SO package 20pin with exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-85/) +DSO-20 +0 +113 +21 +Package_SO +Infineon_PG-DSO-20-87 +Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-87/) +DSO-20 +0 +20 +20 +Package_SO +Infineon_PG-DSO-20-U03_7.5x12.8mm +Infineon PG-DSO, 20 Pin (https://www.infineon.com/dgdl/Infineon-2ED1323S12P_2ED1324S12P-DataSheet-v01_01-EN.pdf?fileId=8ac78c8c869190210186e92f0f506d0c), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +20 +20 +Package_SO +Infineon_PG-TSDSO-14-22 +Infineon_PG-TSDSO-14-22 +Infineon TSDSO 14-22 +0 +17 +15 +Package_SO +Linear_MSOP-12-16-1EP_3x4mm_P0.5mm +12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see http://cds.linear.com/docs/en/datasheet/3630fd.pdf) +SSOP 0.5 +0 +15 +13 +Package_SO +Linear_MSOP-12-16_3x4mm_P0.5mm +12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see https://www.analog.com/media/en/technical-documentation/data-sheets/3748fb.pdf) +SSOP 0.5 +0 +12 +12 +Package_SO +MFSOP6-4_4.4x3.6mm_P1.27mm +https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.4pin%20MFSOP6.html +MFSOP 4 pin SMD +0 +4 +4 +Package_SO +MFSOP6-5_4.4x3.6mm_P1.27mm +https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.5pin%20MFSOP6.html +MFSOP 4 pin SMD +0 +5 +5 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.5x1.8mm +MSOP, 8 Pin (https://www.diodes.com/assets/Package-Files/MSOP-8EP.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.5x1.8mm_ThermalVias +MSOP, 8 Pin (https://www.diodes.com/assets/Package-Files/MSOP-8EP.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm +MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm_ThermalVias +MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm +MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm_ThermalVias +MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm +MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm_ThermalVias +MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm +MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +14 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm_ThermalVias +MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +19 +9 +Package_SO +MSOP-8_3x3mm_P0.65mm +MSOP, 8 Pin (https://www.jedec.org/system/files/docs/mo-187F.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +8 +8 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm +MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +15 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm_ThermalVias +MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +20 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm +MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +15 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm_ThermalVias +MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +20 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP2.2x3.1mm_Mask1.83x1.89mm +MSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/xtr111.pdf#page=27), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +16 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP2.2x3.1mm_Mask1.83x1.89mm_ThermalVias +MSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/xtr111.pdf#page=27), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +23 +11 +Package_SO +MSOP-10_3x3mm_P0.5mm +MSOP, 10 Pin (https://www.jedec.org/system/files/docs/mo-187F.pdf variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +10 +10 +Package_SO +MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +17 +13 +Package_SO +MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm_ThermalVias +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +24 +13 +Package_SO +MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.5 +0 +19 +13 +Package_SO +MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.5 +0 +25 +13 +Package_SO +MSOP-12-16_3x4mm_P0.5mm +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.5 +0 +12 +12 +Package_SO +MSOP-12_3x4mm_P0.65mm +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/6957fb.pdf#page=36), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +12 +12 +Package_SO +MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm +MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +21 +17 +Package_SO +MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm_ThermalVias +MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +28 +17 +Package_SO +MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm +MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +21 +17 +Package_SO +MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias +MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +28 +17 +Package_SO +MSOP-16_3x4.039mm_P0.5mm +MSOP, 16 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081669_A_MS16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +16 +16 +Package_SO +MSOP-16_3x4mm_P0.5mm +MSOP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/436412f.pdf#page=22), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +16 +16 +Package_SO +NXP_HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.2x3.4mm +HTSSOP, 28 Pin (https://www.nxp.com/docs/en/package-information/SOT1172-3.pdf) +HTSSOP SO +0 +41 +29 +Package_SO +NXP_HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.2x3.4mm_ThermalVias +HTSSOP, 28 Pin (https://www.nxp.com/docs/en/package-information/SOT1172-3.pdf) +HTSSOP SO +0 +50 +29 +Package_SO +ONSemi_SO-8FL_488AA +ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A https://www.onsemi.com/pub/Collateral/488AA.PDF +ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A +0 +5 +5 +Package_SO +OnSemi_Micro8 +ON Semiconductor Micro8 (Case846A-02): https://www.onsemi.com/pub/Collateral/846A-02.PDF +micro8 +0 +8 +8 +Package_SO +PSOP-44_16.9x27.17mm_P1.27mm +PSOP44: plastic thin shrink small outline package; 44 leads; body width 16.90 mm +PSOP 1.27 +0 +44 +44 +Package_SO +PowerIntegrations_SO-8 +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://ac-dc.power.com/sites/default/files/product-docs/senzero_family_datasheet.pdf +SOIC 1.27 +0 +8 +8 +Package_SO +PowerIntegrations_SO-8B +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf +SOIC 1.27 +0 +7 +7 +Package_SO +PowerIntegrations_SO-8C +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf +SOIC 1.27 +0 +7 +7 +Package_SO +PowerIntegrations_eSOP-12B +eSOP-12B SMT Flat Package with Heatsink Tab, see https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +Power Integrations K Package +0 +12 +12 +Package_SO +PowerPAK_SO-8L_Single +PowerPAK SO-8L Single (https://www.vishay.com/docs/64721/an913.pdf) +PowerPAK SO-8L_Single +0 +13 +5 +Package_SO +PowerPAK_SO-8_Dual +PowerPAK SO-8 Dual (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72600/72600.pdf) +PowerPAK SO-8 Dual +0 +10 +6 +Package_SO +PowerPAK_SO-8_Single +PowerPAK SO-8 Single (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72599/72599.pdf) +PowerPAK SO-8 Single +0 +9 +5 +Package_SO +PowerSSO-16-1EP_3.9x4.9mm_P0.5mm_EP2.5x3.61mm +PowerSSO, 16 Pin (https://www.st.com/resource/en/datasheet/vnd7020aj.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +PowerSSO SO +0 +18 +17 +Package_SO +PowerSSO-16-1EP_3.9x4.9mm_P0.5mm_EP2.5x3.61mm_ThermalVias +PowerSSO, 16 Pin (https://www.st.com/resource/en/datasheet/vnd7020aj.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +PowerSSO SO +0 +27 +17 +Package_SO +QSOP-16_3.9x4.9mm_P0.635mm +QSOP, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +16 +16 +Package_SO +QSOP-20_3.9x8.7mm_P0.635mm +QSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +20 +20 +Package_SO +QSOP-24_3.9x8.7mm_P0.635mm +QSOP, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +24 +24 +Package_SO +QSOP-28_3.9x9.9mm_P0.635mm +QSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +28 +28 +Package_SO +SO-4_4.4x2.3mm_P1.27mm +4-Lead Plastic Small Outline (SO), see http://datasheet.octopart.com/OPIA403BTRE-Optek-datasheet-5328560.pdf +SO SOIC 1.27 +0 +4 +4 +Package_SO +SO-4_4.4x3.6mm_P2.54mm +4-Lead Plastic Small Outline (SO), see https://www.elpro.org/de/index.php?controller=attachment&id_attachment=339 +SO SOIC 2.54 +0 +4 +4 +Package_SO +SO-4_4.4x3.9mm_P2.54mm +SO, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=10047&prodName=TLP3123), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +4 +4 +Package_SO +SO-4_4.4x4.3mm_P2.54mm +4-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/docs/AV02-0173EN +SO SOIC 2.54 +0 +4 +4 +Package_SO +SO-4_7.6x3.6mm_P2.54mm +4-Lead Plastic Small Outline (SO) (http://www.everlight.com/file/ProductFile/201407061745083848.pdf) +SO SOIC 2.54 +0 +4 +4 +Package_SO +SO-5-6_4.55x3.7mm_P1.27mm +SO, 5 Pin (https://toshiba.semicon-storage.com/us/semiconductor/design-development/package/detail.5pin%20SO6.html), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO TLP2310 Toshiba +0 +5 +5 +Package_SO +SO-5_4.4x3.6mm_P1.27mm +5-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SO SOIC 1.27 +0 +5 +5 +Package_SO +SO-6L_10x3.84mm_P1.27mm +6-pin plasic small outline 7,5mm long https://toshiba.semicon-storage.com/info/docget.jsp?did=53548&prodName=TLP2770 +SO-6L +0 +6 +6 +Package_SO +SO-6_4.4x3.6mm_P1.27mm +6-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SO SOIC 1.27 +0 +6 +6 +Package_SO +SO-8_3.9x4.9mm_P1.27mm +SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +8 +8 +Package_SO +SO-8_5.3x6.2mm_P1.27mm +SO, 8 Pin (https://www.ti.com/lit/ml/msop001a/msop001a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +8 +8 +Package_SO +SO-14_3.9x8.65mm_P1.27mm +SO, 14 Pin (https://www.st.com/resource/en/datasheet/l6491.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +14 +14 +Package_SO +SO-14_5.3x10.2mm_P1.27mm +SO, 14 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +14 +14 +Package_SO +SO-16_3.9x9.9mm_P1.27mm +SO, 16 Pin (https://www.nxp.com/docs/en/package-information/SOT109-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO SOT109-1 +0 +16 +16 +Package_SO +SO-16_5.3x10.2mm_P1.27mm +SO, 16 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +16 +16 +Package_SO +SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm +SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +23 +21 +Package_SO +SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm_ThermalVias +SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +51 +21 +Package_SO +SO-20_5.3x12.6mm_P1.27mm +SO, 20 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +20 +20 +Package_SO +SO-20_12.8x7.5mm_P1.27mm +SO-20, 12.8x7.5mm, https://www.nxp.com/docs/en/data-sheet/SA605.pdf +S0-20 +0 +20 +20 +Package_SO +SO-24_5.3x15mm_P1.27mm +SO, 24 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +24 +24 +Package_SO +SOIC-4_4.55x2.6mm_P1.27mm +SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12884&prodName=TLP291), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +4 +4 +Package_SO +SOIC-4_4.55x3.7mm_P2.54mm +SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=11791&prodName=TLP185), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +4 +4 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm_ThermalVias +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm +SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm_ThermalVias +SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm_ThermalVias +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm +SOIC, 8 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP2303A/document_id/494#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm_ThermalVias +SOIC, 8 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP2303A/document_id/494#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm +SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +14 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm_ThermalVias +SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +23 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm +SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm_ThermalVias +SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-N7_3.9x4.9mm_P1.27mm +8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], pin 7 removed (Microchip Packaging Specification 00000049BS.pdf, http://www.onsemi.com/pub/Collateral/NCP1207B.PDF) +SOIC 1.27 +0 +7 +7 +Package_SO +SOIC-8W_5.3x5.3mm_P1.27mm +8-Lead Plastic Small Outline (SM) - 5.28 mm Body [SOIC] (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf) +SOIC 1.27 +0 +8 +8 +Package_SO +SOIC-8_3.9x4.9mm_P1.27mm +SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-8_5.23x5.23mm_P1.27mm +SOIC, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf#page=68), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-8_5.275x5.275mm_P1.27mm +SOIC, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20005045C.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-8_7.5x5.85mm_P1.27mm +SOIC, 8 Pin (http://www.ti.com/lit/ml/mpds382b/mpds382b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-10_3.9x4.9mm_P1mm +SOIC, 10 Pin (https://www.onsemi.com/pub/Collateral/751BQ.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO SOIC-10 NB +0 +10 +10 +Package_SO +SOIC-14-16_3.9x9.9mm_P1.27mm +SOIC, 16 Pin package with pin 2 and 13 removed for voltage clearance (UCC256301, https://www.ti.com/lit/ds/symlink/ucc256301.pdf) +SOIC SO +0 +14 +14 +Package_SO +SOIC-14W_7.5x9mm_P1.27mm +SOIC, 14 Pin (JEDEC MS-013AF, https://www.analog.com/media/en/package-pcb-resources/package/54614177245586rw_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +14 +14 +Package_SO +SOIC-14_3.9x8.7mm_P1.27mm +SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +14 +14 +Package_SO +SOIC-16W-12_7.5x10.3mm_P1.27mm +SOIC-16 With 12 Pin Placed - Wide, 7.50 mm Body [SOIC] (https://docs.broadcom.com/docs/AV02-0169EN) +SOIC 1.27 16 12 Wide +0 +12 +12 +Package_SO +SOIC-16W_5.3x10.2mm_P1.27mm +SOIC, 16 Pin (http://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-16W_7.5x10.3mm_P1.27mm +SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-16W_7.5x12.8mm_P1.27mm +SOIC, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ri_soic_ic/ri_16_1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-16_3.9x9.9mm_P1.27mm +SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-16_4.55x10.3mm_P1.27mm +SOIC, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12858&prodName=TLP291-4), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-18W_7.5x11.6mm_P1.27mm +SOIC, 18 Pin (JEDEC MS-013AB, https://www.analog.com/media/en/package-pcb-resources/package/33254132129439rw_18.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +18 +18 +Package_SO +SOIC-20W_7.5x12.8mm_P1.27mm +SOIC, 20 Pin (JEDEC MS-013AC, https://www.analog.com/media/en/package-pcb-resources/package/233848rw_20.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +20 +Package_SO +SOIC-20W_7.5x15.4mm_P1.27mm +SOIC, 20 Pin (JEDEC MS-013AD, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/RI_20_1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +20 +Package_SO +SOIC-24W_7.5x15.4mm_P1.27mm +SOIC, 24 Pin (JEDEC MS-013AD, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/RW_24.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +24 +24 +Package_SO +SOIC-28W_7.5x17.9mm_P1.27mm +SOIC, 28 Pin (JEDEC MS-013AE, https://www.analog.com/media/en/package-pcb-resources/package/35833120341221rw_28.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +28 +28 +Package_SO +SOIC-28W_7.5x18.7mm_P1.27mm +SOIC, 28 Pin (https://www.akm.com/akm/en/file/datasheet/AK5394AVS.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +28 +28 +Package_SO +SOJ-36_10.16x23.49mm_P1.27mm +SOJ, 36 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOJ SO +0 +36 +36 +Package_SO +SOP-4_3.8x4.1mm_P2.54mm +SOP, 4 Pin (http://www.ixysic.com/home/pdfs.nsf/www/CPC1017N.pdf/$file/CPC1017N.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +4 +4 +Package_SO +SOP-4_4.4x2.6mm_P1.27mm +SOP, 4 Pin (http://www.vishay.com/docs/83510/tcmt1100.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +4 +4 +Package_SO +SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +13 +9 +Package_SO +SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm_ThermalVias +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +20 +9 +Package_SO +SOP-8_3.9x4.9mm_P1.27mm +SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=79), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-8_3.76x4.96mm_P1.27mm +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX211.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-8_5.28x5.23mm_P1.27mm +SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=80), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-8_6.62x9.15mm_P2.54mm +SOP, 8 Pin (http://www.ti.com/lit/ds/symlink/iso1050.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-8_6.605x9.655mm_P2.54mm +SOP, 8 Pin (https://www.onsemi.com/pdf/datasheet/hcpl2631m-d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-16_3.9x9.9mm_P1.27mm +SOP, 16 Pin (https://www.diodes.com/assets/Datasheets/PAM8403.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +16 +16 +Package_SO +SOP-16_4.4x10.4mm_P1.27mm +SOP, 16 Pin (https://www.vishay.com/docs/83513/tcmd1000.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +16 +16 +Package_SO +SOP-16_4.55x10.3mm_P1.27mm +SOP, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12855&prodName=TLP290-4), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +16 +16 +Package_SO +SOP-18_7.495x11.515mm_P1.27mm +SOP, 18 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=30523), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +18 +18 +Package_SO +SOP-18_7x12.5mm_P1.27mm +SOP, 18 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=30523), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +18 +18 +Package_SO +SOP-20_7.5x12.8mm_P1.27mm +SOP, 20 Pin (https://www.holtek.com/documents/10179/116723/sop20-300.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +20 +20 +Package_SO +SOP-24_7.5x15.4mm_P1.27mm +SOP, 24 Pin (http://www.issi.com/WW/pdf/31FL3218.pdf#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +24 +24 +Package_SO +SOP-28_8.4x18.16mm_P1.27mm +SOP, 28 Pin (https://www.issi.com/WW/pdf/62-65C256AL.pdf#page=12), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +28 +28 +Package_SO +SOP-44_12.6x28.5mm_P1.27mm +SOP, 44 Pin (https://www.mxic.com.tw/Lists/Datasheet/Attachments/8177/MX23C6410,%205V,%2064Mb,%20v3.1.pdf#page=5), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +44 +44 +Package_SO +SSO-4_6.7x5.1mm_P2.54mm_Clearance8mm +4-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/84299/vor1142b4.pdf +SSO Stretched SO SOIC 2.54 +0 +4 +4 +Package_SO +SSO-6_6.8x4.6mm_P1.27mm_Clearance7mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC 1.27 +0 +6 +6 +Package_SO +SSO-6_6.8x4.6mm_P1.27mm_Clearance8mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC 1.27 +0 +6 +6 +Package_SO +SSO-7-8_6.4x9.78mm_P2.54mm +SSO, 7 Pin (https://b2b-api.panasonic.eu/file_stream/pids/fileversion/2787), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSO SO +0 +7 +7 +Package_SO +SSO-8-7_6.4x9.7mm_P2.54mm +SSO, 7 Pin (https://gitlab.com/Sirdel/public/-/blob/3a5b5234461aee14649dc0eb10cbdef84d37b29e/Datasheets/BC2213A-EN.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSO SO +0 +7 +7 +Package_SO +SSO-8_6.7x9.8mm_P2.54mm_Clearance8mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/83831/lh1533ab.pdf +SSO Stretched SO SOIC Pitch 2.54 +0 +8 +8 +Package_SO +SSO-8_6.8x5.9mm_P1.27mm_Clearance7mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSO-8_6.8x5.9mm_P1.27mm_Clearance8mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSO-8_9.6x6.3mm_P1.27mm_Clearance10.5mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSO-8_13.6x6.3mm_P1.27mm_Clearance14.2mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSOP-8_2.95x2.8mm_P0.65mm +SSOP-8 2.9 x2.8mm Pitch 0.65mm +SSOP-8 2.95x2.8mm Pitch 0.65mm +0 +8 +8 +Package_SO +SSOP-8_3.9x5.05mm_P1.27mm +SSOP, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +8 +8 +Package_SO +SSOP-8_3.95x5.21x3.27mm_P1.27mm +SSOP-8 3.95x5.21x3.27mm Pitch 1.27mm +SSOP-8 3.95x5.21x3.27mm 1.27mm +0 +8 +8 +Package_SO +SSOP-8_5.25x5.24mm_P1.27mm +SSOP, 8 Pin (http://www.fujitsu.com/ca/en/Images/MB85RS2MT-DS501-00023-1v0-E.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +8 +8 +Package_SO +SSOP-10-1EP_3.9x4.9mm_P1mm_EP2.1x3.3mm +SSOP, 10 Pin (http://download.py32.org/%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C/zh-CN/PY32F002A%20%E7%B3%BB%E5%88%97%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C_Rev1.0.pdf#page=44), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO ESSOP-10 +0 +12 +11 +Package_SO +SSOP-10-1EP_3.9x4.9mm_P1mm_EP2.1x3.3mm_ThermalVias +SSOP, 10 Pin (http://download.py32.org/%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C/zh-CN/PY32F002A%20%E7%B3%BB%E5%88%97%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C_Rev1.0.pdf#page=44), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO ESSOP-10 +0 +15 +11 +Package_SO +SSOP-10_3.9x4.9mm_P1.00mm +10-Lead SSOP, 3.9 x 4.9mm body, 1.00mm pitch (http://www.st.com/resource/en/datasheet/viper01.pdf) +SSOP 3.9 4.9 1.00 +0 +10 +10 +Package_SO +SSOP-14_5.3x6.2mm_P0.65mm +SSOP14: plastic shrink small outline package; 14 leads; body width 5.3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot337-1_po.pdf) +SSOP 0.65 +0 +14 +14 +Package_SO +SSOP-16_3.9x4.9mm_P0.635mm +SSOP16: plastic shrink small outline package; 16 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot519-1_po.pdf) +SSOP 0.635 +0 +16 +16 +Package_SO +SSOP-16_4.4x5.2mm_P0.65mm +SSOP16: plastic shrink small outline package; 16 leads; body width 4.4 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot369-1_po.pdf) +SSOP 0.65 +0 +16 +16 +Package_SO +SSOP-16_5.3x6.2mm_P0.65mm +SSOP, 16 Pin (https://assets.nexperia.com/documents/data-sheet/74HC_HCT165.pdf#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +16 +16 +Package_SO +SSOP-18_4.4x6.5mm_P0.65mm +SSOP18: plastic shrink small outline package; 18 leads; body width 4.4 mm (http://toshiba.semicon-storage.com/info/docget.jsp?did=30523&prodName=TBD62783APG) +SSOP 0.65 +0 +18 +18 +Package_SO +SSOP-20_3.9x8.7mm_P0.635mm +SSOP20: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see http://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT231X.pdf) +SSOP 0.635 +0 +20 +20 +Package_SO +SSOP-20_4.4x6.5mm_P0.65mm +SSOP, 20 Pin (https://www.jedec.org/system/files/docs/Mo-152c.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO JEDEC-MO-152-AC SOT266-1 Nisshinbo-PI-SSOP20-E-A Rohm-SSOP-B20 +0 +20 +20 +Package_SO +SSOP-20_5.3x7.2mm_P0.65mm +SSOP, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001800C.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +20 +20 +Package_SO +SSOP-24_3.9x8.7mm_P0.635mm +SSOP24: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot556-1_po.pdf) +SSOP 0.635 +0 +24 +24 +Package_SO +SSOP-24_5.3x8.2mm_P0.65mm +24-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +24 +24 +Package_SO +SSOP-28_3.9x9.9mm_P0.635mm +SSOP28: plastic shrink small outline package; 28 leads; body width 3.9 mm; lead pitch 0.635; (see http://cds.linear.com/docs/en/datasheet/38901fb.pdf) +SSOP 0.635 +0 +28 +28 +Package_SO +SSOP-28_5.3x10.2mm_P0.65mm +28-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +28 +28 +Package_SO +SSOP-32_11.305x20.495mm_P1.27mm +SSOP, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +32 +32 +Package_SO +SSOP-44_5.3x12.8mm_P0.5mm +44-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (http://cds.linear.com/docs/en/datasheet/680313fa.pdf) +SSOP 0.5 +0 +44 +44 +Package_SO +SSOP-48_5.3x12.8mm_P0.5mm +SSOP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-ssop/05081887_A_G48.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +48 +48 +Package_SO +SSOP-48_7.5x15.9mm_P0.635mm +SSOP48: plastic shrink small outline package; 48 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot370-1_po.pdf) +SSOP 0.635 +0 +48 +48 +Package_SO +SSOP-56_7.5x18.5mm_P0.635mm +SSOP56: plastic shrink small outline package; 56 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot371-1_po.pdf) +SSOP 0.635 +0 +56 +56 +Package_SO +STC_SOP-16_3.9x9.9mm_P1.27mm +STC SOP, 16 Pin (https://www.stcmicro.com/datasheet/STC15F2K60S2-en.pdf#page=156), generated with kicad-footprint-generator ipc_gullwing_generator.py +STC SOP SO +0 +16 +16 +Package_SO +ST_MultiPowerSO-30 +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm (http://www.st.com/resource/en/datasheet/vnh2sp30-e.pdf) +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm +0 +33 +33 +Package_SO +ST_PowerSSO-24_SlugDown +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +25 +25 +Package_SO +ST_PowerSSO-24_SlugDown_ThermalVias +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +38 +25 +Package_SO +ST_PowerSSO-24_SlugUp +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +24 +24 +Package_SO +ST_PowerSSO-36_SlugDown +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +37 +37 +Package_SO +ST_PowerSSO-36_SlugDown_ThermalVias +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +50 +37 +Package_SO +ST_PowerSSO-36_SlugUp +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +36 +36 +Package_SO +TI_SO-PowerPAD-8 +8-Lead Plastic PSOP, Exposed Die Pad (TI DDA0008B, see http://www.ti.com/lit/ds/symlink/lm3404.pdf) +SSOP 0.50 exposed pad +0 +12 +9 +Package_SO +TI_SO-PowerPAD-8_ThermalVias +8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm² body, exposed pad, thermal vias with large copper area, as proposed in http://www.ti.com/lit/ds/symlink/tps5430.pdf +HTSOP 1.27 +0 +19 +9 +Package_SO +TSOP-5_1.65x3.05mm_P0.95mm +TSOP-5 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf +Jedec MO-193C TSOP-5L +0 +5 +5 +Package_SO +TSOP-6_1.65x3.05mm_P0.95mm +TSOP-6 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf +Jedec MO-193C TSOP-6L +0 +6 +6 +Package_SO +TSOP-I-24_12.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_14.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_16.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_18.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-28_11.8x8mm_P0.55mm +TSOP I, 28 pins, 18.8x8mm body, 0.55mm pitch, IPC-calculated pads (http://ww1.microchip.com/downloads/en/devicedoc/doc0807.pdf) +TSOP I 28 pins +0 +28 +28 +Package_SO +TSOP-I-32_11.8x8mm_P0.5mm +TSOP-I, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_12.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_14.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_16.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_18.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_18.4x8mm_P0.5mm_Reverse +TSOP I, 32 pins, 18.4x8mm body (http://www.futurlec.com/Datasheet/Memory/628128.pdf), reverse mount +TSOP I 32 reverse +0 +32 +32 +Package_SO +TSOP-I-40_12.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_14.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_16.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_18.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-48_12.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_14.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_16.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_18.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-56_14.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-I-56_16.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-I-56_18.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-II-32_21.0x10.2mm_P1.27mm +32-lead plastic TSOP; Type II +TSOP-II 32 +0 +32 +32 +Package_SO +TSOP-II-40-44_10.16x18.37mm_P0.8mm +TSOP-II, 40 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-tsop2-44pin-ptsb0044ge-e), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-II SO +0 +40 +40 +Package_SO +TSOP-II-44_10.16x18.41mm_P0.8mm +TSOP-II, 44 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-II SO +0 +44 +44 +Package_SO +TSOP-II-54_22.2x10.16mm_P0.8mm +54-lead TSOP typ II package +TSOPII TSOP2 +0 +54 +54 +Package_SO +TSSOP-4_4.4x5mm_P4mm +TSSOP, 4 Pin (https://www.onsemi.com/pub/Collateral/MDB8S-D.PDF#page=4), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +4 +4 +Package_SO +TSSOP-8_3x3mm_P0.65mm +TSSOP8: plastic thin shrink small outline package; 8 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot505-1_po.pdf) +SSOP 0.65 +0 +8 +8 +Package_SO +TSSOP-8_4.4x3mm_P0.65mm +TSSOP, 8 Pin (JEDEC MO-153 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +8 +8 +Package_SO +TSSOP-10_3x3mm_P0.5mm +TSSOP10: plastic thin shrink small outline package; 10 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot552-1_po.pdf) +SSOP 0.5 +0 +10 +10 +Package_SO +TSSOP-14-1EP_4.4x5mm_P0.65mm +14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf) +SSOP 0.65 exposed pad +0 +18 +15 +Package_SO +TSSOP-14_4.4x3.6mm_P0.4mm +TSSOP, 14 Pin (JEDEC MO-194 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +14 +14 +Package_SO +TSSOP-14_4.4x5mm_P0.65mm +TSSOP, 14 Pin (JEDEC MO-153 Var AB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +14 +14 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm +FE Package; 16-Lead Plastic TSSOP (4.4mm); Exposed Pad Variation BB; (see Linear Technology 1956f.pdf) +SSOP 0.65 +0 +24 +17 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm +TSSOP, 16 Pin (Allegro A4954 https://www.allegromicro.com/-/media/Files/Datasheets/A4954-Datasheet.ashx), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +21 +17 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm_ThermalVias +TSSOP, 16 Pin (Allegro A4954 https://www.allegromicro.com/-/media/Files/Datasheets/A4954-Datasheet.ashx), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +26 +17 +Package_SO +TSSOP-16_4.4x3.6mm_P0.4mm +TSSOP, 16 Pin (JEDEC MO-194 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +16 +16 +Package_SO +TSSOP-16_4.4x5mm_P0.65mm +TSSOP, 16 Pin (JEDEC MO-153 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +16 +16 +Package_SO +TSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.15x3.35mm +TSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100132.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +25 +21 +Package_SO +TSSOP-20_4.4x5mm_P0.4mm +TSSOP, 20 Pin (JEDEC MO-194 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-20_4.4x5mm_P0.5mm +TSSOP, 20 Pin (JEDEC MO-153 Var BA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-20_4.4x6.5mm_P0.65mm +TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm +TSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=37), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +31 +25 +Package_SO +TSSOP-24_4.4x5mm_P0.4mm +TSSOP, 24 Pin (JEDEC MO-153 Var CA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-24_4.4x6.5mm_P0.5mm +TSSOP, 24 Pin (JEDEC MO-153 Var BB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-24_4.4x7.8mm_P0.65mm +TSSOP, 24 Pin (JEDEC MO-153 Var AD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-24_6.1x7.8mm_P0.65mm +TSSOP, 24 Pin (JEDEC MO-153 Var DA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-28-1EP_4.4x9.7mm_P0.65mm +TSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; Exposed Pad Variation; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot361-1_po.pdf) +SSOP 0.65 +0 +36 +29 +Package_SO +TSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x6.7mm +TSSOP, 28 Pin (JEDEC MO-153 Var AET Pkg.Code U28E-4 https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +35 +29 +Package_SO +TSSOP-28_4.4x7.8mm_P0.5mm +TSSOP, 28 Pin (JEDEC MO-153 Var BC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_4.4x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var AE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_6.1x7.8mm_P0.5mm +TSSOP, 28 Pin (JEDEC MO-153 Var EA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_6.1x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var DB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_8x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var GA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-30_4.4x7.8mm_P0.5mm +TSSOP, 30 Pin (JEDEC MO-153 Var BC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +30 +30 +Package_SO +TSSOP-30_6.1x9.7mm_P0.65mm +TSSOP, 30 Pin (JEDEC MO-153 Var DB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +30 +30 +Package_SO +TSSOP-32_4.4x6.5mm_P0.4mm +TSSOP, 32 Pin (JEDEC MO-153 Var CB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-32_6.1x11mm_P0.65mm +TSSOP, 32 Pin (JEDEC MO-153 Var DC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-32_8x11mm_P0.65mm +TSSOP, 32 Pin (JEDEC MO-153 Var GB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-36_4.4x7.8mm_P0.4mm +TSSOP, 36 Pin (JEDEC MO-153 Var CC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_4.4x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x7.8mm_P0.4mm +TSSOP, 36 Pin (JEDEC MO-153 Var FA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var EB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x12.5mm_P0.65mm +TSSOP, 36 Pin (JEDEC MO-153 Var DD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_8x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var HA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_8x12.5mm_P0.65mm +TSSOP, 36 Pin (JEDEC MO-153 Var GC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-38_4.4x9.7mm_P0.5mm +TSSOP, 38 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +38 +38 +Package_SO +TSSOP-38_6.1x12.5mm_P0.65mm +TSSOP, 38 Pin (JEDEC MO-153 Var DD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +38 +38 +Package_SO +TSSOP-40_6.1x11mm_P0.5mm +TSSOP, 40 Pin (JEDEC MO-153 Var EC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_6.1x14mm_P0.65mm +TSSOP, 40 Pin (JEDEC MO-153 Var DE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_8x11mm_P0.5mm +TSSOP, 40 Pin (JEDEC MO-153 Var HB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_8x14mm_P0.65mm +TSSOP, 40 Pin (JEDEC MO-153 Var GD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-44_4.4x11.2mm_P0.5mm +TSSOP44: plastic thin shrink small outline package; 44 leads; body width 4.4 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot510-1_po.pdf) +SSOP 0.5 +0 +44 +44 +Package_SO +TSSOP-44_4.4x11mm_P0.5mm +TSSOP, 44 Pin (JEDEC MO-153 Var BE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +44 +44 +Package_SO +TSSOP-44_6.1x11mm_P0.5mm +TSSOP, 44 Pin (JEDEC MO-153 Var EC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +44 +44 +Package_SO +TSSOP-48_4.4x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var CD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_6.1x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var FB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_6.1x12.5mm_P0.5mm +TSSOP, 48 Pin (JEDEC MO-153 Var ED https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_8x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var JA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_8x12.5mm_P0.5mm +TSSOP, 48 Pin (JEDEC MO-153 Var HC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-50_4.4x12.5mm_P0.5mm +TSSOP, 50 Pin (JEDEC MO-153 Var BF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +50 +50 +Package_SO +TSSOP-52_6.1x11mm_P0.4mm +TSSOP, 52 Pin (JEDEC MO-153 Var FC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +52 +52 +Package_SO +TSSOP-52_8x11mm_P0.4mm +TSSOP, 52 Pin (JEDEC MO-153 Var JB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +52 +52 +Package_SO +TSSOP-56_4.4x11.3mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-194 Var AF https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_6.1x12.5mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-153 Var FD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_6.1x14mm_P0.5mm +TSSOP, 56 Pin (JEDEC MO-153 Var EE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_8x12.5mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-153 Var JC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_8x14mm_P0.5mm +TSSOP, 56 Pin (JEDEC MO-153 Var HD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-60_8x12.5mm_P0.4mm +TSSOP, 60 Pin (JEDEC MO-153 Var JC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +60 +60 +Package_SO +TSSOP-64_6.1x14mm_P0.4mm +TSSOP, 64 Pin (JEDEC MO-153 Var FE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-64_6.1x17mm_P0.5mm +TSSOP, 64 Pin (JEDEC MO-153 Var EF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-64_8x14mm_P0.4mm +TSSOP, 64 Pin (JEDEC MO-153 Var JD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-68_8x14mm_P0.4mm +TSSOP, 68 Pin (JEDEC MO-153 Var JD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +68 +68 +Package_SO +TSSOP-80_6.1x17mm_P0.4mm +TSSOP, 80 Pin (JEDEC MO-153 Var FF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +80 +80 +Package_SO +TSSOP-100_6.1x20.8mm_P0.4mm +TSSOP, 100 Pin (JEDEC MO-194 Var BB https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +100 +100 +Package_SO +Texas_DGN0008B_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x3mm_Mask1.88x1.98mm +Texas DGN0008B VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tps7a4101.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +11 +9 +Package_SO +Texas_DGN0008B_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x3mm_Mask1.88x1.98mm_ThermalVias +Texas DGN0008B VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tps7a4101.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +23 +9 +Package_SO +Texas_DGN0008D_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.57x1.89mm +Texas DGN0008D VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +11 +9 +Package_SO +Texas_DGN0008D_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.57x1.89mm_ThermalVias +Texas DGN0008D VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +19 +9 +Package_SO +Texas_DGN0008G_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.846x2.15mm +Texas DGN0008G VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +11 +9 +Package_SO +Texas_DGN0008G_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.846x2.15mm_ThermalVias +Texas DGN0008G VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +23 +9 +Package_SO +Texas_DYY0016A_TSOT-23-16_4.2x2.0mm_P0.5mm +TSSOP, 16 Pin (https://www.ti.com/lit/ds/symlink/tmux1574.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +16 +16 +Package_SO +Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm +Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf) +HSOP 1.27 +0 +11 +9 +Package_SO +Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm_ThermalVias +Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, thermal vias, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf) +HSOP 1.27 +0 +20 +9 +Package_SO +Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias +8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm body, exposed pad, thermal vias, http://www.ti.com/lit/ds/symlink/drv8870.pdf +HTSOP 1.27 +0 +18 +9 +Package_SO +Texas_PWP0020A +20-Pin Thermally Enhanced Thin Shrink Small-Outline Package, Body 4.4x6.5x1.1mm, Pad 3.0x4.2mm, Texas Instruments (see http://www.ti.com/lit/ds/symlink/lm5118.pdf) +PWP HTSSOP 0.65mm +0 +25 +21 +Package_SO +Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm +HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOIC SO +0 +16 +9 +Package_SO +Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias +HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOIC SO +0 +23 +9 +Package_SO +Texas_S-PDSO-G8_3x3mm_P0.65mm +plastic small outline, https://www.ti.com/lit/ml/mpds028d/mpds028d.pdf, https://www.ti.com/lit/ds/symlink/dac8552.pdf#page=23 +DGK VSSOP SO +0 +8 +8 +Package_SO +VSO-40_7.6x15.4mm_P0.762mm +VSO40: plastic very small outline package; 40 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot158-1_po.pdf) +SSOP 0.762 +0 +40 +40 +Package_SO +VSO-56_11.1x21.5mm_P0.75mm +VSO56: plastic very small outline package; 56 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot190-1_po.pdf) +SSOP 0.75 +0 +56 +56 +Package_SO +VSSOP-8_2.3x2mm_P0.5mm +VSSOP, 8 Pin (https://www.jedec.org/standards-documents/docs/mo-187-f), generated with kicad-footprint-generator ipc_gullwing_generator.py +VSSOP SO JEDEC-MO-187-CA TI-DCU0008A +0 +8 +8 +Package_SO +VSSOP-8_3x3mm_P0.65mm +VSSOP, 8 Pin (https://www.jedec.org/standards-documents/docs/mo-187-f), generated with kicad-footprint-generator ipc_gullwing_generator.py +VSSOP SO JEDEC-MO-187-AA TI-DGK0008A +0 +8 +8 +Package_SO +VSSOP-10_3x3mm_P0.5mm +VSSOP, 10 Pin (http://www.ti.com/lit/ds/symlink/ads1115.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +VSSOP SO +0 +10 +10 +Package_SO +Vishay_PowerPAK_1212-8_Dual +PowerPAK 1212-8 Dual (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72598/72598.pdf) +Vishay_PowerPAK_1212-8_Dual +0 +6 +6 +Package_SO +Vishay_PowerPAK_1212-8_Single +PowerPAK 1212-8 Single (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72597/72597.pdf) +Vishay PowerPAK 1212-8 Single +0 +5 +5 +Package_SO +Zetex_SM8 +Zetex, SMD, 8 pin package (http://datasheet.octopart.com/ZDT6758TA-Zetex-datasheet-68057.pdf) +Zetex SM8 +0 +8 +8 +Package_SON +Diodes_PowerDI3333-8 +Diodes Incorporated PowerDI3333-8, Plastic Dual Flat No Lead Package, 3.3x3.3x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8.pdf +PowerDI 0.65 +0 +13 +5 +Package_SON +Diodes_PowerDI3333-8_UXC_3.3x3.3mm_P0.65mm +Diodes Incorporated PowerDI3333-8 UXC, 3.05x3.05x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8%20(Type%20UXC).pdf +PowerDI 0.65 +0 +14 +6 +Package_SON +EPSON_CE-USON-10_USON-10_3.2x2.5mm_P0.7mm +EPSON 2.5x3.7mm, https://www.microcrystal.com/fileadmin/Media/Products/RTC/Datasheet/RV-1805-C3.pdf +RTC +0 +10 +10 +Package_SON +Fairchild_DualPower33-6_3x3mm +Fairchild Power33 MOSFET package, 3x3mm (see https://www.fairchildsemi.com/datasheets/FD/FDMC8032L.pdf) +mosfet +0 +18 +6 +Package_SON +Fairchild_MicroPak-6_1.0x1.45mm_P0.5mm +Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm https://www.nxp.com/docs/en/application-note/AN10343.pdff +Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm +0 +6 +6 +Package_SON +Fairchild_MicroPak2-6_1.0x1.0mm_P0.35mm +Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm https://www.nxp.com/docs/en/application-note/AN10343.pdff +Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm +0 +6 +6 +Package_SON +HUSON-3-1EP_2x2mm_P1.3mm_EP1.1x1.6mm +HUSON, 3 Pin, SOT1061 (Ref: https://assets.nexperia.com/documents/data-sheet/PMEG2020CPA.pdf) +huson nolead SOT1061 +0 +6 +3 +Package_SON +HVSON-8-1EP_3x3mm_P0.65mm_EP1.6x2.4mm +HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/TJA1051.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +HVSON NoLead +0 +13 +9 +Package_SON +HVSON-8-1EP_4x4mm_P0.8mm_EP2.2x3.1mm +HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf (page 57)), generated with kicad-footprint-generator ipc_noLead_generator.py +HVSON NoLead +0 +13 +9 +Package_SON +Infineon_PG-LSON-8-1 +https://www.infineon.com/cms/en/product/packages/PG-LSON/PG-LSON-8-1/ +PG-LSON-8-1 +0 +17 +9 +Package_SON +Infineon_PG-TDSON-8_6.15x5.15mm +Infineon, PG-TDSON-8, 6.15x5.15x1mm, https://www.infineon.com/dgdl/Infineon-BSC520N15NS3_-DS-v02_02-en.pdf?fileId=db3a30432239cccd0122eee57d9b21a4 +Infineon OptiMOS +0 +21 +5 +Package_SON +Infineon_PG-TISON-8-2 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/ +tison +0 +23 +7 +Package_SON +Infineon_PG-TISON-8-3 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/ +tison +0 +23 +7 +Package_SON +Infineon_PG-TISON-8-4 +Infineon, PG-TISON-8-4, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-4/ +tison +0 +26 +8 +Package_SON +Infineon_PG-TISON-8-5 +Infineon, PG-TISON-8-5, 8x8x1.1mm, 1mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-5/ +tison +0 +34 +8 +Package_SON +MicroCrystal_C7_SON-8_1.5x3.2mm_P0.9mm +MicroCrystal C7 SON, 8 Pin (https://www.microcrystal.com/fileadmin/Media/Products/RTC/App.Manual/RV-3028-C7_App-Manual.pdf#page=107), generated with kicad-footprint-generator ipc_noLead_generator.py +MicroCrystal SON NoLead MicroCrystal-RV3028-C7 +0 +8 +8 +Package_SON +NXP_XSON-16 +http://www.nxp.com/documents/outline_drawing/SOT1341-1.pdf +NXP XSON SOT-1341 +0 +16 +16 +Package_SON +Nexperia_HUSON-8_USON-8-1EP_1.35x1.7mm_P0.4mm_EP0.4x1.2mm +Nexperia HUSON-8 USON, 8 Pin (https://assets.nexperia.com/documents/data-sheet/IP4251_52_53_54-TTL.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Nexperia USON NoLead +0 +10 +9 +Package_SON +Nexperia_HUSON-12_USON-12-1EP_1.35x2.5mm_P0.4mm_EP0.4x2mm +Nexperia HUSON-12 USON, 12 Pin (https://assets.nexperia.com/documents/data-sheet/IP4251_52_53_54-TTL.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Nexperia USON NoLead +0 +14 +13 +Package_SON +Nexperia_HUSON-16_USON-16-1EP_1.35x3.3mm_P0.4mm_EP0.4x2.8mm +Nexperia HUSON-16 USON, 16 Pin (https://assets.nexperia.com/documents/data-sheet/IP4251_52_53_54-TTL.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Nexperia USON NoLead +0 +18 +17 +Package_SON +ROHM_VML0806 +VML0806, Rohm (http://rohmfs.rohm.com/en/techdata_basic/transistor/soldering_condition/VML0806_Soldering_Condition.pdf, http://rohmfs.rohm.com/en/products/databook/package/spec/discrete/vml0806_tr-e.pdf) +ROHM VML0806 +0 +3 +3 +Package_SON +RTC_SMD_MicroCrystal_C3_2.5x3.7mm +MicroCrystal C3 2.5x3.7mm, https://www.microcrystal.com/fileadmin/Media/Products/RTC/Datasheet/RV-1805-C3.pdf +RTC C3 +0 +10 +10 +Package_SON +SON-8-1EP_3x2mm_P0.5mm_EP1.4x1.6mm +SON, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +SON NoLead +0 +13 +9 +Package_SON +ST_PowerFLAT-6L_5x6mm_P1.27mm +Thermally-enhanced 5x6mm 6-pin package, https://www.st.com/resource/en/datasheet/stl40dn3llh5.pdf +PowerFLAT5x6 +0 +10 +6 +Package_SON +Texas_DPY0002A_0.6x1mm_P0.65mm +X1SON 2 pin 0.6x1mm 0.375mm height package, https://www.ti.com/lit/ml/mpss034c/mpss034c.pdf, https://www.ti.com/lit/ds/symlink/tpd6e05u06.pdf +X1SON +0 +2 +2 +Package_SON +Texas_DQK +Texas WSON-6 DQK, http://www.ti.com/lit/ds/symlink/csd16301q2.pdf +Texas WSON6 2x2mm +0 +10 +8 +Package_SON +Texas_DQX002A +Texas DQX - 2pin WSON, 2.5x1.7mm body, 0.8mm height. https://www.ti.com/lit/ds/symlink/lmt01.pdf +WSON-2 DQX +0 +2 +2 +Package_SON +Texas_DRC0010J +Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf +Texas VSON10 3x3mm +0 +17 +11 +Package_SON +Texas_DRC0010J_ThermalVias +Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf +Texas VSON10 3x3mm +0 +21 +11 +Package_SON +Texas_DRX_WSON-10_2.5x2.5mm_P0.5mm +Texas DRX WSON, 10 Pin (https://www.ti.com/lit/ml/mpss105a/mpss105a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WSON NoLead +0 +10 +10 +Package_SON +Texas_DSC0010J +3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 DSC0010J WSON +0 +33 +11 +Package_SON +Texas_DSC0010J_ThermalVias +3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 DSC0010J WSON +0 +39 +11 +Package_SON +Texas_PWSON-N6 +Plastic Small Outline No-Lead http://www.ti.com/lit/ml/mpds176e/mpds176e.pdf +Plastic Small Outline No-Lead +0 +11 +7 +Package_SON +Texas_R-PUSON-N8_USON-8-1EP_1.6x2.1mm_P0.5mm_EP0.4x1.7mm +USON, 8 Pin (https://www.ti.com/lit/gpn/tpd3f303#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +USON NoLead +0 +10 +9 +Package_SON +Texas_R-PUSON-N14 +USON, 14 Pin (https://www.ti.com/lit/ds/symlink/tpd6e05u06.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +USON NoLead +0 +14 +14 +Package_SON +Texas_R-PWSON-N12_EP0.4x2mm +http://www.ti.com/lit/ds/symlink/tpd6f003.pdf +WSON SMD +0 +16 +13 +Package_SON +Texas_S-PDSO-N12 +http://www.ti.com/lit/ds/symlink/bq27441-g1.pdf +SON thermal pads +0 +44 +13 +Package_SON +Texas_S-PVSON-N8 +8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf +DFN 0.65 S-PVSON-N8 +0 +21 +9 +Package_SON +Texas_S-PVSON-N8_ThermalVias +8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf +DFN 0.65 S-PVSON-N8 +0 +27 +9 +Package_SON +Texas_S-PVSON-N10 +3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 S-PVSON-N10 DRC +0 +33 +11 +Package_SON +Texas_S-PVSON-N10_ThermalVias +3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 S-PVSON-N10 DRC +0 +39 +11 +Package_SON +Texas_S-PWSON-N8_EP1.2x2mm +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +11 +9 +Package_SON +Texas_S-PWSON-N8_EP1.2x2mm_ThermalVias +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +18 +9 +Package_SON +Texas_S-PWSON-N10 +3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf +0.5 S-PWSON-N10 DSC +0 +41 +11 +Package_SON +Texas_S-PWSON-N10_ThermalVias +3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf +0.5 S-PWSON-N10 DSC +0 +47 +11 +Package_SON +Texas_USON-6_1x1.45mm_P0.5mm_SMD +USON, 6 Pin (https://www.ti.com/lit/ds/symlink/sn74auc1g04.pdf#page=24), Solder Mask Defined +USON NoLead DRY0006A +0 +6 +6 +Package_SON +Texas_VSON-HR-8_1.5x2mm_P0.5mm +Texas VSON-HR, 8 Pin (http://www.ti.com/lit/ds/symlink/tps62823.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VSON-HR NoLead +0 +8 +8 +Package_SON +Texas_X2SON-4_1x1mm_P0.65mm +X2SON 5 pin 1x1mm package (Reference Datasheet: http://www.ti.com/lit/ds/sbvs193d/sbvs193d.pdf Reference part: TPS383x) [StepUp generated footprint] +X2SON +0 +13 +5 +Package_SON +Texas_X2SON-5_0.8x0.8mm_P0.48mm +X2SON 5 pin 0.8x0.8mm package (Reference Datasheet: https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=39 Reference part: SN74LVC1G17) [StepUp generated footprint] +X2SON DPW0005A +0 +9 +5 +Package_SON +Texas_X2SON-5_0.8x0.8mm_P0.48mm_RoutingVia +X2SON 5 pin 0.8x0.8mm package (Reference Datasheet: https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=39 Reference part: SN74LVC1G17) [StepUp generated footprint] +X2SON DPW0005A +0 +10 +5 +Package_SON +USON-10_2.5x1.0mm_P0.5mm +USON-10 2.5x1.0mm_ Pitch 0.5mm http://www.ti.com/lit/ds/symlink/tpd4e02b04.pdf +USON-10 2.5x1.0mm Pitch 0.5mm +0 +10 +10 +Package_SON +USON-20_2x4mm_P0.4mm +USON-20 2x4mm Pitch 0.4mm http://www.ti.com/lit/ds/symlink/txb0108.pdf +USON-20 2x4mm Pitch 0.4mm +0 +20 +20 +Package_SON +VSON-8-1EP_3x3mm_P0.65mm_EP1.65x2.4mm +VSON, 8 Pin (https://www.ti.com/lit/ds/symlink/tlv767-q1.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +10 +9 +Package_SON +VSON-8-1EP_3x3mm_P0.65mm_EP1.65x2.4mm_ThermalVias +VSON, 8 Pin (https://www.ti.com/lit/ds/symlink/tlv767-q1.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +17 +9 +Package_SON +VSON-8_1.5x2mm_P0.5mm +VSON, 8 Pin (http://www.ti.com/lit/ds/symlink/tps62840.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +8 +8 +Package_SON +VSON-8_3.3x3.3mm_P0.65mm_NexFET +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3.3x3.3x1 mm Body [VSON] http://www.ti.com/lit/ds/symlink/csd87334q3d.pdf +VSON 0.65 +0 +13 +5 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm +VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +15 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias +VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +18 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm +0 +21 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm_ThermalVias +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm +0 +27 +11 +Package_SON +VSONP-8-1EP_5x6_P1.27mm +SON, 8-Leads, Body 5x6x1mm, Pitch 1.27mm; (see Texas Instruments CSD18531Q5A http://www.ti.com/lit/ds/symlink/csd18531q5a.pdf) +VSONP 1.27 +0 +13 +3 +Package_SON +WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +9 +7 +Package_SON +WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm_ThermalVias +WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +12 +7 +Package_SON +WSON-6-1EP_3x3mm_P0.95mm +WSON6 3*3 MM, 0.95 PITCH; http://www.ti.com/lit/ds/symlink/lmr62421.pdf +WSON6 0.95 +0 +10 +7 +Package_SON +WSON-6_1.5x1.5mm_P0.5mm +WSON6, http://www.ti.com/lit/ds/symlink/tlv702.pdf +WSON6_1.5x1.5mm_P0.5mm +0 +6 +6 +Package_SON +WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf +WSON 8 1EP +0 +11 +9 +Package_SON +WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm_ThermalVias +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf +WSON 8 1EP ThermalVias +0 +14 +9 +Package_SON +WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack +WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack_ThermalVias +WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +18 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.2x2mm +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +11 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +18 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.6x2.0mm +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf +WSON 8 1EP +0 +13 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina333.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +11 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina333.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +18 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP1.98x3mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lm5017.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP1.98x3mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lm5017.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.2x3mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2987.pdf#page=26), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.2x3mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2987.pdf#page=26), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.6x3mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2951-n.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.6x3mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2951-n.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +9 +Package_SON +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm +WSON, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf (page 68)), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4mm +WSON, 8 Pin (http://ww1.microchip.com/downloads/en/AppNotes/S72030.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_8x6mm_P1.27mm_EP3.4x4.3mm +WSON, 8 Pin (https://datasheet.lcsc.com/lcsc/2204011730_GigaDevice-Semicon-Beijing-GD5F1GQ4UFYIGR_C2986324.pdf (page 44)), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm +WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +15 +11 +Package_SON +WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm_ThermalVias +WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +22 +11 +Package_SON +WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm +WSON-10 package 2x3mm body, pitch 0.5mm, see http://www.ti.com/lit/ds/symlink/tps62177.pdf +WSON 0.5 +0 +14 +11 +Package_SON +WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm_ThermalVias +WSON-10 package 2x3mm body, pitch 0.5mm, thermal vias and counter-pad, see http://www.ti.com/lit/ds/symlink/tps62177.pdf +WSON 0.5 thermal vias +0 +17 +11 +Package_SON +WSON-10-1EP_4x3mm_P0.5mm_EP2.2x2mm +10-Lead Plastic WSON, 4x3mm Body, 0.5mm Pitch (http://www.ti.com/lit/ds/symlink/lm4990.pdf) +WSON 0.5 +0 +15 +11 +Package_SON +WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65 +WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf +WSON-12 +0 +15 +13 +Package_SON +WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65_ThermalVias +WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf +WSON-12 +0 +19 +13 +Package_SON +WSON-12-1EP_3x3mm_P0.5mm_EP1.5x2.5mm +WSON, 12 Pin (https://www.ti.com/lit/ds/symlink/tps63710.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +13 +Package_SON +WSON-12-1EP_3x3mm_P0.5mm_EP1.5x2.5mm_ThermalVias +WSON, 12 Pin (https://www.ti.com/lit/ds/symlink/tps63710.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +24 +13 +Package_SON +WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm +WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +13 +Package_SON +WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm_ThermalVias +WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +27 +13 +Package_SON +WSON-14-1EP_4.0x4.0mm_P0.5mm_EP2.6x2.6mm +14-Lead Plastic Dual Flat, No Lead Package - 4.0x4.0x0.8 mm Body [WSON], http://www.ti.com/lit/ml/mpds421/mpds421.pdf +NHL014B +0 +19 +15 +Package_SON +WSON-16_3.3x1.35_P0.4mm +WSON-16 3.3 x 1.35mm Pitch 0.4mm http://www.chip.tomsk.ru/chip/chipdoc.nsf/Package/C67E729A4D6C883A4725793E004C8739!OpenDocument +WSON-16 3.3 x 1.35mm Pitch 0.4mm +0 +20 +17 +Package_SON +Winbond_USON-8-1EP_3x2mm_P0.5mm_EP0.2x1.6mm +Winbond USON, 8 Pin (https://www.lcsc.com/datasheet/lcsc_datasheet_2205122030_Winbond-Elec-W25Q16JVUXIQ_C2843335.pdf#page=66f), generated with kicad-footprint-generator ipc_noLead_generator.py +Winbond USON NoLead +0 +10 +9 +Package_SON +X2SON-8_1.4x1mm_P0.35mm +X2SON-8 1.4x1mm Pitch0.35mm http://www.ti.com/lit/ds/symlink/pca9306.pdf +X2SON-8 1.4x1mm Pitch0.35mm +0 +8 +8 +Package_SO_J-Lead +TSOC-6_3.76x3.94mm_P1.27mm +Maxim Integrated TSOC-6 D6+1,https://datasheets.maximintegrated.com/en/ds/DS2401.pdf, https://pdfserv.maximintegrated.com/land_patterns/90-0321.PDF +TSOC-6 +0 +6 +6 +Package_TO_SOT_SMD +ATPAK-2 +ATPAK SMD package, http://www.onsemi.com/pub/Collateral/ENA2192-D.PDF +ATPAK +0 +7 +3 +Package_TO_SOT_SMD +Analog_KS-4 +Analog Devices KS-4, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sc70ks/ks_4.pdf +Analog Devices KS-4 (like EIAJ SC-82) +0 +4 +4 +Package_TO_SOT_SMD +Diodes_SOT-553 +Diodes SOT-553, https://www.diodes.com/assets/Package-Files/SOT553.pdf +SOT-553 +0 +5 +5 +Package_TO_SOT_SMD +HVSOF5 +HVSOF5, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof5_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/sensor/hall/bu52001gul-e.pdf +HVSOF5 +0 +5 +5 +Package_TO_SOT_SMD +HVSOF6 +HVSOF6, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof6_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/audio_video/video_amplifier/bh76106hfv-e.pdf +HVSOF6 +0 +7 +7 +Package_TO_SOT_SMD +Infineon_PG-HDSOP-10-1 +Infineon PG-HDSOP-10-1 (DDPAK), 20.96x6.5x2.3mm, slug up (https://www.infineon.com/cms/en/product/packages/PG-HDSOP/PG-HDSOP-10-1/) +hdsop 10 ddpak +0 +10 +10 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-1 +HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/) +mosfet hsof toll +0 +53 +3 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-1_ThermalVias +HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/) +mosfet hsof toll thermal vias +0 +96 +3 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2 +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/) +mosfet hsof toll +0 +12 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2_ThermalVias +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/) +mosfet hsof toll thermal vias +0 +97 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2_ThermalVias2 +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/, https://www.infineon.com/dgdl/Infineon-ApplicationNote_600V_CoolMOS_C7_Gold_TOLL-AN-v01_00-EN.pdf?fileId=5546d4625b10283a015b144a1af70df6) +mosfet hsof toll thermal vias +0 +159 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-3 +HSOF-8-3 power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-3/) +mosfet hsof +0 +25 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-3_ThermalVias +HSOF-8-3 power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-3/) +mosfet hsof +0 +64 +4 +Package_TO_SOT_SMD +Infineon_PG-TO-220-7Lead_TabPin8 +Infineon PG-TO-220-7, Tab as Pin 8, see e.g. https://www.infineon.com/dgdl/Infineon-BTS50055-1TMC-DS-v01_00-EN.pdf?fileId=5546d4625a888733015aa9b0007235e9 +Infineon PG-TO-220-7 +0 +12 +8 +Package_TO_SOT_SMD +Infineon_PG-TSFP-3-1 +Infineon_PG-TSFP-3-1, https://www.infineon.com/dgdl/TSFP-3-1,-2-Package_Overview.pdf?fileId=db3a30431936bc4b0119539929863d46 +TSFP-3 +0 +3 +3 +Package_TO_SOT_SMD +LFPAK33 +LFPAK33 SOT-1210 https://assets.nexperia.com/documents/outline-drawing/SOT1210.pdf +LFPAK33 SOT-1210 +0 +17 +5 +Package_TO_SOT_SMD +LFPAK56 +LFPAK56 https://assets.nexperia.com/documents/outline-drawing/SOT669.pdf +LFPAK56 SOT-669 Power-SO8 +0 +18 +5 +Package_TO_SOT_SMD +LFPAK88 +LFPAK88 PowerPAK 8 x 8L BWL Single SOT-1235 (https://assets.nexperia.com/documents/package-information/SOT1235.pdf) +PowerPAK 8x8L Nexperia Vishay +0 +19 +5 +Package_TO_SOT_SMD +Nexperia_CFP15_SOT-1289 +Nexperia CFP15 (SOT-1289), https://assets.nexperia.com/documents/outline-drawing/SOT1289.pdf +SOT-1289 CFP15 +0 +8 +3 +Package_TO_SOT_SMD +OnSemi_ECH8 +On Semiconductor ECH8, https://www.onsemi.com/pub/Collateral/318BF.PDF +ECH8 SOT28-FL SOT-28-FL +0 +8 +8 +Package_TO_SOT_SMD +PQFN_8x8 +Low Profile 8x8mm PQFN, Dual Cool 88, https://www.onsemi.com/pub/Collateral/FDMT80080DC-D.pdf +pqfn vdfn mosfet +0 +9 +3 +Package_TO_SOT_SMD +PowerMacro_M234_NoHole +TO-50-4 Power Macro Package Style M234 +TO-50-4 Power Macro Package Style M234 +0 +4 +4 +Package_TO_SOT_SMD +PowerMacro_M234_WithHole +TO-50-4 Power Macro Package Style M234 +TO-50-4 Power Macro Package Style M234 +0 +4 +4 +Package_TO_SOT_SMD +ROHM_SOT-457_ClockwisePinNumbering +ROHM SOT-457 SC-74, 6 Pin (https://fscdn.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/imh3at110-e.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +ROHM SC-74 SO +0 +6 +6 +Package_TO_SOT_SMD +Rohm_HRP7 +Rohm HRP7 SMD package, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hrp7_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/motor/dc/bd621x-e.pdf +Rohm HRP7 SMD +0 +69 +7 +Package_TO_SOT_SMD +SC-59 +SC-59, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg +SC-59 +0 +3 +3 +Package_TO_SOT_SMD +SC-59_Handsoldering +SC-59, hand-soldering varaint, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg +SC-59 hand-soldering +0 +3 +3 +Package_TO_SOT_SMD +SC-70-8 +SC70-8 +SC70-8 +0 +8 +8 +Package_TO_SOT_SMD +SC-70-8_Handsoldering +SC70-8, Handsoldering +SC70-8 Handsoldering +0 +8 +8 +Package_TO_SOT_SMD +SC-74-6_1.55x2.9mm_P0.95mm +SC-74, 6 Pin (https://www.jeita.or.jp/japanese/standard/book/ED-7500B/#target/page_no=39), generated with kicad-footprint-generator ipc_gullwing_generator.py +SC-74 SO +0 +6 +6 +Package_TO_SOT_SMD +SC-74A-5_1.55x2.9mm_P0.95mm +SC-74A, 5 Pin (https://www.jeita.or.jp/japanese/standard/book/ED-7500B/#target/page_no=41), generated with kicad-footprint-generator ipc_gullwing_generator.py +SC-74A SO +0 +5 +5 +Package_TO_SOT_SMD +SC-82AA +SC-82AA +SC-82AA +0 +4 +4 +Package_TO_SOT_SMD +SC-82AA_Handsoldering +SC-82AA +SC-82AA +0 +4 +4 +Package_TO_SOT_SMD +SC-82AB +SC-82AB +SC-82AB +0 +4 +4 +Package_TO_SOT_SMD +SC-82AB_Handsoldering +SC-82AB +SC-82AB +0 +4 +4 +Package_TO_SOT_SMD +SOT-23 +SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +3 +3 +Package_TO_SOT_SMD +SOT-23-3 +SOT, 3 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178D.PDF inferred 3-pin variant), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +3 +3 +Package_TO_SOT_SMD +SOT-23-5 +SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +5 +5 +Package_TO_SOT_SMD +SOT-23-5_HandSoldering +5-pin SOT23 package +SOT-23-5 hand-soldering +0 +5 +5 +Package_TO_SOT_SMD +SOT-23-6 +SOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +6 +6 +Package_TO_SOT_SMD +SOT-23-6_Handsoldering +6-pin SOT-23 package, Handsoldering +SOT-23-6 Handsoldering +0 +6 +6 +Package_TO_SOT_SMD +SOT-23-8 +SOT, 8 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +8 +8 +Package_TO_SOT_SMD +SOT-23-8_Handsoldering +8-pin SOT-23 package, Handsoldering, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sot-23rj/rj_8.pdf +SOT-23-8 Handsoldering +0 +8 +8 +Package_TO_SOT_SMD +SOT-23W +SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3 +SOT-23W +0 +3 +3 +Package_TO_SOT_SMD +SOT-23W_Handsoldering +SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3 +SOT-23W for handsoldering +0 +3 +3 +Package_TO_SOT_SMD +SOT-23_Handsoldering +SOT-23, Handsoldering +SOT-23 +0 +3 +3 +Package_TO_SOT_SMD +SOT-89-3 +SOT-89-3, http://ww1.microchip.com/downloads/en/DeviceDoc/3L_SOT-89_MB_C04-029C.pdf +SOT-89-3 +0 +3 +3 +Package_TO_SOT_SMD +SOT-89-3_Handsoldering +SOT-89-3 Handsoldering +SOT-89-3 Handsoldering +0 +3 +3 +Package_TO_SOT_SMD +SOT-89-5 +SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf +SOT-89-5 +0 +5 +5 +Package_TO_SOT_SMD +SOT-89-5_Handsoldering +SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf +SOT-89-5 +0 +5 +5 +Package_TO_SOT_SMD +SOT-143 +SOT-143 https://www.nxp.com/docs/en/package-information/SOT143B.pdf +SOT-143 +0 +4 +4 +Package_TO_SOT_SMD +SOT-143R +SOT-143R, reverse pinning, https://www.nxp.com/docs/en/package-information/SOT143R.pdf +SOT-143R Reverse +0 +4 +4 +Package_TO_SOT_SMD +SOT-143R_Handsoldering +SOT-143R, reverse pinning, Handsoldering, https://www.nxp.com/docs/en/package-information/SOT143R.pdf +SOT-143 Reverse Handsoldering +0 +4 +4 +Package_TO_SOT_SMD +SOT-143_Handsoldering +SOT-143 Handsoldering https://www.nxp.com/docs/en/package-information/SOT143B.pdf +SOT-143 Handsoldering +0 +4 +4 +Package_TO_SOT_SMD +SOT-223 +module CMS SOT223 4 pins +CMS SOT +0 +4 +4 +Package_TO_SOT_SMD +SOT-223-3_TabPin2 +module CMS SOT223 4 pins +CMS SOT +0 +4 +3 +Package_TO_SOT_SMD +SOT-223-5 +module CMS SOT223 5 pins, http://ww1.microchip.com/downloads/en/DeviceDoc/51751a.pdf +CMS SOT +0 +5 +5 +Package_TO_SOT_SMD +SOT-223-6 +module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf +CMS SOT +0 +6 +6 +Package_TO_SOT_SMD +SOT-223-6_TabPin3 +module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf +CMS SOT +0 +6 +5 +Package_TO_SOT_SMD +SOT-223-8 +module CMS SOT223 8 pins, https://www.diodes.com/assets/Datasheets/ZXSBMR16PT8.pdf +CMS SOT +0 +8 +8 +Package_TO_SOT_SMD +SOT-323_SC-70 +SOT-323, SC-70 +SOT-323 SC-70 +0 +3 +3 +Package_TO_SOT_SMD +SOT-323_SC-70_Handsoldering +SOT-323, SC-70 Handsoldering +SOT-323 SC-70 Handsoldering +0 +3 +3 +Package_TO_SOT_SMD +SOT-343_SC-70-4 +SOT-343, SC-70-4 +SOT-343 SC-70-4 +0 +4 +4 +Package_TO_SOT_SMD +SOT-343_SC-70-4_Handsoldering +SOT-343, SC-70-4, Handsoldering +SOT-343 SC-70-4 Handsoldering +0 +4 +4 +Package_TO_SOT_SMD +SOT-353_SC-70-5 +SOT-353, SC-70-5 +SOT-353 SC-70-5 +0 +5 +5 +Package_TO_SOT_SMD +SOT-353_SC-70-5_Handsoldering +SOT-353, SC-70-5, Handsoldering +SOT-353 SC-70-5 Handsoldering +0 +5 +5 +Package_TO_SOT_SMD +SOT-363_SC-70-6 +SOT-363, SC-70-6 +SOT-363 SC-70-6 +0 +6 +6 +Package_TO_SOT_SMD +SOT-363_SC-70-6_Handsoldering +SOT-363, SC-70-6, Handsoldering +SOT-363 SC-70-6 Handsoldering +0 +6 +6 +Package_TO_SOT_SMD +SOT-383F +8-pin SOT-383F, http://www.mouser.com/ds/2/80/CPDVR085V0C-HF-RevB-10783.pdf +SOT-383F +0 +9 +9 +Package_TO_SOT_SMD +SOT-383FL +8-pin SOT-383FL package, http://www.onsemi.com/pub_link/Collateral/ENA2267-D.PDF +SOT-383FL +0 +8 +8 +Package_TO_SOT_SMD +SOT-416 +SOT-416, https://www.nxp.com/docs/en/package-information/SOT416.pdf +SOT-416 +0 +3 +3 +Package_TO_SOT_SMD +SOT-523 +SOT523, https://www.diodes.com/assets/Package-Files/SOT523.pdf +SOT-523 +0 +3 +3 +Package_TO_SOT_SMD +SOT-543 +SOT-543 4 lead surface package +SOT-543 SC-107A EMD4 +0 +4 +4 +Package_TO_SOT_SMD +SOT-553 +SOT553 +SOT-553 +0 +5 +5 +Package_TO_SOT_SMD +SOT-563 +SOT563 +SOT-563 +0 +6 +6 +Package_TO_SOT_SMD +SOT-583-8 +https://www.ti.com/lit/ds/symlink/tps62933.pdf +SOT-583-8 +0 +8 +8 +Package_TO_SOT_SMD +SOT-665 +SOT665 +SOT-665 +0 +5 +5 +Package_TO_SOT_SMD +SOT-666 +SOT666 +SOT-666 +0 +6 +6 +Package_TO_SOT_SMD +SOT-723 +http://toshiba.semicon-storage.com/info/docget.jsp?did=5879&prodName=RN1104MFV +sot 723 +0 +3 +3 +Package_TO_SOT_SMD +SOT-883 +SOT-883, https://assets.nexperia.com/documents/outline-drawing/SOT883.pdf +SOT-883 +0 +3 +3 +Package_TO_SOT_SMD +SOT-886 +SOT-886 +SOT-886 +0 +6 +6 +Package_TO_SOT_SMD +SOT-963 +SOT 963 6 pins package 1x0.8mm pitch 0.35mm +SOT 963 6 pins package 1x0.8mm pitch 0.35mm +0 +6 +6 +Package_TO_SOT_SMD +SOT-1123 +SOT-1123 small outline transistor (see http://www.onsemi.com/pub/Collateral/NST3906F3-D.PDF) +SOT-1123 transistor +0 +3 +3 +Package_TO_SOT_SMD +SOT-1333-1 +SOT-1333-1 +SOT-1333-1 +0 +9 +9 +Package_TO_SOT_SMD +SOT-1334-1 +SOT-1334-1 +SOT-1334-1 +0 +14 +14 +Package_TO_SOT_SMD +SuperSOT-3 +3-pin SuperSOT package https://www.fairchildsemi.com/package-drawings/MA/MA03B.pdf +SuperSOT-3 SSOT-3 +0 +3 +3 +Package_TO_SOT_SMD +SuperSOT-6 +6-pin SuperSOT package http://www.mouser.com/ds/2/149/FMB5551-889214.pdf +SuperSOT-6 SSOT-6 +0 +6 +6 +Package_TO_SOT_SMD +SuperSOT-8 +8-pin SuperSOT package, http://www.icbank.com/icbank_data/semi_package/ssot8_dim.pdf +SuperSOT-8 SSOT-8 +0 +8 +8 +Package_TO_SOT_SMD +TDSON-8-1 +Power MOSFET package, TDSON-8-1, 5.15x5.9mm (https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/) +tdson +0 +14 +5 +Package_TO_SOT_SMD +TO-50-3_LongPad-NoHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_LongPad-WithHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_ShortPad-NoHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_ShortPad-WithHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-4_LongPad-NoHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_LongPad-WithHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_ShortPad-NoHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_ShortPad-WithHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-252-2 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +7 +3 +Package_TO_SOT_SMD +TO-252-2_TabPin1 +TO-252-2, tab to pin 1 https://www.wolfspeed.com/media/downloads/87/CSD01060.pdf +TO-252-2 diode +0 +7 +2 +Package_TO_SOT_SMD +TO-252-3_TabPin2 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +8 +3 +Package_TO_SOT_SMD +TO-252-3_TabPin4 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +8 +4 +Package_TO_SOT_SMD +TO-252-4 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +9 +5 +Package_TO_SOT_SMD +TO-252-5_TabPin3 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +10 +5 +Package_TO_SOT_SMD +TO-252-5_TabPin6 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +10 +6 +Package_TO_SOT_SMD +TO-263-2 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +7 +3 +Package_TO_SOT_SMD +TO-263-2_TabPin1 +TO-263 / D2PAK / DDPAK SMD package, tab to pin 1, https://www.wolfspeed.com/media/downloads/137/C3D06060G.pdf +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 diode +0 +7 +2 +Package_TO_SOT_SMD +TO-263-3_TabPin2 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +8 +3 +Package_TO_SOT_SMD +TO-263-3_TabPin4 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +8 +4 +Package_TO_SOT_SMD +TO-263-4 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +9 +5 +Package_TO_SOT_SMD +TO-263-5_TabPin3 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +10 +5 +Package_TO_SOT_SMD +TO-263-5_TabPin6 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +10 +6 +Package_TO_SOT_SMD +TO-263-6 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +11 +7 +Package_TO_SOT_SMD +TO-263-7_TabPin4 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +12 +7 +Package_TO_SOT_SMD +TO-263-7_TabPin8 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +12 +8 +Package_TO_SOT_SMD +TO-263-9_TabPin5 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +14 +9 +Package_TO_SOT_SMD +TO-263-9_TabPin10 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +14 +10 +Package_TO_SOT_SMD +TO-268-2 +TO-268/D3PAK SMD package, http://www.icbank.com/icbank_data/semi_package/to268aa_dim.pdf +D3PAK TO-268 D3PAK-3 TO-268-3 +0 +7 +3 +Package_TO_SOT_SMD +TO-269AA +SMD package TO-269AA (e.g. diode bridge), see http://www.vishay.com/docs/88854/padlayouts.pdf +TO-269AA MBS diode bridge +0 +4 +4 +Package_TO_SOT_SMD +TO-277A +Thermal enhanced ultra thin SMD package; 3 leads; body: 4.3x6.1x0.43mm, https://www.vishay.com/docs/95570/to-277asmpc.pdf +TO-277A SMPC +0 +12 +3 +Package_TO_SOT_SMD +TO-277B +TO-227B https://media.digikey.com/pdf/Data%20Sheets/Littelfuse%20PDFs/DST2050S.pdf +TO-277B +0 +9 +3 +Package_TO_SOT_SMD +TSOT-23 +3-pin TSOT23 package, http://www.analog.com.tw/pdf/All_In_One.pdf +TSOT-23 +0 +3 +3 +Package_TO_SOT_SMD +TSOT-23-5 +TSOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOT TO_SOT_SMD +0 +5 +5 +Package_TO_SOT_SMD +TSOT-23-5_HandSoldering +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf +TSOT-23-5 Hand-soldering +0 +5 +5 +Package_TO_SOT_SMD +TSOT-23-6 +TSOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOT TO_SOT_SMD +0 +6 +6 +Package_TO_SOT_SMD +TSOT-23-6_HandSoldering +6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf +TSOT-23-6 MK06A TSOT-6 Hand-soldering +0 +6 +6 +Package_TO_SOT_SMD +TSOT-23-8 +TSOT, 8 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOT TO_SOT_SMD +0 +8 +8 +Package_TO_SOT_SMD +TSOT-23-8_HandSoldering +8-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_8_05-08-1637.pdf +TSOT-23-8 Hand-soldering +0 +8 +8 +Package_TO_SOT_SMD +TSOT-23_HandSoldering +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf +TSOT-23 Hand-soldering +0 +3 +3 +Package_TO_SOT_SMD +Texas_DRT-3 +Texas Instrument DRT-3 1x0.8mm Pitch 0.7mm http://www.ti.com/lit/ds/symlink/tpd2eusb30.pdf +DRT-3 1x0.8mm Pitch 0.7mm +0 +3 +3 +Package_TO_SOT_SMD +Texas_NDQ +Texas Instruments, NDQ, 5 pin (https://www.ti.com/lit/ml/mmsf022/mmsf022.pdf) +ti pfm dap +0 +6 +6 +Package_TO_SOT_SMD +Texas_NDW-7_TabPin4 +NDW0007A SMD package, http://www.ti.com/lit/ml/mmsf024/mmsf024.pdf +NDW NDW +0 +12 +7 +Package_TO_SOT_SMD +Texas_NDW-7_TabPin8 +NDW0007A SMD package, http://www.ti.com/lit/ml/mmsf024/mmsf024.pdf +NDW NDW +0 +12 +8 +Package_TO_SOT_SMD +Texas_NDY0011A +TO-PMOD-11 11-pin switching regulator package, http://www.ti.com/lit/ml/mmsf025/mmsf025.pdf +Texas TO-PMOD NDY00011A +0 +12 +12 +Package_TO_SOT_SMD +Texas_R-PDSO-G5_DCK-5 +DCK R-PDSO-G5, JEDEC MO-203C Var AA, https://www.ti.com/lit/ds/symlink/tmp20.pdf#page=23 +DCK R-PDSO-G5 MO-203C +0 +5 +5 +Package_TO_SOT_SMD +Texas_R-PDSO-G6 +R-PDSO-G6, http://www.ti.com/lit/ds/slis144b/slis144b.pdf +R-PDSO-G6 SC-70-6 +0 +6 +6 +Package_TO_SOT_SMD +Texas_R-PDSO-N5_DRL-5 +R-PDSO-N5, DRL, JEDEC MO-293B Var UAAD-1, https://www.ti.com/lit/ml/mpds158d/mpds158d.pdf +SOT R-PDSO-N5 DRL +0 +5 +5 +Package_TO_SOT_SMD +Texas_R-PDSO-N6_DRL-6 +R-PDSO-N6, DRL, similar to JEDEC MO-293B Var UAAD (but not the same) , https://www.ti.com/lit/pdf/mpds159f +SOT R-PDSO-N6 DRL +0 +6 +6 +Package_TO_SOT_SMD +VSOF5 +VSOF5 +VSOF5 +0 +5 +5 +Package_TO_SOT_SMD +Vishay_PowerPAK_SC70-6L_Dual +Vishay PowerPAK SC70 dual transistor package http://www.vishay.com/docs/70487/70487.pdf +powerpak sc70 sc-70 dual +0 +8 +6 +Package_TO_SOT_SMD +Vishay_PowerPAK_SC70-6L_Single +Vishay PowerPAK SC70 single transistor package http://www.vishay.com/docs/70486/70486.pdf +powerpak sc70 sc-70 +0 +6 +3 +Package_TO_SOT_THT +Analog_TO-46-4_ThermalShield +TO-46-4 with Valox case, based on https://www.analog.com/media/en/technical-documentation/data-sheets/199399fc.pdf +TO-46-4 LM399 +0 +4 +4 +Package_TO_SOT_THT +Fairchild_TO-220F-6L +Fairchild TO-220F-6L, http://www.mouser.com/ds/2/149/FSL136MRT-113334.pdf +Fairchild TO-220F-6L +0 +6 +6 +Package_TO_SOT_THT +Heraeus_TO-92-2 +TO-92 2-pin variant by Heraeus, drill 0.75mm (http://www.produktinfo.conrad.com/datenblaetter/175000-199999/181293-da-01-de-TO92_Temperatursensor_PT1000_32209225.pdf) +to-92 +0 +2 +2 +Package_TO_SOT_THT +NEC_Molded_7x4x9mm +Molded Japan Transistor Package 7x4x9mm^3, http://rtellason.com/transdata/2sb734.pdf +Japan transistor +0 +3 +3 +Package_TO_SOT_THT +PowerIntegrations_TO-220-7C +Non Isolated Modified TO-220 7pin Package, see http://www.farnell.com/datasheets/5793.pdf +Power Integration Y Package +0 +6 +6 +Package_TO_SOT_THT +SIPAK-1EP_Horizontal_TabDown +SIPAK, Horizontal, RM 2.286mm +SIPAK Horizontal RM 2.286mm +0 +4 +4 +Package_TO_SOT_THT +SIPAK_Vertical +SIPAK, Vertical, RM 2.286mm +SIPAK Vertical RM 2.286mm +0 +3 +3 +Package_TO_SOT_THT +SOD-70_P2.54mm +Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf [StepUp generated footprint] +Sod-70 +0 +2 +2 +Package_TO_SOT_THT +SOD-70_P5.08mm +Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf [StepUp generated footprint] +Sod-70 +0 +2 +2 +Package_TO_SOT_THT +SOT-227 +SOT-227 / SOT-227B / ISOTOP, M4 mounting screws (https://www.vishay.com/docs/95423/sot227g2.pdf, https://www.vishay.com/docs/95793/vs-fc420sa10.pdf) +sot 227 isotop +0 +8 +4 +Package_TO_SOT_THT +TO-3 +Transistor TO-3 +TR TO-3 TO3 TO-204 +0 +4 +3 +Package_TO_SOT_THT +TO-3P-3_Horizontal_TabDown +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3P-3_Horizontal_TabUp +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3P-3_Vertical +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3PB-3_Horizontal_TabDown +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3PB-3_Horizontal_TabUp +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3PB-3_Vertical +TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-5-2 +TO-5-2 +TO-5-2 +0 +2 +2 +Package_TO_SOT_THT +TO-5-2_Window +TO-5-2_Window, Window +TO-5-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-5-3 +TO-5-3 +TO-5-3 +0 +3 +3 +Package_TO_SOT_THT +TO-5-3_Window +TO-5-3_Window, Window +TO-5-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-5-4 +TO-5-4 +TO-5-4 +0 +4 +4 +Package_TO_SOT_THT +TO-5-4_Window +TO-5-4_Window, Window +TO-5-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-5-6 +TO-5-6 +TO-5-6 +0 +6 +6 +Package_TO_SOT_THT +TO-5-6_Window +TO-5-6_Window, Window +TO-5-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-5-8 +TO-5-8 +TO-5-8 +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_PD5.08 +TO-5-8_PD5.08 +TO-5-8_PD5.08 +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_PD5.08_Window +TO-5-8_PD5.08_Window, Window +TO-5-8_PD5.08_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_Window +TO-5-8_Window, Window +TO-5-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-5-10 +TO-5-10 +TO-5-10 +0 +10 +10 +Package_TO_SOT_THT +TO-5-10_Window +TO-5-10_Window, Window +TO-5-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-8-2 +TO-8-2 +TO-8-2 +0 +2 +2 +Package_TO_SOT_THT +TO-8-2_Window +TO-8-2_Window, Window +TO-8-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-8-3 +TO-8-3 +TO-8-3 +0 +3 +3 +Package_TO_SOT_THT +TO-8-3_Window +TO-8-3_Window, Window +TO-8-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-11-2 +TO-11-2 +TO-11-2 +0 +2 +2 +Package_TO_SOT_THT +TO-11-2_Window +TO-11-2_Window, Window +TO-11-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-11-3 +TO-11-3 +TO-11-3 +0 +3 +3 +Package_TO_SOT_THT +TO-11-3_Window +TO-11-3_Window, Window +TO-11-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-12-4 +TO-12-4 +TO-12-4 +0 +4 +4 +Package_TO_SOT_THT +TO-12-4_Window +TO-12-4_Window, Window +TO-12-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-17-4 +TO-17-4 +TO-17-4 +0 +4 +4 +Package_TO_SOT_THT +TO-17-4_Window +TO-17-4_Window, Window +TO-17-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-18-2 +TO-18-2 +TO-18-2 +0 +2 +2 +Package_TO_SOT_THT +TO-18-2_Lens +TO-18-2_Lens, Lens +TO-18-2_Lens Lens +0 +2 +2 +Package_TO_SOT_THT +TO-18-2_Window +TO-18-2_Window, Window +TO-18-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-18-3 +TO-18-3 +TO-18-3 +0 +3 +3 +Package_TO_SOT_THT +TO-18-3_Lens +TO-18-3_Lens, Lens +TO-18-3_Lens Lens +0 +3 +3 +Package_TO_SOT_THT +TO-18-3_Window +TO-18-3_Window, Window +TO-18-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-18-4 +TO-18-4 +TO-18-4 +0 +4 +4 +Package_TO_SOT_THT +TO-18-4_Lens +TO-18-4_Lens, Lens +TO-18-4_Lens Lens +0 +4 +4 +Package_TO_SOT_THT +TO-18-4_Window +TO-18-4_Window, Window +TO-18-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-33-4 +TO-33-4 +TO-33-4 +0 +4 +4 +Package_TO_SOT_THT +TO-33-4_Window +TO-33-4_Window, Window +TO-33-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-38-2 +TO-38-2 +TO-38-2 +0 +2 +2 +Package_TO_SOT_THT +TO-38-2_Window +TO-38-2_Window, Window +TO-38-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-38-3 +TO-38-3 +TO-38-3 +0 +3 +3 +Package_TO_SOT_THT +TO-38-3_Window +TO-38-3_Window, Window +TO-38-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-39-2 +TO-39-2 +TO-39-2 +0 +2 +2 +Package_TO_SOT_THT +TO-39-2_Window +TO-39-2_Window, Window +TO-39-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-39-3 +TO-39-3 +TO-39-3 +0 +3 +3 +Package_TO_SOT_THT +TO-39-3_Window +TO-39-3_Window, Window +TO-39-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-39-4 +TO-39-4 +TO-39-4 +0 +4 +4 +Package_TO_SOT_THT +TO-39-4_Window +TO-39-4_Window, Window +TO-39-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-39-6 +TO-39-6 +TO-39-6 +0 +6 +6 +Package_TO_SOT_THT +TO-39-6_Window +TO-39-6_Window, Window +TO-39-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-39-8 +TO-39-8 +TO-39-8 +0 +8 +8 +Package_TO_SOT_THT +TO-39-8_Window +TO-39-8_Window, Window +TO-39-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-39-10 +TO-39-10 +TO-39-10 +0 +10 +10 +Package_TO_SOT_THT +TO-39-10_Window +TO-39-10_Window, Window +TO-39-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-46-2 +TO-46-2 +TO-46-2 +0 +2 +2 +Package_TO_SOT_THT +TO-46-2_Pin2Center +TO-46-2, Pin2 at center of package, Thorlabs photodiodes +TO-46-2 Thorlabs +0 +2 +2 +Package_TO_SOT_THT +TO-46-2_Pin2Center_Window +TO-46-2, Pin2 at center of package, Thorlabs photodiodes +TO-46-2 Thorlabs +0 +2 +2 +Package_TO_SOT_THT +TO-46-2_Window +TO-46-2_Window, Window +TO-46-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-46-3 +TO-46-3 +TO-46-3 +0 +3 +3 +Package_TO_SOT_THT +TO-46-3_Pin2Center +TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf +TO-46-3 Thorlabs +0 +3 +3 +Package_TO_SOT_THT +TO-46-3_Pin2Center_Window +TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf +TO-46-3 Thorlabs +0 +3 +3 +Package_TO_SOT_THT +TO-46-3_Window +TO-46-3_Window, Window +TO-46-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-46-4 +TO-46-4 +TO-46-4 +0 +4 +4 +Package_TO_SOT_THT +TO-46-4_Window +TO-46-4_Window, Window +TO-46-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-52-2 +TO-52-2 +TO-52-2 +0 +2 +2 +Package_TO_SOT_THT +TO-52-2_Window +TO-52-2_Window, Window +TO-52-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-52-3 +TO-52-3 +TO-52-3 +0 +3 +3 +Package_TO_SOT_THT +TO-52-3_Window +TO-52-3_Window, Window +TO-52-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-72-4 +TO-72-4 +TO-72-4 +0 +4 +4 +Package_TO_SOT_THT +TO-72-4_Window +TO-72-4_Window, Window +TO-72-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-75-6 +TO-75-6 +TO-75-6 +0 +6 +6 +Package_TO_SOT_THT +TO-75-6_Window +TO-75-6_Window, Window +TO-75-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-78-6 +TO-78-6 +TO-78-6 +0 +6 +6 +Package_TO_SOT_THT +TO-78-6_Window +TO-78-6_Window, Window +TO-78-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-78-8 +TO-78-8 +TO-78-8 +0 +8 +8 +Package_TO_SOT_THT +TO-78-8_Window +TO-78-8_Window, Window +TO-78-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-78-10 +TO-78-10 +TO-78-10 +0 +10 +10 +Package_TO_SOT_THT +TO-78-10_Window +TO-78-10_Window, Window +TO-78-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-92 +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92-2 +TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_Horizontal1 +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_Horizontal2 +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_W4.0mm_Horizontal_FlatSideDown +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_W4.0mm_Horizontal_FlatSideUp +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_Wide +TO-92 2-pin leads in-line, wide, drill 0.75mm +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +Package_TO_SOT_THT +TO-92Flat +TO-92Flat package, often used for hall sensors, drill 0.75mm (see e.g. http://www.ti.com/lit/ds/symlink/drv5023.pdf) +to-92Flat hall sensor +0 +3 +3 +Package_TO_SOT_THT +TO-92L +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Molded Narrow transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_HandSolder +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm, hand-soldering variant with enlarged pads (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_Inline +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Inline Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_Inline_Wide +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Inline Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_Wide +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Molded Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92Mini-2 +TO-92Mini package, drill 0.6mm (https://media.digikey.com/pdf/Data%20Sheets/Infineon%20PDFs/KT,KTY.pdf) +to-92Mini transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92S +TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) +to-92S transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92S-2 +TO-92S package, 2-pin, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) +to-92S transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92S_Wide +TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) +TO-92S_Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_HandSolder +TO-92 leads molded, narrow, drill 0.75mm, handsoldering variant with enlarged pads (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Horizontal1 +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Horizontal2 +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_Horizontal1 +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_Horizontal2 +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_W4.0mm_Horizontal_FlatSideDown +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_W4.0mm_Horizontal_FlatSideUp +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_Wide +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideDown +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideUp +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Wide +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-99-6 +TO-99-6 +TO-99-6 +0 +6 +6 +Package_TO_SOT_THT +TO-99-6_Window +TO-99-6_Window, Window +TO-99-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-99-8 +TO-99-8 +TO-99-8 +0 +8 +8 +Package_TO_SOT_THT +TO-99-8_Window +TO-99-8_Window, Window +TO-99-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-100-10 +TO-100-10 +TO-100-10 +0 +10 +10 +Package_TO_SOT_THT +TO-100-10_Window +TO-100-10_Window, Window +TO-100-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-126-2_Horizontal_TabDown +TO-126-2, Horizontal, RM 5.08mm, see https://www.caddock.com/online_catalog/mrktg_lit/MP9000_Series.pdf +TO-126-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-126-2_Horizontal_TabUp +TO-126-2, Horizontal, RM 5.08mm, see https://www.caddock.com/online_catalog/mrktg_lit/MP9000_Series.pdf +TO-126-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-126-2_Vertical +TO-126-2, Vertical, RM 5.08mm, see https://www.caddock.com/online_catalog/mrktg_lit/MP9000_Series.pdf +TO-126-2 Vertical RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-126-3_Horizontal_TabDown +TO-126-3, Horizontal, RM 2.28mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-3 Horizontal RM 2.28mm +0 +3 +3 +Package_TO_SOT_THT +TO-126-3_Horizontal_TabUp +TO-126-3, Horizontal, RM 2.28mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-3 Horizontal RM 2.28mm +0 +3 +3 +Package_TO_SOT_THT +TO-126-3_Vertical +TO-126-3, Vertical, RM 2.28mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-3 Vertical RM 2.28mm +0 +3 +3 +Package_TO_SOT_THT +TO-218-2_Horizontal_TabDown +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +Package_TO_SOT_THT +TO-218-2_Horizontal_TabUp +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +Package_TO_SOT_THT +TO-218-2_Vertical +TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-2 Vertical RM 10.95mm SOT-93 +0 +2 +2 +Package_TO_SOT_THT +TO-218-3_Horizontal_TabDown +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +Package_TO_SOT_THT +TO-218-3_Horizontal_TabUp +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +Package_TO_SOT_THT +TO-218-3_Vertical +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +Package_TO_SOT_THT +TO-220-2_Horizontal_TabDown +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220-2_Horizontal_TabUp +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220-2_Vertical +TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF +TO-220-2 Vertical RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220-3_Horizontal_TabDown +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220-3_Horizontal_TabUp +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220-3_Vertical +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220-4_Horizontal_TabDown +TO-220-4, Horizontal, RM 2.54mm +TO-220-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_Horizontal_TabUp +TO-220-4, Horizontal, RM 2.54mm +TO-220-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerEven_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-2 +TO-220-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-2 +TO-220-4 Horizontal RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-1 +TO-220-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-1 +TO-220-4 Horizontal RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_Vertical +TO-220-4, Vertical, RM 2.54mm +TO-220-4 Vertical RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220-5_Horizontal_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_Horizontal_TabUp +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.8mm_StaggerEven_Lead7.13mm_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.8mm_StaggerOdd_Lead7.13mm_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220-7_P2.54x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-2 +TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-2 +0 +7 +7 +Package_TO_SOT_THT +TO-220-7_P2.54x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-1 +TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-1 +0 +7 +7 +Package_TO_SOT_THT +TO-220-7_P2.54x3.8mm_StaggerEven_Lead5.85mm_TabDown +TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-2 +TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-2 +0 +7 +7 +Package_TO_SOT_THT +TO-220-7_P2.54x3.8mm_StaggerOdd_Lead5.85mm_TabDown +TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-1 +TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-1 +0 +7 +7 +Package_TO_SOT_THT +TO-220-8_Vertical +TO-220-8 (Multiwatt8), Vertical, 2.54mm Pitch (http://www.st.com/resource/en/datasheet/tda7264.pdf) +TO-220-9 Vertical 2.54mm Pitch Multiwatt 8 +0 +8 +8 +Package_TO_SOT_THT +TO-220-9_P1.94x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-2 +TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-2 +0 +9 +9 +Package_TO_SOT_THT +TO-220-9_P1.94x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-1 +TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-1 +0 +9 +9 +Package_TO_SOT_THT +TO-220-9_P1.94x3.8mm_StaggerEven_Lead5.85mm_TabDown +TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-2 +TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-2 +0 +9 +9 +Package_TO_SOT_THT +TO-220-9_P1.94x3.8mm_StaggerOdd_Lead5.85mm_TabDown +TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-1 +TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-1 +0 +9 +9 +Package_TO_SOT_THT +TO-220-11_P3.4x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Horizontal RM 1.7mm staggered type-2 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Horizontal RM 1.7mm staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x5.08mm_StaggerEven_Lead4.58mm_Vertical +TO-220-11, Vertical, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Vertical RM 1.7mm staggered type-2 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x5.08mm_StaggerOdd_Lead4.85mm_Vertical +TO-220-11, Vertical, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Vertical RM 1.7mm staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x5.08mm_StaggerOdd_Lead8.45mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.ti.com/lit/ds/symlink/lmd18200.pdf +TO-220-11 Horizontal RM 1.7mm staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerEven_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Vertical RM 1.27mm staggered type-2 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Horizontal RM 1.27mm staggered type-2 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerOdd_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Vertical RM 1.27mm staggered type-1 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Horizontal RM 1.27mm staggered type-1 +0 +15 +15 +Package_TO_SOT_THT +TO-220F-2_Horizontal_TabDown +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220F-2_Horizontal_TabUp +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220F-2_Vertical +TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf +TO-220F-2 Vertical RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220F-3_Horizontal_TabDown +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220F-3_Horizontal_TabUp +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220F-3_Vertical +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220F-4_Horizontal_TabDown +TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_Horizontal_TabUp +TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x2.05mm_StaggerEven_Lead1.85mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x2.05mm_StaggerOdd_Lead1.85mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_Vertical +TO-220F-4, Vertical, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220F-5_Horizontal_TabDown +TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5 +TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_Horizontal_TabUp +TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5 +TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x2.06mm_StaggerEven_Lead1.86mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x2.06mm_StaggerOdd_Lead1.86mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-7_P2.54x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-7, Vertical, RM 1.27mm, staggered type-2 +TO-220F-7 Vertical RM 1.27mm staggered type-2 +0 +7 +7 +Package_TO_SOT_THT +TO-220F-7_P2.54x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-7, Vertical, RM 1.27mm, staggered type-1 +TO-220F-7 Vertical RM 1.27mm staggered type-1 +0 +7 +7 +Package_TO_SOT_THT +TO-220F-9_P1.8x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-9, Vertical, RM 0.9mm, staggered type-2 +TO-220F-9 Vertical RM 0.9mm staggered type-2 +0 +9 +9 +Package_TO_SOT_THT +TO-220F-9_P1.8x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-9, Vertical, RM 0.9mm, staggered type-1 +TO-220F-9 Vertical RM 0.9mm staggered type-1 +0 +9 +9 +Package_TO_SOT_THT +TO-220F-11_P3.4x5.08mm_StaggerEven_Lead5.08mm_Vertical +TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-2, see http://www.ti.com/lit/ds/symlink/lm3886.pdf +TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-2 +0 +11 +11 +Package_TO_SOT_THT +TO-220F-11_P3.4x5.08mm_StaggerOdd_Lead5.08mm_Vertical +TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-1, see http://www.ti.com/lit/ds/symlink/lm3886.pdf +TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220F-15_P2.54x5.08mm_StaggerEven_Lead5.08mm_Vertical +TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-2 +TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-2 +0 +15 +15 +Package_TO_SOT_THT +TO-220F-15_P2.54x5.08mm_StaggerOdd_Lead5.08mm_Vertical +TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-1 +TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-1 +0 +15 +15 +Package_TO_SOT_THT +TO-247-2_Horizontal_TabDown +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-247-2_Horizontal_TabUp +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-247-2_Vertical +TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-2 Vertical RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-247-3_Horizontal_TabDown +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-247-3_Horizontal_TabUp +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-247-3_Vertical +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-247-4_Horizontal_TabDown +TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-247-4_Horizontal_TabUp +TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-247-4_Vertical +TO-247-4, Vertical, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-4 Vertical RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-247-5_Horizontal_TabDown +TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf +TO-247-5 Horizontal RM 2.54mm +0 +5 +5 +Package_TO_SOT_THT +TO-247-5_Horizontal_TabUp +TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf +TO-247-5 Horizontal RM 2.54mm +0 +5 +5 +Package_TO_SOT_THT +TO-247-5_Vertical +TO-247-5, Vertical, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf +TO-247-5 Vertical RM 2.54mm +0 +5 +5 +Package_TO_SOT_THT +TO-251-2-1EP_Horizontal_TabDown +TO-251-2, Horizontal, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-2 Horizontal RM 4.58mm IPAK +0 +3 +3 +Package_TO_SOT_THT +TO-251-2_Vertical +TO-251-2, Vertical, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-2 Vertical RM 4.58mm IPAK +0 +2 +2 +Package_TO_SOT_THT +TO-251-3-1EP_Horizontal_TabDown +TO-251-3, Horizontal, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-3 Horizontal RM 2.29mm IPAK +0 +4 +4 +Package_TO_SOT_THT +TO-251-3_Vertical +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +Package_TO_SOT_THT +TO-262-3-1EP_Horizontal_TabDown +TO-262-3, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF +TO-262-3 Horizontal RM 2.54mm IIPAK I2PAK +0 +4 +4 +Package_TO_SOT_THT +TO-262-3_Vertical +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +Package_TO_SOT_THT +TO-262-5-1EP_Horizontal_TabDown +TO-262-5, Horizontal, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf +TO-262-5 Horizontal RM 1.7mm IIPAK I2PAK +0 +6 +6 +Package_TO_SOT_THT +TO-262-5_Vertical +TO-262-5, Vertical, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf +TO-262-5 Vertical RM 1.7mm IIPAK I2PAK +0 +5 +5 +Package_TO_SOT_THT +TO-264-2_Horizontal_TabDown +TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-264-2_Horizontal_TabUp +TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-264-2_Vertical +TO-264-2, Vertical, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-2 Vertical RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-264-3_Horizontal_TabDown +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-264-3_Horizontal_TabUp +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-264-3_Vertical +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-264-5_Horizontal_TabDown +TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF +TO-264-5 Horizontal RM 3.81mm +0 +5 +5 +Package_TO_SOT_THT +TO-264-5_Horizontal_TabUp +TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF +TO-264-5 Horizontal RM 3.81mm +0 +5 +5 +Package_TO_SOT_THT +TO-264-5_Vertical +TO-264-5, Vertical, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF +TO-264-5 Vertical RM 3.81mm +0 +5 +5 +Potentiometer_SMD +Potentiometer_ACP_CA6-VSMD_Vertical +Potentiometer, vertical, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical ACP CA6-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA6-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical hole ACP CA6-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA9-VSMD_Vertical +Potentiometer, vertical, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA9-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA14-VSMD_Vertical +Potentiometer, vertical, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA14-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214G_Horizontal +Potentiometer, horizontal, Bourns 3214G, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214G +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214J_Horizontal +Potentiometer, horizontal, Bourns 3214J, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214J +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214W_Vertical +Potentiometer, vertical, Bourns 3214W, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214W +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214X_Vertical +Potentiometer, vertical, Bourns 3214X, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214X +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224G_Horizontal +Potentiometer, horizontal, Bourns 3224G, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224G +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224J_Horizontal +Potentiometer, horizontal, Bourns 3224J, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224J +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224W_Vertical +Potentiometer, vertical, Bourns 3224W, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224W +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224X_Vertical +Potentiometer, vertical, Bourns 3224X, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224X +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3269P_Horizontal +Potentiometer, horizontal, Bourns 3269P, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269P +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3269W_Vertical +Potentiometer, vertical, Bourns 3269W, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer vertical Bourns 3269W +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3269X_Horizontal +Potentiometer, horizontal, Bourns 3269X, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269X +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314G_Vertical +Potentiometer, vertical, top-adjust, Bourns 3314G, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314G +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314J_Vertical +Potentiometer, vertical, top-adjust, Bourns 3314J, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314J +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314R-1_Vertical_Hole +Potentiometer, vertical, bottom-adjust, single slot, Bourns 3314R-1, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical hole Bourns 3314R-1 +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314R-GM5_Vertical +Potentiometer, vertical, cross-slot, extended leadframe, Bourns 3314R-GM5, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314R-GM5 +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314S_Horizontal +Potentiometer, horizontal, Bourns 3314S, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer horizontal Bourns 3314S +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_PRS11S_Vertical +Potentiometer, vertical, Bourns PRS11S, http://www.bourns.com/docs/Product-Datasheets/PRS11S.pdf +Potentiometer vertical Bourns PRS11S +0 +5 +5 +Potentiometer_SMD +Potentiometer_Bourns_TC33X_Vertical +Potentiometer, Bourns, TC33X, Vertical, https://www.bourns.com/pdfs/TC33.pdf +Potentiometer Bourns TC33X Vertical +0 +3 +3 +Potentiometer_SMD +Potentiometer_Vishay_TS53YJ_Vertical +Potentiometer, vertical, Vishay TS53YJ, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YJ +0 +3 +3 +Potentiometer_SMD +Potentiometer_Vishay_TS53YL_Vertical +Potentiometer, vertical, Vishay TS53YL, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YL +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA6-H2,5_Horizontal +Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer horizontal ACP CA6-H2,5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-H2,5_Horizontal +Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H2,5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-H3,8_Horizontal +Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H3,8 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-H5_Horizontal +Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-V10_Vertical +Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14-H2,5_Horizontal +Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H2,5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14-H4_Horizontal +Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H4 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14-H5_Horizontal +Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14V-15_Vertical +Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14V-15 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14V-15_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14V-15 +0 +3 +3 +Potentiometer_THT +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +Potentiometer_THT +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +Potentiometer_THT +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +Potentiometer_THT +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +Potentiometer_THT +Potentiometer_Alps_RK09K_Single_Horizontal +111009J 1110AK4 11100DN 1110AAR 1110077 1110A0J 110AMJ 1110B26 D1110C1A Potentiometer, horizontal, Alps RK09K Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09k/rk09k.pdf +Potentiometer horizontal Alps RK09K Single Snapin +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09K_Single_Vertical +113004U 1130A6S 11300DR 1130A8G 1130081 1130A5R 1130AP5 1130AST D1130C3W D1130C1B D1130C3C D1130C2P Potentiometer, vertical, Alps RK09K Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09k/rk09k.pdf +Potentiometer vertical Alps RK09K RK09D Single Snapin +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09L_Double_Horizontal +122002H 122002L 12B0A4S 12B0A1V Potentiometer, horizontal, Alps RK09L Double, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer horizontal Alps RK09L Double +0 +8 +7 +Potentiometer_THT +Potentiometer_Alps_RK09L_Double_Vertical +1240015 1240019 12D0A1W 12D0A1T Potentiometer, vertical, Alps RK09L Double, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer vertical Alps RK09L Double +0 +8 +7 +Potentiometer_THT +Potentiometer_Alps_RK09L_Single_Horizontal +1120A5F 1120036 1120A0Z 112003S Potentiometer, horizontal, Alps RK09L Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer horizontal Alps RK09L Single +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09L_Single_Vertical + 1140A5L 114001E 1140A2U 114001T Potentiometer, vertical, Alps RK09L Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer vertical Alps RK09L Single +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09Y11_Single_Horizontal +Potentiometer, horizontal, Long Life, Alps RK09Y11 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09y11/rk09y11.pdf +Potentiometer horizontal Alps RK09Y11 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Alps_RK097_Dual_Horizontal +1210, Dual Pot, Horizontal, Alps RK097 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Alps_RK097_Dual_Horizontal_Switch +1221-5R1211, Dual Pot, Horizontal, Switch, Alps RK097 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Dual Switch +0 +8 +8 +Potentiometer_THT +Potentiometer_Alps_RK097_Single_Horizontal +1110, Single Pot, Horizontal, Alps RK097 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Alps_RK097_Single_Horizontal_Switch +1111-5R1211, Single Pot, Horizontal, Switch, Alps RK097 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Single Switch +0 +5 +5 +Potentiometer_THT +Potentiometer_Alps_RK163_Dual_Horizontal +12101A2 1210AX9 12A0B85 12A0BKR Potentiometer, horizontal, Alps RK163 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk16/rk16.pdf +Potentiometer horizontal Alps RK163 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Alps_RK163_Single_Horizontal +1110U1Q 1110TNP 1110U2A 1110U0Q Potentiometer, horizontal, Alps RK163 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk16/rk16.pdf +Potentiometer horizontal Alps RK163 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3005_Horizontal +Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf +Potentiometer horizontal Bourns 3005 +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3006P_Horizontal +Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3006W_Horizontal +Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3006Y_Horizontal +Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3009P_Horizontal +Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3009Y_Horizontal +Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266P_Horizontal +Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266W_Vertical +Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266X_Horizontal +Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266Y_Vertical +Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266Z_Horizontal +Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266Z +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296P_Horizontal +Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296W_Vertical +Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296X_Horizontal +Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296Y_Vertical +Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296Z_Horizontal +Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296Z +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299P_Horizontal +Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299W_Vertical +Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299X_Horizontal +Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299Y_Vertical +Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299Z_Horizontal +Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299Z +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339H_Vertical +Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339H +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339P_Vertical +Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339P_Vertical_HandSoldering +Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P hand-soldering +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339S_Horizontal +Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339S +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339W_Horizontal +Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386C_Horizontal +Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386C +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386F_Vertical +Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386F +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386P_Vertical +Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386W_Horizontal +Potentiometer, horizontal, Bourns 3386W, 9.53 x 4.83 x 9.53mm, https://www.bourns.com/docs/Product-Datasheets/3386.pdf +Potentiometer +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386X_Horizontal +Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_PTA1543_Single_Slide +Bourns single-gang slide potentiometer, 15.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 15.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA2043_Single_Slide +Bourns single-gang slide potentiometer, 20.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 20.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA3043_Single_Slide +Bourns single-gang slide potentiometer, 30.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 30.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA4543_Single_Slide +Bourns single-gang slide potentiometer, 45.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 45.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA6043_Single_Slide +Bourns single-gang slide potentiometer, 60.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 60.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTV09A-1_Single_Vertical +Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer vertical Bourns PTV09A-1 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_PTV09A-2_Single_Horizontal +Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer horizontal Bourns PTV09A-2 Single +0 +5 +3 +Potentiometer_THT +Potentiometer_Bourns_PTV112-4_Dual_Vertical +2 Gang dual Through Hole, Snap In potentiometer, https://www.bourns.com/docs/Product-Datasheets/PTVPTT.pdf +PTV112-4 Dual gang +0 +8 +7 +Potentiometer_THT +Potentiometer_Omeg_PC16BU_Horizontal +Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer horizontal Omeg PC16BU +0 +3 +3 +Potentiometer_THT +Potentiometer_Omeg_PC16BU_Vertical +Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer vertical Omeg PC16BU +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PC-16_Dual_Horizontal +Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Piher_PC-16_Single_Horizontal +Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PC-16_Single_Vertical +Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer vertical Piher PC-16 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PC-16_Triple_Horizontal +Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Triple +0 +9 +9 +Potentiometer_THT +Potentiometer_Piher_PT-6-H_Horizontal +Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer horizontal Piher PT-6-H +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-6-V_Vertical +Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical Piher PT-6-V +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-6-V_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical hole Piher PT-6-V +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-H01_Horizontal +Potentiometer, horizontal, Piher PT-10-H01, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H01 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-H05_Horizontal +Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H05 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-V05_Vertical +Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V05 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-V10_Vertical +Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical hole Piher PT-10-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H01_Horizontal +Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H01 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H05_Horizontal +Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H05 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H06_Horizontal +Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H06 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H25_Horizontal +Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H25 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V02_Vertical +Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V02 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V02_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V02 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V15_Vertical +Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V15 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V15_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V15 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_T-16H_Double_Horizontal +Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Double +0 +6 +6 +Potentiometer_THT +Potentiometer_Piher_T-16H_Single_Horizontal +Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_T-16L_Single_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer vertical hole Piher T-16L Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Runtron_RM-063_Horizontal +Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf +Potentiometer Trimmer RM-063 +0 +3 +3 +Potentiometer_THT +Potentiometer_Runtron_RM-065_Vertical +Potentiometer, vertical, Trimmer, RM-065 https://components101.com/sites/default/files/component_datasheet/Preset%20Potentiometer%20%28Trimpot%29.pdf +Potentiometer Trimmer RM-065 +0 +3 +3 +Potentiometer_THT +Potentiometer_TT_P0915N +http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf +potentiometer vertical TT P0915N single +0 +5 +3 +Potentiometer_THT +Potentiometer_Vishay_43_Horizontal +Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf +Potentiometer horizontal Vishay 43 +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_148-149_Dual_Horizontal +Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Vishay_148-149_Single_Horizontal +Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_148-149_Single_Vertical +Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer vertical Vishay 148-149 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_148E-149E_Dual_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Dual +0 +10 +6 +Potentiometer_THT +Potentiometer_Vishay_148E-149E_Single_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Single +0 +7 +3 +Potentiometer_THT +Potentiometer_Vishay_248BH-249BH_Single_Horizontal +Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248BH-249BH Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal +Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248GJ-249GJ Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_248GJ-249GJ_Single_Vertical +Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer vertical Vishay 248GJ-249GJ Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T7-YA_Single_Vertical +Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf +Potentiometer vertical Vishay T7-YA Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T73XW_Horizontal +Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XW +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T73XX_Horizontal +Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XX +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T73YP_Vertical +Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer vertical Vishay T73YP +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T93XA_Horizontal +Potentiometer, horizontal, Vishay, https://www.vishay.com/docs/51026/t93.pdf, 3/8" x 3/8" x 3/16" (9.7 x 9.8 x 5mm max.) +Potentiometer horizontal vishay +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T93YA_Vertical +Potentiometer, vertical, Vishay, https://www.vishay.com/docs/51026/t93.pdf +Potentiometer vertical vishay +0 +3 +3 +RF +Skyworks_SKY13575_639LF +http://www.skyworksinc.com/uploads/documents/SKY13575_639LF_203270D.pdf +Skyworks +0 +19 +15 +RF +Skyworks_SKY65404-31 +http://www.skyworksinc.com/uploads/documents/SKY65404_31_201512K.pdf +Skyworks +0 +7 +7 +RF_Antenna +AVX_M620720 +868Mhz, 915Mhz ISM antenna, 6 x 2 x 1.08mm, http://datasheets.avx.com/ethertronics/AVX-E_M620720.pdf +868 915 Mhz ISM antenna +0 +6 +3 +RF_Antenna +Abracon_APAES868R8060C16-T +Abracon RHCP ceramic patch antenna 854-882Mhz, 5dBi +APAES patch antenna +0 +1 +1 +RF_Antenna +Abracon_PRO-OB-440 +Abracon OnBoard SMD antenna 2400-2500Mhz, https://abracon.com/datasheets/PRO-OB-440.pdf +2400 PRO-OB-440 Antenna +0 +4 +4 +RF_Antenna +Abracon_PRO-OB-471 +OnBoard 868/915/868+2400 MHz Antenna, https://abracon.com/datasheets/PRO-OB-471.pdf +Antenna ProAnt OnBoard 868Mhz 915Mhz 2400Mhz +0 +6 +6 +RF_Antenna +Antenova_SR4G013_GPS +GPS/GLONASS/Galileo/BeiDou antenna, 1559-1609Mhz, SMD, https://www.application-datasheet.com/pdf/antenova/sr4g013.pdf +antenna GPS Antenova Beltii +0 +5 +2 +RF_Antenna +Astrocast_AST50127-00 +L-band patch antenna, https://docs.astrocast.com/dl/0534-DOC-M2M-ASTRO-Patch_Antenna-Datasheet.pdf +L-band antenna astrocast Patch Antenna +0 +1 +1 +RF_Antenna +Coilcraft_MA5532-AE_RFID +RFID Transponder Coil +antenna rfid coilcraft +0 +2 +2 +RF_Antenna +Johanson_2450AT18x100 +Johanson 2450AT43F0100 SMD antenna 2400-2500Mhz, -0.5dBi, https://www.johansontechnology.com/datasheets/2450AT18A100/2450AT18A100.pdf +antenna +0 +2 +2 +RF_Antenna +Johanson_2450AT43F0100 +Johanson 2450AT43F0100 SMD antenna 2400-2500Mhz, 1dBi, https://www.johansontechnology.com/datasheets/2450AT43F0100/2450AT43F0100.pdf +antenna +0 +2 +2 +RF_Antenna +Molex_47948-0001_2.4Ghz +SMD antenna 2400-2500Mhz, 3.7dBi, https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/productspecificationpdf/479/47948/PS-47948-001-001.pdf?inline +rf antenna +0 +4 +2 +RF_Antenna +NiceRF_SW868-TH13_868Mhz +868Mhz copper string antenna, right angle, approx. 15mm coil length, 5.5mm OD, 0.8 wire diameter, https://www.nicerf.com/item/868mhz-spring-antenna-sw868-th13 +antenna rf +0 +1 +1 +RF_Antenna +Pulse_W3000 +Pulse Electronics W3000 tri-band antenna for GPS (1.575Ghz), 868Mhz and 2.4Ghz ISM bands, https://productfinder.pulseeng.com/products/datasheets/W3000.pdf +Antenna GPS 868Mhz ISM 1.575Ghz +0 +2 +2 +RF_Antenna +Pulse_W3011 +Pulse RF Antenna, 4mm Clearance +antenna rf +0 +3 +2 +RF_Antenna +Texas_SWRA117D_2.4GHz_Left +http://www.ti.com/lit/an/swra117d/swra117d.pdf +PCB antenna +0 +2 +2 +RF_Antenna +Texas_SWRA117D_2.4GHz_Right +http://www.ti.com/lit/an/swra117d/swra117d.pdf +PCB antenna +0 +2 +2 +RF_Antenna +Texas_SWRA416_868MHz_915MHz +http://www.ti.com/lit/an/swra416/swra416.pdf +PCB antenna +0 +20 +1 +RF_Converter +Anaren_0805_2012Metric-6 +https://cdn.anaren.com/product-documents/Xinger/DirectionalCouplers/DC4759J5020AHF/DC4759J5020AHF_DataSheet(Rev_E).pdf +coupler rf +0 +6 +6 +RF_Converter +Balun_Johanson_1.6x0.8mm +6-pin 1.6x0.8 mm balun footprint +Johanson balun filter +0 +6 +6 +RF_Converter +Balun_Johanson_0896BM15A0001 +https://www.johansontechnology.com/datasheets/0896BM15A0001/0896BM15A0001.pdf +balun RF +0 +6 +6 +RF_Converter +Balun_Johanson_0900FM15K0039 +Johanson 0900FM15K0039 DFN, 10 Pin (https://www.johansontechnology.com/datasheets/0900FM15K0039/0900FM15K0039.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Johanson DFN NoLead +0 +10 +10 +RF_Converter +Balun_Johanson_0900PC15J0013 +Johanson 0900PC15J0013 DFN, 10 Pin (https://www.johansontechnology.com/datasheets/0900PC15J0013/0900PC15J0013.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Johanson DFN NoLead +0 +10 +10 +RF_Converter +Balun_Johanson_5400BL15B050E +https://www.johansontechnology.com/datasheets/5400BL15B050/5400BL15B050.pdf +balun RF +0 +6 +6 +RF_Converter +RF_Attenuator_Susumu_PAT1220 +http://www.susumu-usa.com/pdf/Foot_Print_38.pdf, https://www.susumu.co.jp/common/pdf/n_catalog_partition16_en.pdf +2mm 1.2mm +0 +3 +3 +RF_GPS +Linx_RXM-GPS +GPS Module, Linx (https://linxtechnologies.com/wp/wp-content/uploads/rxm-gps-rm.pdf) +gps linx +0 +22 +22 +RF_GPS +Quectel_L70-R +Quectel L70-R, (https://www.quectel.com/product/gps-only-l70-r) +GPS Quectel L70-R +0 +18 +18 +RF_GPS +Quectel_L76 +GPS module, https://www.quectel.com/wp-content/uploads/2021/03/Quectel_L76L76-L_Hardware_Design_V3.2-1.pdf +Quectel GPS L76 L76-L +0 +18 +18 +RF_GPS +Quectel_L80-R +Quectel L80-R GPS Module, Patch on Top, https://www.quectel.com/UploadImage/Downlad/Quectel_L80-R_Hardware_Design_V1.2.pdf +quectel GPS GNSS +0 +12 +12 +RF_GPS +Quectel_L96 +Quectel L96 GPS GLONASS Galileo BeiDou Module, internal chip antenna, https://static6.arrow.com/aropdfconversion/50213b4bc5cb920911b62909a5ca765b1c5ab3d1/quectel_l96_hardware_design_v1.2.pdf +Quectel GPS GNSS +0 +31 +31 +RF_GPS +SIM28ML +https://simcom.ee/documents/SIM28ML/SIM28ML_Hardware%20Design_V1.01.pdf +SIM28ML GPS +0 +18 +18 +RF_GPS +Sierra_XA11X0 +QFN-24, Pitch 1.20 no EP, https://source.sierrawireless.com/resources/airprime/hardware_specs_user_guides/airprime_xm1100_product_technical_specification +QFN-24 P1.20 +0 +24 +24 +RF_GPS +Sierra_XM11X0 +QFN-20, Pitch 1.20 no EP, https://source.sierrawireless.com/resources/airprime/hardware_specs_user_guides/airprime_xm1100_product_technical_specification +QFN-20 P1.20 +0 +20 +20 +RF_GPS +ublox_LEA +ublox LEA 6/7/8, (https://www.u-blox.com/sites/default/files/LEA-M8S-M8T-FW3_HardwareIntegrationManual_%28UBX-15030060%29.pdf) +GPS ublox LEA 6/7/8 +0 +28 +28 +RF_GPS +ublox_MAX +ublox MAX 6/7/8, (https://www.u-blox.com/sites/default/files/MAX-8-M8-FW3_HardwareIntegrationManual_%28UBX-15030059%29.pdf) +GPS ublox MAX 6/7/8 +0 +18 +18 +RF_GPS +ublox_NEO +ublox NEO 6/7/8, (https://www.u-blox.com/sites/default/files/NEO-8Q-NEO-M8-FW3_HardwareIntegrationManual_%28UBX-15029985%29_0.pdf) +GPS ublox NEO 6/7/8 +0 +24 +24 +RF_GPS +ublox_SAM-M8Q +GPS Module, 15.5x15.5x6.3mm, https://www.u-blox.com/sites/default/files/SAM-M8Q_HardwareIntegrationManual_%28UBX-16018358%29.pdf +ublox SAM-M8Q +0 +100 +20 +RF_GPS +ublox_SAM-M8Q_HandSolder +GPS Module, 15.5x15.5x6.3mm, https://www.u-blox.com/sites/default/files/SAM-M8Q_HardwareIntegrationManual_%28UBX-16018358%29.pdf +ublox SAM-M8Q +0 +20 +20 +RF_GPS +ublox_ZED +ublox ZED-F9, https://www.u-blox.com/sites/default/files/ZED-F9P_DataSheet_%28UBX-17051259%29.pdf +GPS GNSS ublox ZED +0 +102 +55 +RF_GPS +ublox_ZOE_M8 +GPS Ublox ZOE, https://content.u-blox.com/sites/default/files/ZOE-M8_DataSheet_UBX-16008094.pdf +Ublox GPS GNSS +0 +51 +51 +RF_GSM +Quectel_BC66 +GSM NB-IoT module, 15.8x17.7x2mm, https://www.quectel.com/UploadImage/Downlad/Quectel_BC66_Hardware_Design_V1.1.pdf +GSM NB-IoT Module BC66 M66 +0 +116 +58 +RF_GSM +Quectel_BC95 +GSM NB-IoT module, 19.9x23.6x2.2mm, https://www.quectel.com/UploadImage/Downlad/Quectel_BC95_Hardware_Design_V1.3.pdf +GSM NB-IoT module BC95 +0 +188 +94 +RF_GSM +Quectel_BG96 +Quectel BG96 Cellular GSM 2G Module https://www.quectel.com/download/quectel_bg96_hardware_design_v1-4 +Quectel BG96 Cellular GSM 2G Module +0 +204 +102 +RF_GSM +Quectel_M95 +Quad-Band GSM/GPRS module, 19.9x23.6x2.65mm, https://www.quectel.com/UploadImage/Downlad/M95_Hardware_Design_V1.3.pdf +GSM Module M95 +0 +84 +42 +RF_GSM +SIMCom_SIM800C +Quad-Band GSM/GPRS module, 17.6x15.7x2.3mm, http://simcom.ee/documents/SIM800C/SIM800C_Hardware_Design_V1.05.pdf +GSM Module SIM800C +0 +84 +42 +RF_GSM +SIMCom_SIM900 +Quad-Band GSM/GPRS module, 24x24x3mm, http://simcom.ee/documents/SIM900/SIM900_Hardware%20Design_V2.05.pdf +GSM Module SIM900 +0 +68 +68 +RF_GSM +Telit_xL865 +Telit xL865 familly footprint, http://www.telit.com/fileadmin/user_upload/products/Downloads/3G/Telit_UL865_Hardware_User_Guide_r8.pdf +xL865 gsm umts +0 +52 +48 +RF_GSM +ublox_SARA_LGA-96 +ublox SARA cellular/GNSS module, https://www.u-blox.com/sites/default/files/SARA-G3-U2_SysIntegrManual_%28UBX-13000995%29.pdf, pag.162 +ublox u-blox SARA-R41 SARA-R42 SARA-R5 SARA-N2 SARA-N3 SARA-G3 SARA-G4 SARA-U2 cellular LTE IoT GSM HSPA GNSS GPS +0 +192 +96 +RF_Mini-Circuits +Mini-Circuits_BK377 +Footprint for Mini-Circuits case BK377 (https://ww2.minicircuits.com/case_style/BK276.pdf) +Mini-circuits BK377 +0 +14 +14 +RF_Mini-Circuits +Mini-Circuits_BK377_LandPatternPL-005 +Footprint for Mini-Circuits case BK377 (https://ww2.minicircuits.com/case_style/BK276.pdf) according to land-pattern PL-005, including GND vias (https://ww2.minicircuits.com/pcb/98-pl005.pdf) +Mini-circuits VCXO JTOS PL-005 +0 +50 +14 +RF_Mini-Circuits +Mini-Circuits_CD541_H2.08mm +https://ww2.minicircuits.com/case_style/CD541.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_H2.84mm +https://ww2.minicircuits.com/case_style/CD542.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_LandPatternPL-052 +Footprint for Mini-Circuits case CD542 (https://ww2.minicircuits.com/case_style/CD542.pdf) using land-pattern PL-052, including GND-vias (https://ww2.minicircuits.com/pcb/98-pl052.pdf) +MiniCircuits PL-052 CD542 +0 +17 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_LandPatternPL-094 +Footprint for mini circuit case CD542, Land pattern PL-094, pads 5 and 2 connected via insulated copper area below body, vias included (case drawing: https://ww2.minicircuits.com/case_style/CD542.pdf, land pattern drawing: https://ww2.minicircuits.com/pcb/98-pl094.pdf) +mini-circuits CD542 pl-094 +0 +18 +6 +RF_Mini-Circuits +Mini-Circuits_CD636_H4.11mm +https://ww2.minicircuits.com/case_style/CD636.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD636_LandPatternPL-035 +Footprint for Mini-Circuits case CD636 (https://ww2.minicircuits.com/case_style/CD636.pdf) following land pattern PL-035, including GND-vias (https://ww2.minicircuits.com/pcb/98-pl035.pdf) +mini-circuits pl-035 CD636 +0 +13 +6 +RF_Mini-Circuits +Mini-Circuits_CD637_H5.23mm +https://ww2.minicircuits.com/case_style/CD637.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CK605 +Footprint for Mini-Circuits case CK605 (https://ww2.minicircuits.com/case_style/CK605.pdf) +Mini-Circuits CK605 +0 +16 +16 +RF_Mini-Circuits +Mini-Circuits_CK605_LandPatternPL-012 +Footprint for Mini-Circuits case CK605 (https://ww2.minicircuits.com/case_style/CK605.pdf) following land pattern PL-012, including GND vias (https://ww2.minicircuits.com/pcb/98-pl012.pdf) +Mini-Circuits PL-012 +0 +53 +16 +RF_Mini-Circuits +Mini-Circuits_DB1627 +Mini-Circuits top-hat case DB1627 (https://ww2.minicircuits.com/case_style/DB1627.pdf) +Mini-Circuits DB1627 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_GP731 +Footprint for Mini-Circuits case GP731 (https://ww2.minicircuits.com/case_style/GP731.pdf) +Mini-Circuits GP731 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_GP731_LandPatternPL-176 +Footprint for Mini-Circuits case GP731 (https://ww2.minicircuits.com/case_style/GP731.pdf) following land pattern PL-176, including GND vias (https://www.minicircuits.com/pcb/98-pl176.pdf) +mini-circuits PL-176 +0 +21 +8 +RF_Mini-Circuits +Mini-Circuits_GP1212 +Footprint for Mini-Circuits case GP1212 (https://ww2.minicircuits.com/case_style/GP731.pdf) +mini-circuits GP1212 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_GP1212_LandPatternPL-176 +Footprint for Mini-Circuits case GP1212 (https://ww2.minicircuits.com/case_style/GP731.pdf) following land pattern PL-176, including GND vias (https://www.minicircuits.com/pcb/98-pl176.pdf) +mini-circuits PL-176 +0 +21 +8 +RF_Mini-Circuits +Mini-Circuits_HF1139 +Footprint for Mini-Circuits case HF1139 (https://ww2.minicircuits.com/case_style/HF1139.pdf) +Mini-Circuits HF1139 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_HF1139_LandPatternPL-230 +Footprint for Mini-Circuits case HF1139 (https://ww2.minicircuits.com/case_style/HF1139.pdf) following land pattern PL-230, including GND vias (https://ww2.minicircuits.com/pcb/98-pl230.pdf) +Mini-Circuits PL-230 +0 +37 +8 +RF_Mini-Circuits +Mini-Circuits_HQ1157 +Footprint for Mini-Circuits case HQ1157 (https://www.minicircuits.com/case_style/HQ1157.pdf) +Mini-Circuits HQ1157 +0 +14 +14 +RF_Mini-Circuits +Mini-Circuits_HZ1198 +Footprint for Mini-Circuits case HZ1198 (https://ww2.minicircuits.com/case_style/HZ1198.pdf) +Mini-Circuits HZ1198 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_HZ1198_LandPatternPL-247 +Footprint for Mini-Circuits cas HZ1198 (https://ww2.minicircuits.com/case_style/HZ1198.pdf) following land pattern PL-247, including GND-vias (https://www.minicircuits.com/pcb/98-pl247.pdf) +Mini-Circuits PL-247 HZ1198 +0 +40 +6 +RF_Mini-Circuits +Mini-Circuits_MMM168 +Footprint for Mini-Circuits case MMM168 (https://ww2.minicircuits.com/case_style/MMM168.pdf) +Mini-Circuits MMM168 +0 +4 +4 +RF_Mini-Circuits +Mini-Circuits_MMM168_LandPatternPL-225 +Footprint for Mini-Circuits case MMM168, Land pattern PL-225, vias included, (case drawing: https://ww2.minicircuits.com/case_style/MMM168.pdf, land pattern drawing: https://ww2.minicircuits.com/pcb/98-pl225.pdf) +pl-225 +0 +10 +4 +RF_Mini-Circuits +Mini-Circuits_QQQ130_ClockwisePinNumbering +Footprint for Mini-Circuits case QQQ130 (https://ww2.minicircuits.com/case_style/QQQ130.pdf) +Mini-Circuits QQQ130 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_QQQ130_LandPattern_PL-236_ClockwisePinNumbering +Footprint for Mini-Circuits case QQQ130 (https://ww2.minicircuits.com/case_style/QQQ130.pdf) following land pattern PL-236, including GND vias (https://ww2.minicircuits.com/pcb/98-pl236.pdf) +Mini-Circuits PL-236 +0 +14 +6 +RF_Mini-Circuits +Mini-Circuits_TT1224_ClockwisePinNumbering +Footprint for Mini-Circuits case TT1224 (https://ww2.minicircuits.com/case_style/TT1224.pdf) following land-pattern PL-258, including GND-vias (https://www.minicircuits.com/pcb/98-pl258.pdf) +Mini-Circuits TT1224 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_TT1224_LandPatternPL-258_ClockwisePinNumbering +Footprint for Mini-Circuits case TT1224 (https://ww2.minicircuits.com/case_style/TT1224.pdf) following land-pattern PL-258, including GND-vias (https://www.minicircuits.com/pcb/98-pl258.pdf) +PL-258 Mini-Circuits +0 +26 +6 +RF_Mini-Circuits +Mini-Circuits_TTT167 +Footprint for Mini-Circuits case TTT167 (https://ww2.minicircuits.com/case_style/TTT167.pdf) +Mini-Circuits TTT167 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_TTT167_LandPatternPL-079 +Footprint for Mini-Circuits case TTT167 (Mini-Circuits_TTT167_LandPatternPL-079) following land pattern PL-079, including GND vias (https://ww2.minicircuits.com/pcb/98-pl079.pdf) +Mini-Circuits PL-079 +0 +36 +6 +RF_Mini-Circuits +Mini-Circuits_YY161 +Footprint for Mini-Circuits case YY161 (https://ww2.minicircuits.com/case_style/YY161.pdf) +Mini-Circuits YY161 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_YY161_LandPatternPL-049 +Footprint for Mini-Circuits case YY161 (https://ww2.minicircuits.com/case_style/YY161.pdf) using land-pattern PL-049, including GND-connections and vias (https://ww2.minicircuits.com/pcb/98-pl049.pdf) +mini-circuits pl-049 +0 +36 +8 +RF_Module +Ai-Thinker-Ra-01-LoRa +Ai Thinker Ra-01 LoRa +LoRa Ra-01 +0 +16 +16 +RF_Module +Astrocast_AST50147-00 +L-band satellite communication module, https://docs.astrocast.com/dl/0532-DOC-M2M-ASTRO-Astronode_S-Datasheet.pdf +RF module Astrocast radio Astronode +0 +38 +38 +RF_Module +Atmel_ATSAMR21G18-MR210UA_NoRFPads +http://ww1.microchip.com/downloads/en/devicedoc/atmel-42475-atsamr21g18-mr210ua_datasheet.pdf +module wireless zigbee 802.15.4 flash crypto ATSAMR21G18 AT45DB041E TECC508A U.Fi +0 +42 +42 +RF_Module +BLE112-A +Class 4 Bluetooth Module with on-board antenna +Bluetooth Module +0 +30 +30 +RF_Module +BM78SPPS5xC2 +Bluetooth Dual-mode module with integral chip antenna (http://ww1.microchip.com/downloads/en/DeviceDoc/60001380C.pdf) +Bluetooth BR/EDR BLE +0 +33 +33 +RF_Module +CMWX1ZZABZ +https://wireless.murata.com/RFM/data/type_abz.pdf +iot lora sigfox +0 +57 +57 +RF_Module +CYBLE-21Pin-10x10mm +Cypress EZ-BLE PRoC Module (Bluetooth Smart) 21 Pin Module +Cypress BT Bluetooth +0 +21 +21 +RF_Module +DWM1000 +IEEE802.15.4-2011 UWB +UWB Module +0 +24 +24 +RF_Module +DecaWave_DWM1001 +https://www.decawave.com/sites/default/files/dwm1001_datasheet.pdf +UWB module +0 +34 +34 +RF_Module +Digi_XBee_SMT +http://www.digi.com/resources/documentation/digidocs/pdfs/90002126.pdf http://ftp1.digi.com/support/documentation/90001020_F.pdf +Digi XBee SMT RF +0 +37 +37 +RF_Module +E18-MS1-PCB +http://www.cdebyte.com/en/downpdf.aspx?id=122 +Zigbee +0 +24 +24 +RF_Module +E73-2G4M04S +http://www.cdebyte.com/en/downpdf.aspx?id=243 +BLE BLE5 nRF52832 +0 +44 +44 +RF_Module +ESP-07 +Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/a007ps01a2_esp-07_product_specification_v1.2.pdf +Wi-Fi Module +0 +16 +16 +RF_Module +ESP-12E +Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/aithinker_esp_12f_datasheet_en.pdf +Wi-Fi Module +0 +22 +22 +RF_Module +ESP-WROOM-02 +https://www.espressif.com/sites/default/files/documentation/0c-esp-wroom-02_datasheet_en.pdf +ESP WROOM-02 espressif esp8266ex +0 +19 +19 +RF_Module +ESP32-C3-WROOM-02 +RF Module, ESP32-C3 WROOM-02, Wi-Fi and Bluetooth, BLE, onboard antenna, https://www.espressif.com/sites/default/files/documentation/esp32-c3-wroom-02_datasheet_en.pdf +ESP32-C3 WROOM-02 espressif +0 +40 +19 +RF_Module +ESP32-C3-WROOM-02U +RF Module, ESP32-C3 WROOM-02 , Wi-Fi and Bluetooth, BLE, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-c3-wroom-02_datasheet_en.pdf +ESP32-C3 WROOM-02 espressif +0 +40 +19 +RF_Module +ESP32-S2-MINI-1 +2.4 GHz Wi-Fi and Bluetooth combo chip, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf +2.4 GHz Wi-Fi Bluetooth external antenna espressif 20*15.4mm +0 +73 +65 +RF_Module +ESP32-S2-MINI-1U +2.4 GHz Wi-Fi and Bluetooth combo chip, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf +2.4 GHz Wi-Fi Bluetooth external antenna espressif 15.4*15.4mm +0 +73 +65 +RF_Module +ESP32-S2-WROVER +ESP32-S2-WROVER(-I) 2.4 GHz Wi-Fi https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf +ESP32-S2 ESP32 WIFI +0 +43 +43 +RF_Module +ESP32-S3-WROOM-1 +2.4 GHz Wi-Fi and Bluetooth module https://www.espressif.com/sites/default/files/documentation/esp32-s3-wroom-1_wroom-1u_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module +0 +62 +41 +RF_Module +ESP32-S3-WROOM-1U +2.4 GHz Wi-Fi and Bluetooth module https://www.espressif.com/sites/default/files/documentation/esp32-s3-wroom-1_wroom-1u_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module +0 +62 +41 +RF_Module +ESP32-S3-WROOM-2 +2.4 GHz Wi­-Fi and Bluetooth 5 (LE) module: https://www.espressif.com/sites/default/files/documentation/esp32-s3-wroom-2_datasheet_en.pdf +Bluetooth WiFi Wi-Fi ESP WROOM +0 +61 +41 +RF_Module +ESP32-WROOM-32 +Single 2.4 GHz Wi-Fi and Bluetooth combo chip https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf +Single 2.4 GHz Wi-Fi and Bluetooth combo chip +0 +60 +39 +RF_Module +ESP32-WROOM-32D +2.4 GHz Wi-Fi and Bluetooth module, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module ESP32-D0WD Espressif ESP32-WROOM-32E +0 +60 +39 +RF_Module +ESP32-WROOM-32E +2.4 GHz Wi­-Fi and Bluetooth 5 (LE) module: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +Bluetooth WiFi Wi-Fi ESP32 WROOM Xtensa LX6 +0 +59 +39 +RF_Module +ESP32-WROOM-32U +Single 2.4 GHz Wi-Fi and Bluetooth combo chip with U.FL connector, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf +Single 2.4 GHz Wi-Fi and Bluetooth combo chip +0 +60 +39 +RF_Module +ESP32-WROOM-32UE +2.4 GHz Wi-Fi and Bluetooth module, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module +0 +60 +39 +RF_Module +Garmin_M8-35_9.8x14.0mm_Layout6x6_P1.5mm +D52M ANT SoC Module https://www.thisisant.com/assets/resources/D00001687_D52_Module_Datasheet.v.2.3_(Garmin).pdf +RF SoC Radio ANT Bluetooth BLE D52 nRF52 Garmin Canada Dynastream Nordic +0 +35 +35 +RF_Module +HOPERF_RFM9XW_SMD +Low Power Long Range Transceiver Module SMD-16 (https://www.hoperf.com/data/upload/portal/20181127/5bfcbea20e9ef.pdf) +LoRa Low Power Long Range Transceiver Module +0 +16 +16 +RF_Module +HOPERF_RFM9XW_THT +Low Power Long Range Transceiver Module THT-16 (https://www.hoperf.com/data/upload/portal/20181127/5bfcbea20e9ef.pdf) +Low Power Long Range Transceiver Module LoRa +0 +16 +16 +RF_Module +HOPERF_RFM69HW +Radio, RF, Module, http://www.hoperf.com/upload/rf/RFM69HW-V1.3.pdf +Radio RF Module +0 +16 +16 +RF_Module +Heltec_HT-CT62 +HT-CT62 LoRa Module +LoRa WiFi Heltec HT-CT62 ESP32C3 +0 +22 +22 +RF_Module +IQRF_TRx2DA_KON-SIM-01 +8 pin SIM connector for IQRF TR-x2DA(T) modules, http://iqrf.org/weben/downloads.php?id=104 +IQRF_KON-SIM-01 IQRF_TRx2DA +0 +10 +8 +RF_Module +IQRF_TRx2D_KON-SIM-01 +8 pin SIM connector for IQRF TR-x2D(C)(T) modules, http://iqrf.org/weben/downloads.php?id=104 +IQRF_KON-SIM-01 IQRF_TRx2D IQRF_TRx2DC +0 +10 +8 +RF_Module +Laird_BL652 +Bluetooth v4.2 + NFC module +Bluetooth BLE NFC +0 +39 +39 +RF_Module +MCU_Seeed_ESP32C3 +ESP32C3 Seeed Xiao RF Wifi Shield (https://www.seeedstudio.com/blog/wp-content/uploads/2022/08/Seeed-Studio-XIAO-Series-Package-and-PCB-Design.pdf) +wifi bluetooth microcontroller +0 +27 +23 +RF_Module +MOD-nRF8001 +BLE module, https://www.olimex.com/Products/Modules/RF/MOD-nRF8001/ +BLE module +0 +11 +11 +RF_Module +Microchip_BM83 +Microchip BM83, Bluetooth 5.0 Stereo Audio Module with on-Board antenna, https://ww1.microchip.com/downloads/aemDocuments/documents/WSG/ProductDocuments/DataSheets/70005402E.pdf +bluetooth module +0 +52 +52 +RF_Module +Microchip_RN4871 +Microchip RN4871 footprint +RN4871 BLE +0 +16 +16 +RF_Module +Modtronix_inAir9 +Modtronix Wireless SX1276 LoRa Module (http://modtronix.com/img/prod/imod/inair9/inair_dimensions.gif) +Modtronix LoRa inAir inAir9 SX1276 RF 915MHz 868MHz Wireless +0 +14 +14 +RF_Module +MonoWireless_TWE-L-WX +https://www.mono-wireless.com/jp/products/TWE-LITE/MW-PDS-TWELITE-JP.pdf +TWE-L-WX +0 +32 +32 +RF_Module +NINA-B111 +NINA-B111 LGA module 42 Pin https://content.u-blox.com/sites/default/files/NINA-B1_DataSheet_UBX-15019243.pdf#page=30 +NINA ublox u-blox b111 bluetooth nrf52840 module +0 +42 +42 +RF_Module +Particle_P1 +https://docs.particle.io/datasheets/p1-datasheet/ +Particle P1 +0 +75 +75 +RF_Module +RAK811 +RAK811 LPWAN Module https://downloads.rakwireless.com/LoRa/RAK811/Hardware_Specification/RAK811_LoRa_Module_Datasheet_V1.4.pdf +LoRa LoRaWAN RAK811 +0 +34 +34 +RF_Module +RAK4200 +RAK4200 LPWAN Module https://downloads.rakwireless.com/LoRa/RAK4200/Hardware-Specification/RAK4200_Module_Specifications_V1.4.pdf +LoRa LoRaWAN RAK4200 +0 +20 +20 +RF_Module +RFDigital_RFD77101 +RFDigital RFD77101 Simblee +RFDigital RFD77101 Simblee +0 +45 +45 +RF_Module +RN42 +Class 2 Bluetooth Module with on-board antenna +Bluetooth Module +0 +36 +33 +RF_Module +RN42N +Class 2 Bluetooth Module without antenna +Bluetooth Module +0 +39 +36 +RF_Module +RN2483 +Low-Power Long Range LoRa Transceiver Module +rf module lora lorawan +0 +47 +47 +RF_Module +Raytac_MDBT42Q +Multiprotocol radio SoC module https://www.raytac.com/download/index.php?index_id=27 +wireless 2.4 GHz Bluetooth ble zigbee 802.15.4 thread nordic raytac nrf52832 +0 +41 +41 +RF_Module +Raytac_MDBT50Q +Multiprotocol radio SoC module https://www.raytac.com/download/index.php?index_id=43 +wireless 2.4 GHz Bluetooth ble zigbee 802.15.4 thread nordic raytac nrf52840 nrf52833 +0 +61 +61 +RF_Module +ST-SiP-LGA-86-11x7.3mm +STM32WB5MMG Module, LGA86L 11x7.3 +bluetooth bluetooth5 bluetooth5.0 802.15.4 zigbee thread module stm32 rf +0 +86 +86 +RF_Module +ST_SPBTLE +Bluetooth Low Energy Module +ble module st bluetooth +0 +11 +11 +RF_Module +TD1205 +https://github.com/Telecom-Design/Documentation_TD_RF_Module/blob/master/TD1205%20Datasheet.pdf +SIGFOX Module +0 +9 +9 +RF_Module +TD1208 +https://github.com/Telecom-Design/Documentation_TD_RF_Module/blob/master/TD1208%20Datasheet.pdf +SIGFOX Module +0 +25 +25 +RF_Module +Taiyo-Yuden_EYSGJNZWY +Taiyo Yuden NRF51822 Module Bluetooth https://www.yuden.co.jp/wireless_module/document/datareport2/en/TY_BLE_EYSGJNZ_DataReport_V1_9_20180530E.pdf +Taiyo Yuden NRF51822 Module Bluetooth +0 +30 +28 +RF_Module +ZETA-433-SO_SMD +RF transceiver SMD style https://www.rfsolutions.co.uk/downloads/1456219226DS-ZETA.pdf +RF transceiver SMD style +0 +12 +12 +RF_Module +ZETA-433-SO_THT +RF transceiver THT style https://www.rfsolutions.co.uk/downloads/1456219226DS-ZETA.pdf +RF transceiver SMD style +0 +12 +12 +RF_Module +nRF24L01_Breakout +nRF24L01 breakout board +nRF24L01 adapter breakout +0 +8 +8 +RF_Shielding +Laird_Technologies_97-2002_25.40x25.40mm +Laird Technologies 97-2002 EZ PEEL Shielding Cabinet One Piece SMD 25.40x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +8 +1 +RF_Shielding +Laird_Technologies_97-2003_12.70x13.37mm +Laird Technologies 97-2003 EZ PEEL Shielding Cabinet One Piece SMD 12.70x13.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +8 +1 +RF_Shielding +Laird_Technologies_BMI-S-101_13.66x12.70mm +Laird Technologies BMI-S-101 Shielding Cabinet One Piece SMD 13.66x12.70mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-102_16.50x16.50mm +Laird Technologies BMI-S-102 Shielding Cabinet One Piece SMD 16.50x16.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-103_26.21x26.21mm +Laird Technologies BMI-S-103 Shielding Cabinet One Piece SMD 26.21x26.21mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +24 +1 +RF_Shielding +Laird_Technologies_BMI-S-104_32.00x32.00mm +Laird Technologies BMI-S-104 Shielding Cabinet One Piece SMD 32.00x32.00mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-105_38.10x25.40mm +Laird Technologies BMI-S-105 Shielding Cabinet One Piece SMD 38.10x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-106_36.83x33.68mm +Laird Technologies BMI-S-106 Shielding Cabinet One Piece SMD 36.83x33.68mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-107_44.37x44.37mm +Laird Technologies BMI-S-107 Shielding Cabinet One Piece SMD 44.37x44.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +36 +1 +RF_Shielding +Laird_Technologies_BMI-S-201-F_13.66x12.70mm +Laird Technologies BMI-S-201-F Shielding Cabinet Two Piece SMD 13.66x12.70mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-202-F_16.50x16.50mm +Laird Technologies BMI-S-202-F Shielding Cabinet Two Piece SMD 16.50x16.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-203-F_26.21x26.21mm +Laird Technologies BMI-S-203-F Shielding Cabinet Two Piece SMD 26.21x26.21mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +24 +1 +RF_Shielding +Laird_Technologies_BMI-S-204-F_32.00x32.00mm +Laird Technologies BMI-S-204-F Shielding Cabinet Two Piece SMD 32.00x32.00mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-205-F_38.10x25.40mm +Laird Technologies BMI-S-205-F Shielding Cabinet Two Piece SMD 38.10x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-206-F_36.83x33.68mm +Laird Technologies BMI-S-206-F Shielding Cabinet Two Piece SMD 36.83x33.68mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-207-F_44.37x44.37mm +Laird Technologies BMI-S-207-F Shielding Cabinet Two Piece SMD 44.37x44.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +36 +1 +RF_Shielding +Laird_Technologies_BMI-S-208-F_39.60x39.60mm +Laird Technologies BMI-S-208-F Shielding Cabinet Two Piece SMD 39.60x39.60mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +32 +1 +RF_Shielding +Laird_Technologies_BMI-S-209-F_29.36x18.50mm +Laird Technologies BMI-S-209-F Shielding Cabinet Two Piece SMD 29.36x18.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +20 +1 +RF_Shielding +Laird_Technologies_BMI-S-210-F_44.00x30.50mm +Laird Technologies BMI-S-210-F Shielding Cabinet Two Piece SMD 44.00x30.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +32 +1 +RF_Shielding +Laird_Technologies_BMI-S-230-F_50.8x38.1mm +Laird Technologies BMI-S-230-F Shielding Cabinet Two Piece SMD 50.8x38.1mm +Shielding Cabinet +0 +36 +1 +RF_Shielding +Wuerth_36103205_20x20mm +WE-SHC Shielding Cabinet SMD 20x20mm +Shielding Cabinet +0 +20 +1 +RF_Shielding +Wuerth_36103255_25x25mm +WE-SHC Shielding Cabinet SMD 25x25mm +Shielding Cabinet +0 +24 +1 +RF_Shielding +Wuerth_36103305_30x30mm +WE-SHC Shielding Cabinet SMD 30x30mm +Shielding Cabinet +0 +28 +1 +RF_Shielding +Wuerth_36103505_50x50mm +WE-SHC Shielding Cabinet SMD 50x50mm +Shielding Cabinet +0 +44 +1 +RF_Shielding +Wuerth_36103605_60x60mm +WE-SHC Shielding Cabinet SMD 60x60mm +Shielding Cabinet +0 +52 +1 +RF_Shielding +Wuerth_36503205_20x20mm +WE-SHC Shielding Cabinet THT 21x21mm +Shielding Cabinet +0 +16 +1 +RF_Shielding +Wuerth_36503255_25x25mm +WE-SHC Shielding Cabinet THT 26x26mm +Shielding Cabinet +0 +20 +1 +RF_Shielding +Wuerth_36503305_30x30mm +WE-SHC Shielding Cabinet THT 31x31mm +Shielding Cabinet +0 +24 +1 +RF_Shielding +Wuerth_36503505_50x50mm +WE-SHC Shielding Cabinet THT 51x51mm +Shielding Cabinet +0 +40 +1 +RF_Shielding +Wuerth_36503605_60x60mm +WE-SHC Shielding Cabinet THT 61x61mm +Shielding Cabinet +0 +48 +1 +RF_WiFi +USR-C322 +https://www.usriot.com/download/WIFI/USR-C322-Hardware-Manual_V1.2.01.pdf +WiFi IEEE802.11 b/g/n +0 +44 +44 +Relay_SMD +Relay_2P2T_10x6mm_TE_IMxxG +Signal Relay, 10x6mm, 2 Form C, Gull Wings, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7F108-98001%7FZ.1%7Fpdf%7FEnglish%7FENG_DS_108-98001_Z.1.pdf +TE IM-Series Relay DPDT Form C +0 +8 +8 +Relay_SMD +Relay_DPDT_AXICOM_IMSeries_JLeg +http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Specification+Or+Standard%7F108-98001%7FW5%7Fpdf%7FEnglish%7FENG_SS_108-98001_W5.pdf +AXICOM IM-Series Relay J JLeg +0 +8 +8 +Relay_SMD +Relay_DPDT_FRT5_SMD +IM Signal Relay DPDT FRT5 narrow footprint, SMD version of package +Relay DPDT IM-relay FRT5 +0 +10 +10 +Relay_SMD +Relay_DPDT_Kemet_EE2_NU +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double coil latching surface mount SMD +0 +8 +8 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUH +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double coil latching surface mount SMD +0 +8 +8 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUH_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD +0 +10 +10 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUX_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD +0 +10 +10 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUX_NKX +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double coil latching surface mount SMD +0 +8 +8 +Relay_SMD +Relay_DPDT_Kemet_EE2_NU_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD +0 +10 +10 +Relay_SMD +Relay_DPDT_Omron_G6H-2F +package for Omron G6H-2F relais, see http://cdn-reichelt.de/documents/datenblatt/C300/G6H%23OMR.pdf +Omron G6H-2F relais +0 +10 +10 +Relay_SMD +Relay_DPDT_Omron_G6K-2F +Omron G6K-2F relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2F relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6K-2F-Y +Omron G6K-2F-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2F-Y relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6K-2G +Omron G6K-2G relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2G relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6K-2G-Y +Omron G6K-2G-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2G-Y relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6S-2F +Relay Omron G6S-2F, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6S-2F +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6S-2G +Relay Omron G6S-2G, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6S-2G +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6SK-2F +Relay Omron G6SK-2F, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6SK-2F +0 +10 +10 +Relay_SMD +Relay_DPDT_Omron_G6SK-2G +Relay Omron G6SK-2G, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6SK-2G +0 +10 +10 +Relay_SMD +Relay_Fujitsu_FTR-B3S +https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-b3.pdf +Fujitsh FTR B3S B3SA Relay J JLeg +0 +8 +8 +Relay_SMD +Relay_SPDT_AXICOM_HF3Series_50ohms_Pitch1.27mm +hiqsdr.com/images/3/3e/Axicom-HF3.pdf +AXICOM HF3-Series Relay Pitch 1.27mm 50ohms +0 +16 +16 +Relay_SMD +Relay_SPDT_AXICOM_HF3Series_75ohms_Pitch1.27mm +hiqsdr.com/images/3/3e/Axicom-HF3.pdf +AXICOM HF3-Series Relay Pitch 1.27mm 75ohm +0 +16 +16 +Relay_THT +Relay_1-Form-A_Schrack-RYII_RM5mm +Relay, 1-Form-A, Schrack-RYII, RM5mm, SPST-NO +Relay 1-Form-A Schrack-RYII RM5mm SPST-NO +0 +4 +4 +Relay_THT +Relay_1-Form-B_Schrack-RYII_RM5mm +Relay, 1-Form-B, Schrack-RYII, RM5mm, SPST-NC +Relay 1-Form-B Schrack-RYII RM5mm SPST-NC +0 +4 +4 +Relay_THT +Relay_1-Form-C_Schrack-RYII_RM3.2mm +Relay, 1-Form-C, Schrack-RYII, RM3.2mm, SPDT +Relay 1-Form-C Schrack-RYII RM3.2mm SPDT +0 +5 +5 +Relay_THT +Relay_3PST_COTO_3650 +Low thermal EMF 3PST-NO reed relay, 150V 0.25A, similar to 3660 but with independent shield, https://cotorelay.com/wp-content/uploads/2014/09/3600_series_reed_relay_datasheet.pdf +reed relay low thermal emf +0 +9 +9 +Relay_THT +Relay_3PST_COTO_3660 +Low thermal EMF 3PST-NO reed relay, 150V 0.25A, similar to 3650 but with shared shield/contact, https://cotorelay.com/wp-content/uploads/2014/09/3600_series_reed_relay_datasheet.pdf +reed relay low thermal emf +0 +8 +8 +Relay_THT +Relay_DPDT_AXICOM_IMSeries_Pitch3.2mm +AXICOM IM-Series Relays, DPDR, Pitch 3.2mm, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Specification+Or+Standard%7F108-98001%7FV%7Fpdf%7FEnglish%7FENG_SS_108-98001_V_IM_0614_v1.pdf%7F4-1462039-1 +AXICOM IM-Series Relay DPDR Pitch 3.2mm +0 +8 +8 +Relay_THT +Relay_DPDT_AXICOM_IMSeries_Pitch5.08mm +AXICOM IM-Series Relays, DPDR, Pitch 5.08 +AXICOM IM-Series Relay DPDR Pitch 5.08 +0 +8 +8 +Relay_THT +Relay_DPDT_FRT5 +IM Signal Relay DPDT FRT5 narrow footprint +Relay DPDT IM-relay FRT5 +0 +10 +10 +Relay_THT +Relay_DPDT_Finder_30.22 +Finder 32.21-x000 Relay, DPDT, https://gfinder.findernet.com/public/attachments/30/EN/S30EN.pdf +AXICOM IM-Series Relay SPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Finder_40.52 +DPDT relay, Finder 40.52, 8A, 250V, body size 29x12.4mm, height 25mm, pitch 5x7.5mm, https://cdn.findernet.com/app/uploads/S40EN.pdf +2-Form-C +0 +8 +8 +Relay_THT +Relay_DPDT_Fujitsu_FTR-F1C +https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-f1.pdf +relay dpdt fujitsu tht +0 +8 +8 +Relay_THT +Relay_DPDT_Hongfa_HF115F-2Z-x4 +Hongfa DPDT power relay, 8A, 250VAC, body size 29x127.x15.7mm, https://source.hongfa.com//pdf/web/viewer.html?file=/Uploads/Product/PDF/HF115F_I_en.pdf +2-Form-C +0 +8 +8 +Relay_THT +Relay_DPDT_Kemet_EC2 +Kemet signal relay, DPDT, non-latching, single coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT non single coil latching through hole THT +0 +8 +8 +Relay_THT +Relay_DPDT_Kemet_EC2_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching through hole THT +0 +10 +10 +Relay_THT +Relay_DPDT_Omron_G2RL-2 +Omron Relay, DPDT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G5V-2 +http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v2.pdf +Omron G5V-2 Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6A +DPDT signal relay, Omron G6A/G6AU, 20x9.9x8.2mm https://omronfs.omron.com/en_US/ecb/products/pdf/en-g6a.pdf +Omron G6A Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6AK +DPDT signal relay, double-winding latching, Omron G6AK, 20x9.9x8.2mm https://omronfs.omron.com/en_US/ecb/products/pdf/en-g6a.pdf +Omron G6AK Relay DPDT +0 +10 +10 +Relay_THT +Relay_DPDT_Omron_G6H-2 +Omron relay G6H-2, see http://cdn-reichelt.de/documents/datenblatt/C300/G6H%23OMR.pdf +Omron relay G6H-2 +0 +10 +10 +Relay_THT +Relay_DPDT_Omron_G6K-2P +Omron G6K-2P relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2P relay +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6K-2P-Y +Omron G6K-2P-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2P-Y relay +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6S-2 +Relay Omron G6S-2, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6S-2 +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6SK-2 +Relay Omron G6SK-2, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6SK-2 +0 +10 +10 +Relay_THT +Relay_DPDT_Panasonic_JW2 +Panasonic Relay DPDT, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok +Panasonic Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Schrack-RT2-FormC-Dual-Coil_RM5mm +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FRT2_bistable%7F1116%7Fpdf%7FEnglish%7FENG_DS_RT2_bistable_1116.pdf%7F1-1415537-8 +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Relay +0 +9 +9 +Relay_THT +Relay_DPDT_Schrack-RT2-FormC_RM5mm +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Relay +0 +8 +8 +Relay_THT +Relay_DPST_COTO_3602 +Low thermal EMF DPST-NO reed relay, 150V 0.25A, https://cotorelay.com/wp-content/uploads/2014/09/3600_series_reed_relay_datasheet.pdf +reed relay low thermal emf +0 +7 +7 +Relay_THT +Relay_DPST_Fujitsu_FTR-F1A +https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-f1.pdf +relay dpst fujitsu tht +0 +6 +6 +Relay_THT +Relay_DPST_Omron_G2RL-2A +Omron Relay, DPST, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay DPST +0 +6 +6 +Relay_THT +Relay_DPST_Schrack-RT2-FormA_RM5mm +Relay DPST Schrack-RT2 RM5mm 16A 250V AC Form A http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN +Relay DPST Schrack-RT2 RM5mm 16A 250V AC Relay +0 +6 +6 +Relay_THT +Relay_NCR_HHG1D-1 +NCR solid state relay 1A, 2A, 3A, 4A, https://ncr.hk/uploads/Relays/Solid_State_Relays/HHG1D-1.pdf +ssr +0 +4 +4 +Relay_THT +Relay_SPDT_Finder_32.21-x000 +Finder 32.21-x000 Relay, SPDT, https://gfinder.findernet.com/assets/Series/355/S32EN.pdf +AXICOM IM-Series Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_34.51_Horizontal +Relay SPDT, Finder Type34.51, horizontal form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf +Relay SPDT Finder +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_34.51_Vertical +Relay SPDT, Finder Type34.51, vertical/standing form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf +Relay SPDT Finder +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_36.11 +FINDER 36.11, SPDT relay, 10A, https://cdn.findernet.com/app/uploads/S36EN.pdf +spdt relay +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.11 +Relay SPDT Finder 40.11, 10/16A, 250V, body size 28.5x26.3mm, height 12.7mm, https://web.archive.org/web/20170816081018if_/https://www.finder-relais.net/de/finder-relais-serie-40.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.31 +DPDT relay, Finder 40.52, 10/12A, 250V, body size 29x12.4mm, height 25mm, pitch 3.5x7.5mm, https://cdn.findernet.com/app/uploads/S40EN.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.41 +Relay SPDT Finder 40.11, 10A, 250V, body size 28.5x12.3mm, height 26.3mm, https://web.archive.org/web/20170816081018if_/https://www.finder-relais.net/de/finder-relais-serie-40.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.51 +SPDT relay, Finder 40.52, 10/12A, 250V, body size 29x12.4mm, height 25mm, pitch 5x7.5mm, https://cdn.findernet.com/app/uploads/S40EN.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Fujitsu_FTR-LYCA005x_FormC_Vertical +Relay, SPDT Form C, vertical mount, 6A, 5-60V, https://www.fujitsu.com/sg/imagesgig5/ftr-ly.pdf +relay SPDT form c vertical +0 +5 +5 +Relay_THT +Relay_SPDT_HJR-4102 +IM Signal Relay SPDT HJR-4102 +Relay SPDT IM-relay HJR-4102 +0 +6 +6 +Relay_THT +Relay_SPDT_Hongfa_HF3F-L-xx-1ZL1T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 10A switching current, Form-C https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-c 1-coil +0 +5 +5 +Relay_THT +Relay_SPDT_Hongfa_HF3F-L-xx-1ZL2T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 10A switching current, Form-C https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-c 2-coil +0 +6 +6 +Relay_THT +Relay_SPDT_Hongfa_HF3F-L-xx-1ZL2T-R +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 10A switching current, reverse polarity, Form-C https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-c 2-coil reverse-polarity +0 +6 +6 +Relay_THT +Relay_SPDT_HsinDa_Y14 +http://www.hsinda.com.tw/upload/file/Y14-20200430135145.pdf +Relay Y14 +0 +6 +6 +Relay_THT +Relay_SPDT_Omron-G5LE-1 +Omron Relay SPDT, http://www.omron.com/ecb/products/pdf/en-g5le.pdf +Omron Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_Omron-G5Q-1 +Relay SPDT Omron Serie G5Q, http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5q.pdf +Relay SPDT Omron Serie G5Q +0 +5 +5 +Relay_THT +Relay_SPDT_Omron_G2RL-1 +Omron Relay, SPDT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_Omron_G2RL-1-E +Omron Relay, SPDT, High Capacity, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPDT High Capacity +0 +8 +5 +Relay_THT +Relay_SPDT_Omron_G5V-1 +Relay Omron G5V-1, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v_1.pdf +Relay Omron G5V-1 +0 +6 +6 +Relay_THT +Relay_SPDT_Omron_G6E +Relay SPDT Omron Serie G6E +Relay SPDT Omron Serie G6E 1x um +0 +5 +5 +Relay_THT +Relay_SPDT_Omron_G6EK +Relay SPDT Omron Serie G6EK, see http://www.logosfoundation.org/instrum_gwr/pi/Omron_G6E_134P.pdf +Relay SPDT Omron Serie G6EK +0 +6 +6 +Relay_THT +Relay_SPDT_Panasonic_JW1_FormC +Panasonic Relay SPDT, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok +Panasonic Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_PotterBrumfield_T9AP5D52_12V30A +Relay SPDT Potter&Brumfield T9AP5D52 12V 30A 1xUn Connector Fast ON Only Dummy for Space NO Pads +Relay SPDT Potter&Brumfield T9AP5D52 12V 30A 1xUm Connector Fast ON Flachsteckeranschluss Only Dummy for Space NO Pads +0 +0 +0 +Relay_THT +Relay_SPDT_RAYEX-L90 +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90 SPDT +0 +6 +6 +Relay_THT +Relay_SPDT_RAYEX-L90S +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90S SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_SANYOU_SRD_Series_Form_C +relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf +relay Sanyu SRD form C +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RP-II-1-16A-FormC_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Relay +0 +8 +5 +Relay_THT +Relay_SPDT_Schrack-RP-II-1-FormC_RM3.5mm +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RP-II-1-FormC_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RT1-16A-FormC_RM5mm +Relay SPST Schrack-RT1 RM5mm 16A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM5mm 16A 250V AC Relay +0 +8 +5 +Relay_THT +Relay_SPDT_Schrack-RT1-FormC_RM3.5mm +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RT1-FormC_RM5mm +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_StandexMeder_SIL_Form1C +Standex-Meder SIL-relais, Form 1C, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf +Standex Meder SIL reed relais +0 +5 +5 +Relay_THT +Relay_SPST-NO_Fujitsu_FTR-LYAA005x_FormA_Vertical +Relay, SPST-NO Form A, vertical mount, 6A, 5-60V, https://www.fujitsu.com/sg/imagesgig5/ftr-ly.pdf +relay SPST-NO form A vertical +0 +4 +4 +Relay_THT +Relay_SPST_Finder_32.21-x300 +Finder 32.21-x300 Relay, SPST, https://gfinder.findernet.com/assets/Series/355/S32EN.pdf +Finder 32.21-x300 Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Hongfa_HF3F-L-xx-1HL1T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 15A switching current, Form-A https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-a 1-coil +0 +4 +4 +Relay_THT +Relay_SPST_Hongfa_HF3F-L-xx-1HL2T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 15A switching current, Form-A https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-a 2-coil +0 +5 +5 +Relay_THT +Relay_SPST_Hongfa_HF3F-L-xx-1HL2T-R +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 15A switching current, Form-A, reverse polarity, https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-a 2-coil reverse-polarity +0 +5 +5 +Relay_THT +Relay_SPST_Omron-G5Q-1A +Relay SPST-NO Omron Serie G5Q, http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5q.pdf +Relay SPST-NO Omron Serie G5Q +0 +4 +4 +Relay_THT +Relay_SPST_Omron_G2RL-1A +Omron Relay, SPST, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Omron_G2RL-1A-E +Omron Relay, SPST, High Capacity, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPST High Capacity +0 +6 +4 +Relay_THT +Relay_SPST_Omron_G5NB +PCB Power Relay, SPST-NO, 7A (250 VAC), 5A (30 VDC), 20.5x7.2x15.3mm max +Omron G5NB Relay SPST-NO +0 +4 +4 +Relay_THT +Relay_SPST_Omron_G5PZ +Relay Omron G5PZ, see https://components.omron.com/us-en/sites/components.omron.com.us/files/datasheet_pdf/K320-E1.pdf +Relay Omron G5PZ +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_ADW11 +Panasonic power relay, SPST, latching, 10x24mm, 18.8mm height, https://api.pim.na.industrial.panasonic.com/file_stream/main/fileversion/270 +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_ALFG_FormA +Panasonic Relay SPST, https://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_lfg.pdf +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_ALFG_FormA_CircularHoles +Panasonic Relay SPST, https://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_lfg.pdf +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_JW1_FormA +Panasonic Relay SPST, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_PotterBrumfield_T9AP1D52_12V30A +Relay SPST Potter&Brumfield T9AP1D52 12V 30A 1xEin Connector Fast ON Only Dummy for Space NO Pads +Relau SPST Potter&Brumfield T9AP1D52 12V 30A 1xEin Connector Fast ON Flachsteckeranschluss Only Dummy for Space NO Pads +0 +0 +0 +Relay_THT +Relay_SPST_RAYEX-L90A +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90A SPST NO +0 +5 +5 +Relay_THT +Relay_SPST_RAYEX-L90AS +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90AS SPST NO +0 +4 +4 +Relay_THT +Relay_SPST_RAYEX-L90B +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90B SPST NC +0 +5 +5 +Relay_THT +Relay_SPST_RAYEX-L90BS +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90BS SPST NC +0 +4 +4 +Relay_THT +Relay_SPST_SANYOU_SRD_Series_Form_A +relay Sanyou SRD series Form A http://www.sanyourelay.ca/public/products/pdf/SRD.pdf +relay Sanyu SRD form A +0 +4 +4 +Relay_THT +Relay_SPST_SANYOU_SRD_Series_Form_B +relay Sanyou SRD series Form B opener http://www.sanyourelay.ca/public/products/pdf/SRD.pdf +relay Sanyu SRD form B opener +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RP-II-1-16A-FormA_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Form A http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Relay +0 +6 +4 +Relay_THT +Relay_SPST_Schrack-RP-II-1-FormA_RM3.5mm +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Form A +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RP-II-1-FormA_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Form A http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RP3SL-1coil_RM5mm +Relay SPST Schrack-RP3SL, 1-coil-version, RM5mm 16A 250V AC Form A http://www.alliedelec.com/m/d/543c6bed18bf23a83ae5238947033ee0.pdf +Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Relay +0 +6 +4 +Relay_THT +Relay_SPST_Schrack-RP3SL_RM5mm +Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Form A http://www.alliedelec.com/m/d/543c6bed18bf23a83ae5238947033ee0.pdf +Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Relay +0 +7 +5 +Relay_THT +Relay_SPST_Schrack-RT1-16A-FormA_RM5mm +Relay SPST Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN +Relay SPST Schrack-RT2 RM5mm 16A 250V AC Relay +0 +6 +4 +Relay_THT +Relay_SPST_Schrack-RT1-FormA_RM3.5mm +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Form A +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RT1-FormA_RM5mm +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_StandexMeder_MS_Form1AB +Standex-Meder MS SIL-relais, Form 1A/1B, see https://standexelectronics.com/de/produkte/ms-reed-relais/ +Standex Meder MS SIL reed relais +0 +4 +4 +Relay_THT +Relay_SPST_StandexMeder_SIL_Form1A +Standex-Meder SIL-relais, Form 1A, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf +Standex Meder SIL reed relais +0 +4 +4 +Relay_THT +Relay_SPST_StandexMeder_SIL_Form1B +Standex-Meder SIL-relais, Form 1B, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf +Standex Meder SIL reed relais +0 +4 +4 +Relay_THT +Relay_SPST_TE_PCH-1xxx2M +Miniature PCB Relay, PCH Series, 1 Form A (NO), SPST http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FPCH_series_relay_data_sheet_E%7F1215%7Fpdf%7FEnglish%7FENG_DS_PCH_series_relay_data_sheet_E_1215.pdf +Relay SPST NO +0 +4 +4 +Relay_THT +Relay_SPST_TE_PCN-1xxD3MHZ +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1461491%7FG2%7Fpdf%7FEnglish%7FENG_CD_1461491_G2.pdf%7F3-1461491-0 +SPST relay slim +0 +4 +4 +Relay_THT +Relay_SPST_Zettler-AZSR131 +American Zettler RELAY EV CHRG SOLAR SPST 35A 12V, https://zettlerelectronics.com/products/AZSR131.pdf +SPST +0 +4 +4 +Relay_THT +Relay_Socket_3PDT_Omron_PLE11-0 +29mm Dia, round mounting socket, 10A, 2kV AC / minute, 1e3Mohm, https://www.omron.com.tw/data_pdf/cat/common_sockets_ds_e_6_1_csm1819.pdf?#page=27 +tube type relay +0 +11 +11 +Relay_THT +Relay_Socket_4PDT_Omron_PY14-02 +21.4x25.8mm, 4Pole mounting socket, 3A, 1.5kV AC / minute, 1e2Mohm, https://www.omron.com.tw/data_pdf/cat/common_sockets_ds_e_6_1_csm1819.pdf?#page=19 +relay socket +0 +14 +14 +Relay_THT +Relay_Socket_DPDT_Finder_96.12 +DPDT relay socket, 15A max 10A per contact, 2kV AC Isolation, https://gfinder.findernet.com/public/attachments/56/DE/S56DE.pdf +finder relay socket 96.12 56.32 +0 +8 +8 +Relay_THT +Relay_Socket_DPDT_Omron_PLE08-0 +29mm Dia, round mounting socket, 10A, 2kV AC / minute, 1e3Mohm, https://www.omron.com.tw/data_pdf/cat/common_sockets_ds_e_6_1_csm1819.pdf?#page=27 +tube type relay +0 +8 +8 +Relay_THT +Relay_StandexMeder_DIP_HighProfile +package for Standex Meder DIP reed relay series, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_DIP.pdf +DIL DIP PDIP 2.54mm 7.62mm 300mil reed relay +0 +8 +8 +Relay_THT +Relay_StandexMeder_DIP_LowProfile +package for Standex Meder DIP reed relay series, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_DIP.pdf +DIL DIP PDIP 2.54mm 7.62mm 300mil reed relay +0 +8 +8 +Relay_THT +Relay_StandexMeder_UMS +Standex-Meder SIL-relais, UMS, see http://cdn-reichelt.de/documents/datenblatt/C300/UMS05_1A80_75L_DB.pdf +Standex Meder SIL reed relais +0 +4 +4 +Resistor_SMD +R_0201_0603Metric +Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +resistor +0 +4 +2 +Resistor_SMD +R_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +4 +2 +Resistor_SMD +R_0402_1005Metric +Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0402_1005Metric_Pad0.72x0.64mm_HandSolder +Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0603_1608Metric +Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0603_1608Metric_Pad0.98x0.95mm_HandSolder +Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0612_1632Metric +Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0612_1632Metric_Pad1.18x3.40mm_HandSolder +Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0805_2012Metric +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0805_2012Metric_Pad1.20x1.40mm_HandSolder +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0815_2038Metric +Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0815_2038Metric_Pad1.20x4.05mm_HandSolder +Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_01005_0402Metric +Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +resistor +0 +4 +2 +Resistor_SMD +R_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +4 +2 +Resistor_SMD +R_1020_2550Metric +Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1020_2550Metric_Pad1.33x5.20mm_HandSolder +Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1206_3216Metric +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1206_3216Metric_Pad1.30x1.75mm_HandSolder +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1210_3225Metric +Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1210_3225Metric_Pad1.30x2.65mm_HandSolder +Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1218_3246Metric +Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1218_3246Metric_Pad1.22x4.75mm_HandSolder +Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1812_4532Metric +Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_2010_5025Metric +Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_2010_5025Metric_Pad1.40x2.65mm_HandSolder +Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_2512_6332Metric +Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_2512_6332Metric_Pad1.40x3.35mm_HandSolder +Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_2816_7142Metric +Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_2816_7142Metric_Pad3.20x4.45mm_HandSolder +Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_4020_10251Metric +Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_4020_10251Metric_Pad1.65x5.30mm_HandSolder +Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_Array_Concave_2x0603 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Concave_4x0402 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA04P (see cra04p.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Concave_4x0603 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_2x0402 +Chip Resistor Network, ROHM MNR02 (see mnr_g.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_2x0603 +Chip Resistor Network, ROHM MNR12 (see mnr_g.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_2x0606 +Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_2x1206 +Chip Resistor Network, ROHM MNR32 (see mnr_g.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_4x0402 +Chip Resistor Network, ROHM MNR04 (see mnr_g.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_4x0603 +Chip Resistor Network, ROHM MNR14 (see mnr_g.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_4x0612 +Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_4x1206 +Chip Resistor Network, ROHM MNR34 (see mnr_g.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_5x0603 +Chip Resistor Network, ROHM MNR15 (see mnr_g.pdf) +resistor array +0 +10 +10 +Resistor_SMD +R_Array_Convex_5x1206 +Chip Resistor Network, ROHM MNR35 (see mnr_g.pdf) +resistor array +0 +10 +10 +Resistor_SMD +R_Array_Convex_8x0602 +Chip Resistor Network, ROHM MNR18 (see mnr_g.pdf) +resistor array +0 +16 +16 +Resistor_SMD +R_Cat16-2 +SMT resistor net, Bourns CAT16 series, 2 way +SMT resistor net Bourns CAT16 series 2 way +0 +4 +4 +Resistor_SMD +R_Cat16-4 +SMT resistor net, Bourns CAT16 series, 4 way +SMT resistor net Bourns CAT16 series 4 way +0 +8 +8 +Resistor_SMD +R_Cat16-8 +SMT resistor net, Bourns CAT16 series, 8 way +SMT resistor net Bourns CAT16 series 8 way +0 +16 +16 +Resistor_SMD +R_MELF_MMB-0207 +Resistor, MELF, MMB-0207, http://www.vishay.com/docs/28713/melfprof.pdf +MELF Resistor +0 +2 +2 +Resistor_SMD +R_MicroMELF_MMU-0102 +Resistor, MicroMELF, MMU-0102, http://www.vishay.com/docs/28713/melfprof.pdf +MicroMELF Resistor +0 +2 +2 +Resistor_SMD +R_MiniMELF_MMA-0204 +Resistor, MiniMELF, MMA-0204, http://www.vishay.com/docs/28713/melfprof.pdf +MiniMELF Resistor +0 +2 +2 +Resistor_SMD +R_Shunt_Isabellenhuette_BVR4026 +4-Wire Shunt, SMD 4026, https://www.isabellenhuette.de/fileadmin/Daten/Praezisionswiderstaende/Datenblaetter/BVR.PDF +kelvin-connection +0 +4 +4 +Resistor_SMD +R_Shunt_Ohmite_LVK12 +4 contact shunt resistor +shunt resistor 4 contacts +0 +4 +4 +Resistor_SMD +R_Shunt_Ohmite_LVK20 +4 contacts shunt resistor, https://www.ohmite.com/assets/docs/res_lvk.pdf +4 contacts resistor smd +0 +4 +4 +Resistor_SMD +R_Shunt_Ohmite_LVK24 +4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf +4 contacts resistor smd +0 +4 +4 +Resistor_SMD +R_Shunt_Ohmite_LVK25 +4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf +4 contacts resistor smd +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSK2512_6332Metric_T1.19mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 1.19mm, 5 to 200 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) +resistor shunt WSK2512 +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSK2512_6332Metric_T2.21mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.21mm, 1 to 4.9 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) +resistor shunt WSK2512 +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSK2512_6332Metric_T2.66mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.66mm, 0.5 to 0.99 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) +resistor shunt WSK2512 +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSKW0612 +https://www.vishay.com/docs/30332/wskw0612.pdf +4-Terminal SMD Shunt +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSR2_WSR3 +Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf +SMD Shunt Resistor +0 +2 +2 +Resistor_SMD +R_Shunt_Vishay_WSR2_WSR3_KelvinConnection +Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf +SMD Shunt Resistor +0 +4 +2 +Resistor_THT +R_Array_SIP4 +4-pin Resistor SIP pack +R +0 +4 +4 +Resistor_THT +R_Array_SIP5 +5-pin Resistor SIP pack +R +0 +5 +5 +Resistor_THT +R_Array_SIP6 +6-pin Resistor SIP pack +R +0 +6 +6 +Resistor_THT +R_Array_SIP7 +7-pin Resistor SIP pack +R +0 +7 +7 +Resistor_THT +R_Array_SIP8 +8-pin Resistor SIP pack +R +0 +8 +8 +Resistor_THT +R_Array_SIP9 +9-pin Resistor SIP pack +R +0 +9 +9 +Resistor_THT +R_Array_SIP10 +10-pin Resistor SIP pack +R +0 +10 +10 +Resistor_THT +R_Array_SIP11 +11-pin Resistor SIP pack +R +0 +11 +11 +Resistor_THT +R_Array_SIP12 +12-pin Resistor SIP pack +R +0 +12 +12 +Resistor_THT +R_Array_SIP13 +13-pin Resistor SIP pack +R +0 +13 +13 +Resistor_THT +R_Array_SIP14 +14-pin Resistor SIP pack +R +0 +14 +14 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=1.9mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 1.9mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=2.54mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 2.54mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=5.08mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 5.08mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 5.08mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 5.08mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P5.08mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=5.08mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 5.08mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 5.08mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P5.08mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=5.08mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 5.08mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P22.40mm +Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P25.40mm +Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W6.4mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W6.4mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W6.4mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W9.0mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W9.0mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L50.0mm_W9.0mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L50.0mm_W9.0mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P66.04mm +Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P71.12mm +Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L75.0mm_W9.0mm_P81.28mm +Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L75.0mm_W9.0mm_P86.36mm +Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm +Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm +0 +4 +4 +Resistor_THT +R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm +0 +2 +2 +Resistor_THT +R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm +0 +2 +2 +Resistor_THT +R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm +0 +2 +2 +Resistor_THT +R_Box_L8.4mm_W2.5mm_P5.08mm +Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf +Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm +0 +2 +2 +Resistor_THT +R_Box_L13.0mm_W4.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm +0 +2 +2 +Resistor_THT +R_Box_L14.0mm_W5.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm +0 +2 +2 +Resistor_THT +R_Box_L26.0mm_W5.0mm_P20.00mm +Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L7.0mm_W8.0mm_Px2.40mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.40*2.30mm^2, 7W, length*width=7*8mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.40*2.30mm^2 7W length 7mm width 8mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L9.0mm_W10.0mm_Px2.70mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.70*2.30mm^2, 17W, length*width=9*10mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.70*2.30mm^2 17W length 9mm width 10mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L11.0mm_W7.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 2W, length*width=11.0*7.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 2W length 11.0mm width 7.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L12.0mm_W8.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L13.0mm_W9.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L16.1mm_W9.0mm_P7.37mm +Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm +0 +2 +2 +Rotary_Encoder +RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm +Alps rotary encoder, EC12E... with switch, vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E... with switch, vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC11E_Vertical_H20mm +Alps rotary encoder, EC12E... without switch (pins are dummy), vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +4 +Rotary_Encoder +RotaryEncoder_Alps_EC11E_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E... without switch (pins are dummy), vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +4 +Rotary_Encoder +RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm +Alps rotary encoder, EC12E... with switch, vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html & http://cdn-reichelt.de/documents/datenblatt/F100/402097STEC12E08.PDF +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E... with switch, vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html & http://cdn-reichelt.de/documents/datenblatt/F100/402097STEC12E08.PDF +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC12E_Vertical_H20mm +Alps rotary encoder, EC12E..., vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Alps_EC12E_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E..., vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC09-2xxxF-Nxxxx +Bourns rotary encoder, PEC09, without switch, horizontal shaft, https://www.bourns.com/products/encoders/contacting-encoders/product/PEC09 +rotary encoder +0 +3 +3 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC09-2xxxF-Sxxxx +Bourns rotary encoder, PEC09, with switch, horizontal shaft, https://www.bourns.com/products/encoders/contacting-encoders/product/PEC09 +rotary encoder +0 +5 +5 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC12R-2x17F-Nxxxx +Bourns rotary encoder, PEC12R, without switch, horizontal shaft, 17mm shaft length, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC12R-2x17F-Sxxxx +Bourns rotary encoder, PEC12R, with switch, horizontal shaft, 17mm shaft length, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x16F-Sxxxx +Rotary encoder with switch and illuminated 4mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x18F-Sxxxx +Rotary encoder with switch and illuminated 6mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x21F-Sxxxx +Rotary encoder with switch and illuminated 8mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x25S-Sxxxx +Rotary encoder with switch and illuminated shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x26F-Sxxxx +Rotary encoder with switch and illuminated 13mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x31F-Sxxxx +Rotary encoder with switch and illuminated 18mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEC12R-3x17F-Nxxxx +Bourns rotary encoder, PEC12R, without switch, with bushing, vertical shaft, 17.5mm shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEC12R-3x17F-Sxxxx +Bourns rotary encoder, PEC12R, with switch, with bushing, vertical shaft, 17.5mm shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEL12D-4x25S-Sxxxx +Rotary encoder with switch and illuminated 13mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch vertical +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEL12D-4xxxF-Sxxxx +Rotary encoder with switch and illuminated 4,6,8,13,18mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch vertical +0 +9 +8 +Sensor +ASAIR_AM2302_P2.54mm_Lead2.75mm_TabDown +Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/AM2302.pdf +Temperature and humidity module DHT22 AM2302 +0 +4 +4 +Sensor +ASAIR_AM2302_P2.54mm_Vertical +Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/AM2302.pdf +Temperature and humidity module DHT22 AM2302 +0 +4 +4 +Sensor +Aosong_DHT11_5.5x12.0_P2.54mm +Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/DHT11.pdf +Temperature and humidity module +0 +4 +4 +Sensor +Avago_APDS-9960 +Digital Proximity, Ambient Light, RGB and Gesture Sensor (https://docs.broadcom.com/doc/AV02-4191EN) +DFN Sensor optical IR +0 +8 +8 +Sensor +LuminOX_LOX-O2 +SST LuminOX Luminescence-based O2 sensor, https://sstsensing.com/wp-content/uploads/2021/08/DS0030rev15_LuminOx.pdf +SST LuminOX O2 +0 +4 +4 +Sensor +MQ-6 +Gas Sensor, 6 pin, https://www.winsen-sensor.com/d/files/semiconductor/mq-6.pdf +gas sensor +0 +6 +6 +Sensor +Rohm_RPR-0521RS +Digital Proximity and Ambient Light Sensor, 2.36 x 3.94 x 1.35mm, LGA-8 (https://fscdn.rohm.com/en/products/databook/datasheet/opto/optical_sensor/opto_module/rpr-0521rs-e.pdf) +DFN Sensor optical IR +0 +8 +8 +Sensor +SHT1x +SHT1x +SHT1x +0 +8 +8 +Sensor +SPEC_110-xxx_SMD-10Pin_20x20mm_P4.0mm +SPEC Sensors SMD package, 20x20mm, https://www.spec-sensors.com/wp-content/uploads/2016/10/3SP_H2S_50-C-Package-110-304.pdf +SPEC Sensors gas sensor +0 +10 +10 +Sensor +Senseair_S8_Down +Sensair S8 Series CO2 sensor, 1kHz PWM output, Modbus, THT +co2 gas sensor pwm modbus +0 +9 +9 +Sensor +Senseair_S8_Up +Sensair S8 Series CO2 sensor, 1kHz PWM output, Modbus, THT +co2 gas sensor pwm modbus +0 +9 +9 +Sensor +Sensirion_SCD4x-1EP_10.1x10.1mm_P1.25mm_EP4.8x4.8mm +Sensirion SCD4x QFN, 20 Pin (https://sensirion.com/media/documents/C4B87CE6/627C2DCD/CD_DS_SCD40_SCD41_Datasheet_D1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Sensirion QFN NoLead +0 +25 +21 +Sensor +Sensortech_MiCS_5x7mm_P1.25mm +https://www.sgxsensortech.com/content/uploads/2014/07/1084_Datasheet-MiCS-5524-rev-8.pdf +Sensortech MiCS MEMS sensor +0 +10 +10 +Sensor +TGS-5141 +Fixaro carbon monoxide electrochemical sensor, https://figarosensor.com/product/docs/tgs5141-p00_product%20infomation%28fusa%29_rev07.pdf +Figaro CO sensor +0 +3 +2 +Sensor +Winson_GM-402B_5x5mm_P1.27mm +Winson GM-402B QFN, 8 Pin (https://www.winsen-sensor.com/d/files/me2/mems--gm-402b--manual-v1_1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Winson QFN NoLead +0 +8 +8 +Sensor_Audio +CUI_CMC-4013-SMT +Omnidirectional, -42dB, reflowable, electret condenser microphone https://www.cuidevices.com/product/resource/cmc-4013-smt-tr.pdf +Microphone CUI +0 +2 +2 +Sensor_Audio +Infineon_PG-LLGA-5-1 +Infineon_PG-LLGA-5-1 StepUp generated footprint, https://www.infineon.com/cms/en/product/packages/PG-LLGA/PG-LLGA-5-1/ +infineon mems microphone +0 +15 +5 +Sensor_Audio +Infineon_PG-LLGA-5-2 +Infineon, IP57, XENSIV, LGA-5, https://www.infineon.com/dgdl/Infineon-IM73A135-DataSheet-v01_00-EN.pdf?fileId=8ac78c8c7f2a768a017fadec36b84500 +MEMS Microphone LGA Dust Water +0 +5 +5 +Sensor_Audio +InvenSense_ICS-43434-6_3.5x2.65mm +TDK InvenSense MEMS I2S Microphone: https://invensense.tdk.com/products/ics-43434/ +microphone MEMS I2S ICS-43434 TDK InvenSense +0 +6 +6 +Sensor_Audio +Knowles_LGA-5_3.5x2.65mm +https://www.knowles.com/docs/default-source/model-downloads/sph0641lu4h-1-revb.pdf +MEMS Microphone LGA +0 +5 +5 +Sensor_Audio +Knowles_LGA-6_4.72x3.76mm +Knowles MEMS Analog Microphone, Omnidirectional, SMD, Differential/Single-Ended Output, -40dB, Bottom Port, https://www.knowles.com/docs/default-source/default-document-library/spm0687lr5h-1_winfrey_datasheet.pdf +SPM0687LR5H MEMS Microphone LGA +0 +6 +6 +Sensor_Audio +Knowles_SPH0645LM4H-6_3.5x2.65mm +Knowles MEMS I2S Microphone: https://www.knowles.com/subdepartment/dpt-microphones/subdpt-sisonic-surface-mount-mems +microphone MEMS I2S SPH0645LM4H Knowles +0 +6 +6 +Sensor_Audio +POM-2244P-C3310-2-R +Electret Condenser microphone, Project Unlimited (PU) Audio, https://api.puiaudio.com/file/b7e03aec-9603-48da-8064-9a0e0468047c.pdf +microphone electret +0 +2 +2 +Sensor_Audio +ST_HLGA-6_3.76x4.72mm_P1.65mm +http://www.st.com/content/ccc/resource/technical/document/datasheet/group3/27/62/48/98/44/54/4d/36/DM00303211/files/DM00303211.pdf/jcr:content/translations/en.DM00303211.pdf +HLGA Sensor Audio +0 +6 +6 +Sensor_Current +AKM_CQ_7 +AKM Current Sensor, 7 pin, THT (http://www.akm.com/akm/en/file/datasheet/CQ-236B.pdf) +akm current sensor tht +0 +39 +7 +Sensor_Current +AKM_CQ_7S +AKM Current Sensor, 7 pin, SMD (http://www.akm.com/akm/en/file/datasheet/CQ-236B.pdf) +akm current sensor smd +0 +19 +7 +Sensor_Current +AKM_CQ_VSOP-24_5.6x7.9mm_P0.65mm +AKM VSOP-24 current sensor, 5.6x7.9mm body, 0.65mm pitch (http://www.akm.com/akm/en/file/datasheet/CQ-330J.pdf) +akm vsop 24 +0 +10 +10 +Sensor_Current +AKM_CZ_SSOP-10_6.5x8.1mm_P0.95mm +AKM CZ-381x current sensor, 6.5x8.1mm body, 0.95mm pitch (http://www.akm.com/akm/en/product/detail/0009/) +akm cz-381x 10 +0 +10 +10 +Sensor_Current +Allegro_CB_PFF +Allegro MicroSystems, CB-PFF Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) !PADS 4-5 DO NOT MATCH DATASHEET! +Allegro CB-PFF +0 +37 +5 +Sensor_Current +Allegro_CB_PSF +Allegro MicroSystems, CB-PSF Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) +Allegro CB-PSF +0 +5 +5 +Sensor_Current +Allegro_CB_PSS +Allegro MicroSystems, CB-PSS Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) +Allegro CB-PSS +0 +5 +5 +Sensor_Current +Allegro_PSOF-7_4.8x6.4mm_P1.60mm +Allegro Microsystems PSOF-7, 4.8x6.4mm Body, 1.60mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/ACS780-Datasheet.ashx) +Allegro PSOF-7 +0 +7 +7 +Sensor_Current +Allegro_QFN-12-10-1EP_3x3mm_P0.5mm +Allegro Microsystems 12-Lead (10-Lead Populated) Quad Flat Pack, 3x3mm Body, 0.5mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/ACS711-Datasheet.ashx) +Allegro QFN 0.5 +0 +14 +10 +Sensor_Current +Allegro_QSOP-24_3.9x8.7mm_P0.635mm +Allegro Microsystems 24-Lead Plastic Shrink Small Outline Narrow Body Body [QSOP] (http://www.allegromicro.com/~/media/Files/Datasheets/ACS726-Datasheet.ashx?la=en) +Allegro QSOP 0.635 +0 +24 +24 +Sensor_Current +Allegro_SIP-3 +Allegro Microsystems SIP-3, 1.27mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/A1369-Datasheet.ashx) +Allegro SIP-3 +0 +3 +3 +Sensor_Current +Allegro_SIP-4 +Allegro Microsystems SIP-4, 1.27mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/A1363-Datasheet.ashx) +Allegro SIP-4 +0 +4 +4 +Sensor_Current +Diodes_SIP-3_4.1x1.5mm_P1.27mm +Diodes SIP-3 Bulk Pack, 1.27mm Pitch (https://www.diodes.com/assets/Package-Files/SIP-3-Bulk-Pack.pdf) +Diodes SIP-3 Bulk Pack +0 +3 +3 +Sensor_Current +Diodes_SIP-3_4.1x1.5mm_P2.65mm +Diodes SIP-3 Ammo Pack, 2.65mm Pitch (https://www.diodes.com/assets/Package-Files/SIP-3-Ammo-Pack.pdf) +Diodes SIP-3 Ammo Pack +0 +3 +3 +Sensor_Current +Honeywell_CSLW +https://sensing.honeywell.com/honeywell-sensing-cslw-series-product-sheet-005861-1-en.pdf +Miniature Wired Open-Loop Current Sensor +0 +5 +5 +Sensor_Current +LEM_CKSR +LEM CKSR 6/15/25/50/75-NP Current Transducer, https://www.lem.com/sites/default/files/products_datasheets/cksr_75-np.pdf +current transducer LEM +0 +14 +14 +Sensor_Current +LEM_HO8-NP +LEM HO 8/15/25-NP Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-np-0000_series.pdf) +current transducer +0 +13 +13 +Sensor_Current +LEM_HO8-NSM +LEM HO 8/15/25-NSM Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-nsm-0000_series.pdf) +current transducer +0 +13 +13 +Sensor_Current +LEM_HO40-NP +LEM HO 40/60/120/150-NP Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-np_0100__1100_series.pdf) +current transducer +0 +13 +13 +Sensor_Current +LEM_HTFS +LEM HTFS x00-P current transducer (https://www.lem.com/sites/default/files/products_datasheets/htfs_200_800-p.pdf) +HTFS current transducer +0 +4 +4 +Sensor_Current +LEM_HX02-P +LEM HX02-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX03-P-SP2 +LEM HX03-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX04-P +LEM HX04-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX05-NP +LEM HX05-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) +hall current +0 +8 +8 +Sensor_Current +LEM_HX05-P-SP2 +LEM HX05-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX06-P +LEM HX06-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX10-NP +LEM HX10-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) +hall current +0 +8 +8 +Sensor_Current +LEM_HX10-P-SP2 +LEM HX10-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX15-NP +LEM HX15-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) +hall current +0 +8 +8 +Sensor_Current +LEM_HX15-P-SP2 +LEM HX15-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX20-P-SP2 +LEM HX20-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX25-P-SP2 +LEM HX25-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX50-P-SP2 +LEM HX50-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_LA25-P +LEM Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/la_25-p.pdf) +current transducer +0 +3 +3 +Sensor_Current +LEM_LTSR-NP +LEM current transducer LEM_LTSR-NP 5V supply voltage series https://www.lem.com/sites/default/files/products_datasheets/ltsr_6-np.pdf +Current transducer +0 +10 +10 +Sensor_Distance +AMS_OLGA12 +TMF8820/1/8 distance sensor +TMF8820 TMF8821 TMF8828 +0 +12 +12 +Sensor_Distance +ST_VL53L1x +VL53L1x distance sensor +VL53L1CXV0FY1 VL53L1x +0 +13 +12 +Sensor_Humidity +Sensirion_DFN-4-1EP_2x2mm_P1mm_EP0.7x1.6mm +DFN, 4 Pin (https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/0_Datasheets/Humidity/Sensirion_Humidity_Sensors_SHTC3_Datasheet.pdf) +Sensirion DFN NoLead +0 +10 +5 +Sensor_Humidity +Sensirion_DFN-4_1.5x1.5mm_P0.8mm_SHT4x_NoCentralPad +Sensirion, SHT40, SHT41, SHT45, DFN, 4 Pin (https://sensirion.com/media/documents/33FD6951/624C4357/Datasheet_SHT4x.pdf) +DFN NoLead +0 +4 +4 +Sensor_Humidity +Sensirion_DFN-8-1EP_2.5x2.5mm_P0.5mm_EP1.1x1.7mm +Sensirion DFN-8 SHT3x-DIS (https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Datasheets/Sensirion_Humidity_Sensors_SHT3x_Datasheet_digital.pdf) +sensirion dfn nolead +0 +10 +9 +Sensor_Motion +Analog_LGA-16_3.25x3mm_P0.5mm_LayoutBorder3x5y +LGA, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL363.pdf#page=44) +LGA NoLead CC-16-4 +0 +16 +16 +Sensor_Motion +InvenSense_QFN-24_3x3mm_P0.4mm +24-Lead Plastic QFN (3mm x 3mm); Pitch 0.4mm; EP 1.7x1.54mm; for InvenSense motion sensors; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.4 +0 +24 +24 +Sensor_Motion +InvenSense_QFN-24_3x3mm_P0.4mm_NoMask +24-Lead Plastic QFN (3mm x 3mm); Pitch 0.4mm; EP 1.7x1.54mm; for InvenSense motion sensors; Mask removed below exposed pad; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.4 +0 +25 +24 +Sensor_Motion +InvenSense_QFN-24_4x4mm_P0.5mm +24-Lead Plastic QFN (4mm x 4mm); Pitch 0.5mm; EP 2.7x2.6mm; for InvenSense motion sensors; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.5 +0 +24 +24 +Sensor_Motion +InvenSense_QFN-24_4x4mm_P0.5mm_NoMask +24-Lead Plastic QFN (4mm x 4mm); Pitch 0.5mm; EP 2.7x2.6mm; for InvenSense motion sensors; Mask removed below exposed pad; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.5 +0 +25 +24 +Sensor_Pressure +CFSensor_XGZP6897x +Port External Dia 3.13mm, Port Internal Dia 0.9mm, 8 Pin (https://cfsensor.com/wp-content/uploads/2022/11/XGZP6897D-Pressure-Sensor-V2.7.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py, hand modified +sop sensor +0 +8 +8 +Sensor_Pressure +CFSensor_XGZP6899x +Port External Dia 3mm, Port Internal Dia 1mm, 8 Pin (https://cfsensor.com/wp-content/uploads/2022/11/XGZP6899D-Pressure-Sensor-V2.8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py, hand modified +sop sensor +0 +8 +8 +Sensor_Pressure +Freescale_98ARH99066A +https://www.nxp.com/docs/en/data-sheet/MPXH6250A.pdf +sensor pressure ssop 98ARH99066A +0 +8 +8 +Sensor_Pressure +Freescale_98ARH99089A +https://www.nxp.com/docs/en/data-sheet/MPXH6250A.pdf +sensor pressure ssop 98ARH99089A +0 +8 +8 +Sensor_Pressure +Honeywell_40PCxxxG1A +https://www.honeywellscportal.com/index.php?ci_id=138832 +pressure sensor automotive honeywell +0 +3 +3 +Sensor_Pressure +TE_MS5525DSO-DBxxxyS +Pressure Sensor, Dual-Barbed, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=MS5525DSO&DocType=DS&DocLang=English +Pressure DualBarbed +0 +14 +14 +Sensor_Pressure +TE_MS5837-xxBA +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FMS5837-30BA%7FB1%7Fpdf%7FEnglish%7FENG_DS_MS5837-30BA_B1.pdf%7FCAT-BLPS0017 +MS5837 Ultra-small gel-filled pressure sensor with stainless steel cap +0 +4 +4 +Sensor_Voltage +LEM_LV25-P +LEM LV25-P Voltage transducer, https://www.lem.com/sites/default/files/products_datasheets/lv_25-p.pdf +LEM Hall Effect Voltage transducer +0 +5 +5 +Socket +3M_Textool_240-1288-00-0602J_2x20_P2.54mm +3M 40-pin zero insertion force socket, though-hole, row spacing 25.4 mm (1000 mils) +THT DIP DIL ZIF 25.4mm 1000mil Socket +0 +40 +40 +Socket +DIP_Socket-14_W4.3_W5.08_W7.62_W10.16_W10.9_3M_214-3339-00-0602J +3M 14-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +14 +14 +Socket +DIP_Socket-16_W4.3_W5.08_W7.62_W10.16_W10.9_3M_216-3340-00-0602J +3M 16-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +16 +16 +Socket +DIP_Socket-18_W4.3_W5.08_W7.62_W10.16_W10.9_3M_218-3341-00-0602J +3M 18-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +18 +18 +Socket +DIP_Socket-20_W4.3_W5.08_W7.62_W10.16_W10.9_3M_220-3342-00-0602J +3M 20-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +20 +20 +Socket +DIP_Socket-22_W6.9_W7.62_W10.16_W12.7_W13.5_3M_222-3343-00-0602J +3M 22-pin zero insertion force socket, through-hole, row spacing 10.16 mm (400 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 10.16mm 400mil Socket +0 +22 +22 +Socket +DIP_Socket-24_W4.3_W5.08_W7.62_W10.16_W10.9_3M_224-5248-00-0602J +3M 24-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +24 +24 +Socket +DIP_Socket-24_W11.9_W12.7_W15.24_W17.78_W18.5_3M_224-1275-00-0602J +3M 24-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +24 +24 +Socket +DIP_Socket-28_W6.9_W7.62_W10.16_W12.7_W13.5_3M_228-4817-00-0602J +3M 28-pin zero insertion force socket, through-hole, row spacing 10.16 mm (400 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 10.16mm 400mil Socket +0 +28 +28 +Socket +DIP_Socket-28_W11.9_W12.7_W15.24_W17.78_W18.5_3M_228-1277-00-0602J +3M 28-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +28 +28 +Socket +DIP_Socket-32_W11.9_W12.7_W15.24_W17.78_W18.5_3M_232-1285-00-0602J +3M 32-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +32 +32 +Socket +DIP_Socket-40_W11.9_W12.7_W15.24_W17.78_W18.5_3M_240-1280-00-0602J +3M 40-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +40 +40 +Socket +DIP_Socket-40_W22.1_W22.86_W25.4_W27.94_W28.7_3M_240-3639-00-0602J +3M 40-pin zero insertion force socket, through-hole, row spacing 25.4 mm (1000 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 25.4mm 1000mil Socket +0 +40 +40 +Socket +DIP_Socket-42_W11.9_W12.7_W15.24_W17.78_W18.5_3M_242-1281-00-0602J +3M 42-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +42 +42 +Socket +Wells_648-0482211SA01 +https://www.farnell.com/cad/316865.pdf?_ga=2.37208032.177107060.1530611323-249019997.1498114824 +48pin TSOP Socket +0 +48 +48 +Symbol +CE-Logo_8.5x6mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_11.2x8mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_16.8x12mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_28x20mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_42x30mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_56.1x40mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +ESD-Logo_6.6x6mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_8.9x8mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_13.2x12mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_22x20mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_33x30mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_44.1x40mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +EasterEgg_EWG1308-2013_ClassA +Egg with 42x60mm Body-Size, ClassA, according to EWG1308/2013 +egg easter +0 +0 +0 +Symbol +FCC-Logo_7.3x6mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_9.6x8mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_14.6x12mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_24.2x20mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_36.3x30mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_48.3x40mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +KiCad-Logo2_5mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_5mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_6mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_6mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_8mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_8mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_12mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_12mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_20mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_20mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_30mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_30mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_40mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_40mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_5mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_5mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_6mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_6mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_8mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_8mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_12mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_12mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_20mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_20mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_30mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_30mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_40mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_40mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +OSHW-Logo2_7.3x6mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_7.3x6mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_9.8x8mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_9.8x8mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_14.6x12mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_14.6x12mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_24.3x20mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_24.3x20mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_36.5x30mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_36.5x30mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_48.7x40mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_48.7x40mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo_5.7x6mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_5.7x6mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_7.5x8mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_7.5x8mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_11.4x12mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_11.4x12mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_19x20mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_19x20mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_28.5x30mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_28.5x30mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_38.1x40mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_38.1x40mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Symbol_6.7x6mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_6.7x6mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_8.9x8mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_8.9x8mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_13.4x12mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_13.4x12mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_22.3x20mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_22.3x20mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_33.5x30mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_33.5x30mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_44.5x40mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_44.5x40mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +Polarity_Center_Negative_6mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_8mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_12mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_20mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_30mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_40mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Positive_6mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_8mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_12mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_20mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_30mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_40mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +RoHS-Logo_6mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_8mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_12mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_20mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_30mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_40mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +Symbol_Attention_Triangle_8x7mm_Copper +Symbol, Attention, 8x7mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_Attention_Triangle_17x15mm_Copper +Symbol, attention, 17x15mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_Barrel_Polarity +Barrel connector polarity indicator +barrel polarity +0 +0 +0 +Symbol +Symbol_CC-Attribution_CopperTop_Big +Creative Commons symbol, CC-BY, copper layer, 10mm +attribution license graphic +0 +0 +0 +Symbol +Symbol_CC-Attribution_CopperTop_Small +Creative Commons symbol, CC-BY, copper layer, 5mm + +0 +0 +0 +Symbol +Symbol_CC-Noncommercial_CopperTop_Big +Creative Commons symbol, CC-NC, copper layer, 10mm +noncommercial non-commercial license graphic +0 +0 +0 +Symbol +Symbol_CC-Noncommercial_CopperTop_Small +Creative Commons symbol, CC-NC, copper layer, 5mm +noncommercial non-commercial license graphic +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_CopperTop_Big +Creative Commons symbol, CC0, copper layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_CopperTop_Small +Creative Commons symbol, CC0, copper layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_SilkScreenTop_Big +Creative Commons symbol, CC0, silkscreen layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CC-ShareAlike_CopperTop_Big +Creative Commons symbol, CC-SA, copper layer, 10mm +share-alike license graphic +0 +0 +0 +Symbol +Symbol_CC-ShareAlike_CopperTop_Small +Creative Commons symbol, CC-SA, copper layer, 5mm +share-alike license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommonsPublicDomain_CopperTop_Small +Creative Commons symbol, CC0, with words, copper layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommonsPublicDomain_SilkScreenTop_Small +Creative Commons symbol, CC0, with words, silkscreen layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type1_Big +Creative Commons symbol, CC, with words, copper layer, 10mm +license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type2_Big +Creative Commons symbol, CC, copper layer, 10mm +license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type2_Small +Creative Commons symbol, CC, copper layer, 5mm +license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_SilkScreenTop_Type2_Big +Creative Commons symbol, CC0, silkscreen layer, 10mm +license graphic +0 +0 +0 +Symbol +Symbol_Danger_8x8mm_Copper +Danger symbol, 8x8mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_Danger_18x16mm_Copper +Danger symbol, 18x16mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_ESD-Logo-Text_CopperTop + + +0 +0 +0 +Symbol +Symbol_ESD-Logo_CopperTop +ESD-Logo, similar JEDEC-14, without text, ohne Text, Copper Top, +ESD-Logo, similar JEDEC-14, without text, ohne Text, Copper Top, +0 +0 +0 +Symbol +Symbol_GNU-GPL_CopperTop_Big +Symbol, GNU-GPL, Copper Top, Big, +Symbol, GNU-GPL, Copper Top, Big, +0 +0 +0 +Symbol +Symbol_GNU-GPL_CopperTop_Small +Symbol, GNU-GPL, Copper Top, Small, +Symbol, GNU-GPL, Copper Top, Small, +0 +0 +0 +Symbol +Symbol_GNU-Logo_CopperTop +GNU-Logo, GNU-Head, GNU-Kopf, Copper Top, +GNU-Logo, GNU-Head, GNU-Kopf, Copper Top, +0 +0 +0 +Symbol +Symbol_GNU-Logo_SilkscreenTop +GNU-Logo, GNU-Head, GNU-Kopf, Silkscreen, +GNU-Logo, GNU-Head, GNU-Kopf, Silkscreen, +0 +0 +0 +Symbol +Symbol_HighVoltage_NoTriangle_2x5mm_Copper +High voltage symbol, no triangle, 2x5mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_NoTriangle_6x15mm_Copper +High voltage symbol, no triangle, 6x15mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_Triangle_6x6mm_Copper +High voltage symbol, in triangle, 6x6mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_Triangle_8x7mm_Copper +High voltage symbol, in triangle, 8x7mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_Triangle_17x15mm_Copper +High voltage symbol, in triangle, 17x15mm, copper layer +warning graphic +0 +0 +0 +Symbol +UKCA-Logo_6x6mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_8x8mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_12x12mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_20x20mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_30x30mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_40x40mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +WEEE-Logo_4.2x6mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_5.6x8mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_8.4x12mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_14x20mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_21x30mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_28.1x40mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +TerminalBlock +TerminalBlock_Altech_AK300-2_P5.00mm +Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf +Altech AK300 terminal block pitch 5.0mm +0 +2 +2 +TerminalBlock +TerminalBlock_Altech_AK300-3_P5.00mm +Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf +Altech AK300 terminal block pitch 5.0mm +0 +3 +3 +TerminalBlock +TerminalBlock_Altech_AK300-4_P5.00mm +Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf +Altech AK300 terminal block pitch 5.0mm +0 +4 +4 +TerminalBlock +TerminalBlock_Degson_DG246-3.81-03P +DEGSON ELECTRONICS DG246 terminal block, https://www.degson.com/index.php?a=downloadFile&id=1090277 +connector terminal block +0 +6 +3 +TerminalBlock +TerminalBlock_Wuerth_691311400102_P7.62mm +https://katalog.we-online.de/em/datasheet/6913114001xx.pdf +Wuerth WR-TBL Series 3114 terminal block pitch 7.62mm +0 +2 +2 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-2P_1x02_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-2P, 2 pins, pitch 2.54mm, size 5.58x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-2P pitch 2.54mm size 5.58x6.5mm^2 drill 1.2mm pad 2mm +0 +2 +2 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-3P_1x03_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-3P, 3 pins, pitch 2.54mm, size 8.12x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-3P pitch 2.54mm size 8.12x6.5mm^2 drill 1.2mm pad 2mm +0 +3 +3 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-4P_1x04_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-4P, 4 pins, pitch 2.54mm, size 10.7x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-4P pitch 2.54mm size 10.7x6.5mm^2 drill 1.2mm pad 2mm +0 +4 +4 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-5P_1x05_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-5P, 5 pins, pitch 2.54mm, size 13.2x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-5P pitch 2.54mm size 13.2x6.5mm^2 drill 1.2mm pad 2mm +0 +5 +5 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-6P_1x06_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-6P, 6 pins, pitch 2.54mm, size 15.7x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-6P pitch 2.54mm size 15.7x6.5mm^2 drill 1.2mm pad 2mm +0 +6 +6 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-7P_1x07_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-7P, 7 pins, pitch 2.54mm, size 18.3x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-7P pitch 2.54mm size 18.3x6.5mm^2 drill 1.2mm pad 2mm +0 +7 +7 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-8P_1x08_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-8P, 8 pins, pitch 2.54mm, size 20.8x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-8P pitch 2.54mm size 20.8x6.5mm^2 drill 1.2mm pad 2mm +0 +8 +8 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-9P_1x09_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-9P, 9 pins, pitch 2.54mm, size 23.4x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-9P pitch 2.54mm size 23.4x6.5mm^2 drill 1.2mm pad 2mm +0 +9 +9 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-10P_1x10_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-10P, 10 pins, pitch 2.54mm, size 25.9x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-10P pitch 2.54mm size 25.9x6.5mm^2 drill 1.2mm pad 2mm +0 +10 +10 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-11P_1x11_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-11P, 11 pins, pitch 2.54mm, size 28.4x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-11P pitch 2.54mm size 28.4x6.5mm^2 drill 1.2mm pad 2mm +0 +11 +11 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-12P_1x12_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-12P, 12 pins, pitch 2.54mm, size 31x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-12P pitch 2.54mm size 31x6.5mm^2 drill 1.2mm pad 2mm +0 +12 +12 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-13P_1x13_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-13P, 13 pins, pitch 2.54mm, size 33.5x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-13P pitch 2.54mm size 33.5x6.5mm^2 drill 1.2mm pad 2mm +0 +13 +13 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-14P_1x14_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-14P, 14 pins, pitch 2.54mm, size 36.1x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-14P pitch 2.54mm size 36.1x6.5mm^2 drill 1.2mm pad 2mm +0 +14 +14 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-15P_1x15_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-15P, 15 pins, pitch 2.54mm, size 38.6x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-15P pitch 2.54mm size 38.6x6.5mm^2 drill 1.2mm pad 2mm +0 +15 +15 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-16P_1x16_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-16P, 16 pins, pitch 2.54mm, size 41.1x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-16P pitch 2.54mm size 41.1x6.5mm^2 drill 1.2mm pad 2mm +0 +16 +16 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-17P_1x17_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-17P, 17 pins, pitch 2.54mm, size 43.7x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-17P pitch 2.54mm size 43.7x6.5mm^2 drill 1.2mm pad 2mm +0 +17 +17 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-18P_1x18_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-18P, 18 pins, pitch 2.54mm, size 46.2x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-18P pitch 2.54mm size 46.2x6.5mm^2 drill 1.2mm pad 2mm +0 +18 +18 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-19P_1x19_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-19P, 19 pins, pitch 2.54mm, size 48.8x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-19P pitch 2.54mm size 48.8x6.5mm^2 drill 1.2mm pad 2mm +0 +19 +19 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-20P_1x20_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-20P, 20 pins, pitch 2.54mm, size 51.3x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-20P pitch 2.54mm size 51.3x6.5mm^2 drill 1.2mm pad 2mm +0 +20 +20 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-21P_1x21_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-21P, 21 pins, pitch 2.54mm, size 53.8x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-21P pitch 2.54mm size 53.8x6.5mm^2 drill 1.2mm pad 2mm +0 +21 +21 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-22P_1x22_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-22P, 22 pins, pitch 2.54mm, size 56.4x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-22P pitch 2.54mm size 56.4x6.5mm^2 drill 1.2mm pad 2mm +0 +22 +22 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-23P_1x23_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-23P, 23 pins, pitch 2.54mm, size 58.9x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-23P pitch 2.54mm size 58.9x6.5mm^2 drill 1.2mm pad 2mm +0 +23 +23 +TerminalBlock +TerminalBlock_bornier-2_P5.08mm +simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2 +terminal block bornier2 +0 +2 +2 +TerminalBlock +TerminalBlock_bornier-3_P5.08mm +simple 3-pin terminal block, pitch 5.08mm, revamped version of bornier3 +terminal block bornier3 +0 +3 +3 +TerminalBlock +TerminalBlock_bornier-4_P5.08mm +simple 4-pin terminal block, pitch 5.08mm, revamped version of bornier4 +terminal block bornier4 +0 +4 +4 +TerminalBlock +TerminalBlock_bornier-5_P5.08mm +simple 5-pin terminal block, pitch 5.08mm, revamped version of bornier5 +terminal block bornier5 +0 +5 +5 +TerminalBlock +TerminalBlock_bornier-6_P5.08mm +simple 6pin terminal block, pitch 5.08mm, revamped version of bornier6 +terminal block bornier6 +0 +6 +6 +TerminalBlock +TerminalBlock_bornier-8_P5.08mm +simple 8pin terminal block, pitch 5.08mm, revamped version of bornier8 +terminal block bornier8 +0 +8 +8 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x02_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 19963, 2 pins, pitch 3.5mm, size 7.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19963.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19963 pitch 3.5mm size 7.7x7mm^2 drill 1.2mm pad 2.4mm +0 +2 +2 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x02_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10693, vertical (cable from top), 2 pins, pitch 3.5mm, size 8x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10693.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10693 vertical pitch 3.5mm size 8x8.3mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x03_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 20193, 3 pins, pitch 3.5mm, size 11.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20193.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20193 pitch 3.5mm size 11.2x7mm^2 drill 1.2mm pad 2.4mm +0 +3 +3 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x03_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10694, vertical (cable from top), 3 pins, pitch 3.5mm, size 11.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10694.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10694 vertical pitch 3.5mm size 11.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x04_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 20001, 4 pins, pitch 3.5mm, size 14.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20001.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20001 pitch 3.5mm size 14.7x7mm^2 drill 1.2mm pad 2.4mm +0 +4 +4 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x04_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10695, vertical (cable from top), 4 pins, pitch 3.5mm, size 15x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10695.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10695 vertical pitch 3.5mm size 15x8.3mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x05_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 20223, 5 pins, pitch 3.5mm, size 18.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20223.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20223 pitch 3.5mm size 18.2x7mm^2 drill 1.2mm pad 2.4mm +0 +5 +5 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x05_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10696, vertical (cable from top), 5 pins, pitch 3.5mm, size 18.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10696.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10696 vertical pitch 3.5mm size 18.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x06_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 19964, 6 pins, pitch 3.5mm, size 21.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19964.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19964 pitch 3.5mm size 21.7x7mm^2 drill 1.2mm pad 2.4mm +0 +6 +6 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x06_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10697, vertical (cable from top), 6 pins, pitch 3.5mm, size 22x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10697.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10697 vertical pitch 3.5mm size 22x8.3mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x07_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10684, 7 pins, pitch 3.5mm, size 25.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10684.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10684 pitch 3.5mm size 25.2x7mm^2 drill 1.2mm pad 2.4mm +0 +7 +7 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x07_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10698, vertical (cable from top), 7 pins, pitch 3.5mm, size 25.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10698.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10698 vertical pitch 3.5mm size 25.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x08_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 19965, 8 pins, pitch 3.5mm, size 28.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19965.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19965 pitch 3.5mm size 28.7x7mm^2 drill 1.2mm pad 2.4mm +0 +8 +8 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x08_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10699, vertical (cable from top), 8 pins, pitch 3.5mm, size 29x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10699.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10699 vertical pitch 3.5mm size 29x8.3mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x09_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10686, 9 pins, pitch 3.5mm, size 32.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10686.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10686 pitch 3.5mm size 32.2x7mm^2 drill 1.2mm pad 2.4mm +0 +9 +9 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x09_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10700, vertical (cable from top), 9 pins, pitch 3.5mm, size 32.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10700.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10700 vertical pitch 3.5mm size 32.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x10_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10687, 10 pins, pitch 3.5mm, size 35.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10687.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10687 pitch 3.5mm size 35.7x7mm^2 drill 1.2mm pad 2.4mm +0 +10 +10 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x10_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10701, vertical (cable from top), 10 pins, pitch 3.5mm, size 36x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10701.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10701 vertical pitch 3.5mm size 36x8.3mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x11_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10688, 11 pins, pitch 3.5mm, size 39.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10688.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10688 pitch 3.5mm size 39.2x7mm^2 drill 1.2mm pad 2.4mm +0 +11 +11 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x11_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10702, vertical (cable from top), 11 pins, pitch 3.5mm, size 39.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10702.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10702 vertical pitch 3.5mm size 39.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x12_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10689, 12 pins, pitch 3.5mm, size 42.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10689.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10689 pitch 3.5mm size 42.7x7mm^2 drill 1.2mm pad 2.4mm +0 +12 +12 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x12_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10703, vertical (cable from top), 12 pins, pitch 3.5mm, size 43x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10703.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10703 vertical pitch 3.5mm size 43x8.3mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x13_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10690, 13 pins, pitch 3.5mm, size 46.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10690.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10690 pitch 3.5mm size 46.2x7mm^2 drill 1.2mm pad 2.4mm +0 +13 +13 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x13_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10704, vertical (cable from top), 13 pins, pitch 3.5mm, size 46.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10704.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10704 vertical pitch 3.5mm size 46.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x14_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10691, 14 pins, pitch 3.5mm, size 49.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10691.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10691 pitch 3.5mm size 49.7x7mm^2 drill 1.2mm pad 2.4mm +0 +14 +14 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x14_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10705, vertical (cable from top), 14 pins, pitch 3.5mm, size 50x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10705.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10705 vertical pitch 3.5mm size 50x8.3mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x15_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10692, 15 pins, pitch 3.5mm, size 53.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10692.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10692 pitch 3.5mm size 53.2x7mm^2 drill 1.2mm pad 2.4mm +0 +15 +15 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x15_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10706, vertical (cable from top), 15 pins, pitch 3.5mm, size 53.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10706.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10706 vertical pitch 3.5mm size 53.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Altech +Altech_AK100_1x02_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +2 +2 +TerminalBlock_Altech +Altech_AK100_1x03_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +3 +3 +TerminalBlock_Altech +Altech_AK100_1x04_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +4 +4 +TerminalBlock_Altech +Altech_AK100_1x05_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +5 +5 +TerminalBlock_Altech +Altech_AK100_1x06_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +6 +6 +TerminalBlock_Altech +Altech_AK100_1x07_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +7 +7 +TerminalBlock_Altech +Altech_AK100_1x08_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +8 +8 +TerminalBlock_Altech +Altech_AK100_1x09_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +9 +9 +TerminalBlock_Altech +Altech_AK100_1x10_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +10 +10 +TerminalBlock_Altech +Altech_AK100_1x11_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +11 +11 +TerminalBlock_Altech +Altech_AK100_1x12_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +12 +12 +TerminalBlock_Altech +Altech_AK100_1x13_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +13 +13 +TerminalBlock_Altech +Altech_AK100_1x14_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +14 +14 +TerminalBlock_Altech +Altech_AK100_1x15_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +15 +15 +TerminalBlock_Altech +Altech_AK100_1x16_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +16 +16 +TerminalBlock_Altech +Altech_AK100_1x17_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +17 +17 +TerminalBlock_Altech +Altech_AK100_1x18_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +18 +18 +TerminalBlock_Altech +Altech_AK100_1x19_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +19 +19 +TerminalBlock_Altech +Altech_AK100_1x20_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +20 +20 +TerminalBlock_Altech +Altech_AK100_1x21_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +21 +21 +TerminalBlock_Altech +Altech_AK100_1x22_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +22 +22 +TerminalBlock_Altech +Altech_AK100_1x23_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +23 +23 +TerminalBlock_Altech +Altech_AK100_1x24_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +24 +24 +TerminalBlock_Altech +Altech_AK300_1x02_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +2 +2 +TerminalBlock_Altech +Altech_AK300_1x03_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +3 +3 +TerminalBlock_Altech +Altech_AK300_1x04_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +4 +4 +TerminalBlock_Altech +Altech_AK300_1x05_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +5 +5 +TerminalBlock_Altech +Altech_AK300_1x06_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +6 +6 +TerminalBlock_Altech +Altech_AK300_1x07_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +7 +7 +TerminalBlock_Altech +Altech_AK300_1x08_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +8 +8 +TerminalBlock_Altech +Altech_AK300_1x09_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +9 +9 +TerminalBlock_Altech +Altech_AK300_1x10_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +10 +10 +TerminalBlock_Altech +Altech_AK300_1x11_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +11 +11 +TerminalBlock_Altech +Altech_AK300_1x12_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +12 +12 +TerminalBlock_Altech +Altech_AK300_1x13_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +13 +13 +TerminalBlock_Altech +Altech_AK300_1x14_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +14 +14 +TerminalBlock_Altech +Altech_AK300_1x15_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +15 +15 +TerminalBlock_Altech +Altech_AK300_1x16_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +16 +16 +TerminalBlock_Altech +Altech_AK300_1x17_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +17 +17 +TerminalBlock_Altech +Altech_AK300_1x18_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +18 +18 +TerminalBlock_Altech +Altech_AK300_1x19_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +19 +19 +TerminalBlock_Altech +Altech_AK300_1x20_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +20 +20 +TerminalBlock_Altech +Altech_AK300_1x21_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +21 +21 +TerminalBlock_Altech +Altech_AK300_1x22_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +22 +22 +TerminalBlock_Altech +Altech_AK300_1x23_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +23 +23 +TerminalBlock_Altech +Altech_AK300_1x24_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +24 +24 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-02_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +2 +2 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-03_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +3 +3 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-04_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +4 +4 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-05_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +5 +5 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-06_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +6 +6 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-07_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +7 +7 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-08_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +8 +8 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-09_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +9 +9 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-10_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +10 +10 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-11_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +11 +11 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-12_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +12 +12 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-13_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +13 +13 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-14_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +14 +14 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-15_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +15 +15 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-16_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +16 +16 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-17_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +17 +17 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-18_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +18 +18 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-19_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +19 +19 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-20_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +20 +20 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-21_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +21 +21 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-22_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +22 +22 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-23_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +23 +23 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-24_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +24 +24 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-25_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +25 +25 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-26_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +26 +26 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-27_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +27 +27 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-28_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +28 +28 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-29_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +29 +29 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-30_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +30 +30 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360271_1x01_Horizontal_ScrewM3.0_Boxed +single screw terminal block Metz Connect 360271, block size 9x7.3mm^2, drill diamater 1.5mm, 1 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 134, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360271 size 9x7.3mm^2 drill 1.5mm pad 3mm +0 +1 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360272_1x01_Horizontal_ScrewM2.6 +single screw terminal block Metz Connect 360272, block size 4x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 131, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360272 size 4x4mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360273_1x01_Horizontal_ScrewM2.6_WireProtection +single screw terminal block Metz Connect 360273, block size 5x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 131, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360273 size 5x4mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360291_1x01_Horizontal_ScrewM3.0_Boxed +single screw terminal block Metz Connect 360291, block size 9x7.3mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360291 size 9x7.3mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360322_1x01_Horizontal_ScrewM3.0_WireProtection +single screw terminal block Metz Connect 360322, block size 6x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360322 size 6x4mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360381_1x01_Horizontal_ScrewM3.0 +single screw terminal block Metz Connect 360381, block size 5x5mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360381 size 5x5mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360410_1x01_Horizontal_ScrewM3.0 +single screw terminal block Metz Connect 360410, block size 5x5mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 132, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360410 size 5x5mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360425_1x01_Horizontal_ScrewM4.0_Boxed +single screw terminal block Metz Connect 360425, block size 9x9mm^2, drill diamater 1.6mm, 4 pads, pad diameter 3.2mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 134, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360425 size 9x9mm^2 drill 1.6mm pad 3.2mm +0 +4 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05502HBWC_1x02_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05502HBWC, 2 pins, pitch 5mm, size 10x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05502HBWC pitch 5mm size 10x10.5mm^2 drill 1.4mm pad 2.8mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05503HBWC_1x03_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05503HBWC, 3 pins, pitch 5mm, size 15x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05503HBWC pitch 5mm size 15x10.5mm^2 drill 1.4mm pad 2.8mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05504HBWC_1x04_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05504HBWC, 4 pins, pitch 5mm, size 20x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05504HBWC pitch 5mm size 20x10.5mm^2 drill 1.4mm pad 2.8mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05505HBWC_1x05_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05505HBWC, 5 pins, pitch 5mm, size 25x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05505HBWC pitch 5mm size 25x10.5mm^2 drill 1.4mm pad 2.8mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05506HBWC_1x06_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05506HBWC, 6 pins, pitch 5mm, size 30x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05506HBWC pitch 5mm size 30x10.5mm^2 drill 1.4mm pad 2.8mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type055_RT01502HDWU_1x02_P5.00mm_Horizontal +terminal block Metz Connect Type055_RT01502HDWU, 2 pins, pitch 5mm, size 10x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01502HDWU pitch 5mm size 10x8mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type055_RT01503HDWU_1x03_P5.00mm_Horizontal +terminal block Metz Connect Type055_RT01503HDWU, 3 pins, pitch 5mm, size 15x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01503HDWU pitch 5mm size 15x8mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type055_RT01504HDWU_1x04_P5.00mm_Horizontal +terminal block Metz Connect Type055_RT01504HDWU, 4 pins, pitch 5mm, size 20x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01504HDWU pitch 5mm size 20x8mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06302HBWC_1x02_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06302HBWC, 2 pins, pitch 3.5mm, size 7x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06302HBWC pitch 3.5mm size 7x6.5mm^2 drill 1.2mm pad 2.3mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06303HBWC_1x03_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06303HBWC, 3 pins, pitch 3.5mm, size 10.5x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06303HBWC pitch 3.5mm size 10.5x6.5mm^2 drill 1.2mm pad 2.3mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06304HBWC_1x04_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06304HBWC, 4 pins, pitch 3.5mm, size 14x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06304HBWC pitch 3.5mm size 14x6.5mm^2 drill 1.2mm pad 2.3mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06305HBWC_1x05_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06305HBWC, 5 pins, pitch 3.5mm, size 17.5x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06305HBWC pitch 3.5mm size 17.5x6.5mm^2 drill 1.2mm pad 2.3mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06306HBWC_1x06_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06306HBWC, 6 pins, pitch 3.5mm, size 21x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06306HBWC pitch 3.5mm size 21x6.5mm^2 drill 1.2mm pad 2.3mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01902HDWC_1x02_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01902HDWC, 2 pins, pitch 10mm, size 15.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01902HDWC pitch 10mm size 15.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01903HDWC_1x03_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01903HDWC, 3 pins, pitch 10mm, size 25.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01903HDWC pitch 10mm size 25.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01904HDWC_1x04_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01904HDWC, 4 pins, pitch 10mm, size 35.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01904HDWC pitch 10mm size 35.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01905HDWC_1x05_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01905HDWC, 5 pins, pitch 10mm, size 45.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01905HDWC pitch 10mm size 45.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type073_RT02602HBLU_1x02_P5.08mm_Horizontal +terminal block Metz Connect Type073_RT02602HBLU, 2 pins, pitch 5.08mm, size 10.2x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310731_RT026xxHBLU_OFF-022792U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type073_RT02602HBLU pitch 5.08mm size 10.2x11mm^2 drill 1.4mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type073_RT02603HBLU_1x03_P5.08mm_Horizontal +terminal block Metz Connect Type073_RT02603HBLU, 3 pins, pitch 5.08mm, size 15.2x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310731_RT026xxHBLU_OFF-022792U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type073_RT02603HBLU pitch 5.08mm size 15.2x11mm^2 drill 1.4mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03402HBLC_1x02_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03402HBLC, 2 pins, pitch 3.81mm, size 7.51x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03402HBLC pitch 3.81mm size 7.51x7.3mm^2 drill 0.7mm pad 1.4mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03403HBLC_1x03_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03403HBLC, 3 pins, pitch 3.81mm, size 11.3x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03403HBLC pitch 3.81mm size 11.3x7.3mm^2 drill 0.7mm pad 1.4mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03404HBLC_1x04_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03404HBLC, 4 pins, pitch 3.81mm, size 15.1x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03404HBLC pitch 3.81mm size 15.1x7.3mm^2 drill 0.7mm pad 1.4mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03405HBLC_1x05_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03405HBLC, 5 pins, pitch 3.81mm, size 18.9x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03405HBLC pitch 3.81mm size 18.9x7.3mm^2 drill 0.7mm pad 1.4mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03406HBLC_1x06_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03406HBLC, 6 pins, pitch 3.81mm, size 22.8x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03406HBLC pitch 3.81mm size 22.8x7.3mm^2 drill 0.7mm pad 1.4mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03502HBLU_1x02_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03502HBLU, 2 pins, pitch 5mm, size 10x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03502HBLU pitch 5mm size 10x8.3mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03503HBLU_1x03_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03503HBLU, 3 pins, pitch 5mm, size 15x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03503HBLU pitch 5mm size 15x8.3mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03504HBLU_1x04_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03504HBLU, 4 pins, pitch 5mm, size 20x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03504HBLU pitch 5mm size 20x8.3mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03505HBLU_1x05_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03505HBLU, 5 pins, pitch 5mm, size 25x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03505HBLU pitch 5mm size 25x8.3mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03506HBLU_1x06_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03506HBLU, 6 pins, pitch 5mm, size 30x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03506HBLU pitch 5mm size 30x8.3mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01602HBWC_1x02_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01602HBWC, 2 pins, pitch 5.08mm, size 10.2x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01602HBWC pitch 5.08mm size 10.2x8mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01603HBWC_1x03_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01603HBWC, 3 pins, pitch 5.08mm, size 15.2x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01603HBWC pitch 5.08mm size 15.2x8mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01604HBWC_1x04_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01604HBWC, 4 pins, pitch 5.08mm, size 20.3x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01604HBWC pitch 5.08mm size 20.3x8mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01605HBWC_1x05_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01605HBWC, 5 pins, pitch 5.08mm, size 25.4x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01605HBWC pitch 5.08mm size 25.4x8mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01606HBWC_1x06_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01606HBWC, 6 pins, pitch 5.08mm, size 30.5x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01606HBWC pitch 5.08mm size 30.5x8mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13702HBWC_1x02_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13702HBWC, 2 pins, pitch 7.5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13702HBWC pitch 7.5mm size 15x9mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13703HBWC_1x03_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13703HBWC, 3 pins, pitch 7.5mm, size 22.5x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13703HBWC pitch 7.5mm size 22.5x9mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13704HBWC_1x04_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13704HBWC, 4 pins, pitch 7.5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13704HBWC pitch 7.5mm size 30x9mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13705HBWC_1x05_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13705HBWC, 5 pins, pitch 7.5mm, size 37.5x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13705HBWC pitch 7.5mm size 37.5x9mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13706HBWC_1x06_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13706HBWC, 6 pins, pitch 7.5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13706HBWC pitch 7.5mm size 45x9mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02702HBLC_1x02_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02702HBLC, 2 pins, pitch 7.5mm, size 15x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02702HBLC pitch 7.5mm size 15x11mm^2 drill 1.4mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02703HBLC_1x03_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02703HBLC, 3 pins, pitch 7.5mm, size 22.5x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02703HBLC pitch 7.5mm size 22.5x11mm^2 drill 1.4mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02704HBLC_1x04_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02704HBLC, 4 pins, pitch 7.5mm, size 30x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02704HBLC pitch 7.5mm size 30x11mm^2 drill 1.4mm pad 2.6mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02705HBLC_1x05_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02705HBLC, 5 pins, pitch 7.5mm, size 37.5x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02705HBLC pitch 7.5mm size 37.5x11mm^2 drill 1.4mm pad 2.6mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02706HBLC_1x06_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02706HBLC, 6 pins, pitch 7.5mm, size 45x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02706HBLC pitch 7.5mm size 45x11mm^2 drill 1.4mm pad 2.6mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04502UBLC_1x02_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04502UBLC, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 10x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04502UBLC 45Degree pitch 5mm size 10x12.5mm^2 drill 1.4mm pad 2.7mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04503UBLC_1x03_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04503UBLC, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 15x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04503UBLC 45Degree pitch 5mm size 15x12.5mm^2 drill 1.4mm pad 2.7mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04504UBLC_1x04_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04504UBLC, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 20x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04504UBLC 45Degree pitch 5mm size 20x12.5mm^2 drill 1.4mm pad 2.7mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04505UBLC_1x05_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04505UBLC, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 25x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04505UBLC 45Degree pitch 5mm size 25x12.5mm^2 drill 1.4mm pad 2.7mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04506UBLC_1x06_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04506UBLC, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 30x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04506UBLC 45Degree pitch 5mm size 30x12.5mm^2 drill 1.4mm pad 2.7mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type701_RT11L02HGLU_1x02_P6.35mm_Horizontal +terminal block Metz Connect Type701_RT11L02HGLU, 2 pins, pitch 6.35mm, size 12.7x12.5mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317011_RT11LxxHGLU_OFF-022798U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type701_RT11L02HGLU pitch 6.35mm size 12.7x12.5mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type701_RT11L03HGLU_1x03_P6.35mm_Horizontal +terminal block Metz Connect Type701_RT11L03HGLU, 3 pins, pitch 6.35mm, size 19x12.5mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317011_RT11LxxHGLU_OFF-022798U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type701_RT11L03HGLU pitch 6.35mm size 19x12.5mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type703_RT10N02HGLU_1x02_P9.52mm_Horizontal +terminal block Metz Connect Type703_RT10N02HGLU, 2 pins, pitch 9.52mm, size 19x12.5mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317031_RT10NxxHGLU_OFF-022897S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type703_RT10N02HGLU pitch 9.52mm size 19x12.5mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type703_RT10N03HGLU_1x03_P9.52mm_Horizontal +terminal block Metz Connect Type703_RT10N03HGLU, 3 pins, pitch 9.52mm, size 28.6x12.5mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317031_RT10NxxHGLU_OFF-022897S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type703_RT10N03HGLU pitch 9.52mm size 28.6x12.5mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Philmore +TerminalBlock_Philmore_TB132_1x02_P5.00mm_Horizontal +Terminal Block Philmore , 2 pins, pitch 5mm, size 10x10.2mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.philmore-datak.com/mc/Page%20197.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Philmore +THT Terminal Block Philmore pitch 5mm size 10x10.2mm^2 drill 1.2mm pad 2.4mm +0 +2 +2 +TerminalBlock_Philmore +TerminalBlock_Philmore_TB133_1x03_P5.00mm_Horizontal +Terminal Block Philmore , 3 pins, pitch 5mm, size 15x10.2mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.philmore-datak.com/mc/Page%20197.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Philmore +THT Terminal Block Philmore pitch 5mm size 15x10.2mm^2 drill 1.2mm pad 2.4mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-2-5.08, 2 pins, pitch 5.08mm, size 10.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-2, 2 pins, pitch 5mm, size 10x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-2 pitch 5mm size 10x9.8mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-3-5.08, 3 pins, pitch 5.08mm, size 15.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-3-5.08 pitch 5.08mm size 15.2x9.8mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-3, 3 pins, pitch 5mm, size 15x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-3 pitch 5mm size 15x9.8mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-4-5.08_1x04_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-4-5.08, 4 pins, pitch 5.08mm, size 20.3x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-4-5.08 pitch 5.08mm size 20.3x9.8mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-4_1x04_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-4, 4 pins, pitch 5mm, size 20x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-4 pitch 5mm size 20x9.8mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-5-5.08_1x05_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-5-5.08, 5 pins, pitch 5.08mm, size 25.4x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-5-5.08 pitch 5.08mm size 25.4x9.8mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-5_1x05_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-5, 5 pins, pitch 5mm, size 25x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-5 pitch 5mm size 25x9.8mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-6-5.08_1x06_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-6-5.08, 6 pins, pitch 5.08mm, size 30.5x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-6-5.08 pitch 5.08mm size 30.5x9.8mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-6_1x06_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-6, 6 pins, pitch 5mm, size 30x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-6 pitch 5mm size 30x9.8mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-7-5.08_1x07_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-7-5.08, 7 pins, pitch 5.08mm, size 35.6x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-7-5.08 pitch 5.08mm size 35.6x9.8mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-7_1x07_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-7, 7 pins, pitch 5mm, size 35x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-7 pitch 5mm size 35x9.8mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-8-5.08_1x08_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-8-5.08, 8 pins, pitch 5.08mm, size 40.6x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-8-5.08 pitch 5.08mm size 40.6x9.8mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-8_1x08_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-8, 8 pins, pitch 5mm, size 40x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-8 pitch 5mm size 40x9.8mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-9-5.08_1x09_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-9-5.08, 9 pins, pitch 5.08mm, size 45.7x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-9-5.08 pitch 5.08mm size 45.7x9.8mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-9_1x09_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-9, 9 pins, pitch 5mm, size 45x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-9 pitch 5mm size 45x9.8mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-10-5.08_1x10_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-10-5.08, 10 pins, pitch 5.08mm, size 50.8x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-10-5.08 pitch 5.08mm size 50.8x9.8mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-10_1x10_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-10, 10 pins, pitch 5mm, size 50x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-10 pitch 5mm size 50x9.8mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-11-5.08_1x11_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-11-5.08, 11 pins, pitch 5.08mm, size 55.9x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-11-5.08 pitch 5.08mm size 55.9x9.8mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-11_1x11_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-11, 11 pins, pitch 5mm, size 55x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-11 pitch 5mm size 55x9.8mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-12-5.08_1x12_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-12-5.08, 12 pins, pitch 5.08mm, size 61x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-12-5.08 pitch 5.08mm size 61x9.8mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-12_1x12_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-12, 12 pins, pitch 5mm, size 60x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-12 pitch 5mm size 60x9.8mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-13-5.08_1x13_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-13-5.08, 13 pins, pitch 5.08mm, size 66x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-13-5.08 pitch 5.08mm size 66x9.8mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-13_1x13_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-13, 13 pins, pitch 5mm, size 65x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-13 pitch 5mm size 65x9.8mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-14-5.08_1x14_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-14-5.08, 14 pins, pitch 5.08mm, size 71.1x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-14-5.08 pitch 5.08mm size 71.1x9.8mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-14_1x14_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-14, 14 pins, pitch 5mm, size 70x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-14 pitch 5mm size 70x9.8mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-15-5.08_1x15_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-15-5.08, 15 pins, pitch 5.08mm, size 76.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-15-5.08 pitch 5.08mm size 76.2x9.8mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-15_1x15_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-15, 15 pins, pitch 5mm, size 75x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-15 pitch 5mm size 75x9.8mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-16-5.08_1x16_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-16-5.08, 16 pins, pitch 5.08mm, size 81.3x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-16-5.08 pitch 5.08mm size 81.3x9.8mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-16_1x16_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-16, 16 pins, pitch 5mm, size 80x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-16 pitch 5mm size 80x9.8mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-2-5.08_1x02_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-2-5.08, 2 pins, pitch 5.08mm, size 10.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-2-5.08 pitch 5.08mm size 10.2x11.2mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-3-5.08_1x03_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-3-5.08, 3 pins, pitch 5.08mm, size 15.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-3-5.08 pitch 5.08mm size 15.2x11.2mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-4-5.08_1x04_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-4-5.08, 4 pins, pitch 5.08mm, size 20.3x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-4-5.08 pitch 5.08mm size 20.3x11.2mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-5-5.08_1x05_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-5-5.08, 5 pins, pitch 5.08mm, size 25.4x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-5-5.08 pitch 5.08mm size 25.4x11.2mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-6-5.08_1x06_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-6-5.08, 6 pins, pitch 5.08mm, size 30.5x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-6-5.08 pitch 5.08mm size 30.5x11.2mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-7-5.08_1x07_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-7-5.08, 7 pins, pitch 5.08mm, size 35.6x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-7-5.08 pitch 5.08mm size 35.6x11.2mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-8-5.08_1x08_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-8-5.08, 8 pins, pitch 5.08mm, size 40.6x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-8-5.08 pitch 5.08mm size 40.6x11.2mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-9-5.08_1x09_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-9-5.08, 9 pins, pitch 5.08mm, size 45.7x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-9-5.08 pitch 5.08mm size 45.7x11.2mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-10-5.08_1x10_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-10-5.08, 10 pins, pitch 5.08mm, size 50.8x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-10-5.08 pitch 5.08mm size 50.8x11.2mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-11-5.08_1x11_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-11-5.08, 11 pins, pitch 5.08mm, size 55.9x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-11-5.08 pitch 5.08mm size 55.9x11.2mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-12-5.08_1x12_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-12-5.08, 12 pins, pitch 5.08mm, size 61x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-12-5.08 pitch 5.08mm size 61x11.2mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-13-5.08_1x13_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-13-5.08, 13 pins, pitch 5.08mm, size 66x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-13-5.08 pitch 5.08mm size 66x11.2mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-14-5.08_1x14_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-14-5.08, 14 pins, pitch 5.08mm, size 71.1x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-14-5.08 pitch 5.08mm size 71.1x11.2mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-15-5.08_1x15_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-15-5.08, 15 pins, pitch 5.08mm, size 76.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-15-5.08 pitch 5.08mm size 76.2x11.2mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-16-5.08_1x16_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-16-5.08, 16 pins, pitch 5.08mm, size 81.3x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-16-5.08 pitch 5.08mm size 81.3x11.2mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-2-2.54, 2 pins, pitch 2.54mm, size 5.54x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-2-2.54 pitch 2.54mm size 5.54x6.2mm^2 drill 1.1mm pad 2.2mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-3-2.54_1x03_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-3-2.54, 3 pins, pitch 2.54mm, size 8.08x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-3-2.54 pitch 2.54mm size 8.08x6.2mm^2 drill 1.1mm pad 2.2mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-4-2.54_1x04_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-4-2.54, 4 pins, pitch 2.54mm, size 10.6x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-4-2.54 pitch 2.54mm size 10.6x6.2mm^2 drill 1.1mm pad 2.2mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-5-2.54_1x05_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-5-2.54, 5 pins, pitch 2.54mm, size 13.2x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-5-2.54 pitch 2.54mm size 13.2x6.2mm^2 drill 1.1mm pad 2.2mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-6-2.54_1x06_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-6-2.54, 6 pins, pitch 2.54mm, size 15.7x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-6-2.54 pitch 2.54mm size 15.7x6.2mm^2 drill 1.1mm pad 2.2mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-7-2.54_1x07_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-7-2.54, 7 pins, pitch 2.54mm, size 18.2x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-7-2.54 pitch 2.54mm size 18.2x6.2mm^2 drill 1.1mm pad 2.2mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-8-2.54_1x08_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-8-2.54, 8 pins, pitch 2.54mm, size 20.8x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-8-2.54 pitch 2.54mm size 20.8x6.2mm^2 drill 1.1mm pad 2.2mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-9-2.54_1x09_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-9-2.54, 9 pins, pitch 2.54mm, size 23.3x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-9-2.54 pitch 2.54mm size 23.3x6.2mm^2 drill 1.1mm pad 2.2mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-10-2.54_1x10_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-10-2.54, 10 pins, pitch 2.54mm, size 25.9x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-10-2.54 pitch 2.54mm size 25.9x6.2mm^2 drill 1.1mm pad 2.2mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-11-2.54_1x11_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-11-2.54, 11 pins, pitch 2.54mm, size 28.4x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-11-2.54 pitch 2.54mm size 28.4x6.2mm^2 drill 1.1mm pad 2.2mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-12-2.54_1x12_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-12-2.54, 12 pins, pitch 2.54mm, size 30.9x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-12-2.54 pitch 2.54mm size 30.9x6.2mm^2 drill 1.1mm pad 2.2mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-2-3.5-H_1x02_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-2-3.5-H, 2 pins, pitch 3.5mm, size 7x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-2-3.5-H pitch 3.5mm size 7x7.6mm^2 drill 1.2mm pad 2.4mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-2-5.0-H_1x02_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-2-5.0-H, 2 pins, pitch 5mm, size 10x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-2-5.0-H pitch 5mm size 10x9mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-3-3.5-H_1x03_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-3-3.5-H, 3 pins, pitch 3.5mm, size 10.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-3-3.5-H pitch 3.5mm size 10.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-3-5.0-H_1x03_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-3-5.0-H, 3 pins, pitch 5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-3-5.0-H pitch 5mm size 15x9mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-4-3.5-H_1x04_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-4-3.5-H, 4 pins, pitch 3.5mm, size 14x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-4-3.5-H pitch 3.5mm size 14x7.6mm^2 drill 1.2mm pad 2.4mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-4-5.0-H_1x04_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-4-5.0-H, 4 pins, pitch 5mm, size 20x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-4-5.0-H pitch 5mm size 20x9mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-5-3.5-H_1x05_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-5-3.5-H, 5 pins, pitch 3.5mm, size 17.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-5-3.5-H pitch 3.5mm size 17.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-5-5.0-H_1x05_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-5-5.0-H, 5 pins, pitch 5mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-5-5.0-H pitch 5mm size 25x9mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-6-3.5-H_1x06_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-6-3.5-H, 6 pins, pitch 3.5mm, size 21x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-6-3.5-H pitch 3.5mm size 21x7.6mm^2 drill 1.2mm pad 2.4mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-6-5.0-H_1x06_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-6-5.0-H, 6 pins, pitch 5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-6-5.0-H pitch 5mm size 30x9mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-7-3.5-H_1x07_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-7-3.5-H, 7 pins, pitch 3.5mm, size 24.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-7-3.5-H pitch 3.5mm size 24.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-7-5.0-H_1x07_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-7-5.0-H, 7 pins, pitch 5mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-7-5.0-H pitch 5mm size 35x9mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-8-3.5-H_1x08_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-8-3.5-H, 8 pins, pitch 3.5mm, size 28x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-8-3.5-H pitch 3.5mm size 28x7.6mm^2 drill 1.2mm pad 2.4mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-8-5.0-H_1x08_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-8-5.0-H, 8 pins, pitch 5mm, size 40x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-8-5.0-H pitch 5mm size 40x9mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-9-3.5-H_1x09_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-9-3.5-H, 9 pins, pitch 3.5mm, size 31.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-9-3.5-H pitch 3.5mm size 31.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-9-5.0-H_1x09_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-9-5.0-H, 9 pins, pitch 5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-9-5.0-H pitch 5mm size 45x9mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-10-3.5-H_1x10_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-10-3.5-H, 10 pins, pitch 3.5mm, size 35x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-10-3.5-H pitch 3.5mm size 35x7.6mm^2 drill 1.2mm pad 2.4mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-10-5.0-H_1x10_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-10-5.0-H, 10 pins, pitch 5mm, size 50x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-10-5.0-H pitch 5mm size 50x9mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-11-3.5-H_1x11_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-11-3.5-H, 11 pins, pitch 3.5mm, size 38.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-11-3.5-H pitch 3.5mm size 38.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-11-5.0-H_1x11_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-11-5.0-H, 11 pins, pitch 5mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-11-5.0-H pitch 5mm size 55x9mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-12-3.5-H_1x12_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-12-3.5-H, 12 pins, pitch 3.5mm, size 42x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-12-3.5-H pitch 3.5mm size 42x7.6mm^2 drill 1.2mm pad 2.4mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-12-5.0-H_1x12_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-12-5.0-H, 12 pins, pitch 5mm, size 60x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-12-5.0-H pitch 5mm size 60x9mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-13-3.5-H_1x13_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-13-3.5-H, 13 pins, pitch 3.5mm, size 45.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-13-3.5-H pitch 3.5mm size 45.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-13-5.0-H_1x13_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-13-5.0-H, 13 pins, pitch 5mm, size 65x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-13-5.0-H pitch 5mm size 65x9mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-14-3.5-H_1x14_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-14-3.5-H, 14 pins, pitch 3.5mm, size 49x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-14-3.5-H pitch 3.5mm size 49x7.6mm^2 drill 1.2mm pad 2.4mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-14-5.0-H_1x14_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-14-5.0-H, 14 pins, pitch 5mm, size 70x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-14-5.0-H pitch 5mm size 70x9mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-15-3.5-H_1x15_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-15-3.5-H, 15 pins, pitch 3.5mm, size 52.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-15-3.5-H pitch 3.5mm size 52.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-15-5.0-H_1x15_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-15-5.0-H, 15 pins, pitch 5mm, size 75x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-15-5.0-H pitch 5mm size 75x9mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-16-3.5-H_1x16_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-16-3.5-H, 16 pins, pitch 3.5mm, size 56x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-16-3.5-H pitch 3.5mm size 56x7.6mm^2 drill 1.2mm pad 2.4mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-16-5.0-H_1x16_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-16-5.0-H, 16 pins, pitch 5mm, size 80x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-16-5.0-H pitch 5mm size 80x9mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-2,5-V-SMD_1x02-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 2 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814702/pdf +PhoenixContact PTSM0.5 2 2.5mm vertical SMD spring clamp terminal block connector +0 +4 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-2.5-H-THR_1x02_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-2-2.5-H-THR, 2 pins, pitch 2.5mm, size 7.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-2-2.5-H-THR pitch 2.5mm size 7.2x10mm^2 drill 1.2mm pad 3mm +0 +4 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-2.5-V-THR_1x02_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-2-2.5-V-THR, vertical (cable from top), 2 pins, pitch 2.5mm, size 5.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-2-2.5-V-THR vertical pitch 2.5mm size 5.5x5mm^2 drill 1.2mm pad 2mm +0 +4 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-HV-2.5-SMD_1x02-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 2 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778696/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +4 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-2,5-V-SMD_1x03-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 3 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814715/pdf +PhoenixContact PTSM0.5 3 2.5mm vertical SMD spring clamp terminal block connector +0 +5 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-2.5-H-THR_1x03_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-3-2.5-H-THR, 3 pins, pitch 2.5mm, size 9.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-3-2.5-H-THR pitch 2.5mm size 9.7x10mm^2 drill 1.2mm pad 3mm +0 +6 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-2.5-V-THR_1x03_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-3-2.5-V-THR, vertical (cable from top), 3 pins, pitch 2.5mm, size 8x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-3-2.5-V-THR vertical pitch 2.5mm size 8x5mm^2 drill 1.2mm pad 2mm +0 +6 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-HV-2.5-SMD_1x03-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 3 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778706/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +5 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-2,5-V-SMD_1x04-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 4 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814728/pdf +PhoenixContact PTSM0.5 4 2.5mm vertical SMD spring clamp terminal block connector +0 +6 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-2.5-H-THR_1x04_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-4-2.5-H-THR, 4 pins, pitch 2.5mm, size 12.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-4-2.5-H-THR pitch 2.5mm size 12.2x10mm^2 drill 1.2mm pad 3mm +0 +8 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-2.5-V-THR_1x04_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-4-2.5-V-THR, vertical (cable from top), 4 pins, pitch 2.5mm, size 10.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-4-2.5-V-THR vertical pitch 2.5mm size 10.5x5mm^2 drill 1.2mm pad 2mm +0 +8 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-HV-2.5-SMD_1x04-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 4 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778719/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +4 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-2,5-V-SMD_1x05-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 5 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814731/pdf +PhoenixContact PTSM0.5 5 2.5mm vertical SMD spring clamp terminal block connector +0 +7 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-2.5-H-THR_1x05_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-5-2.5-H-THR, 5 pins, pitch 2.5mm, size 14.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-5-2.5-H-THR pitch 2.5mm size 14.7x10mm^2 drill 1.2mm pad 3mm +0 +10 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-2.5-V-THR_1x05_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-5-2.5-V-THR, vertical (cable from top), 5 pins, pitch 2.5mm, size 13x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-5-2.5-V-THR vertical pitch 2.5mm size 13x5mm^2 drill 1.2mm pad 2mm +0 +10 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-HV-2.5-SMD_1x05-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 5 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778722/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +7 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-2,5-V-SMD_1x06-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 6 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814744/pdf +PhoenixContact PTSM0.5 6 2.5mm vertical SMD spring clamp terminal block connector +0 +8 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-2.5-H-THR_1x06_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-6-2.5-H-THR, 6 pins, pitch 2.5mm, size 17.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-6-2.5-H-THR pitch 2.5mm size 17.2x10mm^2 drill 1.2mm pad 3mm +0 +12 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-2.5-V-THR_1x06_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-6-2.5-V-THR, vertical (cable from top), 6 pins, pitch 2.5mm, size 15.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-6-2.5-V-THR vertical pitch 2.5mm size 15.5x5mm^2 drill 1.2mm pad 2mm +0 +12 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-HV-2.5-SMD_1x06-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 6 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778735/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +8 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-2,5-V-SMD_1x07-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 7 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814757/pdf +PhoenixContact PTSM0.5 7 2.5mm vertical SMD spring clamp terminal block connector +0 +9 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-2.5-H-THR_1x07_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-7-2.5-H-THR, 7 pins, pitch 2.5mm, size 19.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-7-2.5-H-THR pitch 2.5mm size 19.7x10mm^2 drill 1.2mm pad 3mm +0 +14 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-2.5-V-THR_1x07_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-7-2.5-V-THR, vertical (cable from top), 7 pins, pitch 2.5mm, size 18x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-7-2.5-V-THR vertical pitch 2.5mm size 18x5mm^2 drill 1.2mm pad 2mm +0 +14 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-HV-2.5-SMD_1x07-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 7 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778748/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +9 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-2,5-V-SMD_1x08-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 8 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814760/pdf +PhoenixContact PTSM0.5 8 2.5mm vertical SMD spring clamp terminal block connector +0 +10 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-2.5-H-THR_1x08_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-8-2.5-H-THR, 8 pins, pitch 2.5mm, size 22.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-8-2.5-H-THR pitch 2.5mm size 22.2x10mm^2 drill 1.2mm pad 3mm +0 +16 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-2.5-V-THR_1x08_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-8-2.5-V-THR, vertical (cable from top), 8 pins, pitch 2.5mm, size 20.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-8-2.5-V-THR vertical pitch 2.5mm size 20.5x5mm^2 drill 1.2mm pad 2mm +0 +16 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-HV-2.5-SMD_1x08-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 8 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778751/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +10 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00001_1x02_P5.00mm_Horizontal +terminal block RND 205-00001, 2 pins, pitch 5mm, size 10x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00001 pitch 5mm size 10x9mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00002_1x03_P5.00mm_Horizontal +terminal block RND 205-00002, 3 pins, pitch 5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00002 pitch 5mm size 15x9mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00003_1x04_P5.00mm_Horizontal +terminal block RND 205-00003, 4 pins, pitch 5mm, size 20x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00003 pitch 5mm size 20x9mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00004_1x05_P5.00mm_Horizontal +terminal block RND 205-00004, 5 pins, pitch 5mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00004 pitch 5mm size 25x9mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00005_1x06_P5.00mm_Horizontal +terminal block RND 205-00005, 6 pins, pitch 5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00005 pitch 5mm size 30x9mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00006_1x07_P5.00mm_Horizontal +terminal block RND 205-00006, 7 pins, pitch 5mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00006 pitch 5mm size 35x9mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00007_1x08_P5.00mm_Horizontal +terminal block RND 205-00007, 8 pins, pitch 5mm, size 40x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00007 pitch 5mm size 40x9mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00008_1x09_P5.00mm_Horizontal +terminal block RND 205-00008, 9 pins, pitch 5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00008 pitch 5mm size 45x9mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00009_1x10_P5.00mm_Horizontal +terminal block RND 205-00009, 10 pins, pitch 5mm, size 50x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00009 pitch 5mm size 50x9mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00010_1x11_P5.00mm_Horizontal +terminal block RND 205-00010, 11 pins, pitch 5mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00010 pitch 5mm size 55x9mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00011_1x12_P5.00mm_Horizontal +terminal block RND 205-00011, 12 pins, pitch 5mm, size 60x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00011 pitch 5mm size 60x9mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00012_1x02_P5.00mm_Horizontal +terminal block RND 205-00012, 2 pins, pitch 5mm, size 10x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00012 pitch 5mm size 10x7.6mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00013_1x03_P5.00mm_Horizontal +terminal block RND 205-00013, 3 pins, pitch 5mm, size 15x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00013 pitch 5mm size 15x7.6mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00014_1x04_P5.00mm_Horizontal +terminal block RND 205-00014, 4 pins, pitch 5mm, size 20x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00014 pitch 5mm size 20x7.6mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00015_1x05_P5.00mm_Horizontal +terminal block RND 205-00015, 5 pins, pitch 5mm, size 25x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00015 pitch 5mm size 25x7.6mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00016_1x06_P5.00mm_Horizontal +terminal block RND 205-00016, 6 pins, pitch 5mm, size 30x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00016 pitch 5mm size 30x7.6mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00017_1x07_P5.00mm_Horizontal +terminal block RND 205-00017, 7 pins, pitch 5mm, size 35x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00017 pitch 5mm size 35x7.6mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00018_1x08_P5.00mm_Horizontal +terminal block RND 205-00018, 8 pins, pitch 5mm, size 40x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00018 pitch 5mm size 40x7.6mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00019_1x09_P5.00mm_Horizontal +terminal block RND 205-00019, 9 pins, pitch 5mm, size 45x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00019 pitch 5mm size 45x7.6mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00020_1x10_P5.00mm_Horizontal +terminal block RND 205-00020, 10 pins, pitch 5mm, size 50x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00020 pitch 5mm size 50x7.6mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00021_1x11_P5.00mm_Horizontal +terminal block RND 205-00021, 11 pins, pitch 5mm, size 55x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00021 pitch 5mm size 55x7.6mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00022_1x12_P5.00mm_Horizontal +terminal block RND 205-00022, 12 pins, pitch 5mm, size 60x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00022 pitch 5mm size 60x7.6mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00023_1x02_P10.00mm_Horizontal +terminal block RND 205-00023, 2 pins, pitch 10mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00023 pitch 10mm size 15x9mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00024_1x03_P10.00mm_Horizontal +terminal block RND 205-00024, 3 pins, pitch 10mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00024 pitch 10mm size 25x9mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00025_1x04_P10.00mm_Horizontal +terminal block RND 205-00025, 4 pins, pitch 10mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00025 pitch 10mm size 35x9mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00026_1x05_P10.00mm_Horizontal +terminal block RND 205-00026, 5 pins, pitch 10mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00026 pitch 10mm size 45x9mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00027_1x06_P10.00mm_Horizontal +terminal block RND 205-00027, 6 pins, pitch 10mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00027 pitch 10mm size 55x9mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00028_1x07_P10.00mm_Horizontal +terminal block RND 205-00028, 7 pins, pitch 10mm, size 65x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00028 pitch 10mm size 65x9mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00029_1x08_P10.00mm_Horizontal +terminal block RND 205-00029, 8 pins, pitch 10mm, size 75x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00029 pitch 10mm size 75x9mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00030_1x09_P10.00mm_Horizontal +terminal block RND 205-00030, 9 pins, pitch 10mm, size 85x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00030 pitch 10mm size 85x9mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00031_1x10_P10.00mm_Horizontal +terminal block RND 205-00031, 10 pins, pitch 10mm, size 95x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00031 pitch 10mm size 95x9mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00032_1x11_P10.00mm_Horizontal +terminal block RND 205-00032, 11 pins, pitch 10mm, size 105x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00032 pitch 10mm size 105x9mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00033_1x12_P10.00mm_Horizontal +terminal block RND 205-00033, 12 pins, pitch 10mm, size 115x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00033 pitch 10mm size 115x9mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00045_1x02_P5.00mm_Horizontal +terminal block RND 205-00045, 2 pins, pitch 5mm, size 10x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00045 pitch 5mm size 10x8.1mm^2 drill 1.1mm pad 2.1mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00046_1x03_P5.00mm_Horizontal +terminal block RND 205-00046, 3 pins, pitch 5mm, size 15x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00046 pitch 5mm size 15x8.1mm^2 drill 1.1mm pad 2.1mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00047_1x04_P5.00mm_Horizontal +terminal block RND 205-00047, 4 pins, pitch 5mm, size 20x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00047 pitch 5mm size 20x8.1mm^2 drill 1.1mm pad 2.1mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00048_1x05_P5.00mm_Horizontal +terminal block RND 205-00048, 5 pins, pitch 5mm, size 25x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00048 pitch 5mm size 25x8.1mm^2 drill 1.1mm pad 2.1mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00049_1x06_P5.00mm_Horizontal +terminal block RND 205-00049, 6 pins, pitch 5mm, size 30x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00049 pitch 5mm size 30x8.1mm^2 drill 1.1mm pad 2.1mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00050_1x07_P5.00mm_Horizontal +terminal block RND 205-00050, 7 pins, pitch 5mm, size 35x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00050 pitch 5mm size 35x8.1mm^2 drill 1.1mm pad 2.1mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00051_1x08_P5.00mm_Horizontal +terminal block RND 205-00051, 8 pins, pitch 5mm, size 40x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00051 pitch 5mm size 40x8.1mm^2 drill 1.1mm pad 2.1mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00052_1x09_P5.00mm_Horizontal +terminal block RND 205-00052, 9 pins, pitch 5mm, size 45x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00052 pitch 5mm size 45x8.1mm^2 drill 1.1mm pad 2.1mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00053_1x10_P5.00mm_Horizontal +terminal block RND 205-00053, 10 pins, pitch 5mm, size 50x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00053 pitch 5mm size 50x8.1mm^2 drill 1.1mm pad 2.1mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00054_1x11_P5.00mm_Horizontal +terminal block RND 205-00054, 11 pins, pitch 5mm, size 55x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00054 pitch 5mm size 55x8.1mm^2 drill 1.1mm pad 2.1mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00055_1x12_P5.00mm_Horizontal +terminal block RND 205-00055, 12 pins, pitch 5mm, size 60x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00055 pitch 5mm size 60x8.1mm^2 drill 1.1mm pad 2.1mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00056_1x02_P5.00mm_45Degree +terminal block RND 205-00056, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 10x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00056 45Degree pitch 5mm size 10x12.6mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00057_1x03_P5.00mm_45Degree +terminal block RND 205-00057, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 15x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00057 45Degree pitch 5mm size 15x12.6mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00058_1x04_P5.00mm_45Degree +terminal block RND 205-00058, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 20x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00058 45Degree pitch 5mm size 20x12.6mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00059_1x05_P5.00mm_45Degree +terminal block RND 205-00059, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 25x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00059 45Degree pitch 5mm size 25x12.6mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00060_1x06_P5.00mm_45Degree +terminal block RND 205-00060, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 30x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00060 45Degree pitch 5mm size 30x12.6mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00061_1x07_P5.00mm_45Degree +terminal block RND 205-00061, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 35x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00061 45Degree pitch 5mm size 35x12.6mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00062_1x08_P5.00mm_45Degree +terminal block RND 205-00062, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 40x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00062 45Degree pitch 5mm size 40x12.6mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00063_1x09_P5.00mm_45Degree +terminal block RND 205-00063, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 45x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00063 45Degree pitch 5mm size 45x12.6mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00064_1x10_P5.00mm_45Degree +terminal block RND 205-00064, 45Degree (cable under 45degree), 10 pins, pitch 5mm, size 50x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00064 45Degree pitch 5mm size 50x12.6mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00065_1x11_P5.00mm_45Degree +terminal block RND 205-00065, 45Degree (cable under 45degree), 11 pins, pitch 5mm, size 55x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00065 45Degree pitch 5mm size 55x12.6mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00066_1x12_P5.00mm_45Degree +terminal block RND 205-00066, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 60x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00066 45Degree pitch 5mm size 60x12.6mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00067_1x02_P7.50mm_Horizontal +terminal block RND 205-00067, 2 pins, pitch 7.5mm, size 15x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00067 pitch 7.5mm size 15x10.3mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00068_1x03_P7.50mm_Horizontal +terminal block RND 205-00068, 3 pins, pitch 7.5mm, size 22.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00068 pitch 7.5mm size 22.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00069_1x04_P7.50mm_Horizontal +terminal block RND 205-00069, 4 pins, pitch 7.5mm, size 30x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00069 pitch 7.5mm size 30x10.3mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00070_1x05_P7.50mm_Horizontal +terminal block RND 205-00070, 5 pins, pitch 7.5mm, size 37.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00070 pitch 7.5mm size 37.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00071_1x06_P7.50mm_Horizontal +terminal block RND 205-00071, 6 pins, pitch 7.5mm, size 45x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00071 pitch 7.5mm size 45x10.3mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00072_1x07_P7.50mm_Horizontal +terminal block RND 205-00072, 7 pins, pitch 7.5mm, size 52.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00072 pitch 7.5mm size 52.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00073_1x08_P7.50mm_Horizontal +terminal block RND 205-00073, 8 pins, pitch 7.5mm, size 60x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00073 pitch 7.5mm size 60x10.3mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00074_1x09_P7.50mm_Horizontal +terminal block RND 205-00074, 9 pins, pitch 7.5mm, size 67.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00074 pitch 7.5mm size 67.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00075_1x10_P7.50mm_Horizontal +terminal block RND 205-00075, 10 pins, pitch 7.5mm, size 75x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00075 pitch 7.5mm size 75x10.3mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00076_1x11_P7.50mm_Horizontal +terminal block RND 205-00076, 11 pins, pitch 7.5mm, size 82.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00076 pitch 7.5mm size 82.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00077_1x12_P7.50mm_Horizontal +terminal block RND 205-00077, 12 pins, pitch 7.5mm, size 90x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00077 pitch 7.5mm size 90x10.3mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00078_1x02_P10.00mm_Horizontal +terminal block RND 205-00078, 2 pins, pitch 10mm, size 15x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00078 pitch 10mm size 15x10.3mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00079_1x03_P10.00mm_Horizontal +terminal block RND 205-00079, 3 pins, pitch 10mm, size 25x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00079 pitch 10mm size 25x10.3mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00080_1x04_P10.00mm_Horizontal +terminal block RND 205-00080, 4 pins, pitch 10mm, size 35x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00080 pitch 10mm size 35x10.3mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00081_1x05_P10.00mm_Horizontal +terminal block RND 205-00081, 5 pins, pitch 10mm, size 45x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00081 pitch 10mm size 45x10.3mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00082_1x06_P10.00mm_Horizontal +terminal block RND 205-00082, 6 pins, pitch 10mm, size 55x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00082 pitch 10mm size 55x10.3mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00083_1x07_P10.00mm_Horizontal +terminal block RND 205-00083, 7 pins, pitch 10mm, size 65x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00083 pitch 10mm size 65x10.3mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00084_1x08_P10.00mm_Horizontal +terminal block RND 205-00084, 8 pins, pitch 10mm, size 75x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00084 pitch 10mm size 75x10.3mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00085_1x09_P10.00mm_Horizontal +terminal block RND 205-00085, 9 pins, pitch 10mm, size 85x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00085 pitch 10mm size 85x10.3mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00086_1x10_P10.00mm_Horizontal +terminal block RND 205-00086, 10 pins, pitch 10mm, size 95x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00086 pitch 10mm size 95x10.3mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00087_1x11_P10.00mm_Horizontal +terminal block RND 205-00087, 11 pins, pitch 10mm, size 105x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00087 pitch 10mm size 105x10.3mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00088_1x12_P10.00mm_Horizontal +terminal block RND 205-00088, 12 pins, pitch 10mm, size 115x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00088 pitch 10mm size 115x10.3mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00232_1x02_P5.08mm_Horizontal +terminal block RND 205-00232, 2 pins, pitch 5.08mm, size 10.2x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00232 pitch 5.08mm size 10.2x8.45mm^2 drill 1.1mm pad 2.1mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00233_1x03_P5.08mm_Horizontal +terminal block RND 205-00233, 3 pins, pitch 5.08mm, size 15.2x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00233 pitch 5.08mm size 15.2x8.45mm^2 drill 1.1mm pad 2.1mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00234_1x04_P5.08mm_Horizontal +terminal block RND 205-00234, 4 pins, pitch 5.08mm, size 20.3x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00234 pitch 5.08mm size 20.3x8.45mm^2 drill 1.1mm pad 2.1mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00235_1x05_P5.08mm_Horizontal +terminal block RND 205-00235, 5 pins, pitch 5.08mm, size 25.4x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00235 pitch 5.08mm size 25.4x8.45mm^2 drill 1.1mm pad 2.1mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00236_1x06_P5.08mm_Horizontal +terminal block RND 205-00236, 6 pins, pitch 5.08mm, size 30.5x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00236 pitch 5.08mm size 30.5x8.45mm^2 drill 1.1mm pad 2.1mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00237_1x07_P5.08mm_Horizontal +terminal block RND 205-00237, 7 pins, pitch 5.08mm, size 35.6x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00237 pitch 5.08mm size 35.6x8.45mm^2 drill 1.1mm pad 2.1mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00238_1x08_P5.08mm_Horizontal +terminal block RND 205-00238, 8 pins, pitch 5.08mm, size 40.6x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00238 pitch 5.08mm size 40.6x8.45mm^2 drill 1.1mm pad 2.1mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00239_1x09_P5.08mm_Horizontal +terminal block RND 205-00239, 9 pins, pitch 5.08mm, size 45.7x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00239 pitch 5.08mm size 45.7x8.45mm^2 drill 1.1mm pad 2.1mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00240_1x10_P5.08mm_Horizontal +terminal block RND 205-00240, 10 pins, pitch 5.08mm, size 50.8x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00240 pitch 5.08mm size 50.8x8.45mm^2 drill 1.1mm pad 2.1mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00241_1x02_P10.16mm_Horizontal +terminal block RND 205-00241, 2 pins, pitch 10.2mm, size 15.2x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00241 pitch 10.2mm size 15.2x8.3mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00242_1x03_P10.16mm_Horizontal +terminal block RND 205-00242, 3 pins, pitch 10.2mm, size 25.4x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00242 pitch 10.2mm size 25.4x8.3mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00243_1x04_P10.16mm_Horizontal +terminal block RND 205-00243, 4 pins, pitch 10.2mm, size 35.6x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00243 pitch 10.2mm size 35.6x8.3mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00244_1x05_P10.16mm_Horizontal +terminal block RND 205-00244, 5 pins, pitch 10.2mm, size 45.7x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00244 pitch 10.2mm size 45.7x8.3mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00245_1x06_P10.16mm_Horizontal +terminal block RND 205-00245, 6 pins, pitch 10.2mm, size 55.9x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00245 pitch 10.2mm size 55.9x8.3mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00246_1x07_P10.16mm_Horizontal +terminal block RND 205-00246, 7 pins, pitch 10.2mm, size 66x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00246 pitch 10.2mm size 66x8.3mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00247_1x08_P10.16mm_Horizontal +terminal block RND 205-00247, 8 pins, pitch 10.2mm, size 76.2x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00247 pitch 10.2mm size 76.2x8.3mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00248_1x09_P10.16mm_Horizontal +terminal block RND 205-00248, 9 pins, pitch 10.2mm, size 86.4x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00248 pitch 10.2mm size 86.4x8.3mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00249_1x10_P10.16mm_Horizontal +terminal block RND 205-00249, 10 pins, pitch 10.2mm, size 96.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00249 pitch 10.2mm size 96.5x8.3mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00250_1x11_P10.16mm_Horizontal +terminal block RND 205-00250, 11 pins, pitch 10.2mm, size 107x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00250 pitch 10.2mm size 107x8.3mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00251_1x12_P10.16mm_Horizontal +terminal block RND 205-00251, 12 pins, pitch 10.2mm, size 117x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00251 pitch 10.2mm size 117x8.3mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00276_1x02_P5.00mm_Vertical +terminal block RND 205-00078, vertical (cable from top), 2 pins, pitch 5mm, size 10x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00078 vertical pitch 5mm size 10x10mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00277_1x03_P5.00mm_Vertical +terminal block RND 205-00079, vertical (cable from top), 3 pins, pitch 5mm, size 15x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00079 vertical pitch 5mm size 15x10mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00278_1x04_P5.00mm_Vertical +terminal block RND 205-00080, vertical (cable from top), 4 pins, pitch 5mm, size 20x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00080 vertical pitch 5mm size 20x10mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00279_1x05_P5.00mm_Vertical +terminal block RND 205-00081, vertical (cable from top), 5 pins, pitch 5mm, size 25x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00081 vertical pitch 5mm size 25x10mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00280_1x06_P5.00mm_Vertical +terminal block RND 205-00082, vertical (cable from top), 6 pins, pitch 5mm, size 30x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00082 vertical pitch 5mm size 30x10mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00281_1x07_P5.00mm_Vertical +terminal block RND 205-00083, vertical (cable from top), 7 pins, pitch 5mm, size 35x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00083 vertical pitch 5mm size 35x10mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00282_1x08_P5.00mm_Vertical +terminal block RND 205-00084, vertical (cable from top), 8 pins, pitch 5mm, size 40x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00084 vertical pitch 5mm size 40x10mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00283_1x09_P5.00mm_Vertical +terminal block RND 205-00085, vertical (cable from top), 9 pins, pitch 5mm, size 45x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00085 vertical pitch 5mm size 45x10mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00284_1x10_P5.00mm_Vertical +terminal block RND 205-00086, vertical (cable from top), 10 pins, pitch 5mm, size 50x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00086 vertical pitch 5mm size 50x10mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00285_1x11_P5.00mm_Vertical +terminal block RND 205-00087, vertical (cable from top), 11 pins, pitch 5mm, size 55x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00087 vertical pitch 5mm size 55x10mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00286_1x12_P5.00mm_Vertical +terminal block RND 205-00088, vertical (cable from top), 12 pins, pitch 5mm, size 60x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00088 vertical pitch 5mm size 60x10mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00287_1x02_P5.08mm_Horizontal +terminal block RND 205-00287, 2 pins, pitch 5.08mm, size 10.2x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00287 pitch 5.08mm size 10.2x10.6mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00288_1x03_P5.08mm_Horizontal +terminal block RND 205-00288, 3 pins, pitch 5.08mm, size 15.2x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00288 pitch 5.08mm size 15.2x10.6mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00289_1x04_P5.08mm_Horizontal +terminal block RND 205-00289, 4 pins, pitch 5.08mm, size 20.3x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00289 pitch 5.08mm size 20.3x10.6mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00290_1x05_P5.08mm_Horizontal +terminal block RND 205-00290, 5 pins, pitch 5.08mm, size 25.4x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00290 pitch 5.08mm size 25.4x10.6mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00291_1x06_P5.08mm_Horizontal +terminal block RND 205-00291, 6 pins, pitch 5.08mm, size 30.5x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00291 pitch 5.08mm size 30.5x10.6mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00292_1x07_P5.08mm_Horizontal +terminal block RND 205-00292, 7 pins, pitch 5.08mm, size 35.6x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00292 pitch 5.08mm size 35.6x10.6mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00293_1x08_P5.08mm_Horizontal +terminal block RND 205-00293, 8 pins, pitch 5.08mm, size 40.6x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00293 pitch 5.08mm size 40.6x10.6mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00294_1x09_P5.08mm_Horizontal +terminal block RND 205-00294, 9 pins, pitch 5.08mm, size 45.7x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00294 pitch 5.08mm size 45.7x10.6mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00295_1x10_P5.08mm_Horizontal +terminal block RND 205-00295, 10 pins, pitch 5.08mm, size 50.8x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00295 pitch 5.08mm size 50.8x10.6mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00296_1x11_P5.08mm_Horizontal +terminal block RND 205-00296, 11 pins, pitch 5.08mm, size 55.9x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00296 pitch 5.08mm size 55.9x10.6mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00297_1x12_P5.08mm_Horizontal +terminal block RND 205-00297, 12 pins, pitch 5.08mm, size 61x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00297 pitch 5.08mm size 61x10.6mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00298_1x02_P10.00mm_Horizontal +terminal block RND 205-00298, 2 pins, pitch 10mm, size 15x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00298 pitch 10mm size 15x8.1mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00299_1x03_P10.00mm_Horizontal +terminal block RND 205-00299, 3 pins, pitch 10mm, size 25x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00299 pitch 10mm size 25x8.1mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00300_1x04_P10.00mm_Horizontal +terminal block RND 205-00300, 4 pins, pitch 10mm, size 35x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00300 pitch 10mm size 35x8.1mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00301_1x05_P10.00mm_Horizontal +terminal block RND 205-00301, 5 pins, pitch 10mm, size 45x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00301 pitch 10mm size 45x8.1mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00302_1x06_P10.00mm_Horizontal +terminal block RND 205-00302, 6 pins, pitch 10mm, size 55x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00302 pitch 10mm size 55x8.1mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00303_1x07_P10.00mm_Horizontal +terminal block RND 205-00303, 7 pins, pitch 10mm, size 65x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00303 pitch 10mm size 65x8.1mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00304_1x08_P10.00mm_Horizontal +terminal block RND 205-00304, 8 pins, pitch 10mm, size 75x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00304 pitch 10mm size 75x8.1mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00305_1x09_P10.00mm_Horizontal +terminal block RND 205-00305, 9 pins, pitch 10mm, size 85x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00305 pitch 10mm size 85x8.1mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00306_1x10_P10.00mm_Horizontal +terminal block RND 205-00306, 10 pins, pitch 10mm, size 95x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00306 pitch 10mm size 95x8.1mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00307_1x11_P10.00mm_Horizontal +terminal block RND 205-00307, 11 pins, pitch 10mm, size 105x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00307 pitch 10mm size 105x8.1mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00308_1x12_P10.00mm_Horizontal +terminal block RND 205-00308, 12 pins, pitch 10mm, size 115x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00308 pitch 10mm size 115x8.1mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_1-282834-0_1x10_P2.54mm_Horizontal +Terminal Block TE 1-282834-0, 10 pins, pitch 2.54mm, size 25.86x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-0 pitch 2.54mm size 25.86x6.5mm^2 drill 1.1mm pad 2.1mm +0 +10 +10 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_1-282834-1_1x11_P2.54mm_Horizontal +Terminal Block TE 1-282834-1, 11 pins, pitch 2.54mm, size 28.4x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-1 pitch 2.54mm size 28.4x6.5mm^2 drill 1.1mm pad 2.1mm +0 +11 +11 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_1-282834-2_1x12_P2.54mm_Horizontal +Terminal Block TE 1-282834-2, 12 pins, pitch 2.54mm, size 30.94x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-2 pitch 2.54mm size 30.94x6.5mm^2 drill 1.1mm pad 2.1mm +0 +12 +12 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-2_1x02_P2.54mm_Horizontal +Terminal Block TE 282834-2, 2 pins, pitch 2.54mm, size 5.54x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-2 pitch 2.54mm size 5.54x6.5mm^2 drill 1.1mm pad 2.1mm +0 +2 +2 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal +Terminal Block TE 282834-3, 3 pins, pitch 2.54mm, size 8.08x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-3 pitch 2.54mm size 8.08x6.5mm^2 drill 1.1mm pad 2.1mm +0 +3 +3 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-4_1x04_P2.54mm_Horizontal +Terminal Block TE 282834-4, 4 pins, pitch 2.54mm, size 10.620000000000001x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-4 pitch 2.54mm size 10.620000000000001x6.5mm^2 drill 1.1mm pad 2.1mm +0 +4 +4 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-5_1x05_P2.54mm_Horizontal +Terminal Block TE 282834-5, 5 pins, pitch 2.54mm, size 13.16x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-5 pitch 2.54mm size 13.16x6.5mm^2 drill 1.1mm pad 2.1mm +0 +5 +5 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-6_1x06_P2.54mm_Horizontal +Terminal Block TE 282834-6, 6 pins, pitch 2.54mm, size 15.7x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-6 pitch 2.54mm size 15.7x6.5mm^2 drill 1.1mm pad 2.1mm +0 +6 +6 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-7_1x07_P2.54mm_Horizontal +Terminal Block TE 282834-7, 7 pins, pitch 2.54mm, size 18.240000000000002x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-7 pitch 2.54mm size 18.240000000000002x6.5mm^2 drill 1.1mm pad 2.1mm +0 +7 +7 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-8_1x08_P2.54mm_Horizontal +Terminal Block TE 282834-8, 8 pins, pitch 2.54mm, size 20.78x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-8 pitch 2.54mm size 20.78x6.5mm^2 drill 1.1mm pad 2.1mm +0 +8 +8 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-9_1x09_P2.54mm_Horizontal +Terminal Block TE 282834-9, 9 pins, pitch 2.54mm, size 23.32x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-9 pitch 2.54mm size 23.32x6.5mm^2 drill 1.1mm pad 2.1mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-502_2x02_P2.54mm +Terminal Block Wago 233-502, 2 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-502 +THT +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-503_2x03_P2.54mm +Terminal Block Wago 233-503, 3 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-503 +THT +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-504_2x04_P2.54mm +Terminal Block Wago 233-504, 4 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-504 +THT +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-505_2x05_P2.54mm +Terminal Block Wago 233-505, 5 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-505 +THT +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-506_2x06_P2.54mm +Terminal Block Wago 233-506, 6 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-506 +THT +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-507_2x07_P2.54mm +Terminal Block Wago 233-507, 7 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-507 +THT +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-508_2x08_P2.54mm +Terminal Block Wago 233-508, 8 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-508 +THT +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-509_2x09_P2.54mm +Terminal Block Wago 233-509, 9 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-509 +THT +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-510_2x10_P2.54mm +Terminal Block Wago 233-510, 10 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-510 +THT +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-512_2x12_P2.54mm +Terminal Block Wago 233-512, 12 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-512 +THT +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-101_1x01_P5.00mm_45Degree +Terminal Block WAGO 236-101, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 7.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-101 45Degree pitch 5mm size 7.3x14mm^2 drill 1.15mm pad 3mm +0 +1 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-102_1x02_P5.00mm_45Degree +Terminal Block WAGO 236-102, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-102 45Degree pitch 5mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-103_1x03_P5.00mm_45Degree +Terminal Block WAGO 236-103, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-103 45Degree pitch 5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +3 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-104_1x04_P5.00mm_45Degree +Terminal Block WAGO 236-104, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-104 45Degree pitch 5mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-105_1x05_P5.00mm_45Degree +Terminal Block WAGO 236-105, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 27.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-105 45Degree pitch 5mm size 27.3x14mm^2 drill 1.15mm pad 3mm +0 +5 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-106_1x06_P5.00mm_45Degree +Terminal Block WAGO 236-106, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-106 45Degree pitch 5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-107_1x07_P5.00mm_45Degree +Terminal Block WAGO 236-107, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 37.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-107 45Degree pitch 5mm size 37.3x14mm^2 drill 1.15mm pad 3mm +0 +7 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-108_1x08_P5.00mm_45Degree +Terminal Block WAGO 236-108, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-108 45Degree pitch 5mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-109_1x09_P5.00mm_45Degree +Terminal Block WAGO 236-109, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-109 45Degree pitch 5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-112_1x12_P5.00mm_45Degree +Terminal Block WAGO 236-112, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-112 45Degree pitch 5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-114_1x14_P5.00mm_45Degree +Terminal Block WAGO 236-114, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 72.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-114 45Degree pitch 5mm size 72.3x14mm^2 drill 1.15mm pad 3mm +0 +14 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-116_1x16_P5.00mm_45Degree +Terminal Block WAGO 236-116, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-116 45Degree pitch 5mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-124_1x24_P5.00mm_45Degree +Terminal Block WAGO 236-124, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-124 45Degree pitch 5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +24 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-136_1x36_P5.00mm_45Degree +Terminal Block WAGO 236-136, 45Degree (cable under 45degree), 36 pins, pitch 5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-136 45Degree pitch 5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +36 +36 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-148_1x48_P5.00mm_45Degree +Terminal Block WAGO 236-148, 45Degree (cable under 45degree), 48 pins, pitch 5mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-148 45Degree pitch 5mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +48 +48 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-201_1x01_P7.50mm_45Degree +Terminal Block WAGO 236-201, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 9.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-201 45Degree pitch 7.5mm size 9.8x14mm^2 drill 1.15mm pad 3mm +0 +1 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-202_1x02_P7.50mm_45Degree +Terminal Block WAGO 236-202, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-202 45Degree pitch 7.5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-203_1x03_P7.50mm_45Degree +Terminal Block WAGO 236-203, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 24.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-203 45Degree pitch 7.5mm size 24.8x14mm^2 drill 1.15mm pad 3mm +0 +3 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-204_1x04_P7.50mm_45Degree +Terminal Block WAGO 236-204, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-204 45Degree pitch 7.5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-205_1x05_P7.50mm_45Degree +Terminal Block WAGO 236-205, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 39.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-205 45Degree pitch 7.5mm size 39.8x14mm^2 drill 1.15mm pad 3mm +0 +5 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-206_1x06_P7.50mm_45Degree +Terminal Block WAGO 236-206, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-206 45Degree pitch 7.5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-207_1x07_P7.50mm_45Degree +Terminal Block WAGO 236-207, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 54.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-207 45Degree pitch 7.5mm size 54.8x14mm^2 drill 1.15mm pad 3mm +0 +7 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-208_1x08_P7.50mm_45Degree +Terminal Block WAGO 236-208, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-208 45Degree pitch 7.5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-209_1x09_P7.50mm_45Degree +Terminal Block WAGO 236-209, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 69.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-209 45Degree pitch 7.5mm size 69.8x14mm^2 drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-212_1x12_P7.50mm_45Degree +Terminal Block WAGO 236-212, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-212 45Degree pitch 7.5mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-216_1x16_P7.50mm_45Degree +Terminal Block WAGO 236-216, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-216 45Degree pitch 7.5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +16 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-224_1x24_P7.50mm_45Degree +Terminal Block WAGO 236-224, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-224 45Degree pitch 7.5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +24 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-301_1x01_P10.00mm_45Degree +Terminal Block WAGO 236-301, 45Degree (cable under 45degree), 1 pins, pitch 10mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-301 45Degree pitch 10mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +1 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-302_1x02_P10.00mm_45Degree +Terminal Block WAGO 236-302, 45Degree (cable under 45degree), 2 pins, pitch 10mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-302 45Degree pitch 10mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-303_1x03_P10.00mm_45Degree +Terminal Block WAGO 236-303, 45Degree (cable under 45degree), 3 pins, pitch 10mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-303 45Degree pitch 10mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +3 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-304_1x04_P10.00mm_45Degree +Terminal Block WAGO 236-304, 45Degree (cable under 45degree), 4 pins, pitch 10mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-304 45Degree pitch 10mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-305_1x05_P10.00mm_45Degree +Terminal Block WAGO 236-305, 45Degree (cable under 45degree), 5 pins, pitch 10mm, size 52.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-305 45Degree pitch 10mm size 52.3x14mm^2 drill 1.15mm pad 3mm +0 +5 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-306_1x06_P10.00mm_45Degree +Terminal Block WAGO 236-306, 45Degree (cable under 45degree), 6 pins, pitch 10mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-306 45Degree pitch 10mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-308_1x08_P10.00mm_45Degree +Terminal Block WAGO 236-308, 45Degree (cable under 45degree), 8 pins, pitch 10mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-308 45Degree pitch 10mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-309_1x09_P10.00mm_45Degree +Terminal Block WAGO 236-309, 45Degree (cable under 45degree), 9 pins, pitch 10mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-309 45Degree pitch 10mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-312_1x12_P10.00mm_45Degree +Terminal Block WAGO 236-312, 45Degree (cable under 45degree), 12 pins, pitch 10mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-312 45Degree pitch 10mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-316_1x16_P10.00mm_45Degree +Terminal Block WAGO 236-316, 45Degree (cable under 45degree), 16 pins, pitch 10mm, size 162x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-316 45Degree pitch 10mm size 162x14mm^2 drill 1.15mm pad 3mm +0 +16 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-324_1x24_P10.00mm_45Degree +Terminal Block WAGO 236-324, 45Degree (cable under 45degree), 24 pins, pitch 10mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-324 45Degree pitch 10mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +24 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-401_1x01_P5.00mm_45Degree +Terminal Block WAGO 236-401, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 7.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-401 45Degree pitch 5mm size 7.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-402_1x02_P5.00mm_45Degree +Terminal Block WAGO 236-402, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-402 45Degree pitch 5mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-403_1x03_P5.00mm_45Degree +Terminal Block WAGO 236-403, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-403 45Degree pitch 5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-404_1x04_P5.00mm_45Degree +Terminal Block WAGO 236-404, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-404 45Degree pitch 5mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-405_1x05_P5.00mm_45Degree +Terminal Block WAGO 236-405, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 27.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-405 45Degree pitch 5mm size 27.3x14mm^2 drill 1.15mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-406_1x06_P5.00mm_45Degree +Terminal Block WAGO 236-406, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-406 45Degree pitch 5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-407_1x07_P5.00mm_45Degree +Terminal Block WAGO 236-407, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 37.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-407 45Degree pitch 5mm size 37.3x14mm^2 drill 1.15mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-408_1x08_P5.00mm_45Degree +Terminal Block WAGO 236-408, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-408 45Degree pitch 5mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-409_1x09_P5.00mm_45Degree +Terminal Block WAGO 236-409, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-409 45Degree pitch 5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-412_1x12_P5.00mm_45Degree +Terminal Block WAGO 236-412, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-412 45Degree pitch 5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-414_1x14_P5.00mm_45Degree +Terminal Block WAGO 236-414, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 72.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-414 45Degree pitch 5mm size 72.3x14mm^2 drill 1.15mm pad 3mm +0 +28 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-416_1x16_P5.00mm_45Degree +Terminal Block WAGO 236-416, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-416 45Degree pitch 5mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-424_1x24_P5.00mm_45Degree +Terminal Block WAGO 236-424, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-424 45Degree pitch 5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-436_1x36_P5.00mm_45Degree +Terminal Block WAGO 236-436, 45Degree (cable under 45degree), 36 pins, pitch 5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-436 45Degree pitch 5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +72 +36 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-448_1x48_P5.00mm_45Degree +Terminal Block WAGO 236-448, 45Degree (cable under 45degree), 48 pins, pitch 5mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-448 45Degree pitch 5mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +96 +48 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-501_1x01_P7.50mm_45Degree +Terminal Block WAGO 236-501, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 9.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-501 45Degree pitch 7.5mm size 9.8x14mm^2 drill 1.15mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-502_1x02_P7.50mm_45Degree +Terminal Block WAGO 236-502, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-502 45Degree pitch 7.5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-503_1x03_P7.50mm_45Degree +Terminal Block WAGO 236-503, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 24.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-503 45Degree pitch 7.5mm size 24.8x14mm^2 drill 1.15mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-504_1x04_P7.50mm_45Degree +Terminal Block WAGO 236-504, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-504 45Degree pitch 7.5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-505_1x05_P7.50mm_45Degree +Terminal Block WAGO 236-505, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 39.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-505 45Degree pitch 7.5mm size 39.8x14mm^2 drill 1.15mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-506_1x06_P7.50mm_45Degree +Terminal Block WAGO 236-506, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-506 45Degree pitch 7.5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-507_1x07_P7.50mm_45Degree +Terminal Block WAGO 236-507, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 54.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-507 45Degree pitch 7.5mm size 54.8x14mm^2 drill 1.15mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-508_1x08_P7.50mm_45Degree +Terminal Block WAGO 236-508, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-508 45Degree pitch 7.5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-509_1x09_P7.50mm_45Degree +Terminal Block WAGO 236-509, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 69.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-509 45Degree pitch 7.5mm size 69.8x14mm^2 drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-512_1x12_P7.50mm_45Degree +Terminal Block WAGO 236-512, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-512 45Degree pitch 7.5mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-516_1x16_P7.50mm_45Degree +Terminal Block WAGO 236-516, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-516 45Degree pitch 7.5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-524_1x24_P7.50mm_45Degree +Terminal Block WAGO 236-524, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-524 45Degree pitch 7.5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-601_1x01_P10.00mm_45Degree +Terminal Block WAGO 236-601, 45Degree (cable under 45degree), 1 pins, pitch 10mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-601 45Degree pitch 10mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-602_1x02_P10.00mm_45Degree +Terminal Block WAGO 236-602, 45Degree (cable under 45degree), 2 pins, pitch 10mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-602 45Degree pitch 10mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-603_1x03_P10.00mm_45Degree +Terminal Block WAGO 236-603, 45Degree (cable under 45degree), 3 pins, pitch 10mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-603 45Degree pitch 10mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-604_1x04_P10.00mm_45Degree +Terminal Block WAGO 236-604, 45Degree (cable under 45degree), 4 pins, pitch 10mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-604 45Degree pitch 10mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-605_1x05_P10.00mm_45Degree +Terminal Block WAGO 236-605, 45Degree (cable under 45degree), 5 pins, pitch 10mm, size 52.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-605 45Degree pitch 10mm size 52.3x14mm^2 drill 1.15mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-606_1x06_P10.00mm_45Degree +Terminal Block WAGO 236-606, 45Degree (cable under 45degree), 6 pins, pitch 10mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-606 45Degree pitch 10mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-608_1x08_P10.00mm_45Degree +Terminal Block WAGO 236-608, 45Degree (cable under 45degree), 8 pins, pitch 10mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-608 45Degree pitch 10mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-609_1x09_P10.00mm_45Degree +Terminal Block WAGO 236-609, 45Degree (cable under 45degree), 9 pins, pitch 10mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-609 45Degree pitch 10mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-612_1x12_P10.00mm_45Degree +Terminal Block WAGO 236-612, 45Degree (cable under 45degree), 12 pins, pitch 10mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-612 45Degree pitch 10mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-616_1x16_P10.00mm_45Degree +Terminal Block WAGO 236-616, 45Degree (cable under 45degree), 16 pins, pitch 10mm, size 162x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-616 45Degree pitch 10mm size 162x14mm^2 drill 1.15mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-624_1x24_P10.00mm_45Degree +Terminal Block WAGO 236-624, 45Degree (cable under 45degree), 24 pins, pitch 10mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-624 45Degree pitch 10mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-101_1x01_P5.00mm_45Degree +Terminal Block WAGO 804-101, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 6.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-101 45Degree pitch 5mm size 6.5x15mm^2 drill 1.2mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-102_1x02_P5.00mm_45Degree +Terminal Block WAGO 804-102, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 11.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-102 45Degree pitch 5mm size 11.5x15mm^2 drill 1.2mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-103_1x03_P5.00mm_45Degree +Terminal Block WAGO 804-103, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 16.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-103 45Degree pitch 5mm size 16.5x15mm^2 drill 1.2mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-104_1x04_P5.00mm_45Degree +Terminal Block WAGO 804-104, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 21.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-104 45Degree pitch 5mm size 21.5x15mm^2 drill 1.2mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-105_1x05_P5.00mm_45Degree +Terminal Block WAGO 804-105, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 26.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-105 45Degree pitch 5mm size 26.5x15mm^2 drill 1.2mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-106_1x06_P5.00mm_45Degree +Terminal Block WAGO 804-106, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 31.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-106 45Degree pitch 5mm size 31.5x15mm^2 drill 1.2mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-107_1x07_P5.00mm_45Degree +Terminal Block WAGO 804-107, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 36.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-107 45Degree pitch 5mm size 36.5x15mm^2 drill 1.2mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-108_1x08_P5.00mm_45Degree +Terminal Block WAGO 804-108, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 41.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-108 45Degree pitch 5mm size 41.5x15mm^2 drill 1.2mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-109_1x09_P5.00mm_45Degree +Terminal Block WAGO 804-109, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 46.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-109 45Degree pitch 5mm size 46.5x15mm^2 drill 1.2mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-110_1x10_P5.00mm_45Degree +Terminal Block WAGO 804-110, 45Degree (cable under 45degree), 10 pins, pitch 5mm, size 51.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-110 45Degree pitch 5mm size 51.5x15mm^2 drill 1.2mm pad 3mm +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-111_1x11_P5.00mm_45Degree +Terminal Block WAGO 804-111, 45Degree (cable under 45degree), 11 pins, pitch 5mm, size 56.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-111 45Degree pitch 5mm size 56.5x15mm^2 drill 1.2mm pad 3mm +0 +22 +11 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-112_1x12_P5.00mm_45Degree +Terminal Block WAGO 804-112, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 61.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-112 45Degree pitch 5mm size 61.5x15mm^2 drill 1.2mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-113_1x13_P5.00mm_45Degree +Terminal Block WAGO 804-113, 45Degree (cable under 45degree), 13 pins, pitch 5mm, size 66.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-113 45Degree pitch 5mm size 66.5x15mm^2 drill 1.2mm pad 3mm +0 +26 +13 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-114_1x14_P5.00mm_45Degree +Terminal Block WAGO 804-114, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 71.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-114 45Degree pitch 5mm size 71.5x15mm^2 drill 1.2mm pad 3mm +0 +28 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-115_1x15_P5.00mm_45Degree +Terminal Block WAGO 804-115, 45Degree (cable under 45degree), 15 pins, pitch 5mm, size 76.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-115 45Degree pitch 5mm size 76.5x15mm^2 drill 1.2mm pad 3mm +0 +30 +15 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-116_1x16_P5.00mm_45Degree +Terminal Block WAGO 804-116, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 81.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-116 45Degree pitch 5mm size 81.5x15mm^2 drill 1.2mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-124_1x24_P5.00mm_45Degree +Terminal Block WAGO 804-124, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-124 45Degree pitch 5mm size 122x15mm^2 drill 1.2mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-301_1x01_P7.50mm_45Degree +Terminal Block WAGO 804-301, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 6.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-301 45Degree pitch 7.5mm size 6.5x15mm^2 drill 1.2mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-302_1x02_P7.50mm_45Degree +Terminal Block WAGO 804-302, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 14x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-302 45Degree pitch 7.5mm size 14x15mm^2 drill 1.2mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-303_1x03_P7.50mm_45Degree +Terminal Block WAGO 804-303, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 21.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-303 45Degree pitch 7.5mm size 21.5x15mm^2 drill 1.2mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-304_1x04_P7.50mm_45Degree +Terminal Block WAGO 804-304, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 29x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-304 45Degree pitch 7.5mm size 29x15mm^2 drill 1.2mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-305_1x05_P7.50mm_45Degree +Terminal Block WAGO 804-305, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 36.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-305 45Degree pitch 7.5mm size 36.5x15mm^2 drill 1.2mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-306_1x06_P7.50mm_45Degree +Terminal Block WAGO 804-306, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 44x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-306 45Degree pitch 7.5mm size 44x15mm^2 drill 1.2mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-307_1x07_P7.50mm_45Degree +Terminal Block WAGO 804-307, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 51.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-307 45Degree pitch 7.5mm size 51.5x15mm^2 drill 1.2mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-308_1x08_P7.50mm_45Degree +Terminal Block WAGO 804-308, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 59x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-308 45Degree pitch 7.5mm size 59x15mm^2 drill 1.2mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-309_1x09_P7.50mm_45Degree +Terminal Block WAGO 804-309, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 66.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-309 45Degree pitch 7.5mm size 66.5x15mm^2 drill 1.2mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-310_1x10_P7.50mm_45Degree +Terminal Block WAGO 804-310, 45Degree (cable under 45degree), 10 pins, pitch 7.5mm, size 74x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-310 45Degree pitch 7.5mm size 74x15mm^2 drill 1.2mm pad 3mm +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-311_1x11_P7.50mm_45Degree +Terminal Block WAGO 804-311, 45Degree (cable under 45degree), 11 pins, pitch 7.5mm, size 81.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-311 45Degree pitch 7.5mm size 81.5x15mm^2 drill 1.2mm pad 3mm +0 +22 +11 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-312_1x12_P7.50mm_45Degree +Terminal Block WAGO 804-312, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 89x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-312 45Degree pitch 7.5mm size 89x15mm^2 drill 1.2mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-316_1x16_P7.50mm_45Degree +Terminal Block WAGO 804-316, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 119x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-316 45Degree pitch 7.5mm size 119x15mm^2 drill 1.2mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-324_1x24_P7.50mm_45Degree +Terminal Block WAGO 804-324, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 179x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-324 45Degree pitch 7.5mm size 179x15mm^2 drill 1.2mm pad 3mm +0 +48 +24 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650073_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650073.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650074_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650074.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650094_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650094.pdf) +screw terminal thread redcube thr power connector +0 +16 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650173_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650173.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650174_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650174.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650194_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650194.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650195_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650195.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74655095_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74655095.pdf) +screw terminal thread redcube thr power connector +0 +16 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651173_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651173.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651174_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651174.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651175_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651175.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651194_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651194.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651195_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651195.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TestPoint +TestPoint_2Pads_Pitch2.54mm_Drill0.8mm +Test point with 2 pins, pitch 2.54mm, drill diameter 0.8mm +CONN DEV +0 +2 +2 +TestPoint +TestPoint_2Pads_Pitch5.08mm_Drill1.3mm +Test point with 2 pads, pitch 5.08mm, hole diameter 1.3mm, wire diameter 1.0mm +CONN DEV +0 +2 +2 +TestPoint +TestPoint_Bridge_Pitch2.0mm_Drill0.7mm +wire loop as test point, pitch 2.0mm, hole diameter 0.7mm, wire diameter 0.5mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch2.54mm_Drill0.7mm +wire loop as test point, pitch 2.0mm, hole diameter 0.7mm, wire diameter 0.5mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch2.54mm_Drill1.0mm +wire loop as test point, pitch 2.54mm, hole diameter 1.0mm, wire diameter 0.8mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch2.54mm_Drill1.3mm +wire loop as test point, pitch 2.54mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch3.81mm_Drill1.3mm +wire loop as test point, pitch 3.81mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch5.08mm_Drill0.7mm +wire loop as test point, pitch 5.08mm, hole diameter 0.7mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch5.08mm_Drill1.3mm +wire loop as test point, pitch 5.08mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch6.35mm_Drill1.3mm +wire loop as test point, pitch 6.35mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch7.62mm_Drill1.3mm +wire loop as test point, pitch 7.62mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Keystone_5000-5004_Miniature +Keystone Miniature THM Test Point 5000-5004, http://www.keyelco.com/product-pdf.cfm?p=1309 +Through Hole Mount Test Points +0 +1 +1 +TestPoint +TestPoint_Keystone_5005-5009_Compact +Keystone Miniature THM Test Point 5005-5009, http://www.keyelco.com/product-pdf.cfm?p=1314 +Through Hole Mount Test Points +0 +1 +1 +TestPoint +TestPoint_Keystone_5010-5014_Multipurpose +Keystone Miniature THM Test Point 5010-5014, http://www.keyelco.com/product-pdf.cfm?p=1319 +Through Hole Mount Test Points +0 +1 +1 +TestPoint +TestPoint_Keystone_5015_Micro-Minature +SMT Test Point- Micro Miniature 5015, http://www.keyelco.com/product-pdf.cfm?p=1353 +Test Point +0 +1 +1 +TestPoint +TestPoint_Keystone_5019_Minature +SMT Test Point- Micro Miniature 5019, http://www.keyelco.com/product-pdf.cfm?p=1357 +Test Point +0 +1 +1 +TestPoint +TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded +wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.50mm_Drill1.0mm +wire loop as test point, loop diameter 2.5mm, hole diameter 1.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.50mm_Drill1.0mm_LowProfile +low profile wire loop as test point, loop diameter 2.5mm, hole diameter 1.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.50mm_Drill1.85mm +wire loop as test point, loop diameter 2.5mm, hole diameter 1.85mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.54mm_Drill1.5mm_Beaded +wire loop with bead as test point, loop diameter2.548mm, hole diameter 1.5mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.60mm_Drill0.9mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 0.9mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.60mm_Drill1.4mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 1.4mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.60mm_Drill1.6mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 1.6mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.50mm_Drill0.9mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 0.9mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.50mm_Drill1.4mm_Beaded +wire loop with bead as test point, loop diameter 3.5mm, hole diameter 1.4mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.80mm_Drill2.0mm +wire loop as test point, loop diameter 3.8mm, hole diameter 2.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.80mm_Drill2.5mm +wire loop as test point, loop diameter 3.8mm, hole diameter 2.5mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.80mm_Drill2.8mm +wire loop as test point, loop diameter 3.8mm, hole diameter 2.8mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Pad_1.0x1.0mm +SMD rectangular pad as test Point, square 1.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_1.5x1.5mm +SMD rectangular pad as test Point, square 1.5mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_2.0x2.0mm +SMD rectangular pad as test Point, square 2.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_2.5x2.5mm +SMD rectangular pad as test Point, square 2.5mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_3.0x3.0mm +SMD rectangular pad as test Point, square 3.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_4.0x4.0mm +SMD rectangular pad as test Point, square 4.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_D1.0mm +SMD pad as test Point, diameter 1.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D1.5mm +SMD pad as test Point, diameter 1.5mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D2.0mm +SMD pad as test Point, diameter 2.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D2.5mm +SMD pad as test Point, diameter 2.5mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D3.0mm +SMD pad as test Point, diameter 3.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D4.0mm +SMD pad as test Point, diameter 4.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D2.0mm +Plated Hole as test Point, diameter 2.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D3.0mm +Plated Hole as test Point, diameter 3.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D4.0mm +Plated Hole as test Point, diameter 4.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D5.0mm +Plated Hole as test Point, diameter 5.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_THTPad_1.0x1.0mm_Drill0.5mm +THT rectangular pad as test Point, square 1.0mm side length, hole diameter 0.5mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_1.5x1.5mm_Drill0.7mm +THT rectangular pad as test Point, square 1.5mm side length, hole diameter 0.7mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_2.0x2.0mm_Drill1.0mm +THT rectangular pad as test Point, square 2.0mm_Drill1.0mm side length, hole diameter 1.0mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_2.5x2.5mm_Drill1.2mm +THT rectangular pad as test Point, square 2.5mm side length, hole diameter 1.2mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_3.0x3.0mm_Drill1.5mm +THT rectangular pad as test Point, square 3.0mm side length, hole diameter 1.5mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_4.0x4.0mm_Drill2.0mm +THT rectangular pad as test Point, square 4.0mm side length, hole diameter 2.0mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_D1.0mm_Drill0.5mm +THT pad as test Point, diameter 1.0mm, hole diameter 0.5mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D1.5mm_Drill0.7mm +THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D2.0mm_Drill1.0mm +THT pad as test Point, diameter 2.0mm, hole diameter 1.0mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D2.5mm_Drill1.2mm +THT pad as test Point, diameter 2.5mm, hole diameter 1.2mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D3.0mm_Drill1.5mm +THT pad as test Point, diameter 3.0mm, hole diameter 1.5mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D4.0mm_Drill2.0mm +THT pad as test Point, diameter 4.0mm, hole diameter 2.0mm +test point THT pad +0 +1 +1 +Transformer_SMD +Pulse_P0926NL +SMT Gate Drive Transformer, 1:1:1, 8.0x6.3x5.3mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa0926nl +0 +6 +6 +Transformer_SMD +Pulse_PA1323NL +SMT Gate Drive Transformer, 1:1, 9.5x7.1x5.3mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa1323nl +0 +6 +6 +Transformer_SMD +Pulse_PA2001NL +SMT Gate Drive Transformer, 1:1, 8.6x6.7x2.5mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2001nl pe-68386nl +0 +4 +4 +Transformer_SMD +Pulse_PA2002NL-PA2008NL-PA2009NL +SMT Gate Drive Transformer, 1:1:1 or 2:1:1 or 2.5:1:1 or 1:1, 9.0x8.6x7.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2002nl pa2008nl pa2009nl p0544nl pa0184nl pa0297nl pa0510nl +0 +6 +6 +Transformer_SMD +Pulse_PA2004NL +SMT Gate Drive Transformer, 1:1:1, 8.6x6.7x3.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2004nl pa0264nl +0 +6 +6 +Transformer_SMD +Pulse_PA2005NL +SMT Gate Drive Transformer, 1:1:1, 11.8x8.8x4.0mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2005nl pa0173nl +0 +6 +6 +Transformer_SMD +Pulse_PA2006NL +SMT Gate Drive Transformer, 1:1, 11.8x8.8x4.0mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2006nl pa0186nl +0 +4 +4 +Transformer_SMD +Pulse_PA2007NL +SMT Gate Drive Transformer, 1:1, 9.0x8.6x7.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2007nl +0 +4 +4 +Transformer_SMD +Pulse_PA2777NL +SMT Gate Drive Transformer, 1:1, 7.1x6.1x5.5mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa2777nl +0 +8 +8 +Transformer_SMD +Pulse_PA3493NL +SMT Gate Drive Transformer, 1.25:1, 10.9x9.7x2.7mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa3493nl +0 +4 +4 +Transformer_SMD +Transformer_Coilcraft_CST1 +Current sense transformer, SMD, 8.0x8.13x5.3mm (https://www.coilcraft.com/pdfs/cst.pdf) +Transformer current sense SMD +0 +8 +8 +Transformer_SMD +Transformer_Coilcraft_CST2 +Current sense transformer, SMD, 8.0x8.13x5.3mm (https://www.coilcraft.com/pdfs/cst.pdf) +Transformer current sense SMD +0 +8 +8 +Transformer_SMD +Transformer_Coilcraft_CST2010 +Current sense transformer, SMD, 14.55x19.91x10.50mm (https://www.coilcraft.com/pdfs/cst2010.pdf) +Transformer current sense SMD +0 +12 +12 +Transformer_SMD +Transformer_CurrentSense_8.4x7.2mm +Transformer current sense SMD 8.4x7.2mm +Transformer current sense SMD +0 +8 +8 +Transformer_SMD +Transformer_ED8_4-Lead_10.5x8mm_P5mm +Isolated audio transformer, ED8, 4-lead, body 10.5x8mm body, pitch 5mm, height 5mm, https://gitlab.com/kicad/libraries/kicad-footprints/-/merge_requests/3626 +permalloy core +0 +4 +4 +Transformer_SMD +Transformer_Ethernet_Bel_S558-5999-T7-F +Ethernet Transformer, Bel S558-5999-T7-F, https://www.belfuse.com/resources/ICMs/lan-/S558-5999-T7-F.pdf +Ethernet Transformer +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Bourns_PT61017PEL +https://www.bourns.com/docs/Product-Datasheets/PT61017PEL.pdf +Transformer Ethernet Single Center-Tap +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Bourns_PT61020EL +10/100/1000 Base-T Transformer Module, PT61020EL (https://www.bourns.com/pdfs/PT61020.pdf) +Gigabit PoE Ethernet Transformer Single +0 +24 +24 +Transformer_SMD +Transformer_Ethernet_HALO_TG111-MSC13 +Transformer Ethernet SMD, https://www.haloelectronics.com/pdf/discrete-genesus.pdf +Transformer Ethernet SMD +0 +24 +24 +Transformer_SMD +Transformer_Ethernet_Halo_N2_SO-16_7.11x12.7mm +Halo N2 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Halo SO Transformer_SMD +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Halo_N5_SO-16_7.11x12.7mm +Halo N5 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Halo SO Transformer_SMD +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Halo_N6_SO-16_7.11x14.73mm +Halo N6 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Halo SO Transformer_SMD +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Wuerth_749013011A +Ethernet Transformer, Wuerth 749013011A, https://www.we-online.com/katalog/datasheet/749013011A.pdf +Ethernet Transformer +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_YDS_30F-51NL_SO-24_7.1x15.1mm +YDS 30F-51NL SO, 24 Pin (https://datasheet.lcsc.com/lcsc/1811051610_Shanghai-YDS-Tech-30F-51NL_C123168.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +YDS SO Transformer_SMD +0 +24 +24 +Transformer_SMD +Transformer_MACOM_SM-22 +https://cdn.macom.com/datasheets/ETC1-1-13.pdf +RF Transformer +0 +5 +5 +Transformer_SMD +Transformer_MiniCircuits_AT224-1A +SMD RF transformer, 50 ohm, 4.5 to 3000Mhz, https://www.minicircuits.com/pdfs/TC1-1-13M+.pdf +RF Transformer +0 +5 +5 +Transformer_SMD +Transformer_Murata_78250JC +Murata 78250JC https://www.murata-ps.com/datasheet?/data/magnetics/kmp_78250j.pdf +Murata transformer +0 +6 +6 +Transformer_SMD +Transformer_NF_ETAL_P2781 +NF-Transformer, ETAL, P2781, SMD, +NF-Transformer ETAL P2781 SMD +0 +8 +7 +Transformer_SMD +Transformer_NF_ETAL_P2781_HandSoldering +NF-Transformer, ETAL, P2781, SMD, Handsoldering +NF-Transformer ETAL P2781 SMD Handsoldering +0 +8 +7 +Transformer_SMD +Transformer_NF_ETAL_P3000 +NF-Reansformer, ETAL, P3000, SMD, +NF-Reansformer ETAL P3000 SMD +0 +15 +13 +Transformer_SMD +Transformer_NF_ETAL_P3000_HandSoldering +NF-Reansformer, ETAL, P3000, SMD, Handsoldering, +NF-Reansformer ETAL P3000 SMD Handsoldering +0 +15 +13 +Transformer_SMD +Transformer_NF_ETAL_P3181 +NF-Transformer, ETAL, P3181, SMD, +NF-Transformer ETAL P3181 SMD +0 +7 +6 +Transformer_SMD +Transformer_NF_ETAL_P3181_HandSoldering +NF-Transformer, ETAL, P3181, SMD, Hand Soldering, +NF-Transformer ETAL P3181 SMD Hand Soldering +0 +7 +6 +Transformer_SMD +Transformer_NF_ETAL_P3188 +NF-Transformer, ETAL, P3188, SMD, +NF-Transformer ETAL P3188 SMD +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3188_HandSoldering +NF-Transformer, ETAL, P3188, SMD, Handsoldering, +NF-Transformer ETAL P3188 SMD Handsoldering +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3191 +NF-Transformer, ETAL, P3191, SMD, +NF-Transformer ETAL P3191 SMD +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3191_HandSoldering +NF-Transformer, ETAL, P3191, SMD, Handsoldering, +NF-Transformer ETAL P3191 SMD Handsoldering +0 +8 +6 +Transformer_SMD +Transformer_Pulse_H1100NL +For H1100NL, H1101NL, H1102NL, H1121NL, H1183NL, H1199NL, HX1188NL, HX1198NL and H1302NL. https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/H1102NL/doc_part/H1102NL.pdf +H1100NL H1101NL H1102NL H1121NL H1183NL H1199NL HX1188NL HX1198NL H1302N +0 +16 +16 +Transformer_SMD +Transformer_Wuerth_750315371 +Power Transformer, horizontal core with bobbin, 6 pin, 2.54mm pitch, 11.24mm row spacing, 12.6x8.3x4.1mm +transformer flyback +0 +6 +6 +Transformer_SMD +Transformer_Wurth_WE-AGDT-EP7 +WE-AGDT Auxiliary Gate Drive Transformer EP7, https://www.we-online.com/components/products/datasheet/750319177.pdf +auxiliary gate drive transformer +0 +8 +8 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D9.0mm_Amidon-T30 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 9mm, Amidon T30, +Autotransformer Toroid horizontal laying 1 Tap Diameter 9mm Amidon T30 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D10.5mm_Amidon-T37 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 10,5mm, Amidon T37, +Autotransformer Toroid horizontal laying 1 Tap Diameter 10 5mm Amidon T37 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D12.5mm_Amidon-T44 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 12,5mm, Amidon T44, +Autotransformer Toroid horizontal laying 1 Tap Diameter 12 5mm Amidon T44 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D14.0mm_Amidon-T50 +Choke, Inductance, Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 14mm, Amidon T50, +Choke Inductance Autotransformer Toroid horizontal laying 1 Tap Diameter 14mm Amidon T50 +0 +3 +3 +Transformer_THT +Autotransformer_ZS1052-AC +Ignition coil for xenon flash, http://www.excelitas.com/downloads/ZS1052ACH.pdf +ignition coil autotransformer +0 +3 +3 +Transformer_THT +Transformer_37x44 +transformer 37x44mm² +transformer 37x44mm² +0 +12 +4 +Transformer_THT +Transformer_Breve_TEZ-22x24 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +7 +7 +Transformer_THT +Transformer_Breve_TEZ-28x33 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-35x42 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-38x45 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-44x52 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +10 +10 +Transformer_THT +Transformer_Breve_TEZ-47x57 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +13 +13 +Transformer_THT +Transformer_CHK_EI30-2VA_1xSec +Trafo, Printtrafo, CHK, EI30, 2VA, 1x Sec,http://www.eratransformers.com/downloads/030-7585.0.pdf +Trafo Printtrafo CHK EI30 2VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI30-2VA_2xSec +Trafo, Printtrafo, CHK, EI30, 2VA, 2x Sec, +Trafo Printtrafo CHK EI30 2VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI30-2VA_Neutral +Trafo, Printtrafo, CHK, EI30, 2VA, neutral, +Trafo Printtrafo CHK EI30 2VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_1xSec +Trafo, Printtrafo, CHK, EI38, 3VA, 1x Sec, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI38 3VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_2xSec +Trafo, Printtrafo, CHK, EI38, 3VA, 2x Sec, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI38 3VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_Neutral +Trafo, Printtrafo, CHK, EI38, 3VA, neutral, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI42 3VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_1xSec +Trafo, Printtrafo, CHK, EI42, 5VA, 1x Sec, +Trafo Printtrafo CHK EI42 5VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_2xSec +Trafo, Printtrafo, CHK, EI42, 5VA, 2x Sec, +Trafo Printtrafo CHK EI42 5VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_Neutral +Trafo, Printtrafo, CHK, EI42, 5VA, neutral, +Trafo Printtrafo CHK EI42 5VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI48-8VA_1xSec +Trafo, Printtrafo, CHK, EI48, 8VA, 1x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA 1x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-8VA_2xSec +Trafo, Printtrafo, CHK, EI48, 8VA, 2x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA 2x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-8VA_Neutral +Trafo, Printtrafo, CHK, EI48, 8VA, neutral, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA neutral +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_1xSec +Trafo, Printtrafo, CHK, EI48, 10VA, 1x Sec, +Trafo Printtrafo CHK EI48 10VA 1x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_2xSec +Trafo, Printtrafo, CHK, EI48, 10VA, 2x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 10VA 2x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_Neutral +Trafo, Printtrafo, CHK, EI48, 10VA, neutral, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 10VA neutral +0 +12 +12 +Transformer_THT +Transformer_CHK_EI54-12VA_1xSec +Trafo, Printtrafo, CHK, EI54, 12VA, 1x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA 1x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-12VA_2xSec +Trafo, Printtrafo, CHK, EI54, 12VA, 2x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA 2x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-12VA_Neutral +Trafo, Printtrafo, CHK, EI54, 12VA, neutral,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA neutral +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_1xSec +Trafo, Printtrafo, CHK, EI54, 16VA, 1x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA 1x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_2xSec +Trafo, Printtrafo, CHK, EI54, 16VA, 2x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA 2x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_Neutral +Trafo, Printtrafo, CHK, EI54, 16VA, neutral,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA neutral +0 +14 +14 +Transformer_THT +Transformer_CHK_UI30-4VA_Flat +Trafo, Flattrafo, CHK, UI30, 4VA, +Trafo Flattrafo CHK UI30 4VA +0 +16 +16 +Transformer_THT +Transformer_CHK_UI39-10VA_Flat +Trafo, Flattrafo, CHK, UI39, 10VA, +Trafo Flattrafo CHK UI39 10VA +0 +20 +20 +Transformer_THT +Transformer_Coilcraft_Q4434-B_Rhombus-T1311 +Transformator, Transformer, Flyback, Coilcraft Q4434-B, Rgombus T1311, +Transformator Transformer Flyback Coilcraft Q4434-B Rgombus T1311 +0 +8 +8 +Transformer_THT +Transformer_EPCOS_B66359A1013T_Horizontal +Transformer, Transformator, ETD29, 13 Pin, Horizontal, EPCOS-B66359A1013T, +Transformer Transformator ETD29 13 Pin Horizontal EPCOS-B66359A1013T +0 +13 +13 +Transformer_THT +Transformer_EPCOS_B66359J1014T_Vertical +Transformer, Transformator, ETD29, 14 Pin, Vertical, EPCOS-B66359J1014T, +Transformer Transformator ETD29 14 Pin Vertical EPCOS-B66359J1014T +0 +14 +14 +Transformer_THT +Transformer_Microphone_Lundahl_LL1538 +AUDIO TRAFO LUNDAHL, https://www.lundahltransformers.com/wp-content/uploads/datasheets/1538_8xl.pdf +AUDIO TRAFO LUNDAHL +0 +7 +7 +Transformer_THT +Transformer_Microphone_Lundahl_LL1587 +AUDIO TRAFO LUNDAHL, https://www.lundahltransformers.com/wp-content/uploads/datasheets/1587.pdf +AUDIO TRAFO LUNDAHL +0 +7 +7 +Transformer_THT +Transformer_Myrra_74040_Horizontal +Transformer, Transformator, ETD29, 13 Pin, Horizontal, Myrra-74040, +Transformer Transformator ETD29 13 Pin Horizontal Myrra-74040 +0 +13 +13 +Transformer_THT +Transformer_Myrra_EF20_7408x +EF20 flyback transformer,http://myrra.com/wp-content/uploads/2017/09/Datasheet-74087-74088-74089-rev-A.pdf +transformer flyback SMPS +0 +9 +9 +Transformer_THT +Transformer_Myrra_EI30-5_44000_Horizontal +Myrra 44000 series encapsulated transformer, 50/60Hz, EI 30-5, 0.6VA, 32.6 x 27.6 x 15.3mm, https://myrra.com/wp-content/uploads/2021/03/Catalogue-Myrra-2022-Final_compressed-5.pdf +Transformer THT Myrra +0 +6 +6 +Transformer_THT +Transformer_NF_ETAL_1-1_P1200 +NF-Transformer, 1:1, ETAL P1200,http://www.etalgroup.com/sites/default/files/products/P1200_April_2005.pdf +NF-Transformer 1to1 ETAL P1200 +0 +4 +4 +Transformer_THT +Transformer_NF_ETAL_P1165 +NF-Transformer, ETAL, P1165,http://www.etalgroup.com/sites/default/files/products/P1165_February_2006.pdf +NF-Transformer ETAL P1165 +0 +4 +4 +Transformer_THT +Transformer_NF_ETAL_P3324 +NF-Transformer, ETAL P3324,http://www.etalgroup.com/sites/default/files/products/P3324_April_2005.pdf +NF-Transformer ETAL P3324 +0 +4 +4 +Transformer_THT +Transformer_NF_ETAL_P3356 +NF-Transformer, ETAL P3356, http://www.etalgroup.com/sites/default/files/products/P3356_December_2005.pdf +NF-Transformer ETAL P3356 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D9.0mm_Amidon-T30 +Transformer, Toroid, horizontal, laying, Diameter 9mm, Amidon, T30, +Transformer Toroid horizontal laying Diameter 9mm Amidon T30 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D10.5mm_Amidon-T37 +Transformer, Toroid, horizontal, laying, Diameter 10,5mm, Amidon T37, +Transformer Toroid horizontal laying Diameter 10 5mm Amidon T37 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D12.5mm_Amidon-T44 +Transformer, Toroid, horizontal, laying, Diameter 12,5mm, Amidon T44, +Transformer Toroid horizontal laying Diameter 12 5mm Amidon T44 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D14.0mm_Amidon-T50 +Transformer, Toroid, horizontal, laying, Diameter 14mm, Amidon T50, +Transformer Toroid horizontal laying Diameter 14mm Amidon T50 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D18.0mm +Transformer, Toroid, tapped, horizontal, laying, Diameter 18mm, +Transformer Toroid tapped horizontal laying Diameter 18mm +0 +5 +4 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D9.0mm_Amidon-T30 +Transformer, Toroid, tapped, horizontal, laying, Diameter 9mm, Amidon, T30, +Transformer Toroid tapped horizontal laying Diameter 9mm Amidon T30 +0 +6 +6 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D10.5mm_Amidon-T37 +Transformer, Toroid, tapped, horizontal, laying, Diameter 10,5mm, Amidon, T37, +Transformer Toroid tapped horizontal laying Diameter 10 5mm Amidon T37 +0 +6 +6 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D12.5mm_Amidon-T44 +Transformer, Toroid, tapped, horizontal, laying, Diameter 12,5mm, Amidon, T44, +Transformer Toroid tapped horizontal laying Diameter 12 5mm Amidon T44 +0 +6 +6 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D14.0mm_Amidon-T50 +Transformer, Toroid, tapped, horizontal, laying, Diameter 14mm, Amidon T50, +Transformer Toroid tapped horizontal laying Diameter 14mm Amidon T50 +0 +6 +6 +Transformer_THT +Transformer_Triad_VPP16-310 +Power transformer, 2x Pri, 2x Sec, 230/115 VAC to 16/8V (0.31/0.62 A) +power center-tap +0 +8 +8 +Transformer_THT +Transformer_Wuerth_750343373 +Transformer, horizontal core with bobbin, 10 pin, 3.81mm pitch, 15.24mm row spacing, 22x23x17.53mm (https://katalog.we-online.com/ctm/datasheet/750343373.pdf) +transformer flyback +0 +10 +10 +Transformer_THT +Transformer_Wuerth_760871131 +Transformer, horizontal core with bobbin, 14 pin, 2.49 mm pitch, 20 mm row spacing, 25x22.2x16mm https://www.we-online.com/catalog/datasheet/760871131.pdf +transformer flyback +0 +14 +14 +Transformer_THT +Transformer_Zeming_ZMCT103C +Qingxian Zeming Langxi Electronic ZMCT103C current transformer 1000:1, https://5krorwxhmqqirik.leadongcdn.com/ZMCT103C+specification-aidirBqoKomRilSjpimnokp.pdf +current transformer ZMCT +0 +2 +2 +Transformer_THT +Transformer_Zeming_ZMPT101K +Qingxian Zeming Langxi Electronic ZMPT101K voltage transformer 1000:1000 2mA:2mA, https://5krorwxhmqqirik.leadongcdn.com/ZMPT101K+specification-aidikBqoKomRilSkopqmikp.pdf +voltage transformer ZMPT +0 +4 +4 +Transistor_Power +GaN_Systems_GaNPX-3_5x6.6mm_Drain2.93x0.6mm +GaN Systems GaNPX GS66502B Package, https://gansystems.com/wp-content/uploads/2020/04/GS66502B-DS-Rev-200402.pdf +ganpx gs66502b +0 +7 +3 +Transistor_Power +GaN_Systems_GaNPX-3_5x6.6mm_Drain3.76x0.6mm +GaN Systems GaNPX GS66504B Package, https://gansystems.com/wp-content/uploads/2020/04/GS66504B-DS-Rev-200402.pdf +ganpx gs66504b +0 +7 +3 +Transistor_Power +GaN_Systems_GaNPX-4_7x8.4mm +GaN Systems GaNPX GS66508B Package, https://gansystems.com/wp-content/uploads/2020/04/GS66508B-DS-Rev-200402.pdf +ganpx gs66508b +0 +15 +4 +Transistor_Power_Module +Infineon_AG-ECONO2 +28-lead TH, EconoPACK 2, same as Littelfuse_Package_H_XN2MM, https://www.infineon.com/dgdl/Infineon-FS75R07N2E4-DS-v02_00-en_de.pdf?fileId=db3a30432f5008fe012f52f916333979 +igbt diode module +0 +28 +28 +Transistor_Power_Module +Infineon_EasyPIM-1B +35-lead TH, EasyPIM 1B, https://www.infineon.com/dgdl/Infineon-FP10R06W1E3-DS-v02_01-en_de.pdf?fileId=db3a304412b407950112b43312285a63 +brifge rectifier igbt diode module +0 +23 +23 +Transistor_Power_Module +Infineon_EasyPIM-2B +35-lead TH, EasyPIM 2B, same as ST_ACEPACK-2-CIB, https://www.infineon.com/dgdl/Infineon-FP50R06W2E3-DS-v02_02-EN.pdf?fileId=db3a30431b3e89eb011b455c99987d24 +brifge rectifier igbt diode module +0 +35 +23 +Transistor_Power_Module +Littelfuse_Package_H_XBN2MM +24-lead TH, Package H, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1215h_xbn2mm_datasheet.pdf.pdf +brifge rectifier igbt diode module +0 +24 +24 +Transistor_Power_Module +Littelfuse_Package_H_XN2MM +28-lead TH, Package H, same as Infineon_AG-ECONO2, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1225h_xn2mm_datasheet.pdf.pdf +igbt diode module +0 +28 +28 +Transistor_Power_Module +Littelfuse_Package_W_XBN2MM +24-lead TH, Package W, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1250w_xbn2mm_datasheet.pdf.pdf +brifge rectifier igbt diode module +0 +35 +24 +Transistor_Power_Module +Littelfuse_Package_W_XN2MM +35-lead TH, Package W, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1275w_xn2mm_datasheet.pdf.pdf +igbt diode module +0 +35 +35 +Transistor_Power_Module +ST_ACEPACK-2-CIB +35-lead TH, ACEPACK 2 CIB, same as Infineon_EasyPIM-2B, https://www.st.com/resource/en/datasheet/a2c25s12m3.pdf +brifge rectifier igbt diode module +0 +35 +23 +Transistor_Power_Module +ST_ACEPACK-2-CIB_PressFIT +35-lead TH, ACEPACK 2 CIB, PressFIT, https://www.st.com/resource/en/datasheet/a2c50s65m2-f.pdf +brifge rectifier igbt diode module +0 +35 +23 +Transistor_Power_Module +ST_SDIP-25L +25-lead TH, SDIP-25L, https://www.st.com/resource/en/datasheet/stgips20k60.pdf +igbt diode module +0 +25 +25 +Valve +Valve_ECC-83-1 +Valve ECC-83-1 round pins +Valve ECC-83-1 round pins +0 +9 +9 +Valve +Valve_ECC-83-2 +Valve ECC-83-2 flat pins +Valve ECC-83-2 flat pins +0 +10 +9 +Valve +Valve_EURO +Valve Euro +Valve Euro +0 +7 +5 +Valve +Valve_Glimm +Valve Glimm +Valve Glimm +0 +2 +2 +Valve +Valve_Mini_G +Valve mini G +Valve mini G +0 +9 +7 +Valve +Valve_Mini_P +Valve mini P +Valve mini P +0 +7 +7 +Valve +Valve_Mini_Pentode_Linear +Mini-Pentode, 5-pin, e.g. JAN6418 +Valve Mini-Pentode 5-pin JAN6418 +0 +5 +5 +Valve +Valve_Noval_G +Valve NOVAL G +Valve NOVAL G +0 +11 +9 +Valve +Valve_Noval_P +Valve NOVAL P +Valve NOVAL P +0 +9 +9 +Valve +Valve_Octal +8-pin round valve +valve +0 +9 +8 +Varistor +RV_Disc_D7mm_W3.4mm_P5mm +Varistor, diameter 7mm, width 3.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.5mm_P5mm +Varistor, diameter 7mm, width 3.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.6mm_P5mm +Varistor, diameter 7mm, width 3.6mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.7mm_P5mm +Varistor, diameter 7mm, width 3.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.8mm_P5mm +Varistor, diameter 7mm, width 3.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.9mm_P5mm +Varistor, diameter 7mm, width 3.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.2mm_P5mm +Varistor, diameter 7mm, width 4.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.3mm_P5mm +Varistor, diameter 7mm, width 4.3mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.5mm_P5mm +Varistor, diameter 7mm, width 4.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.8mm_P5mm +Varistor, diameter 7mm, width 4.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.9mm_P5mm +Varistor, diameter 7mm, width 4.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4mm_P5mm +Varistor, diameter 7mm, width 4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.1mm_P5mm +Varistor, diameter 7mm, width 5.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.4mm_P5mm +Varistor, diameter 7mm, width 5.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.5mm_P5mm +Varistor, diameter 7mm, width 5.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.7mm_P5mm +Varistor, diameter 7mm, width 5.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.3mm_P5mm +Varistor, diameter 9mm, width 3.3mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.4mm_P5mm +Varistor, diameter 9mm, width 3.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.5mm_P5mm +Varistor, diameter 9mm, width 3.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.6mm_P5mm +Varistor, diameter 9mm, width 3.6mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.7mm_P5mm +Varistor, diameter 9mm, width 3.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.8mm_P5mm +Varistor, diameter 9mm, width 3.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.9mm_P5mm +Varistor, diameter 9mm, width 3.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.1mm_P5mm +Varistor, diameter 9mm, width 4.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.2mm_P5mm +Varistor, diameter 9mm, width 4.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.4mm_P5mm +Varistor, diameter 9mm, width 4.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.5mm_P5mm +Varistor, diameter 9mm, width 4.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.8mm_P5mm +Varistor, diameter 9mm, width 4.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4mm_P5mm +Varistor, diameter 9mm, width 4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.2mm_P5mm +Varistor, diameter 9mm, width 5.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.4mm_P5mm +Varistor, diameter 9mm, width 5.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.5mm_P5mm +Varistor, diameter 9mm, width 5.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.7mm_P5mm +Varistor, diameter 9mm, width 5.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W6.1mm_P5mm +Varistor, diameter 9mm, width 6.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W3.9mm_P7.5mm +Varistor, diameter 12mm, width 3.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.2mm_P7.5mm +Varistor, diameter 12mm, width 4.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.3mm_P7.5mm +Varistor, diameter 12mm, width 4.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.4mm_P7.5mm +Varistor, diameter 12mm, width 4.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.5mm_P7.5mm +Varistor, diameter 12mm, width 4.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.6mm_P7.5mm +Varistor, diameter 12mm, width 4.6mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.7mm_P7.5mm +Varistor, diameter 12mm, width 4.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.8mm_P7.5mm +Varistor, diameter 12mm, width 4.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4mm_P7.5mm +Varistor, diameter 12mm, width 4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.1mm_P7.5mm +Varistor, diameter 12mm, width 5.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.4mm_P7.5mm +Varistor, diameter 12mm, width 5.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.8mm_P7.5mm +Varistor, diameter 12mm, width 5.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5mm_P7.5mm +Varistor, diameter 12mm, width 5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.1mm_P7.5mm +Varistor, diameter 12mm, width 6.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.2mm_P7.5mm +Varistor, diameter 12mm, width 6.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.3mm_P7.5mm +Varistor, diameter 12mm, width 6.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.7mm_P7.5mm +Varistor, diameter 12mm, width 6.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.1mm_P7.5mm +Varistor, diameter 12mm, width 7.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.5mm_P7.5mm +Varistor, diameter 12mm, width 7.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.9mm_P7.5mm +Varistor, diameter 12mm, width 7.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W3.9mm_P7.5mm +Varistor, diameter 15.5mm, width 3.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.2mm_P7.5mm +Varistor, diameter 15.5mm, width 4.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.3mm_P7.5mm +Varistor, diameter 15.5mm, width 4.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.4mm_P7.5mm +Varistor, diameter 15.5mm, width 4.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.5mm_P7.5mm +Varistor, diameter 15.5mm, width 4.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.6mm_P7.5mm +Varistor, diameter 15.5mm, width 4.6mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.7mm_P7.5mm +Varistor, diameter 15.5mm, width 4.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.8mm_P7.5mm +Varistor, diameter 15.5mm, width 4.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.9mm_P7.5mm +Varistor, diameter 15.5mm, width 4.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4mm_P7.5mm +Varistor, diameter 15.5mm, width 4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.2mm_P7.5mm +Varistor, diameter 15.5mm, width 5.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.4mm_P7.5mm +Varistor, diameter 15.5mm, width 5.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.9mm_P7.5mm +Varistor, diameter 15.5mm, width 5.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5mm_P7.5mm +Varistor, diameter 15.5mm, width 5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.1mm_P7.5mm +Varistor, diameter 15.5mm, width 6.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.3mm_P7.5mm +Varistor, diameter 15.5mm, width 6.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.4mm_P7.5mm +Varistor, diameter 15.5mm, width 6.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.8mm_P7.5mm +Varistor, diameter 15.5mm, width 6.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W7.2mm_P7.5mm +Varistor, diameter 15.5mm, width 7.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W7.5mm_P7.5mm +Varistor, diameter 15.5mm, width 7.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W8mm_P7.5mm +Varistor, diameter 15.5mm, width 8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W11mm_P7.5mm +Varistor, diameter 15.5mm, width 11mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D16.5mm_W6.7mm_P7.5mm +Varistor, diameter 16.5mm, width 6.7mm, pitch 5mm, https://katalog.we-online.de/pbs/datasheet/820542711.pdf +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.3mm_P10mm +Varistor, diameter 21.5mm, width 4.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.4mm_P10mm +Varistor, diameter 21.5mm, width 4.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.5mm_P10mm +Varistor, diameter 21.5mm, width 4.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.6mm_P10mm +Varistor, diameter 21.5mm, width 4.6mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.7mm_P10mm +Varistor, diameter 21.5mm, width 4.7mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.8mm_P10mm +Varistor, diameter 21.5mm, width 4.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.9mm_P10mm +Varistor, diameter 21.5mm, width 4.9mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.1mm_P10mm +Varistor, diameter 21.5mm, width 5.1mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.3mm_P10mm +Varistor, diameter 21.5mm, width 5.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.4mm_P10mm +Varistor, diameter 21.5mm, width 5.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.6mm_P10mm +Varistor, diameter 21.5mm, width 5.6mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.8mm_P10mm +Varistor, diameter 21.5mm, width 5.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5mm_P10mm +Varistor, diameter 21.5mm, width 5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.1mm_P7.5mm +varistor +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.3mm_P10mm +Varistor, diameter 21.5mm, width 6.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.5mm_P10mm +Varistor, diameter 21.5mm, width 6.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.7mm_P10mm +Varistor, diameter 21.5mm, width 6.7mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.8mm_P10mm +Varistor, diameter 21.5mm, width 6.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.1mm_P10mm +Varistor, diameter 21.5mm, width 7.1mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.5mm_P10mm +Varistor, diameter 21.5mm, width 7.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.9mm_P10mm +Varistor, diameter 21.5mm, width 7.9mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W8.4mm_P10mm +Varistor, diameter 21.5mm, width 8.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W11.4mm_P10mm +Varistor, diameter 21.5mm, width 11.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Rect_V25S440P_L26.5mm_W8.2mm_P12.7mm +Varistor, V25S440P, https://www.littelfuse.com/media?resourcetype=datasheets&itemid=b410c42c-51d1-460e-b1d9-d105d93c9679&filename=littelfuse-varistor-ultramov25s-datasheet +varistor +0 +2 +2 +Varistor +Varistor_Panasonic_VF +Panasonic VF series varistor, 6x8mm body, 3.2mm height, https://mediap.industry.panasonic.eu/assets/imported/industrial.panasonic.com/cdbs/www-data/pdf/AWA0000/AWA0000C4.pdf +Varistor VF +0 +2 +2 diff --git a/Schematics/fp-info-cache b/Schematics/fp-info-cache new file mode 100644 index 0000000..3964137 --- /dev/null +++ b/Schematics/fp-info-cache @@ -0,0 +1,96895 @@ +23716028047202287 +Audio_Module +Reverb_BTDR-1H +Digital Reverberation Unit, http://www.belton.co.kr/inc/downfile.php?seq=17&file=pdf (footprint from http://www.uk-electronic.de/PDF/BTDR-1.pdf) +audio belton reverb +0 +7 +7 +Audio_Module +Reverb_BTDR-1V +Digital Reverberation Unit, http://www.belton.co.kr/inc/downfile.php?seq=17&file=pdf (footprint from http://www.uk-electronic.de/PDF/BTDR-1.pdf) +audio belton reverb +0 +7 +7 +Battery +BatteryClip_Keystone_54_D16-19mm +Battery clip for batteries with a diameter between 16-19 mm: https://www.keyelco.com/product.cfm/product_id/826 +battery clip 18650 18350 17350 CR123A 2/3A +0 +3 +1 +Battery +BatteryHolder_Bulgin_BX0036_1xC +Bulgin Battery Holder, BX0036, Battery Type C (https://www.bulgin.com/products/pub/media/bulgin/data/Battery_holders.pdf) +Bulgin BX0036 +0 +2 +2 +Battery +BatteryHolder_ComfortableElectronic_CH273-2450_1x2450 +Comfortable Electronic CR2450 battery holder, http://www.comf.com.tw/ProductDetail.asp?no=148 +Comfortable Electronic CR2450 +0 +2 +2 +Battery +BatteryHolder_Eagle_12BH611-GR +https://eu.mouser.com/datasheet/2/209/EPD-200766-1274481.pdf +9V Battery Holder +0 +2 +2 +Battery +BatteryHolder_Keystone_103_1x20mm +http://www.keyelco.com/product-pdf.cfm?p=719 +Keystone type 103 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_104_1x23mm +http://www.keyelco.com/product-pdf.cfm?p=744 +Keystone type 104 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_105_1x2430 +http://www.keyelco.com/product-pdf.cfm?p=745 +Keystone type 105 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_106_1x20mm +http://www.keyelco.com/product-pdf.cfm?p=720 +Keystone type 106 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_107_1x23mm +http://www.keyelco.com/product-pdf.cfm?p=746 +Keystone type 107 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_500 +Keystone #500, 12mm CR1220 battery holder, http://www.keyelco.com/product-pdf.cfm?p=710 +CR1220 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_590 +AA CR2 A battery holder with leaf spring, Keystone, https://ken.keyeuro.eu/cat/590.pdf +AA battery holder Keystone +0 +3 +1 +Battery +BatteryHolder_Keystone_1042_1x18650 +Battery holder for 18650 cylindrical cells http://www.keyelco.com/product.cfm/product_id/918 +18650 Keystone 1042 Li-ion +0 +2 +2 +Battery +BatteryHolder_Keystone_1057_1x2032 +SMT (Auto-In/Ultra-Low) Holder for 2032 Cell, 33.2 x 23.9mm, 2mm height above PCB, https://www.keyelco.com/userAssets/file/M65p4.pdf +Keystone type 1057 coin cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_1058_1x2032 +http://www.keyelco.com/product-pdf.cfm?p=14028 +Keystone type 1058 coin cell retainer +0 +2 +2 +Battery +BatteryHolder_Keystone_1060_1x2032 +http://www.keyelco.com/product-pdf.cfm?p=726 +CR2032 BR2032 BatteryHolder Battery +0 +2 +2 +Battery +BatteryHolder_Keystone_2460_1xAA +https://www.keyelco.com/product-pdf.cfm?p=1025 +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_2462_2xAA +2xAA cell battery holder, Keystone P/N 2462, https://www.keyelco.com/product-pdf.cfm?p=1027 +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_2466_1xAAA +1xAAA Battery Holder, Keystone, Plastic Case, http://www.keyelco.com/product-pdf.cfm?p=1031 +AAA battery holder Keystone +0 +2 +2 +Battery +BatteryHolder_Keystone_2468_2xAAA +2xAAA cell battery holder, Keystone P/N 2468, http://www.keyelco.com/product-pdf.cfm?p=1033 +AAA battery cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_2479_3xAAA +Keystone Battery Holder, 2479, Battery Type 3xAAA (Script generated with StandardBox.py) (Keystone Battery Holder, 2479, Battery Type 3xAAA) +Keystone Battery Holder 2479 Battery Type 3xAAA +0 +2 +2 +Battery +BatteryHolder_Keystone_2993 +http://www.keyelco.com/product-pdf.cfm?p=776 +Keystone type 2993 negative battery contact +0 +1 +1 +Battery +BatteryHolder_Keystone_2998_1x6.8mm +www.keyelco.com/product-pdf.cfm?p=763 +Keystone type 2998 battery holder +0 +3 +2 +Battery +BatteryHolder_Keystone_3000_1x12mm +http://www.keyelco.com/product-pdf.cfm?p=777 +Keystone type 3000 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3001_1x12mm +http://www.keyelco.com/product-pdf.cfm?p=778 +Keystone type 3001 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3002_1x2032 +https://www.tme.eu/it/Document/a823211ec201a9e209042d155fe22d2b/KEYS2996.pdf +BR2016 CR2016 DL2016 BR2020 CL2020 BR2025 CR2025 DL2025 DR2032 CR2032 DL2032 +0 +3 +2 +Battery +BatteryHolder_Keystone_3008_1x2450 +http://www.keyelco.com/product-pdf.cfm?p=786 +Keystone type 3008 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3009_1x2450 +http://www.keyelco.com/product-pdf.cfm?p=787 +Keystone type 3009 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3034_1x20mm +Keystone 3034 SMD battery holder for 2020, 2025 and 2032 coincell batteries. http://www.keyelco.com/product-pdf.cfm?p=798 +Keystone type 3034 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_LINX_BAT-HLD-012-SMT +SMT battery holder for CR1216/1220/1225, https://linxtechnologies.com/wp/wp-content/uploads/bat-hld-012-smt.pdf +battery holder coin cell cr1216 cr1220 cr1225 +0 +3 +2 +Battery +BatteryHolder_MPD_BA9VPC_1xPP3 +1xPP3 (9V) battery holder, Memory Protection Devices P/N BA9VPC, http://www.memoryprotectiondevices.com/datasheets/BA9VPC-datasheet.pdf +PP3 Battery Holder BA9VPC 9V +0 +2 +2 +Battery +BatteryHolder_MPD_BC2AAPC_2xAA +2xAA cell battery holder, Memory Protection Devices P/N BC2AAPC, http://www.memoryprotectiondevices.com/datasheets/BC2AAPC-datasheet.pdf +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_MPD_BC12AAPC_2xAA +2xAA cell battery holder, Memory Protection Devices P/N BC12AAPC, http://www.memoryprotectiondevices.com/datasheets/BC12AAPC-datasheet.pdf +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_MPD_BC2003_1x2032 +http://www.memoryprotectiondevices.com/datasheets/BC-2003-datasheet.pdf +BC2003 CR2032 2032 Battery Holder +0 +3 +2 +Battery +BatteryHolder_MPD_BH-18650-PC2 +18650 Battery Holder (http://www.memoryprotectiondevices.com/datasheets/BK-18650-PC2-datasheet.pdf) +18650 Battery Holder +0 +2 +2 +Battery +BatteryHolder_Multicomp_BC-2001_1x2032 +CR2032 retainer clip, SMT ( http://www.farnell.com/datasheets/1505853.pdf ) +BC-2001 CR2032 2032 Battery Holder +0 +3 +2 +Battery +BatteryHolder_Renata_SMTU2032-LF_1x2032 +https://www.renata.com/fr/downloads/?product=smtu2032-lf&fileid=6a9833a4d49dfb7b550194fe0f +Renata SMT battery holder coin cell 2032 +0 +2 +2 +Battery +BatteryHolder_Seiko_MS621F +Seiko MS621F, https://www.sii.co.jp/en/me/files/2014/02/file_EXTENDED_PRDCT_SPEC_75_FILE_11.jpg +Seiko MS621F +0 +2 +2 +Battery +BatteryHolder_TruPower_BH-331P_3xAA +Keystone Battery Holder BH-331P Battery Type 3xAA (Script generated with StandardBox.py) (Keystone Battery Holder BH-331P Battery Type 3xAA) +Battery Holder BH-331P Battery Type 3xAA +0 +2 +2 +Battery +Battery_CR1225 +CR1225 battery +battery CR1225 coin cell +0 +0 +0 +Battery +Battery_Panasonic_CR1025-VSK_Vertical_CircularHoles +Panasonic CR-1025/VSK battery +battery CR-1025 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR1220-VCN_Vertical_CircularHoles +Panasonic CR-1220/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D140.PDF +battery CR-1220 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR1632-V1AN_Vertical_CircularHoles +Panasonic CR-1632-V1AN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D464.PDF +battery CR-1632 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2025-V1AK_Vertical_CircularHoles +Panasonic CR-2025/V1AK battery, +battery CR-2025 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2032-HFN_Horizontal_CircularHoles +Panasonic CR-2032/HFN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D166.PDF +battery CR-2032 coin cell +0 +2 +2 +Battery +Battery_Panasonic_CR2032-VS1N_Vertical_CircularHoles +Panasonic CR-2032/VS1N battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D348.PDF +battery CR-2032 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2354-VCN_Vertical_CircularHoles +Panasonic CR-2354/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D486.PDF +battery CR-2354/VCN coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2450-VAN_Vertical_CircularHoles +Panasonic CR-2450/VAN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D492.PDF +battery CR-2450 coin cell +0 +2 +2 +Battery +Battery_Panasonic_CR2477-VCN_Vertical_CircularHoles +Panasonic CR-2477/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D502.PDF +battery CR-2477 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR3032-VCN_Vertical_CircularHoles +Panasonic CR-3032/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D508.PDF +battery CR-3032 coin cell vertical +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.00u_PCB +Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.00u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.00u_Plate +Cherry MX keyswitch, 1.00u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.00u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.25u_PCB +Cherry MX keyswitch, 1.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.25u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.25u_Plate +Cherry MX keyswitch, 1.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.25u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.50u_PCB +Cherry MX keyswitch, 1.50u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.50u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.50u_Plate +Cherry MX keyswitch, 1.50u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.50u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.75u_PCB +Cherry MX keyswitch, 1.75u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.75u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.75u_Plate +Cherry MX keyswitch, 1.75u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.75u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_PCB +Cherry MX keyswitch, 2.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_Plate +Cherry MX keyswitch, 2.00u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_Vertical_PCB +Cherry MX keyswitch, 2.00u, vertical, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u vertical PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_Vertical_Plate +Cherry MX keyswitch, 2.00u, vertical, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u vertical plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.25u_PCB +Cherry MX keyswitch, 2.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.25u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.25u_Plate +Cherry MX keyswitch, 2.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.25u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.75u_PCB +Cherry MX keyswitch, 2.75u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.75u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.75u_Plate +Cherry MX keyswitch, 2.75u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.75u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_6.25u_PCB +Cherry MX keyswitch, 6.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 6.25u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_6.25u_Plate +Cherry MX keyswitch, 6.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 6.25u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_ISOEnter_PCB +Cherry MX keyswitch, ISO Enter, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch ISO enter PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_ISOEnter_Plate +Cherry MX keyswitch, ISO Enter, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch ISO enter plate +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.00u +Matias/ALPS keyswitch, 1.00u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.00u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.25u +Matias/ALPS keyswitch, 1.25u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.25u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.50u +Matias/ALPS keyswitch, 1.50u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.50u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.75u +Matias/ALPS keyswitch, 1.75u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.75u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_2.00u +Matias/ALPS keyswitch, 2.00u, http://matias.ca/switches/ +Matias ALPS keyswitch 2.00u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_2.25u +Matias/ALPS keyswitch, 2.25u, http://matias.ca/switches/ +Matias ALPS keyswitch 2.25u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_2.75u +Matias/ALPS keyswitch, 2.75u, http://matias.ca/switches/ +Matias ALPS keyswitch 2.75u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_6.25u +Matias/ALPS keyswitch, 6.25u, http://matias.ca/switches/ +Matias ALPS keyswitch 6.25u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_ISOEnter +Matias/ALPS keyswitch, ISO Enter, http://matias.ca/switches/ +Matias ALPS keyswitch ISO enter +0 +2 +2 +Button_Switch_SMD +Nidec_Copal_CAS-120A +Slide Switch, SMD, Nidec CAS series, https://www.nidec-components.com/e/catalog/switch/cas.pdf +SMD slide switch Nidec CAS 120A +0 +3 +3 +Button_Switch_SMD +Nidec_Copal_SH-7010A +4-bit rotary coded switch, J-hook, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +6 +5 +Button_Switch_SMD +Nidec_Copal_SH-7010B +4-bit rotary coded switch, gull wing, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +6 +5 +Button_Switch_SMD +Nidec_Copal_SH-7040B +4-bit rotary coded switch, gull wing, Gray code, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +5 +5 +Button_Switch_SMD +Panasonic_EVQPUJ_EVQPUA +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUJ EVQPUA +0 +4 +2 +Button_Switch_SMD +Panasonic_EVQPUK_EVQPUB +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUK EVQPUB +0 +4 +2 +Button_Switch_SMD +Panasonic_EVQPUL_EVQPUC +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUL EVQPUC +0 +4 +2 +Button_Switch_SMD +Panasonic_EVQPUM_EVQPUD +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUM EVQPUD +0 +4 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 1x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_6.7x4.1mm_W8.61mm_P2.54mm_LowProfile +SMD 1x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_9.78x4.72mm_W8.61mm_P2.54mm +SMD 1x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x4.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Copal_CHS-01A_W5.08mm_P1.27mm_JPin +SMD 1x-dip-switch SPST Copal_CHS-01A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Copal_CHS-01B_W7.62mm_P1.27mm +SMD 1x-dip-switch SPST Copal_CHS-01B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Copal_CVS-01xB_W5.9mm_P1mm +SMD 1x-dip-switch SPST Copal_CVS-01xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +6 +3 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Omron_A6S-110x_W8.9mm_P2.54mm +SMD 1x-dip-switch SPST Omron_A6S-110x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_6.7x6.64mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 2x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_6.7x6.64mm_W8.61mm_P2.54mm_LowProfile +SMD 2x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_9.78x7.26mm_W8.61mm_P2.54mm +SMD 2x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x7.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Copal_CHS-02A_W5.08mm_P1.27mm_JPin +SMD 2x-dip-switch SPST Copal_CHS-02A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Copal_CHS-02B_W7.62mm_P1.27mm +SMD 2x-dip-switch SPST Copal_CHS-02B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Copal_CVS-02xB_W5.9mm_P1mm +SMD 2x-dip-switch SPST Copal_CVS-02xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +8 +5 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_KingTek_DSHP02TJ_W5.25mm_P1.27mm_JPin +SMD 2x-dip-switch SPST KingTek_DSHP02TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_KingTek_DSHP02TS_W7.62mm_P1.27mm +SMD 2x-dip-switch SPST KingTek_DSHP02TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Omron_A6H-2101_W6.15mm_P1.27mm +SMD 2x-dip-switch SPST Omron_A6H-2101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Omron_A6S-210x_W8.9mm_P2.54mm +SMD 2x-dip-switch SPST Omron_A6S-210x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_6.7x9.18mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 3x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_6.7x9.18mm_W8.61mm_P2.54mm_LowProfile +SMD 3x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_9.78x9.8mm_W8.61mm_P2.54mm +SMD 3x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x9.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_Copal_CVS-03xB_W5.9mm_P1mm +SMD 3x-dip-switch SPST Copal_CVS-03xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +10 +7 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_KingTek_DSHP03TJ_W5.25mm_P1.27mm_JPin +SMD 3x-dip-switch SPST KingTek_DSHP03TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_KingTek_DSHP03TS_W7.62mm_P1.27mm +SMD 3x-dip-switch SPST KingTek_DSHP03TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_Omron_A6S-310x_W8.9mm_P2.54mm +SMD 3x-dip-switch SPST Omron_A6S-310x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_6.7x11.72mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 4x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_6.7x11.72mm_W8.61mm_P2.54mm_LowProfile +SMD 4x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_9.78x12.34mm_W8.61mm_P2.54mm +SMD 4x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x12.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Copal_CHS-04A_W5.08mm_P1.27mm_JPin +SMD 4x-dip-switch SPST Copal_CHS-04A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Copal_CHS-04B_W7.62mm_P1.27mm +SMD 4x-dip-switch SPST Copal_CHS-04B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Copal_CVS-04xB_W5.9mm_P1mm +SMD 4x-dip-switch SPST Copal_CVS-04xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +12 +9 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_KingTek_DSHP04TJ_W5.25mm_P1.27mm_JPin +SMD 4x-dip-switch SPST KingTek_DSHP04TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_KingTek_DSHP04TS_W7.62mm_P1.27mm +SMD 4x-dip-switch SPST KingTek_DSHP04TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Omron_A6H-4101_W6.15mm_P1.27mm +SMD 4x-dip-switch SPST Omron_A6H-4101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Omron_A6S-410x_W8.9mm_P2.54mm +SMD 4x-dip-switch SPST Omron_A6S-410x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_6.7x14.26mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 5x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_6.7x14.26mm_W8.61mm_P2.54mm_LowProfile +SMD 5x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_9.78x14.88mm_W8.61mm_P2.54mm +SMD 5x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x14.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_KingTek_DSHP05TJ_W5.25mm_P1.27mm_JPin +SMD 5x-dip-switch SPST KingTek_DSHP05TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_KingTek_DSHP05TS_W7.62mm_P1.27mm +SMD 5x-dip-switch SPST KingTek_DSHP05TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_Omron_A6S-510x_W8.9mm_P2.54mm +SMD 5x-dip-switch SPST Omron_A6S-510x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_6.7x16.8mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 6x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_6.7x16.8mm_W8.61mm_P2.54mm_LowProfile +SMD 6x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_9.78x17.42mm_W8.61mm_P2.54mm +SMD 6x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x17.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Copal_CHS-06A_W5.08mm_P1.27mm_JPin +SMD 6x-dip-switch SPST Copal_CHS-06A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Copal_CHS-06B_W7.62mm_P1.27mm +SMD 6x-dip-switch SPST Copal_CHS-06B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_KingTek_DSHP06TJ_W5.25mm_P1.27mm_JPin +SMD 6x-dip-switch SPST KingTek_DSHP06TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_KingTek_DSHP06TS_W7.62mm_P1.27mm +SMD 6x-dip-switch SPST KingTek_DSHP06TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Omron_A6H-6101_W6.15mm_P1.27mm +SMD 6x-dip-switch SPST Omron_A6H-6101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Omron_A6S-610x_W8.9mm_P2.54mm +SMD 6x-dip-switch SPST Omron_A6S-610x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_6.7x19.34mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 7x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_6.7x19.34mm_W8.61mm_P2.54mm_LowProfile +SMD 7x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_9.78x19.96mm_W8.61mm_P2.54mm +SMD 7x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x19.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_KingTek_DSHP07TJ_W5.25mm_P1.27mm_JPin +SMD 7x-dip-switch SPST KingTek_DSHP07TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_KingTek_DSHP07TS_W7.62mm_P1.27mm +SMD 7x-dip-switch SPST KingTek_DSHP07TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_Omron_A6S-710x_W8.9mm_P2.54mm +SMD 7x-dip-switch SPST Omron_A6S-710x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_6.7x21.88mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 8x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_6.7x21.88mm_W8.61mm_P2.54mm_LowProfile +SMD 8x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_9.78x22.5mm_W8.61mm_P2.54mm +SMD 8x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x22.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Copal_CHS-08A_W5.08mm_P1.27mm_JPin +SMD 8x-dip-switch SPST Copal_CHS-08A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Copal_CHS-08B_W7.62mm_P1.27mm +SMD 8x-dip-switch SPST Copal_CHS-08B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Copal_CVS-08xB_W5.9mm_P1mm +SMD 8x-dip-switch SPST Copal_CVS-08xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +20 +17 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_KingTek_DSHP08TJ_W5.25mm_P1.27mm_JPin +SMD 8x-dip-switch SPST KingTek_DSHP08TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_KingTek_DSHP08TS_W7.62mm_P1.27mm +SMD 8x-dip-switch SPST KingTek_DSHP08TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Omron_A6H-8101_W6.15mm_P1.27mm +SMD 8x-dip-switch SPST Omron_A6H-8101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Omron_A6S-810x_W8.9mm_P2.54mm +SMD 8x-dip-switch SPST Omron_A6S-810x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_6.7x24.42mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 9x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_6.7x24.42mm_W8.61mm_P2.54mm_LowProfile +SMD 9x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_9.78x25.04mm_W8.61mm_P2.54mm +SMD 9x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x25.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_KingTek_DSHP09TJ_W5.25mm_P1.27mm_JPin +SMD 9x-dip-switch SPST KingTek_DSHP09TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_KingTek_DSHP09TS_W7.62mm_P1.27mm +SMD 9x-dip-switch SPST KingTek_DSHP09TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_Omron_A6S-910x_W8.9mm_P2.54mm +SMD 9x-dip-switch SPST Omron_A6S-910x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_6.7x26.96mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 10x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_6.7x26.96mm_W8.61mm_P2.54mm_LowProfile +SMD 10x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_9.78x27.58mm_W8.61mm_P2.54mm +SMD 10x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x27.58mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Copal_CHS-10A_W5.08mm_P1.27mm_JPin +SMD 10x-dip-switch SPST Copal_CHS-10A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Copal_CHS-10B_W7.62mm_P1.27mm +SMD 10x-dip-switch SPST Copal_CHS-10B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_KingTek_DSHP10TJ_W5.25mm_P1.27mm_JPin +SMD 10x-dip-switch SPST KingTek_DSHP10TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_KingTek_DSHP10TS_W7.62mm_P1.27mm +SMD 10x-dip-switch SPST KingTek_DSHP10TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Omron_A6H-10101_W6.15mm_P1.27mm +SMD 10x-dip-switch SPST Omron_A6H-10101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Omron_A6S-1010x_W8.9mm_P2.54mm +SMD 10x-dip-switch SPST Omron_A6S-1010x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx11_Slide_6.7x29.5mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 11x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +22 +22 +Button_Switch_SMD +SW_DIP_SPSTx11_Slide_6.7x29.5mm_W8.61mm_P2.54mm_LowProfile +SMD 11x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +22 +22 +Button_Switch_SMD +SW_DIP_SPSTx11_Slide_9.78x30.12mm_W8.61mm_P2.54mm +SMD 11x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x30.12mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +22 +22 +Button_Switch_SMD +SW_DIP_SPSTx12_Slide_6.7x32.04mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 12x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +24 +24 +Button_Switch_SMD +SW_DIP_SPSTx12_Slide_6.7x32.04mm_W8.61mm_P2.54mm_LowProfile +SMD 12x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +24 +24 +Button_Switch_SMD +SW_DIP_SPSTx12_Slide_9.78x32.66mm_W8.61mm_P2.54mm +SMD 12x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x32.66mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +24 +24 +Button_Switch_SMD +SW_DPDT_CK_JS202011JCQN +Sub-miniature slide switch, vertical, SMT J bend https://dznh3ojzb2azq.cloudfront.net/products/Slide/JS/documents/datasheet.pdf +switch DPDT SMT +0 +6 +6 +Button_Switch_SMD +SW_MEC_5GSH9 +MEC 5G single pole normally-open tactile switch +switch normally-open pushbutton push-button +0 +4 +4 +Button_Switch_SMD +SW_Push_1P1T-MP_NO_Horizontal_Alps_SKRTLAE010 +Side push button (https://www.alps.com/prod/info/E/PDF/Tact/SurfaceMount/SKRT/SKRT.pdf) +push horizontal SPST 1P1T +0 +5 +3 +Button_Switch_SMD +SW_Push_1P1T-SH_NO_CK_KMR2xxG +CK components KMR2 tactile switch with ground pin http://www.ckswitches.com/media/1479/kmr2.pdf +tactile switch kmr2 +0 +5 +3 +Button_Switch_SMD +SW_Push_1P1T_NO_6x6mm_H9.5mm +tactile push button, 6x6mm e.g. PTS645xx series, height=9.5mm +tact sw push 6mm smd +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_KMR2 +CK components KMR2 tactile switch http://www.ckswitches.com/media/1479/kmr2.pdf +tactile switch kmr2 +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_KSC6xxJ +CK components KSC6 tactile switch https://www.ckswitches.com/media/1972/ksc6.pdf +tactile switch ksc6 +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_KSC7xxJ +CK components KSC7 tactile switch https://www.ckswitches.com/media/1973/ksc7.pdf +tactile switch ksc7 +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_PTS125Sx43PSMTR +C&K Switches 1P1T SMD PTS125 Series 12mm Tact Switch with Pegs, https://www.ckswitches.com/media/1462/pts125.pdf +Button Tactile Switch SPST 1P1T +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_Vertical_Wuerth_434133025816 +https://katalog.we-online.com/em/datasheet/434133025816.pdf +tactile switch Wurth Wuerth +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_XKB_TS-1187A +SMD Tactile Switch, http://www.helloxkb.com/public/images/pdf/TS-1187A-X-X-X.pdf +SPST Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_Push_1TS009xxxx-xxxx-xxxx_6x6x5mm +tactile push button, 6x6mm, height=5mm, 12V 50mA, https://datasheet.lcsc.com/lcsc/1811151231_HYP--Hongyuan-Precision-1TS009A-1800-5000-CT_C319409.pdf +tact sw push 6mm silicone rubber +0 +2 +2 +Button_Switch_SMD +SW_Push_SPST_NO_Alps_SKRK +http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKRK/SKRKAHE020.html +SMD SMT button +0 +2 +2 +Button_Switch_SMD +SW_SP3T_PCM13 +Ultraminiature Surface Mount Slide Switch, right-angle, https://www.ckswitches.com/media/1424/pcm.pdf + +0 +8 +4 +Button_Switch_SMD +SW_SPDT_CK_JS102011SAQN +Sub-miniature slide switch, right-angle, http://www.ckswitches.com/media/1422/js.pdf +switch spdt +0 +3 +3 +Button_Switch_SMD +SW_SPDT_PCM12 +Ultraminiature Surface Mount Slide Switch, right-angle, https://www.ckswitches.com/media/1424/pcm.pdf + +0 +7 +3 +Button_Switch_SMD +SW_SPDT_REED_MSDM-DT +Littlefuse 14.73x2.54mm, 175VDC 5W, SPDT Reed Switch MSDM-DT, https://www.littelfuse.com/~/media/electronics/datasheets/reed_switches/littelfuse_reed_switches_mdsm_dt_datasheet.pdf.pdf +Littlefuse Reed SPDT Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_B3S-1000 +Surface Mount Tactile Switch for High-Density Packaging +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_B3S-1100 +Surface Mount Tactile Switch for High-Density Packaging with Ground Terminal +Tactile Switch +0 +5 +3 +Button_Switch_SMD +SW_SPST_B3SL-1002P +Middle Stroke Tactile Switch, B3SL +Middle Stroke Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_B3SL-1022P +Middle Stroke Tactile Switch, B3SL +Middle Stroke Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_B3U-1000P +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, without Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-1000P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, with Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-1100P +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, with Ground Terminal, without Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_B3U-1100P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, with Ground Terminal, with Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_B3U-3000P +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, without Ground Terminal, without Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-3000P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, without Ground Terminal, with Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-3100P +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, with Ground Terminal, without Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_B3U-3100P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, with Ground Terminal, with Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_CK_KMS2xxG +Microminiature SMT Side Actuated, 4.2 x 2.8 x 1.42mm, https://www.ckswitches.com/media/1482/kms.pdf +Switch SPST KMS2 +0 +5 +3 +Button_Switch_SMD +SW_SPST_CK_KMS2xxGP +Microminiature SMT Side Actuated, 4.2 x 2.8 x 1.42mm with pegs, https://www.ckswitches.com/media/1482/kms.pdf +Switch SPST KMS2 +0 +5 +3 +Button_Switch_SMD +SW_SPST_CK_KXT3 +https://www.ckswitches.com/media/1465/kxt3.pdf +Switch SPST KXT3 +0 +2 +2 +Button_Switch_SMD +SW_SPST_CK_RS282G05A3 +https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf +SPST button tactile switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_EVPBF +Light Touch Switch + +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP0 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE28.pdf + +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP2 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000C374.pdf +SMD SMT SPST EVQP2 +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP7A +Light Touch Switch, 2.2 N, https://www3.panasonic.biz/ac/e_download/control/switch/light-touch/catalog/sw_lt_eng_3529s_side.pdf?f_cd=402906 +tactile switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP7C +Light Touch Switch, 2.2 N, https://www3.panasonic.biz/ac/e_download/control/switch/light-touch/catalog/sw_lt_eng_3529s_side.pdf?f_cd=402906 +tactile switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQPE1 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE7.pdf + +0 +2 +2 +Button_Switch_SMD +SW_SPST_EVQQ2 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE28.pdf + +0 +4 +2 +Button_Switch_SMD +SW_SPST_FSMSM +http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1437566-3&DocType=Customer+Drawing&DocLang=English +SPST button tactile switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_Omron_B3FS-100xP +Surface Mount Tactile Switch for High-Density Mounting, 3.1mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_Omron_B3FS-101xP +Surface Mount Tactile Switch for High-Density Mounting, 4.3mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_Omron_B3FS-105xP +Surface Mount Tactile Switch for High-Density Mounting, 7.3mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS645 +C&K Components SPST SMD PTS645 Series 6mm Tact Switch +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS647_Sx38 +C&K Components SPST SMD PTS647 Series 4.5mm Tact Switch, 3.8mm Height, see https://www.ckswitches.com/media/2567/pts647.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS647_Sx50 +C&K Components SPST SMD PTS647 Series 4.5mm Tact Switch, 5.0mm Height, see https://www.ckswitches.com/media/2567/pts647.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS647_Sx70 +C&K Components SPST SMD PTS647 Series 4.5mm Tact Switch, 7.0mm Height, see https://www.ckswitches.com/media/2567/pts647.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS810 +C&K Components, PTS 810 Series, Microminiature SMT Top Actuated, http://www.ckswitches.com/media/1476/pts810.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_Panasonic_EVQPL_3PL_5PL_PT_A08 +Light Touch Switch, http://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE3.pdf +SMD SMT SPST EVQPL EVQPT +0 +6 +3 +Button_Switch_SMD +SW_SPST_Panasonic_EVQPL_3PL_5PL_PT_A15 +Light Touch Switch, http://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE3.pdf +SMD SMT SPST EVQPL EVQPT +0 +6 +3 +Button_Switch_SMD +SW_SPST_REED_CT05-XXXX-G1 +Coto Technologies SPST Reed Switch CT05-XXXX-G1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT05-XXXX-J1 +Coto Technologies SPST Reed Switch CT05-XXXX-J1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G1 +Coto Technologies SPST Reed Switch CT10-XXXX-G1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G2 +Coto Technologies SPST Reed Switch CT10-XXXX-G2 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G4 +Coto Technologies SPST Reed Switch CT10-XXXX-G4 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_SKQG_WithStem +ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, With stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAFE010.html +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_SKQG_WithoutStem +ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, Without stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAEE010.html +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305A +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305B +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305C +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3342 +Low-profile SMD Tactile Switch, https://www.e-switch.com/system/asset/product_line/data_sheet/165/TL3342.pdf +SPST Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_Tactile_SPST_NO_Straight_CK_PTS636Sx25SMTRLFS +Tactile switch, SPST, 6.0x3.5 mm, H2.5 mm, straight, NO, gull wing leads: https://www.ckswitches.com/media/2779/pts636.pdf +switch tactile SPST 1P1T straight NO SMTR C&K +0 +2 +2 +Button_Switch_THT +KSA_Tactile_SPST +KSA http://www.ckswitches.com/media/1457/ksa_ksl.pdf +SWITCH SMD KSA SW +0 +5 +5 +Button_Switch_THT +Nidec_Copal_SH-7010C +4-bit rotary coded switch, through-hole, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +6 +5 +Button_Switch_THT +Push_E-Switch_KS01Q01 +E-Switch KS01Q01 http://spec_sheets.e-switch.com/specs/29-KS01Q01.pdf +Push Button +0 +4 +4 +Button_Switch_THT +SW_CK_JS202011AQN_DPDT_Angled +C&K sub miniature slide switch, JS series, DPDT, right angle, http://www.ckswitches.com/media/1422/js.pdf +switch DPDT +0 +6 +6 +Button_Switch_THT +SW_CK_JS202011CQN_DPDT_Straight +C&K sub miniature slide switch, JS series, DPDT, right angle, http://www.ckswitches.com/media/1422/js.pdf +switch DPDT +0 +6 +6 +Button_Switch_THT +SW_CW_GPTS203211B +SPST Off-On Pushbutton, 1A, 30V, CW Industries P/N GPTS203211B, http://switches-connectors-custom.cwind.com/Asset/GPTS203211BR2.pdf +SPST button switch Off-On +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx01_Piano_10.8x4.1mm_W7.62mm_P2.54mm +1x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x4.1mm +DIP Switch SPST Piano 7.62mm 300mil +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile +1x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx01_Slide_9.78x4.72mm_W7.62mm_P2.54mm +1x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x4.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx02_Piano_10.8x6.64mm_W7.62mm_P2.54mm +2x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x6.64mm +DIP Switch SPST Piano 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Piano_CTS_Series194-2MSTN_W7.62mm_P2.54mm +2x-dip-switch SPST CTS_Series194-2MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Slide_6.7x6.64mm_W7.62mm_P2.54mm_LowProfile +2x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Slide_9.78x7.26mm_W7.62mm_P2.54mm +2x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x7.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx03_Piano_10.8x9.18mm_W7.62mm_P2.54mm +3x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x9.18mm +DIP Switch SPST Piano 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Piano_CTS_Series194-3MSTN_W7.62mm_P2.54mm +3x-dip-switch SPST CTS_Series194-3MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Slide_6.7x9.18mm_W7.62mm_P2.54mm_LowProfile +3x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Slide_9.78x9.8mm_W7.62mm_P2.54mm +3x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x9.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx04_Piano_10.8x11.72mm_W7.62mm_P2.54mm +4x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x11.72mm +DIP Switch SPST Piano 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Piano_CTS_Series194-4MSTN_W7.62mm_P2.54mm +4x-dip-switch SPST CTS_Series194-4MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Slide_6.7x11.72mm_W7.62mm_P2.54mm_LowProfile +4x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Slide_9.78x12.34mm_W7.62mm_P2.54mm +4x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x12.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx05_Piano_10.8x14.26mm_W7.62mm_P2.54mm +5x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x14.26mm +DIP Switch SPST Piano 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Piano_CTS_Series194-5MSTN_W7.62mm_P2.54mm +5x-dip-switch SPST CTS_Series194-5MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Slide_6.7x14.26mm_W7.62mm_P2.54mm_LowProfile +5x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Slide_9.78x14.88mm_W7.62mm_P2.54mm +5x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x14.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx06_Piano_10.8x16.8mm_W7.62mm_P2.54mm +6x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x16.8mm +DIP Switch SPST Piano 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Piano_CTS_Series194-6MSTN_W7.62mm_P2.54mm +6x-dip-switch SPST CTS_Series194-6MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Slide_6.7x16.8mm_W7.62mm_P2.54mm_LowProfile +6x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Slide_9.78x17.42mm_W7.62mm_P2.54mm +6x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x17.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx07_Piano_10.8x19.34mm_W7.62mm_P2.54mm +7x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x19.34mm +DIP Switch SPST Piano 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Piano_CTS_Series194-7MSTN_W7.62mm_P2.54mm +7x-dip-switch SPST CTS_Series194-7MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Slide_6.7x19.34mm_W7.62mm_P2.54mm_LowProfile +7x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Slide_9.78x19.96mm_W7.62mm_P2.54mm +7x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x19.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx08_Piano_10.8x21.88mm_W7.62mm_P2.54mm +8x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x21.88mm +DIP Switch SPST Piano 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Piano_CTS_Series194-8MSTN_W7.62mm_P2.54mm +8x-dip-switch SPST CTS_Series194-8MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Slide_6.7x21.88mm_W7.62mm_P2.54mm_LowProfile +8x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Slide_9.78x22.5mm_W7.62mm_P2.54mm +8x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x22.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx09_Piano_10.8x24.42mm_W7.62mm_P2.54mm +9x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x24.42mm +DIP Switch SPST Piano 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Piano_CTS_Series194-9MSTN_W7.62mm_P2.54mm +9x-dip-switch SPST CTS_Series194-9MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Slide_6.7x24.42mm_W7.62mm_P2.54mm_LowProfile +9x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Slide_9.78x25.04mm_W7.62mm_P2.54mm +9x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x25.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx10_Piano_10.8x26.96mm_W7.62mm_P2.54mm +10x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x26.96mm +DIP Switch SPST Piano 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Piano_CTS_Series194-10MSTN_W7.62mm_P2.54mm +10x-dip-switch SPST CTS_Series194-10MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Slide_6.7x26.96mm_W7.62mm_P2.54mm_LowProfile +10x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Slide_9.78x27.58mm_W7.62mm_P2.54mm +10x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x27.58mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx11_Piano_10.8x29.5mm_W7.62mm_P2.54mm +11x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x29.5mm +DIP Switch SPST Piano 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Piano_CTS_Series194-11MSTN_W7.62mm_P2.54mm +11x-dip-switch SPST CTS_Series194-11MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Slide_6.7x29.5mm_W7.62mm_P2.54mm_LowProfile +11x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Slide_9.78x30.12mm_W7.62mm_P2.54mm +11x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x30.12mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx12_Piano_10.8x32.04mm_W7.62mm_P2.54mm +12x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x32.04mm +DIP Switch SPST Piano 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Piano_CTS_Series194-12MSTN_W7.62mm_P2.54mm +12x-dip-switch SPST CTS_Series194-12MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Slide_6.7x32.04mm_W7.62mm_P2.54mm_LowProfile +12x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Slide_9.78x32.66mm_W7.62mm_P2.54mm +12x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x32.66mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_E-Switch_EG1224_SPDT_Angled +E-Switch slide switch, EG series, SPDT, right angle, http://spec_sheets.e-switch.com/specs/P040042.pdf +switch SPDT +0 +7 +3 +Button_Switch_THT +SW_E-Switch_EG1271_SPDT +E-Switch sub miniature slide switch, EG series, SPDT, https://www.e-switch.com/wp-content/uploads/2022/06/EG.pdf +switch SPDT +0 +6 +6 +Button_Switch_THT +SW_E-Switch_EG2219_DPDT_Angled +E-Switch slide switch, EG series, DPDT, right angle, http://spec_sheets.e-switch.com/specs/P040170.pdf +switch DPDT +0 +10 +6 +Button_Switch_THT +SW_Lever_1P2T_NKK_GW12LxH +Switch, single pole double throw, right angle, http://www.nkkswitches.com/pdf/GW.pdf +switch single-pole double-throw spdt ON-ON horizontal +0 +5 +3 +Button_Switch_THT +SW_MEC_5GTH9 +MEC 5G single pole normally-open tactile switch https://cdn.sos.sk/productdata/80/f6/aabf7be6/5gth9358222.pdf +switch normally-open pushbutton push-button +0 +4 +2 +Button_Switch_THT +SW_NKK_BB15AH +https://www.nkkswitches.com/pdf/Bpushbuttons-1.pdf +Pushbutton Right-angle +0 +5 +3 +Button_Switch_THT +SW_NKK_G1xJP +Switch NKK G1xJP http://www.nkkswitches.com/pdf/gwillum.pdf +SWITCH TOGGLE ILLUM SPDT NKK +0 +6 +6 +Button_Switch_THT +SW_NKK_GW12LJP +Switch, single pole double throw, illuminated paddle, http://www.nkkswitches.com/pdf/gwillum.pdf +switch single-pole double-throw spdt ON-ON illuminated LED +0 +6 +6 +Button_Switch_THT +SW_NKK_NR01 +NKK Switches NR01 series rotary switch, 10.7 x 10.7mm. https://www.nkkswitches.com/pdf/NR01%20Rotaries.pdf +NKK NR01 SP3T SP4T SP5T +0 +10 +7 +Button_Switch_THT +SW_PUSH-12mm +Generic SW PUSH 12mm, e.g https://sten-eswitch-13110800-production.s3.amazonaws.com/system/asset/product_line/data_sheet/143/TL1100.pdf +tact sw push 12mm +0 +4 +2 +Button_Switch_THT +SW_PUSH-12mm_Wuerth-430476085716 +SW PUSH 12mm http://katalog.we-online.de/em/datasheet/430476085716.pdf +tact sw push 12mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_1P1T_6x3.5mm_H4.3_APEM_MJTP1243 +tactile push button, 6x3.5mm, https://www.apem.com/idec-apem/en_US/PCB-switches/Tactile-Switches/MJTP-6mm-through-hole/c/MJTP_6mm_through%20hole?page=1 +PHAP3362 6mm tact sw THT +0 +2 +2 +Button_Switch_THT +SW_PUSH_1P1T_6x3.5mm_H5.0_APEM_MJTP1250 +tactile push button, 6x3.5mm, https://www.apem.com/idec-apem/en_US/PCB-switches/Tactile-Switches/MJTP-6mm-through-hole/c/MJTP_6mm_through%20hole?page=1 +PHAP3362A 6mm tact sw THT +0 +2 +2 +Button_Switch_THT +SW_PUSH_6mm +Generic 6mm SW tactile push button +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H4.3mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H7.3mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=7.3mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H8.5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=8.5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H8mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=8mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H9.5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=9.5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H13mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=13mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_E-Switch_FS5700DP_DPDT +FS5700 series pushbutton footswitch, DPDT, https://www.e-switch.com/system/asset/product_line/data_sheet/226/FS5700.pdf +switch DPDT footswitch +0 +6 +6 +Button_Switch_THT +SW_PUSH_LCD_E3_SAxxxx +Switch with LCD screen E3 SAxxxx +switch normally-open pushbutton push-button LCD +0 +6 +6 +Button_Switch_THT +SW_PUSH_LCD_E3_SAxxxx_SocketPins +Switch with LCD screen E3 SAxxxx +switch normally-open pushbutton push-button LCD +0 +6 +6 +Button_Switch_THT +SW_Push_1P1T_NO_LED_E-Switch_TL1250 +illuminated right angle tact switch https://www.e-switch.com/system/asset/product_line/data_sheet/148/TL1250.pdf +led push switch right angle +0 +6 +4 +Button_Switch_THT +SW_Push_1P2T_Vertical_E-Switch_800UDP8P1A1M6 + right angle SPDT push button https://www.e-switch.com/system/asset/product_line/data_sheet/210/800U.pdf +IP67 ultra-miniture horizontal +0 +5 +3 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH1xxxxxxV2 +momentary / push-push button, h=17.5mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH2xxxxxxV2 +momentary / push-push button, h=23mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH3xxxxxxV2 +momentary / push-push button, h=20.5mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH4xxxxxxV2 +momentary / push-push button, h=15mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2OAH5xxxxxxV2 +momentary / push-push button, h=13mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH1xxxxxxV2 +momentary / push-push button, h=17.5mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH2xxxxxxV2 +momentary / push-push button, h=23mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH3xxxxxxV2 +momentary / push-push button, h=20.5mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH4xxxxxxV2 +momentary / push-push button, h=15mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Vertical_E-Switch_800UDP8P1A1M6 + right angle DPDT push button https://www.e-switch.com/system/asset/product_line/data_sheet/210/800U.pdf +IP67 ultra-miniture horizontal +0 +8 +6 +Button_Switch_THT +SW_SPST_Omron_B3F-40xx +SW_THT_Tactile_Omron_B3F-40xx, 12x12 mm, Through hole switch from the B3F Family manufactured by Omron, https://www.omron.com/ecb/products/pdf/en-b3f.pdf +tactile switch THT button push B3F-4000 B3F-4050 B3F-4005 B3F-4055 +0 +4 +2 +Button_Switch_THT +SW_SPST_Omron_B3F-50xx +SW_THT_Tactile_Omron_B3F-50xx, 12x12x7,3 mm, Through hole switch from the B3F Family manufactured by Omron, https://www.omron.com/ecb/products/pdf/en-b3f.pdf +tactile omron switch tht B3F-5000 B3F-5050 B3F-5001 B3F-5051 +0 +4 +2 +Button_Switch_THT +SW_SPST_Omron_B3F-315x_Angled +tactile switch, 7.3mm x 6.25mm x 7.4mm, right angle, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf +tactile switch Omron B3F right angle through hole +0 +4 +2 +Button_Switch_THT +SW_Slide-03_Wuerth-WS-SLTV_10x2.5x6.4_P2.54mm +Wuerth, WS-SLTV, 450301014042, https://www.we-online.com/components/products/datasheet/450301014042.pdf +switch single-pole double-throw SPDT würth wurth +0 +3 +3 +Button_Switch_THT +SW_Slide_SPDT_Angled_CK_OS102011MA1Q +CuK miniature slide switch, OS series, SPDT, right angle, http://www.ckswitches.com/media/1428/os.pdf +switch SPDT +0 +5 +3 +Button_Switch_THT +SW_Slide_SPDT_Straight_CK_OS102011MS2Q +CuK miniature slide switch, OS series, SPDT, https://www.ckswitches.com/media/1428/os.pdf +switch SPDT +0 +5 +3 +Button_Switch_THT +SW_TH_Tactile_Omron_B3F-10xx +SW_TH_Tactile_Omron_B3F-10xx_https://www.omron.com/ecb/products/pdf/en-b3f.pdf +Omron B3F-10xx +0 +4 +2 +Button_Switch_THT +SW_Tactile_SKHH_Angled +tactile switch 6mm ALPS SKHH right angle http://www.alps.com/prod/info/E/HTML/Tact/SnapIn/SKHH/SKHHLUA010.html +tactile switch 6mm ALPS SKHH right angle +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx31-2LFS +tactile switch SPST right angle, PTS645VL31-2 LFS +tactile switch SPST angled PTS645VL31-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx39-2LFS +tactile switch SPST right angle, PTS645VL39-2 LFS +tactile switch SPST angled PTS645VL39-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx58-2LFS +tactile switch SPST right angle, PTS645VL58-2 LFS +tactile switch SPST angled PTS645VL58-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx83-2LFS +tactile switch SPST right angle, PTS645VL83-2 LFS +tactile switch SPST angled PTS645VL83-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_Straight_KSA0Axx1LFTR +SW PUSH SMALL http://www.ckswitches.com/media/1457/ksa_ksl.pdf +SW PUSH SMALL Tactile C&K +0 +4 +2 +Button_Switch_THT +SW_Tactile_Straight_KSL0Axx1LFTR +SW PUSH SMALL http://www.ckswitches.com/media/1457/ksa_ksl.pdf +SW PUSH SMALL Tactile C&K +0 +4 +2 +Buzzer_Beeper +Buzzer_12x9.5RM7.6 +Generic Buzzer, D12mm height 9.5mm with RM7.6mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_15x7.5RM7.6 +Generic Buzzer, D15mm height 7.5mm with RM7.6mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_CUI_CPT-9019S-SMT +https://www.cui.com/product/resource/cpt-9019s-smt.pdf +buzzer piezo +0 +2 +2 +Buzzer_Beeper +Buzzer_D14mm_H7mm_P10mm +Generic Buzzer, D14mm height 7mm with pitch 10mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_Mallory_AST1109MLTRQ +Mallory low-profile piezo buzzer, https://mspindy.com/spec-sheets/AST1109MLTRQ.pdf +buzzer piezo +0 +2 +2 +Buzzer_Beeper +Buzzer_Mallory_AST1240MLQ +Mallory low-profile piezo buzzer, https://www.mspindy.com/specifications/AST12140MLQ.pdf +piezo buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_Murata_PKLCS1212E +Murata Buzzer https://www.murata.com/~/media/webrenewal/support/library/catalog/products/sound/p37e.ashx +Murata Buzzer Beeper +0 +2 +2 +Buzzer_Beeper +Buzzer_Murata_PKMCS0909E +Murata Buzzer http://www.murata.com/en-us/api/pdfdownloadapi?cate=&partno=PKMCS0909E4000-R1 +Murata Buzzer Beeper +0 +2 +2 +Buzzer_Beeper +Buzzer_TDK_PS1240P02BT_D12.2mm_H6.5mm +Buzzer, D12.2mm height 6.5mm, https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf +buzzer +0 +2 +2 +Buzzer_Beeper +Indicator_PUI_AI-1440-TWT-24V-2-R +14mm Indicator, https://www.puiaudio.com/media/SpecSheet/AI-1440-TWT-24V-2-R.pdf +piezo buzzer self drive oscillator +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_CUI_CMT-8504-100-SMT +magnetic transducer buzzer, 5V, SPL of 100 dB at 10 cm, https://www.cuidevices.com/product/resource/pdf/cmt-8504-100-smt-tr.pdf +CMT 8504 +0 +4 +4 +Buzzer_Beeper +MagneticBuzzer_CUI_CST-931RP-A +CST-931RP-A, http://www.cui.com/product/resource/cst-931rp-a.pdf +CST-931RP-A +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_Kingstate_KCG0601 +Buzzer, Elektromagnetic Beeper, Summer, +Kingstate KCG0601 +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_Kobitone_254-EMB73-RO +MagneticBuzzer_Kobitone_254-EMB73-RO https://www.mouser.es/datasheet/2/209/joytech_11092018_KT-400379-1501513.pdf +MagneticBuzzer_Kobitone_254-EMB73-RO +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_Kobitone_254-EMB84Q-RO +MagneticBuzzer Kobitone 254-EMB84Q-RO https://www.mouser.es/datasheet/2/209/KT-400385-1171904.pdf +MagneticBuzzer Kobitone 254-EMB84Q-RO +0 +3 +3 +Buzzer_Beeper +MagneticBuzzer_PUI_AT-0927-TT-6-R +Buzzer Magnetic 9mm AT-0927-TT-6-R, http://www.puiaudio.com/pdf/AT-0927-TT-6-R.pdf +Buzzer Magnetic 9mm AT-0927-TT-6-R +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_PUI_SMT-1028-T-2-R +Buzzer, 2830Hz, 3.6Vpp, 90dbA@10cm, Top sound port, 10x10x3,5mm, https://api.puiaudio.com/file/612539d9-c50b-48de-88aa-b63ef8817a91.pdf +SMT 1028 +0 +4 +3 +Buzzer_Beeper +MagneticBuzzer_ProSignal_ABI-009-RC +Buzzer, Elektromagnetic Beeper, Summer, 6V-DC, +Pro Signal ABI-009-RC +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_ProSignal_ABI-010-RC +Buzzer, Elektromagnetic Beeper, Summer, 12V-DC, +Pro Signal ABI-010-RC +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_ProSignal_ABT-410-RC +Buzzer, Elektromagnetic Beeper, Summer, 1,5V-DC, +Pro Signal ABT-410-RC +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_ProjectsUnlimited_AI-4228-TWT-R +Buzzer, Elektromagnetic Beeper, Summer, 3-28V-DC, https://www.kynix.com/uploadfiles/pdf/AI-4228-TWT-R.pdf +Projects Unlimited AI-4228-TWT-R +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_HMB-06_HMB-12 +Buzzer, Elektromagnetic Beeper, Summer, +Star Micronics HMB-06 HMB-12 +0 +2 +2 +Buzzer_Beeper +PUIAudio_SMT_0825_S_4_R +SMD 8540, http://www.puiaudio.com/product-detail.aspx?partnumber=SMT-0825-S-4-R +SMD 8540 +0 +4 +4 +Buzzer_Beeper +Speaker_CUI_CMR-1206S-67 +Speaker, 30mW, 300-7000Hz, IP67 face, 12x6x2,25mm, https://www.cuidevices.com/product/resource/cmr-12062s-67.pdf +speaker CUI +0 +2 +2 +Calibration_Scale +Gauge_10mm_Type1_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 1, +Gauge Massstab 10mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type1_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 1, +Gauge Massstab 10mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type2_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 2, +Gauge Massstab 10mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type2_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 2, +Gauge Massstab 10mm SilkScreenTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type3_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 3, +Gauge Massstab 10mm CopperTop Type 3 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type3_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 3, +Gauge Massstab 10mm SilkScreenTop Type 3 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type4_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 4, +Gauge Massstab 10mm CopperTop Type 4 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type4_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 4, +Gauge Massstab 10mm SilkScreenTop Type 4 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type5_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 5, +Gauge Massstab 10mm CopperTop Type 5 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type5_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 5, +Gauge Massstab 10mm SilkScreenTop Type 5 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type1_CopperTop +Gauge, Massstab, 50mm, CopperTop, Type 1, +Gauge Massstab 50mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type1_SilkScreenTop +Gauge, Massstab, 50mm, SilkScreenTop, Type 1, +Gauge Massstab 50mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type2_CopperTop +Gauge, Massstab, 50mm, CopperTop, Type 2, +Gauge Massstab 50mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type2_SilkScreenTop +Gauge, Massstab, 50mm, SilkScreenTop, Type 2, +Gauge Massstab 50mm SilkScreenTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Grid_Type1_CopperTop +Gauge, Massstab, 100mm, Gitter, Grid, CopperTop, Type 1, +Gauge Massstab 100mm Gitter Grid CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type1_CopperTop +Gauge, Massstab, 100mm, CopperTop, Type 1, +Gauge Massstab 100mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type1_SilkScreenTop +Gauge, Massstab, 100mm, SilkScreenTop, Type 1, +Gauge Massstab 100mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type2_CopperTop +Gauge, Massstab, 100mm, CopperTop, Type 2, +Gauge Massstab 100mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type2_SilkScreenTop +Gauge, Massstab, 100mm, SilkScreenTop, Type 2, +Gauge Massstab 100mm SilkScreenTop Type 2 +0 +0 +0 +Capacitor_SMD +CP_Elec_3x5.3 +SMT capacitor, aluminium electrolytic, 3x5.3, Cornell Dubilier Electronics +Capacitor Electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_3x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 3.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x3 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.3 +SMD capacitor, aluminum electrolytic, Vishay, 4.0x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.4 +SMD capacitor, aluminum electrolytic, Panasonic A5 / Nichicon, 4.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 4.0x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.8 +SMD capacitor, aluminum electrolytic, Panasonic, 4.0x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x4.4 +SMD capacitor, aluminum electrolytic, Panasonic B45, 5.0x4.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 5.0x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.8 +SMD capacitor, aluminum electrolytic, Panasonic, 5.0x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.9 +SMD capacitor, aluminum electrolytic, Panasonic B6, 5.0x5.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x3 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x4.9 +SMD capacitor, aluminum electrolytic, Panasonic C5, 6.3x4.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.2 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.2mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.3 +SMD capacitor, aluminum electrolytic, Cornell Dubilier, 6.3x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.4_Nichicon +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.9 +SMD capacitor, aluminum electrolytic, Panasonic C6, 6.3x5.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x9.9 +SMD capacitor, aluminum electrolytic, Panasonic C10, 6.3x9.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.2 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x6.2mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.5 +SMD capacitor, aluminum electrolytic, Rubycon, 8.0x6.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 8.0x6.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.9 +SMD capacitor, aluminum electrolytic, Panasonic E7, 8.0x6.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x10 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x10mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x10.5 +SMD capacitor, aluminum electrolytic, Vishay 0810, 8.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x11.9 +SMD capacitor, aluminum electrolytic, Panasonic E12, 8.0x11.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x7.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x7.9 +SMD capacitor, aluminum electrolytic, Panasonic F8, 10.0x7.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x10 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x10.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x10.5 +SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x12.5 +SMD capacitor, aluminum electrolytic, Vishay 1012, 10.0x12.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x12.6 +SMD capacitor, aluminum electrolytic, Panasonic F12, 10.0x12.6mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x14.3 +SMD capacitor, aluminum electrolytic, Vishay 1014, 10.0x14.3mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_16x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1616, 16.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_16x22 +SMD capacitor, aluminum electrolytic, Vishay 1621, 16.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_18x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1816, 18.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_18x22 +SMD capacitor, aluminum electrolytic, Vishay 1821, 18.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_CAP-XX_DMF3Zxxxxxxxx3D +5.5V, 470mF supercapacitor, 45mohm, -40ºC to +70ºC, https://www.cap-xx.com/wp-content/uploads/datasheets/CAP-XX-DMF470mF-Datasheet.pdf +supercap +0 +3 +3 +Capacitor_SMD +C_0201_0603Metric +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +capacitor +0 +4 +2 +Capacitor_SMD +C_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +4 +2 +Capacitor_SMD +C_0402_1005Metric +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0402_1005Metric_Pad0.74x0.62mm_HandSolder +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0504_1310Metric +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0504_1310Metric_Pad0.83x1.28mm_HandSolder +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0603_1608Metric +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0603_1608Metric_Pad1.08x0.95mm_HandSolder +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0805_2012Metric +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0805_2012Metric_Pad1.18x1.45mm_HandSolder +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_01005_0402Metric +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +capacitor +0 +4 +2 +Capacitor_SMD +C_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +4 +2 +Capacitor_SMD +C_1206_3216Metric +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1206_3216Metric_Pad1.33x1.80mm_HandSolder +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_1210_3225Metric +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1210_3225Metric_Pad1.33x2.70mm_HandSolder +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_1812_4532Metric +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1812_4532Metric_Pad1.57x3.40mm_HandSolder +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_1825_4564Metric +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1825_4564Metric_Pad1.57x6.80mm_HandSolder +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_2220_5750Metric +Capacitor SMD 2220 (5750 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_2220_5750Metric_Pad1.97x5.40mm_HandSolder +Capacitor SMD 2220 (5750 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_2225_5664Metric +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_2225_5664Metric_Pad1.80x6.60mm_HandSolder +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_3640_9110Metric +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_3640_9110Metric_Pad2.10x10.45mm_HandSolder +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_Elec_3x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 3.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_4x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 4.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_4x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 4.0x5.8mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_5x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_5x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.8mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.8mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x7.7mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x6.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x6.2mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x10.2mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_10x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 10.0x10.2mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZB4-A +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZB4 TZB4-A +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZB4-B +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZB4 TZB4-A +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZC3 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZC3 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZR1 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZR1 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZW4 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZW4 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZY2 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZY2 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Sprague-Goodman_SGC3 +trimmer capacitor SMD horizontal, http://media.wix.com/ugd/d86717_38d9821e12823a7aa9cef38c6c2a73cc.pdf + Sprague Goodman SGC3 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JN +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JN +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JQ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JQ +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JR +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JR +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JV +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JV +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JZ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JR +0 +2 +2 +Capacitor_THT +CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D4.0mm_P1.50mm +CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D4.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D5.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D5.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D6.3mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D7.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P2.50mm_P5.00mm +CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +Capacitor_THT +CP_Radial_D10.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P5.00mm_P7.50mm +CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +Capacitor_THT +CP_Radial_D10.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D14.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D14.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D16.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D17.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D18.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=22mm, height=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm height 40mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D22.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=24mm, height=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm height 40mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D24.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=25mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm height 45mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D25.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=26mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm height 45mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D26.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=30mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm height 45mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D30.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=35mm, height=50mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm height 50mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D35.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=40mm, height=50mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm height 50mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D40.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D4.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D4.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D6.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D6.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D7.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D7.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D8.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D8.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D9.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D9.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D10.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D10.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm +0 +2 +2 +Capacitor_THT +C_Disc_D3.0mm_W1.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D3.0mm_W2.0mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor +C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D3.4mm_W2.1mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D3.8mm_W2.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D4.3mm_W1.9mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D4.7mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D5.0mm_W2.5mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D5.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D5.1mm_W3.2mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D6.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D6.0mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor +C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D11.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D11.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D11.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D12.0mm_W4.4mm_P7.75mm +C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor +C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D12.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D12.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D14.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D14.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D16.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D16.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D4.0mm_H5.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D4.0mm_H7.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D5.0mm_H5.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D5.0mm_H7.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D5.0mm_H11.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D6.3mm_H5.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D6.3mm_H7.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D6.3mm_H11.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D8.0mm_H7.0mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D8.0mm_H11.5mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D10.0mm_H12.5mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D10.0mm_H16.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D10.0mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D12.5mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D12.5mm_H25.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D16.0mm_H25.0mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D16.0mm_H31.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D18.0mm_H35.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.0mm_W2.5mm_P2.50mm +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor +C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W2.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W2.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm +C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor +C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor +0 +4 +2 +Capacitor_THT +C_Rect_L7.0mm_W3.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W4.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W6.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.5mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm +C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor +0 +4 +2 +Capacitor_THT +C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm +C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor +C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor +0 +4 +2 +Capacitor_THT +C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L27.0mm_W9.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor +C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L27.0mm_W9.0mm_P23.00mm +C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor +C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L27.0mm_W11.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor +C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L32.0mm_W15.0mm_P27.00mm +C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor +C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor +0 +2 +2 +Capacitor_THT +DX_5R5HxxxxU_D11.5mm_P10.00mm +CP, Radial series, Radial, pin pitch=10.00mm, diameter=11.5mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf +CP Radial series Radial pin pitch 10.00mm diameter 11.5mm supercapacitor +0 +2 +2 +Capacitor_THT +DX_5R5VxxxxU_D11.5mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, diameter=11.5mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf +CP Radial series Radial pin pitch 5.00mm diameter 11.5mm supercapacitor +0 +2 +2 +Capacitor_THT +DX_5R5VxxxxU_D19.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, diameter=19mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf +CP Radial series Radial pin pitch 5.00mm diameter 19mm supercapacitor +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-08_AVX-J +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-10_AVX-L +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-12_Kemet-R +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm_HandSolder +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-15_AVX-P +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-10_Kemet-I +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-12_Kemet-S +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-18_Kemet-A +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-12_Kemet-T +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-15_AVX-H +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-21_Kemet-B +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-15_Kemet-U +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-20_AVX-F +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-28_Kemet-C +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-20_AVX-U +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm_HandSolder +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-28_AVX-C +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm_HandSolder +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-15_AVX-R +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-20_AVX-M +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-28_AVX-M +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-38_AVX-R +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-15_Kemet-W +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-20_Kemet-V +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-30_AVX-N +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-31_Kemet-D +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-40_Kemet-Y +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-43_Kemet-X +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7360-38_Kemet-E +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm_HandSolder +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-38_AVX-V +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm_HandSolder +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-438_AVX-U +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm_HandSolder +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Connector +Banana_Cliff_FCR7350B_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, black, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana black +0 +1 +1 +Connector +Banana_Cliff_FCR7350G_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, green, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana green +0 +1 +1 +Connector +Banana_Cliff_FCR7350L_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, blue, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana blue +0 +1 +1 +Connector +Banana_Cliff_FCR7350N_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, brown, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana brown +0 +1 +1 +Connector +Banana_Cliff_FCR7350R_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, red, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana red +0 +1 +1 +Connector +Banana_Cliff_FCR7350Y_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, yellow, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana yellow +0 +1 +1 +Connector +Banana_Jack_1Pin +Single banana socket, footprint - 6mm drill +banana socket +0 +1 +1 +Connector +Banana_Jack_2Pin +Dual banana socket, footprint - 2 x 6mm drills +banana socket +0 +2 +2 +Connector +Banana_Jack_3Pin +Triple banana socket, footprint - 3 x 6mm drills +banana socket +0 +3 +3 +Connector +CUI_PD-30 +3 pin connector, PD-30, http://www.cui.com/product/resource/pd-30.pdf +connector 3-pin PD-30 power DIN +0 +4 +4 +Connector +CUI_PD-30S +3-pin nonstandard DIN connector, shielded, PD-30S, http://www.cui.com/product/resource/pd-30s.pdf +connector 3-pin PD-30S power DIN shielded +0 +8 +5 +Connector +CUI_PD-30S_CircularHoles +3-pin nonstandard DIN connector, shielded, PD-30S, http://www.cui.com/product/resource/pd-30s.pdf +connector 3-pin PD-30S power DIN shielded +0 +8 +5 +Connector +CalTest_CT3151 +Right-angle standard banana jack, http://www.caltestelectronics.com/images/attachments/P315100rH_drawing.pdf +banana jack horizontal +0 +4 +1 +Connector +Connector_SFP_and_Cage +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=2227302&DocType=Customer+Drawing&DocLang=English +SFP+ SFP +0 +40 +21 +Connector +DTF13-12Px +http://www.te.com/usa-en/product-DTF13-12PA-G003.html +DEUTSCH DT header 12 pin +0 +12 +12 +Connector +FanPinHeader_1x03_P2.54mm_Vertical +3-pin CPU fan Through hole pin header, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf +pin header 3-pin CPU fan +0 +3 +3 +Connector +FanPinHeader_1x04_P2.54mm_Vertical +4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf +pin header 4-pin CPU fan +0 +4 +4 +Connector +GB042-34S-H10 +http://www.lsmtron.com/pdf/Connector&Antenna_catalog.PDF +34pin SMD connector +0 +34 +34 +Connector +IHI_B6A-PCB-45_Vertical +https://lugsdirect.com/PDF_Webprint/B6A-PCB-45-XX(-X).pdf +connector IHI B6A-PCB-45 +0 +49 +1 +Connector +JWT_A3963_1x02_P3.96mm_Vertical +JWT A3963, 3.96mm pitch Pin head connector (http://www.jwt.com.tw/pro_pdf/A3963.pdf) +connector JWT A3963 pinhead +0 +2 +2 +Connector +Joint-Tech_C5080WR-04P_1x04_P5.08mm_Vertical +C5080 SERIES 90° Wafer, (https://datasheet.lcsc.com/lcsc/1912261836_HR-Joint-Tech-Elec-C5080WR-04P_C477015.pdf) +connector side-entry ATA PATA IDE 5.25 inch floppy drive power +0 +6 +5 +Connector +NS-Tech_Grove_1x04_P2mm_Vertical +https://statics3.seeedstudio.com/images/opl/datasheet/3470130P1.pdf +Grove-1x04 +0 +4 +4 +Connector +OCN_OK-01GM030-04_2x15_P0.4mm_Vertical +Board to board connector, 2x15, 0.4mm pitch, http://www.main-soul.com/datasheet/ocn/connector/Spec_Draw_OK-01.pdf +board-to-board +0 +30 +30 +Connector +SpringContact_Harwin_S1941-46R +7.25mm SMT Multi-directional Spring Contact (T+R), https://cdn.harwin.com/pdfs/S1941R.pdf +spring contact emi emc shield +0 +1 +1 +Connector +Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2030-IDC.pdf +tag connect programming header pogo pins +0 +6 +6 +Connector +Tag-Connect_TC2030-IDC-NL_2x03_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2030-IDC-NL.pdf +tag connect programming header pogo pins +0 +6 +6 +Connector +Tag-Connect_TC2050-IDC-FP_2x05_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2050-IDC-430%20Datasheet.pdf +tag connect programming header pogo pins +0 +10 +10 +Connector +Tag-Connect_TC2050-IDC-NL_2x05_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2050-IDC-NL%20Datasheet.pdf +tag connect programming header pogo pins +0 +10 +10 +Connector +Tag-Connect_TC2050-IDC-NL_2x05_P1.27mm_Vertical_with_bottom_clip +Tag-Connect programming header with bottom courtyard for TC2050-NL Clip board ; https://www.tag-connect.com/wp-content/uploads/bsk-pdf-manager/TC2050-IDC-NL_Datasheet_8.pdf https://www.tag-connect.com/wp-content/uploads/bsk-pdf-manager/TC2050-CLIP_Datasheet_25.pdf +tag connect programming header pogo pins +0 +10 +10 +Connector +Tag-Connect_TC2070-IDC-FP_2x07_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2070-IDC%20Datasheet.pdf +tag connect programming header pogo pins +0 +14 +14 +Connector_AMASS +AMASS_MR30PW-FB_1x03_P3.50mm_Horizontal +Connector XT30 Horizontal PCB Female, https://www.tme.eu/en/Document/5e47640ba39fa492dbd4c0f4c8ae7b93/MR30PW%20SPEC.pdf +RC Connector XT30 +0 +5 +3 +Connector_AMASS +AMASS_MR30PW-M_1x03_P3.50mm_Horizontal +Connector XT30 Horizontal PCB Male, https://www.tme.eu/en/Document/5e47640ba39fa492dbd4c0f4c8ae7b93/MR30PW%20SPEC.pdf +RC Connector XT30 +0 +5 +3 +Connector_AMASS +AMASS_XT30PW-F_1x02_P2.50mm_Horizontal +Connector XT30 Horizontal PCB Female, https://www.tme.eu/en/Document/ce4077e36b79046da520ca73227e15de/XT30PW%20SPEC.pdf +RC Connector XT30 +0 +4 +2 +Connector_AMASS +AMASS_XT30PW-M_1x02_P2.50mm_Horizontal +Connector XT30 Horizontal PCB Male, https://www.tme.eu/en/Document/ce4077e36b79046da520ca73227e15de/XT30PW%20SPEC.pdf +RC Connector XT30 +0 +4 +2 +Connector_AMASS +AMASS_XT30U-F_1x02_P5.0mm_Vertical +Connector XT30 Vertical Cable Female, https://www.tme.eu/en/Document/3cbfa5cfa544d79584972dd5234a409e/XT30U%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT30U-M_1x02_P5.0mm_Vertical +Connector XT30 Vertical Cable Male, https://www.tme.eu/en/Document/3cbfa5cfa544d79584972dd5234a409e/XT30U%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT30UPB-F_1x02_P5.0mm_Vertical +Connector XT30 Vertical PCB Female, https://www.tme.eu/en/Document/4acc913878197f8c2e30d4b8cdc47230/XT30UPB%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT30UPB-M_1x02_P5.0mm_Vertical +Connector XT30 Vertical PCB Male, https://www.tme.eu/en/Document/4acc913878197f8c2e30d4b8cdc47230/XT30UPB%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT60-F_1x02_P7.20mm_Vertical +AMASS female XT60, through hole, vertical, https://www.tme.eu/Document/2d152ced3b7a446066e6c419d84bb460/XT60%20SPEC.pdf +XT60 female vertical +0 +2 +2 +Connector_AMASS +AMASS_XT60-M_1x02_P7.20mm_Vertical +AMASS female XT60, through hole, vertical, https://www.tme.eu/Document/2d152ced3b7a446066e6c419d84bb460/XT60%20SPEC.pdf +XT60 female vertical +0 +2 +2 +Connector_AMASS +AMASS_XT60IPW-M_1x03_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Male, https://www.bto.pl/pdf/08988/XT60IPW-M3.pdf +RC Connector XT60 +0 +5 +3 +Connector_AMASS +AMASS_XT60PW-F_1x02_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Female, https://www.tme.eu/en/Document/9b8d0c5eb7094295f3d3112c214d3ade/XT60PW%20SPEC.pdf +RC Connector XT60 +0 +4 +2 +Connector_AMASS +AMASS_XT60PW-M_1x02_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Female, https://www.tme.eu/en/Document/9b8d0c5eb7094295f3d3112c214d3ade/XT60PW%20SPEC.pdf +RC Connector XT60 +0 +4 +2 +Connector_Amphenol +Amphenol_M8S-03PMMR-SF8001 +M8 Male connector for panel, 90° PCB mount (https://www.amphenolltw.com/2012download/2D%20PDF/03_M%20Series%20Sensor%20Connectors/M8S-XXPMMR-SF8001.pdf) +three-pin M8 +0 +5 +4 +Connector_Audio +Jack_3.5mm_CUI_SJ-3523-SMT_Horizontal +3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cui.com/product/resource/sj-352x-smt-series.pdf) +3.5mm audio cui horizontal jack stereo +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ-3524-SMT_Horizontal +3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cui.com/product/resource/sj-352x-smt-series.pdf) +3.5mm audio cui horizontal jack stereo +0 +4 +4 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3523N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3524N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +4 +4 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3525N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3533NG_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3533NG_Horizontal_CircularHoles +TRS 3.5mm, horizontal, through-hole, , circular holeshttps://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal circular +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3535NG_Horizontal +TRS 3.5mm, horizontal, through-hole, with switch, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3535NG_Horizontal_CircularHoles +TRS 3.5mm, horizontal, through-hole, with switch, circular holes, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal circular +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ2-3593D-SMT_Horizontal +3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cuidevices.com/product/resource/sj2-359x-smt.pdf) +3.5mm audio cui horizontal jack stereo +0 +5 +5 +Connector_Audio +Jack_3.5mm_KoreanHropartsElec_PJ-320D-4A_Horizontal +Korean Hroparts Elec PJ-320D-4A (https://datasheet.lcsc.com/lcsc/1810121716_Korean-Hroparts-Elec-PJ-320D-4A_C95562.pdf) +smt female jack horizontal +0 +4 +4 +Connector_Audio +Jack_3.5mm_Ledino_KB3SPRS_Horizontal +https://www.reichelt.de/index.html?ACTION=7&LA=3&OPEN=0&INDEX=0&FILENAME=C160%252FKB3SPRS.pdf +jack stereo TRS +0 +5 +5 +Connector_Audio +Jack_3.5mm_Lumberg_1503_02_Horizontal +TRS 3.5mm, horizontal, Surface Mount (SMT), https://downloads.lumberg.com/datenblaetter/en/1503_02.pdf +TRS audio jack horizontal +0 +4 +3 +Connector_Audio +Jack_3.5mm_Lumberg_1503_03_Horizontal +TRS 3.5mm, horizontal, Surface Mount (SMT), https://downloads.lumberg.com/datenblaetter/en/1503_03.pdf +TRS audio jack horizontal +0 +5 +4 +Connector_Audio +Jack_3.5mm_Lumberg_1503_07_Horizontal +TRS 3.5mm, horizontal, through-hole, height 5mm, width 6.5mm, https://downloads.lumberg.com/datenblaetter/en/1503_07.pdf +TRS audio jack horizontal +0 +4 +3 +Connector_Audio +Jack_3.5mm_PJ311_Horizontal +PJ311 6pin SMD 3.5mm stereo headphones jack. +headphones jack plug stereo 3.5mm PJ311 +0 +6 +6 +Connector_Audio +Jack_3.5mm_PJ320D_Horizontal +Headphones with microphone connector, 3.5mm, 4 pins (http://www.qingpu-electronics.com/en/products/WQP-PJ320D-72.html) +3.5mm jack mic microphone phones headphones 4pins audio plug +0 +4 +4 +Connector_Audio +Jack_3.5mm_PJ320E_Horizontal +Headphones with microphone connector, 3.5mm, 4 pins (http://www.qingpu-electronics.com/en/products/WQP-PJ320E-177.html) +3.5mm jack mic microphone phones headphones 4pins audio plug +0 +5 +4 +Connector_Audio +Jack_3.5mm_PJ31060-I_Horizontal +PJ31060-I 6pin SMD 3.5mm headphones jack (http://www.china-bsun.com/Product48/1577.html) +headphones jack plug stereo 3.5mm PJ31060-I PJ31060 +0 +6 +6 +Connector_Audio +Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles +TRS 3.5mm, vertical, Thonkiconn, PCB mount, (http://www.qingpu-electronics.com/en/products/WQP-PJ398SM-362.html) +WQP-PJ398SM WQP-PJ301M-12 TRS 3.5mm mono vertical jack thonkiconn qingpu +0 +3 +3 +Connector_Audio +Jack_3.5mm_Switronic_ST-005-G_horizontal +3.5mm horizontal headphones jack, http://akizukidenshi.com/download/ds/switronic/ST-005-G.pdf +Connector Audio Switronic ST-005-G +0 +4 +3 +Connector_Audio +Jack_3.5mm_Technik_TWP-3002_Horizontal +3.5mm Horizontal Waterproof Stereo Headphones Jack, https://www.technik.com.hk/images/pdf_product/WP3002-PA66-A.pdf +audio jack stereo horizontal waterproof +0 +7 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NJ2FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, Non-switching mono jack (T/S), https://www.neutrik.com/en/product/nj2fd-v +neutrik jack vertical +0 +2 +2 +Connector_Audio +Jack_6.35mm_Neutrik_NJ3FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, Non-switching stereo jack (T/R/S), https://www.neutrik.com/en/product/nj3fd-v +neutrik jack vertical +0 +3 +3 +Connector_Audio +Jack_6.35mm_Neutrik_NJ5FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, 2 x switching (normalling) stereo jack (T/TN/R/RN/S), https://www.neutrik.com/en/product/nj5fd-v +neutrik jack vertical +0 +5 +5 +Connector_Audio +Jack_6.35mm_Neutrik_NJ6FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, 3 x switching (normalling) stereo jack (T/TN/R/RN/S/SN), https://www.neutrik.com/en/product/nj6fd-v +neutrik jack vertical +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NJ6TB-V_Vertical +6.35mm (1/4 in) Vertical Jack, 3 x switching (normalling) stereo jack B-gauge type (T/TN/R/RN/S/SN), https://www.neutrik.com/en/product/nj6tb-v +neutrik jack vertical +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HCD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with chrome ferrule and straight PCB pins, https://www.neutrik.com/en/product/nmj4hcd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HFD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with full threaded nose and straight PCB pins, https://www.neutrik.com/en/product/nmj4hfd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HFD3_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with a full threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj4hfd3 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HHD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with a half threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj4hhd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HCD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with chrome ferrule and straight PCB pins, https://www.neutrik.com/en/product/nmj6hcd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HCD3_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with chrome ferrule and offset PCB pins, https://www.neutrik.com/en/product/nmj6hcd3 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD2-AU_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, full threaded nose, straight PCB pins, gold plated contacts, https://www.neutrik.com/en/product/nmj6hfd2-au +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and straight PCB pins, https://www.neutrik.com/en/product/nmj6hfd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD3_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj6hfd3 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD4_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and fishtail PCB pins, https://www.neutrik.com/en/product/nmj6hfd4 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HHD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with half threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj6hhd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ3HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, unswitched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj3hf-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj4hf-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HF_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, fully threaded nose, https://www.neutrik.com/en/product/nrj4hf +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HH-1_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, half threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj4hh-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HH_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, half threaded nose, https://www.neutrik.com/en/product/nrj4hh +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-1-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hf-1-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hf-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, fully threaded nose, https://www.neutrik.com/en/product/nrj6hf-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, fully threaded nose, https://www.neutrik.com/en/product/nrj6hf +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, half threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hh-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, half threaded nose, https://www.neutrik.com/en/product/nrj6hh-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, half threaded nose, https://www.neutrik.com/en/product/nrj6hh +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose, gold plated contacts, efficient chassis ground connection, T+R+S normalling contact, https://www.neutrik.com/en/product/nrj6hm-1-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1-PRE_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose, efficient chassis ground connection, T+R normalling contact, https://www.neutrik.com/en/product/nrj6hm-1-pre +neutrik jack slim +0 +6 +5 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose with efficient chassis ground connection, T+R+S normalling contact, https://www.neutrik.com/en/product/nrj6hm-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ8HC_Horizontal +Stacking Jacks, Mono dual jack, full nose, https://www.neutrik.com/en/product/nsj8hc +neutrik jack stacking +0 +9 +9 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ8HL_Horizontal +Stacking Jacks, Mono dual jack, quick fix nose, https://www.neutrik.com/en/product/nsj8hl +neutrik jack stacking +0 +9 +9 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HC_Horizontal +Stacking Jacks, Stereo dual jack, full nose, https://www.neutrik.com/en/product/nsj12hc +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HF-1_Horizontal +Stacking Jacks, Stereo dual jack, full threaded nose, https://www.neutrik.com/en/product/nsj12hf-1 +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HH-1_Horizontal +Stacking Jacks, Stereo dual jack, half threaded nose, https://www.neutrik.com/en/product/nsj12hh-1 +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HL_Horizontal +Stacking Jacks, Stereo dual jack, quick fix nose, https://www.neutrik.com/en/product/nsj12hl +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj5fi-h-0 +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj5fi-h +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj5fi-v-0 +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj5fi-v +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H-0_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fa-h-0 +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H-DA_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/ncj6fa-h-da +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, https://www.neutrik.com/en/product/ncj6fa-h +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V-0_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fa-v-0 +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V-DA_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/ncj6fa-v-da +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, https://www.neutrik.com/en/product/ncj6fa-v +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj6fi-h-0 +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fi-h +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj6fi-v-0 +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fi-v +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, horizontal PCB mount, https://www.neutrik.com/en/product/ncj9fi-h-0 +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj9fi-h +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, vertical PCB mount, https://www.neutrik.com/en/product/ncj9fi-v-0 +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj9fi-v +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj10fi-h-0 +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj10fi-h +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj10fi-v-0 +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj10fi-v +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah1-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1-DA_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3faah1-da +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH2-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah2-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH2_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah2 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV-0_Vertical +AA Series, 3 pole female receptacle, grounding: without ground/shell contact, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1-0_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav1-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1-DA_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3faav1-da +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV2-0_Vertical +AA Series, 3 pole female receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav2-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV2_Vertical +AA Series, 3 pole female receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav2 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV_Vertical +AA Series, 3 pole female receptacle, grounding: without ground/shell contact, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1-DA_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fah1-da +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2-DA_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fah2-da +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, lateral left PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahl-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahl1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3fahl1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3fahr1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR2-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR2_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3fahr2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1-DA_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fav1-da +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2-DA_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fav2-da +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV_Vertical +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-B_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbh1-b +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-DA_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbh1-da +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-E_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3fbh1-e +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fbh1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-B_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbh2-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-DA_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbh2-da +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-E_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3fbh2-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fbh2 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBHL1_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3fbhl1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-0_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring, no latch, https://www.neutrik.com/en/product/nc3fbv1-0 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-B_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbv1-b +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-DA_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbv1-da +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-B_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbv2-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-DA_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbv2-da +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-SW_Vertical +B Series, 3 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv2-sw +neutrik xlr b +0 +7 +7 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv2 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH-0_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH-1_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah-1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV-0_Vertical +AA Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV-1_Vertical +AA Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav-1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV_Vertical +AA Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAFH-PH_Horizontal +A Series, Chassis connector H female (A series layout), mates with Phoenix MSTB2,5/3-ST, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mafh-ph +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAH-0_Horizontal +A Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mah-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAHL_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3mahl +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAHR_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3mahr +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAH_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mah +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAMH-PH_Horizontal +A Series, Chassis connector Phoenix H male (A series layout), mates with Phoenix MSTB 2,5/3-ST, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mamh-ph +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAV-0_Vertical +A Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, vertical PCB mount, https://www.neutrik.com/en/product/nc3mav-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAV_Vertical +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3mav +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-0_Horizontal +B Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh-0 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-1_Horizontal +B Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh-1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbh-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-E_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3mbh-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHL-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral left PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbhl-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHL_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral left PCB mount, https://www.neutrik.com/en/product/nc3mbhl +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHR-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral right PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbhr-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHR_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral right PCB mount, https://www.neutrik.com/en/product/nc3mbhr +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-0_Vertical +B Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-0 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-1_Vertical +B Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-B_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbv-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-E_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3mbv-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-SW_Vertical +B Series, 3 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-sw +neutrik xlr b +0 +7 +7 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC4FAH-0_Horizontal +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc4fah-0 +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAH_Horizontal +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4fah +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAV-0_Vertical +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc4fav-0 +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAV_Vertical +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4fav +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FBH_Horizontal +B Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4fbh +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FBV_Vertical +B Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4fbv +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MAH_Horizontal +A Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4mah +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MAV_Vertical +A Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4mav +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MBH_Horizontal +B Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4mbh +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MBV_Vertical +B Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4mbv +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH-0_Horizontal +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc5fah-0 +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH-DA_Horizontal +A Series, 5 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc5fah-da +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH_Horizontal +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5fah +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV-DA_Vertical +A Series, 5 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc5fav-da +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV-SW_Vertical +A Series, 5 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, color coding possible, https://www.neutrik.com/en/product/nc5fav-sw +neutrik xlr a +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV_Vertical +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fav +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBH-B_Horizontal +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5fbh-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBH_Horizontal +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5fbh +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV-B_Vertical +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5fbv-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV-SW_Vertical +B Series, 5 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fbv-sw +neutrik xlr b +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV_Vertical +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fbv +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MAH_Horizontal +A Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5mah +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MAV-SW_Vertical +A Series, 5 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mav-sw +neutrik xlr a +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5MAV_Vertical +A Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mav +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBH-B_Horizontal +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5mbh-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBH_Horizontal +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5mbh +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV-B_Vertical +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5mbv-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV-SW_Vertical +B Series, 5 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mbv-sw +neutrik xlr b +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV_Vertical +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mbv +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_speakON-6.35mm_Neutrik_NLJ2MDXX-H_Horizontal +speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, horizontal pcb mount, replaces NLJ2MD-H, https://www.neutrik.com/en/product/nlj2mdxx-h +neutrik speakon combo +0 +2 +2 +Connector_Audio +Jack_speakON-6.35mm_Neutrik_NLJ2MDXX-V_Vertical +speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, vertical pcb mount, replaces NLJ2MD-V, https://www.neutrik.com/en/product/nlj2mdxx-v +neutrik speakon combo +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL2MDXX-H-3_Horizontal +speakON Chassis Connectors, 2 pole chassis connector, gray D-size flange, countersunk thru holes, horizontal PCB, replaces NL2MD-H, https://www.neutrik.com/en/product/nl2mdxx-h-3 +neutrik speakon +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL2MDXX-V_Vertical +speakON Chassis Connectors, 2 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, replaces NL2MD-V, https://www.neutrik.com/en/product/nl2mdxx-v +neutrik speakon +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-H-2_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), horizontal PCB mount, replaces NL4MD-H-2, https://www.neutrik.com/en/product/nl4mdxx-h-2 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-H-3_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), horizontal PCB mount, replaces NL4MD-H, NL4MD-H-1, NL4MD-H-3, https://www.neutrik.com/en/product/nl4mdxx-h-3 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-V-2_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), vertical PCB mount, replaces NL4MD-V-2, https://www.neutrik.com/en/product/nl4mdxx-v-2 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-V-3_Vertical +speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), vertical PCB mount, replaces NL4MD-V-1, https://www.neutrik.com/en/product/nl4mdxx-v-3 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-V_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, replaces NL4MD-V, NL4MD-V-R, NL4MD-V-S, https://www.neutrik.com/en/product/nl4mdxx-v +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL8MDXX-V-3_Vertical +speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, self tapping screw holes (A-screw), vertical PCB mount, replaces NL8MD-V-1, https://www.neutrik.com/en/product/nl8mdxx-v-3 +neutrik speakon +0 +8 +8 +Connector_Audio +Jack_speakON_Neutrik_NL8MDXX-V_Vertical +speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, countersunk thru holes, vertical PCB mount, replaces NL8MD-V, https://www.neutrik.com/en/product/nl8mdxx-v +neutrik speakon +0 +8 +8 +Connector_Audio +Jack_speakON_Neutrik_NLT4MD-V_Vertical +STX Series, 4 pole male chassis connector, metal housing, vertical PCB mount, self tapping screw holes (A-screw), https://www.neutrik.com/en/product/nlt4md-v +neutrik speakon stx +0 +4 +4 +Connector_Audio +MiniXLR-5_Switchcraft_TRAPC_Horizontal +http://www.switchcraft.com/ProductSummary.aspx?Parent=620 http://www.switchcraft.com/Drawings/TRAPC_X-TRASM_X_SERIES_CD.PDF +THT Mini XLR 5Pin right angle +0 +5 +5 +Connector_Audio +Plug_3.5mm_CUI_SP-3541 +4 contacts, 3.5mm audio plug, https://www.cuidevices.com/product/resource/pdf/sp-3541.pdf +3.5mm plug TRRS +0 +4 +4 +Connector_BarrelJack +BarrelJack_CLIFF_FC681465S_SMT_Horizontal +Surface-mount DC Barrel Jack, https://www.cliffuk.co.uk/products/dcconnectors/FC681465S.pdf +Power Jack SMT +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-036AH-SMT_Horizontal +Surface-mount DC Barrel Jack, http://www.cui.com/product/resource/pj-036ah-smt.pdf +Power Jack SMT +0 +3 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-063AH_Horizontal +Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf +barrel jack cui dc power +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-063AH_Horizontal_CircularHoles +Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf +barrel jack cui dc power +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-079BH_Horizontal +Barrel Jack, 2.5mm ID, 5.5mm OD, 24V, 5A, switch, https://www.cui.com/product/resource/pj-079bh.pdf +barrel jack cui dc power +0 +5 +4 +Connector_BarrelJack +BarrelJack_CUI_PJ-102AH_Horizontal +Thin-pin DC Barrel Jack, https://cdn-shop.adafruit.com/datasheets/21mmdcjackDatasheet.pdf +Power Jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_GCT_DCJ200-10-A_Horizontal +Barrel jack connector (5.5 mm outer diameter, 2.05 inner diameter ), https://gct.co/files/drawings/dcj200-10.pdf +connector barrel jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_Horizontal +DC Barrel Jack +Power Jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_Kycon_KLDX-0202-xC_Horizontal +DC Barrel Jack 2mm or 2.5mm center pin, https://www.kycon.com/Pub_Eng_Draw/KLDX-0202-AC%20&%20BC.pdf +power jack 2mm 2.5mm KLDX-0202-BC KLDX-0202-AC +0 +3 +3 +Connector_BarrelJack +BarrelJack_SwitchcraftConxall_RAPC10U_Horizontal +DC Power Jack, 13A, 24V, Panel Mount,Through-hole, https://www.switchcraft.com/Drawings/RAPC10U_CD.pdf +barreljack switchcraftconxall dc power +0 +2 +2 +Connector_BarrelJack +BarrelJack_Wuerth_694102107102_1.0x3.9mm +Wuerth Elektronik barrel jack connector, SMD, 3.9mm OD, 1.0mm ID, with switch, 18V, 5A, dimensions: 9.3 x 8 x 5.3 mm (L x W x H), datasheet: https://www.farnell.com/datasheets/2130962.pdf +barrel jack Wuerth Elektronik 694102107102 +0 +4 +3 +Connector_BarrelJack +BarrelJack_Wuerth_694103107102_1.35x3.9mm +Wuerth Elektronik barrel jack connector, SMD, 3.9mm OD, 1.35mm ID, with switch, 18V, 5A, dimensions: 9.3 x 8 x 5.3 mm (L x W x H), datasheet: https://www.we-online.com/components/products/datasheet/694103107102.pdf +barrel jack Wuerth Elektronik 694103107102 +0 +4 +3 +Connector_BarrelJack +BarrelJack_Wuerth_694106106102_2.0x5.5mm +Wuerth Elektronik 694106106102 Barrel Jack, 2.0x5.5mm, https://www.we-online.com/components/products/datasheet/694106106102.pdf +barrel jack Wuerth Elektronik 694106106102 +0 +4 +3 +Connector_BarrelJack +BarrelJack_Wuerth_694108106102_2.5x5.5mm +Wuerth Elektronik 694108106102 Barrel Jack, 2.5x5.5mm, https://www.we-online.com/components/products/datasheet/694106106102.pdf +barrel jack Wuerth Elektronik 694108106102 +0 +4 +3 +Connector_BarrelJack +BarrelJack_Wuerth_6941xx301002 +Wuerth electronics barrel jack connector (5.5mm outher diameter, inner diameter 2.05mm or 2.55mm depending on exact order number), See: http://katalog.we-online.de/em/datasheet/6941xx301002.pdf +connector barrel jack +0 +3 +3 +Connector_Card +CF-Card_3M_N7E50-A516xx-30 +Compact Flash Card connector, polarization inverse (https://multimedia.3m.com/mws/media/22424O/3mtm-cf-card-header-type-i-low-profile-surface-mount-ts0747.pdf) +connector cf +0 +54 +50 +Connector_Card +CF-Card_3M_N7E50-E516xx-30 +Compact Flash Card connector, normal polarization (https://multimedia.3m.com/mws/media/22424O/3mtm-cf-card-header-type-i-low-profile-surface-mount-ts0747.pdf) +connector cf +0 +54 +50 +Connector_Card +SD-SIM_microSD-microSIM_Molex_104168-1620 +microSD and microSIM connector, https://www.molex.com/pdm_docs/sd/1041681620_sd.pdf +Combo Connector microSD and microSIM +0 +25 +18 +Connector_Card +SD_Hirose_DM1AA_SF_PEJ82 +SD, SMD, top-mount, push-push (https://www.hirose.com/product/document?clcode=CL0609-0004-8-82&productname=DM1AA-SF-PEJ(82)&series=DM1&documenttype=2DDrawing&lang=en&documentid=0000915301) +SD card connector +0 +16 +13 +Connector_Card +SD_Kyocera_145638009211859+ +SD Card Connector, Normal Type, Outer Tail, Without Ejector (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638009511859+ +SD Card Connector, Normal Type, Outer Tail, Spring Eject Type (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638109211859+ +SD Card Connector, Reverse Type, Outer Tail, Without Ejector (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638109511859+ +SD Card Connector, Reverse Type, Outer Tail, Spring Eject Type (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_TE_2041021 +SD card connector, top mount, SMT (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2041021%7FB%7Fpdf%7FEnglish%7FENG_CD_2041021_B_C_2041021_B.pdf%7F2041021-4) +sd card +0 +15 +12 +Connector_Card +microSD_HC_Hirose_DM3AT-SF-PEJM5 +Micro SD, SMD, right-angle, push-pull (https://www.hirose.com/product/en/download_file/key_name/DM3AT-SF-PEJM5/category/Drawing%20(2D)/doc_file_id/44099/?file_category_id=6&item_id=06090031000&is_series=) +Micro SD +0 +14 +11 +Connector_Card +microSD_HC_Hirose_DM3BT-DSF-PEJS +Micro SD, SMD, reverse on-board, right-angle, push-pull (https://www.hirose.com/product/en/download_file/key_name/DM3BT-DSF-PEJS/category/Drawing%20(2D)/doc_file_id/44097/?file_category_id=6&item_id=06090029900&is_series=) +Micro SD +0 +16 +11 +Connector_Card +microSD_HC_Hirose_DM3D-SF +Micro SD, SMD, right-angle, push-pull (https://media.digikey.com/PDF/Data%20Sheets/Hirose%20PDFs/DM3D-SF.pdf) +Micro SD +0 +14 +11 +Connector_Card +microSD_HC_Molex_47219-2001 +1.10mm Pitch microSD Card Connector, Hinge Type, https://www.molex.com/pdm_docs/sd/472192001_sd.pdf +Micro SD +0 +12 +9 +Connector_Card +microSD_HC_Molex_104031-0811 +1.10mm Pitch microSD Memory Card Connector, Surface Mount, Push-Pull Type, 1.42mm Height, with Detect Switch (https://www.molex.com/pdm_docs/sd/1040310811_sd.pdf) +microSD SD molex +0 +14 +11 +Connector_Card +microSD_HC_Wuerth_693072010801 +http://katalog.we-online.de/em/datasheet/693072010801.pdf +Micro SD Wuerth Wurth Würth +0 +12 +9 +Connector_Card +microSIM_JAE_SF53S006VCBR2000 +micro SIM card connector, 6pos., 1.45mm height, Push-pull type, https://www.jae.com/direct/topics/topics_file_download/topics_id=68883&ext_no=06 +microSIM GSM Card +0 +14 +7 +Connector_Coaxial +BNC_Amphenol_031-5539_Vertical +BNC coaxial connector vertical, Amphenol 031-71059, https://www.amphenolrf.com/library/download/link/link_id/594427/parent/031-5539/ +BNC Amphenol Vertical +0 +4 +2 +Connector_Coaxial +BNC_Amphenol_031-6575_Horizontal +dual independently isolated BNC plug (https://www.amphenolrf.com/downloads/dl/file/id/2980/product/644/031_6575_customer_drawing.pdf) +Dual BNC Amphenol Horizontal +0 +6 +4 +Connector_Coaxial +BNC_Amphenol_B6252HB-NPP3G-50_Horizontal +http://www.farnell.com/datasheets/612848.pdf +BNC Amphenol Horizontal +0 +4 +2 +Connector_Coaxial +BNC_PanelMountable_Vertical +Panel-mountable BNC connector mounted through PCB, vertical +BNC connector +0 +2 +2 +Connector_Coaxial +BNC_TEConnectivity_1478035_Horizontal +BNC RF Interface, PCB mount 4 pin, Right Angle, Bayonet, 50Ohm, 4GHz, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1478035%7FB1%7Fpdf%7FEnglish%7FENG_CD_1478035_B1.pdf%7F1-1478035-0 +BNC RF interface bayonet 50ohm +0 +5 +2 +Connector_Coaxial +BNC_TEConnectivity_1478204_Vertical +BNC female PCB mount 4 pin straight chassis connector http://www.te.com/usa-en/product-1-1478204-0.html +BNC female PCB mount 4 pin straight chassis connector +0 +5 +2 +Connector_Coaxial +BNC_Win_364A2x95_Horizontal +Dual front isolated BNC plug (https://www.winconn.com/wp-content/uploads/364A2595.pdf) +Dual BNC Horizontal Isolated +0 +6 +3 +Connector_Coaxial +CoaxialSwitch_Hirose_MS-156C3_Horizontal +Subminiature Coaxial Switch 1.35mm High, DC to 11GHz +Switch Coaxial RF +0 +12 +3 +Connector_Coaxial +MMCX_Molex_73415-0961_Horizontal_0.8mm-PCB +Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf +Molex MMCX Horizontal Coaxial +0 +3 +2 +Connector_Coaxial +MMCX_Molex_73415-0961_Horizontal_1.0mm-PCB +Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf +Molex MMCX Horizontal Coaxial +0 +3 +2 +Connector_Coaxial +MMCX_Molex_73415-0961_Horizontal_1.6mm-PCB +Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf +Molex MMCX Horizontal Coaxial +0 +3 +2 +Connector_Coaxial +MMCX_Molex_73415-1471_Vertical +http://www.molex.com/pdm_docs/sd/734151471_sd.pdf +Molex MMCX Coaxial Connector 50 ohms Female Jack Vertical THT +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_901-143_Horizontal + Amphenol RF 901-143 https://www.amphenolrf.com/library/download/link/link_id/585682 +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_901-144_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/7023/product/3103/901_144_customer_drawing.pdf +SMA THT Female Jack Vertical +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-10_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/4007/product/2974/132134_10_customer_drawing.pdf +SMA SMD Female Jack Vertical +0 +3 +2 +Connector_Coaxial +SMA_Amphenol_132134-11_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/3406/product/2975/132134_11_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-14_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/1793/product/2976/132134_14_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-16_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/1141/product/2978/132134_16_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132203-12_Horizontal +https://www.amphenolrf.com/media/downloads/1769/132203-12.pdf +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132289_EdgeMount +http://www.amphenolrf.com/132289.html +SMA +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132291-12_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/1688/product/3020/132291_12_customer_drawing.pdf +SMA THT Female Jack Vertical Bulkhead +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132291_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/3222/product/2918/132291_customer_drawing.pdf +SMA THT Female Jack Vertical Bulkhead +0 +5 +2 +Connector_Coaxial +SMA_Molex_73251-1153_EdgeMount_Horizontal +Molex SMA RF Connectors, Edge Mount, (http://www.molex.com/pdm_docs/sd/732511150_sd.pdf) +sma edge +0 +11 +2 +Connector_Coaxial +SMA_Molex_73251-2120_EdgeMount_Horizontal +Molex SMA RF Connector, Edge Mount, (http://www.molex.com/pdm_docs/sd/732512120_sd.pdf) +sma edge +0 +7 +2 +Connector_Coaxial +SMA_Molex_73251-2200_Horizontal +https://www.molex.com/webdocs/datasheets/pdf/en-us/0732512200_RF_COAX_CONNECTORS.pdf +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Samtec_SMA-J-P-H-ST-EM1_EdgeMount +Connector SMA, 0Hz to 20GHz, 50Ohm, Edge Mount (http://suddendocs.samtec.com/prints/sma-j-p-x-st-em1-mkt.pdf) +SMA Straight Samtec Edge Mount +0 +5 +2 +Connector_Coaxial +SMA_Wurth_60312102114405_Vertical +Würth WR-SMA PCB SMT Jack, Vertical (https://www.we-online.com/components/products/datasheet/60312102114405.pdf) +Coaxial Connector 50 ohms Female +0 +3 +2 +Connector_Coaxial +SMA_Wurth_60312002114503_Vertical +https://www.we-online.de/katalog/datasheet/60312002114503.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMB_Jack_Vertical +SMB pcb mounting jack +SMB Jack Striaght +0 +5 +2 +Connector_Coaxial +U.FL_Hirose_U.FL-R-SMT-1_Vertical +Hirose U.FL Coaxial https://www.hirose.com/product/en/products/U.FL/U.FL-R-SMT-1%2810%29/ +Hirose U.FL Coaxial +0 +3 +2 +Connector_Coaxial +U.FL_Molex_MCRF_73412-0110_Vertical +Molex Microcoaxial RF Connectors (MCRF), mates Hirose U.FL, (http://www.molex.com/pdm_docs/sd/734120110_sd.pdf) +mcrf hirose ufl u.fl microcoaxial +0 +4 +2 +Connector_Coaxial +WR-MMCX_Wuerth_66012102111404_Vertical +Würth WR-MMCX PCB SMT Jack, Vertical (https://www.we-online.com/components/products/datasheet/66012102111404.pdf) +Coaxial Connector 50 ohms Female +0 +3 +2 +Connector_Coaxial +WR-MMCX_Wuerth_66011102111302_Horizontal +Würth WR-MMCX PCB SMT Jack, Horizontal (https://www.we-online.com/components/products/datasheet/66011102111302.pdf) +Coaxial Connector 50 ohms Female +0 +7 +2 +Connector_DIN +DIN41612_B2_2x8_Female_Vertical_THT +DIN41612 connector, type B/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +16 +16 +Connector_DIN +DIN41612_B2_2x8_Male_Horizontal_THT +DIN41612 connector, type B/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +16 +16 +Connector_DIN +DIN41612_B2_2x16_Female_Vertical_THT +DIN41612 connector, type B/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +32 +32 +Connector_DIN +DIN41612_B2_2x16_Male_Horizontal_THT +DIN41612 connector, type B/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +32 +32 +Connector_DIN +DIN41612_B3_2x5_Female_Vertical_THT +DIN41612 connector, type B/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +10 +10 +Connector_DIN +DIN41612_B3_2x5_Male_Horizontal_THT +DIN41612 connector, type B/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +10 +10 +Connector_DIN +DIN41612_B3_2x10_Female_Vertical_THT +DIN41612 connector, type B/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +20 +20 +Connector_DIN +DIN41612_B3_2x10_Male_Horizontal_THT +DIN41612 connector, type B/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +20 +20 +Connector_DIN +DIN41612_B_1x32_Female_Vertical_THT +DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_1x32_Male_Horizontal_THT +DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_2x16_Female_Vertical_THT +DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_2x16_Male_Horizontal_THT +DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_2x32_Female_Vertical_THT +DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +64 +64 +Connector_DIN +DIN41612_B_2x32_Male_Horizontal_THT +DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +64 +64 +Connector_DIN +DIN41612_C2_2x16_Female_Vertical_THT +DIN41612 connector, type C/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +32 +32 +Connector_DIN +DIN41612_C2_2x16_Male_Horizontal_THT +DIN41612 connector, type C/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +32 +32 +Connector_DIN +DIN41612_C2_3x16_Female_Vertical_THT +DIN41612 connector, type C/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +48 +48 +Connector_DIN +DIN41612_C2_3x16_Male_Horizontal_THT +DIN41612 connector, type C/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +48 +48 +Connector_DIN +DIN41612_C3_2x10_Female_Vertical_THT +DIN41612 connector, type C/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +20 +20 +Connector_DIN +DIN41612_C3_2x10_Male_Horizontal_THT +DIN41612 connector, type C/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +20 +20 +Connector_DIN +DIN41612_C3_3x10_Female_Vertical_THT +DIN41612 connector, type C/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +30 +30 +Connector_DIN +DIN41612_C3_3x10_Male_Horizontal_THT +DIN41612 connector, type C/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +30 +30 +Connector_DIN +DIN41612_C_1x32_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_1x32_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x16_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x16_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x32_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +64 +64 +Connector_DIN +DIN41612_C_2x32_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +64 +64 +Connector_DIN +DIN41612_C_3x16_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +48 +48 +Connector_DIN +DIN41612_C_3x16_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +48 +48 +Connector_DIN +DIN41612_C_3x32_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +96 +96 +Connector_DIN +DIN41612_C_3x32_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +96 +96 +Connector_DIN +DIN41612_D_2x8_Female_Vertical_THT +DIN41612 connector, type D, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +16 +16 +Connector_DIN +DIN41612_D_2x8_Male_Horizontal_THT +DIN41612 connector, type D, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +16 +16 +Connector_DIN +DIN41612_D_2x16_Female_Vertical_THT +DIN41612 connector, type D, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +32 +32 +Connector_DIN +DIN41612_D_2x16_Male_Horizontal_THT +DIN41612 connector, type D, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_RowsAC_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_RowsAC_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_3x16_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +48 +48 +Connector_DIN +DIN41612_E_3x16_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +48 +48 +Connector_DIN +DIN41612_F_2x16_Female_Vertical_THT +DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_Male_Horizontal_THT +DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_RowsZD_Female_Vertical_THT +DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_RowsZD_Male_Horizontal_THT +DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_3x16_Female_Vertical_THT +DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +48 +48 +Connector_DIN +DIN41612_F_3x16_Male_Horizontal_THT +DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +48 +48 +Connector_DIN +DIN41612_Q2_2x16_Female_Horizontal_THT +DIN41612 connector, type Q/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/2 +0 +32 +32 +Connector_DIN +DIN41612_Q2_2x16_Male_Vertical_THT +DIN41612 connector, type Q/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/2 +0 +32 +32 +Connector_DIN +DIN41612_Q3_2x10_Female_Horizontal_THT +DIN41612 connector, type Q/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/3 +0 +20 +20 +Connector_DIN +DIN41612_Q3_2x10_Male_Vertical_THT +DIN41612 connector, type Q/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/3 +0 +20 +20 +Connector_DIN +DIN41612_Q_2x32_Female_Horizontal_THT +DIN41612 connector, type Q, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q +0 +64 +64 +Connector_DIN +DIN41612_Q_2x32_Male_Vertical_THT +DIN41612 connector, type Q, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q +0 +64 +64 +Connector_DIN +DIN41612_R2_2x16_Female_Horizontal_THT +DIN41612 connector, type R/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +32 +32 +Connector_DIN +DIN41612_R2_2x16_Male_Vertical_THT +DIN41612 connector, type R/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +32 +32 +Connector_DIN +DIN41612_R2_3x16_Female_Horizontal_THT +DIN41612 connector, type R/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +48 +48 +Connector_DIN +DIN41612_R2_3x16_Male_Vertical_THT +DIN41612 connector, type R/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +48 +48 +Connector_DIN +DIN41612_R3_2x10_Female_Horizontal_THT +DIN41612 connector, type R/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +20 +20 +Connector_DIN +DIN41612_R3_2x10_Male_Vertical_THT +DIN41612 connector, type R/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +20 +20 +Connector_DIN +DIN41612_R3_3x10_Female_Horizontal_THT +DIN41612 connector, type R/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +30 +30 +Connector_DIN +DIN41612_R3_3x10_Male_Vertical_THT +DIN41612 connector, type R/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +30 +30 +Connector_DIN +DIN41612_R_1x32_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_1x32_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x16_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x16_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x32_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +64 +64 +Connector_DIN +DIN41612_R_2x32_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +64 +64 +Connector_DIN +DIN41612_R_3x16_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +48 +48 +Connector_DIN +DIN41612_R_3x16_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +48 +48 +Connector_DIN +DIN41612_R_3x32_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +96 +96 +Connector_DIN +DIN41612_R_3x32_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +96 +96 +Connector_Dsub +DSUB-9_Female_EdgeMount_P2.77mm +9-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Vertical_P2.77x2.84mm +9-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Vertical_P2.77x2.84mm_MountingHoles +9-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_EdgeMount_P2.77mm +9-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Vertical_P2.77x2.84mm +9-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Vertical_P2.77x2.84mm_MountingHoles +9-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 25mm +0 +11 +10 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Female_Vertical_P2.29x1.98mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Male_Vertical_P2.29x1.98mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 25mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_EdgeMount_P2.77mm +15-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Vertical_P2.77x2.84mm +15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Vertical_P2.77x2.84mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_EdgeMount_P2.77mm +15-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Vertical_P2.77x2.84mm +15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Vertical_P2.77x2.84mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-25_Female_EdgeMount_P2.77mm +25-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Vertical_P2.77x2.84mm +25-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Vertical_P2.77x2.84mm_MountingHoles +25-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_EdgeMount_P2.77mm +25-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Vertical_P2.77x2.84mm +25-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Vertical_P2.77x2.84mm_MountingHoles +25-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Female_Vertical_P2.29x1.98mm_MountingHoles +26-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Male_Vertical_P2.29x1.98mm_MountingHoles +26-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-37_Female_EdgeMount_P2.77mm +37-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Vertical_P2.77x2.84mm +37-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Vertical_P2.77x2.84mm_MountingHoles +37-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_EdgeMount_P2.77mm +37-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Vertical_P2.77x2.84mm +37-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Vertical_P2.77x2.84mm_MountingHoles +37-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Female_Vertical_P2.29x1.98mm_MountingHoles +44-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Male_Vertical_P2.29x1.98mm_MountingHoles +44-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x2.54mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x2.54mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Female_Vertical_P2.41x1.98mm_MountingHoles +62-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.41x1.98mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector straight vertical THT female pitch 2.41x1.98mm mounting holes distance 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x2.54mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x2.54mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Male_Vertical_P2.41x1.98mm_MountingHoles +62-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.41x1.98mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector straight vertical THT male pitch 2.41x1.98mm mounting holes distance 63.5mm +0 +64 +63 +Connector_FFC-FPC +Hirose_FH12-6S-0.5SH_1x06-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-6S-0.5SH, 6 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +8 +7 +Connector_FFC-FPC +Hirose_FH12-8S-0.5SH_1x08-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-8S-0.5SH, 8 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +10 +9 +Connector_FFC-FPC +Hirose_FH12-10S-0.5SH_1x10-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-10S-0.5SH, 10 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +12 +11 +Connector_FFC-FPC +Hirose_FH12-11S-0.5SH_1x11-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-11S-0.5SH, 11 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +13 +12 +Connector_FFC-FPC +Hirose_FH12-12S-0.5SH_1x12-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-12S-0.5SH, 12 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +14 +13 +Connector_FFC-FPC +Hirose_FH12-13S-0.5SH_1x13-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-13S-0.5SH, 13 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +15 +14 +Connector_FFC-FPC +Hirose_FH12-14S-0.5SH_1x14-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-14S-0.5SH, 14 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +16 +15 +Connector_FFC-FPC +Hirose_FH12-15S-0.5SH_1x15-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-15S-0.5SH, 15 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +17 +16 +Connector_FFC-FPC +Hirose_FH12-16S-0.5SH_1x16-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-16S-0.5SH, 16 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +18 +17 +Connector_FFC-FPC +Hirose_FH12-17S-0.5SH_1x17-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-17S-0.5SH, 17 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +19 +18 +Connector_FFC-FPC +Hirose_FH12-18S-0.5SH_1x18-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-18S-0.5SH, 18 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +20 +19 +Connector_FFC-FPC +Hirose_FH12-19S-0.5SH_1x19-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-19S-0.5SH, 19 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +21 +20 +Connector_FFC-FPC +Hirose_FH12-20S-0.5SH_1x20-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-20S-0.5SH, 20 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +22 +21 +Connector_FFC-FPC +Hirose_FH12-22S-0.5SH_1x22-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-22S-0.5SH, 22 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +24 +23 +Connector_FFC-FPC +Hirose_FH12-24S-0.5SH_1x24-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-24S-0.5SH, 24 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +26 +25 +Connector_FFC-FPC +Hirose_FH12-25S-0.5SH_1x25-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-25S-0.5SH, 25 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +27 +26 +Connector_FFC-FPC +Hirose_FH12-26S-0.5SH_1x26-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-26S-0.5SH, 26 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +28 +27 +Connector_FFC-FPC +Hirose_FH12-28S-0.5SH_1x28-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-28S-0.5SH, 28 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +30 +29 +Connector_FFC-FPC +Hirose_FH12-30S-0.5SH_1x30-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-30S-0.5SH, 30 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +32 +31 +Connector_FFC-FPC +Hirose_FH12-32S-0.5SH_1x32-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-32S-0.5SH, 32 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +34 +33 +Connector_FFC-FPC +Hirose_FH12-33S-0.5SH_1x33-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-33S-0.5SH, 33 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +35 +34 +Connector_FFC-FPC +Hirose_FH12-34S-0.5SH_1x34-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-34S-0.5SH, 34 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +36 +35 +Connector_FFC-FPC +Hirose_FH12-35S-0.5SH_1x35-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-35S-0.5SH, 35 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +37 +36 +Connector_FFC-FPC +Hirose_FH12-36S-0.5SH_1x36-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-36S-0.5SH, 36 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +38 +37 +Connector_FFC-FPC +Hirose_FH12-40S-0.5SH_1x40-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-40S-0.5SH, 40 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +42 +41 +Connector_FFC-FPC +Hirose_FH12-45S-0.5SH_1x45-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-45S-0.5SH, 45 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +47 +46 +Connector_FFC-FPC +Hirose_FH12-50S-0.5SH_1x50-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-50S-0.5SH, 50 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +52 +51 +Connector_FFC-FPC +Hirose_FH12-53S-0.5SH_1x53-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-53S-0.5SH, 53 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +55 +54 +Connector_FFC-FPC +Hirose_FH26-13S-0.3SHW_2Rows-13Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-13S-0.3SHW, 13 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +15 +14 +Connector_FFC-FPC +Hirose_FH26-15S-0.3SHW_2Rows-15Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-15S-0.3SHW, 15 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +17 +16 +Connector_FFC-FPC +Hirose_FH26-17S-0.3SHW_2Rows-17Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-17S-0.3SHW, 17 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +19 +18 +Connector_FFC-FPC +Hirose_FH26-19S-0.3SHW_2Rows-19Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-19S-0.3SHW, 19 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +21 +20 +Connector_FFC-FPC +Hirose_FH26-21S-0.3SHW_2Rows-21Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-21S-0.3SHW, 21 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +23 +22 +Connector_FFC-FPC +Hirose_FH26-23S-0.3SHW_2Rows-23Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-23S-0.3SHW, 23 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +25 +24 +Connector_FFC-FPC +Hirose_FH26-25S-0.3SHW_2Rows-25Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-25S-0.3SHW, 25 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +27 +26 +Connector_FFC-FPC +Hirose_FH26-27S-0.3SHW_2Rows-27Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-27S-0.3SHW, 27 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +29 +28 +Connector_FFC-FPC +Hirose_FH26-29S-0.3SHW_2Rows-29Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-29S-0.3SHW, 29 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +31 +30 +Connector_FFC-FPC +Hirose_FH26-31S-0.3SHW_2Rows-31Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-31S-0.3SHW, 31 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +33 +32 +Connector_FFC-FPC +Hirose_FH26-33S-0.3SHW_2Rows-33Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-33S-0.3SHW, 33 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +35 +34 +Connector_FFC-FPC +Hirose_FH26-35S-0.3SHW_2Rows-35Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-35S-0.3SHW, 35 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +37 +36 +Connector_FFC-FPC +Hirose_FH26-37S-0.3SHW_2Rows-37Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-37S-0.3SHW, 37 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +39 +38 +Connector_FFC-FPC +Hirose_FH26-39S-0.3SHW_2Rows-39Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-39S-0.3SHW, 39 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +41 +40 +Connector_FFC-FPC +Hirose_FH26-41S-0.3SHW_2Rows-41Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-41S-0.3SHW, 41 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +43 +42 +Connector_FFC-FPC +Hirose_FH26-45S-0.3SHW_2Rows-45Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-45S-0.3SHW, 45 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +47 +46 +Connector_FFC-FPC +Hirose_FH26-51S-0.3SHW_2Rows-51Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-51S-0.3SHW, 51 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +53 +52 +Connector_FFC-FPC +Hirose_FH26-55S-0.3SHW_2Rows-55Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-55S-0.3SHW, 55 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +57 +56 +Connector_FFC-FPC +Hirose_FH26-57S-0.3SHW_2Rows-57Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-57S-0.3SHW, 57 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +59 +58 +Connector_FFC-FPC +Hirose_FH26-61S-0.3SHW_2Rows-61Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-61S-0.3SHW, 61 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +63 +62 +Connector_FFC-FPC +Hirose_FH26-71S-0.3SHW_2Rows-71Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-71S-0.3SHW, 71 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +73 +72 +Connector_FFC-FPC +Hirose_FH41-30S-0.5SH_1x30_1MP_1SH_P0.5mm_Horizontal +Hirose FH41, FFC/FPC connector, FH41-30S-0.5SH, 30 Pins per row (https://www.hirose.com/fr/product/document?clcode=CL0580-2218-5-05&productname=FH41-30S-0.5SH(05)&series=FH41&documenttype=2DDrawing&lang=fr&documentid=0001001704) +connector Hirose FH41 horizontal +0 +38 +32 +Connector_FFC-FPC +JAE_FF0825SA1_2Rows-25Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0825SA1, 25 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +25 +25 +Connector_FFC-FPC +JAE_FF0829SA1_2Rows-29Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0829SA1, 29 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +29 +29 +Connector_FFC-FPC +JAE_FF0841SA1_2Rows-41Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0841SA1, 41 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +41 +41 +Connector_FFC-FPC +JAE_FF0851SA1_2Rows-51Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0851SA1, 51 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +51 +51 +Connector_FFC-FPC +JAE_FF0871SA1_2Rows-71Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0871SA1, 71 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +71 +71 +Connector_FFC-FPC +JAE_FF0881SA1_2Rows-81Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0881SA1, 81 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +81 +81 +Connector_FFC-FPC +Jushuo_AFC07-S06FCA-00_1x6-1MP_P0.50_Horizontal +Jushuo AFC07, FFC/FPC connector, AFC07-S06FCA-00, 6 Pins per row (https://datasheet.lcsc.com/lcsc/1811040204_JUSHUO-AFC07-S32FCC-00_C11061.pdf) +connector jushuo horizontal +0 +8 +7 +Connector_FFC-FPC +Jushuo_AFC07-S24FCA-00_1x24-1MP_P0.50_Horizontal +Jushuo AFC07, FFC/FPC connector, AFC07-S24FCA-00, 24 Pins per row (https://datasheet.lcsc.com/lcsc/1811040204_JUSHUO-AFC07-S32FCC-00_C11061.pdf) +connector jushuo horizontal +0 +26 +25 +Connector_FFC-FPC +Molex_52559-3652_2x18-1MP_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC, 52559-3652, 36 Circuits (https://www.molex.com/pdm_docs/sd/525593652_sd.pdf) +connector Molex top entry +0 +40 +37 +Connector_FFC-FPC +Molex_54132-5033_1x50-1MP_P0.5mm_Horizontal +Molex FFC/FPC connector, 50 bottom-side contacts, 0.5mm pitch, 2.0mm height, https://www.molex.com/pdm_docs/sd/541325033_sd.pdf +FFC FPC +0 +54 +51 +Connector_FFC-FPC +Molex_54548-1071_1x10-1MP_P0.5mm_Horizontal +Molex FFC/FPC connector, 10 bottom-side contacts, 0.5mm pitch, 1.2mm height, https://www.molex.com/pdm_docs/sd/545481071_sd.pdf +FFC FPC connector +0 +12 +11 +Connector_FFC-FPC +Molex_200528-0040_1x04-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0040, 4 Circuits (https://www.molex.com/pdm_docs/sd/2005280040_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +6 +5 +Connector_FFC-FPC +Molex_200528-0050_1x05-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0050, 5 Circuits (https://www.molex.com/pdm_docs/sd/2005280050_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +7 +6 +Connector_FFC-FPC +Molex_200528-0060_1x06-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0060, 6 Circuits (https://www.molex.com/pdm_docs/sd/2005280060_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +8 +7 +Connector_FFC-FPC +Molex_200528-0070_1x07-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0070, 7 Circuits (https://www.molex.com/pdm_docs/sd/2005280070_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +9 +8 +Connector_FFC-FPC +Molex_200528-0080_1x08-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0080, 8 Circuits (https://www.molex.com/pdm_docs/sd/2005280080_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +10 +9 +Connector_FFC-FPC +Molex_200528-0090_1x09-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0090, 9 Circuits (https://www.molex.com/pdm_docs/sd/2005280090_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +11 +10 +Connector_FFC-FPC +Molex_200528-0100_1x10-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0100, 10 Circuits (https://www.molex.com/pdm_docs/sd/2005280100_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +12 +11 +Connector_FFC-FPC +Molex_200528-0110_1x11-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0110, 11 Circuits (https://www.molex.com/pdm_docs/sd/2005280110_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +13 +12 +Connector_FFC-FPC +Molex_200528-0120_1x12-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0120, 12 Circuits (https://www.molex.com/pdm_docs/sd/2005280120_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +14 +13 +Connector_FFC-FPC +Molex_200528-0130_1x13-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0130, 13 Circuits (https://www.molex.com/pdm_docs/sd/2005280130_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +15 +14 +Connector_FFC-FPC +Molex_200528-0140_1x14-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0140, 14 Circuits (https://www.molex.com/pdm_docs/sd/2005280140_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +16 +15 +Connector_FFC-FPC +Molex_200528-0150_1x15-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0150, 15 Circuits (https://www.molex.com/pdm_docs/sd/2005280150_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +17 +16 +Connector_FFC-FPC +Molex_200528-0160_1x16-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0160, 16 Circuits (https://www.molex.com/pdm_docs/sd/2005280160_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +18 +17 +Connector_FFC-FPC +Molex_200528-0170_1x17-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0170, 17 Circuits (https://www.molex.com/pdm_docs/sd/2005280170_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +19 +18 +Connector_FFC-FPC +Molex_200528-0180_1x18-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0180, 18 Circuits (https://www.molex.com/pdm_docs/sd/2005280180_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +20 +19 +Connector_FFC-FPC +Molex_200528-0190_1x19-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0190, 19 Circuits (https://www.molex.com/pdm_docs/sd/2005280190_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +21 +20 +Connector_FFC-FPC +Molex_200528-0200_1x20-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0200, 20 Circuits (https://www.molex.com/pdm_docs/sd/2005280200_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +22 +21 +Connector_FFC-FPC +Molex_200528-0210_1x21-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0210, 21 Circuits (https://www.molex.com/pdm_docs/sd/2005280210_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +23 +22 +Connector_FFC-FPC +Molex_200528-0220_1x22-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0220, 22 Circuits (https://www.molex.com/pdm_docs/sd/2005280220_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +24 +23 +Connector_FFC-FPC +Molex_200528-0230_1x23-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0230, 23 Circuits (https://www.molex.com/pdm_docs/sd/2005280230_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +25 +24 +Connector_FFC-FPC +Molex_200528-0240_1x24-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0240, 24 Circuits (https://www.molex.com/pdm_docs/sd/2005280240_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +26 +25 +Connector_FFC-FPC +Molex_200528-0250_1x25-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0250, 25 Circuits (https://www.molex.com/pdm_docs/sd/2005280250_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +27 +26 +Connector_FFC-FPC +Molex_200528-0260_1x26-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0260, 26 Circuits (https://www.molex.com/pdm_docs/sd/2005280260_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +28 +27 +Connector_FFC-FPC +Molex_200528-0270_1x27-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0270, 27 Circuits (https://www.molex.com/pdm_docs/sd/2005280270_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +29 +28 +Connector_FFC-FPC +Molex_200528-0280_1x28-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0280, 28 Circuits (https://www.molex.com/pdm_docs/sd/2005280280_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +30 +29 +Connector_FFC-FPC +Molex_200528-0290_1x29-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0290, 29 Circuits (https://www.molex.com/pdm_docs/sd/2005280290_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +31 +30 +Connector_FFC-FPC +Molex_200528-0300_1x30-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0300, 30 Circuits (https://www.molex.com/pdm_docs/sd/2005280300_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +32 +31 +Connector_FFC-FPC +Molex_502231-1500_1x15-1SH_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 15 Circuits (https://www.molex.com/pdm_docs/sd/5022311500_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm vertical +0 +17 +16 +Connector_FFC-FPC +Molex_502231-2400_1x24-1SH_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 24 Circuits (https://www.molex.com/pdm_docs/sd/5022312400_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm vertical +0 +26 +25 +Connector_FFC-FPC +Molex_502231-3300_1x33-1SH_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 33 Circuits (https://www.molex.com/pdm_docs/sd/5022313300_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm vertical +0 +36 +34 +Connector_FFC-FPC +Molex_502244-1530_1x15-1MP_P0.5mm_Horizontal +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 15 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm right angle +0 +19 +16 +Connector_FFC-FPC +Molex_502244-2430_1x24-1MP_P0.5mm_Horizontal +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 24 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm right angle +0 +28 +25 +Connector_FFC-FPC +Molex_502244-3330_1x33-1MP_P0.5mm_Horizontal +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 33 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm right angle +0 +39 +34 +Connector_FFC-FPC +Molex_502250-1791_2Rows-17Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-1791, 17 Circuits (http://www.molex.com/pdm_docs/sd/5022501791_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +19 +18 +Connector_FFC-FPC +Molex_502250-2191_2Rows-21Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2191, 21 Circuits (http://www.molex.com/pdm_docs/sd/5022502191_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +23 +22 +Connector_FFC-FPC +Molex_502250-2391_2Rows-23Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2391, 23 Circuits (http://www.molex.com/pdm_docs/sd/5022502391_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +25 +24 +Connector_FFC-FPC +Molex_502250-2791_2Rows-27Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2791, 27 Circuits (http://www.molex.com/pdm_docs/sd/5022502791_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +29 +28 +Connector_FFC-FPC +Molex_502250-3391_2Rows-33Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3391, 33 Circuits (http://www.molex.com/pdm_docs/sd/5022503391_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +35 +34 +Connector_FFC-FPC +Molex_502250-3591_2Rows-35Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3591, 35 Circuits (http://www.molex.com/pdm_docs/sd/5022503591_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +37 +36 +Connector_FFC-FPC +Molex_502250-3991_2Rows-39Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3991, 39 Circuits (http://www.molex.com/pdm_docs/sd/5022503991_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +41 +40 +Connector_FFC-FPC +Molex_502250-4191_2Rows-41Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-4191, 41 Circuits (http://www.molex.com/pdm_docs/sd/5022504191_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +43 +42 +Connector_FFC-FPC +Molex_502250-5191_2Rows-51Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-5191, 51 Circuits (http://www.molex.com/pdm_docs/sd/5022505191_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +53 +52 +Connector_FFC-FPC +Omron_XF2M-4015-1A_1x40-1MP_P0.5mm_Horizontal +Omron FPC connector, 40 top-side contacts, 0.5mm pitch, SMT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-xf2m.pdf +omron fpc xf2m +0 +42 +41 +Connector_FFC-FPC +TE_0-1734839-5_1x05-1MP_P0.5mm_Horizontal +TE FPC connector, 05 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +7 +6 +Connector_FFC-FPC +TE_0-1734839-6_1x06-1MP_P0.5mm_Horizontal +TE FPC connector, 06 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +8 +7 +Connector_FFC-FPC +TE_0-1734839-7_1x07-1MP_P0.5mm_Horizontal +TE FPC connector, 07 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +9 +8 +Connector_FFC-FPC +TE_0-1734839-8_1x08-1MP_P0.5mm_Horizontal +TE FPC connector, 08 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +10 +9 +Connector_FFC-FPC +TE_0-1734839-9_1x09-1MP_P0.5mm_Horizontal +TE FPC connector, 09 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +11 +10 +Connector_FFC-FPC +TE_1-84952-0_1x10-1MP_P1.0mm_Horizontal +TE FPC connector, 10 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +12 +11 +Connector_FFC-FPC +TE_1-84952-1_1x11-1MP_P1.0mm_Horizontal +TE FPC connector, 11 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +13 +12 +Connector_FFC-FPC +TE_1-84952-2_1x12-1MP_P1.0mm_Horizontal +TE FPC connector, 12 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +14 +13 +Connector_FFC-FPC +TE_1-84952-3_1x13-1MP_P1.0mm_Horizontal +TE FPC connector, 13 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +15 +14 +Connector_FFC-FPC +TE_1-84952-4_1x14-1MP_P1.0mm_Horizontal +TE FPC connector, 14 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +16 +15 +Connector_FFC-FPC +TE_1-84952-5_1x15-1MP_P1.0mm_Horizontal +TE FPC connector, 15 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +17 +16 +Connector_FFC-FPC +TE_1-84952-6_1x16-1MP_P1.0mm_Horizontal +TE FPC connector, 16 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +18 +17 +Connector_FFC-FPC +TE_1-84952-7_1x17-1MP_P1.0mm_Horizontal +TE FPC connector, 17 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +19 +18 +Connector_FFC-FPC +TE_1-84952-8_1x18-1MP_P1.0mm_Horizontal +TE FPC connector, 18 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +20 +19 +Connector_FFC-FPC +TE_1-84952-9_1x19-1MP_P1.0mm_Horizontal +TE FPC connector, 19 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +21 +20 +Connector_FFC-FPC +TE_1-84953-0_1x10-1MP_P1.0mm_Horizontal +TE FPC connector, 10 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +12 +11 +Connector_FFC-FPC +TE_1-84953-1_1x11-1MP_P1.0mm_Horizontal +TE FPC connector, 11 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +13 +12 +Connector_FFC-FPC +TE_1-84953-2_1x12-1MP_P1.0mm_Horizontal +TE FPC connector, 12 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +14 +13 +Connector_FFC-FPC +TE_1-84953-3_1x13-1MP_P1.0mm_Horizontal +TE FPC connector, 13 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +15 +14 +Connector_FFC-FPC +TE_1-84953-4_1x14-1MP_P1.0mm_Horizontal +TE FPC connector, 14 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +16 +15 +Connector_FFC-FPC +TE_1-84953-5_1x15-1MP_P1.0mm_Horizontal +TE FPC connector, 15 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +17 +16 +Connector_FFC-FPC +TE_1-84953-6_1x16-1MP_P1.0mm_Horizontal +TE FPC connector, 16 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +18 +17 +Connector_FFC-FPC +TE_1-84953-7_1x17-1MP_P1.0mm_Horizontal +TE FPC connector, 17 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +19 +18 +Connector_FFC-FPC +TE_1-84953-8_1x18-1MP_P1.0mm_Horizontal +TE FPC connector, 18 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +20 +19 +Connector_FFC-FPC +TE_1-84953-9_1x19-1MP_P1.0mm_Horizontal +TE FPC connector, 19 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +21 +20 +Connector_FFC-FPC +TE_1-1734839-0_1x10-1MP_P0.5mm_Horizontal +TE FPC connector, 10 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +12 +11 +Connector_FFC-FPC +TE_1-1734839-1_1x11-1MP_P0.5mm_Horizontal +TE FPC connector, 11 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +13 +12 +Connector_FFC-FPC +TE_1-1734839-2_1x12-1MP_P0.5mm_Horizontal +TE FPC connector, 12 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +14 +13 +Connector_FFC-FPC +TE_1-1734839-3_1x13-1MP_P0.5mm_Horizontal +TE FPC connector, 13 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +15 +14 +Connector_FFC-FPC +TE_1-1734839-4_1x14-1MP_P0.5mm_Horizontal +TE FPC connector, 14 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +16 +15 +Connector_FFC-FPC +TE_1-1734839-5_1x15-1MP_P0.5mm_Horizontal +TE FPC connector, 15 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +17 +16 +Connector_FFC-FPC +TE_1-1734839-6_1x16-1MP_P0.5mm_Horizontal +TE FPC connector, 16 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +18 +17 +Connector_FFC-FPC +TE_1-1734839-7_1x17-1MP_P0.5mm_Horizontal +TE FPC connector, 17 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +19 +18 +Connector_FFC-FPC +TE_1-1734839-8_1x18-1MP_P0.5mm_Horizontal +TE FPC connector, 18 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +20 +19 +Connector_FFC-FPC +TE_1-1734839-9_1x19-1MP_P0.5mm_Horizontal +TE FPC connector, 19 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +21 +20 +Connector_FFC-FPC +TE_2-84952-0_1x20-1MP_P1.0mm_Horizontal +TE FPC connector, 20 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +22 +21 +Connector_FFC-FPC +TE_2-84952-1_1x21-1MP_P1.0mm_Horizontal +TE FPC connector, 21 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +23 +22 +Connector_FFC-FPC +TE_2-84952-2_1x22-1MP_P1.0mm_Horizontal +TE FPC connector, 22 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +24 +23 +Connector_FFC-FPC +TE_2-84952-3_1x23-1MP_P1.0mm_Horizontal +TE FPC connector, 23 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +25 +24 +Connector_FFC-FPC +TE_2-84952-4_1x24-1MP_P1.0mm_Horizontal +TE FPC connector, 24 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +26 +25 +Connector_FFC-FPC +TE_2-84952-5_1x25-1MP_P1.0mm_Horizontal +TE FPC connector, 25 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +27 +26 +Connector_FFC-FPC +TE_2-84952-6_1x26-1MP_P1.0mm_Horizontal +TE FPC connector, 26 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +28 +27 +Connector_FFC-FPC +TE_2-84952-7_1x27-1MP_P1.0mm_Horizontal +TE FPC connector, 27 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +29 +28 +Connector_FFC-FPC +TE_2-84952-8_1x28-1MP_P1.0mm_Horizontal +TE FPC connector, 28 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +30 +29 +Connector_FFC-FPC +TE_2-84952-9_1x29-1MP_P1.0mm_Horizontal +TE FPC connector, 29 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +31 +30 +Connector_FFC-FPC +TE_2-84953-0_1x20-1MP_P1.0mm_Horizontal +TE FPC connector, 20 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +22 +21 +Connector_FFC-FPC +TE_2-84953-1_1x21-1MP_P1.0mm_Horizontal +TE FPC connector, 21 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +23 +22 +Connector_FFC-FPC +TE_2-84953-2_1x22-1MP_P1.0mm_Horizontal +TE FPC connector, 22 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +24 +23 +Connector_FFC-FPC +TE_2-84953-3_1x23-1MP_P1.0mm_Horizontal +TE FPC connector, 23 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +25 +24 +Connector_FFC-FPC +TE_2-84953-4_1x24-1MP_P1.0mm_Horizontal +TE FPC connector, 24 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +26 +25 +Connector_FFC-FPC +TE_2-84953-5_1x25-1MP_P1.0mm_Horizontal +TE FPC connector, 25 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +27 +26 +Connector_FFC-FPC +TE_2-84953-6_1x26-1MP_P1.0mm_Horizontal +TE FPC connector, 26 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +28 +27 +Connector_FFC-FPC +TE_2-84953-7_1x27-1MP_P1.0mm_Horizontal +TE FPC connector, 27 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +29 +28 +Connector_FFC-FPC +TE_2-84953-8_1x28-1MP_P1.0mm_Horizontal +TE FPC connector, 28 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +30 +29 +Connector_FFC-FPC +TE_2-84953-9_1x29-1MP_P1.0mm_Horizontal +TE FPC connector, 29 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +31 +30 +Connector_FFC-FPC +TE_2-1734839-0_1x20-1MP_P0.5mm_Horizontal +TE FPC connector, 20 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +22 +21 +Connector_FFC-FPC +TE_2-1734839-1_1x21-1MP_P0.5mm_Horizontal +TE FPC connector, 21 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +23 +22 +Connector_FFC-FPC +TE_2-1734839-2_1x22-1MP_P0.5mm_Horizontal +TE FPC connector, 22 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +24 +23 +Connector_FFC-FPC +TE_2-1734839-3_1x23-1MP_P0.5mm_Horizontal +TE FPC connector, 23 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +25 +24 +Connector_FFC-FPC +TE_2-1734839-4_1x24-1MP_P0.5mm_Horizontal +TE FPC connector, 24 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +26 +25 +Connector_FFC-FPC +TE_2-1734839-5_1x25-1MP_P0.5mm_Horizontal +TE FPC connector, 25 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +27 +26 +Connector_FFC-FPC +TE_2-1734839-6_1x26-1MP_P0.5mm_Horizontal +TE FPC connector, 26 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +28 +27 +Connector_FFC-FPC +TE_2-1734839-7_1x27-1MP_P0.5mm_Horizontal +TE FPC connector, 27 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +29 +28 +Connector_FFC-FPC +TE_2-1734839-8_1x28-1MP_P0.5mm_Horizontal +TE FPC connector, 28 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +30 +29 +Connector_FFC-FPC +TE_2-1734839-9_1x29-1MP_P0.5mm_Horizontal +TE FPC connector, 29 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +31 +30 +Connector_FFC-FPC +TE_3-84952-0_1x30-1MP_P1.0mm_Horizontal +TE FPC connector, 30 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +32 +31 +Connector_FFC-FPC +TE_3-84953-0_1x30-1MP_P1.0mm_Horizontal +TE FPC connector, 30 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +32 +31 +Connector_FFC-FPC +TE_3-1734839-0_1x30-1MP_P0.5mm_Horizontal +TE FPC connector, 30 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +32 +31 +Connector_FFC-FPC +TE_3-1734839-1_1x31-1MP_P0.5mm_Horizontal +TE FPC connector, 31 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +33 +32 +Connector_FFC-FPC +TE_3-1734839-2_1x32-1MP_P0.5mm_Horizontal +TE FPC connector, 32 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +34 +33 +Connector_FFC-FPC +TE_3-1734839-3_1x33-1MP_P0.5mm_Horizontal +TE FPC connector, 33 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +35 +34 +Connector_FFC-FPC +TE_3-1734839-4_1x34-1MP_P0.5mm_Horizontal +TE FPC connector, 34 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +36 +35 +Connector_FFC-FPC +TE_3-1734839-5_1x35-1MP_P0.5mm_Horizontal +TE FPC connector, 35 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +37 +36 +Connector_FFC-FPC +TE_3-1734839-6_1x36-1MP_P0.5mm_Horizontal +TE FPC connector, 36 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +38 +37 +Connector_FFC-FPC +TE_3-1734839-7_1x37-1MP_P0.5mm_Horizontal +TE FPC connector, 37 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +39 +38 +Connector_FFC-FPC +TE_3-1734839-8_1x38-1MP_P0.5mm_Horizontal +TE FPC connector, 38 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +40 +39 +Connector_FFC-FPC +TE_3-1734839-9_1x39-1MP_P0.5mm_Horizontal +TE FPC connector, 39 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +41 +40 +Connector_FFC-FPC +TE_4-1734839-0_1x40-1MP_P0.5mm_Horizontal +TE FPC connector, 40 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +42 +41 +Connector_FFC-FPC +TE_4-1734839-1_1x41-1MP_P0.5mm_Horizontal +TE FPC connector, 41 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +43 +42 +Connector_FFC-FPC +TE_4-1734839-2_1x42-1MP_P0.5mm_Horizontal +TE FPC connector, 42 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +44 +43 +Connector_FFC-FPC +TE_4-1734839-3_1x43-1MP_P0.5mm_Horizontal +TE FPC connector, 43 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +45 +44 +Connector_FFC-FPC +TE_4-1734839-4_1x44-1MP_P0.5mm_Horizontal +TE FPC connector, 44 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +46 +45 +Connector_FFC-FPC +TE_4-1734839-5_1x45-1MP_P0.5mm_Horizontal +TE FPC connector, 45 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +47 +46 +Connector_FFC-FPC +TE_4-1734839-6_1x46-1MP_P0.5mm_Horizontal +TE FPC connector, 46 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +48 +47 +Connector_FFC-FPC +TE_4-1734839-7_1x47-1MP_P0.5mm_Horizontal +TE FPC connector, 47 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +49 +48 +Connector_FFC-FPC +TE_4-1734839-8_1x48-1MP_P0.5mm_Horizontal +TE FPC connector, 48 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +50 +49 +Connector_FFC-FPC +TE_4-1734839-9_1x49-1MP_P0.5mm_Horizontal +TE FPC connector, 49 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +51 +50 +Connector_FFC-FPC +TE_5-1734839-0_1x50-1MP_P0.5mm_Horizontal +TE FPC connector, 50 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +52 +51 +Connector_FFC-FPC +TE_84952-4_1x04-1MP_P1.0mm_Horizontal +TE FPC connector, 04 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +6 +5 +Connector_FFC-FPC +TE_84952-5_1x05-1MP_P1.0mm_Horizontal +TE FPC connector, 05 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +7 +6 +Connector_FFC-FPC +TE_84952-6_1x06-1MP_P1.0mm_Horizontal +TE FPC connector, 06 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +8 +7 +Connector_FFC-FPC +TE_84952-7_1x07-1MP_P1.0mm_Horizontal +TE FPC connector, 07 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +9 +8 +Connector_FFC-FPC +TE_84952-8_1x08-1MP_P1.0mm_Horizontal +TE FPC connector, 08 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +10 +9 +Connector_FFC-FPC +TE_84952-9_1x09-1MP_P1.0mm_Horizontal +TE FPC connector, 09 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +11 +10 +Connector_FFC-FPC +TE_84953-4_1x04-1MP_P1.0mm_Horizontal +TE FPC connector, 04 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +6 +5 +Connector_FFC-FPC +TE_84953-5_1x05-1MP_P1.0mm_Horizontal +TE FPC connector, 05 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +7 +6 +Connector_FFC-FPC +TE_84953-6_1x06-1MP_P1.0mm_Horizontal +TE FPC connector, 06 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +8 +7 +Connector_FFC-FPC +TE_84953-7_1x07-1MP_P1.0mm_Horizontal +TE FPC connector, 07 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +9 +8 +Connector_FFC-FPC +TE_84953-8_1x08-1MP_P1.0mm_Horizontal +TE FPC connector, 08 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +10 +9 +Connector_FFC-FPC +TE_84953-9_1x09-1MP_P1.0mm_Horizontal +TE FPC connector, 09 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +11 +10 +Connector_FFC-FPC +Wuerth_68611214422_1x12-1MP_P1.0mm_Horizontal +http://katalog.we-online.de/em/datasheet/68611214422.pdf +Wuerth FPC 68611214422 connector 12 bottom-side contacts 1.0mm pitch 1.0mm height SMT +0 +14 +13 +Connector_Harting +Harting_har-flexicon_14110213001xxx_1x02-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110213001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +4 +3 +Connector_Harting +Harting_har-flexicon_14110213002xxx_1x02-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110213002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +4 +3 +Connector_Harting +Harting_har-flexicon_14110213010xxx_1x02-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110213010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +4 +3 +Connector_Harting +Harting_har-flexicon_14110313001xxx_1x03-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110313001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +5 +4 +Connector_Harting +Harting_har-flexicon_14110313002xxx_1x03-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110313002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +5 +4 +Connector_Harting +Harting_har-flexicon_14110313010xxx_1x03-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110313010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +5 +4 +Connector_Harting +Harting_har-flexicon_14110413001xxx_1x04-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110413001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +6 +5 +Connector_Harting +Harting_har-flexicon_14110413002xxx_1x04-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110413002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +6 +5 +Connector_Harting +Harting_har-flexicon_14110413010xxx_1x04-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110413010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +6 +5 +Connector_Harting +Harting_har-flexicon_14110513001xxx_1x05-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110513001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +7 +6 +Connector_Harting +Harting_har-flexicon_14110513002xxx_1x05-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110513002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +7 +6 +Connector_Harting +Harting_har-flexicon_14110513010xxx_1x05-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110513010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +7 +6 +Connector_Harting +Harting_har-flexicon_14110613001xxx_1x06-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110613001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +8 +7 +Connector_Harting +Harting_har-flexicon_14110613002xxx_1x06-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110613002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +8 +7 +Connector_Harting +Harting_har-flexicon_14110613010xxx_1x06-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110613010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +8 +7 +Connector_Harting +Harting_har-flexicon_14110713001xxx_1x07-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110713001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +9 +8 +Connector_Harting +Harting_har-flexicon_14110713002xxx_1x07-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110713002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +9 +8 +Connector_Harting +Harting_har-flexicon_14110713010xxx_1x07-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110713010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +9 +8 +Connector_Harting +Harting_har-flexicon_14110813001xxx_1x08-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110813001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +10 +9 +Connector_Harting +Harting_har-flexicon_14110813002xxx_1x08-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110813002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +10 +9 +Connector_Harting +Harting_har-flexicon_14110813010xxx_1x08-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110813010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +10 +9 +Connector_Harting +Harting_har-flexicon_14110913001xxx_1x09-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110913001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +11 +10 +Connector_Harting +Harting_har-flexicon_14110913002xxx_1x09-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110913002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +11 +10 +Connector_Harting +Harting_har-flexicon_14110913010xxx_1x09-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110913010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +11 +10 +Connector_Harting +Harting_har-flexicon_14111013001xxx_1x10-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14111013001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +12 +11 +Connector_Harting +Harting_har-flexicon_14111013002xxx_1x10-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111013002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +12 +11 +Connector_Harting +Harting_har-flexicon_14111013010xxx_1x10-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111013010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +12 +11 +Connector_Harting +Harting_har-flexicon_14111113001xxx_1x11-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14111113001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +13 +12 +Connector_Harting +Harting_har-flexicon_14111113002xxx_1x11-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111113002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +13 +12 +Connector_Harting +Harting_har-flexicon_14111113010xxx_1x11-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111113010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +13 +12 +Connector_Harting +Harting_har-flexicon_14111213001xxx_1x12-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14111213001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +14 +13 +Connector_Harting +Harting_har-flexicon_14111213002xxx_1x12-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111213002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +14 +13 +Connector_Harting +Harting_har-flexicon_14111213010xxx_1x12-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111213010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +14 +13 +Connector_Harwin +Harwin_Gecko-G125-FVX0605L0X_2x03_P1.25mm_Vertical +Harwin Gecko Connector, 6 pins, dual row female, vertical entry, PN:G125-FVX0605L0X +connector harwin gecko +0 +6 +6 +Connector_Harwin +Harwin_Gecko-G125-FVX1005L0X_2x05_P1.25mm_Vertical +Harwin Gecko Connector, 10 pins, dual row female, vertical entry, PN:G125-FVX1005L0X +connector harwin gecko +0 +10 +10 +Connector_Harwin +Harwin_Gecko-G125-FVX1205L0X_2x06_P1.25mm_Vertical +Harwin Gecko Connector, 12 pins, dual row female, vertical entry, PN:G125-FVX1205L0X +connector harwin gecko +0 +12 +12 +Connector_Harwin +Harwin_Gecko-G125-FVX1605L0X_2x08_P1.25mm_Vertical +Harwin Gecko Connector, 16 pins, dual row female, vertical entry, PN:G125-FVX1605L0X +connector harwin gecko +0 +16 +16 +Connector_Harwin +Harwin_Gecko-G125-FVX2005L0X_2x10_P1.25mm_Vertical +Harwin Gecko Connector, 20 pins, dual row female, vertical entry, PN:G125-FVX2005L0X +connector harwin gecko +0 +20 +20 +Connector_Harwin +Harwin_Gecko-G125-FVX2605L0X_2x13_P1.25mm_Vertical +Harwin Gecko Connector, 26 pins, dual row female, vertical entry, PN:G125-FVX2605L0X +connector harwin gecko +0 +26 +26 +Connector_Harwin +Harwin_Gecko-G125-FVX3405L0X_2x17_P1.25mm_Vertical +Harwin Gecko Connector, 34 pins, dual row female, vertical entry, PN:G125-FVX3405L0X +connector harwin gecko +0 +34 +34 +Connector_Harwin +Harwin_Gecko-G125-FVX5005L0X_2x25_P1.25mm_Vertical +Harwin Gecko Connector, 50 pins, dual row female, vertical entry, PN:G125-FVX5005L0X +connector harwin gecko +0 +50 +50 +Connector_Harwin +Harwin_Gecko-G125-MVX0605L0X_2x03_P1.25mm_Vertical +Harwin Gecko Connector, 6 pins, dual row male, vertical entry, no latches, PN:G125-MVX0605L0X +connector harwin gecko +0 +6 +6 +Connector_Harwin +Harwin_Gecko-G125-MVX0605L1X_2x03_P1.25mm_Vertical +Harwin Gecko Connector, 6 pins, dual row male, vertical entry, with latches, PN:G125-MVX0605L1X +connector harwin gecko +0 +6 +6 +Connector_Harwin +Harwin_Gecko-G125-MVX1005L0X_2x05_P1.25mm_Vertical +Harwin Gecko Connector, 10 pins, dual row male, vertical entry, no latches, PN:G125-MVX1005L0X +connector harwin gecko +0 +10 +10 +Connector_Harwin +Harwin_Gecko-G125-MVX1005L1X_2x05_P1.25mm_Vertical +Harwin Gecko Connector, 10 pins, dual row male, vertical entry, with latches, PN:G125-MVX1005L1X +connector harwin gecko +0 +10 +10 +Connector_Harwin +Harwin_Gecko-G125-MVX1205L0X_2x06_P1.25mm_Vertical +Harwin Gecko Connector, 12 pins, dual row male, vertical entry, no latches, PN:G125-MVX1205L0X +connector harwin gecko +0 +12 +12 +Connector_Harwin +Harwin_Gecko-G125-MVX1205L1X_2x06_P1.25mm_Vertical +Harwin Gecko Connector, 12 pins, dual row male, vertical entry, with latches, PN:G125-MVX1205L1X +connector harwin gecko +0 +12 +12 +Connector_Harwin +Harwin_Gecko-G125-MVX1605L0X_2x08_P1.25mm_Vertical +Harwin Gecko Connector, 16 pins, dual row male, vertical entry, no latches, PN:G125-MVX1605L0X +connector harwin gecko +0 +16 +16 +Connector_Harwin +Harwin_Gecko-G125-MVX1605L1X_2x08_P1.25mm_Vertical +Harwin Gecko Connector, 16 pins, dual row male, vertical entry, with latches, PN:G125-MVX1605L1X +connector harwin gecko +0 +16 +16 +Connector_Harwin +Harwin_Gecko-G125-MVX2005L0X_2x10_P1.25mm_Vertical +Harwin Gecko Connector, 20 pins, dual row male, vertical entry, no latches, PN:G125-MVX2005L0X +connector harwin gecko +0 +20 +20 +Connector_Harwin +Harwin_Gecko-G125-MVX2005L1X_2x10_P1.25mm_Vertical +Harwin Gecko Connector, 20 pins, dual row male, vertical entry, with latches, PN:G125-MVX2005L1X +connector harwin gecko +0 +20 +20 +Connector_Harwin +Harwin_Gecko-G125-MVX2605L0X_2x13_P1.25mm_Vertical +Harwin Gecko Connector, 26 pins, dual row male, vertical entry, no latches, PN:G125-MVX2605L0X +connector harwin gecko +0 +26 +26 +Connector_Harwin +Harwin_Gecko-G125-MVX2605L1X_2x13_P1.25mm_Vertical +Harwin Gecko Connector, 26 pins, dual row male, vertical entry, with latches, PN:G125-MVX2605L1X +connector harwin gecko +0 +26 +26 +Connector_Harwin +Harwin_Gecko-G125-MVX3405L0X_2x17_P1.25mm_Vertical +Harwin Gecko Connector, 34 pins, dual row male, vertical entry, no latches, PN:G125-MVX3405L0X +connector harwin gecko +0 +34 +34 +Connector_Harwin +Harwin_Gecko-G125-MVX3405L1X_2x17_P1.25mm_Vertical +Harwin Gecko Connector, 34 pins, dual row male, vertical entry, with latches, PN:G125-MVX3405L1X +connector harwin gecko +0 +34 +34 +Connector_Harwin +Harwin_Gecko-G125-MVX5005L0X_2x25_P1.25mm_Vertical +Harwin Gecko Connector, 50 pins, dual row male, vertical entry, no latches, PN:G125-MVX5005L0X +connector harwin gecko +0 +50 +50 +Connector_Harwin +Harwin_Gecko-G125-MVX5005L1X_2x25_P1.25mm_Vertical +Harwin Gecko Connector, 50 pins, dual row male, vertical entry, with latches, PN:G125-MVX5005L1X +connector harwin gecko +0 +50 +50 +Connector_Harwin +Harwin_LTek-Male_02_P2.00mm_Vertical +Harwin LTek Connector, 2 pins, single row male, vertical entry +connector harwin ltek M80 +0 +2 +2 +Connector_Harwin +Harwin_LTek-Male_02_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 2 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +6 +2 +Connector_Harwin +Harwin_LTek-Male_2x02_P2.00mm_Vertical +Harwin LTek Connector, 4 pins, single row male, vertical entry +connector harwin ltek M80 +0 +4 +4 +Connector_Harwin +Harwin_LTek-Male_2x02_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 4 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +8 +4 +Connector_Harwin +Harwin_LTek-Male_2x03_P2.00mm_Vertical +Harwin LTek Connector, 6 pins, single row male, vertical entry +connector harwin ltek M80 +0 +6 +6 +Connector_Harwin +Harwin_LTek-Male_2x03_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 6 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +10 +6 +Connector_Harwin +Harwin_LTek-Male_2x04_P2.00mm_Vertical +Harwin LTek Connector, 8 pins, single row male, vertical entry +connector harwin ltek M80 +0 +8 +8 +Connector_Harwin +Harwin_LTek-Male_2x04_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 8 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +12 +8 +Connector_Harwin +Harwin_LTek-Male_2x05_P2.00mm_Vertical +Harwin LTek Connector, 10 pins, single row male, vertical entry +connector harwin ltek M80 +0 +10 +10 +Connector_Harwin +Harwin_LTek-Male_2x05_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 10 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +14 +10 +Connector_Harwin +Harwin_LTek-Male_2x06_P2.00mm_Vertical +Harwin LTek Connector, 12 pins, single row male, vertical entry +connector harwin ltek M80 +0 +12 +12 +Connector_Harwin +Harwin_LTek-Male_2x06_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 12 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +16 +12 +Connector_Harwin +Harwin_LTek-Male_2x07_P2.00mm_Vertical +Harwin LTek Connector, 14 pins, single row male, vertical entry +connector harwin ltek M80 +0 +14 +14 +Connector_Harwin +Harwin_LTek-Male_2x07_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 14 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +18 +14 +Connector_Harwin +Harwin_LTek-Male_2x08_P2.00mm_Vertical +Harwin LTek Connector, 16 pins, single row male, vertical entry +connector harwin ltek M80 +0 +16 +16 +Connector_Harwin +Harwin_LTek-Male_2x08_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 16 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +20 +16 +Connector_Harwin +Harwin_LTek-Male_2x09_P2.00mm_Vertical +Harwin LTek Connector, 18 pins, single row male, vertical entry +connector harwin ltek M80 +0 +18 +18 +Connector_Harwin +Harwin_LTek-Male_2x09_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 18 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +22 +18 +Connector_Harwin +Harwin_LTek-Male_2x10_P2.00mm_Vertical +Harwin LTek Connector, 20 pins, single row male, vertical entry +connector harwin ltek M80 +0 +20 +20 +Connector_Harwin +Harwin_LTek-Male_2x10_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 20 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +24 +20 +Connector_Harwin +Harwin_LTek-Male_2x13_P2.00mm_Vertical +Harwin LTek Connector, 26 pins, single row male, vertical entry +connector harwin ltek M80 +0 +26 +26 +Connector_Harwin +Harwin_LTek-Male_2x13_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 26 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +30 +26 +Connector_Harwin +Harwin_LTek-Male_2x17_P2.00mm_Vertical +Harwin LTek Connector, 34 pins, single row male, vertical entry +connector harwin ltek M80 +0 +34 +34 +Connector_Harwin +Harwin_LTek-Male_2x17_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 34 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +38 +34 +Connector_Harwin +Harwin_LTek-Male_2x22_P2.00mm_Vertical +Harwin LTek Connector, 44 pins, single row male, vertical entry +connector harwin ltek M80 +0 +44 +44 +Connector_Harwin +Harwin_LTek-Male_2x22_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 44 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +48 +44 +Connector_Harwin +Harwin_LTek-Male_03_P2.00mm_Vertical +Harwin LTek Connector, 3 pins, single row male, vertical entry +connector harwin ltek M80 +0 +3 +3 +Connector_Harwin +Harwin_LTek-Male_03_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 3 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +7 +3 +Connector_Harwin +Harwin_LTek-Male_04_P2.00mm_Vertical +Harwin LTek Connector, 4 pins, single row male, vertical entry +connector harwin ltek M80 +0 +4 +4 +Connector_Harwin +Harwin_LTek-Male_04_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 4 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +8 +4 +Connector_Harwin +Harwin_LTek-Male_05_P2.00mm_Vertical +Harwin LTek Connector, 5 pins, single row male, vertical entry +connector harwin ltek M80 +0 +5 +5 +Connector_Harwin +Harwin_LTek-Male_05_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 5 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +9 +5 +Connector_Harwin +Harwin_LTek-Male_06_P2.00mm_Vertical +Harwin LTek Connector, 6 pins, single row male, vertical entry +connector harwin ltek M80 +0 +6 +6 +Connector_Harwin +Harwin_LTek-Male_06_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 6 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +10 +6 +Connector_Harwin +Harwin_LTek-Male_07_P2.00mm_Vertical +Harwin LTek Connector, 7 pins, single row male, vertical entry +connector harwin ltek M80 +0 +7 +7 +Connector_Harwin +Harwin_LTek-Male_07_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 7 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +11 +7 +Connector_Harwin +Harwin_LTek-Male_17_P2.00mm_Vertical +Harwin LTek Connector, 17 pins, single row male, vertical entry +connector harwin ltek M80 +0 +17 +17 +Connector_Harwin +Harwin_LTek-Male_17_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 17 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +21 +17 +Connector_Harwin +Harwin_LTek-Male_22_P2.00mm_Vertical +Harwin LTek Connector, 22 pins, single row male, vertical entry +connector harwin ltek M80 +0 +22 +22 +Connector_Harwin +Harwin_LTek-Male_22_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 22 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +26 +22 +Connector_Harwin +Harwin_M20-89003xx_1x03_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89003xx, 3 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +4 +3 +Connector_Harwin +Harwin_M20-89004xx_1x04_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89004xx, 4 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +5 +4 +Connector_Harwin +Harwin_M20-89005xx_1x05_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89005xx, 5 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +6 +5 +Connector_Harwin +Harwin_M20-89006xx_1x06_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89006xx, 6 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +7 +6 +Connector_Harwin +Harwin_M20-89007xx_1x07_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89007xx, 7 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +8 +7 +Connector_Harwin +Harwin_M20-89008xx_1x08_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89008xx, 8 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +9 +8 +Connector_Harwin +Harwin_M20-89009xx_1x09_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89009xx, 9 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +10 +9 +Connector_Harwin +Harwin_M20-89010xx_1x10_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89010xx, 10 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +11 +10 +Connector_Harwin +Harwin_M20-89011xx_1x11_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89011xx, 11 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +12 +11 +Connector_Harwin +Harwin_M20-89012xx_1x12_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89012xx, 12 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +13 +12 +Connector_Harwin +Harwin_M20-89013xx_1x13_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89013xx, 13 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +14 +13 +Connector_Harwin +Harwin_M20-89014xx_1x14_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89014xx, 14 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +15 +14 +Connector_Harwin +Harwin_M20-89015xx_1x15_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89015xx, 15 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +16 +15 +Connector_Harwin +Harwin_M20-89016xx_1x16_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89016xx, 16 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +17 +16 +Connector_Harwin +Harwin_M20-89017xx_1x17_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89017xx, 17 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +18 +17 +Connector_Harwin +Harwin_M20-89018xx_1x18_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89018xx, 18 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +19 +18 +Connector_Harwin +Harwin_M20-89019xx_1x19_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89019xx, 19 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +20 +19 +Connector_Harwin +Harwin_M20-89020xx_1x20_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89020xx, 20 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +21 +20 +Connector_Harwin +Harwin_M20-7810245_2x02_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810245, 2 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +4 +4 +Connector_Harwin +Harwin_M20-7810345_2x03_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810345, 3 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +6 +6 +Connector_Harwin +Harwin_M20-7810445_2x04_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810445, 4 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +8 +8 +Connector_Harwin +Harwin_M20-7810545_2x05_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810545, 5 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +10 +10 +Connector_Harwin +Harwin_M20-7810645_2x06_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810645, 6 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +12 +12 +Connector_Harwin +Harwin_M20-7810745_2x07_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810745, 7 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +14 +14 +Connector_Harwin +Harwin_M20-7810845_2x08_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810845, 8 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +16 +16 +Connector_Harwin +Harwin_M20-7810945_2x09_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810945, 9 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +18 +18 +Connector_Harwin +Harwin_M20-7811045_2x10_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811045, 10 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +20 +20 +Connector_Harwin +Harwin_M20-7811245_2x12_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811245, 12 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +24 +24 +Connector_Harwin +Harwin_M20-7811545_2x15_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811545, 15 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +30 +30 +Connector_Harwin +Harwin_M20-7812045_2x20_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7812045, 20 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +40 +40 +Connector_Hirose +Hirose_BM23FR0.6-16DP-0.35V_2x08_1MP_Vertical +Hirose BM23 series connector, BM23FR0.6-16DP-0.35V (https://www.hirose.com/fr/product/document?clcode=CL0480-0290-0-95&productname=BM23FR0.6-16DP-0.35V(895)&series=BM23FR&documenttype=2DDrawing&lang=fr&documentid=D164551_en) +connector Hirose BM23 16pin header +0 +20 +17 +Connector_Hirose +Hirose_BM23FR0.6-16DS-0.35V_2x08_P0.35_1MP_Vertical +Hirose BM23 series connector, BM23FR0.6-16DS-0.35V (https://www.hirose.com/fr/product/document?clcode=CL0480-0295-0-51&productname=BM23FR0.6-16DS-0.35V(51)&series=BM23FR&documenttype=2DDrawing&lang=fr&documentid=D162179_en) +connector Hirose 16pin receptacle vertical +0 +20 +17 +Connector_Hirose +Hirose_BM24_BM24-40DP-2-0.35V_2x20_P0.35mm_PowerPin2_Vertical +Hirose BM24 series connector, BM24-40DP/2-0.35V (https://www.hirose.com/product/en/download_file/key_name/BM24/category/Catalog/doc_file_id/47680/?file_category_id=4&item_id=50&is_series=1) +connector Hirose BM24 40pin header +0 +44 +42 +Connector_Hirose +Hirose_BM24_BM24-40DS-2-0.35V_2x20_P0.35mm_PowerPin2_Vertical +Hirose BM24 series connector, BM24-40DS/2-0.35V (https://www.hirose.com/product/en/download_file/key_name/BM24/category/Catalog/doc_file_id/47680/?file_category_id=4&item_id=50&is_series=1) +connector Hirose 40pin receptacle vertical +0 +42 +42 +Connector_Hirose +Hirose_DF3EA-02P-2H_1x02-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-02P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +4 +3 +Connector_Hirose +Hirose_DF3EA-03P-2H_1x03-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-03P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +5 +4 +Connector_Hirose +Hirose_DF3EA-04P-2H_1x04-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-04P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +6 +5 +Connector_Hirose +Hirose_DF3EA-05P-2H_1x05-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-05P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +7 +6 +Connector_Hirose +Hirose_DF3EA-06P-2H_1x06-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-06P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +8 +7 +Connector_Hirose +Hirose_DF3EA-07P-2H_1x07-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-07P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +9 +8 +Connector_Hirose +Hirose_DF3EA-08P-2H_1x08-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-08P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +10 +9 +Connector_Hirose +Hirose_DF3EA-09P-2H_1x09-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-09P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +11 +10 +Connector_Hirose +Hirose_DF3EA-10P-2H_1x10-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-10P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +12 +11 +Connector_Hirose +Hirose_DF3EA-11P-2H_1x11-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-11P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +13 +12 +Connector_Hirose +Hirose_DF3EA-12P-2H_1x12-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-12P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +14 +13 +Connector_Hirose +Hirose_DF3EA-13P-2H_1x13-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-13P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +15 +14 +Connector_Hirose +Hirose_DF3EA-14P-2H_1x14-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-14P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +16 +15 +Connector_Hirose +Hirose_DF3EA-15P-2H_1x15-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-15P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +17 +16 +Connector_Hirose +Hirose_DF11-4DP-2DSA_2x02_P2.00mm_Vertical +Hirose DF11 through hole, DF11-4DP-2DSA, 2 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF11-6DP-2DSA_2x03_P2.00mm_Vertical +Hirose DF11 through hole, DF11-6DP-2DSA, 3 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +6 +6 +Connector_Hirose +Hirose_DF11-8DP-2DSA_2x04_P2.00mm_Vertical +Hirose DF11 through hole, DF11-8DP-2DSA, 4 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +8 +8 +Connector_Hirose +Hirose_DF11-10DP-2DSA_2x05_P2.00mm_Vertical +Hirose DF11 through hole, DF11-10DP-2DSA, 5 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +10 +10 +Connector_Hirose +Hirose_DF11-12DP-2DSA_2x06_P2.00mm_Vertical +Hirose DF11 through hole, DF11-12DP-2DSA, 6 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +12 +12 +Connector_Hirose +Hirose_DF11-14DP-2DSA_2x07_P2.00mm_Vertical +Hirose DF11 through hole, DF11-14DP-2DSA, 7 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +14 +14 +Connector_Hirose +Hirose_DF11-16DP-2DSA_2x08_P2.00mm_Vertical +Hirose DF11 through hole, DF11-16DP-2DSA, 8 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +16 +16 +Connector_Hirose +Hirose_DF11-18DP-2DSA_2x09_P2.00mm_Vertical +Hirose DF11 through hole, DF11-18DP-2DSA, 9 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +18 +18 +Connector_Hirose +Hirose_DF11-20DP-2DSA_2x10_P2.00mm_Vertical +Hirose DF11 through hole, DF11-20DP-2DSA, 10 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +20 +20 +Connector_Hirose +Hirose_DF11-22DP-2DSA_2x11_P2.00mm_Vertical +Hirose DF11 through hole, DF11-22DP-2DSA, 11 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +22 +22 +Connector_Hirose +Hirose_DF11-24DP-2DSA_2x12_P2.00mm_Vertical +Hirose DF11 through hole, DF11-24DP-2DSA, 12 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +24 +24 +Connector_Hirose +Hirose_DF11-26DP-2DSA_2x13_P2.00mm_Vertical +Hirose DF11 through hole, DF11-26DP-2DSA, 13 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +26 +26 +Connector_Hirose +Hirose_DF11-28DP-2DSA_2x14_P2.00mm_Vertical +Hirose DF11 through hole, DF11-28DP-2DSA, 14 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +28 +28 +Connector_Hirose +Hirose_DF11-30DP-2DSA_2x15_P2.00mm_Vertical +Hirose DF11 through hole, DF11-30DP-2DSA, 15 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +30 +30 +Connector_Hirose +Hirose_DF11-32DP-2DSA_2x16_P2.00mm_Vertical +Hirose DF11 through hole, DF11-32DP-2DSA, 16 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +32 +32 +Connector_Hirose +Hirose_DF12_DF12C3.0-10DS-0.5V_2x05_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-10DS-0.5V, 10 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +20 +10 +Connector_Hirose +Hirose_DF12_DF12C3.0-14DS-0.5V_2x07_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-14DS-0.5V, 14 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +28 +14 +Connector_Hirose +Hirose_DF12_DF12C3.0-20DS-0.5V_2x10_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-20DS-0.5V, 20 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +40 +20 +Connector_Hirose +Hirose_DF12_DF12C3.0-30DS-0.5V_2x15_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-30DS-0.5V, 30 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +60 +30 +Connector_Hirose +Hirose_DF12_DF12C3.0-32DS-0.5V_2x16_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-32DS-0.5V, 32 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +64 +32 +Connector_Hirose +Hirose_DF12_DF12C3.0-36DS-0.5V_2x18_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-36DS-0.5V, 36 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +72 +36 +Connector_Hirose +Hirose_DF12_DF12C3.0-40DS-0.5V_2x20_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-40DS-0.5V, 40 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +80 +40 +Connector_Hirose +Hirose_DF12_DF12C3.0-50DS-0.5V_2x25_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-50DS-0.5V, 50 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +100 +50 +Connector_Hirose +Hirose_DF12_DF12C3.0-60DS-0.5V_2x30_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-60DS-0.5V, 60 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +120 +60 +Connector_Hirose +Hirose_DF12_DF12E3.0-10DP-0.5V_2x05_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-10DP-0.5V, 10 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +20 +10 +Connector_Hirose +Hirose_DF12_DF12E3.0-14DP-0.5V_2x07_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-14DP-0.5V, 14 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +28 +14 +Connector_Hirose +Hirose_DF12_DF12E3.0-20DP-0.5V_2x10_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-20DP-0.5V, 20 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +40 +20 +Connector_Hirose +Hirose_DF12_DF12E3.0-30DP-0.5V_2x15_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-30DP-0.5V, 30 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +60 +30 +Connector_Hirose +Hirose_DF12_DF12E3.0-32DP-0.5V_2x16_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-32DP-0.5V, 32 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +64 +32 +Connector_Hirose +Hirose_DF12_DF12E3.0-36DP-0.5V_2x18_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-36DP-0.5V, 36 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +72 +36 +Connector_Hirose +Hirose_DF12_DF12E3.0-40DP-0.5V_2x20_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-40DP-0.5V, 40 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +80 +40 +Connector_Hirose +Hirose_DF12_DF12E3.0-50DP-0.5V_2x25_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-50DP-0.5V, 50 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +100 +50 +Connector_Hirose +Hirose_DF12_DF12E3.0-60DP-0.5V_2x30_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-60DP-0.5V, 60 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +120 +60 +Connector_Hirose +Hirose_DF12_DF12E3.0-80DP-0.5V_2x40_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-80DP-0.5V, 80 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +160 +80 +Connector_Hirose +Hirose_DF13-02P-1.25DSA_1x02_P1.25mm_Vertical +Hirose DF13 through hole, DF13-02P-1.25DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +2 +2 +Connector_Hirose +Hirose_DF13-02P-1.25DS_1x02_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-02P-1.25DS, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +2 +2 +Connector_Hirose +Hirose_DF13-03P-1.25DSA_1x03_P1.25mm_Vertical +Hirose DF13 through hole, DF13-03P-1.25DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +3 +3 +Connector_Hirose +Hirose_DF13-03P-1.25DS_1x03_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-03P-1.25DS, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +3 +3 +Connector_Hirose +Hirose_DF13-04P-1.25DSA_1x04_P1.25mm_Vertical +Hirose DF13 through hole, DF13-04P-1.25DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF13-04P-1.25DS_1x04_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-04P-1.25DS, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +4 +4 +Connector_Hirose +Hirose_DF13-05P-1.25DSA_1x05_P1.25mm_Vertical +Hirose DF13 through hole, DF13-05P-1.25DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +5 +5 +Connector_Hirose +Hirose_DF13-05P-1.25DS_1x05_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-05P-1.25DS, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +5 +5 +Connector_Hirose +Hirose_DF13-06P-1.25DSA_1x06_P1.25mm_Vertical +Hirose DF13 through hole, DF13-06P-1.25DSA, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +6 +6 +Connector_Hirose +Hirose_DF13-06P-1.25DS_1x06_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-06P-1.25DS, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +6 +6 +Connector_Hirose +Hirose_DF13-07P-1.25DSA_1x07_P1.25mm_Vertical +Hirose DF13 through hole, DF13-07P-1.25DSA, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +7 +7 +Connector_Hirose +Hirose_DF13-07P-1.25DS_1x07_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-07P-1.25DS, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +7 +7 +Connector_Hirose +Hirose_DF13-08P-1.25DSA_1x08_P1.25mm_Vertical +Hirose DF13 through hole, DF13-08P-1.25DSA, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +8 +8 +Connector_Hirose +Hirose_DF13-08P-1.25DS_1x08_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-08P-1.25DS, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +8 +8 +Connector_Hirose +Hirose_DF13-09P-1.25DSA_1x09_P1.25mm_Vertical +Hirose DF13 through hole, DF13-09P-1.25DSA, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +9 +9 +Connector_Hirose +Hirose_DF13-09P-1.25DS_1x09_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-09P-1.25DS, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +9 +9 +Connector_Hirose +Hirose_DF13-10P-1.25DSA_1x10_P1.25mm_Vertical +Hirose DF13 through hole, DF13-10P-1.25DSA, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +10 +10 +Connector_Hirose +Hirose_DF13-10P-1.25DS_1x10_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-10P-1.25DS, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +10 +10 +Connector_Hirose +Hirose_DF13-11P-1.25DSA_1x11_P1.25mm_Vertical +Hirose DF13 through hole, DF13-11P-1.25DSA, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +11 +11 +Connector_Hirose +Hirose_DF13-11P-1.25DS_1x11_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-11P-1.25DS, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +11 +11 +Connector_Hirose +Hirose_DF13-12P-1.25DSA_1x12_P1.25mm_Vertical +Hirose DF13 through hole, DF13-12P-1.25DSA, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +12 +12 +Connector_Hirose +Hirose_DF13-12P-1.25DS_1x12_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-12P-1.25DS, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +12 +12 +Connector_Hirose +Hirose_DF13-13P-1.25DSA_1x13_P1.25mm_Vertical +Hirose DF13 through hole, DF13-13P-1.25DSA, 13 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +13 +13 +Connector_Hirose +Hirose_DF13-14P-1.25DSA_1x14_P1.25mm_Vertical +Hirose DF13 through hole, DF13-14P-1.25DSA, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +14 +14 +Connector_Hirose +Hirose_DF13-14P-1.25DS_1x14_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-14P-1.25DS, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +14 +14 +Connector_Hirose +Hirose_DF13-15P-1.25DSA_1x15_P1.25mm_Vertical +Hirose DF13 through hole, DF13-15P-1.25DSA, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +15 +15 +Connector_Hirose +Hirose_DF13-15P-1.25DS_1x15_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-15P-1.25DS, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +15 +15 +Connector_Hirose +Hirose_DF13C_CL535-0402-2-51_1x02-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0402-2-51, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +4 +3 +Connector_Hirose +Hirose_DF13C_CL535-0403-5-51_1x03-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0403-5-51, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +5 +4 +Connector_Hirose +Hirose_DF13C_CL535-0404-8-51_1x04-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0404-8-51, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +6 +5 +Connector_Hirose +Hirose_DF13C_CL535-0405-0-51_1x05-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0405-0-51, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +7 +6 +Connector_Hirose +Hirose_DF13C_CL535-0406-3-51_1x06-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0406-3-51, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +8 +7 +Connector_Hirose +Hirose_DF13C_CL535-0407-6-51_1x07-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0407-6-51, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +9 +8 +Connector_Hirose +Hirose_DF13C_CL535-0408-9-51_1x08-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0408-9-51, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +10 +9 +Connector_Hirose +Hirose_DF13C_CL535-0409-1-51_1x09-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0409-1-51, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +11 +10 +Connector_Hirose +Hirose_DF13C_CL535-0410-4-51_1x10-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0410-4-51, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +12 +11 +Connector_Hirose +Hirose_DF13C_CL535-0411-3-51_1x11-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0411-3-51, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +13 +12 +Connector_Hirose +Hirose_DF13C_CL535-0412-6-51_1x12-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0412-6-51, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +14 +13 +Connector_Hirose +Hirose_DF13C_CL535-0414-1-51_1x14-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0414-1-51, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +16 +15 +Connector_Hirose +Hirose_DF13C_CL535-0415-4-51_1x15-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0415-4-51, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +17 +16 +Connector_Hirose +Hirose_DF52-2S-0.8H_1x02-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-2S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +4 +3 +Connector_Hirose +Hirose_DF52-3S-0.8H_1x03-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-3S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +5 +4 +Connector_Hirose +Hirose_DF52-4S-0.8H_1x04-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-4S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +6 +5 +Connector_Hirose +Hirose_DF52-5S-0.8H_1x05-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-5S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +7 +6 +Connector_Hirose +Hirose_DF52-6S-0.8H_1x06-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-6S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +8 +7 +Connector_Hirose +Hirose_DF52-7S-0.8H_1x07-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-7S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +9 +8 +Connector_Hirose +Hirose_DF52-8S-0.8H_1x08-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-8S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +10 +9 +Connector_Hirose +Hirose_DF52-9S-0.8H_1x09-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-9S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +11 +10 +Connector_Hirose +Hirose_DF52-10S-0.8H_1x10-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-10S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +12 +11 +Connector_Hirose +Hirose_DF52-11S-0.8H_1x11-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-11S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +13 +12 +Connector_Hirose +Hirose_DF52-12S-0.8H_1x12-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-12S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +14 +13 +Connector_Hirose +Hirose_DF52-14S-0.8H_1x14-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-14S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +16 +15 +Connector_Hirose +Hirose_DF52-15S-0.8H_1x15-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-15S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +17 +16 +Connector_Hirose +Hirose_DF63-5P-3.96DSA_1x05_P3.96mm_Vertical +Hirose DF63 through hole, DF63-5P-3.96DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +5 +5 +Connector_Hirose +Hirose_DF63-6P-3.96DSA_1x06_P3.96mm_Vertical +Hirose DF63 through hole, DF63-6P-3.96DSA, 6 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +6 +6 +Connector_Hirose +Hirose_DF63M-1P-3.96DSA_1x01_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-1P-3.96DSA, 1 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +1 +1 +Connector_Hirose +Hirose_DF63M-2P-3.96DSA_1x02_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-2P-3.96DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +2 +2 +Connector_Hirose +Hirose_DF63M-3P-3.96DSA_1x03_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-3P-3.96DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +3 +3 +Connector_Hirose +Hirose_DF63M-4P-3.96DSA_1x04_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-4P-3.96DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF63R-1P-3.96DSA_1x01_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-1P-3.96DSA, 1 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +1 +1 +Connector_Hirose +Hirose_DF63R-2P-3.96DSA_1x02_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-2P-3.96DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +2 +2 +Connector_Hirose +Hirose_DF63R-3P-3.96DSA_1x03_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-3P-3.96DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +3 +3 +Connector_Hirose +Hirose_DF63R-4P-3.96DSA_1x04_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-4P-3.96DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF63R-5P-3.96DSA_1x05_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-5P-3.96DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +5 +5 +Connector_IDC +IDC-Header_2x03_P2.54mm_Horizontal +Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x03_P2.54mm_Vertical +Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x03_P2.54mm_Vertical_SMD +SMD IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x04_P2.54mm_Horizontal +Through hole IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x04_P2.54mm_Vertical +Through hole IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x04_P2.54mm_Vertical_SMD +SMD IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05_P2.54mm_Horizontal +Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Vertical +Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Vertical_SMD +SMD IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06_P2.54mm_Horizontal +Through hole IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Vertical +Through hole IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Vertical_SMD +SMD IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07_P2.54mm_Horizontal +Through hole IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Horizontal_Lock +Connector IDC Locked, 10 contacts, compatible header: PANCON HE10 (Series 50, (https://www.reboul.fr/storage/00003af6.pdf) +connector idc locked +0 +16 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Vertical +Through hole IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Vertical_SMD +SMD IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08_P2.54mm_Horizontal +Through hole IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Vertical +Through hole IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Vertical_SMD +SMD IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x09_P2.54mm_Horizontal +Through hole IDC box header, 2x09, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x09 2.54mm double row +0 +18 +18 +Connector_IDC +IDC-Header_2x09_P2.54mm_Vertical +Through hole IDC box header, 2x09, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x09 2.54mm double row +0 +18 +18 +Connector_IDC +IDC-Header_2x09_P2.54mm_Vertical_SMD +SMD IDC box header, 2x09, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x09 2.54mm double row +0 +18 +18 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10_P2.54mm_Horizontal +Through hole IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Vertical +Through hole IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Vertical_SMD +SMD IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x11_P2.54mm_Horizontal +Through hole IDC box header, 2x11, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x11 2.54mm double row +0 +22 +22 +Connector_IDC +IDC-Header_2x11_P2.54mm_Vertical +Through hole IDC box header, 2x11, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x11 2.54mm double row +0 +22 +22 +Connector_IDC +IDC-Header_2x11_P2.54mm_Vertical_SMD +SMD IDC box header, 2x11, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x11 2.54mm double row +0 +22 +22 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12_P2.54mm_Horizontal +Through hole IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Vertical +Through hole IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Vertical_SMD +SMD IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13_P2.54mm_Horizontal +Through hole IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Vertical +Through hole IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Vertical_SMD +SMD IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15_P2.54mm_Horizontal +Through hole IDC box header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Vertical +Through hole IDC box header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17_P2.54mm_Horizontal +Through hole IDC box header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Vertical +Through hole IDC box header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20_P2.54mm_Horizontal +Through hole IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Vertical +Through hole IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Vertical_SMD +SMD IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x22_P2.54mm_Horizontal +Through hole IDC box header, 2x22, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x22 2.54mm double row +0 +44 +44 +Connector_IDC +IDC-Header_2x22_P2.54mm_Vertical +Through hole IDC box header, 2x22, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x22 2.54mm double row +0 +44 +44 +Connector_IDC +IDC-Header_2x22_P2.54mm_Vertical_SMD +SMD IDC box header, 2x22, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x22 2.54mm double row +0 +44 +44 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25_P2.54mm_Horizontal +Through hole IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Vertical +Through hole IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Vertical_SMD +SMD IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30_P2.54mm_Horizontal +Through hole IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Vertical +Through hole IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Vertical_SMD +SMD IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32_P2.54mm_Horizontal +Through hole IDC box header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Vertical +Through hole IDC box header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x32 2.54mm double row +0 +64 +64 +Connector_JAE +JAE_LY20-4P-DLT1_2x02_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-4P-DLT1, 2 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +4 +4 +Connector_JAE +JAE_LY20-4P-DT1_2x02_P2.00mm_Vertical +Molex LY 20 series connector, LY20-4P-DT1, 2 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +4 +4 +Connector_JAE +JAE_LY20-6P-DLT1_2x03_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-6P-DLT1, 3 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +6 +6 +Connector_JAE +JAE_LY20-6P-DT1_2x03_P2.00mm_Vertical +Molex LY 20 series connector, LY20-6P-DT1, 3 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +6 +6 +Connector_JAE +JAE_LY20-8P-DLT1_2x04_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-8P-DLT1, 4 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +8 +8 +Connector_JAE +JAE_LY20-8P-DT1_2x04_P2.00mm_Vertical +Molex LY 20 series connector, LY20-8P-DT1, 4 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +8 +8 +Connector_JAE +JAE_LY20-10P-DLT1_2x05_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-10P-DLT1, 5 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +10 +10 +Connector_JAE +JAE_LY20-10P-DT1_2x05_P2.00mm_Vertical +Molex LY 20 series connector, LY20-10P-DT1, 5 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +10 +10 +Connector_JAE +JAE_LY20-12P-DLT1_2x06_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-12P-DLT1, 6 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +12 +12 +Connector_JAE +JAE_LY20-12P-DT1_2x06_P2.00mm_Vertical +Molex LY 20 series connector, LY20-12P-DT1, 6 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +12 +12 +Connector_JAE +JAE_LY20-14P-DLT1_2x07_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-14P-DLT1, 7 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +14 +14 +Connector_JAE +JAE_LY20-14P-DT1_2x07_P2.00mm_Vertical +Molex LY 20 series connector, LY20-14P-DT1, 7 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +14 +14 +Connector_JAE +JAE_LY20-16P-DLT1_2x08_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-16P-DLT1, 8 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +16 +16 +Connector_JAE +JAE_LY20-16P-DT1_2x08_P2.00mm_Vertical +Molex LY 20 series connector, LY20-16P-DT1, 8 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +16 +16 +Connector_JAE +JAE_LY20-18P-DLT1_2x09_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-18P-DLT1, 9 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +18 +18 +Connector_JAE +JAE_LY20-18P-DT1_2x09_P2.00mm_Vertical +Molex LY 20 series connector, LY20-18P-DT1, 9 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +18 +18 +Connector_JAE +JAE_LY20-20P-DLT1_2x10_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-20P-DLT1, 10 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +20 +20 +Connector_JAE +JAE_LY20-20P-DT1_2x10_P2.00mm_Vertical +Molex LY 20 series connector, LY20-20P-DT1, 10 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +20 +20 +Connector_JAE +JAE_LY20-22P-DLT1_2x11_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-22P-DLT1, 11 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +22 +22 +Connector_JAE +JAE_LY20-22P-DT1_2x11_P2.00mm_Vertical +Molex LY 20 series connector, LY20-22P-DT1, 11 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +22 +22 +Connector_JAE +JAE_LY20-24P-DLT1_2x12_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-24P-DLT1, 12 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +24 +24 +Connector_JAE +JAE_LY20-24P-DT1_2x12_P2.00mm_Vertical +Molex LY 20 series connector, LY20-24P-DT1, 12 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +24 +24 +Connector_JAE +JAE_LY20-26P-DLT1_2x13_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-26P-DLT1, 13 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +26 +26 +Connector_JAE +JAE_LY20-26P-DT1_2x13_P2.00mm_Vertical +Molex LY 20 series connector, LY20-26P-DT1, 13 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +26 +26 +Connector_JAE +JAE_LY20-28P-DLT1_2x14_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-28P-DLT1, 14 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +28 +28 +Connector_JAE +JAE_LY20-28P-DT1_2x14_P2.00mm_Vertical +Molex LY 20 series connector, LY20-28P-DT1, 14 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +28 +28 +Connector_JAE +JAE_LY20-30P-DLT1_2x15_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-30P-DLT1, 15 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +30 +30 +Connector_JAE +JAE_LY20-30P-DT1_2x15_P2.00mm_Vertical +Molex LY 20 series connector, LY20-30P-DT1, 15 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +30 +30 +Connector_JAE +JAE_LY20-32P-DLT1_2x16_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-32P-DLT1, 16 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +32 +32 +Connector_JAE +JAE_LY20-32P-DT1_2x16_P2.00mm_Vertical +Molex LY 20 series connector, LY20-32P-DT1, 16 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +32 +32 +Connector_JAE +JAE_LY20-34P-DLT1_2x17_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-34P-DLT1, 17 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +34 +34 +Connector_JAE +JAE_LY20-34P-DT1_2x17_P2.00mm_Vertical +Molex LY 20 series connector, LY20-34P-DT1, 17 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +34 +34 +Connector_JAE +JAE_LY20-36P-DLT1_2x18_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-36P-DLT1, 18 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +36 +36 +Connector_JAE +JAE_LY20-36P-DT1_2x18_P2.00mm_Vertical +Molex LY 20 series connector, LY20-36P-DT1, 18 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +36 +36 +Connector_JAE +JAE_LY20-38P-DLT1_2x19_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-38P-DLT1, 19 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +38 +38 +Connector_JAE +JAE_LY20-38P-DT1_2x19_P2.00mm_Vertical +Molex LY 20 series connector, LY20-38P-DT1, 19 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +38 +38 +Connector_JAE +JAE_LY20-40P-DLT1_2x20_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-40P-DLT1, 20 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +40 +40 +Connector_JAE +JAE_LY20-40P-DT1_2x20_P2.00mm_Vertical +Molex LY 20 series connector, LY20-40P-DT1, 20 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +40 +40 +Connector_JAE +JAE_LY20-42P-DLT1_2x21_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-42P-DLT1, 21 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +42 +42 +Connector_JAE +JAE_LY20-42P-DT1_2x21_P2.00mm_Vertical +Molex LY 20 series connector, LY20-42P-DT1, 21 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +42 +42 +Connector_JAE +JAE_LY20-44P-DLT1_2x22_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-44P-DLT1, 22 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +44 +44 +Connector_JAE +JAE_LY20-44P-DT1_2x22_P2.00mm_Vertical +Molex LY 20 series connector, LY20-44P-DT1, 22 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +44 +44 +Connector_JAE +JAE_MM70-314-310B1 +http://www.heilind.com/marketing/documents/jae/JAE_MM70.pdf +connector JAE MXM +0 +280 +279 +Connector_JAE +JAE_SIM_Card_SF72S006 +SIM Card, Push-Push, https://www.jae.com/direct/topics/topics_file_download/topics_id=68892&ext_no=06&index=0&_lang=en&v=202003111511468456809 +SIM Card with Detect Switch +0 +18 +9 +Connector_JST +JST_ACH_BM01B-ACHSS-A-GAN-ETF_1x01-1MP_P1.20mm_Vertical +JST ACH series connector, BM01B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +3 +2 +Connector_JST +JST_ACH_BM02B-ACHSS-GAN-ETF_1x02-1MP_P1.20mm_Vertical +JST ACH series connector, BM02B-ACHSS-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +4 +3 +Connector_JST +JST_ACH_BM03B-ACHSS-GAN-ETF_1x03-1MP_P1.20mm_Vertical +JST ACH series connector, BM03B-ACHSS-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +5 +4 +Connector_JST +JST_ACH_BM04B-ACHSS-A-GAN-ETF_1x04-1MP_P1.20mm_Vertical +JST ACH series connector, BM04B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +6 +5 +Connector_JST +JST_ACH_BM05B-ACHSS-A-GAN-ETF_1x05-1MP_P1.20mm_Vertical +JST ACH series connector, BM05B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +7 +6 +Connector_JST +JST_AUH_BM03B-AUHKS-GA-TB_1x03-1MP_P1.50mm_Vertical +JST AUH series connector, BM03B-AUHKS-GA-TB (http://www.jst-mfg.com/product/pdf/eng/eAUH.pdf), generated with kicad-footprint-generator +connector JST AUH vertical +0 +5 +4 +Connector_JST +JST_AUH_BM05B-AUHKS-GA-TB_1x05-1MP_P1.50mm_Vertical +JST AUH series connector, BM05B-AUHKS-GA-TB (http://www.jst-mfg.com/product/pdf/eng/eAUH.pdf), generated with kicad-footprint-generator +connector JST AUH vertical +0 +7 +6 +Connector_JST +JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical +JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +2 +2 +Connector_JST +JST_EH_B3B-EH-A_1x03_P2.50mm_Vertical +JST EH series connector, B3B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +3 +3 +Connector_JST +JST_EH_B4B-EH-A_1x04_P2.50mm_Vertical +JST EH series connector, B4B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +4 +4 +Connector_JST +JST_EH_B5B-EH-A_1x05_P2.50mm_Vertical +JST EH series connector, B5B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +5 +5 +Connector_JST +JST_EH_B6B-EH-A_1x06_P2.50mm_Vertical +JST EH series connector, B6B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +6 +6 +Connector_JST +JST_EH_B7B-EH-A_1x07_P2.50mm_Vertical +JST EH series connector, B7B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +7 +7 +Connector_JST +JST_EH_B8B-EH-A_1x08_P2.50mm_Vertical +JST EH series connector, B8B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +8 +8 +Connector_JST +JST_EH_B9B-EH-A_1x09_P2.50mm_Vertical +JST EH series connector, B9B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +9 +9 +Connector_JST +JST_EH_B10B-EH-A_1x10_P2.50mm_Vertical +JST EH series connector, B10B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +10 +10 +Connector_JST +JST_EH_B11B-EH-A_1x11_P2.50mm_Vertical +JST EH series connector, B11B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +11 +11 +Connector_JST +JST_EH_B12B-EH-A_1x12_P2.50mm_Vertical +JST EH series connector, B12B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +12 +12 +Connector_JST +JST_EH_B13B-EH-A_1x13_P2.50mm_Vertical +JST EH series connector, B13B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +13 +13 +Connector_JST +JST_EH_B14B-EH-A_1x14_P2.50mm_Vertical +JST EH series connector, B14B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +14 +14 +Connector_JST +JST_EH_B15B-EH-A_1x15_P2.50mm_Vertical +JST EH series connector, B15B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +15 +15 +Connector_JST +JST_EH_S2B-EH_1x02_P2.50mm_Horizontal +JST EH series connector, S2B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +2 +2 +Connector_JST +JST_EH_S3B-EH_1x03_P2.50mm_Horizontal +JST EH series connector, S3B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +3 +3 +Connector_JST +JST_EH_S4B-EH_1x04_P2.50mm_Horizontal +JST EH series connector, S4B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +4 +4 +Connector_JST +JST_EH_S5B-EH_1x05_P2.50mm_Horizontal +JST EH series connector, S5B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +5 +5 +Connector_JST +JST_EH_S6B-EH_1x06_P2.50mm_Horizontal +JST EH series connector, S6B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +6 +6 +Connector_JST +JST_EH_S7B-EH_1x07_P2.50mm_Horizontal +JST EH series connector, S7B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +7 +7 +Connector_JST +JST_EH_S8B-EH_1x08_P2.50mm_Horizontal +JST EH series connector, S8B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +8 +8 +Connector_JST +JST_EH_S9B-EH_1x09_P2.50mm_Horizontal +JST EH series connector, S9B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +9 +9 +Connector_JST +JST_EH_S10B-EH_1x10_P2.50mm_Horizontal +JST EH series connector, S10B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +10 +10 +Connector_JST +JST_EH_S11B-EH_1x11_P2.50mm_Horizontal +JST EH series connector, S11B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +11 +11 +Connector_JST +JST_EH_S12B-EH_1x12_P2.50mm_Horizontal +JST EH series connector, S12B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +12 +12 +Connector_JST +JST_EH_S13B-EH_1x13_P2.50mm_Horizontal +JST EH series connector, S13B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +13 +13 +Connector_JST +JST_EH_S14B-EH_1x14_P2.50mm_Horizontal +JST EH series connector, S14B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +14 +14 +Connector_JST +JST_EH_S15B-EH_1x15_P2.50mm_Horizontal +JST EH series connector, S15B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +15 +15 +Connector_JST +JST_GH_BM02B-GHS-TBT_1x02-1MP_P1.25mm_Vertical +JST GH series connector, BM02B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +4 +3 +Connector_JST +JST_GH_BM03B-GHS-TBT_1x03-1MP_P1.25mm_Vertical +JST GH series connector, BM03B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +5 +4 +Connector_JST +JST_GH_BM04B-GHS-TBT_1x04-1MP_P1.25mm_Vertical +JST GH series connector, BM04B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +6 +5 +Connector_JST +JST_GH_BM05B-GHS-TBT_1x05-1MP_P1.25mm_Vertical +JST GH series connector, BM05B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +7 +6 +Connector_JST +JST_GH_BM06B-GHS-TBT_1x06-1MP_P1.25mm_Vertical +JST GH series connector, BM06B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +8 +7 +Connector_JST +JST_GH_BM07B-GHS-TBT_1x07-1MP_P1.25mm_Vertical +JST GH series connector, BM07B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +9 +8 +Connector_JST +JST_GH_BM08B-GHS-TBT_1x08-1MP_P1.25mm_Vertical +JST GH series connector, BM08B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +10 +9 +Connector_JST +JST_GH_BM09B-GHS-TBT_1x09-1MP_P1.25mm_Vertical +JST GH series connector, BM09B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +11 +10 +Connector_JST +JST_GH_BM10B-GHS-TBT_1x10-1MP_P1.25mm_Vertical +JST GH series connector, BM10B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +12 +11 +Connector_JST +JST_GH_BM11B-GHS-TBT_1x11-1MP_P1.25mm_Vertical +JST GH series connector, BM11B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +13 +12 +Connector_JST +JST_GH_BM12B-GHS-TBT_1x12-1MP_P1.25mm_Vertical +JST GH series connector, BM12B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +14 +13 +Connector_JST +JST_GH_BM13B-GHS-TBT_1x13-1MP_P1.25mm_Vertical +JST GH series connector, BM13B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +15 +14 +Connector_JST +JST_GH_BM14B-GHS-TBT_1x14-1MP_P1.25mm_Vertical +JST GH series connector, BM14B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +16 +15 +Connector_JST +JST_GH_BM15B-GHS-TBT_1x15-1MP_P1.25mm_Vertical +JST GH series connector, BM15B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH vertical +0 +17 +16 +Connector_JST +JST_GH_SM02B-GHS-TB_1x02-1MP_P1.25mm_Horizontal +JST GH series connector, SM02B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +4 +3 +Connector_JST +JST_GH_SM03B-GHS-TB_1x03-1MP_P1.25mm_Horizontal +JST GH series connector, SM03B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +5 +4 +Connector_JST +JST_GH_SM04B-GHS-TB_1x04-1MP_P1.25mm_Horizontal +JST GH series connector, SM04B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +6 +5 +Connector_JST +JST_GH_SM05B-GHS-TB_1x05-1MP_P1.25mm_Horizontal +JST GH series connector, SM05B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +7 +6 +Connector_JST +JST_GH_SM06B-GHS-TB_1x06-1MP_P1.25mm_Horizontal +JST GH series connector, SM06B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +8 +7 +Connector_JST +JST_GH_SM07B-GHS-TB_1x07-1MP_P1.25mm_Horizontal +JST GH series connector, SM07B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +9 +8 +Connector_JST +JST_GH_SM08B-GHS-TB_1x08-1MP_P1.25mm_Horizontal +JST GH series connector, SM08B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +10 +9 +Connector_JST +JST_GH_SM09B-GHS-TB_1x09-1MP_P1.25mm_Horizontal +JST GH series connector, SM09B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +11 +10 +Connector_JST +JST_GH_SM10B-GHS-TB_1x10-1MP_P1.25mm_Horizontal +JST GH series connector, SM10B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +12 +11 +Connector_JST +JST_GH_SM11B-GHS-TB_1x11-1MP_P1.25mm_Horizontal +JST GH series connector, SM11B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +13 +12 +Connector_JST +JST_GH_SM12B-GHS-TB_1x12-1MP_P1.25mm_Horizontal +JST GH series connector, SM12B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +14 +13 +Connector_JST +JST_GH_SM13B-GHS-TB_1x13-1MP_P1.25mm_Horizontal +JST GH series connector, SM13B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +15 +14 +Connector_JST +JST_GH_SM14B-GHS-TB_1x14-1MP_P1.25mm_Horizontal +JST GH series connector, SM14B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +16 +15 +Connector_JST +JST_GH_SM15B-GHS-TB_1x15-1MP_P1.25mm_Horizontal +JST GH series connector, SM15B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH horizontal +0 +17 +16 +Connector_JST +JST_J2100_B06B-J21DK-GGXR_2x03_P2.50x4.00mm_Vertical +JST J2100 series connector, B06B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +8 +6 +Connector_JST +JST_J2100_B08B-J21DK-GGXR_2x04_P2.50x4.00mm_Vertical +JST J2100 series connector, B08B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +10 +8 +Connector_JST +JST_J2100_B10B-J21DK-GGXR_2x05_P2.50x4.00mm_Vertical +JST J2100 series connector, B10B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +12 +10 +Connector_JST +JST_J2100_B12B-J21DK-GGXR_2x06_P2.50x4.00mm_Vertical +JST J2100 series connector, B12B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +14 +12 +Connector_JST +JST_J2100_B16B-J21DK-GGXR_2x08_P2.50x4.00mm_Vertical +JST J2100 series connector, B16B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +18 +16 +Connector_JST +JST_J2100_B20B-J21DK-GGXR_2x10_P2.50x4.00mm_Vertical +JST J2100 series connector, B20B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +22 +20 +Connector_JST +JST_J2100_S06B-J21DK-GGXR_2x03_P2.50mm_Horizontal +JST J2100 series connector, S06B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +7 +6 +Connector_JST +JST_J2100_S08B-J21DK-GGXR_2x04_P2.50mm_Horizontal +JST J2100 series connector, S08B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +10 +8 +Connector_JST +JST_J2100_S10B-J21DK-GGXR_2x05_P2.50mm_Horizontal +JST J2100 series connector, S10B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +12 +10 +Connector_JST +JST_J2100_S12B-J21DK-GGXR_2x06_P2.50mm_Horizontal +JST J2100 series connector, S12B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +14 +12 +Connector_JST +JST_J2100_S16B-J21DK-GGXR_2x08_P2.50mm_Horizontal +JST J2100 series connector, S16B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +18 +16 +Connector_JST +JST_J2100_S20B-J21DK-GGXR_2x10_P2.50mm_Horizontal +JST J2100 series connector, S20B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +22 +20 +Connector_JST +JST_JWPF_B02B-JWPF-SK-R_1x02_P2.00mm_Vertical +JST JWPF series connector, B02B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +2 +2 +Connector_JST +JST_JWPF_B03B-JWPF-SK-R_1x03_P2.00mm_Vertical +JST JWPF series connector, B03B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +3 +3 +Connector_JST +JST_JWPF_B04B-JWPF-SK-R_1x04_P2.00mm_Vertical +JST JWPF series connector, B04B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +4 +4 +Connector_JST +JST_JWPF_B06B-JWPF-SK-R_2x03_P2.00mm_Vertical +JST JWPF series connector, B06B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +6 +6 +Connector_JST +JST_JWPF_B08B-JWPF-SK-R_2x04_P2.00mm_Vertical +JST JWPF series connector, B08B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +8 +8 +Connector_JST +JST_LEA_SM02B-LEASS-TF_1x02-1MP_P4.20mm_Horizontal +JST LEA series connector, SM02B-LEASS-TF (http://www.jst-mfg.com/product/pdf/eng/eLEA.pdf), generated with kicad-footprint-generator +connector JST LEA horizontal +0 +4 +3 +Connector_JST +JST_NV_B02P-NV_1x02_P5.00mm_Vertical +JST NV series connector, B02P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator +connector JST NV side entry +0 +2 +2 +Connector_JST +JST_NV_B03P-NV_1x03_P5.00mm_Vertical +JST NV series connector, B03P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator +connector JST NV side entry +0 +3 +3 +Connector_JST +JST_NV_B04P-NV_1x04_P5.00mm_Vertical +JST NV series connector, B04P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator +connector JST NV side entry +0 +4 +4 +Connector_JST +JST_PHD_B8B-PHDSS_2x04_P2.00mm_Vertical +JST PHD series connector, B8B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +8 +8 +Connector_JST +JST_PHD_B10B-PHDSS_2x05_P2.00mm_Vertical +JST PHD series connector, B10B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +10 +10 +Connector_JST +JST_PHD_B12B-PHDSS_2x06_P2.00mm_Vertical +JST PHD series connector, B12B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +12 +12 +Connector_JST +JST_PHD_B14B-PHDSS_2x07_P2.00mm_Vertical +JST PHD series connector, B14B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +14 +14 +Connector_JST +JST_PHD_B16B-PHDSS_2x08_P2.00mm_Vertical +JST PHD series connector, B16B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +16 +16 +Connector_JST +JST_PHD_B18B-PHDSS_2x09_P2.00mm_Vertical +JST PHD series connector, B18B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +18 +18 +Connector_JST +JST_PHD_B20B-PHDSS_2x10_P2.00mm_Vertical +JST PHD series connector, B20B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +20 +20 +Connector_JST +JST_PHD_B22B-PHDSS_2x11_P2.00mm_Vertical +JST PHD series connector, B22B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +22 +22 +Connector_JST +JST_PHD_B24B-PHDSS_2x12_P2.00mm_Vertical +JST PHD series connector, B24B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +24 +24 +Connector_JST +JST_PHD_B26B-PHDSS_2x13_P2.00mm_Vertical +JST PHD series connector, B26B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +26 +26 +Connector_JST +JST_PHD_B28B-PHDSS_2x14_P2.00mm_Vertical +JST PHD series connector, B28B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +28 +28 +Connector_JST +JST_PHD_B30B-PHDSS_2x15_P2.00mm_Vertical +JST PHD series connector, B30B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +30 +30 +Connector_JST +JST_PHD_B32B-PHDSS_2x16_P2.00mm_Vertical +JST PHD series connector, B32B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +32 +32 +Connector_JST +JST_PHD_B34B-PHDSS_2x17_P2.00mm_Vertical +JST PHD series connector, B34B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +34 +34 +Connector_JST +JST_PHD_S8B-PHDSS_2x04_P2.00mm_Horizontal +JST PHD series connector, S8B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +8 +8 +Connector_JST +JST_PHD_S10B-PHDSS_2x05_P2.00mm_Horizontal +JST PHD series connector, S10B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +10 +10 +Connector_JST +JST_PHD_S12B-PHDSS_2x06_P2.00mm_Horizontal +JST PHD series connector, S12B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +12 +12 +Connector_JST +JST_PHD_S14B-PHDSS_2x07_P2.00mm_Horizontal +JST PHD series connector, S14B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +14 +14 +Connector_JST +JST_PHD_S16B-PHDSS_2x08_P2.00mm_Horizontal +JST PHD series connector, S16B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +16 +16 +Connector_JST +JST_PHD_S18B-PHDSS_2x09_P2.00mm_Horizontal +JST PHD series connector, S18B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +18 +18 +Connector_JST +JST_PHD_S20B-PHDSS_2x10_P2.00mm_Horizontal +JST PHD series connector, S20B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +20 +20 +Connector_JST +JST_PHD_S22B-PHDSS_2x11_P2.00mm_Horizontal +JST PHD series connector, S22B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +22 +22 +Connector_JST +JST_PHD_S24B-PHDSS_2x12_P2.00mm_Horizontal +JST PHD series connector, S24B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +24 +24 +Connector_JST +JST_PHD_S26B-PHDSS_2x13_P2.00mm_Horizontal +JST PHD series connector, S26B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +26 +26 +Connector_JST +JST_PHD_S28B-PHDSS_2x14_P2.00mm_Horizontal +JST PHD series connector, S28B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +28 +28 +Connector_JST +JST_PHD_S30B-PHDSS_2x15_P2.00mm_Horizontal +JST PHD series connector, S30B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +30 +30 +Connector_JST +JST_PHD_S32B-PHDSS_2x16_P2.00mm_Horizontal +JST PHD series connector, S32B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +32 +32 +Connector_JST +JST_PHD_S34B-PHDSS_2x17_P2.00mm_Horizontal +JST PHD series connector, S34B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +34 +34 +Connector_JST +JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical +JST PH series connector, B2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +2 +2 +Connector_JST +JST_PH_B2B-PH-SM4-TB_1x02-1MP_P2.00mm_Vertical +JST PH series connector, B2B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +4 +3 +Connector_JST +JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical +JST PH series connector, B3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +3 +3 +Connector_JST +JST_PH_B3B-PH-SM4-TB_1x03-1MP_P2.00mm_Vertical +JST PH series connector, B3B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +5 +4 +Connector_JST +JST_PH_B4B-PH-K_1x04_P2.00mm_Vertical +JST PH series connector, B4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +4 +4 +Connector_JST +JST_PH_B4B-PH-SM4-TB_1x04-1MP_P2.00mm_Vertical +JST PH series connector, B4B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +6 +5 +Connector_JST +JST_PH_B5B-PH-K_1x05_P2.00mm_Vertical +JST PH series connector, B5B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +5 +5 +Connector_JST +JST_PH_B5B-PH-SM4-TB_1x05-1MP_P2.00mm_Vertical +JST PH series connector, B5B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +7 +6 +Connector_JST +JST_PH_B6B-PH-K_1x06_P2.00mm_Vertical +JST PH series connector, B6B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +6 +6 +Connector_JST +JST_PH_B6B-PH-SM4-TB_1x06-1MP_P2.00mm_Vertical +JST PH series connector, B6B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +8 +7 +Connector_JST +JST_PH_B7B-PH-K_1x07_P2.00mm_Vertical +JST PH series connector, B7B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +7 +7 +Connector_JST +JST_PH_B7B-PH-SM4-TB_1x07-1MP_P2.00mm_Vertical +JST PH series connector, B7B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +9 +8 +Connector_JST +JST_PH_B8B-PH-K_1x08_P2.00mm_Vertical +JST PH series connector, B8B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +8 +8 +Connector_JST +JST_PH_B8B-PH-SM4-TB_1x08-1MP_P2.00mm_Vertical +JST PH series connector, B8B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +10 +9 +Connector_JST +JST_PH_B9B-PH-K_1x09_P2.00mm_Vertical +JST PH series connector, B9B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +9 +9 +Connector_JST +JST_PH_B9B-PH-SM4-TB_1x09-1MP_P2.00mm_Vertical +JST PH series connector, B9B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +11 +10 +Connector_JST +JST_PH_B10B-PH-K_1x10_P2.00mm_Vertical +JST PH series connector, B10B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +10 +10 +Connector_JST +JST_PH_B10B-PH-SM4-TB_1x10-1MP_P2.00mm_Vertical +JST PH series connector, B10B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +12 +11 +Connector_JST +JST_PH_B11B-PH-K_1x11_P2.00mm_Vertical +JST PH series connector, B11B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +11 +11 +Connector_JST +JST_PH_B11B-PH-SM4-TB_1x11-1MP_P2.00mm_Vertical +JST PH series connector, B11B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +13 +12 +Connector_JST +JST_PH_B12B-PH-K_1x12_P2.00mm_Vertical +JST PH series connector, B12B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +12 +12 +Connector_JST +JST_PH_B12B-PH-SM4-TB_1x12-1MP_P2.00mm_Vertical +JST PH series connector, B12B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +14 +13 +Connector_JST +JST_PH_B13B-PH-K_1x13_P2.00mm_Vertical +JST PH series connector, B13B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +13 +13 +Connector_JST +JST_PH_B13B-PH-SM4-TB_1x13-1MP_P2.00mm_Vertical +JST PH series connector, B13B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +15 +14 +Connector_JST +JST_PH_B14B-PH-K_1x14_P2.00mm_Vertical +JST PH series connector, B14B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +14 +14 +Connector_JST +JST_PH_B14B-PH-SM4-TB_1x14-1MP_P2.00mm_Vertical +JST PH series connector, B14B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +16 +15 +Connector_JST +JST_PH_B15B-PH-K_1x15_P2.00mm_Vertical +JST PH series connector, B15B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +15 +15 +Connector_JST +JST_PH_B15B-PH-SM4-TB_1x15-1MP_P2.00mm_Vertical +JST PH series connector, B15B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +17 +16 +Connector_JST +JST_PH_B16B-PH-K_1x16_P2.00mm_Vertical +JST PH series connector, B16B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +16 +16 +Connector_JST +JST_PH_B16B-PH-SM4-TB_1x16-1MP_P2.00mm_Vertical +JST PH series connector, B16B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH vertical +0 +18 +17 +Connector_JST +JST_PH_S2B-PH-K_1x02_P2.00mm_Horizontal +JST PH series connector, S2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +2 +2 +Connector_JST +JST_PH_S2B-PH-SM4-TB_1x02-1MP_P2.00mm_Horizontal +JST PH series connector, S2B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +4 +3 +Connector_JST +JST_PH_S3B-PH-K_1x03_P2.00mm_Horizontal +JST PH series connector, S3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +3 +3 +Connector_JST +JST_PH_S3B-PH-SM4-TB_1x03-1MP_P2.00mm_Horizontal +JST PH series connector, S3B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +5 +4 +Connector_JST +JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal +JST PH series connector, S4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +4 +4 +Connector_JST +JST_PH_S4B-PH-SM4-TB_1x04-1MP_P2.00mm_Horizontal +JST PH series connector, S4B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +6 +5 +Connector_JST +JST_PH_S5B-PH-K_1x05_P2.00mm_Horizontal +JST PH series connector, S5B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +5 +5 +Connector_JST +JST_PH_S5B-PH-SM4-TB_1x05-1MP_P2.00mm_Horizontal +JST PH series connector, S5B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +7 +6 +Connector_JST +JST_PH_S6B-PH-K_1x06_P2.00mm_Horizontal +JST PH series connector, S6B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +6 +6 +Connector_JST +JST_PH_S6B-PH-SM4-TB_1x06-1MP_P2.00mm_Horizontal +JST PH series connector, S6B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +8 +7 +Connector_JST +JST_PH_S7B-PH-K_1x07_P2.00mm_Horizontal +JST PH series connector, S7B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +7 +7 +Connector_JST +JST_PH_S7B-PH-SM4-TB_1x07-1MP_P2.00mm_Horizontal +JST PH series connector, S7B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +9 +8 +Connector_JST +JST_PH_S8B-PH-K_1x08_P2.00mm_Horizontal +JST PH series connector, S8B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +8 +8 +Connector_JST +JST_PH_S8B-PH-SM4-TB_1x08-1MP_P2.00mm_Horizontal +JST PH series connector, S8B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +10 +9 +Connector_JST +JST_PH_S9B-PH-K_1x09_P2.00mm_Horizontal +JST PH series connector, S9B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +9 +9 +Connector_JST +JST_PH_S9B-PH-SM4-TB_1x09-1MP_P2.00mm_Horizontal +JST PH series connector, S9B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +11 +10 +Connector_JST +JST_PH_S10B-PH-K_1x10_P2.00mm_Horizontal +JST PH series connector, S10B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +10 +10 +Connector_JST +JST_PH_S10B-PH-SM4-TB_1x10-1MP_P2.00mm_Horizontal +JST PH series connector, S10B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +12 +11 +Connector_JST +JST_PH_S11B-PH-K_1x11_P2.00mm_Horizontal +JST PH series connector, S11B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +11 +11 +Connector_JST +JST_PH_S11B-PH-SM4-TB_1x11-1MP_P2.00mm_Horizontal +JST PH series connector, S11B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +13 +12 +Connector_JST +JST_PH_S12B-PH-K_1x12_P2.00mm_Horizontal +JST PH series connector, S12B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +12 +12 +Connector_JST +JST_PH_S12B-PH-SM4-TB_1x12-1MP_P2.00mm_Horizontal +JST PH series connector, S12B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +14 +13 +Connector_JST +JST_PH_S13B-PH-K_1x13_P2.00mm_Horizontal +JST PH series connector, S13B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +13 +13 +Connector_JST +JST_PH_S13B-PH-SM4-TB_1x13-1MP_P2.00mm_Horizontal +JST PH series connector, S13B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +15 +14 +Connector_JST +JST_PH_S14B-PH-K_1x14_P2.00mm_Horizontal +JST PH series connector, S14B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +14 +14 +Connector_JST +JST_PH_S14B-PH-SM4-TB_1x14-1MP_P2.00mm_Horizontal +JST PH series connector, S14B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +16 +15 +Connector_JST +JST_PH_S15B-PH-K_1x15_P2.00mm_Horizontal +JST PH series connector, S15B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +15 +15 +Connector_JST +JST_PH_S15B-PH-SM4-TB_1x15-1MP_P2.00mm_Horizontal +JST PH series connector, S15B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH horizontal +0 +17 +16 +Connector_JST +JST_PH_S16B-PH-K_1x16_P2.00mm_Horizontal +JST PH series connector, S16B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +16 +16 +Connector_JST +JST_PUD_B08B-PUDSS_2x04_P2.00mm_Vertical +JST PUD series connector, B08B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +8 +8 +Connector_JST +JST_PUD_B10B-PUDSS_2x05_P2.00mm_Vertical +JST PUD series connector, B10B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +10 +10 +Connector_JST +JST_PUD_B12B-PUDSS_2x06_P2.00mm_Vertical +JST PUD series connector, B12B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +12 +12 +Connector_JST +JST_PUD_B14B-PUDSS_2x07_P2.00mm_Vertical +JST PUD series connector, B14B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +14 +14 +Connector_JST +JST_PUD_B16B-PUDSS_2x08_P2.00mm_Vertical +JST PUD series connector, B16B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +16 +16 +Connector_JST +JST_PUD_B18B-PUDSS_2x09_P2.00mm_Vertical +JST PUD series connector, B18B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +18 +18 +Connector_JST +JST_PUD_B20B-PUDSS_2x10_P2.00mm_Vertical +JST PUD series connector, B20B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +20 +20 +Connector_JST +JST_PUD_B22B-PUDSS_2x11_P2.00mm_Vertical +JST PUD series connector, B22B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +22 +22 +Connector_JST +JST_PUD_B24B-PUDSS_2x12_P2.00mm_Vertical +JST PUD series connector, B24B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +24 +24 +Connector_JST +JST_PUD_B26B-PUDSS_2x13_P2.00mm_Vertical +JST PUD series connector, B26B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +26 +26 +Connector_JST +JST_PUD_B28B-PUDSS_2x14_P2.00mm_Vertical +JST PUD series connector, B28B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +28 +28 +Connector_JST +JST_PUD_B30B-PUDSS_2x15_P2.00mm_Vertical +JST PUD series connector, B30B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +30 +30 +Connector_JST +JST_PUD_B32B-PUDSS_2x16_P2.00mm_Vertical +JST PUD series connector, B32B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +32 +32 +Connector_JST +JST_PUD_B34B-PUDSS_2x17_P2.00mm_Vertical +JST PUD series connector, B34B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +34 +34 +Connector_JST +JST_PUD_B36B-PUDSS_2x18_P2.00mm_Vertical +JST PUD series connector, B36B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +36 +36 +Connector_JST +JST_PUD_B38B-PUDSS_2x19_P2.00mm_Vertical +JST PUD series connector, B38B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +38 +38 +Connector_JST +JST_PUD_B40B-PUDSS_2x20_P2.00mm_Vertical +JST PUD series connector, B40B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +40 +40 +Connector_JST +JST_PUD_S08B-PUDSS-1_2x04_P2.00mm_Horizontal +JST PUD series connector, S08B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +8 +8 +Connector_JST +JST_PUD_S10B-PUDSS-1_2x05_P2.00mm_Horizontal +JST PUD series connector, S10B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +10 +10 +Connector_JST +JST_PUD_S12B-PUDSS-1_2x06_P2.00mm_Horizontal +JST PUD series connector, S12B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +12 +12 +Connector_JST +JST_PUD_S14B-PUDSS-1_2x07_P2.00mm_Horizontal +JST PUD series connector, S14B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +14 +14 +Connector_JST +JST_PUD_S16B-PUDSS-1_2x08_P2.00mm_Horizontal +JST PUD series connector, S16B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +16 +16 +Connector_JST +JST_PUD_S18B-PUDSS-1_2x09_P2.00mm_Horizontal +JST PUD series connector, S18B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +18 +18 +Connector_JST +JST_PUD_S20B-PUDSS-1_2x10_P2.00mm_Horizontal +JST PUD series connector, S20B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +20 +20 +Connector_JST +JST_PUD_S22B-PUDSS-1_2x11_P2.00mm_Horizontal +JST PUD series connector, S22B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +22 +22 +Connector_JST +JST_PUD_S24B-PUDSS-1_2x12_P2.00mm_Horizontal +JST PUD series connector, S24B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +24 +24 +Connector_JST +JST_PUD_S26B-PUDSS-1_2x13_P2.00mm_Horizontal +JST PUD series connector, S26B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +26 +26 +Connector_JST +JST_PUD_S28B-PUDSS-1_2x14_P2.00mm_Horizontal +JST PUD series connector, S28B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +28 +28 +Connector_JST +JST_PUD_S30B-PUDSS-1_2x15_P2.00mm_Horizontal +JST PUD series connector, S30B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +30 +30 +Connector_JST +JST_PUD_S32B-PUDSS-1_2x16_P2.00mm_Horizontal +JST PUD series connector, S32B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +32 +32 +Connector_JST +JST_PUD_S34B-PUDSS-1_2x17_P2.00mm_Horizontal +JST PUD series connector, S34B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +34 +34 +Connector_JST +JST_PUD_S36B-PUDSS-1_2x18_P2.00mm_Horizontal +JST PUD series connector, S36B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +36 +36 +Connector_JST +JST_PUD_S38B-PUDSS-1_2x19_P2.00mm_Horizontal +JST PUD series connector, S38B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +38 +38 +Connector_JST +JST_PUD_S40B-PUDSS-1_2x20_P2.00mm_Horizontal +JST PUD series connector, S40B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +40 +40 +Connector_JST +JST_SFH_SM02B-SFHRS-TF_1x02-1MP_P4.20mm_Horizontal +JST SFH series connector, SM02B-SFHRS-TF (http://www.jst-mfg.com/product/pdf/eng/eSFH.pdf), generated with kicad-footprint-generator +connector JST SFH horizontal +0 +4 +3 +Connector_JST +JST_SHL_SM02B-SHLS-TF_1x02-1MP_P1.00mm_Horizontal +JST SHL series connector, SM02B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +4 +3 +Connector_JST +JST_SHL_SM05B-SHLS-TF_1x05-1MP_P1.00mm_Horizontal +JST SHL series connector, SM05B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +7 +6 +Connector_JST +JST_SHL_SM06B-SHLS-TF_1x06-1MP_P1.00mm_Horizontal +JST SHL series connector, SM06B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +8 +7 +Connector_JST +JST_SHL_SM07B-SHLS-TF_1x07-1MP_P1.00mm_Horizontal +JST SHL series connector, SM07B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +9 +8 +Connector_JST +JST_SHL_SM08B-SHLS-TF_1x08-1MP_P1.00mm_Horizontal +JST SHL series connector, SM08B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +10 +9 +Connector_JST +JST_SHL_SM10B-SHLS-TF_1x10-1MP_P1.00mm_Horizontal +JST SHL series connector, SM10B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +12 +11 +Connector_JST +JST_SHL_SM11B-SHLS-TF_1x11-1MP_P1.00mm_Horizontal +JST SHL series connector, SM11B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +13 +12 +Connector_JST +JST_SHL_SM12B-SHLS-TF_1x12-1MP_P1.00mm_Horizontal +JST SHL series connector, SM12B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +14 +13 +Connector_JST +JST_SHL_SM14B-SHLS-TF_1x14-1MP_P1.00mm_Horizontal +JST SHL series connector, SM14B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +16 +15 +Connector_JST +JST_SHL_SM16B-SHLS-TF_1x16-1MP_P1.00mm_Horizontal +JST SHL series connector, SM16B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +18 +17 +Connector_JST +JST_SHL_SM20B-SHLS-TF_1x20-1MP_P1.00mm_Horizontal +JST SHL series connector, SM20B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +22 +21 +Connector_JST +JST_SHL_SM22B-SHLS-TF_1x22-1MP_P1.00mm_Horizontal +JST SHL series connector, SM22B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +24 +23 +Connector_JST +JST_SHL_SM26B-SHLS-TF_1x26-1MP_P1.00mm_Horizontal +JST SHL series connector, SM26B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +28 +27 +Connector_JST +JST_SHL_SM30B-SHLS-TF_1x30-1MP_P1.00mm_Horizontal +JST SHL series connector, SM30B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL horizontal +0 +32 +31 +Connector_JST +JST_SH_BM02B-SRSS-TB_1x02-1MP_P1.00mm_Vertical +JST SH series connector, BM02B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +4 +3 +Connector_JST +JST_SH_BM03B-SRSS-TB_1x03-1MP_P1.00mm_Vertical +JST SH series connector, BM03B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +5 +4 +Connector_JST +JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical +JST SH series connector, BM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +6 +5 +Connector_JST +JST_SH_BM05B-SRSS-TB_1x05-1MP_P1.00mm_Vertical +JST SH series connector, BM05B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +7 +6 +Connector_JST +JST_SH_BM06B-SRSS-TB_1x06-1MP_P1.00mm_Vertical +JST SH series connector, BM06B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +8 +7 +Connector_JST +JST_SH_BM07B-SRSS-TB_1x07-1MP_P1.00mm_Vertical +JST SH series connector, BM07B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +9 +8 +Connector_JST +JST_SH_BM08B-SRSS-TB_1x08-1MP_P1.00mm_Vertical +JST SH series connector, BM08B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +10 +9 +Connector_JST +JST_SH_BM09B-SRSS-TB_1x09-1MP_P1.00mm_Vertical +JST SH series connector, BM09B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +11 +10 +Connector_JST +JST_SH_BM10B-SRSS-TB_1x10-1MP_P1.00mm_Vertical +JST SH series connector, BM10B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +12 +11 +Connector_JST +JST_SH_BM11B-SRSS-TB_1x11-1MP_P1.00mm_Vertical +JST SH series connector, BM11B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +13 +12 +Connector_JST +JST_SH_BM12B-SRSS-TB_1x12-1MP_P1.00mm_Vertical +JST SH series connector, BM12B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +14 +13 +Connector_JST +JST_SH_BM13B-SRSS-TB_1x13-1MP_P1.00mm_Vertical +JST SH series connector, BM13B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +15 +14 +Connector_JST +JST_SH_BM14B-SRSS-TB_1x14-1MP_P1.00mm_Vertical +JST SH series connector, BM14B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +16 +15 +Connector_JST +JST_SH_BM15B-SRSS-TB_1x15-1MP_P1.00mm_Vertical +JST SH series connector, BM15B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH vertical +0 +17 +16 +Connector_JST +JST_SH_SM02B-SRSS-TB_1x02-1MP_P1.00mm_Horizontal +JST SH series connector, SM02B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +4 +3 +Connector_JST +JST_SH_SM03B-SRSS-TB_1x03-1MP_P1.00mm_Horizontal +JST SH series connector, SM03B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +5 +4 +Connector_JST +JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal +JST SH series connector, SM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +6 +5 +Connector_JST +JST_SH_SM05B-SRSS-TB_1x05-1MP_P1.00mm_Horizontal +JST SH series connector, SM05B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +7 +6 +Connector_JST +JST_SH_SM06B-SRSS-TB_1x06-1MP_P1.00mm_Horizontal +JST SH series connector, SM06B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +8 +7 +Connector_JST +JST_SH_SM07B-SRSS-TB_1x07-1MP_P1.00mm_Horizontal +JST SH series connector, SM07B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +9 +8 +Connector_JST +JST_SH_SM08B-SRSS-TB_1x08-1MP_P1.00mm_Horizontal +JST SH series connector, SM08B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +10 +9 +Connector_JST +JST_SH_SM09B-SRSS-TB_1x09-1MP_P1.00mm_Horizontal +JST SH series connector, SM09B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +11 +10 +Connector_JST +JST_SH_SM10B-SRSS-TB_1x10-1MP_P1.00mm_Horizontal +JST SH series connector, SM10B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +12 +11 +Connector_JST +JST_SH_SM11B-SRSS-TB_1x11-1MP_P1.00mm_Horizontal +JST SH series connector, SM11B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +13 +12 +Connector_JST +JST_SH_SM12B-SRSS-TB_1x12-1MP_P1.00mm_Horizontal +JST SH series connector, SM12B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +14 +13 +Connector_JST +JST_SH_SM13B-SRSS-TB_1x13-1MP_P1.00mm_Horizontal +JST SH series connector, SM13B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +15 +14 +Connector_JST +JST_SH_SM14B-SRSS-TB_1x14-1MP_P1.00mm_Horizontal +JST SH series connector, SM14B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +16 +15 +Connector_JST +JST_SH_SM15B-SRSS-TB_1x15-1MP_P1.00mm_Horizontal +JST SH series connector, SM15B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +17 +16 +Connector_JST +JST_SH_SM20B-SRSS-TB_1x20-1MP_P1.00mm_Horizontal +JST SH series connector, SM20B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH horizontal +0 +22 +21 +Connector_JST +JST_SUR_BM02B-SURS-TF_1x02-1MP_P0.80mm_Vertical +JST SUR series connector, BM02B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +4 +3 +Connector_JST +JST_SUR_BM03B-SURS-TF_1x03-1MP_P0.80mm_Vertical +JST SUR series connector, BM03B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +5 +4 +Connector_JST +JST_SUR_BM04B-SURS-TF_1x04-1MP_P0.80mm_Vertical +JST SUR series connector, BM04B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +6 +5 +Connector_JST +JST_SUR_BM05B-SURS-TF_1x05-1MP_P0.80mm_Vertical +JST SUR series connector, BM05B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +7 +6 +Connector_JST +JST_SUR_BM06B-SURS-TF_1x06-1MP_P0.80mm_Vertical +JST SUR series connector, BM06B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +8 +7 +Connector_JST +JST_SUR_BM08B-SURS-TF_1x08-1MP_P0.80mm_Vertical +JST SUR series connector, BM08B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +10 +9 +Connector_JST +JST_SUR_BM10B-SURS-TF_1x10-1MP_P0.80mm_Vertical +JST SUR series connector, BM10B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +12 +11 +Connector_JST +JST_SUR_BM12B-SURS-TF_1x12-1MP_P0.80mm_Vertical +JST SUR series connector, BM12B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +14 +13 +Connector_JST +JST_SUR_BM14B-SURS-TF_1x14-1MP_P0.80mm_Vertical +JST SUR series connector, BM14B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +16 +15 +Connector_JST +JST_SUR_BM15B-SURS-TF_1x15-1MP_P0.80mm_Vertical +JST SUR series connector, BM15B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +17 +16 +Connector_JST +JST_SUR_BM16B-SURS-TF_1x16-1MP_P0.80mm_Vertical +JST SUR series connector, BM16B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +18 +17 +Connector_JST +JST_SUR_BM17B-SURS-TF_1x17-1MP_P0.80mm_Vertical +JST SUR series connector, BM17B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +19 +18 +Connector_JST +JST_SUR_BM20B-SURS-TF_1x20-1MP_P0.80mm_Vertical +JST SUR series connector, BM20B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR vertical +0 +22 +21 +Connector_JST +JST_SUR_SM02B-SURS-TF_1x02-1MP_P0.80mm_Horizontal +JST SUR series connector, SM02B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +4 +3 +Connector_JST +JST_SUR_SM03B-SURS-TF_1x03-1MP_P0.80mm_Horizontal +JST SUR series connector, SM03B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +5 +4 +Connector_JST +JST_SUR_SM04B-SURS-TF_1x04-1MP_P0.80mm_Horizontal +JST SUR series connector, SM04B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +6 +5 +Connector_JST +JST_SUR_SM05B-SURS-TF_1x05-1MP_P0.80mm_Horizontal +JST SUR series connector, SM05B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +7 +6 +Connector_JST +JST_SUR_SM06B-SURS-TF_1x06-1MP_P0.80mm_Horizontal +JST SUR series connector, SM06B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +8 +7 +Connector_JST +JST_SUR_SM08B-SURS-TF_1x08-1MP_P0.80mm_Horizontal +JST SUR series connector, SM08B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +10 +9 +Connector_JST +JST_SUR_SM10B-SURS-TF_1x10-1MP_P0.80mm_Horizontal +JST SUR series connector, SM10B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +12 +11 +Connector_JST +JST_SUR_SM12B-SURS-TF_1x12-1MP_P0.80mm_Horizontal +JST SUR series connector, SM12B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +14 +13 +Connector_JST +JST_SUR_SM14B-SURS-TF_1x14-1MP_P0.80mm_Horizontal +JST SUR series connector, SM14B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +16 +15 +Connector_JST +JST_SUR_SM15B-SURS-TF_1x15-1MP_P0.80mm_Horizontal +JST SUR series connector, SM15B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +17 +16 +Connector_JST +JST_SUR_SM16B-SURS-TF_1x16-1MP_P0.80mm_Horizontal +JST SUR series connector, SM16B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +18 +17 +Connector_JST +JST_SUR_SM17B-SURS-TF_1x17-1MP_P0.80mm_Horizontal +JST SUR series connector, SM17B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +19 +18 +Connector_JST +JST_SUR_SM20B-SURS-TF_1x20-1MP_P0.80mm_Horizontal +JST SUR series connector, SM20B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +22 +21 +Connector_JST +JST_SUR_SM22B-SURS-TF_1x22-1MP_P0.80mm_Horizontal +JST SUR series connector, SM22B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR horizontal +0 +24 +23 +Connector_JST +JST_VH_B2P-VH-B_1x02_P3.96mm_Vertical +JST VH PBT series connector, B2P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +2 +2 +Connector_JST +JST_VH_B2P-VH-FB-B_1x02_P3.96mm_Vertical +JST VH series connector, B2P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +2 +2 +Connector_JST +JST_VH_B2P-VH_1x02_P3.96mm_Vertical +JST VH series connector, B2P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +2 +2 +Connector_JST +JST_VH_B2P3-VH_1x02_P7.92mm_Vertical +JST VH series connector, B2P3-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +2 +2 +Connector_JST +JST_VH_B2PS-VH_1x02_P3.96mm_Horizontal +JST VH series connector, B2PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +2 +2 +Connector_JST +JST_VH_B3P-VH-B_1x03_P3.96mm_Vertical +JST VH PBT series connector, B3P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +3 +3 +Connector_JST +JST_VH_B3P-VH-FB-B_1x03_P3.96mm_Vertical +JST VH series connector, B3P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +3 +3 +Connector_JST +JST_VH_B3P-VH_1x03_P3.96mm_Vertical +JST VH series connector, B3P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +3 +3 +Connector_JST +JST_VH_B3PS-VH_1x03_P3.96mm_Horizontal +JST VH series connector, B3PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +3 +3 +Connector_JST +JST_VH_B4P-VH-B_1x04_P3.96mm_Vertical +JST VH PBT series connector, B4P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +4 +4 +Connector_JST +JST_VH_B4P-VH-FB-B_1x04_P3.96mm_Vertical +JST VH series connector, B4P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +4 +4 +Connector_JST +JST_VH_B4P-VH_1x04_P3.96mm_Vertical +JST VH series connector, B4P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +4 +4 +Connector_JST +JST_VH_B4PS-VH_1x04_P3.96mm_Horizontal +JST VH series connector, B4PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +4 +4 +Connector_JST +JST_VH_B5P-VH-B_1x05_P3.96mm_Vertical +JST VH PBT series connector, B5P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +5 +5 +Connector_JST +JST_VH_B5P-VH-FB-B_1x05_P3.96mm_Vertical +JST VH series connector, B5P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +5 +5 +Connector_JST +JST_VH_B5P-VH_1x05_P3.96mm_Vertical +JST VH series connector, B5P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +5 +5 +Connector_JST +JST_VH_B5PS-VH_1x05_P3.96mm_Horizontal +JST VH series connector, B5PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +5 +5 +Connector_JST +JST_VH_B6P-VH-B_1x06_P3.96mm_Vertical +JST VH PBT series connector, B6P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +6 +6 +Connector_JST +JST_VH_B6P-VH-FB-B_1x06_P3.96mm_Vertical +JST VH series connector, B6P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +6 +6 +Connector_JST +JST_VH_B6P-VH_1x06_P3.96mm_Vertical +JST VH series connector, B6P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +6 +6 +Connector_JST +JST_VH_B6PS-VH_1x06_P3.96mm_Horizontal +JST VH series connector, B6PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +6 +6 +Connector_JST +JST_VH_B7P-VH-B_1x07_P3.96mm_Vertical +JST VH PBT series connector, B7P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +7 +7 +Connector_JST +JST_VH_B7P-VH-FB-B_1x07_P3.96mm_Vertical +JST VH series connector, B7P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +7 +7 +Connector_JST +JST_VH_B7P-VH_1x07_P3.96mm_Vertical +JST VH series connector, B7P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +7 +7 +Connector_JST +JST_VH_B7PS-VH_1x07_P3.96mm_Horizontal +JST VH series connector, B7PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +7 +7 +Connector_JST +JST_VH_B8P-VH-B_1x08_P3.96mm_Vertical +JST VH PBT series connector, B8P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +8 +8 +Connector_JST +JST_VH_B8P-VH-FB-B_1x08_P3.96mm_Vertical +JST VH series connector, B8P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +8 +8 +Connector_JST +JST_VH_B8P-VH_1x08_P3.96mm_Vertical +JST VH series connector, B8P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +8 +8 +Connector_JST +JST_VH_B8PS-VH_1x08_P3.96mm_Horizontal +JST VH series connector, B8PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +8 +8 +Connector_JST +JST_VH_B9P-VH-B_1x09_P3.96mm_Vertical +JST VH PBT series connector, B9P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +9 +9 +Connector_JST +JST_VH_B9P-VH-FB-B_1x09_P3.96mm_Vertical +JST VH series connector, B9P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +9 +9 +Connector_JST +JST_VH_B9P-VH_1x09_P3.96mm_Vertical +JST VH series connector, B9P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +9 +9 +Connector_JST +JST_VH_B9PS-VH_1x09_P3.96mm_Horizontal +JST VH series connector, B9PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +9 +9 +Connector_JST +JST_VH_B10P-VH-B_1x10_P3.96mm_Vertical +JST VH PBT series connector, B10P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +10 +10 +Connector_JST +JST_VH_B10P-VH-FB-B_1x10_P3.96mm_Vertical +JST VH series connector, B10P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +10 +10 +Connector_JST +JST_VH_B10P-VH_1x10_P3.96mm_Vertical +JST VH series connector, B10P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +10 +10 +Connector_JST +JST_VH_B10PS-VH_1x10_P3.96mm_Horizontal +JST VH series connector, B10PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +10 +10 +Connector_JST +JST_VH_B11P-VH-B_1x11_P3.96mm_Vertical +JST VH PBT series connector, B11P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +11 +11 +Connector_JST +JST_VH_S2P-VH_1x02_P3.96mm_Horizontal +JST VH series connector, S2P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +2 +2 +Connector_JST +JST_VH_S3P-VH_1x03_P3.96mm_Horizontal +JST VH series connector, S3P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +3 +3 +Connector_JST +JST_VH_S4P-VH_1x04_P3.96mm_Horizontal +JST VH series connector, S4P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +4 +4 +Connector_JST +JST_VH_S5P-VH_1x05_P3.96mm_Horizontal +JST VH series connector, S5P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +5 +5 +Connector_JST +JST_VH_S6P-VH_1x06_P3.96mm_Horizontal +JST VH series connector, S6P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +6 +6 +Connector_JST +JST_VH_S7P-VH_1x07_P3.96mm_Horizontal +JST VH series connector, S7P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +7 +7 +Connector_JST +JST_XAG_SM05B-XAGKS-BN-TB_1x05-1MP_P2.50mm_Horizontal +JST XAG series connector, SM05B-XAGKS-BN-TB (http://www.jst-mfg.com/product/pdf/eng/eXAG.pdf), generated with kicad-footprint-generator +connector JST XAG horizontal +0 +7 +6 +Connector_JST +JST_XA_B02B-XASK-1-A_1x02_P2.50mm_Vertical +JST XA series connector, B02B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +2 +2 +Connector_JST +JST_XA_B02B-XASK-1_1x02_P2.50mm_Vertical +JST XA series connector, B02B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +2 +2 +Connector_JST +JST_XA_B03B-XASK-1-A_1x03_P2.50mm_Vertical +JST XA series connector, B03B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +3 +3 +Connector_JST +JST_XA_B03B-XASK-1_1x03_P2.50mm_Vertical +JST XA series connector, B03B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +3 +3 +Connector_JST +JST_XA_B04B-XASK-1-A_1x04_P2.50mm_Vertical +JST XA series connector, B04B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +4 +4 +Connector_JST +JST_XA_B04B-XASK-1_1x04_P2.50mm_Vertical +JST XA series connector, B04B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +4 +4 +Connector_JST +JST_XA_B05B-XASK-1-A_1x05_P2.50mm_Vertical +JST XA series connector, B05B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +5 +5 +Connector_JST +JST_XA_B05B-XASK-1_1x05_P2.50mm_Vertical +JST XA series connector, B05B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +5 +5 +Connector_JST +JST_XA_B06B-XASK-1-A_1x06_P2.50mm_Vertical +JST XA series connector, B06B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +6 +6 +Connector_JST +JST_XA_B06B-XASK-1_1x06_P2.50mm_Vertical +JST XA series connector, B06B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +6 +6 +Connector_JST +JST_XA_B07B-XASK-1-A_1x07_P2.50mm_Vertical +JST XA series connector, B07B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +7 +7 +Connector_JST +JST_XA_B07B-XASK-1_1x07_P2.50mm_Vertical +JST XA series connector, B07B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +7 +7 +Connector_JST +JST_XA_B08B-XASK-1-A_1x08_P2.50mm_Vertical +JST XA series connector, B08B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +8 +8 +Connector_JST +JST_XA_B08B-XASK-1_1x08_P2.50mm_Vertical +JST XA series connector, B08B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +8 +8 +Connector_JST +JST_XA_B09B-XASK-1-A_1x09_P2.50mm_Vertical +JST XA series connector, B09B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +9 +9 +Connector_JST +JST_XA_B09B-XASK-1_1x09_P2.50mm_Vertical +JST XA series connector, B09B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +9 +9 +Connector_JST +JST_XA_B10B-XASK-1-A_1x10_P2.50mm_Vertical +JST XA series connector, B10B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +10 +10 +Connector_JST +JST_XA_B10B-XASK-1_1x10_P2.50mm_Vertical +JST XA series connector, B10B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +10 +10 +Connector_JST +JST_XA_B11B-XASK-1-A_1x11_P2.50mm_Vertical +JST XA series connector, B11B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +11 +11 +Connector_JST +JST_XA_B11B-XASK-1_1x11_P2.50mm_Vertical +JST XA series connector, B11B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +11 +11 +Connector_JST +JST_XA_B12B-XASK-1-A_1x12_P2.50mm_Vertical +JST XA series connector, B12B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +12 +12 +Connector_JST +JST_XA_B12B-XASK-1_1x12_P2.50mm_Vertical +JST XA series connector, B12B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +12 +12 +Connector_JST +JST_XA_B13B-XASK-1-A_1x13_P2.50mm_Vertical +JST XA series connector, B13B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +13 +13 +Connector_JST +JST_XA_B13B-XASK-1_1x13_P2.50mm_Vertical +JST XA series connector, B13B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +13 +13 +Connector_JST +JST_XA_B14B-XASK-1-A_1x14_P2.50mm_Vertical +JST XA series connector, B14B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +14 +14 +Connector_JST +JST_XA_B14B-XASK-1_1x14_P2.50mm_Vertical +JST XA series connector, B14B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +14 +14 +Connector_JST +JST_XA_B15B-XASK-1-A_1x15_P2.50mm_Vertical +JST XA series connector, B15B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +15 +15 +Connector_JST +JST_XA_B15B-XASK-1_1x15_P2.50mm_Vertical +JST XA series connector, B15B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +15 +15 +Connector_JST +JST_XA_B18B-XASK-1_1x18_P2.50mm_Vertical +JST XA series connector, B18B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +18 +18 +Connector_JST +JST_XA_B20B-XASK-1-A_1x20_P2.50mm_Vertical +JST XA series connector, B20B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +20 +20 +Connector_JST +JST_XA_B20B-XASK-1_1x20_P2.50mm_Vertical +JST XA series connector, B20B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +20 +20 +Connector_JST +JST_XA_S02B-XASK-1N-BN_1x02_P2.50mm_Horizontal +JST XA series connector, S02B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +2 +2 +Connector_JST +JST_XA_S02B-XASK-1_1x02_P2.50mm_Horizontal +JST XA series connector, S02B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +2 +2 +Connector_JST +JST_XA_S03B-XASK-1N-BN_1x03_P2.50mm_Horizontal +JST XA series connector, S03B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +3 +3 +Connector_JST +JST_XA_S03B-XASK-1_1x03_P2.50mm_Horizontal +JST XA series connector, S03B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +3 +3 +Connector_JST +JST_XA_S04B-XASK-1N-BN_1x04_P2.50mm_Horizontal +JST XA series connector, S04B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +4 +4 +Connector_JST +JST_XA_S04B-XASK-1_1x04_P2.50mm_Horizontal +JST XA series connector, S04B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +4 +4 +Connector_JST +JST_XA_S05B-XASK-1N-BN_1x05_P2.50mm_Horizontal +JST XA series connector, S05B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +5 +5 +Connector_JST +JST_XA_S05B-XASK-1_1x05_P2.50mm_Horizontal +JST XA series connector, S05B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +5 +5 +Connector_JST +JST_XA_S06B-XASK-1N-BN_1x06_P2.50mm_Horizontal +JST XA series connector, S06B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +6 +6 +Connector_JST +JST_XA_S06B-XASK-1_1x06_P2.50mm_Horizontal +JST XA series connector, S06B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +6 +6 +Connector_JST +JST_XA_S07B-XASK-1N-BN_1x07_P2.50mm_Horizontal +JST XA series connector, S07B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +7 +7 +Connector_JST +JST_XA_S07B-XASK-1_1x07_P2.50mm_Horizontal +JST XA series connector, S07B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +7 +7 +Connector_JST +JST_XA_S08B-XASK-1N-BN_1x08_P2.50mm_Horizontal +JST XA series connector, S08B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +8 +8 +Connector_JST +JST_XA_S08B-XASK-1_1x08_P2.50mm_Horizontal +JST XA series connector, S08B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +8 +8 +Connector_JST +JST_XA_S09B-XASK-1N-BN_1x09_P2.50mm_Horizontal +JST XA series connector, S09B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +9 +9 +Connector_JST +JST_XA_S09B-XASK-1_1x09_P2.50mm_Horizontal +JST XA series connector, S09B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +9 +9 +Connector_JST +JST_XA_S10B-XASK-1N-BN_1x10_P2.50mm_Horizontal +JST XA series connector, S10B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +10 +10 +Connector_JST +JST_XA_S10B-XASK-1_1x10_P2.50mm_Horizontal +JST XA series connector, S10B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +10 +10 +Connector_JST +JST_XA_S11B-XASK-1N-BN_1x11_P2.50mm_Horizontal +JST XA series connector, S11B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +11 +11 +Connector_JST +JST_XA_S11B-XASK-1_1x11_P2.50mm_Horizontal +JST XA series connector, S11B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +11 +11 +Connector_JST +JST_XA_S12B-XASK-1N-BN_1x12_P2.50mm_Horizontal +JST XA series connector, S12B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +12 +12 +Connector_JST +JST_XA_S12B-XASK-1_1x12_P2.50mm_Horizontal +JST XA series connector, S12B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +12 +12 +Connector_JST +JST_XA_S13B-XASK-1N-BN_1x13_P2.50mm_Horizontal +JST XA series connector, S13B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +13 +13 +Connector_JST +JST_XA_S13B-XASK-1_1x13_P2.50mm_Horizontal +JST XA series connector, S13B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +13 +13 +Connector_JST +JST_XA_S14B-XASK-1N-BN_1x14_P2.50mm_Horizontal +JST XA series connector, S14B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +14 +14 +Connector_JST +JST_XA_S14B-XASK-1_1x14_P2.50mm_Horizontal +JST XA series connector, S14B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +14 +14 +Connector_JST +JST_XH_B1B-XH-AM_1x01_P2.50mm_Vertical +JST XH series connector, B1B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +1 +1 +Connector_JST +JST_XH_B2B-XH-AM_1x02_P2.50mm_Vertical +JST XH series connector, B2B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +2 +2 +Connector_JST +JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical +JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +2 +2 +Connector_JST +JST_XH_B3B-XH-AM_1x03_P2.50mm_Vertical +JST XH series connector, B3B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +3 +3 +Connector_JST +JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical +JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +3 +3 +Connector_JST +JST_XH_B4B-XH-AM_1x04_P2.50mm_Vertical +JST XH series connector, B4B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +4 +4 +Connector_JST +JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical +JST XH series connector, B4B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +4 +4 +Connector_JST +JST_XH_B5B-XH-AM_1x05_P2.50mm_Vertical +JST XH series connector, B5B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +5 +5 +Connector_JST +JST_XH_B5B-XH-A_1x05_P2.50mm_Vertical +JST XH series connector, B5B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +5 +5 +Connector_JST +JST_XH_B6B-XH-AM_1x06_P2.50mm_Vertical +JST XH series connector, B6B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +6 +6 +Connector_JST +JST_XH_B6B-XH-A_1x06_P2.50mm_Vertical +JST XH series connector, B6B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +6 +6 +Connector_JST +JST_XH_B7B-XH-AM_1x07_P2.50mm_Vertical +JST XH series connector, B7B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +7 +7 +Connector_JST +JST_XH_B7B-XH-A_1x07_P2.50mm_Vertical +JST XH series connector, B7B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +7 +7 +Connector_JST +JST_XH_B8B-XH-AM_1x08_P2.50mm_Vertical +JST XH series connector, B8B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +8 +8 +Connector_JST +JST_XH_B8B-XH-A_1x08_P2.50mm_Vertical +JST XH series connector, B8B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +8 +8 +Connector_JST +JST_XH_B9B-XH-AM_1x09_P2.50mm_Vertical +JST XH series connector, B9B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +9 +9 +Connector_JST +JST_XH_B9B-XH-A_1x09_P2.50mm_Vertical +JST XH series connector, B9B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +9 +9 +Connector_JST +JST_XH_B10B-XH-AM_1x10_P2.50mm_Vertical +JST XH series connector, B10B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry boss +0 +10 +10 +Connector_JST +JST_XH_B10B-XH-A_1x10_P2.50mm_Vertical +JST XH series connector, B10B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +10 +10 +Connector_JST +JST_XH_B11B-XH-A_1x11_P2.50mm_Vertical +JST XH series connector, B11B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +11 +11 +Connector_JST +JST_XH_B12B-XH-AM_1x12_P2.50mm_Vertical +JST XH series connector, B12B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry boss +0 +12 +12 +Connector_JST +JST_XH_B12B-XH-A_1x12_P2.50mm_Vertical +JST XH series connector, B12B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +12 +12 +Connector_JST +JST_XH_B13B-XH-A_1x13_P2.50mm_Vertical +JST XH series connector, B13B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +13 +13 +Connector_JST +JST_XH_B14B-XH-A_1x14_P2.50mm_Vertical +JST XH series connector, B14B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +14 +14 +Connector_JST +JST_XH_B15B-XH-A_1x15_P2.50mm_Vertical +JST XH series connector, B15B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +15 +15 +Connector_JST +JST_XH_B16B-XH-A_1x16_P2.50mm_Vertical +JST XH series connector, B16B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +16 +16 +Connector_JST +JST_XH_B20B-XH-A_1x20_P2.50mm_Vertical +JST XH series connector, B20B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +20 +20 +Connector_JST +JST_XH_S2B-XH-A-1_1x02_P2.50mm_Horizontal +JST XH series connector, S2B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +2 +2 +Connector_JST +JST_XH_S2B-XH-A_1x02_P2.50mm_Horizontal +JST XH series connector, S2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +2 +2 +Connector_JST +JST_XH_S3B-XH-A-1_1x03_P2.50mm_Horizontal +JST XH series connector, S3B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +3 +3 +Connector_JST +JST_XH_S3B-XH-A_1x03_P2.50mm_Horizontal +JST XH series connector, S3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +3 +3 +Connector_JST +JST_XH_S4B-XH-A-1_1x04_P2.50mm_Horizontal +JST XH series connector, S4B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +4 +4 +Connector_JST +JST_XH_S4B-XH-A_1x04_P2.50mm_Horizontal +JST XH series connector, S4B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +4 +4 +Connector_JST +JST_XH_S5B-XH-A-1_1x05_P2.50mm_Horizontal +JST XH series connector, S5B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +5 +5 +Connector_JST +JST_XH_S5B-XH-A_1x05_P2.50mm_Horizontal +JST XH series connector, S5B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +5 +5 +Connector_JST +JST_XH_S6B-XH-A-1_1x06_P2.50mm_Horizontal +JST XH series connector, S6B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +6 +6 +Connector_JST +JST_XH_S6B-XH-A_1x06_P2.50mm_Horizontal +JST XH series connector, S6B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +6 +6 +Connector_JST +JST_XH_S7B-XH-A-1_1x07_P2.50mm_Horizontal +JST XH series connector, S7B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +7 +7 +Connector_JST +JST_XH_S7B-XH-A_1x07_P2.50mm_Horizontal +JST XH series connector, S7B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +7 +7 +Connector_JST +JST_XH_S8B-XH-A-1_1x08_P2.50mm_Horizontal +JST XH series connector, S8B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +8 +8 +Connector_JST +JST_XH_S8B-XH-A_1x08_P2.50mm_Horizontal +JST XH series connector, S8B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +8 +8 +Connector_JST +JST_XH_S9B-XH-A-1_1x09_P2.50mm_Horizontal +JST XH series connector, S9B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +9 +9 +Connector_JST +JST_XH_S9B-XH-A_1x09_P2.50mm_Horizontal +JST XH series connector, S9B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +9 +9 +Connector_JST +JST_XH_S10B-XH-A-1_1x10_P2.50mm_Horizontal +JST XH series connector, S10B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +10 +10 +Connector_JST +JST_XH_S10B-XH-A_1x10_P2.50mm_Horizontal +JST XH series connector, S10B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +10 +10 +Connector_JST +JST_XH_S11B-XH-A-1_1x11_P2.50mm_Horizontal +JST XH series connector, S11B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +11 +11 +Connector_JST +JST_XH_S11B-XH-A_1x11_P2.50mm_Horizontal +JST XH series connector, S11B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +11 +11 +Connector_JST +JST_XH_S12B-XH-A-1_1x12_P2.50mm_Horizontal +JST XH series connector, S12B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +12 +12 +Connector_JST +JST_XH_S12B-XH-A_1x12_P2.50mm_Horizontal +JST XH series connector, S12B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +12 +12 +Connector_JST +JST_XH_S13B-XH-A-1_1x13_P2.50mm_Horizontal +JST XH series connector, S13B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +13 +13 +Connector_JST +JST_XH_S13B-XH-A_1x13_P2.50mm_Horizontal +JST XH series connector, S13B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +13 +13 +Connector_JST +JST_XH_S14B-XH-A-1_1x14_P2.50mm_Horizontal +JST XH series connector, S14B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +14 +14 +Connector_JST +JST_XH_S14B-XH-A_1x14_P2.50mm_Horizontal +JST XH series connector, S14B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +14 +14 +Connector_JST +JST_XH_S15B-XH-A-1_1x15_P2.50mm_Horizontal +JST XH series connector, S15B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +15 +15 +Connector_JST +JST_XH_S15B-XH-A_1x15_P2.50mm_Horizontal +JST XH series connector, S15B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +15 +15 +Connector_JST +JST_XH_S16B-XH-A_1x16_P2.50mm_Horizontal +JST XH series connector, S16B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +16 +16 +Connector_JST +JST_ZE_B02B-ZESK-1D_1x02_P1.50mm_Vertical +JST ZE series connector, B02B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +2 +2 +Connector_JST +JST_ZE_B03B-ZESK-1D_1x03_P1.50mm_Vertical +JST ZE series connector, B03B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +3 +3 +Connector_JST +JST_ZE_B03B-ZESK-D_1x03_P1.50mm_Vertical +JST ZE series connector, B03B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +3 +3 +Connector_JST +JST_ZE_B04B-ZESK-1D_1x04_P1.50mm_Vertical +JST ZE series connector, B04B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +4 +4 +Connector_JST +JST_ZE_B04B-ZESK-D_1x04_P1.50mm_Vertical +JST ZE series connector, B04B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +4 +4 +Connector_JST +JST_ZE_B05B-ZESK-1D_1x05_P1.50mm_Vertical +JST ZE series connector, B05B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +5 +5 +Connector_JST +JST_ZE_B05B-ZESK-D_1x05_P1.50mm_Vertical +JST ZE series connector, B05B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +5 +5 +Connector_JST +JST_ZE_B06B-ZESK-1D_1x06_P1.50mm_Vertical +JST ZE series connector, B06B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +6 +6 +Connector_JST +JST_ZE_B06B-ZESK-D_1x06_P1.50mm_Vertical +JST ZE series connector, B06B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +6 +6 +Connector_JST +JST_ZE_B07B-ZESK-1D_1x07_P1.50mm_Vertical +JST ZE series connector, B07B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +7 +7 +Connector_JST +JST_ZE_B07B-ZESK-D_1x07_P1.50mm_Vertical +JST ZE series connector, B07B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +7 +7 +Connector_JST +JST_ZE_B08B-ZESK-1D_1x08_P1.50mm_Vertical +JST ZE series connector, B08B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +8 +8 +Connector_JST +JST_ZE_B08B-ZESK-D_1x08_P1.50mm_Vertical +JST ZE series connector, B08B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +8 +8 +Connector_JST +JST_ZE_B09B-ZESK-1D_1x09_P1.50mm_Vertical +JST ZE series connector, B09B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +9 +9 +Connector_JST +JST_ZE_B09B-ZESK-D_1x09_P1.50mm_Vertical +JST ZE series connector, B09B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +9 +9 +Connector_JST +JST_ZE_B10B-ZESK-1D_1x10_P1.50mm_Vertical +JST ZE series connector, B10B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +10 +10 +Connector_JST +JST_ZE_B10B-ZESK-D_1x10_P1.50mm_Vertical +JST ZE series connector, B10B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +10 +10 +Connector_JST +JST_ZE_B11B-ZESK-1D_1x11_P1.50mm_Vertical +JST ZE series connector, B11B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +11 +11 +Connector_JST +JST_ZE_B11B-ZESK-D_1x11_P1.50mm_Vertical +JST ZE series connector, B11B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +11 +11 +Connector_JST +JST_ZE_B12B-ZESK-1D_1x12_P1.50mm_Vertical +JST ZE series connector, B12B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +12 +12 +Connector_JST +JST_ZE_B12B-ZESK-D_1x12_P1.50mm_Vertical +JST ZE series connector, B12B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +12 +12 +Connector_JST +JST_ZE_B13B-ZESK-1D_1x13_P1.50mm_Vertical +JST ZE series connector, B13B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +13 +13 +Connector_JST +JST_ZE_B13B-ZESK-D_1x13_P1.50mm_Vertical +JST ZE series connector, B13B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +13 +13 +Connector_JST +JST_ZE_B14B-ZESK-1D_1x14_P1.50mm_Vertical +JST ZE series connector, B14B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +14 +14 +Connector_JST +JST_ZE_B14B-ZESK-D_1x14_P1.50mm_Vertical +JST ZE series connector, B14B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +14 +14 +Connector_JST +JST_ZE_B15B-ZESK-1D_1x15_P1.50mm_Vertical +JST ZE series connector, B15B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +15 +15 +Connector_JST +JST_ZE_B15B-ZESK-D_1x15_P1.50mm_Vertical +JST ZE series connector, B15B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +15 +15 +Connector_JST +JST_ZE_B16B-ZESK-1D_1x16_P1.50mm_Vertical +JST ZE series connector, B16B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +16 +16 +Connector_JST +JST_ZE_B16B-ZESK-D_1x16_P1.50mm_Vertical +JST ZE series connector, B16B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +16 +16 +Connector_JST +JST_ZE_BM02B-ZESS-TBT_1x02-1MP_P1.50mm_Vertical +JST ZE series connector, BM02B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +4 +3 +Connector_JST +JST_ZE_BM03B-ZESS-TBT_1x03-1MP_P1.50mm_Vertical +JST ZE series connector, BM03B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +5 +4 +Connector_JST +JST_ZE_BM04B-ZESS-TBT_1x04-1MP_P1.50mm_Vertical +JST ZE series connector, BM04B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +6 +5 +Connector_JST +JST_ZE_BM05B-ZESS-TBT_1x05-1MP_P1.50mm_Vertical +JST ZE series connector, BM05B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +7 +6 +Connector_JST +JST_ZE_BM06B-ZESS-TBT_1x06-1MP_P1.50mm_Vertical +JST ZE series connector, BM06B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +8 +7 +Connector_JST +JST_ZE_BM07B-ZESS-TBT_1x07-1MP_P1.50mm_Vertical +JST ZE series connector, BM07B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +9 +8 +Connector_JST +JST_ZE_BM08B-ZESS-TBT_1x08-1MP_P1.50mm_Vertical +JST ZE series connector, BM08B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +10 +9 +Connector_JST +JST_ZE_BM09B-ZESS-TBT_1x09-1MP_P1.50mm_Vertical +JST ZE series connector, BM09B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +11 +10 +Connector_JST +JST_ZE_BM10B-ZESS-TBT_1x10-1MP_P1.50mm_Vertical +JST ZE series connector, BM10B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +12 +11 +Connector_JST +JST_ZE_BM11B-ZESS-TBT_1x11-1MP_P1.50mm_Vertical +JST ZE series connector, BM11B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +13 +12 +Connector_JST +JST_ZE_BM12B-ZESS-TBT_1x12-1MP_P1.50mm_Vertical +JST ZE series connector, BM12B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +14 +13 +Connector_JST +JST_ZE_BM13B-ZESS-TBT_1x13-1MP_P1.50mm_Vertical +JST ZE series connector, BM13B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +15 +14 +Connector_JST +JST_ZE_BM14B-ZESS-TBT_1x14-1MP_P1.50mm_Vertical +JST ZE series connector, BM14B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +16 +15 +Connector_JST +JST_ZE_BM15B-ZESS-TBT_1x15-1MP_P1.50mm_Vertical +JST ZE series connector, BM15B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +17 +16 +Connector_JST +JST_ZE_BM16B-ZESS-TBT_1x16-1MP_P1.50mm_Vertical +JST ZE series connector, BM16B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +18 +17 +Connector_JST +JST_ZE_S02B-ZESK-2D_1x02_P1.50mm_Horizontal +JST ZE series connector, S02B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +2 +2 +Connector_JST +JST_ZE_S03B-ZESK-2D_1x03_P1.50mm_Horizontal +JST ZE series connector, S03B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +3 +3 +Connector_JST +JST_ZE_S04B-ZESK-2D_1x04_P1.50mm_Horizontal +JST ZE series connector, S04B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +4 +4 +Connector_JST +JST_ZE_S05B-ZESK-2D_1x05_P1.50mm_Horizontal +JST ZE series connector, S05B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +5 +5 +Connector_JST +JST_ZE_S06B-ZESK-2D_1x06_P1.50mm_Horizontal +JST ZE series connector, S06B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +6 +6 +Connector_JST +JST_ZE_S07B-ZESK-2D_1x07_P1.50mm_Horizontal +JST ZE series connector, S07B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +7 +7 +Connector_JST +JST_ZE_S08B-ZESK-2D_1x08_P1.50mm_Horizontal +JST ZE series connector, S08B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +8 +8 +Connector_JST +JST_ZE_S09B-ZESK-2D_1x09_P1.50mm_Horizontal +JST ZE series connector, S09B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +9 +9 +Connector_JST +JST_ZE_S10B-ZESK-2D_1x10_P1.50mm_Horizontal +JST ZE series connector, S10B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +10 +10 +Connector_JST +JST_ZE_S11B-ZESK-2D_1x11_P1.50mm_Horizontal +JST ZE series connector, S11B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +11 +11 +Connector_JST +JST_ZE_S12B-ZESK-2D_1x12_P1.50mm_Horizontal +JST ZE series connector, S12B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +12 +12 +Connector_JST +JST_ZE_S13B-ZESK-2D_1x13_P1.50mm_Horizontal +JST ZE series connector, S13B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +13 +13 +Connector_JST +JST_ZE_S14B-ZESK-2D_1x14_P1.50mm_Horizontal +JST ZE series connector, S14B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +14 +14 +Connector_JST +JST_ZE_S15B-ZESK-2D_1x15_P1.50mm_Horizontal +JST ZE series connector, S15B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +15 +15 +Connector_JST +JST_ZE_S16B-ZESK-2D_1x16_P1.50mm_Horizontal +JST ZE series connector, S16B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +16 +16 +Connector_JST +JST_ZE_SM02B-ZESS-TB_1x02-1MP_P1.50mm_Horizontal +JST ZE series connector, SM02B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +4 +3 +Connector_JST +JST_ZE_SM03B-ZESS-TB_1x03-1MP_P1.50mm_Horizontal +JST ZE series connector, SM03B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +5 +4 +Connector_JST +JST_ZE_SM04B-ZESS-TB_1x04-1MP_P1.50mm_Horizontal +JST ZE series connector, SM04B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +6 +5 +Connector_JST +JST_ZE_SM05B-ZESS-TB_1x05-1MP_P1.50mm_Horizontal +JST ZE series connector, SM05B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +7 +6 +Connector_JST +JST_ZE_SM06B-ZESS-TB_1x06-1MP_P1.50mm_Horizontal +JST ZE series connector, SM06B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +8 +7 +Connector_JST +JST_ZE_SM07B-ZESS-TB_1x07-1MP_P1.50mm_Horizontal +JST ZE series connector, SM07B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +9 +8 +Connector_JST +JST_ZE_SM08B-ZESS-TB_1x08-1MP_P1.50mm_Horizontal +JST ZE series connector, SM08B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +10 +9 +Connector_JST +JST_ZE_SM09B-ZESS-TB_1x09-1MP_P1.50mm_Horizontal +JST ZE series connector, SM09B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +11 +10 +Connector_JST +JST_ZE_SM10B-ZESS-TB_1x10-1MP_P1.50mm_Horizontal +JST ZE series connector, SM10B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +12 +11 +Connector_JST +JST_ZE_SM11B-ZESS-TB_1x11-1MP_P1.50mm_Horizontal +JST ZE series connector, SM11B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +13 +12 +Connector_JST +JST_ZE_SM12B-ZESS-TB_1x12-1MP_P1.50mm_Horizontal +JST ZE series connector, SM12B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +14 +13 +Connector_JST +JST_ZE_SM13B-ZESS-TB_1x13-1MP_P1.50mm_Horizontal +JST ZE series connector, SM13B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +15 +14 +Connector_JST +JST_ZE_SM14B-ZESS-TB_1x14-1MP_P1.50mm_Horizontal +JST ZE series connector, SM14B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +16 +15 +Connector_JST +JST_ZE_SM15B-ZESS-TB_1x15-1MP_P1.50mm_Horizontal +JST ZE series connector, SM15B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +17 +16 +Connector_JST +JST_ZE_SM16B-ZESS-TB_1x16-1MP_P1.50mm_Horizontal +JST ZE series connector, SM16B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +18 +17 +Connector_JST +JST_ZH_B2B-ZR-SM4-TF_1x02-1MP_P1.50mm_Vertical +JST ZH series connector, B2B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +4 +3 +Connector_JST +JST_ZH_B2B-ZR_1x02_P1.50mm_Vertical +JST ZH series connector, B2B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +2 +2 +Connector_JST +JST_ZH_B3B-ZR-SM4-TF_1x03-1MP_P1.50mm_Vertical +JST ZH series connector, B3B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +5 +4 +Connector_JST +JST_ZH_B3B-ZR_1x03_P1.50mm_Vertical +JST ZH series connector, B3B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +3 +3 +Connector_JST +JST_ZH_B4B-ZR-SM4-TF_1x04-1MP_P1.50mm_Vertical +JST ZH series connector, B4B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +6 +5 +Connector_JST +JST_ZH_B4B-ZR_1x04_P1.50mm_Vertical +JST ZH series connector, B4B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +4 +4 +Connector_JST +JST_ZH_B5B-ZR-SM4-TF_1x05-1MP_P1.50mm_Vertical +JST ZH series connector, B5B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +7 +6 +Connector_JST +JST_ZH_B5B-ZR_1x05_P1.50mm_Vertical +JST ZH series connector, B5B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +5 +5 +Connector_JST +JST_ZH_B6B-ZR-SM4-TF_1x06-1MP_P1.50mm_Vertical +JST ZH series connector, B6B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +8 +7 +Connector_JST +JST_ZH_B6B-ZR_1x06_P1.50mm_Vertical +JST ZH series connector, B6B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +6 +6 +Connector_JST +JST_ZH_B7B-ZR-SM4-TF_1x07-1MP_P1.50mm_Vertical +JST ZH series connector, B7B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +9 +8 +Connector_JST +JST_ZH_B7B-ZR_1x07_P1.50mm_Vertical +JST ZH series connector, B7B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +7 +7 +Connector_JST +JST_ZH_B8B-ZR-SM4-TF_1x08-1MP_P1.50mm_Vertical +JST ZH series connector, B8B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +10 +9 +Connector_JST +JST_ZH_B8B-ZR_1x08_P1.50mm_Vertical +JST ZH series connector, B8B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +8 +8 +Connector_JST +JST_ZH_B9B-ZR-SM4-TF_1x09-1MP_P1.50mm_Vertical +JST ZH series connector, B9B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +11 +10 +Connector_JST +JST_ZH_B9B-ZR_1x09_P1.50mm_Vertical +JST ZH series connector, B9B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +9 +9 +Connector_JST +JST_ZH_B10B-ZR-SM4-TF_1x10-1MP_P1.50mm_Vertical +JST ZH series connector, B10B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +12 +11 +Connector_JST +JST_ZH_B10B-ZR_1x10_P1.50mm_Vertical +JST ZH series connector, B10B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +10 +10 +Connector_JST +JST_ZH_B11B-ZR-SM4-TF_1x11-1MP_P1.50mm_Vertical +JST ZH series connector, B11B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +13 +12 +Connector_JST +JST_ZH_B11B-ZR_1x11_P1.50mm_Vertical +JST ZH series connector, B11B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +11 +11 +Connector_JST +JST_ZH_B12B-ZR-SM4-TF_1x12-1MP_P1.50mm_Vertical +JST ZH series connector, B12B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +14 +13 +Connector_JST +JST_ZH_B12B-ZR_1x12_P1.50mm_Vertical +JST ZH series connector, B12B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +12 +12 +Connector_JST +JST_ZH_B13B-ZR-SM4-TF_1x13-1MP_P1.50mm_Vertical +JST ZH series connector, B13B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +15 +14 +Connector_JST +JST_ZH_S2B-ZR-SM4A-TF_1x02-1MP_P1.50mm_Horizontal +JST ZH series connector, S2B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +4 +3 +Connector_JST +JST_ZH_S3B-ZR-SM4A-TF_1x03-1MP_P1.50mm_Horizontal +JST ZH series connector, S3B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +5 +4 +Connector_JST +JST_ZH_S4B-ZR-SM4A-TF_1x04-1MP_P1.50mm_Horizontal +JST ZH series connector, S4B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +6 +5 +Connector_JST +JST_ZH_S5B-ZR-SM4A-TF_1x05-1MP_P1.50mm_Horizontal +JST ZH series connector, S5B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +7 +6 +Connector_JST +JST_ZH_S6B-ZR-SM4A-TF_1x06-1MP_P1.50mm_Horizontal +JST ZH series connector, S6B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +8 +7 +Connector_JST +JST_ZH_S7B-ZR-SM4A-TF_1x07-1MP_P1.50mm_Horizontal +JST ZH series connector, S7B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +9 +8 +Connector_JST +JST_ZH_S8B-ZR-SM4A-TF_1x08-1MP_P1.50mm_Horizontal +JST ZH series connector, S8B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +10 +9 +Connector_JST +JST_ZH_S9B-ZR-SM4A-TF_1x09-1MP_P1.50mm_Horizontal +JST ZH series connector, S9B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +11 +10 +Connector_JST +JST_ZH_S10B-ZR-SM4A-TF_1x10-1MP_P1.50mm_Horizontal +JST ZH series connector, S10B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +12 +11 +Connector_JST +JST_ZH_S11B-ZR-SM4A-TF_1x11-1MP_P1.50mm_Horizontal +JST ZH series connector, S11B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +13 +12 +Connector_JST +JST_ZH_S12B-ZR-SM4A-TF_1x12-1MP_P1.50mm_Horizontal +JST ZH series connector, S12B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +14 +13 +Connector_JST +JST_ZH_S13B-ZR-SM4A-TF_1x13-1MP_P1.50mm_Horizontal +JST ZH series connector, S13B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502382-0270_1x02-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0270 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502382-0370_1x03-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0370 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502382-0470_1x04-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0470 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502382-0570_1x05-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0570 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502382-0670_1x06-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0670 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502382-0770_1x07-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0770 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502382-0870_1x08-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0870 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502382-0970_1x09-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0970 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502382-1070_1x10-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1070 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502382-1170_1x11-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1170 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_502382-1270_1x12-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1270 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502382-1370_1x13-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1370 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502382-1470_1x14-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1470 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502382-1570_1x15-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1570 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502386-0270_1x02-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0270 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0370 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502386-0470_1x04-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0470 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502386-0570_1x05-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0570 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502386-0670_1x06-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0670 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502386-0770_1x07-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0770 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502386-0870_1x08-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0870 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502386-0970_1x09-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0970 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502386-1070_1x10-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1070 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502386-1170_1x11-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1170 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_502386-1270_1x12-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1270 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502386-1370_1x13-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1370 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502386-1470_1x14-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1470 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502386-1570_1x15-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1570 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502443-0270_1x02-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0270 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502443-0370_1x03-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0370 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502443-0470_1x04-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0470 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502443-0570_1x05-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0570 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502443-0670_1x06-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0670 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502443-0770_1x07-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0770 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502443-0870_1x08-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0870 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502443-0970_1x09-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0970 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502443-1270_1x12-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1270 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502443-1370_1x13-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1370 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502443-1470_1x14-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1470 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502443-1570_1x15-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1570 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502494-0270_1x02-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0270 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502494-0370_1x03-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0370 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502494-0470_1x04-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0470 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502494-0670_1x06-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0670 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502494-0870_1x08-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0870 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502494-1070_1x10-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1070 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502494-1270_1x12-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1270 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502494-1370_1x13-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1370 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502494-1470_1x14-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1470 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502494-1570_1x15-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1570 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502585-0270_1x02-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0270 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502585-0370_1x03-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0370 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502585-0470_1x04-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0470 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502585-0570_1x05-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0570 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502585-0670_1x06-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0670 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502585-0770_1x07-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0770 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502585-0870_1x08-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0870 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502585-0970_1x09-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0970 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502585-1070_1x10-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1070 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502585-1170_1x11-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1170 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_502585-1270_1x12-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1270 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502585-1370_1x13-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1370 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502585-1470_1x14-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1470 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502585-1570_1x15-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1570 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_505405-0270_1x02-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0270 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_505405-0370_1x03-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0370 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_505405-0470_1x04-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0470 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_505405-0570_1x05-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0570 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_505405-0670_1x06-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0670 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_505405-0770_1x07-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0770 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_505405-0870_1x08-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0870 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_505405-0970_1x09-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0970 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_505405-1070_1x10-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1070 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_505405-1170_1x11-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1170 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_505405-1270_1x12-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1270 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_505405-1370_1x13-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1370 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_505405-1470_1x14-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1470 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_505405-1570_1x15-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1570 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +17 +16 +Connector_Molex +Molex_KK-254_AE-6410-02A_1x02_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-02A example for new part number: 22-27-2021, 2 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +2 +2 +Connector_Molex +Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-03A example for new part number: 22-27-2031, 3 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +3 +3 +Connector_Molex +Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +4 +4 +Connector_Molex +Molex_KK-254_AE-6410-05A_1x05_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-05A example for new part number: 22-27-2051, 5 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +5 +5 +Connector_Molex +Molex_KK-254_AE-6410-06A_1x06_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-06A example for new part number: 22-27-2061, 6 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +6 +6 +Connector_Molex +Molex_KK-254_AE-6410-07A_1x07_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-07A example for new part number: 22-27-2071, 7 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +7 +7 +Connector_Molex +Molex_KK-254_AE-6410-08A_1x08_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-08A example for new part number: 22-27-2081, 8 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +8 +8 +Connector_Molex +Molex_KK-254_AE-6410-09A_1x09_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-09A example for new part number: 22-27-2091, 9 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +9 +9 +Connector_Molex +Molex_KK-254_AE-6410-10A_1x10_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-10A example for new part number: 22-27-2101, 10 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +10 +10 +Connector_Molex +Molex_KK-254_AE-6410-11A_1x11_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-11A example for new part number: 22-27-2111, 11 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +11 +11 +Connector_Molex +Molex_KK-254_AE-6410-12A_1x12_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-12A example for new part number: 22-27-2121, 12 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +12 +12 +Connector_Molex +Molex_KK-254_AE-6410-13A_1x13_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-13A example for new part number: 22-27-2131, 13 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +13 +13 +Connector_Molex +Molex_KK-254_AE-6410-14A_1x14_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-14A example for new part number: 22-27-2141, 14 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +14 +14 +Connector_Molex +Molex_KK-254_AE-6410-15A_1x15_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-15A example for new part number: 22-27-2151, 15 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +15 +15 +Connector_Molex +Molex_KK-254_AE-6410-16A_1x16_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-16A example for new part number: 22-27-2161, 16 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +16 +16 +Connector_Molex +Molex_KK-396_5273-02A_1x02_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-02A example for new part number: 09-65-2028, 2 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +2 +2 +Connector_Molex +Molex_KK-396_5273-03A_1x03_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-03A example for new part number: 09-65-2038, 3 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +3 +3 +Connector_Molex +Molex_KK-396_5273-04A_1x04_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-04A example for new part number: 09-65-2048, 4 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +4 +4 +Connector_Molex +Molex_KK-396_5273-05A_1x05_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-05A example for new part number: 09-65-2058, 5 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +5 +5 +Connector_Molex +Molex_KK-396_5273-06A_1x06_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-06A example for new part number: 09-65-2068, 6 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +6 +6 +Connector_Molex +Molex_KK-396_5273-07A_1x07_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-07A example for new part number: 09-65-2078, 7 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +7 +7 +Connector_Molex +Molex_KK-396_5273-08A_1x08_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-08A example for new part number: 09-65-2088, 8 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +8 +8 +Connector_Molex +Molex_KK-396_5273-09A_1x09_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-09A example for new part number: 09-65-2098, 9 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +9 +9 +Connector_Molex +Molex_KK-396_5273-10A_1x10_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-10A example for new part number: 09-65-2108, 10 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +10 +10 +Connector_Molex +Molex_KK-396_5273-11A_1x11_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-11A example for new part number: 09-65-2118, 11 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +11 +11 +Connector_Molex +Molex_KK-396_5273-12A_1x12_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-12A example for new part number: 09-65-2128, 12 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +12 +12 +Connector_Molex +Molex_KK-396_A-41791-0002_1x02_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0002 example for new part number: 26-60-4020, 2 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +2 +2 +Connector_Molex +Molex_KK-396_A-41791-0003_1x03_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0003 example for new part number: 26-60-4030, 3 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +3 +3 +Connector_Molex +Molex_KK-396_A-41791-0004_1x04_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0004 example for new part number: 26-60-4040, 4 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +4 +4 +Connector_Molex +Molex_KK-396_A-41791-0005_1x05_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0005 example for new part number: 26-60-4050, 5 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +5 +5 +Connector_Molex +Molex_KK-396_A-41791-0006_1x06_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0006 example for new part number: 26-60-4060, 6 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +6 +6 +Connector_Molex +Molex_KK-396_A-41791-0007_1x07_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0007 example for new part number: 26-60-4070, 7 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +7 +7 +Connector_Molex +Molex_KK-396_A-41791-0008_1x08_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0008 example for new part number: 26-60-4080, 8 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +8 +8 +Connector_Molex +Molex_KK-396_A-41791-0009_1x09_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0009 example for new part number: 26-60-4090, 9 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +9 +9 +Connector_Molex +Molex_KK-396_A-41791-0010_1x10_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0010 example for new part number: 26-60-4100, 10 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +10 +10 +Connector_Molex +Molex_KK-396_A-41791-0011_1x11_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0011 example for new part number: 26-60-4110, 11 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +11 +11 +Connector_Molex +Molex_KK-396_A-41791-0012_1x12_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0012 example for new part number: 26-60-4120, 12 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +12 +12 +Connector_Molex +Molex_KK-396_A-41791-0013_1x13_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0013 example for new part number: 26-60-4130, 13 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +13 +13 +Connector_Molex +Molex_KK-396_A-41791-0014_1x14_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0014 example for new part number: 26-60-4140, 14 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +14 +14 +Connector_Molex +Molex_KK-396_A-41791-0015_1x15_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0015 example for new part number: 26-60-4150, 15 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +15 +15 +Connector_Molex +Molex_KK-396_A-41791-0016_1x16_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0016 example for new part number: 26-60-4160, 16 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +16 +16 +Connector_Molex +Molex_KK-396_A-41791-0017_1x17_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0017 example for new part number: 26-60-4170, 17 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +17 +17 +Connector_Molex +Molex_KK-396_A-41791-0018_1x18_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0018 example for new part number: 26-60-4180, 18 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +18 +18 +Connector_Molex +Molex_KK-396_A-41792-0002_1x02_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0002 example for new part number: 26-60-5020, 2 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +2 +2 +Connector_Molex +Molex_KK-396_A-41792-0003_1x03_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0003 example for new part number: 26-60-5030, 3 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +3 +3 +Connector_Molex +Molex_KK-396_A-41792-0004_1x04_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0004 example for new part number: 26-60-5040, 4 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +4 +4 +Connector_Molex +Molex_KK-396_A-41792-0005_1x05_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0005 example for new part number: 26-60-5050, 5 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +5 +5 +Connector_Molex +Molex_KK-396_A-41792-0006_1x06_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0006 example for new part number: 26-60-5060, 6 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +6 +6 +Connector_Molex +Molex_KK-396_A-41792-0007_1x07_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0007 example for new part number: 26-60-5070, 7 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +7 +7 +Connector_Molex +Molex_KK-396_A-41792-0008_1x08_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0008 example for new part number: 26-60-5080, 8 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +8 +8 +Connector_Molex +Molex_KK-396_A-41792-0009_1x09_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0009 example for new part number: 26-60-5090, 9 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +9 +9 +Connector_Molex +Molex_KK-396_A-41792-0010_1x10_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0010 example for new part number: 26-60-5100, 10 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +10 +10 +Connector_Molex +Molex_KK-396_A-41792-0011_1x11_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0011 example for new part number: 26-60-5110, 11 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +11 +11 +Connector_Molex +Molex_KK-396_A-41792-0012_1x12_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0012 example for new part number: 26-60-5120, 12 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +12 +12 +Connector_Molex +Molex_KK-396_A-41792-0013_1x13_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0013 example for new part number: 26-60-5130, 13 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +13 +13 +Connector_Molex +Molex_KK-396_A-41792-0014_1x14_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0014 example for new part number: 26-60-5140, 14 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +14 +14 +Connector_Molex +Molex_KK-396_A-41792-0015_1x15_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0015 example for new part number: 26-60-5150, 15 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +15 +15 +Connector_Molex +Molex_KK-396_A-41792-0016_1x16_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0016 example for new part number: 26-60-5160, 16 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +16 +16 +Connector_Molex +Molex_KK-396_A-41792-0017_1x17_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0017 example for new part number: 26-60-5170, 17 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +17 +17 +Connector_Molex +Molex_KK-396_A-41792-0018_1x18_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0018 example for new part number: 26-60-5180, 18 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +18 +18 +Connector_Molex +Molex_Mega-Fit_76825-0002_2x01_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0002 (compatible alternatives: 172064-0002, 172064-1002), 1 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +2 +2 +Connector_Molex +Molex_Mega-Fit_76825-0004_2x02_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0004 (compatible alternatives: 172064-0004, 172064-1004), 2 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +4 +4 +Connector_Molex +Molex_Mega-Fit_76825-0006_2x03_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0006 (compatible alternatives: 172064-0006, 172064-1006), 3 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +6 +6 +Connector_Molex +Molex_Mega-Fit_76825-0008_2x04_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0008 (compatible alternatives: 172064-0008, 172064-1008), 4 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +8 +8 +Connector_Molex +Molex_Mega-Fit_76825-0010_2x05_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0010 (compatible alternatives: 172064-0010, 172064-1010), 5 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +10 +10 +Connector_Molex +Molex_Mega-Fit_76825-0012_2x06_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0012 (compatible alternatives: 172064-0012, 172064-1012), 6 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +12 +12 +Connector_Molex +Molex_Mega-Fit_76829-0002_2x01_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0002 (compatible alternatives: 172065-0002, 172065-1002), 1 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +2 +2 +Connector_Molex +Molex_Mega-Fit_76829-0004_2x02_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0004 (compatible alternatives: 172065-0004, 172065-1004), 2 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Mega-Fit_76829-0006_2x03_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0006 (compatible alternatives: 172065-0006, 172065-1006), 3 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Mega-Fit_76829-0008_2x04_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0008 (compatible alternatives: 172065-0008, 172065-1008), 4 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Mega-Fit_76829-0010_2x05_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0010 (compatible alternatives: 172065-0010, 172065-1010), 5 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +10 +10 +Connector_Molex +Molex_Mega-Fit_76829-0012_2x06_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0012 (compatible alternatives: 172065-0012, 172065-1012), 6 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +12 +12 +Connector_Molex +Molex_Mega-Fit_76829-0102_2x01_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0102 (compatible alternatives: 172065-0202, 172065-0302), 1 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +2 +2 +Connector_Molex +Molex_Mega-Fit_76829-0104_2x02_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0104 (compatible alternatives: 172065-0204, 172065-0304), 2 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Mega-Fit_76829-0106_2x03_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0106 (compatible alternatives: 172065-0206, 172065-0306), 3 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Mega-Fit_76829-0108_2x04_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0108 (compatible alternatives: 172065-0208, 172065-0308), 4 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Mega-Fit_76829-0110_2x05_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0110 (compatible alternatives: 172065-0210, 172065-0310), 5 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +10 +10 +Connector_Molex +Molex_Mega-Fit_76829-0112_2x06_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0112 (compatible alternatives: 172065-0212, 172065-0312), 6 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0200_2x01_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0200 (alternative finishes: 43045-020x), 1 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0210_2x01-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0210 (compatible alternatives: 43045-0211, 43045-0209), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0212_2x01_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0212 (compatible alternatives: 43045-0213, 43045-0224), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0215_2x01_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0215 (compatible alternatives: 43045-0216, 43045-0217), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0218_2x01-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0218 (compatible alternatives: 43045-0219, 43045-0220), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0221_2x01-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0221 (alternative finishes: 43045-022x), 1 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0400_2x02_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0400 (alternative finishes: 43045-040x), 2 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0410_2x02-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0410 (compatible alternatives: 43045-0411, 43045-0409), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0412_2x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0412 (compatible alternatives: 43045-0413, 43045-0424), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0415_2x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0415 (compatible alternatives: 43045-0416, 43045-0417), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0418_2x02-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0418 (compatible alternatives: 43045-0419, 43045-0420), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0421_2x02-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0421 (alternative finishes: 43045-042x), 2 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0600_2x03_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0600 (alternative finishes: 43045-060x), 3 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0610_2x03-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0610 (compatible alternatives: 43045-0611, 43045-0609), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0612_2x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0612 (compatible alternatives: 43045-0613, 43045-0624), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0615_2x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0615 (compatible alternatives: 43045-0616, 43045-0617), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0618_2x03-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0618 (compatible alternatives: 43045-0619, 43045-0620), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0621_2x03-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0621 (alternative finishes: 43045-062x), 3 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0800_2x04_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0800 (alternative finishes: 43045-080x), 4 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0810_2x04-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0810 (compatible alternatives: 43045-0811, 43045-0809), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0812_2x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0812 (compatible alternatives: 43045-0813, 43045-0824), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0815_2x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0815 (compatible alternatives: 43045-0816, 43045-0817), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0818_2x04-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0818 (compatible alternatives: 43045-0819, 43045-0820), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0821_2x04-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0821 (alternative finishes: 43045-082x), 4 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1000_2x05_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1000 (alternative finishes: 43045-100x), 5 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1010_2x05-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1010 (compatible alternatives: 43045-1011, 43045-1009), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1012_2x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1012 (compatible alternatives: 43045-1013, 43045-1024), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1015_2x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1015 (compatible alternatives: 43045-1016, 43045-1017), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1018_2x05-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1018 (compatible alternatives: 43045-1019, 43045-1020), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1021_2x05-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1021 (alternative finishes: 43045-102x), 5 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1200_2x06_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1200 (alternative finishes: 43045-120x), 6 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1210_2x06-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1210 (compatible alternatives: 43045-1211, 43045-1209), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1212_2x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1212 (compatible alternatives: 43045-1213, 43045-1224), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1215_2x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1215 (compatible alternatives: 43045-1216, 43045-1217), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1218_2x06-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1218 (compatible alternatives: 43045-1219, 43045-1220), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1221_2x06-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1221 (alternative finishes: 43045-122x), 6 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1400_2x07_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1400 (alternative finishes: 43045-140x), 7 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +14 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1410_2x07-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1410 (compatible alternatives: 43045-1411, 43045-1409), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +16 +15 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1412_2x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1412 (compatible alternatives: 43045-1413, 43045-1424), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +14 +14 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1415_2x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1415 (compatible alternatives: 43045-1416, 43045-1417), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +14 +14 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1418_2x07-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1418 (compatible alternatives: 43045-1419, 43045-1420), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +16 +15 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1421_2x07-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1421 (alternative finishes: 43045-142x), 7 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +16 +15 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1600_2x08_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1600 (alternative finishes: 43045-160x), 8 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +16 +16 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1610_2x08-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1610 (compatible alternatives: 43045-1611, 43045-1609), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +18 +17 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1612_2x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1612 (compatible alternatives: 43045-1613, 43045-1624), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +16 +16 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1615_2x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1615 (compatible alternatives: 43045-1616, 43045-1617), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +16 +16 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1618_2x08-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1618 (compatible alternatives: 43045-1619, 43045-1620), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +18 +17 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1621_2x08-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1621 (alternative finishes: 43045-162x), 8 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +18 +17 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1800_2x09_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1800 (alternative finishes: 43045-180x), 9 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +18 +18 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1810_2x09-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1810 (compatible alternatives: 43045-1811, 43045-1809), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +20 +19 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1812_2x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1812 (compatible alternatives: 43045-1813, 43045-1824), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +18 +18 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1815_2x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1815 (compatible alternatives: 43045-1816, 43045-1817), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +18 +18 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1818_2x09-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1818 (compatible alternatives: 43045-1819, 43045-1820), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +20 +19 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1821_2x09-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1821 (alternative finishes: 43045-182x), 9 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +20 +19 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2000_2x10_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2000 (alternative finishes: 43045-200x), 10 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +20 +20 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2010_2x10-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2010 (compatible alternatives: 43045-2011, 43045-2009), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +22 +21 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2012_2x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2012 (compatible alternatives: 43045-2013, 43045-2024), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +20 +20 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2015_2x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2015 (compatible alternatives: 43045-2016, 43045-2017), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +20 +20 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2018_2x10-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2018 (compatible alternatives: 43045-2019, 43045-2020), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +22 +21 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2021_2x10-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2021 (alternative finishes: 43045-202x), 10 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +22 +21 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2200_2x11_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2200 (alternative finishes: 43045-220x), 11 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +22 +22 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2210_2x11-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2210 (compatible alternatives: 43045-2211, 43045-2209), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +24 +23 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2212_2x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2212 (compatible alternatives: 43045-2213, 43045-2224), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +22 +22 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2215_2x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2215 (compatible alternatives: 43045-2216, 43045-2217), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +22 +22 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2218_2x11-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2218 (compatible alternatives: 43045-2219, 43045-2220), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +24 +23 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2221_2x11-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2221 (alternative finishes: 43045-222x), 11 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +24 +23 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2400_2x12_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2400 (alternative finishes: 43045-240x), 12 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +24 +24 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2410_2x12-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2410 (compatible alternatives: 43045-2411, 43045-2409), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +26 +25 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2412_2x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2412 (compatible alternatives: 43045-2413, 43045-2424), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +24 +24 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2415_2x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2415 (compatible alternatives: 43045-2416, 43045-2417), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +24 +24 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2418_2x12-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2418 (compatible alternatives: 43045-2419, 43045-2420), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +26 +25 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2421_2x12-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2421 (alternative finishes: 43045-242x), 12 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +26 +25 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0200_1x02_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0200 (compatible alternatives: 43650-0201, 43650-0202), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0210_1x02-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0210 (compatible alternatives: 43650-0211, 43650-0209), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0210_1x02-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0210 (compatible alternatives: 43650-0211, 43650-0209), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0215_1x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0215 (compatible alternatives: 43650-0216, 43650-0217), 2 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0221_1x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0221 (compatible alternatives: 43650-0222, 43650-0223), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0224_1x02-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0224 (compatible alternatives: 43650-0225, 43650-0226), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0300_1x03_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0300 (compatible alternatives: 43650-0301, 43650-0302), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +3 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0310_1x03-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0310 (compatible alternatives: 43650-0311, 43650-0309), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +5 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0310_1x03-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0310 (compatible alternatives: 43650-0311, 43650-0309), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +5 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0315_1x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0315 (compatible alternatives: 43650-0316, 43650-0317), 3 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +3 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0321_1x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0321 (compatible alternatives: 43650-0322, 43650-0323), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +3 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0324_1x03-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0324 (compatible alternatives: 43650-0325, 43650-0326), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +5 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0400_1x04_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0400 (compatible alternatives: 43650-0401, 43650-0402), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0410_1x04-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0410 (compatible alternatives: 43650-0411, 43650-0409), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0410_1x04-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0410 (compatible alternatives: 43650-0411, 43650-0409), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0415_1x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0415 (compatible alternatives: 43650-0416, 43650-0417), 4 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0421_1x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0421 (compatible alternatives: 43650-0422, 43650-0423), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0424_1x04-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0424 (compatible alternatives: 43650-0425, 43650-0426), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0500_1x05_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0500 (compatible alternatives: 43650-0501, 43650-0502), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +5 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0510_1x05-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0510 (compatible alternatives: 43650-0511, 43650-0509), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +7 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0510_1x05-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0510 (compatible alternatives: 43650-0511, 43650-0509), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +7 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0515_1x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0515 (compatible alternatives: 43650-0516, 43650-0517), 5 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +5 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0521_1x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0521 (compatible alternatives: 43650-0522, 43650-0523), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +5 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0524_1x05-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0524 (compatible alternatives: 43650-0525, 43650-0526), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +7 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0600_1x06_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0600 (compatible alternatives: 43650-0601, 43650-0602), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0610_1x06-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0610 (compatible alternatives: 43650-0611, 43650-0609), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0610_1x06-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0610 (compatible alternatives: 43650-0611, 43650-0609), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0615_1x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0615 (compatible alternatives: 43650-0616, 43650-0617), 6 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0621_1x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0621 (compatible alternatives: 43650-0622, 43650-0623), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0624_1x06-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0624 (compatible alternatives: 43650-0625, 43650-0626), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0700_1x07_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0700 (compatible alternatives: 43650-0701, 43650-0702), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +7 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0710_1x07-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0710 (compatible alternatives: 43650-0711, 43650-0709), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +9 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0710_1x07-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0710 (compatible alternatives: 43650-0711, 43650-0709), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +9 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0715_1x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0715 (compatible alternatives: 43650-0716, 43650-0717), 7 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +7 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0721_1x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0721 (compatible alternatives: 43650-0722, 43650-0723), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +7 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0724_1x07-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0724 (compatible alternatives: 43650-0725, 43650-0726), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +9 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0800_1x08_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0800 (compatible alternatives: 43650-0801, 43650-0802), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0810_1x08-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0810 (compatible alternatives: 43650-0811, 43650-0809), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0810_1x08-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0810 (compatible alternatives: 43650-0811, 43650-0809), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0815_1x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0815 (compatible alternatives: 43650-0816, 43650-0817), 8 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0821_1x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0821 (compatible alternatives: 43650-0822, 43650-0823), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0824_1x08-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0824 (compatible alternatives: 43650-0825, 43650-0826), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0900_1x09_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0900 (compatible alternatives: 43650-0901, 43650-0902), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +9 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0910_1x09-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0910 (compatible alternatives: 43650-0911, 43650-0909), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +11 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0910_1x09-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0910 (compatible alternatives: 43650-0911, 43650-0909), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +11 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0915_1x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0915 (compatible alternatives: 43650-0916, 43650-0917), 9 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +9 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0921_1x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0921 (compatible alternatives: 43650-0922, 43650-0923), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +9 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0924_1x09-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0924 (compatible alternatives: 43650-0925, 43650-0926), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +11 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1000_1x10_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1000 (compatible alternatives: 43650-1001, 43650-1002), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1010_1x10-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1010 (compatible alternatives: 43650-1011, 43650-1009), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1010_1x10-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-1010 (compatible alternatives: 43650-1011, 43650-1009), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1015_1x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1015 (compatible alternatives: 43650-1016, 43650-1017), 10 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1021_1x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1021 (compatible alternatives: 43650-1022, 43650-1023), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1024_1x10-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1024 (compatible alternatives: 43650-1025, 43650-1026), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1100_1x11_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1100 (compatible alternatives: 43650-1101, 43650-1102), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +11 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1110_1x11-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1110 (compatible alternatives: 43650-1111, 43650-1109), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +13 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1110_1x11-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-1110 (compatible alternatives: 43650-1111, 43650-1109), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +13 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1115_1x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1115 (compatible alternatives: 43650-1116, 43650-1117), 11 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +11 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1121_1x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1121 (compatible alternatives: 43650-1122, 43650-1123), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +11 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1124_1x11-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1124 (compatible alternatives: 43650-1125, 43650-1126), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +13 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1200_1x12_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1200 (compatible alternatives: 43650-1201, 43650-1202), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1210_1x12-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1210 (compatible alternatives: 43650-1211, 43650-1209), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1210_1x12-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-1210 (compatible alternatives: 43650-1211, 43650-1209), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1215_1x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1215 (compatible alternatives: 43650-1216, 43650-1217), 12 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1221_1x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1221 (compatible alternatives: 43650-1222, 43650-1223), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1224_1x12-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1224 (compatible alternatives: 43650-1225, 43650-1226), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +14 +13 +Connector_Molex +Molex_Micro-Latch_53253-0270_1x02_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0270 (compatible alternatives: 53253-0250), 2 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +2 +2 +Connector_Molex +Molex_Micro-Latch_53253-0370_1x03_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0370 (compatible alternatives: 53253-0350), 3 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +3 +3 +Connector_Molex +Molex_Micro-Latch_53253-0470_1x04_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0470 (compatible alternatives: 53253-0450), 4 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +4 +4 +Connector_Molex +Molex_Micro-Latch_53253-0570_1x05_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0570 (compatible alternatives: 53253-0550), 5 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +5 +5 +Connector_Molex +Molex_Micro-Latch_53253-0670_1x06_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0670 (compatible alternatives: 53253-0650), 6 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +6 +6 +Connector_Molex +Molex_Micro-Latch_53253-0770_1x07_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0770 (compatible alternatives: 53253-0750), 7 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +7 +7 +Connector_Molex +Molex_Micro-Latch_53253-0870_1x08_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0870 (compatible alternatives: 53253-0850), 8 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +8 +8 +Connector_Molex +Molex_Micro-Latch_53253-0970_1x09_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0970 (compatible alternatives: 53253-0950), 9 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +9 +9 +Connector_Molex +Molex_Micro-Latch_53253-1070_1x10_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1070 (compatible alternatives: 53253-1050), 10 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +10 +10 +Connector_Molex +Molex_Micro-Latch_53253-1170_1x11_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1170 (compatible alternatives: 53253-1150), 11 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +11 +11 +Connector_Molex +Molex_Micro-Latch_53253-1270_1x12_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1270 (compatible alternatives: 53253-1250), 12 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +12 +12 +Connector_Molex +Molex_Micro-Latch_53253-1370_1x13_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1370 (compatible alternatives: 53253-1350), 13 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +13 +13 +Connector_Molex +Molex_Micro-Latch_53253-1470_1x14_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1470 (compatible alternatives: 53253-1450), 14 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +14 +14 +Connector_Molex +Molex_Micro-Latch_53253-1570_1x15_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1570 (compatible alternatives: 53253-1550), 15 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +15 +15 +Connector_Molex +Molex_Micro-Latch_53254-0270_1x02_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0270 (compatible alternatives: 53254-0250), 2 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +2 +2 +Connector_Molex +Molex_Micro-Latch_53254-0370_1x03_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0370 (compatible alternatives: 53254-0350), 3 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +3 +3 +Connector_Molex +Molex_Micro-Latch_53254-0470_1x04_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0470 (compatible alternatives: 53254-0450), 4 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +4 +4 +Connector_Molex +Molex_Micro-Latch_53254-0570_1x05_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0570 (compatible alternatives: 53254-0550), 5 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +5 +5 +Connector_Molex +Molex_Micro-Latch_53254-0670_1x06_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0670 (compatible alternatives: 53254-0650), 6 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +6 +6 +Connector_Molex +Molex_Micro-Latch_53254-0770_1x07_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0770 (compatible alternatives: 53254-0750), 7 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +7 +7 +Connector_Molex +Molex_Micro-Latch_53254-0870_1x08_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0870 (compatible alternatives: 53254-0850), 8 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +8 +8 +Connector_Molex +Molex_Micro-Latch_53254-0970_1x09_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0970 (compatible alternatives: 53254-0950), 9 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +9 +9 +Connector_Molex +Molex_Micro-Latch_53254-1070_1x10_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1070 (compatible alternatives: 53254-1050), 10 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +10 +10 +Connector_Molex +Molex_Micro-Latch_53254-1170_1x11_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1170 (compatible alternatives: 53254-1150), 11 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +11 +11 +Connector_Molex +Molex_Micro-Latch_53254-1270_1x12_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1270 (compatible alternatives: 53254-1250), 12 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +12 +12 +Connector_Molex +Molex_Micro-Latch_53254-1370_1x13_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1370 (compatible alternatives: 53254-1350), 13 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +13 +13 +Connector_Molex +Molex_Micro-Latch_53254-1470_1x14_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1470 (compatible alternatives: 53254-1450), 14 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +14 +14 +Connector_Molex +Molex_Micro-Latch_53254-1570_1x15_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1570 (compatible alternatives: 53254-1550), 15 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55932-0210_1x02_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0210, with PCB locator, 2 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55932-0230_1x02_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0230, 2 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55932-0310_1x03_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0310, with PCB locator, 3 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55932-0330_1x03_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0330, 3 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55932-0410_1x04_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0410, with PCB locator, 4 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55932-0430_1x04_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0430, 4 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55932-0510_1x05_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0510, with PCB locator, 5 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55932-0530_1x05_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0530, 5 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55932-0610_1x06_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0610, with PCB locator, 6 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55932-0630_1x06_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0630, 6 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55932-0710_1x07_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0710, with PCB locator, 7 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55932-0730_1x07_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0730, 7 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55932-0810_1x08_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0810, with PCB locator, 8 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55932-0830_1x08_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0830, 8 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55932-0910_1x09_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0910, with PCB locator, 9 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55932-0930_1x09_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0930, 9 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55932-1010_1x10_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1010, with PCB locator, 10 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55932-1030_1x10_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1030, 10 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55932-1110_1x11_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1110, with PCB locator, 11 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55932-1130_1x11_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1130, 11 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55932-1210_1x12_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1210, with PCB locator, 12 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55932-1230_1x12_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1230, 12 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55932-1310_1x13_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1310, with PCB locator, 13 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55932-1330_1x13_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1330, 13 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55932-1410_1x14_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1410, with PCB locator, 14 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55932-1430_1x14_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1430, 14 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55932-1510_1x15_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1510, with PCB locator, 15 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55932-1530_1x15_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1530, 15 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55935-0210_1x02_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0210, with PCB locator, 2 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55935-0230_1x02_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0230, 2 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55935-0310_1x03_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0310, with PCB locator, 3 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55935-0330_1x03_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0330, 3 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55935-0410_1x04_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0410, with PCB locator, 4 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55935-0430_1x04_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0430, 4 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55935-0510_1x05_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0510, with PCB locator, 5 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55935-0530_1x05_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0530, 5 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55935-0610_1x06_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0610, with PCB locator, 6 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55935-0630_1x06_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0630, 6 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55935-0710_1x07_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0710, with PCB locator, 7 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55935-0730_1x07_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0730, 7 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55935-0810_1x08_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0810, with PCB locator, 8 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55935-0830_1x08_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0830, 8 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55935-0910_1x09_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0910, with PCB locator, 9 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55935-0930_1x09_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0930, 9 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55935-1010_1x10_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1010, with PCB locator, 10 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55935-1030_1x10_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1030, 10 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55935-1110_1x11_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1110, with PCB locator, 11 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55935-1130_1x11_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1130, 11 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55935-1210_1x12_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1210, with PCB locator, 12 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55935-1230_1x12_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1230, 12 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55935-1310_1x13_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1310, with PCB locator, 13 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55935-1330_1x13_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1330, 13 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55935-1410_1x14_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1410, with PCB locator, 14 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55935-1430_1x14_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1430, 14 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55935-1510_1x15_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1510, with PCB locator, 15 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55935-1530_1x15_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1530, 15 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +15 +15 +Connector_Molex +Molex_Mini-Fit_Jr_5566-02A2_2x01_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-02A2, example for new mpn: 39-28-902x, 1 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5566-02A_2x01_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-02A, example for new mpn: 39-28-x02x, 1 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5566-04A2_2x02_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-04A2, example for new mpn: 39-28-904x, 2 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5566-04A_2x02_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-04A, example for new mpn: 39-28-x04x, 2 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5566-06A2_2x03_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-06A2, example for new mpn: 39-28-906x, 3 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5566-06A_2x03_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-06A, example for new mpn: 39-28-x06x, 3 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5566-08A2_2x04_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-08A2, example for new mpn: 39-28-908x, 4 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5566-08A_2x04_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-08A, example for new mpn: 39-28-x08x, 4 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5566-10A2_2x05_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-10A2, example for new mpn: 39-28-910x, 5 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5566-10A_2x05_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-10A, example for new mpn: 39-28-x10x, 5 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5566-12A2_2x06_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-12A2, example for new mpn: 39-28-912x, 6 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5566-12A_2x06_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-12A, example for new mpn: 39-28-x12x, 6 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5566-14A2_2x07_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-14A2, example for new mpn: 39-28-914x, 7 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5566-14A_2x07_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-14A, example for new mpn: 39-28-x14x, 7 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5566-16A2_2x08_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-16A2, example for new mpn: 39-28-916x, 8 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5566-16A_2x08_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-16A, example for new mpn: 39-28-x16x, 8 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5566-18A2_2x09_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-18A2, example for new mpn: 39-28-918x, 9 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5566-18A_2x09_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-18A, example for new mpn: 39-28-x18x, 9 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5566-20A2_2x10_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-20A2, example for new mpn: 39-28-920x, 10 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5566-20A_2x10_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-20A, example for new mpn: 39-28-x20x, 10 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5566-22A2_2x11_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-22A2, example for new mpn: 39-28-922x, 11 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5566-22A_2x11_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-22A, example for new mpn: 39-28-x22x, 11 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5566-24A2_2x12_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-24A2, example for new mpn: 39-28-924x, 12 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Jr_5566-24A_2x12_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-24A, example for new mpn: 39-28-x24x, 12 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Jr_5569-02A1_2x01_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-02A1, example for new mpn: 39-29-4029, 1 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5569-02A2_2x01_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-02A2, example for new mpn: 39-30-0020, 1 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5569-04A1_2x02_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-04A1, example for new mpn: 39-29-4049, 2 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5569-04A2_2x02_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-04A2, example for new mpn: 39-30-0040, 2 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5569-06A1_2x03_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-06A1, example for new mpn: 39-29-4069, 3 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5569-06A2_2x03_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-06A2, example for new mpn: 39-30-0060, 3 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5569-08A1_2x04_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-08A1, example for new mpn: 39-29-4089, 4 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5569-08A2_2x04_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-08A2, example for new mpn: 39-30-0080, 4 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5569-10A1_2x05_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-10A1, example for new mpn: 39-29-4109, 5 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5569-10A2_2x05_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-10A2, example for new mpn: 39-30-0100, 5 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5569-12A1_2x06_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-12A1, example for new mpn: 39-29-4129, 6 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5569-12A2_2x06_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-12A2, example for new mpn: 39-30-0120, 6 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5569-14A1_2x07_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-14A1, example for new mpn: 39-29-4149, 7 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5569-14A2_2x07_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-14A2, example for new mpn: 39-30-0140, 7 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5569-16A1_2x08_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-16A1, example for new mpn: 39-29-4169, 8 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5569-16A2_2x08_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-16A2, example for new mpn: 39-30-0160, 8 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5569-18A1_2x09_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-18A1, example for new mpn: 39-29-4189, 9 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5569-18A2_2x09_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-18A2, example for new mpn: 39-30-0180, 9 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5569-20A1_2x10_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-20A1, example for new mpn: 39-29-4209, 10 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5569-20A2_2x10_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-20A2, example for new mpn: 39-30-0200, 10 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5569-22A1_2x11_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-22A1, example for new mpn: 39-29-4229, 11 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5569-22A2_2x11_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-22A2, example for new mpn: 39-30-0220, 11 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5569-24A1_2x12_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-24A1, example for new mpn: 39-29-4249, 12 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Jr_5569-24A2_2x12_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-24A2, example for new mpn: 39-30-0240, 12 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Sr_42819-22XX_1x02_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-22XX, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +6 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42819-22XX_1x02_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-22XX, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +32 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42819-32XX_1x03_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-32XX, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +8 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42819-32XX_1x03_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-32XX, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +47 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42819-42XX_1x04_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-42XX, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +10 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42819-42XX_1x04_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-42XX, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +62 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42819-52XX_1x05_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-52XX, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +12 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42819-52XX_1x05_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-52XX, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +77 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42819-62XX_1x06_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-62XX, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +14 +6 +Connector_Molex +Molex_Mini-Fit_Sr_42819-62XX_1x06_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-62XX, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +92 +6 +Connector_Molex +Molex_Mini-Fit_Sr_42820-22XX_1x02_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-22XX, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +6 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42820-22XX_1x02_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-22XX, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +32 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42820-32XX_1x03_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-32XX, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +8 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42820-32XX_1x03_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-32XX, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +47 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42820-42XX_1x04_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-42XX, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +10 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42820-42XX_1x04_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-42XX, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +62 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42820-52XX_1x05_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-52XX, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +12 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42820-52XX_1x05_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-52XX, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +77 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42820-62XX_1x06_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-62XX, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +14 +6 +Connector_Molex +Molex_Mini-Fit_Sr_42820-62XX_1x06_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-62XX, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +92 +6 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx06_2x03_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +14 +6 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx06_2x03_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx06, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +92 +6 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx08_2x04_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +18 +8 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx08_2x04_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx08, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +122 +8 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx10_2x05_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +22 +10 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx10_2x05_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx10, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +152 +10 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx12_2x06_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +26 +12 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx12_2x06_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx12, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +182 +12 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx14_2x07_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +30 +14 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx14_2x07_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx14, With thermal vias in pads, 7 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +212 +14 +Connector_Molex +Molex_Nano-Fit_105309-xx02_1x02_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx02, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +2 +2 +Connector_Molex +Molex_Nano-Fit_105309-xx03_1x03_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx03, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +3 +3 +Connector_Molex +Molex_Nano-Fit_105309-xx04_1x04_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx04, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105309-xx05_1x05_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx05, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +5 +5 +Connector_Molex +Molex_Nano-Fit_105309-xx06_1x06_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx06, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105309-xx07_1x07_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx07, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +7 +7 +Connector_Molex +Molex_Nano-Fit_105309-xx08_1x08_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx08, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105310-xx04_2x02_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx04, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105310-xx06_2x03_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105310-xx08_2x04_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105310-xx10_2x05_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +10 +10 +Connector_Molex +Molex_Nano-Fit_105310-xx12_2x06_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +12 +12 +Connector_Molex +Molex_Nano-Fit_105310-xx14_2x07_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +14 +14 +Connector_Molex +Molex_Nano-Fit_105310-xx16_2x08_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx16, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +16 +16 +Connector_Molex +Molex_Nano-Fit_105313-xx02_1x02_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx02, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +2 +2 +Connector_Molex +Molex_Nano-Fit_105313-xx03_1x03_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx03, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +3 +3 +Connector_Molex +Molex_Nano-Fit_105313-xx04_1x04_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx04, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105313-xx05_1x05_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx05, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +5 +5 +Connector_Molex +Molex_Nano-Fit_105313-xx06_1x06_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx06, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105313-xx07_1x07_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx07, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +7 +7 +Connector_Molex +Molex_Nano-Fit_105313-xx08_1x08_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx08, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105314-xx04_2x02_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx04, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105314-xx06_2x03_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105314-xx08_2x04_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105314-xx10_2x05_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +10 +10 +Connector_Molex +Molex_Nano-Fit_105314-xx12_2x06_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +12 +12 +Connector_Molex +Molex_Nano-Fit_105314-xx14_2x07_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +14 +14 +Connector_Molex +Molex_Nano-Fit_105314-xx16_2x08_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx16, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +16 +16 +Connector_Molex +Molex_Panelmate_53780-0270_1x02-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0270 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +4 +3 +Connector_Molex +Molex_Panelmate_53780-0370_1x03-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0370 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +5 +4 +Connector_Molex +Molex_Panelmate_53780-0470_1x04-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0470 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +6 +5 +Connector_Molex +Molex_Panelmate_53780-0570_1x05-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0570 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +7 +6 +Connector_Molex +Molex_Panelmate_53780-0670_1x06-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0670 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +8 +7 +Connector_Molex +Molex_Panelmate_53780-0770_1x07-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0770 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +9 +8 +Connector_Molex +Molex_Panelmate_53780-0870_1x08-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0870 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +10 +9 +Connector_Molex +Molex_Panelmate_53780-0970_1x09-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0970 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +11 +10 +Connector_Molex +Molex_Panelmate_53780-1070_1x10-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1070 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +12 +11 +Connector_Molex +Molex_Panelmate_53780-1270_1x12-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1270 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +14 +13 +Connector_Molex +Molex_Panelmate_53780-1470_1x14-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1470 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +16 +15 +Connector_Molex +Molex_Panelmate_53780-1570_1x15-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1570 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +17 +16 +Connector_Molex +Molex_Panelmate_53780-1870_1x18-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1870 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +20 +19 +Connector_Molex +Molex_Panelmate_53780-3070_1x30-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-3070 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +32 +31 +Connector_Molex +Molex_Pico-Clasp_202396-0207_1x02-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0207 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +4 +3 +Connector_Molex +Molex_Pico-Clasp_202396-0307_1x03-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0307 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +5 +4 +Connector_Molex +Molex_Pico-Clasp_202396-0407_1x04-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0407 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +6 +5 +Connector_Molex +Molex_Pico-Clasp_202396-0507_1x05-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0507 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +7 +6 +Connector_Molex +Molex_Pico-Clasp_202396-0607_1x06-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0607 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +8 +7 +Connector_Molex +Molex_Pico-Clasp_202396-0707_1x07-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0707 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +9 +8 +Connector_Molex +Molex_Pico-Clasp_202396-0807_1x08-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0807 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +10 +9 +Connector_Molex +Molex_Pico-Clasp_202396-0907_1x09-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0907 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +11 +10 +Connector_Molex +Molex_Pico-Clasp_202396-1007_1x10-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1007 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +12 +11 +Connector_Molex +Molex_Pico-Clasp_202396-1107_1x11-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1107 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +13 +12 +Connector_Molex +Molex_Pico-Clasp_202396-1207_1x12-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1207 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +14 +13 +Connector_Molex +Molex_Pico-Clasp_202396-1307_1x13-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1307 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +15 +14 +Connector_Molex +Molex_Pico-Clasp_202396-1407_1x14-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1407 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +16 +15 +Connector_Molex +Molex_Pico-Clasp_202396-1507_1x15-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1507 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +17 +16 +Connector_Molex +Molex_Pico-Clasp_501331-0207_1x02-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0207 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +4 +3 +Connector_Molex +Molex_Pico-Clasp_501331-0307_1x03-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0307 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +5 +4 +Connector_Molex +Molex_Pico-Clasp_501331-0407_1x04-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0407 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +6 +5 +Connector_Molex +Molex_Pico-Clasp_501331-0507_1x05-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0507 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +7 +6 +Connector_Molex +Molex_Pico-Clasp_501331-0607_1x06-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0607 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +8 +7 +Connector_Molex +Molex_Pico-Clasp_501331-0707_1x07-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0707 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +9 +8 +Connector_Molex +Molex_Pico-Clasp_501331-0807_1x08-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0807 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +10 +9 +Connector_Molex +Molex_Pico-Clasp_501331-0907_1x09-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0907 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +11 +10 +Connector_Molex +Molex_Pico-Clasp_501331-1007_1x10-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1007 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +12 +11 +Connector_Molex +Molex_Pico-Clasp_501331-1107_1x11-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1107 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +13 +12 +Connector_Molex +Molex_Pico-Clasp_501331-1207_1x12-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1207 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +14 +13 +Connector_Molex +Molex_Pico-Clasp_501331-1307_1x13-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1307 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +15 +14 +Connector_Molex +Molex_Pico-Clasp_501331-1407_1x14-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1407 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +16 +15 +Connector_Molex +Molex_Pico-Clasp_501331-1507_1x15-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1507 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +17 +16 +Connector_Molex +Molex_Pico-EZmate_78171-0002_1x02-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0002 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +4 +3 +Connector_Molex +Molex_Pico-EZmate_78171-0003_1x03-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0003 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +5 +4 +Connector_Molex +Molex_Pico-EZmate_78171-0004_1x04-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0004 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +6 +5 +Connector_Molex +Molex_Pico-EZmate_78171-0005_1x05-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0005 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +7 +6 +Connector_Molex +Molex_Pico-EZmate_Slim_202656-0021_1x02-1MP_P1.20mm_Vertical +Molex Pico-EZmate_Slim series connector, 202656-0021 (http://www.molex.com/pdm_docs/sd/2026560021_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate_Slim side entry +0 +4 +3 +Connector_Molex +Molex_Pico-Lock_205338-0002_1x02-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0002 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +4 +3 +Connector_Molex +Molex_Pico-Lock_205338-0004_1x04-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0004 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +6 +5 +Connector_Molex +Molex_Pico-Lock_205338-0006_1x06-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0006 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +8 +7 +Connector_Molex +Molex_Pico-Lock_205338-0008_1x08-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0008 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +10 +9 +Connector_Molex +Molex_Pico-Lock_205338-0010_1x10-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0010 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +12 +11 +Connector_Molex +Molex_Pico-Lock_504050-0291_1x02-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0291 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +4 +3 +Connector_Molex +Molex_Pico-Lock_504050-0391_1x03-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0391 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +5 +4 +Connector_Molex +Molex_Pico-Lock_504050-0491_1x04-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0491 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +6 +5 +Connector_Molex +Molex_Pico-Lock_504050-0591_1x05-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0591 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +7 +6 +Connector_Molex +Molex_Pico-Lock_504050-0691_1x06-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0691 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +8 +7 +Connector_Molex +Molex_Pico-Lock_504050-0791_1x07-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0791 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +9 +8 +Connector_Molex +Molex_Pico-Lock_504050-0891_1x08-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0891 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +10 +9 +Connector_Molex +Molex_Pico-Lock_504050-0991_1x09-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0991 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +11 +10 +Connector_Molex +Molex_Pico-Lock_504050-1091_1x10-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-1091 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +12 +11 +Connector_Molex +Molex_Pico-Lock_504050-1191_1x11-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-1191 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +13 +12 +Connector_Molex +Molex_Pico-Lock_504050-1291_1x12-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-1291 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +14 +13 +Connector_Molex +Molex_Pico-SPOX_87437-1443_1x14-P1.5mm_Vertical +Molex Pico-SPOX Connector System, 87437-1443, 14 Pins per row (https://www.molex.com/pdm_docs/sd/874371443_sd.pdf#page=2) +molex pico spox 14 +0 +28 +14 +Connector_Molex +Molex_PicoBlade_53047-0210_1x02_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0210, 2 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +2 +2 +Connector_Molex +Molex_PicoBlade_53047-0310_1x03_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0310, 3 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +3 +3 +Connector_Molex +Molex_PicoBlade_53047-0410_1x04_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0410, 4 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +4 +4 +Connector_Molex +Molex_PicoBlade_53047-0510_1x05_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +5 +5 +Connector_Molex +Molex_PicoBlade_53047-0610_1x06_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0610, 6 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +6 +6 +Connector_Molex +Molex_PicoBlade_53047-0710_1x07_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0710, 7 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +7 +7 +Connector_Molex +Molex_PicoBlade_53047-0810_1x08_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0810, 8 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +8 +8 +Connector_Molex +Molex_PicoBlade_53047-0910_1x09_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0910, 9 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +9 +9 +Connector_Molex +Molex_PicoBlade_53047-1010_1x10_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1010, 10 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +10 +10 +Connector_Molex +Molex_PicoBlade_53047-1110_1x11_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1110, 11 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +11 +11 +Connector_Molex +Molex_PicoBlade_53047-1210_1x12_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1210, 12 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +12 +12 +Connector_Molex +Molex_PicoBlade_53047-1310_1x13_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1310, 13 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +13 +13 +Connector_Molex +Molex_PicoBlade_53047-1410_1x14_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1410, 14 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +14 +14 +Connector_Molex +Molex_PicoBlade_53047-1510_1x15_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1510, 15 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +15 +15 +Connector_Molex +Molex_PicoBlade_53048-0210_1x02_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0210, 2 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +2 +2 +Connector_Molex +Molex_PicoBlade_53048-0310_1x03_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0310, 3 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +3 +3 +Connector_Molex +Molex_PicoBlade_53048-0410_1x04_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0410, 4 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +4 +4 +Connector_Molex +Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +5 +5 +Connector_Molex +Molex_PicoBlade_53048-0610_1x06_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0610, 6 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +6 +6 +Connector_Molex +Molex_PicoBlade_53048-0710_1x07_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0710, 7 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +7 +7 +Connector_Molex +Molex_PicoBlade_53048-0810_1x08_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0810, 8 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +8 +8 +Connector_Molex +Molex_PicoBlade_53048-0910_1x09_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0910, 9 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +9 +9 +Connector_Molex +Molex_PicoBlade_53048-1010_1x10_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1010, 10 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +10 +10 +Connector_Molex +Molex_PicoBlade_53048-1110_1x11_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1110, 11 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +11 +11 +Connector_Molex +Molex_PicoBlade_53048-1210_1x12_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1210, 12 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +12 +12 +Connector_Molex +Molex_PicoBlade_53048-1310_1x13_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1310, 13 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +13 +13 +Connector_Molex +Molex_PicoBlade_53048-1410_1x14_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1410, 14 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +14 +14 +Connector_Molex +Molex_PicoBlade_53048-1510_1x15_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1510, 15 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +15 +15 +Connector_Molex +Molex_PicoBlade_53261-0271_1x02-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0271 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +4 +3 +Connector_Molex +Molex_PicoBlade_53261-0371_1x03-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0371 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +5 +4 +Connector_Molex +Molex_PicoBlade_53261-0471_1x04-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0471 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +6 +5 +Connector_Molex +Molex_PicoBlade_53261-0571_1x05-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0571 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +7 +6 +Connector_Molex +Molex_PicoBlade_53261-0671_1x06-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0671 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +8 +7 +Connector_Molex +Molex_PicoBlade_53261-0771_1x07-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0771 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +9 +8 +Connector_Molex +Molex_PicoBlade_53261-0871_1x08-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0871 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +10 +9 +Connector_Molex +Molex_PicoBlade_53261-0971_1x09-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0971 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +11 +10 +Connector_Molex +Molex_PicoBlade_53261-1071_1x10-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1071 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +12 +11 +Connector_Molex +Molex_PicoBlade_53261-1171_1x11-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1171 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +13 +12 +Connector_Molex +Molex_PicoBlade_53261-1271_1x12-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1271 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +14 +13 +Connector_Molex +Molex_PicoBlade_53261-1371_1x13-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1371 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +15 +14 +Connector_Molex +Molex_PicoBlade_53261-1471_1x14-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1471 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +16 +15 +Connector_Molex +Molex_PicoBlade_53261-1571_1x15-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1571 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +17 +16 +Connector_Molex +Molex_PicoBlade_53261-1771_1x17-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1771 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +19 +18 +Connector_Molex +Molex_PicoBlade_53398-0271_1x02-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0271 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +4 +3 +Connector_Molex +Molex_PicoBlade_53398-0371_1x03-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0371 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +5 +4 +Connector_Molex +Molex_PicoBlade_53398-0471_1x04-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0471 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +6 +5 +Connector_Molex +Molex_PicoBlade_53398-0571_1x05-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0571 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +7 +6 +Connector_Molex +Molex_PicoBlade_53398-0671_1x06-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0671 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +8 +7 +Connector_Molex +Molex_PicoBlade_53398-0771_1x07-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0771 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +9 +8 +Connector_Molex +Molex_PicoBlade_53398-0871_1x08-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0871 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +10 +9 +Connector_Molex +Molex_PicoBlade_53398-0971_1x09-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0971 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +11 +10 +Connector_Molex +Molex_PicoBlade_53398-1071_1x10-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1071 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +12 +11 +Connector_Molex +Molex_PicoBlade_53398-1171_1x11-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1171 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +13 +12 +Connector_Molex +Molex_PicoBlade_53398-1271_1x12-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1271 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +14 +13 +Connector_Molex +Molex_PicoBlade_53398-1371_1x13-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1371 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +15 +14 +Connector_Molex +Molex_PicoBlade_53398-1471_1x14-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1471 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +16 +15 +Connector_Molex +Molex_PicoBlade_53398-1571_1x15-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1571 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +17 +16 +Connector_Molex +Molex_Picoflex_90325-0004_2x02_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0004, 4 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +4 +4 +Connector_Molex +Molex_Picoflex_90325-0006_2x03_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0006, 6 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +6 +6 +Connector_Molex +Molex_Picoflex_90325-0008_2x04_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0008, 8 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +8 +8 +Connector_Molex +Molex_Picoflex_90325-0010_2x05_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0010, 10 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +10 +10 +Connector_Molex +Molex_Picoflex_90325-0012_2x06_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0012, 12 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +12 +12 +Connector_Molex +Molex_Picoflex_90325-0014_2x07_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0014, 14 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +14 +14 +Connector_Molex +Molex_Picoflex_90325-0016_2x08_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0016, 16 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +16 +16 +Connector_Molex +Molex_Picoflex_90325-0018_2x09_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0018, 18 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +18 +18 +Connector_Molex +Molex_Picoflex_90325-0020_2x10_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0020, 20 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +20 +20 +Connector_Molex +Molex_Picoflex_90325-0022_2x11_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0022, 22 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +22 +22 +Connector_Molex +Molex_Picoflex_90325-0024_2x12_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0024, 24 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +24 +24 +Connector_Molex +Molex_Picoflex_90325-0026_2x13_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0026, 26 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +26 +26 +Connector_Molex +Molex_Picoflex_90814-0004_2x02_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0004, 4 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +4 +4 +Connector_Molex +Molex_Picoflex_90814-0006_2x03_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0006, 6 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +6 +6 +Connector_Molex +Molex_Picoflex_90814-0008_2x04_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0008, 8 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +8 +8 +Connector_Molex +Molex_Picoflex_90814-0010_2x05_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0010, 10 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +10 +10 +Connector_Molex +Molex_Picoflex_90814-0012_2x06_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0012, 12 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +12 +12 +Connector_Molex +Molex_Picoflex_90814-0014_2x07_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0014, 14 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +14 +14 +Connector_Molex +Molex_Picoflex_90814-0016_2x08_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0016, 16 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +16 +16 +Connector_Molex +Molex_Picoflex_90814-0018_2x09_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0018, 18 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +18 +18 +Connector_Molex +Molex_Picoflex_90814-0020_2x10_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0020, 20 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +20 +20 +Connector_Molex +Molex_Picoflex_90814-0022_2x11_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0022, 22 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +22 +22 +Connector_Molex +Molex_Picoflex_90814-0024_2x12_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0024, 24 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +24 +24 +Connector_Molex +Molex_Picoflex_90814-0026_2x13_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0026, 26 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +26 +26 +Connector_Molex +Molex_SL_171971-0002_1x02_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0002 (compatible alternatives: 171971-0102, 171971-0202), 2 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +2 +2 +Connector_Molex +Molex_SL_171971-0003_1x03_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0003 (compatible alternatives: 171971-0103, 171971-0203), 3 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +3 +3 +Connector_Molex +Molex_SL_171971-0004_1x04_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0004 (compatible alternatives: 171971-0104, 171971-0204), 4 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +4 +4 +Connector_Molex +Molex_SL_171971-0005_1x05_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0005 (compatible alternatives: 171971-0105, 171971-0205), 5 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +5 +5 +Connector_Molex +Molex_SL_171971-0006_1x06_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0006 (compatible alternatives: 171971-0106, 171971-0206), 6 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +6 +6 +Connector_Molex +Molex_SL_171971-0007_1x07_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0007 (compatible alternatives: 171971-0107, 171971-0207), 7 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +7 +7 +Connector_Molex +Molex_SL_171971-0008_1x08_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0008 (compatible alternatives: 171971-0108, 171971-0208), 8 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +8 +8 +Connector_Molex +Molex_SL_171971-0009_1x09_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0009 (compatible alternatives: 171971-0109, 171971-0209), 9 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +9 +9 +Connector_Molex +Molex_SL_171971-0010_1x10_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0010 (compatible alternatives: 171971-0110, 171971-0210), 10 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +10 +10 +Connector_Molex +Molex_SL_171971-0011_1x11_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0011 (compatible alternatives: 171971-0111, 171971-0211), 11 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +11 +11 +Connector_Molex +Molex_SL_171971-0012_1x12_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0012 (compatible alternatives: 171971-0112, 171971-0212), 12 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +12 +12 +Connector_Molex +Molex_SL_171971-0013_1x13_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0013 (compatible alternatives: 171971-0113, 171971-0213), 13 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +13 +13 +Connector_Molex +Molex_SL_171971-0014_1x14_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0014 (compatible alternatives: 171971-0114, 171971-0214), 14 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +14 +14 +Connector_Molex +Molex_SL_171971-0015_1x15_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0015 (compatible alternatives: 171971-0115, 171971-0215), 15 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +15 +15 +Connector_Molex +Molex_SL_171971-0016_1x16_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0016 (compatible alternatives: 171971-0116, 171971-0216), 16 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +16 +16 +Connector_Molex +Molex_SL_171971-0017_1x17_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0017 (compatible alternatives: 171971-0117, 171971-0217), 17 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +17 +17 +Connector_Molex +Molex_SL_171971-0018_1x18_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0018 (compatible alternatives: 171971-0118, 171971-0218), 18 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +18 +18 +Connector_Molex +Molex_SL_171971-0019_1x19_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0019 (compatible alternatives: 171971-0119, 171971-0219), 19 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +19 +19 +Connector_Molex +Molex_SL_171971-0020_1x20_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0020 (compatible alternatives: 171971-0120, 171971-0220), 20 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +20 +20 +Connector_Molex +Molex_SL_171971-0021_1x21_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0021 (compatible alternatives: 171971-0121, 171971-0221), 21 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +21 +21 +Connector_Molex +Molex_SL_171971-0022_1x22_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0022 (compatible alternatives: 171971-0122, 171971-0222), 22 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +22 +22 +Connector_Molex +Molex_SL_171971-0023_1x23_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0023 (compatible alternatives: 171971-0123, 171971-0223), 23 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +23 +23 +Connector_Molex +Molex_SL_171971-0024_1x24_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0024 (compatible alternatives: 171971-0124, 171971-0224), 24 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +24 +24 +Connector_Molex +Molex_SL_171971-0025_1x25_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0025 (compatible alternatives: 171971-0125, 171971-0225), 25 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +25 +25 +Connector_Molex +Molex_SPOX_5267-02A_1x02_P2.50mm_Vertical +Molex SPOX Connector System, 5267-02A, 2 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +2 +2 +Connector_Molex +Molex_SPOX_5267-03A_1x03_P2.50mm_Vertical +Molex SPOX Connector System, 5267-03A, 3 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +3 +3 +Connector_Molex +Molex_SPOX_5267-04A_1x04_P2.50mm_Vertical +Molex SPOX Connector System, 5267-04A, 4 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +4 +4 +Connector_Molex +Molex_SPOX_5267-05A_1x05_P2.50mm_Vertical +Molex SPOX Connector System, 5267-05A, 5 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +5 +5 +Connector_Molex +Molex_SPOX_5267-06A_1x06_P2.50mm_Vertical +Molex SPOX Connector System, 5267-06A, 6 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +6 +6 +Connector_Molex +Molex_SPOX_5267-07A_1x07_P2.50mm_Vertical +Molex SPOX Connector System, 5267-07A, 7 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +7 +7 +Connector_Molex +Molex_SPOX_5267-08A_1x08_P2.50mm_Vertical +Molex SPOX Connector System, 5267-08A, 8 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +8 +8 +Connector_Molex +Molex_SPOX_5267-09A_1x09_P2.50mm_Vertical +Molex SPOX Connector System, 5267-09A, 9 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +9 +9 +Connector_Molex +Molex_SPOX_5267-10A_1x10_P2.50mm_Vertical +Molex SPOX Connector System, 5267-10A, 10 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +10 +10 +Connector_Molex +Molex_SPOX_5267-11A_1x11_P2.50mm_Vertical +Molex SPOX Connector System, 5267-11A, 11 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +11 +11 +Connector_Molex +Molex_SPOX_5267-12A_1x12_P2.50mm_Vertical +Molex SPOX Connector System, 5267-12A, 12 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +12 +12 +Connector_Molex +Molex_SPOX_5267-13A_1x13_P2.50mm_Vertical +Molex SPOX Connector System, 5267-13A, 13 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +13 +13 +Connector_Molex +Molex_SPOX_5267-14A_1x14_P2.50mm_Vertical +Molex SPOX Connector System, 5267-14A, 14 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +14 +14 +Connector_Molex +Molex_SPOX_5267-15A_1x15_P2.50mm_Vertical +Molex SPOX Connector System, 5267-15A, 15 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +15 +15 +Connector_Molex +Molex_SPOX_5268-02A_1x02_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-02A, 2 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +2 +2 +Connector_Molex +Molex_SPOX_5268-03A_1x03_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-03A, 3 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +3 +3 +Connector_Molex +Molex_SPOX_5268-04A_1x04_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-04A, 4 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +4 +4 +Connector_Molex +Molex_SPOX_5268-05A_1x05_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-05A, 5 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +5 +5 +Connector_Molex +Molex_SPOX_5268-06A_1x06_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-06A, 6 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +6 +6 +Connector_Molex +Molex_SPOX_5268-07A_1x07_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-07A, 7 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +7 +7 +Connector_Molex +Molex_SPOX_5268-08A_1x08_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-08A, 8 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +8 +8 +Connector_Molex +Molex_SPOX_5268-09A_1x09_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-09A, 9 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +9 +9 +Connector_Molex +Molex_SPOX_5268-10A_1x10_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-10A, 10 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +10 +10 +Connector_Molex +Molex_SPOX_5268-11A_1x11_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-11A, 11 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +11 +11 +Connector_Molex +Molex_SPOX_5268-12A_1x12_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-12A, 12 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +12 +12 +Connector_Molex +Molex_SPOX_5268-13A_1x13_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-13A, 13 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +13 +13 +Connector_Molex +Molex_SPOX_5268-14A_1x14_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-14A, 14 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +14 +14 +Connector_Molex +Molex_SPOX_5268-15A_1x15_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-15A, 15 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +15 +15 +Connector_Molex +Molex_Sabre_43160-0102_1x02_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +4 +2 +Connector_Molex +Molex_Sabre_43160-0102_1x02_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +30 +2 +Connector_Molex +Molex_Sabre_43160-0103_1x03_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +6 +3 +Connector_Molex +Molex_Sabre_43160-0103_1x03_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +45 +3 +Connector_Molex +Molex_Sabre_43160-0104_1x04_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +8 +4 +Connector_Molex +Molex_Sabre_43160-0104_1x04_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +60 +4 +Connector_Molex +Molex_Sabre_43160-0105_1x05_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +10 +5 +Connector_Molex +Molex_Sabre_43160-0105_1x05_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +75 +5 +Connector_Molex +Molex_Sabre_43160-0106_1x06_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +12 +6 +Connector_Molex +Molex_Sabre_43160-0106_1x06_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +90 +6 +Connector_Molex +Molex_Sabre_43160-1102_1x02_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +6 +2 +Connector_Molex +Molex_Sabre_43160-1102_1x02_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +32 +2 +Connector_Molex +Molex_Sabre_43160-1103_1x03_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +8 +3 +Connector_Molex +Molex_Sabre_43160-1103_1x03_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +47 +3 +Connector_Molex +Molex_Sabre_43160-1104_1x04_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +10 +4 +Connector_Molex +Molex_Sabre_43160-1104_1x04_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +62 +4 +Connector_Molex +Molex_Sabre_43160-1105_1x05_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +12 +5 +Connector_Molex +Molex_Sabre_43160-1105_1x05_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +77 +5 +Connector_Molex +Molex_Sabre_43160-1106_1x06_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +14 +6 +Connector_Molex +Molex_Sabre_43160-1106_1x06_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +92 +6 +Connector_Molex +Molex_Sabre_43160-2102_1x02_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +6 +2 +Connector_Molex +Molex_Sabre_43160-2102_1x02_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +32 +2 +Connector_Molex +Molex_Sabre_43160-2103_1x03_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +8 +3 +Connector_Molex +Molex_Sabre_43160-2103_1x03_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +47 +3 +Connector_Molex +Molex_Sabre_43160-2104_1x04_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +10 +4 +Connector_Molex +Molex_Sabre_43160-2104_1x04_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +62 +4 +Connector_Molex +Molex_Sabre_43160-2105_1x05_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +12 +5 +Connector_Molex +Molex_Sabre_43160-2105_1x05_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +77 +5 +Connector_Molex +Molex_Sabre_43160-2106_1x06_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +14 +6 +Connector_Molex +Molex_Sabre_43160-2106_1x06_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +92 +6 +Connector_Molex +Molex_Sabre_46007-1102_1x02_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +4 +2 +Connector_Molex +Molex_Sabre_46007-1102_1x02_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +30 +2 +Connector_Molex +Molex_Sabre_46007-1103_1x03_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +6 +3 +Connector_Molex +Molex_Sabre_46007-1103_1x03_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +45 +3 +Connector_Molex +Molex_Sabre_46007-1104_1x04_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +8 +4 +Connector_Molex +Molex_Sabre_46007-1104_1x04_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +60 +4 +Connector_Molex +Molex_Sabre_46007-1105_1x05_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +10 +5 +Connector_Molex +Molex_Sabre_46007-1105_1x05_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +75 +5 +Connector_Molex +Molex_Sabre_46007-1106_1x06_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +12 +6 +Connector_Molex +Molex_Sabre_46007-1106_1x06_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +90 +6 +Connector_Molex +Molex_SlimStack_52991-0208_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0208, 20 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +20 +20 +Connector_Molex +Molex_SlimStack_52991-0308_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0308, 30 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +30 +30 +Connector_Molex +Molex_SlimStack_52991-0408_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0408, 40 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +40 +40 +Connector_Molex +Molex_SlimStack_52991-0508_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0508, 50 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +50 +50 +Connector_Molex +Molex_SlimStack_52991-0608_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0608, 60 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +60 +60 +Connector_Molex +Molex_SlimStack_52991-0708_2x35_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0708, 70 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +70 +70 +Connector_Molex +Molex_SlimStack_52991-0808_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0808, 80 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +80 +80 +Connector_Molex +Molex_SlimStack_53748-0208_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0208, 20 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +20 +20 +Connector_Molex +Molex_SlimStack_53748-0308_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0308, 30 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +30 +30 +Connector_Molex +Molex_SlimStack_53748-0408_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0408, 40 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +40 +40 +Connector_Molex +Molex_SlimStack_53748-0608_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0608, 60 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +60 +60 +Connector_Molex +Molex_SlimStack_53748-0708_2x35_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0708, 70 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +70 +70 +Connector_Molex +Molex_SlimStack_53748-0808_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0808, 80 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +80 +80 +Connector_Molex +Molex_SlimStack_54722-0164_2x08_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0164, 16 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +16 +16 +Connector_Molex +Molex_SlimStack_54722-0204_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0204, 20 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_54722-0224_2x11_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0224, 22 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_54722-0244_2x12_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0244, 24 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_54722-0304_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0304, 30 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_54722-0344_2x17_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0344, 34 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_54722-0404_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0404, 40 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_54722-0504_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0504, 50 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_54722-0604_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0604, 60 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_54722-0804_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0804, 80 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_Molex +Molex_SlimStack_55560-0161_2x08_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0161, 16 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +16 +16 +Connector_Molex +Molex_SlimStack_55560-0201_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0201, 20 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_55560-0221_2x11_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0221, 22 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_55560-0241_2x12_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0241, 24 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_55560-0301_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0301, 30 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_55560-0341_2x17_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0341, 34 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_55560-0401_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0401, 40 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_55560-0501_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0501, 50 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_55560-0601_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0601, 60 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_55560-0801_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0801, 80 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_Molex +Molex_SlimStack_501920-3001_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-3001, 30 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_501920-4001_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-4001, 40 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_501920-5001_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-5001, 50 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_502426-0810_2x04_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-0810, 8 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +8 +8 +Connector_Molex +Molex_SlimStack_502426-1410_2x07_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-1410, 14 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +14 +14 +Connector_Molex +Molex_SlimStack_502426-2010_2x10_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2010, 20 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_502426-2210_2x11_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2210, 22 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_502426-2410_2x12_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2410, 24 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_502426-2610_2x13_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2610, 26 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +26 +26 +Connector_Molex +Molex_SlimStack_502426-3010_2x15_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3010, 30 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_502426-3210_2x16_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3210, 32 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +32 +32 +Connector_Molex +Molex_SlimStack_502426-3410_2x17_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3410, 34 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_502426-4010_2x20_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-4010, 40 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_502426-4410_2x22_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-4410, 44 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +44 +44 +Connector_Molex +Molex_SlimStack_502426-5010_2x25_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-5010, 50 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_502426-6010_2x30_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-6010, 60 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_502426-6410_2x32_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-6410, 64 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +64 +64 +Connector_Molex +Molex_SlimStack_502426-8010_2x40_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-8010, 80 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_Molex +Molex_SlimStack_502430-0820_2x04_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-0820, 8 Pins (http://www.molex.com/pdm_docs/sd/5024300820_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +8 +8 +Connector_Molex +Molex_SlimStack_502430-1410_2x07_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-1410, 14 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +14 +14 +Connector_Molex +Molex_SlimStack_502430-2010_2x10_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2010, 20 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_502430-2210_2x11_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2210, 22 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_502430-2410_2x12_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2410, 24 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_502430-2610_2x13_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2610, 26 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +26 +26 +Connector_Molex +Molex_SlimStack_502430-3010_2x15_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3010, 30 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_502430-3210_2x16_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3210, 32 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +32 +32 +Connector_Molex +Molex_SlimStack_502430-3410_2x17_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3410, 34 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_502430-4010_2x20_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-4010, 40 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_502430-4410_2x22_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-4410, 44 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +44 +44 +Connector_Molex +Molex_SlimStack_502430-5010_2x25_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-5010, 50 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_502430-6010_2x30_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-6010, 60 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_502430-6410_2x32_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-6410, 64 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +64 +64 +Connector_Molex +Molex_SlimStack_502430-8010_2x40_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-8010, 80 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_PCBEdge +4UCON_10156_2x40_P1.27mm_Socket_Horizontal +4UCON 10156 Card edge socket with 80 contacts (40 each side), through-hole, http://www.4uconnector.com/online/object/4udrawing/10156.pdf +4UCON 10156 Card edge socket with 80 contacts +0 +80 +80 +Connector_PCBEdge +BUS_AT +AT ISA 16 bits Bus Edge Connector +BUS ISA AT Edge connector +0 +98 +98 +Connector_PCBEdge +BUS_PCI +PCI bus Edge Connector +PCI bus Edge Connector +0 +240 +120 +Connector_PCBEdge +BUS_PCI_Express_Mini +Mini-PCI Express bus connector (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=11) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCI_Express_Mini_Dual +Mini-PCI Express bus connector full size with dual clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=28) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCI_Express_Mini_Full +Mini-PCI Express bus connector full size with clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=24) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCI_Express_Mini_Half +Mini-PCI Express bus connector half size with clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=25) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCIexpress_x1 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +36 +36 +Connector_PCBEdge +BUS_PCIexpress_x4 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +64 +64 +Connector_PCBEdge +BUS_PCIexpress_x8 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +98 +98 +Connector_PCBEdge +BUS_PCIexpress_x16 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +164 +164 +Connector_PCBEdge +JAE_MM60-EZH039-Bx_BUS_PCI_Express_Holder +PCI Express mini card latch for 3.9mm connector height, https://www.jae.com/direct/topics/topics_file_download/?topics_id=68909&ext_no=06&index=0&_lang=en&v=2022071912512930114109 +MiniPCI +0 +6 +1 +Connector_PCBEdge +JAE_MM60-EZH059-Bx_BUS_PCI_Express_Holder +PCI Express mini card latch for 5.9mm connector height, https://www.jae.com/direct/topics/topics_file_download/topics_id=68910&ext_no=06&index=0&_lang=en&v= +MiniPCI +0 +6 +1 +Connector_PCBEdge +SODIMM-200_1.8V_Card_edge +SODIMM 200-pins edge connector, Jedec MO-224 Variation AB compliant (1.8V DDR2 SDRAM), 0.6mm pitch, https://www.jst-mfg.com/product/pdf/eng/eDM-200P.pdf +sodimm +0 +200 +200 +Connector_PCBEdge +SODIMM-200_2.5V_Card_edge +SODIMM 200-pins edge connector, Jedec MO-224 Variation AA compliant (2.5V DDR SDRAM), 0.6mm pitch, https://www.jst-mfg.com/product/pdf/eng/eDM-200P.pdf +sodimm +0 +200 +200 +Connector_PCBEdge +Samtec_MECF-05-0_-L-DV_2x05_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-0_-NP-L-DV_2x05_P1.27mm_Edge +Highspeed card edge connector for PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-05-01-L-DV-WT_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +10 +8 +Connector_PCBEdge +Samtec_MECF-05-01-L-DV_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-01-NP-L-DV-WT_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +12 +10 +Connector_PCBEdge +Samtec_MECF-05-01-NP-L-DV_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-05-02-L-DV-WT_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +10 +8 +Connector_PCBEdge +Samtec_MECF-05-02-L-DV_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-02-NP-L-DV-WT_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +12 +10 +Connector_PCBEdge +Samtec_MECF-05-02-NP-L-DV_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-08-0_-L-DV_2x08_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-0_-NP-L-DV_2x08_P1.27mm_Edge +Highspeed card edge connector for PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-08-01-L-DV-WT_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +16 +14 +Connector_PCBEdge +Samtec_MECF-08-01-L-DV_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-01-NP-L-DV-WT_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +18 +16 +Connector_PCBEdge +Samtec_MECF-08-01-NP-L-DV_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-08-02-L-DV-WT_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +16 +14 +Connector_PCBEdge +Samtec_MECF-08-02-L-DV_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-02-NP-L-DV-WT_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +18 +16 +Connector_PCBEdge +Samtec_MECF-08-02-NP-L-DV_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-20-0_-L-DV_2x20_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-0_-NP-L-DV_2x20_P1.27mm_Edge +Highspeed card edge connector for PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-20-01-L-DV-WT_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +40 +38 +Connector_PCBEdge +Samtec_MECF-20-01-L-DV_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-01-NP-L-DV-WT_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +42 +40 +Connector_PCBEdge +Samtec_MECF-20-01-NP-L-DV_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-20-02-L-DV-WT_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +40 +38 +Connector_PCBEdge +Samtec_MECF-20-02-L-DV_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-02-NP-L-DV-WT_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +42 +40 +Connector_PCBEdge +Samtec_MECF-20-02-NP-L-DV_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-30-0_-L-DV_2x30_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-0_-NP-L-DV_2x30_P1.27mm_Edge +Highspeed card edge connector for PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-30-01-L-DV-WT_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +60 +58 +Connector_PCBEdge +Samtec_MECF-30-01-L-DV_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-01-NP-L-DV-WT_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +62 +60 +Connector_PCBEdge +Samtec_MECF-30-01-NP-L-DV_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-30-02-L-DV-WT_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +60 +58 +Connector_PCBEdge +Samtec_MECF-30-02-L-DV_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-02-NP-L-DV-WT_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +62 +60 +Connector_PCBEdge +Samtec_MECF-30-02-NP-L-DV_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-40-0_-L-DV_2x40_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-0_-NP-L-DV_2x40_P1.27mm_Edge +Highspeed card edge connector for PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-40-01-L-DV-WT_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +80 +78 +Connector_PCBEdge +Samtec_MECF-40-01-L-DV_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-01-NP-L-DV-WT_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +82 +80 +Connector_PCBEdge +Samtec_MECF-40-01-NP-L-DV_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-40-02-L-DV-WT_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +80 +78 +Connector_PCBEdge +Samtec_MECF-40-02-L-DV_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-02-NP-L-DV-WT_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +82 +80 +Connector_PCBEdge +Samtec_MECF-40-02-NP-L-DV_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-50-0_-L-DV_2x50_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-0_-NP-L-DV_2x50_P1.27mm_Edge +Highspeed card edge connector for PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-50-01-L-DV-WT_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +100 +98 +Connector_PCBEdge +Samtec_MECF-50-01-L-DV_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-01-NP-L-DV-WT_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +102 +100 +Connector_PCBEdge +Samtec_MECF-50-01-NP-L-DV_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-50-02-L-DV-WT_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +100 +98 +Connector_PCBEdge +Samtec_MECF-50-02-L-DV_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-02-NP-L-DV-WT_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +102 +100 +Connector_PCBEdge +Samtec_MECF-50-02-NP-L-DV_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-60-0_-L-DV_2x60_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-0_-NP-L-DV_2x60_P1.27mm_Edge +Highspeed card edge connector for PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-60-01-L-DV-WT_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +118 +116 +Connector_PCBEdge +Samtec_MECF-60-01-L-DV_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-01-NP-L-DV-WT_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +122 +120 +Connector_PCBEdge +Samtec_MECF-60-01-NP-L-DV_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-60-02-L-DV-WT_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +118 +116 +Connector_PCBEdge +Samtec_MECF-60-02-L-DV_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-02-NP-L-DV-WT_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +122 +120 +Connector_PCBEdge +Samtec_MECF-60-02-NP-L-DV_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-70-0_-L-DV_2x70_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-0_-NP-L-DV_2x70_P1.27mm_Edge +Highspeed card edge connector for PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +Samtec_MECF-70-01-L-DV-WT_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +138 +136 +Connector_PCBEdge +Samtec_MECF-70-01-L-DV_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-01-NP-L-DV-WT_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +142 +140 +Connector_PCBEdge +Samtec_MECF-70-01-NP-L-DV_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +Samtec_MECF-70-02-L-DV-WT_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +138 +136 +Connector_PCBEdge +Samtec_MECF-70-02-L-DV_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-02-NP-L-DV-WT_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +142 +140 +Connector_PCBEdge +Samtec_MECF-70-02-NP-L-DV_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +molex_EDGELOCK_2-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +2 +2 +Connector_PCBEdge +molex_EDGELOCK_4-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +4 +4 +Connector_PCBEdge +molex_EDGELOCK_6-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +6 +6 +Connector_PCBEdge +molex_EDGELOCK_8-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_2-G-7,62_1x02_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/2-G-7,62; number of pins: 02; pin pitch: 7.62mm; Angled || order number: 1766233 12A 630V +phoenix_contact connector GMSTBA_01x02_G_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_2-G_1x02_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/2-G; number of pins: 02; pin pitch: 7.50mm; Angled || order number: 1766343 12A 630V +phoenix_contact connector GMSTBA_01x02_G_7.50mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_3-G-7,62_1x03_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/3-G-7,62; number of pins: 03; pin pitch: 7.62mm; Angled || order number: 1766246 12A 630V +phoenix_contact connector GMSTBA_01x03_G_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_3-G_1x03_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/3-G; number of pins: 03; pin pitch: 7.50mm; Angled || order number: 1766356 12A 630V +phoenix_contact connector GMSTBA_01x03_G_7.50mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_4-G-7,62_1x04_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/4-G-7,62; number of pins: 04; pin pitch: 7.62mm; Angled || order number: 1766259 12A 630V +phoenix_contact connector GMSTBA_01x04_G_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_4-G_1x04_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/4-G; number of pins: 04; pin pitch: 7.50mm; Angled || order number: 1766369 12A 630V +phoenix_contact connector GMSTBA_01x04_G_7.50mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_5-G-7,62_1x05_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/5-G-7,62; number of pins: 05; pin pitch: 7.62mm; Angled || order number: 1766262 12A 630V +phoenix_contact connector GMSTBA_01x05_G_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_5-G_1x05_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/5-G; number of pins: 05; pin pitch: 7.50mm; Angled || order number: 1766372 12A 630V +phoenix_contact connector GMSTBA_01x05_G_7.50mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_6-G-7,62_1x06_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/6-G-7,62; number of pins: 06; pin pitch: 7.62mm; Angled || order number: 1766275 12A 630V +phoenix_contact connector GMSTBA_01x06_G_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_6-G_1x06_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/6-G; number of pins: 06; pin pitch: 7.50mm; Angled || order number: 1766385 12A 630V +phoenix_contact connector GMSTBA_01x06_G_7.50mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_7-G-7,62_1x07_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/7-G-7,62; number of pins: 07; pin pitch: 7.62mm; Angled || order number: 1766288 12A 630V +phoenix_contact connector GMSTBA_01x07_G_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_7-G_1x07_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/7-G; number of pins: 07; pin pitch: 7.50mm; Angled || order number: 1766398 12A 630V +phoenix_contact connector GMSTBA_01x07_G_7.50mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_8-G-7,62_1x08_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/8-G-7,62; number of pins: 08; pin pitch: 7.62mm; Angled || order number: 1766291 12A 630V +phoenix_contact connector GMSTBA_01x08_G_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_8-G_1x08_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/8-G; number of pins: 08; pin pitch: 7.50mm; Angled || order number: 1766408 12A 630V +phoenix_contact connector GMSTBA_01x08_G_7.50mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_9-G-7,62_1x09_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/9-G-7,62; number of pins: 09; pin pitch: 7.62mm; Angled || order number: 1766301 12A 630V +phoenix_contact connector GMSTBA_01x09_G_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_9-G_1x09_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/9-G; number of pins: 09; pin pitch: 7.50mm; Angled || order number: 1766411 12A 630V +phoenix_contact connector GMSTBA_01x09_G_7.50mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_10-G-7,62_1x10_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/10-G-7,62; number of pins: 10; pin pitch: 7.62mm; Angled || order number: 1766314 12A 630V +phoenix_contact connector GMSTBA_01x10_G_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_10-G_1x10_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/10-G; number of pins: 10; pin pitch: 7.50mm; Angled || order number: 1766424 12A 630V +phoenix_contact connector GMSTBA_01x10_G_7.50mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_11-G-7,62_1x11_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/11-G-7,62; number of pins: 11; pin pitch: 7.62mm; Angled || order number: 1766327 12A 630V +phoenix_contact connector GMSTBA_01x11_G_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_11-G_1x11_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/11-G; number of pins: 11; pin pitch: 7.50mm; Angled || order number: 1766437 12A 630V +phoenix_contact connector GMSTBA_01x11_G_7.50mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_12-G-7,62_1x12_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/12-G-7,62; number of pins: 12; pin pitch: 7.62mm; Angled || order number: 1766330 12A 630V +phoenix_contact connector GMSTBA_01x12_G_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_12-G_1x12_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/12-G; number of pins: 12; pin pitch: 7.50mm; Angled || order number: 1766440 12A 630V +phoenix_contact connector GMSTBA_01x12_G_7.50mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_2-G-7,62_1x02_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/2-G-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical || order number: 1766770 12A 630V +phoenix_contact connector GMSTBVA_01x02_G_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_2-G_1x02_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/2-G; number of pins: 02; pin pitch: 7.50mm; Vertical || order number: 1766660 12A 630V +phoenix_contact connector GMSTBVA_01x02_G_7.50mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_3-G-7,62_1x03_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/3-G-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical || order number: 1766783 12A 630V +phoenix_contact connector GMSTBVA_01x03_G_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_3-G_1x03_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/3-G; number of pins: 03; pin pitch: 7.50mm; Vertical || order number: 1766673 12A 630V +phoenix_contact connector GMSTBVA_01x03_G_7.50mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_4-G-7,62_1x04_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/4-G-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical || order number: 1766796 12A 630V +phoenix_contact connector GMSTBVA_01x04_G_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_4-G_1x04_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/4-G; number of pins: 04; pin pitch: 7.50mm; Vertical || order number: 1766686 12A 630V +phoenix_contact connector GMSTBVA_01x04_G_7.50mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_5-G-7,62_1x05_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/5-G-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical || order number: 1766806 12A 630V +phoenix_contact connector GMSTBVA_01x05_G_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_5-G_1x05_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/5-G; number of pins: 05; pin pitch: 7.50mm; Vertical || order number: 1766699 12A 630V +phoenix_contact connector GMSTBVA_01x05_G_7.50mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_6-G-7,62_1x06_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/6-G-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical || order number: 1766819 12A 630V +phoenix_contact connector GMSTBVA_01x06_G_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_6-G_1x06_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/6-G; number of pins: 06; pin pitch: 7.50mm; Vertical || order number: 1766709 12A 630V +phoenix_contact connector GMSTBVA_01x06_G_7.50mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_7-G-7,62_1x07_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/7-G-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical || order number: 1766822 12A 630V +phoenix_contact connector GMSTBVA_01x07_G_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_7-G_1x07_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/7-G; number of pins: 07; pin pitch: 7.50mm; Vertical || order number: 1766712 12A 630V +phoenix_contact connector GMSTBVA_01x07_G_7.50mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_8-G-7,62_1x08_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/8-G-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical || order number: 1766835 12A 630V +phoenix_contact connector GMSTBVA_01x08_G_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_8-G_1x08_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/8-G; number of pins: 08; pin pitch: 7.50mm; Vertical || order number: 1766725 12A 630V +phoenix_contact connector GMSTBVA_01x08_G_7.50mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_9-G-7,62_1x09_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/9-G-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical || order number: 1766848 12A 630V +phoenix_contact connector GMSTBVA_01x09_G_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_9-G_1x09_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/9-G; number of pins: 09; pin pitch: 7.50mm; Vertical || order number: 1766738 12A 630V +phoenix_contact connector GMSTBVA_01x09_G_7.50mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_10-G-7,62_1x10_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/10-G-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical || order number: 1766851 12A 630V +phoenix_contact connector GMSTBVA_01x10_G_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_10-G_1x10_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/10-G; number of pins: 10; pin pitch: 7.50mm; Vertical || order number: 1766741 12A 630V +phoenix_contact connector GMSTBVA_01x10_G_7.50mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_11-G-7,62_1x11_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/11-G-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical || order number: 1766864 12A 630V +phoenix_contact connector GMSTBVA_01x11_G_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_11-G_1x11_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/11-G; number of pins: 11; pin pitch: 7.50mm; Vertical || order number: 1766754 12A 630V +phoenix_contact connector GMSTBVA_01x11_G_7.50mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_12-G-7,62_1x12_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/12-G-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical || order number: 1766877 12A 630V +phoenix_contact connector GMSTBVA_01x12_G_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_12-G_1x12_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/12-G; number of pins: 12; pin pitch: 7.50mm; Vertical || order number: 1766767 12A 630V +phoenix_contact connector GMSTBVA_01x12_G_7.50mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_2-GF-7,62_1x02_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829154 12A 630V +phoenix_contact connector GMSTBV_01x02_GF_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_2-GF-7,62_1x02_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829154 12A 630V +phoenix_contact connector GMSTBV_01x02_GF_7.62mm_MH +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_3-GF-7,62_1x03_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829167 12A 630V +phoenix_contact connector GMSTBV_01x03_GF_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_3-GF-7,62_1x03_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829167 12A 630V +phoenix_contact connector GMSTBV_01x03_GF_7.62mm_MH +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_4-GF-7,62_1x04_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829170 12A 630V +phoenix_contact connector GMSTBV_01x04_GF_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_4-GF-7,62_1x04_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829170 12A 630V +phoenix_contact connector GMSTBV_01x04_GF_7.62mm_MH +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_5-GF-7,62_1x05_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829183 12A 630V +phoenix_contact connector GMSTBV_01x05_GF_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_5-GF-7,62_1x05_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829183 12A 630V +phoenix_contact connector GMSTBV_01x05_GF_7.62mm_MH +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_6-GF-7,62_1x06_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829196 12A 630V +phoenix_contact connector GMSTBV_01x06_GF_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_6-GF-7,62_1x06_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829196 12A 630V +phoenix_contact connector GMSTBV_01x06_GF_7.62mm_MH +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_7-GF-7,62_1x07_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829206 12A 630V +phoenix_contact connector GMSTBV_01x07_GF_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_7-GF-7,62_1x07_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829206 12A 630V +phoenix_contact connector GMSTBV_01x07_GF_7.62mm_MH +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_8-GF-7,62_1x08_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829219 12A 630V +phoenix_contact connector GMSTBV_01x08_GF_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_8-GF-7,62_1x08_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829219 12A 630V +phoenix_contact connector GMSTBV_01x08_GF_7.62mm_MH +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_9-GF-7,62_1x09_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829222 12A 630V +phoenix_contact connector GMSTBV_01x09_GF_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_9-GF-7,62_1x09_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829222 12A 630V +phoenix_contact connector GMSTBV_01x09_GF_7.62mm_MH +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_10-GF-7,62_1x10_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829235 12A 630V +phoenix_contact connector GMSTBV_01x10_GF_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_10-GF-7,62_1x10_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829235 12A 630V +phoenix_contact connector GMSTBV_01x10_GF_7.62mm_MH +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_11-GF-7,62_1x11_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829248 12A 630V +phoenix_contact connector GMSTBV_01x11_GF_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_11-GF-7,62_1x11_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829248 12A 630V +phoenix_contact connector GMSTBV_01x11_GF_7.62mm_MH +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_12-GF-7,62_1x12_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829251 12A 630V +phoenix_contact connector GMSTBV_01x12_GF_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_12-GF-7,62_1x12_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829251 12A 630V +phoenix_contact connector GMSTBV_01x12_GF_7.62mm_MH +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_2-GF-7,62_1x02_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806229 12A 630V +phoenix_contact connector GMSTB_01x02_GF_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_2-GF-7,62_1x02_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806229 12A 630V +phoenix_contact connector GMSTB_01x02_GF_7.62mm_MH +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_3-GF-7,62_1x03_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806232 12A 630V +phoenix_contact connector GMSTB_01x03_GF_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_3-GF-7,62_1x03_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806232 12A 630V +phoenix_contact connector GMSTB_01x03_GF_7.62mm_MH +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_4-GF-7,62_1x04_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806245 12A 630V +phoenix_contact connector GMSTB_01x04_GF_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_4-GF-7,62_1x04_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806245 12A 630V +phoenix_contact connector GMSTB_01x04_GF_7.62mm_MH +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_5-GF-7,62_1x05_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806258 12A 630V +phoenix_contact connector GMSTB_01x05_GF_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_5-GF-7,62_1x05_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806258 12A 630V +phoenix_contact connector GMSTB_01x05_GF_7.62mm_MH +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_6-GF-7,62_1x06_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806261 12A 630V +phoenix_contact connector GMSTB_01x06_GF_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_6-GF-7,62_1x06_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806261 12A 630V +phoenix_contact connector GMSTB_01x06_GF_7.62mm_MH +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_7-GF-7,62_1x07_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806274 12A 630V +phoenix_contact connector GMSTB_01x07_GF_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_7-GF-7,62_1x07_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806274 12A 630V +phoenix_contact connector GMSTB_01x07_GF_7.62mm_MH +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_8-GF-7,62_1x08_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806287 12A 630V +phoenix_contact connector GMSTB_01x08_GF_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_8-GF-7,62_1x08_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806287 12A 630V +phoenix_contact connector GMSTB_01x08_GF_7.62mm_MH +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_9-GF-7,62_1x09_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806290 12A 630V +phoenix_contact connector GMSTB_01x09_GF_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_9-GF-7,62_1x09_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806290 12A 630V +phoenix_contact connector GMSTB_01x09_GF_7.62mm_MH +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_10-GF-7,62_1x10_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806300 12A 630V +phoenix_contact connector GMSTB_01x10_GF_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_10-GF-7,62_1x10_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806300 12A 630V +phoenix_contact connector GMSTB_01x10_GF_7.62mm_MH +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_11-GF-7,62_1x11_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806313 12A 630V +phoenix_contact connector GMSTB_01x11_GF_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_11-GF-7,62_1x11_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806313 12A 630V +phoenix_contact connector GMSTB_01x11_GF_7.62mm_MH +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_12-GF-7,62_1x12_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806326 12A 630V +phoenix_contact connector GMSTB_01x12_GF_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_12-GF-7,62_1x12_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806326 12A 630V +phoenix_contact connector GMSTB_01x12_GF_7.62mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-G-3.5_1x02_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical || order number: 1843606 8A 160V +phoenix_contact connector MCV_01x02_G_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-G-3.81_1x02_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical || order number: 1803426 8A 160V +phoenix_contact connector MCV_01x02_G_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.5_1x02_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843224 8A 160V +phoenix_contact connector MCV_01x02_GF_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.5_1x02_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843224 8A 160V +phoenix_contact connector MCV_01x02_GF_3.5mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.81_1x02_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830596 8A 160V +phoenix_contact connector MCV_01x02_GF_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.81_1x02_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830596 8A 160V +phoenix_contact connector MCV_01x02_GF_3.81mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-G-3.5_1x03_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical || order number: 1843619 8A 160V +phoenix_contact connector MCV_01x03_G_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-G-3.81_1x03_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical || order number: 1803439 8A 160V +phoenix_contact connector MCV_01x03_G_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.5_1x03_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843237 8A 160V +phoenix_contact connector MCV_01x03_GF_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.5_1x03_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843237 8A 160V +phoenix_contact connector MCV_01x03_GF_3.5mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.81_1x03_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830606 8A 160V +phoenix_contact connector MCV_01x03_GF_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.81_1x03_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830606 8A 160V +phoenix_contact connector MCV_01x03_GF_3.81mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-G-3.5_1x04_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical || order number: 1843622 8A 160V +phoenix_contact connector MCV_01x04_G_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical || order number: 1803442 8A 160V +phoenix_contact connector MCV_01x04_G_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.5_1x04_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843240 8A 160V +phoenix_contact connector MCV_01x04_GF_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.5_1x04_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843240 8A 160V +phoenix_contact connector MCV_01x04_GF_3.5mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.81_1x04_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830619 8A 160V +phoenix_contact connector MCV_01x04_GF_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.81_1x04_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830619 8A 160V +phoenix_contact connector MCV_01x04_GF_3.81mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-G-3.5_1x05_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical || order number: 1843635 8A 160V +phoenix_contact connector MCV_01x05_G_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-G-3.81_1x05_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical || order number: 1803455 8A 160V +phoenix_contact connector MCV_01x05_G_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.5_1x05_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843253 8A 160V +phoenix_contact connector MCV_01x05_GF_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.5_1x05_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843253 8A 160V +phoenix_contact connector MCV_01x05_GF_3.5mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.81_1x05_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830622 8A 160V +phoenix_contact connector MCV_01x05_GF_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.81_1x05_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830622 8A 160V +phoenix_contact connector MCV_01x05_GF_3.81mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-G-3.5_1x06_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical || order number: 1843648 8A 160V +phoenix_contact connector MCV_01x06_G_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-G-3.81_1x06_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical || order number: 1803468 8A 160V +phoenix_contact connector MCV_01x06_G_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.5_1x06_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843266 8A 160V +phoenix_contact connector MCV_01x06_GF_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.5_1x06_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843266 8A 160V +phoenix_contact connector MCV_01x06_GF_3.5mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.81_1x06_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830635 8A 160V +phoenix_contact connector MCV_01x06_GF_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.81_1x06_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830635 8A 160V +phoenix_contact connector MCV_01x06_GF_3.81mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-G-3.5_1x07_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical || order number: 1843651 8A 160V +phoenix_contact connector MCV_01x07_G_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-G-3.81_1x07_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical || order number: 1803471 8A 160V +phoenix_contact connector MCV_01x07_G_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.5_1x07_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843279 8A 160V +phoenix_contact connector MCV_01x07_GF_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.5_1x07_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843279 8A 160V +phoenix_contact connector MCV_01x07_GF_3.5mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.81_1x07_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830648 8A 160V +phoenix_contact connector MCV_01x07_GF_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.81_1x07_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830648 8A 160V +phoenix_contact connector MCV_01x07_GF_3.81mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-G-3.5_1x08_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical || order number: 1843664 8A 160V +phoenix_contact connector MCV_01x08_G_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-G-3.81_1x08_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical || order number: 1803484 8A 160V +phoenix_contact connector MCV_01x08_G_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.5_1x08_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843282 8A 160V +phoenix_contact connector MCV_01x08_GF_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.5_1x08_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843282 8A 160V +phoenix_contact connector MCV_01x08_GF_3.5mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.81_1x08_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830651 8A 160V +phoenix_contact connector MCV_01x08_GF_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.81_1x08_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830651 8A 160V +phoenix_contact connector MCV_01x08_GF_3.81mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-G-3.5_1x09_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical || order number: 1843677 8A 160V +phoenix_contact connector MCV_01x09_G_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-G-3.81_1x09_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical || order number: 1803497 8A 160V +phoenix_contact connector MCV_01x09_G_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.5_1x09_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843295 8A 160V +phoenix_contact connector MCV_01x09_GF_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.5_1x09_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843295 8A 160V +phoenix_contact connector MCV_01x09_GF_3.5mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.81_1x09_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830664 8A 160V +phoenix_contact connector MCV_01x09_GF_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.81_1x09_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830664 8A 160V +phoenix_contact connector MCV_01x09_GF_3.81mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-G-3.5_1x10_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical || order number: 1843680 8A 160V +phoenix_contact connector MCV_01x10_G_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-G-3.81_1x10_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical || order number: 1803507 8A 160V +phoenix_contact connector MCV_01x10_G_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.5_1x10_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843305 8A 160V +phoenix_contact connector MCV_01x10_GF_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.5_1x10_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843305 8A 160V +phoenix_contact connector MCV_01x10_GF_3.5mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.81_1x10_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830677 8A 160V +phoenix_contact connector MCV_01x10_GF_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.81_1x10_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830677 8A 160V +phoenix_contact connector MCV_01x10_GF_3.81mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-G-3.5_1x11_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical || order number: 1843693 8A 160V +phoenix_contact connector MCV_01x11_G_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-G-3.81_1x11_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical || order number: 1803510 8A 160V +phoenix_contact connector MCV_01x11_G_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.5_1x11_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843318 8A 160V +phoenix_contact connector MCV_01x11_GF_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.5_1x11_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843318 8A 160V +phoenix_contact connector MCV_01x11_GF_3.5mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.81_1x11_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830680 8A 160V +phoenix_contact connector MCV_01x11_GF_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.81_1x11_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830680 8A 160V +phoenix_contact connector MCV_01x11_GF_3.81mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-G-3.5_1x12_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical || order number: 1843703 8A 160V +phoenix_contact connector MCV_01x12_G_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-G-3.81_1x12_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical || order number: 1803523 8A 160V +phoenix_contact connector MCV_01x12_G_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.5_1x12_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843321 8A 160V +phoenix_contact connector MCV_01x12_GF_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.5_1x12_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843321 8A 160V +phoenix_contact connector MCV_01x12_GF_3.5mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.81_1x12_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830693 8A 160V +phoenix_contact connector MCV_01x12_GF_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.81_1x12_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830693 8A 160V +phoenix_contact connector MCV_01x12_GF_3.81mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-G-3.5_1x13_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/13-G-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical || order number: 1843716 8A 160V +phoenix_contact connector MCV_01x13_G_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-G-3.81_1x13_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/13-G-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical || order number: 1803536 8A 160V +phoenix_contact connector MCV_01x13_G_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.5_1x13_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843334 8A 160V +phoenix_contact connector MCV_01x13_GF_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.5_1x13_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843334 8A 160V +phoenix_contact connector MCV_01x13_GF_3.5mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.81_1x13_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830703 8A 160V +phoenix_contact connector MCV_01x13_GF_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.81_1x13_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830703 8A 160V +phoenix_contact connector MCV_01x13_GF_3.81mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-G-3.5_1x14_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/14-G-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical || order number: 1843729 8A 160V +phoenix_contact connector MCV_01x14_G_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-G-3.81_1x14_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/14-G-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical || order number: 1803549 8A 160V +phoenix_contact connector MCV_01x14_G_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.5_1x14_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843347 8A 160V +phoenix_contact connector MCV_01x14_GF_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.5_1x14_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843347 8A 160V +phoenix_contact connector MCV_01x14_GF_3.5mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.81_1x14_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830716 8A 160V +phoenix_contact connector MCV_01x14_GF_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.81_1x14_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830716 8A 160V +phoenix_contact connector MCV_01x14_GF_3.81mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-G-3.5_1x15_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/15-G-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical || order number: 1843732 8A 160V +phoenix_contact connector MCV_01x15_G_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-G-3.81_1x15_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/15-G-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical || order number: 1803552 8A 160V +phoenix_contact connector MCV_01x15_G_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.5_1x15_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843350 8A 160V +phoenix_contact connector MCV_01x15_GF_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.5_1x15_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843350 8A 160V +phoenix_contact connector MCV_01x15_GF_3.5mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.81_1x15_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830729 8A 160V +phoenix_contact connector MCV_01x15_GF_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.81_1x15_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830729 8A 160V +phoenix_contact connector MCV_01x15_GF_3.81mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-G-3.5_1x16_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/16-G-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical || order number: 1843745 8A 160V +phoenix_contact connector MCV_01x16_G_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-G-3.81_1x16_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/16-G-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical || order number: 1803565 8A 160V +phoenix_contact connector MCV_01x16_G_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.5_1x16_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843363 8A 160V +phoenix_contact connector MCV_01x16_GF_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.5_1x16_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843363 8A 160V +phoenix_contact connector MCV_01x16_GF_3.5mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.81_1x16_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830732 8A 160V +phoenix_contact connector MCV_01x16_GF_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.81_1x16_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830732 8A 160V +phoenix_contact connector MCV_01x16_GF_3.81mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-G-3.5_1x02_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-3.5; number of pins: 02; pin pitch: 3.50mm; Angled || order number: 1844210 8A 160V +phoenix_contact connector MC_01x02_G_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-G-3.81_1x02_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-3.81; number of pins: 02; pin pitch: 3.81mm; Angled || order number: 1803277 8A 160V +phoenix_contact connector MC_01x02_G_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.5_1x02_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843790 8A 160V +phoenix_contact connector MC_01x02_GF_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.5_1x02_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843790 8A 160V +phoenix_contact connector MC_01x02_GF_3.5mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.81_1x02_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827868 8A 160V +phoenix_contact connector MC_01x02_GF_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.81_1x02_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827868 8A 160V +phoenix_contact connector MC_01x02_GF_3.81mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-G-3.5_1x03_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-3.5; number of pins: 03; pin pitch: 3.50mm; Angled || order number: 1844223 8A 160V +phoenix_contact connector MC_01x03_G_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-G-3.81_1x03_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-3.81; number of pins: 03; pin pitch: 3.81mm; Angled || order number: 1803280 8A 160V +phoenix_contact connector MC_01x03_G_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.5_1x03_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843800 8A 160V +phoenix_contact connector MC_01x03_GF_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.5_1x03_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843800 8A 160V +phoenix_contact connector MC_01x03_GF_3.5mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.81_1x03_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827871 8A 160V +phoenix_contact connector MC_01x03_GF_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.81_1x03_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827871 8A 160V +phoenix_contact connector MC_01x03_GF_3.81mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-G-3.5_1x04_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-3.5; number of pins: 04; pin pitch: 3.50mm; Angled || order number: 1844236 8A 160V +phoenix_contact connector MC_01x04_G_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-G-3.81_1x04_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-3.81; number of pins: 04; pin pitch: 3.81mm; Angled || order number: 1803293 8A 160V +phoenix_contact connector MC_01x04_G_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.5_1x04_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843813 8A 160V +phoenix_contact connector MC_01x04_GF_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.5_1x04_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843813 8A 160V +phoenix_contact connector MC_01x04_GF_3.5mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.81_1x04_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827884 8A 160V +phoenix_contact connector MC_01x04_GF_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.81_1x04_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827884 8A 160V +phoenix_contact connector MC_01x04_GF_3.81mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-G-3.5_1x05_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-3.5; number of pins: 05; pin pitch: 3.50mm; Angled || order number: 1844249 8A 160V +phoenix_contact connector MC_01x05_G_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-G-3.81_1x05_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-3.81; number of pins: 05; pin pitch: 3.81mm; Angled || order number: 1803303 8A 160V +phoenix_contact connector MC_01x05_G_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.5_1x05_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843826 8A 160V +phoenix_contact connector MC_01x05_GF_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.5_1x05_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843826 8A 160V +phoenix_contact connector MC_01x05_GF_3.5mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.81_1x05_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827897 8A 160V +phoenix_contact connector MC_01x05_GF_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.81_1x05_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827897 8A 160V +phoenix_contact connector MC_01x05_GF_3.81mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-G-3.5_1x06_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-3.5; number of pins: 06; pin pitch: 3.50mm; Angled || order number: 1844252 8A 160V +phoenix_contact connector MC_01x06_G_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-G-3.81_1x06_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-3.81; number of pins: 06; pin pitch: 3.81mm; Angled || order number: 1803316 8A 160V +phoenix_contact connector MC_01x06_G_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.5_1x06_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843839 8A 160V +phoenix_contact connector MC_01x06_GF_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.5_1x06_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843839 8A 160V +phoenix_contact connector MC_01x06_GF_3.5mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.81_1x06_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827907 8A 160V +phoenix_contact connector MC_01x06_GF_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.81_1x06_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827907 8A 160V +phoenix_contact connector MC_01x06_GF_3.81mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-G-3.5_1x07_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-3.5; number of pins: 07; pin pitch: 3.50mm; Angled || order number: 1844265 8A 160V +phoenix_contact connector MC_01x07_G_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-G-3.81_1x07_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-3.81; number of pins: 07; pin pitch: 3.81mm; Angled || order number: 1803329 8A 160V +phoenix_contact connector MC_01x07_G_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.5_1x07_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843842 8A 160V +phoenix_contact connector MC_01x07_GF_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.5_1x07_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843842 8A 160V +phoenix_contact connector MC_01x07_GF_3.5mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.81_1x07_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827910 8A 160V +phoenix_contact connector MC_01x07_GF_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.81_1x07_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827910 8A 160V +phoenix_contact connector MC_01x07_GF_3.81mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-G-3.5_1x08_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-3.5; number of pins: 08; pin pitch: 3.50mm; Angled || order number: 1844278 8A 160V +phoenix_contact connector MC_01x08_G_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-G-3.81_1x08_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-3.81; number of pins: 08; pin pitch: 3.81mm; Angled || order number: 1803332 8A 160V +phoenix_contact connector MC_01x08_G_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.5_1x08_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843855 8A 160V +phoenix_contact connector MC_01x08_GF_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.5_1x08_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843855 8A 160V +phoenix_contact connector MC_01x08_GF_3.5mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.81_1x08_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827923 8A 160V +phoenix_contact connector MC_01x08_GF_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.81_1x08_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827923 8A 160V +phoenix_contact connector MC_01x08_GF_3.81mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-G-3.5_1x09_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-3.5; number of pins: 09; pin pitch: 3.50mm; Angled || order number: 1844281 8A 160V +phoenix_contact connector MC_01x09_G_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-G-3.81_1x09_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-3.81; number of pins: 09; pin pitch: 3.81mm; Angled || order number: 1803345 8A 160V +phoenix_contact connector MC_01x09_G_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.5_1x09_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843868 8A 160V +phoenix_contact connector MC_01x09_GF_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.5_1x09_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843868 8A 160V +phoenix_contact connector MC_01x09_GF_3.5mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.81_1x09_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827936 8A 160V +phoenix_contact connector MC_01x09_GF_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.81_1x09_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827936 8A 160V +phoenix_contact connector MC_01x09_GF_3.81mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-G-3.5_1x10_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-3.5; number of pins: 10; pin pitch: 3.50mm; Angled || order number: 1844294 8A 160V +phoenix_contact connector MC_01x10_G_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-G-3.81_1x10_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-3.81; number of pins: 10; pin pitch: 3.81mm; Angled || order number: 1803358 8A 160V +phoenix_contact connector MC_01x10_G_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.5_1x10_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843871 8A 160V +phoenix_contact connector MC_01x10_GF_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.5_1x10_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843871 8A 160V +phoenix_contact connector MC_01x10_GF_3.5mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.81_1x10_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827949 8A 160V +phoenix_contact connector MC_01x10_GF_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.81_1x10_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827949 8A 160V +phoenix_contact connector MC_01x10_GF_3.81mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-G-3.5_1x11_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-3.5; number of pins: 11; pin pitch: 3.50mm; Angled || order number: 1844304 8A 160V +phoenix_contact connector MC_01x11_G_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-G-3.81_1x11_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-3.81; number of pins: 11; pin pitch: 3.81mm; Angled || order number: 1803361 8A 160V +phoenix_contact connector MC_01x11_G_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.5_1x11_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843884 8A 160V +phoenix_contact connector MC_01x11_GF_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.5_1x11_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843884 8A 160V +phoenix_contact connector MC_01x11_GF_3.5mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.81_1x11_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827952 8A 160V +phoenix_contact connector MC_01x11_GF_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.81_1x11_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827952 8A 160V +phoenix_contact connector MC_01x11_GF_3.81mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-G-3.5_1x12_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-3.5; number of pins: 12; pin pitch: 3.50mm; Angled || order number: 1844317 8A 160V +phoenix_contact connector MC_01x12_G_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-G-3.81_1x12_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-3.81; number of pins: 12; pin pitch: 3.81mm; Angled || order number: 1803374 8A 160V +phoenix_contact connector MC_01x12_G_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.5_1x12_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843897 8A 160V +phoenix_contact connector MC_01x12_GF_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.5_1x12_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843897 8A 160V +phoenix_contact connector MC_01x12_GF_3.5mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.81_1x12_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827965 8A 160V +phoenix_contact connector MC_01x12_GF_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.81_1x12_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827965 8A 160V +phoenix_contact connector MC_01x12_GF_3.81mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-G-3.5_1x13_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/13-G-3.5; number of pins: 13; pin pitch: 3.50mm; Angled || order number: 1844320 8A 160V +phoenix_contact connector MC_01x13_G_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-G-3.81_1x13_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/13-G-3.81; number of pins: 13; pin pitch: 3.81mm; Angled || order number: 1803387 8A 160V +phoenix_contact connector MC_01x13_G_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.5_1x13_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843907 8A 160V +phoenix_contact connector MC_01x13_GF_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.5_1x13_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843907 8A 160V +phoenix_contact connector MC_01x13_GF_3.5mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.81_1x13_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827978 8A 160V +phoenix_contact connector MC_01x13_GF_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.81_1x13_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827978 8A 160V +phoenix_contact connector MC_01x13_GF_3.81mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-G-3.5_1x14_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/14-G-3.5; number of pins: 14; pin pitch: 3.50mm; Angled || order number: 1844333 8A 160V +phoenix_contact connector MC_01x14_G_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-G-3.81_1x14_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/14-G-3.81; number of pins: 14; pin pitch: 3.81mm; Angled || order number: 1803390 8A 160V +phoenix_contact connector MC_01x14_G_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.5_1x14_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843910 8A 160V +phoenix_contact connector MC_01x14_GF_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.5_1x14_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843910 8A 160V +phoenix_contact connector MC_01x14_GF_3.5mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.81_1x14_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827981 8A 160V +phoenix_contact connector MC_01x14_GF_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.81_1x14_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827981 8A 160V +phoenix_contact connector MC_01x14_GF_3.81mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-G-3.5_1x15_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/15-G-3.5; number of pins: 15; pin pitch: 3.50mm; Angled || order number: 1844346 8A 160V +phoenix_contact connector MC_01x15_G_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-G-3.81_1x15_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/15-G-3.81; number of pins: 15; pin pitch: 3.81mm; Angled || order number: 1803400 8A 160V +phoenix_contact connector MC_01x15_G_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.5_1x15_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843923 8A 160V +phoenix_contact connector MC_01x15_GF_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.5_1x15_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843923 8A 160V +phoenix_contact connector MC_01x15_GF_3.5mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.81_1x15_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827994 8A 160V +phoenix_contact connector MC_01x15_GF_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.81_1x15_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827994 8A 160V +phoenix_contact connector MC_01x15_GF_3.81mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-G-3.5_1x16_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/16-G-3.5; number of pins: 16; pin pitch: 3.50mm; Angled || order number: 1844359 8A 160V +phoenix_contact connector MC_01x16_G_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-G-3.81_1x16_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/16-G-3.81; number of pins: 16; pin pitch: 3.81mm; Angled || order number: 1803413 8A 160V +phoenix_contact connector MC_01x16_G_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.5_1x16_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843936 8A 160V +phoenix_contact connector MC_01x16_GF_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.5_1x16_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843936 8A 160V +phoenix_contact connector MC_01x16_GF_3.5mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.81_1x16_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Angled; threaded flange || order number: 1828003 8A 160V +phoenix_contact connector MC_01x16_GF_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.81_1x16_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1828003 8A 160V +phoenix_contact connector MC_01x16_GF_3.81mm_MH +0 +16 +16 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-G-5.08_1x02_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical || order number: 1836299 8A 320V +phoenix_contact connector MCV_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-GF-5.08_1x02_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847615 8A 320V +phoenix_contact connector MCV_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-GF-5.08_1x02_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847615 8A 320V +phoenix_contact connector MCV_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-G-5.08_1x03_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical || order number: 1836309 8A 320V +phoenix_contact connector MCV_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-GF-5.08_1x03_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847628 8A 320V +phoenix_contact connector MCV_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-GF-5.08_1x03_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847628 8A 320V +phoenix_contact connector MCV_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-G-5.08_1x04_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical || order number: 1836312 8A 320V +phoenix_contact connector MCV_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-GF-5.08_1x04_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847631 8A 320V +phoenix_contact connector MCV_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-GF-5.08_1x04_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847631 8A 320V +phoenix_contact connector MCV_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-G-5.08_1x05_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical || order number: 1836325 8A 320V +phoenix_contact connector MCV_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-GF-5.08_1x05_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847644 8A 320V +phoenix_contact connector MCV_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-GF-5.08_1x05_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847644 8A 320V +phoenix_contact connector MCV_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-G-5.08_1x06_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical || order number: 1836338 8A 320V +phoenix_contact connector MCV_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-GF-5.08_1x06_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847657 8A 320V +phoenix_contact connector MCV_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-GF-5.08_1x06_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847657 8A 320V +phoenix_contact connector MCV_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-G-5.08_1x07_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical || order number: 1836341 8A 320V +phoenix_contact connector MCV_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-GF-5.08_1x07_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847660 8A 320V +phoenix_contact connector MCV_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-GF-5.08_1x07_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847660 8A 320V +phoenix_contact connector MCV_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-G-5.08_1x08_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical || order number: 1836354 8A 320V +phoenix_contact connector MCV_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-GF-5.08_1x08_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847673 8A 320V +phoenix_contact connector MCV_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-GF-5.08_1x08_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847673 8A 320V +phoenix_contact connector MCV_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-G-5.08_1x09_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical || order number: 1836367 8A 320V +phoenix_contact connector MCV_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-GF-5.08_1x09_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847686 8A 320V +phoenix_contact connector MCV_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-GF-5.08_1x09_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847686 8A 320V +phoenix_contact connector MCV_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-G-5.08_1x10_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical || order number: 1836370 8A 320V +phoenix_contact connector MCV_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-GF-5.08_1x10_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847699 8A 320V +phoenix_contact connector MCV_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-GF-5.08_1x10_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847699 8A 320V +phoenix_contact connector MCV_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-G-5.08_1x11_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical || order number: 1836383 8A 320V +phoenix_contact connector MCV_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-GF-5.08_1x11_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847709 8A 320V +phoenix_contact connector MCV_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-GF-5.08_1x11_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847709 8A 320V +phoenix_contact connector MCV_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-G-5.08_1x12_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical || order number: 1836396 8A 320V +phoenix_contact connector MCV_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-GF-5.08_1x12_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847712 8A 320V +phoenix_contact connector MCV_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-GF-5.08_1x12_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847712 8A 320V +phoenix_contact connector MCV_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-G-5.08_1x02_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-5.08; number of pins: 02; pin pitch: 5.08mm; Angled || order number: 1836189 8A 320V +phoenix_contact connector MC_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-GF-5.08_1x02_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847466 8A 320V +phoenix_contact connector MC_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-GF-5.08_1x02_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847466 8A 320V +phoenix_contact connector MC_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-G-5.08_1x03_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-5.08; number of pins: 03; pin pitch: 5.08mm; Angled || order number: 1836192 8A 320V +phoenix_contact connector MC_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-GF-5.08_1x03_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847479 8A 320V +phoenix_contact connector MC_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-GF-5.08_1x03_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847479 8A 320V +phoenix_contact connector MC_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-G-5.08_1x04_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-5.08; number of pins: 04; pin pitch: 5.08mm; Angled || order number: 1836202 8A 320V +phoenix_contact connector MC_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-GF-5.08_1x04_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847482 8A 320V +phoenix_contact connector MC_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-GF-5.08_1x04_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847482 8A 320V +phoenix_contact connector MC_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-G-5.08_1x05_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-5.08; number of pins: 05; pin pitch: 5.08mm; Angled || order number: 1836215 8A 320V +phoenix_contact connector MC_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-GF-5.08_1x05_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847495 8A 320V +phoenix_contact connector MC_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-GF-5.08_1x05_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847495 8A 320V +phoenix_contact connector MC_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-G-5.08_1x06_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-5.08; number of pins: 06; pin pitch: 5.08mm; Angled || order number: 1836228 8A 320V +phoenix_contact connector MC_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-GF-5.08_1x06_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847505 8A 320V +phoenix_contact connector MC_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-GF-5.08_1x06_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847505 8A 320V +phoenix_contact connector MC_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-G-5.08_1x07_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-5.08; number of pins: 07; pin pitch: 5.08mm; Angled || order number: 1836231 8A 320V +phoenix_contact connector MC_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-GF-5.08_1x07_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847518 8A 320V +phoenix_contact connector MC_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-GF-5.08_1x07_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847518 8A 320V +phoenix_contact connector MC_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-G-5.08_1x08_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-5.08; number of pins: 08; pin pitch: 5.08mm; Angled || order number: 1836244 8A 320V +phoenix_contact connector MC_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-GF-5.08_1x08_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847521 8A 320V +phoenix_contact connector MC_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-GF-5.08_1x08_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847521 8A 320V +phoenix_contact connector MC_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-G-5.08_1x09_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-5.08; number of pins: 09; pin pitch: 5.08mm; Angled || order number: 1836257 8A 320V +phoenix_contact connector MC_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-GF-5.08_1x09_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847534 8A 320V +phoenix_contact connector MC_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-GF-5.08_1x09_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847534 8A 320V +phoenix_contact connector MC_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-G-5.08_1x10_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-5.08; number of pins: 10; pin pitch: 5.08mm; Angled || order number: 1836260 8A 320V +phoenix_contact connector MC_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-GF-5.08_1x10_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847547 8A 320V +phoenix_contact connector MC_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-GF-5.08_1x10_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847547 8A 320V +phoenix_contact connector MC_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-G-5.08_1x11_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-5.08; number of pins: 11; pin pitch: 5.08mm; Angled || order number: 1836273 8A 320V +phoenix_contact connector MC_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-GF-5.08_1x11_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847550 8A 320V +phoenix_contact connector MC_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-GF-5.08_1x11_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847550 8A 320V +phoenix_contact connector MC_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-G-5.08_1x12_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-5.08; number of pins: 12; pin pitch: 5.08mm; Angled || order number: 1836286 8A 320V +phoenix_contact connector MC_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-GF-5.08_1x12_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847563 8A 320V +phoenix_contact connector MC_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-GF-5.08_1x12_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847563 8A 320V +phoenix_contact connector MC_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_2-G-5,08_1x02_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/2-G-5,08; number of pins: 02; pin pitch: 5.08mm; Angled || order number: 1757242 12A || order number: 1923869 16A (HC) +phoenix_contact connector MSTBA_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_2-G_1x02_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/2-G; number of pins: 02; pin pitch: 5.00mm; Angled || order number: 1757475 12A || order number: 1923759 16A (HC) +phoenix_contact connector MSTBA_01x02_G_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/3-G-5,08; number of pins: 03; pin pitch: 5.08mm; Angled || order number: 1757255 12A || order number: 1923872 16A (HC) +phoenix_contact connector MSTBA_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_3-G_1x03_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/3-G; number of pins: 03; pin pitch: 5.00mm; Angled || order number: 1757488 12A || order number: 1923762 16A (HC) +phoenix_contact connector MSTBA_01x03_G_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_4-G-5,08_1x04_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/4-G-5,08; number of pins: 04; pin pitch: 5.08mm; Angled || order number: 1757268 12A || order number: 1923885 16A (HC) +phoenix_contact connector MSTBA_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_4-G_1x04_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/4-G; number of pins: 04; pin pitch: 5.00mm; Angled || order number: 1757491 12A || order number: 1923775 16A (HC) +phoenix_contact connector MSTBA_01x04_G_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_5-G-5,08_1x05_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/5-G-5,08; number of pins: 05; pin pitch: 5.08mm; Angled || order number: 1757271 12A || order number: 1923898 16A (HC) +phoenix_contact connector MSTBA_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_5-G_1x05_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/5-G; number of pins: 05; pin pitch: 5.00mm; Angled || order number: 1757501 12A || order number: 1923788 16A (HC) +phoenix_contact connector MSTBA_01x05_G_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_6-G-5,08_1x06_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/6-G-5,08; number of pins: 06; pin pitch: 5.08mm; Angled || order number: 1757284 12A || order number: 1923908 16A (HC) +phoenix_contact connector MSTBA_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_6-G_1x06_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/6-G; number of pins: 06; pin pitch: 5.00mm; Angled || order number: 1757514 12A || order number: 1923791 16A (HC) +phoenix_contact connector MSTBA_01x06_G_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_7-G-5,08_1x07_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/7-G-5,08; number of pins: 07; pin pitch: 5.08mm; Angled || order number: 1757297 12A || order number: 1923911 16A (HC) +phoenix_contact connector MSTBA_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_7-G_1x07_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/7-G; number of pins: 07; pin pitch: 5.00mm; Angled || order number: 1757493 12A || order number: 1923801 16A (HC) +phoenix_contact connector MSTBA_01x07_G_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_8-G-5,08_1x08_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/8-G-5,08; number of pins: 08; pin pitch: 5.08mm; Angled || order number: 1757307 12A || order number: 1923924 16A (HC) +phoenix_contact connector MSTBA_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_8-G_1x08_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/8-G; number of pins: 08; pin pitch: 5.00mm; Angled || order number: 1757527 12A || order number: 1923814 16A (HC) +phoenix_contact connector MSTBA_01x08_G_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_9-G-5,08_1x09_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/9-G-5,08; number of pins: 09; pin pitch: 5.08mm; Angled || order number: 1757310 12A || order number: 1923937 16A (HC) +phoenix_contact connector MSTBA_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_9-G_1x09_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/9-G; number of pins: 09; pin pitch: 5.00mm; Angled || order number: 1757530 12A || order number: 1923827 16A (HC) +phoenix_contact connector MSTBA_01x09_G_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_10-G-5,08_1x10_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/10-G-5,08; number of pins: 10; pin pitch: 5.08mm; Angled || order number: 1757323 12A || order number: 1923940 16A (HC) +phoenix_contact connector MSTBA_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_10-G_1x10_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/10-G; number of pins: 10; pin pitch: 5.00mm; Angled || order number: 1757543 12A || order number: 1923830 16A (HC) +phoenix_contact connector MSTBA_01x10_G_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_11-G-5,08_1x11_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/11-G-5,08; number of pins: 11; pin pitch: 5.08mm; Angled || order number: 1757336 12A || order number: 1923953 16A (HC) +phoenix_contact connector MSTBA_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_11-G_1x11_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/11-G; number of pins: 11; pin pitch: 5.00mm; Angled || order number: 1757556 12A || order number: 1923843 16A (HC) +phoenix_contact connector MSTBA_01x11_G_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_12-G-5,08_1x12_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/12-G-5,08; number of pins: 12; pin pitch: 5.08mm; Angled || order number: 1757349 12A || order number: 1923966 16A (HC) +phoenix_contact connector MSTBA_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_12-G_1x12_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/12-G; number of pins: 12; pin pitch: 5.00mm; Angled || order number: 1757569 12A || order number: 1923856 16A (HC) +phoenix_contact connector MSTBA_01x12_G_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_13-G-5,08_1x13_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/13-G-5,08; number of pins: 13; pin pitch: 5.08mm; Angled || order number: 1757352 12A +phoenix_contact connector MSTBA_01x13_G_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_13-G_1x13_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/13-G; number of pins: 13; pin pitch: 5.00mm; Angled || order number: 1757572 12A +phoenix_contact connector MSTBA_01x13_G_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_14-G-5,08_1x14_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/14-G-5,08; number of pins: 14; pin pitch: 5.08mm; Angled || order number: 1757365 12A +phoenix_contact connector MSTBA_01x14_G_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_14-G_1x14_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/14-G; number of pins: 14; pin pitch: 5.00mm; Angled || order number: 1757585 12A +phoenix_contact connector MSTBA_01x14_G_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_15-G-5,08_1x15_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/15-G-5,08; number of pins: 15; pin pitch: 5.08mm; Angled || order number: 1757378 12A +phoenix_contact connector MSTBA_01x15_G_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_15-G_1x15_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/15-G; number of pins: 15; pin pitch: 5.00mm; Angled || order number: 1757598 12A +phoenix_contact connector MSTBA_01x15_G_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_16-G-5,08_1x16_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/16-G-5,08; number of pins: 16; pin pitch: 5.08mm; Angled || order number: 1757381 12A +phoenix_contact connector MSTBA_01x16_G_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_16-G_1x16_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/16-G; number of pins: 16; pin pitch: 5.00mm; Angled || order number: 1757608 12A +phoenix_contact connector MSTBA_01x16_G_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_2-G-5,08_1x02_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/2-G-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical || order number: 1755736 12A || order number: 1924305 16A (HC) +phoenix_contact connector MSTBVA_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_2-G_1x02_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/2-G; number of pins: 02; pin pitch: 5.00mm; Vertical || order number: 1755516 12A || order number: 1924198 16A (HC) +phoenix_contact connector MSTBVA_01x02_G_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_3-G-5,08_1x03_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/3-G-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical || order number: 1755749 12A || order number: 1924318 16A (HC) +phoenix_contact connector MSTBVA_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_3-G_1x03_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/3-G; number of pins: 03; pin pitch: 5.00mm; Vertical || order number: 1755529 12A || order number: 1924208 16A (HC) +phoenix_contact connector MSTBVA_01x03_G_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_4-G-5,08_1x04_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/4-G-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical || order number: 1755752 12A || order number: 1924321 16A (HC) +phoenix_contact connector MSTBVA_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_4-G_1x04_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/4-G; number of pins: 04; pin pitch: 5.00mm; Vertical || order number: 1755532 12A || order number: 1924211 16A (HC) +phoenix_contact connector MSTBVA_01x04_G_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_5-G-5,08_1x05_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/5-G-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical || order number: 1755765 12A || order number: 1924334 16A (HC) +phoenix_contact connector MSTBVA_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_5-G_1x05_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/5-G; number of pins: 05; pin pitch: 5.00mm; Vertical || order number: 1755545 12A || order number: 1924224 16A (HC) +phoenix_contact connector MSTBVA_01x05_G_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_6-G-5,08_1x06_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/6-G-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical || order number: 1755778 12A || order number: 1924347 16A (HC) +phoenix_contact connector MSTBVA_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_6-G_1x06_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/6-G; number of pins: 06; pin pitch: 5.00mm; Vertical || order number: 1755558 12A || order number: 1924237 16A (HC) +phoenix_contact connector MSTBVA_01x06_G_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_7-G-5,08_1x07_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/7-G-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical || order number: 1755781 12A || order number: 1924350 16A (HC) +phoenix_contact connector MSTBVA_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_7-G_1x07_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/7-G; number of pins: 07; pin pitch: 5.00mm; Vertical || order number: 1755561 12A || order number: 1924240 16A (HC) +phoenix_contact connector MSTBVA_01x07_G_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_8-G-5,08_1x08_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/8-G-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical || order number: 1755794 12A || order number: 1924363 16A (HC) +phoenix_contact connector MSTBVA_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_8-G_1x08_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/8-G; number of pins: 08; pin pitch: 5.00mm; Vertical || order number: 1755574 12A || order number: 1924253 16A (HC) +phoenix_contact connector MSTBVA_01x08_G_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_9-G-5,08_1x09_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/9-G-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical || order number: 1755804 12A || order number: 1924376 16A (HC) +phoenix_contact connector MSTBVA_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_9-G_1x09_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/9-G; number of pins: 09; pin pitch: 5.00mm; Vertical || order number: 1755587 12A || order number: 1924266 16A (HC) +phoenix_contact connector MSTBVA_01x09_G_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_10-G-5,08_1x10_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/10-G-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical || order number: 1755817 12A || order number: 1924389 16A (HC) +phoenix_contact connector MSTBVA_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_10-G_1x10_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/10-G; number of pins: 10; pin pitch: 5.00mm; Vertical || order number: 1755503 12A || order number: 1924279 16A (HC) +phoenix_contact connector MSTBVA_01x10_G_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_11-G-5,08_1x11_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/11-G-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical || order number: 1755820 12A || order number: 1924392 16A (HC) +phoenix_contact connector MSTBVA_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_11-G_1x11_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/11-G; number of pins: 11; pin pitch: 5.00mm; Vertical || order number: 1755590 12A || order number: 1924282 16A (HC) +phoenix_contact connector MSTBVA_01x11_G_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_12-G-5,08_1x12_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/12-G-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical || order number: 1755833 12A || order number: 1924402 16A (HC) +phoenix_contact connector MSTBVA_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_12-G_1x12_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/12-G; number of pins: 12; pin pitch: 5.00mm; Vertical || order number: 1755600 12A || order number: 1924295 16A (HC) +phoenix_contact connector MSTBVA_01x12_G_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_13-G-5,08_1x13_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/13-G-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical || order number: 1755846 12A +phoenix_contact connector MSTBVA_01x13_G_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_13-G_1x13_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/13-G; number of pins: 13; pin pitch: 5.00mm; Vertical || order number: 1755613 12A +phoenix_contact connector MSTBVA_01x13_G_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_14-G-5,08_1x14_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/14-G-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical || order number: 1755859 12A +phoenix_contact connector MSTBVA_01x14_G_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_14-G_1x14_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/14-G; number of pins: 14; pin pitch: 5.00mm; Vertical || order number: 1755626 12A +phoenix_contact connector MSTBVA_01x14_G_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_15-G-5,08_1x15_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/15-G-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical || order number: 1755862 12A +phoenix_contact connector MSTBVA_01x15_G_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_15-G_1x15_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/15-G; number of pins: 15; pin pitch: 5.00mm; Vertical || order number: 1755639 12A +phoenix_contact connector MSTBVA_01x15_G_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_16-G-5,08_1x16_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/16-G-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical || order number: 1755875 12A +phoenix_contact connector MSTBVA_01x16_G_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_16-G_1x16_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/16-G; number of pins: 16; pin pitch: 5.00mm; Vertical || order number: 1755642 12A +phoenix_contact connector MSTBVA_01x16_G_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF-5,08_1x02_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777073 12A || order number: 1924525 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF-5,08_1x02_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777073 12A || order number: 1924525 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF_1x02_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776883 12A || order number: 1924415 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF_1x02_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776883 12A || order number: 1924415 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.00mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF-5,08_1x03_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777086 12A || order number: 1924538 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF-5,08_1x03_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777086 12A || order number: 1924538 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF_1x03_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776896 12A || order number: 1924428 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF_1x03_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776896 12A || order number: 1924428 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.00mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF-5,08_1x04_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777099 12A || order number: 1924541 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF-5,08_1x04_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777099 12A || order number: 1924541 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF_1x04_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776906 12A || order number: 1924431 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF_1x04_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776906 12A || order number: 1924431 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.00mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF-5,08_1x05_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777109 12A || order number: 1924554 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF-5,08_1x05_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777109 12A || order number: 1924554 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF_1x05_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776919 12A || order number: 1924444 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF_1x05_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776919 12A || order number: 1924444 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.00mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF-5,08_1x06_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777112 12A || order number: 1924567 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF-5,08_1x06_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777112 12A || order number: 1924567 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF_1x06_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776922 12A || order number: 1924457 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF_1x06_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776922 12A || order number: 1924457 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.00mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF-5,08_1x07_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777125 12A || order number: 1924570 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF-5,08_1x07_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777125 12A || order number: 1924570 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF_1x07_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776935 12A || order number: 1924460 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF_1x07_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776935 12A || order number: 1924460 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.00mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF-5,08_1x08_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777138 12A || order number: 1924583 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF-5,08_1x08_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777138 12A || order number: 1924583 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF_1x08_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776948 12A || order number: 1924473 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF_1x08_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776948 12A || order number: 1924473 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.00mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF-5,08_1x09_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777141 12A || order number: 1924596 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF-5,08_1x09_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777141 12A || order number: 1924596 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF_1x09_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776951 12A || order number: 1924486 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF_1x09_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776951 12A || order number: 1924486 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.00mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF-5,08_1x10_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777154 12A || order number: 1924606 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF-5,08_1x10_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777154 12A || order number: 1924606 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF_1x10_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776964 12A || order number: 1924499 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF_1x10_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776964 12A || order number: 1924499 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.00mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF-5,08_1x11_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777167 12A || order number: 1924619 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF-5,08_1x11_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777167 12A || order number: 1924619 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF_1x11_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776977 12A || order number: 1924509 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF_1x11_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776977 12A || order number: 1924509 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.00mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF-5,08_1x12_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777170 12A || order number: 1924622 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF-5,08_1x12_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777170 12A || order number: 1924622 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF_1x12_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776980 12A || order number: 1924512 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF_1x12_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776980 12A || order number: 1924512 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.00mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF-5,08_1x13_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777183 12A +phoenix_contact connector MSTBV_01x13_GF_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF-5,08_1x13_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777183 12A +phoenix_contact connector MSTBV_01x13_GF_5.08mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF_1x13_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776993 12A +phoenix_contact connector MSTBV_01x13_GF_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF_1x13_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776993 12A +phoenix_contact connector MSTBV_01x13_GF_5.00mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF-5,08_1x14_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777196 12A +phoenix_contact connector MSTBV_01x14_GF_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF-5,08_1x14_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777196 12A +phoenix_contact connector MSTBV_01x14_GF_5.08mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF_1x14_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776002 12A +phoenix_contact connector MSTBV_01x14_GF_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF_1x14_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776002 12A +phoenix_contact connector MSTBV_01x14_GF_5.00mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF-5,08_1x15_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777206 12A +phoenix_contact connector MSTBV_01x15_GF_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF-5,08_1x15_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777206 12A +phoenix_contact connector MSTBV_01x15_GF_5.08mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF_1x15_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776015 12A +phoenix_contact connector MSTBV_01x15_GF_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF_1x15_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776015 12A +phoenix_contact connector MSTBV_01x15_GF_5.00mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF-5,08_1x16_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777219 12A +phoenix_contact connector MSTBV_01x16_GF_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF-5,08_1x16_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777219 12A +phoenix_contact connector MSTBV_01x16_GF_5.08mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF_1x16_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776028 12A +phoenix_contact connector MSTBV_01x16_GF_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF_1x16_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776028 12A +phoenix_contact connector MSTBV_01x16_GF_5.00mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF-5,08_1x02_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776508 12A || order number: 1924088 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF-5,08_1x02_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776508 12A || order number: 1924088 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF_1x02_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776692 12A || order number: 1923979 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF_1x02_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776692 12A || order number: 1923979 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.00mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF-5,08_1x03_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776511 12A || order number: 1924091 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF-5,08_1x03_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776511 12A || order number: 1924091 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF_1x03_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776702 12A || order number: 1923982 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF_1x03_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776702 12A || order number: 1923982 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.00mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF-5,08_1x04_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776524 12A || order number: 1924101 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF-5,08_1x04_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776524 12A || order number: 1924101 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF_1x04_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776715 12A || order number: 1923995 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF_1x04_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776715 12A || order number: 1923995 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.00mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF-5,08_1x05_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776537 12A || order number: 1924114 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF-5,08_1x05_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776537 12A || order number: 1924114 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF_1x05_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776728 12A || order number: 1924004 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF_1x05_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776728 12A || order number: 1924004 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.00mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF-5,08_1x06_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776540 12A || order number: 1924127 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF-5,08_1x06_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776540 12A || order number: 1924127 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF_1x06_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776731 12A || order number: 1924017 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF_1x06_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776731 12A || order number: 1924017 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.00mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF-5,08_1x07_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776553 12A || order number: 1924130 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF-5,08_1x07_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776553 12A || order number: 1924130 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF_1x07_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776744 12A || order number: 1924020 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF_1x07_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776744 12A || order number: 1924020 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.00mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF-5,08_1x08_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776566 12A || order number: 1924143 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF-5,08_1x08_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776566 12A || order number: 1924143 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF_1x08_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776757 12A || order number: 1924033 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF_1x08_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776757 12A || order number: 1924033 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.00mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF-5,08_1x09_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776579 12A || order number: 1924156 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF-5,08_1x09_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776579 12A || order number: 1924156 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF_1x09_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776760 12A || order number: 1924046 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF_1x09_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776760 12A || order number: 1924046 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.00mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF-5,08_1x10_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776582 12A || order number: 1924169 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF-5,08_1x10_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776582 12A || order number: 1924169 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF_1x10_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776773 12A || order number: 1924059 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF_1x10_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776773 12A || order number: 1924059 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.00mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF-5,08_1x11_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776595 12A || order number: 1924172 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF-5,08_1x11_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776595 12A || order number: 1924172 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF_1x11_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776786 12A || order number: 1924062 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF_1x11_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776786 12A || order number: 1924062 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.00mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF-5,08_1x12_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776605 12A || order number: 1924185 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF-5,08_1x12_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776605 12A || order number: 1924185 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF_1x12_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776799 12A || order number: 1924075 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF_1x12_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776799 12A || order number: 1924075 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.00mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF-5,08_1x13_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776618 12A +phoenix_contact connector MSTB_01x13_GF_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF-5,08_1x13_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776618 12A +phoenix_contact connector MSTB_01x13_GF_5.08mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF_1x13_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776809 12A +phoenix_contact connector MSTB_01x13_GF_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF_1x13_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776809 12A +phoenix_contact connector MSTB_01x13_GF_5.00mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF-5,08_1x14_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776621 12A +phoenix_contact connector MSTB_01x14_GF_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF-5,08_1x14_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776621 12A +phoenix_contact connector MSTB_01x14_GF_5.08mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF_1x14_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776812 12A +phoenix_contact connector MSTB_01x14_GF_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF_1x14_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776812 12A +phoenix_contact connector MSTB_01x14_GF_5.00mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF-5,08_1x15_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776634 12A +phoenix_contact connector MSTB_01x15_GF_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF-5,08_1x15_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776634 12A +phoenix_contact connector MSTB_01x15_GF_5.08mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF_1x15_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776825 12A +phoenix_contact connector MSTB_01x15_GF_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF_1x15_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776825 12A +phoenix_contact connector MSTB_01x15_GF_5.00mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF-5,08_1x16_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776647 12A +phoenix_contact connector MSTB_01x16_GF_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF-5,08_1x16_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776647 12A +phoenix_contact connector MSTB_01x16_GF_5.08mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF_1x16_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776838 12A +phoenix_contact connector MSTB_01x16_GF_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF_1x16_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776838 12A +phoenix_contact connector MSTB_01x16_GF_5.00mm_MH +0 +16 +16 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_2-H-3.5_1x02_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/2-H-3.5 Terminal Block, 1990737 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990737), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/2-H-3.5 1990737 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_3-H-3.5_1x03_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/3-H-3.5 Terminal Block, 1990740 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990740), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/3-H-3.5 1990740 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_4-H-3.5_1x04_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/4-H-3.5 Terminal Block, 1990753 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990753), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/4-H-3.5 1990753 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_5-H-3.5_1x05_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/5-H-3.5 Terminal Block, 1990766 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990766), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/5-H-3.5 1990766 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_6-H-3.5_1x06_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/6-H-3.5 Terminal Block, 1990779 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990779), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/6-H-3.5 1990779 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_7-H-3.5_1x07_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/7-H-3.5 Terminal Block, 1990782 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990782), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/7-H-3.5 1990782 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_8-H-3.5_1x08_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/8-H-3.5 Terminal Block, 1990795 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990795), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/8-H-3.5 1990795 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_9-H-3.5_1x09_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/9-H-3.5 Terminal Block, 1990805 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990805), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/9-H-3.5 1990805 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_10-H-3.5_1x10_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/10-H-3.5 Terminal Block, 1990818 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990818), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/10-H-3.5 1990818 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_11-H-3.5_1x11_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/11-H-3.5 Terminal Block, 1990821 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990821), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/11-H-3.5 1990821 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_12-H-3.5_1x12_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/12-H-3.5 Terminal Block, 1990834 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990834), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/12-H-3.5 1990834 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_1-H-5.0_1x01_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/1-H-5.0 Terminal Block, 1751066 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1751066), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/1-H-5.0 1751066 +0 +2 +1 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_2-H-5.0-EX_1x02_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/2-H-5.0-EX Terminal Block, 1732386 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732386), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/2-H-5.0-EX 1732386 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_2-H-5.0_1x02_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/2-H-5.0 Terminal Block, 1990973 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990973), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/2-H-5.0 1990973 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_2-V-5.0-EX_1x02_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/2-V-5.0-EX Terminal Block, 1732496 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732496), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/2-V-5.0-EX 1732496 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_3-H-5.0-EX_1x03_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/3-H-5.0-EX Terminal Block, 1732399 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732399), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/3-H-5.0-EX 1732399 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_3-H-5.0_1x03_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/3-H-5.0 Terminal Block, 1990986 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990986), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/3-H-5.0 1990986 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_3-V-5.0-EX_1x03_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/3-V-5.0-EX Terminal Block, 1732506 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732506), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/3-V-5.0-EX 1732506 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_4-H-5.0-EX_1x04_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/4-H-5.0-EX Terminal Block, 1732409 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732409), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/4-H-5.0-EX 1732409 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_4-H-5.0_1x04_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/4-H-5.0 Terminal Block, 1990999 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990999), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/4-H-5.0 1990999 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_4-V-5.0-EX_1x04_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/4-V-5.0-EX Terminal Block, 1732519 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732519), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/4-V-5.0-EX 1732519 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_5-H-5.0-EX_1x05_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/5-H-5.0-EX Terminal Block, 1732412 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732412), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/5-H-5.0-EX 1732412 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_5-H-5.0_1x05_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/5-H-5.0 Terminal Block, 1991008 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991008), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/5-H-5.0 1991008 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_5-V-5.0-EX_1x05_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/5-V-5.0-EX Terminal Block, 1732522 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732522), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/5-V-5.0-EX 1732522 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_6-H-5.0-EX_1x06_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/6-H-5.0-EX Terminal Block, 1732425 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732425), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/6-H-5.0-EX 1732425 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_6-H-5.0_1x06_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/6-H-5.0 Terminal Block, 1991011 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991011), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/6-H-5.0 1991011 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_6-V-5.0-EX_1x06_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/6-V-5.0-EX Terminal Block, 1732535 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732535), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/6-V-5.0-EX 1732535 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_7-H-5.0-EX_1x07_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/7-H-5.0-EX Terminal Block, 1732438 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732438), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/7-H-5.0-EX 1732438 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_7-H-5.0_1x07_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/7-H-5.0 Terminal Block, 1991024 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991024), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/7-H-5.0 1991024 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_7-V-5.0-EX_1x07_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/7-V-5.0-EX Terminal Block, 1732548 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732548), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/7-V-5.0-EX 1732548 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_8-H-5.0-EX_1x08_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/8-H-5.0-EX Terminal Block, 1732441 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732441), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/8-H-5.0-EX 1732441 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_8-H-5.0_1x08_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/8-H-5.0 Terminal Block, 1991037 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991037), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/8-H-5.0 1991037 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_8-V-5.0-EX_1x08_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/8-V-5.0-EX Terminal Block, 1732551 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732551), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/8-V-5.0-EX 1732551 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_9-H-5.0-EX_1x09_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/9-H-5.0-EX Terminal Block, 1732454 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732454), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/9-H-5.0-EX 1732454 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_9-H-5.0_1x09_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/9-H-5.0 Terminal Block, 1991040 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991040), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/9-H-5.0 1991040 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_9-V-5.0-EX_1x09_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/9-V-5.0-EX Terminal Block, 1732564 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732564), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/9-V-5.0-EX 1732564 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_10-H-5.0-EX_1x10_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/10-H-5.0-EX Terminal Block, 1732467 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732467), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/10-H-5.0-EX 1732467 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_10-H-5.0_1x10_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/10-H-5.0 Terminal Block, 1991053 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991053), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/10-H-5.0 1991053 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_10-V-5.0-EX_1x10_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/10-V-5.0-EX Terminal Block, 1732577 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732577), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/10-V-5.0-EX 1732577 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_11-H-5.0-EX_1x11_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/11-H-5.0-EX Terminal Block, 1732470 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732470), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/11-H-5.0-EX 1732470 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_11-H-5.0_1x11_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/11-H-5.0 Terminal Block, 1991066 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991066), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/11-H-5.0 1991066 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_11-V-5.0-EX_1x11_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/11-V-5.0-EX Terminal Block, 1732580 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732580), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/11-V-5.0-EX 1732580 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_12-H-5.0-EX_1x12_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/12-H-5.0-EX Terminal Block, 1732483 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732483), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/12-H-5.0-EX 1732483 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_12-H-5.0_1x12_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/12-H-5.0 Terminal Block, 1991079 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991079), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/12-H-5.0 1991079 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_12-V-5.0-EX_1x12_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/12-V-5.0-EX Terminal Block, 1732593 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732593), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/12-V-5.0-EX 1732593 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_1-H-7.5_1x01_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/1-H-7.5 Terminal Block, 1719189 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719189), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/1-H-7.5 1719189 +0 +2 +1 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_1-V-7.5_1x01_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/1-V-7.5 Terminal Block, 1719309 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719309), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/1-V-7.5 1719309 +0 +2 +1 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_2-H-7.5-ZB_1x02_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/2-H-7.5-ZB Terminal Block, 1719192 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719192), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/2-H-7.5-ZB 1719192 +0 +2 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_2-V-7.5_1x02_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/2-V-7.5 Terminal Block, 1738144 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1738144), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/2-V-7.5 1738144 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_3-H-7.5-ZB_1x03_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/3-H-7.5-ZB Terminal Block, 1719202 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719202), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/3-H-7.5-ZB 1719202 +0 +3 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_3-H-7.5_1x03_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/3-H-7.5 Terminal Block, 1701361 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1701361), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/3-H-7.5 1701361 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_3-V-7.5-ZB_1x03_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/3-V-7.5-ZB Terminal Block, 1719325 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719325), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/3-V-7.5-ZB 1719325 +0 +3 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_4-H-7.5-ZB_1x04_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/4-H-7.5-ZB Terminal Block, 1719215 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719215), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/4-H-7.5-ZB 1719215 +0 +4 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_5-H-7.5-ZB_1x05_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/5-H-7.5-ZB Terminal Block, 1719228 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719228), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/5-H-7.5-ZB 1719228 +0 +5 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_5-V-7.5-ZB_1x05_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/5-V-7.5-ZB Terminal Block, 1719341 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719341), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/5-V-7.5-ZB 1719341 +0 +5 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_6-H-7.5-ZB_1x06_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/6-H-7.5-ZB Terminal Block, 1719231 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719231), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/6-H-7.5-ZB 1719231 +0 +6 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_6-V-7.5-ZB_1x06_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/6-V-7.5-ZB Terminal Block, 1719354 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719354), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/6-V-7.5-ZB 1719354 +0 +6 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_7-H-7.5-ZB_1x07_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/7-H-7.5-ZB Terminal Block, 1719244 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719244), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/7-H-7.5-ZB 1719244 +0 +7 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_7-V-7.5-ZB_1x07_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/7-V-7.5-ZB Terminal Block, 1719367 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719367), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/7-V-7.5-ZB 1719367 +0 +7 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_8-H-7.5-ZB_1x08_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/8-H-7.5-ZB Terminal Block, 1719257 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719257), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/8-H-7.5-ZB 1719257 +0 +8 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_8-V-7.5-ZB_1x08_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/8-V-7.5-ZB Terminal Block, 1719370 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719370), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/8-V-7.5-ZB 1719370 +0 +8 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_9-H-7.5-ZB_1x09_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/9-H-7.5-ZB Terminal Block, 1719260 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719260), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/9-H-7.5-ZB 1719260 +0 +9 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_9-V-7.5-ZB_1x09_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/9-V-7.5-ZB Terminal Block, 1719383 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719383), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/9-V-7.5-ZB 1719383 +0 +9 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_10-H-7.5-ZB_1x10_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/10-H-7.5-ZB Terminal Block, 1719273 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719273), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/10-H-7.5-ZB 1719273 +0 +10 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_10-V-7.5-ZB_1x10_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/10-V-7.5-ZB Terminal Block, 1719396 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719396), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/10-V-7.5-ZB 1719396 +0 +10 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_11-H-7.5-ZB_1x11_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/11-H-7.5-ZB Terminal Block, 1719286 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719286), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/11-H-7.5-ZB 1719286 +0 +11 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_11-V-7.5-ZB_1x11_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/11-V-7.5-ZB Terminal Block, 1719406 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719406), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/11-V-7.5-ZB 1719406 +0 +11 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_12-H-7.5-ZB_1x12_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/12-H-7.5-ZB Terminal Block, 1719299 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719299), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/12-H-7.5-ZB 1719299 +0 +12 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_12-V-7.5-ZB_1x12_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/12-V-7.5-ZB Terminal Block, 1719419 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719419), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/12-V-7.5-ZB 1719419 +0 +12 +12 +Connector_Pin +Pin_D0.7mm_L6.5mm_W1.8mm_FlatFork +solder Pin_ with flat fork, hole diameter 0.7mm, length 6.5mm, width 1.8mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D0.9mm_L10.0mm_W2.4mm_FlatFork +solder Pin_ with flat fork, hole diameter 0.9mm, length 10.0mm, width 2.4mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.0mm_L10.0mm +solder Pin_ diameter 1.0mm, hole diameter 1.0mm (press fit), length 10.0mm +solder Pin_ press fit +0 +1 +1 +Connector_Pin +Pin_D1.0mm_L10.0mm_LooseFit +solder Pin_ diameter 1.0mm, hole diameter 1.2mm (loose fit), length 10.0mm +solder Pin_ loose fit +0 +1 +1 +Connector_Pin +Pin_D1.1mm_L8.5mm_W2.5mm_FlatFork +solder Pin_ with flat fork, hole diameter 1.1mm, length 8.5mm, width 2.5mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.1mm_L10.2mm_W3.5mm_Flat +solder Pin_ with flat with hole, hole diameter 1.1mm, length 10.2mm, width 3.5mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.2mm_L10.2mm_W2.9mm_FlatFork +solder Pin_ with flat with fork, hole diameter 1.2mm, length 11.3mm, width 3.0mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.2mm_L11.3mm_W3.0mm_Flat +solder Pin_ with flat with hole, hole diameter 1.2mm, length 11.3mm, width 3.0mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L10.0mm_W3.5mm_Flat +solder Pin_ with flat with hole, hole diameter 1.3mm, length 10.0mm, width 3.5mm, e.g. Ettinger 13.13.865, https://katalog.ettinger.de/#p=434 +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.0mm +solder Pin_ diameter 1.3mm, hole diameter 1.3mm, length 11.0mm +solder Pin_ pressfit +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.0mm_LooseFit +solder Pin_ diameter 1.3mm, hole diameter 1.5mm (loose fit), length 11.0mm +solder Pin_ loose fit +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.3mm_W2.8mm_Flat +solder Pin_ with flat with hole, hole diameter 1.3mm, length 11.3mm, width 2.8mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.4mm_L8.5mm_W2.8mm_FlatFork +solder Pin_ with flat with fork, hole diameter 1.4mm, length 8.5mm, width 2.8mm, e.g. Ettinger 13.13.890, https://katalog.ettinger.de/#p=434 +solder Pin_ with flat fork +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x01_P1.00mm_Horizontal +Through hole angled pin header, 1x01, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x01 1.00mm single row +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x01_P1.00mm_Vertical +Through hole straight pin header, 1x01, 1.00mm pitch, single row +Through hole pin header THT 1x01 1.00mm single row +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Horizontal +Through hole angled pin header, 1x02, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical +Through hole straight pin header, 1x02, 1.00mm pitch, single row +Through hole pin header THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 1.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 1.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Horizontal +Through hole angled pin header, 1x03, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical +Through hole straight pin header, 1x03, 1.00mm pitch, single row +Through hole pin header THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 1.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 1.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Horizontal +Through hole angled pin header, 1x04, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical +Through hole straight pin header, 1x04, 1.00mm pitch, single row +Through hole pin header THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 1.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 1.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Horizontal +Through hole angled pin header, 1x05, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical +Through hole straight pin header, 1x05, 1.00mm pitch, single row +Through hole pin header THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 1.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 1.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Horizontal +Through hole angled pin header, 1x06, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical +Through hole straight pin header, 1x06, 1.00mm pitch, single row +Through hole pin header THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 1.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 1.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Horizontal +Through hole angled pin header, 1x07, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical +Through hole straight pin header, 1x07, 1.00mm pitch, single row +Through hole pin header THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 1.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 1.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Horizontal +Through hole angled pin header, 1x08, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical +Through hole straight pin header, 1x08, 1.00mm pitch, single row +Through hole pin header THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 1.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 1.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Horizontal +Through hole angled pin header, 1x09, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical +Through hole straight pin header, 1x09, 1.00mm pitch, single row +Through hole pin header THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 1.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 1.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Horizontal +Through hole angled pin header, 1x10, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical +Through hole straight pin header, 1x10, 1.00mm pitch, single row +Through hole pin header THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 1.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 1.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Horizontal +Through hole angled pin header, 1x11, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical +Through hole straight pin header, 1x11, 1.00mm pitch, single row +Through hole pin header THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 1.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 1.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Horizontal +Through hole angled pin header, 1x12, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical +Through hole straight pin header, 1x12, 1.00mm pitch, single row +Through hole pin header THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 1.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 1.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Horizontal +Through hole angled pin header, 1x13, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical +Through hole straight pin header, 1x13, 1.00mm pitch, single row +Through hole pin header THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 1.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 1.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Horizontal +Through hole angled pin header, 1x14, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical +Through hole straight pin header, 1x14, 1.00mm pitch, single row +Through hole pin header THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 1.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 1.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Horizontal +Through hole angled pin header, 1x15, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical +Through hole straight pin header, 1x15, 1.00mm pitch, single row +Through hole pin header THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 1.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 1.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Horizontal +Through hole angled pin header, 1x16, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical +Through hole straight pin header, 1x16, 1.00mm pitch, single row +Through hole pin header THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 1.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 1.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Horizontal +Through hole angled pin header, 1x17, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical +Through hole straight pin header, 1x17, 1.00mm pitch, single row +Through hole pin header THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 1.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 1.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Horizontal +Through hole angled pin header, 1x18, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical +Through hole straight pin header, 1x18, 1.00mm pitch, single row +Through hole pin header THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 1.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 1.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Horizontal +Through hole angled pin header, 1x19, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical +Through hole straight pin header, 1x19, 1.00mm pitch, single row +Through hole pin header THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 1.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 1.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Horizontal +Through hole angled pin header, 1x20, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical +Through hole straight pin header, 1x20, 1.00mm pitch, single row +Through hole pin header THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 1.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 1.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Horizontal +Through hole angled pin header, 1x21, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical +Through hole straight pin header, 1x21, 1.00mm pitch, single row +Through hole pin header THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 1.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 1.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Horizontal +Through hole angled pin header, 1x22, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical +Through hole straight pin header, 1x22, 1.00mm pitch, single row +Through hole pin header THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 1.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 1.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Horizontal +Through hole angled pin header, 1x23, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical +Through hole straight pin header, 1x23, 1.00mm pitch, single row +Through hole pin header THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 1.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 1.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Horizontal +Through hole angled pin header, 1x24, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical +Through hole straight pin header, 1x24, 1.00mm pitch, single row +Through hole pin header THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 1.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 1.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Horizontal +Through hole angled pin header, 1x25, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical +Through hole straight pin header, 1x25, 1.00mm pitch, single row +Through hole pin header THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 1.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 1.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Horizontal +Through hole angled pin header, 1x26, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical +Through hole straight pin header, 1x26, 1.00mm pitch, single row +Through hole pin header THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 1.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 1.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Horizontal +Through hole angled pin header, 1x27, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical +Through hole straight pin header, 1x27, 1.00mm pitch, single row +Through hole pin header THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 1.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 1.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Horizontal +Through hole angled pin header, 1x28, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical +Through hole straight pin header, 1x28, 1.00mm pitch, single row +Through hole pin header THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 1.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 1.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Horizontal +Through hole angled pin header, 1x29, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical +Through hole straight pin header, 1x29, 1.00mm pitch, single row +Through hole pin header THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 1.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 1.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Horizontal +Through hole angled pin header, 1x30, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical +Through hole straight pin header, 1x30, 1.00mm pitch, single row +Through hole pin header THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 1.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 1.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Horizontal +Through hole angled pin header, 1x31, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical +Through hole straight pin header, 1x31, 1.00mm pitch, single row +Through hole pin header THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 1.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 1.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Horizontal +Through hole angled pin header, 1x32, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical +Through hole straight pin header, 1x32, 1.00mm pitch, single row +Through hole pin header THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 1.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 1.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Horizontal +Through hole angled pin header, 1x33, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical +Through hole straight pin header, 1x33, 1.00mm pitch, single row +Through hole pin header THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 1.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 1.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Horizontal +Through hole angled pin header, 1x34, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical +Through hole straight pin header, 1x34, 1.00mm pitch, single row +Through hole pin header THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 1.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 1.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Horizontal +Through hole angled pin header, 1x35, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical +Through hole straight pin header, 1x35, 1.00mm pitch, single row +Through hole pin header THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 1.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 1.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Horizontal +Through hole angled pin header, 1x36, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical +Through hole straight pin header, 1x36, 1.00mm pitch, single row +Through hole pin header THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 1.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 1.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Horizontal +Through hole angled pin header, 1x37, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical +Through hole straight pin header, 1x37, 1.00mm pitch, single row +Through hole pin header THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 1.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 1.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Horizontal +Through hole angled pin header, 1x38, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical +Through hole straight pin header, 1x38, 1.00mm pitch, single row +Through hole pin header THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 1.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 1.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Horizontal +Through hole angled pin header, 1x39, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical +Through hole straight pin header, 1x39, 1.00mm pitch, single row +Through hole pin header THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 1.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 1.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Horizontal +Through hole angled pin header, 1x40, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical +Through hole straight pin header, 1x40, 1.00mm pitch, single row +Through hole pin header THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 1.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 1.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Horizontal +Through hole angled pin header, 2x01, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Vertical +Through hole straight pin header, 2x01, 1.00mm pitch, double rows +Through hole pin header THT 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Horizontal +Through hole angled pin header, 2x02, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Vertical +Through hole straight pin header, 2x02, 1.00mm pitch, double rows +Through hole pin header THT 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Horizontal +Through hole angled pin header, 2x03, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Vertical +Through hole straight pin header, 2x03, 1.00mm pitch, double rows +Through hole pin header THT 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Horizontal +Through hole angled pin header, 2x04, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Vertical +Through hole straight pin header, 2x04, 1.00mm pitch, double rows +Through hole pin header THT 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Horizontal +Through hole angled pin header, 2x05, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Vertical +Through hole straight pin header, 2x05, 1.00mm pitch, double rows +Through hole pin header THT 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Horizontal +Through hole angled pin header, 2x06, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Vertical +Through hole straight pin header, 2x06, 1.00mm pitch, double rows +Through hole pin header THT 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Horizontal +Through hole angled pin header, 2x07, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Vertical +Through hole straight pin header, 2x07, 1.00mm pitch, double rows +Through hole pin header THT 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Horizontal +Through hole angled pin header, 2x08, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Vertical +Through hole straight pin header, 2x08, 1.00mm pitch, double rows +Through hole pin header THT 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Horizontal +Through hole angled pin header, 2x09, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Vertical +Through hole straight pin header, 2x09, 1.00mm pitch, double rows +Through hole pin header THT 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Horizontal +Through hole angled pin header, 2x10, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Vertical +Through hole straight pin header, 2x10, 1.00mm pitch, double rows +Through hole pin header THT 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Horizontal +Through hole angled pin header, 2x11, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Vertical +Through hole straight pin header, 2x11, 1.00mm pitch, double rows +Through hole pin header THT 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Horizontal +Through hole angled pin header, 2x12, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Vertical +Through hole straight pin header, 2x12, 1.00mm pitch, double rows +Through hole pin header THT 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Horizontal +Through hole angled pin header, 2x13, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Vertical +Through hole straight pin header, 2x13, 1.00mm pitch, double rows +Through hole pin header THT 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Horizontal +Through hole angled pin header, 2x14, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Vertical +Through hole straight pin header, 2x14, 1.00mm pitch, double rows +Through hole pin header THT 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Horizontal +Through hole angled pin header, 2x15, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Vertical +Through hole straight pin header, 2x15, 1.00mm pitch, double rows +Through hole pin header THT 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Horizontal +Through hole angled pin header, 2x16, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Vertical +Through hole straight pin header, 2x16, 1.00mm pitch, double rows +Through hole pin header THT 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Horizontal +Through hole angled pin header, 2x17, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Vertical +Through hole straight pin header, 2x17, 1.00mm pitch, double rows +Through hole pin header THT 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Horizontal +Through hole angled pin header, 2x18, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Vertical +Through hole straight pin header, 2x18, 1.00mm pitch, double rows +Through hole pin header THT 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Horizontal +Through hole angled pin header, 2x19, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Vertical +Through hole straight pin header, 2x19, 1.00mm pitch, double rows +Through hole pin header THT 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Horizontal +Through hole angled pin header, 2x20, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Vertical +Through hole straight pin header, 2x20, 1.00mm pitch, double rows +Through hole pin header THT 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Horizontal +Through hole angled pin header, 2x21, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Vertical +Through hole straight pin header, 2x21, 1.00mm pitch, double rows +Through hole pin header THT 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Horizontal +Through hole angled pin header, 2x22, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Vertical +Through hole straight pin header, 2x22, 1.00mm pitch, double rows +Through hole pin header THT 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Horizontal +Through hole angled pin header, 2x23, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Vertical +Through hole straight pin header, 2x23, 1.00mm pitch, double rows +Through hole pin header THT 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Horizontal +Through hole angled pin header, 2x24, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Vertical +Through hole straight pin header, 2x24, 1.00mm pitch, double rows +Through hole pin header THT 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Horizontal +Through hole angled pin header, 2x25, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Vertical +Through hole straight pin header, 2x25, 1.00mm pitch, double rows +Through hole pin header THT 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Horizontal +Through hole angled pin header, 2x26, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Vertical +Through hole straight pin header, 2x26, 1.00mm pitch, double rows +Through hole pin header THT 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Horizontal +Through hole angled pin header, 2x27, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Vertical +Through hole straight pin header, 2x27, 1.00mm pitch, double rows +Through hole pin header THT 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Horizontal +Through hole angled pin header, 2x28, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Vertical +Through hole straight pin header, 2x28, 1.00mm pitch, double rows +Through hole pin header THT 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Horizontal +Through hole angled pin header, 2x29, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Vertical +Through hole straight pin header, 2x29, 1.00mm pitch, double rows +Through hole pin header THT 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Horizontal +Through hole angled pin header, 2x30, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Vertical +Through hole straight pin header, 2x30, 1.00mm pitch, double rows +Through hole pin header THT 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Horizontal +Through hole angled pin header, 2x31, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Vertical +Through hole straight pin header, 2x31, 1.00mm pitch, double rows +Through hole pin header THT 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Horizontal +Through hole angled pin header, 2x32, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Vertical +Through hole straight pin header, 2x32, 1.00mm pitch, double rows +Through hole pin header THT 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Horizontal +Through hole angled pin header, 2x33, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Vertical +Through hole straight pin header, 2x33, 1.00mm pitch, double rows +Through hole pin header THT 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Horizontal +Through hole angled pin header, 2x34, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Vertical +Through hole straight pin header, 2x34, 1.00mm pitch, double rows +Through hole pin header THT 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Horizontal +Through hole angled pin header, 2x35, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Vertical +Through hole straight pin header, 2x35, 1.00mm pitch, double rows +Through hole pin header THT 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Horizontal +Through hole angled pin header, 2x36, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Vertical +Through hole straight pin header, 2x36, 1.00mm pitch, double rows +Through hole pin header THT 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Horizontal +Through hole angled pin header, 2x37, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Vertical +Through hole straight pin header, 2x37, 1.00mm pitch, double rows +Through hole pin header THT 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Horizontal +Through hole angled pin header, 2x38, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Vertical +Through hole straight pin header, 2x38, 1.00mm pitch, double rows +Through hole pin header THT 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Horizontal +Through hole angled pin header, 2x39, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Vertical +Through hole straight pin header, 2x39, 1.00mm pitch, double rows +Through hole pin header THT 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Horizontal +Through hole angled pin header, 2x40, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Vertical +Through hole straight pin header, 2x40, 1.00mm pitch, double rows +Through hole pin header THT 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_1x01_P1.27mm_Horizontal +Through hole angled pin header, 1x01, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinHeader_1.27mm +PinHeader_1x01_P1.27mm_Vertical +Through hole straight pin header, 1x01, 1.27mm pitch, single row +Through hole pin header THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Horizontal +Through hole angled pin header, 1x02, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical +Through hole straight pin header, 1x02, 1.27mm pitch, single row +Through hole pin header THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 1.27mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 1.27mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Horizontal +Through hole angled pin header, 1x03, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical +Through hole straight pin header, 1x03, 1.27mm pitch, single row +Through hole pin header THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 1.27mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 1.27mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Horizontal +Through hole angled pin header, 1x04, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical +Through hole straight pin header, 1x04, 1.27mm pitch, single row +Through hole pin header THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 1.27mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 1.27mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Horizontal +Through hole angled pin header, 1x05, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical +Through hole straight pin header, 1x05, 1.27mm pitch, single row +Through hole pin header THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 1.27mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 1.27mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Horizontal +Through hole angled pin header, 1x06, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical +Through hole straight pin header, 1x06, 1.27mm pitch, single row +Through hole pin header THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 1.27mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 1.27mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Horizontal +Through hole angled pin header, 1x07, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical +Through hole straight pin header, 1x07, 1.27mm pitch, single row +Through hole pin header THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 1.27mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 1.27mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Horizontal +Through hole angled pin header, 1x08, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical +Through hole straight pin header, 1x08, 1.27mm pitch, single row +Through hole pin header THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 1.27mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 1.27mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Horizontal +Through hole angled pin header, 1x09, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical +Through hole straight pin header, 1x09, 1.27mm pitch, single row +Through hole pin header THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 1.27mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 1.27mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Horizontal +Through hole angled pin header, 1x10, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical +Through hole straight pin header, 1x10, 1.27mm pitch, single row +Through hole pin header THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 1.27mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 1.27mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Horizontal +Through hole angled pin header, 1x11, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical +Through hole straight pin header, 1x11, 1.27mm pitch, single row +Through hole pin header THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 1.27mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 1.27mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Horizontal +Through hole angled pin header, 1x12, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical +Through hole straight pin header, 1x12, 1.27mm pitch, single row +Through hole pin header THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 1.27mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 1.27mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Horizontal +Through hole angled pin header, 1x13, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical +Through hole straight pin header, 1x13, 1.27mm pitch, single row +Through hole pin header THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 1.27mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 1.27mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Horizontal +Through hole angled pin header, 1x14, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical +Through hole straight pin header, 1x14, 1.27mm pitch, single row +Through hole pin header THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 1.27mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 1.27mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Horizontal +Through hole angled pin header, 1x15, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical +Through hole straight pin header, 1x15, 1.27mm pitch, single row +Through hole pin header THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 1.27mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 1.27mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Horizontal +Through hole angled pin header, 1x16, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical +Through hole straight pin header, 1x16, 1.27mm pitch, single row +Through hole pin header THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 1.27mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 1.27mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Horizontal +Through hole angled pin header, 1x17, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical +Through hole straight pin header, 1x17, 1.27mm pitch, single row +Through hole pin header THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 1.27mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 1.27mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Horizontal +Through hole angled pin header, 1x18, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical +Through hole straight pin header, 1x18, 1.27mm pitch, single row +Through hole pin header THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 1.27mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 1.27mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Horizontal +Through hole angled pin header, 1x19, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical +Through hole straight pin header, 1x19, 1.27mm pitch, single row +Through hole pin header THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 1.27mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 1.27mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Horizontal +Through hole angled pin header, 1x20, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical +Through hole straight pin header, 1x20, 1.27mm pitch, single row +Through hole pin header THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 1.27mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 1.27mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Horizontal +Through hole angled pin header, 1x21, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical +Through hole straight pin header, 1x21, 1.27mm pitch, single row +Through hole pin header THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 1.27mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 1.27mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Horizontal +Through hole angled pin header, 1x22, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical +Through hole straight pin header, 1x22, 1.27mm pitch, single row +Through hole pin header THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 1.27mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 1.27mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Horizontal +Through hole angled pin header, 1x23, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical +Through hole straight pin header, 1x23, 1.27mm pitch, single row +Through hole pin header THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 1.27mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 1.27mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Horizontal +Through hole angled pin header, 1x24, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical +Through hole straight pin header, 1x24, 1.27mm pitch, single row +Through hole pin header THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 1.27mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 1.27mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Horizontal +Through hole angled pin header, 1x25, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical +Through hole straight pin header, 1x25, 1.27mm pitch, single row +Through hole pin header THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 1.27mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 1.27mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Horizontal +Through hole angled pin header, 1x26, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical +Through hole straight pin header, 1x26, 1.27mm pitch, single row +Through hole pin header THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 1.27mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 1.27mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Horizontal +Through hole angled pin header, 1x27, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical +Through hole straight pin header, 1x27, 1.27mm pitch, single row +Through hole pin header THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 1.27mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 1.27mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Horizontal +Through hole angled pin header, 1x28, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical +Through hole straight pin header, 1x28, 1.27mm pitch, single row +Through hole pin header THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 1.27mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 1.27mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Horizontal +Through hole angled pin header, 1x29, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical +Through hole straight pin header, 1x29, 1.27mm pitch, single row +Through hole pin header THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 1.27mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 1.27mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Horizontal +Through hole angled pin header, 1x30, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical +Through hole straight pin header, 1x30, 1.27mm pitch, single row +Through hole pin header THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 1.27mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 1.27mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Horizontal +Through hole angled pin header, 1x31, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical +Through hole straight pin header, 1x31, 1.27mm pitch, single row +Through hole pin header THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 1.27mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 1.27mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Horizontal +Through hole angled pin header, 1x32, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical +Through hole straight pin header, 1x32, 1.27mm pitch, single row +Through hole pin header THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 1.27mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 1.27mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Horizontal +Through hole angled pin header, 1x33, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical +Through hole straight pin header, 1x33, 1.27mm pitch, single row +Through hole pin header THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 1.27mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 1.27mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Horizontal +Through hole angled pin header, 1x34, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical +Through hole straight pin header, 1x34, 1.27mm pitch, single row +Through hole pin header THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 1.27mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 1.27mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Horizontal +Through hole angled pin header, 1x35, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical +Through hole straight pin header, 1x35, 1.27mm pitch, single row +Through hole pin header THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 1.27mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 1.27mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Horizontal +Through hole angled pin header, 1x36, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical +Through hole straight pin header, 1x36, 1.27mm pitch, single row +Through hole pin header THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 1.27mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 1.27mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Horizontal +Through hole angled pin header, 1x37, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical +Through hole straight pin header, 1x37, 1.27mm pitch, single row +Through hole pin header THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 1.27mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 1.27mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Horizontal +Through hole angled pin header, 1x38, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical +Through hole straight pin header, 1x38, 1.27mm pitch, single row +Through hole pin header THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 1.27mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 1.27mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Horizontal +Through hole angled pin header, 1x39, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical +Through hole straight pin header, 1x39, 1.27mm pitch, single row +Through hole pin header THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 1.27mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 1.27mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Horizontal +Through hole angled pin header, 1x40, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical +Through hole straight pin header, 1x40, 1.27mm pitch, single row +Through hole pin header THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 1.27mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 1.27mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Horizontal +Through hole angled pin header, 2x01, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Vertical +Through hole straight pin header, 2x01, 1.27mm pitch, double rows +Through hole pin header THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Horizontal +Through hole angled pin header, 2x02, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Vertical +Through hole straight pin header, 2x02, 1.27mm pitch, double rows +Through hole pin header THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Horizontal +Through hole angled pin header, 2x03, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Vertical +Through hole straight pin header, 2x03, 1.27mm pitch, double rows +Through hole pin header THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Horizontal +Through hole angled pin header, 2x04, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Vertical +Through hole straight pin header, 2x04, 1.27mm pitch, double rows +Through hole pin header THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Horizontal +Through hole angled pin header, 2x05, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Vertical +Through hole straight pin header, 2x05, 1.27mm pitch, double rows +Through hole pin header THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Horizontal +Through hole angled pin header, 2x06, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Vertical +Through hole straight pin header, 2x06, 1.27mm pitch, double rows +Through hole pin header THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Horizontal +Through hole angled pin header, 2x07, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Vertical +Through hole straight pin header, 2x07, 1.27mm pitch, double rows +Through hole pin header THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Horizontal +Through hole angled pin header, 2x08, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Vertical +Through hole straight pin header, 2x08, 1.27mm pitch, double rows +Through hole pin header THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Horizontal +Through hole angled pin header, 2x09, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Vertical +Through hole straight pin header, 2x09, 1.27mm pitch, double rows +Through hole pin header THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Horizontal +Through hole angled pin header, 2x10, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Vertical +Through hole straight pin header, 2x10, 1.27mm pitch, double rows +Through hole pin header THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Horizontal +Through hole angled pin header, 2x11, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Vertical +Through hole straight pin header, 2x11, 1.27mm pitch, double rows +Through hole pin header THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Horizontal +Through hole angled pin header, 2x12, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Vertical +Through hole straight pin header, 2x12, 1.27mm pitch, double rows +Through hole pin header THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Horizontal +Through hole angled pin header, 2x13, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Vertical +Through hole straight pin header, 2x13, 1.27mm pitch, double rows +Through hole pin header THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Horizontal +Through hole angled pin header, 2x14, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Vertical +Through hole straight pin header, 2x14, 1.27mm pitch, double rows +Through hole pin header THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Horizontal +Through hole angled pin header, 2x15, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Vertical +Through hole straight pin header, 2x15, 1.27mm pitch, double rows +Through hole pin header THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Horizontal +Through hole angled pin header, 2x16, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Vertical +Through hole straight pin header, 2x16, 1.27mm pitch, double rows +Through hole pin header THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Horizontal +Through hole angled pin header, 2x17, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Vertical +Through hole straight pin header, 2x17, 1.27mm pitch, double rows +Through hole pin header THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Horizontal +Through hole angled pin header, 2x18, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Vertical +Through hole straight pin header, 2x18, 1.27mm pitch, double rows +Through hole pin header THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Horizontal +Through hole angled pin header, 2x19, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Vertical +Through hole straight pin header, 2x19, 1.27mm pitch, double rows +Through hole pin header THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Horizontal +Through hole angled pin header, 2x20, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Vertical +Through hole straight pin header, 2x20, 1.27mm pitch, double rows +Through hole pin header THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Horizontal +Through hole angled pin header, 2x21, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Vertical +Through hole straight pin header, 2x21, 1.27mm pitch, double rows +Through hole pin header THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Horizontal +Through hole angled pin header, 2x22, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Vertical +Through hole straight pin header, 2x22, 1.27mm pitch, double rows +Through hole pin header THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Horizontal +Through hole angled pin header, 2x23, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Vertical +Through hole straight pin header, 2x23, 1.27mm pitch, double rows +Through hole pin header THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Horizontal +Through hole angled pin header, 2x24, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Vertical +Through hole straight pin header, 2x24, 1.27mm pitch, double rows +Through hole pin header THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Horizontal +Through hole angled pin header, 2x25, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Vertical +Through hole straight pin header, 2x25, 1.27mm pitch, double rows +Through hole pin header THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Horizontal +Through hole angled pin header, 2x26, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Vertical +Through hole straight pin header, 2x26, 1.27mm pitch, double rows +Through hole pin header THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Horizontal +Through hole angled pin header, 2x27, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Vertical +Through hole straight pin header, 2x27, 1.27mm pitch, double rows +Through hole pin header THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Horizontal +Through hole angled pin header, 2x28, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Vertical +Through hole straight pin header, 2x28, 1.27mm pitch, double rows +Through hole pin header THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Horizontal +Through hole angled pin header, 2x29, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Vertical +Through hole straight pin header, 2x29, 1.27mm pitch, double rows +Through hole pin header THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Horizontal +Through hole angled pin header, 2x30, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Vertical +Through hole straight pin header, 2x30, 1.27mm pitch, double rows +Through hole pin header THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Horizontal +Through hole angled pin header, 2x31, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Vertical +Through hole straight pin header, 2x31, 1.27mm pitch, double rows +Through hole pin header THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Horizontal +Through hole angled pin header, 2x32, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Vertical +Through hole straight pin header, 2x32, 1.27mm pitch, double rows +Through hole pin header THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Horizontal +Through hole angled pin header, 2x33, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Vertical +Through hole straight pin header, 2x33, 1.27mm pitch, double rows +Through hole pin header THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Horizontal +Through hole angled pin header, 2x34, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Vertical +Through hole straight pin header, 2x34, 1.27mm pitch, double rows +Through hole pin header THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Horizontal +Through hole angled pin header, 2x35, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Vertical +Through hole straight pin header, 2x35, 1.27mm pitch, double rows +Through hole pin header THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Horizontal +Through hole angled pin header, 2x36, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Vertical +Through hole straight pin header, 2x36, 1.27mm pitch, double rows +Through hole pin header THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Horizontal +Through hole angled pin header, 2x37, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Vertical +Through hole straight pin header, 2x37, 1.27mm pitch, double rows +Through hole pin header THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Horizontal +Through hole angled pin header, 2x38, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Vertical +Through hole straight pin header, 2x38, 1.27mm pitch, double rows +Through hole pin header THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Horizontal +Through hole angled pin header, 2x39, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Vertical +Through hole straight pin header, 2x39, 1.27mm pitch, double rows +Through hole pin header THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Horizontal +Through hole angled pin header, 2x40, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Vertical +Through hole straight pin header, 2x40, 1.27mm pitch, double rows +Through hole pin header THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_1x01_P2.00mm_Horizontal +Through hole angled pin header, 1x01, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinHeader_2.00mm +PinHeader_1x01_P2.00mm_Vertical +Through hole straight pin header, 1x01, 2.00mm pitch, single row +Through hole pin header THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Horizontal +Through hole angled pin header, 1x02, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical +Through hole straight pin header, 1x02, 2.00mm pitch, single row +Through hole pin header THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 2.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 2.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Horizontal +Through hole angled pin header, 1x03, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical +Through hole straight pin header, 1x03, 2.00mm pitch, single row +Through hole pin header THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 2.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 2.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Horizontal +Through hole angled pin header, 1x04, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical +Through hole straight pin header, 1x04, 2.00mm pitch, single row +Through hole pin header THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 2.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 2.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Horizontal +Through hole angled pin header, 1x05, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical +Through hole straight pin header, 1x05, 2.00mm pitch, single row +Through hole pin header THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 2.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 2.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Horizontal +Through hole angled pin header, 1x06, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical +Through hole straight pin header, 1x06, 2.00mm pitch, single row +Through hole pin header THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 2.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 2.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Horizontal +Through hole angled pin header, 1x07, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical +Through hole straight pin header, 1x07, 2.00mm pitch, single row +Through hole pin header THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 2.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 2.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Horizontal +Through hole angled pin header, 1x08, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical +Through hole straight pin header, 1x08, 2.00mm pitch, single row +Through hole pin header THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 2.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 2.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Horizontal +Through hole angled pin header, 1x09, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical +Through hole straight pin header, 1x09, 2.00mm pitch, single row +Through hole pin header THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 2.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 2.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Horizontal +Through hole angled pin header, 1x10, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical +Through hole straight pin header, 1x10, 2.00mm pitch, single row +Through hole pin header THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 2.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 2.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Horizontal +Through hole angled pin header, 1x11, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical +Through hole straight pin header, 1x11, 2.00mm pitch, single row +Through hole pin header THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 2.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 2.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Horizontal +Through hole angled pin header, 1x12, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical +Through hole straight pin header, 1x12, 2.00mm pitch, single row +Through hole pin header THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 2.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 2.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Horizontal +Through hole angled pin header, 1x13, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical +Through hole straight pin header, 1x13, 2.00mm pitch, single row +Through hole pin header THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 2.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 2.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Horizontal +Through hole angled pin header, 1x14, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical +Through hole straight pin header, 1x14, 2.00mm pitch, single row +Through hole pin header THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 2.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 2.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Horizontal +Through hole angled pin header, 1x15, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical +Through hole straight pin header, 1x15, 2.00mm pitch, single row +Through hole pin header THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 2.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 2.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Horizontal +Through hole angled pin header, 1x16, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical +Through hole straight pin header, 1x16, 2.00mm pitch, single row +Through hole pin header THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 2.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 2.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Horizontal +Through hole angled pin header, 1x17, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical +Through hole straight pin header, 1x17, 2.00mm pitch, single row +Through hole pin header THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 2.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 2.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Horizontal +Through hole angled pin header, 1x18, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical +Through hole straight pin header, 1x18, 2.00mm pitch, single row +Through hole pin header THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 2.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 2.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Horizontal +Through hole angled pin header, 1x19, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical +Through hole straight pin header, 1x19, 2.00mm pitch, single row +Through hole pin header THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 2.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 2.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Horizontal +Through hole angled pin header, 1x20, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical +Through hole straight pin header, 1x20, 2.00mm pitch, single row +Through hole pin header THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 2.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 2.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Horizontal +Through hole angled pin header, 1x21, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical +Through hole straight pin header, 1x21, 2.00mm pitch, single row +Through hole pin header THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 2.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 2.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Horizontal +Through hole angled pin header, 1x22, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical +Through hole straight pin header, 1x22, 2.00mm pitch, single row +Through hole pin header THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 2.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 2.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Horizontal +Through hole angled pin header, 1x23, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical +Through hole straight pin header, 1x23, 2.00mm pitch, single row +Through hole pin header THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 2.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 2.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Horizontal +Through hole angled pin header, 1x24, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical +Through hole straight pin header, 1x24, 2.00mm pitch, single row +Through hole pin header THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 2.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 2.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Horizontal +Through hole angled pin header, 1x25, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical +Through hole straight pin header, 1x25, 2.00mm pitch, single row +Through hole pin header THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 2.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 2.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Horizontal +Through hole angled pin header, 1x26, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical +Through hole straight pin header, 1x26, 2.00mm pitch, single row +Through hole pin header THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 2.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 2.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Horizontal +Through hole angled pin header, 1x27, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical +Through hole straight pin header, 1x27, 2.00mm pitch, single row +Through hole pin header THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 2.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 2.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Horizontal +Through hole angled pin header, 1x28, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical +Through hole straight pin header, 1x28, 2.00mm pitch, single row +Through hole pin header THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 2.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 2.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Horizontal +Through hole angled pin header, 1x29, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical +Through hole straight pin header, 1x29, 2.00mm pitch, single row +Through hole pin header THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 2.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 2.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Horizontal +Through hole angled pin header, 1x30, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical +Through hole straight pin header, 1x30, 2.00mm pitch, single row +Through hole pin header THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 2.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 2.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Horizontal +Through hole angled pin header, 1x31, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical +Through hole straight pin header, 1x31, 2.00mm pitch, single row +Through hole pin header THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 2.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 2.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Horizontal +Through hole angled pin header, 1x32, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical +Through hole straight pin header, 1x32, 2.00mm pitch, single row +Through hole pin header THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 2.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 2.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Horizontal +Through hole angled pin header, 1x33, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical +Through hole straight pin header, 1x33, 2.00mm pitch, single row +Through hole pin header THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 2.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 2.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Horizontal +Through hole angled pin header, 1x34, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical +Through hole straight pin header, 1x34, 2.00mm pitch, single row +Through hole pin header THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 2.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 2.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Horizontal +Through hole angled pin header, 1x35, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical +Through hole straight pin header, 1x35, 2.00mm pitch, single row +Through hole pin header THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 2.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 2.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Horizontal +Through hole angled pin header, 1x36, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical +Through hole straight pin header, 1x36, 2.00mm pitch, single row +Through hole pin header THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 2.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 2.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Horizontal +Through hole angled pin header, 1x37, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical +Through hole straight pin header, 1x37, 2.00mm pitch, single row +Through hole pin header THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 2.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 2.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Horizontal +Through hole angled pin header, 1x38, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical +Through hole straight pin header, 1x38, 2.00mm pitch, single row +Through hole pin header THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 2.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 2.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Horizontal +Through hole angled pin header, 1x39, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical +Through hole straight pin header, 1x39, 2.00mm pitch, single row +Through hole pin header THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 2.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 2.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Horizontal +Through hole angled pin header, 1x40, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical +Through hole straight pin header, 1x40, 2.00mm pitch, single row +Through hole pin header THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 2.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 2.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Horizontal +Through hole angled pin header, 2x01, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Vertical +Through hole straight pin header, 2x01, 2.00mm pitch, double rows +Through hole pin header THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Horizontal +Through hole angled pin header, 2x02, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Vertical +Through hole straight pin header, 2x02, 2.00mm pitch, double rows +Through hole pin header THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Horizontal +Through hole angled pin header, 2x03, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Vertical +Through hole straight pin header, 2x03, 2.00mm pitch, double rows +Through hole pin header THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Horizontal +Through hole angled pin header, 2x04, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Vertical +Through hole straight pin header, 2x04, 2.00mm pitch, double rows +Through hole pin header THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Horizontal +Through hole angled pin header, 2x05, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Vertical +Through hole straight pin header, 2x05, 2.00mm pitch, double rows +Through hole pin header THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Horizontal +Through hole angled pin header, 2x06, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Vertical +Through hole straight pin header, 2x06, 2.00mm pitch, double rows +Through hole pin header THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Horizontal +Through hole angled pin header, 2x07, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Vertical +Through hole straight pin header, 2x07, 2.00mm pitch, double rows +Through hole pin header THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Horizontal +Through hole angled pin header, 2x08, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Vertical +Through hole straight pin header, 2x08, 2.00mm pitch, double rows +Through hole pin header THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Horizontal +Through hole angled pin header, 2x09, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Vertical +Through hole straight pin header, 2x09, 2.00mm pitch, double rows +Through hole pin header THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Horizontal +Through hole angled pin header, 2x10, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Vertical +Through hole straight pin header, 2x10, 2.00mm pitch, double rows +Through hole pin header THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Horizontal +Through hole angled pin header, 2x11, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Vertical +Through hole straight pin header, 2x11, 2.00mm pitch, double rows +Through hole pin header THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Horizontal +Through hole angled pin header, 2x12, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Vertical +Through hole straight pin header, 2x12, 2.00mm pitch, double rows +Through hole pin header THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Horizontal +Through hole angled pin header, 2x13, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Vertical +Through hole straight pin header, 2x13, 2.00mm pitch, double rows +Through hole pin header THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Horizontal +Through hole angled pin header, 2x14, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Vertical +Through hole straight pin header, 2x14, 2.00mm pitch, double rows +Through hole pin header THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Horizontal +Through hole angled pin header, 2x15, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Vertical +Through hole straight pin header, 2x15, 2.00mm pitch, double rows +Through hole pin header THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Horizontal +Through hole angled pin header, 2x16, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Vertical +Through hole straight pin header, 2x16, 2.00mm pitch, double rows +Through hole pin header THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Horizontal +Through hole angled pin header, 2x17, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Vertical +Through hole straight pin header, 2x17, 2.00mm pitch, double rows +Through hole pin header THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Horizontal +Through hole angled pin header, 2x18, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Vertical +Through hole straight pin header, 2x18, 2.00mm pitch, double rows +Through hole pin header THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Horizontal +Through hole angled pin header, 2x19, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Vertical +Through hole straight pin header, 2x19, 2.00mm pitch, double rows +Through hole pin header THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Horizontal +Through hole angled pin header, 2x20, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Vertical +Through hole straight pin header, 2x20, 2.00mm pitch, double rows +Through hole pin header THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Horizontal +Through hole angled pin header, 2x21, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Vertical +Through hole straight pin header, 2x21, 2.00mm pitch, double rows +Through hole pin header THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Horizontal +Through hole angled pin header, 2x22, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Vertical +Through hole straight pin header, 2x22, 2.00mm pitch, double rows +Through hole pin header THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Horizontal +Through hole angled pin header, 2x23, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Vertical +Through hole straight pin header, 2x23, 2.00mm pitch, double rows +Through hole pin header THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Horizontal +Through hole angled pin header, 2x24, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Vertical +Through hole straight pin header, 2x24, 2.00mm pitch, double rows +Through hole pin header THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Horizontal +Through hole angled pin header, 2x25, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Vertical +Through hole straight pin header, 2x25, 2.00mm pitch, double rows +Through hole pin header THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Horizontal +Through hole angled pin header, 2x26, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Vertical +Through hole straight pin header, 2x26, 2.00mm pitch, double rows +Through hole pin header THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Horizontal +Through hole angled pin header, 2x27, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Vertical +Through hole straight pin header, 2x27, 2.00mm pitch, double rows +Through hole pin header THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Horizontal +Through hole angled pin header, 2x28, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Vertical +Through hole straight pin header, 2x28, 2.00mm pitch, double rows +Through hole pin header THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Horizontal +Through hole angled pin header, 2x29, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Vertical +Through hole straight pin header, 2x29, 2.00mm pitch, double rows +Through hole pin header THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Horizontal +Through hole angled pin header, 2x30, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Vertical +Through hole straight pin header, 2x30, 2.00mm pitch, double rows +Through hole pin header THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Horizontal +Through hole angled pin header, 2x31, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Vertical +Through hole straight pin header, 2x31, 2.00mm pitch, double rows +Through hole pin header THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Horizontal +Through hole angled pin header, 2x32, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Vertical +Through hole straight pin header, 2x32, 2.00mm pitch, double rows +Through hole pin header THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Horizontal +Through hole angled pin header, 2x33, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Vertical +Through hole straight pin header, 2x33, 2.00mm pitch, double rows +Through hole pin header THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Horizontal +Through hole angled pin header, 2x34, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Vertical +Through hole straight pin header, 2x34, 2.00mm pitch, double rows +Through hole pin header THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Horizontal +Through hole angled pin header, 2x35, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Vertical +Through hole straight pin header, 2x35, 2.00mm pitch, double rows +Through hole pin header THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Horizontal +Through hole angled pin header, 2x36, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Vertical +Through hole straight pin header, 2x36, 2.00mm pitch, double rows +Through hole pin header THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Horizontal +Through hole angled pin header, 2x37, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Vertical +Through hole straight pin header, 2x37, 2.00mm pitch, double rows +Through hole pin header THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Horizontal +Through hole angled pin header, 2x38, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Vertical +Through hole straight pin header, 2x38, 2.00mm pitch, double rows +Through hole pin header THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Horizontal +Through hole angled pin header, 2x39, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Vertical +Through hole straight pin header, 2x39, 2.00mm pitch, double rows +Through hole pin header THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Horizontal +Through hole angled pin header, 2x40, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Vertical +Through hole straight pin header, 2x40, 2.00mm pitch, double rows +Through hole pin header THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_1x01_P2.54mm_Horizontal +Through hole angled pin header, 1x01, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinHeader_2.54mm +PinHeader_1x01_P2.54mm_Vertical +Through hole straight pin header, 1x01, 2.54mm pitch, single row +Through hole pin header THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Horizontal +Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical +Through hole straight pin header, 1x02, 2.54mm pitch, single row +Through hole pin header THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 2.54mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 2.54mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Horizontal +Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical +Through hole straight pin header, 1x03, 2.54mm pitch, single row +Through hole pin header THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 2.54mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 2.54mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Horizontal +Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical +Through hole straight pin header, 1x04, 2.54mm pitch, single row +Through hole pin header THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 2.54mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 2.54mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Horizontal +Through hole angled pin header, 1x05, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical +Through hole straight pin header, 1x05, 2.54mm pitch, single row +Through hole pin header THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 2.54mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 2.54mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Horizontal +Through hole angled pin header, 1x06, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical +Through hole straight pin header, 1x06, 2.54mm pitch, single row +Through hole pin header THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 2.54mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 2.54mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Horizontal +Through hole angled pin header, 1x07, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical +Through hole straight pin header, 1x07, 2.54mm pitch, single row +Through hole pin header THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 2.54mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 2.54mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Horizontal +Through hole angled pin header, 1x08, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical +Through hole straight pin header, 1x08, 2.54mm pitch, single row +Through hole pin header THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 2.54mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 2.54mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Horizontal +Through hole angled pin header, 1x09, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical +Through hole straight pin header, 1x09, 2.54mm pitch, single row +Through hole pin header THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 2.54mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 2.54mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Horizontal +Through hole angled pin header, 1x10, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical +Through hole straight pin header, 1x10, 2.54mm pitch, single row +Through hole pin header THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 2.54mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 2.54mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Horizontal +Through hole angled pin header, 1x11, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical +Through hole straight pin header, 1x11, 2.54mm pitch, single row +Through hole pin header THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 2.54mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 2.54mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Horizontal +Through hole angled pin header, 1x12, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical +Through hole straight pin header, 1x12, 2.54mm pitch, single row +Through hole pin header THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 2.54mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 2.54mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Horizontal +Through hole angled pin header, 1x13, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical +Through hole straight pin header, 1x13, 2.54mm pitch, single row +Through hole pin header THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 2.54mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 2.54mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Horizontal +Through hole angled pin header, 1x14, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical +Through hole straight pin header, 1x14, 2.54mm pitch, single row +Through hole pin header THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 2.54mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 2.54mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Horizontal +Through hole angled pin header, 1x15, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical +Through hole straight pin header, 1x15, 2.54mm pitch, single row +Through hole pin header THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 2.54mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 2.54mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Horizontal +Through hole angled pin header, 1x16, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical +Through hole straight pin header, 1x16, 2.54mm pitch, single row +Through hole pin header THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 2.54mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 2.54mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Horizontal +Through hole angled pin header, 1x17, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical +Through hole straight pin header, 1x17, 2.54mm pitch, single row +Through hole pin header THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 2.54mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 2.54mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Horizontal +Through hole angled pin header, 1x18, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical +Through hole straight pin header, 1x18, 2.54mm pitch, single row +Through hole pin header THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 2.54mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 2.54mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Horizontal +Through hole angled pin header, 1x19, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical +Through hole straight pin header, 1x19, 2.54mm pitch, single row +Through hole pin header THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 2.54mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 2.54mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Horizontal +Through hole angled pin header, 1x20, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical +Through hole straight pin header, 1x20, 2.54mm pitch, single row +Through hole pin header THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 2.54mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 2.54mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Horizontal +Through hole angled pin header, 1x21, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical +Through hole straight pin header, 1x21, 2.54mm pitch, single row +Through hole pin header THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 2.54mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 2.54mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Horizontal +Through hole angled pin header, 1x22, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical +Through hole straight pin header, 1x22, 2.54mm pitch, single row +Through hole pin header THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 2.54mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 2.54mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Horizontal +Through hole angled pin header, 1x23, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical +Through hole straight pin header, 1x23, 2.54mm pitch, single row +Through hole pin header THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 2.54mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 2.54mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Horizontal +Through hole angled pin header, 1x24, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical +Through hole straight pin header, 1x24, 2.54mm pitch, single row +Through hole pin header THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 2.54mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 2.54mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Horizontal +Through hole angled pin header, 1x25, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical +Through hole straight pin header, 1x25, 2.54mm pitch, single row +Through hole pin header THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 2.54mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 2.54mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Horizontal +Through hole angled pin header, 1x26, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical +Through hole straight pin header, 1x26, 2.54mm pitch, single row +Through hole pin header THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 2.54mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 2.54mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Horizontal +Through hole angled pin header, 1x27, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical +Through hole straight pin header, 1x27, 2.54mm pitch, single row +Through hole pin header THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 2.54mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 2.54mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Horizontal +Through hole angled pin header, 1x28, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical +Through hole straight pin header, 1x28, 2.54mm pitch, single row +Through hole pin header THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 2.54mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 2.54mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Horizontal +Through hole angled pin header, 1x29, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical +Through hole straight pin header, 1x29, 2.54mm pitch, single row +Through hole pin header THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 2.54mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 2.54mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Horizontal +Through hole angled pin header, 1x30, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical +Through hole straight pin header, 1x30, 2.54mm pitch, single row +Through hole pin header THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 2.54mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 2.54mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Horizontal +Through hole angled pin header, 1x31, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical +Through hole straight pin header, 1x31, 2.54mm pitch, single row +Through hole pin header THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 2.54mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 2.54mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Horizontal +Through hole angled pin header, 1x32, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical +Through hole straight pin header, 1x32, 2.54mm pitch, single row +Through hole pin header THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 2.54mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 2.54mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Horizontal +Through hole angled pin header, 1x33, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical +Through hole straight pin header, 1x33, 2.54mm pitch, single row +Through hole pin header THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 2.54mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 2.54mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Horizontal +Through hole angled pin header, 1x34, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical +Through hole straight pin header, 1x34, 2.54mm pitch, single row +Through hole pin header THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 2.54mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 2.54mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Horizontal +Through hole angled pin header, 1x35, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical +Through hole straight pin header, 1x35, 2.54mm pitch, single row +Through hole pin header THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 2.54mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 2.54mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Horizontal +Through hole angled pin header, 1x36, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical +Through hole straight pin header, 1x36, 2.54mm pitch, single row +Through hole pin header THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 2.54mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 2.54mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Horizontal +Through hole angled pin header, 1x37, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical +Through hole straight pin header, 1x37, 2.54mm pitch, single row +Through hole pin header THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 2.54mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 2.54mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Horizontal +Through hole angled pin header, 1x38, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical +Through hole straight pin header, 1x38, 2.54mm pitch, single row +Through hole pin header THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 2.54mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 2.54mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Horizontal +Through hole angled pin header, 1x39, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical +Through hole straight pin header, 1x39, 2.54mm pitch, single row +Through hole pin header THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 2.54mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 2.54mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Horizontal +Through hole angled pin header, 1x40, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical +Through hole straight pin header, 1x40, 2.54mm pitch, single row +Through hole pin header THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 2.54mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 2.54mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Horizontal +Through hole angled pin header, 2x01, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Vertical +Through hole straight pin header, 2x01, 2.54mm pitch, double rows +Through hole pin header THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Horizontal +Through hole angled pin header, 2x02, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Vertical +Through hole straight pin header, 2x02, 2.54mm pitch, double rows +Through hole pin header THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Horizontal +Through hole angled pin header, 2x03, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Vertical +Through hole straight pin header, 2x03, 2.54mm pitch, double rows +Through hole pin header THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Horizontal +Through hole angled pin header, 2x04, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Vertical +Through hole straight pin header, 2x04, 2.54mm pitch, double rows +Through hole pin header THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Horizontal +Through hole angled pin header, 2x05, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Vertical +Through hole straight pin header, 2x05, 2.54mm pitch, double rows +Through hole pin header THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Horizontal +Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Vertical +Through hole straight pin header, 2x06, 2.54mm pitch, double rows +Through hole pin header THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Horizontal +Through hole angled pin header, 2x07, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Vertical +Through hole straight pin header, 2x07, 2.54mm pitch, double rows +Through hole pin header THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Horizontal +Through hole angled pin header, 2x08, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Vertical +Through hole straight pin header, 2x08, 2.54mm pitch, double rows +Through hole pin header THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Horizontal +Through hole angled pin header, 2x09, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Vertical +Through hole straight pin header, 2x09, 2.54mm pitch, double rows +Through hole pin header THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Horizontal +Through hole angled pin header, 2x10, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Vertical +Through hole straight pin header, 2x10, 2.54mm pitch, double rows +Through hole pin header THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Horizontal +Through hole angled pin header, 2x11, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Vertical +Through hole straight pin header, 2x11, 2.54mm pitch, double rows +Through hole pin header THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Horizontal +Through hole angled pin header, 2x12, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Vertical +Through hole straight pin header, 2x12, 2.54mm pitch, double rows +Through hole pin header THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Horizontal +Through hole angled pin header, 2x13, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Vertical +Through hole straight pin header, 2x13, 2.54mm pitch, double rows +Through hole pin header THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Horizontal +Through hole angled pin header, 2x14, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Vertical +Through hole straight pin header, 2x14, 2.54mm pitch, double rows +Through hole pin header THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Horizontal +Through hole angled pin header, 2x15, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Vertical +Through hole straight pin header, 2x15, 2.54mm pitch, double rows +Through hole pin header THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Horizontal +Through hole angled pin header, 2x16, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Vertical +Through hole straight pin header, 2x16, 2.54mm pitch, double rows +Through hole pin header THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Horizontal +Through hole angled pin header, 2x17, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Vertical +Through hole straight pin header, 2x17, 2.54mm pitch, double rows +Through hole pin header THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Horizontal +Through hole angled pin header, 2x18, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Vertical +Through hole straight pin header, 2x18, 2.54mm pitch, double rows +Through hole pin header THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Horizontal +Through hole angled pin header, 2x19, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Vertical +Through hole straight pin header, 2x19, 2.54mm pitch, double rows +Through hole pin header THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Horizontal +Through hole angled pin header, 2x20, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Vertical +Through hole straight pin header, 2x20, 2.54mm pitch, double rows +Through hole pin header THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Horizontal +Through hole angled pin header, 2x21, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Vertical +Through hole straight pin header, 2x21, 2.54mm pitch, double rows +Through hole pin header THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Horizontal +Through hole angled pin header, 2x22, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Vertical +Through hole straight pin header, 2x22, 2.54mm pitch, double rows +Through hole pin header THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Horizontal +Through hole angled pin header, 2x23, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Vertical +Through hole straight pin header, 2x23, 2.54mm pitch, double rows +Through hole pin header THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Horizontal +Through hole angled pin header, 2x24, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Vertical +Through hole straight pin header, 2x24, 2.54mm pitch, double rows +Through hole pin header THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Horizontal +Through hole angled pin header, 2x25, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Vertical +Through hole straight pin header, 2x25, 2.54mm pitch, double rows +Through hole pin header THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Horizontal +Through hole angled pin header, 2x26, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Vertical +Through hole straight pin header, 2x26, 2.54mm pitch, double rows +Through hole pin header THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Horizontal +Through hole angled pin header, 2x27, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Vertical +Through hole straight pin header, 2x27, 2.54mm pitch, double rows +Through hole pin header THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Horizontal +Through hole angled pin header, 2x28, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Vertical +Through hole straight pin header, 2x28, 2.54mm pitch, double rows +Through hole pin header THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Horizontal +Through hole angled pin header, 2x29, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Vertical +Through hole straight pin header, 2x29, 2.54mm pitch, double rows +Through hole pin header THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Horizontal +Through hole angled pin header, 2x30, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Vertical +Through hole straight pin header, 2x30, 2.54mm pitch, double rows +Through hole pin header THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Horizontal +Through hole angled pin header, 2x31, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Vertical +Through hole straight pin header, 2x31, 2.54mm pitch, double rows +Through hole pin header THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Horizontal +Through hole angled pin header, 2x32, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Vertical +Through hole straight pin header, 2x32, 2.54mm pitch, double rows +Through hole pin header THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Horizontal +Through hole angled pin header, 2x33, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Vertical +Through hole straight pin header, 2x33, 2.54mm pitch, double rows +Through hole pin header THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Horizontal +Through hole angled pin header, 2x34, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Vertical +Through hole straight pin header, 2x34, 2.54mm pitch, double rows +Through hole pin header THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Horizontal +Through hole angled pin header, 2x35, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Vertical +Through hole straight pin header, 2x35, 2.54mm pitch, double rows +Through hole pin header THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Horizontal +Through hole angled pin header, 2x36, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Vertical +Through hole straight pin header, 2x36, 2.54mm pitch, double rows +Through hole pin header THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Horizontal +Through hole angled pin header, 2x37, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Vertical +Through hole straight pin header, 2x37, 2.54mm pitch, double rows +Through hole pin header THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Horizontal +Through hole angled pin header, 2x38, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Vertical +Through hole straight pin header, 2x38, 2.54mm pitch, double rows +Through hole pin header THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Horizontal +Through hole angled pin header, 2x39, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Vertical +Through hole straight pin header, 2x39, 2.54mm pitch, double rows +Through hole pin header THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Horizontal +Through hole angled pin header, 2x40, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Vertical +Through hole straight pin header, 2x40, 2.54mm pitch, double rows +Through hole pin header THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical +Through hole straight socket strip, 1x02, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x02 1.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x02 1.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical +Through hole straight socket strip, 1x03, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x03 1.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x03 1.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical +Through hole straight socket strip, 1x04, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x04 1.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x04 1.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical +Through hole straight socket strip, 1x05, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x05 1.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x05 1.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical +Through hole straight socket strip, 1x06, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x06 1.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x06 1.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical +Through hole straight socket strip, 1x07, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x07 1.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x07 1.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical +Through hole straight socket strip, 1x08, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x08 1.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x08 1.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical +Through hole straight socket strip, 1x09, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x09 1.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x09 1.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical +Through hole straight socket strip, 1x10, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x10 1.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x10 1.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical +Through hole straight socket strip, 1x11, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x11 1.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x11 1.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical +Through hole straight socket strip, 1x12, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x12 1.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x12 1.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical +Through hole straight socket strip, 1x13, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x13 1.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x13 1.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical +Through hole straight socket strip, 1x14, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x14 1.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x14 1.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical +Through hole straight socket strip, 1x15, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x15 1.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x15 1.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical +Through hole straight socket strip, 1x16, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x16 1.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x16 1.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical +Through hole straight socket strip, 1x17, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x17 1.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x17 1.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical +Through hole straight socket strip, 1x18, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x18 1.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x18 1.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical +Through hole straight socket strip, 1x19, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x19 1.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x19 1.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical +Through hole straight socket strip, 1x20, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x20 1.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x20 1.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical +Through hole straight socket strip, 1x21, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x21 1.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x21 1.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical +Through hole straight socket strip, 1x22, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x22 1.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x22 1.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical +Through hole straight socket strip, 1x23, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x23 1.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x23 1.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical +Through hole straight socket strip, 1x24, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x24 1.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x24 1.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical +Through hole straight socket strip, 1x25, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x25 1.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x25 1.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical +Through hole straight socket strip, 1x26, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x26 1.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x26 1.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical +Through hole straight socket strip, 1x27, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x27 1.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x27 1.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical +Through hole straight socket strip, 1x28, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x28 1.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x28 1.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical +Through hole straight socket strip, 1x29, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x29 1.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x29 1.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical +Through hole straight socket strip, 1x30, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x30 1.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x30 1.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical +Through hole straight socket strip, 1x31, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x31 1.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x31 1.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical +Through hole straight socket strip, 1x32, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x32 1.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x32 1.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical +Through hole straight socket strip, 1x33, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x33 1.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x33 1.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical +Through hole straight socket strip, 1x34, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x34 1.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x34 1.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical +Through hole straight socket strip, 1x35, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x35 1.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x35 1.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical +Through hole straight socket strip, 1x36, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x36 1.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x36 1.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical +Through hole straight socket strip, 1x37, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x37 1.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x37 1.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical +Through hole straight socket strip, 1x38, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x38 1.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x38 1.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical +Through hole straight socket strip, 1x39, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x39 1.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x39 1.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical +Through hole straight socket strip, 1x40, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x40 1.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x40 1.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_2x02_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x02 1.00mm double row +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_2x03_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x03 1.00mm double row +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_2x04_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x04 1.00mm double row +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_2x05_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x05 1.00mm double row +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_2x06_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x06 1.00mm double row +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_2x07_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x07 1.00mm double row +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_2x08_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x08 1.00mm double row +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_2x09_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x09 1.00mm double row +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_2x10_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x10 1.00mm double row +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_2x11_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x11 1.00mm double row +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_2x12_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x12 1.00mm double row +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_2x13_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x13 1.00mm double row +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_2x14_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x14 1.00mm double row +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_2x15_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x15 1.00mm double row +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_2x16_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x16 1.00mm double row +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_2x17_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x17 1.00mm double row +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_2x18_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x18 1.00mm double row +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_2x19_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x19 1.00mm double row +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_2x20_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x20 1.00mm double row +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_2x21_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x21 1.00mm double row +0 +42 +42 +Connector_PinSocket_1.00mm +PinSocket_2x22_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x22 1.00mm double row +0 +44 +44 +Connector_PinSocket_1.00mm +PinSocket_2x23_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x23 1.00mm double row +0 +46 +46 +Connector_PinSocket_1.00mm +PinSocket_2x24_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x24 1.00mm double row +0 +48 +48 +Connector_PinSocket_1.00mm +PinSocket_2x25_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x25 1.00mm double row +0 +50 +50 +Connector_PinSocket_1.00mm +PinSocket_2x26_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x26 1.00mm double row +0 +52 +52 +Connector_PinSocket_1.00mm +PinSocket_2x27_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x27 1.00mm double row +0 +54 +54 +Connector_PinSocket_1.00mm +PinSocket_2x28_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x28 1.00mm double row +0 +56 +56 +Connector_PinSocket_1.00mm +PinSocket_2x29_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x29 1.00mm double row +0 +58 +58 +Connector_PinSocket_1.00mm +PinSocket_2x30_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x30 1.00mm double row +0 +60 +60 +Connector_PinSocket_1.00mm +PinSocket_2x31_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x31 1.00mm double row +0 +62 +62 +Connector_PinSocket_1.00mm +PinSocket_2x32_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x32 1.00mm double row +0 +64 +64 +Connector_PinSocket_1.00mm +PinSocket_2x33_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x33 1.00mm double row +0 +66 +66 +Connector_PinSocket_1.00mm +PinSocket_2x34_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x34 1.00mm double row +0 +68 +68 +Connector_PinSocket_1.00mm +PinSocket_2x35_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x35 1.00mm double row +0 +70 +70 +Connector_PinSocket_1.00mm +PinSocket_2x36_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x36 1.00mm double row +0 +72 +72 +Connector_PinSocket_1.00mm +PinSocket_2x37_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x37 1.00mm double row +0 +74 +74 +Connector_PinSocket_1.00mm +PinSocket_2x38_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x38 1.00mm double row +0 +76 +76 +Connector_PinSocket_1.00mm +PinSocket_2x39_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x39 1.00mm double row +0 +78 +78 +Connector_PinSocket_1.00mm +PinSocket_2x40_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x40 1.00mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_1x01_P1.27mm_Vertical +Through hole straight socket strip, 1x01, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical +Through hole straight socket strip, 1x02, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x02 1.27mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x02 1.27mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical +Through hole straight socket strip, 1x03, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x03 1.27mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x03 1.27mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical +Through hole straight socket strip, 1x04, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x04 1.27mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x04 1.27mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical +Through hole straight socket strip, 1x05, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x05 1.27mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x05 1.27mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical +Through hole straight socket strip, 1x06, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x06 1.27mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x06 1.27mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical +Through hole straight socket strip, 1x07, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x07 1.27mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x07 1.27mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical +Through hole straight socket strip, 1x08, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x08 1.27mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x08 1.27mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical +Through hole straight socket strip, 1x09, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x09 1.27mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x09 1.27mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical +Through hole straight socket strip, 1x10, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x10 1.27mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x10 1.27mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical +Through hole straight socket strip, 1x11, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x11 1.27mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x11 1.27mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical +Through hole straight socket strip, 1x12, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x12 1.27mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x12 1.27mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical +Through hole straight socket strip, 1x13, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x13 1.27mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x13 1.27mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical +Through hole straight socket strip, 1x14, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x14 1.27mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x14 1.27mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical +Through hole straight socket strip, 1x15, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x15 1.27mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x15 1.27mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical +Through hole straight socket strip, 1x16, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x16 1.27mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x16 1.27mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical +Through hole straight socket strip, 1x17, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x17 1.27mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x17 1.27mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical +Through hole straight socket strip, 1x18, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x18 1.27mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x18 1.27mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical +Through hole straight socket strip, 1x19, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x19 1.27mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x19 1.27mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical +Through hole straight socket strip, 1x20, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x20 1.27mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x20 1.27mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical +Through hole straight socket strip, 1x21, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x21 1.27mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x21 1.27mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical +Through hole straight socket strip, 1x22, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x22 1.27mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x22 1.27mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical +Through hole straight socket strip, 1x23, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x23 1.27mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x23 1.27mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical +Through hole straight socket strip, 1x24, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x24 1.27mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x24 1.27mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical +Through hole straight socket strip, 1x25, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x25 1.27mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x25 1.27mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical +Through hole straight socket strip, 1x26, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x26 1.27mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x26 1.27mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical +Through hole straight socket strip, 1x27, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x27 1.27mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x27 1.27mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical +Through hole straight socket strip, 1x28, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x28 1.27mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x28 1.27mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical +Through hole straight socket strip, 1x29, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x29 1.27mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x29 1.27mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical +Through hole straight socket strip, 1x30, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x30 1.27mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x30 1.27mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical +Through hole straight socket strip, 1x31, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x31 1.27mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x31 1.27mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical +Through hole straight socket strip, 1x32, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x32 1.27mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x32 1.27mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical +Through hole straight socket strip, 1x33, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x33 1.27mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x33 1.27mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical +Through hole straight socket strip, 1x34, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x34 1.27mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x34 1.27mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical +Through hole straight socket strip, 1x35, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x35 1.27mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x35 1.27mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical +Through hole straight socket strip, 1x36, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x36 1.27mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x36 1.27mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical +Through hole straight socket strip, 1x37, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x37 1.27mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x37 1.27mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical +Through hole straight socket strip, 1x38, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x38 1.27mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x38 1.27mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical +Through hole straight socket strip, 1x39, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x39 1.27mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x39 1.27mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical +Through hole straight socket strip, 1x40, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x40 1.27mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x40 1.27mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x01_P1.27mm_Vertical +Through hole straight socket strip, 2x01, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_2x01_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x01 1.27mm double row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_2x02_P1.27mm_Vertical +Through hole straight socket strip, 2x02, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_2x02_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x02 1.27mm double row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Horizontal +Through hole angled socket strip, 2x03, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Vertical +Through hole straight socket strip, 2x03, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Horizontal +Through hole angled socket strip, 2x04, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Vertical +Through hole straight socket strip, 2x04, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Horizontal +Through hole angled socket strip, 2x05, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Vertical +Through hole straight socket strip, 2x05, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Horizontal +Through hole angled socket strip, 2x06, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Vertical +Through hole straight socket strip, 2x06, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Horizontal +Through hole angled socket strip, 2x07, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Vertical +Through hole straight socket strip, 2x07, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Horizontal +Through hole angled socket strip, 2x08, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Vertical +Through hole straight socket strip, 2x08, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Horizontal +Through hole angled socket strip, 2x09, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Vertical +Through hole straight socket strip, 2x09, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Horizontal +Through hole angled socket strip, 2x10, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Vertical +Through hole straight socket strip, 2x10, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Horizontal +Through hole angled socket strip, 2x11, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Vertical +Through hole straight socket strip, 2x11, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Horizontal +Through hole angled socket strip, 2x12, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Vertical +Through hole straight socket strip, 2x12, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Horizontal +Through hole angled socket strip, 2x13, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Vertical +Through hole straight socket strip, 2x13, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Horizontal +Through hole angled socket strip, 2x14, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Vertical +Through hole straight socket strip, 2x14, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Horizontal +Through hole angled socket strip, 2x15, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Vertical +Through hole straight socket strip, 2x15, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Horizontal +Through hole angled socket strip, 2x16, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Vertical +Through hole straight socket strip, 2x16, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Horizontal +Through hole angled socket strip, 2x17, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Vertical +Through hole straight socket strip, 2x17, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Horizontal +Through hole angled socket strip, 2x18, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Vertical +Through hole straight socket strip, 2x18, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Horizontal +Through hole angled socket strip, 2x19, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Vertical +Through hole straight socket strip, 2x19, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Horizontal +Through hole angled socket strip, 2x20, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Vertical +Through hole straight socket strip, 2x20, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Horizontal +Through hole angled socket strip, 2x21, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Vertical +Through hole straight socket strip, 2x21, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Horizontal +Through hole angled socket strip, 2x22, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Vertical +Through hole straight socket strip, 2x22, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Horizontal +Through hole angled socket strip, 2x23, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Vertical +Through hole straight socket strip, 2x23, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Horizontal +Through hole angled socket strip, 2x24, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Vertical +Through hole straight socket strip, 2x24, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Horizontal +Through hole angled socket strip, 2x25, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Vertical +Through hole straight socket strip, 2x25, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Horizontal +Through hole angled socket strip, 2x26, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Vertical +Through hole straight socket strip, 2x26, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Horizontal +Through hole angled socket strip, 2x27, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Vertical +Through hole straight socket strip, 2x27, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Horizontal +Through hole angled socket strip, 2x28, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Vertical +Through hole straight socket strip, 2x28, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Horizontal +Through hole angled socket strip, 2x29, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Vertical +Through hole straight socket strip, 2x29, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Horizontal +Through hole angled socket strip, 2x30, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Vertical +Through hole straight socket strip, 2x30, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Horizontal +Through hole angled socket strip, 2x31, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Vertical +Through hole straight socket strip, 2x31, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Horizontal +Through hole angled socket strip, 2x32, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Vertical +Through hole straight socket strip, 2x32, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Horizontal +Through hole angled socket strip, 2x33, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Vertical +Through hole straight socket strip, 2x33, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Horizontal +Through hole angled socket strip, 2x34, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Vertical +Through hole straight socket strip, 2x34, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Horizontal +Through hole angled socket strip, 2x35, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Vertical +Through hole straight socket strip, 2x35, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Horizontal +Through hole angled socket strip, 2x36, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Vertical +Through hole straight socket strip, 2x36, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Horizontal +Through hole angled socket strip, 2x37, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Vertical +Through hole straight socket strip, 2x37, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Horizontal +Through hole angled socket strip, 2x38, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Vertical +Through hole straight socket strip, 2x38, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Horizontal +Through hole angled socket strip, 2x39, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Vertical +Through hole straight socket strip, 2x39, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Horizontal +Through hole angled socket strip, 2x40, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Vertical +Through hole straight socket strip, 2x40, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x41_P1.27mm_Horizontal +Through hole angled socket strip, 2x41, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x41 1.27mm double row +0 +82 +82 +Connector_PinSocket_1.27mm +PinSocket_2x42_P1.27mm_Horizontal +Through hole angled socket strip, 2x42, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x42 1.27mm double row +0 +84 +84 +Connector_PinSocket_1.27mm +PinSocket_2x43_P1.27mm_Horizontal +Through hole angled socket strip, 2x43, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x43 1.27mm double row +0 +86 +86 +Connector_PinSocket_1.27mm +PinSocket_2x44_P1.27mm_Horizontal +Through hole angled socket strip, 2x44, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x44 1.27mm double row +0 +88 +88 +Connector_PinSocket_1.27mm +PinSocket_2x45_P1.27mm_Horizontal +Through hole angled socket strip, 2x45, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x45 1.27mm double row +0 +90 +90 +Connector_PinSocket_1.27mm +PinSocket_2x46_P1.27mm_Horizontal +Through hole angled socket strip, 2x46, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x46 1.27mm double row +0 +92 +92 +Connector_PinSocket_1.27mm +PinSocket_2x47_P1.27mm_Horizontal +Through hole angled socket strip, 2x47, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x47 1.27mm double row +0 +94 +94 +Connector_PinSocket_1.27mm +PinSocket_2x48_P1.27mm_Horizontal +Through hole angled socket strip, 2x48, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x48 1.27mm double row +0 +96 +96 +Connector_PinSocket_1.27mm +PinSocket_2x49_P1.27mm_Horizontal +Through hole angled socket strip, 2x49, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x49 1.27mm double row +0 +98 +98 +Connector_PinSocket_1.27mm +PinSocket_2x50_P1.27mm_Horizontal +Through hole angled socket strip, 2x50, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x50 1.27mm double row +0 +100 +100 +Connector_PinSocket_2.00mm +PinSocket_1x01_P2.00mm_Horizontal +Through hole angled socket strip, 1x01, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinSocket_2.00mm +PinSocket_1x01_P2.00mm_Vertical +Through hole straight socket strip, 1x01, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Horizontal +Through hole angled socket strip, 1x02, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical +Through hole straight socket strip, 1x02, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x02 2.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x02 2.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Horizontal +Through hole angled socket strip, 1x03, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical +Through hole straight socket strip, 1x03, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x03 2.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x03 2.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Horizontal +Through hole angled socket strip, 1x04, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical +Through hole straight socket strip, 1x04, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x04 2.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x04 2.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Horizontal +Through hole angled socket strip, 1x05, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical +Through hole straight socket strip, 1x05, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x05 2.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x05 2.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Horizontal +Through hole angled socket strip, 1x06, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical +Through hole straight socket strip, 1x06, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x06 2.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x06 2.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Horizontal +Through hole angled socket strip, 1x07, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical +Through hole straight socket strip, 1x07, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x07 2.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x07 2.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Horizontal +Through hole angled socket strip, 1x08, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical +Through hole straight socket strip, 1x08, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x08 2.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x08 2.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Horizontal +Through hole angled socket strip, 1x09, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical +Through hole straight socket strip, 1x09, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x09 2.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x09 2.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Horizontal +Through hole angled socket strip, 1x10, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical +Through hole straight socket strip, 1x10, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x10 2.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x10 2.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Horizontal +Through hole angled socket strip, 1x11, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical +Through hole straight socket strip, 1x11, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x11 2.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x11 2.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Horizontal +Through hole angled socket strip, 1x12, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical +Through hole straight socket strip, 1x12, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x12 2.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x12 2.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Horizontal +Through hole angled socket strip, 1x13, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical +Through hole straight socket strip, 1x13, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x13 2.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x13 2.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Horizontal +Through hole angled socket strip, 1x14, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical +Through hole straight socket strip, 1x14, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x14 2.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x14 2.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Horizontal +Through hole angled socket strip, 1x15, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical +Through hole straight socket strip, 1x15, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x15 2.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x15 2.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Horizontal +Through hole angled socket strip, 1x16, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical +Through hole straight socket strip, 1x16, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x16 2.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x16 2.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Horizontal +Through hole angled socket strip, 1x17, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical +Through hole straight socket strip, 1x17, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x17 2.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x17 2.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Horizontal +Through hole angled socket strip, 1x18, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical +Through hole straight socket strip, 1x18, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x18 2.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x18 2.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Horizontal +Through hole angled socket strip, 1x19, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical +Through hole straight socket strip, 1x19, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x19 2.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x19 2.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Horizontal +Through hole angled socket strip, 1x20, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical +Through hole straight socket strip, 1x20, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x20 2.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x20 2.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Horizontal +Through hole angled socket strip, 1x21, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical +Through hole straight socket strip, 1x21, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x21 2.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x21 2.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Horizontal +Through hole angled socket strip, 1x22, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical +Through hole straight socket strip, 1x22, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x22 2.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x22 2.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Horizontal +Through hole angled socket strip, 1x23, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical +Through hole straight socket strip, 1x23, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x23 2.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x23 2.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Horizontal +Through hole angled socket strip, 1x24, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical +Through hole straight socket strip, 1x24, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x24 2.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x24 2.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Horizontal +Through hole angled socket strip, 1x25, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical +Through hole straight socket strip, 1x25, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x25 2.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x25 2.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Horizontal +Through hole angled socket strip, 1x26, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical +Through hole straight socket strip, 1x26, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x26 2.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x26 2.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Horizontal +Through hole angled socket strip, 1x27, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical +Through hole straight socket strip, 1x27, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x27 2.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x27 2.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Horizontal +Through hole angled socket strip, 1x28, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical +Through hole straight socket strip, 1x28, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x28 2.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x28 2.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Horizontal +Through hole angled socket strip, 1x29, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical +Through hole straight socket strip, 1x29, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x29 2.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x29 2.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Horizontal +Through hole angled socket strip, 1x30, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical +Through hole straight socket strip, 1x30, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x30 2.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x30 2.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Horizontal +Through hole angled socket strip, 1x31, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical +Through hole straight socket strip, 1x31, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x31 2.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x31 2.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Horizontal +Through hole angled socket strip, 1x32, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical +Through hole straight socket strip, 1x32, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x32 2.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x32 2.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Horizontal +Through hole angled socket strip, 1x33, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical +Through hole straight socket strip, 1x33, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x33 2.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x33 2.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Horizontal +Through hole angled socket strip, 1x34, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical +Through hole straight socket strip, 1x34, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x34 2.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x34 2.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Horizontal +Through hole angled socket strip, 1x35, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical +Through hole straight socket strip, 1x35, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x35 2.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x35 2.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Horizontal +Through hole angled socket strip, 1x36, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical +Through hole straight socket strip, 1x36, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x36 2.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x36 2.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Horizontal +Through hole angled socket strip, 1x37, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical +Through hole straight socket strip, 1x37, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x37 2.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x37 2.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Horizontal +Through hole angled socket strip, 1x38, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical +Through hole straight socket strip, 1x38, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x38 2.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x38 2.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Horizontal +Through hole angled socket strip, 1x39, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical +Through hole straight socket strip, 1x39, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x39 2.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x39 2.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Horizontal +Through hole angled socket strip, 1x40, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical +Through hole straight socket strip, 1x40, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x40 2.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x40 2.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Horizontal +Through hole angled socket strip, 2x01, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Vertical +Through hole straight socket strip, 2x01, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Horizontal +Through hole angled socket strip, 2x02, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Vertical +Through hole straight socket strip, 2x02, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Horizontal +Through hole angled socket strip, 2x03, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Vertical +Through hole straight socket strip, 2x03, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Horizontal +Through hole angled socket strip, 2x04, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Vertical +Through hole straight socket strip, 2x04, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Horizontal +Through hole angled socket strip, 2x05, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Vertical +Through hole straight socket strip, 2x05, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Horizontal +Through hole angled socket strip, 2x06, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Vertical +Through hole straight socket strip, 2x06, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Horizontal +Through hole angled socket strip, 2x07, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Vertical +Through hole straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Horizontal +Through hole angled socket strip, 2x08, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Vertical +Through hole straight socket strip, 2x08, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Horizontal +Through hole angled socket strip, 2x09, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Vertical +Through hole straight socket strip, 2x09, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Horizontal +Through hole angled socket strip, 2x10, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Vertical +Through hole straight socket strip, 2x10, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Horizontal +Through hole angled socket strip, 2x11, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Vertical +Through hole straight socket strip, 2x11, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Horizontal +Through hole angled socket strip, 2x12, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Vertical +Through hole straight socket strip, 2x12, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Horizontal +Through hole angled socket strip, 2x13, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Vertical +Through hole straight socket strip, 2x13, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Horizontal +Through hole angled socket strip, 2x14, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Vertical +Through hole straight socket strip, 2x14, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Horizontal +Through hole angled socket strip, 2x15, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Vertical +Through hole straight socket strip, 2x15, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Horizontal +Through hole angled socket strip, 2x16, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Vertical +Through hole straight socket strip, 2x16, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Horizontal +Through hole angled socket strip, 2x17, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Vertical +Through hole straight socket strip, 2x17, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Horizontal +Through hole angled socket strip, 2x18, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Vertical +Through hole straight socket strip, 2x18, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Horizontal +Through hole angled socket strip, 2x19, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Vertical +Through hole straight socket strip, 2x19, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Horizontal +Through hole angled socket strip, 2x20, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Vertical +Through hole straight socket strip, 2x20, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Horizontal +Through hole angled socket strip, 2x21, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Vertical +Through hole straight socket strip, 2x21, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Horizontal +Through hole angled socket strip, 2x22, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Vertical +Through hole straight socket strip, 2x22, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Horizontal +Through hole angled socket strip, 2x23, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Vertical +Through hole straight socket strip, 2x23, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Horizontal +Through hole angled socket strip, 2x24, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Vertical +Through hole straight socket strip, 2x24, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Horizontal +Through hole angled socket strip, 2x25, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Vertical +Through hole straight socket strip, 2x25, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Horizontal +Through hole angled socket strip, 2x26, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Vertical +Through hole straight socket strip, 2x26, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Horizontal +Through hole angled socket strip, 2x27, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Vertical +Through hole straight socket strip, 2x27, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Horizontal +Through hole angled socket strip, 2x28, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Vertical +Through hole straight socket strip, 2x28, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Horizontal +Through hole angled socket strip, 2x29, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Vertical +Through hole straight socket strip, 2x29, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Horizontal +Through hole angled socket strip, 2x30, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Vertical +Through hole straight socket strip, 2x30, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Horizontal +Through hole angled socket strip, 2x31, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Vertical +Through hole straight socket strip, 2x31, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Horizontal +Through hole angled socket strip, 2x32, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Vertical +Through hole straight socket strip, 2x32, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Horizontal +Through hole angled socket strip, 2x33, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Vertical +Through hole straight socket strip, 2x33, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Horizontal +Through hole angled socket strip, 2x34, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Vertical +Through hole straight socket strip, 2x34, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Horizontal +Through hole angled socket strip, 2x35, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Vertical +Through hole straight socket strip, 2x35, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Horizontal +Through hole angled socket strip, 2x36, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Vertical +Through hole straight socket strip, 2x36, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Horizontal +Through hole angled socket strip, 2x37, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Vertical +Through hole straight socket strip, 2x37, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Horizontal +Through hole angled socket strip, 2x38, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Vertical +Through hole straight socket strip, 2x38, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Horizontal +Through hole angled socket strip, 2x39, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Vertical +Through hole straight socket strip, 2x39, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Horizontal +Through hole angled socket strip, 2x40, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Vertical +Through hole straight socket strip, 2x40, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Horizontal +Through hole angled socket strip, 1x01, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Vertical +Through hole straight socket strip, 1x01, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Horizontal +Through hole angled socket strip, 1x02, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical +Through hole straight socket strip, 1x02, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Horizontal +Through hole angled socket strip, 1x03, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical +Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Horizontal +Through hole angled socket strip, 1x04, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical +Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Horizontal +Through hole angled socket strip, 1x05, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical +Through hole straight socket strip, 1x05, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Horizontal +Through hole angled socket strip, 1x06, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical +Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Horizontal +Through hole angled socket strip, 1x07, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical +Through hole straight socket strip, 1x07, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Horizontal +Through hole angled socket strip, 1x08, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical +Through hole straight socket strip, 1x08, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Horizontal +Through hole angled socket strip, 1x09, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical +Through hole straight socket strip, 1x09, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Horizontal +Through hole angled socket strip, 1x10, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical +Through hole straight socket strip, 1x10, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Horizontal +Through hole angled socket strip, 1x11, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical +Through hole straight socket strip, 1x11, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Horizontal +Through hole angled socket strip, 1x12, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical +Through hole straight socket strip, 1x12, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Horizontal +Through hole angled socket strip, 1x13, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical +Through hole straight socket strip, 1x13, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Horizontal +Through hole angled socket strip, 1x14, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical +Through hole straight socket strip, 1x14, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Horizontal +Through hole angled socket strip, 1x15, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical +Through hole straight socket strip, 1x15, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Horizontal +Through hole angled socket strip, 1x16, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical +Through hole straight socket strip, 1x16, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Horizontal +Through hole angled socket strip, 1x17, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical +Through hole straight socket strip, 1x17, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Horizontal +Through hole angled socket strip, 1x18, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical +Through hole straight socket strip, 1x18, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Horizontal +Through hole angled socket strip, 1x19, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical +Through hole straight socket strip, 1x19, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Horizontal +Through hole angled socket strip, 1x20, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical +Through hole straight socket strip, 1x20, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Horizontal +Through hole angled socket strip, 1x21, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical +Through hole straight socket strip, 1x21, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Horizontal +Through hole angled socket strip, 1x22, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical +Through hole straight socket strip, 1x22, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Horizontal +Through hole angled socket strip, 1x23, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical +Through hole straight socket strip, 1x23, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Horizontal +Through hole angled socket strip, 1x24, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical +Through hole straight socket strip, 1x24, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Horizontal +Through hole angled socket strip, 1x25, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical +Through hole straight socket strip, 1x25, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Horizontal +Through hole angled socket strip, 1x26, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical +Through hole straight socket strip, 1x26, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Horizontal +Through hole angled socket strip, 1x27, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical +Through hole straight socket strip, 1x27, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Horizontal +Through hole angled socket strip, 1x28, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical +Through hole straight socket strip, 1x28, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Horizontal +Through hole angled socket strip, 1x29, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical +Through hole straight socket strip, 1x29, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Horizontal +Through hole angled socket strip, 1x30, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical +Through hole straight socket strip, 1x30, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Horizontal +Through hole angled socket strip, 1x31, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical +Through hole straight socket strip, 1x31, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Horizontal +Through hole angled socket strip, 1x32, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical +Through hole straight socket strip, 1x32, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Horizontal +Through hole angled socket strip, 1x33, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical +Through hole straight socket strip, 1x33, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Horizontal +Through hole angled socket strip, 1x34, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical +Through hole straight socket strip, 1x34, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Horizontal +Through hole angled socket strip, 1x35, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical +Through hole straight socket strip, 1x35, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Horizontal +Through hole angled socket strip, 1x36, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical +Through hole straight socket strip, 1x36, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Horizontal +Through hole angled socket strip, 1x37, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical +Through hole straight socket strip, 1x37, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Horizontal +Through hole angled socket strip, 1x38, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical +Through hole straight socket strip, 1x38, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Horizontal +Through hole angled socket strip, 1x39, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical +Through hole straight socket strip, 1x39, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Horizontal +Through hole angled socket strip, 1x40, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical +Through hole straight socket strip, 1x40, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Horizontal +Through hole angled socket strip, 2x01, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical +Through hole straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Horizontal +Through hole angled socket strip, 2x02, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical +Through hole straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Horizontal +Through hole angled socket strip, 2x03, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical +Through hole straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Horizontal +Through hole angled socket strip, 2x04, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical +Through hole straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Horizontal +Through hole angled socket strip, 2x05, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical +Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Horizontal +Through hole angled socket strip, 2x06, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical +Through hole straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Horizontal +Through hole angled socket strip, 2x07, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical +Through hole straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Horizontal +Through hole angled socket strip, 2x08, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical +Through hole straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Horizontal +Through hole angled socket strip, 2x09, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical +Through hole straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Horizontal +Through hole angled socket strip, 2x10, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical +Through hole straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Horizontal +Through hole angled socket strip, 2x11, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical +Through hole straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Horizontal +Through hole angled socket strip, 2x12, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical +Through hole straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Horizontal +Through hole angled socket strip, 2x13, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical +Through hole straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Horizontal +Through hole angled socket strip, 2x14, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical +Through hole straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Horizontal +Through hole angled socket strip, 2x15, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical +Through hole straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Horizontal +Through hole angled socket strip, 2x16, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical +Through hole straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Horizontal +Through hole angled socket strip, 2x17, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical +Through hole straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Horizontal +Through hole angled socket strip, 2x18, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical +Through hole straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Horizontal +Through hole angled socket strip, 2x19, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical +Through hole straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Horizontal +Through hole angled socket strip, 2x20, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical +Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Horizontal +Through hole angled socket strip, 2x21, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical +Through hole straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Horizontal +Through hole angled socket strip, 2x22, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical +Through hole straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Horizontal +Through hole angled socket strip, 2x23, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical +Through hole straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Horizontal +Through hole angled socket strip, 2x24, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical +Through hole straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Horizontal +Through hole angled socket strip, 2x25, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical +Through hole straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Horizontal +Through hole angled socket strip, 2x26, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical +Through hole straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Horizontal +Through hole angled socket strip, 2x27, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical +Through hole straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Horizontal +Through hole angled socket strip, 2x28, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical +Through hole straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Horizontal +Through hole angled socket strip, 2x29, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical +Through hole straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Horizontal +Through hole angled socket strip, 2x30, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical +Through hole straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Horizontal +Through hole angled socket strip, 2x31, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical +Through hole straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Horizontal +Through hole angled socket strip, 2x32, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical +Through hole straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Horizontal +Through hole angled socket strip, 2x33, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical +Through hole straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Horizontal +Through hole angled socket strip, 2x34, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical +Through hole straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Horizontal +Through hole angled socket strip, 2x35, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical +Through hole straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Horizontal +Through hole angled socket strip, 2x36, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical +Through hole straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Horizontal +Through hole angled socket strip, 2x37, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical +Through hole straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Horizontal +Through hole angled socket strip, 2x38, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical +Through hole straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Horizontal +Through hole angled socket strip, 2x39, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical +Through hole straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Horizontal +Through hole angled socket strip, 2x40, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical +Through hole straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x40 2.54mm double row +0 +80 +80 +Connector_RJ +RJ9_Evercom_5301-440xxx_Horizontal +Evercom 5301-4P4C RJ9 receptacle, unshielded, https://datasheet.lcsc.com/lcsc/2207051802_EVERCOM-5301-4P4C_C3097715.pdf +RJ9 Connector tab down +0 +4 +4 +Connector_RJ +RJ12_Amphenol_54601-x06_Horizontal +RJ12 6P6C horizontal socket, plastic body, tab down, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/c-bmj-0082.pdf +RJ12 connector +0 +6 +6 +Connector_RJ +RJ14_Connfly_DS1133-S4_Horizontal +RJ14 connector 6P4C Horizontal http://www.connfly.com/userfiles/image/UpLoadFile/File/2012/10/26/DS1133.pdf +RJ14 connector 6P4C Connfly DS1133 +0 +4 +4 +Connector_RJ +RJ25_Wayconn_MJEA-660X1_Horizontal +RJ25 6P6C Socket 90 degrees, https://wayconn.com/wp-content/themes/way/datasheet/MJEA-660X1XXX_RJ25_6P6C_PCB_RA.pdf +RJ12 RJ18 RJ25 jack connector 6P6C +0 +6 +6 +Connector_RJ +RJ45_Abracon_ARJP11A-MA_Horizontal +Shielded RJ45 ethernet connector with transformer and POE, https://abracon.com/Magnetics/lan/ARJP11A.PDF +ethernet 8p8c transformer poe rj45 +0 +15 +14 +Connector_RJ +RJ45_Amphenol_54602-x08_Horizontal +8 Pol Shallow Latch Connector, Modjack, RJ45 (https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/c-bmj-0102.pdf) +RJ45 +0 +8 +8 +Connector_RJ +RJ45_Amphenol_RJHSE538X +Shielded, 2 LED, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X.pdf +RJ45 8p8c ethernet cat5 +0 +14 +13 +Connector_RJ +RJ45_Amphenol_RJHSE538X-02 +Shielded, 2 LED, 2 Ports, http://www.amphenolinfocom.eu/NavData/Drawings/RJHSE-538X-02-REVC.pdf +RJ45 8p8c dual ethernet cat5 +0 +26 +25 +Connector_RJ +RJ45_Amphenol_RJHSE538X-04 +Shielded, LEDs, 4 Ports, https://cdn.amphenol-cs.com/media/wysiwyg/files/drawing/rjhse538x04.pdf +RJ45 8p8c quad ethernet cat5 +0 +52 +49 +Connector_RJ +RJ45_Amphenol_RJHSE5380 +Shielded, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X.pdf +RJ45 8p8c ethernet cat5 +0 +10 +9 +Connector_RJ +RJ45_Amphenol_RJHSE5380-08 +Shielded, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X08.pdf +RJ45 8p8c ethernet cat5 +0 +68 +65 +Connector_RJ +RJ45_Amphenol_RJMG1BD3B8K1ANR +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, AutoMDIX, https://www.amphenol-cs.com/media/wysiwyg/files/drawing/rjmg1bd3b8k1anr.pdf +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_BEL_SS74301-00x_Vertical +https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-74301-001-ss-74301-002-ss-74301-005.pdf +RJ45 Vertical Shield LED Green Yellow +0 +14 +13 +Connector_RJ +RJ45_Bel_SI-60062-F +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, AutoMDIX, https://belfuse.com/resources/drawings/magneticsolutions/dr-mag-si-60062-f.pdf +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_Bel_V895-1001-AW_Vertical +1 Port RJ45 Magjack Vertical Connector SMD 10/100 Base-T, https://www.belfuse.com/resources/drawings/magneticsolutions/dr-mag-v895-1001-aw.pdf +RJ45 Magjack +0 +14 +11 +Connector_RJ +RJ45_Cetus_J1B1211CCD_Horizontal +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, Cetus, used and distributed by WIZnet (https://wizwiki.net/wiki/lib/exe/fetch.php?media=products:wiz550web:wiz550webds_kr:j1b1211ccd.pdf) +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_Connfly_DS1128-09-S8xx-S_Horizontal +1 Port RJ45 8p8c receptacle, shielded, through hole, 2 LEDs, tab up, http://en.connfly.group/static/upload/file//DS1128-09.pdf +RJ45 8p8c ethernet +0 +14 +13 +Connector_RJ +RJ45_HALO_HFJ11-x2450E-LxxRL_Horizontal +Halo FastJack, Shielded, 2 LEDs, https://www.haloelectronics.com/pdf/fastjack-100baset.pdf +10/100 Ethernet RJ45 Tab-Down +0 +14 +13 +Connector_RJ +RJ45_HALO_HFJ11-x2450ERL_Horizontal +Halo FastJack, Shielded, https://www.haloelectronics.com/pdf/fastjack-100baset.pdf +10/100 Ethernet RJ45 Tab-Down +0 +9 +8 +Connector_RJ +RJ45_HALO_HFJ11-x2450HRL_Horizontal +Halo FastJack, Shielded, https://www.haloelectronics.com/pdf/fastjack-100baset.pdf +10/100 Ethernet RJ45 Tab-Down +0 +10 +9 +Connector_RJ +RJ45_Hanrun_HR911105A_Horizontal +1 Port RJ45 8P8C receptacle, shielded, with magnetics, through hole, 2 LEDs, tab down, http://www.hanrun.com/public/upload/down/2020/09-11/cc11be56d66bb63d5f1eeb85492439c0.pdf +RJ45 Magjack ethernet +0 +14 +13 +Connector_RJ +RJ45_Kycon_G7LX-A88S7-BP-xx_Horizontal +10/100Base-T RJ45 ethernet magnetic transformer connector horizontal with green/yellow LEDs http://www.kycon.com/Pub_Eng_Draw/G7LX-A88S7-BP-GY.pdf +RJ45 ethernet magnetic +0 +16 +15 +Connector_RJ +RJ45_Molex_9346520x_Horizontal +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, two LED, tab up +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_Molex_0855135013_Vertical +1 Port, RJ45, Series 85513, vertical, SMD, https://www.molex.com/pdm_docs/sd/855135013_sd.pdf +RJ45 Vertical +0 +9 +9 +Connector_RJ +RJ45_Ninigi_GE +1 port ethernet throughhole connector, https://en.ninigi.com/product/rj45ge/pdf +RJ45 ethernet 8p8c +0 +10 +9 +Connector_RJ +RJ45_OST_PJ012-8P8CX_Vertical +RJ45 vertical connector https://www.on-shore.com/wp-content/uploads/PJ012-8P8CX.pdf +RJ45 PJ012 +0 +8 +8 +Connector_RJ +RJ45_Plug_Metz_AJP92A8813 +plug, ethernet, 8P8C, RJ45 Plug +AJP92A8813 8P8C RJ45 ethernet plug +0 +8 +8 +Connector_RJ +RJ45_Pulse_JK00177NL_Horizontal +10/100/1000 Base-T RJ45 single port with LEDs and 75W POE, https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/J432/doc_part/J432.pdf +RJ45 8p8c ethernet POE +0 +22 +21 +Connector_RJ +RJ45_Pulse_JK0654219NL_Horizontal +10/100/1000 Base-T RJ45 single port with LEDs https://media.digikey.com/pdf/Data%20Sheets/Pulse%20PDFs/JK%20Series.pdf#page=2 +RJ45 8p8c ethernet +0 +18 +17 +Connector_RJ +RJ45_Pulse_JXD6-0001NL_Horizontal +RJ45 ethernet transformer with magnetics (https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/JXD6-0001NL/doc_part/JXD6-0001NL.pdf) +ethernet 8p8c transformer magjack +0 +12 +11 +Connector_RJ +RJ45_UDE_RB1-125B8G1A +1 Port RJ45 Connector Through Hole 10/100/1000 Base-T, https://datasheet.lcsc.com/szlcsc/1901091107_UDE-Corp-RB1-125B8G1A_C363353.pdf#page=3 +RJ45 ethernet +0 +16 +15 +Connector_RJ +RJ45_Wuerth_7499010001A_Horizontal +10/100Base-TX RJ45 ethernet magnetic transformer connector horizontal https://katalog.we-online.de/pbs/datasheet/7499010001A.pdf +RJ45 ethernet magnetic +0 +10 +9 +Connector_RJ +RJ45_Wuerth_7499010121A_Horizontal +10/100Base-TX RJ45 ethernet magnetic transformer connector horizontal with green/orange LEDs https://katalog.we-online.de/pbs/datasheet/7499010121A.pdf +RJ45 ethernet magnetic +0 +14 +13 +Connector_RJ +RJ45_Wuerth_7499111446_Horizontal +LAN-Transformer WE-RJ45LAN 10/100/1000 BaseT +ethernet lan connector +0 +16 +15 +Connector_RJ +RJ45_Wuerth_7499151120_Horizontal +Wuerth 7499151120, LAN-Transformer WE-RJ45LAN 10/100/1000 BaseT, Dual Ethernet Jack (http://katalog.we-online.de/pbs/datasheet/7499151120.pdf) +ethernet lan connector +0 +32 +29 +Connector_RJ +RJ45_Wuerth_74980111211_Horizontal +RJ45 LAN Transformer 10/100BaseT (https://katalog.we-online.de/pbs/datasheet/74980111211.pdf) +lan magnetics transformer +0 +14 +13 +Connector_SATA_SAS +SAS-mini_TEConnectivity_1888174_Vertical +36pin mini SAS connector, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1888174&DocType=Customer+Drawing&DocLang=English +SAS mini connector +0 +44 +44 +Connector_SATA_SAS +SATA_Amphenol_10029364-001LF_Horizontal +https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10029364.pdf +SATA +0 +24 +23 +Connector_Samtec +Samtec_FMC_ASP-134486-01_10x40_P1.27mm_Vertical +http://suddendocs.samtec.com/prints/asp-134486-01-mkt.pdf +FMC HPC +0 +400 +400 +Connector_Samtec +Samtec_FMC_ASP-134602-01_10x40_P1.27mm_Vertical +https://www.marutsu.co.jp/contents/shop/marutsu/ds/asp-134602-01.pdf +FMC HPC +0 +400 +400 +Connector_Samtec +Samtec_FMC_ASP-134604-01_4x40_Vertical +https://suddendocs.samtec.com/prints/asp-134604-01-mkt.pdf +FMC LPC VITA +0 +160 +160 +Connector_Samtec +Samtec_LSHM-105-xx.x-x-DV-N_2x05_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-105-xx.x-x-DV-N, 5 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +10 +10 +Connector_Samtec +Samtec_LSHM-105-xx.x-x-DV-S_2x05-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-105-xx.x-x-DV-S, 5 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +12 +11 +Connector_Samtec +Samtec_LSHM-110-xx.x-x-DV-N_2x10_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-110-xx.x-x-DV-N, 10 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +20 +20 +Connector_Samtec +Samtec_LSHM-110-xx.x-x-DV-S_2x10-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-110-xx.x-x-DV-S, 10 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +22 +21 +Connector_Samtec +Samtec_LSHM-120-xx.x-x-DV-N_2x20_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-120-xx.x-x-DV-N, 20 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +40 +40 +Connector_Samtec +Samtec_LSHM-120-xx.x-x-DV-S_2x20-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-120-xx.x-x-DV-S, 20 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +42 +41 +Connector_Samtec +Samtec_LSHM-130-xx.x-x-DV-N_2x30_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-130-xx.x-x-DV-N, 30 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +60 +60 +Connector_Samtec +Samtec_LSHM-130-xx.x-x-DV-S_2x30-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-130-xx.x-x-DV-S, 30 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +62 +61 +Connector_Samtec +Samtec_LSHM-140-xx.x-x-DV-N_2x40_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-140-xx.x-x-DV-N, 40 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +80 +80 +Connector_Samtec +Samtec_LSHM-140-xx.x-x-DV-S_2x40-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-140-xx.x-x-DV-S, 40 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +82 +81 +Connector_Samtec +Samtec_LSHM-150-xx.x-x-DV-N_2x50_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-150-xx.x-x-DV-N, 50 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +100 +100 +Connector_Samtec +Samtec_LSHM-150-xx.x-x-DV-S_2x50-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-150-xx.x-x-DV-S, 50 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +102 +101 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV-BE-LC_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-BE-LC, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV-BE_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-BE, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV-LC_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-LC, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV-BE-LC_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-BE-LC, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV-BE_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-BE, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV-LC_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-LC, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-A_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-A, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-BE-A_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE-A, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-BE-LC_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-BE_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-LC_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-A_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-A, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-BE-A_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE-A, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-BE-LC_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-BE_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-LC_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-A_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-A, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-BE-A_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE-A, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-BE-LC_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-BE_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-LC_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-A_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-A, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-BE-A_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE-A, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-BE-LC_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-BE_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-LC_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-A_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-A, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-BE-A_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE-A, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-BE-LC_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-BE_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-LC_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-A_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-A, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-BE-A_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE-A, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-BE-LC_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-BE_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-LC_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-A_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-A, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-BE-A_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE-A, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-BE-LC_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-BE_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-LC_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-A_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-A, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-BE-A_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE-A, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-BE-LC_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-BE_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-LC_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-A_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-A, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-BE-A_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE-A, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-BE-LC_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-BE_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-LC_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-A_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-A, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-BE-A_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE-A, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-BE-LC_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-BE_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-LC_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-A_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-A, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-BE-A_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE-A, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-BE-LC_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-BE_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-LC_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-A_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-A, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-BE-A_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE-A, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-BE-LC_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-BE_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-LC_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-A_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-A, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-BE-A_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE-A, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-BE-LC_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-BE_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-LC_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-A_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-A, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-BE-A_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE-A, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-BE-LC_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-BE_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-LC_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-A_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-A, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-BE-A_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE-A, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-BE-LC_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-BE_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-LC_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-A_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-A, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-BE-A_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE-A, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-BE-LC_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-BE_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-LC_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-A_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-A, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-BE-A_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE-A, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-BE-LC_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-BE_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-LC_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-A_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-A, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-BE-A_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE-A, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-BE-LC_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-BE_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-LC_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-A_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-A, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-BE-A_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE-A, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-BE-LC_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-BE_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-LC_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-A_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-A, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-BE-A_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE-A, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-BE-LC_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-BE_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-LC_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-A_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-A, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-BE-A_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE-A, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-BE-LC_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-BE_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-LC_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-A_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-A, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-BE-A_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE-A, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-BE-LC_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-BE_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-LC_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-A_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-A, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-BE-A_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE-A, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-BE-LC_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-BE_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-LC_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-A_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-A, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-BE-A_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE-A, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-BE-LC_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-BE_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-LC_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-A_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-A, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-BE-A_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE-A, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-BE-LC_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-BE_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-LC_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-A_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-A, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-BE-A_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE-A, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-BE-LC_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-BE_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-LC_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-A_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-A, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-BE-A_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE-A, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-BE-LC_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-BE_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-LC_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-A_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-A, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-BE-A_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE-A, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-BE-LC_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-BE_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-LC_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-A_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-A, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-BE-A_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE-A, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-BE-LC_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-BE_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-LC_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-A_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-A, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-BE-A_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE-A, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-BE-LC_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-BE_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-LC_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-A_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-A, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-BE-A_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE-A, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-BE-LC_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-BE_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-LC_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-A_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-A, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-BE-A_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE-A, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-BE-LC_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-BE_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-LC_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-A_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-A, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-BE-A_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE-A, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-BE-LC_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-BE_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-LC_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-A_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-A, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-BE-A_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE-A, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-BE-LC_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-BE_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-LC_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-A_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-A, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-BE-A_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE-A, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-BE-LC_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-BE_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-LC_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-A_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-A, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-BE-A_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE-A, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-BE-LC_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-BE_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-LC_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-A_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-A, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-BE-A_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE-A, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-BE-LC_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-BE_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-LC_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-A_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-A, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-BE-A_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE-A, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-BE-LC_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-BE_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-LC_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-A_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-A, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-BE-A_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE-A, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-BE-LC_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-BE_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-LC_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-A_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-A, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-BE-A_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE-A, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-BE-LC_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-BE_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-LC_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-A_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-A, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-BE-A_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE-A, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-BE-LC_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-BE_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-LC_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-A_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-A, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-BE-A_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE-A, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-BE-LC_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-BE_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-LC_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-A_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-A, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-BE-A_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE-A, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-BE-LC_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-BE_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-LC_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-A_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-A, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-BE-A_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE-A, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-BE-LC_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-BE_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-LC_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-A_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-A, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-BE-A_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE-A, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-BE-LC_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-BE_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-LC_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-A_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-A, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-BE-A_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE-A, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-BE-LC_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-BE_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-LC_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-A_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-A, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-BE-A_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE-A, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-BE-LC_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-BE_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-LC_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_THT +Samtec_HLE-104-02-xx-DV-PE-LC_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-PE-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +8 +8 +Connector_Samtec_HLE_THT +Samtec_HLE-104-02-xx-DV-PE_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-PE (compatible alternatives: HLE-104-02-xx-DV-PE-BE), 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +8 +8 +Connector_Samtec_HLE_THT +Samtec_HLE-104-02-xx-DV-TE_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-TE, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +8 +8 +Connector_Samtec_HLE_THT +Samtec_HLE-105-02-xx-DV-PE-LC_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-PE-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +10 +10 +Connector_Samtec_HLE_THT +Samtec_HLE-105-02-xx-DV-PE_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-PE (compatible alternatives: HLE-105-02-xx-DV-PE-BE), 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +10 +10 +Connector_Samtec_HLE_THT +Samtec_HLE-105-02-xx-DV-TE_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-TE, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +10 +10 +Connector_Samtec_HLE_THT +Samtec_HLE-106-02-xx-DV-PE-LC_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-PE-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +12 +12 +Connector_Samtec_HLE_THT +Samtec_HLE-106-02-xx-DV-PE_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-PE (compatible alternatives: HLE-106-02-xx-DV-PE-BE), 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +12 +12 +Connector_Samtec_HLE_THT +Samtec_HLE-106-02-xx-DV-TE_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-TE, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +12 +12 +Connector_Samtec_HLE_THT +Samtec_HLE-107-02-xx-DV-PE-LC_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-PE-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +14 +14 +Connector_Samtec_HLE_THT +Samtec_HLE-107-02-xx-DV-PE_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-PE (compatible alternatives: HLE-107-02-xx-DV-PE-BE), 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +14 +14 +Connector_Samtec_HLE_THT +Samtec_HLE-107-02-xx-DV-TE_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-TE, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +14 +14 +Connector_Samtec_HLE_THT +Samtec_HLE-108-02-xx-DV-PE-LC_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-PE-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +16 +16 +Connector_Samtec_HLE_THT +Samtec_HLE-108-02-xx-DV-PE_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-PE (compatible alternatives: HLE-108-02-xx-DV-PE-BE), 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +16 +16 +Connector_Samtec_HLE_THT +Samtec_HLE-108-02-xx-DV-TE_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-TE, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +16 +16 +Connector_Samtec_HLE_THT +Samtec_HLE-109-02-xx-DV-PE-LC_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-PE-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +18 +18 +Connector_Samtec_HLE_THT +Samtec_HLE-109-02-xx-DV-PE_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-PE (compatible alternatives: HLE-109-02-xx-DV-PE-BE), 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +18 +18 +Connector_Samtec_HLE_THT +Samtec_HLE-109-02-xx-DV-TE_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-TE, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +18 +18 +Connector_Samtec_HLE_THT +Samtec_HLE-110-02-xx-DV-PE-LC_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-PE-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +20 +20 +Connector_Samtec_HLE_THT +Samtec_HLE-110-02-xx-DV-PE_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-PE (compatible alternatives: HLE-110-02-xx-DV-PE-BE), 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +20 +20 +Connector_Samtec_HLE_THT +Samtec_HLE-110-02-xx-DV-TE_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-TE, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +20 +20 +Connector_Samtec_HLE_THT +Samtec_HLE-111-02-xx-DV-PE-LC_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-PE-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +22 +22 +Connector_Samtec_HLE_THT +Samtec_HLE-111-02-xx-DV-PE_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-PE (compatible alternatives: HLE-111-02-xx-DV-PE-BE), 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +22 +22 +Connector_Samtec_HLE_THT +Samtec_HLE-111-02-xx-DV-TE_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-TE, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +22 +22 +Connector_Samtec_HLE_THT +Samtec_HLE-112-02-xx-DV-PE-LC_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-PE-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +24 +24 +Connector_Samtec_HLE_THT +Samtec_HLE-112-02-xx-DV-PE_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-PE (compatible alternatives: HLE-112-02-xx-DV-PE-BE), 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +24 +24 +Connector_Samtec_HLE_THT +Samtec_HLE-112-02-xx-DV-TE_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-TE, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +24 +24 +Connector_Samtec_HLE_THT +Samtec_HLE-113-02-xx-DV-PE-LC_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-PE-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +26 +26 +Connector_Samtec_HLE_THT +Samtec_HLE-113-02-xx-DV-PE_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-PE (compatible alternatives: HLE-113-02-xx-DV-PE-BE), 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +26 +26 +Connector_Samtec_HLE_THT +Samtec_HLE-113-02-xx-DV-TE_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-TE, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +26 +26 +Connector_Samtec_HLE_THT +Samtec_HLE-114-02-xx-DV-PE-LC_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-PE-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +28 +28 +Connector_Samtec_HLE_THT +Samtec_HLE-114-02-xx-DV-PE_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-PE (compatible alternatives: HLE-114-02-xx-DV-PE-BE), 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +28 +28 +Connector_Samtec_HLE_THT +Samtec_HLE-114-02-xx-DV-TE_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-TE, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +28 +28 +Connector_Samtec_HLE_THT +Samtec_HLE-115-02-xx-DV-PE-LC_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-PE-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +30 +30 +Connector_Samtec_HLE_THT +Samtec_HLE-115-02-xx-DV-PE_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-PE (compatible alternatives: HLE-115-02-xx-DV-PE-BE), 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +30 +30 +Connector_Samtec_HLE_THT +Samtec_HLE-115-02-xx-DV-TE_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-TE, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +30 +30 +Connector_Samtec_HLE_THT +Samtec_HLE-116-02-xx-DV-PE-LC_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-PE-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +32 +32 +Connector_Samtec_HLE_THT +Samtec_HLE-116-02-xx-DV-PE_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-PE (compatible alternatives: HLE-116-02-xx-DV-PE-BE), 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +32 +32 +Connector_Samtec_HLE_THT +Samtec_HLE-116-02-xx-DV-TE_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-TE, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +32 +32 +Connector_Samtec_HLE_THT +Samtec_HLE-117-02-xx-DV-PE-LC_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-PE-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +34 +34 +Connector_Samtec_HLE_THT +Samtec_HLE-117-02-xx-DV-PE_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-PE (compatible alternatives: HLE-117-02-xx-DV-PE-BE), 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +34 +34 +Connector_Samtec_HLE_THT +Samtec_HLE-117-02-xx-DV-TE_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-TE, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +34 +34 +Connector_Samtec_HLE_THT +Samtec_HLE-118-02-xx-DV-PE-LC_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-PE-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +36 +36 +Connector_Samtec_HLE_THT +Samtec_HLE-118-02-xx-DV-PE_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-PE (compatible alternatives: HLE-118-02-xx-DV-PE-BE), 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +36 +36 +Connector_Samtec_HLE_THT +Samtec_HLE-118-02-xx-DV-TE_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-TE, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +36 +36 +Connector_Samtec_HLE_THT +Samtec_HLE-119-02-xx-DV-PE-LC_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-PE-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +38 +38 +Connector_Samtec_HLE_THT +Samtec_HLE-119-02-xx-DV-PE_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-PE (compatible alternatives: HLE-119-02-xx-DV-PE-BE), 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +38 +38 +Connector_Samtec_HLE_THT +Samtec_HLE-119-02-xx-DV-TE_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-TE, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +38 +38 +Connector_Samtec_HLE_THT +Samtec_HLE-120-02-xx-DV-PE-LC_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-PE-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +40 +40 +Connector_Samtec_HLE_THT +Samtec_HLE-120-02-xx-DV-PE_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-PE (compatible alternatives: HLE-120-02-xx-DV-PE-BE), 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +40 +40 +Connector_Samtec_HLE_THT +Samtec_HLE-120-02-xx-DV-TE_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-TE, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +40 +40 +Connector_Samtec_HLE_THT +Samtec_HLE-121-02-xx-DV-PE-LC_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-PE-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +42 +42 +Connector_Samtec_HLE_THT +Samtec_HLE-121-02-xx-DV-PE_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-PE (compatible alternatives: HLE-121-02-xx-DV-PE-BE), 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +42 +42 +Connector_Samtec_HLE_THT +Samtec_HLE-121-02-xx-DV-TE_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-TE, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +42 +42 +Connector_Samtec_HLE_THT +Samtec_HLE-122-02-xx-DV-PE-LC_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-PE-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +44 +44 +Connector_Samtec_HLE_THT +Samtec_HLE-122-02-xx-DV-PE_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-PE (compatible alternatives: HLE-122-02-xx-DV-PE-BE), 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +44 +44 +Connector_Samtec_HLE_THT +Samtec_HLE-122-02-xx-DV-TE_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-TE, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +44 +44 +Connector_Samtec_HLE_THT +Samtec_HLE-123-02-xx-DV-PE-LC_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-PE-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +46 +46 +Connector_Samtec_HLE_THT +Samtec_HLE-123-02-xx-DV-PE_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-PE (compatible alternatives: HLE-123-02-xx-DV-PE-BE), 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +46 +46 +Connector_Samtec_HLE_THT +Samtec_HLE-123-02-xx-DV-TE_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-TE, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +46 +46 +Connector_Samtec_HLE_THT +Samtec_HLE-124-02-xx-DV-PE-LC_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-PE-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +48 +48 +Connector_Samtec_HLE_THT +Samtec_HLE-124-02-xx-DV-PE_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-PE (compatible alternatives: HLE-124-02-xx-DV-PE-BE), 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +48 +48 +Connector_Samtec_HLE_THT +Samtec_HLE-124-02-xx-DV-TE_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-TE, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +48 +48 +Connector_Samtec_HLE_THT +Samtec_HLE-125-02-xx-DV-PE-LC_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-PE-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +50 +50 +Connector_Samtec_HLE_THT +Samtec_HLE-125-02-xx-DV-PE_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-PE (compatible alternatives: HLE-125-02-xx-DV-PE-BE), 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +50 +50 +Connector_Samtec_HLE_THT +Samtec_HLE-125-02-xx-DV-TE_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-TE, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +50 +50 +Connector_Samtec_HLE_THT +Samtec_HLE-126-02-xx-DV-PE-LC_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-PE-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +52 +52 +Connector_Samtec_HLE_THT +Samtec_HLE-126-02-xx-DV-PE_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-PE (compatible alternatives: HLE-126-02-xx-DV-PE-BE), 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +52 +52 +Connector_Samtec_HLE_THT +Samtec_HLE-126-02-xx-DV-TE_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-TE, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +52 +52 +Connector_Samtec_HLE_THT +Samtec_HLE-127-02-xx-DV-PE-LC_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-PE-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +54 +54 +Connector_Samtec_HLE_THT +Samtec_HLE-127-02-xx-DV-PE_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-PE (compatible alternatives: HLE-127-02-xx-DV-PE-BE), 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +54 +54 +Connector_Samtec_HLE_THT +Samtec_HLE-127-02-xx-DV-TE_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-TE, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +54 +54 +Connector_Samtec_HLE_THT +Samtec_HLE-128-02-xx-DV-PE-LC_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-PE-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +56 +56 +Connector_Samtec_HLE_THT +Samtec_HLE-128-02-xx-DV-PE_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-PE (compatible alternatives: HLE-128-02-xx-DV-PE-BE), 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +56 +56 +Connector_Samtec_HLE_THT +Samtec_HLE-128-02-xx-DV-TE_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-TE, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +56 +56 +Connector_Samtec_HLE_THT +Samtec_HLE-129-02-xx-DV-PE-LC_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-PE-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +58 +58 +Connector_Samtec_HLE_THT +Samtec_HLE-129-02-xx-DV-PE_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-PE (compatible alternatives: HLE-129-02-xx-DV-PE-BE), 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +58 +58 +Connector_Samtec_HLE_THT +Samtec_HLE-129-02-xx-DV-TE_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-TE, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +58 +58 +Connector_Samtec_HLE_THT +Samtec_HLE-130-02-xx-DV-PE-LC_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-PE-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +60 +60 +Connector_Samtec_HLE_THT +Samtec_HLE-130-02-xx-DV-PE_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-PE (compatible alternatives: HLE-130-02-xx-DV-PE-BE), 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +60 +60 +Connector_Samtec_HLE_THT +Samtec_HLE-130-02-xx-DV-TE_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-TE, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +60 +60 +Connector_Samtec_HLE_THT +Samtec_HLE-131-02-xx-DV-PE-LC_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-PE-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +62 +62 +Connector_Samtec_HLE_THT +Samtec_HLE-131-02-xx-DV-PE_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-PE (compatible alternatives: HLE-131-02-xx-DV-PE-BE), 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +62 +62 +Connector_Samtec_HLE_THT +Samtec_HLE-131-02-xx-DV-TE_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-TE, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +62 +62 +Connector_Samtec_HLE_THT +Samtec_HLE-132-02-xx-DV-PE-LC_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-PE-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +64 +64 +Connector_Samtec_HLE_THT +Samtec_HLE-132-02-xx-DV-PE_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-PE (compatible alternatives: HLE-132-02-xx-DV-PE-BE), 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +64 +64 +Connector_Samtec_HLE_THT +Samtec_HLE-132-02-xx-DV-TE_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-TE, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +64 +64 +Connector_Samtec_HLE_THT +Samtec_HLE-133-02-xx-DV-PE-LC_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-PE-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +66 +66 +Connector_Samtec_HLE_THT +Samtec_HLE-133-02-xx-DV-PE_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-PE (compatible alternatives: HLE-133-02-xx-DV-PE-BE), 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +66 +66 +Connector_Samtec_HLE_THT +Samtec_HLE-133-02-xx-DV-TE_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-TE, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +66 +66 +Connector_Samtec_HLE_THT +Samtec_HLE-134-02-xx-DV-PE-LC_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-PE-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +68 +68 +Connector_Samtec_HLE_THT +Samtec_HLE-134-02-xx-DV-PE_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-PE (compatible alternatives: HLE-134-02-xx-DV-PE-BE), 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +68 +68 +Connector_Samtec_HLE_THT +Samtec_HLE-134-02-xx-DV-TE_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-TE, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +68 +68 +Connector_Samtec_HLE_THT +Samtec_HLE-135-02-xx-DV-PE-LC_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-PE-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +70 +70 +Connector_Samtec_HLE_THT +Samtec_HLE-135-02-xx-DV-PE_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-PE (compatible alternatives: HLE-135-02-xx-DV-PE-BE), 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +70 +70 +Connector_Samtec_HLE_THT +Samtec_HLE-135-02-xx-DV-TE_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-TE, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +70 +70 +Connector_Samtec_HLE_THT +Samtec_HLE-136-02-xx-DV-PE-LC_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-PE-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +72 +72 +Connector_Samtec_HLE_THT +Samtec_HLE-136-02-xx-DV-PE_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-PE (compatible alternatives: HLE-136-02-xx-DV-PE-BE), 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +72 +72 +Connector_Samtec_HLE_THT +Samtec_HLE-136-02-xx-DV-TE_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-TE, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +72 +72 +Connector_Samtec_HLE_THT +Samtec_HLE-137-02-xx-DV-PE-LC_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-PE-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +74 +74 +Connector_Samtec_HLE_THT +Samtec_HLE-137-02-xx-DV-PE_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-PE (compatible alternatives: HLE-137-02-xx-DV-PE-BE), 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +74 +74 +Connector_Samtec_HLE_THT +Samtec_HLE-137-02-xx-DV-TE_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-TE, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +74 +74 +Connector_Samtec_HLE_THT +Samtec_HLE-138-02-xx-DV-PE-LC_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-PE-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +76 +76 +Connector_Samtec_HLE_THT +Samtec_HLE-138-02-xx-DV-PE_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-PE (compatible alternatives: HLE-138-02-xx-DV-PE-BE), 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +76 +76 +Connector_Samtec_HLE_THT +Samtec_HLE-138-02-xx-DV-TE_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-TE, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +76 +76 +Connector_Samtec_HLE_THT +Samtec_HLE-139-02-xx-DV-PE-LC_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-PE-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +78 +78 +Connector_Samtec_HLE_THT +Samtec_HLE-139-02-xx-DV-PE_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-PE (compatible alternatives: HLE-139-02-xx-DV-PE-BE), 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +78 +78 +Connector_Samtec_HLE_THT +Samtec_HLE-139-02-xx-DV-TE_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-TE, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +78 +78 +Connector_Samtec_HLE_THT +Samtec_HLE-140-02-xx-DV-PE-LC_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-PE-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +80 +80 +Connector_Samtec_HLE_THT +Samtec_HLE-140-02-xx-DV-PE_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-PE (compatible alternatives: HLE-140-02-xx-DV-PE-BE), 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +80 +80 +Connector_Samtec_HLE_THT +Samtec_HLE-140-02-xx-DV-TE_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-TE, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +80 +80 +Connector_Samtec_HLE_THT +Samtec_HLE-141-02-xx-DV-PE-LC_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-PE-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +82 +82 +Connector_Samtec_HLE_THT +Samtec_HLE-141-02-xx-DV-PE_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-PE (compatible alternatives: HLE-141-02-xx-DV-PE-BE), 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +82 +82 +Connector_Samtec_HLE_THT +Samtec_HLE-141-02-xx-DV-TE_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-TE, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +82 +82 +Connector_Samtec_HLE_THT +Samtec_HLE-142-02-xx-DV-PE-LC_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-PE-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +84 +84 +Connector_Samtec_HLE_THT +Samtec_HLE-142-02-xx-DV-PE_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-PE (compatible alternatives: HLE-142-02-xx-DV-PE-BE), 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +84 +84 +Connector_Samtec_HLE_THT +Samtec_HLE-142-02-xx-DV-TE_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-TE, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +84 +84 +Connector_Samtec_HLE_THT +Samtec_HLE-143-02-xx-DV-PE-LC_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-PE-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +86 +86 +Connector_Samtec_HLE_THT +Samtec_HLE-143-02-xx-DV-PE_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-PE (compatible alternatives: HLE-143-02-xx-DV-PE-BE), 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +86 +86 +Connector_Samtec_HLE_THT +Samtec_HLE-143-02-xx-DV-TE_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-TE, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +86 +86 +Connector_Samtec_HLE_THT +Samtec_HLE-144-02-xx-DV-PE-LC_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-PE-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +88 +88 +Connector_Samtec_HLE_THT +Samtec_HLE-144-02-xx-DV-PE_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-PE (compatible alternatives: HLE-144-02-xx-DV-PE-BE), 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +88 +88 +Connector_Samtec_HLE_THT +Samtec_HLE-144-02-xx-DV-TE_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-TE, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +88 +88 +Connector_Samtec_HLE_THT +Samtec_HLE-145-02-xx-DV-PE-LC_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-PE-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +90 +90 +Connector_Samtec_HLE_THT +Samtec_HLE-145-02-xx-DV-PE_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-PE (compatible alternatives: HLE-145-02-xx-DV-PE-BE), 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +90 +90 +Connector_Samtec_HLE_THT +Samtec_HLE-145-02-xx-DV-TE_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-TE, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +90 +90 +Connector_Samtec_HLE_THT +Samtec_HLE-146-02-xx-DV-PE-LC_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-PE-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +92 +92 +Connector_Samtec_HLE_THT +Samtec_HLE-146-02-xx-DV-PE_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-PE (compatible alternatives: HLE-146-02-xx-DV-PE-BE), 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +92 +92 +Connector_Samtec_HLE_THT +Samtec_HLE-146-02-xx-DV-TE_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-TE, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +92 +92 +Connector_Samtec_HLE_THT +Samtec_HLE-147-02-xx-DV-PE-LC_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-PE-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +94 +94 +Connector_Samtec_HLE_THT +Samtec_HLE-147-02-xx-DV-PE_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-PE (compatible alternatives: HLE-147-02-xx-DV-PE-BE), 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +94 +94 +Connector_Samtec_HLE_THT +Samtec_HLE-147-02-xx-DV-TE_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-TE, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +94 +94 +Connector_Samtec_HLE_THT +Samtec_HLE-148-02-xx-DV-PE-LC_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-PE-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +96 +96 +Connector_Samtec_HLE_THT +Samtec_HLE-148-02-xx-DV-PE_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-PE (compatible alternatives: HLE-148-02-xx-DV-PE-BE), 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +96 +96 +Connector_Samtec_HLE_THT +Samtec_HLE-148-02-xx-DV-TE_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-TE, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +96 +96 +Connector_Samtec_HLE_THT +Samtec_HLE-149-02-xx-DV-PE-LC_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-PE-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +98 +98 +Connector_Samtec_HLE_THT +Samtec_HLE-149-02-xx-DV-PE_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-PE (compatible alternatives: HLE-149-02-xx-DV-PE-BE), 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +98 +98 +Connector_Samtec_HLE_THT +Samtec_HLE-149-02-xx-DV-TE_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-TE, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +98 +98 +Connector_Samtec_HLE_THT +Samtec_HLE-150-02-xx-DV-PE-LC_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-PE-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +100 +100 +Connector_Samtec_HLE_THT +Samtec_HLE-150-02-xx-DV-PE_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-PE (compatible alternatives: HLE-150-02-xx-DV-PE-BE), 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +100 +100 +Connector_Samtec_HLE_THT +Samtec_HLE-150-02-xx-DV-TE_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-TE, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +100 +100 +Connector_Samtec_HPM_THT +Samtec_HPM-01-01-x-S_Straight_1x01_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x01, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x01 5.08mm single row +0 +1 +1 +Connector_Samtec_HPM_THT +Samtec_HPM-01-05-x-S_Straight_1x01_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x01, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x01 5.08mm single row +0 +1 +1 +Connector_Samtec_HPM_THT +Samtec_HPM-02-01-x-S_Straight_1x02_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x02, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x02 5.08mm single row +0 +2 +2 +Connector_Samtec_HPM_THT +Samtec_HPM-02-05-x-S_Straight_1x02_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x02, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x02 5.08mm single row +0 +2 +2 +Connector_Samtec_HPM_THT +Samtec_HPM-03-01-x-S_Straight_1x03_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x03, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x03 5.08mm single row +0 +3 +3 +Connector_Samtec_HPM_THT +Samtec_HPM-03-05-x-S_Straight_1x03_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x03, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x03 5.08mm single row +0 +3 +3 +Connector_Samtec_HPM_THT +Samtec_HPM-04-01-x-S_Straight_1x04_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x04, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x04 5.08mm single row +0 +4 +4 +Connector_Samtec_HPM_THT +Samtec_HPM-04-05-x-S_Straight_1x04_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x04, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x04 5.08mm single row +0 +4 +4 +Connector_Samtec_HPM_THT +Samtec_HPM-05-01-x-S_Straight_1x05_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x05, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x05 5.08mm single row +0 +5 +5 +Connector_Samtec_HPM_THT +Samtec_HPM-05-05-x-S_Straight_1x05_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x05, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x05 5.08mm single row +0 +5 +5 +Connector_Samtec_HPM_THT +Samtec_HPM-06-01-x-S_Straight_1x06_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x06, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x06 5.08mm single row +0 +6 +6 +Connector_Samtec_HPM_THT +Samtec_HPM-06-05-x-S_Straight_1x06_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x06, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x06 5.08mm single row +0 +6 +6 +Connector_Samtec_HPM_THT +Samtec_HPM-07-01-x-S_Straight_1x07_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x07, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x07 5.08mm single row +0 +7 +7 +Connector_Samtec_HPM_THT +Samtec_HPM-07-05-x-S_Straight_1x07_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x07, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x07 5.08mm single row +0 +7 +7 +Connector_Samtec_HPM_THT +Samtec_HPM-08-01-x-S_Straight_1x08_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x08, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x08 5.08mm single row +0 +8 +8 +Connector_Samtec_HPM_THT +Samtec_HPM-08-05-x-S_Straight_1x08_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x08, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x08 5.08mm single row +0 +8 +8 +Connector_Samtec_HPM_THT +Samtec_HPM-09-01-x-S_Straight_1x09_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x09, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x09 5.08mm single row +0 +9 +9 +Connector_Samtec_HPM_THT +Samtec_HPM-09-05-x-S_Straight_1x09_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x09, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x09 5.08mm single row +0 +9 +9 +Connector_Samtec_HPM_THT +Samtec_HPM-10-01-x-S_Straight_1x10_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x10, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x10 5.08mm single row +0 +10 +10 +Connector_Samtec_HPM_THT +Samtec_HPM-10-05-x-S_Straight_1x10_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x10, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x10 5.08mm single row +0 +10 +10 +Connector_Samtec_HPM_THT +Samtec_HPM-11-01-x-S_Straight_1x11_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x11, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x11 5.08mm single row +0 +11 +11 +Connector_Samtec_HPM_THT +Samtec_HPM-11-05-x-S_Straight_1x11_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x11, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x11 5.08mm single row +0 +11 +11 +Connector_Samtec_HPM_THT +Samtec_HPM-12-01-x-S_Straight_1x12_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x12, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x12 5.08mm single row +0 +12 +12 +Connector_Samtec_HPM_THT +Samtec_HPM-12-05-x-S_Straight_1x12_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x12, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x12 5.08mm single row +0 +12 +12 +Connector_Samtec_HPM_THT +Samtec_HPM-13-01-x-S_Straight_1x13_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x13, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x13 5.08mm single row +0 +13 +13 +Connector_Samtec_HPM_THT +Samtec_HPM-13-05-x-S_Straight_1x13_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x13, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x13 5.08mm single row +0 +13 +13 +Connector_Samtec_HPM_THT +Samtec_HPM-14-01-x-S_Straight_1x14_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x14, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x14 5.08mm single row +0 +14 +14 +Connector_Samtec_HPM_THT +Samtec_HPM-14-05-x-S_Straight_1x14_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x14, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x14 5.08mm single row +0 +14 +14 +Connector_Samtec_HPM_THT +Samtec_HPM-15-01-x-S_Straight_1x15_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x15, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x15 5.08mm single row +0 +15 +15 +Connector_Samtec_HPM_THT +Samtec_HPM-15-05-x-S_Straight_1x15_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x15, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x15 5.08mm single row +0 +15 +15 +Connector_Samtec_HPM_THT +Samtec_HPM-16-01-x-S_Straight_1x16_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x16, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x16 5.08mm single row +0 +16 +16 +Connector_Samtec_HPM_THT +Samtec_HPM-16-05-x-S_Straight_1x16_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x16, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x16 5.08mm single row +0 +16 +16 +Connector_Samtec_HPM_THT +Samtec_HPM-17-01-x-S_Straight_1x17_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x17, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x17 5.08mm single row +0 +17 +17 +Connector_Samtec_HPM_THT +Samtec_HPM-17-05-x-S_Straight_1x17_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x17, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x17 5.08mm single row +0 +17 +17 +Connector_Samtec_HPM_THT +Samtec_HPM-18-01-x-S_Straight_1x18_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x18, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x18 5.08mm single row +0 +18 +18 +Connector_Samtec_HPM_THT +Samtec_HPM-18-05-x-S_Straight_1x18_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x18, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x18 5.08mm single row +0 +18 +18 +Connector_Samtec_HPM_THT +Samtec_HPM-19-01-x-S_Straight_1x19_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x19, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x19 5.08mm single row +0 +19 +19 +Connector_Samtec_HPM_THT +Samtec_HPM-19-05-x-S_Straight_1x19_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x19, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x19 5.08mm single row +0 +19 +19 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-01-X-DV-A-BL_2x09_P0.8mm_Pol04_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-01-X-DV-A-WT_2x09_P0.8mm_Pol04_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-X-X-DV-BL_2x09_P0.8mm_Edge +Highspeed card edge for PCB's with 2x9 contacts (with board lock option) +conn samtec card-edge high-speed +0 +18 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-X-X-DV_2x09_P0.8mm_Edge +Highspeed card edge for PCB's with 2x9 contacts +conn samtec card-edge high-speed +0 +18 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-X-X-DV_2x09_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x9 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +18 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV-A-BL_2x10_P0.8mm_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +22 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV-A-WT_2x10_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +22 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV-A_2x10_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV_2x10_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-03-X-DV-A-WT_2x10_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +22 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-03-X-DV-A_2x10_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-03-X-DV_2x10_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-X-X-DV-BL_2x10_P0.8mm_Edge +Highspeed card edge for PCB's with 2x10 contacts (with board lock option) +conn samtec card-edge high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-X-X-DV_2x10_P0.8mm_Edge +Highspeed card edge for PCB's with 2x10 contacts +conn samtec card-edge high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-X-X-DV_2x10_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x10 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV-A-BL_2x13_P0.8mm_Pol06_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +28 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV-A-WT_2x13_P0.8mm_Pol06_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +28 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV-A_2x13_P0.8mm_Pol06_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV_2x13_P0.8mm_Pol06_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-X-X-DV-BL_2x13_P0.8mm_Edge +Highspeed card edge for PCB's with 2x13 contacts (with board lock option) +conn samtec card-edge high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-X-X-DV_2x13_P0.8mm_Edge +Highspeed card edge for PCB's with 2x13 contacts +conn samtec card-edge high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-X-X-DV_2x13_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x13 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV-A-BL_2x20_P0.8mm_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +42 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV-A-WT_2x20_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +42 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV-A_2x20_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV_2x20_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-03-X-DV-A-WT_2x20_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +42 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-03-X-DV-A_2x20_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-03-X-DV_2x20_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-X-X-DV-BL_2x20_P0.8mm_Edge +Highspeed card edge for PCB's with 2x20 contacts (with board lock option) +conn samtec card-edge high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-X-X-DV_2x20_P0.8mm_Edge +Highspeed card edge for PCB's with 2x20 contacts +conn samtec card-edge high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-X-X-DV_2x20_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x20 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV-A-BL_2x25_P0.8mm_Pol06_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +52 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV-A-WT_2x25_P0.8mm_Pol06_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +52 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV-A_2x25_P0.8mm_Pol06_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV_2x25_P0.8mm_Pol06_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-X-X-DV-BL_2x25_P0.8mm_Edge +Highspeed card edge for PCB's with 2x25 contacts (with board lock option) +conn samtec card-edge high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-X-X-DV_2x25_P0.8mm_Edge +Highspeed card edge for PCB's with 2x25 contacts +conn samtec card-edge high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-X-X-DV_2x25_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x25 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV-A-BL_2x30_P0.8mm_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +62 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV-A-WT_2x30_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +62 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV-A_2x30_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV_2x30_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-03-X-DV-A-WT_2x30_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +62 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-03-X-DV-A_2x30_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-03-X-DV_2x30_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-X-X-DV-BL_2x30_P0.8mm_Edge +Highspeed card edge for PCB's with 2x30 contacts (with board lock option) +conn samtec card-edge high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-X-X-DV_2x30_P0.8mm_Edge +Highspeed card edge for PCB's with 2x30 contacts +conn samtec card-edge high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-X-X-DV_2x30_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x30 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV-A-BL_2x37_P0.8mm_Pol21_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +76 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV-A-WT_2x37_P0.8mm_Pol21_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +76 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV-A_2x37_P0.8mm_Pol21_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV_2x37_P0.8mm_Pol21_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-X-X-DV-BL_2x37_P0.8mm_Edge +Highspeed card edge for PCB's with 2x37 contacts (with board lock option) +conn samtec card-edge high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-X-X-DV_2x37_P0.8mm_Edge +Highspeed card edge for PCB's with 2x37 contacts +conn samtec card-edge high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-X-X-DV_2x37_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x37 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV-A-BL_2x40_P0.8mm_Pol22_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +82 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV-A-WT_2x40_P0.8mm_Pol22_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +82 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV-A_2x40_P0.8mm_Pol22_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV_2x40_P0.8mm_Pol22_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-03-X-DV-A-WT_2x40_P0.8mm_Pol22_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +82 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-03-X-DV-A_2x40_P0.8mm_Pol22_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-03-X-DV_2x40_P0.8mm_Pol22_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-X-X-DV-BL_2x40_P0.8mm_Edge +Highspeed card edge for PCB's with 2x40 contacts (with board lock option) +conn samtec card-edge high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-X-X-DV_2x40_P0.8mm_Edge +Highspeed card edge for PCB's with 2x40 contacts +conn samtec card-edge high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-X-X-DV_2x40_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x40 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV-A-BL_2x49_P0.8mm_Pol27_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV-A-WT_2x49_P0.8mm_Pol27_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV-A_2x49_P0.8mm_Pol27_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV_2x49_P0.8mm_Pol27_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-X-X-DV-BL_2x49_P0.8mm_Edge +Highspeed card edge for PCB's with 2x49 contacts (with board lock option) +conn samtec card-edge high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-X-X-DV_2x49_P0.8mm_Edge +Highspeed card edge for PCB's with 2x49 contacts +conn samtec card-edge high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-X-X-DV_2x49_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x49 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV-A-BL_2x50_P0.8mm_Pol27_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +102 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV-A-WT_2x50_P0.8mm_Pol27_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +102 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV-A_2x50_P0.8mm_Pol27_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV_2x50_P0.8mm_Pol27_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-03-X-DV-A-WT_2x50_P0.8mm_Pol27_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +102 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-03-X-DV-A_2x50_P0.8mm_Pol27_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-03-X-DV_2x50_P0.8mm_Pol27_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-X-X-DV-BL_2x50_P0.8mm_Edge +Highspeed card edge for PCB's with 2x50 contacts (with board lock option) +conn samtec card-edge high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-X-X-DV_2x50_P0.8mm_Edge +Highspeed card edge for PCB's with 2x50 contacts +conn samtec card-edge high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-X-X-DV_2x50_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x50 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV-A-BL_2x60_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +122 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV-A-WT_2x60_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +122 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV-A_2x60_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV_2x60_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-03-X-DV-A-WT_2x60_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +122 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-03-X-DV-A_2x60_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-03-X-DV_2x60_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-X-X-DV-BL_2x60_P0.8mm_Edge +Highspeed card edge for PCB's with 2x60 contacts (with board lock option) +conn samtec card-edge high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-X-X-DV_2x60_P0.8mm_Edge +Highspeed card edge for PCB's with 2x60 contacts +conn samtec card-edge high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-X-X-DV_2x60_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x60 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV-A-BL_2x70_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +142 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV-A-WT_2x70_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +142 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV-A_2x70_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV_2x70_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-03-X-DV-A-WT_2x70_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +142 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-03-X-DV-A_2x70_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-03-X-DV_2x70_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-X-X-DV-BL_2x70_P0.8mm_Edge +Highspeed card edge for PCB's with 2x70 contacts (with board lock option) +conn samtec card-edge high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-X-X-DV_2x70_P0.8mm_Edge +Highspeed card edge for PCB's with 2x70 contacts +conn samtec card-edge high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-X-X-DV_2x70_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x70 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV-A-BL_2x80_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +162 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV-A-WT_2x80_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +162 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV-A_2x80_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV_2x80_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-03-X-DV-A-WT_2x80_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +162 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-03-X-DV-A_2x80_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-03-X-DV_2x80_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-X-X-DV-BL_2x80_P0.8mm_Edge +Highspeed card edge for PCB's with 2x80 contacts (with board lock option) +conn samtec card-edge high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-X-X-DV_2x80_P0.8mm_Edge +Highspeed card edge for PCB's with 2x80 contacts +conn samtec card-edge high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-X-X-DV_2x80_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x80 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV-A-BL_2x90_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +182 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV-A-WT_2x90_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +182 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV-A_2x90_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV_2x90_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-03-X-DV-A-WT_2x90_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +182 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-03-X-DV-A_2x90_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-03-X-DV_2x90_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-X-X-DV-BL_2x90_P0.8mm_Edge +Highspeed card edge for PCB's with 2x90 contacts (with board lock option) +conn samtec card-edge high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-X-X-DV_2x90_P0.8mm_Edge +Highspeed card edge for PCB's with 2x90 contacts +conn samtec card-edge high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-X-X-DV_2x90_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x90 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV-A-BL_2x100_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +202 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV-A-WT_2x100_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +202 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV-A_2x100_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV_2x100_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-03-X-DV-A-WT_2x100_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +202 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-03-X-DV-A_2x100_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-03-X-DV_2x100_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-X-X-DV-BL_2x100_P0.8mm_Edge +Highspeed card edge for PCB's with 2x100 contacts (with board lock option) +conn samtec card-edge high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-X-X-DV_2x100_P0.8mm_Edge +Highspeed card edge for PCB's with 2x100 contacts +conn samtec card-edge high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-X-X-DV_2x100_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x100 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +200 +200 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-S-RA_1x02-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-S-V_1x02-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-SH-L_1x02-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-SV-L_1x02-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-S-RA_1x03-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-S-V_1x03-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-SH-L_1x03-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-SV-L_1x03-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-S-RA_1x04-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-S-V_1x04-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-SH-L_1x04-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-SV-L_1x04-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-S-RA_1x05-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-S-V_1x05-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-SH-L_1x05-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-SV-L_1x05-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-S-RA_1x06-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-S-V_1x06-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-SH-L_1x06-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-SV-L_1x06-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-S-RA_1x07-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-S-V_1x07-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-SH-L_1x07-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-SV-L_1x07-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-S-RA_1x08-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-S-V_1x08-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-SH-L_1x08-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-SV-L_1x08-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-S-RA_1x09-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-S-V_1x09-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-SH-L_1x09-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-SV-L_1x09-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-S-RA_1x10-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-S-V_1x10-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-SH-L_1x10-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-SV-L_1x10-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-S-RA_1x11-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-S-V_1x11-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-SH-L_1x11-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-SV-L_1x11-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-S-RA_1x12-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-S-V_1x12-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-SH-L_1x12-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-SV-L_1x12-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-S-RA_1x13-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-S-V_1x13-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-SH-L_1x13-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-SV-L_1x13-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-S-RA_1x14-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-S-V_1x14-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-SH-L_1x14-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-SV-L_1x14-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-S-RA_1x15-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-S-V_1x15-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-SH-L_1x15-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-SV-L_1x15-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-S-RA_1x16-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-S-V_1x16-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-SH-L_1x16-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-SV-L_1x16-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-S-RA_1x17-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-S-V_1x17-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-SH-L_1x17-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-SV-L_1x17-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-S-RA_1x18-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-S-V_1x18-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-SH-L_1x18-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-SV-L_1x18-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-S-RA_1x19-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-S-V_1x19-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-SH-L_1x19-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-SV-L_1x19-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-S-RA_1x20-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-S-V_1x20-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-SH-L_1x20-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-SV-L_1x20-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroPower +Samtec_UMPS-02-XX.X-X-V-S-W_1x02-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +10 +3 +Connector_Samtec_MicroPower +Samtec_UMPS-02-XX.X-X-V-S_1x02_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +2 +2 +Connector_Samtec_MicroPower +Samtec_UMPS-03-XX.X-X-V-S-W_1x03-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +11 +4 +Connector_Samtec_MicroPower +Samtec_UMPS-03-XX.X-X-V-S_1x03_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +3 +3 +Connector_Samtec_MicroPower +Samtec_UMPS-04-XX.X-X-V-S-W_1x04-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +12 +5 +Connector_Samtec_MicroPower +Samtec_UMPS-04-XX.X-X-V-S_1x04_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +4 +4 +Connector_Samtec_MicroPower +Samtec_UMPS-05-XX.X-X-V-S-W_1x05-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +13 +6 +Connector_Samtec_MicroPower +Samtec_UMPS-05-XX.X-X-V-S_1x05_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +5 +5 +Connector_Samtec_MicroPower +Samtec_UMPS-06-XX.X-X-V-S-W_1x06-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +14 +7 +Connector_Samtec_MicroPower +Samtec_UMPS-06-XX.X-X-V-S_1x06_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +6 +6 +Connector_Samtec_MicroPower +Samtec_UMPS-07-XX.X-X-V-S-W_1x07-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +15 +8 +Connector_Samtec_MicroPower +Samtec_UMPS-07-XX.X-X-V-S_1x07_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +7 +7 +Connector_Samtec_MicroPower +Samtec_UMPS-08-XX.X-X-V-S-W_1x08-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +16 +9 +Connector_Samtec_MicroPower +Samtec_UMPS-08-XX.X-X-V-S_1x08_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +8 +8 +Connector_Samtec_MicroPower +Samtec_UMPS-09-XX.X-X-V-S-W_1x09-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +17 +10 +Connector_Samtec_MicroPower +Samtec_UMPS-09-XX.X-X-V-S_1x09_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +9 +9 +Connector_Samtec_MicroPower +Samtec_UMPS-10-XX.X-X-V-S-W_1x10-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +18 +11 +Connector_Samtec_MicroPower +Samtec_UMPS-10-XX.X-X-V-S_1x10_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +10 +10 +Connector_Samtec_MicroPower +Samtec_UMPT-02-XX.X-X-V-S-W_1x02-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +10 +3 +Connector_Samtec_MicroPower +Samtec_UMPT-02-XX.X-X-V-S_1x02_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +2 +2 +Connector_Samtec_MicroPower +Samtec_UMPT-03-XX.X-X-V-S-W_1x03-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +11 +4 +Connector_Samtec_MicroPower +Samtec_UMPT-03-XX.X-X-V-S_1x03_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +3 +3 +Connector_Samtec_MicroPower +Samtec_UMPT-04-XX.X-X-V-S-W_1x04-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +12 +5 +Connector_Samtec_MicroPower +Samtec_UMPT-04-XX.X-X-V-S_1x04_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +4 +4 +Connector_Samtec_MicroPower +Samtec_UMPT-05-XX.X-X-V-S-W_1x05-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +13 +6 +Connector_Samtec_MicroPower +Samtec_UMPT-05-XX.X-X-V-S_1x05_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +5 +5 +Connector_Samtec_MicroPower +Samtec_UMPT-06-XX.X-X-V-S-W_1x06-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +14 +7 +Connector_Samtec_MicroPower +Samtec_UMPT-06-XX.X-X-V-S_1x06_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +6 +6 +Connector_Samtec_MicroPower +Samtec_UMPT-07-XX.X-X-V-S-W_1x07-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +15 +8 +Connector_Samtec_MicroPower +Samtec_UMPT-07-XX.X-X-V-S_1x07_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +7 +7 +Connector_Samtec_MicroPower +Samtec_UMPT-08-XX.X-X-V-S-W_1x08-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +16 +9 +Connector_Samtec_MicroPower +Samtec_UMPT-08-XX.X-X-V-S_1x08_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +8 +8 +Connector_Samtec_MicroPower +Samtec_UMPT-09-XX.X-X-V-S-W_1x09-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +17 +10 +Connector_Samtec_MicroPower +Samtec_UMPT-09-XX.X-X-V-S_1x09_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +9 +9 +Connector_Samtec_MicroPower +Samtec_UMPT-10-XX.X-X-V-S-W_1x10-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +18 +11 +Connector_Samtec_MicroPower +Samtec_UMPT-10-XX.X-X-V-S_1x10_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +10 +10 +Connector_Stocko +Stocko_MKS_1651-6-0-202_1x2_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +2 +2 +Connector_Stocko +Stocko_MKS_1652-6-0-202_1x2_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +2 +2 +Connector_Stocko +Stocko_MKS_1653-6-0-303_1x3_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +3 +3 +Connector_Stocko +Stocko_MKS_1654-6-0-404_1x4_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +4 +4 +Connector_Stocko +Stocko_MKS_1655-6-0-505_1x5_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +5 +5 +Connector_Stocko +Stocko_MKS_1656-6-0-606_1x6_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +6 +6 +Connector_Stocko +Stocko_MKS_1657-6-0-707_1x7_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +7 +7 +Connector_Stocko +Stocko_MKS_1658-6-0-808_1x8_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +8 +8 +Connector_Stocko +Stocko_MKS_1659-6-0-909_1x9_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +9 +9 +Connector_Stocko +Stocko_MKS_1660-6-0-1010_1x10_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +10 +10 +Connector_Stocko +Stocko_MKS_1661-6-0-1111_1x11_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +11 +11 +Connector_Stocko +Stocko_MKS_1662-6-0-1212_1x12_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +12 +12 +Connector_Stocko +Stocko_MKS_1663-6-0-1313_1x13_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +13 +13 +Connector_Stocko +Stocko_MKS_1664-6-0-1414_1x14_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +14 +14 +Connector_Stocko +Stocko_MKS_1665-6-0-1515_1x15_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +15 +15 +Connector_Stocko +Stocko_MKS_1666-6-0-1616_1x16_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +16 +16 +Connector_Stocko +Stocko_MKS_1667-6-0-1717_1x17_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +17 +17 +Connector_Stocko +Stocko_MKS_1668-6-0-1818_1x18_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +18 +18 +Connector_Stocko +Stocko_MKS_1669-6-0-1919_1x19_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +19 +19 +Connector_Stocko +Stocko_MKS_1670-6-0-2020_1x20_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +20 +20 +Connector_TE-Connectivity +TE_1-826576-3_1x13_P3.96mm_Vertical +TE, 1-826576-3, 13 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +13 +13 +Connector_TE-Connectivity +TE_1-826576-5_1x15_P3.96mm_Vertical +TE, 1-826576-5, 15 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +15 +15 +Connector_TE-Connectivity +TE_1-826576-6_1x16_P3.96mm_Vertical +TE, 1-826576-6, 16 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +16 +16 +Connector_TE-Connectivity +TE_1-826576-7_1x17_P3.96mm_Vertical +TE, 1-826576-7, 17 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +17 +17 +Connector_TE-Connectivity +TE_1-826576-8_1x18_P3.96mm_Vertical +TE, 1-826576-8, 18 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +18 +18 +Connector_TE-Connectivity +TE_2-826576-0_1x20_P3.96mm_Vertical +TE, 2-826576-0, 20 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +20 +20 +Connector_TE-Connectivity +TE_3-826576-6_1x36_P3.96mm_Vertical +TE, 3-826576-6, 36 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +36 +36 +Connector_TE-Connectivity +TE_440054-2_1x02_P2.00mm_Vertical +TE Connectivity, HDI, Wire-to-Board, Fully Shrouded, Vertical Header: https://www.te.com/usa-en/product-440054-2.datasheet.pdf +connector header hdr horizontal vertical shrouded fully-shrounded 440054-2 2-440054-2 4-440054-2 6-440054-2 2-440054-6 4-440054-6 6-440054-6 +0 +2 +2 +Connector_TE-Connectivity +TE_440055-2_1x02_P2.00mm_Horizontal +TE Connectivity, HDI, Wire-to-Board, Fully Shrouded, Header: https://www.te.com/usa-en/product-440055-2.datasheet.pdf +connector header hdr horizontal right-angle shrouded fully-shrounded 440055-2 2-440055-2 4-440055-2 6-440055-2 8-440055-2 +0 +2 +2 +Connector_TE-Connectivity +TE_826576-2_1x02_P3.96mm_Vertical +TE, 826576-2, 2 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +2 +2 +Connector_TE-Connectivity +TE_826576-3_1x03_P3.96mm_Vertical +TE, 826576-3, 3 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +3 +3 +Connector_TE-Connectivity +TE_826576-5_1x05_P3.96mm_Vertical +TE, 826576-5, 5 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +5 +5 +Connector_TE-Connectivity +TE_826576-6_1x06_P3.96mm_Vertical +TE, 826576-6, 6 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +6 +6 +Connector_TE-Connectivity +TE_826576-7_1x07_P3.96mm_Vertical +TE, 826576-7, 7 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +7 +7 +Connector_TE-Connectivity +TE_826576-8_1x08_P3.96mm_Vertical +TE, 826576-8, 8 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +8 +8 +Connector_TE-Connectivity +TE_826576-9_1x09_P3.96mm_Vertical +TE, 826576-9, 9 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +9 +9 +Connector_TE-Connectivity +TE_2834006-1_1x01_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 1-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +2 +1 +Connector_TE-Connectivity +TE_2834006-2_1x02_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 2-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +4 +2 +Connector_TE-Connectivity +TE_2834006-3_1x03_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 3-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +6 +3 +Connector_TE-Connectivity +TE_2834006-4_1x04_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 4-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +8 +4 +Connector_TE-Connectivity +TE_2834006-5_1x05_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 5-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +10 +5 +Connector_TE-Connectivity +TE_5767171-1_2x19_P0.635mm_Vertical +PCB Mount Receptacle, Vertical, Board-to-Board, 38 Position, 24.003mm / .64mm [.945in] Centerline, Header Only, Palladium Nickel (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F5767171%7FB2%7Fpdf%7FEnglish%7FENG_CD_5767171_B2.pdf%7F5767171-1#page=2) +mictor38 receptacle board-to-board +0 +43 +39 +Connector_TE-Connectivity +TE_AMPSEAL_1-776087-x_3Rows_23_P0.4mm_Horizontal +Connector +TE 776087 +0 +23 +23 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770182-x_3x03_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770182-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +9 +9 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770186-x_3x04_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770186-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +12 +12 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770190-x_3x05_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770190-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +15 +15 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770621-x_2x06_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770621-x, 6 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +12 +12 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770858-x_2x05_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770858-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +10 +10 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770866-x_1x02_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770866-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +2 +2 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770870-x_1x03_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770870-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +3 +3 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770874-x_2x02_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770874-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +4 +4 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770875-x_2x03_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770875-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +6 +6 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770966-x_1x02_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770966-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +2 +2 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770967-x_1x03_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770967-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +3 +3 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770968-x_2x02_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770968-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +4 +4 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770969-x_2x03_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770969-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +6 +6 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770970-x_2x04_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770970-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +8 +8 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770971-x_2x05_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770971-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +10 +10 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770972-x_2x06_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770972-x, 6 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +12 +12 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770973-x_2x07_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770973-x, 7 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +14 +14 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770974-x_2x08_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770974-x, 8 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +16 +16 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794067-x_2x07_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794067-x, 7 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +14 +14 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794068-x_2x08_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794068-x, 8 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +16 +16 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794069-x_2x09_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794069-x, 9 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +18 +18 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794070-x_2x10_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794070-x, 10 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +20 +20 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794071-x_2x11_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794071-x, 11 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +22 +22 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794072-x_2x12_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794072-x, 12 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +24 +24 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794073-x_2x04_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794073-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +8 +8 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794105-x_2x09_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794105-x, 9 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +18 +18 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794106-x_2x10_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794106-x, 10 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +20 +20 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794107-x_2x11_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794107-x, 11 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +22 +22 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794108-x_2x12_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794108-x, 12 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +24 +24 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794374-x_1x01_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794374-x, 1 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +1 +1 +Connector_TE-Connectivity +TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F350211%7FU5%7Fpdf%7FEnglish%7FENG_CD_350211_U5.pdf%7F350211-1 +connector TE MATE-N-LOK top entry ATA PATA IDE 5.25 inch floppy drive power +0 +4 +4 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-0_2x05_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 10 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-0 8-215079-10 +0 +10 +10 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-2_2x06_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 12 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-2 8-215079-12 +0 +12 +12 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-4_2x07_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 14 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-4 8-215079-14 +0 +14 +14 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-6_2x08_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 16 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-6 8-215079-16 +0 +16 +16 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-8_2x09_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 18 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-8 8-215079-18 +0 +18 +18 +Connector_TE-Connectivity +TE_Micro-MaTch_2-215079-0_2x10_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 20 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 2-215079-0 9-215079-20 +0 +20 +20 +Connector_TE-Connectivity +TE_Micro-MaTch_215079-4_2x02_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 4 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 215079-4 7-215079-4 +0 +4 +4 +Connector_TE-Connectivity +TE_Micro-MaTch_215079-6_2x03_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 6 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 215079-6 7-215079-6 +0 +6 +6 +Connector_TE-Connectivity +TE_Micro-MaTch_215079-8_2x04_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 8 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 215079-8 7-215079-8 +0 +8 +8 +Connector_TE-Connectivity +TE_T4041037031-000_M8_03_Socket_Straight +Shielded M8 socket 3 ways connector panel, straight and rear mount (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7FT404103010X000%7FA%7Fpdf%7FEnglish%7FENG_CD_T404103010X000_A.pdf%7FT4041037041-000) +three-pin M8 +0 +5 +4 +Connector_TE-Connectivity +TE_T4041037041-000_M8_04_Socket_Straight +Shielded M8 socket 4 ways connector panel, straight and rear mount (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7FT404103010X000%7FA%7Fpdf%7FEnglish%7FENG_CD_T404103010X000_A.pdf%7FT4041037041-000) +four-pin M8 +0 +6 +5 +Connector_USB +USB3_A_Molex_48393-001 +USB 3.0, type A, right angle, http://www.molex.com/pdm_docs/sd/483930003_sd.pdf +USB 3.0 type A right angle +0 +13 +10 +Connector_USB +USB3_A_Molex_48406-0001_Horizontal_Stacked +USB 3.0, type A, right angle, stacked (https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/484/48406/484060001_sd.pdf) +USB 3.0 type A right angle stacked dual +0 +22 +19 +Connector_USB +USB3_A_Plug_Wuerth_692112030100_Horizontal +USB 3.0 Type A SMT Plug, Horizontal, https://www.we-online.com/components/products/datasheet/692112030100.pdf +usb A plug horizontal +0 +11 +10 +Connector_USB +USB3_A_Receptacle_Wuerth_692122030100 +USB 3.0, type A, right angle (https://www.we-online.com/katalog/datasheet/692122030100.pdf) +USB 3.0 type A right angle Würth +0 +11 +10 +Connector_USB +USB3_Micro-B_Connfly_DS1104-01 +Micro USB B receptable with flange, bottom-mount, SMD, right-angle (http://en.connfly.com/static/upload/file/pdf/DS1104-01.pdf) +USB 3.0 Micro B SMD right angle +0 +16 +11 +Connector_USB +USB_A_CNCTech_1001-011-01101_Horizontal +USB type A Plug, Horizontal, http://cnctech.us/pdfs/1001-011-01101.pdf +USB-A +0 +6 +5 +Connector_USB +USB_A_CONNFLY_DS1095-WNR0 +http://www.connfly.com/userfiles/image/UpLoadFile/File/2013/5/6/DS1095.pdf +USB-A receptacle horizontal through-hole +0 +6 +5 +Connector_USB +USB_A_CUI_UJ2-ADH-TH_Horizontal_Stacked +USB-A two stacked horizontal receptacle, through-hole (https://www.cuidevices.com/product/resource/uj2-adh-th.pdf) +USB-A CUI stacked horizontal through-hole +0 +12 +9 +Connector_USB +USB_A_Molex_48037-2200_Horizontal +USB type A Plug, Horizontal, https://www.molex.com/pdm_docs/sd/480372200_sd.pdf +USB-A +0 +6 +5 +Connector_USB +USB_A_Molex_67643_Horizontal +USB type A, Horizontal, https://www.molex.com/pdm_docs/sd/676433910_sd.pdf +USB_A Female Connector receptacle +0 +6 +5 +Connector_USB +USB_A_Molex_105057_Vertical +https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf +USB A Vertical +0 +7 +5 +Connector_USB +USB_A_Receptacle_GCT_USB1046 +GCT USB1046, USB Type A, https://gct.co/files/drawings/usb1046.pdf +USB SMD Type-A Receptacle Right Angle +0 +8 +5 +Connector_USB +USB_A_Stewart_SS-52100-001_Horizontal +USB A connector https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52100-001.pdf +USB_A Female Connector receptacle +0 +6 +5 +Connector_USB +USB_A_TE_292303-7_Horizontal +USB type A, Horizontal, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=292303&DocType=Customer+Drawing&DocLang=English +USB_A Female Connector receptacle +0 +6 +5 +Connector_USB +USB_A_Wuerth_614004134726_Horizontal +USB A connector https://www.we-online.com/catalog/datasheet/614004134726.pdf +USB_A Female Connector receptacle +0 +8 +5 +Connector_USB +USB_A_Wuerth_61400826021_Horizontal_Stacked +Stacked USB A connector http://katalog.we-online.de/em/datasheet/61400826021.pdf +Wuerth stacked USB_A +0 +12 +9 +Connector_USB +USB_B_Amphenol_MUSB-D511_Vertical_Rugged +A,phenol MUSB_D511, USB B female connector, straight, rugged, https://www.amphenolcanada.com/ProductSearch/drawings/AC/MUSBD511XX.pdf +USB_B_MUSB_Straight female connector straight rugged MUSB D511 +0 +6 +5 +Connector_USB +USB_B_Lumberg_2411_02_Horizontal +USB 2.0 receptacle type B, horizontal version, through-hole, https://downloads.lumberg.com/datenblaetter/en/2411_02.pdf +USB B receptacle horizontal through-hole +0 +6 +5 +Connector_USB +USB_B_OST_USB-B1HSxx_Horizontal +USB B receptacle, Horizontal, through-hole, http://www.on-shore.com/wp-content/uploads/2015/09/usb-b1hsxx.pdf +USB-B receptacle horizontal through-hole +0 +6 +5 +Connector_USB +USB_B_TE_5787834_Vertical +http://www.mouser.com/ds/2/418/NG_CD_5787834_A4-669110.pdf +USB_B USB B vertical female connector +0 +6 +5 +Connector_USB +USB_C_Plug_JAE_DX07P024AJ1 +Universal Serial Bus (USB) Shielded I/O Plug, Type C, Right Angle, Surface Mount, https://www.jae.com/en/searchfilter/?topics_keyword=DX07P024AJ1&mainItemSelect=1 +USB Type-C Plug Edge Mount +0 +30 +25 +Connector_USB +USB_C_Plug_Molex_105444 +Universal Serial Bus (USB) Shielded I/O Plug, Type C, Right Angle, Surface Mount, http://www.molex.com/pdm_docs/sd/1054440001_sd.pdf +USB Type-C Plug Edge Mount +0 +24 +23 +Connector_USB +USB_C_Plug_ShenzhenJingTuoJin_918-118A2021Y40002_Vertical +Low-profile vertical USB 2.0 Type C Plug Shenzhen Jing Tuo Jin Electronics Co 918-118A2021Y40002 ( https://datasheet.lcsc.com/lcsc/1912111437_Jing-Extension-of-the-Electronic-Co--918-118A2021Y40002_C399939.pdf ) also compatible with Korean HRO Parts Elec TYPE-C-31-G-06 +type-c usb2 +0 +18 +17 +Connector_USB +USB_C_Receptacle_Amphenol_12401548E4-2A +USB TYPE C, RA RCPT PCB, Hybrid, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401548E4%7e2A +USB C Type-C Receptacle Hybrid +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401548E4-2A_CircularHoles +USB TYPE C, RA RCPT PCB, Hybrid, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401548E4%7e2A +USB C Type-C Receptacle Hybrid +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401610E4-2A +USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401610E4-2A_CircularHoles +USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_CNCTech_C-ARA1-AK51X +USB Type-C 3.0 Receptacle, 24-pin, right angle (source: https://www.cnctech.us/pdfs/C-ARA1-AK512.pdf) +USB C Type-C Receptacle Hybrid CNCTech C-ARA1-AK51X +0 +32 +25 +Connector_USB +USB_C_Receptacle_G-Switch_GT-USB-7010ASV +USB Type C, right-angle, SMT, https://datasheet.lcsc.com/lcsc/2204071530_G-Switch-GT-USB-7010ASV_C2988369.pdf +USB C Type-C Receptacle SMD +0 +20 +17 +Connector_USB +USB_C_Receptacle_G-Switch_GT-USB-7025 +USB Type C, right-angle, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2312191005_G-Switch-GT-USB-7025_C963213.pdf +USB C Type-C Receptacle SMD +0 +22 +18 +Connector_USB +USB_C_Receptacle_G-Switch_GT-USB-7051x +USB Type C, vertical, SMT, https://datasheet.lcsc.com/lcsc/2108072030_G-Switch-GT-USB-7051A_C2843970.pdf +USB C Type-C Receptacle SMD GT-USB-7051A GT-USB-7051B +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4085 +USB 2.0 Type C Receptacle, https://gct.co/Files/Drawings/USB4085.pdf +USB Type-C Receptacle Through-hole Right angle +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal +USB 2.0 Type C Receptacle, GCT, 16P, top mounted, horizontal, 5A: https://gct.co/files/drawings/usb4105.pdf +USB C Type-C Receptacle SMD USB 2.0 16P 16C USB4105-15-A USB4105-15-A-060 USB4105-15-A-120 USB4105-GF-A USB4105-GF-A-060 USB4105-GF-A-120 +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4110 +USB 2.0 Type C Receptacle, GCT, 16P, top mounted, horizontal, 5A, https://gct.co/files/drawings/usb4110.pdf +USB 2.0 C Type-C Receptacle SMD 16P 16C USB4110-GF-A +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4115-03-C +USB TYPE C, VERT RCPT PCB, SMT, https://gct.co/files/drawings/usb4115.pdf +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_GCT_USB4125-xx-x-0190_6P_TopMnt_Horizontal +USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A, 1.9mm stake: https://gct.co/files/drawings/usb4125.pdf +USB C Type-C receptacle power-only charging-only 6P 6C right angled +0 +10 +7 +Connector_USB +USB_C_Receptacle_GCT_USB4125-xx-x_6P_TopMnt_Horizontal +USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A, 1mm stake: https://gct.co/files/drawings/usb4125.pdf +USB C Type-C receptacle power-only charging-only 6P 6C right angled +0 +10 +7 +Connector_USB +USB_C_Receptacle_GCT_USB4135-GF-A_6P_TopMnt_Horizontal +USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A: https://gct.co/files/drawings/usb4135.pdf +USB C Type-C Receptacle SMD USB Power-only Charging-only 6P 6C USB4135-GF-A +0 +10 +7 +Connector_USB +USB_C_Receptacle_HCTL_HC-TYPE-C-16P-01A +16-pin USB-C receptacle, USB2.0 and PD, 5A VBUS rating, https://datasheet.lcsc.com/lcsc/2211161000_HCTL-HC-TYPE-C-16P-01A_C2894897.pdf +usb usb-c 2.0 pd +0 +20 +17 +Connector_USB +USB_C_Receptacle_HRO_TYPE-C-31-M-12 +USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf +usb usb-c 2.0 pd +0 +20 +17 +Connector_USB +USB_C_Receptacle_JAE_DX07S016JA1R1500 +USB TYPE C, USB 2.0, SMT, https://www.jae.com/en/connectors/series/detail/product/id=91780 +USB C Type-C Receptacle SMD USB 2.0 +0 +22 +17 +Connector_USB +USB_C_Receptacle_JAE_DX07S024WJ1R350 +http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ117219.pdf +USB C Type-C Receptacle SMD +0 +30 +25 +Connector_USB +USB_C_Receptacle_JAE_DX07S024WJ3R400 +USB TYPE C, VERT RCPT PCB, SMT, http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ117928.pdf +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Molex_105450-0101 +USB 3.0 3.1 3.2 4.0 Type-C receptable, through-hole mount, SMD, right-angle (https://www.molex.com/pdm_docs/sd/1054500101_sd.pdf) +USB C Type-C USB3 receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Palconn_UTC16-G +http://www.palpilot.com/wp-content/uploads/2017/05/UTC027-GKN-OR-Rev-A.pdf +USB C Type-C Receptacle USB2.0 +0 +20 +17 +Connector_USB +USB_C_Receptacle_XKB_U262-16XN-4BVC11 +USB Type C, right-angle, SMT, https://datasheet.lcsc.com/szlcsc/1811141824_XKB-Enterprise-U262-161N-4BVC11_C319148.pdf +USB C Type-C Receptacle SMD +0 +20 +17 +Connector_USB +USB_Micro-AB_Molex_47590-0001 +Micro USB AB receptable, right-angle inverted (https://www.molex.com/pdm_docs/sd/475900001_sd.pdf) +Micro AB USB SMD +0 +14 +6 +Connector_USB +USB_Micro-B_Amphenol_10103594-0001LF_Horizontal +Micro USB Type B 10103594-0001LF, http://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10103594.pdf +USB USB_B USB_micro USB_OTG +0 +17 +6 +Connector_USB +USB_Micro-B_Amphenol_10104110_Horizontal +USB Micro-B, horizontal, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10104110.pdf +USB Micro B horizontal +0 +9 +6 +Connector_USB +USB_Micro-B_Amphenol_10118193-0001LF_Horizontal +USB Micro-B receptacle, horizontal, SMD, 10118193, with flange, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118193.pdf +USB Micro-B horizontal SMD +0 +11 +6 +Connector_USB +USB_Micro-B_Amphenol_10118193-0002LF_Horizontal +USB Micro-B receptacle, horizontal, SMD, 10118193, without flange, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118193.pdf +USB Micro-B horizontal SMD +0 +11 +6 +Connector_USB +USB_Micro-B_Amphenol_10118194_Horizontal +USB Micro-B receptacle, horizontal, SMD, 10118194, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118194.pdf +USB Micro B horizontal SMD +0 +17 +6 +Connector_USB +USB_Micro-B_GCT_USB3076-30-A +GCT Micro USB https://gct.co/files/drawings/usb3076.pdf +Micro-USB SMD Typ-B GCT +0 +11 +6 +Connector_USB +USB_Micro-B_Molex-105017-0001 +http://www.molex.com/pdm_docs/sd/1050170001_sd.pdf +Micro-USB SMD Typ-B +0 +13 +6 +Connector_USB +USB_Micro-B_Molex-105133-0001 +Molex Vertical Micro USB Typ-B (http://www.molex.com/pdm_docs/sd/1051330001_sd.pdf) +Micro-USB SMD Typ-B Vertical +0 +8 +6 +Connector_USB +USB_Micro-B_Molex-105133-0031 +Molex Vertical Micro USB Typ-B (http://www.molex.com/pdm_docs/sd/1051330031_sd.pdf) +Micro-USB SMD Typ-B Vertical +0 +8 +6 +Connector_USB +USB_Micro-B_Molex_47346-0001 +Micro USB B receptable with flange, bottom-mount, SMD, right-angle (http://www.molex.com/pdm_docs/sd/473460001_sd.pdf) +Micro B USB SMD +0 +11 +6 +Connector_USB +USB_Micro-B_Technik_TWP-4002D-H3 +Dustproof Micro USB Type B TWP-4002D-H3, https://www.technik.com.hk/images/pdf_product/WP4002D-H3-A_2.0.pdf +USB Micro B horizontal dustproof waterproof IP67 +0 +7 +6 +Connector_USB +USB_Micro-B_Wuerth_614105150721_Vertical +USB Micro-B receptacle, through-hole, vertical, http://katalog.we-online.de/em/datasheet/614105150721.pdf +usb micro receptacle vertical +0 +7 +6 +Connector_USB +USB_Micro-B_Wuerth_614105150721_Vertical_CircularHoles +USB Micro-B receptacle, through-hole, vertical, http://katalog.we-online.de/em/datasheet/614105150721.pdf +usb micro receptacle vertical +0 +7 +6 +Connector_USB +USB_Micro-B_Wuerth_629105150521 +USB Micro-B receptacle, http://www.mouser.com/ds/2/445/629105150521-469306.pdf +usb micro receptacle +0 +9 +6 +Connector_USB +USB_Micro-B_Wuerth_629105150521_CircularHoles +USB Micro-B receptacle, http://www.mouser.com/ds/2/445/629105150521-469306.pdf +usb micro receptacle +0 +9 +6 +Connector_USB +USB_Micro-B_XKB_U254-051T-4BH83-F1S +XKB Connectivity, USB Micro-B, right-angle, SMT, https://datasheet.lcsc.com/lcsc/2206091745_XKB-Connectivity-U254-051T-4BH83-F1S_C397452.pdf +USB Micro-B Receptacle SMD +0 +11 +6 +Connector_USB +USB_Mini-B_AdamTech_MUSB-B5-S-VT-TSMT-1_SMD_Vertical +http://www.adam-tech.com/upload/MUSB-B5-S-VT-TSMT-1.pdf +USB Mini-B +0 +7 +6 +Connector_USB +USB_Mini-B_Lumberg_2486_01_Horizontal +USB Mini-B 5-pin SMD connector, http://downloads.lumberg.com/datenblaetter/en/2486_01.pdf +USB USB_B USB_Mini connector +0 +9 +6 +Connector_USB +USB_Mini-B_Tensility_54-00023_Vertical +http://www.tensility.com/pdffiles/54-00023.pdf +usb mini receptacle vertical +0 +7 +6 +Connector_USB +USB_Mini-B_Tensility_54-00023_Vertical_CircularHoles +http://www.tensility.com/pdffiles/54-00023.pdf +usb mini receptacle vertical +0 +7 +6 +Connector_USB +USB_Mini-B_Wuerth_65100516121_Horizontal +Mini USB 2.0 Type B SMT Horizontal 5 Contacts (https://katalog.we-online.de/em/datasheet/65100516121.pdf) +Mini USB 2.0 Type B +0 +9 +6 +Connector_Video +DVI-D_Molex_74320-4004_Horizontal +DVI-D Dual Link connector, horizontal, 24 pins, Molex P/N 74320-4004, https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/743/74320/743204004_sd.pdf?inline +dvi right angle +0 +26 +25 +Connector_Video +DVI-I_Molex_74320-1004_Horizontal +DVI-I Dual Link connector, horizontal, 29 pins, Molex P/N 74320-1004, https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/743/74320/743201004_sd.pdf?inline +dvi right angle +0 +32 +30 +Connector_Video +HDMI_A_Amphenol_10029449-x01xLF_Horizontal +HDMI Type A connector, Amphenol 10029449-001TLF 10029449-001RLF 10029449-101TLF 10029449-101RLF, Right Angle(https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10029449.pdf) +hdmi right angle +0 +23 +20 +Connector_Video +HDMI_A_Contact_Technology_HDMI-19APL2_Horizontal +HDMI Contact Technology Type A http://www.contactswitch.com/en/download.aspx?id=1449 +HDMI Contact Technology Type A +0 +23 +20 +Connector_Video +HDMI_A_Kycon_KDMIX-SL1-NS-WS-B15_VerticalRightAngle +HDMI, Type A, Kycon KDMIX-SL1-NS-WS-B15, Vertical Right Angle, http://www.kycon.com/Pub_Eng_Draw/KDMIX-SL1-NS-WS-B15.pdf +hdmi type a +0 +23 +20 +Connector_Video +HDMI_A_Molex_208658-1001_Horizontal +HDMI Molex Type A https://www.molex.com/pdm_docs/sd/2086581001_sd.pdf +HDMI Molex Type A +0 +23 +20 +Connector_Video +HDMI_Micro-D_Molex_46765-0x01 +HDMI, Micro, Type D, SMD, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) +hdmi micro type d right angle smd +0 +23 +20 +Connector_Video +HDMI_Micro-D_Molex_46765-1x01 +HDMI, Micro, Type D, THT, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) +hdmi micro type d right angle tht +0 +23 +20 +Connector_Video +HDMI_Micro-D_Molex_46765-2x0x +HDMI, Micro, Type D, THT/SMD hybrid, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) +hdmi micro type d right angle tht smd hybrid +0 +23 +20 +Connector_Wago +Wago_734-132_1x02_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-132 , 2 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +2 +2 +Connector_Wago +Wago_734-133_1x03_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-133 , 3 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +3 +3 +Connector_Wago +Wago_734-134_1x04_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-134 , 4 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +4 +4 +Connector_Wago +Wago_734-135_1x05_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-135 , 5 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +5 +5 +Connector_Wago +Wago_734-136_1x06_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-136 , 6 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +6 +6 +Connector_Wago +Wago_734-137_1x07_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-137 , 7 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +7 +7 +Connector_Wago +Wago_734-138_1x08_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-138 , 8 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +8 +8 +Connector_Wago +Wago_734-139_1x09_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-139 , 9 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +9 +9 +Connector_Wago +Wago_734-140_1x10_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-140 , 10 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +10 +10 +Connector_Wago +Wago_734-141_1x11_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-141 , 11 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +11 +11 +Connector_Wago +Wago_734-142_1x12_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-142 , 12 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +12 +12 +Connector_Wago +Wago_734-143_1x13_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-143 , 13 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +13 +13 +Connector_Wago +Wago_734-144_1x14_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-144 , 14 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +14 +14 +Connector_Wago +Wago_734-146_1x16_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-146 , 16 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +16 +16 +Connector_Wago +Wago_734-148_1x18_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-148 , 18 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +18 +18 +Connector_Wago +Wago_734-150_1x20_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-150 , 20 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +20 +20 +Connector_Wago +Wago_734-154_1x24_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-154 , 24 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +24 +24 +Connector_Wago +Wago_734-162_1x02_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-162 , 2 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +2 +2 +Connector_Wago +Wago_734-163_1x03_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-163 , 3 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +3 +3 +Connector_Wago +Wago_734-164_1x04_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-164 , 4 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +4 +4 +Connector_Wago +Wago_734-165_1x05_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-165 , 5 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +5 +5 +Connector_Wago +Wago_734-166_1x06_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-166 , 6 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +6 +6 +Connector_Wago +Wago_734-167_1x07_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-167 , 7 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +7 +7 +Connector_Wago +Wago_734-168_1x08_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-168 , 8 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +8 +8 +Connector_Wago +Wago_734-169_1x09_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-169 , 9 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +9 +9 +Connector_Wago +Wago_734-170_1x10_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-170 , 10 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +10 +10 +Connector_Wago +Wago_734-171_1x11_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-171 , 11 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +11 +11 +Connector_Wago +Wago_734-172_1x12_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-172 , 12 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +12 +12 +Connector_Wago +Wago_734-173_1x13_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-173 , 13 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +13 +13 +Connector_Wago +Wago_734-174_1x14_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-174 , 14 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +14 +14 +Connector_Wago +Wago_734-176_1x16_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-176 , 16 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +16 +16 +Connector_Wago +Wago_734-178_1x18_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-178 , 18 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +18 +18 +Connector_Wago +Wago_734-180_1x20_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-180 , 20 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +20 +20 +Connector_Wago +Wago_734-184_1x24_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-184 , 24 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +24 +24 +Connector_Wire +SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm +Soldered wire connection, for a single 0.1 mm² wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.1 mm² wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.1 mm² wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 2 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 3 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 4 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 5 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 6 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm +Soldered wire connection, for a single 0.5 mm² wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.5 mm² wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.5 mm² wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm +Soldered wire connection, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 2 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 2 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 3 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 3 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 4 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 4 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 5 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 5 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 6 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 6 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm +Soldered wire connection, for a single 0.15 mm² wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.15 mm² wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.15 mm² wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 2 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 3 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 4 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 5 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 6 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm +Soldered wire connection, for a single 0.25 mm² wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.25 mm² wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.25 mm² wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm +Soldered wire connection, for a single 0.25 mm² wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.25 mm² wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.25 mm² wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 2 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 2 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 3 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 3 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 4 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 4 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 5 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 5 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 6 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 6 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm +Soldered wire connection, for a single 0.75 mm² wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.75 mm² wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.75 mm² wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm +Soldered wire connection, for a single 0.75 mm² wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.75 mm² wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.75 mm² wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 2 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 2 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 3 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 3 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 4 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 4 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 5 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 5 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 6 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 6 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm +Soldered wire connection, for a single 0.127 mm² wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.127 mm² wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.127 mm² wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 2 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 3 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 4 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 5 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 6 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm +Soldered wire connection, for a single 1.5 mm² wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for a single 1.5 mm² wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1.5 mm² wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm +Soldered wire connection, for a single 1.5 mm² wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for a single 1.5 mm² wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1.5 mm² wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 2 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 2 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 3 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 3 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 4 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 4 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 5 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 5 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 6 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 6 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm +Soldered wire connection, for a single 1 mm² wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for a single 1 mm² wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1 mm² wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm +Soldered wire connection, for a single 1 mm² wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for a single 1 mm² wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1 mm² wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 2 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 2 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 3 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 3 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 4 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 4 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 5 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 5 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 6 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 6 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm +Soldered wire connection, for a single 2.5 mm² wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for a single 2.5 mm² wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 2.5 mm² wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm +Soldered wire connection, for a single 2.5 mm² wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for a single 2.5 mm² wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 2.5 mm² wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 2 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 2 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 3 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 3 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 4 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 4 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 5 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 5 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 6 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 6 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2sqmm_1x01_D2mm_OD3.9mm +Soldered wire connection, for a single 2 mm² wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +1 +1 +Connector_Wire +SolderWire-2sqmm_1x01_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for a single 2 mm² wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2sqmm_1x01_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 2 mm² wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +2 +2 +Connector_Wire +SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 3 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +3 +3 +Connector_Wire +SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 4 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +4 +4 +Connector_Wire +SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 5 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +5 +5 +Connector_Wire +SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 6 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +6 +6 +Connector_Wire +SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWirePad_1x01_SMD_1x2mm +Wire Pad, Square, SMD Pad, 1mm x 2mm, +MesurementPoint Square SMDPad 1mmx2mm +0 +1 +1 +Connector_Wire +SolderWirePad_1x01_SMD_5x10mm +Wire Pad, Square, SMD Pad, 5mm x 10mm, +MesurementPoint Square SMDPad 5mmx10mm +0 +1 +1 +Connector_Wuerth +Wuerth_WR-PHD_613004216921_Large_2x02_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613004216921 (https://katalog.we-online.de/em/datasheet/613004216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613004216921 +0 +4 +4 +Connector_Wuerth +Wuerth_WR-PHD_613006216921_Large_2x03_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613006216921 (https://katalog.we-online.de/em/datasheet/613006216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613006216921 +0 +6 +6 +Connector_Wuerth +Wuerth_WR-PHD_613008216921_Large_2x04_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613008216921 (https://katalog.we-online.de/em/datasheet/613008216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613008216921 +0 +8 +8 +Connector_Wuerth +Wuerth_WR-PHD_613010216921_Large_2x05_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613010216921 (https://katalog.we-online.de/em/datasheet/613010216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613010216921 +0 +10 +10 +Connector_Wuerth +Wuerth_WR-PHD_613012216921_Large_2x06_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613012216921 (https://katalog.we-online.de/em/datasheet/613012216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613012216921 +0 +12 +12 +Connector_Wuerth +Wuerth_WR-PHD_613016216921_Large_2x08_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613016216921 (https://katalog.we-online.de/em/datasheet/613016216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613016216921 +0 +16 +16 +Connector_Wuerth +Wuerth_WR-PHD_613018216921_Large_2x09_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613018216921 (https://katalog.we-online.de/em/datasheet/613018216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613018216921 +0 +18 +18 +Connector_Wuerth +Wuerth_WR-PHD_613020216921_Large_2x10_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613020216921 (https://katalog.we-online.de/em/datasheet/613020216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613020216921 +0 +20 +20 +Connector_Wuerth +Wuerth_WR-PHD_613022216921_Large_2x11_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613022216921 (https://katalog.we-online.de/em/datasheet/613022216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613022216921 +0 +22 +22 +Connector_Wuerth +Wuerth_WR-PHD_613024216921_Large_2x12_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613024216921 (https://katalog.we-online.de/em/datasheet/613024216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613024216921 +0 +24 +24 +Connector_Wuerth +Wuerth_WR-PHD_613026216921_Large_2x13_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613026216921 (https://katalog.we-online.de/em/datasheet/613026216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613026216921 +0 +26 +26 +Connector_Wuerth +Wuerth_WR-PHD_613032216921_Large_2x16_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613032216921 (https://katalog.we-online.de/em/datasheet/613032216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613032216921 +0 +32 +32 +Connector_Wuerth +Wuerth_WR-PHD_613034216921_Large_2x17_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613034216921 (https://katalog.we-online.de/em/datasheet/613034216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613034216921 +0 +34 +34 +Connector_Wuerth +Wuerth_WR-PHD_610004243021_SMD_2x02_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610004243021 (https://katalog.we-online.de/em/datasheet/610004243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610004243021 +0 +4 +4 +Connector_Wuerth +Wuerth_WR-PHD_610006243021_SMD_2x03_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610006243021 (https://katalog.we-online.de/em/datasheet/610006243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610006243021 +0 +6 +6 +Connector_Wuerth +Wuerth_WR-PHD_610008243021_SMD_2x04_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610008243021 (https://katalog.we-online.de/em/datasheet/610008243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610008243021 +0 +8 +8 +Connector_Wuerth +Wuerth_WR-PHD_610010243021_SMD_2x05_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610010243021 (https://katalog.we-online.de/em/datasheet/610010243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610010243021 +0 +10 +10 +Connector_Wuerth +Wuerth_WR-PHD_610012243021_SMD_2x06_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610012243021 (https://katalog.we-online.de/em/datasheet/610012243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610012243021 +0 +12 +12 +Connector_Wuerth +Wuerth_WR-PHD_610016243021_SMD_2x08_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610016243021 (https://katalog.we-online.de/em/datasheet/610016243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610016243021 +0 +16 +16 +Connector_Wuerth +Wuerth_WR-PHD_610018243021_SMD_2x09_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610018243021 (https://katalog.we-online.de/em/datasheet/610018243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610018243021 +0 +18 +18 +Connector_Wuerth +Wuerth_WR-PHD_610020243021_SMD_2x10_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610020243021 (https://katalog.we-online.de/em/datasheet/610020243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610020243021 +0 +20 +20 +Connector_Wuerth +Wuerth_WR-PHD_610022243021_SMD_2x11_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610022243021 (https://katalog.we-online.de/em/datasheet/610022243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610022243021 +0 +22 +22 +Connector_Wuerth +Wuerth_WR-PHD_610024243021_SMD_2x12_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610024243021 (https://katalog.we-online.de/em/datasheet/610024243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610024243021 +0 +24 +24 +Connector_Wuerth +Wuerth_WR-PHD_610026243021_SMD_2x13_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610026243021 (https://katalog.we-online.de/em/datasheet/610026243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610026243021 +0 +26 +26 +Connector_Wuerth +Wuerth_WR-PHD_610032243021_SMD_2x16_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610032243021 (https://katalog.we-online.de/em/datasheet/610032243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610032243021 +0 +32 +32 +Connector_Wuerth +Wuerth_WR-PHD_610034243021_SMD_2x17_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610034243021 (https://katalog.we-online.de/em/datasheet/610034243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610034243021 +0 +34 +34 +Connector_Wuerth +Wuerth_WR-PHD_61300425721_Standard_2x02_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61300425721 (https://katalog.we-online.de/em/datasheet/61300425721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61300425721 +0 +4 +4 +Connector_Wuerth +Wuerth_WR-PHD_61300625721_Standard_2x03_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61300625721 (https://katalog.we-online.de/em/datasheet/61300625721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61300625721 +0 +6 +6 +Connector_Wuerth +Wuerth_WR-PHD_61300825721_Standard_2x04_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61300825721 (https://katalog.we-online.de/em/datasheet/61300825721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61300825721 +0 +8 +8 +Connector_Wuerth +Wuerth_WR-PHD_61301025721_Standard_2x05_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61301025721 (https://katalog.we-online.de/em/datasheet/61301025721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61301025721 +0 +10 +10 +Connector_Wuerth +Wuerth_WR-PHD_61301225721_Standard_2x06_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61301225721 (https://katalog.we-online.de/em/datasheet/61301225721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61301225721 +0 +12 +12 +Connector_Wuerth +Wuerth_WR-PHD_61301625721_Standard_2x08_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61301625721 (https://katalog.we-online.de/em/datasheet/61301625721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61301625721 +0 +16 +16 +Connector_Wuerth +Wuerth_WR-PHD_61302025721_Standard_2x10_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61302025721 (https://katalog.we-online.de/em/datasheet/61302025721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61302025721 +0 +20 +20 +Connector_Wuerth +Wuerth_WR-PHD_61302425721_Standard_2x12_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61302425721 (https://katalog.we-online.de/em/datasheet/61302425721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61302425721 +0 +24 +24 +Connector_Wuerth +Wuerth_WR-PHD_61302625721_Standard_2x13_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61302625721 (https://katalog.we-online.de/em/datasheet/61302625721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61302625721 +0 +26 +26 +Connector_Wuerth +Wuerth_WR-PHD_61303225721_Standard_2x16_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61303225721 (https://katalog.we-online.de/em/datasheet/61303225721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61303225721 +0 +32 +32 +Connector_Wuerth +Wuerth_WR-PHD_61303425721_Standard_2x17_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61303425721 (https://katalog.we-online.de/em/datasheet/61303425721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61303425721 +0 +34 +34 +Connector_Wuerth +Wuerth_WR-WTB_64800211622_1x02_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800211622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +2 +2 +Connector_Wuerth +Wuerth_WR-WTB_64800311622_1x03_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800311622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +3 +3 +Connector_Wuerth +Wuerth_WR-WTB_64800411622_1x04_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800411622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +4 +4 +Connector_Wuerth +Wuerth_WR-WTB_64800511622_1x05_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800511622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +5 +5 +Connector_Wuerth +Wuerth_WR-WTB_64800611622_1x06_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800611622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +6 +6 +Connector_Wuerth +Wuerth_WR-WTB_64800711622_1x07_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800711622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +7 +7 +Connector_Wuerth +Wuerth_WR-WTB_64800811622_1x08_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800811622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +8 +8 +Connector_Wuerth +Wuerth_WR-WTB_64800911622_1x09_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800911622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +9 +9 +Connector_Wuerth +Wuerth_WR-WTB_64801011622_1x10_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64801011622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +10 +10 +Converter_ACDC +Converter_ACDC_CUI_PBO-3-Sxx_THT_Vertical +ACDC-Converter, 3W, CUI PBO-3, THT https://www.cui.com/product/resource/pbo-3.pdf +Converter AC-DC THT Vertical +0 +6 +6 +Converter_ACDC +Converter_ACDC_Hahn_HS-400xx_THT +ACDC-Converter, 3W, Hahn-HS-400xx, THT https://www.schukat.com/schukat/schukat_cms_de.nsf/index/FrameView?OpenDocument&art=HS40009&wg=M7942 +Hahn ACDC-Converter THT +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-2Mxx +ACDC-Converter, 2W, Hi-Link, HLK-2Mxx, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%972W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%912W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%AF%B4%E6%98%8E%E4%B9%A6V2.6.pdf) +ACDC-Converter 2W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-5Mxx +ACDC-Converter, 5W, Hi-Link, HLK-5Mxx, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%975W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%915W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V2.8.pdf) +ACDC-Converter 5W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-10Mxx +ACDC-Converter, 10W, Hi-Link, HLK-10Mxx, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9710W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%9110W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V1.8.pdf) +ACDC-Converter 10W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-12MxxA +ACDC-Converter, 12W, Hi-Link, HLK-12MxxA, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9712W%E7%B3%BB%E5%88%97/1/12W%E7%B3%BB%E5%88%97%E8%A7%84%E6%A0%BC%E4%B9%A6.pdf) +ACDC-Converter 12W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-20Mxx +ACDC-Converter, 20W, Hi-Link, HLK-20Mxx, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9720W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%9120W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V1.6.pdf) +ACDC-Converter 20W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-30Mxx +ACDC-Converter, 30W, Hi-Link, HLK-30Mxx, HLK-30MxxC, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9730W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%9130W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V1.6.pdf) +ACDC-Converter 30W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-PMxx +ACDC-Converter, 3W, Hi-Link, HLK-PMxx, THT (Script generated with StandardBox.py) (https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%973W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%913W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V2.8.pdf) +ACDC-Converter 3W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-02-xx_SMD +ACDC-Converter, 3W, Meanwell, IRM-02, SMD, https://www.meanwell.com/Upload/PDF/IRM-02/IRM-02-SPEC.PDF +ACDC-Converter 3W +0 +14 +14 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-02-xx_THT +ACDC-Converter, 2W, Meanwell, IRM-02, THT, https://www.meanwell.co.uk/media/productPDF/IRM-02-spec.pdf +ACDC-Converter 2W THT +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-03-xx_SMD +ACDC-Converter, 3W, Meanwell, IRM-03, SMD, http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-03 +ACDC-Converter 3W +0 +14 +14 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-03-xx_THT +ACDC-Converter, 3W, Meanwell, IRM-03, THT, https://www.meanwell.com/Upload/PDF/IRM-03/IRM-03-SPEC.PDF +ACDC-Converter 3W THT +0 +5 +5 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-05-xx_THT +http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-05 +ACDC-Converter 5W Meanwell IRM-05 +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-10-xx_THT +http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-10 +ACDC-Converter 10W Meanwell IRM-10 +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-20-xx_THT +ACDC-Converter, 20W, Meanwell, IRM-20, THT http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-20 +ACDC-Converter 20W Meanwell IRM-20 +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-60-xx_THT +ACDC-Converter, 50-60W, Meanwell, IRM-60, THT https://www.meanwellusa.com/productPdf.aspx?i=687 +switching power supply +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_MFM-10-xx_THT +AC/DC board mount open frame power converter, input 80 ~ 264 VAC, 10W output, https://www.meanwellusa.com/upload/pdf/MFM-10/MFM-10-spec.pdf +AC/DC power converter +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_MFM-15-xx_THT +AC/DC board mount open frame power converter, input 80 ~ 264 VAC, 15W output, https://www.meanwell.com/Upload/PDF/MFM-15/MFM-15-SPEC.PDF +AC/DC power converter +0 +4 +4 +Converter_ACDC +Converter_ACDC_Murata_BAC05SxxDC_THT +ACDC-Converter, Murata, 5W, ClassB, https://www.murata.com/products/productdata/8809982558238/KAC-BAC05.pdf +switching power supply tht +0 +5 +5 +Converter_ACDC +Converter_ACDC_RECOM_RAC01-xxSGB_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC01-GB.pdf +recom power ac dc rac01xxgb rac01-05sgb rac01-12sgb +0 +4 +4 +Converter_ACDC +Converter_ACDC_RECOM_RAC04-xxSGx_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC04-GA.pdf +recom power ac dc +0 +5 +5 +Converter_ACDC +Converter_ACDC_RECOM_RAC05-xxSK_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC05-K.pdf +recom power ac dc +0 +5 +5 +Converter_ACDC +Converter_ACDC_Recom_RAC20-xxDK_THT +Recom RAC20-xxDK https://recom-power.com/pdf/Powerline_AC-DC/RAC20-K.pdf#page=6 Rev. 6/2020 +Recom RAC20-xxDK +0 +5 +5 +Converter_ACDC +Converter_ACDC_Recom_RAC20-xxSK_THT +Recom RAC20-xxSK https://recom-power.com/pdf/Powerline_AC-DC/RAC20-K.pdf#page=6 Rev. 6/2020 +Recom RAC20-xxSK +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMG-15_THT +ACDC-Converter, TRACO, TMG Series 15 https://www.tracopower.com/products/tmg.pdf +ACDC-Converter TRACO TMG Series 15 +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMLM-04_THT +ACDC-Converter, TRACO, TMLM Series 04 https://www.tracopower.com/products/tmlm.pdf +ACDC-Converter TRACO TMLM Series 04 +0 +7 +7 +Converter_ACDC +Converter_ACDC_TRACO_TMLM-05_THT +ACDC-Converter, TRACO TMLM 05,https://www.tracopower.com/products/tmlm.pdf +ACDC-Converter TRACO TMLM 05 +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMLM-10-20_THT +ACDC-Converter, TRACO TMLM 10, TRACO TMLM 20, https://www.tracopower.com/products/tmlm.pdf +ACDC-Converter TRACO TMLM 10 and TMLM 20 +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TPP-15-1xx-D_THT +ACDC-Converter, 15W, TRACO TPP 15-D, 42 x 28.9 x 21.5mm, https://www.tracopower.com/sites/default/files/products/datasheets/tpp15_d_datasheet.pdf +ACDC-Converter TRACO TPP +0 +5 +5 +Converter_ACDC +Converter_ACDC_Vigortronix_VTX-214-010-xxx_THT +Vigortronix VTX-214-010-xxx serie of ACDC converter, http://www.vigortronix.com/10WattACDCPCBPowerModule.aspx +Vigortronix VTX-214-010-xxx serie of ACDC converter +0 +4 +4 +Converter_ACDC +Converter_ACDC_Vigortronix_VTX-214-015-1xx_THT +Vigortronix VTX-214-010-xxx serie of ACDC converter, http://www.vigortronix.com/10WattACDCPCBPowerModule.aspx +Vigortronix VTX-214-010-xxx serie of ACDC converter +0 +5 +5 +Converter_ACDC +Converter_ACDC_ZETTLER_ZPI03Sxx00WC_THT +PCB mounted switching power module, AC input voltage range: 90VAC-264VAC, Class II Construction, https://www.zettlermagnetics.com/pdfs/ZPI03SXX00WC.pdf +ACDC-Converter 3W ZETTLER ZPI +0 +4 +4 +Converter_DCDC +Converter_DCDC_Artesyn_ATA_SMD +DCDC-Converter, Artesyn, ATA Series, 3W Single and Dual Output, 1500VDC Isolation, 24.0x13.7x8.0mm https://www.artesyn.com/power/assets/ata_series_ds_01apr2015_79c25814fd.pdf https://www.artesyn.com/power/assets/trn_dc-dc_ata_3w_series_releas1430412818_techref.pdf +DCDC SMD +0 +7 +7 +Converter_DCDC +Converter_DCDC_Bothhand_CFUDxxxx_THT +DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), +DCDC-Converter BOTHHAND Type CFxxxx-Serie +0 +10 +10 +Converter_DCDC +Converter_DCDC_Bothhand_CFUSxxxxEH_THT +DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), +DCDC-Converter BOTHHAND Type CFxxxx-Serie +0 +9 +9 +Converter_DCDC +Converter_DCDC_Bothhand_CFUSxxxx_THT +DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), +DCDC-Converter BOTHHAND Type CFxxxx-Serie +0 +8 +8 +Converter_DCDC +Converter_DCDC_Cincon_EC5BExx_Dual_THT +DCDC-Converter, CINCON, EC5BExx, 18-36VDC to Dual output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/B%20CASE/SPEC-EC5BE-V24.pdf +DCDC-Converter CINCON EC5BExx 18-36VDC to Dual output +0 +6 +6 +Converter_DCDC +Converter_DCDC_Cincon_EC5BExx_Single_THT +DCDC-Converter, CINCON, EC5BExx, 18-36VDC to dual output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/B%20CASE/SPEC-EC5BE-V24.pdf +DCDC-Converter CINCON EC5BExx 18-36VDC to dual output +0 +4 +4 +Converter_DCDC +Converter_DCDC_Cincon_EC6Cxx_Dual-Triple_THT +DCDC-Converter, CINCON, EC6Cxx, dual or tripple output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/C%20CASE/SPEC-EC6C-V12.pdf +DCDC-Converter CINCON EC6Cxx dual or tripple output +0 +7 +7 +Converter_DCDC +Converter_DCDC_Cincon_EC6Cxx_Single_THT +DCDC-Converter, CINCON, EC6Cxx, single output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/C%20CASE/SPEC-EC6C-V12.pdf +DCDC-Converter CINCON EC6Cxx single output +0 +6 +6 +Converter_DCDC +Converter_DCDC_Cyntec_MUN12AD01-SH +http://www.cyntec.com/upfile/products/download/Cyntec%20MUN12AD01-SH_Datasheet.pdf +Power Module uPOL MUN12AD01 +0 +13 +9 +Converter_DCDC +Converter_DCDC_Cyntec_MUN12AD03-SH +http://www.cyntec.com/upfile/products/download/Cyntec%20MUN12AD03-SH_Datasheet.pdf +Power Module uPOL MUN12AD03 +0 +19 +11 +Converter_DCDC +Converter_DCDC_MeanWell_NID30_THT +Meanwell DCDC non-isolated converter SIP module, http://www.meanwell.com/webapp/product/search.aspx?prod=nid30 +DCDC non-isolated converter +0 +11 +11 +Converter_DCDC +Converter_DCDC_MeanWell_NID60_THT +MeanWell NID60, http://www.meanwell.com/Upload/PDF/NID60/NID60-SPEC.PDF +MeanWell NID60 +0 +11 +11 +Converter_DCDC +Converter_DCDC_MeanWell_NSD10_THT +MeanWell NSD10 (Script generated with StandardBox.py) (https://www.meanwell.com/webapp/product/search.aspx?prod=NSD10-D) +MeanWell NSD NSD10 +0 +6 +6 +Converter_DCDC +Converter_DCDC_Murata_CRE1xxxxxx3C_THT +Isolated 1W single output DC/DC, http://power.murata.com/data/power/ncl/kdc_cre1.pdf +Isolated 1W single output DC/DC +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_CRE1xxxxxxDC_THT +Isloated DC-DC, http://power.murata.com/data/power/ncl/kdc_cre1.pdf +Isloated DC-DC +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_CRE1xxxxxxSC_THT +http://power.murata.com/data/power/ncl/kdc_cre1.pdf +murata dc-dc transformer +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_MEE1SxxxxSC_THT +https://power.murata.com/pub/data/power/ncl/kdc_mee1.pdf +murata dc-dc transformer +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_MEE3SxxxxSC_THT +https://power.murata.com/pub/data/power/ncl/kdc_mee3.pdf +murata dc-dc transformer +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_MGJ2DxxxxxxSC_THT +Murata MGJ2DxxxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 2W, SIP package style, https://power.murata.com/data/power/ncl/kdc_mgj2.pdf +Murata MGJ2DxxxxxxSC +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_MGJ3 +Murata MGJ3, 5.2kVDC Isolated 3W Gate Drive, 15V/5V/5V Configurable, 22.61x23.11x14.19mm, https://power.murata.com/datasheet?/data/power/ncl/kdc_mgj3.pdf +DCDC SMD +0 +7 +7 +Converter_DCDC +Converter_DCDC_Murata_MYRxP +Murata MYRxP PicoBK DC/DC converter with inductor, 2x2.5mm, height 1.04mm. https://www.murata.com/en-global/products/power/nonisolated-dc-dc-converter/overview/lineup/picobk +PicoBK DC/DC MYRBP MYRGP MYRLP +0 +19 +9 +Converter_DCDC +Converter_DCDC_Murata_NCS1SxxxxSC_THT +Murata NCS1SxxxxSC https://power.murata.com/data/power/ncl/kdc_ncs1.pdf (Script generated with StandardBox.py) (Murata NCS1SxxxxSC https://power.murata.com/data/power/ncl/kdc_ncs1.pdf) +Murata NCS1SxxxxSC +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_NMAxxxxDC_THT +Isolated 1W DCDC-Converter, http://power.murata.com/data/power/ncl/kdc_nma.pdf +Isolated 1W DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_Murata_NMAxxxxSC_THT +Murata NMAxxxxSC footprint based on SIP7, http://power.murata.com/data/power/ncl/kdc_nma.pdf +Murata NMAxxxxSC DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_NXExSxxxxMC_SMD +Isolated 1W or 2W Single Output SM DC/DC Converters https://www.murata.com/products/productdata/8807031865374/kdc-nxe1.pdf#page=8 https://www.murata.com/products/productdata/8807031898142/kdc-nxe2.pdf#page=9 +Isolated 1W or 2W Single Output SM DC/DC Converters +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_OKI-78SR_Horizontal +https://power.murata.com/data/power/oki-78sr.pdf +78sr3.3 78sr5 78sr9 78sr12 78srXX +0 +3 +3 +Converter_DCDC +Converter_DCDC_Murata_OKI-78SR_Vertical +https://power.murata.com/data/power/oki-78sr.pdf +78sr3.3 78sr5 78sr9 78sr12 78srXX +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78B-2.0_THT +DCDC-Converter, RECOM, RECOM_R-78B-2.0, SIP-3, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78E-0.5_THT +DCDC-Converter, RECOM, RECOM_R-78E-0.5, SIP-3, pitch 2.54mm, package size 11.6x8.5x10.4mm^3, https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78HB-0.5L_THT +DCDC-Converter, RECOM, RECOM_R-78HB-0.5L, SIP-3, Horizontally Mounted, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78HB-0.5_THT +DCDC-Converter, RECOM, RECOM_R-78HB-0.5, SIP-3, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78S-0.1_THT +DCDC-Converter, RECOM, RECOM_R-78S-0.1, SIP-4, pitch 2.54mm, package size 11.6x8.5x10.4mm^3, https://www.recom-power.com/pdf/Innoline/R-78Sxx-0.1.pdf +dc-dc recom buck sip-4 pitch 2.54mm +0 +4 +4 +Converter_DCDC +Converter_DCDC_RECOM_R5xxxDA_THT +DCDC-Converter, RECOM, RECOM_R5xxxDA, SIP-12, Horizontally Mounted, pitch 2.54mm, package size 32.2x9.1x15mm^3, https://www.recom-power.com/pdf/Innoline/R-5xxxPA_DA.pdf +dc-dc recom buck sip-12 pitch 2.54mm +0 +12 +12 +Converter_DCDC +Converter_DCDC_RECOM_R5xxxPA_THT +DCDC-Converter, RECOM, RECOM_R5xxxPA, SIP-12, pitch 2.54mm, package size 32.2x9.1x15mm^3, https://www.recom-power.com/pdf/Innoline/R-5xxxPA_DA.pdf +dc-dc recom buck sip-12 pitch 2.54mm +0 +12 +12 +Converter_DCDC +Converter_DCDC_RECOM_RCD-24_THT +Constant current LED Driver DC/DC Converter, https://g.recomcdn.com/media/Datasheet/pdf/.fYUQjOlW/.t2a80a771bdbb0ef300f7/Datasheet-93/RCD-24.pdf +Led Driver DC-DC +0 +6 +6 +Converter_DCDC +Converter_DCDC_RECOM_RPA60-xxxxSFW +RPA60-FW 60W Isolated DC to DC Converters +DCDC Regulator Single +0 +6 +6 +Converter_DCDC +Converter_DCDC_RECOM_RPMx.x-x.0 +https://www.recom-power.com/pdf/Innoline/RPM-6.0.pdf +dc-dc recom buck lga-25 pitch 2.29mm +0 +25 +25 +Converter_DCDC +Converter_DCDC_Silvertel_Ag54xx +DCDC-Converter, 30W POE, Silvertel, pitch 2.54mm, package size 62x19.5x14mm, https://silvertel.com/images/datasheets/Ag5400-datasheet-high%20Efficiency-30W-Power-Over-Ethernet-Plus-Module-PoE+PD.pdf +DCDC-Converter Silvertel Ag5405 Ag5412 Ag5424 single output POE +0 +10 +10 +Converter_DCDC +Converter_DCDC_Silvertel_Ag99xxLP_THT +Converter, DCDC, Silvertel Ag9900 PoE, 1500VDC isolation, Vin 36V - 75V, 4.9W - 10W output, https://silvertel.com/images/datasheets/Ag9900M-datasheet-ultra-miniature-isolated-Power-over-Ethernet-POE-module.pdf +DCDC converter IEEE 802.3af +0 +8 +8 +Converter_DCDC +Converter_DCDC_Silvertel_Ag5810 +DCDC-Converter, 60W POE, Silvertel, pitch 2.54mm, package size 69.98x30x15.64mm, https://silvertel.com/images/datasheets/Ag5810-datasheet-IEEE802_3bt-Power-over-Ethernet-4-pair-PD.pdf +DCDC-Converter Silvertel Ag5810 single output POE +0 +163 +13 +Converter_DCDC +Converter_DCDC_TRACO_TBA1-xxxxE_Dual_THT +DCDC-Converter, TRACO, TBA1-xxxxE, Dual, 1W, Rev. October 31. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tba1e.pdf) +DCDC-Converter TRACO TBA1E THT SIP-7 1W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TBA1-xxxxE_Single_THT +DCDC-Converter, TRACO, TBA1-xxxxE, Single, 1W, Rev. October 31. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tba1e.pdf) +DCDC-Converter TRACO TBA1E THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TBA2-xxxx_Dual_THT +DCDC-Converter, TRACO, TBA2-xxxx, Dual, 2W, Rev. October 18. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tba2.pdf) +DCDC-Converter TRACO TBA2 THT SIP-7 2W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TBA2-xxxx_Single_THT +DCDC-Converter, TRACO, TBA2-xxxx, Single, 2W, Rev. October 18. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tba2.pdf) +DCDC-Converter TRACO TBA2 THT SIP-7 2W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TDN_5-xxxxWISM_SMD +Traco TDN 5WISM Series, 5W, SMD (https://assets.tracopower.com/20200225170127/TDN5WISM/documents/tdn5wism-datasheet.pdf#page=3) +dcdc traco 5w smd +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_TDN_5-xxxxWI_THT +Traco TDN 5WI Series, 5W (https://www.tracopower.com/sites/default/files/products/datasheets/tdn5wi_datasheet.pdf#page=4) +dcdc traco 5w +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_TDU1-xxxx_THT +DCDC-Converter, TRACO, TDU1-xxxx, 1W, Rev. October 24. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tdu1.pdf) +DCDC-Converter TRACO TDU1 THT DIP-8 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEA1-xxxxE_THT +DCDC-Converter, TRACO, TEA1-xxxxE, 1W, Rev. October 31. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tea1e.pdf) +DCDC-Converter TRACO TEA1E THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEA1-xxxxHI_THT +DCDC-Converter, TRACO, TEA1-xxxxHI, 1W, Rev. October 31. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tea1hi.pdf) +DCDC-Converter TRACO TEA1HI THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEA1-xxxx_THT +DCDC-Converter, TRACO, TEA1-xxxx, 1W, Rev. October 19. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tea1.pdf) +DCDC-Converter TRACO TEA1 THT SIP-4 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEL12-xxxx_THT +Traco 12W, THT (https://www.tracopower.com/sites/default/files/products/datasheets/tel12_datasheet.pdf) +traco dcdc tht 12w +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TEN10-xxxx_Dual_THT +DCDC-Converter, TRACO, TEN10-xxxx, single output, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf +DCDC-Converter TRACO TEN10-xxxx single output +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TEN10-xxxx_Single_THT +DCDC-Converter, TRACO, TEN10-xxxx, single output, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf +DCDC-Converter TRACO TEN10-xxxx single output +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEN10-xxxx_THT +DCDC-Converter, TRACO, TEN10-xxxx, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf +DCDC-Converter TRACO TEN10-xxxx +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEN20-xxxx-N4_THT +DCDC-Converter TRACO TEN20 Generic, https://assets.tracopower.com/20171102100522/TEN20/documents/ten20-datasheet.pdf +DCDC-Converter TRACO TEN20 Generic +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TEN20-xxxx_THT +DCDC-Converter TRACO TEN20 Generic, https://assets.tracopower.com/20171102100522/TEN20/documents/ten20-datasheet.pdf +DCDC-Converter TRACO TEN20 Generic +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_THB10-xxxx_Dual_THT +DCDC-Converter, TRACO, THB10-xxxx, Dual, 10W, Rev. December 07. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/thb10.pdf) +DCDC-Converter TRACO THB10 THT 2"x1" 10W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_THB10-xxxx_Single_THT +DCDC-Converter, TRACO, THB10-xxxx, Single, 10W, Rev. December 07. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/thb10.pdf) +DCDC-Converter TRACO THB10 THT 2"x1" 10W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_THD_15-xxxxWIN_THT +Traco THD 15WIN, 15W, THT (https://www.tracopower.com/products/thd15win.pdf#page=3) +traco dcdc tht 15w +0 +9 +9 +Converter_DCDC +Converter_DCDC_TRACO_THN30-xxxx_THT +DCDC-Converter TRACO THN 10 to 30W, Single or dual Output, (https://www.tracopower.com/sites/default/files/products/datasheets/thn30_datasheet.pdf) +DCDC-Converter TRACO THN30 Generic +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_TMA-05xxD_12xxD_Dual_THT +DCDC-Converter, TRACO, TMA-05xxD, TMA-12xxD, Dual, 1W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tma.pdf) +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TMA-05xxS_12xxS_Single_THT +DCDC-Converter, TRACO, TMA-05xxS, TMA-12xxS, Single, 1W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tma.pdf) +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TMA-15xxD_24xxD_Dual_THT +DCDC-Converter, TRACO, TMA-15xxD, TMA-25xxD, Dual, 1W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tma.pdf) +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TMA-15xxS_24xxS_Single_THT +DCDC-Converter, TRACO, TMA-15xxS, TMA-24xxS, Single, 1W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tma.pdf) +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TME_03xxS_05xxS_12xxS_Single_THT +DCDC-Converter, TRACO, TME-03xxS, TME-05xxS, TME-12xxS, 1W, Rev. September 26. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tme.pdf) +DCDC-Converter TRACO TME THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TME_24xxS_Single_THT +DCDC-Converter, TRACO, TME-24xxS, 1W, Rev. September 26. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tme.pdf) +DCDC-Converter TRACO TME THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TMR-1-xxxx_Dual_THT +DCDC-Converter, TRACO, TMR 1-xxxx, Dual output, Rev. March 21.2016 +DCDC-Converter TRACO TMR1-xxxx Dual_output +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TMR-1-xxxx_Single_THT +DCDC-Converter, TRACO, TMR 1-xxxx, Single output, Rev. March 21.2016 +DCDC-Converter TRACO TMR1-xxxx Single_output +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TMR-1SM_SMD +http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +DCDC SMD TRACO TMR-1SM +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TMR-2xxxxWI_THT +https://www.tracopower.com/products/tmr2wi.pdf +DCDC-Converter TRACO TMRxxxxWI Single/Dual_output +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TMR-xxxx_THT +DCDC-Converter, TRACO, TMR xxxx, Single/Dual output, http://www.datasheetlib.com/datasheet/135136/tmr-2-2410e_traco-power.html?page=3#datasheet +DCDC-Converter TRACO TMRxxxx Single/Dual_output +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TMR4-xxxxWI_THT +DCDC-Converter, TRACO, TMR4-xxxxWI, 4W, Rev. December 06. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tmr4wi.pdf) +DCDC-Converter TRACO TMR4WI THT SIP-8 4W +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TMU3-05xx_12xx_THT +DCDC-Converter, TRACO, TMU3-05xx, TMU3-12xx, 3W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tmu3.pdf) +DCDC-Converter TRACO TMU3 THT SIP-4 3W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TMU3-24xx_THT +DCDC-Converter, TRACO, TMU3-24xx, 3W, Rev. November 10. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tmu3.pdf) +DCDC-Converter TRACO TMU3 THT SIP-4 3W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TOS06-05SIL_THT +DCDC-Converter, TRACO, TOS06-05SIL, 6A, Rev. March 20. 2024 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tos06sil.pdf) +DCDC-Converter POL TRACO TOS06SIL 2.54MM THT SIP-9 6A +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TOS06-12SIL_THT +DCDC-Converter, TRACO, TOS06-12SIL, 6A, Rev. March 20. 2024 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tos06sil.pdf) +DCDC-Converter POL TRACO TOS06SIL 2.54MM THT SIP-9 6A +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TRI1-xxxx_THT +DCDC-Converter, TRACO, TRI1-xxxx, 1W, Rev. November 13. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tri1.pdf) +DCDC-Converter TRACO TRI1 THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TSR-1_THT +DCDC-Converter, TRACO, TSR 1-xxxx +DCDC-Converter TRACO TSR-1 +0 +3 +3 +Converter_DCDC +Converter_DCDC_TRACO_TSR1-xxxxE_THT +DCDC-Converter, TRACO, TSR1-xxxxE, 1A, Rev. October 31. 2023 (Script generated with StandardBox.py) (https://www.tracopower.com/products/tsr1e.pdf) +DCDC-Converter SWITCHING-REGULATOR STEP-DOWN TRACO TSR1E 2.54MM THT SIP-3 1A +0 +3 +3 +Converter_DCDC +Converter_DCDC_XP_POWER-IA48xxD_THT +XP_POWER IA48xxD, DIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IA48xxD DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IA48xxS_THT +XP_POWER IA48xxS, SIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IA48xxS SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IAxxxxD_THT +XP_POWER IAxxxxD, DIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IAxxxxD DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IAxxxxS_THT +XP_POWER IAxxxxS, SIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IAxxxxS SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxDH_THT +XP_POWER IHxxxxDH, DIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxDH DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxD_THT +XP_POWER IHxxxxD, DIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxD DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxSH_THT +XP_POWER IHxxxxSH, SIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxSH SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxS_THT +XP_POWER IHxxxxS, SIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxS SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-ISU02_SMD +DCDC-Converter, XP POWER, ISU02 Series, 2W Single and Dual Output, 1500VDC Isolation, 19.0x17.0x8.7mm https://www.xppower.com/Portals/0/pdfs/SF_ISU02.pdf +DCDC SMD XP POWER ISU02 +0 +7 +7 +Converter_DCDC +Converter_DCDC_XP_POWER-ITQxxxxS-H_THT +XP_POWER ITQxxxxS-H, SIP, (https://www.xppower.com/pdfs/SF_ITQ.pdf), generated with kicad-footprint-generator +XP_POWER ITQxxxxS-H SIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-ITXxxxxSA_THT +XP_POWER ITXxxxxSA, SIP, (https://www.xppower.com/pdfs/SF_ITX.pdf), generated with kicad-footprint-generator +XP_POWER ITXxxxxSA SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-ITxxxxxS_THT +XP_POWER ITxxxxxS, SIP, (https://www.xppower.com/portals/0/pdfs/SF_ITX.pdf https://www.xppower.com/portals/0/pdfs/SF_ITQ.pdf), generated with kicad-footprint-generator +XP_POWER ITxxxxxS SIP DCDC-Converter +0 +7 +7 +Converter_DCDC +Converter_DCDC_XP_POWER_JTDxxxxxxx_THT +XP Power JTD Series DC-DC Converter +DCDC Isolated +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER_JTExxxxDxx_THT +DCDC-Converter, XP POWER, Type JTE06 Series, Dual Output +DCDC-Converter XP_POWER JTE06 Dual +0 +8 +8 +Converter_DCDC +Converter_DCDC_muRata_MEJ1DxxxxSC_THT +muRata MEJ1DxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 1W, dual output, SIP package style, https://power.murata.com/data/power/ncl/kdc_mej1.pdf +muRata MEJ1D DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_muRata_MEJ1SxxxxSC_THT +muRata MEJ1SxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 1W, single output, SIP package style, https://power.murata.com/data/power/ncl/kdc_mej1.pdf +muRata MEJ1S DCDC-Converter +0 +4 +4 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +2 +2 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style1 +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +3 +3 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style2 +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +5 +3 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Vertical +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +2 +2 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +2 +2 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style1 +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +3 +3 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style2 +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +5 +3 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Vertical +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +2 +2 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +2 +2 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style1 +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +3 +3 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style2 +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +5 +3 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Vertical +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +2 +2 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +2 +2 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style1 +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +3 +3 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style2 +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +5 +3 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Vertical +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +2 +2 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +2 +2 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style1 +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +3 +3 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style2 +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +5 +3 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Vertical +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +2 +2 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +2 +2 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style1 +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +3 +3 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style2 +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +5 +3 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Vertical +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +2 +2 +Crystal +Crystal_HC18-U_Horizontal +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC18-U_Horizontal_1EP_style1 +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC18-U_Horizontal_1EP_style2 +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC18-U_Vertical +Crystal THT HC-18/U, http://5hertz.com/pdfs/04404_D.pdf +THT crystalHC-18/U +0 +2 +2 +Crystal +Crystal_HC33-U_Horizontal +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC33-U_Horizontal_1EP_style1 +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC33-U_Horizontal_1EP_style2 +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC33-U_Vertical +Crystal THT HC-33/U, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystalHC-33/U +0 +2 +2 +Crystal +Crystal_HC35-U +Crystal, Quarz, HC35/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/TO71xx.pdf +Crystal Quarz HC35/U +0 +3 +3 +Crystal +Crystal_HC49-4H_Vertical +Crystal THT HC-49-4H http://5hertz.com/pdfs/04404_D.pdf +THT crystalHC-49-4H +0 +2 +2 +Crystal +Crystal_HC49-U-3Pin_Vertical +Crystal THT HC-49/U, 3pin-version, http://www.raltron.com/products/pdfspecs/crystal_hc_49_45_51.pdf +THT crystalHC-49/U +0 +3 +3 +Crystal +Crystal_HC49-U_Horizontal +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC49-U_Horizontal_1EP_style1 +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC49-U_Horizontal_1EP_style2 +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC49-U_Vertical +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystalHC-49/U +0 +2 +2 +Crystal +Crystal_HC50_Horizontal +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC50_Horizontal_1EP_style1 +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC50_Horizontal_1EP_style2 +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC50_Vertical +Crystal THT HC-50, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystalHC-50 +0 +2 +2 +Crystal +Crystal_HC51-U_Vertical +Crystal THT HC-51/U, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystalHC-51/U +0 +2 +2 +Crystal +Crystal_HC51_Horizontal +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC51_Horizontal_1EP_style1 +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC51_Horizontal_1EP_style2 +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-6mm_Horizontal +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC52-6mm_Horizontal_1EP_style1 +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC52-6mm_Horizontal_1EP_style2 +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-6mm_Vertical +Crystal THT HC-52/6mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystalHC-49/U +0 +2 +2 +Crystal +Crystal_HC52-8mm_Horizontal +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC52-8mm_Horizontal_1EP_style1 +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC52-8mm_Horizontal_1EP_style2 +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-8mm_Vertical +Crystal THT HC-52/8mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystalHC-49/U +0 +2 +2 +Crystal +Crystal_HC52-U-3Pin_Vertical +Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystalHC-52/U +0 +3 +3 +Crystal +Crystal_HC52-U_Horizontal +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC52-U_Horizontal_1EP_style1 +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC52-U_Horizontal_1EP_style2 +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-U_Vertical +Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal HC-52/U +0 +2 +2 +Crystal +Crystal_Round_D1.0mm_Vertical +Crystal THT DS10 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +2 +2 +Crystal +Crystal_Round_D1.5mm_Vertical +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +2 +2 +Crystal +Crystal_Round_D2.0mm_Vertical +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +2 +2 +Crystal +Crystal_Round_D3.0mm_Vertical +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +2 +2 +Crystal +Crystal_SMD_0603-2Pin_6.0x3.5mm +SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, 6.0x3.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering +SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_0603-4Pin_6.0x3.5mm +SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, 6.0x3.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_0603-4Pin_6.0x3.5mm_HandSoldering +SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, hand-soldering, 6.0x3.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_2012-2Pin_2.0x1.2mm +SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_2012-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_2016-4Pin_2.0x1.6mm +SMD Crystal SERIES SMD2016/4 http://www.q-crystal.com/upload/5/2015552223166229.pdf, 2.0x1.6mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_2520-4Pin_2.5x2.0mm +SMD Crystal SERIES SMD2520/4 http://www.newxtal.com/UploadFiles/Images/2012-11-12-09-29-09-776.pdf, 2.5x2.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_3215-2Pin_3.2x1.5mm +SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf +SMD SMT Crystal +0 +2 +2 +Crystal +Crystal_SMD_3225-4Pin_3.2x2.5mm +SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_5032-2Pin_5.0x3.2mm +SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_5032-2Pin_5.0x3.2mm_HandSoldering +SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_5032-4Pin_5.0x3.2mm +SMD Crystal SERIES SMD2520/4 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_7050-2Pin_7.0x5.0mm +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_7050-2Pin_7.0x5.0mm_HandSoldering +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_7050-4Pin_7.0x5.0mm +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm_HandSoldering +Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM3B-4Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3B http://www.abracon.com/Resonators/abm3b.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM3C-4Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3C http://www.abracon.com/Resonators/abm3c.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM7-2Pin_6.0x3.5mm +SMD Crystal Abracon ABM7, https://abracon.com/Resonators/abm7.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM8AIG-4Pin_3.2x2.5mm +Abracon Miniature Ceramic Smd Crystal ABM8AIG https://abracon.com/AIGcrystals/ABM8AIG.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM8G-4Pin_3.2x2.5mm +Abracon Miniature Ceramic Smd Crystal ABM8G http://www.abracon.com/Resonators/ABM8G.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM10-4Pin_2.5x2.0mm +Abracon Miniature Ceramic Smd Crystal ABM10 http://www.abracon.com/Resonators/ABM10.pdf +SMD SMT crystal Abracon ABM10 +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABS25-4Pin_8.0x3.8mm +Abracon Miniature Ceramic SMD Crystal ABS25 https://abracon.com/Resonators/abs25.pdf, 8.0x3.8mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_ECS_CSM3X-2Pin_7.6x4.1mm +http://www.ecsxtal.com/store/pdf/CSM-3X.pdf +Crystal CSM-3X +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm +SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, 3.2x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, hand-soldering, 3.2x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm +SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm_HandSoldering +SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm +SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm_HandSoldering +SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm +SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm_HandSoldering +SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm +SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm +SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, 2.5x2.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm_HandSoldering +SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, hand-soldering, 2.5x2.0mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm +crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, 7.5x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm_HandSoldering +crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, hand-soldering, 7.5x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm_HandSoldering +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-4Pin_7.0x5.0mm +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_FrontierElectronics_FM206 +SMD Watch Crystal FrontierElectronics FM206 6.0mm length 1.9mm diameter http://www.chinafronter.com/wp-content/uploads/2013/12/FM206.pdf +['FM206'] +0 +3 +3 +Crystal +Crystal_SMD_G8-2Pin_3.2x1.5mm +SMD Crystal G8, 3.2x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_G8-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal G8, hand-soldering, 3.2x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_HC49-SD +SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, 11.4x4.7mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_HC49-SD_HandSoldering +SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, hand-soldering, 11.4x4.7mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm +SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, 8.0x3.7mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_HandSoldering +SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, hand-soldering, 8.0x3.7mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm +SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, 5.0x1.9mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm_HandSoldering +SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, hand-soldering, 5.0x1.9mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm +SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, 4.1x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm_HandSoldering +SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, hand-soldering, 4.1x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm +SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC7V-T1A.pdf, 3.2x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf, hand-soldering, 3.2x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm +SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC8V-T1A.pdf, 2.0x1.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf, hand-soldering, 2.0x1.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm +SMD Crystal MicroCrystal CM9V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CM9V-T1A.pdf, 1.6x1.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm_HandSoldering +SMD Crystal MicroCrystal CM9V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf, hand-soldering, 1.6x1.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_MS1V-T1K +SMD Watch Crystal MicroCrystal MS1V-T1K 6.1mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS1V-T1K.pdf +['MS1V-T1K'] +0 +3 +3 +Crystal +Crystal_SMD_MicroCrystal_MS3V-T1R +SMD Watch Crystal MicroCrystal MS3V-T1R 5.2mm length 1.4mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS3V-T1R.pdf +['MS3V-T1R'] +0 +3 +3 +Crystal +Crystal_SMD_Qantek_QC5CB-2Pin_5x3.2mm +SMD Crystal Qantek QC5CB, https://www.qantek.com/tl_files/products/crystals/QC5CB.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_FA128-4Pin_2.0x1.6mm +crystal Epson Toyocom FA-128 (https://support.epson.biz/td/api/doc_check.php?dl=brief_FA-128&lang=en), 2x1.6mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm +crystal Epson Toyocom FA-238 https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm +crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom FA-238 series http://www.mouser.com/ds/2/137/1721499-465440.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 11.7x4.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm_HandSoldering +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 11.7x4.0mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm +SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm_HandSoldering +SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm_HandSoldering +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm +SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 6.7x1.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm_HandSoldering +SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 6.7x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm +SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 7.1x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm_HandSoldering +SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 7.1x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm +SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 8.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm_HandSoldering +SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 8.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm +SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm_HandSoldering +SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm +SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm_HandSoldering +SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm +crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_TXC_7A-2Pin_5x3.2mm +SMD Crystal TXC 7A http://txccrystal.com/images/pdf/7a.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm +SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm +SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_TXC_AX_8045-2Pin_8.0x4.5mm +http://www.txccrystal.com/images/pdf/ax-automotive.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Resonator-2Pin_W6.0mm_H3.0mm +Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-2Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-2Pin_W8.0mm_H3.5mm +Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-2Pin_W10.0mm_H5.0mm +Ceramic Resomator/Filter 10.0x5.0 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-3Pin_W6.0mm_H3.0mm +Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator-3Pin_W8.0mm_H3.5mm +Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator-3Pin_W10.0mm_H5.0mm +Ceramic Resomator/Filter 10.0x5.0mm^2 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator_Murata_CSTLSxxxG-3Pin_W8.0mm_H3.0mm +Ceramic Resomator/Filter Murata CSTLSxxxG, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=8.0x3.0mm^2 package, package length=8.0mm, package width=3.0mm, 3 pins +THT ceramic resonator filter CSTLSxxxG +0 +3 +3 +Crystal +Resonator_Murata_CSTLSxxxX-3Pin_W5.5mm_H3.0mm +Ceramic Resomator/Filter Murata CSTLSxxxX, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=5.5x3.0mm^2 package, package length=5.5mm, package width=3.0mm, 3 pins +THT ceramic resonator filter CSTLSxxxX +0 +3 +3 +Crystal +Resonator_Murata_DSN6-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter Murata DSN6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins +THT ceramic resonator filter DSN6 +0 +3 +3 +Crystal +Resonator_Murata_DSS6-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter Murata DSS6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins +THT ceramic resonator filter DSS6 +0 +3 +3 +Crystal +Resonator_SMD-3Pin_7.2x3.0mm +SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, 7.2x3.0mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD-3Pin_7.2x3.0mm_HandSoldering +SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, hand-soldering, 7.2x3.0mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Crystal +Resonator_SMD_Murata_CDSCB-2Pin_4.5x2.0mm +SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 4.5x2.0mm^2 package +SMD SMT ceramic resonator filter filter +0 +2 +2 +Crystal +Resonator_SMD_Murata_CDSCB-2Pin_4.5x2.0mm_HandSoldering +SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 4.5x2.0mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +2 +2 +Crystal +Resonator_SMD_Murata_CSTCR_4.5x2x1.15mm +Piezoelectric Ceramic Resonator, 4.5mm x 2mm x 1.15mm, https://www.murata.com/products/productdata/8801051639838/SPEC-CSTCR4M00G53-R0.pdf?1517839209000 +Crystal Oscillator +0 +9 +3 +Crystal +Resonator_SMD_Murata_CSTxExxV-3Pin_3.0x1.1mm +SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf +SMD SMT ceramic resonator filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_CSTxExxV-3Pin_3.0x1.1mm_HandSoldering +SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf +SMD SMT ceramic resonator filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFECV-3Pin_6.9x2.9mm +SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 6.9x2.9mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFECV-3Pin_6.9x2.9mm_HandSoldering +SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 6.9x2.9mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFSKA-3Pin_7.9x3.8mm +SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFSKA-3Pin_7.9x3.8mm_HandSoldering +SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Crystal +Resonator_SMD_Murata_TPSKA-3Pin_7.9x3.8mm +SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_TPSKA-3Pin_7.9x3.8mm_HandSoldering +SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Diode_SMD +D_0201_0603Metric +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +diode +0 +4 +2 +Diode_SMD +D_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +diode handsolder +0 +4 +2 +Diode_SMD +D_0402_1005Metric +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_0603_1608Metric +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_0805_2012Metric +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_01005_0402Metric +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +diode +0 +4 +2 +Diode_SMD +D_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +diode handsolder +0 +4 +2 +Diode_SMD +D_1206_3216Metric +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_1210_3225Metric +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_1812_4532Metric +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2010_5025Metric +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2114_3652Metric +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2114_3652Metric_Pad1.85x3.75mm_HandSolder +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2512_6332Metric +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_3220_8050Metric +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_3220_8050Metric_Pad2.65x5.15mm_HandSolder +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_MELF +Diode, MELF,, +Diode MELF +0 +2 +2 +Diode_SMD +D_MELF-RM10_Universal_Handsoldering +Diode, Universal, MELF, RM10, Handsoldering, SMD, Thruhole, +Diode Universal MELF RM10 Handsoldering SMD Thruhole +0 +2 +2 +Diode_SMD +D_MELF_Handsoldering +Diode MELF Handsoldering +Diode MELF Handsoldering +0 +2 +2 +Diode_SMD +D_MicroMELF +Diode, MicroMELF, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf +MicroMELF Diode +0 +2 +2 +Diode_SMD +D_MicroMELF_Handsoldering +Diode, MicroMELF, Hand Soldering, http://www.vishay.com/docs/85597/bzm55.pdf +MicroMELF Diode +0 +2 +2 +Diode_SMD +D_MicroSMP_AK +Diode MicroSMP (DO-219AD), large-pad cathode, https://www.vishay.com/docs/89020/mss1p3l.pdf +Diode MicroSMP (DO-219AD) +0 +2 +2 +Diode_SMD +D_MicroSMP_KA +Diode MicroSMP (DO-219AD), large-pad anode, https://www.vishay.com/docs/89457/msmp6a.pdf +Diode MicroSMP (DO-219AD) +0 +2 +2 +Diode_SMD +D_MiniMELF +Diode Mini-MELF (SOD-80) +Diode Mini-MELF (SOD-80) +0 +2 +2 +Diode_SMD +D_MiniMELF_Handsoldering +Diode Mini-MELF (SOD-80) Handsoldering +Diode Mini-MELF (SOD-80) Handsoldering +0 +2 +2 +Diode_SMD +D_PowerDI-5 +PowerDI,Diode,Vishay,https://www.diodes.com/assets/Package-Files/PowerDI5.pdf +PowerDI diode vishay +0 +3 +2 +Diode_SMD +D_PowerDI-123 +http://www.diodes.com/_files/datasheets/ds30497.pdf +PowerDI diode vishay +0 +2 +2 +Diode_SMD +D_Powermite2_AK +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341) +PowerMite2 +0 +2 +2 +Diode_SMD +D_Powermite2_KA +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341) +PowerMite2 +0 +2 +2 +Diode_SMD +D_Powermite3 +Microsemi Powermite 3 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5340) +PowerMite3 +0 +3 +3 +Diode_SMD +D_Powermite_AK +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF) +Powermite +0 +2 +2 +Diode_SMD +D_Powermite_KA +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF) +Powermite +0 +2 +2 +Diode_SMD +D_QFN_3.3x3.3mm_P0.65mm +QFN, diode, 3.3x3.3x1mm (https://www.wolfspeed.com/media/downloads/846/C3D1P7060Q.pdf) +diode qfn 3.3 +0 +3 +2 +Diode_SMD +D_SC-80 +JEITA SC-80 +SC-80 +0 +2 +2 +Diode_SMD +D_SC-80_HandSoldering +JEITA SC-80 +SC-80 +0 +2 +2 +Diode_SMD +D_SMA +Diode SMA (DO-214AC) +Diode SMA (DO-214AC) +0 +2 +2 +Diode_SMD +D_SMA-SMB_Universal_Handsoldering +Diode, Universal, SMA (DO-214AC) or SMB (DO-214AA), Handsoldering, +Diode Universal SMA (DO-214AC) SMB (DO-214AA) Handsoldering +0 +2 +2 +Diode_SMD +D_SMA_Handsoldering +Diode SMA (DO-214AC) Handsoldering +Diode SMA (DO-214AC) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB +Diode SMB (DO-214AA) +Diode SMB (DO-214AA) +0 +2 +2 +Diode_SMD +D_SMB-SMC_Universal_Handsoldering +Diode, Universal, SMB(DO-214AA) or SMC (DO-214AB), Handsoldering, +Diode Universal SMB(DO-214AA) SMC (DO-214AB) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB_Handsoldering +Diode SMB (DO-214AA) Handsoldering +Diode SMB (DO-214AA) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB_Modified +Diode SMB (DO-214AA) Modified (http://www.littelfuse.com/~/media/electronics/datasheets/sidactors/littelfuse_sidactor_battrax_positive_negative_modified_do_214_datasheet.pdf.pdf) +Diode SMB (DO-214AA) +0 +3 +3 +Diode_SMD +D_SMC +Diode SMC (DO-214AB) +Diode SMC (DO-214AB) +0 +2 +2 +Diode_SMD +D_SMC-RM10_Universal_Handsoldering +Diode, Universal, SMC (DO-214AB), RM10, Handsoldering, SMD, Thruhole +Diode Universal SMC (DO-214AB) RM10 Handsoldering SMD Thruhole +0 +2 +2 +Diode_SMD +D_SMC_Handsoldering +Diode SMC (DO-214AB) Handsoldering +Diode SMC (DO-214AB) Handsoldering +0 +2 +2 +Diode_SMD +D_SMF +Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf +Diode SMF (DO-214AB) +0 +2 +2 +Diode_SMD +D_SMP_DO-220AA +SMP DO-220AA (https://www.vishay.com/docs/89016/esh2pb.pdf) +SMP DO-220AA +0 +2 +2 +Diode_SMD +D_SOD-110 +SOD-110 +SOD-110 +0 +2 +2 +Diode_SMD +D_SOD-123 +SOD-123 +SOD-123 +0 +2 +2 +Diode_SMD +D_SOD-123F +D_SOD-123F +D_SOD-123F +0 +2 +2 +Diode_SMD +D_SOD-128 +D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf +D_SOD-128 +0 +2 +2 +Diode_SMD +D_SOD-323 +SOD-323 +SOD-323 +0 +2 +2 +Diode_SMD +D_SOD-323F +SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf +SOD-323F +0 +2 +2 +Diode_SMD +D_SOD-323_HandSoldering +SOD-323 +SOD-323 +0 +2 +2 +Diode_SMD +D_SOD-523 +http://www.diodes.com/datasheets/ap02001.pdf p.144 +Diode SOD523 +0 +2 +2 +Diode_SMD +D_SOD-882 +SOD-882, DFN1006-2, body 1.0 x 0.6 x 0.48mm, pitch 0.65mm, https://assets.nexperia.com/documents/package-information/SOD882.pdf +Diode SOD882 DFN1006-2 +0 +4 +2 +Diode_SMD +D_SOD-882D +SOD-882D, DFN1006D-2, body 1.0 x 0.6 x 0.4mm, pitch 0.65mm, https://assets.nexperia.com/documents/data-sheet/PESD5V0L1ULD.pdf +Diode SOD882D DFN1006D-2 +0 +4 +2 +Diode_SMD +D_SOD-923 +https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4 +Diode SOD923 +0 +2 +2 +Diode_SMD +D_TUMD2 +ROHM - TUMD2 +TUMD2 +0 +2 +2 +Diode_SMD +Diode_Bridge_Bourns_CD-DF4xxS +8.1x10.5mm, 4A, single phase bridge rectifier, https://www.bourns.com/docs/Product-Datasheets/CD-DF4xxSL.pdf +Surface Mount Bridge Rectifier Diode +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_ABS +SMD diode bridge ABS (Diotec), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/abs2.pdf +ABS MBLS +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_MicroDil_3.0x3.0x1.8mm +SMD package Diotec Diotec MicroDil, body 3.0x3.0x1.8mm (e.g. diode bridge), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/mys40.pdf +Diotec MicroDil diode bridge +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_SO-DIL-Slim +SMD diode bridge Diotec SO-DIL Slim, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40fs.pdf +DFS SO-DIL Slim +0 +4 +4 +Diode_SMD +Diode_Bridge_OnSemi_SDIP-4L +SMD diode bridge OnSemi SDIP-4L, see https://www.onsemi.com/pdf/datasheet/df10s1-d.pdf +OnSemi Diode Bridge SDIP-4L +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_DFS +SMD diode bridge DFS, see http://www.vishay.com/docs/88854/padlayouts.pdf +DFS +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_DFSFlat +SMD diode bridge Low Profile DFS "Flat", see http://www.vishay.com/docs/88874/dfl15005.pdf +DFS +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_MBLS +SMD diode bridge MBLS, see http://www.vishay.com/docs/89959/mbl104s.pdf http://www.vishay.com/docs/88854/padlayouts.pdf +DFS +0 +4 +4 +Diode_SMD +Infineon_SG-WLL-2-3_0.58x0.28_P0.36mm +Infineon SG-WLL-2-3, 0.58x0.28x0.15mm, https://www.infineon.com/dgdl/Infineon-SG-WLL-2-3_SPO_PDF-Package-v02_00-EN.pdf?fileId=5546d46271bf4f9201723159ce71239d +Infineon WLL +0 +4 +2 +Diode_SMD +Littelfuse_PolyZen-LS +http://m.littelfuse.com/~/media/electronics/datasheets/polyzen_devices/littelfuse_polyzen_standard_polyzen_catalog_datasheet.pdf.pdf +Diode Polymer Protected Zener Diode Littelfuse LS +0 +3 +3 +Diode_SMD +Nexperia_CFP3_SOD-123W +Nexperia CFP3 (SOD-123W), https://assets.nexperia.com/documents/outline-drawing/SOD123W.pdf +CFP3 SOD-123W +0 +2 +2 +Diode_SMD +Nexperia_DSN0603-2_0.6x0.3mm_P0.4mm +SOD962-2 silicon, leadless ultra small package; 2 terminals; 0.4 mm pitch; 0.6 mm x 0.3 mm x 0.3 mm body (https://assets.nexperia.com/documents/package-information/SOD962-2.pdf https://www.nexperia.com/packages/SOD962-2.html) +TVS protection diodes +0 +2 +2 +Diode_SMD +Nexperia_DSN1608-2_1.6x0.8mm +Diode SMD DSN1608, 1.6 x 0.8 x 0.29 mm, https://assets.nexperia.com/documents/package-information/SOD964.pdf +diode SOD964 SOD-964 +0 +2 +2 +Diode_SMD +ST_QFN-2L_1.6x1.0mm +Unidirectional high power transient voltage suppressor (https://www.st.com/resource/en/datasheet/esda7p120-1u1m.pdf) +QFN-2L Diode +0 +2 +2 +Diode_SMD +Vishay_SMPA +Diode SMPA (DO-221BC), https://www.vishay.com/docs/87659/v8pa10.pdf +Diode SMPA (DO-221BC) +0 +2 +2 +Diode_THT +D_5KPW_P7.62mm_Vertical_AnodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KPW_P7.62mm_Vertical_KathodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KPW_P12.70mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KP_P7.62mm_Vertical_AnodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P7.62mm_Vertical_KathodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P10.16mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P12.70mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5W_P5.08mm_Vertical_AnodeUp +Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P5.08mm_Vertical_KathodeUp +Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P10.16mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P12.70mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_A-405_P2.54mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P2.54mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P5.08mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P5.08mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P7.62mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P10.16mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P12.70mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-15_P2.54mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P2.54mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P3.81mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P3.81mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P5.08mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P5.08mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P10.16mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P12.70mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P15.24mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-27_P5.08mm_Vertical_AnodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P5.08mm_Vertical_KathodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P12.70mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P15.24mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P7.62mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P10.16mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P12.70mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P7.62mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P10.16mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P12.70mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P7.62mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P10.16mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P12.70mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-201AD_P3.81mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P3.81mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P5.08mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P5.08mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P12.70mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P15.24mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AE_P3.81mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P3.81mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P5.08mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P5.08mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P12.70mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P15.24mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201_P3.81mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P3.81mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P5.08mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P5.08mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P12.70mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P15.24mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-247_Horizontal_TabDown +Diode, DO-247 series, Horizontal, TabDown, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_DO-247_Horizontal_TabUp +Diode, DO-247 series, Horizontal, TabUp, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_DO-247_Vertical +Diode, DO-247 series, Vertical, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_P600_R-6_P7.62mm_Vertical_AnodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P7.62mm_Vertical_KathodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P12.70mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P20.00mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_T-1_P2.54mm_Vertical_AnodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P2.54mm_Vertical_KathodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P5.08mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P10.16mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P12.70mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +Diode_Bridge_15.1x15.1x6.3mm_P10.9mm +Single phase bridge rectifier case 15.1x15.1mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xxS +0 +4 +4 +Diode_THT +Diode_Bridge_15.2x15.2x6.3mm_P10.9mm +Single phase bridge rectifier case 15.2x15.2mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc600.pdf +Diode Bridge KBPC6xx +0 +4 +4 +Diode_THT +Diode_Bridge_15.7x15.7x6.3mm_P10.8mm +Single phase bridge rectifier case 15.7x15.7 +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_16.7x16.7x6.3mm_P10.8mm +Single phase bridge rectifier case 16.7x16.7 +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_19.0x3.5x10.0mm_P5.0mm +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_19.0x19.0x6.8mm_P12.7mm +Single phase bridge rectifier case 19x19mm, pitch 12.7mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xx +0 +4 +4 +Diode_THT +Diode_Bridge_28.6x28.6x7.3mm_P18.0mm_P11.6mm +Single phase bridge rectifier case 28.6x28.6mm, pitch 18.0mm & 11.6mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc1500fw.pdf +Diode Bridge KBPCxxxxWP +0 +4 +4 +Diode_THT +Diode_Bridge_32.0x5.6x17.0mm_P10.0mm_P7.5mm +Diotec 32x5.6x17mm rectifier package, 7.5mm/10mm pitch, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40c3700.pdf +Diotec rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Comchip_SCVB-L +Three phase, Bridge, Rectifier, https://www.comchiptech.com/admin/files/product/SC35VB80S-G%20Thru506369.%20SC35VB160S-G%20RevB.pdf +diode module +0 +5 +5 +Diode_THT +Diode_Bridge_DIGITRON_KBPC_T +Single phase, Bridge rectifier, 28.614x28.614mm, case KBPC_T(FP), https://www.digitroncorp.com/Digitron/media/Files/Datasheets/KBPC15005-SERIES.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_DIP-4_W5.08mm_P2.54mm +4-lead dip package for diode bridges, row spacing 5.08mm, pin-spacing 2.54mm, see http://www.vishay.com/docs/88898/b2m.pdf +DIL DIP PDIP 5.08mm 2.54 +0 +4 +4 +Diode_THT +Diode_Bridge_DIP-4_W7.62mm_P5.08mm +4-lead dip package for diode bridges, row spacing 7.62 mm (300 mils), see http://cdn-reichelt.de/documents/datenblatt/A400/HDBL101G_20SERIES-TSC.pdf +DIL DIP PDIP 5.08mm 7.62mm 300mil +0 +4 +4 +Diode_THT +Diode_Bridge_GeneSiC_KBPC_T +Single phase, Bridge rectifier, 28.55x28.55mm, case KBPC_T(FP), https://www.diodemodule.com/bridge-rectifier/kbpc/kbpc1501t.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_GeneSiC_KBPC_W +Single phase, Bridge Rectifier, 28.55x28.55mm, case KBPC_W(WP), https://www.diodemodule.com/bridge-rectifier/kbpc/kbpc15005w.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_IXYS_GUFP +Three phase, Bridge, Rectifier +diode module +0 +5 +5 +Diode_THT +Diode_Bridge_Round_D8.9mm +4-lead round diode bridge package, diameter 8.9mm, pin pitch 5.08mm, see http://cdn-reichelt.de/documents/datenblatt/A400/W005M-W10M_SEP.PDF +diode bridge 8.9mm 8.85mm WOB pitch 5.08mm +0 +4 +4 +Diode_THT +Diode_Bridge_Round_D9.0mm +4-lead round diode bridge package, diameter 9.0mm, pin pitch 5.0mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40r.pdf +diode bridge 9.0mm 8.85mm WOB pitch 5.0mm +0 +4 +4 +Diode_THT +Diode_Bridge_Round_D9.8mm +4-lead round diode bridge package, diameter 9.8mm, pin pitch 5.08mm, see http://www.vishay.com/docs/88769/woo5g.pdf +diode bridge 9.8mm WOG pitch 5.08mm +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_GBL +Vishay GBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88609/gbl005.pdf +Vishay GBL rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_GBU +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBL +Vishay KBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88655/kbl005.pdf +Vishay KBL rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPC1 +Single phase bridge rectifier case KBPC1, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPC6 +Single phase bridge rectifier case KBPC6, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPM +Vishay KBM rectifier package, 3.95mm pitch (http://www.farnell.com/datasheets/2238158.pdf, http://www.cdil.com/s/kbp2005_.pdf) +Vishay KBM rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBU +Vishay KBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88656/kbu4.pdf +Vishay KBU rectifier diode bridge +0 +4 +4 +Display +AG12864E +STN/FSTN LCD 128x64 dot https://www.digchip.com/datasheets/parts/datasheet/1121/AG-12864E-pdf.php +AG12864E Graphics Display 128x64 Ampire +0 +24 +20 +Display +Adafruit_SSD1306 +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI https://learn.adafruit.com/monochrome-oled-breakouts/downloads +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI +0 +8 +8 +Display +Adafruit_SSD1306_No_Mounting_Holes +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI https://learn.adafruit.com/monochrome-oled-breakouts/downloads +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI +0 +8 +8 +Display +CR2013-MI2120 +CR2013-MI2120 ILI9341 LCD Breakout http://pan.baidu.com/s/11Y990 +CR2013-MI2120 ILI9341 LCD Breakout +0 +18 +14 +Display +EA-eDIP128B-XXX +LCD-graphical display with LED backlight 128x64 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip128-6e.pdf +LCD-graphical display with LED backlight 128x64 RS-232 I2C or SPI +0 +32 +32 +Display +EA_DOGL128-6 +Graphical,Display,LCD,128x64 https://www.lcd-module.com/eng/pdf/grafik/dogl128-6e.pdf +EA DOGL128 +0 +26 +26 +Display +EA_DOGM128-6 +Graphical,Display,LCD,128x64 https://www.lcd-module.de/eng/pdf/grafik/dogm128e.pdf +EA DOGM128-6 +0 +26 +26 +Display +EA_DOGS104X-A +LCD 4x10 character 3.3V VDD I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/doma/dogs104e.pdf +LCD 4x10 character 3.3V VDD I2C or SPI +0 +14 +14 +Display +EA_DOGXL160-7 +Grapchical,Display,LCD,160x104 http://www.lcd-module.com/eng/pdf/grafik/dogxl160-7e.pdf +EA_DOGXL160-7 +0 +22 +22 +Display +EA_DOGXL160-7_Backlight +Grapchical,Display,LCD,160x104 http://www.lcd-module.com/eng/pdf/grafik/dogxl160-7e.pdf +EA_DOGXL160-7_Backlight +0 +22 +22 +Display +EA_T123X-I2C +http://www.lcd-module.de/pdf/doma/t123-i2c.pdf +3 Line 12 character wide alpha numeric LCD +0 +6 +6 +Display +EA_eDIP160-XXX +LCD-graphical display with LED backlight 160x104 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip160-7e.pdf +LCD-graphical display with LED backlight 160x104 RS-232 I2C or SPI +0 +40 +40 +Display +EA_eDIP240-XXX +LCD graphical display LED backlight 240x128 http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip240-7e.pdf +LCD graphical display LED backlight 240x128 +0 +40 +40 +Display +EA_eDIP320X-XXX +LCD display 320x340 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip320-8e.pdf +LCD display 320x340 RS-232 I2C or SPI +0 +48 +48 +Display +EA_eDIPTFT32-XXX +TFT-graphic display 320x240 16 bit colour with led backlight http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft32-ae.pdf +TFT-graphic display 320x240 16 bit colour with led backlight +0 +40 +40 +Display +EA_eDIPTFT43-ATC +http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft43-ae.pdf +TFT graphical display 480x272 16-bit colour with LED backlight +0 +40 +40 +Display +EA_eDIPTFT43-XXX +TFT graphical display 480x272 16-bit colour with LED backlight http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft43-ae.pdf +TFT graphical display 480x272 16-bit colour with LED backlight +0 +40 +40 +Display +EA_eDIPTFT57-XXX +http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft57-ae.pdf +TFT-graphic display 640x480 16 bit colour +0 +48 +48 +Display +EA_eDIPTFT70-ATC +TFT-graphical display 800x480 16-bit colours with capacitive touch panel http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft70-ae.pdf +TFT-graphical display 800x480 16-bit colours with capacitive touch panel +0 +48 +48 +Display +EA_eDIPTFT70-XXX +TFT-graphical display 800x480 16-bit colours http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft70-ae.pdf +TFT-graphical display 800x480 16-bit colours and touch display +0 +48 +48 +Display +ERM19264 +STN/FSTN LCD 192x64 dot https://www.buydisplay.com/download/manual/ERM19264-1_Series_Datasheet.pdf +ERM19264 Graphics Display 192x64 +0 +20 +20 +Display +HDSM-441B_HDSM-443B +2 Digit 7 segemnt blue LED, right hand decimal, https://docs.broadcom.com/docs/AV02-1589EN +2 Digit 7 segment blue LED +0 +10 +10 +Display +HDSM-541B_HDSM-543B +2 digit 7 segement blue LED with right hand decimal, https://docs.broadcom.com/docs/AV02-1588EN +2 digit 7 segement blue LED with right hand decimal +0 +10 +10 +Display +HDSP-48xx +10-Element Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Bar Graph Array +0 +20 +20 +Display +HDSP-4830 +10-Element Red Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Bar Graph Array +0 +20 +20 +Display +HDSP-4832 +10-Element Red Yellow Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Yellow Green Bar Graph Array +0 +20 +20 +Display +HDSP-4836 +10-Element Red Yellow Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Yellow Green Bar Graph Array +0 +20 +20 +Display +HDSP-4840 +10-Element Yellow Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Yellow Bar Graph Array +0 +20 +20 +Display +HDSP-4850 +10-Element Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Green Bar Graph Array +0 +20 +20 +Display +HLCP-J100 +10-Element Red Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Bar Graph Array +0 +20 +20 +Display +HY1602E +http://www.icbank.com/data/ICBShop/board/HY1602E.pdf +LCD 16x2 Alphanumeric 16pin +0 +20 +16 +Display +LCD-016N002L +16 x 2 Character LCD, http://www.vishay.com/product?docid=37299 +LCD-016N002L 16 x 2 Character LCD +0 +24 +20 +Display +LM16255 +LCD LM16255 16x2 character http://www.datasheetlib.com/datasheet/259542/lm16255_sharp-electronics.html +LCD 12x2 +0 +14 +14 +Display +NHD-0420H1Z +NHD-0420H1Z LCD http://www.newhavendisplay.com/specs/NHD-0420H1Z-FSW-GBW-33V3.pdf +NHD-0420H1Z LCD +0 +16 +16 +Display +NHD-C0220BiZ +NHD-C0220BiZ LCD http://www.newhavendisplay.com/specs/NHD-C0220BiZ-FSW-FBW-3V3M.pdf +NHD-C0220BiZ LCD +0 +10 +10 +Display +NHD-C0220BiZ-FSRGB +NHD-C0220BiZ-FSRGB LCD https://newhavendisplay.com/content/specs/NHD-C0220BiZ-FSRGB-FBW-3VM.pdf +NHD-C0220BiZ-FSRGB 2 x 20 character LCD RGB backlight +0 +12 +12 +Display +NHD-C12832A1Z-FSRGB +128x32 LCD with RGB backlight https://www.newhavendisplay.com/specs/NHD-C12832A1Z-FSRGB-FBW-3V.pdf +lcd rgb st7565 +0 +21 +21 +Display +OLED-128O064D +128x64 OLED display +display oled +0 +30 +30 +Display +RC1602A +http://www.raystar-optronics.com/down.php?ProID=18 +LCD 16x2 Alphanumeric 16pin +0 +22 +18 +Display +WC1602A +LCD 16x2 http://www.wincomlcd.com/pdf/WC1602A-SFYLYHTC06.pdf +LCD 16x2 Alphanumeric 16pin +0 +20 +16 +Display_7Segment +7SEGMENT-LED__HDSM531_HDSM533_SMD +7-Segment Display, HDSM53x, https://docs.broadcom.com/docs/AV02-0713EN +7segment LED HDSM531 HDSM533 +0 +10 +10 +Display_7Segment +7SegmentLED_LTS6760_LTS6780 +7-Segment Display, LTS67x0, http://optoelectronics.liteon.com/upload/download/DS30-2001-355/S6760jd.pdf +7Segment LED LTS6760 LTS6780 +0 +10 +10 +Display_7Segment +AD-121F2 +Single Digit 7-segment RGB LED Display, 1-inch digit height, common anode, http://usasyck.com/products/AD-121F2_cat_e.pdf +RGB LED digit +0 +22 +22 +Display_7Segment +AFF_2x7SEG-DIGIT_10mm +Afficheur 7 segments 10mm DIGIT +AFFICHEUR +0 +16 +16 +Display_7Segment +CA56-12CGKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12CGKWA(Ver.9A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12EWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-12EWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SEKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SEKWA(Ver.7A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SRWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-12SRWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SURKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SURKWA(Ver.8A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SYKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SYKWA(Ver.6A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CC56-12GWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-11GWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CC56-12YWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CC56-12YWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +D1X8K +https://ia800903.us.archive.org/24/items/CTKD1x8K/Cromatek%20D168K.pdf +Single digit 7 segment ultra bright red +0 +10 +10 +Display_7Segment +DA04-11CGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11CGKWA(Ver.6A).pdf +Dubble digit green 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SEKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SEKWA(Ver.9A).pdf +Dubble digit super bright orange 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SURKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SURKWA(Ver.10A).pdf +Dubble digit hyper red 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SYKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SYKWA(Ver.6A).pdf +Dubble digit super bright yellow 7 segment LED display +0 +16 +16 +Display_7Segment +DA56-11CGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11CGKWA(Ver.16A).pdf +Double digit seven segment green LED display +0 +18 +18 +Display_7Segment +DA56-11SEKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SEKWA(Ver.9A).pdf +Double digit seven segment super bright orange LED display +0 +18 +18 +Display_7Segment +DA56-11SURKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SURKWA(Ver.11A).pdf +Double digit seven segment hyper red LED display +0 +18 +18 +Display_7Segment +DA56-11SYKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SYKWA(Ver.11A).pdf +Double digit seven segment super bright yellow LED display +0 +18 +18 +Display_7Segment +DE113-XX-XX +http://www.display-elektronik.de/filter/DE113-RS-20_635.pdf +3 1/5 digit LOW BAT + 7-Segment LCD +0 +40 +40 +Display_7Segment +DE114-RS-20 +http://www.display-elektronik.de/filter/DE113-RS-20_635.pdf +3 1/5 digit reflective LCD LOW-BAT + 7-Segment +0 +40 +40 +Display_7Segment +DE119-XX-XX +https://www.display-elektronik.de/filter/DE119-RS-20_635.pdf +4 digit 7 segment LCD +0 +40 +40 +Display_7Segment +DE122-XX-XX +http://www.display-elektronik.de/filter/DE122-RS-20_635.pdf +6 digit 7 segment LCD +0 +50 +50 +Display_7Segment +DE152-XX-XX +https://tft-module.de/filter/DE152-RS-20_75.pdf +4 digit 7 segment LCD +0 +40 +40 +Display_7Segment +DE170-XX-XX +http://www.display-elektronik.de/filter/DE170-RS-20_75.pdf +3 1/5 digit reflective arrow bat + 7 segment LCD +0 +40 +40 +Display_7Segment +ELD_426XXXX +http://www.everlight.com/file/ProductFile/D426SYGWA-S530-E2.pdf +Double digit 7 segment brilliant yellow green LED +0 +10 +10 +Display_7Segment +HDSP-7401 +One digit 7 segment yellow, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment yellow +0 +10 +10 +Display_7Segment +HDSP-7507 ++-1 overflow 7 segment high efficiency red, https://docs.broadcom.com/docs/AV02-2553EN ++-1 overflow 7 segment high efficiency red +0 +10 +10 +Display_7Segment +HDSP-7801 +One digit 7 segment green, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment green +0 +10 +10 +Display_7Segment +HDSP-7807 ++-1 overflow 7 segment green, https://docs.broadcom.com/docs/AV02-2553EN ++-1 overflow 7 segment green +0 +10 +10 +Display_7Segment +HDSP-A151 +One digit 7 segment red, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment high efficiency red +0 +10 +10 +Display_7Segment +HDSP-A401 +One digit 7 segment orange, common anode, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment orange common anode +0 +10 +10 +Display_7Segment +KCSC02-105 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-105(Ver.9A).pdf +Single digit 7 segement hyper red LED +0 +10 +10 +Display_7Segment +KCSC02-106 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-106(Ver.10A).pdf +Single digit 7 segement super bright orange LED +0 +10 +10 +Display_7Segment +KCSC02-107 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-107(Ver.9A).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +KCSC02-123 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-123(Ver.10A).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +KCSC02-136 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-136(Ver.6B).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +LTC-4627Jx +http://optoelectronics.liteon.com/upload/download/DS30-2001-393/C4627JG.pdf +4 digit 7 segment LED +0 +14 +14 +Display_7Segment +MAN71A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment red LED with right dot +0 +14 +14 +Display_7Segment +MAN72A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment red LED with left dot +0 +14 +14 +Display_7Segment +MAN73A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +Overflow +- 1 red LED +0 +14 +14 +Display_7Segment +MAN3410A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment green LED with dot +0 +14 +14 +Display_7Segment +MAN3420A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment green LED with left dot +0 +14 +14 +Display_7Segment +MAN3610A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment orange LED with right dot +0 +14 +14 +Display_7Segment +MAN3620A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment orange LED with left dot +0 +14 +14 +Display_7Segment +MAN3630A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +Overflow +- 1 orange LED +0 +14 +14 +Display_7Segment +MAN3810A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment yellow LED with right dot +0 +14 +14 +Display_7Segment +MAN3820A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment yellow LED with left dot +0 +14 +14 +Display_7Segment +SA15-11xxx +http://www.kingbrightusa.com/images/catalog/SPEC/SA15-11SRWA.pdf +SA15-11xxx single digit 7 segment display 38.1mm 1.5inch +0 +10 +10 +Display_7Segment +SBC18-11SURKCGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/SBC18-11SURKCGKWA(Ver.6A).pdf +single digit 7 segemnt red/green LED +0 +10 +10 +Display_7Segment +Sx39-1xxxxx +Single digit 7 segment LED display in red, yellow or green colour http://www.kingbrightusa.com/images/catalog/SPEC/sa39-11ewa.pdf +One digit LED 7 segment SA39-11 SC39-11 SA39-12 SC39-12 +0 +10 +10 +Ferrite_THT +LairdTech_28C0236-0JW-10 +Ferrite, vertical, LairdTech 28C0236-0JW-10, https://assets.lairdtech.com/home/brandworld/files/28C0236-0JW-10.pdf, JW Miller core https://www.bourns.com/products/magnetic-products/j.w.-miller-through-hole-ferrite-beads-emi-filters +Ferrite vertical LairdTech 28C0236-0JW-10 +0 +2 +2 +Fiducial +Fiducial_0.5mm_Mask1.5mm +Circular Fiducial, 0.5mm bare copper, 1.5mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_0.5mm_Mask1mm +Circular Fiducial, 0.5mm bare copper, 1mm soldermask opening (Level C) +fiducial +0 +1 +0 +Fiducial +Fiducial_0.75mm_Mask1.5mm +Circular Fiducial, 0.75mm bare copper, 1.5mm soldermask opening (Level B) +fiducial +0 +1 +0 +Fiducial +Fiducial_0.75mm_Mask2.25mm +Circular Fiducial, 0.75mm bare copper, 2.25mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1.5mm_Mask3mm +Circular Fiducial, 1.5mm bare copper, 3mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1.5mm_Mask4.5mm +Circular Fiducial, 1.5mm bare copper, 4.5mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1mm_Mask2mm +Circular Fiducial, 1mm bare copper, 2mm soldermask opening (Level A) +fiducial +0 +1 +0 +Fiducial +Fiducial_1mm_Mask3mm +Circular Fiducial, 1mm bare copper, 3mm soldermask opening (recommended) +fiducial +0 +1 +0 +Filter +Filter_1109-5_1.1x0.9mm +5-pin SAW filter package - 1.1x0.9 mm Body; (see https://www.murata.com/~/media/webrenewal/support/library/catalog/products/filter/rf/p73e.ashx?la=en-gb) +Filter 5 +0 +5 +5 +Filter +Filter_1411-5_1.4x1.1mm +5-pin filter package - 1.4x1.1 mm Body; (see https://global.kyocera.com/prdct/electro/product/pdf/sf14_tdlte.pdf) +Filter 5 +0 +5 +5 +Filter +Filter_Bourns_SRF0905_6.0x9.2mm +https://www.bourns.com/docs/Product-Datasheets/SRF0905.pdf +Line Filter +0 +4 +4 +Filter +Filter_FILTERCON_1FPxx +0.5A, 250VAC, 50/60Hz line filter (https://filtercon.com.pl/wp-content/uploads/2019/07/Karta-katalogowa-FP-12-1.pdf) +EMI filter +0 +4 +4 +Filter +Filter_Mini-Circuits_FV1206 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206.pdf +Mini-Circuits Filter SMD 1206 +0 +6 +4 +Filter +Filter_Mini-Circuits_FV1206-1 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-1.pdf +Mini-Circuits Filter SMD 1206 +0 +6 +6 +Filter +Filter_Mini-Circuits_FV1206-4 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-4.pdf +Mini-Circuits Filter SMD 1206 +0 +8 +4 +Filter +Filter_Mini-Circuits_FV1206-5 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-5.pdf +Mini-Circuits Filter SMD 1206 +0 +8 +4 +Filter +Filter_Mini-Circuits_FV1206-6 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-6.pdf +Mini-Circuits Filter SMD 1206 +0 +14 +8 +Filter +Filter_Mini-Circuits_FV1206-7 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-7.pdf +Mini-Circuits Filter SMD 1206 +0 +5 +3 +Filter +Filter_Murata_BNX025 +https://www.murata.com/en-us/products/productdata/8796778004510/QNFH9101.pdf?1496719830000 +EMI Filter +0 +6 +4 +Filter +Filter_Murata_BNX025_ThermalVias +https://www.murata.com/en-us/products/productdata/8796778004510/QNFH9101.pdf?1496719830000 +EMI Filter +0 +19 +4 +Filter +Filter_Murata_SFECF-6 +SMD Type 10.7MHz Ceramic Filter https://www.murata.com/en-us/products/filter/cerafil/sfecf +10.7MHz smd ceramic +0 +6 +6 +Filter +Filter_Murata_SFECF-6_HandSoldering +SMD Type 10.7MHz Ceramic Filter https://www.murata.com/en-us/products/filter/cerafil/sfecf +10.7MHz smd ceramic +0 +6 +6 +Filter +Filter_SAW-6_3.8x3.8mm +6-pin 3.8 x 3.8mm SAW filter package, https://www.golledge.com/media/3785/mp08167.pdf +SAW filter 6-pin +0 +6 +6 +Filter +Filter_SAW-8_3.8x3.8mm +8-pin 3.8x3.8mm SAW filter, https://www.golledge.com/media/1831/ma05497.pdf +SAW filter 8-pin +0 +8 +8 +Filter +Filter_SAW_Epcos_DCC6C_3x3mm +EPCOS/TDK Electronics/Qualcomm DCC6c SAW filter package based on EPCOS app note 93 (https://www.catagle.com/45-2/PDF_AN93.htm) +SAW filter 6-pin +0 +6 +6 +Filter +Filter_Schaffner_FN405 +Compact PCB mounting EMI filter (https://www.schaffner.com/product/FN405/Schaffner_datasheet_FN405.pdf) +EMI filter +0 +5 +5 +Filter +Filter_Schaffner_FN406 +Ultra Compact EMC Filter (https://www.schaffner.com/product/FN406/Schaffner_datasheet_FN406.pdf) +emi filter +0 +5 +5 +Fuse +FuseHolder_Blade_ATO_Littelfuse_FLR_178.6165 +Littelfuse fuse holder for ATO/FKS blade fuses, 80V, vertical, 20 x 6mm, PCB thickness up to 1.5mm, http://www.littelfuse.com/~/media/commercial-vehicle/datasheets/automotive-fuse-holders/ato/littelfuse-fuse-holder-ato-flr-pcb-datasheet.pdf +ATO FKS blade fuse holder +0 +8 +2 +Fuse +Fuse_0402_1005Metric +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_0603_1608Metric +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_0805_2012Metric +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1206_3216Metric +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1210_3225Metric +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1812_4532Metric +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2010_5025Metric +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2512_6332Metric +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2920_7451Metric +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm +Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm +Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm +Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm +Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm +Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm +Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm +Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm +Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm +Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm +Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm +Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm +Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm +Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_Blade_ATO_directSolder +car blade fuse direct solder +car blade fuse +0 +2 +2 +Fuse +Fuse_Blade_Mini_directSolder +car blade fuse mini, direct solder +car blade fuse mini +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT050 +PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT070 +PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT100 +PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT200 +PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT550 +PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT750 +PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1300 +PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-SM_7.98x5.44mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +Fuse +Fuse_Bourns_MF-SM_9.5x6.71mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +Fuse +Fuse_Bourns_TBU-CA +Bourns TBU-CA Fuse, 2 Pin (https://www.bourns.com/data/global/pdfs/TBU-CA.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Bourns Fuse NoLead +0 +3 +3 +Fuse +Fuse_Littelfuse-LVR100 +Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR100 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-LVR125 +Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR125 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-LVR200 +Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR200 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-NANO2-451_453 +Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf.pdf +Fuse Nano2 +0 +2 +2 +Fuse +Fuse_Littelfuse-NANO2-462 +Littelfuse NANO2, 250VAC/VDC, 350VAC/VDC, 10.5 x 4.5 x 4.5mm, https://www.littelfuse.com/media?resourcetype=datasheets&itemid=6201db33-6e55-43f2-b41f-15e38bdd2c99&filename=littelfuse-fuse-462-datasheet +Fuse Nano2 462 +0 +2 +2 +Fuse +Fuse_Littelfuse-NANO2-885 +Littelfuse NANO2, 350VAC, 450/500VDC, 10.86 x 4.78 x 4.78mm, https://www.littelfuse.com/media?resourcetype=datasheets&itemid=888f12ed-ed3b-4b45-b910-06af8854ad76&filename=littelfuse-fuse-885-datasheet +Fuse Nano2 885 +0 +2 +2 +Fuse +Fuse_Littelfuse_372_D8.50mm +Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf +fuse tht radial +0 +2 +2 +Fuse +Fuse_Littelfuse_395Series +Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, +Fuse TE5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +Fuse +Fuse_Schurter_UMT250 +Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf) +Schurter fuse smd +0 +2 +2 +Fuse +Fuse_Schurter_UMZ250 +Surface Mount Fuse with Clip, 4.2 x 11.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMZ_250.pdf) +fuse smd mount holder +0 +2 +2 +Fuse +Fuse_SunFuse-6HP +SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF +UL/CSA 6x32mm Ceramic Slow Blow Fuse +0 +2 +2 +Fuse +Fuseholder_Blade_ATO_Littelfuse_Pudenz_2_Pin +Fuseholder ATO Blade littelfuse Pudenz 2 Pin +Fuseholder ATO Blade littelfuse Pudenz 2 Pin +0 +2 +2 +Fuse +Fuseholder_Blade_Mini_Keystone_3568 +fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306 +car blade fuse mini +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Bel_FC-203-22_Lateral_P17.80x5.00mm_D1.17mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Lateral, Horizontal, Bel FC-203-22, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0672-fuse-clips-series.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Eaton_1A5601-01_Inline_P20.80x6.76mm_D1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Eaton 1A5601-01, https://www.eaton.com/content/dam/eaton/products/electronic-components/resources/data-sheet/eaton-1axxxx-pcb-fuse-clips-atc-atm-blade-data-sheet.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3512P_Inline_P23.62x7.27mm_D1.02x2.41x1.02x1.57mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3512P, http://www.keyelco.com/product-pdf.cfm?p=1386 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3512_Inline_P23.62x7.27mm_D1.02x1.57mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3512, http://www.keyelco.com/product-pdf.cfm?p=356 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3517_Inline_P23.11x6.76mm_D1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3517, http://www.keyelco.com/product-pdf.cfm?p=354 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3518P_Inline_P23.11x6.76mm_D2.44x1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3518P, http://www.keyelco.com/product-pdf.cfm?p=1387 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_100_Inline_P20.50x4.60mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 100, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_111_Inline_P20.00x5.00mm_D1.05mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 111, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_519_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_111_Lateral_P18.80x5.00mm_D1.17mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 111 (501 and 506), https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 445/030, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_519_Inline_P20.60x5.00mm_D1.00mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 519, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_519_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_520_Inline_P20.50x5.80mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 520, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_521_Lateral_P17.00x5.00mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 521, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_520_521_102071_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Schurter_CQM_Inline_P20.60x5.00mm_D1.00mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Schurter CQM (0752), https://www.schurter.com/en/datasheet/typ_CQM.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Schurter_OG_Lateral_P15.00x5.00mm_D1.3mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Schurter OG, https://ch.schurter.com/en/datasheet/typ_OG__Clip__5x20.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102_122_Inline_P34.21x7.62mm_D1.98mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102/122 Straight Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102_Inline_P34.21x7.62mm_D2.54mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102 Bowed Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_122_Inline_P34.21x7.62mm_D2.54mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 122 Bowed Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102071_Inline_P34.70x7.60mm_D2.00mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102071, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_520_521_102071_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed +Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf +Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed +Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, +Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed +PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf +Fuseholder horizontal open 5x20 Schurter 0031.8201 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed +Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf) +Fuseholder 5x20mm closed horizontal +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed +Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf) +fuse holder vertical 5x20mm +0 +4 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf +Fuseholder 5x20mm horizontal closed +0 +3 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf) +Fuseholder horizontal open 5x20 Schurter 0031.8221 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open +https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf +Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Wuerth_696103101002-SMD_Horizontal_Open +Fuseholder horizontal open 5x20mm 250V 10A Würth 696103101002 +Fuseholder horizontal open 5x20mm 250V 10A +0 +2 +2 +Fuse +Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open +Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf +Fuseholder horizontal open 6.3x32 Schurter 0031.8002 +0 +2 +2 +Fuse +Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf +Fuseholder 6.3x32mm horizontal closed +0 +3 +2 +Fuse +Fuseholder_Keystone_3555-2 +Maxi APX ATX Automotive Blade Fuse Clip Holder https://www.keyelco.com/userAssets/file/M65p40.pdf +Maxi APX ATX Automotive Blade Fuse Clip Holder +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x20mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x25mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x30mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x20mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x25mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x30mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_Nano2_154x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_154_154t_154l_154tl_datasheet.pdf.pdf +SMD Nano2 holder +0 +2 +2 +Fuse +Fuseholder_Littelfuse_Nano2_157x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf +SMD Nano2 holder +0 +2 +2 +Fuse +Fuseholder_TR5_Littelfuse_No560_No460 +Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf +Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +Heatsink +Heatsink_35x26mm_1xFixation3mm_Fischer-SK486-35 +Heatsink, 35mm x 26mm, 1x Fixation 3mm, Fischer SK486-35 +heatsink +0 +1 +1 +Heatsink +Heatsink_38x38mm_SpringFixation +Heatsink, 38x38mm, Spring Fixation, diagonal, +heatsink +0 +4 +1 +Heatsink +Heatsink_62x40mm_2xFixation3mm +Heatsink, 62 x 40mm, 2x 3mm Drills, +heatsink +0 +2 +1 +Heatsink +Heatsink_125x35x50mm_3xFixationM3 +Heatsink, 125x35x50mm, 3 fixation holes 3.2mm +heatsink +0 +0 +0 +Heatsink +Heatsink_AAVID_573300D00010G_TO-263 +Heatsink, 12.70mm x 26.16mm x 10.16, SMD, 18K/W, TO-263, D2 Pak, https://www.shopaavid.com/Product/573300D00000G +Heatsink AAVID TO-263 D2 Pak +0 +2 +1 +Heatsink +Heatsink_AAVID_576802B03900G +Heatsink, 14.48x12.7x19.05mm, TO-220/ TO-262, https://www.boydcorp.com/aavid-datasheets/Board-Level-Cooling-Plug-In-5768.pdf +heatsink +0 +1 +1 +Heatsink +Heatsink_AAVID_590302B03600G +Heatsink, 25.4x25.4x42.54mm, TO-220, https://www.boydcorp.com/aavid-datasheets/Board-Level-Cooling-Channel-5903.pdf +heatsink +0 +2 +2 +Heatsink +Heatsink_AAVID_TV5G_TO220_Horizontal +Heatsink TV5G TO-220 Horizontal, https://www.shopaavid.com/Product/TV-5G +Heatsink TV5G TO-220 Horizontal +0 +0 +0 +Heatsink +Heatsink_Fischer_FK224xx2201_25x8.3mm +25x8.3mm Heatsink, 18K/W, TO-220, https://www.fischerelektronik.de/web_fischer/en_GB/$catalogue/fischerData/PR/FK224_220_1_/datasheet.xhtml?branch=heatsinks +heatsink TO-220 +0 +2 +1 +Heatsink +Heatsink_Fischer_FK24413D2PAK_26x13mm +26x13 mm SMD heatsink for TO-252 TO-263 TO-268, https://www.fischerelektronik.de/pim/upload/fischerData/cadpdf/base/fk_244_13_d2_pak.pdf +heatsink TO-252 TO-263 TO-268 +0 +2 +1 +Heatsink +Heatsink_Fischer_FK24413DPAK_23x13mm +23x13 mm SMD heatsink for TO-252 TO-263 TO-268, https://www.fischerelektronik.de/pim/upload/fischerData/cadpdf/base/fk_244_13_d_pak.pdf +heatsink TO-252 TO-263 TO-268 +0 +2 +1 +Heatsink +Heatsink_Fischer_SK104-STC-STIC_35x13mm_2xDrill2.5mm +Heatsink, 35mm x 13mm, 2x Fixation 2,5mm Drill, Soldering, Fischer SK104-STC-STIC, +Heatsink fischer TO-220 +0 +2 +1 +Heatsink +Heatsink_Fischer_SK104-STCB_35x13mm__2xDrill3.5mm_ScrewM3 +Heatsink, 35mm x 13mm, 2x Fixation 2,5mm Drill, Soldering, Fischer SK104-STC-STIC, +Heatsink fischer TO-220 +0 +2 +1 +Heatsink +Heatsink_Fischer_SK129-STS_42x25mm_2xDrill2.5mm +Heatsink, Fischer SK129 +heatsink fischer +0 +2 +1 +Heatsink +Heatsink_SheetType_50x7mm_2Fixations +Heatsink, Sheet type, 50x7mm, 2 fixations (solder), +Heatsink sheet +0 +2 +1 +Heatsink +Heatsink_Stonecold_HS-130_30x12mm_2xFixation2.5mm +Heatsink, StoneCold HS, https://www.tme.eu/Document/da20d9b42617e16f6777c881dc9e3434/hs-130.pdf +heatsink +0 +2 +1 +Heatsink +Heatsink_Stonecold_HS-132_32x14mm_2xFixation1.5mm +Heatsink, StoneCold HS +heatsink +0 +2 +1 +Heatsink +Heatsink_Stonecold_HS-S01_13.21x6.35mm +Heatsink, Stonecold, HS, https://www.tme.eu/Document/f7f93f538b934e0b08e09747396fb95f/hs-s.pdf +heatsink +0 +0 +0 +Heatsink +Heatsink_Stonecold_HS-S02_13.21x9.53mm +Heatsink, Stonecold, HS, https://www.tme.eu/Document/f7f93f538b934e0b08e09747396fb95f/hs-s.pdf +heatsink +0 +0 +0 +Heatsink +Heatsink_Stonecold_HS-S03_13.21x12.7mm +Heatsink, Stonecold, HS, https://www.tme.eu/Document/f7f93f538b934e0b08e09747396fb95f/hs-s.pdf +heatsink +0 +0 +0 +Inductor_SMD +L_6.3x6.3_H3 +Choke, SMD, 6.3x6.3mm 3mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_7.3x7.3_H3.5 +Choke, SMD, 7.3x7.3mm 3.5mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_7.3x7.3_H4.5 +Choke, SMD, 7.3x7.3mm 4.5mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_10.4x10.4_H4.8 +Choke, SMD, 10.4x10.4mm 4.8mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_12x12mm_H4.5mm +Choke, SMD, 12x12mm 4.5mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_12x12mm_H6mm +Choke, SMD, 12x12mm 6mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_12x12mm_H8mm +Choke, SMD, 12x12mm 8mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_0201_0603Metric +Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +inductor +0 +4 +2 +Inductor_SMD +L_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +4 +2 +Inductor_SMD +L_0402_1005Metric +Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_0603_1608Metric +Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_0805_2012Metric +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_0805_2012Metric_Pad1.05x1.20mm_HandSolder +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_01005_0402Metric +Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +inductor +0 +4 +2 +Inductor_SMD +L_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +4 +2 +Inductor_SMD +L_1008_2520Metric +Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1008_2520Metric_Pad1.43x2.20mm_HandSolder +Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1206_3216Metric +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1206_3216Metric_Pad1.22x1.90mm_HandSolder +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1210_3225Metric +Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1806_4516Metric +Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1806_4516Metric_Pad1.45x1.90mm_HandSolder +Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1812_4532Metric +Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_2010_5025Metric +Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_2512_6332Metric +Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_AVX_LMLP07A7 +Inductor, AVX Kyocera, LMLP Series, style D, 6.6mmx7.3mm, 3.0mm height. (Script generated with StandardBox.py) (https://datasheets.avx.com/LMLPD.pdf) +Inductor LMLP +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-0425 +Inductor, Abracon, ASPI-0425, 4.0x4.0x2.5mm, https://abracon.com/Magnetics/new/ASPI-0425.pdf +Inductor power shielded low-profile +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-0630LR +smd shielded power inductor https://abracon.com/Magnetics/power/ASPI-0630LR.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-3012S +smd shielded power inductor http://www.abracon.com/Magnetics/power/ASPI-3012S.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-4030S +smd shielded power inductor 4x4x3mm, Abracon ASPI-4030S, https://abracon.com/Magnetics/power/ASPI-4030S.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Abracon_ASPIAIG-F4020 +Inductor, Abracon, ASPIAIG-F4020, 4.4x4.4x1.9mm, https://abracon.com/Magnetics/power/ASPIAIG-F4020.pdf +Inductor power shielded +0 +2 +2 +Inductor_SMD +L_Bourns-SRN1060 +Bourns SRN1060 series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRN1060.pdf +Bourns SRN1060 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRN4018 +Bourns SRN4018 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRN4018.pdf +Bourns SRN4018 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRN6028 +Bourns SRN6028 series SMD inductor +Bourns SRN6028 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRN8040_8x8.15mm +Bourns SRN8040 series SMD inductor 8x8.15mm, https://www.bourns.com/docs/Product-Datasheets/SRN8040.pdf +Bourns SRN8040 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRR1005 +Bourns SRR1005 series SMD inductor +Bourns SRR1005 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRU1028_10.0x10.0mm +Bourns SRU1028 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRU1028.pdf +Bourns SRU1028 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRU8028_8.0x8.0mm +Bourns SRU8028 series SMD inductor +Bourns SRU8028 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRU8043 +Bourns SRU8043 series SMD inductor +Bourns SRU8043 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SDR0604 +SMD Power Inductor, https://www.bourns.com/pdfs/SDR0604.pdf +SMD Power Inductor SDR0604 +0 +2 +2 +Inductor_SMD +L_Bourns_SDR1806 +https://www.bourns.com/docs/Product-Datasheets/SDR1806.pdf +Bourns SDR1806 +0 +2 +2 +Inductor_SMD +L_Bourns_SRF1260 +Inductor, Bourns, SRF1260, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://www.bourns.com/docs/Product-Datasheets/SRF1260.pdf) +Inductor Bourns_SRF1260 +0 +4 +4 +Inductor_SMD +L_Bourns_SRN6045TA +http://www.bourns.com/docs/product-datasheets/srn6045ta.pdf +Semi-shielded Power Inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRN8040TA +https://www.bourns.com/docs/product-datasheets/srn8040ta.pdf +Inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1038C_10.0x10.0mm +Bourns SRP1038C series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1038C.pdf +Bourns SRP1038C SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1050WA +Inductor, Bourns, SRP1050WA, 10.1mmx10mm (Script generated with StandardBox.py) (https://www.bourns.com/docs/product-datasheets/SRP1050WA.pdf) +Inductor Bourns_SRP1050WA +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1245A +Bourns SRP1245A series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1245A.pdf +Bourns SRP1245A SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1770TA_16.9x16.9mm +Bourns SRP1770TA series SMD Inductor http://www.bourns.com/docs/Product-Datasheets/SRP1770TA.pdf +Bourns SRP1770TA series SMD Inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP2313AA +Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/product-datasheets/srp2313aa.pdf +Bourns SRR1260 SMD inductor +0 +4 +2 +Inductor_SMD +L_Bourns_SRP5030T +Inductor, Bourns, SRP5030T, 5.7mmx5.2mm (Script generated with StandardBox.py) (https://www.bourns.com/data/global/pdfs/SRP5030T.pdf) +Inductor Bourns_SRP5030T +0 +2 +2 +Inductor_SMD +L_Bourns_SRP7028A_7.3x6.6mm +Shielded Power Inductors (https://www.bourns.com/docs/product-datasheets/srp7028a.pdf) +Shielded Inductors Bourns SMD SRP7028A +0 +2 +2 +Inductor_SMD +L_Bourns_SRR1208_12.7x12.7mm +Bourns SRP1208 series SMD inductor https://www.bourns.com/pdfs/SRR1208.pdf +Bourns SRP1208 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRR1210A +Bourns SRR1210A series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRR1210A.pdf +Bourns SRR1210A SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRR1260 +Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRR1260.pdf +Bourns SRR1260 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRU5016_5.2x5.2mm +Bourns SRU5016 series shielded SMD power inductor, 1.6mm height https://www.bourns.com/docs/product-datasheets/sru5016.pdf +Bourns SRU5016 SMD inductor +0 +4 +3 +Inductor_SMD +L_Cenker_CKCS3012 +Inductor, Cenker, CKCS3012, 3.0x3.0x1.3mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS3015 +Inductor, Cenker, CKCS3015, 3.0x3.0x1.7mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS4018 +Inductor, Cenker, CKCS4018, 4.0x4.0x1.8mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS4020 +Inductor, Cenker, CKCS4020, 4.0x4.0x2.0mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS4030 +Inductor, Cenker, CKCS4030, 4.0x4.0x3.0mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS5020 +Inductor, Cenker, CKCS5020, 5.0x5.0x2.1mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS5040 +Inductor, Cenker, CKCS5040, 5.0x5.0x4.0mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS6020 +Inductor, Cenker, CKCS6020, 6.0x6.0x2.1mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS6028 +Inductor, Cenker, CKCS6028, 6.0x6.0x3.0mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS6045 +Inductor, Cenker, CKCS6045, 6.0x6.0x4.7mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS8040 +Inductor, Cenker, CKCS8040, 8.0x8.0x4.2mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS8060 +Inductor, Cenker, CKCS8060, 8.0x8.0x6.2mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS8080 +Inductor, Cenker, CKCS8080, 8.0x8.0x8.0mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS201610 +Inductor, Cenker, CKCS201610, 2.0x1.6x1.05mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS252010 +Inductor, Cenker, CKCS252010, 2.5x2.0x1.05mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS252012 +Inductor, Cenker, CKCS252012, 2.5x2.0x1.25mm, https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf +Inductor ckcs +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3010S +Inductor, Changjiang, FNR3010S, 3.0x3.0x1.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3012S +Inductor, Changjiang, FNR3012S, 3.0x3.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3015S +Inductor, Changjiang, FNR3015S, 3.0x3.0x1.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3021S +Inductor, Changjiang, FNR3021S, 3.0x3.0x2.35mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4010S +Inductor, Changjiang, FNR4010S, 4.0x4.0x1.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4012S +Inductor, Changjiang, FNR4012S, 4.0x4.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4015S +Inductor, Changjiang, FNR4015S, 4.0x4.0x1.65mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4018S +Inductor, Changjiang, FNR4018S, 4.0x4.0x1.8mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4020S +Inductor, Changjiang, FNR4020S, 4.0x4.0x2.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4026S +Inductor, Changjiang, FNR4026S, 4.0x4.0x2.6mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4030S +Inductor, Changjiang, FNR4030S, 4.0x4.0x3.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5012S +Inductor, Changjiang, FNR5012S, 5.0x5.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5015S +Inductor, Changjiang, FNR5015S, 5.0x5.0x1.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5020S +Inductor, Changjiang, FNR5020S, 5.0x5.0x2.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5030S +Inductor, Changjiang, FNR5030S, 5.0x5.0x3.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5040S +Inductor, Changjiang, FNR5040S, 5.0x5.0x4.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5045S +Inductor, Changjiang, FNR5045S, 5.0x5.0x4.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6020S +Inductor, Changjiang, FNR6020S, 6.0x6.0x2.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6028S +Inductor, Changjiang, FNR6028S, 6.0x6.0x2.8mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6040S +Inductor, Changjiang, FNR6040S, 6.0x6.0x4.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6045S +Inductor, Changjiang, FNR6045S, 6.0x6.0x4.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR8040S +Inductor, Changjiang, FNR8040S, 8.0x8.0x4.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR8050S +Inductor, Changjiang, FNR8050S, 8.0x8.0x5.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR8065S +Inductor, Changjiang, FNR8065S, 8.0x8.0x6.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR252010S +Inductor, Changjiang, FNR252010S, 2.5x2.0x1.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR252012S +Inductor, Changjiang, FNR252012S, 2.5x2.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf +Inductor wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL1365 +Inductor, Changjiang, FXL1365, 12.9x12.6x6.5mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2303201000_cjiang--Changjiang-Microelectronics-Tech-FXL1365-330-M_C5359277.pdf +Inductor power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00040415 +Inductor, Chilisin, BMRA00040415, 4.6x4.1x1.5mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00040420 +Inductor, Chilisin, BMRA00040420, 4.6x4.1x2.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00050520 +Inductor, Chilisin, BMRA00050520, 5.7x5.4x1.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00050530 +Inductor, Chilisin, BMRA00050530, 5.7x5.4x3.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00050512 +Inductor, Chilisin, BMRB00050512, 5.7x5.4x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00050518 +Inductor, Chilisin, BMRB00050518, 5.7x5.4x1.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00050518-B +Inductor, Chilisin, BMRB00050518-B, 5.4x5.2x1.6mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060612 +Inductor, Chilisin, BMRB00060612, 7.3x6.6x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060618 +Inductor, Chilisin, BMRB00060618, 7.3x6.6x1.6mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060624 +Inductor, Chilisin, BMRB00060624, 7.3x6.6x2.4mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060650 +Inductor, Chilisin, BMRB00060650, 7.3x6.6x5.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00101040 +Inductor, Chilisin, BMRF00101040, 11.6x10.1x4.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00131350 +Inductor, Chilisin, BMRF00131350, 13.8x12.6x5.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00131360 +Inductor, Chilisin, BMRF00131360, 13.8x12.6x5.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00171770 +Inductor, Chilisin, BMRF00171770, 17.15x17.15x6.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRG00101030 +Inductor, Chilisin, BMRG00101030, 11.6x10.1x3.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRG00131360 +Inductor, Chilisin, BMRG00131360, 13.8x12.6x6.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00040412 +Inductor, Chilisin, BMRx00040412, 4.6x4.1x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00050512-B +Inductor, Chilisin, BMRx00050512-B, 5.4x5.2x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00050515 +Inductor, Chilisin, BMRx00050515, 5.7x5.4x1.5mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00060615 +Inductor, Chilisin, BMRx00060615, 7.3x6.6x1.3mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00060630 +Inductor, Chilisin, BMRx00060630, 7.3x6.6x3.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf +Inductor bmrx mchi +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS3010 +Shielded Power Inductor SMD 3x3x1mm, Coilcraft LPS3010, https://www.coilcraft.com/pdfs/lps3010.pdf +inductor low profile +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS3314 +SMD Inductor, 3.3x3.3x1.4mm, Coilcraft LPS3314, https://www.coilcraft.com/pdfs/lps3314.pdf +L Coilcraft LPS3314 +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS4018 +SMD Inductor Coilcraft LPS4018 https://www.coilcraft.com/pdfs/lps4018.pdf +L Coilcraft LPS4018 +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS4414 +SMD Inductor Coilcraft LPS4414, https://www.coilcraft.com/getmedia/fa8805ca-b278-4819-915a-b5cf632f0239/lps4414.pdf +L Coilcraft LPS4414 +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS5030 +Shielded Power Inductor SMD, Coilcraft LPS5030, https://www.coilcraft.com/pdfs/lps5030.pdf, StepUp generated footprint +inductor +0 +2 +2 +Inductor_SMD +L_Coilcraft_MOS6020-XXX +Inductor, Coilcraft, MOS6020-XXX, 6.8x6.0x2.4mm, (https://www.coilcraft.com/getmedia/c3eb212d-a1a9-4db6-9f14-a01f21fd984c/mos6020.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1038-XXX +Inductor, Coilcraft, MSS1038-XXX, 10.2x10.0x3.8mm, (https://www.coilcraft.com/getmedia/3e03a7b4-3b1d-4f31-b1f3-e7c621695ac0/mss1038.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1038T-XXX +Inductor, Coilcraft, MSS1038T-XXX, 10.2x10.0x3.8mm, (https://www.coilcraft.com/getmedia/ea4800a7-100e-49d9-9bbc-6ba8b238dc0d/mss1038t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1048-XXX +Inductor, Coilcraft, MSS1048-XXX, 10.2x10.0x4.8mm, (https://www.coilcraft.com/getmedia/bd5140ec-db32-4346-a029-5182269dc08e/mss1048.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1048T-XXX +Inductor, Coilcraft, MSS1048T-XXX, 10.2x10.0x4.8mm, (https://www.coilcraft.com/getmedia/bd5140ec-db32-4346-a029-5182269dc08e/mss1048t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1210-XXX +Inductor, Coilcraft, MSS1210-XXX, 12.0x12.0x10.0mm, (https://www.coilcraft.com/getmedia/f1a1bc5f-bdff-42f8-9ca8-1a0fb1d5094f/MSS1210.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1210H-XXX +Inductor, Coilcraft, MSS1210H-XXX, 12.0x12.0x10.0mm, (https://www.coilcraft.com/getmedia/52078704-21eb-4c2b-9b72-1e07b4a2e252/mss1210h.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1246-XXX +Inductor, Coilcraft, MSS1246-XXX, 12.0x12.0x4.6mm, (https://www.coilcraft.com/getmedia/960fadbe-0ca0-40e2-ae20-64edb15f3a07/mss1246.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1246H-XXX +Inductor, Coilcraft, MSS1246H-XXX, 12.0x12.0x4.65mm, (https://www.coilcraft.com/getmedia/25f62276-187e-4c2c-9b9b-4568b9a9a423/mss1246h.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1246T-XXX +Inductor, Coilcraft, MSS1246T-XXX, 12.0x12.0x4.6mm, (https://www.coilcraft.com/getmedia/dec41de3-f4b7-4c07-b144-cc21921ccfd5/mss1246t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1260-XXX +Inductor, Coilcraft, MSS1260-XXX, 12.0x12.0x6.0mm, (https://www.coilcraft.com/getmedia/febefb9b-60f9-4a2c-8525-9c396f34e363/mss1260.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1260H-XXX +Inductor, Coilcraft, MSS1260H-XXX, 12.0x12.0x6.0mm, (https://www.coilcraft.com/getmedia/352767ff-7c30-4312-ab84-989443b4047e/mss1260h.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1260T-XXX +Inductor, Coilcraft, MSS1260T-XXX, 12.0x12.0x6.0mm, (https://www.coilcraft.com/getmedia/ce88ed45-272e-474e-a25e-981003944639/mss1260t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1278-XXX +Inductor, Coilcraft, MSS1278-XXX, 12.0x12.0x7.8mm, (https://www.coilcraft.com/getmedia/6eb5ea38-40e4-41a6-9f92-3cdf8e907dcd/mss1278.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1278H-XXX +Inductor, Coilcraft, MSS1278H-XXX, 12.0x12.0x7.8mm, (https://www.coilcraft.com/getmedia/72ffd561-3941-457d-b0e7-bb55b1b2d1a7/MSS1278H.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1278T-XXX +Inductor, Coilcraft, MSS1278T-XXX, 12.0x12.0x7.8mm, (https://www.coilcraft.com/getmedia/e8d7b32a-defa-4500-bc0f-6ecc558fcde6/mss1278t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1514V-XXX +Inductor, Coilcraft, MSS1514V-XXX, 15.0x15.0x8.6mm, (https://www.coilcraft.com/getmedia/a1319e1c-d611-4bc0-be30-c17e52e4e667/mss1514v.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1583-XXX +Inductor, Coilcraft, MSS1583-XXX, 15.0x15.0x8.6mm, (https://www.coilcraft.com/getmedia/fbfe8ea7-f5d8-4484-859e-2285f427326d/mss1583.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1812T-XXX +Inductor, Coilcraft, MSS1812T-XXX, 18.3x18.3x12.0mm, (https://www.coilcraft.com/getmedia/148807de-bc83-43dc-9fce-d4df334864cd/mss1812t.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS7348-XXX +Inductor, Coilcraft, MSS7348-XXX, 7.0x7.0x4.5mm, (https://www.coilcraft.com/getmedia/018a2bda-2036-409a-8b19-945e531c18b5/MSS7348.pdf), generated with kicad-footprint-generator gen_inductor.py +Inductor mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1010-XXX +Inductor, Coilcraft, XAL1010-XXX, 10.5x11.8x10.0mm, https://www.coilcraft.com/getmedia/dd74e670-e705-456a-9a69-585fe02eaf3c/xal1010.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1030-XXX +Inductor, Coilcraft, XAL1030-XXX, 10.5x11.8x3.1mm, https://www.coilcraft.com/getmedia/7b108457-7731-456d-9256-ca72f2e1a551/xal1030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1060-XXX +Inductor, Coilcraft, XAL1060-XXX, 10.5x11.8x6.0mm, https://www.coilcraft.com/getmedia/8909f858-b441-4d60-acff-8b8ca36f9ede/xal1060.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1350-XXX +Inductor, Coilcraft, XAL1350-XXX, 13.2x14.2x5.0mm, https://www.coilcraft.com/getmedia/dc536f86-3a3b-454f-950e-8e153260e61c/xal1350.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-103 +Inductor, Coilcraft, XAL1510-103, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-153 +Inductor, Coilcraft, XAL1510-153, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-223 +Inductor, Coilcraft, XAL1510-223, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-333 +Inductor, Coilcraft, XAL1510-333, 15.4x16.4x11.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-472 +Inductor, Coilcraft, XAL1510-472, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-682 +Inductor, Coilcraft, XAL1510-682, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-822 +Inductor, Coilcraft, XAL1510-822, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1513-153 +Inductor, Coilcraft, XAL1513-153, 15.4x16.4x13.0mm, https://www.coilcraft.com/getmedia/129ad6f3-0445-47fd-a0b3-edeb49177c17/xal1513.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-102 +Inductor, Coilcraft, XAL1580-102, 15.4x16.4x8.2mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-132 +Inductor, Coilcraft, XAL1580-132, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-182 +Inductor, Coilcraft, XAL1580-182, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-202 +Inductor, Coilcraft, XAL1580-202, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-302 +Inductor, Coilcraft, XAL1580-302, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-401 +Inductor, Coilcraft, XAL1580-401, 15.4x16.4x8.2mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-452 +Inductor, Coilcraft, XAL1580-452, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-532 +Inductor, Coilcraft, XAL1580-532, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-612 +Inductor, Coilcraft, XAL1580-612, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-741 +Inductor, Coilcraft, XAL1580-741, 15.4x16.4x8.2mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL4020-XXX +Inductor, Coilcraft, XAL4020-XXX, 4.3x4.3x2.1mm, https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL4030-XXX +Inductor, Coilcraft, XAL4030-XXX, 4.3x4.3x3.1mm, https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL4040-XXX +Inductor, Coilcraft, XAL4040-XXX, 4.3x4.3x4.1mm, https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL5020-XXX +Inductor, Coilcraft, XAL5020-XXX, 5.48x5.68x2.0mm, https://www.coilcraft.com/getmedia/1941eff1-c018-493c-8cd6-d88d2edf5029/xal5020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL5030-XXX +Inductor, Coilcraft, XAL5030-XXX, 5.48x5.68x3.1mm, https://www.coilcraft.com/getmedia/49bc46c8-4b2c-45b9-9b6c-2eaa235ea698/xal50xx.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL5050-XXX +Inductor, Coilcraft, XAL5050-XXX, 5.48x5.68x5.1mm, https://www.coilcraft.com/getmedia/49bc46c8-4b2c-45b9-9b6c-2eaa235ea698/xal50xx.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL6020-XXX +Inductor, Coilcraft, XAL6020-XXX, 6.56x6.76x2.1mm, https://www.coilcraft.com/getmedia/467ff589-8942-4e57-92d0-5bef6e04ce09/xal6020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL6030-XXX +Inductor, Coilcraft, XAL6030-XXX, 6.56x6.76x3.1mm, https://www.coilcraft.com/getmedia/ea51f14b-7f32-4dc6-8dfe-d4b70549040f/xal60xx.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL6060-XXX +Inductor, Coilcraft, XAL6060-XXX, 6.56x6.76x6.1mm, https://www.coilcraft.com/getmedia/ea51f14b-7f32-4dc6-8dfe-d4b70549040f/xal60xx.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-102 +Inductor, Coilcraft, XAL7020-102, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-122 +Inductor, Coilcraft, XAL7020-122, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-151 +Inductor, Coilcraft, XAL7020-151, 8.0x8.0x2.05mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-152 +Inductor, Coilcraft, XAL7020-152, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-222 +Inductor, Coilcraft, XAL7020-222, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-271 +Inductor, Coilcraft, XAL7020-271, 8.0x8.0x2.05mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-331 +Inductor, Coilcraft, XAL7020-331, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-471 +Inductor, Coilcraft, XAL7020-471, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-681 +Inductor, Coilcraft, XAL7020-681, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-102 +Inductor, Coilcraft, XAL7030-102, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-103 +Inductor, Coilcraft, XAL7030-103, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-152 +Inductor, Coilcraft, XAL7030-152, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-161 +Inductor, Coilcraft, XAL7030-161, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-222 +Inductor, Coilcraft, XAL7030-222, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-272 +Inductor, Coilcraft, XAL7030-272, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-301 +Inductor, Coilcraft, XAL7030-301, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-332 +Inductor, Coilcraft, XAL7030-332, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-472 +Inductor, Coilcraft, XAL7030-472, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-562 +Inductor, Coilcraft, XAL7030-562, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-601 +Inductor, Coilcraft, XAL7030-601, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-682 +Inductor, Coilcraft, XAL7030-682, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-822 +Inductor, Coilcraft, XAL7030-822, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7050-XXX +Inductor, Coilcraft, XAL7050-XXX, 7.7x8.0x5.0mm, https://www.coilcraft.com/getmedia/13a991b3-4273-4be3-81ba-f3cf372b4691/xal7050.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7070-XXX +Inductor, Coilcraft, XAL7070-XXX, 7.7x8.0x7.0mm, https://www.coilcraft.com/getmedia/1ba55433-bcc8-4838-9b21-382f497e12e0/xal7070.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL8050-223 +Inductor, Coilcraft, XAL8050-223, 8.3x8.8x5.0mm, https://www.coilcraft.com/getmedia/5885ede8-ea4f-464a-9dcb-18dbf143a845/xal8050.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL8080-XXX +Inductor, Coilcraft, XAL8080-XXX, 8.3x8.8x8.0mm, https://www.coilcraft.com/getmedia/345e50d6-a804-4ecb-9a92-5185221faf3e/xal8080.pdf +Inductor xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XFL2010 +Coilcraft XFL2010, Shielded power inductor, 0808, 1.9x2.0mm, https://www.coilcraft.com/getmedia/50382b97-998f-4b75-b5ee-4a93b0ac4411/xfl2010.pdf +miniature +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4020 +L_Coilcraft_XxL4020 https://www.coilcraft.com/pdfs/xfl4020.pdf +L Coilcraft XxL4020 +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4030 +L_Coilcraft_XxL4030 https://www.coilcraft.com/pdfs/xfl4030.pdf +L Coilcraft XxL4030 +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4040 +L_Coilcraft_XxL4040 https://www.coilcraft.com/pdfs/xal4000.pdf +L Coilcraft XxL4040 +0 +2 +2 +Inductor_SMD +L_CommonModeChoke_Coilcraft_0603USB +Coilcraft 0603USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0603usb.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Coilcraft_0805USB +Coilcraft 0805USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0805usb.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Coilcraft_1812CAN +Coilcraft 1812CAN Series Common Mode Choke, https://www.coilcraft.com/pdfs/1812can.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Murata_DLW5BTMxxxSQ2x_5x5mm +Wire Wound Chip Common Mode Choke Coil SMD, Murata DLW5BTxxxSQ2x, https://www.murata.com/products/productdata/8796762701854/EFLC0020.pdf, manual footprint +inductor common mode choke +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_TDK_ACM2520-2P +TDK ACM2520 common-mode filter, SMD, 2x2.5mm, height 1.2mm https://product.tdk.com/system/files/dam/doc/product/emc/emc/cmf_cmc/catalog/cmf_commercial_signal_acm2520_en.pdf +ACM2520 common-mode filter 4 pin +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_TDK_ACM2520-3P +TDK ACM2520 common-mode filter, SMD, 2x2.5mm, height 1.2mm https://product.tdk.com/system/files/dam/doc/product/emc/emc/cmf_cmc/catalog/cmf_commercial_signal_acm2520_en.pdf +ACM2520 common-mode filter 6 pin +0 +6 +6 +Inductor_SMD +L_CommonModeChoke_TDK_ACM7060 +ACM7060 SMT Common Mode Filter, https://product.tdk.com/system/files/dam/doc/product/emc/emc/cmf_cmc/catalog/cmf_commercial_power_acm7060_en.pdf +SMT Common Mode Line Filter +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Wuerth_WE-SL5 +WE-SL5 SMT Common Mode Line Filter, 9.5x8.3mm, height 5mm, https://www.we-online.com/components/products/datasheet/744273222.pdf +SMT Common Mode Line Filter +0 +4 +4 +Inductor_SMD +L_CommonMode_Delevan_4222 +API Delevan, Surface Mount Common Mode Bead, 4222 4222R, http://www.delevan.com/seriesPDFs/4222.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonMode_Wuerth_WE-SL2 +http://katalog.we-online.de/en/pbs/WE-SL2?sid=5fbec16187#vs_t1:c1_ct:1 +Wuerth WE-SL2 +0 +4 +4 +Inductor_SMD +L_CommonMode_Wurth_WE-CNSW-1206 +WE-CNSW SMT Common Mode Line Filter, https://www.we-online.com/components/products/datasheet/744232090.pdf +common mode choke 1206 cnsw +0 +4 +4 +Inductor_SMD +L_Eaton_MCL2012V1 +Inductor, Eaton, MCL2012V1, 2.0x1.2x0.9mm, https://eu.mouser.com/datasheet/2/87/eaton-mcl2012v1-multilayer-chip-inductor-data-shee-1622891.pdf +Inductor ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Fastron_PISN +Choke, Drossel, PISN, SMD, Fastron, +Choke Drossel PISN SMD Fastron +0 +2 +2 +Inductor_SMD +L_Fastron_PISN_Handsoldering +Choke, Drossel, PISN, SMD, Fastron, +Choke Drossel PISN SMD Fastron +0 +2 +2 +Inductor_SMD +L_Fastron_PISR +Choke, Drossel, PISR, Fastron, SMD, +Choke Drossel PISR Fastron SMD +0 +2 +2 +Inductor_SMD +L_Fastron_PISR_Handsoldering +Choke, Drossel, PISR, Fastron, SMD, +Choke Drossel PISR Fastron SMD +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0302 +Ferrocore DLG-0302 unshielded SMD power inductor, 3.0x2.8x2.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0302 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0403 + Ferrocore DLG-0403 unshielded SMD power inductor, 4.5x4.0x3.2mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0403 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0504 +Ferrocore DLG-0504 unshielded SMD power inductor, 5.8x5.2x4.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0504 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0703 +Ferrocore DLG-0703 unshielded SMD power inductor, 7.8x7.0x3.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0703 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0705 +Ferrocore DLG-0705 unshielded SMD power inductor, 7.8x7.0x5.0mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0705 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-1004 +Ferrocore DLG-1004 unshielded SMD power inductor, 10.0x9.0x4.0mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-1004 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-1005 +Ferrocore DLG-1005 unshielded SMD power inductor, 10.0x9.0x5.4mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-1005 +0 +2 +2 +Inductor_SMD +L_KOHERelec_MDA7030 +Inductor, KOHERelec, MDA7030, 7.1x6.6x2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2401252310_KOHERelec-MDA7030-220M_C2847487.pdf +Inductor high-current power shielded +0 +2 +2 +Inductor_SMD +L_Murata_DEM35xxC +https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundferritetypeforpl/m_dem3518c.ashx +Inductor SMD DEM35xxC +0 +2 +2 +Inductor_SMD +L_Murata_DFE201610P +Inductor, Murata, DFE201610P, 2.0x1.6x1.0mm, https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundmetalalloychiptype/m_dfe201610p.ashx +Inductor power chip flatwire +0 +2 +2 +Inductor_SMD +L_Murata_LQH2MCNxxxx02_2.0x1.6mm +Inductor, Murata, LQH2MCN_02 series, 1.6x2.0x0.9mm (https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0053.pdf) +chip coil inductor Murata LQH2MC +0 +2 +2 +Inductor_SMD +L_Murata_LQH55DN_5.7x5.0mm +Inductor, SMD, 5.7x5.0x4.7mm, https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0045.pdf +inductor smd +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_1turn_HDM0131A +Neosid, Air-Coil, SML, 1turn, HDM0131A, +Neosid Air-Coil SML 1turn HDM0131A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_2turn_HAM0231A +Neosid, Air-Coil, SML, 2turn, HAM0231A, +Neosid Air-Coil SML 2turn HAM0231A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_2turn_HDM0231A +Neosid, Air-Coil, SML, 2turn, HDM0231A, +Neosid Air-Coil SML 2turn HDM0231A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_3turn_HAM0331A +Neosid, Air-Coil, SML, 2turn, HAM0331A, +Neosid Air-Coil SML 3turn HAM0331A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_3turn_HDM0331A +Neosid, Air-Coil, SML, 3turn, HDM0331A, +Neosid Air-Coil SML 3turn HDM0331A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_4turn_HAM0431A +Neosid, Air-Coil, SML, 4turn, HAM0431A, +Neosid Air-Coil SML 4turn HAM0431A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_4turn_HDM0431A +Neosid, Air-Coil, SML, 4turn, HDM0431A, +Neosid Air-Coil SML 4turn HDM0431A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_5turn_HAM0531A +Neosid, Air-Coil, SML, 5turn, HAM0531A, +Neosid Air-Coil SML 5turn HAM0531A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_5turn_HDM0531A +Neosid, Air-Coil, SML, 5turn, HDM0531A, +Neosid Air-Coil SML 5turn HDM0531A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6-10turn_HAM0631A-HAM1031A +Neosid, Air-Coil, SML, 6-10turn, HAM0631A-HAM1031A, +Neosid Air-Coil SML 6-10turn HAM0631A-HAM1031A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6-10turn_HDM0431A-HDM1031A +Neosid, Air-Coil, SML, 6-10turn, HDM0431A-HDM1031A, +Neosid Air-Coil SML 6-10turn HDM0431A-HDM1031A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6turn_HAM0631A +Neosid, Air-Coil, SML, 6turn, HAM0631A, +Neosid Air-Coil SML 6turn HAM0631A +0 +2 +2 +Inductor_SMD +L_Neosid_MicroCoil_Ms36-L +Neosid, Micro Coil, Inductor, Ms36-L, SMD, Fixed inductor, anti clockwise, https://neosid.de/en/products/inductors/rod-core-chokes/smd-rod-core-chokes/52026/ms-36/7-h?c=94 +Neosid Micro Coil Inductor Ms36-L SMD Fixed inductor anti clockwise +0 +2 +2 +Inductor_SMD +L_Neosid_Ms42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_Ms42.pdf +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_Ms50 +Neosid, Power Inductor, Ms50, SMD, Fixed inductor, https://neosid.de/import-data/product-pdf/neoFestind_Ms50.pdf +Neosid Power Inductor Ms50 SMD Fixed inductor +0 +2 +2 +Inductor_SMD +L_Neosid_Ms50T +Neosid, Power Inductor, Ms50T, SMD, Fixed inductor, high temperature, https://neosid.de/import-data/product-pdf/neoFestind_Ms50T.pdf +Neosid Power Inductor Ms50T SMD Fixed inductor high temperature +0 +2 +2 +Inductor_SMD +L_Neosid_Ms85 +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85.pdf +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms85T +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85T.pdf +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95 +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95T +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95T.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95a +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95a.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE95H +Neosid, Inductor,SM-NE95H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE95H.pdf +Neosid Inductor SM-NE95H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE127 +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE127_HandSoldering +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE150 +Neosid, Inductor, SM-NE150, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE150.pdf +Neosid Inductor SM-NE150 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0512H +Neosid, Inductor, PIC0512H, Power Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0512H.pdf +Neosid Inductor PIC0512H Power Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0602H +Neosid, Power Inductor, SM-PIC0602H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0602H.pdf +Neosid Power Inductor SM-PIC0602H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0612H +Neosid, Power Inductor, SM-PIC0612H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0612H.pdf +Neosid Power Inductor SM-PIC0612H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC1004H +Neosid, Inductor, SM-PIC1004H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC1004H.pdf +Neosid Inductor SM-PIC1004H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SMS-ME3010 +Neosid, Inductor, SMS-ME3010, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3010.pdf +Neosid Inductor SMS-ME3010 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMS-ME3015 +Neosid, Power Inductor, SMS-ME3015, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3015.pdf +Neosid Power Inductor SMS-ME3015 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs42.pdf +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs50 +Neosid, Inductor, SMs50, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs50.pdf +Neosid Inductor SMs50 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs85 +Neosid, Inductor, SMs85, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs85.pdf +Neosid Inductor SMs85 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs95_SMs95p +Neosid, Inductor, SMs95, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMs95SMs95p.pdf +Neosid Inductor SMs95 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Pulse_P059x +1:1, Power Inductor, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/p0599nl +inductor coil choke +0 +4 +4 +Inductor_SMD +L_Pulse_PA4320 +Inductor SMD Pulse PA4320 http://productfinder.pulseeng.com/products/datasheets/P787.pdf +Inductor SMD Pulse PA4320 +0 +2 +2 +Inductor_SMD +L_Pulse_PA4344 +Pulse PA4344 / PM4344 Series SMD Inductors https://productfinder.pulseelectronics.com/api/public/uploads/product-attachments/datasheet_p771_1608107700.pdf +Pulse PA4344 PM4344 Series SMD Inductors +0 +2 +2 +Inductor_SMD +L_Pulse_PA4349 +Shielded Molded High Current Power Inductors 23.5x22mm, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/pa4349.104anlt +Shielded Molded High Current Power Inductor +0 +2 +2 +Inductor_SMD +L_SOREDE_SNR.1050_10x10x5mm +Sorede 10x10x5mm Power Inductor, https://datasheet.lcsc.com/lcsc/2201141530_SOREDE-SNR-1050-TYD4R7MT00_C2942304.pdf +Inductor Sorede SNR +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI62 +Inductor, SXN, SMDRI62, 6.5x6.8x3.0mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI64 +Inductor, SXN, SMDRI64, 6.5x6.8x5.0mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI73 +Inductor, SXN, SMDRI73, 7.5x7.5x3.4mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI74 +Inductor, SXN, SMDRI74, 7.5x7.5x4.5mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI124 +Inductor, SXN, SMDRI124, 12.3x12.3x4.5mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI125 +Inductor, SXN, SMDRI125, 12.3x12.3x6.0mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI127 +Inductor, SXN, SMDRI127, 12.3x12.3x8.0mm, https://www.sxndz.com/upload/202108/16/202108161607454319.pdf +Inductor sxn smdri +0 +2 +2 +Inductor_SMD +L_Sagami_CER1242B +Inductor, Sagami, h=4.5mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CER1257B +Inductor, Sagami, h=6.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CER1277B +Inductor, Sagami, h=8.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CWR1242C +Sagami power inductor, CWR1242C, H=4.5mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_Sagami_CWR1257C +Sagami power inductor, CWR1242C, H=6.0mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_Sagami_CWR1277C +Sagami power inductor, CWR1242C, H=7.7mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_SigTra_SC3316F +http://www.signaltransformer.com/sites/all/pdf/smd/P080_SC3316F.pdf +Choke +0 +2 +2 +Inductor_SMD +L_Sumida_CDMC6D28_7.25x6.5mm +SMD Power Inductor (http://products.sumida.com/products/pdf/CDMC6D28.pdf) +Inductor Sumida SMD CDMC6D28 +0 +2 +2 +Inductor_SMD +L_Sumida_CR75 +Inductor, Sumida, 8.1mm × 7.3mm × 5.5 mm, Unshielded, http://products.sumida.com/products/pdf/CR75.pdf +Inductor SMD CR75 Unshielded +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0402S +Inductor, Sunlord, MWSA0402S, 4.4x4.2x1.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0412S +Inductor, Sunlord, MWSA0412S, 4.4x4.2x1.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0503S +Inductor, Sunlord, MWSA0503S, 5.4x5.2x2.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0518S +Inductor, Sunlord, MWSA0518S, 5.4x5.2x1.6mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0602S +Inductor, Sunlord, MWSA0602S, 7.0x6.6x1.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0603S +Inductor, Sunlord, MWSA0603S, 7.0x6.6x2.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0604S +Inductor, Sunlord, MWSA0604S, 7.0x6.6x3.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0605S +Inductor, Sunlord, MWSA0605S, 7.0x6.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0615S +Inductor, Sunlord, MWSA0615S, 7.0x6.6x1.3mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0618S +Inductor, Sunlord, MWSA0618S, 7.0x6.6x1.6mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0624S +Inductor, Sunlord, MWSA0624S, 7.0x6.6x2.2mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0804S +Inductor, Sunlord, MWSA0804S, 8.2x8.8x3.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1003S +Inductor, Sunlord, MWSA1003S, 11.5x10.0x2.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1004S +Inductor, Sunlord, MWSA1004S, 11.0x10.0x3.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1005S +Inductor, Sunlord, MWSA1005S, 11.5x10.0x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-1R0 +Inductor, Sunlord, MWSA1204S-1R0, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-1R5 +Inductor, Sunlord, MWSA1204S-1R5, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-2R2 +Inductor, Sunlord, MWSA1204S-2R2, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-3R3 +Inductor, Sunlord, MWSA1204S-3R3, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-4R7 +Inductor, Sunlord, MWSA1204S-4R7, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-6R8 +Inductor, Sunlord, MWSA1204S-6R8, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-100 +Inductor, Sunlord, MWSA1204S-100, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-150 +Inductor, Sunlord, MWSA1204S-150, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-220 +Inductor, Sunlord, MWSA1204S-220, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R22 +Inductor, Sunlord, MWSA1204S-R22, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R47 +Inductor, Sunlord, MWSA1204S-R47, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R68 +Inductor, Sunlord, MWSA1204S-R68, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R82 +Inductor, Sunlord, MWSA1204S-R82, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-1R0 +Inductor, Sunlord, MWSA1205S-1R0, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-1R5 +Inductor, Sunlord, MWSA1205S-1R5, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-2R2 +Inductor, Sunlord, MWSA1205S-2R2, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-3R3 +Inductor, Sunlord, MWSA1205S-3R3, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-4R7 +Inductor, Sunlord, MWSA1205S-4R7, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-6R8 +Inductor, Sunlord, MWSA1205S-6R8, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-100 +Inductor, Sunlord, MWSA1205S-100, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-150 +Inductor, Sunlord, MWSA1205S-150, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-220 +Inductor, Sunlord, MWSA1205S-220, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-330 +Inductor, Sunlord, MWSA1205S-330, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-470 +Inductor, Sunlord, MWSA1205S-470, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R22 +Inductor, Sunlord, MWSA1205S-R22, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R36 +Inductor, Sunlord, MWSA1205S-R36, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R50 +Inductor, Sunlord, MWSA1205S-R50, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R68 +Inductor, Sunlord, MWSA1205S-R68, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R82 +Inductor, Sunlord, MWSA1205S-R82, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-1R5 +Inductor, Sunlord, MWSA1206S-1R5, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-2R2 +Inductor, Sunlord, MWSA1206S-2R2, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-3R3 +Inductor, Sunlord, MWSA1206S-3R3, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-4R7 +Inductor, Sunlord, MWSA1206S-4R7, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-5R6 +Inductor, Sunlord, MWSA1206S-5R6, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-6R8 +Inductor, Sunlord, MWSA1206S-6R8, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-8R2 +Inductor, Sunlord, MWSA1206S-8R2, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-100 +Inductor, Sunlord, MWSA1206S-100, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-101 +Inductor, Sunlord, MWSA1206S-101, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-120 +Inductor, Sunlord, MWSA1206S-120, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-121 +Inductor, Sunlord, MWSA1206S-121, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-150 +Inductor, Sunlord, MWSA1206S-150, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-151 +Inductor, Sunlord, MWSA1206S-151, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-180 +Inductor, Sunlord, MWSA1206S-180, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-220 +Inductor, Sunlord, MWSA1206S-220, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-270 +Inductor, Sunlord, MWSA1206S-270, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-330 +Inductor, Sunlord, MWSA1206S-330, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-470 +Inductor, Sunlord, MWSA1206S-470, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-680 +Inductor, Sunlord, MWSA1206S-680, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-R68 +Inductor, Sunlord, MWSA1206S-R68, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1265S +Inductor, Sunlord, MWSA1265S, 13.45x12.6x6.5mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1707S +Inductor, Sunlord, MWSA1707S, 17.15x17.15x6.7mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA2213S +Inductor, Sunlord, MWSA2213S, 23.5x22.0x12.6mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA3010S +Inductor, Sunlord, SWPA3010S, 3.0x3.0x1.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA3012S +Inductor, Sunlord, SWPA3012S, 3.0x3.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA3015S +Inductor, Sunlord, SWPA3015S, 3.0x3.0x1.5mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4010S +Inductor, Sunlord, SWPA4010S, 4.0x4.0x1.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4012S +Inductor, Sunlord, SWPA4012S, 4.0x4.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4018S +Inductor, Sunlord, SWPA4018S, 4.0x4.0x1.8mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4020S +Inductor, Sunlord, SWPA4020S, 4.0x4.0x2.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4026S +Inductor, Sunlord, SWPA4026S, 4.0x4.0x2.6mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4030S +Inductor, Sunlord, SWPA4030S, 4.0x4.0x3.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5012S +Inductor, Sunlord, SWPA5012S, 5.0x5.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5020S +Inductor, Sunlord, SWPA5020S, 5.0x5.0x2.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5040S +Inductor, Sunlord, SWPA5040S, 5.0x5.0x4.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6020S +Inductor, Sunlord, SWPA6020S, 6.0x6.0x2.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6028S +Inductor, Sunlord, SWPA6028S, 6.0x6.0x2.8mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6040S +Inductor, Sunlord, SWPA6040S, 6.0x6.0x4.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6045S +Inductor, Sunlord, SWPA6045S, 6.0x6.0x4.5mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA8040S +Inductor, Sunlord, SWPA8040S, 8.0x8.0x4.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA252010S +Inductor, Sunlord, SWPA252010S, 2.5x2.0x1.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA252012S +Inductor, Sunlord, SWPA252012S, 2.5x2.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWRB1204S +Inductor, Sunlord, SWRB1204S, 12.5x12.5x5.0mm, https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en +Inductor swrb +0 +2 +2 +Inductor_SMD +L_Sunlord_SWRB1205S +Inductor, Sunlord, SWRB1205S, 12.5x12.5x6.0mm, https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en +Inductor swrb +0 +2 +2 +Inductor_SMD +L_Sunlord_SWRB1207S +Inductor, Sunlord, SWRB1207S, 12.5x12.5x8.0mm, https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en +Inductor swrb +0 +2 +2 +Inductor_SMD +L_TDK_MLZ1608 +Inductor, TDK, MLZ1608, 1.6x0.8x0.8mm, "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz1608_en.pdf" +Inductor MLZ +0 +2 +2 +Inductor_SMD +L_TDK_MLZ2012_h0.85mm +Inductor, TDK, MLZ2012_h0.85mm, 2.0x1.25x0.85mm, "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz2012_en.pdf" +Inductor MLZ +0 +2 +2 +Inductor_SMD +L_TDK_MLZ2012_h1.25mm +Inductor, TDK, MLZ2012_h1.25mm, 2.0x1.25x1.25mm, "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz2012_en.pdf" +Inductor MLZ +0 +2 +2 +Inductor_SMD +L_TDK_NLV25_2.5x2.0mm +TDK NLV25, 2.5x2.0x1.8mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv25-ef_en.pdf +tdk nlv25 nlcv25 nlfv25 +0 +2 +2 +Inductor_SMD +L_TDK_NLV32_3.2x2.5mm +TDK NLV32, 3.2x2.5x2.2mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv32-ef_en.pdf +tdk nlv32 nlcv32 nlfv32 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6025 +Inductor, TDK, SLF6025, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6025_en.pdf) +Inductor TDK_SLF6025 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6028 +Inductor, TDK, SLF6028, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6028_en.pdf) +Inductor TDK_SLF6028 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6045 +Inductor, TDK, SLF6045, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6045_en.pdf) +Inductor TDK_SLF6045 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7032 +Inductor, TDK, SLF7032, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7032_en.pdf) +Inductor TDK_SLF7032 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7045 +Inductor, TDK, SLF7045, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7045_en.pdf) +Inductor TDK_SLF7045 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7055 +Inductor, TDK, SLF7055, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7055_en.pdf) +Inductor TDK_SLF7055 +0 +2 +2 +Inductor_SMD +L_TDK_SLF10145 +Inductor, TDK, SLF10145, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf10145-h_en.pdf) +Inductor TDK_SLF10145 +0 +2 +2 +Inductor_SMD +L_TDK_SLF10165 +Inductor, TDK, SLF10165, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf10165_en.pdf) +Inductor TDK_SLF10165 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12555 +Inductor, TDK, SLF12555, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf12555_en.pdf) +Inductor SLF12555 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12565 +Inductor, TDK, SLF12565, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12565-h_en.pdf) +Inductor SLF12565 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12575 +Inductor, TDK, SLF12575, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12575-h_en.pdf) +Inductor SLF12575 +0 +2 +2 +Inductor_SMD +L_TDK_VLF10040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm +inductor TDK VLP smd VLF10040 +0 +2 +2 +Inductor_SMD +L_TDK_VLP8040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm +inductor TDK VLP smd VLP8040 +0 +2 +2 +Inductor_SMD +L_TDK_VLS6045EX_VLS6045AF +Inductor,TDK, VLS-6045, 6x6x4.5mm, https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_power_vls6045ex_en.pdf +inductor TDK VLS SMD VLS6045EF VLS6045AF +0 +2 +2 +Inductor_SMD +L_TaiTech_TMPC1265_13.5x12.5mm +Tai Tech TMPC1265 series SMD inductor https://datasheet.lcsc.com/lcsc/2009171439_TAI-TECH-TMPC1265HP-100MG-D_C305223.pdf, 13.5x12.5x6.2mm +Tai Tech TMPC1265 SMD inductor +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_BK_Array_1206_3216Metric +Ferrite Bead Array 4x0603, Taiyo Yuden BK Series (see https://www.yuden.co.jp/productdata/catalog/mlci09_e.pdf) +ferrite bead array +0 +8 +8 +Inductor_SMD +L_Taiyo-Yuden_MD-1616 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-1616, 1.6mmx1.6mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-2020 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-2020, 2.0mmx2.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-3030 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-3030, 3.0mmx3.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-4040 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-4040, 4.0mmx4.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-5050 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-5050, 5.0mmx5.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-20xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-20xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-24xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-24xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-30xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-30xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-40xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-40xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-50xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-50xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-60xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-60xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-80xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-80xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-10050_9.8x10.0mm +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-10050_9.8x10.0mm_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_TracoPower_TCK-047_5.2x5.8mm +Inductor, Traco, TCK-047, 5.2x5.8mm, https://www.tracopower.com/products/tck047.pdf +inductor smd traco +0 +2 +2 +Inductor_SMD +L_TracoPower_TCK-141 +Choke, SMD, 4.0x4.0mm 2.1mm height, https://www.tracopower.com/products/tck141.pdf +Choke SMD +0 +2 +2 +Inductor_SMD +L_Vishay_IFSC-1515AH_4x4x1.8mm +Low Profile, High Current Inductors (https://www.vishay.com/docs/34295/sc15ah01.pdf) +SMD Vishay Inductor Low Profile +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-1212 +Inductor, Vishay, IHLP series, 3.0mmx3.0mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-1616 +Inductor, Vishay, IHLP series, 4.1mmx4.1mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-2020 +Inductor, Vishay, IHLP series, 5.1mmx5.1mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-2525 +Inductor, Vishay, IHLP series, 6.3mmx6.3mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-4040 +Inductor, Vishay, IHLP series, 10.2mmx10.2mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-5050 +Inductor, Vishay, IHLP series, 12.7mmx12.7mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-6767 +Inductor, Vishay, IHLP series, 17.0mmx17.0mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-3825 +Inductor, Vishay, Vishay_IHSM-3825, http://www.vishay.com/docs/34018/ihsm3825.pdf, 11.2mmx6.3mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-4825 +Inductor, Vishay, Vishay_IHSM-4825, http://www.vishay.com/docs/34019/ihsm4825.pdf, 13.7mmx6.3mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-5832 +Inductor, Vishay, Vishay_IHSM-5832, http://www.vishay.com/docs/34020/ihsm5832.pdf, 16.3mmx8.1mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-7832 +Inductor, Vishay, Vishay_IHSM-7832, http://www.vishay.com/docs/34021/ihsm7832.pdf, 19.8mmx8.1mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Walsin_WLFM201209x +Inductor, Walsin, WLFM201209x, 2.0x1.25x0.9mm, http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf +Inductor ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Walsin_WLFM201609x +Inductor, Walsin, WLFM201609x, 2.0x1.6x0.9mm, http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf +Inductor ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Walsin_WLFM252009x +Inductor, Walsin, WLFM252009x, 2.5x2.0x0.9mm, http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf +Inductor ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Wuerth_HCF-2013 +7443630070, http://katalog.we-online.de/pbs/datasheet/7443630070.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCF-2815 +74436410150, http://katalog.we-online.de/pbs/datasheet/74436410150.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCF-2818 +7443640330, http://katalog.we-online.de/pbs/datasheet/7443640330.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCI-1030 +Inductor, Wuerth Elektronik, Wuerth_HCI-1030, 10.6mmx10.6mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1040 +Inductor, Wuerth Elektronik, Wuerth_HCI-1040, 10.2mmx10.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1050 +Inductor, Wuerth Elektronik, Wuerth_HCI-1050, 10.2mmx10.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1335 +Inductor, Wuerth Elektronik, Wuerth_HCI-1335, 12.8mmx12.8mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1350 +Inductor, Wuerth Elektronik, Wuerth_HCI-1350, 12.8mmx12.8mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1365 +Inductor, Wuerth Elektronik, Wuerth_HCI-1365, 12.8mmx12.8mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1890 +Inductor, Wuerth Elektronik, Wuerth_HCI-1890, 18.2mmx18.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-2212 +Inductor, Wuerth Elektronik, Wuerth_HCI-2212, 22.5mmx22.0mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-5040 +Inductor, Wuerth Elektronik, Wuerth_HCI-5040, 5.5mmx5.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7030 +Inductor, Wuerth Elektronik, Wuerth_HCI-7030, 6.9mmx6.9mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7040 +Inductor, Wuerth Elektronik, Wuerth_HCI-7040, 6.9mmx6.9mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7050 +Inductor, Wuerth Elektronik, Wuerth_HCI-7050, 6.9mmx6.9mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1050 +Inductor, Wuerth Elektronik, Wuerth_HCM-1050, 10.2mmx7.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1052 +Inductor, Wuerth Elektronik, Wuerth_HCM-1052, 10.5mmx10.3mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1070 +Inductor, Wuerth Elektronik, Wuerth_HCM-1070, 10.1mmx7.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1078 +Inductor, Wuerth Elektronik, Wuerth_HCM-1078, 9.4mmx6.2mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1190 +Inductor, Wuerth Elektronik, Wuerth_HCM-1190, 10.5mmx11.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1240 +Inductor, Wuerth Elektronik, Wuerth_HCM-1240, 10.0mmx11.8mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1350 +Inductor, Wuerth Elektronik, Wuerth_HCM-1350, 13.5mmx13.3mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1390 +Inductor, Wuerth Elektronik, Wuerth_HCM-1390, 12.5mmx13.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-7050 +Inductor, Wuerth Elektronik, Wuerth_HCM-7050, 7.2mmx7.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-7070 +Inductor, Wuerth Elektronik, Wuerth_HCM-7070, 7.4mmx7.2mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-1610 +Inductor, Wuerth Elektronik, Wuerth_MAPI-1610, 1.6mmx1.6mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2010 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2010, 2.0mmx1.6mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2506 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2506, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2508 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2508, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2510 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2510, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2512 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2512, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3010 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3010, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3012 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3012, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3015 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3015, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3020 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3020, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-4020 +Inductor, Wuerth Elektronik, Wuerth_MAPI-4020, 4.0mmx4.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-4030 +Inductor, Wuerth Elektronik, Wuerth_MAPI-4030, 4.0mmx4.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-DD-Typ-L-Typ-XL-Typ-XXL +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ L, Typ XL, Typ XXL, https://katalog.we-online.com/pbs/datasheet/744874001.pdf +Choke Coupled Double Inductor SMD Wuerth WE-DD TypL TypXL TypXXL +0 +4 +4 +Inductor_SMD +L_Wuerth_WE-DD-Typ-M-Typ-S +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744878001.pdf, https://katalog.we-online.de/pbs/datasheet/744877001.pdf +Choke Coupled Double Inductor SMD Wuerth WE-DD TypM TypS +0 +4 +4 +Inductor_SMD +L_Wuerth_WE-GF-1210 +Unshielded Inductor, Wuerth Elektronik, WE-GF, SMD, 1210, https://www.we-online.de/katalog/datasheet/74476401.pdf +Unshielded Inductor WE-GF 1210 Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-7345 +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, 7345, https://katalog.we-online.com/pbs/datasheet/744777001.pdf +Choke Shielded Power Inductor WE-PD 7345 Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-LS +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-LS_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, Handsoldering, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-M-Typ-S +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744778005.pdf +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-M-Typ-S_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, Handsoldering, https://katalog.we-online.com/pbs/datasheet/744778005.pdf +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-L +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ L, , https://katalog.we-online.com/pbs/datasheet/74477510.pdf +Choke Power Inductor WE-PD2 TypL Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-MS +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ MS, https://katalog.we-online.com/pbs/datasheet/744774022.pdf +Choke Power Inductor WE-PD2 TypMS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-XL +Power Inductor, Wuerth Elektronik, WE-PD2, SMT, Typ XL, https://katalog.we-online.com/pbs/datasheet/744776012.pdf +Choke Power Inductor WE-PD2 TypXL Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD4-Typ-X +Power Inductor, Wuerth Elektronik, WE-PD4, SMT, Typ X, https://katalog.we-online.de/pbs/datasheet/74458001.pdf +Choke Power Inductor WE-PD4 TypX Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PDF +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf +Choke Shielded Power Inductor WE-PDF Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PDF_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, Handsoldering, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf +Choke Shielded Power Inductor WE-PDF Wuerth Handsoldering +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-TPC-3816 +L_Wuerth_WE-TPC-3816 StepUp generated footprint, http://katalog.we-online.de/pbs/datasheet/7440310047.pdf +wurth wuerth smd inductor +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-XHMI-8080 +Inductor, Wuerth, WE-XHMI 8080, 8.3mmx8.8mm (Script generated with StandardBox.py) (https://www.we-online.com/components/products/datasheet/74439358068.pdf) +Inductor Wuerth WE-XHMI 8080 +0 +2 +2 +Inductor_SMD +L_Wurth_WE-CAIR-5910 +WE-CAIR Air coil, https://www.we-online.com/components/products/datasheet/744918254.pdf +air coil inductor wurth we cair +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-2010 +Semi-Shielded High Saturation Power Inductor, body 2x1.6mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-2010 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-2512 +Semi-Shielded High Saturation Power Inductor, body 2.5x2mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-2512 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-3012 +Semi-Shielded High Saturation Power Inductor, body 3x3mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-3012 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-4020 +Semi-Shielded High Saturation Power Inductor, body 4x4mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-4020 +SMT +0 +2 +2 +Inductor_THT +Choke_EPCOS_B82722A +Current-Compensated Ring Core Double Chokes, EPCOS, B82722A, 22.3mmx22.7mm, https://en.tdk.eu/inf/30/db/ind_2008/b82722a_j.pdf +chokes epcos tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN102-04-14.0x14.0mm +Current-compensated Chokes, Schaffner, RN102-04, 14.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN112-04-17.7x17.1mm +Current-compensated Chokes, Schaffner, RN112-04, 17.7mmx17.1mm https://www.schaffner.com/fileadmin/user_upload/pim/products/datasheets/RN_series.pdf +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN114-04-22.5x21.5mm +Current-compensated Chokes, Schaffner, RN114-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN116-04-22.5x21.5mm +Current-compensated Chokes, Schaffner, RN116-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN122-04-28.0x27.0mm +Current-compensated Chokes, Schaffner, RN122-04, 28.0mmx27.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN142-04-33.1x32.5mm +Current-compensated Chokes, Schaffner, RN142-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN143-04-33.1x32.5mm +Current-compensated Chokes, Schaffner, RN143-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN152-04-43.0x41.8mm +Current-compensated Chokes, Schaffner, RN152-04, 43.0mmx41.8mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN202-04-8.8x18.2mm +Current-compensated Chokes, Schaffner, RN202-04, 8.8mmx18.2mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN204-04-9.0x14.0mm +Current-compensated Chokes, Schaffner, RN204-04, 9.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN212-04-12.5x18.0mm +Current-compensated Chokes, Schaffner, RN212-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN214-04-15.5x23.0mm +Current-compensated Chokes, Schaffner, RN214-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN216-04-15.5x23.0mm +Current-compensated Chokes, Schaffner, RN216-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN218-04-12.5x18.0mm +Current-compensated Chokes, Schaffner, RN218-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN222-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN222-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN232-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN232-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN242-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN242-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +L_Axial_L5.0mm_D3.6mm_P10.00mm_Horizontal_Murata_BL01RN1A2A2 +Inductor, Murata BL01RN1A2A2, Axial, Horizontal, pin pitch=10.00mm, length*diameter=5*3.6mm, https://www.murata.com/en-global/products/productdetail?partno=BL01RN1A2A2%23 +inductor axial horizontal +0 +2 +2 +Inductor_THT +L_Axial_L5.3mm_D2.2mm_P2.54mm_Vertical_Vishay_IM-1 +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Vertical pin pitch 2.54mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +Inductor_THT +L_Axial_L5.3mm_D2.2mm_P7.62mm_Horizontal_Vishay_IM-1 +Inductor, Axial series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Horizontal pin pitch 7.62mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +Inductor_THT +L_Axial_L5.3mm_D2.2mm_P10.16mm_Horizontal_Vishay_IM-1 +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +Inductor_THT +L_Axial_L6.6mm_D2.7mm_P2.54mm_Vertical_Vishay_IM-2 +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Vertical pin pitch 2.54mm length 6.6mm diameter 2.7mm Vishay IM-2 +0 +2 +2 +Inductor_THT +L_Axial_L6.6mm_D2.7mm_P10.16mm_Horizontal_Vishay_IM-2 +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 6.6mm diameter 2.7mm Vishay IM-2 +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P2.54mm_Vertical_Fastron_MICC +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 2.54mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P5.08mm_Vertical_Fastron_MICC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P10.16mm_Horizontal_Fastron_MICC +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P12.70mm_Horizontal_Fastron_MICC +Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 12.7mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P2.54mm_Vertical_Fastron_SMCC +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Vertical pin pitch 2.54mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P5.08mm_Vertical_Fastron_SMCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P12.70mm_Horizontal_Fastron_SMCC +Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P15.24mm_Horizontal_Fastron_SMCC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L11.0mm_D4.5mm_P5.08mm_Vertical_Fastron_MECC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +Inductor_THT +L_Axial_L11.0mm_D4.5mm_P7.62mm_Vertical_Fastron_MECC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +Inductor_THT +L_Axial_L11.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_MECC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +Inductor_THT +L_Axial_L12.0mm_D5.0mm_P5.08mm_Vertical_Fastron_MISC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +Inductor_THT +L_Axial_L12.0mm_D5.0mm_P7.62mm_Vertical_Fastron_MISC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +Inductor_THT +L_Axial_L12.0mm_D5.0mm_P15.24mm_Horizontal_Fastron_MISC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L13.0mm_D4.5mm_P5.08mm_Vertical_Fastron_HCCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +Inductor_THT +L_Axial_L13.0mm_D4.5mm_P7.62mm_Vertical_Fastron_HCCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +Inductor_THT +L_Axial_L13.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_HCCC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +Inductor_THT +L_Axial_L14.0mm_D4.5mm_P5.08mm_Vertical_Fastron_LACC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +Inductor_THT +L_Axial_L14.0mm_D4.5mm_P7.62mm_Vertical_Fastron_LACC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +Inductor_THT +L_Axial_L14.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_LACC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P5.08mm_Vertical_Fastron_VHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P7.62mm_Vertical_Fastron_VHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P20.32mm_Horizontal_Fastron_VHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P25.40mm_Horizontal_Fastron_VHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P5.08mm_Vertical_Fastron_XHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P7.62mm_Vertical_Fastron_XHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P20.32mm_Horizontal_Fastron_XHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P25.40mm_Horizontal_Fastron_XHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D9.5mm_P5.08mm_Vertical_Vishay_IM-10-37 +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 9.5mm Vishay IM-10-37 +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D9.5mm_P20.32mm_Horizontal_Vishay_IM-10-37 +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 9.5mm Vishay IM-10-37 +0 +2 +2 +Inductor_THT +L_Axial_L17.5mm_D12.0mm_P7.62mm_Vertical_Vishay_IM-10-46 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 17.5mm diameter 12mm Vishay IM-10-46 +0 +2 +2 +Inductor_THT +L_Axial_L17.5mm_D12.0mm_P20.32mm_Horizontal_Vishay_IM-10-46 +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 17.5mm diameter 12mm Vishay IM-10-46 +0 +2 +2 +Inductor_THT +L_Axial_L20.0mm_D8.0mm_P5.08mm_Vertical +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=20*8mm^2 +Inductor Axial series Axial Vertical pin pitch 5.08mm length 20mm diameter 8mm +0 +2 +2 +Inductor_THT +L_Axial_L20.0mm_D8.0mm_P7.62mm_Vertical +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20*8mm^2 +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20mm diameter 8mm +0 +2 +2 +Inductor_THT +L_Axial_L20.0mm_D8.0mm_P25.40mm_Horizontal +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20*8mm^2 +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20mm diameter 8mm +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-101 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.07mm Vishay IHA-101 +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.1mm_P28.50mm_Horizontal_Vishay_IHA-101 +Inductor, Axial series, Axial, Horizontal, pin pitch=28.5mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 28.5mm length 20.32mm diameter 12.07mm Vishay IHA-101 +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-201 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.7mm Vishay IHA-201 +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.7mm_P25.40mm_Horizontal_Vishay_IHA-201 +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20.32mm diameter 12.7mm Vishay IHA-201 +0 +2 +2 +Inductor_THT +L_Axial_L23.4mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-203 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 23.37mm diameter 12.7mm Vishay IHA-203 +0 +2 +2 +Inductor_THT +L_Axial_L23.4mm_D12.7mm_P32.00mm_Horizontal_Vishay_IHA-203 +Inductor, Axial series, Axial, Horizontal, pin pitch=32mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 32mm length 23.37mm diameter 12.7mm Vishay IHA-203 +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.1mm_P5.08mm_Vertical_Vishay_IM-10-28 +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.1mm Vishay IM-10-28 +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.1mm_P30.48mm_Horizontal_Vishay_IM-10-28 +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 24mm diameter 7.1mm Vishay IM-10-28 +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.5mm_P5.08mm_Vertical_Fastron_MESC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.5mm_P7.62mm_Vertical_Fastron_MESC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.5mm_P27.94mm_Horizontal_Fastron_MESC +Inductor, Axial series, Axial, Horizontal, pin pitch=27.94mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf +Inductor Axial series Axial Horizontal pin pitch 27.94mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D9.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D9.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D9.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D10.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D10.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D10.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D11.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D11.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D11.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-103 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 12.07mm Vishay IHA-103 +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D12.1mm_P35.00mm_Horizontal_Vishay_IHA-103 +Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 12.07mm Vishay IHA-103 +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-104 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 13.97mm Vishay IHA-104 +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D14.0mm_P35.00mm_Horizontal_Vishay_IHA-104 +Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 13.97mm Vishay IHA-104 +0 +2 +2 +Inductor_THT +L_Axial_L29.9mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-105 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 29.85mm diameter 13.97mm Vishay IHA-105 +0 +2 +2 +Inductor_THT +L_Axial_L29.9mm_D14.0mm_P38.00mm_Horizontal_Vishay_IHA-105 +Inductor, Axial series, Axial, Horizontal, pin pitch=38mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 38mm length 29.85mm diameter 13.97mm Vishay IHA-105 +0 +2 +2 +Inductor_THT +L_Axial_L30.0mm_D8.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L30.0mm_D8.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L30.0mm_D8.0mm_P35.56mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 35.56mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x105NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x155NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x205NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x405NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x705NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455xxx6NL_2 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_TDK_B82746S4143A040 +13A, 3Phase, Triple Coil, CM Choke, https://www.tdk-electronics.tdk.com/inf/30/ds/b82746s.pdf +common mode filter triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82746S6702A040 +8A, 3Phase, Triple Coil, CM Choke, https://www.tdk-electronics.tdk.com/inf/30/ds/b82746s.pdf +common mode filter triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6163A040 +16A, 3Phase, Triple Coil, CM Choke, drill hole 2mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6203A040 +20A, 3Phase, Triple Coil, CM Choke, drill hole 2.2mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6253A040 +25A, 3Phase, Triple Coil, CM Choke, drill hole 2.44mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6353A040 +35A, 3Phase, Triple Coil, CM Choke, drill hole 3mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82767S4123N030 +12A, 3Phase N, Quadruple Coil, https://www.tdk-electronics.tdk.com/inf/30/ds/b82767s4.pdf +common mode filter quadruple choke +0 +8 +8 +Inductor_THT +L_CommonMode_TDK_B82767S4193N030 +19A, 3Phase N, Quadruple Coil, https://www.tdk-electronics.tdk.com/inf/30/ds/b82767s4.pdf +common mode filter quadruple choke +0 +8 +8 +Inductor_THT +L_CommonMode_TDK_B82767S4263N030 +26A , 3Phase N, Quadruple Coil, https://www.tdk-electronics.tdk.com/inf/30/ds/b82767s4.pdf +common mode filter quadruple choke +0 +8 +8 +Inductor_THT +L_CommonMode_Toroid_Vertical_L19.3mm_W10.8mm_Px6.35mm_Py15.24mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=6.35*15.24mm^2, , length*width=19.304*10.795mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 6.35*15.24mm^2 length 19.304mm width 10.795mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L21.0mm_W10.0mm_Px5.08mm_Py12.70mm_Murata_5100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=5.08*12.70mm^2, , length*width=21*10mm^2, muRATA, 5100, http://www.murata-ps.com/data/magnetics/kmp_5100.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 5.08*12.70mm^2 length 21mm width 10mm muRATA 5100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L24.0mm_W16.3mm_Px10.16mm_Py20.32mm_Murata_5200 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=24*16.3mm^2, muRATA, 5200, http://www.murata-ps.com/data/magnetics/kmp_5200.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 24mm width 16.3mm muRATA 5200 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L30.5mm_W15.2mm_Px10.16mm_Py20.32mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=30.479999999999997*15.239999999999998mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 30.479999999999997mm width 15.239999999999998mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L34.3mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=34.29*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 34.29mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L36.8mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=36.83*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 36.83mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L38.1mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=38.099999999999994*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 38.099999999999994mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L39.4mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=39.37*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 39.37mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L41.9mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=41.91*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 41.91mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L43.2mm_W22.9mm_Px17.78mm_Py30.48mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=17.78*30.48mm^2, , length*width=43.18*22.86mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 17.78*30.48mm^2 length 43.18mm width 22.86mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_VAC_T60405-S6123-X140 +40A, 3Phase, Triple Coil, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X140.pdf +common mode filter +0 +6 +6 +Inductor_THT +L_CommonMode_VAC_T60405-S6123-X240 +40A, 3Phase, Triple Coil, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X240.pdf +common mode filter triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_VAC_T60405-S6123-X402 +30A, 3Phase N, Quadruple Coil, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X402.pdf +common mode filter quadruple choke +0 +8 +8 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-L +Wuerth, WE-CMB, Bauform L, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-M +Wuerth, WE-CMB, Bauform M, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-S +Wuerth, WE-CMB, Bauform S, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-XL +Wuerth, WE-CMB, Bauform XL, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-XS +Wuerth, WE-CMB, Bauform XS, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-XXL +Wuerth, WE-CMB, Bauform XXL, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM120 +Lodestone Pacific, 30.48mm diameter vertical toroid mount, 16AWG/1.27mm holes, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM160 +Lodestone Pacific, 40.64mm diameter vertical toroid mount, 16AWG/1.27mm holes, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM254 +Lodestone Pacific, 64.51mm diameter vertical toroid mount, 16AWG/1.27mm holes, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM280 +Lodestone Pacific, 71.12mm diameter vertical toroid mount, 16AWG/1.27mm holes, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM950-6 +Lodestone Pacific, vertical toroid mount, 11x19mm, 6 pins, https://www.lodestonepacific.com/wp-content/uploads/2021/05/VTM950-6.pdf +vertical inductor toroid mount +0 +6 +6 +Inductor_THT +L_Radial_D6.0mm_P4.00mm +Inductor, Radial series, Radial, pin pitch=4.00mm, , diameter=6.0mm, http://www.abracon.com/Magnetics/radial/AIUR-07.pdf +Inductor Radial series Radial pin pitch 4.00mm diameter 6.0mm +0 +2 +2 +Inductor_THT +L_Radial_D7.0mm_P3.00mm +Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7mm, http://www.abracon.com/Magnetics/radial/AIUR-16.pdf +Inductor Radial series Radial pin pitch 3.00mm diameter 7mm +0 +2 +2 +Inductor_THT +L_Radial_D7.2mm_P3.00mm_Murata_1700 +Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7.2mm, MuRATA, 1700, http://www.murata-ps.com/data/magnetics/kmp_1700.pdf +Inductor Radial series Radial pin pitch 3.00mm diameter 7.2mm MuRATA 1700 +0 +2 +2 +Inductor_THT +L_Radial_D7.5mm_P3.50mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=3.50mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 3.50mm diameter 7.5mm Fastron 07P +0 +2 +2 +Inductor_THT +L_Radial_D7.5mm_P5.00mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 7.5mm Fastron 07P +0 +2 +2 +Inductor_THT +L_Radial_D7.8mm_P5.00mm_Fastron_07HCP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.8mm, Fastron, 07HCP, http://www.abracon.com/Magnetics/radial/AISR875.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 7.8mm Fastron 07HCP +0 +2 +2 +Inductor_THT +L_Radial_D8.7mm_P5.00mm_Fastron_07HCP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=8.7mm, Fastron, 07HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_07HCP.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 8.7mm Fastron 07HCP +0 +2 +2 +Inductor_THT +L_Radial_D9.5mm_P5.00mm_Fastron_07HVP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=9.5mm, Fastron, 07HVP, http://www.fastrongroup.com/image-show/107/07HVP%2007HVP_T.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 9.5mm Fastron 07HVP +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Fastron_07M +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07M, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07M +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07P, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07P +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Neosid_SD12_style3 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12 style3 +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Neosid_SD12k_style3 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12k, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12k style3 +0 +2 +2 +Inductor_THT +L_Radial_D10.5mm_P4.00x5.00mm_Murata_1200RS +Inductor, Radial, Pitch=4.00x5.00mm, Diameter=10.5mm, Murata 1200RS, http://www.murata-ps.com/data/magnetics/kmp_1200rs.pdf +Inductor Radial Murata 1200RS +0 +4 +2 +Inductor_THT +L_Radial_D10.5mm_P5.00mm_Abacron_AISR-01 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Abacron, AISR-01, http://www.abracon.com/Magnetics/radial/AISR-01.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 10.5mm Abacron AISR-01 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P5.00mm_Fastron_11P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Fastron, 11P, http://cdn-reichelt.de/documents/datenblatt/B400/DS_11P.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Fastron 11P +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P5.00mm_Neosid_SD12_style2 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12 style2 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P5.00mm_Neosid_SD12k_style2 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12k, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12k style2 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P6.00mm_Murata_1900R +Inductor, Radial series, Radial, pin pitch=6.00mm, , diameter=12.0mm, MuRATA, 1900R, http://www.murata-ps.com/data/magnetics/kmp_1900r.pdf +Inductor Radial series Radial pin pitch 6.00mm diameter 12.0mm MuRATA 1900R +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P10.00mm_Neosid_SD12_style1 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12 style1 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P10.00mm_Neosid_SD12k_style1 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12k, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12k style1 +0 +2 +2 +Inductor_THT +L_Radial_D12.5mm_P7.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 7.00mm diameter 12.5mm Fastron 09HCP +0 +2 +2 +Inductor_THT +L_Radial_D12.5mm_P9.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=9.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 9.00mm diameter 12.5mm Fastron 09HCP +0 +2 +2 +Inductor_THT +L_Radial_D13.5mm_P7.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=13.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 7.00mm diameter 13.5mm Fastron 09HCP +0 +2 +2 +Inductor_THT +L_Radial_D14.2mm_P10.00mm_Neosid_SD14 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=14.2mm, Neosid, SD14, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd14.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 14.2mm Neosid SD14 +0 +2 +2 +Inductor_THT +L_Radial_D16.0mm_P10.00mm_Panasonic_15E-L +Panasonic ELC Type 15E-L inductor, radial, shielded, pin pitch=10.00mm, diameter=16.0mm, https://mediap.industry.panasonic.eu/assets/imported/industrial.panasonic.com/cdbs/www-data/pdf/AGB0000/AGB0000CE10.pdf +ELC15ExxxL +0 +3 +3 +Inductor_THT +L_Radial_D16.8mm_P11.43mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=11.43mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 11.43mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +Inductor_THT +L_Radial_D16.8mm_P12.07mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=12.07mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 12.07mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +Inductor_THT +L_Radial_D16.8mm_P12.70mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=12.70mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 12.70mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +Inductor_THT +L_Radial_D18.0mm_P10.00mm +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=18mm, http://www.abracon.com/Magnetics/radial/AIUR-15.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 18mm +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P14.61mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=14.61mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 14.61mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P15.00mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.00mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.00mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P15.24mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.24mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.24mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P15.75mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.75mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.75mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P19.00mm +Inductor, Radial series, Radial, pin pitch=19.00mm, , diameter=21mm, http://www.abracon.com/Magnetics/radial/AIRD02.pdf +Inductor Radial series Radial pin pitch 19.00mm diameter 21mm +0 +2 +2 +Inductor_THT +L_Radial_D24.0mm_P24.00mm +Inductor, Radial series, Radial, pin pitch=24.00mm, , diameter=24mm +Inductor Radial series Radial pin pitch 24.00mm diameter 24mm +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P22.90mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=22.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 22.90mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.10mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.10mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.10mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.40mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.40mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.40mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.70mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.70mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.70mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.90mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.90mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D27.9mm_P18.29mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=18.29mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 18.29mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +Inductor_THT +L_Radial_D27.9mm_P19.05mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=19.05mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 19.05mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +Inductor_THT +L_Radial_D27.9mm_P20.07mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=20.07mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 20.07mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +Inductor_THT +L_Radial_D28.0mm_P29.20mm +Inductor, Radial series, Radial, pin pitch=29.20mm, , diameter=28mm +Inductor Radial series Radial pin pitch 29.20mm diameter 28mm +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P28.30mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=28.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.30mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P28.50mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=28.50mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.50mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P28.80mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=28.80mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.80mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P29.00mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=29.00mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 29.00mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P29.30mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=29.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 29.30mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P26.16mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=26.16mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 26.16mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P27.18mm_Vishay_IHB-4 +Inductor, Radial series, Radial, pin pitch=27.18mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.18mm diameter 40.64mm Vishay IHB-4 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P27.94mm_Vishay_IHB-4 +Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-4 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P27.94mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P28.70mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=28.70mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 28.70mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P33.27mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=33.27mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 33.27mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P34.29mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=34.29mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 34.29mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P35.81mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=35.81mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 35.81mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P36.32mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=36.32mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 36.32mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P38.86mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=38.86mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 38.86mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_L7.5mm_W4.6mm_P5.00mm_Neosid_SD75 +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=7.5*4.6mm^2, Neosid, SD75, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd75.pdf +Inductor Radial series Radial pin pitch 5.00mm length 7.5mm width 4.6mm Neosid SD75 +0 +2 +2 +Inductor_THT +L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_NE-CPB-07E +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, NE-CPB-07E, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB07E.pdf +Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid NE-CPB-07E +0 +2 +2 +Inductor_THT +L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_SD8 +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, SD8, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd8.pdf +Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid SD8 +0 +2 +2 +Inductor_THT +L_Radial_L9.1mm_W9.1mm_Px6.35mm_Py6.35mm_Pulse_LP-25 +Inductor, Radial series, Radial, pin pitch=6.35*6.35mm^2, , length*width=9.14*9.14mm^2, Pulse, LP-25, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 6.35*6.35mm^2 length 9.14mm width 9.14mm Pulse LP-25 +0 +2 +2 +Inductor_THT +L_Radial_L10.2mm_W10.2mm_Px7.62mm_Py7.62mm_Pulse_LP-30 +Inductor, Radial series, Radial, pin pitch=7.62*7.62mm^2, , length*width=10.16*10.16mm^2, Pulse, LP-30, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 7.62*7.62mm^2 length 10.16mm width 10.16mm Pulse LP-30 +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.3mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.3mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.3mm +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.5mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.5mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.5mm +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.7mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.7mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.7mm +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.8mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.8mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.8mm +0 +2 +2 +Inductor_THT +L_Radial_L12.6mm_W12.6mm_Px9.52mm_Py9.52mm_Pulse_LP-37 +Inductor, Radial series, Radial, pin pitch=9.52*9.52mm^2, , length*width=12.57*12.57mm^2, Pulse, LP-37, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 9.52*9.52mm^2 length 12.57mm width 12.57mm Pulse LP-37 +0 +2 +2 +Inductor_THT +L_Radial_L16.1mm_W16.1mm_Px7.62mm_Py12.70mm_Pulse_LP-44 +Inductor, Radial series, Radial, pin pitch=7.62*12.70mm^2, , length*width=16.13*16.13mm^2, Pulse, LP-44, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 7.62*12.70mm^2 length 16.13mm width 16.13mm Pulse LP-44 +0 +2 +2 +Inductor_THT +L_SELF1408 +Self Ferrite 14 - 08 +SELF +0 +7 +3 +Inductor_THT +L_SELF1418 +Self Ferrite 14 - 18 +SELF +0 +10 +4 +Inductor_THT +L_Toroid_Horizontal_D3.2mm_P6.40mm_Diameter3-5mm_Amidon-T12 +L_Toroid, Horizontal series, Radial, pin pitch=6.40mm, , diameter=3.175mm, Diameter3-5mm, Amidon-T12 +L_Toroid Horizontal series Radial pin pitch 6.40mm diameter 3.175mm Diameter3-5mm Amidon-T12 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D4.1mm_P8.00mm_Diameter4-5mm_Amidon-T16 +L_Toroid, Horizontal series, Radial, pin pitch=8.00mm, , diameter=4.064mm, Diameter4-5mm, Amidon-T16 +L_Toroid Horizontal series Radial pin pitch 8.00mm diameter 4.064mm Diameter4-5mm Amidon-T16 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D5.1mm_P9.00mm_Diameter6-5mm_Amidon-T20 +L_Toroid, Horizontal series, Radial, pin pitch=9.00mm, , diameter=5.08mm, Diameter6-5mm, Amidon-T20 +L_Toroid Horizontal series Radial pin pitch 9.00mm diameter 5.08mm Diameter6-5mm Amidon-T20 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D6.5mm_P10.00mm_Diameter7-5mm_Amidon-T25 +L_Toroid, Horizontal series, Radial, pin pitch=10.00mm, , diameter=6.476999999999999mm, Diameter7-5mm, Amidon-T25 +L_Toroid Horizontal series Radial pin pitch 10.00mm diameter 6.476999999999999mm Diameter7-5mm Amidon-T25 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D7.8mm_P13.00mm_Diameter9-5mm_Amidon-T30 +L_Toroid, Horizontal series, Radial, pin pitch=13.00mm, , diameter=7.7978mm, Diameter9-5mm, Amidon-T30 +L_Toroid Horizontal series Radial pin pitch 13.00mm diameter 7.7978mm Diameter9-5mm Amidon-T30 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D9.5mm_P15.00mm_Diameter10-5mm_Amidon-T37 +L_Toroid, Horizontal series, Radial, pin pitch=15.00mm, , diameter=9.524999999999999mm, Diameter10-5mm, Amidon-T37 +L_Toroid Horizontal series Radial pin pitch 15.00mm diameter 9.524999999999999mm Diameter10-5mm Amidon-T37 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D11.2mm_P17.00mm_Diameter12-5mm_Amidon-T44 +L_Toroid, Horizontal series, Radial, pin pitch=17.00mm, , diameter=11.176mm, Diameter12-5mm, Amidon-T44 +L_Toroid Horizontal series Radial pin pitch 17.00mm diameter 11.176mm Diameter12-5mm Amidon-T44 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D12.7mm_P20.00mm_Diameter14-5mm_Amidon-T50 +L_Toroid, Horizontal series, Radial, pin pitch=20.00mm, , diameter=12.7mm, Diameter14-5mm, Amidon-T50 +L_Toroid Horizontal series Radial pin pitch 20.00mm diameter 12.7mm Diameter14-5mm Amidon-T50 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3 +L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3_BigPads +L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D17.3mm_P15.24mm_Bourns_2000 +L_Toroid, Horizontal series, Radial, pin pitch=15.24mm, , diameter=17.3mm, Bourns, 2000, http://www.bourns.com/docs/Product-Datasheets/2000_series.pdf?sfvrsn=5 +L_Toroid Horizontal series Radial pin pitch 15.24mm diameter 17.3mm Bourns 2000 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D21.8mm_P19.10mm_Bourns_2100 +L_Toroid, Horizontal series, Radial, pin pitch=19.10mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 19.10mm diameter 21.8mm Bourns 2100 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D21.8mm_P19.60mm_Bourns_2100 +L_Toroid, Horizontal series, Radial, pin pitch=19.60mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 19.60mm diameter 21.8mm Bourns 2100 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D22.4mm_P19.80mm_Vishay_TJ4 +L_Toroid, Horizontal series, Radial, pin pitch=19.80mm, , diameter=22.4mm, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 19.80mm diameter 22.4mm Vishay TJ4 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D24.1mm_P21.80mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=21.80mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 21.80mm diameter 24.1mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D24.1mm_P23.10mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=23.10mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 23.10mm diameter 24.1mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5 +L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5_BigPads +L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D26.0mm_P5.08mm +inductor 26mm diameter toroid +SELF INDUCTOR +0 +3 +2 +Inductor_THT +L_Toroid_Horizontal_D28.0mm_P25.10mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=25.10mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 25.10mm diameter 28mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D28.0mm_P26.67mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=26.67mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 26.67mm diameter 28mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D32.5mm_P28.90mm_Bourns_2300 +L_Toroid, Horizontal series, Radial, pin pitch=28.90mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 28.90mm diameter 32.5mm Bourns 2300 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D32.5mm_P30.00mm_Bourns_2300 +L_Toroid, Horizontal series, Radial, pin pitch=30.00mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 30.00mm diameter 32.5mm Bourns 2300 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D35.1mm_P31.00mm_Vishay_TJ6 +L_Toroid, Horizontal series, Radial, pin pitch=31.00mm, , diameter=35.1mm, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 31.00mm diameter 35.1mm Vishay TJ6 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D40.0mm_P48.26mm +L_Toroid, Horizontal series, Radial, pin pitch=48.26mm, , diameter=40mm +L_Toroid Horizontal series Radial pin pitch 48.26mm diameter 40mm +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D41.9mm_P37.60mm_Vishay_TJ7 +L_Toroid, Horizontal series, Radial, pin pitch=37.60mm, , diameter=41.9mm, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 37.60mm diameter 41.9mm Vishay TJ7 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D49.3mm_P44.60mm_Vishay_TJ8 +L_Toroid, Horizontal series, Radial, pin pitch=44.60mm, , diameter=49.3mm, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 44.60mm diameter 49.3mm Vishay TJ8 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D69.1mm_P63.20mm_Vishay_TJ9 +L_Toroid, Horizontal series, Radial, pin pitch=63.20mm, , diameter=69.1mm, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 63.20mm diameter 69.1mm Vishay TJ9 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L10.0mm_W5.0mm_P5.08mm +L_Toroid, Vertical series, Radial, pin pitch=5.08mm, , length*width=10*5mm^2 +L_Toroid Vertical series Radial pin pitch 5.08mm length 10mm width 5mm +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L13.0mm_W6.5mm_P5.60mm +L_Toroid, Vertical series, Radial, pin pitch=5.60mm, , length*width=13*6.5mm^2 +L_Toroid Vertical series Radial pin pitch 5.60mm length 13mm width 6.5mm +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L14.0mm_W5.6mm_P5.30mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=5.30mm, , length*width=14*5.6mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 5.30mm length 14mm width 5.6mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L14.0mm_W6.3mm_P4.57mm_Pulse_A +L_Toroid, Vertical series, Radial, pin pitch=4.57mm, , length*width=13.97*6.35mm^2, Pulse, A, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 4.57mm length 13.97mm width 6.35mm Pulse A +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L14.7mm_W8.6mm_P5.58mm_Pulse_KM-1 +L_Toroid, Vertical series, Radial, pin pitch=5.58mm, , length*width=14.73*8.64mm^2, Pulse, KM-1, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 5.58mm length 14.73mm width 8.64mm Pulse KM-1 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.0mm_W8.0mm_P7.62mm +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16*8mm^2 +L_Toroid Vertical series Radial pin pitch 7.62mm length 16mm width 8mm +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.3mm_W7.1mm_P7.11mm_Pulse_H +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=16.26*7.11mm^2, Pulse, H, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.11mm length 16.26mm width 7.11mm Pulse H +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.4mm_W7.6mm_P6.60mm_Vishay_TJ3 +L_Toroid, Vertical series, Radial, pin pitch=6.60mm, , length*width=16.4*7.6mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 6.60mm length 16.4mm width 7.6mm Vishay TJ3 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.5mm_W11.4mm_P7.62mm_Pulse_KM-2 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16.51*11.43mm^2, Pulse, KM-2, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.62mm length 16.51mm width 11.43mm Pulse KM-2 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3 +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3_BigPads +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L17.8mm_W8.1mm_P7.62mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=17.8*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 7.62mm length 17.8mm width 8.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L17.8mm_W9.7mm_P7.11mm_Pulse_B +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=17.78*9.65mm^2, Pulse, B, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.11mm length 17.78mm width 9.65mm Pulse B +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L19.1mm_W8.1mm_P7.10mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=19.1*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 7.10mm length 19.1mm width 8.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W8.4mm_P8.38mm_Pulse_G +L_Toroid, Vertical series, Radial, pin pitch=8.38mm, , length*width=21.59*8.38mm^2, Pulse, G, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 8.38mm length 21.59mm width 8.38mm Pulse G +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W9.1mm_P8.40mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=8.40mm, , length*width=21.6*9.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 8.40mm length 21.6mm width 9.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W9.5mm_P7.11mm_Pulse_C +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=21.59*9.53mm^2, Pulse, C, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.11mm length 21.59mm width 9.53mm Pulse C +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W11.4mm_P7.62mm_Pulse_KM-3 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=21.59*11.43mm^2, Pulse, KM-3, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.62mm length 21.59mm width 11.43mm Pulse KM-3 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L22.4mm_W10.2mm_P7.90mm_Vishay_TJ4 +L_Toroid, Vertical series, Radial, pin pitch=7.90mm, , length*width=22.4*10.2mm^2, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 7.90mm length 22.4mm width 10.2mm Vishay TJ4 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L24.6mm_W15.5mm_P11.44mm_Pulse_KM-4 +L_Toroid, Vertical series, Radial, pin pitch=11.44mm, , length*width=24.64*15.5mm^2, Pulse, KM-4, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 11.44mm length 24.64mm width 15.5mm Pulse KM-4 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5 +L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5_BigPads +L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L26.7mm_W14.0mm_P10.16mm_Pulse_D +L_Toroid, Vertical series, Radial, pin pitch=10.16mm, , length*width=26.67*13.97mm^2, Pulse, D, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 10.16mm length 26.67mm width 13.97mm Pulse D +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L28.6mm_W14.3mm_P11.43mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=11.43mm, , length*width=28.6*14.3mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 11.43mm length 28.6mm width 14.3mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L31.8mm_W15.9mm_P13.50mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=13.50mm, , length*width=31.8*15.9mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 13.50mm length 31.8mm width 15.9mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L33.0mm_W17.8mm_P12.70mm_Pulse_KM-5 +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=33.02*17.78mm^2, Pulse, KM-5, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 33.02mm width 17.78mm Pulse KM-5 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L35.1mm_W21.1mm_P18.50mm_Vishay_TJ6 +L_Toroid, Vertical series, Radial, pin pitch=18.50mm, , length*width=35.1*21.1mm^2, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 18.50mm length 35.1mm width 21.1mm Vishay TJ6 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L35.6mm_W17.8mm_P12.70mm_Pulse_E +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=35.56*17.78mm^2, Pulse, E, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 35.56mm width 17.78mm Pulse E +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L41.9mm_W17.8mm_P12.70mm_Pulse_F +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=41.91*17.78mm^2, Pulse, F, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 41.91mm width 17.78mm Pulse F +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L41.9mm_W19.1mm_P15.80mm_Vishay_TJ7 +L_Toroid, Vertical series, Radial, pin pitch=15.80mm, , length*width=41.9*19.1mm^2, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 15.80mm length 41.9mm width 19.1mm Vishay TJ7 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L46.0mm_W19.1mm_P21.80mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=21.80mm, , length*width=46*19.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 21.80mm length 46mm width 19.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L48.8mm_W25.4mm_P20.80mm_Vishay_TJ8 +L_Toroid, Vertical series, Radial, pin pitch=20.80mm, , length*width=48.8*25.4mm^2, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 20.80mm length 48.8mm width 25.4mm Vishay TJ8 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L54.0mm_W23.8mm_P20.10mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=20.10mm, , length*width=54*23.8mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 20.10mm length 54mm width 23.8mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L67.6mm_W36.1mm_P31.80mm_Vishay_TJ9 +L_Toroid, Vertical series, Radial, pin pitch=31.80mm, , length*width=67.6*36.1mm^2, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 31.80mm length 67.6mm width 36.1mm Vishay TJ9 +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2012_LeadDiameter1.2mm +Shielded High Current Inductor, body 17x22mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-2012-ROUND +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2012_LeadDiameter1.5mm +Shielded High Current Inductor, body 17x22mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-2012-ROUND +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2504 +Shielded High Current Inductor, body 22x25.7mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT_SIZE_2504 +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3521 +Shielded High Current Inductor, body 21.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3521 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3533_LeadDiameter1.8mm +Shielded High Current Inductor, body 34.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3533-ROUND +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3533_LeadDiameter2.0mm +Shielded High Current Inductor, body 34.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3533-ROUND +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter0.8mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter1.3mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter1.5mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter2.0mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged2Bar_Pad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, bridged with 2 copper strips +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged2Bar_RoundedPad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 2 copper strips +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged_Pad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, bridged with 1 copper strip +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open +solder jumper open +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open +solder jumper open +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open +solder jumper open +0 +2 +2 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_Pad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_Pad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_RoundedPad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_RoundedPad1.0x1.5mm_NumberLabels +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_Pad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_Pad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm_NumberLabels +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, open +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open, labeled with numbers +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open, labeled with numbers +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P2.0mm_Open_TrianglePad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open +solder jumper open +0 +5 +3 +Jumper +SolderJumper-3_P2.0mm_Open_TrianglePad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open, labeled with numbers +solder jumper open +0 +5 +3 +LED_SMD +LED-APA102-2020 +http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf +LED RGB SPI +0 +8 +6 +LED_SMD +LED-L1T2_LUMILEDS +http://www.lumileds.com/uploads/438/DS133-pdf +LUMILEDS LUXEON TX L1T2 LED +0 +3 +3 +LED_SMD +LED_1W_3W_R8 +https://www.gme.cz/data/attachments/dsh.518-234.1.pdf +LED 1W 3W 5W +0 +3 +3 +LED_SMD +LED_0201_0603Metric +LED SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +LED +0 +4 +2 +LED_SMD +LED_0201_0603Metric_Pad0.64x0.40mm_HandSolder +LED SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +LED handsolder +0 +4 +2 +LED_SMD +LED_0402_1005Metric +LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_0402_1005Metric_Pad0.77x0.64mm_HandSolder +LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_0603_1608Metric +LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder +LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_0805_2012Metric +LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder +LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_1206_3216Metric +LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder +LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_1206_3216Metric_ReverseMount_Hole1.8x2.4mm +LED SMD 1206 (3216 Metric), reverse mount, square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode reverse +0 +2 +2 +LED_SMD +LED_1210_3225Metric +LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_1210_3225Metric_Pad1.42x2.65mm_HandSolder +LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_1812_4532Metric +LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_1812_4532Metric_Pad1.30x3.40mm_HandSolder +LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_2010_5025Metric +LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_2010_5025Metric_Pad1.52x2.65mm_HandSolder +LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_2512_6332Metric +LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder +LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_ASMB-KTF0-0A306 +2220 Tricolor PLCC-4 LED, https://docs.broadcom.com/docs/ASMB-KTF0-0A306-DS100 +Tricolor LED +0 +4 +4 +LED_SMD +LED_Avago_PLCC4_3.2x2.8mm_CW +3.2mm x 2.8mm PLCC4 RGB LED, https://docs.broadcom.com/docs/AV02-4186EN +LED Avago PLCC-4 3528 ASMB-MTB0-0A3A2 +0 +4 +4 +LED_SMD +LED_Avago_PLCC6_3x2.8mm +https://docs.broadcom.com/docs/AV02-3793EN +LED Avago PLCC-6 ASMT-YTB7-0AA02 +0 +6 +6 +LED_SMD +LED_CSP_Samsung_LH181B_2.36x2.36mm +High Power CSP LED, 2.36mm x 2.36mm, 1.4A max, https://cdn.samsung.com/led/file/resource/2021/01/Data_Sheet_LH181B_Rev.4.0.pdf +LED Samsung LH181B +0 +2 +2 +LED_SMD +LED_Cree-PLCC4_2x2mm_CW +2.0mm x 2.0mm PLCC4 LED, https://assets.cree-led.com/a/ds/h/HB-CLMVC-FKA.pdf +LED Cree PLCC-4 2020 CLMVB-FKA CLMVC-FKA +0 +4 +4 +LED_SMD +LED_Cree-PLCC4_3.2x2.8mm_CCW +3.2mm x 2.8mm PLCC4 RGB LED, https://assets.cree-led.com/a/ds/h/HB-CLV1A-FKB.pdf +LED Cree PLCC-4 3528 CLV1A-FKB +0 +4 +4 +LED_SMD +LED_Cree-PLCC4_5x5mm_CW +5.0mm x 5.0mm PLCC4 LED +LED Cree PLCC-4 5050 +0 +4 +4 +LED_SMD +LED_Cree-PLCC6_4.7x1.5mm +4.7mm x 1.5mm PLCC6 LED, http://www.cree.com/led-components/media/documents/1381-QLS6AFKW.pdf +LED Cree PLCC-6 +0 +6 +6 +LED_SMD +LED_Cree-XB +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXBD.pdf +LED Cree XB +0 +5 +3 +LED_SMD +LED_Cree-XH +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XHB.pdf +LED Cree XH +0 +8 +2 +LED_SMD +LED_Cree-XHP35 +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds--XHP35.pdf +LED Cree XHP35 +0 +6 +3 +LED_SMD +LED_Cree-XHP50_6V +Cree XHP50, 6V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf +LED Cree XHP50 +0 +15 +3 +LED_SMD +LED_Cree-XHP50_12V +Cree XHP50, 12V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf +LED XHP50 Cree +0 +15 +3 +LED_SMD +LED_Cree-XHP70_6V +Cree XHP70 LED, 6V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf +LED Cree XHP70 +0 +15 +3 +LED_SMD +LED_Cree-XHP70_12V +Cree XHP70 LED, 12V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf +LED Cree XHP70 +0 +15 +3 +LED_SMD +LED_Cree-XP +LED Cree-XP http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXPE2.pdf +LED Cree XP +0 +6 +3 +LED_SMD +LED_Cree-XP-G +LED Cree-XP-G http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/XLampXPG.pdf +LED Cree XP-G +0 +6 +3 +LED_SMD +LED_Cree-XQ +LED Cree-XQ http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf +LED Cree XQ +0 +2 +2 +LED_SMD +LED_Cree-XQ_HandSoldering +LED Cree-XQ handsoldering pads http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf +LED Cree XQ +0 +2 +2 +LED_SMD +LED_Dialight_591 +LED SMD 3mm Right Angle series (http://www.dialightsignalsandcomponents.com/Assets/Drawings/2D_Drawings_DrawingDetailedSpec/C17354.pdf) +LED Dialight 591 +0 +2 +2 +LED_SMD +LED_Inolux_IN-P55TATRGB_PLCC6_5.0x5.5mm_P1.8mm +5.0x5.0mm PLCC-6 RGB LED, Inolux, https://www.inolux-corp.com/datasheet/SMDLED/RGB%20Top%20View/IN-P55TATRGB.pdf +LED RGB +0 +6 +6 +LED_SMD +LED_Inolux_IN-PI554FCH_PLCC4_5.0x5.0mm_P3.2mm +5.0mm x 5.0mm PLCC4 Addressable RGB LED, http://www.inolux-corp.com/datasheet/SMDLED/Addressable%20LED/IN-PI554FCH.pdf +LED RGB NeoPixel addressable PLCC-4 5050 +0 +4 +4 +LED_SMD +LED_Kingbright_AAA3528ESGCT +Kingbright, dual LED, 3.5 x 2.8 mm Surface Mount LED Lamp (http://www.kingbrightusa.com/images/catalog/SPEC/AAA3528ESGCT.pdf) +dual led smd +0 +4 +4 +LED_SMD +LED_Kingbright_APA1606_1.6x0.6mm_Horizontal +Right angled LED, 1.6x1.2 mm, H0.6 mm +LED chip right angled vertical +0 +2 +2 +LED_SMD +LED_Kingbright_APDA3020VBCD +LED, SMD, APDA3020VBC/D, https://www.kingbrightusa.com/images/catalog/SPEC/APDA3020VBC-D.pdf +LED APDA3020VBC/D Kingbright +0 +2 +2 +LED_SMD +LED_Kingbright_APFA3010_3x1.5mm_Horizontal +LED RGB, APFA3010, http://www.kingbrightusa.com/images/catalog/SPEC/APFA3010LSEEZGKQBKC.pdf +LED RGB APFA3010 KINGBRIGHT 3x1.5mm +0 +4 +4 +LED_SMD +LED_Kingbright_APHBM2012_2x1.25mm +Dual LED SMD https://www.kingbrightusa.com/KCpack.asp?txtPack=APHBM2012 +LED Kingbright APHM2012 +0 +4 +4 +LED_SMD +LED_Kingbright_KPA-3010_3x2x1mm +Kingbright surface mount LED, right angle, 3.0 x 2.0 x 1.0 mm, https://www.kingbright.com/attachments/file/psearch/000/00/00/KPA-3010SURCK(Ver.26A).pdf +Kingbright LED right-angle +0 +3 +3 +LED_SMD +LED_Kingbright_KPBD-3224 +Kingbright, dual LED, red-green, dome lens, 3.2 x 2.4 mm Surface Mount LED Lamp (https://www.kingbright.com/attachments/file/psearch/000/00/00/KPBD-3224SURKCGKC(Ver.20A).pdf) +Kingbright dual LED KPBD-3224 +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-C19HE1WT +LiteOn RGB LED; https://optoelectronics.liteon.com/upload/download/DS22-2008-0044/LTST-C19HE1WT.pdf +LED RGB Chip SMD +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-C235KGKRKT +downfacing reverse mount led, https://optoelectronics.liteon.com/upload/download/DS22-2009-0219/LTST-C235KGKRKT.pdf +LED reverse down facing +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-C295K_1.6x0.8mm +Topview dual http://optoelectronics.liteon.com/upload/download/DS22-2009-0072/LTST-C295KGKRKT.PDF +SMD Top view Dual colour +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-E563C_PLCC4_5.0x5.0mm_P3.2mm +RGB addressable LED, 5x5mm body, 1.57mm height, https://optoelectronics.liteon.com/upload/download/DS35-2018-0092/LTST-E563CHEGBW-AW.PDF +LED RGB 5050 PLCC-4 +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-E563C_PLCC4_5.0x5.0mm_P3.2mm_HandSoldering +RGB addressable LED, 5x5mm body, 1.57mm height, https://optoelectronics.liteon.com/upload/download/DS35-2018-0092/LTST-E563CHEGBW-AW.PDF +LED RGB 5050 PLCC-4 +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-S326 +http://optoelectronics.liteon.com/upload/download/DS22-2000-287/LTST-S326KGJRKT.PDF +LED SMD right angle CCA +0 +3 +3 +LED_SMD +LED_Lumex_SML-LX0303SIUPGUSB +Lumex RGB LED, clear, SMD, https://www.lumex.com/spec/SML-LX0303SIUPGUSB.pdf +LED RGB +0 +4 +4 +LED_SMD +LED_Lumex_SML-LX0404SIUPGUSB +Lumex RGB LED, clear, SMD, https://www.lumex.com/spec/SML-LX0404SIUPGUSB.pdf +LED RGB +0 +4 +4 +LED_SMD +LED_Luminus_MP-3030-1100_3.0x3.0mm +Mid Power LED, Luminus MP-3030-1100, 3.0x3.0mm, 816mW, https://download.luminus.com/datasheets/Luminus_MP3030_1100_Datasheet.pdf +LED Luminus MP-3030-1100 +0 +5 +2 +LED_SMD +LED_Osram_Lx_P47F_D2mm_ReverseMount +OSRAM, reverse-mount LED, SMD, 2mm diameter, http://www.farnell.com/datasheets/2711587.pdf +LED ReverseMount Reverse +0 +4 +2 +LED_SMD +LED_PLCC-2_3.4x3.0mm_AK +LED PLCC-2 SMD package, orientation marker at anode, https://dammedia.osram.info/media/resource/hires/osram-dam-5824137/SFH%204257_EN.pdf +LED PLCC-2 SMD TOPLED +0 +2 +2 +LED_SMD +LED_PLCC-2_3.4x3.0mm_KA +LED PLCC-2 SMD package, orientation marker at cathode, https://dammedia.osram.info/media/resource/hires/osram-dam-6035009/SFH%204253_EN.pdf +LED PLCC-2 SMD TOPLED +0 +2 +2 +LED_SMD +LED_PLCC-2_3x2mm_AK +LED, SMD, PLCC-2, 3.0 x 2.0mm, orientation marker at anode, https://media.digikey.com/pdf/Data%20Sheets/CREE%20Power/CLM3A-BKW,GKW.pdf +LED PLCC-2 SMD +0 +2 +2 +LED_SMD +LED_PLCC-2_3x2mm_KA +LED, SMD, PLCC-2, 3.0 x 2.0mm, orientation marker at cathode, https://optoelectronics.liteon.com/upload/download/DS22-2009-0099/LTW-M670ZVS-M5_0906.pdf +LED PLCC-2 SMD +0 +2 +2 +LED_SMD +LED_PLCC_2835 +https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf +LED +0 +2 +2 +LED_SMD +LED_PLCC_2835_Handsoldering +https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf +LED +0 +2 +2 +LED_SMD +LED_RGB_1210 +RGB LED 3.2x2.7mm http://www.avagotech.com/docs/AV02-0610EN +LED 3227 +0 +4 +4 +LED_SMD +LED_RGB_5050-6 +http://cdn.sparkfun.com/datasheets/Components/LED/5060BRG4.pdf +RGB LED 5050-6 +0 +6 +6 +LED_SMD +LED_RGB_Cree-PLCC-6_6x5mm_P2.1mm +http://www.farnell.com/datasheets/2003905.pdf +LED RGB PLCC-6 CLP6C-FBK +0 +6 +6 +LED_SMD +LED_RGB_Everlight_EASV3015RGBA0_Horizontal +LED, RGB, right-angle, clear, https://everlightamericas.com/index.php?controller=attachment&id_attachment=3220 +LED RGB right-angle +0 +4 +4 +LED_SMD +LED_RGB_Getian_GT-P6PRGB4303 +https://www.gme.sk/img/cache/doc/518/177/vykonova-led-getian-gt-p6prgb4303-datasheet-1.pdf +LED RGB +0 +7 +7 +LED_SMD +LED_RGB_Lumex_SML-LXT0805SIUGUBW +RGB LED 0805 2.0mm x 1.3mm, orientation marker at common anode https://www.mouser.de/datasheet/2/244/SML-LXT0805SIUGUBW-1776540.pdf +RGB LED 0805 +0 +4 +4 +LED_SMD +LED_RGB_PLCC-6 +RGB LED PLCC-6 +RGB LED PLCC-6 +0 +6 +6 +LED_SMD +LED_RGB_Wuerth-PLCC4_3.2x2.8mm_150141M173100 +3.2mm x 2.8mm PLCC4 LED, https://www.we-online.de/katalog/datasheet/150141M173100.pdf +LED RGB Wurth PLCC-4 3528 +0 +4 +4 +LED_SMD +LED_RGB_Wuerth_150080M153000 +RGB LED 0805 2.0mm x 1.3mm, orientation marker at common anode https://www.we-online.com/components/products/datasheet/150080M153000.pdf +RGB LED 0805 +0 +4 +4 +LED_SMD +LED_ROHM_SMLVN6 +https://www.rohm.com/datasheet/SMLVN6RGB1U +LED ROHM SMLVN6 +0 +6 +6 +LED_SMD +LED_SK6805_PLCC4_2.4x2.7mm_P1.3mm +https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf +LED RGB NeoPixel Nano PLCC-4 +0 +4 +4 +LED_SMD +LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm +3.5mm x 3.5mm PLCC4 Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf +LED RGB NeoPixel Mini PLCC-4 3535 +0 +4 +4 +LED_SMD +LED_SK6812_EC15_1.5x1.5mm +RGB addressable LED, 0.1W, 1.5mm x 1.5mm, 0.65m height, orientation mark at GND, http://ledstrip-china.com/productshow.asp?id=322 +LED RGB NeoPixel +0 +4 +4 +LED_SMD +LED_SK6812_PLCC4_5.0x5.0mm_P3.2mm +5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf +LED RGB NeoPixel PLCC-4 5050 +0 +4 +4 +LED_SMD +LED_WS2812B-2020_PLCC4_2.0x2.0mm +2.0mm x 2.0mm Addressable RGB LED NeoPixel Nano, 12 mA, https://cdn-shop.adafruit.com/product-files/4684/4684_WS2812B-2020_V1.3_EN.pdf +LED RGB NeoPixel Nano PLCC-4 2020 +0 +4 +4 +LED_SMD +LED_WS2812B-Mini_PLCC4_3.5x3.5mm +Addressable RGB LED NeoPixel Mini, 12 mA, https://web.archive.org/web/20200131233647/http://www.world-semi.com/DownLoadFile/112 +LED RGB NeoPixel Mini +0 +4 +4 +LED_SMD +LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm +5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf +LED RGB NeoPixel PLCC-4 5050 +0 +4 +4 +LED_SMD +LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm +https://cdn-shop.adafruit.com/datasheets/WS2812.pdf +LED RGB NeoPixel +0 +6 +6 +LED_SMD +LED_Wurth_150044M155260 +Wurth Common anode RGB LED, SMD, 0404, 1x1x1.65mm, https://www.we-online.com/catalog/datasheet/150044M155260.pdf +LED RGB ARGB +0 +4 +4 +LED_SMD +LED_Yuji_5730 +LED,Yuji,5730,https://cdn.shopify.com/s/files/1/0344/6401/files/YJWJ014-1.1_YJ-BC-5730L-G02.pdf +LED Yuji 5730 +0 +3 +2 +LED_SMD +LED_miniPLCC_2315 +https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true +LED +0 +2 +2 +LED_SMD +LED_miniPLCC_2315_Handsoldering +https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true +LED +0 +2 +2 +LED_THT +LED_BL-FL7680RGB +'Piranha' RGB LED, through hole, common anode, 7.62x7.62mm, BGRA pin order, https://cdn-shop.adafruit.com/datasheets/BL-FL7680RGB.pdf +RGB LED Piranha Super-Flux BetLux +0 +4 +4 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W3.3mm_H2.4mm +LED, Round, Rectangular size 3.3x2.4mm^2 diameter 1.8mm, 2 pins +LED Round Rectangular size 3.3x2.4mm^2 diameter 1.8mm 2 pins +0 +2 +2 +LED_THT +LED_D2.0mm_W4.0mm_H2.8mm_FlatTop +LED, Round, FlatTop, Rectangular size 4.0x2.8mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-1034IDT(Ver.9A).pdf +LED Round FlatTop Rectangular size 4.0x2.8mm^2 diameter 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D2.0mm_W4.8mm_H2.5mm_FlatTop +LED, Round, FlatTop, Rectangular size 4.8x2.5mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-13GD(Ver.11B).pdf +LED Round FlatTop Rectangular size 4.8x2.5mm^2 diameter 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm +LED, diameter 3.0mm, 2 pins +LED diameter 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm-3 +LED, diameter 3.0mm, 2 pins, diameter 3.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-3VSURKCGKC(Ver.8A).pdf +LED diameter 3.0mm 2 pins diameter 3.0mm 3 pins +0 +3 +3 +LED_THT +LED_D3.0mm_Clear +IR-LED, diameter 3.0mm, 2 pins, color: clear +IR infrared LED diameter 3.0mm 2 pins clear +0 +2 +2 +LED_THT +LED_D3.0mm_FlatTop +LED, Round, FlatTop, diameter 3.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-47XEC(Ver.9A).pdf +LED Round FlatTop diameter 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_Clear +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRBlack +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRGrey +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_IRBlack +IR-ED, diameter 3.0mm, 2 pins, color: black +IR infrared LED diameter 3.0mm 2 pins black +0 +2 +2 +LED_THT +LED_D3.0mm_IRGrey +IR-LED, diameter 3.0mm, 2 pins, color: grey +IR infrared LED diameter 3.0mm 2 pins grey +0 +2 +2 +LED_THT +LED_D4.0mm +LED, diameter 4.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-43GD(Ver.12B).pdf +LED diameter 4.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm-3 +LED, diameter 5.0mm, 2 pins, diameter 5.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-59EGC(Ver.17A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins +0 +3 +3 +LED_THT +LED_D5.0mm-3_Horizontal_O3.81mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 3 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 3 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +LED_THT +LED_D5.0mm-4_RGB +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins diameter 5.0mm 4 pins RGB RGBLED +0 +4 +4 +LED_THT +LED_D5.0mm-4_RGB_Staggered_Pins +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +rgb led +0 +4 +4 +LED_THT +LED_D5.0mm-4_RGB_Wide_Pins +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins diameter 5.0mm 4 pins RGB RGBLED +0 +4 +4 +LED_THT +LED_D5.0mm_Clear +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_FlatTop +LED, Round, FlatTop, diameter 5.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-483GDT(Ver.15B).pdf +LED Round FlatTop diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_Clear +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRBlack +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRGrey +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_IRBlack +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_IRGrey +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D8.0mm +LED, diameter 8.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED8MMGE_LED8MMGN_LED8MMRT%23KIN.pdf +LED diameter 8.0mm 2 pins +0 +2 +2 +LED_THT +LED_D8.0mm-3 +LED, diameter 8.0mm, 2 pins, diameter 8.0mm, 3 pins +LED diameter 8.0mm 2 pins diameter 8.0mm 3 pins +0 +3 +3 +LED_THT +LED_D10.0mm +LED, diameter 10.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED10-4500RT%23KIN.pdf +LED diameter 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D10.0mm-3 +LED, diameter 10.0mm, 2 pins, diameter 10.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-819EGW(Ver.14A).pdf +LED diameter 10.0mm 2 pins diameter 10.0mm 3 pins +0 +3 +3 +LED_THT +LED_D20.0mm +LED, diameter 20.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/DLC2-6GD%28V6%29.pdf +LED diameter 20.0mm 2 pins +0 +2 +2 +LED_THT +LED_Oval_W5.2mm_H3.8mm +LED_Oval, Oval, Oval size 5.2x3.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-5603QBC-D(Ver.12B).pdf +LED_Oval Oval Oval size 5.2x3.8mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.0mm_H2.0mm +LED_Rectangular, Rectangular, Rectangular size 3.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 3.0x2.0mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.9mm_H1.8mm +LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.9mm_H1.8mm_FlatTop +LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.9mm_H1.9mm +LED_Rectangular, Rectangular, Rectangular size 3.9x1.9mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-144GDT(Ver.14B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.9mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm-3Pins +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 3 pins +0 +3 +3 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W7.62mm_H4.55mm_P5.08mm_R3 +Datasheet can be found at https://www.gme.cz/data/attachments/dsh.511-795.1.pdf +LED automotive super flux 7.62mm +0 +4 +2 +LED_THT +LED_SideEmitter_Rectangular_W4.5mm_H1.6mm +LED_SideEmitter_Rectangular, Rectangular, SideEmitter, Rectangular size 4.5x1.6mm^2, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED15MMGE_LED15MMGN%23KIN.pdf +LED_SideEmitter_Rectangular Rectangular SideEmitter Rectangular size 4.5x1.6mm^2 2 pins +0 +2 +2 +LED_THT +LED_VCCLite_5381H1_6.35x6.35mm +Red 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Red 5381 Series LED +0 +2 +2 +LED_THT +LED_VCCLite_5381H3_6.35x6.35mm +Amber 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Amber 5381 Series LED +0 +2 +2 +LED_THT +LED_VCCLite_5381H5_6.35x6.35mm +Green 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Green 5381 Series LED +0 +2 +2 +LED_THT +LED_VCCLite_5381H7_6.35x6.35mm +Yellow 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Yellow 5381 Series LED +0 +2 +2 +Library +QFN-28_EP_5.8x5.8_Pitch0.5mm + + +0 +45 +29 +Module +A20_OLINUXINO_LIME2 +A20 Olinuxino LIME2, 1.2GHz, 512-1024MB RAM, Micro-SD, NAND or eMMC, 1000Mbit Ethernet +A20 Olimex Olinuxino LIME2 development board +0 +180 +180 +Module +Adafruit_Feather +Common footprint for the Adafruit Feather series of boards, https://learn.adafruit.com/adafruit-feather/feather-specification +Adafruit Feather +0 +28 +28 +Module +Adafruit_Feather_32u4_FONA +Footprint for the Adafruit Feather 32u4 FONA board, https://learn.adafruit.com/adafruit-feather-32u4-fona +Adafruit Feather 32u4 FONA +0 +28 +28 +Module +Adafruit_Feather_32u4_FONA_WithMountingHoles +Footprint for the Adafruit Feather 32u4 FONA board, https://learn.adafruit.com/adafruit-feather-32u4-fona +Adafruit Feather 32u4 FONA +0 +28 +28 +Module +Adafruit_Feather_32u4_RFM +Footprint for the Adafruit Feather 32u4 RFM series of boards, https://learn.adafruit.com/adafruit-feather-32u4-radio-with-rfm69hcw-module +Adafruit Feather 32u4 RFM +0 +31 +31 +Module +Adafruit_Feather_32u4_RFM_WithMountingHoles +Footprint for the Adafruit Feather 32u4 RFM series of boards, https://learn.adafruit.com/adafruit-feather-32u4-radio-with-rfm69hcw-module +Adafruit Feather 32u4 RFM +0 +31 +31 +Module +Adafruit_Feather_M0_RFM +Footprint for the Adafruit Feather M0 RFM series of boards, e.g. https://learn.adafruit.com/adafruit-feather-m0-radio-with-rfm69-packet-radio +Adafruit Feather M0 RFM +0 +32 +32 +Module +Adafruit_Feather_M0_RFM_WithMountingHoles +Footprint for the Adafruit Feather M0 RFM series of boards, e.g. https://learn.adafruit.com/adafruit-feather-m0-radio-with-rfm69-packet-radio + Adafruit Feather M0 RFM +0 +32 +32 +Module +Adafruit_Feather_M0_Wifi +Footprint for the Adafruit Feather M0 Wifi board, https://learn.adafruit.com/adafruit-feather-m0-wifi-atwinc1500/ +Adafruit Feather M0 Wifi +0 +28 +28 +Module +Adafruit_Feather_M0_Wifi_WithMountingHoles +Footprint for the Adafruit Feather M0 Wifi board, https://learn.adafruit.com/adafruit-feather-m0-wifi-atwinc1500/ +Adafruit Feather M0 Wifi +0 +28 +28 +Module +Adafruit_Feather_WICED +Footprint for the Adafruit Feather WICED Wifi board, https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi +Adafruit Feather WICED Wifi +0 +29 +29 +Module +Adafruit_Feather_WICED_WithMountingHoles +Footprint for the Adafruit Feather WICED Wifi board, https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi +Adafruit Feather WICED Wifi +0 +29 +29 +Module +Adafruit_Feather_WithMountingHoles +Common footprint for the Adafruit Feather series of boards, https://learn.adafruit.com/adafruit-feather/feather-specification +Adafruit Feather +0 +28 +28 +Module +Adafruit_HUZZAH_ESP8266_breakout +32-bit microcontroller module with WiFi, https://www.adafruit.com/product/2471 +ESP8266 WiFi microcontroller +0 +20 +20 +Module +Adafruit_HUZZAH_ESP8266_breakout_WithMountingHoles +32-bit microcontroller module with WiFi, https://www.adafruit.com/product/2471 +ESP8266 WiFi microcontroller +0 +20 +20 +Module +Arduino_Nano +Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino Nano +0 +30 +30 +Module +Arduino_Nano_WithMountingHoles +Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino Nano +0 +30 +30 +Module +Arduino_UNO_R2 +Arduino UNO R2, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R2 +0 +30 +30 +Module +Arduino_UNO_R2_WithMountingHoles +Arduino UNO R2, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R2 +0 +30 +30 +Module +Arduino_UNO_R3 +Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R3 +0 +32 +32 +Module +Arduino_UNO_R3_WithMountingHoles +Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R3 +0 +32 +32 +Module +BeagleBoard_PocketBeagle +PocketBeagle, https://github.com/beagleboard/pocketbeagle/wiki/System-Reference-Manual#71_Expansion_Header_Connectors +PocketBeagle +0 +72 +72 +Module +Carambola2 +8devices Carambola2, OpenWRT, industrial SoM computer, https://www.8devices.com/media/products/carambola2/downloads/carambola2-datasheet.pdf +carambola2 8devices +0 +104 +52 +Module +Electrosmith_Daisy_Seed +Embedded platform for audio applications. 96kHz / 24-bit audio hardware. 64MB of SDRAM for up to 10 minute long audio. ARM Cortex-M7 MCU, running at 480MHz. 31 total GPIO pins with configurable functionality. 12-bit Digital to Analog Converters (x2). SD card interfaces. PWM outputs. Serial Protocols for connecting external sensors and devices (SPI, UART, I2S, I2C). Dedicated VIN pin for power. Micro USB port, and additional USB pins for full OTG-support as host and device. https://static1.squarespace.com/static/58d03fdc1b10e3bf442567b8/t/6227e6236f02fb68d1577146/1646781988478/Daisy_Seed_datasheet_v1.0.3.pdf +Electrosmith Daisy Seed Microcontroller Module ARM Cortex-M7 Audio Codec +0 +40 +40 +Module +Maple_Mini +Maple Mini, http://docs.leaflabs.com/static.leaflabs.com/pub/leaflabs/maple-docs/0.0.12/hardware/maple-mini.html +Maple Mini +0 +40 +40 +Module +Olimex_MOD-WIFI-ESP8266-DEV +ESP8266 development board https://www.olimex.com/Products/IoT/ESP8266/MOD-WIFI-ESP8266-DEV/resources/dimensions-WIFI-ESP8266-DEV.png +ESP8266 +0 +22 +22 +Module +Onion_Omega2+ +https://onion.io/omega2/ +Omega Onion module +0 +32 +32 +Module +Onion_Omega2S +https://github.com/OnionIoT/Omega2/raw/master/Documents/Omega2S%20Datasheet.pdf +onion omega module +0 +89 +64 +Module +Pololu_Breakout-16_15.2x20.3mm +Pololu Breakout 16-pin 15.2x20.3mm 0.6x0.8\ +Pololu Breakout +0 +16 +16 +Module +Raspberry_Pi_Zero_Socketed_THT_FaceDown_MountingHoles +Raspberry Pi Zero using through hole straight pin socket, 2x20, 2.54mm pitch, https://www.raspberrypi.org/documentation/hardware/raspberrypi/mechanical/rpi_MECH_Zero_1p2.pdf +raspberry pi zero through hole +0 +40 +40 +Module +ST_Morpho_Connector_144_STLink +ST Morpho Connector 144 With STLink +ST Morpho Connector 144 STLink +0 +148 +148 +Module +ST_Morpho_Connector_144_STLink_MountingHoles +ST Morpho Connector 144 With STLink +ST Morpho Connector 144 STLink +0 +148 +148 +Module +Sipeed-M1 +AI accelerated MCU with optional wifi, https://dl.sipeed.com/MAIX/HDK/Sipeed-M1&M1W/Specifications +AI Kendryte K210 RISC-V +0 +85 +77 +Module +Texas_EUK_R-PDSS-T7_THT +Texas Instruments EUK 7 Pin Double Sided Module +module pcb +0 +7 +7 +Module +Texas_EUS_R-PDSS-T5_THT +Texas Instruments EUS 5 Pin Double Sided Module +module pcb +0 +5 +5 +Module +Texas_EUW_R-PDSS-T7_THT +Texas Instruments EUW 7 Pin Double Sided Module +module pcb +0 +7 +7 +Module +WEMOS_D1_mini_light +16-pin module, column spacing 22.86 mm (900 mils), https://wiki.wemos.cc/products:d1:d1_mini, https://c1.staticflickr.com/1/734/31400410271_f278b087db_z.jpg +ESP8266 WiFi microcontroller +0 +16 +16 +Motors +Vybronics_VZ30C1T8219732L +Vibration motor, 2.3-3.2V, 14000rpm, 0.7G, https://www.vybronics.com/wp-content/uploads/datasheet-files/Vybronics-VZ30C1T8219732L-datasheet.pdf +vibration motor Vybronics +0 +12 +3 +MountingEquipment +DINRailAdapter_3xM3_PhoenixContact_1201578 +https://www.phoenixcontact.com/online/portal/us?uri=pxc-oc-itemdetail:pid=1201578&library=usen&tab=1 +DIN rail adapter universal three M3 clearance holes +0 +0 +0 +MountingHole +MountingHole_2.1mm +Mounting Hole 2.1mm, no annular +mounting hole 2.1mm no annular +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2 +Mounting Hole 2.2mm, no annular, M2 +mounting hole 2.2mm no annular m2 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_DIN965 +Mounting Hole 2.2mm, no annular, M2, DIN965 +mounting hole 2.2mm no annular m2 din965 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad +Mounting Hole 2.2mm, M2, DIN965 +mounting hole 2.2mm m2 din965 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad_TopBottom +Mounting Hole 2.2mm, M2, DIN965 +mounting hole 2.2mm m2 din965 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad_TopOnly +Mounting Hole 2.2mm, M2, DIN965 +mounting hole 2.2mm m2 din965 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380 +Mounting Hole 2.2mm, no annular, M2, ISO7380 +mounting hole 2.2mm no annular m2 iso7380 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad +Mounting Hole 2.2mm, M2, ISO7380 +mounting hole 2.2mm m2 iso7380 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad_TopBottom +Mounting Hole 2.2mm, M2, ISO7380 +mounting hole 2.2mm m2 iso7380 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad_TopOnly +Mounting Hole 2.2mm, M2, ISO7380 +mounting hole 2.2mm m2 iso7380 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580 +Mounting Hole 2.2mm, no annular, M2, ISO14580 +mounting hole 2.2mm no annular m2 iso14580 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad +Mounting Hole 2.2mm, M2, ISO14580 +mounting hole 2.2mm m2 iso14580 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad_TopBottom +Mounting Hole 2.2mm, M2, ISO14580 +mounting hole 2.2mm m2 iso14580 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad_TopOnly +Mounting Hole 2.2mm, M2, ISO14580 +mounting hole 2.2mm m2 iso14580 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_Pad +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_TopBottom +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_TopOnly +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_Via +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +9 +1 +MountingHole +MountingHole_2.5mm +Mounting Hole 2.5mm, no annular +mounting hole 2.5mm no annular +0 +0 +0 +MountingHole +MountingHole_2.5mm_Pad +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +1 +1 +MountingHole +MountingHole_2.5mm_Pad_TopBottom +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +3 +1 +MountingHole +MountingHole_2.5mm_Pad_TopOnly +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +2 +1 +MountingHole +MountingHole_2.5mm_Pad_Via +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +9 +1 +MountingHole +MountingHole_2.7mm +Mounting Hole 2.7mm, no annular +mounting hole 2.7mm no annular +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5 +Mounting Hole 2.7mm, no annular, M2.5 +mounting hole 2.7mm no annular m2.5 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_DIN965 +Mounting Hole 2.7mm, no annular, M2.5, DIN965 +mounting hole 2.7mm no annular m2.5 din965 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad +Mounting Hole 2.7mm, M2.5, DIN965 +mounting hole 2.7mm m2.5 din965 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, DIN965 +mounting hole 2.7mm m2.5 din965 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, DIN965 +mounting hole 2.7mm m2.5 din965 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380 +Mounting Hole 2.7mm, no annular, M2.5, ISO7380 +mounting hole 2.7mm no annular m2.5 iso7380 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad +Mounting Hole 2.7mm, M2.5, ISO7380 +mounting hole 2.7mm m2.5 iso7380 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, ISO7380 +mounting hole 2.7mm m2.5 iso7380 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, ISO7380 +mounting hole 2.7mm m2.5 iso7380 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580 +Mounting Hole 2.7mm, no annular, M2.5, ISO14580 +mounting hole 2.7mm no annular m2.5 iso14580 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad +Mounting Hole 2.7mm, M2.5, ISO14580 +mounting hole 2.7mm m2.5 iso14580 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, ISO14580 +mounting hole 2.7mm m2.5 iso14580 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, ISO14580 +mounting hole 2.7mm m2.5 iso14580 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad +Mounting Hole 2.7mm, M2.5 +mounting hole 2.7mm m2.5 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_TopBottom +Mounting Hole 2.7mm, M2.5 +mounting hole 2.7mm m2.5 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_TopOnly +Mounting Hole 2.7mm, M2.5 +mounting hole 2.7mm m2.5 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_Via +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +9 +1 +MountingHole +MountingHole_2.7mm_Pad +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +1 +1 +MountingHole +MountingHole_2.7mm_Pad_TopBottom +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +3 +1 +MountingHole +MountingHole_2.7mm_Pad_TopOnly +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +2 +1 +MountingHole +MountingHole_2.7mm_Pad_Via +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +9 +1 +MountingHole +MountingHole_2mm +Mounting Hole 2mm, no annular +mounting hole 2mm no annular +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3 +Mounting Hole 3.2mm, no annular, M3 +mounting hole 3.2mm no annular m3 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_DIN965 +Mounting Hole 3.2mm, no annular, M3, DIN965 +mounting hole 3.2mm no annular m3 din965 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad +Mounting Hole 3.2mm, M3, DIN965 +mounting hole 3.2mm m3 din965 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad_TopBottom +Mounting Hole 3.2mm, M3, DIN965 +mounting hole 3.2mm m3 din965 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad_TopOnly +Mounting Hole 3.2mm, M3, DIN965 +mounting hole 3.2mm m3 din965 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380 +Mounting Hole 3.2mm, no annular, M3, ISO7380 +mounting hole 3.2mm no annular m3 iso7380 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad +Mounting Hole 3.2mm, M3, ISO7380 +mounting hole 3.2mm m3 iso7380 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad_TopBottom +Mounting Hole 3.2mm, M3, ISO7380 +mounting hole 3.2mm m3 iso7380 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad_TopOnly +Mounting Hole 3.2mm, M3, ISO7380 +mounting hole 3.2mm m3 iso7380 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580 +Mounting Hole 3.2mm, no annular, M3, ISO14580 +mounting hole 3.2mm no annular m3 iso14580 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad +Mounting Hole 3.2mm, M3, ISO14580 +mounting hole 3.2mm m3 iso14580 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad_TopBottom +Mounting Hole 3.2mm, M3, ISO14580 +mounting hole 3.2mm m3 iso14580 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad_TopOnly +Mounting Hole 3.2mm, M3, ISO14580 +mounting hole 3.2mm m3 iso14580 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_Pad +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_TopBottom +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_TopOnly +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_Via +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +9 +1 +MountingHole +MountingHole_3.5mm +Mounting Hole 3.5mm, no annular +mounting hole 3.5mm no annular +0 +0 +0 +MountingHole +MountingHole_3.5mm_Pad +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +1 +1 +MountingHole +MountingHole_3.5mm_Pad_TopBottom +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +3 +1 +MountingHole +MountingHole_3.5mm_Pad_TopOnly +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +2 +1 +MountingHole +MountingHole_3.5mm_Pad_Via +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +9 +1 +MountingHole +MountingHole_3.7mm +Mounting Hole 3.7mm, no annular +mounting hole 3.7mm no annular +0 +0 +0 +MountingHole +MountingHole_3.7mm_Pad +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +1 +1 +MountingHole +MountingHole_3.7mm_Pad_TopBottom +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +3 +1 +MountingHole +MountingHole_3.7mm_Pad_TopOnly +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +2 +1 +MountingHole +MountingHole_3.7mm_Pad_Via +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +9 +1 +MountingHole +MountingHole_3mm +Mounting Hole 3mm, no annular +mounting hole 3mm no annular +0 +0 +0 +MountingHole +MountingHole_3mm_Pad +Mounting Hole 3mm +mounting hole 3mm +0 +1 +1 +MountingHole +MountingHole_3mm_Pad_TopBottom +Mounting Hole 3mm +mounting hole 3mm +0 +3 +1 +MountingHole +MountingHole_3mm_Pad_TopOnly +Mounting Hole 3mm +mounting hole 3mm +0 +2 +1 +MountingHole +MountingHole_3mm_Pad_Via +Mounting Hole 3mm +mounting hole 3mm +0 +9 +1 +MountingHole +MountingHole_4.3mm_M4 +Mounting Hole 4.3mm, no annular, M4 +mounting hole 4.3mm no annular m4 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_DIN965 +Mounting Hole 4.3mm, no annular, M4, DIN965 +mounting hole 4.3mm no annular m4 din965 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad +Mounting Hole 4.3mm, M4, DIN965 +mounting hole 4.3mm m4 din965 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad_TopBottom +Mounting Hole 4.3mm, M4, DIN965 +mounting hole 4.3mm m4 din965 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad_TopOnly +Mounting Hole 4.3mm, M4, DIN965 +mounting hole 4.3mm m4 din965 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380 +Mounting Hole 4.3mm, no annular, M4, ISO7380 +mounting hole 4.3mm no annular m4 iso7380 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad +Mounting Hole 4.3mm, M4, ISO7380 +mounting hole 4.3mm m4 iso7380 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad_TopBottom +Mounting Hole 4.3mm, M4, ISO7380 +mounting hole 4.3mm m4 iso7380 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad_TopOnly +Mounting Hole 4.3mm, M4, ISO7380 +mounting hole 4.3mm m4 iso7380 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580 +Mounting Hole 4.3mm, no annular, M4, ISO14580 +mounting hole 4.3mm no annular m4 iso14580 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad +Mounting Hole 4.3mm, M4, ISO14580 +mounting hole 4.3mm m4 iso14580 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad_TopBottom +Mounting Hole 4.3mm, M4, ISO14580 +mounting hole 4.3mm m4 iso14580 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad_TopOnly +Mounting Hole 4.3mm, M4, ISO14580 +mounting hole 4.3mm m4 iso14580 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_Pad +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_TopBottom +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_TopOnly +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_Via +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +9 +1 +MountingHole +MountingHole_4.3x6.2mm_M4_Pad +Mounting Hole 4.3x6.2mm, M4 +mounting hole 4.3x6.2mm m4 +0 +1 +1 +MountingHole +MountingHole_4.3x6.2mm_M4_Pad_Via +Mounting Hole 4.3x6.2mm, M4 +mounting hole 4.3x6.2mm m4 +0 +17 +1 +MountingHole +MountingHole_4.5mm +Mounting Hole 4.5mm, no annular +mounting hole 4.5mm no annular +0 +0 +0 +MountingHole +MountingHole_4.5mm_Pad +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +1 +1 +MountingHole +MountingHole_4.5mm_Pad_TopBottom +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +3 +1 +MountingHole +MountingHole_4.5mm_Pad_TopOnly +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +2 +1 +MountingHole +MountingHole_4.5mm_Pad_Via +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +9 +1 +MountingHole +MountingHole_4mm +Mounting Hole 4mm, no annular +mounting hole 4mm no annular +0 +0 +0 +MountingHole +MountingHole_4mm_Pad +Mounting Hole 4mm +mounting hole 4mm +0 +1 +1 +MountingHole +MountingHole_4mm_Pad_TopBottom +Mounting Hole 4mm +mounting hole 4mm +0 +3 +1 +MountingHole +MountingHole_4mm_Pad_TopOnly +Mounting Hole 4mm +mounting hole 4mm +0 +2 +1 +MountingHole +MountingHole_4mm_Pad_Via +Mounting Hole 4mm +mounting hole 4mm +0 +9 +1 +MountingHole +MountingHole_5.3mm_M5 +Mounting Hole 5.3mm, no annular, M5 +mounting hole 5.3mm no annular m5 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_DIN965 +Mounting Hole 5.3mm, no annular, M5, DIN965 +mounting hole 5.3mm no annular m5 din965 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad +Mounting Hole 5.3mm, M5, DIN965 +mounting hole 5.3mm m5 din965 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad_TopBottom +Mounting Hole 5.3mm, M5, DIN965 +mounting hole 5.3mm m5 din965 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad_TopOnly +Mounting Hole 5.3mm, M5, DIN965 +mounting hole 5.3mm m5 din965 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380 +Mounting Hole 5.3mm, no annular, M5, ISO7380 +mounting hole 5.3mm no annular m5 iso7380 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad +Mounting Hole 5.3mm, M5, ISO7380 +mounting hole 5.3mm m5 iso7380 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad_TopBottom +Mounting Hole 5.3mm, M5, ISO7380 +mounting hole 5.3mm m5 iso7380 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad_TopOnly +Mounting Hole 5.3mm, M5, ISO7380 +mounting hole 5.3mm m5 iso7380 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580 +Mounting Hole 5.3mm, no annular, M5, ISO14580 +mounting hole 5.3mm no annular m5 iso14580 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad +Mounting Hole 5.3mm, M5, ISO14580 +mounting hole 5.3mm m5 iso14580 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad_TopBottom +Mounting Hole 5.3mm, M5, ISO14580 +mounting hole 5.3mm m5 iso14580 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad_TopOnly +Mounting Hole 5.3mm, M5, ISO14580 +mounting hole 5.3mm m5 iso14580 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_Pad +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_TopBottom +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_TopOnly +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_Via +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +9 +1 +MountingHole +MountingHole_5.5mm +Mounting Hole 5.5mm, no annular +mounting hole 5.5mm no annular +0 +0 +0 +MountingHole +MountingHole_5.5mm_Pad +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +1 +1 +MountingHole +MountingHole_5.5mm_Pad_TopBottom +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +3 +1 +MountingHole +MountingHole_5.5mm_Pad_TopOnly +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +2 +1 +MountingHole +MountingHole_5.5mm_Pad_Via +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +9 +1 +MountingHole +MountingHole_5mm +Mounting Hole 5mm, no annular +mounting hole 5mm no annular +0 +0 +0 +MountingHole +MountingHole_5mm_Pad +Mounting Hole 5mm +mounting hole 5mm +0 +1 +1 +MountingHole +MountingHole_5mm_Pad_TopBottom +Mounting Hole 5mm +mounting hole 5mm +0 +3 +1 +MountingHole +MountingHole_5mm_Pad_TopOnly +Mounting Hole 5mm +mounting hole 5mm +0 +2 +1 +MountingHole +MountingHole_5mm_Pad_Via +Mounting Hole 5mm +mounting hole 5mm +0 +9 +1 +MountingHole +MountingHole_6.4mm_M6 +Mounting Hole 6.4mm, no annular, M6 +mounting hole 6.4mm no annular m6 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_DIN965 +Mounting Hole 6.4mm, no annular, M6, DIN965 +mounting hole 6.4mm no annular m6 din965 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad +Mounting Hole 6.4mm, M6, DIN965 +mounting hole 6.4mm m6 din965 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad_TopBottom +Mounting Hole 6.4mm, M6, DIN965 +mounting hole 6.4mm m6 din965 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad_TopOnly +Mounting Hole 6.4mm, M6, DIN965 +mounting hole 6.4mm m6 din965 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380 +Mounting Hole 6.4mm, no annular, M6, ISO7380 +mounting hole 6.4mm no annular m6 iso7380 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad +Mounting Hole 6.4mm, M6, ISO7380 +mounting hole 6.4mm m6 iso7380 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad_TopBottom +Mounting Hole 6.4mm, M6, ISO7380 +mounting hole 6.4mm m6 iso7380 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad_TopOnly +Mounting Hole 6.4mm, M6, ISO7380 +mounting hole 6.4mm m6 iso7380 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580 +Mounting Hole 6.4mm, no annular, M6, ISO14580 +mounting hole 6.4mm no annular m6 iso14580 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad +Mounting Hole 6.4mm, M6, ISO14580 +mounting hole 6.4mm m6 iso14580 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad_TopBottom +Mounting Hole 6.4mm, M6, ISO14580 +mounting hole 6.4mm m6 iso14580 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad_TopOnly +Mounting Hole 6.4mm, M6, ISO14580 +mounting hole 6.4mm m6 iso14580 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_Pad +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_TopBottom +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_TopOnly +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_Via +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +9 +1 +MountingHole +MountingHole_6.5mm +Mounting Hole 6.5mm, no annular +mounting hole 6.5mm no annular +0 +0 +0 +MountingHole +MountingHole_6.5mm_Pad +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +1 +1 +MountingHole +MountingHole_6.5mm_Pad_TopBottom +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +3 +1 +MountingHole +MountingHole_6.5mm_Pad_TopOnly +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +2 +1 +MountingHole +MountingHole_6.5mm_Pad_Via +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +9 +1 +MountingHole +MountingHole_6mm +Mounting Hole 6mm, no annular +mounting hole 6mm no annular +0 +0 +0 +MountingHole +MountingHole_6mm_Pad +Mounting Hole 6mm +mounting hole 6mm +0 +1 +1 +MountingHole +MountingHole_6mm_Pad_TopBottom +Mounting Hole 6mm +mounting hole 6mm +0 +3 +1 +MountingHole +MountingHole_6mm_Pad_TopOnly +Mounting Hole 6mm +mounting hole 6mm +0 +2 +1 +MountingHole +MountingHole_6mm_Pad_Via +Mounting Hole 6mm +mounting hole 6mm +0 +9 +1 +MountingHole +MountingHole_8.4mm_M8 +Mounting Hole 8.4mm, no annular, M8 +mounting hole 8.4mm no annular m8 +0 +0 +0 +MountingHole +MountingHole_8.4mm_M8_Pad +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +1 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_TopBottom +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +3 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_TopOnly +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +2 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_Via +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +9 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMRA-D3.3mm_L7mm_7466300R_Horizontal +Right-angle SMD mounting hardware, inside through hole 3.3mm, lenght 7mm, total height 5mm, Würth electronics 7466300R (https://www.we-online.com/components/products/datasheet/7466300R.pdf) +screw +0 +4 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMRA-M3_L7mm_7466303R_Horizontal +Right-angle SMD mounting Hardware, inside threaded M3, length 7m, total height 5mm, Würth electronics 7466303R (https://www.we-online.com/components/products/datasheet/7466303R.pdf) +threaded screw +0 +4 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H5mm_9771050360 +Mounting Hardware, external M3, height 5, Wuerth electronics 9771050360 (https://katalog.we-online.com/em/datasheet/9771050360.pdf), generated with kicad-footprint-generator +Mounting M3 9771050360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H6mm_9771060360 +Mounting Hardware, external M3, height 6, Wuerth electronics 9771060360 (https://katalog.we-online.com/em/datasheet/9771060360.pdf), generated with kicad-footprint-generator +Mounting M3 9771060360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H7mm_9771070360 +Mounting Hardware, external M3, height 7, Wuerth electronics 9771070360 (https://katalog.we-online.com/em/datasheet/9771070360.pdf), generated with kicad-footprint-generator +Mounting M3 9771070360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H8mm_9771080360 +Mounting Hardware, external M3, height 8, Wuerth electronics 9771080360 (https://katalog.we-online.com/em/datasheet/9771080360.pdf), generated with kicad-footprint-generator +Mounting M3 9771080360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H9mm_9771090360 +Mounting Hardware, external M3, height 9, Wuerth electronics 9771090360 (https://katalog.we-online.com/em/datasheet/9771090360.pdf), generated with kicad-footprint-generator +Mounting M3 9771090360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H10mm_9771100360 +Mounting Hardware, external M3, height 10, Wuerth electronics 9771100360 (https://katalog.we-online.com/em/datasheet/9771100360.pdf), generated with kicad-footprint-generator +Mounting M3 9771100360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H11mm_9771110360 +Mounting Hardware, external M3, height 11, Wuerth electronics 9771110360 (https://katalog.we-online.com/em/datasheet/9771110360.pdf), generated with kicad-footprint-generator +Mounting M3 9771110360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H12mm_9771120360 +Mounting Hardware, external M3, height 12, Wuerth electronics 9771120360 (https://katalog.we-online.com/em/datasheet/9771120360.pdf), generated with kicad-footprint-generator +Mounting M3 9771120360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H13mm_9771130360 +Mounting Hardware, external M3, height 13, Wuerth electronics 9771130360 (https://katalog.we-online.com/em/datasheet/9771130360.pdf), generated with kicad-footprint-generator +Mounting M3 9771130360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H14mm_9771140360 +Mounting Hardware, external M3, height 14, Wuerth electronics 9771140360 (https://katalog.we-online.com/em/datasheet/9771140360.pdf), generated with kicad-footprint-generator +Mounting M3 9771140360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H15mm_9771150360 +Mounting Hardware, external M3, height 15, Wuerth electronics 9771150360 (https://katalog.we-online.com/em/datasheet/9771150360.pdf), generated with kicad-footprint-generator +Mounting M3 9771150360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H1mm_9774010482 +Mounting Hardware, inside through hole 4.5mm, height 1, Wuerth electronics 9774010482 (https://katalog.we-online.de/em/datasheet/9774010482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774010482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H2mm_9774020482 +Mounting Hardware, inside through hole 4.5mm, height 2, Wuerth electronics 9774020482 (https://katalog.we-online.de/em/datasheet/9774020482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774020482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H3mm_9774030482 +Mounting Hardware, inside through hole 4.5mm, height 3, Wuerth electronics 9774030482 (https://katalog.we-online.de/em/datasheet/9774030482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774030482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H4mm_9774040482 +Mounting Hardware, inside through hole 4.5mm, height 4, Wuerth electronics 9774040482 (https://katalog.we-online.de/em/datasheet/9774040482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774040482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H5mm_9774050482 +Mounting Hardware, inside through hole 4.5mm, height 5, Wuerth electronics 9774050482 (https://katalog.we-online.de/em/datasheet/9774050482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774050482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H6mm_9774060482 +Mounting Hardware, inside through hole 4.5mm, height 6, Wuerth electronics 9774060482 (https://katalog.we-online.de/em/datasheet/9774060482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774060482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H7mm_9774070482 +Mounting Hardware, inside through hole 4.5mm, height 7, Wuerth electronics 9774070482 (https://katalog.we-online.de/em/datasheet/9774070482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774070482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H8mm_9774080482 +Mounting Hardware, inside through hole 4.5mm, height 8, Wuerth electronics 9774080482 (https://katalog.we-online.de/em/datasheet/9774080482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774080482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H9mm_9774090482 +Mounting Hardware, inside through hole 4.5mm, height 9, Wuerth electronics 9774090482 (https://katalog.we-online.de/em/datasheet/9774090482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774090482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H10mm_9774100482 +Mounting Hardware, inside through hole 4.5mm, height 10, Wuerth electronics 9774100482 (https://katalog.we-online.de/em/datasheet/9774100482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774100482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H1.5mm_9774015633 +Mounting Hardware, inside through hole M1.6, height 1.5, Wuerth electronics 9774015633 (https://katalog.we-online.com/em/datasheet/9774015633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774015633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H1mm_9774010633 +Mounting Hardware, inside through hole M1.6, height 1, Wuerth electronics 9774010633 (https://katalog.we-online.com/em/datasheet/9774010633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774010633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_9774025633 +Mounting Hardware, inside through hole M1.6, height 2.5, Wuerth electronics 9774025633 (https://katalog.we-online.com/em/datasheet/9774025633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774025633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_ThreadDepth1.5mm_97730256332 +Mounting Hardware, inside blind hole M1.6, height 2.5, Wuerth electronics 97730256332 (https://katalog.we-online.com/em/datasheet/97730256332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730256332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_ThreadDepth1.5mm_NoNPTH_97730256330 +Mounting Hardware, inside blind hole M1.6, height 2.5, Wuerth electronics 97730256330 (https://katalog.we-online.com/em/datasheet/97730256330R.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730256330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2mm_9774020633 +Mounting Hardware, inside through hole M1.6, height 2, Wuerth electronics 9774020633 (https://katalog.we-online.com/em/datasheet/9774020633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774020633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_97730356332 +Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356332 (https://katalog.we-online.com/em/datasheet/97730356332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730356332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_97730356334 +Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356334 (https://katalog.we-online.com/em/datasheet/97730356334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730356334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_NoNPTH_97730356330 +Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356330 (https://katalog.we-online.com/em/datasheet/97730356330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730356330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3mm_9774030633 +Mounting Hardware, inside through hole M1.6, height 3, Wuerth electronics 9774030633 (https://katalog.we-online.com/em/datasheet/9774030633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774030633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3mm_ThreadDepth1.8mm_97730306332 +Mounting Hardware, inside blind hole M1.6, height 3, Wuerth electronics 97730306332 (https://katalog.we-online.com/em/datasheet/97730306332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730306332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3mm_ThreadDepth1.8mm_NoNPTH_97730306330 +Mounting Hardware, inside blind hole M1.6, height 3, Wuerth electronics 97730306330 (https://katalog.we-online.com/em/datasheet/97730306330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730306330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_97730456332 +Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456332 (https://katalog.we-online.com/em/datasheet/97730456332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730456332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_97730456334 +Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456334 (https://katalog.we-online.com/em/datasheet/97730456334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730456334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_NoNPTH_97730456330 +Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456330 (https://katalog.we-online.com/em/datasheet/97730456330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730456330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_97730406332 +Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406332 (https://katalog.we-online.com/em/datasheet/97730406332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730406332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_97730406334 +Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406334 (https://katalog.we-online.com/em/datasheet/97730406334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730406334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_NoNPTH_97730406330 +Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406330 (https://katalog.we-online.com/em/datasheet/97730406330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730406330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_97730506332 +Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506332 (https://katalog.we-online.com/em/datasheet/97730506332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730506332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_97730506334 +Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506334 (https://katalog.we-online.com/em/datasheet/97730506334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730506334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_NoNPTH_97730506330 +Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506330 (https://katalog.we-online.com/em/datasheet/97730506330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730506330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_97730606332 +Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606332 (https://katalog.we-online.com/em/datasheet/97730606332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730606332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_97730606334 +Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606334 (https://katalog.we-online.com/em/datasheet/97730606334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730606334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_NoNPTH_97730606330 +Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606330 (https://katalog.we-online.com/em/datasheet/97730606330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730606330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H1.5mm_9774015243 +Mounting Hardware, inside through hole M2, height 1.5, Wuerth electronics 9774015243 (https://katalog.we-online.de/em/datasheet/9774015243.pdf), generated with kicad-footprint-generator +Mounting M2 9774015243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H1mm_9774010243 +Mounting Hardware, inside through hole M2, height 1, Wuerth electronics 9774010243 (https://katalog.we-online.de/em/datasheet/9774010243.pdf), generated with kicad-footprint-generator +Mounting M2 9774010243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H2.5mm_9774025243 +Mounting Hardware, inside through hole M2, height 2.5, Wuerth electronics 9774025243 (https://katalog.we-online.de/em/datasheet/9774025243.pdf), generated with kicad-footprint-generator +Mounting M2 9774025243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H2mm_9774020243 +Mounting Hardware, inside through hole M2, height 2, Wuerth electronics 9774020243 (https://katalog.we-online.de/em/datasheet/9774020243.pdf), generated with kicad-footprint-generator +Mounting M2 9774020243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H3.5mm_9774035243 +Mounting Hardware, inside through hole M2, height 3.5, Wuerth electronics 9774035243 (https://katalog.we-online.de/em/datasheet/9774035243.pdf), generated with kicad-footprint-generator +Mounting M2 9774035243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H3mm_9774030243 +Mounting Hardware, inside through hole M2, height 3, Wuerth electronics 9774030243 (https://katalog.we-online.de/em/datasheet/9774030243.pdf), generated with kicad-footprint-generator +Mounting M2 9774030243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H4.5mm_9774045243 +Mounting Hardware, inside through hole M2, height 4.5, Wuerth electronics 9774045243 (https://katalog.we-online.de/em/datasheet/9774045243.pdf), generated with kicad-footprint-generator +Mounting M2 9774045243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H4mm_9774040243 +Mounting Hardware, inside through hole M2, height 4, Wuerth electronics 9774040243 (https://katalog.we-online.de/em/datasheet/9774040243.pdf), generated with kicad-footprint-generator +Mounting M2 9774040243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H5mm_9774050243 +Mounting Hardware, inside through hole M2, height 5, Wuerth electronics 9774050243 (https://katalog.we-online.de/em/datasheet/9774050243.pdf), generated with kicad-footprint-generator +Mounting M2 9774050243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H6mm_9774060243 +Mounting Hardware, inside through hole M2, height 6, Wuerth electronics 9774060243 (https://katalog.we-online.de/em/datasheet/9774060243.pdf), generated with kicad-footprint-generator +Mounting M2 9774060243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H7mm_9774070243 +Mounting Hardware, inside through hole M2, height 7, Wuerth electronics 9774070243 (https://katalog.we-online.de/em/datasheet/9774070243.pdf), generated with kicad-footprint-generator +Mounting M2 9774070243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H8mm_9774080243 +Mounting Hardware, inside through hole M2, height 8, Wuerth electronics 9774080243 (https://katalog.we-online.de/em/datasheet/9774080243.pdf), generated with kicad-footprint-generator +Mounting M2 9774080243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H1.5mm_9774015360 +Mounting Hardware, inside through hole M3, height 1.5, Wuerth electronics 9774015360 (https://katalog.we-online.de/em/datasheet/9774015360.pdf), generated with kicad-footprint-generator +Mounting M3 9774015360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H1mm_9774010360 +Mounting Hardware, inside through hole M3, height 1, Wuerth electronics 9774010360 (https://katalog.we-online.de/em/datasheet/9774010360.pdf), generated with kicad-footprint-generator +Mounting M3 9774010360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H2.5mm_9774025360 +Mounting Hardware, inside through hole M3, height 2.5, Wuerth electronics 9774025360 (https://katalog.we-online.de/em/datasheet/9774025360.pdf), generated with kicad-footprint-generator +Mounting M3 9774025360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H2mm_9774020360 +Mounting Hardware, inside through hole M3, height 2, Wuerth electronics 9774020360 (https://katalog.we-online.de/em/datasheet/9774020360.pdf), generated with kicad-footprint-generator +Mounting M3 9774020360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H3mm_9774030360 +Mounting Hardware, inside through hole M3, height 3, Wuerth electronics 9774030360 (https://katalog.we-online.de/em/datasheet/9774030360R.pdf), generated with kicad-footprint-generator +Mounting M3 9774030360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H4mm_9774040360 +Mounting Hardware, inside through hole M3, height 4, Wuerth electronics 9774040360 (https://katalog.we-online.de/em/datasheet/9774040360.pdf), generated with kicad-footprint-generator +Mounting M3 9774040360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H5mm_9774050360 +Mounting Hardware, inside through hole M3, height 5, Wuerth electronics 9774050360 (https://katalog.we-online.de/em/datasheet/9774050360.pdf), generated with kicad-footprint-generator +Mounting M3 9774050360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H6mm_9774060360 +Mounting Hardware, inside through hole M3, height 6, Wuerth electronics 9774060360 (https://katalog.we-online.de/em/datasheet/9774060360.pdf), generated with kicad-footprint-generator +Mounting M3 9774060360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H7mm_9774070360 +Mounting Hardware, inside through hole M3, height 7, Wuerth electronics 9774070360 (https://katalog.we-online.de/em/datasheet/9774070360.pdf), generated with kicad-footprint-generator +Mounting M3 9774070360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H8mm_9774080360 +Mounting Hardware, inside through hole M3, height 8, Wuerth electronics 9774080360 (https://katalog.we-online.de/em/datasheet/9774080360.pdf), generated with kicad-footprint-generator +Mounting M3 9774080360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H9mm_9774090360 +Mounting Hardware, inside through hole M3, height 9, Wuerth electronics 9774090360 (https://katalog.we-online.de/em/datasheet/9774090360.pdf), generated with kicad-footprint-generator +Mounting M3 9774090360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H10mm_9774100360 +Mounting Hardware, inside through hole M3, height 10, Wuerth electronics 9774100360 (https://katalog.we-online.de/em/datasheet/9774100360.pdf), generated with kicad-footprint-generator +Mounting M3 9774100360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H11mm_9774110360 +Mounting Hardware, inside through hole M3, height 11, Wuerth electronics 9774110360 (https://katalog.we-online.de/em/datasheet/9774110360.pdf), generated with kicad-footprint-generator +Mounting M3 9774110360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H12mm_9774120360 +Mounting Hardware, inside through hole M3, height 12, Wuerth electronics 9774120360 (https://katalog.we-online.de/em/datasheet/9774120360.pdf), generated with kicad-footprint-generator +Mounting M3 9774120360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H13mm_9774130360 +Mounting Hardware, inside through hole M3, height 13, Wuerth electronics 9774130360 (https://katalog.we-online.de/em/datasheet/9774130360.pdf), generated with kicad-footprint-generator +Mounting M3 9774130360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H14mm_9774140360 +Mounting Hardware, inside through hole M3, height 14, Wuerth electronics 9774140360 (https://katalog.we-online.de/em/datasheet/9774140360.pdf), generated with kicad-footprint-generator +Mounting M3 9774140360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H15mm_9774150360 +Mounting Hardware, inside through hole M3, height 15, Wuerth electronics 9774150360 (https://katalog.we-online.de/em/datasheet/9774150360.pdf), generated with kicad-footprint-generator +Mounting M3 9774150360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H2.6mm_ReverseMount_9775026960 +Mounting Hardware, inside through hole 3.2mm, height 2.6, Wuerth electronics 9775026960 (https://katalog.we-online.com/em/datasheet/9775026960R.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775026960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H3.1mm_ReverseMount_9775031960 +Mounting Hardware, inside through hole 3.2mm, height 3.1, Wuerth electronics 9775031960 (https://katalog.we-online.com/em/datasheet/9775031960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775031960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H3.6mm_ReverseMount_9775036960 +Mounting Hardware, inside through hole 3.2mm, height 3.6, Wuerth electronics 9775036960 (https://katalog.we-online.com/em/datasheet/9775036960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775036960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H4.1mm_ReverseMount_9775041960 +Mounting Hardware, inside through hole 3.2mm, height 4.1, Wuerth electronics 9775041960 (https://katalog.we-online.com/em/datasheet/9775041960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775041960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H4.6mm_ReverseMount_9775046960 +Mounting Hardware, inside through hole 3.2mm, height 4.6, Wuerth electronics 9775046960 (https://katalog.we-online.com/em/datasheet/9775046960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775046960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H5.1mm_ReverseMount_9775051960 +Mounting Hardware, inside through hole 3.2mm, height 5.1, Wuerth electronics 9775051960 (https://katalog.we-online.com/em/datasheet/9775051960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775051960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H5.6mm_ReverseMount_9775056960 +Mounting Hardware, inside through hole 3.2mm, height 5.6, Wuerth electronics 9775056960 (https://katalog.we-online.com/em/datasheet/9775056960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775056960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H6.6mm_ReverseMount_9775066960 +Mounting Hardware, inside through hole 3.2mm, height 6.6, Wuerth electronics 9775066960 (https://katalog.we-online.com/em/datasheet/9775066960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775066960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H7.6mm_ReverseMount_9775076960 +Mounting Hardware, inside through hole 3.2mm, height 7.6, Wuerth electronics 9775076960 (https://katalog.we-online.com/em/datasheet/9775076960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775076960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H8.6mm_ReverseMount_9775086960 +Mounting Hardware, inside through hole 3.2mm, height 8.6, Wuerth electronics 9775086960 (https://katalog.we-online.com/em/datasheet/9775086960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775086960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H9.6mm_ReverseMount_9775096960 +Mounting Hardware, inside through hole 3.2mm, height 9.6, Wuerth electronics 9775096960 (https://katalog.we-online.com/em/datasheet/9775096960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775096960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H10.6mm_ReverseMount_9775106960 +Mounting Hardware, inside through hole 3.2mm, height 10.6, Wuerth electronics 9775106960 (https://katalog.we-online.com/em/datasheet/9775106960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775106960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H11.6mm_ReverseMount_9775116960 +Mounting Hardware, inside through hole 3.2mm, height 11.6, Wuerth electronics 9775116960 (https://katalog.we-online.com/em/datasheet/9775116960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775116960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H2.6mm_ReverseMount_9775026360 +Mounting Hardware, inside through hole M3, height 2.6, Wuerth electronics 9775026360 (https://katalog.we-online.com/em/datasheet/9775026360.pdf), generated with kicad-footprint-generator +Mounting M3 9775026360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H3.1mm_ReverseMount_9775031360 +Mounting Hardware, inside through hole M3, height 3.1, Wuerth electronics 9775031360 (https://katalog.we-online.com/em/datasheet/9775031360.pdf), generated with kicad-footprint-generator +Mounting M3 9775031360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H3.6mm_ReverseMount_9775036360 +Mounting Hardware, inside through hole M3, height 3.6, Wuerth electronics 9775036360 (https://katalog.we-online.com/em/datasheet/9775036360.pdf), generated with kicad-footprint-generator +Mounting M3 9775036360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H4.1mm_ReverseMount_9775041360 +Mounting Hardware, inside through hole M3, height 4.1, Wuerth electronics 9775041360 (https://katalog.we-online.com/em/datasheet/9775041360.pdf), generated with kicad-footprint-generator +Mounting M3 9775041360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H4.6mm_ReverseMount_9775046360 +Mounting Hardware, inside through hole M3, height 4.6, Wuerth electronics 9775046360 (https://katalog.we-online.com/em/datasheet/9775046360.pdf), generated with kicad-footprint-generator +Mounting M3 9775046360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H5.1mm_ReverseMount_9775051360 +Mounting Hardware, inside through hole M3, height 5.1, Wuerth electronics 9775051360 (https://katalog.we-online.com/em/datasheet/9775051360.pdf), generated with kicad-footprint-generator +Mounting M3 9775051360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H5.6mm_ReverseMount_9775056360 +Mounting Hardware, inside through hole M3, height 5.6, Wuerth electronics 9775056360 (https://katalog.we-online.com/em/datasheet/9775056360.pdf), generated with kicad-footprint-generator +Mounting M3 9775056360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H6.6mm_ReverseMount_9775066360 +Mounting Hardware, inside through hole M3, height 6.6, Wuerth electronics 9775066360 (https://katalog.we-online.com/em/datasheet/9775066360.pdf), generated with kicad-footprint-generator +Mounting M3 9775066360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H7.6mm_ReverseMount_9775076360 +Mounting Hardware, inside through hole M3, height 7.6, Wuerth electronics 9775076360 (https://katalog.we-online.com/em/datasheet/9775076360.pdf), generated with kicad-footprint-generator +Mounting M3 9775076360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H8.6mm_ReverseMount_9775086360 +Mounting Hardware, inside through hole M3, height 8.6, Wuerth electronics 9775086360 (https://katalog.we-online.com/em/datasheet/9775086360.pdf), generated with kicad-footprint-generator +Mounting M3 9775086360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H9.6mm_ReverseMount_9775096360 +Mounting Hardware, inside through hole M3, height 9.6, Wuerth electronics 9775096360 (https://katalog.we-online.com/em/datasheet/9775096360.pdf), generated with kicad-footprint-generator +Mounting M3 9775096360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H10.6mm_ReverseMount_9775106360 +Mounting Hardware, inside through hole M3, height 10.6, Wuerth electronics 9775106360 (https://katalog.we-online.com/em/datasheet/9775106360.pdf), generated with kicad-footprint-generator +Mounting M3 9775106360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H11.6mm_ReverseMount_9775116360 +Mounting Hardware, inside through hole M3, height 11.6, Wuerth electronics 9775116360 (https://katalog.we-online.com/em/datasheet/9775116360.pdf), generated with kicad-footprint-generator +Mounting M3 9775116360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H2.5mm_SnapRivet_9776025960 +Mounting Hardware, inside through hole 3.3mm, height 2.5, Wuerth electronics 9776025960 (https://katalog.we-online.com/em/datasheet/9776025960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776025960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H2mm_SnapRivet_9776020960 +Mounting Hardware, inside through hole 3.3mm, height 2, Wuerth electronics 9776020960 (https://katalog.we-online.com/em/datasheet/9776020960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776020960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H3mm_SnapRivet_9776030960 +Mounting Hardware, inside through hole 3.3mm, height 3, Wuerth electronics 9776030960 (https://katalog.we-online.com/em/datasheet/9776030960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776030960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H4mm_SnapRivet_9776040960 +Mounting Hardware, inside through hole 3.3mm, height 4, Wuerth electronics 9776040960 (https://katalog.we-online.com/em/datasheet/9776040960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776040960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H5mm_SnapRivet_9776050960 +Mounting Hardware, inside through hole 3.3mm, height 5, Wuerth electronics 9776050960 (https://katalog.we-online.com/em/datasheet/9776050960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776050960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H6mm_SnapRivet_9776060960 +Mounting Hardware, inside through hole 3.3mm, height 6, Wuerth electronics 9776060960 (https://katalog.we-online.com/em/datasheet/9776060960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776060960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H7mm_SnapRivet_9776070960 +Mounting Hardware, inside through hole 3.3mm, height 7, Wuerth electronics 9776070960 (https://katalog.we-online.com/em/datasheet/9776070960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776070960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H8mm_SnapRivet_9776080960 +Mounting Hardware, inside through hole 3.3mm, height 8, Wuerth electronics 9776080960 (https://katalog.we-online.com/em/datasheet/9776080960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776080960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H9mm_SnapRivet_9776090960 +Mounting Hardware, inside through hole 3.3mm, height 9, Wuerth electronics 9776090960 (https://katalog.we-online.com/em/datasheet/9776090960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776090960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H10mm_SnapRivet_9776100960 +Mounting Hardware, inside through hole 3.3mm, height 10, Wuerth electronics 9776100960 (https://katalog.we-online.com/em/datasheet/9776100960R.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776100960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H1.5mm_9774015951 +Mounting Hardware, inside through hole 2.7mm, height 1.5, Wuerth electronics 9774015951 (https://katalog.we-online.de/em/datasheet/9774015951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774015951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H1mm_9774010951 +Mounting Hardware, inside through hole 2.7mm, height 1, Wuerth electronics 9774010951 (https://katalog.we-online.de/em/datasheet/9774010951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774010951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H2.5mm_9774025951 +Mounting Hardware, inside through hole 2.7mm, height 2.5, Wuerth electronics 9774025951 (https://katalog.we-online.de/em/datasheet/9774025951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774025951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H2mm_9774020951 +Mounting Hardware, inside through hole 2.7mm, height 2, Wuerth electronics 9774020951 (https://katalog.we-online.de/em/datasheet/9774020951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774020951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H3mm_9774030951 +Mounting Hardware, inside through hole 2.7mm, height 3, Wuerth electronics 9774030951 (https://katalog.we-online.de/em/datasheet/9774030951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774030951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H4mm_9774040951 +Mounting Hardware, inside through hole 2.7mm, height 4, Wuerth electronics 9774040951 (https://katalog.we-online.de/em/datasheet/9774040951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774040951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H5.5mm_9774055951 +Mounting Hardware, inside through hole 2.7mm, height 5.5, Wuerth electronics 9774055951 (https://katalog.we-online.de/em/datasheet/9774055951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774055951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H5mm_9774050951 +Mounting Hardware, inside through hole 2.7mm, height 5, Wuerth electronics 9774050951 (https://katalog.we-online.de/em/datasheet/9774050951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774050951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H6.5mm_9774065951 +Mounting Hardware, inside through hole 2.7mm, height 6.5, Wuerth electronics 9774065951 (https://katalog.we-online.de/em/datasheet/9774065951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774065951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H6mm_9774060951 +Mounting Hardware, inside through hole 2.7mm, height 6, Wuerth electronics 9774060951 (https://katalog.we-online.de/em/datasheet/9774060951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774060951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H7mm_9774070951 +Mounting Hardware, inside through hole 2.7mm, height 7, Wuerth electronics 9774070951 (https://katalog.we-online.de/em/datasheet/9774070951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774070951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H8mm_9774080951 +Mounting Hardware, inside through hole 2.7mm, height 8, Wuerth electronics 9774080951 (https://katalog.we-online.de/em/datasheet/9774080951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774080951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H9mm_9774090951 +Mounting Hardware, inside through hole 2.7mm, height 9, Wuerth electronics 9774090951 (https://katalog.we-online.de/em/datasheet/9774090951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774090951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H10mm_9774100951 +Mounting Hardware, inside through hole 2.7mm, height 10, Wuerth electronics 9774100951 (https://katalog.we-online.de/em/datasheet/9774100951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774100951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H1.5mm_9774015943 +Mounting Hardware, inside through hole 2.25mm, height 1.5, Wuerth electronics 9774015943 (https://katalog.we-online.de/em/datasheet/9774015943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774015943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H1mm_9774010943 +Mounting Hardware, inside through hole 2.25mm, height 1, Wuerth electronics 9774010943 (https://katalog.we-online.de/em/datasheet/9774010943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774010943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H2.5mm_9774025943 +Mounting Hardware, inside through hole 2.25mm, height 2.5, Wuerth electronics 9774025943 (https://katalog.we-online.de/em/datasheet/9774025943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774025943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H2mm_9774020943 +Mounting Hardware, inside through hole 2.25mm, height 2, Wuerth electronics 9774020943 (https://katalog.we-online.de/em/datasheet/9774020943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774020943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H3.5mm_9774035943 +Mounting Hardware, inside through hole 2.25mm, height 3.5, Wuerth electronics 9774035943 (https://katalog.we-online.de/em/datasheet/9774035943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774035943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H3mm_9774030943 +Mounting Hardware, inside through hole 2.25mm, height 3, Wuerth electronics 9774030943 (https://katalog.we-online.de/em/datasheet/9774030943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774030943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H4.5mm_9774045943 +Mounting Hardware, inside through hole 2.25mm, height 4.5, Wuerth electronics 9774045943 (https://katalog.we-online.de/em/datasheet/9774045943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774045943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H4mm_9774040943 +Mounting Hardware, inside through hole 2.25mm, height 4, Wuerth electronics 9774040943 (https://katalog.we-online.de/em/datasheet/9774040943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774040943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H5mm_9774050943 +Mounting Hardware, inside through hole 2.25mm, height 5, Wuerth electronics 9774050943 (https://katalog.we-online.de/em/datasheet/9774050943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774050943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H6mm_9774060943 +Mounting Hardware, inside through hole 2.25mm, height 6, Wuerth electronics 9774060943 (https://katalog.we-online.de/em/datasheet/9774060943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774060943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H7mm_9774070943 +Mounting Hardware, inside through hole 2.25mm, height 7, Wuerth electronics 9774070943 (https://katalog.we-online.de/em/datasheet/9774070943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774070943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H8mm_9774080943 +Mounting Hardware, inside through hole 2.25mm, height 8, Wuerth electronics 9774080943 (https://katalog.we-online.de/em/datasheet/9774080943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774080943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H1.5mm_9774015960 +Mounting Hardware, inside through hole 3.3mm, height 1.5, Wuerth electronics 9774015960 (https://katalog.we-online.de/em/datasheet/9774015960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774015960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H1mm_9774010960 +Mounting Hardware, inside through hole 3.3mm, height 1, Wuerth electronics 9774010960 (https://katalog.we-online.de/em/datasheet/9774010960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774010960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H2.5mm_9774025960 +Mounting Hardware, inside through hole 3.3mm, height 2.5, Wuerth electronics 9774025960 (https://katalog.we-online.de/em/datasheet/9774025960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774025960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H2mm_9774020960 +Mounting Hardware, inside through hole 3.3mm, height 2, Wuerth electronics 9774020960 (https://katalog.we-online.de/em/datasheet/9774020960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774020960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H3mm_9774030960 +Mounting Hardware, inside through hole 3.3mm, height 3, Wuerth electronics 9774030960 (https://katalog.we-online.de/em/datasheet/9774030960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774030960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H4mm_9774040960 +Mounting Hardware, inside through hole 3.3mm, height 4, Wuerth electronics 9774040960 (https://katalog.we-online.de/em/datasheet/9774040960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774040960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H5mm_9774050960 +Mounting Hardware, inside through hole 3.3mm, height 5, Wuerth electronics 9774050960 (https://katalog.we-online.de/em/datasheet/9774050960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774050960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H6mm_9774060960 +Mounting Hardware, inside through hole 3.3mm, height 6, Wuerth electronics 9774060960 (https://katalog.we-online.de/em/datasheet/9774060960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774060960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H7mm_9774070960 +Mounting Hardware, inside through hole 3.3mm, height 7, Wuerth electronics 9774070960 (https://katalog.we-online.de/em/datasheet/9774070960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774070960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H8mm_9774080960 +Mounting Hardware, inside through hole 3.3mm, height 8, Wuerth electronics 9774080960 (https://katalog.we-online.de/em/datasheet/9774080960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774080960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H9mm_9774090960 +Mounting Hardware, inside through hole 3.3mm, height 9, Wuerth electronics 9774090960 (https://katalog.we-online.de/em/datasheet/9774090960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774090960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H10mm_9774100960 +Mounting Hardware, inside through hole 3.3mm, height 10, Wuerth electronics 9774100960 (https://katalog.we-online.de/em/datasheet/9774100960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774100960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H11mm_9774110960 +Mounting Hardware, inside through hole 3.3mm, height 11, Wuerth electronics 9774110960 (https://katalog.we-online.de/em/datasheet/9774110960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774110960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H12mm_9774120960 +Mounting Hardware, inside through hole 3.3mm, height 12, Wuerth electronics 9774120960 (https://katalog.we-online.de/em/datasheet/9774120960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774120960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H13mm_9774130960 +Mounting Hardware, inside through hole 3.3mm, height 13, Wuerth electronics 9774130960 (https://katalog.we-online.de/em/datasheet/9774130960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774130960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H14mm_9774140960 +Mounting Hardware, inside through hole 3.3mm, height 14, Wuerth electronics 9774140960 (https://katalog.we-online.de/em/datasheet/9774140960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774140960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H15mm_9774150960 +Mounting Hardware, inside through hole 3.3mm, height 15, Wuerth electronics 9774150960 (https://katalog.we-online.de/em/datasheet/9774150960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774150960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H1mm_9774010982 +Mounting Hardware, inside through hole 4.5mm, height 1, Wuerth electronics 9774010982 (https://katalog.we-online.de/em/datasheet/9774010982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774010982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H2mm_9774020982 +Mounting Hardware, inside through hole 4.5mm, height 2, Wuerth electronics 9774020982 (https://katalog.we-online.de/em/datasheet/9774020982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774020982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H3mm_9774030982 +Mounting Hardware, inside through hole 4.5mm, height 3, Wuerth electronics 9774030982 (https://katalog.we-online.de/em/datasheet/9774030982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774030982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H4mm_9774040982 +Mounting Hardware, inside through hole 4.5mm, height 4, Wuerth electronics 9774040982 (https://katalog.we-online.de/em/datasheet/9774040982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774040982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H5mm_9774050982 +Mounting Hardware, inside through hole 4.5mm, height 5, Wuerth electronics 9774050982 (https://katalog.we-online.de/em/datasheet/9774050982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774050982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H6mm_9774060982 +Mounting Hardware, inside through hole 4.5mm, height 6, Wuerth electronics 9774060982 (https://katalog.we-online.de/em/datasheet/9774060982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774060982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H7mm_9774070982 +Mounting Hardware, inside through hole 4.5mm, height 7, Wuerth electronics 9774070982 (https://katalog.we-online.de/em/datasheet/9774070982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774070982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H8mm_9774080982 +Mounting Hardware, inside through hole 4.5mm, height 8, Wuerth electronics 9774080982 (https://katalog.we-online.de/em/datasheet/9774080982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774080982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H9mm_9774090982 +Mounting Hardware, inside through hole 4.5mm, height 9, Wuerth electronics 9774090982 (https://katalog.we-online.de/em/datasheet/9774090982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774090982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H10mm_9774100982 +Mounting Hardware, inside through hole 4.5mm, height 10, Wuerth electronics 9774100982 (https://katalog.we-online.de/em/datasheet/9774100982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774100982 +0 +8 +1 +NetTie +NetTie-2_SMD_Pad0.5mm +Net tie, 2 pin, 0.5mm square SMD pads +net tie +0 +2 +2 +NetTie +NetTie-2_SMD_Pad2.0mm +Net tie, 2 pin, 2.0mm square SMD pads +net tie +0 +2 +2 +NetTie +NetTie-2_THT_Pad0.3mm +Net tie, 2 pin, 0.3mm round THT pads +net tie +0 +2 +2 +NetTie +NetTie-2_THT_Pad1.0mm +Net tie, 2 pin, 1.0mm round THT pads +net tie +0 +2 +2 +NetTie +NetTie-3_SMD_Pad0.5mm +Net tie, 3 pin, 0.5mm square SMD pads +net tie +0 +3 +3 +NetTie +NetTie-3_SMD_Pad2.0mm +Net tie, 3 pin, 2.0mm square SMD pads +net tie +0 +3 +3 +NetTie +NetTie-3_THT_Pad0.3mm +Net tie, 3 pin, 0.3mm round THT pads +net tie +0 +3 +3 +NetTie +NetTie-3_THT_Pad1.0mm +Net tie, 3 pin, 1.0mm round THT pads +net tie +0 +3 +3 +NetTie +NetTie-4_SMD_Pad0.5mm +Net tie, 4 pin, 0.5mm square SMD pads +net tie +0 +4 +4 +NetTie +NetTie-4_SMD_Pad2.0mm +Net tie, 4 pin, 2.0mm square SMD pads +net tie +0 +4 +4 +NetTie +NetTie-4_THT_Pad0.3mm +Net tie, 4 pin, 0.3mm round THT pads +net tie +0 +4 +4 +NetTie +NetTie-4_THT_Pad1.0mm +Net tie, 4 pin, 1.0mm round THT pads +net tie +0 +4 +4 +OptoDevice +ADNS-9800 +Laser Gaming Sensor ADNS-9800 +MOUSE MOUSE_SENSOR LASER_GAMING_SENSOR +0 +16 +16 +OptoDevice +AGILENT_HFBR-152x +Fiberoptic Transmitter TX, HFBR series (https://docs.broadcom.com/docs/AV02-3283EN) +Fiberoptic Transmitter +0 +6 +6 +OptoDevice +AGILENT_HFBR-252x +Fiberoptic Receiver RX, HFBR series (https://docs.broadcom.com/docs/AV02-3283EN) +Fiberoptic Transmitter +0 +6 +6 +OptoDevice +AMS_TSL2550_SMD +http://ams.com/eng/content/download/250130/975613/142977 +TSL2550 ambient light sensor +0 +4 +4 +OptoDevice +AMS_TSL25911FN +DFN, 6 Pin (https://ams.com/documents/20143/9331680/TSL2591_DS000338_7-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +6 +6 +OptoDevice +Broadcom_AFBR-16xxZ_Horizontal +Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN +Fiber Optic Transmitter and Receiver +0 +6 +6 +OptoDevice +Broadcom_AFBR-16xxZ_Tilted +Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN +Fiber Optic Transmitter and Receiver +0 +6 +6 +OptoDevice +Broadcom_AFBR-16xxZ_Vertical +Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN +Fiber Optic Transmitter and Receiver +0 +6 +6 +OptoDevice +Broadcom_APDS-9160-003 +Broadcom DFN, 8 Pin (https://docs.broadcom.com/docs/APDS-9160-003-DS) +proximity sensor avago +0 +8 +8 +OptoDevice +Broadcom_APDS-9301 +ambient light sensor, i2c interface, 6-pin chipled package, https://docs.broadcom.com/docs/AV02-2315EN +ambient light sensor chipled +0 +6 +6 +OptoDevice +Broadcom_DFN-6_2x2mm_P0.65mm +Broadcom DFN, 6 Pin (https://docs.broadcom.com/docs/AV02-4755EN), generated with kicad-footprint-generator ipc_noLead_generator.py +Broadcom DFN NoLead +0 +6 +6 +OptoDevice +Broadcom_LGA-8_2x2mm_P0.5mm +Broadcom LGA, 8 Pin (https://docs.broadcom.com/doc/APDS-9251-001-DS#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +Broadcom LGA NoLead +0 +8 +8 +OptoDevice +Broadcom_LGA-8_2x2mm_P0.53mm +Broadcom LGA, 8 Pin (https://docs.broadcom.com/docs/AV02-4755EN), generated with kicad-footprint-generator ipc_noLead_generator.py +Broadcom LGA NoLead +0 +8 +8 +OptoDevice +Everlight_ITR1201SR10AR +package for Everlight ITR1201SR10AR, light-direction upwards, see https://www.everlight.com/file/ProductFile/ITR1201SR10AR-TR.pdf +reflective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307 +package for Everlight ITR8307 with PCB cutout, light-direction upwards, see http://www.everlight.com/file/ProductFile/ITR8307.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307F43 +package for Everlight ITR8307/F43, see https://everlighteurope.com/index.php?controller=attachment&id_attachment=5385 +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307_Reverse +package for Everlight ITR8307 with PCB cutout, light-direction downwards, see http://www.everlight.com/file/ProductFile/ITR8307.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR9608-F +Fork-type photointerrupter (https://everlighteurope.com/index.php?controller=attachment&id_attachment=5389) +Photointerrupter infrared LED +0 +4 +4 +OptoDevice +Finder_34.81 +Relay SPST, Finder Type 34.81 (opto relays/coupler), vertical/standing form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf +Relay SPST Finder +0 +4 +4 +OptoDevice +Hamamatsu_C12880 +Hamamatsu spectrometer, see http://www.hamamatsu.com/resources/pdf/ssd/c12880ma_kacc1226e.pdf +opto spectrometer Hamamatsu +0 +10 +10 +OptoDevice +Hamamatsu_S13360-30CS +SiPM, 2pin +Hamamatsu SiPM +0 +2 +2 +OptoDevice +Kingbright_KPS-3227 +3.2mmx2.7mm, light sensor, https://www.kingbright.com/attachments/file/psearch/000/00/00/KPS-3227SP1C(Ver.16).pdf +KPS-3227 Ambient Light Photo Sensor +0 +4 +4 +OptoDevice +Kingbright_KPS-5130 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KPS-5130PD7C(Ver.14).pdf +KPS-5130 photodiode RGB sensor +0 +4 +4 +OptoDevice +Kingbright_KRC011_Horizontal +Subminiature Reflective Optical Sensor, http://www.kingbright.com/attachments/file/psearch/000/00/00/KRC011(Ver.15).pdf +Subminiature Reflective Optical Sensor +0 +4 +4 +OptoDevice +Kingbright_KRC011_Vertical +Subminiature Reflective Optical Sensor, http://www.kingbright.com/attachments/file/psearch/000/00/00/KRC011(Ver.15).pdf +Subminiature Reflective Optical Sensor +0 +4 +4 +OptoDevice +Kodenshi_LG206D +http://kodenshi.co.jp/products/pdf/sensor/photointerrupter_ic/LG206D.pdf +Photointerrupter infrared LED with photo IC +0 +5 +5 +OptoDevice +Kodenshi_LG206L +http://kodenshi.co.jp/products/pdf/sensor/photointerrupter_ic/LG205L.pdf +Photointerrupter infrared LED with photo IC +0 +5 +5 +OptoDevice +Kodenshi_SG105 +package for Kodenshi SG-105 with PCB cutout, light-direction upwards, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Kodenshi_SG105F +package for Kodenshi SG-105F, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105F.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Kodenshi_SG105_Reverse +package for Kodenshi SG-105 with PCB cutout, light-direction downwards, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +LaserDiode_TO3.3-D3.3-3 +Laser Diode, TO-3.3mm, 3pin +Laser Diode TO3.3 +0 +3 +3 +OptoDevice +LaserDiode_TO5-D9-3 +Laser Diode, TO5-like (D=9mm), 3pin +Laser Diode TO5-like +0 +3 +3 +OptoDevice +LaserDiode_TO18-D5.6-3 +Laser Diode, TO18-like (D=5.6mm), 3pin +Laser Diode TO18-like +0 +3 +3 +OptoDevice +LaserDiode_TO38ICut-3 +Laser Diode, TO-38-ICut, 3pin +Laser Diode TO38-ICut +0 +3 +3 +OptoDevice +LaserDiode_TO56-3 +Laser Diode, TO-56, 3pin +Laser Diode TO56 +0 +3 +3 +OptoDevice +Lightpipe_Bivar_RLP1-400-650 +1-way, 2.8mm lightpipe, 10mm lens output height, 17mm protrusion, https://www.bivar.com/parts_content/Datasheets/RLP1-XXX-XXX.pdf +planar light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-100-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 2.54mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-100-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 2.54mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-150-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 3.81mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-150-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 3.81mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-200-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 5.08mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-250-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 6.35mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-250-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 6.35mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-300-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 7.62mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-300-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 7.62mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-450-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 11.43mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Dialight_515-1064F +https://www.dialightsignalsandcomponents.com/515-optopipe-light-pipe-trilevel-2-5mm-rnd-flat-diff-lens-press-fit/#tab-resources +lightpipe triple tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_LPF-C012303S +https://www.lumex.com/spec/LPF-C012303S.pdf +lightpipe dual tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_LPF-C013301S +https://www.lumex.com/spec/LPF-C013301S.pdf +lightpipe triple tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1275.x00x +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +spherical light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1276.1004 +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +spherical light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1276.2004 +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +planar light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lite-On_LTR-303ALS-01 +ambient light sensor, i2c interface, 6-pin chipled package, http://optoelectronics.liteon.com/upload/download/DS86-2013-0004/LTR-303ALS-01_DS_V1.pdf +ambient light sensor chipled +0 +6 +6 +OptoDevice +Luna_NSL-32 +Optoisolator with LED and photoresistor +optoisolator +0 +4 +4 +OptoDevice +Maxim_OLGA-14_3.3x5.6mm_P0.8mm +https://pdfserv.maximintegrated.com/land_patterns/90-0602.PDF +OLGA-14 OESIP-14 +0 +14 +14 +OptoDevice +ONSemi_QSE15x +3 Lead Plastic Package +ONSemi QSE158 QSE159 +0 +3 +3 +OptoDevice +OnSemi_CASE100AQ +OnSemi CASE 100AQ for QRE1113, see https://www.onsemi.com/pub/Collateral/QRE1113-D.PDF +reflective opto couple photo coupler +0 +4 +4 +OptoDevice +OnSemi_CASE100CY +OnSemi CASE 100CY, light-direction upwards, see http://www.onsemi.com/pub/Collateral/QRE1113-D.PDF +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Osram_BP104-SMD +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.2x2.2mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5989350/BP%20104%20FAS_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_BPW34S-SMD +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5488319/BPW%2034%20S_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_BPW82 +PhotoDiode, BPW82, RM2.54 +PhotoDiode BPW82 RM2.54 +0 +2 +2 +OptoDevice +Osram_DIL2_4.3x4.65mm_P5.08mm +PhotoDiode, plastic DIL, 4.3x4.65mm², RM5.08 +PhotoDiode plastic DIL RM5.08 +0 +2 +2 +OptoDevice +Osram_LPT80A +PhotoTransistor, sidelooker package, RM2.54 +PhotoTransistor sidelooker package RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH9x0x +package for Osram SFH9x0x series of reflective photo interrupters/couplers, see http://www.osram-os.com/Graphics/XPic6/00200860_0.pdf +reflective photo interrupter SMD +0 +6 +6 +OptoDevice +Osram_SFH205 +PhotoDiode, SFH205, RM2.54 +PhotoDiode SFH205 RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH225 +PhotoDiode, SFH225, RM2.54 +PhotoDiode SFH225 RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH2201 +PhotoDiode, Clear Silicone, Osram TOPLED, 4x5.09mm, area: 2.85x2.85mm, Orientation mark at cathode, https://dammedia.osram.info/media/resource/hires/osram-dam-25688470/SFH%202201%20A01_EN.pdf +PhotoDiode silicone +0 +6 +2 +OptoDevice +Osram_SFH2430 +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5467144/SFH%202430_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_SFH2440 +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5467146/SFH%202440_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_SFH3710 +Osram SHF3710 NPN phototransistor, SMD Chip LED package, 2.0 x 1.25mm, height 0.85mm, https://look.ams-osram.com/m/14a91a7e00106d22/original/SFH-3710.pdf +phototransistor npn +0 +2 +2 +OptoDevice +Osram_SMD-SmartDIL +PhotoDiode, plastic SMD SmatDIL +PhotoDiode plastic SMD SmatDIL +0 +3 +3 +OptoDevice +Panasonic_APV-AQY_SSOP-4_4.45x2.65mm_P1.27mm +https://www.panasonic-electric-works.com/cps/rde/xbcr/pew_eu_en/technical_information_photomos_en.pdf +SSOP4 APV21 AQY22 +0 +4 +4 +OptoDevice +PerkinElmer_VTL5C +Axial Vactrol (http://www.qsl.net/wa1ion/vactrol/vactrol.pdf) +vactrol +0 +4 +4 +OptoDevice +PerkinElmer_VTL5Cx2 +Axial Vactrol (http://www.qsl.net/wa1ion/vactrol/vactrol.pdf) +vactrol +0 +5 +5 +OptoDevice +R_LDR_4.9x4.2mm_P2.54mm_Vertical +Resistor, LDR 4.9x4.2mm +Resistor LDR4.9x4.2 +0 +2 +2 +OptoDevice +R_LDR_5.0x4.1mm_P3mm_Vertical +Resistor, LDR 5x4.1mm, see http://cdn-reichelt.de/documents/datenblatt/A500/A90xxxx%23PE.pdf +Resistor LDR5x4.1mm +0 +2 +2 +OptoDevice +R_LDR_5.1x4.3mm_P3.4mm_Vertical +Resistor, LDR 5.1x3.4mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR5.1x3.4mm +0 +2 +2 +OptoDevice +R_LDR_5.2x5.2mm_P3.5mm_Horizontal +Resistor, LDR 5.2x5.2, upright, see http://cdn-reichelt.de/documents/datenblatt/A500/M996011A.pdf +Resistor LDR5.2x5.2 +0 +2 +2 +OptoDevice +R_LDR_7x6mm_P5.1mm_Vertical +Resistor, LDR 7x6mm +Resistor LDR7x6mm +0 +2 +2 +OptoDevice +R_LDR_10x8.5mm_P7.6mm_Vertical +Resistor, LDR 10x8.5mm +Resistor LDR10.8.5mm +0 +2 +2 +OptoDevice +R_LDR_11x9.4mm_P8.2mm_Vertical +Resistor, LDR 11x9.4mm +Resistor LDR11x9.4mm +0 +2 +2 +OptoDevice +R_LDR_12x10.8mm_P9.0mm_Vertical +Resistor, LDR 12x10.8mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR12x10.8mm +0 +2 +2 +OptoDevice +R_LDR_D6.4mm_P3.4mm_Vertical +Resistor, LDR D=6.4mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDRD=6.4mm +0 +2 +2 +OptoDevice +R_LDR_D13.8mm_P9.0mm_Vertical +Resistor, diameter 13.8mm pitch 9mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR +0 +2 +2 +OptoDevice +R_LDR_D20mm_P17.5mm_Vertical +Resistor, LDR 20mm diameter, pin pitch 17.5mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR +0 +2 +2 +OptoDevice +Renesas_DFN-6_1.5x1.6mm_P0.5mm +DFN, 6 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-hodfn-6pin-l615x16?language=en&r=568376) +DFN NoLead +0 +6 +6 +OptoDevice +Rohm_RPR-0720 +Rohm DFN, 6 Pin (https://fscdn.rohm.com/en/products/databook/datasheet/opto/optical_sensor/photosensor/rpr-0720-e.pdf) +proximity sensor rohm +0 +6 +6 +OptoDevice +ST_VL53L0X +https://www.st.com/resource/en/datasheet/vl53l1x.pdf +laser-ranging sensor +0 +12 +12 +OptoDevice +Sharp_GP2S700HCP +Sharp GP2S700HCP, light-direction upwards, see: https://www.sharpsde.com/fileadmin/products/Optoelectronics/Isolation%20Devices/Specs_Photointerrupter/GP2S700HCP_03Oct05_DS_D3-A02201FEN.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Sharp_GP2Y0A41SK0F +http://www.sharp-world.com/products/device/lineup/data/pdf/datasheet/gp2y0a41sk_e.pdf +Distance Sensor Sharp +0 +2 +2 +OptoDevice +Sharp_IS471F +Sharp OPIC IS471F, see http://pdf.datasheetcatalog.com/datasheet/Sharp/mXvrzty.pdf +Sharp OPIC IS471F +0 +4 +4 +OptoDevice +Sharp_IS485 +Sharp OPIC, IS485, IS486, see http://microrato.ua.pt/main/Actividades/Estagios/Docs/IS485_6.pdf +Sharp OPIC IS485 IS486 +0 +3 +3 +OptoDevice +Siemens_SFH900 +package for Siemens SFH900 reflex photo interrupter/coupler/object detector, see https://www.batronix.com/pdf/sfh900.pdf +Siemens SFH900 reflex photo interrupter coupler object detector +0 +3 +3 +OptoDevice +Toshiba_TORX170_TORX173_TORX193_TORX194 +Fiberoptic Reciver, RX, Toshiba, Toslink, TORX170, TORX173, TORX193, TORX194 +Fiberoptic Reciver RX Toshiba Toslink TORX170 TORX173 TORX193 TORX194 +0 +6 +6 +OptoDevice +Toshiba_TOTX170_TOTX173_TOTX193_TOTX194 +Fiberoptic Reciver, RX, Toshiba, Toslink, TORX170, TORX173, TORX193, TORX194 +Fiberoptic Reciver RX Toshiba Toslink TORX170 TORX173 TORX193 TORX194 +0 +6 +6 +OptoDevice +Vishay_CAST-3Pin +IR Receiver Vishay TSOP-xxxx, CAST package, see https://www.vishay.com/docs/82493/tsop311.pdf +IRReceiverVishayTSOP-xxxx CAST +0 +3 +3 +OptoDevice +Vishay_CNY70 +package for Vishay CNY70 refective photo coupler/interrupter, https://www.vishay.com/docs/83751/cny70.pdf +Vishay CNY70 refective photo coupler +0 +4 +4 +OptoDevice +Vishay_MINICAST-3Pin +IR Receiver Vishay TSOP-xxxx, MINICAST package, see https://www.vishay.com/docs/82669/tsop32s40f.pdf +IR Receiver Vishay TSOP-xxxx MINICAST +0 +3 +3 +OptoDevice +Vishay_MINIMOLD-3Pin +IR Receiver Vishay TSOP-xxxx, MINIMOLD package, see https://www.vishay.com/docs/82742/tsop331.pdf +IR Receiver Vishay TSOP-xxxx MINIMOLD +0 +3 +3 +OptoDevice +Vishay_MOLD-3Pin +IR Receiver Vishay TSOP-xxxx, MOLD package, see https://www.vishay.com/docs/82669/tsop32s40f.pdf +IR Receiver Vishay TSOP-xxxx MOLD +0 +3 +3 +OptoDevice +Vishay_TCRT5000 +IR Reflective Optical Sensor with Transistor Output TCRT5000 https://www.vishay.com/docs/83760/tcrt5000.pdf +IR Reflective Optical Sensor with Transistor Output TCRT5000 Vishay Distance Sensor +0 +4 +4 +Oscillator +Oscillator_DIP-8 +Oscillator, DIP8,http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_DIP-8_LargePads +Oscillator, DIP8, Large Pads, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_DIP-14 +Oscillator, DIP14, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_DIP-14_LargePads +Oscillator, DIP14, Large Pads, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_OCXO_Morion_MV267 +http://www.morion.com.ru/catalog_pdf/MV267.pdf +OCXO +0 +5 +5 +Oscillator +Oscillator_OCXO_Morion_MV317 +https://www.morion-us.com/catalog_pdf/mv317.pdf +OCXO +0 +5 +5 +Oscillator +Oscillator_SMD_Abracon_ABLNO +https://abracon.com/Precisiontiming/ABLNO.pdf +VCXO XO +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASCO-4Pin_1.6x1.2mm +Miniature Crystal Clock Oscillator Abracon ASCO series, https://abracon.com/Oscillators/ASCO.pdf, 1.6x1.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASDMB-4Pin_2.5x2.0mm +Miniature Crystal Clock Oscillator Abracon ASDMB series, 2.5x2.0mm package, http://www.abracon.com/Oscillators/ASDMB.pdf +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm +Miniature Crystal Clock Oscillator Abracon ASE series, http://www.abracon.com/Oscillators/ASEseries.pdf, 3.2x2.5mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm_HandSoldering +Miniature Crystal Clock Oscillator Abracon ASE series, http://www.abracon.com/Oscillators/ASEseries.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASV-4Pin_7.0x5.1mm +Miniature Crystal Clock Oscillator Abracon ASV series, http://www.abracon.com/Oscillators/ASV.pdf, 7.0x5.1mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASV-4Pin_7.0x5.1mm_HandSoldering +Miniature Crystal Clock Oscillator Abracon ASV series, http://www.abracon.com/Oscillators/ASV.pdf, hand-soldering, 7.0x5.1mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Diodes_FN-4Pin_7.0x5.0mm +FN Series Crystal Clock Oscillator (XO) (https://www.diodes.com/assets/Datasheets/FN_3-3V.pdf) +Oscillator Crystal SMD SMT +0 +4 +4 +Oscillator +Oscillator_SMD_ECS_2520MV-xxx-xx-4Pin_2.5x2.0mm +Miniature Crystal Clock Oscillator ECS 2520MV series, https://www.ecsxtal.com/store/pdf/ECS-2520MV.pdf +Miniature Crystal Clock Oscillator ECS 2520MV series SMD SMT HCMOS +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO32-4Pin_3.2x2.5mm +Miniature Crystal Clock Oscillator EuroQuartz XO32 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO32.pdf, 3.2x2.5mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO32-4Pin_3.2x2.5mm_HandSoldering +Miniature Crystal Clock Oscillator EuroQuartz XO32 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO32.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm +Miniature Crystal Clock Oscillator EuroQuartz XO53 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO53.pdf, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm_HandSoldering +Miniature Crystal Clock Oscillator EuroQuartz XO53 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO53.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO91-4Pin_7.0x5.0mm +Miniature Crystal Clock Oscillator EuroQuartz XO91 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO91.pdf, 7.0x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO91-4Pin_7.0x5.0mm_HandSoldering +Miniature Crystal Clock Oscillator EuroQuartz XO91 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO91.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS1-6Pin_14.8x9.1mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S1-KHZ/LHZ, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 14.8x9.1mm^2 package +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_Fordahl_DFAS2-4Pin_7.3x5.1mm +Mminiature Crystal Clock Oscillator TXCO Fordahl DFA S2-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.3x5.1mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS2-4Pin_7.3x5.1mm_HandSoldering +Mminiature Crystal Clock Oscillator TXCO Fordahl DFA S2-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.3x5.1mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS3-4Pin_9.1x7.2mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S3-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 9.1x7.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS3-4Pin_9.1x7.2mm_HandSoldering +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S3-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 9.1x7.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS7-4Pin_19.9x12.9mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S7-K/L, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 19.9x12.9mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS7-4Pin_19.9x12.9mm_HandSoldering +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S7-K/L, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 19.9x12.9mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS11-4Pin_7.0x5.0mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S11-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.0x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS11-4Pin_7.0x5.0mm_HandSoldering +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S11-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS15-4Pin_5.0x3.2mm +Ultraminiature Crystal Clock Oscillator TXCO Fordahl DFA S15-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS15-4Pin_5.0x3.2mm_HandSoldering +Ultraminiature Crystal Clock Oscillator TXCO Fordahl DFA S15-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fox_FT5H_5.0x3.2mm +https://foxonline.com/wp-content/uploads/pdfs/T5HN_T5HV.pdf +Fox TXCO temperature compensated oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_IDT_JS6-6_5.0x3.2mm_P1.27mm +SMD Crystal Oscillator IDT https://www.idt.com/document/dst/xu-family-datasheet#page=15, 5.0x3.2mm +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_IDT_JU6-6_7.0x5.0mm_P2.54mm +SMD Crystal Oscillator IDT https://www.idt.com/document/dst/xu-family-datasheet#page=17, 7.0x5.0mm +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_IQD_IQXO70-4Pin_7.5x5.0mm +IQD Crystal Clock Oscillator IQXO-70, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.5x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_IQD_IQXO70-4Pin_7.5x5.0mm_HandSoldering +IQD Crystal Clock Oscillator IQXO-70, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.5x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Kyocera_2520-6Pin_2.5x2.0mm +https://global.kyocera.com/prdct/electro/product/pdf/kt2520_e.pdf +2.5mm 2mm SMD +0 +6 +6 +Oscillator +Oscillator_SMD_Kyocera_KC2520Z-4Pin_2.5x2.0mm +https://global.kyocera.com/prdct/electro/product/pdf/clock_z_xz_e.pdf +2.5mm 2mm SMD +0 +4 +4 +Oscillator +Oscillator_SMD_OCXO_ConnorWinfield_OH300 +http://www.conwin.com/datasheets/cx/cx282.pdf +OCXO +0 +7 +7 +Oscillator +Oscillator_SMD_SI570_SI571_HandSoldering +SI570, SI571, Programmable oscillator, Standard +SI570 SI571 Programmable oscillator Standard +0 +8 +8 +Oscillator +Oscillator_SMD_SI570_SI571_Standard +SI570, SI571, Programmable oscillator, Standard +SI570 SI571 Programmable oscillator Standard +0 +8 +8 +Oscillator +Oscillator_SMD_SeikoEpson_SG210-4Pin_2.5x2.0mm +SMD Crystal Oscillator Seiko Epson SG-210 https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-210SED, 2.5x2.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG210-4Pin_2.5x2.0mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-210 https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-210SED, hand-soldering, 2.5x2.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG3030CM +SMD Crystal Oscillator Seiko Epson SG-3030CM package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CA-4Pin_7.0x5.0mm +SMD Crystal Oscillator Seiko Epson SG-8002CA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 7.0x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CA-4Pin_7.0x5.0mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002CA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CE-4Pin_3.2x2.5mm +SMD Crystal Oscillator Seiko Epson SG-8002CE https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 3.2x2.5mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CE-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002CE https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JA-4Pin_14.0x8.7mm +SMD Crystal Oscillator Seiko Epson SG-8002JA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 14.0x8.7mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JA-4Pin_14.0x8.7mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002JA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 14.0x8.7mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JC-4Pin_10.5x5.0mm +SMD Crystal Oscillator Seiko Epson SG-8002JC https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 10.5x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JC-4Pin_10.5x5.0mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002JC https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 10.5x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002LB-4Pin_5.0x3.2mm +SMD Crystal Oscillator Seiko Epson SG-8002LB https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002LB-4Pin_5.0x3.2mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002LB https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_TG2520SMN-xxx-xxxxxx-4Pin_2.5x2.0mm +Miniature Crystal Clock Oscillator TG2520 series, https://support.epson.biz/td/api/doc_check.php?dl=app_TG2520SMN&lang=en +Miniature Crystal Clock Oscillator TG2520 series SMD SMT +0 +4 +4 +Oscillator +Oscillator_SMD_SiTime_PQFD-6L_3.2x2.5mm +3.2x2.5mm, 6-pin QFN (https://www.sitime.com/datasheet/SiT9365 page 13) +SMD SMT mems oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_SiTime_SiT9121-6Pin_3.2x2.5mm +3.2x2.5mm, 1-220MHz High Performance Differential Oscillator SiTime SiT9121 https://www.sitime.com/datasheet/SiT9121 +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_Silicon_Labs_LGA-6_2.5x3.2mm_P1.25mm +Silicon_Labs LGA, 6 Pin (https://www.silabs.com/documents/public/data-sheets/si512-13.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Silicon_Labs LGA NoLead +0 +6 +6 +Oscillator +Oscillator_SMD_TCXO_G158 +TCXO +TCXO +0 +4 +4 +Oscillator +Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm +Miniature Crystal Clock Oscillator TXC 7C series, http://www.txccorp.com/download/products/osc/7C_o.pdf, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm_HandSoldering +Miniature Crystal Clock Oscillator TXC 7C series, http://www.txccorp.com/download/products/osc/7C_o.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SeikoEpson_SG-8002DB +14-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +Oscillator +Oscillator_SeikoEpson_SG-8002DC +8-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +PCM_Espressif +ESP32-C3-DevKitC-02 + + +0 +30 +30 +PCM_Espressif +ESP32-C3-DevKitM-1 + + +0 +30 +30 +PCM_Espressif +ESP32-C3-MINI-1 +ESP32-C3-MINI-1: https://www.espressif.com/sites/default/files/documentation/esp32-c3-mini-1_datasheet_en.pdf +ESP32-C3 +0 +61 +53 +PCM_Espressif +ESP32-C3-MINI-1U +ESP32-C3-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-c3-mini-1_datasheet_en.pdf +ESP32-C3 +0 +61 +53 +PCM_Espressif +ESP32-C3-MINI-1_HandSoldering +ESP32-C3-MINI-1: https://www.espressif.com/sites/default/files/documentation/esp32-c3-mini-1_datasheet_en.pdf +ESP32-C3 +0 +61 +53 +PCM_Espressif +ESP32-C3-WROOM-02 +ESP32-C3-WROOM-02: https://www.espressif.com/sites/default/files/documentation/esp32-c3-wroom-02_datasheet_en.pdf +ESP32-C3 +0 +27 +19 +PCM_Espressif +ESP32-C3-WROOM-02U +ESP32-C3-WROOM-02: https://www.espressif.com/sites/default/files/documentation/esp32-c3-wroom-02_datasheet_en.pdf +ESP32-C3 +0 +27 +19 +PCM_Espressif +ESP32-C6-DevKitC-1 +ESP32-C6 general-purpose development board, based on ESP32-2-WROOM-1,It has all the ESP32-C6 pins exposed and is easy to connect and use. +ESP32-C6 +0 +32 +32 +PCM_Espressif +ESP32-C6-DevKitM-1 +ESP32-C6 general-purpose development board, based on ESP32-2-WROOM-1,It has all the ESP32-C6 pins exposed and is easy to connect and use. +ESP32-C6 +0 +30 +30 +PCM_Espressif +ESP32-C6-MINI-1 +ESP32-C6-MINI-1: https://www.espressif.com/sites/default/files/documentation/esp32-c6-mini-1_datasheet_en.pdf +ESP32-C6 +0 +61 +53 +PCM_Espressif +ESP32-C6-MINI-1U +ESP32-C6-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-c6-mini-1_datasheet_en.pdf +ESP32-C6 +0 +61 +53 +PCM_Espressif +ESP32-C6-WROOM-1 +ESP32-C6-WROOM-1: https://www.espressif.com/sites/default/files/documentation/esp32-c6-wroom-1_datasheet_en.pdf +esp32-c6 +0 +37 +29 +PCM_Espressif +ESP32-C6-WROOM-1U +ESP32-C6-WROOM-1U: https://www.espressif.com/sites/default/files/documentation/esp32-c6-wroom-1_wroom-1u_datasheet_en.pdf +esp32-c6 +0 +37 +29 +PCM_Espressif +ESP32-DevKitC +ESP32-DevKitC: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/hw-reference/esp32/get-started-devkitc.html +ESP32 +0 +38 +38 +PCM_Espressif +ESP32-H2-MINI-1 +ESP32-H2-MINI-1: https://www.espressif.com/sites/default/files/documentation/esp32-h2-mini-1_mini-1u_datasheet_en.pdf +ESP32-H2 +0 +61 +53 +PCM_Espressif +ESP32-MINI-1 +ESP32-MINI-1: https://www.espressif.com/sites/default/files/documentation/esp32-mini-1_datasheet_en.pdf +ESP32-MINI-1 +0 +63 +55 +PCM_Espressif +ESP32-MINI-1U +ESP32-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-mini-1_datasheet_en.pdf +ESP32-MINI-1U +0 +63 +55 +PCM_Espressif +ESP32-PICO-MINI-02 +ESP32-PICO-MINI-02: https://www.espressif.com/sites/default/files/documentation/esp32-pico-mini-02_datasheet_en.pdf +ESP32-PICO-MINI-02 +0 +61 +53 +PCM_Espressif +ESP32-PICO-MINI-02U +ESP32-PICO-MINI-02U: https://www.espressif.com/sites/default/files/documentation/esp32-pico-mini-02_datasheet_en.pdf +ESP32-PICO-MINI-02U +0 +61 +53 +PCM_Espressif +ESP32-PICO-MINI-02_HandSoldering +ESP32-PICO-MINI-02: https://www.espressif.com/sites/default/files/documentation/esp32-pico-mini-02_datasheet_en.pdf +ESP32-PICO-MINI-02 +0 +61 +53 +PCM_Espressif +ESP32-S2-DevKitC-1 +ESP32-S2 general-purpose development board, based on ESP32-S2-SOLO or ESP32-S2-SOLO-U,It has all the ESP32-S2 pins exposed and is easy to connect and use. +ESP32-S2 +0 +44 +44 +PCM_Espressif +ESP32-S2-DevKitM +ESP32-S2 general-purpose development board +ESP32-S2 +0 +42 +42 +PCM_Espressif +ESP32-S2-MINI-1 +ESP32-S2-MINI-1 and ESP32-S2-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-s2-mini-1_esp32-s2-mini-1u_datasheet_en.pdf +ESP32-S2 +0 +73 +65 +PCM_Espressif +ESP32-S2-MINI-1U +ESP32-S2-MINI-1 and ESP32-S2-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-s2-mini-1_esp32-s2-mini-1u_datasheet_en.pdf +ESP32-S2 +0 +73 +65 +PCM_Espressif +ESP32-S2-MINI-1_HandSoldering +ESP32-S2-MINI-1 and ESP32-S2-MINI-1U: https://www.espressif.com/sites/default/files/documentation/esp32-s2-mini-1_esp32-s2-mini-1u_datasheet_en.pdf +ESP32-S2 Hand Soldering +0 +73 +65 +PCM_Espressif +ESP32-S2-SOLO +ESP32-S2-SOLO https://www.espressif.com/sites/default/files/documentation/esp32-s2-solo_esp32-s2-solo-u_datasheet_en.pdf +esp32-s2 module +0 +49 +41 +PCM_Espressif +ESP32-S2-SOLO-2U +ESP32-S2-SOLO-2U https://www.espressif.com/sites/default/files/documentation/esp32-s2-solo-2_esp32-s2-solo-2u_datasheet_en.pdf +esp32-s2 module +0 +49 +41 +PCM_Espressif +ESP32-S2-Saola-1 +Espressif ESP32-S2-Saola-1 Development Kit: https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-saola-1-v1.2.html +esp32-s2 devkit +0 +42 +42 +PCM_Espressif +ESP32-S2-WROOM +ESP32-S2-WROOM and ESP32-S2-WROOM-I: https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf +ESP32-S2 +0 +51 +43 +PCM_Espressif +ESP32-S2-WROVER +ESP32-S2-WROVER and ESP32-S2-WROVER-I: https://www.espressif.com/sites/default/files/documentation/esp32-s2-wrover_esp32-s2-wrover-i_datasheet_en.pdf +ESP32-S2 +0 +55 +43 +PCM_Espressif +ESP32-S3-DevKitC +ESP32-S3 general-purpose development board, based on ESP32-S3-WROOM-1 or ESP32-S3-WROOM-1U,It has all the ESP32-S3 pins exposed and is easy to connect and use. +ESP32-S3 +0 +44 +44 +PCM_Espressif +ESP32-S3-MINI-1 +ESP32-S3-MINI-1 +esp32-s3 +0 +73 +65 +PCM_Espressif +ESP32-S3-MINI-1U +ESP32-S3-MINI-1 and ESP32-S3-MINI-1U +esp32-s3 +0 +73 +65 +PCM_Espressif +ESP32-S3-WROOM-1 +ESP32-S3-WROOM-1 is a powerful, generic Wi-Fi + Bluetooth LE MCU modules that have Dual core CPU , a rich set of peripherals, provides acceleration for neural network computing and signal processing workloads. They are an ideal choice for a wide variety of application scenarios related to AI + Internet of Things (AIoT), such as wake word detection and speech commands recognition , face detection and recognition, smart home, smart appliance, smart control panel, smart speaker etc. +esp32-s3 +0 +51 +41 +PCM_Espressif +ESP32-S3-WROOM-1U +ESP32-S3-WROOM-1 is a powerful, generic Wi-Fi + Bluetooth LE MCU modules that have Dual core CPU , a rich set of peripherals, provides acceleration for neural network computing and signal processing workloads. They are an ideal choice for a wide variety of application scenarios related to AI + Internet of Things (AIoT), such as wake word detection and speech commands recognition , face detection and recognition, smart home, smart appliance, smart control panel, smart speaker etc. +esp32-s3 +0 +49 +41 +PCM_Espressif +ESP32-S3-WROOM-2 +ESP32-S3-WROOM-2 is a powerful, generic Wi-Fi + Bluetooth LE MCU modules that have Dual core CPU , a rich set of peripherals, provides acceleration for neural network computing and signal processing workloads. They are an ideal choice for a wide variety of application scenarios related to AI + Internet of Things (AIoT), such as wake word detection and speech commands recognition , face detection and recognition, smart home, smart appliance, smart control panel, smart speaker etc. +esp32-s3 +0 +51 +41 +PCM_Espressif +ESP32-WROOM-32E +ESP32-WROOM-32E and ESP32-WROOM-32UE: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +ESP32 +0 +50 +39 +PCM_Espressif +ESP32-WROOM-32UE +ESP32-WROOM-32E and ESP32-WROOM-32UE: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +ESP32 +0 +47 +39 +PCM_Espressif +ESP32-WROOM-DA +ESP32-WROOM-DA: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-da_datasheet_en.pdf +ESP32 Dual Antenna DA +0 +49 +41 +PCM_Espressif +ESP32-WROVER-E +ESP32-WROVER-E: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +esp32 module +0 +47 +39 +PCM_Espressif +ESP32-WROVER-E_ThermalVias +ESP32-WROVER-E: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +esp32 module thermal vias +0 +59 +39 +PCM_Espressif +ESP8685-WROOM-06 +ESP32-WROOM-06: https://www.espressif.com/sites/default/files/documentation/esp8685-wroom-06_datasheet_en.pdf +esp32 module +0 +31 +22 +PCM_Espressif +QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_BGA +Alliance_TFBGA-54_8x8mm_Layout9x9_P0.8mm +Alliance TFBGA 54 pins, 8x8mm, 54 Ball, 9x9 Layout, 0.8mm Pitch, https://www.alliancememory.com/wp-content/uploads/pdf/dram/Alliance_Memory_64M-AS4C4M16SA-CI_v5.0_October_2018.pdf#page=54 +BGA 54 0.8 +0 +54 +54 +Package_BGA +Analog_BGA-28_4.0x6.25mm_Layout4x7_P0.8mm_Ball0.45mm_Pad0.4 +Analog BGA-28, 0.4mm pad, 4.0x6.25mm, 28 Ball, 4x7 Layout, 0.8mm Pitch, https://www.analog.com/media/en/technical-documentation/data-sheets/8063fa.pdf +BGA 28 0.8 +0 +28 +28 +Package_BGA +Analog_BGA-49_6.25x6.25mm_Layout7x7_P0.8mm_Ball0.5mm_Pad0.4mm +Analog BGA-49, 6.25x6.25mm, 49 Ball, 7x7 Layout, 0.8mm Pitch, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081600_0_bga49.pdf https://www.analog.com/media/en/technical-documentation/product-information/assembly-considerations-for-umodule-bga-lga-package.pdf +BGA 49 0.8 +0 +49 +49 +Package_BGA +Analog_BGA-77_9.0x15.0mm_Layout7x11_P1.27mm_Ball0.63mm +Analog Devices BGA-77, 0.63mm pad, 9x15mm, 77 Ball, 7x11 Layout, 1.27mm Pitch, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081964_B_bga77.pdf +BGA 77 1.27 LTC Dwg 05-08-1964 Rev. B +0 +77 +77 +Package_BGA +Analog_BGA-209_9.5x16mm_Layout11x19_P0.8mm_Ball0.5mm_Pad0.4mm +Analog BGA-209 (Reference LTC DWG#05-08-1561 Rev B), 9.5x16.0mm, 209 Ball, 11x19 Layout, 0.8mm Pitch, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081561_bga209.pdf +BGA 209 0.8 +0 +209 +209 +Package_BGA +BGA-9_1.6x1.6mm_Layout3x3_P0.5mm +BGA-9, http://www.ti.com/lit/ds/symlink/bq27421-g1.pdf +BGA-9 +0 +9 +9 +Package_BGA +BGA-16_1.92x1.92mm_Layout4x4_P0.5mm +BGA-16, http://www.st.com/content/ccc/resource/technical/document/datasheet/group2/bc/cd/62/9e/8f/30/47/69/CD00151267/files/CD00151267.pdf/jcr:content/translations/en.CD00151267.pdf +BGA-16 +0 +16 +16 +Package_BGA +BGA-25_6.35x6.35mm_Layout5x5_P1.27mm +BGA-25, http://cds.linear.com/docs/en/datasheet/4624fc.pdf +BGA-25 uModule +0 +25 +25 +Package_BGA +BGA-36_3.396x3.466mm_Layout6x6_P0.4mm_Ball0.25mm_Pad0.2mm_NSMD +Altera V36, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00486-00.pdf +Altera BGA-36 V36 VBGA +0 +36 +36 +Package_BGA +BGA-48_8.0x9.0mm_Layout6x8_P0.8mm +BGA-48 - pitch 0.8 mm +BGA-48 +0 +48 +48 +Package_BGA +BGA-64_9.0x9.0mm_Layout10x10_P0.8mm +BGA-64, 10x10 raster, 9x9mm package, pitch 0.8mm +BGA-64 +0 +64 +64 +Package_BGA +BGA-68_5.0x5.0mm_Layout9x9_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-68, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00344-01.pdf +Altera BGA-68 M68 MBGA +0 +68 +68 +Package_BGA +BGA-81_4.496x4.377mm_Layout9x9_P0.4mm_Ball0.25mm_Pad0.2mm_NSMD +Altera V81, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00478-01.pdf +Altera VBGA V81 BGA-81 +0 +81 +81 +Package_BGA +BGA-90_8.0x13.0mm_Layout2x3x15_P0.8mm +BGA-90, http://www.issi.com/WW/pdf/42-45S32800J.pdf +BGA-90 +0 +90 +90 +Package_BGA +BGA-96_9.0x13.0mm_Layout2x3x16_P0.8mm +BGA-96, http://www.mouser.com/ds/2/198/43-46TR16640B-81280BL-706483.pdf +BGA-96 +0 +96 +96 +Package_BGA +BGA-100_6.0x6.0mm_Layout11x11_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-100, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00345-01.pdf +Altera BGA-100 M100 MBGA +0 +100 +100 +Package_BGA +BGA-100_11.0x11.0mm_Layout10x10_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD +BGA-100, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00223-02.pdf +BGA-100 +0 +100 +100 +Package_BGA +BGA-121_9.0x9.0mm_Layout11x11_P0.8mm_Ball0.4mm_Pad0.35mm_NSMD +121-ball, 0.8mm BGA (based on http://www.latticesemi.com/view_document?document_id=213) +BGA 0.8mm 9mm 121 +0 +121 +121 +Package_BGA +BGA-121_12.0x12.0mm_Layout11x11_P1.0mm +BGA-121, http://cds.linear.com/docs/en/packaging/05081891_A_bga121.pdf +BGA-121 +0 +121 +121 +Package_BGA +BGA-132_12x18mm_Layout11x17_P1.0mm +BGA-132 11x17 12x18mm 1.0pitch +BGA-132 +0 +132 +132 +Package_BGA +BGA-144_7.0x7.0mm_Layout13x13_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-144, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00346-00.pdf +Altera BGA-144 M144 MBGA +0 +144 +144 +Package_BGA +BGA-144_13.0x13.0mm_Layout12x12_P1.0mm +BGA-144, http://www.topline.tv/drawings/pdf/BGA%201,0mm%20pitch/LBGA144T1.0-DC128.pdf +BGA-144 +0 +144 +144 +Package_BGA +BGA-152_14x18mm_Layout13x17_P0.5mm +BGA-152_14x18mm_Layout13x17_P0.5mm +VBGA-152 +0 +152 +152 +Package_BGA +BGA-153_8.0x8.0mm_Layout15x15_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-153, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00471-00.pdf +Altera BGA-153 M153 MBGA +0 +153 +153 +Package_BGA +BGA-169_11.0x11.0mm_Layout13x13_P0.8mm_Ball0.5mm_Pad0.4mm_NSMD +Altera U169, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00470-01.pdf +Altera UBGA U169 BGA-169 +0 +169 +169 +Package_BGA +BGA-200_10.0x14.5mm_Layout12x22_P0.80x0.65mm +BGA-200, 10.0x14.5mm, 200 Ball, 12x22 Layout, 0.8x0.65mm Pitch, http://www.issi.com/WW/pdf/43-46LQ32256A-AL.pdf +BGA 200 0.8x0.65 +0 +200 +200 +Package_BGA +BGA-256_11.0x11.0mm_Layout20x20_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-256, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00348-01.pdf +Altera BGA-256 M256 MBGA +0 +256 +256 +Package_BGA +BGA-256_14.0x14.0mm_Layout16x16_P0.8mm_Ball0.45mm_Pad0.32mm_NSMD +BGA-256, dimensions: https://www.xilinx.com/support/documentation/package_specs/ft256.pdf, design rules: https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf +BGA-256 +0 +256 +256 +Package_BGA +BGA-256_17.0x17.0mm_Layout16x16_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD +BGA-256, dimensions: https://www.xilinx.com/support/documentation/package_specs/ft256.pdf, design rules: https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf +BGA-256 +0 +256 +256 +Package_BGA +BGA-324_15.0x15.0mm_Layout18x18_P0.8mm_Ball0.5mm_Pad0.4mm_NSMD +Altera U324, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00474-02.pdf +Altera UBGA U324 BGA-324 +0 +324 +324 +Package_BGA +BGA-324_15.0x15.0mm_Layout18x18_P0.8mm_Ball0.45mm_Pad0.4mm_NSMD +BGA-324, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, https://colognechip.com/docs/ds1001-gatemate1-datasheet-2022-05.pdf#page=92 +BGA 324 0.8 GateMate FPGA +0 +324 +324 +Package_BGA +BGA-324_19.0x19.0mm_Layout18x18_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD +BGA-324, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00233-03.pdf +BGA-324 +0 +324 +324 +Package_BGA +BGA-352_35.0x35.0mm_Layout26x26_P1.27mm +BGA-352, https://www.fujitsu.com/downloads/MICRO/fma/pdfmcu/b352p05.pdf +BGA-352 +0 +352 +352 +Package_BGA +BGA-400_21.0x21.0mm_Layout20x20_P1.0mm +BGA-400, https://www.xilinx.com/support/documentation/package_specs/fg400.pdf +BGA-400 +0 +400 +400 +Package_BGA +BGA-484_23.0x23.0mm_Layout22x22_P1.0mm +BGA-484, https://www.xilinx.com/support/documentation/package_specs/fg484.pdf +BGA-484 +0 +484 +484 +Package_BGA +BGA-529_19x19mm_Layout23x23_P0.8mm +BGA-529, NSMD, 19.0x19.0mm, 529 Ball, 23x23 Layout, 0.8mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 529 0.8 529-ball FBGA +0 +529 +529 +Package_BGA +BGA-624_21.0x21.0mm_Layout25x25_P0.8mm +BGA-624, 21.0x21.0mm, 624 Ball, 25x25 Layout, 0.8mm Pitch, https://www.nxp.com/docs/en/package-information/SOT1529-1.pdf +BGA 624 0.8 +0 +624 +624 +Package_BGA +BGA-625_21.0x21.0mm_Layout25x25_P0.8mm +BGA-625 +BGA-625 +0 +625 +625 +Package_BGA +BGA-672_27.0x27.0mm_Layout26x26_P1.0mm_Ball0.6mm_Pad0.5mm_NSMD +Altera BGA-672, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00472-00.pdf +Altera BGA-672 F672 FBGA +0 +672 +672 +Package_BGA +BGA-676_27.0x27.0mm_Layout26x26_P1.0mm_Ball0.6mm_Pad0.5mm_NSMD +XILINX BGA-676, https://www.xilinx.com/support/documentation/package_specs/fg676.pdf +XILINX BGA-676 FG676/FGG676 +0 +676 +676 +Package_BGA +BGA-1023_33.0x33.0mm_Layout32x32_P1.0mm +BGA-1023 +BGA-1023 +0 +1023 +1023 +Package_BGA +BGA-1156_35.0x35.0mm_Layout34x34_P1.0mm +BGA-1156 +BGA-1156 +0 +1156 +1156 +Package_BGA +BGA-1295_37.5x37.5mm_Layout36x36_P1.0mm +BGA-1295 +BGA-1295 +0 +1295 +1295 +Package_BGA +EPC_BGA-4_0.9x0.9mm_Layout2x2_P0.45mm +EPC BGA-4, 0.9x09mm, Pitch 0.4mm, https://epc-co.com/epc/Portals/0/epc/documents/datasheets/EPC2035_datasheet.pdf +EPC BGA-4 +0 +8 +4 +Package_BGA +FB-BGA-484_23.0x23.0mm_Layout22x22_P1.0mm +Xilinx FB-484, https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf +FB-BGA-484 +0 +484 +484 +Package_BGA +FBGA-78_7.5x11mm_Layout2x3x13_P0.8mm +FBGA-78, https://www.skhynix.com/product/filedata/fileDownload.do?seq=7687 +FBGA-78 +0 +78 +78 +Package_BGA +Fujitsu_WLP-15_2.28x3.092mm_Layout3x5_P0.4mm +WLP-15, 3x5 raster, 2.28x3.092mm package, pitch 0.4mm; http://www.fujitsu.com/global/documents/products/devices/semiconductor/fram/lineup/MB85RS1MT-DS501-00022-7v0-E.pdf +BGA 8 0.4 +0 +8 +8 +Package_BGA +Infineon_LFBGA-292_17x17mm_Layout20x20_P0.8mm_Ball0.5mm_Pad0.35 +Infineon LFBGA-292, 0.35mm pad, 17.0x17.0mm, 292 Ball, 20x20 Layout, 0.8mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-LFBGA/PG-LFBGA-292-11/ +BGA 292 0.8 +0 +292 +292 +Package_BGA +LFBGA-100_10x10mm_Layout10x10_P0.8mm +LFBGA-100, 10.0x10.0mm, 100 Ball, 10x10 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/stm32f103tb.pdf#page=87 +BGA 100 0.8 +0 +100 +100 +Package_BGA +LFBGA-144_10x10mm_Layout12x12_P0.8mm +LFBGA-144, 10.0x10.0mm, 144 Ball, 12x12 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/stm32f103ze.pdf#page=114 +BGA 144 0.8 +0 +144 +144 +Package_BGA +LFBGA-169_16x12mm_Layout28x14_P0.5mm_Ball0.3_Pad0.3mm_NSMD +https://4donline.ihs.com/images/VipMasterIC/IC/SGST/SGSTS20279/SGSTS20279-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0 +eMMC Flash LFBGA169 +0 +169 +169 +Package_BGA +LFBGA-289_14x14mm_Layout17x17_P0.8mm +LFBGA-289, 14.0x14.0mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp131c.pdf +BGA 289 0.8 +0 +289 +289 +Package_BGA +LFBGA-400_16x16mm_Layout20x20_P0.8mm +LFBGA-400, NSMD, 16.0x16.0mm, 400 Ball, 20x20 Layout, 0.8mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 400 0.8 400-ball FBGA +0 +400 +400 +Package_BGA +LFBGA-484_18x18mm_Layout22x22_P0.8mm +LFBGA-484, NSMD, 18.0x18.0mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 484 0.8 484-ball LFBGA +0 +484 +484 +Package_BGA +Lattice_caBGA-381_17.0x17.0mm_Layout20x20_P0.8mm_Ball0.4mm_Pad0.4mm +Lattice caBGA-381, ECP5 FPGAs, 17.0x17.0mm, 381 Ball, 20x20 Layout, 0.8mm Pitch, http://www.latticesemi.com/view_document?document_id=213 +BGA 381 0.8 +0 +381 +381 +Package_BGA +Lattice_caBGA-381_17.0x17.0mm_Layout20x20_P0.8mm_Ball0.4mm_Pad0.4mm_NSMD +Lattice caBGA-381 footprint for ECP5 FPGAs, based on http://www.latticesemi.com/view_document?document_id=213 +BGA 381 0.8 +0 +381 +381 +Package_BGA +Lattice_caBGA-381_17.0x17.0mm_Layout20x20_P0.8mm_Ball0.4mm_Pad0.6mm_SMD +Lattice caBGA-381, ECP5 FPGAs, 17.0x17.0mm, 381 Ball, 20x20 Layout, 0.8mm Pitch, http://www.latticesemi.com/view_document?document_id=213 +BGA 381 0.8 +0 +381 +381 +Package_BGA +Lattice_caBGA-756_27.0x27.0mm_Layout32x32_P0.8mm +Lattice caBGA-756, ECP5 FPGAs, 27.0x27.0mm, 756 Ball, 32x32 Layout, 0.8mm Pitch, http://www.latticesemi.com/view_document?document_id=213 +BGA 756 0.8 +0 +756 +756 +Package_BGA +Linear_BGA-133_15.0x15.0mm_Layout12x12_P1.27mm +Analog Devices (Linear Tech), 133-pin BGA uModule, 15.0x15.0x4.92mm, https://www.analog.com/media/en/technical-documentation/data-sheets/4637fc.pdf +133 pin bga +0 +134 +134 +Package_BGA +MAPBGA_9x9mm_Layout17x17_P0.5mm +MAPBGA 9x9x1.11 PKG, 9.0x9.0mm, 272 Ball, 17x17 Layout, 0.5mm Pitch, https://www.nxp.com/docs/en/package-information/98ASA00869D.pdf#page=1 +BGA 272 0.5 +0 +272 +272 +Package_BGA +MAPBGA_14x14mm_Layout17x17_P0.8mm +MAPBGA 14x14x1.18 PKG, 14.0x14.0mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, https://www.nxp.com/docs/en/package-information/98ASA00855D.pdf#page=1 +BGA 289 0.8 +0 +289 +289 +Package_BGA +Maxim_WLP-9_1.595x1.415_Layout3x3_P0.4mm_Ball0.27mm_Pad0.25mm_NSMD +Maxim_WLP-9 W91C1+1 https://pdfserv.maximintegrated.com/package_dwgs/21-0459.PDF +Maxim_WLP-9 +0 +9 +9 +Package_BGA +Maxim_WLP-12 +Maxim_WLP-12 W121B2+1 http://pdfserv.maximintegrated.com/package_dwgs/21-0009.PDF +Maxim_WLP-12 +0 +12 +12 +Package_BGA +Maxim_WLP-12_1.608x2.008mm_Layout4x3_P0.4mm_Ball0.27mm_Pad0.25mm_NSMD +Maxim WLP-12, W121H2+1, 2.008x1.608mm, 12 Ball, 4x3 Layout, 0.4mm Pitch, https://pdfserv.maximintegrated.com/package_dwgs/21-100302.PDF, https://pdfserv.maximintegrated.com/package_dwgs/21-100302.PDF +BGA 12 0.4 +0 +12 +12 +Package_BGA +Microchip_TFBGA-196_11x11mm_Layout14x14_P0.75mm_SMD +TFBGA-196, 11.0x11.0mm, 196 Ball, 14x14 Layout, 0.75mm Pitch, http://ww1.microchip.com/downloads/en/DeviceDoc/SAMA5D2-Series-Data-Sheet-DS60001476C.pdf#page=2956 +BGA 196 0.75 +0 +196 +196 +Package_BGA +Micron_FBGA-78_7.5x10.6mm_Layout9x13_P0.8mm +FBGA-78, 7.5x10.6mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=24 +BGA 78 0.8 +0 +78 +78 +Package_BGA +Micron_FBGA-78_8x10.5mm_Layout9x13_P0.8mm +FBGA-78, 8.0x10.5mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=25 +BGA 78 0.8 +0 +78 +78 +Package_BGA +Micron_FBGA-78_9x10.5mm_Layout9x13_P0.8mm +FBGA-78, 9.0x10.5mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=23 +BGA 78 0.8 +0 +78 +78 +Package_BGA +Micron_FBGA-96_7.5x13.5mm_Layout9x16_P0.8mm +FBGA-96, 7.5x13.5mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=27 +BGA 96 0.8 +0 +96 +96 +Package_BGA +Micron_FBGA-96_8x14mm_Layout9x16_P0.8mm +FBGA-96, 8.0x14.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=28 +BGA 96 0.8 +0 +96 +96 +Package_BGA +Micron_FBGA-96_9x14mm_Layout9x16_P0.8mm +FBGA-96, 9.0x14.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=26 +BGA 96 0.8 +0 +96 +96 +Package_BGA +NXP_VFBGA-42_2.6x3mm_Layout6x7_P0.4mm_Ball0.25mm_Pad0.24mm +NXP VFBGA-42, 2.6x3.0mm, 42 Ball, 6x7 Layout, 0.4mm Pitch, https://www.nxp.com/docs/en/package-information/SOT1963-1.pdf +BGA 42 0.4 +0 +42 +42 +Package_BGA +ST_LFBGA-354_16x16mm_Layout19x19_P0.8mm +ST LFBGA-354, 16.0x16.0mm, 354 Ball, 19x19 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 354 0.8 +0 +354 +354 +Package_BGA +ST_LFBGA-448_18x18mm_Layout22x22_P0.8mm +ST LFBGA-448, 18.0x18.0mm, 448 Ball, 22x22 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 448 0.8 +0 +448 +448 +Package_BGA +ST_TFBGA-169_7x7mm_Layout13x13_P0.5mm +ST TFBGA-169, 7.0x7.0mm, 169 Ball, 13x13 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32u595aj.pdf +BGA 169 0.5 +0 +169 +169 +Package_BGA +ST_TFBGA-225_13x13mm_Layout15x15_P0.8mm +ST TFBGA-225, 13.0x13.0mm, 225 Ball, 15x15 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32h7b3ri.pdf +BGA 225 0.8 +0 +225 +225 +Package_BGA +ST_TFBGA-257_10x10mm_Layout19x19_P0.5mmP0.65mm +ST TFBGA-257, 10.0x10.0mm, 257 Ball, 19x19 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 257 0.5 +0 +257 +257 +Package_BGA +ST_TFBGA-320_11x11mm_Layout21x21_P0.5mm +ST TFBGA-320, 11.0x11.0mm, 320 Ball, 21x21 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp131c.pdf +BGA 320 0.5 +0 +320 +320 +Package_BGA +ST_TFBGA-361_12x12mm_Layout23x23_P0.5mmP0.65mm +ST TFBGA-361, 12.0x12.0mm, 361 Ball, 23x23 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 361 0.5 +0 +361 +361 +Package_BGA +ST_UFBGA-59_5x5mm_Layout8x8_P0.5mm +ST UFBGA-59, 5.0x5.0mm, 59 Ball, 8x8 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32wba55ug.pdf +BGA 59 0.5 +0 +59 +59 +Package_BGA +ST_UFBGA-73_5x5mm_Layout9x9_P0.5mm +ST UFBGA-73, 5.0x5.0mm, 73 Ball, 9x9 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32wl54jc.pdf +BGA 73 0.5 +0 +73 +73 +Package_BGA +ST_UFBGA-81_5x5mm_Layout9x9_P0.5mm +ST UFBGA-81, 5.0x5.0mm, 81 Ball, 9x9 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32u073mb.pdf +BGA 81 0.5 +0 +81 +81 +Package_BGA +ST_UFBGA-121_6x6mm_Layout11x11_P0.5mm +ST UFBGA-121, 6.0x6.0mm, 121 Ball, 11x11 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32g473pb.pdf +BGA 121 0.5 +0 +121 +121 +Package_BGA +ST_UFBGA-129_7x7mm_Layout13x13_P0.5mm +ST UFBGA-129, 7.0x7.0mm, 129 Ball, 13x13 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb55vc.pdf +BGA 129 0.5 +0 +129 +129 +Package_BGA +ST_uTFBGA-36_3.6x3.6mm_Layout6x6_P0.5mm +ST uTFBGA-36, 0.25mm pad, 3.6x3.6mm, 36 Ball, 6x6 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stulpi01a.pdf +BGA 36 0.5 +0 +36 +36 +Package_BGA +TFBGA-49_3x3mm_Layout7x7_P0.4mm +TFBGA-49, NSMD, 3.0x3.0mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 49 0.4 49-ball FBGA +0 +49 +49 +Package_BGA +TFBGA-64_5x5mm_Layout8x8_P0.5mm +TFBGA-64, 5.0x5.0mm, 64 Ball, 8x8 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f100v8.pdf#page=83 +BGA 64 0.5 +0 +64 +64 +Package_BGA +TFBGA-81_5x5mm_Layout8x8_P0.5mm +TFBGA-81, NSMD, 5.0x5.0mm, 81 Ball, 9x9 Layout, 0.5mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 81 0.5 81-ball FBGA +0 +81 +81 +Package_BGA +TFBGA-100_5.5x5.5mm_Layout10x10_P0.5mm +TFBGA-100, NSMD, 5.5x5.5mm, 100 Ball, 10x10 Layout, 0.5mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 100 0.5 100-ball FBGA +0 +100 +100 +Package_BGA +TFBGA-100_8x8mm_Layout10x10_P0.8mm +TFBGA-100, 8.0x8.0mm, 100 Ball, 10x10 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/stm32f746zg.pdf#page=199 +BGA 100 0.8 +0 +100 +100 +Package_BGA +TFBGA-100_9.0x9.0mm_Layout10x10_P0.8mm +TFBGA-100, 10x10, 9x9mm package, pitch 0.8mm +TFBGA-100 +0 +100 +100 +Package_BGA +TFBGA-121_10x10mm_Layout11x11_P0.8mm +TFBGA-121, 10.0x10.0mm, 121 Ball, 11x11 Layout, 0.8mm Pitch, http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#p495 +BGA 121 0.8 +0 +121 +121 +Package_BGA +TFBGA-169_9x9mm_Layout13x13_P0.65mm +TFBGA-169, NSMD, 9.0x9.0mm, 169 Ball, 13x13 Layout, 0.65mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 169 0.65 169-ball FBGA +0 +169 +169 +Package_BGA +TFBGA-216_13x13mm_Layout15x15_P0.8mm +TFBGA-216, 13.0x13.0mm, 216 Ball, 15x15 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/stm32f746zg.pdf#page=219 +BGA 216 0.8 +0 +216 +216 +Package_BGA +TFBGA-225_10x10mm_Layout15x15_P0.65mm +TFBGA-225, NSMD, 10.0x10.0mm, 225 Ball, 15x15 Layout, 0.65mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 225 0.65 225-ball FBGA +0 +225 +225 +Package_BGA +TFBGA-256_13x13mm_Layout16x16_P0.8mm +TFBGA-256, NSMD, 13.0x13.0mm, 256 Ball, 16x16 Layout, 0.8mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 256 0.8 256-ball FBGA +0 +256 +256 +Package_BGA +TFBGA-265_14x14mm_Layout17x17_P0.8mm +TFBGA-265, 14.0x14.0mm, 265 Ball, 17x17 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/DM00387108.pdf#page=223 +BGA 265 0.8 +0 +265 +265 +Package_BGA +TFBGA-289_9x9mm_Layout17x17_P0.5mm +TFBGA-289, 9.0x9.0mm, 289 Ball, 17x17 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp131c.pdf +BGA 289 0.5 +0 +289 +289 +Package_BGA +TFBGA-324_12x12mm_Layout18x18_P0.8mm +TFBGA-324, NSMD, 12.0x12.0mm, 324 Ball, 18x18 Layout, 0.65mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 324 0.65 324-ball FBGA +0 +324 +324 +Package_BGA +TFBGA-361_13x13mm_Layout19x19_P0.65mm +TFBGA-361, NSMD, 13.0x13.0mm, 361 Ball, 19x19 Layout, 0.65mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 361 0.65 361-ball FBGA +0 +361 +361 +Package_BGA +TFBGA-576_16x16mm_Layout24x24_P0.65mm +TFBGA-576, NSMD, 16.0x16.0mm, 576 Ball, 24x24 Layout, 0.65mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 576 0.65 576-ball FBGA +0 +576 +576 +Package_BGA +Texas_BGA-289_15.0x15.0mm_Layout17x17_P0.8mm_Ball0.5mm_Pad0.4mm +Texas Instruments BGA-289, 0.4mm pad, 15x15mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, https://www.ti.com/lit/ml/mpbg777/mpbg777.pdf +BGA 289 0.8 ZAV S-PBGA-N289 +0 +289 +289 +Package_BGA +Texas_DSBGA-5_0.822x1.116mm_Layout2x1x2_P0.4mm +Texas Instruments, DSBGA, 0.822x1.116mm, 5 bump 2x1x2 array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/opa330.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YFF S-XBGA-N5 +0 +10 +5 +Package_BGA +Texas_DSBGA-5_0.8875x1.3875mm_Layout2x3_P0.5mm +Texas Instruments, DSBGA, area grid, NSMD, YZP0005 pad definition, 0.8875x1.3875mm, 5 Ball, 2x3 Layout, 0.5mm Pitch, https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=42, https://www.ti.com/lit/ml/mxbg018l/mxbg018l.pdf +BGA 5 0.5 YZP +0 +5 +5 +Package_BGA +Texas_DSBGA-5_1.5855x1.6365mm_Layout3x2_P0.5mm +Texas Instruments, DSBGA, area grid, YTA0005 pad definition, 1.5855x1.6365mm, 5 Ball, 3x2 Layout, 0.5mm Pitch, https://www.ti.com/lit/ml/mxbg263/mxbg263.pdf, https://www.ti.com/lit/ds/symlink/lm74.pdf#page=24 +BGA 5 0.5 YTA +0 +5 +5 +Package_BGA +Texas_DSBGA-6_0.9x1.4mm_Layout2x3_P0.5mm +Texas Instruments, DSBGA, 0.9x1.4mm, 6 bump 2x3 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/ts5a3159a.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N6 +0 +12 +6 +Package_BGA +Texas_DSBGA-6_0.95x1.488mm_Layout2x3_P0.4mm +Texas Instruments, DSBGA, area grid, YBG pad definition, 0.95x1.488mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, https://www.ti.com/lit/ml/mxbg419/mxbg419.pdf, https://www.ti.com/lit/ds/symlink/tmp117.pdf +BGA 6 0.4 +0 +6 +6 +Package_BGA +Texas_DSBGA-6_0.704x1.054mm_Layout2x3_P0.35mm +Texas Instruments, DSBGA-6, 0.704x1.054mm, NSMD, YKA pad definition, 0.704x1.054mm, 6 Ball, 2x3 Layout, 0.35mm Pitch, https://www.ti.com/lit/ml/mxbg383/mxbg383.pdf, https://www.ti.com/lit/ds/symlink/tps62800.pdf +BGA 6 0.35 +0 +6 +6 +Package_BGA +Texas_DSBGA-6_0.855x1.255mm_Layout2x3_P0.4mm_LevelB +Texas Instruments, DSBGA, area grid, YBG pad definition, 0.95x1.488mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, YFF0006, NSMD pad definition, https://www.ti.com/lit/ds/symlink/lmg1020.pdf, https://www.ti.com/lit/ml/mxbg078z/mxbg078z.pdf +BGA 6 0.4 YFF0006 +0 +6 +6 +Package_BGA +Texas_DSBGA-6_0.855x1.255mm_Layout2x3_P0.4mm_LevelC +Texas Instruments, DSBGA, area grid, YBG pad definition, 0.95x1.488mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, YFF0006, NSMD pad definition, https://www.ti.com/lit/ds/symlink/lmg1020.pdf, https://www.ti.com/lit/ml/mxbg078z/mxbg078z.pdf +BGA 6 0.4 YFF0006 +0 +6 +6 +Package_BGA +Texas_DSBGA-8_0.9x1.9mm_Layout2x4_P0.5mm +Texas Instruments, DSBGA, 0.9x1.9mm, 8 bump 2x4 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/txb0102.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N8 +0 +16 +8 +Package_BGA +Texas_DSBGA-8_0.705x1.468mm_Layout2x4_P0.4mm +Texas Instruments, DSBGA, area grid, NSMD, YBJ0008 pad definition, 0.705x1.468mm, 8 Ball, 2x4 Layout, 0.4mm Pitch, https://www.ti.com/lit/gpn/ina234 +BGA 8 0.4 +0 +8 +8 +Package_BGA +Texas_DSBGA-8_1.43x1.41mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, 1.43x1.41mm, 8 bump 3x3 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/lmc555.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N8 +0 +16 +8 +Package_BGA +Texas_DSBGA-8_1.5195x1.5195mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, area grid, YZR pad definition, 1.5195x1.5195mm, 8 Ball, 3x3 Layout, 0.5mm Pitch, http://www.ti.com/lit/ml/mxbg270/mxbg270.pdf +BGA 8 0.5 +0 +8 +8 +Package_BGA +Texas_DSBGA-9_1.62mmx1.58mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, area grid, NSMD, YZF0009 pad definition, 1.62x1.58mm, 9 Ball, 3x3 Layout, 0.5mm Pitch, https://www.ti.com/lit/ml/mxbg027n/mxbg027n.pdf +BGA 9 0.5 +0 +9 +9 +Package_BGA +Texas_DSBGA-9_1.4715x1.4715mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, 1.4715x1.4715mm, 9 bump 3x3 array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/lm4990.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZR0009 +0 +18 +9 +Package_BGA +Texas_DSBGA-10_1.36x1.86mm_Layout3x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZP, YZP0010, 1.86x1.36mm, 10 Ball, 3x4 Layout, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/ts3a24159.pdf +BGA 10 0.5 +0 +20 +10 +Package_BGA +Texas_DSBGA-12_1.36x1.86mm_Layout3x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZT, 1.86x1.36mm, 12 Ball, 3x4 Layout, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/txb0104.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 12 0.5 R-XBGA-N12 +0 +24 +12 +Package_BGA +Texas_DSBGA-16_2.39x2.39mm_Layout4x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZF, YZF0016, 2.39x2.39mm, 16 Ball, 4x4 Layout, 0.5mm Pitch, https://www.ti.com/lit/ds/symlink/dac80508.pdf +BGA 16 0.5 +0 +32 +16 +Package_BGA +Texas_DSBGA-28_1.9x3.0mm_Layout4x7_P0.4mm +Texas Instruments, DSBGA, area grid, 1.9x3.0mm, 28 Ball, 4x7 Layout, 0.4mm Pitch, http://www.ti.com/lit/ds/symlink/bq51050b.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 28 0.4 +0 +28 +28 +Package_BGA +Texas_DSBGA-49_3.33x3.488mm_Layout7x7_P0.4mm +Texas Instruments, DSBGA, area grid, 3.33x3.488mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.ti.com/lit/ds/symlink/msp430f2234.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 49 0.4 +0 +49 +49 +Package_BGA +Texas_DSBGA-64_3.415x3.535mm_Layout8x8_P0.4mm +Texas Instruments, DSBGA, area grid, 3.415x3.535mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.ti.com/lit/ds/slas718g/slas718g.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 64 0.4 +0 +64 +64 +Package_BGA +Texas_MicroStar_Junior_BGA-12_2.0x2.5mm_Layout4x3_P0.5mm +Texas Instruments, BGA Microstar Junior, 2x2.5mm, 12 bump 4x3 grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/txb0104.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf) +Texas_Junior_BGA-12 +0 +12 +12 +Package_BGA +Texas_MicroStar_Junior_BGA-80_5.0x5.0mm_Layout9x9_P0.5mm +Texas Instruments, BGA Microstar Junior, 5x5mm, 80 ball 9x9 grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/tlv320aic23b.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf) +Texas_Junior_BGA-80 +0 +80 +80 +Package_BGA +Texas_MicroStar_Junior_BGA-113_7.0x7.0mm_Layout12x12_P0.5mm +Texas Instruments, BGA Microstar Junior, NSMD, 7x7mm, 113 Ball, 12x12 Layout, 0.5mm Pitch, http://www.ti.com/lit/ml/mpbg674/mpbg674.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf +BGA 113 0.5 +0 +113 +113 +Package_BGA +Texas_YFP0020_DSBGA-20_1.56x1.96mm_Layout4x5_P0.4mm +Texas Instruments, YFP0020, DSBGA-20, area grid, 1.588x1.988mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, https://www.ti.com/lit/ds/symlink/txs0206.pdf +BGA 20 0.4 +0 +20 +20 +Package_BGA +UCBGA-36_2.5x2.5mm_Layout6x6_P0.4mm +UCBGA-36, 2.5x2.5mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, https://www.latticesemi.com/view_document?document_id=213 +BGA 36 0.4 +0 +36 +36 +Package_BGA +UCBGA-49_3x3mm_Layout7x7_P0.4mm +UCBGA-49, 3x3mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.latticesemi.com/view_document?document_id=213 +BGA 49 0.4 +0 +49 +49 +Package_BGA +UCBGA-81_4x4mm_Layout9x9_P0.4mm +UCBGA-81, 4x4mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, https://www.latticesemi.com/view_document?document_id=213 +BGA 81 0.4 +0 +81 +81 +Package_BGA +UFBGA-15_3.0x3.0mm_Layout4x4_P0.65mm +UFBGA-15, 4x4, 3x3mm package, pitch 0.65mm +UFBGA-15 +0 +15 +15 +Package_BGA +UFBGA-32_4.0x4.0mm_Layout6x6_P0.5mm +UFBGA-32, 6x6, 4x4mm package, pitch 0.5mm +UFBGA-32 +0 +32 +32 +Package_BGA +UFBGA-64_5x5mm_Layout8x8_P0.5mm +UFBGA-64, 5.0x5.0mm, 64 Ball, 8x8 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f051t8.pdf#page=91 +BGA 64 0.5 +0 +64 +64 +Package_BGA +UFBGA-100_7x7mm_Layout12x12_P0.5mm +UFBGA-100, 7.0x7.0mm, 100 Ball, 12x12 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f103tb.pdf#page=93 +BGA 100 0.5 +0 +100 +100 +Package_BGA +UFBGA-132_7x7mm_Layout12x12_P0.5mm +UFBGA-132, 7.0x7.0mm, 132 Ball, 12x12 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32l152zc.pdf#page=123 +BGA 132 0.5 +0 +132 +132 +Package_BGA +UFBGA-132_7x7mm_P0.5mm +UFBGA 132 Pins, 0.5mm Pitch, 0.3mm Ball, http://www.st.com/resource/en/datasheet/stm32l486qg.pdf +ufbga bga small-pitch +0 +132 +132 +Package_BGA +UFBGA-144_7x7mm_Layout12x12_P0.5mm +UFBGA-144, 7.0x7.0mm, 144 Ball, 12x12 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f446ze.pdf#page=186 +BGA 144 0.5 +0 +144 +144 +Package_BGA +UFBGA-144_10x10mm_Layout12x12_P0.8mm +UFBGA-144, 10.0x10.0mm, 144 Ball, 12x12 Layout, 0.8mm Pitch, http://www.st.com/resource/en/datasheet/stm32f446ze.pdf#page=189 +BGA 144 0.8 +0 +144 +144 +Package_BGA +UFBGA-169_7x7mm_Layout13x13_P0.5mm +UFBGA-169, 7.0x7.0mm, 169 Ball, 13x13 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f429ng.pdf#page=218 +BGA 169 0.5 +0 +169 +169 +Package_BGA +UFBGA-201_10x10mm_Layout15x15_P0.65mm +UFBGA-201, 10.0x10.0mm, 201 Ball, 15x15 Layout, 0.65mm Pitch, http://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=166 +BGA 201 0.65 +0 +201 +201 +Package_BGA +VFBGA-49_5.0x5.0mm_Layout7x7_P0.65mm +VFBGA-49, 7x7, 5x5mm package, pitch 0.65mm +VFBGA-49 +0 +49 +49 +Package_BGA +VFBGA-86_6x6mm_Layout10x10_P0.55mm_Ball0.25mm_Pad0.2mm +VFBGA-86, 6.0x6.0mm, 86 Ball, 10x10 Layout, 0.55mm Pitch, https://www.dialog-semiconductor.com/sites/default/files/da1469x_datasheet_3v1.pdf#page=740 +BGA 86 0.55 +0 +86 +86 +Package_BGA +VFBGA-100_7.0x7.0mm_Layout10x10_P0.65mm +VFBGA-100, 10x10, 7x7mm package, pitch 0.65mm +VFBGA-100 +0 +100 +100 +Package_BGA +WLP-4_0.73x0.73mm_Layout2x2_P0.35mm_Ball0.22mm_Pad0.2mm +WLP-4, 0.728x0.728mm, 4 Ball, 2x2 Layout, 0.35mm Pitch, https://datasheets.maximintegrated.com/en/ds/MAX40200.pdf +BGA 4 0.35 +0 +4 +4 +Package_BGA +WLP-4_0.73x0.73mm_Layout2x2_P0.35mm_Ball0.22mm_Pad0.2mm_NSMD +WLP-4, 2x2 raster, 0.73x0.73mm package, pitch 0.35mm; https://datasheets.maximintegrated.com/en/ds/MAX40200.pdf +BGA 4 0.35 +0 +4 +4 +Package_BGA +WLP-4_0.83x0.83mm_P0.4mm +WLP-4_0.83x0.83mm_P0.4mm https://pdfserv.maximintegrated.com/package_dwgs/21-100107.PDF, https://www.maximintegrated.com/en/app-notes/index.mvp/id/1891 +WLP-4 +0 +4 +4 +Package_BGA +WLP-4_0.86x0.86mm_P0.4mm +WLP-4_0.86x0.86mm_P0.4mm https://pdfserv.maximintegrated.com/package_dwgs/21-0612.PDF, https://www.maximintegrated.com/en/app-notes/index.mvp/id/1891 +WLP-4 +0 +4 +4 +Package_BGA +WLP-9_1.448x1.468mm_Layout3x3_P0.4mm_Ball0.27mm_Pad0.25mm +WLP-9, 1.468x1.448mm, 9 Ball, 3x3 Layout, 0.4mm Pitch, https://pdfserv.maximintegrated.com/package_dwgs/21-100168.PDF +BGA 9 0.4 +0 +9 +9 +Package_BGA +XBGA-121_10x10mm_Layout11x11_P0.8mm +XBGA-121, 10.0x10.0mm, 121 Ball, 11x11 Layout, 0.8mm Pitch, http://ww1.microchip.com/downloads/en/DeviceDoc/39969b.pdf +BGA 121 0.8 +0 +121 +121 +Package_BGA +XFBGA-36_3.5x3.5mm_Layout6x6_P0.5mm +XFBGA-36, https://www.nxp.com/docs/en/package-information/SOT1555-1.pdf +XFBGA-36 +0 +36 +36 +Package_BGA +XFBGA-64_5.0x5.0mm_Layout8x8_P0.5mm +XFBGA-64, https://www.nxp.com/docs/en/package-information/SOT1555-1.pdf +XFBGA-64 +0 +64 +64 +Package_BGA +XFBGA-121_8x8mm_Layout11x11_P0.65mm +XFBGA-121, https://www.nxp.com/docs/en/package-information/SOT1533-1.pdf +XFBGA-121 +0 +121 +121 +Package_BGA +Xilinx_CLG225 +Zynq-7000 BGA, NSMD pad definition Appendix A, 13x13mm, 225 Ball, 15x15 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=77 +BGA 225 0.8 CLG225 +0 +225 +225 +Package_BGA +Xilinx_CLG400 +Zynq-7000 BGA, NSMD pad definition Appendix A, 17x17mm, 400 Ball, 20x20 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=78 +BGA 400 0.8 CLG400 CL400 +0 +400 +400 +Package_BGA +Xilinx_CLG484_CLG485 +Zynq-7000 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=79 +BGA 484 0.8 CLG484 CL484 CLG485 CL485 +0 +484 +484 +Package_BGA +Xilinx_CPG236 +Artix-7 BGA, NSMD pad definition Appendix A, 10x10mm, 238 Ball, 19x19 Layout, 0.5mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=266 +BGA 238 0.5 CP236 CPG236 +0 +238 +238 +Package_BGA +Xilinx_CPG238 +Artix-7 BGA, NSMD pad definition Appendix A, 10x10mm, 238 Ball, 19x19 Layout, 0.5mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=267 +BGA 238 0.5 CPG238 +0 +238 +238 +Package_BGA +Xilinx_CPGA196 +Spartan-7 BGA, NSMD pad definition Appendix A, 8x8mm, 196 Ball, 14x14 Layout, 0.5mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=260 +BGA 196 0.5 CPGA196 +0 +196 +196 +Package_BGA +Xilinx_CSG324 +Artix-7 BGA, NSMD pad definition Appendix A, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=268 +BGA 324 0.8 CS324 CSG324 +0 +324 +324 +Package_BGA +Xilinx_CSG325 +Artix-7 BGA, NSMD pad definition Appendix A, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=268 +BGA 324 0.8 CS325 CSG235 +0 +324 +324 +Package_BGA +Xilinx_CSGA225 +Spartan-7 BGA, NSMD pad definition Appendix A, 13x13mm, 225 Ball, 15x15 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=262 +BGA 225 0.8 CSGA225 +0 +225 +225 +Package_BGA +Xilinx_CSGA324 +Spartan-7 BGA, NSMD pad definition Appendix A, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=263 +BGA 324 0.8 CSGA324 +0 +324 +324 +Package_BGA +Xilinx_FBG484 +Artix-7, Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=271, ttps://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=281, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=82 +BGA 484 1 FB484 FBG484 FBV484 +0 +484 +484 +Package_BGA +Xilinx_FBG676 +Artix-7, Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=273, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=284, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=84 +BGA 676 1 FB676 FBG676 FBV676 +0 +676 +676 +Package_BGA +Xilinx_FBG900 +Kintex-7 BGA, NSMD pad definition Appendix A, 31x31mm, 900 Ball, 30x30 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=289 +BGA 900 1 FB900 FBG900 FBV900 +0 +900 +900 +Package_BGA +Xilinx_FFG676 +Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=292, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=88 +BGA 676 1 FF676 FFG676 FFV676 +0 +676 +676 +Package_BGA +Xilinx_FFG900_FFG901 +Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 31x31mm, 900 Ball, 30x30 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=294, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=90 +BGA 900 1 FF900 FFG900 FFV900 FF901 FFG901 FFV901 +0 +900 +900 +Package_BGA +Xilinx_FFG1156 +Artix-7, Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=277, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=296, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=91 +BGA 1156 1 FF1156 FFG1156 FFV1156 +0 +1156 +1156 +Package_BGA +Xilinx_FFG1157_FFG1158 +Virtex-7 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=299 +BGA 1156 1 FF1157 FFG1157 FFV1157 FF1158 FFG1158 FFV1158 +0 +1156 +1156 +Package_BGA +Xilinx_FFG1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 42.5x42.5mm, 1760 Ball, 42x42 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=300 +BGA 1760 1 FF1761 FFG1761 +0 +1760 +1760 +Package_BGA +Xilinx_FFG1926_FFG1927_FFG1928_FFG1930 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1924 Ball, 44x44 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=303 +BGA 1924 1 FF1926 FFG1926 FF1927 FFG1927 FFV1927 FF1928 FFG1928 FF1930 FFG1930 +0 +1924 +1924 +Package_BGA +Xilinx_FFV1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 42.5x42.5mm, 1760 Ball, 42x42 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=301 +BGA 1760 1 FFV1761 +0 +1760 +1760 +Package_BGA +Xilinx_FGG484 +Artix-7 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=275 +BGA 484 1 FG484 FGG484 +0 +484 +484 +Package_BGA +Xilinx_FGG676 +Artix-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=276 +BGA 676 1 FG676 FGG676 +0 +676 +676 +Package_BGA +Xilinx_FGGA484 +Spartan-7 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=264 +BGA 484 1 FGGA484 +0 +484 +484 +Package_BGA +Xilinx_FGGA676 +Spartan-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=265 +BGA 676 1 FGGA676 +0 +676 +676 +Package_BGA +Xilinx_FHG1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1760 Ball, 42x42 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=302 +BGA 1760 1 FH1761 FHG1761 +0 +1760 +1760 +Package_BGA +Xilinx_FLG1925_FLG1926_FLG1928_FLG1930 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1924 Ball, 44x44 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=304 +BGA 1924 1 FL1925 FLG1925 FL1926 FLG1926 FL1928 FLG1928 FL1930 FLG1930 +0 +1924 +1924 +Package_BGA +Xilinx_FTG256 +Artix-7 BGA, NSMD pad definition Appendix A, 17x17mm, 256 Ball, 16x16 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=269 +BGA 256 1 FT256 FTG256 +0 +256 +256 +Package_BGA +Xilinx_FTGB196 +Spartan-7 BGA, NSMD pad definition Appendix A, 15x15mm, 196 Ball, 14x14 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=261 +BGA 196 1 FTGB196 +0 +196 +196 +Package_BGA +Xilinx_RB484 +Artix-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=278, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=92 +BGA 484 1 RB484 +0 +484 +484 +Package_BGA +Xilinx_RB676 +Artix-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=280 +BGA 676 1 RB676 +0 +676 +676 +Package_BGA +Xilinx_RF676 +Kintex-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=297 +BGA 676 1 RF676 +0 +676 +676 +Package_BGA +Xilinx_RF900 +Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 31x31mm, 900 Ball, 30x30 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=298, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=94 +BGA 900 1 RF900 +0 +900 +900 +Package_BGA +Xilinx_RF1156 +Zynq-7000 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=95 +BGA 1156 1 RF1156 +0 +1156 +1156 +Package_BGA +Xilinx_RF1157_RF1158 +Virtex-7 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=305 +BGA 1156 1 RF1157 RF1158 +0 +1156 +1156 +Package_BGA +Xilinx_RF1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 42.5x42.5mm, 1760 Ball, 42x42 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=306 +BGA 1760 1 RF1761 +0 +1760 +1760 +Package_BGA +Xilinx_RF1930 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1924 Ball, 44x44 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=307 +BGA 1924 1 RF1930 +0 +1924 +1924 +Package_BGA +Xilinx_RFG676 +Zynq-7000 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=93 +BGA 676 1 RF676 RFG676 +0 +676 +676 +Package_BGA +Xilinx_RS484 +Artix-7 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=279 +BGA 484 0.8 RS484 +0 +484 +484 +Package_BGA +Xilinx_SBG484 +Artix-7 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=270 +BGA 484 0.8 SB484 SBG484 SBV484 +0 +484 +484 +Package_BGA +Xilinx_SBG485 +Zynq-7000 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=80 +BGA 484 0.8 SBG485 SBV485 +0 +484 +484 +Package_CSP +Analog_LFCSP-8-1EP_3x3mm_P0.5mm_EP1.53x1.85mm +LFCSP, exposed pad, Analog Devices (http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5542.pdf) +LFCSP 8 0.5 +0 +12 +5 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_23.pdf, CP-16-23), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +21 +17 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_23.pdf, CP-16-23), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +31 +17 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.35x2.35mm +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_20.pdf, CP-16-20), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +21 +17 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.35x2.35mm_ThermalVias +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_20.pdf, CP-16-20), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +31 +17 +Package_CSP +Analog_LFCSP-UQ-10_1.3x1.6mm_P0.4mm +Analog LFCSP-UQ, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_10_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP-UQ NoLead +0 +10 +10 +Package_CSP +Dialog_WLCSP-34_4.54x1.66mm_Stagger +Dialog Semiconductor (Renesas) WLCSP-34, staggered array, 4.54x1.66mm, 34 Ball, 17x4 Layout, 0.25x0.34mm Pitch, https://www.renesas.com/us/en/document/dst/da7212-datasheet +CSP 34 0.25x0.34 34-ball +0 +34 +34 +Package_CSP +DiodesInc_GEA20_WLCSP-20_1.70x2.10mm_Layout4x5_P0.4mm +Diodes Incorporated WLCSP-20, GEA20, 1.7x2.1mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, https://www.diodes.com/assets/Package-Files/GEA20.pdf +CSP 20 0.4 +0 +20 +20 +Package_CSP +Efinix_WLCSP-64_3.5353x3.3753mm_Layout8x8_P0.4mm +Efinix WLCSP, NSMD pad definition Page 60, 3.5353x3.3753mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +CSP 64 0.4 64-ball WLCSP +0 +64 +64 +Package_CSP +Efinix_WLCSP-80_4.4567x3.5569mm_Layout10x8_P0.4mm +WLCSP-80, NSMD pad definition Page 54, 4.4567x3.5569mm, 80 Ball, 10x8 Layout, 0.4mm Pitch, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +CSP 80 0.4 80-ball WLCSP +0 +80 +80 +Package_CSP +LFCSP-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +LFCSP, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_6_3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +11 +7 +Package_CSP +LFCSP-8-1EP_3x2mm_P0.5mm_EP1.6x1.65mm +LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/57080735642908cp_8_4.pdf +LFCSP 8pin thermal pad 3x2mm Pitch 0.5mm +0 +9 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.6x2.34mm +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +13 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.6x2.34mm_ThermalVias +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +20 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.45x1.74mm +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-8/CP_8_13.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +13 +9 +Package_CSP +LFCSP-8_2x2mm_P0.5mm +LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_8_6.pdf +LFCSP 8pin 2x2mm Pitch 0.5mm +0 +8 +8 +Package_CSP +LFCSP-10_2x2mm_P0.5mm +LFCSP, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/cp_10_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +10 +10 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.5x1.5mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp_16_27.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.854x1.854mm +16-Lead Lead Frame Chip Scale Package, 3x3mm, 0.5mm pitch, 1.854mm thermal pad (CP-16-22, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_22.pdf) +LFCSP 16 0.5 +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +LFCSP, 16 pin, 4x4mm, 2.1mm sq pad (http://www.analog.com/media/en/technical-documentation/data-sheets/ADG633.pdf) +LFCSP 16 0.65 +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +31 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_17.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_17.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +31 +17 +Package_CSP +LFCSP-16_3x3mm_P0.5mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_32.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +16 +16 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +20-Lead Frame Chip Scale Package - 4x4x0.9 mm Body [LFCSP], (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_20_6.pdf) +LFCSP 0.5 +0 +25 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py +LFCSP DFN_QFN +0 +25 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py +LFCSP DFN_QFN +0 +35 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +25 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +35 +21 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +29 +25 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm_ThermalVias +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +39 +25 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +29 +25 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +39 +25 +Package_CSP +LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm +LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +33 +29 +Package_CSP +LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm_ThermalVias +LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +43 +29 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +42 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +59 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/3416438741201015623cp_32_4.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +37 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/3416438741201015623cp_32_4.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +47 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm +LFCSP, 32 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7280.PDF#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +37 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7280.PDF#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +47 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +32-Lead Frame Chip Scale Package LFCSP (5mm x 5mm); (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-32/CP_32_27.pdf +LFCSP 0.5 +0 +37 +33 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP3.9x3.9mm +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_40_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +45 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP3.9x3.9mm_ThermalVias +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_40_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +55 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-40/CP_40_15.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +45 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-40/CP_40_15.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +55 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.65x4.65mm +LFCSP, 40 Pin (https://www.jedec.org/system/files/docs/MO-220K01.pdf (variation VJJD-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +45 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.65x4.65mm_ThermalVias +LFCSP, 40 Pin (https://www.jedec.org/system/files/docs/MO-220K01.pdf (variation VJJD-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +55 +41 +Package_CSP +LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm +LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +58 +49 +Package_CSP +LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm_ThermalVias +LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +75 +49 +Package_CSP +LFCSP-56-1EP_8x8mm_P0.5mm_EP6.6x6.6mm +LFCSP, 56 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-56/CP_56_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead Analog-LFCSP_WQ-CP-56-9 +0 +66 +57 +Package_CSP +LFCSP-56-1EP_8x8mm_P0.5mm_EP6.6x6.6mm_ThermalVias +LFCSP, 56 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-56/CP_56_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead Analog-LFCSP_WQ-CP-56-9 +0 +71 +57 +Package_CSP +LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm +LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +69 +65 +Package_CSP +LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm_ThermalVias +LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +86 +65 +Package_CSP +LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm +LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +82 +73 +Package_CSP +LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm_ThermalVias +LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +99 +73 +Package_CSP +LFCSP-72-1EP_10x10mm_P0.5mm_EP6.15x6.15mm +72-Lead Frame Chip Scale Package - 10x10x0.9 mm Body [LFCSP]; (see https://www.intersil.com/content/dam/Intersil/documents/l72_/l72.10x10c.pdf) +LFCSP 0.5 +0 +77 +73 +Package_CSP +LFCSP-VQ-24-1EP_4x4mm_P0.5mm_EP2.642x2.642mm +LFCSP VQ, 24 pin, exposed pad, 4x4mm body, pitch 0.5mm (http://www.analog.com/media/en/package-pcb-resources/package/56702234806764cp_24_3.pdf, http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5801.pdf) +LFCSP 0.5 +0 +29 +25 +Package_CSP +LFCSP-VQ-48-1EP_7x7mm_P0.5mm +LFCSP VQ, 48 pin, exposed pad, 7x7mm body (http://www.analog.com/media/en/technical-documentation/data-sheets/AD7951.pdf, http://www.analog.com/en/design-center/packaging-quality-symbols-footprints/symbols-and-footprints/AD7951.html) +LFCSP 48 +0 +65 +49 +Package_CSP +LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm +LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +15 +9 +Package_CSP +LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm_ThermalVias +LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +22 +9 +Package_CSP +LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm +LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +17 +11 +Package_CSP +LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm_ThermalVias +LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +24 +11 +Package_CSP +Macronix_WLCSP-12_2.02x2.09mm_P0.5mm +WLCSP-12, 2.02x2.09mm, 12 Ball, 4x4 Layout, 0.5mm Pitch, https://www.macronix.com/Lists/Datasheet/Attachments/8909/MX25U3232F,%201.8V,%2032Mb,%20v1.2.pdf#page=93 +CSP 12 0.5 +0 +12 +12 +Package_CSP +Maxim_WLCSP-35_3.0x2.17mm_Layout7x5_P0.4mm_Ball0.27mm_Pad0.25mm +WLCSP-35, 2.998x2.168mm, 35 Ball, 7x5 Layout, 0.4mm Pitch, https://pdfserv.maximintegrated.com/package_dwgs/21-100489.PDF +CSP 35 0.4 +0 +35 +35 +Package_CSP +Nexperia_WLCSP-15_6-3-6_2.37x1.17mm_Layout6x3_P0.4mm +Nexperia wafer level chip-size package; 15 bumps (6-3-6), 2.37x1.17mm, 15 Ball, 6x3 Layout, 0.4mm Pitch, https://assets.nexperia.com/documents/data-sheet/PCMFXUSB3S_SER.pdf +CSP 15 0.4 +0 +15 +15 +Package_CSP +ST_WLCSP-12_1.70x1.42mm_P0.35mm_Stagger +ST WLCSP-12, ST Die ID 443, 1.7x1.42mm, 12 Ball, Y-staggered 4x6 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32c011d6.pdf +CSP 12 0.35 +0 +12 +12 +Package_CSP +ST_WLCSP-18_1.86x2.14mm_P0.4mm_Stagger +ST WLCSP-18, ST Die ID 466, 1.86x2.14mm, 18 Ball, X-staggered 7x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g031y8.pdf +CSP 18 0.4 +0 +18 +18 +Package_CSP +ST_WLCSP-20_1.94x2.40mm_Layout4x5_P0.4mm +ST WLCSP-20, ST die ID 456, 1.94x2.4mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g051f8.pdf#page=102 +CSP 20 0.4 +0 +20 +20 +Package_CSP +ST_WLCSP-25_2.30x2.48mm_Layout5x5_P0.4mm +ST WLCSP-25, ST die ID 460, 2.3x2.48mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g071eb.pdf +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_2.33x2.24mm_Layout5x5_P0.4mm +ST WLCSP-25, ST Die ID 474, 2.33x2.24mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32h503eb.pdf +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die425 +WLCSP-25, 2.097x2.493mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l031f6.pdf#page=112 +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die444 +WLCSP-25, 2.423x2.325mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f031k6.pdf#page=93 +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die457 +WLCSP-25, 2.133x2.07mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l011k3.pdf#page=100 +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-27_2.34x2.55mm_P0.40mm_Stagger +ST WLCSP-27, ST Die ID 459, 2.34x2.55mm, 27 Ball, X-staggered 9x6 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u031g6.pdf +CSP 27 0.4 +0 +27 +27 +Package_CSP +ST_WLCSP-27_2.55x2.34mm_P0.40mm_Stagger +ST WLCSP-27, ST Die ID 459, 2.55x2.34mm, 27 Ball, X-staggered 9x6 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u031g6.pdf +CSP 27 0.4 +0 +27 +27 +Package_CSP +ST_WLCSP-36_2.58x3.07mm_Layout6x6_P0.4mm +ST WLCSP-36, ST die ID 464, 2.58x3.07mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l412t8.pdf +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die417 +WLCSP-36, 2.61x2.88mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l052t8.pdf#page=123 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die440 +WLCSP-36, 2.605x2.703mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f051t8.pdf#page=103 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die445 +WLCSP-36, 2.605x2.703mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=96 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die458 +WLCSP-36, 2.553x2.579mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f410t8.pdf#page=119 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-42_2.82x2.93mm_P0.40mm_Stagger +ST WLCSP-42, ST Die ID 489, 2.82x2.93mm, 42 Ball, X-staggered 12x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u073rc.pdf +CSP 42 0.4 +0 +42 +42 +Package_CSP +ST_WLCSP-42_2.93mmx2.82_P0.40mm_Stagger +ST WLCSP-42, ST Die ID 489, 2.93x2.82mm, 42 Ball, X-staggered 12x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u073rc.pdf +CSP 42 0.4 +0 +42 +42 +Package_CSP +ST_WLCSP-49_3.15x3.13mm_Layout7x7_P0.4mm +ST WLCSP-49, ST die ID 468, 3.15x3.13mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g431c6.pdf +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_3.30x3.38mm_Layout7x7_P0.4mm_Offcenter +ST WLCSP-49, off-center ball grid, ST die ID 494, 3.3x3.38mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb15cc.pdf#page=119 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die423 +WLCSP-49, 2.965x2.965mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f401vc.pdf#page=115 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die431 +WLCSP-49, 2.999x3.185mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f411vc.pdf#page=124 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die433 +WLCSP-49, 3.029x3.029mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f401ce.pdf#page=116 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die435 +WLCSP-49, 3.141x3.127mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00257211.pdf#page=191 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die438 +WLCSP-49, 3.89x3.74mm, 49 Ball, 7x7 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f303r8.pdf#page=112 +CSP 49 0.5 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die439 +WLCSP-49, 3.417x3.151mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f301r8.pdf#page=117 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die447 +WLCSP-49, 3.294x3.258mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l072kz.pdf#page=134 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die448 +WLCSP-49, 3.277x3.109mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f071v8.pdf#page=106 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-52_3.09x3.15mm_P0.4mm_Stagger +ST WLCSP-52, ST die ID 467, 3.09x3.15mm, 52 Ball, X-staggered 13x8 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g0b1ne.pdf#page=136 +CSP 52 0.4 +0 +52 +52 +Package_CSP +ST_WLCSP-56_3.38x3.38mm_P0.4m_Stagger +ST WLCSP-56, ST die ID 455, 3.38x3.38mm, 56 Ball, X-staggered 14x8 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u535je.pdf +CSP 56 0.4 +0 +56 +56 +Package_CSP +ST_WLCSP-63_Die427 +WLCSP-63, 3.228x4.164mm, 63 Ball, 7x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l151cc.pdf#page=125 +CSP 63 0.4 +0 +63 +63 +Package_CSP +ST_WLCSP-64_3.56x3.52mm_Layout8x8_P0.4mm +ST WLCSP-64, ST die ID 479, 3.56x3.52mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g491re.pdf +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die414 +WLCSP-64, 4.466x4.395mm, 64 Ball, 8x8 Layout, 0.5mm Pitch, http://www.st.com/resource/en/datasheet/stm32f103ze.pdf#page=120 +CSP 64 0.5 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die427 +WLCSP-64, 4.539x4.911mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l152zc.pdf#page=126 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die435 +WLCSP-64, 3.141x3.127mm, 64 Ball, 8x8 Layout, 0.35mm Pitch, http://www.st.com/resource/en/datasheet/DM00257211.pdf#page=188 +CSP 64 0.35 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die436 +WLCSP-64, 4.539x4.911mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l152zd.pdf#page=143 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die441 +WLCSP-64, 3.623x3.651mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00213872.pdf#page=167 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die442 +WLCSP-64, 3.347x3.585mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f091vb.pdf#page=109 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die462 +WLCSP-64, 3.357x3.657mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00340475.pdf#page=189 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-66_Die411 +WLCSP-66, 3.639x3.971mm, 66 Ball, 9x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=154 +CSP 66 0.4 +0 +66 +66 +Package_CSP +ST_WLCSP-66_Die432 +WLCSP-66, 3.767x4.229mm, 66 Ball, 8x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f378vc.pdf#page=114 +CSP 66 0.4 +0 +66 +66 +Package_CSP +ST_WLCSP-72_3.38x3.38mm_P0.35m_Stagger +ST WLCSP-72, ST die ID 455, 3.38x3.38mm, 72 Ball, X-staggered 16x9 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32u535je.pdf +CSP 72 0.35 +0 +72 +72 +Package_CSP +ST_WLCSP-72_Die415 +WLCSP-72, 4.4084x3.7594mm, 72 Ball, 9x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l476me.pdf#page=255 +CSP 72 0.4 +0 +72 +72 +Package_CSP +ST_WLCSP-80_3.50x3.27mm_P0.35mm_Stagger +ST WLCSP-80, ST die ID 484, 3.5x3.27mm, 80 Ball, Y-staggered 10x16 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h563mi.pdf +CSP 80 0.35 +0 +80 +80 +Package_CSP +ST_WLCSP-81_4.02x4.27mm_Layout9x9_P0.4mm +ST WLCSP-81, ST die ID 469, 4.02x4.27mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g483me.pdf +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_4.36x4.07mm_Layout9x9_P0.4mm +ST WLCSP-81, ST die ID 472, 4.36x4.07mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l562ce.pdf +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die415 +WLCSP-81, 4.4084x3.7594mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l476me.pdf#page=252 +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die421 +WLCSP-81, 3.693x3.815mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f446ze.pdf#page=192 +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die463 +WLCSP-81, 4.039x3.951mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00282249.pdf#page=175 +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-90_4.20x3.95mm_P0.4mm_Stagger +ST WLCSP-90, ST die ID 482, 4.2x3.95mm, 90 Ball, X-staggered 18x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u575og.pdf#page=306 +CSP 90 0.4 +0 +90 +90 +Package_CSP +ST_WLCSP-90_Die413 +WLCSP-90, 4.223x3.969mm, 90 Ball, 10x9 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f405og.pdf#page=164 +CSP 90 0.4 +0 +90 +90 +Package_CSP +ST_WLCSP-99_4.42x3.77mm_Layout9x11_P0.35mm +ST WLCSP-99, ST die ID 415, 4.42x3.77mm, 99 Ball, 11x9 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32l476vg.pdf +CSP 99 0.35 +0 +99 +99 +Package_CSP +ST_WLCSP-100_4.40x4.38mm_Layout10x10_P0.4mm_Offcenter +ST WLCSP-100, off-center ball grid, ST die ID 495, 4.4x4.38mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb55vc.pdf +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_4.437x4.456mm_Layout10x10_P0.4mm +ST WLCSP-100, ST die ID 471, 4.437x4.456mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l4p5ve.pdf +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die422 +WLCSP-100, 4.201x4.663mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f302vc.pdf#page=133 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die446 +WLCSP-100, 4.775x5.041mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f303zd.pdf#page=162 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die452 +WLCSP-100, 4.201x4.663mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00330506.pdf#page=218 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die461 +WLCSP-100, 4.618x4.142mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00284211.pdf#page=259 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-101_3.86x3.79mm_P0.35mm_Stagger +ST WLCSP-101, ST Die ID 485, 3.86x3.79mm, 101 Ball, Y-staggered 11x19 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h7r3v8.pdf +CSP 101 0.35 +0 +101 +101 +Package_CSP +ST_WLCSP-104_Die437 +WLCSP-104, 4.095x5.094mm, 104 Ball, 9x12 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32l152ze.pdf#page=127 +CSP 104 0.4 +0 +104 +104 +Package_CSP +ST_WLCSP-115_3.73x4.15mm_P0.35mm_Stagger +ST WLCSP-115, ST die ID 483, 3.73x4.15mm, 115 Ball, Y-staggered 11x21 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h725vg.pdf +CSP 115 0.35 +0 +115 +115 +Package_CSP +ST_WLCSP-115_4.63x4.15mm_P0.4mm_Stagger +ST WLCSP-115, ST die ID 461, 4.63x4.15mm, 115 Ball, X-staggered 21x11 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l496wg.pdf +CSP 115 0.4 +0 +115 +115 +Package_CSP +ST_WLCSP-132_4.57x4.37mm_Layout12x11_P0.35mm +ST WLCSP-132, ST die ID 480, 4.57x4.37mm, 132 Ball, 12x11 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h7a3ai.pdf +CSP 132 0.35 +0 +132 +132 +Package_CSP +ST_WLCSP-143_Die419 +WLCSP-143, 4.521x5.547mm, 143 Ball, 11x13 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f429ng.pdf#page=203 +CSP 143 0.4 +0 +143 +143 +Package_CSP +ST_WLCSP-143_Die449 +WLCSP-143, 4.539x5.849mm, 143 Ball, 11x13 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f746zg.pdf#page=202 +CSP 143 0.4 +0 +143 +143 +Package_CSP +ST_WLCSP-144_Die470 +WLCSP-144, 5.24x5.24mm, 144 Ball, 12x12 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00366448.pdf#page=295 +CSP 144 0.4 +0 +144 +144 +Package_CSP +ST_WLCSP-150_5.38x5.47mm_P0.4m_Stagger +ST WLCSP-150, ST die ID 481, 5.38x5.47mm, 150 Ball, Y-staggered 13x23 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u595zj.pdf +CSP 150 0.4 +0 +150 +150 +Package_CSP +ST_WLCSP-156_4.96x4.64mm_Layout13x12_P0.35mm +ST WLCSP-156, ST die ID 450, 4.96x4.64mm, 156 Ball, 13x12 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h747xi.pdf +CSP 156 0.35 +0 +156 +156 +Package_CSP +ST_WLCSP-168_Die434 +WLCSP-168, 4.891x5.692mm, 168 Ball, 12x14 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/stm32f469ni.pdf#page=198 +CSP 168 0.4 +0 +168 +168 +Package_CSP +ST_WLCSP-180_Die451 +WLCSP-180, 5.537x6.095mm, 180 Ball, 13x14 Layout, 0.4mm Pitch, http://www.st.com/resource/en/datasheet/DM00273119.pdf#page=240 +CSP 180 0.4 +0 +180 +180 +Package_CSP +ST_WLCSP-208_5.8x5.6mm_P0.35_Stagger +ST WLCSP-208, ST die ID 476, 5.8x5.6mm, 208 Ball, X-staggered 26x16 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32u5f9bj.pdf +CSP 208 0.35 +0 +208 +208 +Package_CSP +ST_WLCSP-208_5.38x5.47mm_P0.35mm_Stagger +ST WLCSP-208, ST die ID 481, 5.38x5.47mm, 208 Ball, X-staggered 26x16 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32u5a5aj.pdf +CSP 208 0.35 +0 +208 +208 +Package_CSP +WLCSP-4-X1-WLB0909-4_0.89x0.89mm_P0.5mm +X1-WLB0909, 0.89x0.89mm, 4 Ball, 2x2 Layout, 0.5mm Pitch, https://www.diodes.com/assets/Datasheets/AP22913.pdf +CSP 4 0.5 +0 +4 +4 +Package_CSP +WLCSP-4_0.64x0.64mm_P0.35mm +WLCSP-4, 0.64x0.64mm, 4 Ball, 2x2 Layout, 0.35mm Pitch, https://www.onsemi.com/pdf/datasheet/ncp163-d.pdf#page=23 +CSP 4 0.35 +0 +4 +4 +Package_CSP +WLCSP-6_1.4x1.0mm_P0.4mm +6pin Pitch 0.4mm +6pin Pitch 0.4mm WLCSP +0 +6 +6 +Package_CSP +WLCSP-8_1.58x1.63x0.35mm_Layout3x5_P0.35x0.4mm_Ball0.25mm_Pad0.25mm_NSMD +WLCSP/XFBGA 8-pin package, staggered pins, http://www.adestotech.com/wp-content/uploads/DS-AT25DF041B_040.pdf +WLCSP WLCSP-8 XFBGA XFBGA-8 CSP BGA Chip-Scale Glass-Top +0 +8 +8 +Package_CSP +WLCSP-8_1.551x2.284mm_P0.5mm +WLCSP-8, 1.551x2.284mm, 8 Ball, 2x4 Layout, 0.5mm Pitch, https://www.adestotech.com/wp-content/uploads/AT25SL321_112.pdf#page=75 +CSP 8 0.5 +0 +8 +8 +Package_CSP +WLCSP-9_1.21x1.22mm_P0.4mm +WLCSP-9, 1.21x1.22mm, 9 Ball, 3x3 Layout, 0.4mm Pitch, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/wlcspcb/cb_9_3.pdf +CSP 9 0.4 +0 +9 +9 +Package_CSP +WLCSP-12_1.56x1.56mm_P0.4mm +WLCSP 12 1.56x1.56 https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMM150-DS001-01.pdf +BMM150 WLCSP +0 +12 +12 +Package_CSP +WLCSP-12_1.403x1.555mm_P0.4mm_Stagger +WLCSP-12, staggered array, 1.403x1.555mm, 12 Ball, 6x4 Layout, 0.2x0.346333mm Pitch, http://ww1.microchip.com/downloads/en/devicedoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=208 +CSP 12 0.2x0.346333 +0 +12 +12 +Package_CSP +WLCSP-16_1.409x1.409mm_P0.35mm +WLCSP-16, 1.409x1.409mm, 16 Ball, 4x4 Layout, 0.35mm Pitch, http://www.latticesemi.com/view_document?document_id=213 +CSP 16 0.35 +0 +16 +16 +Package_CSP +WLCSP-16_2.225x2.17mm_P0.5mm +WLCSP-16 2.225x2.17mm, 2.225x2.17mm, 16 Ball, 4x4 Layout, 0.5mm Pitch, https://ww1.microchip.com/downloads/en/DeviceDoc/16B_WLCSP_CS_C04-06036c.pdf +CSP 16 0.5 +0 +16 +16 +Package_CSP +WLCSP-16_4x4_B2.17x2.32mm_P0.5mm +WLCSP-16, http://www.nxp.com/documents/data_sheet/LPC1102_1104.pdf, http://www.nxp.com/assets/documents/data/en/application-notes/AN3846.pdf +WLCSP-16 NXP +0 +16 +16 +Package_CSP +WLCSP-20_1.934x2.434mm_Layout4x5_P0.4mm +WLCSP-20, 4x5 raster, 1.934x2.434mm package, pitch 0.4mm; see section 36.2.3 of http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf +BGA 20 0.4 +0 +20 +20 +Package_CSP +WLCSP-20_1.994x1.94mm_Layout4x5_P0.4mm +WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00539D.pdf +WLCSP-20 +0 +20 +20 +Package_CSP +WLCSP-20_1.994x1.609mm_Layout5x4_P0.4mm +WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00676D.pdf +WLCSP-20 +0 +20 +20 +Package_CSP +WLCSP-36_2.82x2.67mm_Layout6x6_P0.4mm +WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00949D.pdf +WLCSP-36 +0 +36 +36 +Package_CSP +WLCSP-36_2.374x2.459mm_Layout6x6_P0.35mm +WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00604D.pdf +WLCSP-36 +0 +36 +36 +Package_CSP +WLCSP-56_3.170x3.444mm_Layout7x8_P0.4mm +WLCSP-56, 7x8 raster, 3.170x3.444mm package, pitch 0.4mm; see section 48.2.4 of http://ww1.microchip.com/downloads/en/DeviceDoc/DS60001479B.pdf +BGA 56 0.4 +0 +56 +56 +Package_CSP +WLCSP-81_4.41x3.76mm_P0.4mm +WLCSP-81, 9x9, 0.4mm Pitch, http://www.st.com/content/ccc/resource/technical/document/technical_note/92/30/3c/a1/4c/bb/43/6f/DM00103228.pdf/files/DM00103228.pdf/jcr:content/translations/en.DM00103228.pdf +WLCSP ST +0 +81 +81 +Package_CSP +pSemi_CSP-16_1.64x2.04mm_P0.4mm +pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf) +psemi csp 16 +0 +16 +16 +Package_CSP +pSemi_CSP-16_1.64x2.04mm_P0.4mm_Pad0.18mm +pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf) +psemi csp 16 +0 +16 +16 +Package_DFN_QFN +AMS_QFN-4-1EP_2x2mm_P0.95mm_EP0.7x1.6mm +UFD Package, 4-Lead Plastic QFN (2mm x 2mm), http://ams.com/eng/content/download/950231/2267959/483138 +QFN 0.95 +0 +6 +5 +Package_DFN_QFN +AO_AOZ666xDI_DFN-8-1EP_3x3mm_P0.65mm_EP1.25x2.7mm +AO AOZ666xDI DFN, 8 Pin (https://aosmd.com/res/data_sheets/AOZ6663DI-01.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +AO DFN NoLead +0 +13 +9 +Package_DFN_QFN +AO_DFN-8-1EP_5.55x5.2mm_P1.27mm_EP4.12x4.6mm +DD Package; 8-Lead Plastic DFN (5.55mm x 5.2mm), Pin 5-8 connected to EP (http://www.aosmd.com/res/packaging_information/DFN5x6_8L_EP1_P.pdf) +dfn +0 +25 +5 +Package_DFN_QFN +Cypress_QFN-56-1EP_8x8mm_P0.5mm_EP6.22x6.22mm_ThermalVias +56-Lead Plastic Quad Flat, No Lead Package (ML) - 8x8x0.9 mm Body [QFN] (see datasheet at http://www.cypress.com/file/138911/download and app note at http://www.cypress.com/file/140006/download) +QFN 0.5 +0 +87 +57 +Package_DFN_QFN +DFN-6-1EP_1.2x1.2mm_P0.4mm_EP0.3x0.94mm_PullBack +DFN, 6 Pin (http://www.onsemi.com/pub/Collateral/NCP133-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x1.6mm_P0.5mm_EP1.15x1.3mm +DFN, 6 Pin (https://www.onsemi.com/pdf/datasheet/ncp349-d.pdf#page=12), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x1.8mm_P0.5mm_EP1.2x1.6mm +DFN, 6 Pin (https://www.diodes.com/assets/Package-Files/U-DFN2018-6.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.5mm_EP0.6x1.37mm +DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081703_C_DC6.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.5mm_EP0.7x1.6mm +DFN, 6 Pin (http://www.junmintech.com/UploadFiles/Product/20211129145204_37021.pdf#page=10), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.5mm_EP0.61x1.42mm +DC6 Package; 6-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_6_05-08-1703.pdf) +DFN 0.5 +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.65mm_EP1.01x1.7mm +DFN, 6 Pin (https://www.diodes.com/assets/Package-Files/U-DFN2020-6%20(Type%20C).pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +6-Lead Plastic Dual Flat, No Lead Package (MA) - 2x2x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.65 +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_3x2mm_P0.5mm_EP1.65x1.35mm +DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/(DCB6)%20DFN%2005-08-1715%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +7 +Package_DFN_QFN +DFN-6-1EP_3x3mm_P0.95mm_EP1.7x2.6mm +DFN6 3*3 MM, 0.95 PITCH; CASE 506AH-01 (see ON Semiconductor 506AH.PDF) +DFN 0.95 +0 +13 +7 +Package_DFN_QFN +DFN-6-1EP_3x3mm_P1mm_EP1.5x2.4mm +DFN, 6 Pin (https://www.silabs.com/documents/public/data-sheets/Si7020-A20.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +7 +Package_DFN_QFN +DFN-6_1.3x1.2mm_P0.4mm +6-Lead Plastic DFN (1.3mm x 1.2mm) +DFN 0.4 +0 +6 +6 +Package_DFN_QFN +DFN-8-1EP_1.5x1.5mm_P0.4mm_EP0.7x1.2mm +DFN, 8 Pin (https://www.kinet-ic.com/uploads/KTD2026-7-04h.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm +DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/506AQ.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead 506AQ +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.6mm +DFN, 8 Pin (https://www.qorvo.com/products/d/da007268), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +10 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.3mm +DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/NB3N551-D.PDF#page=7), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.5mm +DFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8127-AVR-8-bit-Microcontroller-ATtiny4-ATtiny5-ATtiny9-ATtiny10_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm +DFN, 8 Pin (https://www.st.com/resource/en/datasheet/lm2903.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +10 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm +DFN8 2x2, 0.5P; CASE 506CN (see ON Semiconductor 506CN.PDF) +DFN 0.5 +0 +11 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.45mm_EP0.64x1.38mm +DC8 Package 8-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_8_05-08-1719.pdf) +DFN 0.45 +0 +11 +9 +Package_DFN_QFN +DFN-8-1EP_2x3mm_P0.5mm_EP0.61x2.2mm +DFN, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081702_c_ddb8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead Linear-DDB +0 +11 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.5mm +8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body [UDFN] (see Atmel-8815-SEEPROM-AT24CS01-02-Datasheet.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.7x1.4mm +DFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_DFN_2x3x0_9_MC_C04-123C.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.7x1.6mm +DFN, 8 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP8904DD/document_id/1244/), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.36x1.46mm +8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body (http://ww1.microchip.com/downloads/en/DeviceDoc/20005010F.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.75x1.45mm +8-Lead Plastic Dual Flat, No Lead Package (MC) - 2x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.45mm_EP1.66x1.36mm +DCB Package 8-Lead Plastic DFN (2mm x 3mm) (see Linear Technology DFN_8_05-08-1718.pdf) +DFN 0.45 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.7x2.4mm +DFN, 8 Pin (https://stcmicro.com/datasheet/STC8G-en.pdf#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead STC8G1K08A-36I-DFN8 +0 +10 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.7x2.4mm_ThermalVias +DFN, 8 Pin (https://stcmicro.com/datasheet/STC8G-en.pdf#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead STC8G1K08A-36I-DFN8 +0 +20 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.65x2.38mm +DFN, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4320fb.pdf#page=10), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +10 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.65x2.38mm_ThermalVias +DFN, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4320fb.pdf#page=10), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +20 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.66x2.38mm +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.65mm_EP1.5x2.25mm +DFN, 8 Pin (https://www.diodes.com/assets/Package-Files/U-DFN3030-8-Type-E.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.65mm_EP1.7x2.05mm +DFN, 8 Pin (http://www.ixysic.com/home/pdfs.nsf/www/IX4426-27-28.pdf/$file/IX4426-27-28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.65mm_EP1.55x2.4mm +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.65 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_4x4mm_P0.8mm_EP2.3x3.24mm +DFN, 8 Pin (https://www.st.com/resource/en/datasheet/ld1086.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_4x4mm_P0.8mm_EP2.5x3.6mm +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.8 +0 +15 +9 +Package_DFN_QFN +DFN-8-1EP_4x4mm_P0.8mm_EP2.39x2.21mm +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF) +DFN 0.8 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_6x5mm_P1.27mm_EP2x2mm +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download) +dfn +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_6x5mm_P1.27mm_EP4x4mm +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download) +dfn +0 +25 +9 +Package_DFN_QFN +DFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P; No exposed pad - Ref http://pdfserv.maximintegrated.com/land_patterns/90-0349.PDF +DFN 0.5 +0 +8 +8 +Package_DFN_QFN +DFN-10-1EP_2.6x2.6mm_P0.5mm_EP1.3x2.2mm +DFN, 10 Pin (https://www.nxp.com/docs/en/data-sheet/PCF85063A.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_2.6x2.6mm_P0.5mm_EP1.3x2.2mm_ThermalVias +DFN, 10 Pin (https://www.nxp.com/docs/en/data-sheet/PCF85063A.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +22 +11 +Package_DFN_QFN +DFN-10-1EP_2x3mm_P0.5mm_EP0.64x2.4mm +DDB Package; 10-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_10_05-08-1722.pdf) +DFN 0.5 +0 +13 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.7x2.5mm +DFN, 10 Pin (https://www.monolithicpower.com/pub/media/document/MPQ2483_r1.05.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.55x2.48mm +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.58x2.35mm +DFN, 10 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/OTH/ProductDocuments/DataSheets/22005b.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.58x2.35mm_ThermalVias +DFN, 10 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/OTH/ProductDocuments/DataSheets/22005b.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +20 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm +DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm_ThermalVias +DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +22 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.75x2.7mm +10-Lead Plastic Dual Flat No-Lead Package, 3x3mm Body (see Atmel Appnote 8826) +DFN 0.5 +0 +15 +11 +Package_DFN_QFN +DFN-10_2x2mm_P0.4mm +10-Lead Plastic DFN (2mm x 2mm) 0.40mm pitch +DFN 10 0.4mm +0 +10 +10 +Package_DFN_QFN +DFN-12-1EP_2x3mm_P0.45mm_EP0.64x2.4mm +DDB Package; 12-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_12_05-08-1723.pdf) +DFN 0.45 +0 +15 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.5mm_EP1.6x2.5mm +DFN, 12 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MIC2207-2MHz-3A-PWM-Buck-Regulator-DS20006470A.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +17 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.5mm_EP1.6x2.5mm_ThermalVias +DFN, 12 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MIC2207-2MHz-3A-PWM-Buck-Regulator-DS20006470A.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +24 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.5mm_EP2.05x2.86mm +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +17 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.45mm_EP1.65x2.38mm +DFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/DFN_12_05-08-1725.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +17 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.45mm_EP1.65x2.38mm_ThermalVias +DFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/DFN_12_05-08-1725.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +24 +13 +Package_DFN_QFN +DFN-12-1EP_3x4mm_P0.5mm_EP1.7x3.3mm +DE/UE Package; 12-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_12_05-08-1695.pdf) +DFN 0.5 +0 +21 +13 +Package_DFN_QFN +DFN-12-1EP_4x4mm_P0.5mm_EP2.66x3.38mm +DF Package; 12-Lead Plastic DFN (4mm x 4mm) (see Linear Technology 05081733_A_DF12.pdf) +DFN 0.5 +0 +21 +13 +Package_DFN_QFN +DFN-12-1EP_4x4mm_P0.65mm_EP2.64x3.54mm +DFN12, 4x4, 0.65P; CASE 506CE (see ON Semiconductor 506CE.PDF) +DFN 0.65 +0 +21 +13 +Package_DFN_QFN +DFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm +DD Package; 14-Lead Plastic DFN (3mm x 3mm) (http://pdfserv.maximintegrated.com/land_patterns/90-0063.PDF) +DFN 0.40 +0 +19 +15 +Package_DFN_QFN +DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm +14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf) +VDFN DFN 0.65mm +0 +23 +15 +Package_DFN_QFN +DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm_ThermalVias +14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf) +VDFN DFN 0.65mm +0 +33 +15 +Package_DFN_QFN +DFN-14-1EP_3x4mm_P0.5mm_EP1.7x3.3mm +DE Package; 14-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_14_05-08-1708.pdf) +DFN 0.5 +0 +23 +15 +Package_DFN_QFN +DFN-14_1.35x3.5mm_P0.5mm +DFN, 14 Pin (https://m.littelfuse.com/media?resourcetype=datasheets&itemid=9fbe09c9-efee-4022-a889-ca0005cd9b07&filename=littelfuse-tvs-diode-array-sp3012-datasheet#page=5), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +14 +14 +Package_DFN_QFN +DFN-16-1EP_3x4mm_P0.45mm_EP1.7x3.3mm +DE Package; 16-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_16_05-08-1732.pdf) +DFN 0.45 +0 +25 +17 +Package_DFN_QFN +DFN-16-1EP_3x5mm_P0.5mm_EP1.66x4.4mm +DHC Package; 16-Lead Plastic DFN (5mm x 3mm) (see Linear Technology DFN_16_05-08-1706.pdf) +DFN 0.5 +0 +27 +17 +Package_DFN_QFN +DFN-16-1EP_4x5mm_P0.5mm_EP2.44x4.34mm +DHD Package; 16-Lead Plastic DFN (5mm x 4mm) (see Linear Technology 05081707_A_DHD16.pdf) +DFN 0.5 +0 +25 +17 +Package_DFN_QFN +DFN-16-1EP_5x5mm_P0.5mm_EP3.46x4mm +DH Package; 16-Lead Plastic DFN (5mm x 5mm) (see Linear Technology DFN_16_05-08-1709.pdf) +DFN 0.5 +0 +26 +17 +Package_DFN_QFN +DFN-18-1EP_3x5mm_P0.5mm_EP1.66x4.4mm +DHC Package; 18-Lead Plastic DFN (5mm x 3mm) (see Linear Technology 05081955_0_DHC18.pdf) +DFN 0.5 +0 +29 +19 +Package_DFN_QFN +DFN-18-1EP_4x5mm_P0.5mm_EP2.44x4.34mm +DHD Package; 18-Lead Plastic DFN (5mm x 4mm) (see Linear Technology DFN_18_05-08-1778.pdf) +DFN 0.5 +0 +27 +19 +Package_DFN_QFN +DFN-20-1EP_5x6mm_P0.5mm_EP3.24x4.24mm +DFN20, 6x5, 0.5P; CASE 505AB (see ON Semiconductor 505AB.PDF) +DFN 0.5 +0 +33 +21 +Package_DFN_QFN +DFN-22-1EP_5x6mm_P0.5mm_EP3.14x4.3mm +DFN22 6*5*0.9 MM, 0.5 P; CASE 506AF\xe2\x88\x9201 (see ON Semiconductor 506AF.PDF) +DFN 0.5 +0 +35 +23 +Package_DFN_QFN +DFN-24-1EP_4x7mm_P0.5mm_EP2.64x6.44mm +DKD Package; 24-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_24_05-08-1864.pdf) +DFN 0.5 +0 +35 +25 +Package_DFN_QFN +DFN-32-1EP_4x7mm_P0.4mm_EP2.64x6.44mm +DKD Package; 32-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_32_05-08-1734.pdf) +DFN 0.4 +0 +43 +33 +Package_DFN_QFN +DFN-44-1EP_5x8.9mm_P0.4mm_EP3.7x8.4mm +DFN44 8.9x5, 0.4P; CASE 506BU-01 (see ON Semiconductor 506BU.PDF) +DFN 0.4 +0 +63 +45 +Package_DFN_QFN +DFN-S-8-1EP_6x5mm_P1.27mm +8-Lead Plastic Dual Flat, No Lead Package (MF) - 6x5 mm Body [DFN-S] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 1.27 +0 +16 +9 +Package_DFN_QFN +DHVQFN-14-1EP_2.5x3mm_P0.5mm_EP1x1.5mm +DHVQFN, 14 Pin (JEDEC MO-241/VAA, https://assets.nexperia.com/documents/package-information/SOT762-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DHVQFN NoLead +0 +16 +15 +Package_DFN_QFN +DHVQFN-16-1EP_2.5x3.5mm_P0.5mm_EP1x2mm +DHVQFN, 16 Pin (JEDEC MO-241/VAB, https://assets.nexperia.com/documents/package-information/SOT763-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DHVQFN NoLead +0 +19 +17 +Package_DFN_QFN +DHVQFN-20-1EP_2.5x4.5mm_P0.5mm_EP1x3mm +DHVQFN, 20 Pin (JEDEC MO-241/VAC, https://assets.nexperia.com/documents/package-information/SOT764-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DHVQFN NoLead +0 +23 +21 +Package_DFN_QFN +Diodes_DFN1006-3 +DFN package size 1006 3 pins +DFN package size 1006 3 pins +0 +3 +3 +Package_DFN_QFN +Diodes_UDFN-10_1.0x2.5mm_P0.5mm +U-DFN2510-10 package used by Diodes Incorporated (https://www.diodes.com/assets/Package-Files/U-DFN2510-10-Type-CJ.pdf) +UDFN-10 U-DFN2510-10 Diodes +0 +10 +10 +Package_DFN_QFN +Diodes_UDFN2020-6_Type-F +U-DFN2020-6 (Type F) (https://www.diodes.com/assets/Package-Files/U-DFN2020-6-Type-F.pdf) +U-DFN2020-6 (Type F) +0 +8 +8 +Package_DFN_QFN +Diodes_ZL32_TQFN-32-1EP_3x6mm_P0.4mm_EP1.25x3.5mm +Diodes ZL32 TQFN, 32 Pin (https://www.diodes.com/assets/Package-Files/ZL32.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Diodes TQFN NoLead +0 +41 +33 +Package_DFN_QFN +HVQFN-16-1EP_3x3mm_P0.5mm_EP1.5x1.5mm +HVQFN, 16 Pin (https://www.nxp.com/docs/en/package-information/SOT758-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +21 +17 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +34 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +29 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +39 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +34 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +39 +25 +Package_DFN_QFN +HVQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +HVQFN, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT617-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +42 +33 +Package_DFN_QFN +HVQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +HVQFN, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT617-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +59 +33 +Package_DFN_QFN +HVQFN-40-1EP_6x6mm_P0.5mm_EP4.1x4.1mm +HVQFN, 40 Pin (https://www.nxp.com/docs/en/package-information/SOT618-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +50 +41 +Package_DFN_QFN +HVQFN-40-1EP_6x6mm_P0.5mm_EP4.1x4.1mm_ThermalVias +HVQFN, 40 Pin (https://www.nxp.com/docs/en/package-information/SOT618-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +67 +41 +Package_DFN_QFN +Infineon_MLPQ-16-14-1EP_4x4mm_P0.5mm +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +mlpq 32 7x7mm +0 +19 +15 +Package_DFN_QFN +Infineon_MLPQ-40-32-1EP_7x7mm_P0.5mm +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +mlpq 32 7x7mm +0 +76 +33 +Package_DFN_QFN +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2052mpbf.pdf?fileId=5546d462533600a401535675d3b32788) +mlpq 32 7x7mm +0 +115 +49 +Package_DFN_QFN +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_EP5.55x5.55mm +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793) +mlpq 32 7x7mm +0 +113 +49 +Package_DFN_QFN +Infineon_PQFN-22-15-4EP_6x5mm_P0.65mm +PQFN 22 leads, 5x6mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4301.pdf?fileId=5546d462533600a4015355d5fc691819, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +pqfn 22 5x6mm +0 +56 +15 +Package_DFN_QFN +Infineon_PQFN-44-31-5EP_7x7mm_P0.5mm +PQFN 44 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4302.pdf?fileId=5546d462533600a4015355d602a9181d, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +pqfn 44 7x7mm +0 +125 +27 +Package_DFN_QFN +LQFN-10-1EP_2x2mm_P0.5mm_EP0.7x0.7mm +LQFN, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081644_0_LQFN10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LQFN NoLead +0 +12 +11 +Package_DFN_QFN +LQFN-12-1EP_2x2mm_P0.5mm_EP0.7x0.7mm +LQFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081530_B_LQFN12.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LQFN NoLead +0 +14 +13 +Package_DFN_QFN +LQFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +LQFN, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081595_0_lqfn16.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LQFN NoLead +0 +18 +17 +Package_DFN_QFN +Linear_DE14MA +14-Lead Plastic DFN, 4mm x 3mm (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081731_C_DE14MA.pdf) +DFN 0.5 +0 +14 +14 +Package_DFN_QFN +Linear_UGK52_QFN-46-52 +Linear UKG52(46) package, QFN-52-1EP variant (see http://cds.linear.com/docs/en/datasheet/3886fe.pdf) +QFN 0.5 +0 +62 +47 +Package_DFN_QFN +MLF-6-1EP_1.6x1.6mm_P0.5mm_EP0.5x1.26mm +MLF, 6 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5353.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +9 +7 +Package_DFN_QFN +MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm +8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf) +DFN MLF 0.65 +0 +12 +9 +Package_DFN_QFN +MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm_ThermalVias +8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf) +DFN MLF 0.65 +0 +15 +9 +Package_DFN_QFN +MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +25 +21 +Package_DFN_QFN +MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +30 +21 +Package_DFN_QFN +MLPQ-16-1EP_4x4mm_P0.65mm_EP2.8x2.8mm +Micro Leadframe Package, 16 pin with exposed pad +MLPQ- 0.65 +0 +21 +17 +Package_DFN_QFN +MPS_QFN-12_2x2mm_P0.4mm +MPS QFN, 12 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP5087A#page24), generated with kicad-footprint-generator ipc_noLead_generator.py +MPS QFN NoLead +0 +12 +12 +Package_DFN_QFN +Maxim_FC2QFN-14_2.5x2.5mm_P0.5mm +14-FC2QFN, 14/12 Pin, https://pdfserv.maximintegrated.com/land_patterns/90-100127.PDF +FC2QFN NoLead +0 +12 +12 +Package_DFN_QFN +Maxim_TDFN-6-1EP_3x3mm_P0.95mm_EP1.5x2.3mm +Maxim TDFN, 6 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/MAX4460-MAX4462.pdf#page=19, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tdfn-ep/21-0137.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Maxim TDFN NoLead +0 +11 +7 +Package_DFN_QFN +Maxim_TDFN-12-1EP_3x3mm_P0.5mm_EP1.7x2.5mm +Maxim TDFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/land-pattern/tdfn/90-0397.pdf) +DFN NoLead +0 +17 +13 +Package_DFN_QFN +Maxim_TDFN-12-1EP_3x3mm_P0.5mm_EP1.7x2.5mm_ThermalVias +Maxim TDFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/land-pattern/tdfn/90-0397.pdf) +DFN NoLead +0 +23 +13 +Package_DFN_QFN +Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm +Micrel MLF, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic23050.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Micrel MLF NoLead +0 +11 +9 +Package_DFN_QFN +Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm_ThermalVias +Micrel MLF, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic23050.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Micrel MLF NoLead +0 +16 +9 +Package_DFN_QFN +Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.8x1.3mm_ThermalVias +http://ww1.microchip.com/downloads/en/DeviceDoc/mic2290.pdf +mlf 8 2x2 mm +0 +14 +9 +Package_DFN_QFN +Microchip_8E-16 +16-Lead Quad Flat, No Lead Package (8E) - 4x4x0.9 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN Microchip 8E 16 +0 +20 +17 +Package_DFN_QFN +Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm +QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf) +QFN dual row +0 +49 +45 +Package_DFN_QFN +Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm_ThermalVias +QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf) +QFN dual row +0 +59 +45 +Package_DFN_QFN +Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm +QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf) +QFN dual row +0 +74 +65 +Package_DFN_QFN +Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm_ThermalVias +QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf) +QFN dual row +0 +91 +65 +Package_DFN_QFN +Microsemi_QFN-40-32-2EP_6x8mm_P0.5mm +40-Lead (32-Lead Populated) Plastic Quad Flat, No Lead Package - 6x8x0.9mm Body (https://www.microsemi.com/document-portal/doc_download/131677-pd70224-data-sheet) +QFN 0.5 +0 +92 +34 +Package_DFN_QFN +Mini-Circuits_DL805 +https://ww2.minicircuits.com/case_style/DL805.pdf +RF Switch +0 +11 +9 +Package_DFN_QFN +Mini-Circuits_FG873-4_3x3mm +Mini Circuits Case style FG (https://ww2.minicircuits.com/case_style/FG873.pdf) +FG873 +0 +4 +4 +Package_DFN_QFN +NXP_LQFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_16xMask0.45x0.45 +LQFN, 48 Pin (https://www.nxp.com/docs/en/package-information/98ASA00694D.pdf) +NXP LQFN NoLead +0 +65 +49 +Package_DFN_QFN +NXP_LQFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_16xMask0.45x0.45_ThermalVias +LQFN, 48 Pin (https://www.nxp.com/docs/en/package-information/98ASA00694D.pdf) +NXP LQFN NoLead +0 +75 +49 +Package_DFN_QFN +Nordic_AQFN-73-1EP_7x7mm_P0.5mm +http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf52%2Fdita%2Fnrf52%2Fchips%2Fnrf52840.html +AQFN 7mm +0 +78 +74 +Package_DFN_QFN +Nordic_AQFN-94-1EP_7x7mm_P0.4mm +aQFN, Nordic, nRF5340, https://infocenter.nordicsemi.com/pdf/nRF5340_PS_v1.2.pdf +aqfn qfn nordic nrf nrf5340 aqfn94 +0 +103 +95 +Package_DFN_QFN +OnSemi_DFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P (https://www.onsemi.com/pub/Collateral/511AT.PDF) +DFN 0.5 +0 +8 +8 +Package_DFN_QFN +OnSemi_SIP-38-6EP-9x7mm_P0.65mm_EP1.2x1.2mm +On Semiconductor, SIP-38, 9x7mm, (https://www.onsemi.com/pub/Collateral/AX-SIP-SFEU-D.PDF#page=19) +On Semiconductor SIP +0 +44 +44 +Package_DFN_QFN +OnSemi_UDFN-8_1.2x1.8mm_P0.4mm +8-Lead Plastic Dual Flat, No Lead Package, 1.2x1.8x1.55 mm Body [UDFN] (See http://www.onsemi.com/pub/Collateral/NLSV2T244-D.PDF) +dfn udfn dual flat +0 +8 +8 +Package_DFN_QFN +OnSemi_UDFN-14-1EP_4x4mm_P0.5mm_EP2.7x3.4mm +OnSemi UDFN, 14 Pin (https://www.onsemi.com/pub/Collateral/506CM.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +OnSemi UDFN NoLead +0 +24 +15 +Package_DFN_QFN +OnSemi_UDFN-16-1EP_1.35x3.3mm_P0.4mm_EP0.4x2.8mm +OnSemi UDFN, 16 Pin (https://www.onsemi.com/pdf/datasheet/cm1624-d.pdf#page=7), generated with kicad-footprint-generator ipc_noLead_generator.py +OnSemi UDFN NoLead +0 +20 +17 +Package_DFN_QFN +OnSemi_VCT-28_3.5x3.5mm_P0.4mm +OnSemi VCT, 28 Pin (http://www.onsemi.com/pub/Collateral/601AE.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +OnSemi VCT NoLead +0 +28 +28 +Package_DFN_QFN +OnSemi_XDFN-10_1.35x2.2mm_P0.4mm +10-Lead Plastic XDFN (1.35mm x 2.2mm) (see https://www.onsemi.com/pdf/datasheet/emi8132-d.pdf) +OnSemi XDFN-10 0.4 +0 +10 +10 +Package_DFN_QFN +OnSemi_XDFN4-1EP_1.0x1.0mm_EP0.52x0.52mm +XDFN4 footprint (as found on the https://www.onsemi.com/pub/Collateral/NCP115-D.PDF) +OnSemi XDFN4 +0 +5 +5 +Package_DFN_QFN +PQFN-8-EP_6x5mm_P1.27mm_Generic +Universal Footprint for Thermally-enhanced SO-8 packages; compatible with Vishay PowerPAK SO−8, International Rectifier PQFN, Texas Instrument SON 5 × 6 mm (Q5A), Alpha and Omega DFN 5 × 6, ST Microelectronics PowerFLAT™ 5 × 6, Toshiba SOP Advance, Infineon Super SO8, NXP LFPAK (SOT669), Renesas WPAK(3F) / LFPAK, Fairchild Power 56, APEC PMPAK 5 × 6, MagnaChip PowerDFN56, ROHM HSOP8, UBIQ PRPAK56, NIKO−SEM PDFN 5 × 6, NEC 8-pin HVSON. Datasheets: https://www.onsemi.com/pub/Collateral/AND9137-D.PDF, https://assets.nexperia.com/documents/leaflet/75016838.pdf +Thermally-enhanced SO-8 PowerPAK PQFN Q5A PowerFLAT LFPAK SOT669 WPAK(3F) LFPAK Power56 PMPAK PowerDFN56 HSOP8 PRPAK56 PDFN HVSON +0 +21 +5 +Package_DFN_QFN +Panasonic_HQFN-16-1EP_4x4mm_P0.65mm_EP2.9x2.9mm +Panasonic HQFN-16, 4x4x0.85mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HQFN016-A-0404XZL_EN.pdf) +panasonic hqfn +0 +37 +17 +Package_DFN_QFN +Panasonic_HSON-8_8x8mm_P2.00mm +Panasonic HSON-8, 8x8x1.25mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HSON008-A-0808XXI_EN.pdf) +panasonic hson +0 +27 +9 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +QFN, 12 Pin (https://www.nxp.com/docs/en/data-sheet/MMZ09332B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +17 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +QFN, 12 Pin (https://www.nxp.com/docs/en/data-sheet/MMZ09332B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +32 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm +QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +17 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm_ThermalVias +QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +22 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.51mm_EP1.45x1.45mm +QFN, 12 Pin (https://ww2.minicircuits.com/case_style/DQ1225.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +17 +13 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +QFN, 16 Pin (https://www.st.com/resource/en/datasheet/tsv521.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias +QFN, 16 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py +QFN DFN_QFN +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm +QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm_ThermalVias +QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +26 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm +QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias +QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +26 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm +QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm_ThermalVias +QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +26 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm +QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm_ThermalVias +QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm +QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack +QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack_ThermalVias +QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias +QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm +QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm_ThermalVias +QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm +QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm_ThermalVias +QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm +QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm_ThermalVias +QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm +QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias +QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm_ThermalVias +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +32 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +27 +21 +Package_DFN_QFN +QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +40 +21 +Package_DFN_QFN +QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +35 +21 +Package_DFN_QFN +QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm +QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm_ThermalVias +QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +34 +25 +Package_DFN_QFN +QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm +QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +25 +Package_DFN_QFN +QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm_ThermalVias +QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm +QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm_ThermalVias +QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm +QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.15x2.15mm +QFN, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.15x2.15mm_ThermalVias +QFN, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm +QFN, 24 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm_ThermalVias +QFN, 24 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.75x2.75mm +QFN, 24 Pin (https://www.infineon.com/dgdl/Infineon-EZ-PD_BCR_Datasheet_USB_Type-C_Port_Controller_for_Power_Sinks-DataSheet-v03_00-EN.pdf?fileId=8ac78c8c7d0d8da4017d0ee7ce9d70ad), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.75x2.75mm_ThermalVias +QFN, 24 Pin (https://www.infineon.com/dgdl/Infineon-EZ-PD_BCR_Datasheet_USB_Type-C_Port_Controller_for_Power_Sinks-DataSheet-v03_00-EN.pdf?fileId=8ac78c8c7d0d8da4017d0ee7ce9d70ad), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +25 +Package_DFN_QFN +QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +44 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +51 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm +QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm_ThermalVias +QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm +QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +34 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm_ThermalVias +QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +67 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.25x3.25mm +QFN, 24 Pin (https://semtech.my.salesforce.com/sfc/p/#E0000000JelG/a/44000000MDkO/lWPNMeJClEs8Zvyu7AlDlKSyZqhYdVpQzFLVfUp.EXs), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.25x3.25mm_ThermalVias +QFN, 24 Pin (https://semtech.my.salesforce.com/sfc/p/#E0000000JelG/a/44000000MDkO/lWPNMeJClEs8Zvyu7AlDlKSyZqhYdVpQzFLVfUp.EXs), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +51 +25 +Package_DFN_QFN +QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +29 +Package_DFN_QFN +QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +53 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm +QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm_ThermalVias +QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm +QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm_ThermalVias +QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +35 +29 +Package_DFN_QFN +QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +48 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +QFN, 28 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/TMC2202_TMC2208_TMC2224_datasheet_rev1.14.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +QFN, 28 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/TMC2202_TMC2208_TMC2224_datasheet_rev1.14.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +71 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +55 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.75x3.75mm +QFN, 28 Pin (https://www.cmlmicro.com/wp-content/uploads/2017/10/CMX901_ds.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.75x3.75mm_ThermalVias +QFN, 28 Pin (https://www.cmlmicro.com/wp-content/uploads/2017/10/CMX901_ds.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +29 +Package_DFN_QFN +QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +41 +29 +Package_DFN_QFN +QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +62 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm +QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm_ThermalVias +QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +71 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +71 +29 +Package_DFN_QFN +QFN-28_4x4mm_P0.5mm +QFN, 28 Pin (http://www.st.com/resource/en/datasheet/stm32f031k6.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +28 +28 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +47 +33 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm +QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm_ThermalVias +QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm +QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias +QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm +QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm_ThermalVias +QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm +QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm_ThermalVias +QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm +QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm_ThermalVias +QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm +QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm_ThermalVias +QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm +QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm_ThermalVias +QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +33 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm +QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +46 +37 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm_ThermalVias +QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +56 +37 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm +QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +37 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm_ThermalVias +QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +56 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm +QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +46 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm_ThermalVias +QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +63 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm +QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +46 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm_ThermalVias +QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +63 +37 +Package_DFN_QFN +QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +47 +39 +Package_DFN_QFN +QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm_ThermalVias +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +56 +39 +Package_DFN_QFN +QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +54 +39 +Package_DFN_QFN +QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm_ThermalVias +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +63 +39 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +50 +41 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm_ThermalVias +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +67 +41 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm +QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +50 +41 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias +QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +67 +41 +Package_DFN_QFN +QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +57 +41 +Package_DFN_QFN +QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +83 +41 +Package_DFN_QFN +QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm +QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +55 +43 +Package_DFN_QFN +QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm_ThermalVias +QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +76 +43 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +61 +45 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm_ThermalVias +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +87 +45 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +61 +45 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +87 +45 +Package_DFN_QFN +QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +70 +45 +Package_DFN_QFN +QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm_ThermalVias +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +45 +Package_DFN_QFN +QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm +44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN]; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf +QFN 0.65 +0 +49 +45 +Package_DFN_QFN +QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm_ThermalVias +44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN] with thermal vias; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf +QFN 0.65 +0 +55 +45 +Package_DFN_QFN +QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=47), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm_ThermalVias +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=47), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm +QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm_ThermalVias +QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm_ThermalVias +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm +QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm_ThermalVias +QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm +QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm_ThermalVias +QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=69), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_ThermalVias +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=69), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm_ThermalVias +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm +QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm_ThermalVias +QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm +QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm_ThermalVias +QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm +QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm_ThermalVias +QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm +QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +49 +Package_DFN_QFN +QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm_ThermalVias +QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +49 +Package_DFN_QFN +QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm +QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +53 +Package_DFN_QFN +QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm_ThermalVias +QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +104 +53 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm +QFN, 56 Pin (https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#page=634), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +61 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm_ThermalVias +QFN, 56 Pin (https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#page=634), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +66 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP4x4mm +QFN, 56 Pin (https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf#page=41), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +66 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP4x4mm_ThermalVias +QFN, 56 Pin (https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf#page=41), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +71 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm +QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm_ThermalVias +QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm_ThermalVias +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm +QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm_ThermalVias +QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm_ThermalVias_TopTented +QFN, 56 Pin top tented version (manually modified). For information see: http://www.cypress.com/file/138911/download +QFN DFN_QFN +0 +115 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm +QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm_ThermalVias +QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.9x5.9mm +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001734B.pdf#page=50), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.9x5.9mm_ThermalVias +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001734B.pdf#page=50), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP6.1x6.1mm +QFN, 56 Pin (http://intantech.com/files/Intan_RHD2000_series_datasheet.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP6.1x6.1mm_ThermalVias +QFN, 56 Pin (http://intantech.com/files/Intan_RHD2000_series_datasheet.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.4x3.4mm +QFN, 64 Pin (www.intel.com/content/www/us/en/ethernet-controllers/i210-ethernet-controller-datasheet.html), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.4x3.4mm_ThermalVias +QFN, 64 Pin (www.intel.com/content/www/us/en/ethernet-controllers/i210-ethernet-controller-datasheet.html), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +79 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm +QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm_ThermalVias +QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +79 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.1x4.1mm +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/cp2108-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.1x4.1mm_ThermalVias +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/cp2108-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +79 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm +QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm_ThermalVias +QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.2x5.2mm +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/Si5345-44-42-D-DataSheet.pdf#page=51), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.2x5.2mm_ThermalVias +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/Si5345-44-42-D-DataSheet.pdf#page=51), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm +QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm_ThermalVias +QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm_ThermalVias +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +101 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +151 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm +QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias +QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.25x7.25mm +64-Lead Plastic Quad Flat No-Lead Package, 9x9mm Body (see Atmel Appnote 8826) +QFN 0.5 +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.35x7.35mm +64-Lead Plastic Quad Flat, No Lead Package (MR) - 9x9x0.9 mm Body [QFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN 0.5 +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +101 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +151 +65 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm +QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +85 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm_ThermalVias +QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP6.4x6.4mm +QFN, 68 Pin (https://www.st.com/resource/en/datasheet/stm32h725ze.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +85 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP6.4x6.4mm_ThermalVias +QFN, 68 Pin (https://www.st.com/resource/en/datasheet/stm32h725ze.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +69 +Package_DFN_QFN +QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm +QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +82 +73 +Package_DFN_QFN +QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm_ThermalVias +QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +135 +73 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm +QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +86 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm_ThermalVias +QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +103 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP5.81x6.31mm +QFN, 76 Pin (https://ftdichip.com/wp-content/uploads/2020/07/DS_FT600Q-FT601Q-IC-Datasheet.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +78 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP5.81x6.31mm_ThermalVias +QFN, 76 Pin (https://ftdichip.com/wp-content/uploads/2020/07/DS_FT600Q-FT601Q-IC-Datasheet.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +103 +77 +Package_DFN_QFN +Qorvo_DFN-8-1EP_2x2mm_P0.5mm +DFN 8 2x2mm, 0.5mm http://www.qorvo.com/products/d/da000896 +DFN 0.5 Qorvo 2x2mm +0 +9 +9 +Package_DFN_QFN +Qorvo_TQFN66-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm +Qorvo TQFN66, 48 Pin (https://www.qorvo.com/products/d/da006847), generated with kicad-footprint-generator ipc_noLead_generator.py +Qorvo TQFN66 NoLead +0 +58 +49 +Package_DFN_QFN +Qorvo_TQFN66-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm_ThermalVias +Qorvo TQFN66, 48 Pin (https://www.qorvo.com/products/d/da006847), generated with kicad-footprint-generator ipc_noLead_generator.py +Qorvo TQFN66 NoLead +0 +75 +49 +Package_DFN_QFN +ROHM_DFN0604-3 +DFN package size 0604 3 pins +DFN package size 0604 3 pins +0 +3 +3 +Package_DFN_QFN +ST_UFDFPN-12-1EP_3x3mm_P0.5mm_EP1.4x2.55mm +ST UFDFPN, 12 Pin (https://www.st.com/resource/en/datasheet/st25dv04k.pdf#page=152), generated with kicad-footprint-generator ipc_noLead_generator.py +ST UFDFPN NoLead +0 +14 +13 +Package_DFN_QFN +ST_UFQFPN-20_3x3mm_P0.5mm +UFQFPN 20-lead, 3 x 3 mm, 0.5 mm pitch, ultra thin fine pitch quad flat package (http://www.st.com/resource/en/datasheet/stm8s003f3.pdf) +UFQFPN 0.5 +0 +20 +20 +Package_DFN_QFN +ST_UQFN-6L_1.5x1.7mm_P0.5mm +ST UQFN 6 pin 0.5mm Pitch http://www.st.com/resource/en/datasheet/ecmf02-2amx6.pdf +UQFN DFN 0.5 ST +0 +6 +6 +Package_DFN_QFN +SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm +20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf +QFN 0.5 +0 +25 +21 +Package_DFN_QFN +SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias +20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads and thermal vias; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf +QFN 0.5 +0 +31 +21 +Package_DFN_QFN +TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm +TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +11 +7 +Package_DFN_QFN +TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm_ThermalVias +TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +18 +7 +Package_DFN_QFN +TDFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.2mm +TDFN, 8 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0168.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm +TDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/MCP6V66-Family-Data-Sheet-DS20006266A.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.4x1.4mm +TDFN, 8 Pin (http://ww1.microchip.com/downloads/en/devicedoc/20005514a.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm +8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf) +TDFN DFN 0.5mm +0 +12 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm_ThermalVias +8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf) +TDFN DFN 0.5mm +0 +17 +9 +Package_DFN_QFN +TDFN-8_1.4x1.6mm_P0.4mm +TDFN, 8 Pin (https://www.silabs.com/documents/public/data-sheets/si7210-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +8 +8 +Package_DFN_QFN +TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm +TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +11 +Package_DFN_QFN +TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm_ThermalVias +TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +16 +11 +Package_DFN_QFN +TDFN-12-1EP_3x3mm_P0.4mm_EP1.7x2.45mm +TDFN, 12 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-tdfn-12pin-l123x3c), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +25 +13 +Package_DFN_QFN +TDFN-12-1EP_3x3mm_P0.4mm_EP1.7x2.45mm_ThermalVias +TDFN, 12 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-tdfn-12pin-l123x3c), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +32 +13 +Package_DFN_QFN +TDFN-12_2x3mm_P0.5mm +TDFN, 12 Pads, No exposed, http://www.st.com/resource/en/datasheet/stm6600.pdf +DFN +0 +12 +12 +Package_DFN_QFN +TDFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm +TDFN, 14 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0137.PDF (T1433-2C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +19 +15 +Package_DFN_QFN +TDFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm_ThermalVias +TDFN, 14 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0137.PDF (T1433-2C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +26 +15 +Package_DFN_QFN +TQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +TQFN, 16 Pin (https://www.diodes.com/assets/Datasheets/PI6C5946002.pdf#page=12), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead Pericom-TQFN-16-ZH Analog-CP-16-22 +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +26 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +26 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +31 +17 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +30 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-5C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-5C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.9x2.9mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100172.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.9x2.9mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100172.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +TQFN, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +29 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +39 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +TQFN, 24 Pin (http://pdfserv.maxim-ic.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +29 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +TQFN, 24 Pin (http://pdfserv.maxim-ic.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +39 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack +TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +29 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack_ThermalVias +TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +39 +25 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +33 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm_ThermalVias +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +38 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +33 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm_ThermalVias +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +43 +29 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +42 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +47 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +47 +33 +Package_DFN_QFN +TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm +TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +45 +41 +Package_DFN_QFN +TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm_ThermalVias +TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +55 +41 +Package_DFN_QFN +TQFN-44-1EP_7x7mm_P0.5mm_EP4.7x4.7mm +TQFN, 44 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0144.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead T4477+2 T4477+2C T4477+3 +0 +54 +45 +Package_DFN_QFN +TQFN-44-1EP_7x7mm_P0.5mm_EP4.7x4.7mm_ThermalVias +TQFN, 44 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0144.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead T4477+2 T4477+2C T4477+3 +0 +71 +45 +Package_DFN_QFN +TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm +TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +58 +49 +Package_DFN_QFN +TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm_ThermalVias +TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +75 +49 +Package_DFN_QFN +Texas_B3QFN-14-1EP_5x5.5mm_P0.65mm +Texas instruments QFN Package, datasheet: https://www.ti.com/lit/ds/symlink/tpsm53602.pdf +Texas instruments QFN +0 +15 +15 +Package_DFN_QFN +Texas_B3QFN-14-1EP_5x5.5mm_P0.65mm_ThermalVia +Texas instruments QFN Package, datasheet: https://www.ti.com/lit/ds/symlink/tpsm53602.pdf +Texas instruments QFN +0 +34 +15 +Package_DFN_QFN +Texas_DRB0008A +DFN-8, 3x3x1mm, http://www.ti.com/lit/ds/symlink/ucc24610.pdf +DRB0008A +0 +23 +9 +Package_DFN_QFN +Texas_MOF0009A +Texas Instruments, QFM MOF0009A, 6x8x2mm (http://www.ti.com/lit/ml/mpsi063a/mpsi063a.pdf) +ti qfm mof0009a +0 +24 +9 +Package_DFN_QFN +Texas_QFN-41_10x16mm +QFN, 41 Pin (http://www.ti.com/lit/ml/mpqf506/mpqf506.pdf) +QFN DFN_QFN +0 +65 +41 +Package_DFN_QFN +Texas_R-PUQFN-N10 +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=MPQF186&fileType=pdf +Texas_R-PUQFN-N10 +0 +10 +10 +Package_DFN_QFN +Texas_R-PUQFN-N12 +Texas_R-PUQFN-N12 http://www.ti.com/lit/ds/symlink/txb0104.pdf +Texas_R-PUQFN-N12 +0 +13 +12 +Package_DFN_QFN +Texas_RGC0064B_VQFN-64-1EP_9x9mm_P0.5mm_EP4.25x4.25mm +Texas RGC0064B VQFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=122), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +69 +65 +Package_DFN_QFN +Texas_RGC0064B_VQFN-64-1EP_9x9mm_P0.5mm_EP4.25x4.25mm_ThermalVias +Texas RGC0064B VQFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=122), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +127 +65 +Package_DFN_QFN +Texas_RGE0024C_VQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +Texas RGE0024C VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RGE0024C_VQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias +Texas RGE0024C VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_RGE0024H_VQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +Texas RGE0024H VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RGE0024H_VQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +Texas RGE0024H VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_RGP0020D_VQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +Texas RGP0020D VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGP0020D_VQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +Texas RGP0020D VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +35 +21 +Package_DFN_QFN +Texas_RGP0020H_VQFN-20-1EP_4x4mm_P0.5mm_EP2.4x2.4mm +Texas RGP0020H VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGP0020H_VQFN-20-1EP_4x4mm_P0.5mm_EP2.4x2.4mm_ThermalVias +Texas RGP0020H VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +35 +21 +Package_DFN_QFN +Texas_RGV0016A_VQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +Texas RGV0016A VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RGV0016A_VQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +Texas RGV0016A VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RGW0020A_VQFN-20-1EP_5x5mm_P0.65mm_EP3.15x3.15mm +Texas RGW0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps7a47.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGW0020A_VQFN-20-1EP_5x5mm_P0.65mm_EP3.15x3.15mm_ThermalVias +Texas RGW0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps7a47.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +47 +21 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N16_EP2.05x2.55mm +QFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts5v330.pdf#page=28) +QFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N16_EP2.05x2.55mm_ThermalVias +QFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts5v330.pdf#page=28) +QFN NoLead +0 +27 +18 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N20_EP2.05x3.05mm +QFN, 20 Pin, RGY0020A (https://www.ti.com/lit/ds/symlink/txb0108.pdf#page=33) +QFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N20_EP2.05x3.05mm_ThermalVias +QFN, 20 Pin, RGY0020A (https://www.ti.com/lit/ds/symlink/txb0108.pdf#page=33) +QFN NoLead +0 +29 +21 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40) +QFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm_ThermalVias +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40) +QFN NoLead +0 +36 +25 +Package_DFN_QFN +Texas_RGZ0048A_VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +Texas RGZ0048A VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=113), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +65 +49 +Package_DFN_QFN +Texas_RGZ0048A_VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +Texas RGZ0048A VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=113), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +111 +49 +Package_DFN_QFN +Texas_RHA0040B_VQFN-40-1EP_6x6mm_P0.5mm_EP4.15x4.15mm +Texas RHA0040B VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=72 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +50 +41 +Package_DFN_QFN +Texas_RHA0040B_VQFN-40-1EP_6x6mm_P0.5mm_EP4.15x4.15mm_ThermalVias +Texas RHA0040B VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=72 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +83 +41 +Package_DFN_QFN +Texas_RHA0040D_VQFN-40-1EP_6x6mm_P0.5mm_EP2.9x2.9mm +Texas RHA0040D VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +45 +41 +Package_DFN_QFN +Texas_RHA0040D_VQFN-40-1EP_6x6mm_P0.5mm_EP2.9x2.9mm_ThermalVias +Texas RHA0040D VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +55 +41 +Package_DFN_QFN +Texas_RHA0040E_VQFN-40-1EP_6x6mm_P0.5mm_EP3.52x2.62mm +Texas RHA0040E VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=57 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +47 +41 +Package_DFN_QFN +Texas_RHA0040E_VQFN-40-1EP_6x6mm_P0.5mm_EP3.52x2.62mm_ThermalVias +Texas RHA0040E VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=57 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +60 +41 +Package_DFN_QFN +Texas_RHA_VQFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm +Texas RHA VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +50 +41 +Package_DFN_QFN +Texas_RHA_VQFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias +Texas RHA VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +83 +41 +Package_DFN_QFN +Texas_RHB0032E_VQFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm +Texas RHB0032E VQFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +42 +33 +Package_DFN_QFN +Texas_RHB0032E_VQFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm_ThermalVias +Texas RHB0032E VQFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +59 +33 +Package_DFN_QFN +Texas_RHH0036C_VQFN-36-1EP_6x6mm_P0.5mm_EP4.4x4.4mm +Texas RHH0036C VQFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +46 +37 +Package_DFN_QFN +Texas_RHH0036C_VQFN-36-1EP_6x6mm_P0.5mm_EP4.4x4.4mm_ThermalVias +Texas RHH0036C VQFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +79 +37 +Package_DFN_QFN +Texas_RJE0020A_VQFN-20-1EP_3x3mm_P0.45mm_EP0.675x0.76mm +Texas RJE0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps51396a.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +22 +21 +Package_DFN_QFN +Texas_RJE0020A_VQFN-20-1EP_3x3mm_P0.45mm_EP0.675x0.76mm_ThermalVias +Texas RJE0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps51396a.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +24 +21 +Package_DFN_QFN +Texas_RMG0012A_WQFN-12_1.8x1.8mm_P0.4mm +Texas RMG0012A WQFN, 12 Pin (https://www.ti.com/lit/ds/symlink/tmux131.pdf#page=18), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +12 +12 +Package_DFN_QFN +Texas_RNN0018A +Texas Instruments, VQFN-HR RNN0018A (http://www.ti.com/lit/ds/symlink/tps568215.pdf) +ti vqfn-hr rnn0018a +0 +26 +18 +Package_DFN_QFN +Texas_RSA_VQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm +Texas RSA VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +26 +17 +Package_DFN_QFN +Texas_RSA_VQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias +Texas RSA VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RSN_WQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm +Texas RSN WQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +37 +33 +Package_DFN_QFN +Texas_RSN_WQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm_ThermalVias +Texas RSN WQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +47 +33 +Package_DFN_QFN +Texas_RTE0016D_WQFN-16-1EP_3x3mm_P0.5mm_EP0.8x0.8mm +Texas RTE0016D WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/dac80504.pdf#page=47), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RTE0016D_WQFN-16-1EP_3x3mm_P0.5mm_EP0.8x0.8mm_ThermalVias +Texas RTE0016D WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/dac80504.pdf#page=47), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +20 +17 +Package_DFN_QFN +Texas_RTE_WQFN-16-1EP_3x3mm_P0.5mm_EP1.2x0.8mm +Texas RTE WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tps43060.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RTE_WQFN-16-1EP_3x3mm_P0.5mm_EP1.2x0.8mm_ThermalVias +Texas RTE WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tps43060.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +23 +17 +Package_DFN_QFN +Texas_RTW_WQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +Texas RTW WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RTW_WQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +Texas RTW WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_RTY_WQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +Texas RTY WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=36 MO-220 variation VGGC), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RTY_WQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +Texas RTY WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=36 MO-220 variation VGGC), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RUM0016A_WQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm +Texas RUM0016A WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RUM0016A_WQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias +Texas RUM0016A WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RUN0010A_WQFN-10_2x2mm_P0.5mm +Texas RUN0010A WQFN, 10 Pin (https://www.ti.com/lit/ds/symlink/tmp461.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +10 +10 +Package_DFN_QFN +Texas_RVA_VQFN-16-1EP_3.5x3.5mm_P0.5mm_EP2.14x2.14mm +Texas RVA VQFN, 16 Pin (https://www.ti.com/lit/pdf/MPQF232), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RVA_VQFN-16-1EP_3.5x3.5mm_P0.5mm_EP2.14x2.14mm_ThermalVias +Texas RVA VQFN, 16 Pin (https://www.ti.com/lit/pdf/MPQF232), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +26 +17 +Package_DFN_QFN +Texas_RVE0028A_VQFN-28-1EP_3.5x4.5mm_P0.4mm_EP2.1x3.1mm +Texas RVE0028A VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +33 +29 +Package_DFN_QFN +Texas_RVE0028A_VQFN-28-1EP_3.5x4.5mm_P0.4mm_EP2.1x3.1mm_ThermalVias +Texas RVE0028A VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +43 +29 +Package_DFN_QFN +Texas_RWH0032A +Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf) +ti rwh0032a +0 +71 +33 +Package_DFN_QFN +Texas_RWH0032A_ThermalVias +Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf) +ti rwh0032a +0 +94 +33 +Package_DFN_QFN +Texas_RWU0007A_VQFN-7_2x2mm_P0.5mm +Texas RWU0007A VQFN, 2x2mm, 7 Pin (https://www.ti.com/lit/ds/symlink/tps61022.pdf) +Texas VQFN NoLead +0 +13 +7 +Package_DFN_QFN +Texas_S-PDSO-N10_EP1.2x2mm +DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +Texas_S-PDSO-N10_EP1.2x2mm_ThermalVias +DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +22 +11 +Package_DFN_QFN +Texas_S-PVQFN-N14 +Texas_S-PVQFN-N14 http://www.ti.com/lit/ds/symlink/txb0104.pdf +Texas_S-PVQFN-N14_4.3x4.3_Pitch0.5mm_ThermalPad +0 +19 +15 +Package_DFN_QFN +Texas_S-PVQFN-N14_ThermalVias +Texas_S-PVQFN-N14_ThermalVias http://www.ti.com/lit/ds/symlink/txb0104.pdf +Texas_S-PVQFN-N14_ThermalVias +0 +24 +15 +Package_DFN_QFN +Texas_S-PWQFN-N20 +20-Pin Plastic Quad Flatpack No-Lead Package, Body 3.0x3.0x0.8mm, Texas Instruments (http://www.ti.com/lit/ds/symlink/tps22993.pdf) +QFN 0.4 +0 +24 +20 +Package_DFN_QFN +Texas_S-PWQFN-N100_EP5.5x5.5mm +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf +MultiRow QFN +0 +114 +105 +Package_DFN_QFN +Texas_S-PWQFN-N100_EP5.5x5.5mm_ThermalVias +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf +MultiRow QFN +0 +131 +105 +Package_DFN_QFN +Texas_S-PX2QFN-14 +Texas QFN, 14 Pin (http://www.ti.com/lit/ds/symlink/tlv9004.pdf#page=64), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas QFN NoLead +0 +14 +14 +Package_DFN_QFN +Texas_UQFN-10_1.5x2mm_P0.5mm +Texas RSE0010A UQFN, 10 Pin (https://www.ti.com/lit/ml/mpqf186d/mpqf186d.pdf) +Texas RSE0010 UQFN NoLead +0 +10 +10 +Package_DFN_QFN +Texas_VQFN-HR-12_2x2.5mm_P0.5mm +Texas VQFN-HR, 12 Pin, http://www.ti.com/lit/ml/mpqf508/mpqf508.pdf +RUX0012A Texas VQFN-HR NoLead +0 +12 +12 +Package_DFN_QFN +Texas_VQFN-HR-12_2x2.5mm_P0.5mm_ThermalVias +Texas VQFN-HR, 12 Pin, http://www.ti.com/lit/ml/mpqf508/mpqf508.pdf +RUX0012A Texas VQFN-HR NoLead +0 +16 +12 +Package_DFN_QFN +Texas_VQFN-HR-20_3x2.5mm_P0.5mm_RQQ0011A +Texas VQFN-HR, 11 Pin, https://www.ti.com/lit/ml/mpqf579/mpqf579.pdf +RQQ0011A +0 +15 +11 +Package_DFN_QFN +Texas_VQFN-RHL-20 +http://www.ti.com/lit/ds/symlink/bq51050b.pdf +RHL0020A +0 +33 +21 +Package_DFN_QFN +Texas_VQFN-RHL-20_ThermalVias +http://www.ti.com/lit/ds/symlink/bq51050b.pdf +RHL0020A +0 +41 +21 +Package_DFN_QFN +Texas_VQFN-RNR0011A-11 +RNR0011A, VQFN-11 (https://www.ti.com/lit/ds/symlink/tps61089.pdf#Page=27) +TI RNR0011A +0 +20 +11 +Package_DFN_QFN +Texas_WQFN-MR-100_3x3-DapStencil +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf +MultiRow QFN +0 +113 +105 +Package_DFN_QFN +Texas_WQFN-MR-100_ThermalVias_3x3-DapStencil +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf +MultiRow QFN +0 +126 +105 +Package_DFN_QFN +Texas_X2QFN-12_1.6x1.6mm_P0.4mm +Texas X2QFN, 12 Pin (http://www.ti.com/lit/ml/mpqf391c/mpqf391c.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas X2QFN NoLead +0 +12 +12 +Package_DFN_QFN +Texas_X2QFN-RUE-12_1.4x2mm_P0.4mm +Texas X2QFN-RUE, 12 Pin (https://www.ti.com/lit/ml/mpqf214b/mpqf214b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas X2QFN-RUE NoLead +0 +12 +12 +Package_DFN_QFN +UDC-QFN-20-4EP_3x4mm_P0.5mm_EP0.41x0.25mm +UDC QFN, 20 Pin, Exposed Pad Variation AB (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081536_B_UDC20(AB).pdf), modifed from generated QFN-20-1EP_3x4mm_P0.5 +QFN NoLead +0 +24 +24 +Package_DFN_QFN +UDFN-4-1EP_1x1mm_P0.65mm_EP0.48x0.48mm +UDFN-4_1x1mm_P0.65mm, http://ww1.microchip.com/downloads/en/DeviceDoc/MIC550x-300mA-Single-Output-LDO-in-Small-Packages-DS20006006A.pdf +UDFN-4_1x1mm_P0.65mm +0 +5 +5 +Package_DFN_QFN +UDFN-9_1.0x3.8mm_P0.5mm +9-pin UDFN package, 1.0x3.8mm, (Ref: https://katalog.we-online.de/pbs/datasheet/824014881.pdf) +UDFN SMD +0 +9 +9 +Package_DFN_QFN +UDFN-10_1.35x2.6mm_P0.5mm +http://www.st.com/content/ccc/resource/technical/document/datasheet/f2/11/8a/ed/40/31/40/56/DM00088292.pdf/files/DM00088292.pdf/jcr:content/translations/en.DM00088292.pdf +UDFN 0.5 uQFN +0 +10 +10 +Package_DFN_QFN +UFQFPN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm +UFQFPN, 32 Pin (https://www.st.com/resource/en/datasheet/stm32g071k8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UFQFPN NoLead +0 +37 +33 +Package_DFN_QFN +UFQFPN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias +UFQFPN, 32 Pin (https://www.st.com/resource/en/datasheet/stm32g071k8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UFQFPN NoLead +0 +47 +33 +Package_DFN_QFN +UQFN-10_1.3x1.8mm_P0.4mm +UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 9)), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +10 +10 +Package_DFN_QFN +UQFN-10_1.4x1.8mm_P0.4mm +UQFN 10pin, https://www.onsemi.com/pub/Collateral/488AT.PDF +UQFN-10_1.4x1.8mm_P0.4mm +0 +10 +10 +Package_DFN_QFN +UQFN-10_1.6x2.1mm_P0.5mm +UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 12)), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +10 +10 +Package_DFN_QFN +UQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm +16-Lead Ultra Thin Quad Flat, No Lead Package (UC) - 3x3x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN 0.5 +0 +21 +17 +Package_DFN_QFN +UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm +UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +21 +17 +Package_DFN_QFN +UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias +UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +31 +17 +Package_DFN_QFN +UQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm +16-Lead Ultra Thin Plastic Quad Flat, No Lead Package (JQ) - 4x4x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN 0.65 +0 +21 +17 +Package_DFN_QFN +UQFN-16_1.8x2.6mm_P0.4mm +UQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts3a5017.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +16 +16 +Package_DFN_QFN +UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +25 +21 +Package_DFN_QFN +UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm_ThermalVias +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +30 +21 +Package_DFN_QFN +UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +25 +21 +Package_DFN_QFN +UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +35 +21 +Package_DFN_QFN +UQFN-20_3x3mm_P0.4mm +UQFN, 20 Pin (https://resurgentsemi.com/wp-content/uploads/2018/09/MPR121_rev5-Resurgent.pdf?d453f8&d453f8), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +20 +20 +Package_DFN_QFN +UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm +UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +33 +29 +Package_DFN_QFN +UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm_ThermalVias +UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +43 +29 +Package_DFN_QFN +UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm +UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +50 +41 +Package_DFN_QFN +UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias +UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +67 +41 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm +UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +58 +49 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm_ThermalVias +UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +75 +49 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm +UQFN, 48 Pin (https://gitlab.com/kicad/libraries/kicad-symbols/-/merge_requests/1189#note_423250741), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +53 +49 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm_ThermalVias +UQFN, 48 Pin (https://gitlab.com/kicad/libraries/kicad-symbols/-/merge_requests/1189#note_423250741), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +75 +49 +Package_DFN_QFN +VDFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.7mm +8-Lead Very Thin Dual Flatpack No-Lead (LZ) - 2x3x0.9 mm Body [VDFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +11 +9 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.1x1.1mm +VQFN, 16 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/16L_VQFN-WFS_3x3mm_4MX_C04-00508a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +18 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.1x1.1mm_ThermalVias +VQFN, 16 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/16L_VQFN-WFS_3x3mm_4MX_C04-00508a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +23 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm +VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias +VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +25 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +30 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +25 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm_ThermalVias +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +30 +21 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +VQFN, 24 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/product-documents/package-drawings/24L-VQFN%E2%80%934x4x0.9mm-MJ-C04-00143b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +29 +25 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +VQFN, 24 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/product-documents/package-drawings/24L-VQFN%E2%80%934x4x0.9mm-MJ-C04-00143b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +39 +25 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +34 +25 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +39 +25 +Package_DFN_QFN +VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm +VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +33 +29 +Package_DFN_QFN +VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias +VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +43 +29 +Package_DFN_QFN +VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm +VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +35 +29 +Package_DFN_QFN +VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm_ThermalVias +VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +48 +29 +Package_DFN_QFN +VQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm +VQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/tps25750.pdf#page=78), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm_ThermalVias +VQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/tps25750.pdf#page=78), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm +VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias +VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.15x3.15mm +VQFN, 32 Pin (https://www.ti.com/lit/ds/slvs589d/slvs589d.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.15x3.15mm_ThermalVias +VQFN, 32 Pin (https://www.ti.com/lit/ds/slvs589d/slvs589d.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +Package_DFN_QFN +VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm +VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +53 +47 +Package_DFN_QFN +VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm_ThermalVias +VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +66 +47 +Package_DFN_QFN +VQFN-48-1EP_6x6mm_P0.4mm_EP4.1x4.1mm +VQFN, 48 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/48L_VQFN_6x6mm_6LX_C04-00494a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +58 +49 +Package_DFN_QFN +VQFN-48-1EP_6x6mm_P0.4mm_EP4.1x4.1mm_ThermalVias +VQFN, 48 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/48L_VQFN_6x6mm_6LX_C04-00494a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +75 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc430f5137.pdf#page=128), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +58 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm_ThermalVias +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc430f5137.pdf#page=128), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +75 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +53 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +79 +49 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm +VQFN, 64 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/PIC16LF19195-6-7-Data-Sheet-40001873D.pdf#page=718), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +74 +65 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm_ThermalVias +VQFN, 64 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/PIC16LF19195-6-7-Data-Sheet-40001873D.pdf#page=718), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +100 +65 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm +VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_QFN_9x9_MR_C04-00149e.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +74 +65 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias +VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_QFN_9x9_MR_C04-00149e.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +91 +65 +Package_DFN_QFN +Vishay_PowerPAK_MLP44-24L +PowerPAK PowerPAK MLP44-24L (https://www.vishay.com/docs/78231/mlp44-24l.pdf) +powerpak mlp44-24l +0 +28 +28 +Package_DFN_QFN +Vishay_PowerPAK_MLP44-24L_ThermalVias +PowerPAK PowerPAK MLP44-24L (https://www.vishay.com/docs/78231/mlp44-24l.pdf) +powerpak mlp44-24l +0 +35 +28 +Package_DFN_QFN +W-PDFN-8-1EP_6x5mm_P1.27mm_EP3x3mm +W-PDFN, 8 Pin (https://media-www.micron.com/-/media/client/global/documents/products/data-sheet/nor-flash/serial-nor/mt25q/die-rev-a/mt25q_qljs_u_256_aba_0.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +W-PDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-6-2EP_4.0x2.6mm_P0.65mm +WDFN, 6 pin, 4.0x2.6, 0.65P; Two exposed pads, (https://www.onsemi.com/pub/Collateral/511BZ.PDF) +DFN 0.65P dual flag +0 +8 +8 +Package_DFN_QFN +WDFN-8-1EP_2x2.2mm_P0.5mm_EP0.80x0.54 +https://www.onsemi.com/pub/Collateral/511BN.PDF +WDFN-8 1EP 2.2X2.0 0.5P +0 +9 +9 +Package_DFN_QFN +WDFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.2mm +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20005474E.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MNY_C04-0129E-MNY.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8-1EP_4x3mm_P0.65mm_EP2.4x1.8mm +WDFN, 8 Pin (https://www.onsemi.com/pub/Collateral/509AF.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8-1EP_4x3mm_P0.65mm_EP2.4x1.8mm_ThermalVias +WDFN, 8 Pin (https://www.onsemi.com/pub/Collateral/509AF.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +20 +9 +Package_DFN_QFN +WDFN-8-1EP_6x5mm_P1.27mm_EP3.4x4mm +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_WDFN_5x6mm_MF_C04210B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8-1EP_8x6mm_P1.27mm_EP6x4.8mm +WDFN, 8 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/8L_WDFN_6x8mm_MN_C04172A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead Microchip-8L-WDFN-6x8mm-MN-C04172A +0 +21 +9 +Package_DFN_QFN +WDFN-8-1EP_8x6mm_P1.27mm_EP6x4.8mm_ThermalVias +WDFN, 8 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/8L_WDFN_6x8mm_MN_C04172A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead Microchip-8L-WDFN-6x8mm-MN-C04172A +0 +42 +9 +Package_DFN_QFN +WDFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P; No exposed pad (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF) +DFN 0.5 +0 +8 +8 +Package_DFN_QFN +WDFN-10-1EP_3x3mm_P0.5mm_EP1.8x2.5mm +WDFN, 10 Pin (https://www.onsemi.com/pdf/datasheet/nis5420-d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +15 +11 +Package_DFN_QFN +WDFN-10-1EP_3x3mm_P0.5mm_EP1.8x2.5mm_ThermalVias +WDFN, 10 Pin (https://www.onsemi.com/pdf/datasheet/nis5420-d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +22 +11 +Package_DFN_QFN +WDFN-12-1EP_3x3mm_P0.45mm_EP1.7x2.5mm +WDFN, 12 Pin (https://www.diodes.com/assets/Datasheets/PAM2306.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +17 +13 +Package_DFN_QFN +WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm +WQFN, 14 Pin (https://www.onsemi.com/pub/Collateral/FUSB302B-D.PDF#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +19 +15 +Package_DFN_QFN +WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm_ThermalVias +WQFN, 14 Pin (https://www.onsemi.com/pub/Collateral/FUSB302B-D.PDF#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +24 +15 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tpa6132a2.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tpa6132a2.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +26 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tlv9064.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm_ThermalVias +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tlv9064.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +26 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm +WQFN, 16 Pin (https://www.onsemi.com/pub/Collateral/FUSB307B-D.PDF#page=56), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm_ThermalVias +WQFN, 16 Pin (https://www.onsemi.com/pub/Collateral/FUSB307B-D.PDF#page=56), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +26 +17 +Package_DFN_QFN +WQFN-16-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +31 +17 +Package_DFN_QFN +WQFN-20-1EP_2.5x4.5mm_P0.5mm_EP1x2.9mm +http://www.onsemi.com/pub/Collateral/510CD.PDF +WQFN-20 4.5mm 2.5mm 0.5mm +0 +24 +21 +Package_DFN_QFN +WQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm +WQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/ts3ds10224.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead Texas_RUK0020B +0 +25 +21 +Package_DFN_QFN +WQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias +WQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/ts3ds10224.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead Texas_RUK0020B +0 +30 +21 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/lm26480.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +29 +25 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/lm26480.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +39 +25 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/ts3a27518e.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +29 +25 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/ts3a27518e.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +39 +25 +Package_DFN_QFN +WQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +QFN, 32-Leads, Body 5x5x0.8mm, Pitch 0.5mm, Thermal Pad 3.1x3.1mm; (see Texas Instruments LM25119 http://www.ti.com/lit/ds/symlink/lm25119.pdf) +WQFN 0.5 +0 +37 +33 +Package_DFN_QFN +WQFN-42-1EP_3.5x9mm_P0.5mm_EP2.05x7.55mm +WQFN, 42 Pin (http://www.ti.com/lit/ds/symlink/ts3l501e.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +57 +43 +Package_DFN_QFN +WQFN-42-1EP_3.5x9mm_P0.5mm_EP2.05x7.55mm_ThermalVias +WQFN, 42 Pin (http://www.ti.com/lit/ds/symlink/ts3l501e.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +82 +43 +Package_DIP +CERDIP-8_W7.62mm_SideBrazed +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +8 +8 +Package_DIP +CERDIP-8_W7.62mm_SideBrazed_LongPads +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +8 +8 +Package_DIP +CERDIP-8_W7.62mm_SideBrazed_LongPads_Socket +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +8 +8 +Package_DIP +CERDIP-8_W7.62mm_SideBrazed_Socket +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +8 +8 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +14 +14 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed_LongPads +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +14 +14 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed_LongPads_Socket +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +14 +14 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed_Socket +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +14 +14 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +16 +16 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed_LongPads +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +16 +16 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed_LongPads_Socket +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +16 +16 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed_Socket +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +16 +16 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +18 +18 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed_LongPads +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +18 +18 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed_LongPads_Socket +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +18 +18 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed_Socket +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +18 +18 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +20 +20 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed_LongPads +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +20 +20 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed_LongPads_Socket +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +20 +20 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed_Socket +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +20 +20 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +22 +22 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed_LongPads +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +22 +22 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed_LongPads_Socket +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +22 +22 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed_Socket +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +22 +22 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +24 +24 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed_LongPads +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +24 +24 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed_LongPads_Socket +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +24 +24 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed_Socket +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +24 +24 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +28 +28 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed_LongPads +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +28 +28 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed_LongPads_Socket +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +28 +28 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed_Socket +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +28 +28 +Package_DIP +DIP-4_W7.62mm +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_LongPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_SMDSocket_SmallPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_Socket +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_Socket_LongPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +4 +4 +Package_DIP +DIP-4_W8.89mm_SMDSocket_LongPads +4-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +4 +4 +Package_DIP +DIP-4_W10.16mm +4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +4 +4 +Package_DIP +DIP-4_W10.16mm_LongPads +4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +4 +4 +Package_DIP +DIP-5-6_W7.62mm +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_LongPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_SMDSocket_SmallPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_Socket +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_Socket_LongPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +5 +5 +Package_DIP +DIP-5-6_W8.89mm_SMDSocket_LongPads +5-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +5 +5 +Package_DIP +DIP-5-6_W10.16mm +5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +5 +5 +Package_DIP +DIP-5-6_W10.16mm_LongPads +5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +5 +5 +Package_DIP +DIP-6_W7.62mm +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_LongPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_SMDSocket_SmallPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_Socket +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_Socket_LongPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +6 +6 +Package_DIP +DIP-6_W8.89mm_SMDSocket_LongPads +6-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +6 +6 +Package_DIP +DIP-6_W10.16mm +6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +6 +6 +Package_DIP +DIP-6_W10.16mm_LongPads +6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +6 +6 +Package_DIP +DIP-8-16_W7.62mm +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +DIP-8-16_W7.62mm_Socket +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +8 +8 +Package_DIP +DIP-8-16_W7.62mm_Socket_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +8 +8 +Package_DIP +DIP-8-N6_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 6 +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +DIP-8-N7_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 7 +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +DIP-8_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_LongPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_SMDSocket_SmallPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_Socket +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_Socket_LongPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +8 +8 +Package_DIP +DIP-8_W8.89mm_SMDSocket_LongPads +8-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +8 +8 +Package_DIP +DIP-8_W10.16mm +8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +8 +8 +Package_DIP +DIP-8_W10.16mm_LongPads +8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +8 +8 +Package_DIP +DIP-10_W7.62mm +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_LongPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_SMDSocket_SmallPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_Socket +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_Socket_LongPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +10 +10 +Package_DIP +DIP-10_W8.89mm_SMDSocket_LongPads +10-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +10 +10 +Package_DIP +DIP-10_W10.16mm +10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +10 +10 +Package_DIP +DIP-10_W10.16mm_LongPads +10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +10 +10 +Package_DIP +DIP-12_W7.62mm +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_LongPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_SMDSocket_SmallPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_Socket +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_Socket_LongPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +12 +12 +Package_DIP +DIP-12_W8.89mm_SMDSocket_LongPads +12-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +12 +12 +Package_DIP +DIP-12_W10.16mm +12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +12 +12 +Package_DIP +DIP-12_W10.16mm_LongPads +12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +12 +12 +Package_DIP +DIP-14_W7.62mm +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_LongPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_SMDSocket_SmallPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_Socket +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_Socket_LongPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +14 +14 +Package_DIP +DIP-14_W8.89mm_SMDSocket_LongPads +14-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +14 +14 +Package_DIP +DIP-14_W10.16mm +14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +14 +14 +Package_DIP +DIP-14_W10.16mm_LongPads +14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +14 +14 +Package_DIP +DIP-16_W7.62mm +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_SMDSocket_SmallPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_Socket +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_Socket_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +16 +16 +Package_DIP +DIP-16_W8.89mm_SMDSocket_LongPads +16-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +16 +16 +Package_DIP +DIP-16_W10.16mm +16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +16 +16 +Package_DIP +DIP-16_W10.16mm_LongPads +16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +16 +16 +Package_DIP +DIP-18_W7.62mm +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_LongPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_SMDSocket_SmallPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_Socket +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_Socket_LongPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +18 +18 +Package_DIP +DIP-18_W8.89mm_SMDSocket_LongPads +18-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +18 +18 +Package_DIP +DIP-20_W7.62mm +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_LongPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_SMDSocket_SmallPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_Socket +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_Socket_LongPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +20 +20 +Package_DIP +DIP-20_W8.89mm_SMDSocket_LongPads +20-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +20 +20 +Package_DIP +DIP-22_W7.62mm +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_LongPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_SMDSocket_SmallPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_Socket +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_Socket_LongPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +22 +22 +Package_DIP +DIP-22_W8.89mm_SMDSocket_LongPads +22-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +22 +22 +Package_DIP +DIP-22_W10.16mm +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_LongPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_SMDSocket_SmallPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_Socket +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_Socket_LongPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads +0 +22 +22 +Package_DIP +DIP-22_W11.43mm_SMDSocket_LongPads +22-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads +0 +22 +22 +Package_DIP +DIP-24_W7.62mm +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_LongPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_Socket +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +24 +24 +Package_DIP +DIP-24_W8.89mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +24 +24 +Package_DIP +DIP-24_W10.16mm +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_LongPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_Socket +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads +0 +24 +24 +Package_DIP +DIP-24_W11.43mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads +0 +24 +24 +Package_DIP +DIP-24_W15.24mm +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_LongPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_Socket +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +24 +24 +Package_DIP +DIP-24_W16.51mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +24 +24 +Package_DIP +DIP-28_W7.62mm +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_LongPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_SMDSocket_SmallPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_Socket +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_Socket_LongPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +28 +28 +Package_DIP +DIP-28_W8.89mm_SMDSocket_LongPads +28-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +28 +28 +Package_DIP +DIP-28_W15.24mm +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_LongPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_SMDSocket_SmallPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_Socket +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_Socket_LongPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +28 +28 +Package_DIP +DIP-28_W16.51mm_SMDSocket_LongPads +28-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +28 +28 +Package_DIP +DIP-32_W7.62mm +32-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +32 +32 +Package_DIP +DIP-32_W15.24mm +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_LongPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_SMDSocket_SmallPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_Socket +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_Socket_LongPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +32 +32 +Package_DIP +DIP-32_W16.51mm_SMDSocket_LongPads +32-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +32 +32 +Package_DIP +DIP-40_W15.24mm +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_LongPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_SMDSocket_SmallPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_Socket +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_Socket_LongPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +40 +40 +Package_DIP +DIP-40_W16.51mm_SMDSocket_LongPads +40-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +40 +40 +Package_DIP +DIP-40_W25.4mm +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_LongPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_SMDSocket_SmallPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_Socket +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_Socket_LongPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads +0 +40 +40 +Package_DIP +DIP-40_W26.67mm_SMDSocket_LongPads +40-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads +0 +40 +40 +Package_DIP +DIP-42_W15.24mm +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_LongPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_SMDSocket_SmallPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_Socket +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_Socket_LongPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +42 +42 +Package_DIP +DIP-42_W16.51mm_SMDSocket_LongPads +42-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +42 +42 +Package_DIP +DIP-48_W15.24mm +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_LongPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_SMDSocket_SmallPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_Socket +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_Socket_LongPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +48 +48 +Package_DIP +DIP-48_W16.51mm_SMDSocket_LongPads +48-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +48 +48 +Package_DIP +DIP-64_W15.24mm +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_LongPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_Socket +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +64 +64 +Package_DIP +DIP-64_W16.51mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +64 +64 +Package_DIP +DIP-64_W22.86mm +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils) +THT DIP DIL PDIP 2.54mm 22.86mm 900mil +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_LongPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), LongPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil LongPads +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil SMDSocket SmallPads +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_Socket +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket +THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket LongPads +0 +64 +64 +Package_DIP +DIP-64_W24.13mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 24.13 mm (950 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 24.13mm 950mil SMDSocket LongPads +0 +64 +64 +Package_DIP +DIP-64_W25.4mm +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_LongPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_Socket +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads +0 +64 +64 +Package_DIP +DIP-64_W26.67mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads +0 +64 +64 +Package_DIP +Fairchild_LSOP-8 +8-Lead, 300\" Wide, Surface Mount Package (https://www.fairchildsemi.com/package-drawings/ML/MLSOP08A.pdf) +LSOP 2.54mm 300mil +0 +8 +8 +Package_DIP +IXYS_Flatpak-8_6.3x9.7mm_P2.54mm +IXYS Flatpak, 8 Pin (https://www.littelfuse.com/media?resourcetype=datasheets&itemid=996c6e8f-cc1b-44f6-811e-251c6e004c56&filename=littelfuse-integrated-circuits-loc112-datasheet), generated with kicad-footprint-generator ipc_gullwing_generator.py +IXYS Flatpak DIP +0 +8 +8 +Package_DIP +IXYS_SMD-8_6.3x9.7mm_P2.54mm +IXYS Flatpak, 8 Pin (https://www.littelfuse.com/media?resourcetype=datasheets&itemid=996c6e8f-cc1b-44f6-811e-251c6e004c56&filename=littelfuse-integrated-circuits-loc112-datasheet), generated with kicad-footprint-generator ipc_gullwing_generator.py +IXYS Flatpak DIP +0 +8 +8 +Package_DIP +PowerIntegrations_PDIP-8B +Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +7 +7 +Package_DIP +PowerIntegrations_PDIP-8C +Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +7 +7 +Package_DIP +PowerIntegrations_SDIP-10C +PowerIntegrations variant of 10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/tophx_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +9 +9 +Package_DIP +PowerIntegrations_SMD-8 +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +PowerIntegrations_SMD-8B +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +PowerIntegrations_SMD-8C +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +PowerIntegrations_eDIP-12B +Power Integrations eDIP-12B, see https://www.power.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +11 +11 +Package_DIP +SMDIP-4_W7.62mm +4-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +4 +4 +Package_DIP +SMDIP-4_W9.53mm +4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +4 +4 +Package_DIP +SMDIP-4_W9.53mm_Clearance8mm +4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +4 +4 +Package_DIP +SMDIP-4_W11.48mm +4-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +4 +4 +Package_DIP +SMDIP-6_W7.62mm +6-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +6 +6 +Package_DIP +SMDIP-6_W9.53mm +6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +6 +6 +Package_DIP +SMDIP-6_W9.53mm_Clearance8mm +6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +6 +6 +Package_DIP +SMDIP-6_W11.48mm +6-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +6 +6 +Package_DIP +SMDIP-8_W7.62mm +8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +SMDIP-8_W9.53mm +8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +8 +8 +Package_DIP +SMDIP-8_W9.53mm_Clearance8mm +8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +8 +8 +Package_DIP +SMDIP-8_W11.48mm +8-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +8 +8 +Package_DIP +SMDIP-10_W7.62mm +10-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +10 +10 +Package_DIP +SMDIP-10_W9.53mm +10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +10 +10 +Package_DIP +SMDIP-10_W9.53mm_Clearance8mm +10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +10 +10 +Package_DIP +SMDIP-10_W11.48mm +10-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +10 +10 +Package_DIP +SMDIP-12_W7.62mm +12-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +12 +12 +Package_DIP +SMDIP-12_W9.53mm +12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +12 +12 +Package_DIP +SMDIP-12_W9.53mm_Clearance8mm +12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +12 +12 +Package_DIP +SMDIP-12_W11.48mm +12-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +12 +12 +Package_DIP +SMDIP-14_W7.62mm +14-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +14 +14 +Package_DIP +SMDIP-14_W9.53mm +14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +14 +14 +Package_DIP +SMDIP-14_W9.53mm_Clearance8mm +14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +14 +14 +Package_DIP +SMDIP-14_W11.48mm +14-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +14 +14 +Package_DIP +SMDIP-16_W7.62mm +16-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +16 +16 +Package_DIP +SMDIP-16_W9.53mm +16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +16 +16 +Package_DIP +SMDIP-16_W9.53mm_Clearance8mm +16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +16 +16 +Package_DIP +SMDIP-16_W11.48mm +16-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +16 +16 +Package_DIP +SMDIP-18_W7.62mm +18-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +18 +18 +Package_DIP +SMDIP-18_W9.53mm +18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +18 +18 +Package_DIP +SMDIP-18_W9.53mm_Clearance8mm +18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +18 +18 +Package_DIP +SMDIP-18_W11.48mm +18-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +18 +18 +Package_DIP +SMDIP-20_W7.62mm +20-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +20 +20 +Package_DIP +SMDIP-20_W9.53mm +20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +20 +20 +Package_DIP +SMDIP-20_W9.53mm_Clearance8mm +20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +20 +20 +Package_DIP +SMDIP-20_W11.48mm +20-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +20 +20 +Package_DIP +SMDIP-22_W7.62mm +22-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +22 +22 +Package_DIP +SMDIP-22_W9.53mm +22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +22 +22 +Package_DIP +SMDIP-22_W9.53mm_Clearance8mm +22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +22 +22 +Package_DIP +SMDIP-22_W11.48mm +22-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +22 +22 +Package_DIP +SMDIP-24_W7.62mm +24-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +24 +24 +Package_DIP +SMDIP-24_W9.53mm +24-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +24 +24 +Package_DIP +SMDIP-24_W11.48mm +24-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +24 +24 +Package_DIP +SMDIP-24_W15.24mm +24-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +24 +24 +Package_DIP +SMDIP-28_W15.24mm +28-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +28 +28 +Package_DIP +SMDIP-32_W7.62mm +32-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +32 +32 +Package_DIP +SMDIP-32_W9.53mm +32-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +32 +32 +Package_DIP +SMDIP-32_W11.48mm +32-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +32 +32 +Package_DIP +SMDIP-32_W15.24mm +32-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +32 +32 +Package_DIP +SMDIP-40_W15.24mm +40-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +40 +40 +Package_DIP +SMDIP-40_W25.24mm +40-lead surface-mounted (SMD) DIP package, row spacing 25.24 mm (993 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 25.24mm 993mil +0 +40 +40 +Package_DIP +SMDIP-42_W15.24mm +42-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +42 +42 +Package_DIP +SMDIP-48_W15.24mm +48-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +48 +48 +Package_DIP +SMDIP-64_W15.24mm +64-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +64 +64 +Package_DIP +Toshiba_11-7A9 +Toshiba 11-7A9 package, like 6-lead dip package with missing pin 5, row spacing 7.62 mm (300 mils), https://toshiba.semicon-storage.com/info/docget.jsp?did=1421&prodName=TLP3021(S) +Toshiba 11-7A9 DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +5 +5 +Package_DIP +Vishay_HVM-DIP-3_W7.62mm +3-lead though-hole mounted high-volatge DIP package (based on standard DIP-4), row spacing 7.62 mm (300 mils), see https://www.vishay.com/docs/91361/hexdip.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Vishay HVMDIP HEXDIP +0 +4 +3 +Package_DirectFET +DirectFET_L4 +DirectFET L4 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=41 +DirectFET L4 MOSFET Infineon +0 +11 +3 +Package_DirectFET +DirectFET_L6 +DirectFET L6 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=42 +DirectFET L6 MOSFET Infineon +0 +13 +3 +Package_DirectFET +DirectFET_L8 +DirectFET L8 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=43 +DirectFET L8 MOSFET Infineon +0 +15 +3 +Package_DirectFET +DirectFET_LA +DirectFET LA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=44 +DirectFET LA MOSFET Infineon +0 +15 +3 +Package_DirectFET +DirectFET_M2 +DirectFET M2 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=33 +DirectFET M2 MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_M4 +DirectFET M4 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=34 +DirectFET M4 MOSFET Infineon +0 +9 +3 +Package_DirectFET +DirectFET_MA +DirectFET MA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=35 +DirectFET MA MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_MB +DirectFET MB https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=36 +DirectFET MB MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_MC +DirectFET MC https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=37 +DirectFET MC MOSFET Infineon +0 +10 +3 +Package_DirectFET +DirectFET_MD +DirectFET MD https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=38 +DirectFET MD MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_ME +DirectFET ME https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=39 +DirectFET ME MOSFET Infineon +0 +10 +3 +Package_DirectFET +DirectFET_MF +DirectFET MF https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=40 +DirectFET MF MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_MN +DirectFET MN https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=30 +DirectFET MN MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MP +DirectFET MP https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=28 +DirectFET MP MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MQ +DirectFET MQ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=29 +DirectFET MQ MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MT +DirectFET MT https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=26 +DirectFET MT MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MU +DirectFET MU https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=32 +DirectFET MU MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MX +DirectFET MX https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=27 +DirectFET MX MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MZ +DirectFET MZ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=31 +DirectFET MZ MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_S1 +DirectFET S1 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=20 +DirectFET S1 MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_S2 +DirectFET S2 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=21 +DirectFET S2 MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_S3C +DirectFET S3C https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=25 +DirectFET S3C MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_SA +DirectFET SA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=22 +DirectFET SA MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_SB +DirectFET SB https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=23 +DirectFET SB MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_SC +DirectFET SC https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=24 +DirectFET SC MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_SH +DirectFET SH https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=19 +DirectFET SH MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_SJ +DirectFET SJ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=18 +DirectFET SJ MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_SQ +DirectFET SQ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=17 +DirectFET SQ MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_ST +DirectFET ST https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=16 +DirectFET ST MOSFET Infineon +0 +7 +3 +Package_LCC +Analog_LCC-8_5x5mm_P1.27mm +LCC, ceramic leaded chip carrier, 8 pins, surface mount, Analog Devices LS8, 5x5mm, height 1.45mm, https://www.analog.com/media/en/technical-documentation/data-sheets/ltc6655-6655ln.pdf +lcc smt +0 +8 +8 +Package_LCC +PLCC-20 +PLCC, 20 pins, surface mount +plcc smt +0 +20 +20 +Package_LCC +PLCC-20_SMD-Socket +PLCC, 20 pins, surface mount +plcc smt +0 +20 +20 +Package_LCC +PLCC-20_THT-Socket +PLCC, 20 pins, through hole +plcc leaded +0 +20 +20 +Package_LCC +PLCC-28 +PLCC, 28 pins, surface mount +plcc smt +0 +28 +28 +Package_LCC +PLCC-28_SMD-Socket +PLCC, 28 pins, surface mount +plcc smt +0 +28 +28 +Package_LCC +PLCC-28_THT-Socket +PLCC, 28 pins, through hole +plcc leaded +0 +28 +28 +Package_LCC +PLCC-32_11.4x14.0mm_P1.27mm +PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +32 +32 +Package_LCC +PLCC-32_THT-Socket +PLCC, 32 pins, through hole, http://www.assmann-wsw.com/fileadmin/datasheets/ASS_0981_CO.pdf +plcc leaded +0 +32 +32 +Package_LCC +PLCC-44 +PLCC, 44 pins, surface mount +plcc smt +0 +44 +44 +Package_LCC +PLCC-44_16.6x16.6mm_P1.27mm +PLCC, 44 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +44 +44 +Package_LCC +PLCC-44_SMD-Socket +PLCC, 44 pins, surface mount +plcc smt +0 +44 +44 +Package_LCC +PLCC-44_THT-Socket +PLCC, 44 pins, through hole +plcc leaded +0 +44 +44 +Package_LCC +PLCC-52 +PLCC, 52 pins, surface mount +plcc smt +0 +52 +52 +Package_LCC +PLCC-52_SMD-Socket +PLCC, 52 pins, surface mount +plcc smt +0 +52 +52 +Package_LCC +PLCC-52_THT-Socket +PLCC, 52 pins, through hole +plcc leaded +0 +52 +52 +Package_LCC +PLCC-68 +PLCC, 68 pins, surface mount +plcc smt +0 +68 +68 +Package_LCC +PLCC-68_24.2x24.2mm_P1.27mm +PLCC, 68 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +68 +68 +Package_LCC +PLCC-68_SMD-Socket +PLCC, 68 pins, surface mount +plcc smt +0 +68 +68 +Package_LCC +PLCC-68_THT-Socket +PLCC, 68 pins, through hole +plcc leaded +0 +68 +68 +Package_LCC +PLCC-84 +PLCC, 84 pins, surface mount +plcc smt +0 +84 +84 +Package_LCC +PLCC-84_29.3x29.3mm_P1.27mm +PLCC, 84 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +84 +84 +Package_LCC +PLCC-84_SMD-Socket +PLCC, 84 pins, surface mount +plcc smt +0 +84 +84 +Package_LCC +PLCC-84_THT-Socket +PLCC, 84 pins, through hole +plcc leaded +0 +84 +84 +Package_LGA +AMS_LGA-10-1EP_2.7x4mm_P0.6mm +LGA-10, http://ams.com/eng/content/download/951091/2269479/471718 +lga land grid array +0 +13 +11 +Package_LGA +AMS_LGA-20_4.7x4.5mm_P0.65mm +http://ams.com/eng/content/download/1008631/2361759/498838 +AMS LGA +0 +20 +20 +Package_LGA +AMS_OLGA-8_2x3.1mm_P0.8mm +AMS OLGA, 8 Pin (https://ams.com/documents/20143/36005/AS7341_DS000504_3-00.pdf/#page=63) +AMS OLGA NoLead +0 +8 +8 +Package_LGA +Bosch_LGA-8_2.5x2.5mm_P0.65mm_ClockwisePinNumbering +LGA-8 +lga land grid array +0 +8 +8 +Package_LGA +Bosch_LGA-8_2x2.5mm_P0.65mm_ClockwisePinNumbering +LGA-8, https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMP280-DS001-18.pdf +lga land grid array +0 +8 +8 +Package_LGA +Bosch_LGA-8_3x3mm_P0.8mm_ClockwisePinNumbering +Bosch LGA, 8 Pin (https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME680-DS001-00.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Bosch LGA NoLead +0 +8 +8 +Package_LGA +Bosch_LGA-14_3x2.5mm_P0.5mm +LGA-14 Bosch https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMI160-DS000-07.pdf +lga land grid array +0 +14 +14 +Package_LGA +Infineon_PG-TSNP-6-10_0.7x1.1mm_0.7x1.1mm_P0.4mm +6 lead, 1.1x0.7mm body, 0.37mm height, TSNP (https://www.infineon.com/cms/en/product/packages/PG-TSNP/PG-TSNP-6-10/) +PG-TSNP-6-10 TSNP +0 +12 +6 +Package_LGA +Kionix_LGA-12_2x2mm_P0.5mm_LayoutBorder2x4y +Kionix LGA, 12 Pin (http://kionixfs.kionix.com/en/document/TN008-PCB-Design-Guidelines-for-2x2-LGA-Sensors.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py +Kionix LGA NoLead +0 +12 +12 +Package_LGA +LGA-8_3x5mm_P1.25mm +LGA-8 +lga land grid array +0 +8 +8 +Package_LGA +LGA-8_8x6.2mm_P1.27mm +LGA, 8 Pin (https://datasheet.lcsc.com/lcsc/2303241700_Zetta-ZDSD64GLGEAG-R_C5277948.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +8 +8 +Package_LGA +LGA-8_8x6mm_P1.27mm +LGA, 8 Pin (https://datasheet.lcsc.com/lcsc/2005251034_XTX-XTSD01GLGEAG_C558837.pdf#page=6), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +8 +8 +Package_LGA +LGA-12_2x2mm_P0.5mm +LGA12 +lga land grid array +0 +12 +12 +Package_LGA +LGA-14_2x2mm_P0.35mm_LayoutBorder3x4y +LGA, 14 Pin (http://www.st.com/resource/en/datasheet/lis2dh.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-14_3x2.5mm_P0.5mm_LayoutBorder3x4y +LGA, 14 Pin (https://www.st.com/resource/en/datasheet/lsm6ds3tr-c.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-14_3x5mm_P0.8mm_LayoutBorder1x6y +LGA, 14 Pin (http://www.st.com/resource/en/datasheet/lsm303dlhc.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-16_3x3mm_P0.5mm +http://www.memsic.com/userfiles/files/DataSheets/Magnetic-Sensors-Datasheets/MMC5883MA-RevC.pdf +lga land grid array +0 +16 +16 +Package_LGA +LGA-16_3x3mm_P0.5mm_LayoutBorder3x5y +LGA, 16 Pin (http://www.st.com/resource/en/datasheet/lis331hh.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +16 +16 +Package_LGA +LGA-16_4x4mm_P0.65mm_LayoutBorder4x4y +LGA, 16 Pin (http://www.st.com/resource/en/datasheet/l3gd20.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +16 +16 +Package_LGA +LGA-24L_3x3.5mm_P0.43mm +LGA 24L 3x3.5mm Pitch 0.43mm +LGA 24L 3x3.5mm Pitch 0.43mm +0 +24 +24 +Package_LGA +LGA-28_5.2x3.8mm_P0.5mm +LGA 28 5.2x3.8mm Pitch 0.5mm +LGA 28 5.2x3.8mm Pitch 0.5mm +0 +28 +28 +Package_LGA +Linear_LGA-133_15.0x15.0mm_Layout12x12_P1.27mm +Analog Devices (Linear Tech), 133-pin LGA uModule, 15.0x15.0x4.32mm, https://www.analog.com/media/en/technical-documentation/data-sheets/4637fc.pdf +133 pin lga +0 +133 +133 +Package_LGA +MPS_LGA-18-10EP_12x12mm_P3.3mm +MPS LGA-18 12x12x3.82mm (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MPM3550EGLE/document_id/5102/) +MPS LGA +0 +18 +18 +Package_LGA +NXP_LGA-8_3x5mm_P1.25mm_H1.1mm +NXP LGA, 8 Pin (https://www.nxp.com/docs/en/data-sheet/MPL3115A2.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +NXP LGA NoLead +0 +8 +8 +Package_LGA +NXP_LGA-8_3x5mm_P1.25mm_H1.2mm +NXP LGA, 8 Pin (https://www.nxp.com/docs/en/data-sheet/MPL115A1.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +NXP LGA NoLead +0 +8 +8 +Package_LGA +Rohm_MLGA010V020A_LGA-10_2x2mm_P0.45mm_LayoutBorder2x3y +Rohm LGA, 10 Pin (https://fscdn.rohm.com/en/techdata_basic/ic/package/Jisso_MLGA010V020A-1-2_Rev005s_E2(MSL3).pdf) +Rohm LGA NoLead +0 +10 +10 +Package_LGA +ST_HLGA-10_2.5x2.5mm_P0.6mm_LayoutBorder3x2y +ST HLGA, 10 Pin (https://www.st.com/resource/en/datasheet/lps25hb.pdf#page=46), generated with kicad-footprint-generator ipc_noLead_generator.py +ST HLGA NoLead +0 +10 +10 +Package_LGA +ST_HLGA-10_2x2mm_P0.5mm_LayoutBorder3x2y +ST HLGA, 10 Pin (https://www.st.com/resource/en/datasheet/lps22hh.pdf#page=55), generated with kicad-footprint-generator ipc_noLead_generator.py +ST HLGA NoLead +0 +10 +10 +Package_LGA +Texas_SIL0008D_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm +Texas SIL0008D MicroSiP, 8 Pin (http://www.ti.com/lit/ds/symlink/tps82130.pdf#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +12 +9 +Package_LGA +Texas_SIL0008D_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm_ThermalVias +Texas SIL0008D MicroSiP, 8 Pin (http://www.ti.com/lit/ds/symlink/tps82130.pdf#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +16 +9 +Package_LGA +Texas_SIL0010A_MicroSiP-10-1EP_3.8x3mm_P0.6mm_EP0.7x2.9mm +Texas SIL0010A MicroSiP, 10 Pin (http://www.ti.com/lit/ml/mpds579b/mpds579b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +14 +11 +Package_LGA +Texas_SIL0010A_MicroSiP-10-1EP_3.8x3mm_P0.6mm_EP0.7x2.9mm_ThermalVias +Texas SIL0010A MicroSiP, 10 Pin (http://www.ti.com/lit/ml/mpds579b/mpds579b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +18 +11 +Package_LGA +VLGA-4_2x2.5mm_P1.65mm +VLGA, 4 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/DSC60XX-Ultra-Small-Ultra-Low-Power-MEMS-Oscillator-DS20005625C.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +VLGA NoLead +0 +4 +4 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +154 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +171 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +161 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +187 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +165 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +196 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +175 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +218 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +194 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +259 +145 +Package_QFP +HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad +HTQFP-64 Pitch 0.5 +0 +69 +65 +Package_QFP +HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_Mask4.4x4.4mm_ThermalVias +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad +HTQFP-64 Pitch 0.5 +0 +135 +65 +Package_QFP +LQFP-32_5x5mm_P0.5mm +LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT401-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +32 +32 +Package_QFP +LQFP-32_7x7mm_P0.8mm +LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT358-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +32 +32 +Package_QFP +LQFP-36_7x7mm_P0.65mm +LQFP, 36 Pin (https://www.onsemi.com/pub/Collateral/561AV.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +36 +36 +Package_QFP +LQFP-44_10x10mm_P0.8mm +LQFP, 44 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ASS23225W.pdf?&fsrch=1), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +44 +44 +Package_QFP +LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm +LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +58 +49 +Package_QFP +LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm_ThermalVias +LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +75 +49 +Package_QFP +LQFP-48_7x7mm_P0.5mm +LQFP, 48 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2358-16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +48 +48 +Package_QFP +LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm +LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +62 +53 +Package_QFP +LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm_ThermalVias +LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +95 +53 +Package_QFP +LQFP-52_10x10mm_P0.65mm +LQFP, 52 Pin (https://www.nxp.com/docs/en/package-information/98ARL10526D.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +52 +52 +Package_QFP +LQFP-52_14x14mm_P1mm +LQFP, 52 Pin (http://www.holtek.com/documents/10179/116711/HT1632Cv170.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +52 +52 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +90 +65 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm_ThermalVias +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +107 +65 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm +LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +90 +65 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm_ThermalVias +LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +127 +65 +Package_QFP +LQFP-64_7x7mm_P0.4mm +LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT414-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +64 +64 +Package_QFP +LQFP-64_10x10mm_P0.5mm +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7606_7606-6_7606-4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +64 +64 +Package_QFP +LQFP-64_14x14mm_P0.8mm +LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT791-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +64 +64 +Package_QFP +LQFP-80_10x10mm_P0.4mm +LQFP, 80 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q80.10x10.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +80 +80 +Package_QFP +LQFP-80_12x12mm_P0.5mm +LQFP, 80 Pin (https://www.nxp.com/docs/en/package-information/SOT315-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +80 +80 +Package_QFP +LQFP-80_14x14mm_P0.65mm +LQFP, 80 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +80 +80 +Package_QFP +LQFP-100_14x14mm_P0.5mm +LQFP, 100 Pin (https://www.nxp.com/docs/en/package-information/SOT407-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +100 +100 +Package_QFP +LQFP-128_14x14mm_P0.4mm +LQFP, 128 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q128.14x14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +128 +128 +Package_QFP +LQFP-128_14x20mm_P0.5mm +LQFP, 128 Pin (https://www.nxp.com/docs/en/package-information/SOT425-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +128 +128 +Package_QFP +LQFP-144-1EP_20x20mm_P0.5mm_EP6.5x6.5mm +LQFP, 144 Pin (https://www.infineon.com/cms/en/product/packages/PG-LQFP/PG-LQFP-144-22), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP Infineon-PG-LQFP-144-24 Infineon-PG-LQFP-144-26 +0 +154 +145 +Package_QFP +LQFP-144-1EP_20x20mm_P0.5mm_EP6.5x6.5mm_ThermalVias +LQFP, 144 Pin (https://www.infineon.com/cms/en/product/packages/PG-LQFP/PG-LQFP-144-22), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP Infineon-PG-LQFP-144-24 Infineon-PG-LQFP-144-26 +0 +171 +145 +Package_QFP +LQFP-144_20x20mm_P0.5mm +LQFP, 144 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=425), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +144 +144 +Package_QFP +LQFP-160_24x24mm_P0.5mm +LQFP, 160 Pin (https://www.nxp.com/docs/en/package-information/SOT435-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +160 +160 +Package_QFP +LQFP-176_20x20mm_P0.4mm +LQFP, 176 Pin (https://www.onsemi.com/pub/Collateral/566DB.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +176 +176 +Package_QFP +LQFP-176_24x24mm_P0.5mm +LQFP, 176 Pin (https://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=163), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +176 +176 +Package_QFP +LQFP-208_28x28mm_P0.5mm +LQFP, 208 Pin (https://www.nxp.com/docs/en/package-information/SOT459-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +208 +208 +Package_QFP +LQFP-216_24x24mm_P0.4mm +LQFP, 216 Pin (https://www.onsemi.com/pub/Collateral/561BE.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +216 +216 +Package_QFP +MQFP-44_10x10mm_P0.8mm +MQFP, 44 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7722.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MQFP QFP +0 +44 +44 +Package_QFP +PQFP-32_5x5mm_P0.5mm +PQFP, 32 Pin (https://www.ti.com/lit/ds/symlink/ads127l01.pdf#page=87), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +32 +32 +Package_QFP +PQFP-44_10x10mm_P0.8mm +44-Lead Plastic Quad Flatpack - 10x10x2.5mm Body (http://www.onsemi.com/pub/Collateral/122BK.PDF) +PQFP 0.8 +0 +44 +44 +Package_QFP +PQFP-64_14x14mm_P0.8mm +PQFP, 64 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-qfp-64pin-prqp0064gb), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +64 +64 +Package_QFP +PQFP-80_14x20mm_P0.8mm +PQFP80 14x20 / QIP80E CASE 122BS (see ON Semiconductor 122BS.PDF) +QFP 0.8 +0 +80 +80 +Package_QFP +PQFP-100_14x20mm_P0.65mm +PQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +100 +100 +Package_QFP +PQFP-112_20x20mm_P0.65mm +PQFP, 112 pins, 20mm sq body, 0.65mm pitch (http://cache.freescale.com/files/shared/doc/package_info/98ASS23330W.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) +PQFP 112 +0 +112 +112 +Package_QFP +PQFP-132_24x24mm_P0.635mm +PQFP, 132 pins, 24mm sq body, 0.635mm pitch (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) +PQFP 132 +0 +132 +132 +Package_QFP +PQFP-132_24x24mm_P0.635mm_i386 +PQFP, 132 pins, 24mm sq body, 0.635mm pitch, Intel 386EX (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) +PQFP 132 Intel 386EX +0 +132 +132 +Package_QFP +PQFP-144_28x28mm_P0.65mm +PQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +144 +144 +Package_QFP +PQFP-160_28x28mm_P0.65mm +PQFP, 160 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +160 +160 +Package_QFP +PQFP-168_28x28mm_P0.65mm +PQFP, 168 Pin (https://www.renesas.cn/cn/zh/document/psc/package-drawing-qfp-168pin-prqp0168jb), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +168 +168 +Package_QFP +PQFP-208_28x28mm_P0.5mm +PQFP, 208 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +208 +208 +Package_QFP +PQFP-240_32.1x32.1mm_P0.5mm +PQFP, 240 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +240 +240 +Package_QFP +PQFP-256_28x28mm_P0.4mm +PQFP256 28x28 / QFP256J CASE 122BX (see ON Semiconductor 122BX.PDF) +QFP 0.4 +0 +256 +256 +Package_QFP +TQFP-32_7x7mm_P0.8mm +32-Lead Plastic Thin Quad Flatpack (PT) - 7x7x1.0 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +32 +32 +Package_QFP +TQFP-44-1EP_10x10mm_P0.8mm_EP4.5x4.5mm +44-Lead Plastic Thin Quad Flatpack (MW) - 10x10x1.0 mm Body [TQFP] With 4.5x4.5 mm Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +54 +45 +Package_QFP +TQFP-44_10x10mm_P0.8mm +44-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1.0 mm Body [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +44 +44 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm +48-Lead Thin Quad Flatpack (PT) - 7x7x1.0 mm Body [TQFP] With Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.5 +0 +53 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP4.11x4.11mm +TQFP, 48 Pin (https://www.lumissil.com/assets/pdf/core/IS31FL3236_DS.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +65 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm +TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +65 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm_ThermalVias +TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +91 +49 +Package_QFP +TQFP-48_7x7mm_P0.5mm +TQFP, 48 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/48L_TQFP_7x7x1_0mm_PT_C04-00300d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +48 +48 +Package_QFP +TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm +TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), generated with kicad-footprint-generator ipc_qfp_generator.py +TQFP QFP +0 +78 +53 +Package_QFP +TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm_ThermalVias +TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), generated with kicad-footprint-generator ipc_qfp_generator.py +TQFP QFP +0 +79 +53 +Package_QFP +TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [TQFP] thermal pad +QFP 0.5 +0 +90 +65 +Package_QFP +TQFP-64_7x7mm_P0.4mm +TQFP64 7x7, 0.4P CASE 932BH (see ON Semiconductor 932BH.PDF) +QFP 0.4 +0 +64 +64 +Package_QFP +TQFP-64_10x10mm_P0.5mm +TQFP, 64 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +64 +64 +Package_QFP +TQFP-64_14x14mm_P0.8mm +64-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +64 +64 +Package_QFP +TQFP-80-1EP_14x14mm_P0.65mm_EP9.5x9.5mm +80-Lead Plastic Thin Quad Flatpack (PF) - 14x14mm body, 9.5mm sq thermal pad (http://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf) +QFP 0.65 +0 +85 +81 +Package_QFP +TQFP-80_12x12mm_P0.5mm +80-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.5 +0 +80 +80 +Package_QFP +TQFP-80_14x14mm_P0.65mm +80-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.65 +0 +80 +80 +Package_QFP +TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm +TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +117 +101 +Package_QFP +TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm_ThermalVias +TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +143 +101 +Package_QFP +TQFP-100_12x12mm_P0.4mm +100-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.4 +0 +100 +100 +Package_QFP +TQFP-100_14x14mm_P0.5mm +TQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +100 +100 +Package_QFP +TQFP-120_14x14mm_P0.4mm +TQFP120 14x14 / TQFP120 CASE 932AZ (see ON Semiconductor 932AZ.PDF) +QFP 0.4 +0 +120 +120 +Package_QFP +TQFP-128_14x14mm_P0.4mm +TQFP128 14x14 / TQFP128 CASE 932BB (see ON Semiconductor 932BB.PDF) +QFP 0.4 +0 +128 +128 +Package_QFP +TQFP-144_16x16mm_P0.4mm +144-Lead Plastic Thin Quad Flatpack (PH) - 16x16x1 mm Body, 2.00 mm Footprint [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.4 +0 +144 +144 +Package_QFP +TQFP-144_20x20mm_P0.5mm +TQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +144 +144 +Package_QFP +TQFP-176_24x24mm_P0.5mm +TQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +176 +176 +Package_QFP +Texas_PHP0048E_HTQFP-48-1EP_7x7mm_P0.5mm_EP6.5x6.5mm_Mask3.62x3.62mm +Texas PHP0048E HTQFP, 48 Pin (https://www.ti.com/lit/ds/symlink/tusb4020bi.pdf#page=42), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas HTQFP QFP +0 +51 +49 +Package_QFP +Texas_PHP0048E_HTQFP-48-1EP_7x7mm_P0.5mm_EP6.5x6.5mm_Mask3.62x3.62mm_ThermalVias +Texas PHP0048E HTQFP, 48 Pin (https://www.ti.com/lit/ds/symlink/tusb4020bi.pdf#page=42), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas HTQFP QFP +0 +88 +49 +Package_QFP +VQFP-80_14x14mm_P0.65mm +VQFP, 80 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +80 +80 +Package_QFP +VQFP-100_14x14mm_P0.5mm +VQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +100 +100 +Package_QFP +VQFP-128_14x14mm_P0.4mm +VQFP, 128 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +128 +128 +Package_QFP +VQFP-176_20x20mm_P0.4mm +VQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +176 +176 +Package_SIP +PowerIntegrations_eSIP-7C +eSIP-7C Vertical Flat Package with Heatsink Tab, https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +Power Integrations E Package +0 +6 +6 +Package_SIP +PowerIntegrations_eSIP-7F +eSIP-7F Flat Package with Heatsink Tab https://ac-dc.power.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +Power Integrations L Package +0 +6 +6 +Package_SIP +SIP-8_19x3mm_P2.54mm +SIP 8-pin (http://www.njr.com/semicon/PDF/package/SIP8_E.pdf) +SIP8 +0 +8 +8 +Package_SIP +SIP-9_21.54x3mm_P2.54mm +SIP 9-pin () +SIP8 +0 +9 +9 +Package_SIP +SIP-9_22.3x3mm_P2.54mm +SIP 9-pin () +SIP8 +0 +9 +9 +Package_SIP +SIP3_11.6x8.5mm +RECOM,R78EXX,https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +SIP3 Regulator Module +0 +3 +3 +Package_SIP +SIP4_Sharp-SSR_P7.62mm_Angled +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +Package_SIP +SIP4_Sharp-SSR_P7.62mm_Angled_NoHole +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +Package_SIP +SIP4_Sharp-SSR_P7.62mm_Straight +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +Package_SIP +SIP9_Housing +SIP9 +SIP9 +0 +9 +9 +Package_SIP +SIP9_Housing_BigPads +SIP9, large pads +SIP9 +0 +9 +9 +Package_SIP +SLA704XM +SIP SLA704XM (http://www.sumzi.com/upload/files/2007/07/2007073114282034189.PDF) +SIP +0 +18 +18 +Package_SIP +STK672-040-E +SIP-22 (http://www.onsemi.com/pub_link/Collateral/EN5227-D.PDF) +SIP-22 +0 +22 +22 +Package_SIP +STK672-080-E +SIP-15 (http://www.onsemi.com/pub_link/Collateral/EN6507-D.PDF) +SIP-15 +0 +15 +15 +Package_SIP +Sanyo_STK4xx-15_59.2x8.0mm_P2.54mm +Sanyo SIP-15, 59.2mm x 8.0mm bosy size, STK-433E STK-435E STK-436E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) +Sanyo SIP-15 +0 +15 +15 +Package_SIP +Sanyo_STK4xx-15_78.0x8.0mm_P2.54mm +Sanyo SIP-15, 78.0mm x 8.0mm bosy size, STK-437E STK-439E STK-441E STK-443E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) +Sanyo SIP-15 +0 +15 +15 +Package_SO +Diodes_PSOP-8 +8-Lead Plastic PSOP, Exposed Die Pad (see https://www.diodes.com/assets/Datasheets/AP2204.pdf) +SSOP 0.50 exposed pad +0 +12 +9 +Package_SO +Diodes_SO-8EP +8-Lead Plastic SO, Exposed Die Pad (see https://www.diodes.com/assets/Package-Files/SO-8EP.pdf) +SO exposed pad +0 +9 +9 +Package_SO +ETSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3x4.2mm +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body with Exposed Pad [eTSSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +27 +21 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.3x2.3mm +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l7980.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +13 +9 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.3x2.3mm_ThermalVias +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l7980.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +18 +9 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +13 +9 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm_ThermalVias +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +20 +9 +Package_SO +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown +HSOP 11.0x15.9mm Pitch 1.27mm Slug Down (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +23 +21 +Package_SO +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown_ThermalVias +HSOP 11.0x15.9mm Pitch 1.27mm Slug Down Thermal Vias (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +45 +21 +Package_SO +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugUp +HSOP 11.0x15.9mm Pitch 1.27mm Slug Up (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +20 +20 +Package_SO +HSOP-32-1EP_7.5x11mm_P0.65mm_EP4.7x4.7mm +HSOP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT1746-3.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +37 +33 +Package_SO +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown +HSOP 11.0x15.9mm Pitch 0.65mm Slug Down (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +39 +37 +Package_SO +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown_ThermalVias +HSOP 11.0x15.9mm Pitch 0.65mm Slug Down Thermal Vias (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +61 +37 +Package_SO +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugUp +HSOP 11.0x15.9mm Pitch 0.65mm Slug Up (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +36 +36 +Package_SO +HSOP-54-1EP_7.5x17.9mm_P0.65mm_EP4.6x4.6mm +HSOP, 54 Pin (https://www.nxp.com/docs/en/package-information/98ASA10506D.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +59 +55 +Package_SO +HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm +HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSOP SO +0 +13 +9 +Package_SO +HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm_ThermalVias +HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSOP SO +0 +20 +9 +Package_SO +HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm +HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0014A +0 +20 +15 +Package_SO +HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm_ThermalVias +HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0014A +0 +36 +15 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad; (http://www.ti.com/lit/ds/symlink/drv8833.pdf) +SSOP 0.65 +0 +29 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm +HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +20 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm_ThermalVias +HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +27 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3mm_ThermalVias +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad with vias; (http://www.ti.com/lit/ds/symlink/drv8800.pdf) +SSOP 0.65 +0 +46 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm +HTSSOP, 16 Pin (https://www.st.com/resource/en/datasheet/stp08cp05.pdf#page=20), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +21 +17 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.74x3.86mm +HTSSOP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4011fb.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Analog-FE-CB +0 +23 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.85x4mm +HTSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Maxim-U20E-1 +0 +23 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias +HTSSOP 0.65 +0 +29 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.4x3.7mm +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/bq24006.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP/R-PDSO-G20 +0 +24 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0020U +0 +26 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0020U +0 +42 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias_HandSolder +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +42 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm +HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0020T +0 +23 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm_ThermalVias +HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0020T +0 +42 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_ThermalVias +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias +HTSSOP 0.65 +0 +45 +21 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm +HTSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/stp16cp05.pdf#page=25), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +31 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x2.98mm +HTSSOP, 24 Pin (https://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0024P +0 +27 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x2.98mm_ThermalVias +HTSSOP, 24 Pin (https://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP0024P +0 +49 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm +HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP/R-PDSO-G24 +0 +28 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm_ThermalVias +HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-PWP/R-PDSO-G24 +0 +47 +25 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.75x6.2mm +HTSSOP, 28 Pin (https://www.trinamic.com/fileadmin/assets/Support/AppNotes/AN005x-IC_Package_PCB_Footprint_Guidelines_HTSSOP28_rev1.00.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +30 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.75x6.2mm_ThermalVias +HTSSOP, 28 Pin (https://www.trinamic.com/fileadmin/assets/Support/AppNotes/AN005x-IC_Package_PCB_Footprint_Guidelines_HTSSOP28_rev1.00.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +41 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm +HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +30 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm_ThermalVias +HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +41 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +39 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +40 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm_ThermalVias +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +55 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_ThermalVias +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +58 +29 +Package_SO +HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm +HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf) +SSOP 0.65 PowerPAD +0 +43 +33 +Package_SO +HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm_ThermalVias +HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf) +SSOP 0.65 PowerPAD +0 +83 +33 +Package_SO +HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm +HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=46), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-DAP/R-PDSO-G38 +0 +46 +39 +Package_SO +HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm_ThermalVias +HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=46), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-DAP/R-PDSO-G38 +0 +87 +39 +Package_SO +HTSSOP-44-1EP_6.1x14mm_P0.635mm_EP5.2x14mm_Mask4.31x8.26mm +HTSSOP, 44 Pin (http://www.ti.com/lit/pdf/pptd165), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-DDW0044B +0 +61 +45 +Package_SO +HTSSOP-44-1EP_6.1x14mm_P0.635mm_EP5.2x14mm_Mask4.31x8.26mm_ThermalVias +HTSSOP, 44 Pin (http://www.ti.com/lit/pdf/pptd165), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-DDW0044B +0 +118 +45 +Package_SO +HTSSOP-44_6.1x14mm_P0.635mm_TopEP4.14x7.01mm +HTSSOP, 44 Pin (http://www.ti.com/lit/ds/symlink/tpa3251.pdf#page=38), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO TI-DDV0044D +0 +44 +44 +Package_SO +HTSSOP-56-1EP_6.1x14mm_P0.5mm_EP3.61x6.35mm +HTSSOP56: plastic thin shrink small outline package http://www.ti.com/lit/ds/symlink/drv8301.pdf +HTSSOP 0.5 +0 +72 +57 +Package_SO +HVSSOP-8-1EP_3x3mm_P0.65mm_EP1.57x1.89mm +HVSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa6110a2.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +13 +9 +Package_SO +HVSSOP-8-1EP_3x3mm_P0.65mm_EP1.57x1.89mm_ThermalVias +HVSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa6110a2.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +18 +9 +Package_SO +HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.57x1.88mm +HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +15 +11 +Package_SO +HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.57x1.88mm_ThermalVias +HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +20 +11 +Package_SO +Infineon_PG-DSO-8-24_4x5mm +Infineon PG-DSO, 8 Pin (https://www.infineon.com/dgdl/Infineon-BSP752R-DS-v01_02-EN.pdf?fileId=db3a304316f112290116f233cbd271e9#page=17), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +8 +8 +Package_SO +Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm +Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +13 +9 +Package_SO +Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm_ThermalVias +Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +23 +9 +Package_SO +Infineon_PG-DSO-8-43 +Infineon_PG-DSO-8-43 +DSO DSO-8 SOIC SOIC-8 +0 +12 +9 +Package_SO +Infineon_PG-DSO-8-59_7.5x6.3mm +Infineon PG-DSO, 8 Pin (https://www.infineon.com/dgdl/Infineon-1EDCxxI12AH-DS-v02_00-EN.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +8 +8 +Package_SO +Infineon_PG-DSO-12-9 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/) +PG-DSO +0 +23 +13 +Package_SO +Infineon_PG-DSO-12-9_ThermalVias +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/) +PG-DSO +0 +42 +13 +Package_SO +Infineon_PG-DSO-12-11 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/) +PG-DSO +0 +23 +13 +Package_SO +Infineon_PG-DSO-12-11_ThermalVias +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/) +PG-DSO +0 +42 +13 +Package_SO +Infineon_PG-DSO-20-30 +Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/) +DSO-20 +0 +31 +21 +Package_SO +Infineon_PG-DSO-20-30_ThermalVias +Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/) +DSO-20 +0 +45 +21 +Package_SO +Infineon_PG-DSO-20-32 +Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-32/) +DSO-20 +0 +20 +20 +Package_SO +Infineon_PG-DSO-20-85 +Infineon SO package 20pin with exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-85/) +DSO-20 +0 +31 +21 +Package_SO +Infineon_PG-DSO-20-85_ThermalVias +Infineon SO package 20pin with exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-85/) +DSO-20 +0 +113 +21 +Package_SO +Infineon_PG-DSO-20-87 +Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-87/) +DSO-20 +0 +20 +20 +Package_SO +Infineon_PG-DSO-20-U03_7.5x12.8mm +Infineon PG-DSO, 20 Pin (https://www.infineon.com/dgdl/Infineon-2ED1323S12P_2ED1324S12P-DataSheet-v01_01-EN.pdf?fileId=8ac78c8c869190210186e92f0f506d0c), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +20 +20 +Package_SO +Infineon_PG-TSDSO-14-22 +Infineon_PG-TSDSO-14-22 +Infineon TSDSO 14-22 +0 +17 +15 +Package_SO +Linear_MSOP-12-16-1EP_3x4mm_P0.5mm +12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see http://cds.linear.com/docs/en/datasheet/3630fd.pdf) +SSOP 0.5 +0 +15 +13 +Package_SO +Linear_MSOP-12-16_3x4mm_P0.5mm +12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see https://www.analog.com/media/en/technical-documentation/data-sheets/3748fb.pdf) +SSOP 0.5 +0 +12 +12 +Package_SO +MFSOP6-4_4.4x3.6mm_P1.27mm +https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.4pin%20MFSOP6.html +MFSOP 4 pin SMD +0 +4 +4 +Package_SO +MFSOP6-5_4.4x3.6mm_P1.27mm +https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.5pin%20MFSOP6.html +MFSOP 4 pin SMD +0 +5 +5 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.5x1.8mm +MSOP, 8 Pin (https://www.diodes.com/assets/Package-Files/MSOP-8EP.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.5x1.8mm_ThermalVias +MSOP, 8 Pin (https://www.diodes.com/assets/Package-Files/MSOP-8EP.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm +MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm_ThermalVias +MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm +MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm_ThermalVias +MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm +MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm_ThermalVias +MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm +MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +14 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm_ThermalVias +MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +19 +9 +Package_SO +MSOP-8_3x3mm_P0.65mm +MSOP, 8 Pin (https://www.jedec.org/system/files/docs/mo-187F.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +8 +8 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm +MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +15 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm_ThermalVias +MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +20 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm +MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +15 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm_ThermalVias +MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +20 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP2.2x3.1mm_Mask1.83x1.89mm +MSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/xtr111.pdf#page=27), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +16 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP2.2x3.1mm_Mask1.83x1.89mm_ThermalVias +MSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/xtr111.pdf#page=27), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +23 +11 +Package_SO +MSOP-10_3x3mm_P0.5mm +MSOP, 10 Pin (https://www.jedec.org/system/files/docs/mo-187F.pdf variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +10 +10 +Package_SO +MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +17 +13 +Package_SO +MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm_ThermalVias +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +24 +13 +Package_SO +MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.5 +0 +19 +13 +Package_SO +MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.5 +0 +25 +13 +Package_SO +MSOP-12-16_3x4mm_P0.5mm +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.5 +0 +12 +12 +Package_SO +MSOP-12_3x4mm_P0.65mm +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/6957fb.pdf#page=36), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +12 +12 +Package_SO +MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm +MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +21 +17 +Package_SO +MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm_ThermalVias +MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +28 +17 +Package_SO +MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm +MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +21 +17 +Package_SO +MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias +MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +28 +17 +Package_SO +MSOP-16_3x4.039mm_P0.5mm +MSOP, 16 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081669_A_MS16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +16 +16 +Package_SO +MSOP-16_3x4mm_P0.5mm +MSOP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/436412f.pdf#page=22), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +16 +16 +Package_SO +NXP_HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.2x3.4mm +HTSSOP, 28 Pin (https://www.nxp.com/docs/en/package-information/SOT1172-3.pdf) +HTSSOP SO +0 +41 +29 +Package_SO +NXP_HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.2x3.4mm_ThermalVias +HTSSOP, 28 Pin (https://www.nxp.com/docs/en/package-information/SOT1172-3.pdf) +HTSSOP SO +0 +50 +29 +Package_SO +ONSemi_SO-8FL_488AA +ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A https://www.onsemi.com/pub/Collateral/488AA.PDF +ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A +0 +5 +5 +Package_SO +OnSemi_Micro8 +ON Semiconductor Micro8 (Case846A-02): https://www.onsemi.com/pub/Collateral/846A-02.PDF +micro8 +0 +8 +8 +Package_SO +PSOP-44_16.9x27.17mm_P1.27mm +PSOP44: plastic thin shrink small outline package; 44 leads; body width 16.90 mm +PSOP 1.27 +0 +44 +44 +Package_SO +PowerIntegrations_SO-8 +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://ac-dc.power.com/sites/default/files/product-docs/senzero_family_datasheet.pdf +SOIC 1.27 +0 +8 +8 +Package_SO +PowerIntegrations_SO-8B +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf +SOIC 1.27 +0 +7 +7 +Package_SO +PowerIntegrations_SO-8C +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf +SOIC 1.27 +0 +7 +7 +Package_SO +PowerIntegrations_eSOP-12B +eSOP-12B SMT Flat Package with Heatsink Tab, see https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +Power Integrations K Package +0 +12 +12 +Package_SO +PowerPAK_SO-8L_Single +PowerPAK SO-8L Single (https://www.vishay.com/docs/64721/an913.pdf) +PowerPAK SO-8L_Single +0 +13 +5 +Package_SO +PowerPAK_SO-8_Dual +PowerPAK SO-8 Dual (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72600/72600.pdf) +PowerPAK SO-8 Dual +0 +10 +6 +Package_SO +PowerPAK_SO-8_Single +PowerPAK SO-8 Single (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72599/72599.pdf) +PowerPAK SO-8 Single +0 +9 +5 +Package_SO +PowerSSO-16-1EP_3.9x4.9mm_P0.5mm_EP2.5x3.61mm +PowerSSO, 16 Pin (https://www.st.com/resource/en/datasheet/vnd7020aj.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +PowerSSO SO +0 +18 +17 +Package_SO +PowerSSO-16-1EP_3.9x4.9mm_P0.5mm_EP2.5x3.61mm_ThermalVias +PowerSSO, 16 Pin (https://www.st.com/resource/en/datasheet/vnd7020aj.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +PowerSSO SO +0 +27 +17 +Package_SO +QSOP-16_3.9x4.9mm_P0.635mm +QSOP, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +16 +16 +Package_SO +QSOP-20_3.9x8.7mm_P0.635mm +QSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +20 +20 +Package_SO +QSOP-24_3.9x8.7mm_P0.635mm +QSOP, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +24 +24 +Package_SO +QSOP-28_3.9x9.9mm_P0.635mm +QSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +28 +28 +Package_SO +SO-4_4.4x2.3mm_P1.27mm +4-Lead Plastic Small Outline (SO), see http://datasheet.octopart.com/OPIA403BTRE-Optek-datasheet-5328560.pdf +SO SOIC 1.27 +0 +4 +4 +Package_SO +SO-4_4.4x3.6mm_P2.54mm +4-Lead Plastic Small Outline (SO), see https://www.elpro.org/de/index.php?controller=attachment&id_attachment=339 +SO SOIC 2.54 +0 +4 +4 +Package_SO +SO-4_4.4x3.9mm_P2.54mm +SO, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=10047&prodName=TLP3123), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +4 +4 +Package_SO +SO-4_4.4x4.3mm_P2.54mm +4-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/docs/AV02-0173EN +SO SOIC 2.54 +0 +4 +4 +Package_SO +SO-4_7.6x3.6mm_P2.54mm +4-Lead Plastic Small Outline (SO) (http://www.everlight.com/file/ProductFile/201407061745083848.pdf) +SO SOIC 2.54 +0 +4 +4 +Package_SO +SO-5-6_4.55x3.7mm_P1.27mm +SO, 5 Pin (https://toshiba.semicon-storage.com/us/semiconductor/design-development/package/detail.5pin%20SO6.html), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO TLP2310 Toshiba +0 +5 +5 +Package_SO +SO-5_4.4x3.6mm_P1.27mm +5-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SO SOIC 1.27 +0 +5 +5 +Package_SO +SO-6L_10x3.84mm_P1.27mm +6-pin plasic small outline 7,5mm long https://toshiba.semicon-storage.com/info/docget.jsp?did=53548&prodName=TLP2770 +SO-6L +0 +6 +6 +Package_SO +SO-6_4.4x3.6mm_P1.27mm +6-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SO SOIC 1.27 +0 +6 +6 +Package_SO +SO-8_3.9x4.9mm_P1.27mm +SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +8 +8 +Package_SO +SO-8_5.3x6.2mm_P1.27mm +SO, 8 Pin (https://www.ti.com/lit/ml/msop001a/msop001a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +8 +8 +Package_SO +SO-14_3.9x8.65mm_P1.27mm +SO, 14 Pin (https://www.st.com/resource/en/datasheet/l6491.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +14 +14 +Package_SO +SO-14_5.3x10.2mm_P1.27mm +SO, 14 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +14 +14 +Package_SO +SO-16_3.9x9.9mm_P1.27mm +SO, 16 Pin (https://www.nxp.com/docs/en/package-information/SOT109-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO SOT109-1 +0 +16 +16 +Package_SO +SO-16_5.3x10.2mm_P1.27mm +SO, 16 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +16 +16 +Package_SO +SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm +SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +23 +21 +Package_SO +SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm_ThermalVias +SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +51 +21 +Package_SO +SO-20_5.3x12.6mm_P1.27mm +SO, 20 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +20 +20 +Package_SO +SO-20_12.8x7.5mm_P1.27mm +SO-20, 12.8x7.5mm, https://www.nxp.com/docs/en/data-sheet/SA605.pdf +S0-20 +0 +20 +20 +Package_SO +SO-24_5.3x15mm_P1.27mm +SO, 24 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +24 +24 +Package_SO +SOIC-4_4.55x2.6mm_P1.27mm +SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12884&prodName=TLP291), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +4 +4 +Package_SO +SOIC-4_4.55x3.7mm_P2.54mm +SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=11791&prodName=TLP185), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +4 +4 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm_ThermalVias +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm +SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm_ThermalVias +SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm_ThermalVias +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm +SOIC, 8 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP2303A/document_id/494#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm_ThermalVias +SOIC, 8 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP2303A/document_id/494#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm +SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +14 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm_ThermalVias +SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +23 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm +SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm_ThermalVias +SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-N7_3.9x4.9mm_P1.27mm +8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], pin 7 removed (Microchip Packaging Specification 00000049BS.pdf, http://www.onsemi.com/pub/Collateral/NCP1207B.PDF) +SOIC 1.27 +0 +7 +7 +Package_SO +SOIC-8W_5.3x5.3mm_P1.27mm +8-Lead Plastic Small Outline (SM) - 5.28 mm Body [SOIC] (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf) +SOIC 1.27 +0 +8 +8 +Package_SO +SOIC-8_3.9x4.9mm_P1.27mm +SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-8_5.23x5.23mm_P1.27mm +SOIC, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf#page=68), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-8_5.275x5.275mm_P1.27mm +SOIC, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20005045C.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-8_7.5x5.85mm_P1.27mm +SOIC, 8 Pin (http://www.ti.com/lit/ml/mpds382b/mpds382b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-10_3.9x4.9mm_P1mm +SOIC, 10 Pin (https://www.onsemi.com/pub/Collateral/751BQ.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO SOIC-10 NB +0 +10 +10 +Package_SO +SOIC-14-16_3.9x9.9mm_P1.27mm +SOIC, 16 Pin package with pin 2 and 13 removed for voltage clearance (UCC256301, https://www.ti.com/lit/ds/symlink/ucc256301.pdf) +SOIC SO +0 +14 +14 +Package_SO +SOIC-14W_7.5x9mm_P1.27mm +SOIC, 14 Pin (JEDEC MS-013AF, https://www.analog.com/media/en/package-pcb-resources/package/54614177245586rw_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +14 +14 +Package_SO +SOIC-14_3.9x8.7mm_P1.27mm +SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +14 +14 +Package_SO +SOIC-16W-12_7.5x10.3mm_P1.27mm +SOIC-16 With 12 Pin Placed - Wide, 7.50 mm Body [SOIC] (https://docs.broadcom.com/docs/AV02-0169EN) +SOIC 1.27 16 12 Wide +0 +12 +12 +Package_SO +SOIC-16W_5.3x10.2mm_P1.27mm +SOIC, 16 Pin (http://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-16W_7.5x10.3mm_P1.27mm +SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-16W_7.5x12.8mm_P1.27mm +SOIC, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ri_soic_ic/ri_16_1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-16_3.9x9.9mm_P1.27mm +SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-16_4.55x10.3mm_P1.27mm +SOIC, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12858&prodName=TLP291-4), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-18W_7.5x11.6mm_P1.27mm +SOIC, 18 Pin (JEDEC MS-013AB, https://www.analog.com/media/en/package-pcb-resources/package/33254132129439rw_18.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +18 +18 +Package_SO +SOIC-20W_7.5x12.8mm_P1.27mm +SOIC, 20 Pin (JEDEC MS-013AC, https://www.analog.com/media/en/package-pcb-resources/package/233848rw_20.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +20 +Package_SO +SOIC-20W_7.5x15.4mm_P1.27mm +SOIC, 20 Pin (JEDEC MS-013AD, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/RI_20_1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +20 +Package_SO +SOIC-24W_7.5x15.4mm_P1.27mm +SOIC, 24 Pin (JEDEC MS-013AD, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/RW_24.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +24 +24 +Package_SO +SOIC-28W_7.5x17.9mm_P1.27mm +SOIC, 28 Pin (JEDEC MS-013AE, https://www.analog.com/media/en/package-pcb-resources/package/35833120341221rw_28.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +28 +28 +Package_SO +SOIC-28W_7.5x18.7mm_P1.27mm +SOIC, 28 Pin (https://www.akm.com/akm/en/file/datasheet/AK5394AVS.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +28 +28 +Package_SO +SOJ-36_10.16x23.49mm_P1.27mm +SOJ, 36 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOJ SO +0 +36 +36 +Package_SO +SOP-4_3.8x4.1mm_P2.54mm +SOP, 4 Pin (http://www.ixysic.com/home/pdfs.nsf/www/CPC1017N.pdf/$file/CPC1017N.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +4 +4 +Package_SO +SOP-4_4.4x2.6mm_P1.27mm +SOP, 4 Pin (http://www.vishay.com/docs/83510/tcmt1100.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +4 +4 +Package_SO +SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +13 +9 +Package_SO +SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm_ThermalVias +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +20 +9 +Package_SO +SOP-8_3.9x4.9mm_P1.27mm +SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=79), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-8_3.76x4.96mm_P1.27mm +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX211.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-8_5.28x5.23mm_P1.27mm +SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=80), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-8_6.62x9.15mm_P2.54mm +SOP, 8 Pin (http://www.ti.com/lit/ds/symlink/iso1050.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-8_6.605x9.655mm_P2.54mm +SOP, 8 Pin (https://www.onsemi.com/pdf/datasheet/hcpl2631m-d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-16_3.9x9.9mm_P1.27mm +SOP, 16 Pin (https://www.diodes.com/assets/Datasheets/PAM8403.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +16 +16 +Package_SO +SOP-16_4.4x10.4mm_P1.27mm +SOP, 16 Pin (https://www.vishay.com/docs/83513/tcmd1000.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +16 +16 +Package_SO +SOP-16_4.55x10.3mm_P1.27mm +SOP, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12855&prodName=TLP290-4), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +16 +16 +Package_SO +SOP-18_7.495x11.515mm_P1.27mm +SOP, 18 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=30523), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +18 +18 +Package_SO +SOP-18_7x12.5mm_P1.27mm +SOP, 18 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=30523), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +18 +18 +Package_SO +SOP-20_7.5x12.8mm_P1.27mm +SOP, 20 Pin (https://www.holtek.com/documents/10179/116723/sop20-300.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +20 +20 +Package_SO +SOP-24_7.5x15.4mm_P1.27mm +SOP, 24 Pin (http://www.issi.com/WW/pdf/31FL3218.pdf#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +24 +24 +Package_SO +SOP-28_8.4x18.16mm_P1.27mm +SOP, 28 Pin (https://www.issi.com/WW/pdf/62-65C256AL.pdf#page=12), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +28 +28 +Package_SO +SOP-44_12.6x28.5mm_P1.27mm +SOP, 44 Pin (https://www.mxic.com.tw/Lists/Datasheet/Attachments/8177/MX23C6410,%205V,%2064Mb,%20v3.1.pdf#page=5), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +44 +44 +Package_SO +SSO-4_6.7x5.1mm_P2.54mm_Clearance8mm +4-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/84299/vor1142b4.pdf +SSO Stretched SO SOIC 2.54 +0 +4 +4 +Package_SO +SSO-6_6.8x4.6mm_P1.27mm_Clearance7mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC 1.27 +0 +6 +6 +Package_SO +SSO-6_6.8x4.6mm_P1.27mm_Clearance8mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC 1.27 +0 +6 +6 +Package_SO +SSO-7-8_6.4x9.78mm_P2.54mm +SSO, 7 Pin (https://b2b-api.panasonic.eu/file_stream/pids/fileversion/2787), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSO SO +0 +7 +7 +Package_SO +SSO-8-7_6.4x9.7mm_P2.54mm +SSO, 7 Pin (https://gitlab.com/Sirdel/public/-/blob/3a5b5234461aee14649dc0eb10cbdef84d37b29e/Datasheets/BC2213A-EN.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSO SO +0 +7 +7 +Package_SO +SSO-8_6.7x9.8mm_P2.54mm_Clearance8mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/83831/lh1533ab.pdf +SSO Stretched SO SOIC Pitch 2.54 +0 +8 +8 +Package_SO +SSO-8_6.8x5.9mm_P1.27mm_Clearance7mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSO-8_6.8x5.9mm_P1.27mm_Clearance8mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSO-8_9.6x6.3mm_P1.27mm_Clearance10.5mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSO-8_13.6x6.3mm_P1.27mm_Clearance14.2mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSOP-8_2.95x2.8mm_P0.65mm +SSOP-8 2.9 x2.8mm Pitch 0.65mm +SSOP-8 2.95x2.8mm Pitch 0.65mm +0 +8 +8 +Package_SO +SSOP-8_3.9x5.05mm_P1.27mm +SSOP, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +8 +8 +Package_SO +SSOP-8_3.95x5.21x3.27mm_P1.27mm +SSOP-8 3.95x5.21x3.27mm Pitch 1.27mm +SSOP-8 3.95x5.21x3.27mm 1.27mm +0 +8 +8 +Package_SO +SSOP-8_5.25x5.24mm_P1.27mm +SSOP, 8 Pin (http://www.fujitsu.com/ca/en/Images/MB85RS2MT-DS501-00023-1v0-E.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +8 +8 +Package_SO +SSOP-10-1EP_3.9x4.9mm_P1mm_EP2.1x3.3mm +SSOP, 10 Pin (http://download.py32.org/%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C/zh-CN/PY32F002A%20%E7%B3%BB%E5%88%97%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C_Rev1.0.pdf#page=44), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO ESSOP-10 +0 +12 +11 +Package_SO +SSOP-10-1EP_3.9x4.9mm_P1mm_EP2.1x3.3mm_ThermalVias +SSOP, 10 Pin (http://download.py32.org/%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C/zh-CN/PY32F002A%20%E7%B3%BB%E5%88%97%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C_Rev1.0.pdf#page=44), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO ESSOP-10 +0 +15 +11 +Package_SO +SSOP-10_3.9x4.9mm_P1.00mm +10-Lead SSOP, 3.9 x 4.9mm body, 1.00mm pitch (http://www.st.com/resource/en/datasheet/viper01.pdf) +SSOP 3.9 4.9 1.00 +0 +10 +10 +Package_SO +SSOP-14_5.3x6.2mm_P0.65mm +SSOP14: plastic shrink small outline package; 14 leads; body width 5.3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot337-1_po.pdf) +SSOP 0.65 +0 +14 +14 +Package_SO +SSOP-16_3.9x4.9mm_P0.635mm +SSOP16: plastic shrink small outline package; 16 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot519-1_po.pdf) +SSOP 0.635 +0 +16 +16 +Package_SO +SSOP-16_4.4x5.2mm_P0.65mm +SSOP16: plastic shrink small outline package; 16 leads; body width 4.4 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot369-1_po.pdf) +SSOP 0.65 +0 +16 +16 +Package_SO +SSOP-16_5.3x6.2mm_P0.65mm +SSOP, 16 Pin (https://assets.nexperia.com/documents/data-sheet/74HC_HCT165.pdf#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +16 +16 +Package_SO +SSOP-18_4.4x6.5mm_P0.65mm +SSOP18: plastic shrink small outline package; 18 leads; body width 4.4 mm (http://toshiba.semicon-storage.com/info/docget.jsp?did=30523&prodName=TBD62783APG) +SSOP 0.65 +0 +18 +18 +Package_SO +SSOP-20_3.9x8.7mm_P0.635mm +SSOP20: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see http://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT231X.pdf) +SSOP 0.635 +0 +20 +20 +Package_SO +SSOP-20_4.4x6.5mm_P0.65mm +SSOP, 20 Pin (https://www.jedec.org/system/files/docs/Mo-152c.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO JEDEC-MO-152-AC SOT266-1 Nisshinbo-PI-SSOP20-E-A Rohm-SSOP-B20 +0 +20 +20 +Package_SO +SSOP-20_5.3x7.2mm_P0.65mm +SSOP, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001800C.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +20 +20 +Package_SO +SSOP-24_3.9x8.7mm_P0.635mm +SSOP24: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot556-1_po.pdf) +SSOP 0.635 +0 +24 +24 +Package_SO +SSOP-24_5.3x8.2mm_P0.65mm +24-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +24 +24 +Package_SO +SSOP-28_3.9x9.9mm_P0.635mm +SSOP28: plastic shrink small outline package; 28 leads; body width 3.9 mm; lead pitch 0.635; (see http://cds.linear.com/docs/en/datasheet/38901fb.pdf) +SSOP 0.635 +0 +28 +28 +Package_SO +SSOP-28_5.3x10.2mm_P0.65mm +28-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +28 +28 +Package_SO +SSOP-32_11.305x20.495mm_P1.27mm +SSOP, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +32 +32 +Package_SO +SSOP-44_5.3x12.8mm_P0.5mm +44-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (http://cds.linear.com/docs/en/datasheet/680313fa.pdf) +SSOP 0.5 +0 +44 +44 +Package_SO +SSOP-48_5.3x12.8mm_P0.5mm +SSOP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-ssop/05081887_A_G48.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +48 +48 +Package_SO +SSOP-48_7.5x15.9mm_P0.635mm +SSOP48: plastic shrink small outline package; 48 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot370-1_po.pdf) +SSOP 0.635 +0 +48 +48 +Package_SO +SSOP-56_7.5x18.5mm_P0.635mm +SSOP56: plastic shrink small outline package; 56 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot371-1_po.pdf) +SSOP 0.635 +0 +56 +56 +Package_SO +STC_SOP-16_3.9x9.9mm_P1.27mm +STC SOP, 16 Pin (https://www.stcmicro.com/datasheet/STC15F2K60S2-en.pdf#page=156), generated with kicad-footprint-generator ipc_gullwing_generator.py +STC SOP SO +0 +16 +16 +Package_SO +ST_MultiPowerSO-30 +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm (http://www.st.com/resource/en/datasheet/vnh2sp30-e.pdf) +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm +0 +33 +33 +Package_SO +ST_PowerSSO-24_SlugDown +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +25 +25 +Package_SO +ST_PowerSSO-24_SlugDown_ThermalVias +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +38 +25 +Package_SO +ST_PowerSSO-24_SlugUp +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +24 +24 +Package_SO +ST_PowerSSO-36_SlugDown +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +37 +37 +Package_SO +ST_PowerSSO-36_SlugDown_ThermalVias +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +50 +37 +Package_SO +ST_PowerSSO-36_SlugUp +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +36 +36 +Package_SO +TI_SO-PowerPAD-8 +8-Lead Plastic PSOP, Exposed Die Pad (TI DDA0008B, see http://www.ti.com/lit/ds/symlink/lm3404.pdf) +SSOP 0.50 exposed pad +0 +12 +9 +Package_SO +TI_SO-PowerPAD-8_ThermalVias +8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm² body, exposed pad, thermal vias with large copper area, as proposed in http://www.ti.com/lit/ds/symlink/tps5430.pdf +HTSOP 1.27 +0 +19 +9 +Package_SO +TSOP-5_1.65x3.05mm_P0.95mm +TSOP-5 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf +Jedec MO-193C TSOP-5L +0 +5 +5 +Package_SO +TSOP-6_1.65x3.05mm_P0.95mm +TSOP-6 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf +Jedec MO-193C TSOP-6L +0 +6 +6 +Package_SO +TSOP-I-24_12.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_14.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_16.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_18.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-28_11.8x8mm_P0.55mm +TSOP I, 28 pins, 18.8x8mm body, 0.55mm pitch, IPC-calculated pads (http://ww1.microchip.com/downloads/en/devicedoc/doc0807.pdf) +TSOP I 28 pins +0 +28 +28 +Package_SO +TSOP-I-32_11.8x8mm_P0.5mm +TSOP-I, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_12.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_14.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_16.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_18.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_18.4x8mm_P0.5mm_Reverse +TSOP I, 32 pins, 18.4x8mm body (http://www.futurlec.com/Datasheet/Memory/628128.pdf), reverse mount +TSOP I 32 reverse +0 +32 +32 +Package_SO +TSOP-I-40_12.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_14.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_16.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_18.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-48_12.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_14.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_16.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_18.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-56_14.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-I-56_16.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-I-56_18.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-II-32_21.0x10.2mm_P1.27mm +32-lead plastic TSOP; Type II +TSOP-II 32 +0 +32 +32 +Package_SO +TSOP-II-40-44_10.16x18.37mm_P0.8mm +TSOP-II, 40 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-tsop2-44pin-ptsb0044ge-e), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-II SO +0 +40 +40 +Package_SO +TSOP-II-44_10.16x18.41mm_P0.8mm +TSOP-II, 44 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-II SO +0 +44 +44 +Package_SO +TSOP-II-54_22.2x10.16mm_P0.8mm +54-lead TSOP typ II package +TSOPII TSOP2 +0 +54 +54 +Package_SO +TSSOP-4_4.4x5mm_P4mm +TSSOP, 4 Pin (https://www.onsemi.com/pub/Collateral/MDB8S-D.PDF#page=4), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +4 +4 +Package_SO +TSSOP-8_3x3mm_P0.65mm +TSSOP8: plastic thin shrink small outline package; 8 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot505-1_po.pdf) +SSOP 0.65 +0 +8 +8 +Package_SO +TSSOP-8_4.4x3mm_P0.65mm +TSSOP, 8 Pin (JEDEC MO-153 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +8 +8 +Package_SO +TSSOP-10_3x3mm_P0.5mm +TSSOP10: plastic thin shrink small outline package; 10 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot552-1_po.pdf) +SSOP 0.5 +0 +10 +10 +Package_SO +TSSOP-14-1EP_4.4x5mm_P0.65mm +14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf) +SSOP 0.65 exposed pad +0 +18 +15 +Package_SO +TSSOP-14_4.4x3.6mm_P0.4mm +TSSOP, 14 Pin (JEDEC MO-194 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +14 +14 +Package_SO +TSSOP-14_4.4x5mm_P0.65mm +TSSOP, 14 Pin (JEDEC MO-153 Var AB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +14 +14 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm +FE Package; 16-Lead Plastic TSSOP (4.4mm); Exposed Pad Variation BB; (see Linear Technology 1956f.pdf) +SSOP 0.65 +0 +24 +17 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm +TSSOP, 16 Pin (Allegro A4954 https://www.allegromicro.com/-/media/Files/Datasheets/A4954-Datasheet.ashx), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +21 +17 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm_ThermalVias +TSSOP, 16 Pin (Allegro A4954 https://www.allegromicro.com/-/media/Files/Datasheets/A4954-Datasheet.ashx), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +26 +17 +Package_SO +TSSOP-16_4.4x3.6mm_P0.4mm +TSSOP, 16 Pin (JEDEC MO-194 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +16 +16 +Package_SO +TSSOP-16_4.4x5mm_P0.65mm +TSSOP, 16 Pin (JEDEC MO-153 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +16 +16 +Package_SO +TSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.15x3.35mm +TSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100132.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +25 +21 +Package_SO +TSSOP-20_4.4x5mm_P0.4mm +TSSOP, 20 Pin (JEDEC MO-194 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-20_4.4x5mm_P0.5mm +TSSOP, 20 Pin (JEDEC MO-153 Var BA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-20_4.4x6.5mm_P0.65mm +TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm +TSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=37), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +31 +25 +Package_SO +TSSOP-24_4.4x5mm_P0.4mm +TSSOP, 24 Pin (JEDEC MO-153 Var CA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-24_4.4x6.5mm_P0.5mm +TSSOP, 24 Pin (JEDEC MO-153 Var BB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-24_4.4x7.8mm_P0.65mm +TSSOP, 24 Pin (JEDEC MO-153 Var AD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-24_6.1x7.8mm_P0.65mm +TSSOP, 24 Pin (JEDEC MO-153 Var DA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-28-1EP_4.4x9.7mm_P0.65mm +TSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; Exposed Pad Variation; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot361-1_po.pdf) +SSOP 0.65 +0 +36 +29 +Package_SO +TSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x6.7mm +TSSOP, 28 Pin (JEDEC MO-153 Var AET Pkg.Code U28E-4 https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +35 +29 +Package_SO +TSSOP-28_4.4x7.8mm_P0.5mm +TSSOP, 28 Pin (JEDEC MO-153 Var BC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_4.4x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var AE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_6.1x7.8mm_P0.5mm +TSSOP, 28 Pin (JEDEC MO-153 Var EA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_6.1x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var DB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_8x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var GA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-30_4.4x7.8mm_P0.5mm +TSSOP, 30 Pin (JEDEC MO-153 Var BC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +30 +30 +Package_SO +TSSOP-30_6.1x9.7mm_P0.65mm +TSSOP, 30 Pin (JEDEC MO-153 Var DB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +30 +30 +Package_SO +TSSOP-32_4.4x6.5mm_P0.4mm +TSSOP, 32 Pin (JEDEC MO-153 Var CB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-32_6.1x11mm_P0.65mm +TSSOP, 32 Pin (JEDEC MO-153 Var DC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-32_8x11mm_P0.65mm +TSSOP, 32 Pin (JEDEC MO-153 Var GB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-36_4.4x7.8mm_P0.4mm +TSSOP, 36 Pin (JEDEC MO-153 Var CC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_4.4x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x7.8mm_P0.4mm +TSSOP, 36 Pin (JEDEC MO-153 Var FA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var EB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x12.5mm_P0.65mm +TSSOP, 36 Pin (JEDEC MO-153 Var DD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_8x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var HA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_8x12.5mm_P0.65mm +TSSOP, 36 Pin (JEDEC MO-153 Var GC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-38_4.4x9.7mm_P0.5mm +TSSOP, 38 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +38 +38 +Package_SO +TSSOP-38_6.1x12.5mm_P0.65mm +TSSOP, 38 Pin (JEDEC MO-153 Var DD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +38 +38 +Package_SO +TSSOP-40_6.1x11mm_P0.5mm +TSSOP, 40 Pin (JEDEC MO-153 Var EC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_6.1x14mm_P0.65mm +TSSOP, 40 Pin (JEDEC MO-153 Var DE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_8x11mm_P0.5mm +TSSOP, 40 Pin (JEDEC MO-153 Var HB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_8x14mm_P0.65mm +TSSOP, 40 Pin (JEDEC MO-153 Var GD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-44_4.4x11.2mm_P0.5mm +TSSOP44: plastic thin shrink small outline package; 44 leads; body width 4.4 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot510-1_po.pdf) +SSOP 0.5 +0 +44 +44 +Package_SO +TSSOP-44_4.4x11mm_P0.5mm +TSSOP, 44 Pin (JEDEC MO-153 Var BE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +44 +44 +Package_SO +TSSOP-44_6.1x11mm_P0.5mm +TSSOP, 44 Pin (JEDEC MO-153 Var EC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +44 +44 +Package_SO +TSSOP-48_4.4x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var CD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_6.1x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var FB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_6.1x12.5mm_P0.5mm +TSSOP, 48 Pin (JEDEC MO-153 Var ED https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_8x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var JA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_8x12.5mm_P0.5mm +TSSOP, 48 Pin (JEDEC MO-153 Var HC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-50_4.4x12.5mm_P0.5mm +TSSOP, 50 Pin (JEDEC MO-153 Var BF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +50 +50 +Package_SO +TSSOP-52_6.1x11mm_P0.4mm +TSSOP, 52 Pin (JEDEC MO-153 Var FC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +52 +52 +Package_SO +TSSOP-52_8x11mm_P0.4mm +TSSOP, 52 Pin (JEDEC MO-153 Var JB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +52 +52 +Package_SO +TSSOP-56_4.4x11.3mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-194 Var AF https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_6.1x12.5mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-153 Var FD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_6.1x14mm_P0.5mm +TSSOP, 56 Pin (JEDEC MO-153 Var EE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_8x12.5mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-153 Var JC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_8x14mm_P0.5mm +TSSOP, 56 Pin (JEDEC MO-153 Var HD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-60_8x12.5mm_P0.4mm +TSSOP, 60 Pin (JEDEC MO-153 Var JC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +60 +60 +Package_SO +TSSOP-64_6.1x14mm_P0.4mm +TSSOP, 64 Pin (JEDEC MO-153 Var FE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-64_6.1x17mm_P0.5mm +TSSOP, 64 Pin (JEDEC MO-153 Var EF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-64_8x14mm_P0.4mm +TSSOP, 64 Pin (JEDEC MO-153 Var JD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-68_8x14mm_P0.4mm +TSSOP, 68 Pin (JEDEC MO-153 Var JD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +68 +68 +Package_SO +TSSOP-80_6.1x17mm_P0.4mm +TSSOP, 80 Pin (JEDEC MO-153 Var FF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +80 +80 +Package_SO +TSSOP-100_6.1x20.8mm_P0.4mm +TSSOP, 100 Pin (JEDEC MO-194 Var BB https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +100 +100 +Package_SO +Texas_DGN0008B_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x3mm_Mask1.88x1.98mm +Texas DGN0008B VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tps7a4101.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +11 +9 +Package_SO +Texas_DGN0008B_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x3mm_Mask1.88x1.98mm_ThermalVias +Texas DGN0008B VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tps7a4101.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +23 +9 +Package_SO +Texas_DGN0008D_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.57x1.89mm +Texas DGN0008D VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +11 +9 +Package_SO +Texas_DGN0008D_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.57x1.89mm_ThermalVias +Texas DGN0008D VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +19 +9 +Package_SO +Texas_DGN0008G_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.846x2.15mm +Texas DGN0008G VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +11 +9 +Package_SO +Texas_DGN0008G_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.846x2.15mm_ThermalVias +Texas DGN0008G VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +23 +9 +Package_SO +Texas_DYY0016A_TSOT-23-16_4.2x2.0mm_P0.5mm +TSSOP, 16 Pin (https://www.ti.com/lit/ds/symlink/tmux1574.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +16 +16 +Package_SO +Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm +Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf) +HSOP 1.27 +0 +11 +9 +Package_SO +Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm_ThermalVias +Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, thermal vias, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf) +HSOP 1.27 +0 +20 +9 +Package_SO +Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias +8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm body, exposed pad, thermal vias, http://www.ti.com/lit/ds/symlink/drv8870.pdf +HTSOP 1.27 +0 +18 +9 +Package_SO +Texas_PWP0020A +20-Pin Thermally Enhanced Thin Shrink Small-Outline Package, Body 4.4x6.5x1.1mm, Pad 3.0x4.2mm, Texas Instruments (see http://www.ti.com/lit/ds/symlink/lm5118.pdf) +PWP HTSSOP 0.65mm +0 +25 +21 +Package_SO +Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm +HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOIC SO +0 +16 +9 +Package_SO +Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias +HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOIC SO +0 +23 +9 +Package_SO +Texas_S-PDSO-G8_3x3mm_P0.65mm +plastic small outline, https://www.ti.com/lit/ml/mpds028d/mpds028d.pdf, https://www.ti.com/lit/ds/symlink/dac8552.pdf#page=23 +DGK VSSOP SO +0 +8 +8 +Package_SO +VSO-40_7.6x15.4mm_P0.762mm +VSO40: plastic very small outline package; 40 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot158-1_po.pdf) +SSOP 0.762 +0 +40 +40 +Package_SO +VSO-56_11.1x21.5mm_P0.75mm +VSO56: plastic very small outline package; 56 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot190-1_po.pdf) +SSOP 0.75 +0 +56 +56 +Package_SO +VSSOP-8_2.3x2mm_P0.5mm +VSSOP, 8 Pin (https://www.jedec.org/standards-documents/docs/mo-187-f), generated with kicad-footprint-generator ipc_gullwing_generator.py +VSSOP SO JEDEC-MO-187-CA TI-DCU0008A +0 +8 +8 +Package_SO +VSSOP-8_3x3mm_P0.65mm +VSSOP, 8 Pin (https://www.jedec.org/standards-documents/docs/mo-187-f), generated with kicad-footprint-generator ipc_gullwing_generator.py +VSSOP SO JEDEC-MO-187-AA TI-DGK0008A +0 +8 +8 +Package_SO +VSSOP-10_3x3mm_P0.5mm +VSSOP, 10 Pin (http://www.ti.com/lit/ds/symlink/ads1115.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +VSSOP SO +0 +10 +10 +Package_SO +Vishay_PowerPAK_1212-8_Dual +PowerPAK 1212-8 Dual (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72598/72598.pdf) +Vishay_PowerPAK_1212-8_Dual +0 +6 +6 +Package_SO +Vishay_PowerPAK_1212-8_Single +PowerPAK 1212-8 Single (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72597/72597.pdf) +Vishay PowerPAK 1212-8 Single +0 +5 +5 +Package_SO +Zetex_SM8 +Zetex, SMD, 8 pin package (http://datasheet.octopart.com/ZDT6758TA-Zetex-datasheet-68057.pdf) +Zetex SM8 +0 +8 +8 +Package_SON +Diodes_PowerDI3333-8 +Diodes Incorporated PowerDI3333-8, Plastic Dual Flat No Lead Package, 3.3x3.3x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8.pdf +PowerDI 0.65 +0 +13 +5 +Package_SON +Diodes_PowerDI3333-8_UXC_3.3x3.3mm_P0.65mm +Diodes Incorporated PowerDI3333-8 UXC, 3.05x3.05x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8%20(Type%20UXC).pdf +PowerDI 0.65 +0 +14 +6 +Package_SON +EPSON_CE-USON-10_USON-10_3.2x2.5mm_P0.7mm +EPSON 2.5x3.7mm, https://www.microcrystal.com/fileadmin/Media/Products/RTC/Datasheet/RV-1805-C3.pdf +RTC +0 +10 +10 +Package_SON +Fairchild_DualPower33-6_3x3mm +Fairchild Power33 MOSFET package, 3x3mm (see https://www.fairchildsemi.com/datasheets/FD/FDMC8032L.pdf) +mosfet +0 +18 +6 +Package_SON +Fairchild_MicroPak-6_1.0x1.45mm_P0.5mm +Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm https://www.nxp.com/docs/en/application-note/AN10343.pdff +Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm +0 +6 +6 +Package_SON +Fairchild_MicroPak2-6_1.0x1.0mm_P0.35mm +Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm https://www.nxp.com/docs/en/application-note/AN10343.pdff +Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm +0 +6 +6 +Package_SON +HUSON-3-1EP_2x2mm_P1.3mm_EP1.1x1.6mm +HUSON, 3 Pin, SOT1061 (Ref: https://assets.nexperia.com/documents/data-sheet/PMEG2020CPA.pdf) +huson nolead SOT1061 +0 +6 +3 +Package_SON +HVSON-8-1EP_3x3mm_P0.65mm_EP1.6x2.4mm +HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/TJA1051.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +HVSON NoLead +0 +13 +9 +Package_SON +HVSON-8-1EP_4x4mm_P0.8mm_EP2.2x3.1mm +HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf (page 57)), generated with kicad-footprint-generator ipc_noLead_generator.py +HVSON NoLead +0 +13 +9 +Package_SON +Infineon_PG-LSON-8-1 +https://www.infineon.com/cms/en/product/packages/PG-LSON/PG-LSON-8-1/ +PG-LSON-8-1 +0 +17 +9 +Package_SON +Infineon_PG-TDSON-8_6.15x5.15mm +Infineon, PG-TDSON-8, 6.15x5.15x1mm, https://www.infineon.com/dgdl/Infineon-BSC520N15NS3_-DS-v02_02-en.pdf?fileId=db3a30432239cccd0122eee57d9b21a4 +Infineon OptiMOS +0 +21 +5 +Package_SON +Infineon_PG-TISON-8-2 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/ +tison +0 +23 +7 +Package_SON +Infineon_PG-TISON-8-3 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/ +tison +0 +23 +7 +Package_SON +Infineon_PG-TISON-8-4 +Infineon, PG-TISON-8-4, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-4/ +tison +0 +26 +8 +Package_SON +Infineon_PG-TISON-8-5 +Infineon, PG-TISON-8-5, 8x8x1.1mm, 1mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-5/ +tison +0 +34 +8 +Package_SON +MicroCrystal_C7_SON-8_1.5x3.2mm_P0.9mm +MicroCrystal C7 SON, 8 Pin (https://www.microcrystal.com/fileadmin/Media/Products/RTC/App.Manual/RV-3028-C7_App-Manual.pdf#page=107), generated with kicad-footprint-generator ipc_noLead_generator.py +MicroCrystal SON NoLead MicroCrystal-RV3028-C7 +0 +8 +8 +Package_SON +NXP_XSON-16 +http://www.nxp.com/documents/outline_drawing/SOT1341-1.pdf +NXP XSON SOT-1341 +0 +16 +16 +Package_SON +Nexperia_HUSON-8_USON-8-1EP_1.35x1.7mm_P0.4mm_EP0.4x1.2mm +Nexperia HUSON-8 USON, 8 Pin (https://assets.nexperia.com/documents/data-sheet/IP4251_52_53_54-TTL.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Nexperia USON NoLead +0 +10 +9 +Package_SON +Nexperia_HUSON-12_USON-12-1EP_1.35x2.5mm_P0.4mm_EP0.4x2mm +Nexperia HUSON-12 USON, 12 Pin (https://assets.nexperia.com/documents/data-sheet/IP4251_52_53_54-TTL.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Nexperia USON NoLead +0 +14 +13 +Package_SON +Nexperia_HUSON-16_USON-16-1EP_1.35x3.3mm_P0.4mm_EP0.4x2.8mm +Nexperia HUSON-16 USON, 16 Pin (https://assets.nexperia.com/documents/data-sheet/IP4251_52_53_54-TTL.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Nexperia USON NoLead +0 +18 +17 +Package_SON +ROHM_VML0806 +VML0806, Rohm (http://rohmfs.rohm.com/en/techdata_basic/transistor/soldering_condition/VML0806_Soldering_Condition.pdf, http://rohmfs.rohm.com/en/products/databook/package/spec/discrete/vml0806_tr-e.pdf) +ROHM VML0806 +0 +3 +3 +Package_SON +RTC_SMD_MicroCrystal_C3_2.5x3.7mm +MicroCrystal C3 2.5x3.7mm, https://www.microcrystal.com/fileadmin/Media/Products/RTC/Datasheet/RV-1805-C3.pdf +RTC C3 +0 +10 +10 +Package_SON +SON-8-1EP_3x2mm_P0.5mm_EP1.4x1.6mm +SON, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +SON NoLead +0 +13 +9 +Package_SON +ST_PowerFLAT-6L_5x6mm_P1.27mm +Thermally-enhanced 5x6mm 6-pin package, https://www.st.com/resource/en/datasheet/stl40dn3llh5.pdf +PowerFLAT5x6 +0 +10 +6 +Package_SON +Texas_DPY0002A_0.6x1mm_P0.65mm +X1SON 2 pin 0.6x1mm 0.375mm height package, https://www.ti.com/lit/ml/mpss034c/mpss034c.pdf, https://www.ti.com/lit/ds/symlink/tpd6e05u06.pdf +X1SON +0 +2 +2 +Package_SON +Texas_DQK +Texas WSON-6 DQK, http://www.ti.com/lit/ds/symlink/csd16301q2.pdf +Texas WSON6 2x2mm +0 +10 +8 +Package_SON +Texas_DQX002A +Texas DQX - 2pin WSON, 2.5x1.7mm body, 0.8mm height. https://www.ti.com/lit/ds/symlink/lmt01.pdf +WSON-2 DQX +0 +2 +2 +Package_SON +Texas_DRC0010J +Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf +Texas VSON10 3x3mm +0 +17 +11 +Package_SON +Texas_DRC0010J_ThermalVias +Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf +Texas VSON10 3x3mm +0 +21 +11 +Package_SON +Texas_DRX_WSON-10_2.5x2.5mm_P0.5mm +Texas DRX WSON, 10 Pin (https://www.ti.com/lit/ml/mpss105a/mpss105a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WSON NoLead +0 +10 +10 +Package_SON +Texas_DSC0010J +3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 DSC0010J WSON +0 +33 +11 +Package_SON +Texas_DSC0010J_ThermalVias +3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 DSC0010J WSON +0 +39 +11 +Package_SON +Texas_PWSON-N6 +Plastic Small Outline No-Lead http://www.ti.com/lit/ml/mpds176e/mpds176e.pdf +Plastic Small Outline No-Lead +0 +11 +7 +Package_SON +Texas_R-PUSON-N8_USON-8-1EP_1.6x2.1mm_P0.5mm_EP0.4x1.7mm +USON, 8 Pin (https://www.ti.com/lit/gpn/tpd3f303#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +USON NoLead +0 +10 +9 +Package_SON +Texas_R-PUSON-N14 +USON, 14 Pin (https://www.ti.com/lit/ds/symlink/tpd6e05u06.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +USON NoLead +0 +14 +14 +Package_SON +Texas_R-PWSON-N12_EP0.4x2mm +http://www.ti.com/lit/ds/symlink/tpd6f003.pdf +WSON SMD +0 +16 +13 +Package_SON +Texas_S-PDSO-N12 +http://www.ti.com/lit/ds/symlink/bq27441-g1.pdf +SON thermal pads +0 +44 +13 +Package_SON +Texas_S-PVSON-N8 +8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf +DFN 0.65 S-PVSON-N8 +0 +21 +9 +Package_SON +Texas_S-PVSON-N8_ThermalVias +8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf +DFN 0.65 S-PVSON-N8 +0 +27 +9 +Package_SON +Texas_S-PVSON-N10 +3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 S-PVSON-N10 DRC +0 +33 +11 +Package_SON +Texas_S-PVSON-N10_ThermalVias +3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 S-PVSON-N10 DRC +0 +39 +11 +Package_SON +Texas_S-PWSON-N8_EP1.2x2mm +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +11 +9 +Package_SON +Texas_S-PWSON-N8_EP1.2x2mm_ThermalVias +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +18 +9 +Package_SON +Texas_S-PWSON-N10 +3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf +0.5 S-PWSON-N10 DSC +0 +41 +11 +Package_SON +Texas_S-PWSON-N10_ThermalVias +3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf +0.5 S-PWSON-N10 DSC +0 +47 +11 +Package_SON +Texas_USON-6_1x1.45mm_P0.5mm_SMD +USON, 6 Pin (https://www.ti.com/lit/ds/symlink/sn74auc1g04.pdf#page=24), Solder Mask Defined +USON NoLead DRY0006A +0 +6 +6 +Package_SON +Texas_VSON-HR-8_1.5x2mm_P0.5mm +Texas VSON-HR, 8 Pin (http://www.ti.com/lit/ds/symlink/tps62823.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VSON-HR NoLead +0 +8 +8 +Package_SON +Texas_X2SON-4_1x1mm_P0.65mm +X2SON 5 pin 1x1mm package (Reference Datasheet: http://www.ti.com/lit/ds/sbvs193d/sbvs193d.pdf Reference part: TPS383x) [StepUp generated footprint] +X2SON +0 +13 +5 +Package_SON +Texas_X2SON-5_0.8x0.8mm_P0.48mm +X2SON 5 pin 0.8x0.8mm package (Reference Datasheet: https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=39 Reference part: SN74LVC1G17) [StepUp generated footprint] +X2SON DPW0005A +0 +9 +5 +Package_SON +Texas_X2SON-5_0.8x0.8mm_P0.48mm_RoutingVia +X2SON 5 pin 0.8x0.8mm package (Reference Datasheet: https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=39 Reference part: SN74LVC1G17) [StepUp generated footprint] +X2SON DPW0005A +0 +10 +5 +Package_SON +USON-10_2.5x1.0mm_P0.5mm +USON-10 2.5x1.0mm_ Pitch 0.5mm http://www.ti.com/lit/ds/symlink/tpd4e02b04.pdf +USON-10 2.5x1.0mm Pitch 0.5mm +0 +10 +10 +Package_SON +USON-20_2x4mm_P0.4mm +USON-20 2x4mm Pitch 0.4mm http://www.ti.com/lit/ds/symlink/txb0108.pdf +USON-20 2x4mm Pitch 0.4mm +0 +20 +20 +Package_SON +VSON-8-1EP_3x3mm_P0.65mm_EP1.65x2.4mm +VSON, 8 Pin (https://www.ti.com/lit/ds/symlink/tlv767-q1.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +10 +9 +Package_SON +VSON-8-1EP_3x3mm_P0.65mm_EP1.65x2.4mm_ThermalVias +VSON, 8 Pin (https://www.ti.com/lit/ds/symlink/tlv767-q1.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +17 +9 +Package_SON +VSON-8_1.5x2mm_P0.5mm +VSON, 8 Pin (http://www.ti.com/lit/ds/symlink/tps62840.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +8 +8 +Package_SON +VSON-8_3.3x3.3mm_P0.65mm_NexFET +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3.3x3.3x1 mm Body [VSON] http://www.ti.com/lit/ds/symlink/csd87334q3d.pdf +VSON 0.65 +0 +13 +5 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm +VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +15 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias +VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +18 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm +0 +21 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm_ThermalVias +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm +0 +27 +11 +Package_SON +VSONP-8-1EP_5x6_P1.27mm +SON, 8-Leads, Body 5x6x1mm, Pitch 1.27mm; (see Texas Instruments CSD18531Q5A http://www.ti.com/lit/ds/symlink/csd18531q5a.pdf) +VSONP 1.27 +0 +13 +3 +Package_SON +WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +9 +7 +Package_SON +WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm_ThermalVias +WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +12 +7 +Package_SON +WSON-6-1EP_3x3mm_P0.95mm +WSON6 3*3 MM, 0.95 PITCH; http://www.ti.com/lit/ds/symlink/lmr62421.pdf +WSON6 0.95 +0 +10 +7 +Package_SON +WSON-6_1.5x1.5mm_P0.5mm +WSON6, http://www.ti.com/lit/ds/symlink/tlv702.pdf +WSON6_1.5x1.5mm_P0.5mm +0 +6 +6 +Package_SON +WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf +WSON 8 1EP +0 +11 +9 +Package_SON +WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm_ThermalVias +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf +WSON 8 1EP ThermalVias +0 +14 +9 +Package_SON +WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack +WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack_ThermalVias +WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +18 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.2x2mm +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +11 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +18 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.6x2.0mm +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf +WSON 8 1EP +0 +13 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina333.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +11 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina333.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +18 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP1.98x3mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lm5017.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP1.98x3mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lm5017.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.2x3mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2987.pdf#page=26), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.2x3mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2987.pdf#page=26), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.6x3mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2951-n.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.6x3mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2951-n.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +9 +Package_SON +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm +WSON, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf (page 68)), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4mm +WSON, 8 Pin (http://ww1.microchip.com/downloads/en/AppNotes/S72030.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_8x6mm_P1.27mm_EP3.4x4.3mm +WSON, 8 Pin (https://datasheet.lcsc.com/lcsc/2204011730_GigaDevice-Semicon-Beijing-GD5F1GQ4UFYIGR_C2986324.pdf (page 44)), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm +WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +15 +11 +Package_SON +WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm_ThermalVias +WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +22 +11 +Package_SON +WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm +WSON-10 package 2x3mm body, pitch 0.5mm, see http://www.ti.com/lit/ds/symlink/tps62177.pdf +WSON 0.5 +0 +14 +11 +Package_SON +WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm_ThermalVias +WSON-10 package 2x3mm body, pitch 0.5mm, thermal vias and counter-pad, see http://www.ti.com/lit/ds/symlink/tps62177.pdf +WSON 0.5 thermal vias +0 +17 +11 +Package_SON +WSON-10-1EP_4x3mm_P0.5mm_EP2.2x2mm +10-Lead Plastic WSON, 4x3mm Body, 0.5mm Pitch (http://www.ti.com/lit/ds/symlink/lm4990.pdf) +WSON 0.5 +0 +15 +11 +Package_SON +WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65 +WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf +WSON-12 +0 +15 +13 +Package_SON +WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65_ThermalVias +WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf +WSON-12 +0 +19 +13 +Package_SON +WSON-12-1EP_3x3mm_P0.5mm_EP1.5x2.5mm +WSON, 12 Pin (https://www.ti.com/lit/ds/symlink/tps63710.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +13 +Package_SON +WSON-12-1EP_3x3mm_P0.5mm_EP1.5x2.5mm_ThermalVias +WSON, 12 Pin (https://www.ti.com/lit/ds/symlink/tps63710.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +24 +13 +Package_SON +WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm +WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +13 +Package_SON +WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm_ThermalVias +WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +27 +13 +Package_SON +WSON-14-1EP_4.0x4.0mm_P0.5mm_EP2.6x2.6mm +14-Lead Plastic Dual Flat, No Lead Package - 4.0x4.0x0.8 mm Body [WSON], http://www.ti.com/lit/ml/mpds421/mpds421.pdf +NHL014B +0 +19 +15 +Package_SON +WSON-16_3.3x1.35_P0.4mm +WSON-16 3.3 x 1.35mm Pitch 0.4mm http://www.chip.tomsk.ru/chip/chipdoc.nsf/Package/C67E729A4D6C883A4725793E004C8739!OpenDocument +WSON-16 3.3 x 1.35mm Pitch 0.4mm +0 +20 +17 +Package_SON +Winbond_USON-8-1EP_3x2mm_P0.5mm_EP0.2x1.6mm +Winbond USON, 8 Pin (https://www.lcsc.com/datasheet/lcsc_datasheet_2205122030_Winbond-Elec-W25Q16JVUXIQ_C2843335.pdf#page=66f), generated with kicad-footprint-generator ipc_noLead_generator.py +Winbond USON NoLead +0 +10 +9 +Package_SON +X2SON-8_1.4x1mm_P0.35mm +X2SON-8 1.4x1mm Pitch0.35mm http://www.ti.com/lit/ds/symlink/pca9306.pdf +X2SON-8 1.4x1mm Pitch0.35mm +0 +8 +8 +Package_SO_J-Lead +TSOC-6_3.76x3.94mm_P1.27mm +Maxim Integrated TSOC-6 D6+1,https://datasheets.maximintegrated.com/en/ds/DS2401.pdf, https://pdfserv.maximintegrated.com/land_patterns/90-0321.PDF +TSOC-6 +0 +6 +6 +Package_TO_SOT_SMD +ATPAK-2 +ATPAK SMD package, http://www.onsemi.com/pub/Collateral/ENA2192-D.PDF +ATPAK +0 +7 +3 +Package_TO_SOT_SMD +Analog_KS-4 +Analog Devices KS-4, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sc70ks/ks_4.pdf +Analog Devices KS-4 (like EIAJ SC-82) +0 +4 +4 +Package_TO_SOT_SMD +Diodes_SOT-553 +Diodes SOT-553, https://www.diodes.com/assets/Package-Files/SOT553.pdf +SOT-553 +0 +5 +5 +Package_TO_SOT_SMD +HVSOF5 +HVSOF5, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof5_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/sensor/hall/bu52001gul-e.pdf +HVSOF5 +0 +5 +5 +Package_TO_SOT_SMD +HVSOF6 +HVSOF6, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof6_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/audio_video/video_amplifier/bh76106hfv-e.pdf +HVSOF6 +0 +7 +7 +Package_TO_SOT_SMD +Infineon_PG-HDSOP-10-1 +Infineon PG-HDSOP-10-1 (DDPAK), 20.96x6.5x2.3mm, slug up (https://www.infineon.com/cms/en/product/packages/PG-HDSOP/PG-HDSOP-10-1/) +hdsop 10 ddpak +0 +10 +10 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-1 +HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/) +mosfet hsof toll +0 +53 +3 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-1_ThermalVias +HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/) +mosfet hsof toll thermal vias +0 +96 +3 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2 +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/) +mosfet hsof toll +0 +12 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2_ThermalVias +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/) +mosfet hsof toll thermal vias +0 +97 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2_ThermalVias2 +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/, https://www.infineon.com/dgdl/Infineon-ApplicationNote_600V_CoolMOS_C7_Gold_TOLL-AN-v01_00-EN.pdf?fileId=5546d4625b10283a015b144a1af70df6) +mosfet hsof toll thermal vias +0 +159 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-3 +HSOF-8-3 power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-3/) +mosfet hsof +0 +25 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-3_ThermalVias +HSOF-8-3 power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-3/) +mosfet hsof +0 +64 +4 +Package_TO_SOT_SMD +Infineon_PG-TO-220-7Lead_TabPin8 +Infineon PG-TO-220-7, Tab as Pin 8, see e.g. https://www.infineon.com/dgdl/Infineon-BTS50055-1TMC-DS-v01_00-EN.pdf?fileId=5546d4625a888733015aa9b0007235e9 +Infineon PG-TO-220-7 +0 +12 +8 +Package_TO_SOT_SMD +Infineon_PG-TSFP-3-1 +Infineon_PG-TSFP-3-1, https://www.infineon.com/dgdl/TSFP-3-1,-2-Package_Overview.pdf?fileId=db3a30431936bc4b0119539929863d46 +TSFP-3 +0 +3 +3 +Package_TO_SOT_SMD +LFPAK33 +LFPAK33 SOT-1210 https://assets.nexperia.com/documents/outline-drawing/SOT1210.pdf +LFPAK33 SOT-1210 +0 +17 +5 +Package_TO_SOT_SMD +LFPAK56 +LFPAK56 https://assets.nexperia.com/documents/outline-drawing/SOT669.pdf +LFPAK56 SOT-669 Power-SO8 +0 +18 +5 +Package_TO_SOT_SMD +LFPAK88 +LFPAK88 PowerPAK 8 x 8L BWL Single SOT-1235 (https://assets.nexperia.com/documents/package-information/SOT1235.pdf) +PowerPAK 8x8L Nexperia Vishay +0 +19 +5 +Package_TO_SOT_SMD +Nexperia_CFP15_SOT-1289 +Nexperia CFP15 (SOT-1289), https://assets.nexperia.com/documents/outline-drawing/SOT1289.pdf +SOT-1289 CFP15 +0 +8 +3 +Package_TO_SOT_SMD +OnSemi_ECH8 +On Semiconductor ECH8, https://www.onsemi.com/pub/Collateral/318BF.PDF +ECH8 SOT28-FL SOT-28-FL +0 +8 +8 +Package_TO_SOT_SMD +PQFN_8x8 +Low Profile 8x8mm PQFN, Dual Cool 88, https://www.onsemi.com/pub/Collateral/FDMT80080DC-D.pdf +pqfn vdfn mosfet +0 +9 +3 +Package_TO_SOT_SMD +PowerMacro_M234_NoHole +TO-50-4 Power Macro Package Style M234 +TO-50-4 Power Macro Package Style M234 +0 +4 +4 +Package_TO_SOT_SMD +PowerMacro_M234_WithHole +TO-50-4 Power Macro Package Style M234 +TO-50-4 Power Macro Package Style M234 +0 +4 +4 +Package_TO_SOT_SMD +ROHM_SOT-457_ClockwisePinNumbering +ROHM SOT-457 SC-74, 6 Pin (https://fscdn.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/imh3at110-e.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +ROHM SC-74 SO +0 +6 +6 +Package_TO_SOT_SMD +Rohm_HRP7 +Rohm HRP7 SMD package, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hrp7_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/motor/dc/bd621x-e.pdf +Rohm HRP7 SMD +0 +69 +7 +Package_TO_SOT_SMD +SC-59 +SC-59, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg +SC-59 +0 +3 +3 +Package_TO_SOT_SMD +SC-59_Handsoldering +SC-59, hand-soldering varaint, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg +SC-59 hand-soldering +0 +3 +3 +Package_TO_SOT_SMD +SC-70-8 +SC70-8 +SC70-8 +0 +8 +8 +Package_TO_SOT_SMD +SC-70-8_Handsoldering +SC70-8, Handsoldering +SC70-8 Handsoldering +0 +8 +8 +Package_TO_SOT_SMD +SC-74-6_1.55x2.9mm_P0.95mm +SC-74, 6 Pin (https://www.jeita.or.jp/japanese/standard/book/ED-7500B/#target/page_no=39), generated with kicad-footprint-generator ipc_gullwing_generator.py +SC-74 SO +0 +6 +6 +Package_TO_SOT_SMD +SC-74A-5_1.55x2.9mm_P0.95mm +SC-74A, 5 Pin (https://www.jeita.or.jp/japanese/standard/book/ED-7500B/#target/page_no=41), generated with kicad-footprint-generator ipc_gullwing_generator.py +SC-74A SO +0 +5 +5 +Package_TO_SOT_SMD +SC-82AA +SC-82AA +SC-82AA +0 +4 +4 +Package_TO_SOT_SMD +SC-82AA_Handsoldering +SC-82AA +SC-82AA +0 +4 +4 +Package_TO_SOT_SMD +SC-82AB +SC-82AB +SC-82AB +0 +4 +4 +Package_TO_SOT_SMD +SC-82AB_Handsoldering +SC-82AB +SC-82AB +0 +4 +4 +Package_TO_SOT_SMD +SOT-23 +SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +3 +3 +Package_TO_SOT_SMD +SOT-23-3 +SOT, 3 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178D.PDF inferred 3-pin variant), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +3 +3 +Package_TO_SOT_SMD +SOT-23-5 +SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +5 +5 +Package_TO_SOT_SMD +SOT-23-5_HandSoldering +5-pin SOT23 package +SOT-23-5 hand-soldering +0 +5 +5 +Package_TO_SOT_SMD +SOT-23-6 +SOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +6 +6 +Package_TO_SOT_SMD +SOT-23-6_Handsoldering +6-pin SOT-23 package, Handsoldering +SOT-23-6 Handsoldering +0 +6 +6 +Package_TO_SOT_SMD +SOT-23-8 +SOT, 8 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +8 +8 +Package_TO_SOT_SMD +SOT-23-8_Handsoldering +8-pin SOT-23 package, Handsoldering, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sot-23rj/rj_8.pdf +SOT-23-8 Handsoldering +0 +8 +8 +Package_TO_SOT_SMD +SOT-23W +SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3 +SOT-23W +0 +3 +3 +Package_TO_SOT_SMD +SOT-23W_Handsoldering +SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3 +SOT-23W for handsoldering +0 +3 +3 +Package_TO_SOT_SMD +SOT-23_Handsoldering +SOT-23, Handsoldering +SOT-23 +0 +3 +3 +Package_TO_SOT_SMD +SOT-89-3 +SOT-89-3, http://ww1.microchip.com/downloads/en/DeviceDoc/3L_SOT-89_MB_C04-029C.pdf +SOT-89-3 +0 +3 +3 +Package_TO_SOT_SMD +SOT-89-3_Handsoldering +SOT-89-3 Handsoldering +SOT-89-3 Handsoldering +0 +3 +3 +Package_TO_SOT_SMD +SOT-89-5 +SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf +SOT-89-5 +0 +5 +5 +Package_TO_SOT_SMD +SOT-89-5_Handsoldering +SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf +SOT-89-5 +0 +5 +5 +Package_TO_SOT_SMD +SOT-143 +SOT-143 https://www.nxp.com/docs/en/package-information/SOT143B.pdf +SOT-143 +0 +4 +4 +Package_TO_SOT_SMD +SOT-143R +SOT-143R, reverse pinning, https://www.nxp.com/docs/en/package-information/SOT143R.pdf +SOT-143R Reverse +0 +4 +4 +Package_TO_SOT_SMD +SOT-143R_Handsoldering +SOT-143R, reverse pinning, Handsoldering, https://www.nxp.com/docs/en/package-information/SOT143R.pdf +SOT-143 Reverse Handsoldering +0 +4 +4 +Package_TO_SOT_SMD +SOT-143_Handsoldering +SOT-143 Handsoldering https://www.nxp.com/docs/en/package-information/SOT143B.pdf +SOT-143 Handsoldering +0 +4 +4 +Package_TO_SOT_SMD +SOT-223 +module CMS SOT223 4 pins +CMS SOT +0 +4 +4 +Package_TO_SOT_SMD +SOT-223-3_TabPin2 +module CMS SOT223 4 pins +CMS SOT +0 +4 +3 +Package_TO_SOT_SMD +SOT-223-5 +module CMS SOT223 5 pins, http://ww1.microchip.com/downloads/en/DeviceDoc/51751a.pdf +CMS SOT +0 +5 +5 +Package_TO_SOT_SMD +SOT-223-6 +module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf +CMS SOT +0 +6 +6 +Package_TO_SOT_SMD +SOT-223-6_TabPin3 +module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf +CMS SOT +0 +6 +5 +Package_TO_SOT_SMD +SOT-223-8 +module CMS SOT223 8 pins, https://www.diodes.com/assets/Datasheets/ZXSBMR16PT8.pdf +CMS SOT +0 +8 +8 +Package_TO_SOT_SMD +SOT-323_SC-70 +SOT-323, SC-70 +SOT-323 SC-70 +0 +3 +3 +Package_TO_SOT_SMD +SOT-323_SC-70_Handsoldering +SOT-323, SC-70 Handsoldering +SOT-323 SC-70 Handsoldering +0 +3 +3 +Package_TO_SOT_SMD +SOT-343_SC-70-4 +SOT-343, SC-70-4 +SOT-343 SC-70-4 +0 +4 +4 +Package_TO_SOT_SMD +SOT-343_SC-70-4_Handsoldering +SOT-343, SC-70-4, Handsoldering +SOT-343 SC-70-4 Handsoldering +0 +4 +4 +Package_TO_SOT_SMD +SOT-353_SC-70-5 +SOT-353, SC-70-5 +SOT-353 SC-70-5 +0 +5 +5 +Package_TO_SOT_SMD +SOT-353_SC-70-5_Handsoldering +SOT-353, SC-70-5, Handsoldering +SOT-353 SC-70-5 Handsoldering +0 +5 +5 +Package_TO_SOT_SMD +SOT-363_SC-70-6 +SOT-363, SC-70-6 +SOT-363 SC-70-6 +0 +6 +6 +Package_TO_SOT_SMD +SOT-363_SC-70-6_Handsoldering +SOT-363, SC-70-6, Handsoldering +SOT-363 SC-70-6 Handsoldering +0 +6 +6 +Package_TO_SOT_SMD +SOT-383F +8-pin SOT-383F, http://www.mouser.com/ds/2/80/CPDVR085V0C-HF-RevB-10783.pdf +SOT-383F +0 +9 +9 +Package_TO_SOT_SMD +SOT-383FL +8-pin SOT-383FL package, http://www.onsemi.com/pub_link/Collateral/ENA2267-D.PDF +SOT-383FL +0 +8 +8 +Package_TO_SOT_SMD +SOT-416 +SOT-416, https://www.nxp.com/docs/en/package-information/SOT416.pdf +SOT-416 +0 +3 +3 +Package_TO_SOT_SMD +SOT-523 +SOT523, https://www.diodes.com/assets/Package-Files/SOT523.pdf +SOT-523 +0 +3 +3 +Package_TO_SOT_SMD +SOT-543 +SOT-543 4 lead surface package +SOT-543 SC-107A EMD4 +0 +4 +4 +Package_TO_SOT_SMD +SOT-553 +SOT553 +SOT-553 +0 +5 +5 +Package_TO_SOT_SMD +SOT-563 +SOT563 +SOT-563 +0 +6 +6 +Package_TO_SOT_SMD +SOT-583-8 +https://www.ti.com/lit/ds/symlink/tps62933.pdf +SOT-583-8 +0 +8 +8 +Package_TO_SOT_SMD +SOT-665 +SOT665 +SOT-665 +0 +5 +5 +Package_TO_SOT_SMD +SOT-666 +SOT666 +SOT-666 +0 +6 +6 +Package_TO_SOT_SMD +SOT-723 +http://toshiba.semicon-storage.com/info/docget.jsp?did=5879&prodName=RN1104MFV +sot 723 +0 +3 +3 +Package_TO_SOT_SMD +SOT-883 +SOT-883, https://assets.nexperia.com/documents/outline-drawing/SOT883.pdf +SOT-883 +0 +3 +3 +Package_TO_SOT_SMD +SOT-886 +SOT-886 +SOT-886 +0 +6 +6 +Package_TO_SOT_SMD +SOT-963 +SOT 963 6 pins package 1x0.8mm pitch 0.35mm +SOT 963 6 pins package 1x0.8mm pitch 0.35mm +0 +6 +6 +Package_TO_SOT_SMD +SOT-1123 +SOT-1123 small outline transistor (see http://www.onsemi.com/pub/Collateral/NST3906F3-D.PDF) +SOT-1123 transistor +0 +3 +3 +Package_TO_SOT_SMD +SOT-1333-1 +SOT-1333-1 +SOT-1333-1 +0 +9 +9 +Package_TO_SOT_SMD +SOT-1334-1 +SOT-1334-1 +SOT-1334-1 +0 +14 +14 +Package_TO_SOT_SMD +SuperSOT-3 +3-pin SuperSOT package https://www.fairchildsemi.com/package-drawings/MA/MA03B.pdf +SuperSOT-3 SSOT-3 +0 +3 +3 +Package_TO_SOT_SMD +SuperSOT-6 +6-pin SuperSOT package http://www.mouser.com/ds/2/149/FMB5551-889214.pdf +SuperSOT-6 SSOT-6 +0 +6 +6 +Package_TO_SOT_SMD +SuperSOT-8 +8-pin SuperSOT package, http://www.icbank.com/icbank_data/semi_package/ssot8_dim.pdf +SuperSOT-8 SSOT-8 +0 +8 +8 +Package_TO_SOT_SMD +TDSON-8-1 +Power MOSFET package, TDSON-8-1, 5.15x5.9mm (https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/) +tdson +0 +14 +5 +Package_TO_SOT_SMD +TO-50-3_LongPad-NoHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_LongPad-WithHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_ShortPad-NoHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_ShortPad-WithHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-4_LongPad-NoHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_LongPad-WithHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_ShortPad-NoHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_ShortPad-WithHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-252-2 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +7 +3 +Package_TO_SOT_SMD +TO-252-2_TabPin1 +TO-252-2, tab to pin 1 https://www.wolfspeed.com/media/downloads/87/CSD01060.pdf +TO-252-2 diode +0 +7 +2 +Package_TO_SOT_SMD +TO-252-3_TabPin2 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +8 +3 +Package_TO_SOT_SMD +TO-252-3_TabPin4 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +8 +4 +Package_TO_SOT_SMD +TO-252-4 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +9 +5 +Package_TO_SOT_SMD +TO-252-5_TabPin3 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +10 +5 +Package_TO_SOT_SMD +TO-252-5_TabPin6 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +10 +6 +Package_TO_SOT_SMD +TO-263-2 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +7 +3 +Package_TO_SOT_SMD +TO-263-2_TabPin1 +TO-263 / D2PAK / DDPAK SMD package, tab to pin 1, https://www.wolfspeed.com/media/downloads/137/C3D06060G.pdf +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 diode +0 +7 +2 +Package_TO_SOT_SMD +TO-263-3_TabPin2 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +8 +3 +Package_TO_SOT_SMD +TO-263-3_TabPin4 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +8 +4 +Package_TO_SOT_SMD +TO-263-4 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +9 +5 +Package_TO_SOT_SMD +TO-263-5_TabPin3 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +10 +5 +Package_TO_SOT_SMD +TO-263-5_TabPin6 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +10 +6 +Package_TO_SOT_SMD +TO-263-6 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +11 +7 +Package_TO_SOT_SMD +TO-263-7_TabPin4 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +12 +7 +Package_TO_SOT_SMD +TO-263-7_TabPin8 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +12 +8 +Package_TO_SOT_SMD +TO-263-9_TabPin5 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +14 +9 +Package_TO_SOT_SMD +TO-263-9_TabPin10 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +14 +10 +Package_TO_SOT_SMD +TO-268-2 +TO-268/D3PAK SMD package, http://www.icbank.com/icbank_data/semi_package/to268aa_dim.pdf +D3PAK TO-268 D3PAK-3 TO-268-3 +0 +7 +3 +Package_TO_SOT_SMD +TO-269AA +SMD package TO-269AA (e.g. diode bridge), see http://www.vishay.com/docs/88854/padlayouts.pdf +TO-269AA MBS diode bridge +0 +4 +4 +Package_TO_SOT_SMD +TO-277A +Thermal enhanced ultra thin SMD package; 3 leads; body: 4.3x6.1x0.43mm, https://www.vishay.com/docs/95570/to-277asmpc.pdf +TO-277A SMPC +0 +12 +3 +Package_TO_SOT_SMD +TO-277B +TO-227B https://media.digikey.com/pdf/Data%20Sheets/Littelfuse%20PDFs/DST2050S.pdf +TO-277B +0 +9 +3 +Package_TO_SOT_SMD +TSOT-23 +3-pin TSOT23 package, http://www.analog.com.tw/pdf/All_In_One.pdf +TSOT-23 +0 +3 +3 +Package_TO_SOT_SMD +TSOT-23-5 +TSOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOT TO_SOT_SMD +0 +5 +5 +Package_TO_SOT_SMD +TSOT-23-5_HandSoldering +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf +TSOT-23-5 Hand-soldering +0 +5 +5 +Package_TO_SOT_SMD +TSOT-23-6 +TSOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOT TO_SOT_SMD +0 +6 +6 +Package_TO_SOT_SMD +TSOT-23-6_HandSoldering +6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf +TSOT-23-6 MK06A TSOT-6 Hand-soldering +0 +6 +6 +Package_TO_SOT_SMD +TSOT-23-8 +TSOT, 8 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOT TO_SOT_SMD +0 +8 +8 +Package_TO_SOT_SMD +TSOT-23-8_HandSoldering +8-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_8_05-08-1637.pdf +TSOT-23-8 Hand-soldering +0 +8 +8 +Package_TO_SOT_SMD +TSOT-23_HandSoldering +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf +TSOT-23 Hand-soldering +0 +3 +3 +Package_TO_SOT_SMD +Texas_DRT-3 +Texas Instrument DRT-3 1x0.8mm Pitch 0.7mm http://www.ti.com/lit/ds/symlink/tpd2eusb30.pdf +DRT-3 1x0.8mm Pitch 0.7mm +0 +3 +3 +Package_TO_SOT_SMD +Texas_NDQ +Texas Instruments, NDQ, 5 pin (https://www.ti.com/lit/ml/mmsf022/mmsf022.pdf) +ti pfm dap +0 +6 +6 +Package_TO_SOT_SMD +Texas_NDW-7_TabPin4 +NDW0007A SMD package, http://www.ti.com/lit/ml/mmsf024/mmsf024.pdf +NDW NDW +0 +12 +7 +Package_TO_SOT_SMD +Texas_NDW-7_TabPin8 +NDW0007A SMD package, http://www.ti.com/lit/ml/mmsf024/mmsf024.pdf +NDW NDW +0 +12 +8 +Package_TO_SOT_SMD +Texas_NDY0011A +TO-PMOD-11 11-pin switching regulator package, http://www.ti.com/lit/ml/mmsf025/mmsf025.pdf +Texas TO-PMOD NDY00011A +0 +12 +12 +Package_TO_SOT_SMD +Texas_R-PDSO-G5_DCK-5 +DCK R-PDSO-G5, JEDEC MO-203C Var AA, https://www.ti.com/lit/ds/symlink/tmp20.pdf#page=23 +DCK R-PDSO-G5 MO-203C +0 +5 +5 +Package_TO_SOT_SMD +Texas_R-PDSO-G6 +R-PDSO-G6, http://www.ti.com/lit/ds/slis144b/slis144b.pdf +R-PDSO-G6 SC-70-6 +0 +6 +6 +Package_TO_SOT_SMD +Texas_R-PDSO-N5_DRL-5 +R-PDSO-N5, DRL, JEDEC MO-293B Var UAAD-1, https://www.ti.com/lit/ml/mpds158d/mpds158d.pdf +SOT R-PDSO-N5 DRL +0 +5 +5 +Package_TO_SOT_SMD +Texas_R-PDSO-N6_DRL-6 +R-PDSO-N6, DRL, similar to JEDEC MO-293B Var UAAD (but not the same) , https://www.ti.com/lit/pdf/mpds159f +SOT R-PDSO-N6 DRL +0 +6 +6 +Package_TO_SOT_SMD +VSOF5 +VSOF5 +VSOF5 +0 +5 +5 +Package_TO_SOT_SMD +Vishay_PowerPAK_SC70-6L_Dual +Vishay PowerPAK SC70 dual transistor package http://www.vishay.com/docs/70487/70487.pdf +powerpak sc70 sc-70 dual +0 +8 +6 +Package_TO_SOT_SMD +Vishay_PowerPAK_SC70-6L_Single +Vishay PowerPAK SC70 single transistor package http://www.vishay.com/docs/70486/70486.pdf +powerpak sc70 sc-70 +0 +6 +3 +Package_TO_SOT_THT +Analog_TO-46-4_ThermalShield +TO-46-4 with Valox case, based on https://www.analog.com/media/en/technical-documentation/data-sheets/199399fc.pdf +TO-46-4 LM399 +0 +4 +4 +Package_TO_SOT_THT +Fairchild_TO-220F-6L +Fairchild TO-220F-6L, http://www.mouser.com/ds/2/149/FSL136MRT-113334.pdf +Fairchild TO-220F-6L +0 +6 +6 +Package_TO_SOT_THT +Heraeus_TO-92-2 +TO-92 2-pin variant by Heraeus, drill 0.75mm (http://www.produktinfo.conrad.com/datenblaetter/175000-199999/181293-da-01-de-TO92_Temperatursensor_PT1000_32209225.pdf) +to-92 +0 +2 +2 +Package_TO_SOT_THT +NEC_Molded_7x4x9mm +Molded Japan Transistor Package 7x4x9mm^3, http://rtellason.com/transdata/2sb734.pdf +Japan transistor +0 +3 +3 +Package_TO_SOT_THT +PowerIntegrations_TO-220-7C +Non Isolated Modified TO-220 7pin Package, see http://www.farnell.com/datasheets/5793.pdf +Power Integration Y Package +0 +6 +6 +Package_TO_SOT_THT +SIPAK-1EP_Horizontal_TabDown +SIPAK, Horizontal, RM 2.286mm +SIPAK Horizontal RM 2.286mm +0 +4 +4 +Package_TO_SOT_THT +SIPAK_Vertical +SIPAK, Vertical, RM 2.286mm +SIPAK Vertical RM 2.286mm +0 +3 +3 +Package_TO_SOT_THT +SOD-70_P2.54mm +Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf [StepUp generated footprint] +Sod-70 +0 +2 +2 +Package_TO_SOT_THT +SOD-70_P5.08mm +Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf [StepUp generated footprint] +Sod-70 +0 +2 +2 +Package_TO_SOT_THT +SOT-227 +SOT-227 / SOT-227B / ISOTOP, M4 mounting screws (https://www.vishay.com/docs/95423/sot227g2.pdf, https://www.vishay.com/docs/95793/vs-fc420sa10.pdf) +sot 227 isotop +0 +8 +4 +Package_TO_SOT_THT +TO-3 +Transistor TO-3 +TR TO-3 TO3 TO-204 +0 +4 +3 +Package_TO_SOT_THT +TO-3P-3_Horizontal_TabDown +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3P-3_Horizontal_TabUp +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3P-3_Vertical +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3PB-3_Horizontal_TabDown +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3PB-3_Horizontal_TabUp +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3PB-3_Vertical +TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-5-2 +TO-5-2 +TO-5-2 +0 +2 +2 +Package_TO_SOT_THT +TO-5-2_Window +TO-5-2_Window, Window +TO-5-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-5-3 +TO-5-3 +TO-5-3 +0 +3 +3 +Package_TO_SOT_THT +TO-5-3_Window +TO-5-3_Window, Window +TO-5-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-5-4 +TO-5-4 +TO-5-4 +0 +4 +4 +Package_TO_SOT_THT +TO-5-4_Window +TO-5-4_Window, Window +TO-5-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-5-6 +TO-5-6 +TO-5-6 +0 +6 +6 +Package_TO_SOT_THT +TO-5-6_Window +TO-5-6_Window, Window +TO-5-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-5-8 +TO-5-8 +TO-5-8 +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_PD5.08 +TO-5-8_PD5.08 +TO-5-8_PD5.08 +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_PD5.08_Window +TO-5-8_PD5.08_Window, Window +TO-5-8_PD5.08_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_Window +TO-5-8_Window, Window +TO-5-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-5-10 +TO-5-10 +TO-5-10 +0 +10 +10 +Package_TO_SOT_THT +TO-5-10_Window +TO-5-10_Window, Window +TO-5-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-8-2 +TO-8-2 +TO-8-2 +0 +2 +2 +Package_TO_SOT_THT +TO-8-2_Window +TO-8-2_Window, Window +TO-8-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-8-3 +TO-8-3 +TO-8-3 +0 +3 +3 +Package_TO_SOT_THT +TO-8-3_Window +TO-8-3_Window, Window +TO-8-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-11-2 +TO-11-2 +TO-11-2 +0 +2 +2 +Package_TO_SOT_THT +TO-11-2_Window +TO-11-2_Window, Window +TO-11-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-11-3 +TO-11-3 +TO-11-3 +0 +3 +3 +Package_TO_SOT_THT +TO-11-3_Window +TO-11-3_Window, Window +TO-11-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-12-4 +TO-12-4 +TO-12-4 +0 +4 +4 +Package_TO_SOT_THT +TO-12-4_Window +TO-12-4_Window, Window +TO-12-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-17-4 +TO-17-4 +TO-17-4 +0 +4 +4 +Package_TO_SOT_THT +TO-17-4_Window +TO-17-4_Window, Window +TO-17-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-18-2 +TO-18-2 +TO-18-2 +0 +2 +2 +Package_TO_SOT_THT +TO-18-2_Lens +TO-18-2_Lens, Lens +TO-18-2_Lens Lens +0 +2 +2 +Package_TO_SOT_THT +TO-18-2_Window +TO-18-2_Window, Window +TO-18-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-18-3 +TO-18-3 +TO-18-3 +0 +3 +3 +Package_TO_SOT_THT +TO-18-3_Lens +TO-18-3_Lens, Lens +TO-18-3_Lens Lens +0 +3 +3 +Package_TO_SOT_THT +TO-18-3_Window +TO-18-3_Window, Window +TO-18-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-18-4 +TO-18-4 +TO-18-4 +0 +4 +4 +Package_TO_SOT_THT +TO-18-4_Lens +TO-18-4_Lens, Lens +TO-18-4_Lens Lens +0 +4 +4 +Package_TO_SOT_THT +TO-18-4_Window +TO-18-4_Window, Window +TO-18-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-33-4 +TO-33-4 +TO-33-4 +0 +4 +4 +Package_TO_SOT_THT +TO-33-4_Window +TO-33-4_Window, Window +TO-33-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-38-2 +TO-38-2 +TO-38-2 +0 +2 +2 +Package_TO_SOT_THT +TO-38-2_Window +TO-38-2_Window, Window +TO-38-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-38-3 +TO-38-3 +TO-38-3 +0 +3 +3 +Package_TO_SOT_THT +TO-38-3_Window +TO-38-3_Window, Window +TO-38-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-39-2 +TO-39-2 +TO-39-2 +0 +2 +2 +Package_TO_SOT_THT +TO-39-2_Window +TO-39-2_Window, Window +TO-39-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-39-3 +TO-39-3 +TO-39-3 +0 +3 +3 +Package_TO_SOT_THT +TO-39-3_Window +TO-39-3_Window, Window +TO-39-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-39-4 +TO-39-4 +TO-39-4 +0 +4 +4 +Package_TO_SOT_THT +TO-39-4_Window +TO-39-4_Window, Window +TO-39-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-39-6 +TO-39-6 +TO-39-6 +0 +6 +6 +Package_TO_SOT_THT +TO-39-6_Window +TO-39-6_Window, Window +TO-39-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-39-8 +TO-39-8 +TO-39-8 +0 +8 +8 +Package_TO_SOT_THT +TO-39-8_Window +TO-39-8_Window, Window +TO-39-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-39-10 +TO-39-10 +TO-39-10 +0 +10 +10 +Package_TO_SOT_THT +TO-39-10_Window +TO-39-10_Window, Window +TO-39-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-46-2 +TO-46-2 +TO-46-2 +0 +2 +2 +Package_TO_SOT_THT +TO-46-2_Pin2Center +TO-46-2, Pin2 at center of package, Thorlabs photodiodes +TO-46-2 Thorlabs +0 +2 +2 +Package_TO_SOT_THT +TO-46-2_Pin2Center_Window +TO-46-2, Pin2 at center of package, Thorlabs photodiodes +TO-46-2 Thorlabs +0 +2 +2 +Package_TO_SOT_THT +TO-46-2_Window +TO-46-2_Window, Window +TO-46-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-46-3 +TO-46-3 +TO-46-3 +0 +3 +3 +Package_TO_SOT_THT +TO-46-3_Pin2Center +TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf +TO-46-3 Thorlabs +0 +3 +3 +Package_TO_SOT_THT +TO-46-3_Pin2Center_Window +TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf +TO-46-3 Thorlabs +0 +3 +3 +Package_TO_SOT_THT +TO-46-3_Window +TO-46-3_Window, Window +TO-46-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-46-4 +TO-46-4 +TO-46-4 +0 +4 +4 +Package_TO_SOT_THT +TO-46-4_Window +TO-46-4_Window, Window +TO-46-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-52-2 +TO-52-2 +TO-52-2 +0 +2 +2 +Package_TO_SOT_THT +TO-52-2_Window +TO-52-2_Window, Window +TO-52-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-52-3 +TO-52-3 +TO-52-3 +0 +3 +3 +Package_TO_SOT_THT +TO-52-3_Window +TO-52-3_Window, Window +TO-52-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-72-4 +TO-72-4 +TO-72-4 +0 +4 +4 +Package_TO_SOT_THT +TO-72-4_Window +TO-72-4_Window, Window +TO-72-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-75-6 +TO-75-6 +TO-75-6 +0 +6 +6 +Package_TO_SOT_THT +TO-75-6_Window +TO-75-6_Window, Window +TO-75-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-78-6 +TO-78-6 +TO-78-6 +0 +6 +6 +Package_TO_SOT_THT +TO-78-6_Window +TO-78-6_Window, Window +TO-78-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-78-8 +TO-78-8 +TO-78-8 +0 +8 +8 +Package_TO_SOT_THT +TO-78-8_Window +TO-78-8_Window, Window +TO-78-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-78-10 +TO-78-10 +TO-78-10 +0 +10 +10 +Package_TO_SOT_THT +TO-78-10_Window +TO-78-10_Window, Window +TO-78-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-92 +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92-2 +TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_Horizontal1 +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_Horizontal2 +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_W4.0mm_Horizontal_FlatSideDown +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_W4.0mm_Horizontal_FlatSideUp +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_Wide +TO-92 2-pin leads in-line, wide, drill 0.75mm +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +Package_TO_SOT_THT +TO-92Flat +TO-92Flat package, often used for hall sensors, drill 0.75mm (see e.g. http://www.ti.com/lit/ds/symlink/drv5023.pdf) +to-92Flat hall sensor +0 +3 +3 +Package_TO_SOT_THT +TO-92L +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Molded Narrow transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_HandSolder +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm, hand-soldering variant with enlarged pads (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_Inline +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Inline Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_Inline_Wide +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Inline Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_Wide +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Molded Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92Mini-2 +TO-92Mini package, drill 0.6mm (https://media.digikey.com/pdf/Data%20Sheets/Infineon%20PDFs/KT,KTY.pdf) +to-92Mini transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92S +TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) +to-92S transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92S-2 +TO-92S package, 2-pin, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) +to-92S transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92S_Wide +TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) +TO-92S_Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_HandSolder +TO-92 leads molded, narrow, drill 0.75mm, handsoldering variant with enlarged pads (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Horizontal1 +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Horizontal2 +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_Horizontal1 +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_Horizontal2 +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_W4.0mm_Horizontal_FlatSideDown +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_W4.0mm_Horizontal_FlatSideUp +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_Wide +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideDown +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideUp +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Wide +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-99-6 +TO-99-6 +TO-99-6 +0 +6 +6 +Package_TO_SOT_THT +TO-99-6_Window +TO-99-6_Window, Window +TO-99-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-99-8 +TO-99-8 +TO-99-8 +0 +8 +8 +Package_TO_SOT_THT +TO-99-8_Window +TO-99-8_Window, Window +TO-99-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-100-10 +TO-100-10 +TO-100-10 +0 +10 +10 +Package_TO_SOT_THT +TO-100-10_Window +TO-100-10_Window, Window +TO-100-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-126-2_Horizontal_TabDown +TO-126-2, Horizontal, RM 5.08mm, see https://www.caddock.com/online_catalog/mrktg_lit/MP9000_Series.pdf +TO-126-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-126-2_Horizontal_TabUp +TO-126-2, Horizontal, RM 5.08mm, see https://www.caddock.com/online_catalog/mrktg_lit/MP9000_Series.pdf +TO-126-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-126-2_Vertical +TO-126-2, Vertical, RM 5.08mm, see https://www.caddock.com/online_catalog/mrktg_lit/MP9000_Series.pdf +TO-126-2 Vertical RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-126-3_Horizontal_TabDown +TO-126-3, Horizontal, RM 2.28mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-3 Horizontal RM 2.28mm +0 +3 +3 +Package_TO_SOT_THT +TO-126-3_Horizontal_TabUp +TO-126-3, Horizontal, RM 2.28mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-3 Horizontal RM 2.28mm +0 +3 +3 +Package_TO_SOT_THT +TO-126-3_Vertical +TO-126-3, Vertical, RM 2.28mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-3 Vertical RM 2.28mm +0 +3 +3 +Package_TO_SOT_THT +TO-218-2_Horizontal_TabDown +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +Package_TO_SOT_THT +TO-218-2_Horizontal_TabUp +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +Package_TO_SOT_THT +TO-218-2_Vertical +TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-2 Vertical RM 10.95mm SOT-93 +0 +2 +2 +Package_TO_SOT_THT +TO-218-3_Horizontal_TabDown +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +Package_TO_SOT_THT +TO-218-3_Horizontal_TabUp +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +Package_TO_SOT_THT +TO-218-3_Vertical +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +Package_TO_SOT_THT +TO-220-2_Horizontal_TabDown +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220-2_Horizontal_TabUp +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220-2_Vertical +TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF +TO-220-2 Vertical RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220-3_Horizontal_TabDown +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220-3_Horizontal_TabUp +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220-3_Vertical +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220-4_Horizontal_TabDown +TO-220-4, Horizontal, RM 2.54mm +TO-220-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_Horizontal_TabUp +TO-220-4, Horizontal, RM 2.54mm +TO-220-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerEven_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-2 +TO-220-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-2 +TO-220-4 Horizontal RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-1 +TO-220-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-1 +TO-220-4 Horizontal RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_Vertical +TO-220-4, Vertical, RM 2.54mm +TO-220-4 Vertical RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220-5_Horizontal_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_Horizontal_TabUp +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.8mm_StaggerEven_Lead7.13mm_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.8mm_StaggerOdd_Lead7.13mm_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220-7_P2.54x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-2 +TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-2 +0 +7 +7 +Package_TO_SOT_THT +TO-220-7_P2.54x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-1 +TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-1 +0 +7 +7 +Package_TO_SOT_THT +TO-220-7_P2.54x3.8mm_StaggerEven_Lead5.85mm_TabDown +TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-2 +TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-2 +0 +7 +7 +Package_TO_SOT_THT +TO-220-7_P2.54x3.8mm_StaggerOdd_Lead5.85mm_TabDown +TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-1 +TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-1 +0 +7 +7 +Package_TO_SOT_THT +TO-220-8_Vertical +TO-220-8 (Multiwatt8), Vertical, 2.54mm Pitch (http://www.st.com/resource/en/datasheet/tda7264.pdf) +TO-220-9 Vertical 2.54mm Pitch Multiwatt 8 +0 +8 +8 +Package_TO_SOT_THT +TO-220-9_P1.94x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-2 +TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-2 +0 +9 +9 +Package_TO_SOT_THT +TO-220-9_P1.94x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-1 +TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-1 +0 +9 +9 +Package_TO_SOT_THT +TO-220-9_P1.94x3.8mm_StaggerEven_Lead5.85mm_TabDown +TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-2 +TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-2 +0 +9 +9 +Package_TO_SOT_THT +TO-220-9_P1.94x3.8mm_StaggerOdd_Lead5.85mm_TabDown +TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-1 +TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-1 +0 +9 +9 +Package_TO_SOT_THT +TO-220-11_P3.4x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Horizontal RM 1.7mm staggered type-2 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Horizontal RM 1.7mm staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x5.08mm_StaggerEven_Lead4.58mm_Vertical +TO-220-11, Vertical, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Vertical RM 1.7mm staggered type-2 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x5.08mm_StaggerOdd_Lead4.85mm_Vertical +TO-220-11, Vertical, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Vertical RM 1.7mm staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x5.08mm_StaggerOdd_Lead8.45mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.ti.com/lit/ds/symlink/lmd18200.pdf +TO-220-11 Horizontal RM 1.7mm staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerEven_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Vertical RM 1.27mm staggered type-2 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Horizontal RM 1.27mm staggered type-2 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerOdd_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Vertical RM 1.27mm staggered type-1 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Horizontal RM 1.27mm staggered type-1 +0 +15 +15 +Package_TO_SOT_THT +TO-220F-2_Horizontal_TabDown +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220F-2_Horizontal_TabUp +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220F-2_Vertical +TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf +TO-220F-2 Vertical RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220F-3_Horizontal_TabDown +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220F-3_Horizontal_TabUp +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220F-3_Vertical +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220F-4_Horizontal_TabDown +TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_Horizontal_TabUp +TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x2.05mm_StaggerEven_Lead1.85mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x2.05mm_StaggerOdd_Lead1.85mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_Vertical +TO-220F-4, Vertical, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220F-5_Horizontal_TabDown +TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5 +TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_Horizontal_TabUp +TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5 +TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x2.06mm_StaggerEven_Lead1.86mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x2.06mm_StaggerOdd_Lead1.86mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-7_P2.54x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-7, Vertical, RM 1.27mm, staggered type-2 +TO-220F-7 Vertical RM 1.27mm staggered type-2 +0 +7 +7 +Package_TO_SOT_THT +TO-220F-7_P2.54x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-7, Vertical, RM 1.27mm, staggered type-1 +TO-220F-7 Vertical RM 1.27mm staggered type-1 +0 +7 +7 +Package_TO_SOT_THT +TO-220F-9_P1.8x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-9, Vertical, RM 0.9mm, staggered type-2 +TO-220F-9 Vertical RM 0.9mm staggered type-2 +0 +9 +9 +Package_TO_SOT_THT +TO-220F-9_P1.8x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-9, Vertical, RM 0.9mm, staggered type-1 +TO-220F-9 Vertical RM 0.9mm staggered type-1 +0 +9 +9 +Package_TO_SOT_THT +TO-220F-11_P3.4x5.08mm_StaggerEven_Lead5.08mm_Vertical +TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-2, see http://www.ti.com/lit/ds/symlink/lm3886.pdf +TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-2 +0 +11 +11 +Package_TO_SOT_THT +TO-220F-11_P3.4x5.08mm_StaggerOdd_Lead5.08mm_Vertical +TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-1, see http://www.ti.com/lit/ds/symlink/lm3886.pdf +TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220F-15_P2.54x5.08mm_StaggerEven_Lead5.08mm_Vertical +TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-2 +TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-2 +0 +15 +15 +Package_TO_SOT_THT +TO-220F-15_P2.54x5.08mm_StaggerOdd_Lead5.08mm_Vertical +TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-1 +TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-1 +0 +15 +15 +Package_TO_SOT_THT +TO-247-2_Horizontal_TabDown +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-247-2_Horizontal_TabUp +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-247-2_Vertical +TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-2 Vertical RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-247-3_Horizontal_TabDown +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-247-3_Horizontal_TabUp +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-247-3_Vertical +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-247-4_Horizontal_TabDown +TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-247-4_Horizontal_TabUp +TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-247-4_Vertical +TO-247-4, Vertical, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-4 Vertical RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-247-5_Horizontal_TabDown +TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf +TO-247-5 Horizontal RM 2.54mm +0 +5 +5 +Package_TO_SOT_THT +TO-247-5_Horizontal_TabUp +TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf +TO-247-5 Horizontal RM 2.54mm +0 +5 +5 +Package_TO_SOT_THT +TO-247-5_Vertical +TO-247-5, Vertical, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf +TO-247-5 Vertical RM 2.54mm +0 +5 +5 +Package_TO_SOT_THT +TO-251-2-1EP_Horizontal_TabDown +TO-251-2, Horizontal, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-2 Horizontal RM 4.58mm IPAK +0 +3 +3 +Package_TO_SOT_THT +TO-251-2_Vertical +TO-251-2, Vertical, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-2 Vertical RM 4.58mm IPAK +0 +2 +2 +Package_TO_SOT_THT +TO-251-3-1EP_Horizontal_TabDown +TO-251-3, Horizontal, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-3 Horizontal RM 2.29mm IPAK +0 +4 +4 +Package_TO_SOT_THT +TO-251-3_Vertical +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +Package_TO_SOT_THT +TO-262-3-1EP_Horizontal_TabDown +TO-262-3, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF +TO-262-3 Horizontal RM 2.54mm IIPAK I2PAK +0 +4 +4 +Package_TO_SOT_THT +TO-262-3_Vertical +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +Package_TO_SOT_THT +TO-262-5-1EP_Horizontal_TabDown +TO-262-5, Horizontal, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf +TO-262-5 Horizontal RM 1.7mm IIPAK I2PAK +0 +6 +6 +Package_TO_SOT_THT +TO-262-5_Vertical +TO-262-5, Vertical, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf +TO-262-5 Vertical RM 1.7mm IIPAK I2PAK +0 +5 +5 +Package_TO_SOT_THT +TO-264-2_Horizontal_TabDown +TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-264-2_Horizontal_TabUp +TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-264-2_Vertical +TO-264-2, Vertical, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-2 Vertical RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-264-3_Horizontal_TabDown +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-264-3_Horizontal_TabUp +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-264-3_Vertical +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-264-5_Horizontal_TabDown +TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF +TO-264-5 Horizontal RM 3.81mm +0 +5 +5 +Package_TO_SOT_THT +TO-264-5_Horizontal_TabUp +TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF +TO-264-5 Horizontal RM 3.81mm +0 +5 +5 +Package_TO_SOT_THT +TO-264-5_Vertical +TO-264-5, Vertical, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF +TO-264-5 Vertical RM 3.81mm +0 +5 +5 +Potentiometer_SMD +Potentiometer_ACP_CA6-VSMD_Vertical +Potentiometer, vertical, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical ACP CA6-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA6-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical hole ACP CA6-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA9-VSMD_Vertical +Potentiometer, vertical, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA9-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA14-VSMD_Vertical +Potentiometer, vertical, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA14-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214G_Horizontal +Potentiometer, horizontal, Bourns 3214G, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214G +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214J_Horizontal +Potentiometer, horizontal, Bourns 3214J, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214J +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214W_Vertical +Potentiometer, vertical, Bourns 3214W, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214W +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214X_Vertical +Potentiometer, vertical, Bourns 3214X, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214X +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224G_Horizontal +Potentiometer, horizontal, Bourns 3224G, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224G +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224J_Horizontal +Potentiometer, horizontal, Bourns 3224J, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224J +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224W_Vertical +Potentiometer, vertical, Bourns 3224W, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224W +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224X_Vertical +Potentiometer, vertical, Bourns 3224X, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224X +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3269P_Horizontal +Potentiometer, horizontal, Bourns 3269P, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269P +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3269W_Vertical +Potentiometer, vertical, Bourns 3269W, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer vertical Bourns 3269W +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3269X_Horizontal +Potentiometer, horizontal, Bourns 3269X, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269X +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314G_Vertical +Potentiometer, vertical, top-adjust, Bourns 3314G, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314G +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314J_Vertical +Potentiometer, vertical, top-adjust, Bourns 3314J, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314J +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314R-1_Vertical_Hole +Potentiometer, vertical, bottom-adjust, single slot, Bourns 3314R-1, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical hole Bourns 3314R-1 +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314R-GM5_Vertical +Potentiometer, vertical, cross-slot, extended leadframe, Bourns 3314R-GM5, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314R-GM5 +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314S_Horizontal +Potentiometer, horizontal, Bourns 3314S, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer horizontal Bourns 3314S +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_PRS11S_Vertical +Potentiometer, vertical, Bourns PRS11S, http://www.bourns.com/docs/Product-Datasheets/PRS11S.pdf +Potentiometer vertical Bourns PRS11S +0 +5 +5 +Potentiometer_SMD +Potentiometer_Bourns_TC33X_Vertical +Potentiometer, Bourns, TC33X, Vertical, https://www.bourns.com/pdfs/TC33.pdf +Potentiometer Bourns TC33X Vertical +0 +3 +3 +Potentiometer_SMD +Potentiometer_Vishay_TS53YJ_Vertical +Potentiometer, vertical, Vishay TS53YJ, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YJ +0 +3 +3 +Potentiometer_SMD +Potentiometer_Vishay_TS53YL_Vertical +Potentiometer, vertical, Vishay TS53YL, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YL +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA6-H2,5_Horizontal +Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer horizontal ACP CA6-H2,5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-H2,5_Horizontal +Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H2,5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-H3,8_Horizontal +Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H3,8 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-H5_Horizontal +Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-V10_Vertical +Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14-H2,5_Horizontal +Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H2,5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14-H4_Horizontal +Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H4 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14-H5_Horizontal +Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14V-15_Vertical +Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14V-15 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14V-15_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14V-15 +0 +3 +3 +Potentiometer_THT +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +Potentiometer_THT +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +Potentiometer_THT +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +Potentiometer_THT +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +Potentiometer_THT +Potentiometer_Alps_RK09K_Single_Horizontal +111009J 1110AK4 11100DN 1110AAR 1110077 1110A0J 110AMJ 1110B26 D1110C1A Potentiometer, horizontal, Alps RK09K Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09k/rk09k.pdf +Potentiometer horizontal Alps RK09K Single Snapin +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09K_Single_Vertical +113004U 1130A6S 11300DR 1130A8G 1130081 1130A5R 1130AP5 1130AST D1130C3W D1130C1B D1130C3C D1130C2P Potentiometer, vertical, Alps RK09K Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09k/rk09k.pdf +Potentiometer vertical Alps RK09K RK09D Single Snapin +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09L_Double_Horizontal +122002H 122002L 12B0A4S 12B0A1V Potentiometer, horizontal, Alps RK09L Double, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer horizontal Alps RK09L Double +0 +8 +7 +Potentiometer_THT +Potentiometer_Alps_RK09L_Double_Vertical +1240015 1240019 12D0A1W 12D0A1T Potentiometer, vertical, Alps RK09L Double, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer vertical Alps RK09L Double +0 +8 +7 +Potentiometer_THT +Potentiometer_Alps_RK09L_Single_Horizontal +1120A5F 1120036 1120A0Z 112003S Potentiometer, horizontal, Alps RK09L Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer horizontal Alps RK09L Single +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09L_Single_Vertical + 1140A5L 114001E 1140A2U 114001T Potentiometer, vertical, Alps RK09L Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer vertical Alps RK09L Single +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09Y11_Single_Horizontal +Potentiometer, horizontal, Long Life, Alps RK09Y11 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09y11/rk09y11.pdf +Potentiometer horizontal Alps RK09Y11 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Alps_RK097_Dual_Horizontal +1210, Dual Pot, Horizontal, Alps RK097 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Alps_RK097_Dual_Horizontal_Switch +1221-5R1211, Dual Pot, Horizontal, Switch, Alps RK097 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Dual Switch +0 +8 +8 +Potentiometer_THT +Potentiometer_Alps_RK097_Single_Horizontal +1110, Single Pot, Horizontal, Alps RK097 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Alps_RK097_Single_Horizontal_Switch +1111-5R1211, Single Pot, Horizontal, Switch, Alps RK097 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Single Switch +0 +5 +5 +Potentiometer_THT +Potentiometer_Alps_RK163_Dual_Horizontal +12101A2 1210AX9 12A0B85 12A0BKR Potentiometer, horizontal, Alps RK163 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk16/rk16.pdf +Potentiometer horizontal Alps RK163 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Alps_RK163_Single_Horizontal +1110U1Q 1110TNP 1110U2A 1110U0Q Potentiometer, horizontal, Alps RK163 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk16/rk16.pdf +Potentiometer horizontal Alps RK163 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3005_Horizontal +Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf +Potentiometer horizontal Bourns 3005 +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3006P_Horizontal +Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3006W_Horizontal +Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3006Y_Horizontal +Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3009P_Horizontal +Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3009Y_Horizontal +Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266P_Horizontal +Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266W_Vertical +Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266X_Horizontal +Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266Y_Vertical +Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266Z_Horizontal +Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266Z +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296P_Horizontal +Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296W_Vertical +Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296X_Horizontal +Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296Y_Vertical +Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296Z_Horizontal +Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296Z +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299P_Horizontal +Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299W_Vertical +Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299X_Horizontal +Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299Y_Vertical +Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299Z_Horizontal +Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299Z +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339H_Vertical +Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339H +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339P_Vertical +Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339P_Vertical_HandSoldering +Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P hand-soldering +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339S_Horizontal +Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339S +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339W_Horizontal +Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386C_Horizontal +Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386C +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386F_Vertical +Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386F +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386P_Vertical +Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386W_Horizontal +Potentiometer, horizontal, Bourns 3386W, 9.53 x 4.83 x 9.53mm, https://www.bourns.com/docs/Product-Datasheets/3386.pdf +Potentiometer +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386X_Horizontal +Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_PTA1543_Single_Slide +Bourns single-gang slide potentiometer, 15.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 15.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA2043_Single_Slide +Bourns single-gang slide potentiometer, 20.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 20.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA3043_Single_Slide +Bourns single-gang slide potentiometer, 30.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 30.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA4543_Single_Slide +Bourns single-gang slide potentiometer, 45.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 45.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA6043_Single_Slide +Bourns single-gang slide potentiometer, 60.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 60.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTV09A-1_Single_Vertical +Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer vertical Bourns PTV09A-1 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_PTV09A-2_Single_Horizontal +Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer horizontal Bourns PTV09A-2 Single +0 +5 +3 +Potentiometer_THT +Potentiometer_Bourns_PTV112-4_Dual_Vertical +2 Gang dual Through Hole, Snap In potentiometer, https://www.bourns.com/docs/Product-Datasheets/PTVPTT.pdf +PTV112-4 Dual gang +0 +8 +7 +Potentiometer_THT +Potentiometer_Omeg_PC16BU_Horizontal +Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer horizontal Omeg PC16BU +0 +3 +3 +Potentiometer_THT +Potentiometer_Omeg_PC16BU_Vertical +Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer vertical Omeg PC16BU +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PC-16_Dual_Horizontal +Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Piher_PC-16_Single_Horizontal +Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PC-16_Single_Vertical +Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer vertical Piher PC-16 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PC-16_Triple_Horizontal +Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Triple +0 +9 +9 +Potentiometer_THT +Potentiometer_Piher_PT-6-H_Horizontal +Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer horizontal Piher PT-6-H +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-6-V_Vertical +Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical Piher PT-6-V +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-6-V_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical hole Piher PT-6-V +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-H01_Horizontal +Potentiometer, horizontal, Piher PT-10-H01, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H01 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-H05_Horizontal +Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H05 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-V05_Vertical +Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V05 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-V10_Vertical +Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical hole Piher PT-10-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H01_Horizontal +Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H01 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H05_Horizontal +Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H05 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H06_Horizontal +Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H06 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H25_Horizontal +Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H25 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V02_Vertical +Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V02 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V02_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V02 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V15_Vertical +Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V15 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V15_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V15 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_T-16H_Double_Horizontal +Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Double +0 +6 +6 +Potentiometer_THT +Potentiometer_Piher_T-16H_Single_Horizontal +Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_T-16L_Single_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer vertical hole Piher T-16L Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Runtron_RM-063_Horizontal +Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf +Potentiometer Trimmer RM-063 +0 +3 +3 +Potentiometer_THT +Potentiometer_Runtron_RM-065_Vertical +Potentiometer, vertical, Trimmer, RM-065 https://components101.com/sites/default/files/component_datasheet/Preset%20Potentiometer%20%28Trimpot%29.pdf +Potentiometer Trimmer RM-065 +0 +3 +3 +Potentiometer_THT +Potentiometer_TT_P0915N +http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf +potentiometer vertical TT P0915N single +0 +5 +3 +Potentiometer_THT +Potentiometer_Vishay_43_Horizontal +Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf +Potentiometer horizontal Vishay 43 +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_148-149_Dual_Horizontal +Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Vishay_148-149_Single_Horizontal +Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_148-149_Single_Vertical +Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer vertical Vishay 148-149 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_148E-149E_Dual_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Dual +0 +10 +6 +Potentiometer_THT +Potentiometer_Vishay_148E-149E_Single_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Single +0 +7 +3 +Potentiometer_THT +Potentiometer_Vishay_248BH-249BH_Single_Horizontal +Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248BH-249BH Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal +Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248GJ-249GJ Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_248GJ-249GJ_Single_Vertical +Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer vertical Vishay 248GJ-249GJ Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T7-YA_Single_Vertical +Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf +Potentiometer vertical Vishay T7-YA Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T73XW_Horizontal +Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XW +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T73XX_Horizontal +Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XX +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T73YP_Vertical +Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer vertical Vishay T73YP +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T93XA_Horizontal +Potentiometer, horizontal, Vishay, https://www.vishay.com/docs/51026/t93.pdf, 3/8" x 3/8" x 3/16" (9.7 x 9.8 x 5mm max.) +Potentiometer horizontal vishay +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T93YA_Vertical +Potentiometer, vertical, Vishay, https://www.vishay.com/docs/51026/t93.pdf +Potentiometer vertical vishay +0 +3 +3 +RF +Skyworks_SKY13575_639LF +http://www.skyworksinc.com/uploads/documents/SKY13575_639LF_203270D.pdf +Skyworks +0 +19 +15 +RF +Skyworks_SKY65404-31 +http://www.skyworksinc.com/uploads/documents/SKY65404_31_201512K.pdf +Skyworks +0 +7 +7 +RF_Antenna +AVX_M620720 +868Mhz, 915Mhz ISM antenna, 6 x 2 x 1.08mm, http://datasheets.avx.com/ethertronics/AVX-E_M620720.pdf +868 915 Mhz ISM antenna +0 +6 +3 +RF_Antenna +Abracon_APAES868R8060C16-T +Abracon RHCP ceramic patch antenna 854-882Mhz, 5dBi +APAES patch antenna +0 +1 +1 +RF_Antenna +Abracon_PRO-OB-440 +Abracon OnBoard SMD antenna 2400-2500Mhz, https://abracon.com/datasheets/PRO-OB-440.pdf +2400 PRO-OB-440 Antenna +0 +4 +4 +RF_Antenna +Abracon_PRO-OB-471 +OnBoard 868/915/868+2400 MHz Antenna, https://abracon.com/datasheets/PRO-OB-471.pdf +Antenna ProAnt OnBoard 868Mhz 915Mhz 2400Mhz +0 +6 +6 +RF_Antenna +Antenova_SR4G013_GPS +GPS/GLONASS/Galileo/BeiDou antenna, 1559-1609Mhz, SMD, https://www.application-datasheet.com/pdf/antenova/sr4g013.pdf +antenna GPS Antenova Beltii +0 +5 +2 +RF_Antenna +Astrocast_AST50127-00 +L-band patch antenna, https://docs.astrocast.com/dl/0534-DOC-M2M-ASTRO-Patch_Antenna-Datasheet.pdf +L-band antenna astrocast Patch Antenna +0 +1 +1 +RF_Antenna +Coilcraft_MA5532-AE_RFID +RFID Transponder Coil +antenna rfid coilcraft +0 +2 +2 +RF_Antenna +Johanson_2450AT18x100 +Johanson 2450AT43F0100 SMD antenna 2400-2500Mhz, -0.5dBi, https://www.johansontechnology.com/datasheets/2450AT18A100/2450AT18A100.pdf +antenna +0 +2 +2 +RF_Antenna +Johanson_2450AT43F0100 +Johanson 2450AT43F0100 SMD antenna 2400-2500Mhz, 1dBi, https://www.johansontechnology.com/datasheets/2450AT43F0100/2450AT43F0100.pdf +antenna +0 +2 +2 +RF_Antenna +Molex_47948-0001_2.4Ghz +SMD antenna 2400-2500Mhz, 3.7dBi, https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/productspecificationpdf/479/47948/PS-47948-001-001.pdf?inline +rf antenna +0 +4 +2 +RF_Antenna +NiceRF_SW868-TH13_868Mhz +868Mhz copper string antenna, right angle, approx. 15mm coil length, 5.5mm OD, 0.8 wire diameter, https://www.nicerf.com/item/868mhz-spring-antenna-sw868-th13 +antenna rf +0 +1 +1 +RF_Antenna +Pulse_W3000 +Pulse Electronics W3000 tri-band antenna for GPS (1.575Ghz), 868Mhz and 2.4Ghz ISM bands, https://productfinder.pulseeng.com/products/datasheets/W3000.pdf +Antenna GPS 868Mhz ISM 1.575Ghz +0 +2 +2 +RF_Antenna +Pulse_W3011 +Pulse RF Antenna, 4mm Clearance +antenna rf +0 +3 +2 +RF_Antenna +Texas_SWRA117D_2.4GHz_Left +http://www.ti.com/lit/an/swra117d/swra117d.pdf +PCB antenna +0 +2 +2 +RF_Antenna +Texas_SWRA117D_2.4GHz_Right +http://www.ti.com/lit/an/swra117d/swra117d.pdf +PCB antenna +0 +2 +2 +RF_Antenna +Texas_SWRA416_868MHz_915MHz +http://www.ti.com/lit/an/swra416/swra416.pdf +PCB antenna +0 +20 +1 +RF_Converter +Anaren_0805_2012Metric-6 +https://cdn.anaren.com/product-documents/Xinger/DirectionalCouplers/DC4759J5020AHF/DC4759J5020AHF_DataSheet(Rev_E).pdf +coupler rf +0 +6 +6 +RF_Converter +Balun_Johanson_1.6x0.8mm +6-pin 1.6x0.8 mm balun footprint +Johanson balun filter +0 +6 +6 +RF_Converter +Balun_Johanson_0896BM15A0001 +https://www.johansontechnology.com/datasheets/0896BM15A0001/0896BM15A0001.pdf +balun RF +0 +6 +6 +RF_Converter +Balun_Johanson_0900FM15K0039 +Johanson 0900FM15K0039 DFN, 10 Pin (https://www.johansontechnology.com/datasheets/0900FM15K0039/0900FM15K0039.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Johanson DFN NoLead +0 +10 +10 +RF_Converter +Balun_Johanson_0900PC15J0013 +Johanson 0900PC15J0013 DFN, 10 Pin (https://www.johansontechnology.com/datasheets/0900PC15J0013/0900PC15J0013.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Johanson DFN NoLead +0 +10 +10 +RF_Converter +Balun_Johanson_5400BL15B050E +https://www.johansontechnology.com/datasheets/5400BL15B050/5400BL15B050.pdf +balun RF +0 +6 +6 +RF_Converter +RF_Attenuator_Susumu_PAT1220 +http://www.susumu-usa.com/pdf/Foot_Print_38.pdf, https://www.susumu.co.jp/common/pdf/n_catalog_partition16_en.pdf +2mm 1.2mm +0 +3 +3 +RF_GPS +Linx_RXM-GPS +GPS Module, Linx (https://linxtechnologies.com/wp/wp-content/uploads/rxm-gps-rm.pdf) +gps linx +0 +22 +22 +RF_GPS +Quectel_L70-R +Quectel L70-R, (https://www.quectel.com/product/gps-only-l70-r) +GPS Quectel L70-R +0 +18 +18 +RF_GPS +Quectel_L76 +GPS module, https://www.quectel.com/wp-content/uploads/2021/03/Quectel_L76L76-L_Hardware_Design_V3.2-1.pdf +Quectel GPS L76 L76-L +0 +18 +18 +RF_GPS +Quectel_L80-R +Quectel L80-R GPS Module, Patch on Top, https://www.quectel.com/UploadImage/Downlad/Quectel_L80-R_Hardware_Design_V1.2.pdf +quectel GPS GNSS +0 +12 +12 +RF_GPS +Quectel_L96 +Quectel L96 GPS GLONASS Galileo BeiDou Module, internal chip antenna, https://static6.arrow.com/aropdfconversion/50213b4bc5cb920911b62909a5ca765b1c5ab3d1/quectel_l96_hardware_design_v1.2.pdf +Quectel GPS GNSS +0 +31 +31 +RF_GPS +SIM28ML +https://simcom.ee/documents/SIM28ML/SIM28ML_Hardware%20Design_V1.01.pdf +SIM28ML GPS +0 +18 +18 +RF_GPS +Sierra_XA11X0 +QFN-24, Pitch 1.20 no EP, https://source.sierrawireless.com/resources/airprime/hardware_specs_user_guides/airprime_xm1100_product_technical_specification +QFN-24 P1.20 +0 +24 +24 +RF_GPS +Sierra_XM11X0 +QFN-20, Pitch 1.20 no EP, https://source.sierrawireless.com/resources/airprime/hardware_specs_user_guides/airprime_xm1100_product_technical_specification +QFN-20 P1.20 +0 +20 +20 +RF_GPS +ublox_LEA +ublox LEA 6/7/8, (https://www.u-blox.com/sites/default/files/LEA-M8S-M8T-FW3_HardwareIntegrationManual_%28UBX-15030060%29.pdf) +GPS ublox LEA 6/7/8 +0 +28 +28 +RF_GPS +ublox_MAX +ublox MAX 6/7/8, (https://www.u-blox.com/sites/default/files/MAX-8-M8-FW3_HardwareIntegrationManual_%28UBX-15030059%29.pdf) +GPS ublox MAX 6/7/8 +0 +18 +18 +RF_GPS +ublox_NEO +ublox NEO 6/7/8, (https://www.u-blox.com/sites/default/files/NEO-8Q-NEO-M8-FW3_HardwareIntegrationManual_%28UBX-15029985%29_0.pdf) +GPS ublox NEO 6/7/8 +0 +24 +24 +RF_GPS +ublox_SAM-M8Q +GPS Module, 15.5x15.5x6.3mm, https://www.u-blox.com/sites/default/files/SAM-M8Q_HardwareIntegrationManual_%28UBX-16018358%29.pdf +ublox SAM-M8Q +0 +100 +20 +RF_GPS +ublox_SAM-M8Q_HandSolder +GPS Module, 15.5x15.5x6.3mm, https://www.u-blox.com/sites/default/files/SAM-M8Q_HardwareIntegrationManual_%28UBX-16018358%29.pdf +ublox SAM-M8Q +0 +20 +20 +RF_GPS +ublox_ZED +ublox ZED-F9, https://www.u-blox.com/sites/default/files/ZED-F9P_DataSheet_%28UBX-17051259%29.pdf +GPS GNSS ublox ZED +0 +102 +55 +RF_GPS +ublox_ZOE_M8 +GPS Ublox ZOE, https://content.u-blox.com/sites/default/files/ZOE-M8_DataSheet_UBX-16008094.pdf +Ublox GPS GNSS +0 +51 +51 +RF_GSM +Quectel_BC66 +GSM NB-IoT module, 15.8x17.7x2mm, https://www.quectel.com/UploadImage/Downlad/Quectel_BC66_Hardware_Design_V1.1.pdf +GSM NB-IoT Module BC66 M66 +0 +116 +58 +RF_GSM +Quectel_BC95 +GSM NB-IoT module, 19.9x23.6x2.2mm, https://www.quectel.com/UploadImage/Downlad/Quectel_BC95_Hardware_Design_V1.3.pdf +GSM NB-IoT module BC95 +0 +188 +94 +RF_GSM +Quectel_BG96 +Quectel BG96 Cellular GSM 2G Module https://www.quectel.com/download/quectel_bg96_hardware_design_v1-4 +Quectel BG96 Cellular GSM 2G Module +0 +204 +102 +RF_GSM +Quectel_M95 +Quad-Band GSM/GPRS module, 19.9x23.6x2.65mm, https://www.quectel.com/UploadImage/Downlad/M95_Hardware_Design_V1.3.pdf +GSM Module M95 +0 +84 +42 +RF_GSM +SIMCom_SIM800C +Quad-Band GSM/GPRS module, 17.6x15.7x2.3mm, http://simcom.ee/documents/SIM800C/SIM800C_Hardware_Design_V1.05.pdf +GSM Module SIM800C +0 +84 +42 +RF_GSM +SIMCom_SIM900 +Quad-Band GSM/GPRS module, 24x24x3mm, http://simcom.ee/documents/SIM900/SIM900_Hardware%20Design_V2.05.pdf +GSM Module SIM900 +0 +68 +68 +RF_GSM +Telit_xL865 +Telit xL865 familly footprint, http://www.telit.com/fileadmin/user_upload/products/Downloads/3G/Telit_UL865_Hardware_User_Guide_r8.pdf +xL865 gsm umts +0 +52 +48 +RF_GSM +ublox_SARA_LGA-96 +ublox SARA cellular/GNSS module, https://www.u-blox.com/sites/default/files/SARA-G3-U2_SysIntegrManual_%28UBX-13000995%29.pdf, pag.162 +ublox u-blox SARA-R41 SARA-R42 SARA-R5 SARA-N2 SARA-N3 SARA-G3 SARA-G4 SARA-U2 cellular LTE IoT GSM HSPA GNSS GPS +0 +192 +96 +RF_Mini-Circuits +Mini-Circuits_BK377 +Footprint for Mini-Circuits case BK377 (https://ww2.minicircuits.com/case_style/BK276.pdf) +Mini-circuits BK377 +0 +14 +14 +RF_Mini-Circuits +Mini-Circuits_BK377_LandPatternPL-005 +Footprint for Mini-Circuits case BK377 (https://ww2.minicircuits.com/case_style/BK276.pdf) according to land-pattern PL-005, including GND vias (https://ww2.minicircuits.com/pcb/98-pl005.pdf) +Mini-circuits VCXO JTOS PL-005 +0 +50 +14 +RF_Mini-Circuits +Mini-Circuits_CD541_H2.08mm +https://ww2.minicircuits.com/case_style/CD541.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_H2.84mm +https://ww2.minicircuits.com/case_style/CD542.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_LandPatternPL-052 +Footprint for Mini-Circuits case CD542 (https://ww2.minicircuits.com/case_style/CD542.pdf) using land-pattern PL-052, including GND-vias (https://ww2.minicircuits.com/pcb/98-pl052.pdf) +MiniCircuits PL-052 CD542 +0 +17 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_LandPatternPL-094 +Footprint for mini circuit case CD542, Land pattern PL-094, pads 5 and 2 connected via insulated copper area below body, vias included (case drawing: https://ww2.minicircuits.com/case_style/CD542.pdf, land pattern drawing: https://ww2.minicircuits.com/pcb/98-pl094.pdf) +mini-circuits CD542 pl-094 +0 +18 +6 +RF_Mini-Circuits +Mini-Circuits_CD636_H4.11mm +https://ww2.minicircuits.com/case_style/CD636.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD636_LandPatternPL-035 +Footprint for Mini-Circuits case CD636 (https://ww2.minicircuits.com/case_style/CD636.pdf) following land pattern PL-035, including GND-vias (https://ww2.minicircuits.com/pcb/98-pl035.pdf) +mini-circuits pl-035 CD636 +0 +13 +6 +RF_Mini-Circuits +Mini-Circuits_CD637_H5.23mm +https://ww2.minicircuits.com/case_style/CD637.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CK605 +Footprint for Mini-Circuits case CK605 (https://ww2.minicircuits.com/case_style/CK605.pdf) +Mini-Circuits CK605 +0 +16 +16 +RF_Mini-Circuits +Mini-Circuits_CK605_LandPatternPL-012 +Footprint for Mini-Circuits case CK605 (https://ww2.minicircuits.com/case_style/CK605.pdf) following land pattern PL-012, including GND vias (https://ww2.minicircuits.com/pcb/98-pl012.pdf) +Mini-Circuits PL-012 +0 +53 +16 +RF_Mini-Circuits +Mini-Circuits_DB1627 +Mini-Circuits top-hat case DB1627 (https://ww2.minicircuits.com/case_style/DB1627.pdf) +Mini-Circuits DB1627 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_GP731 +Footprint for Mini-Circuits case GP731 (https://ww2.minicircuits.com/case_style/GP731.pdf) +Mini-Circuits GP731 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_GP731_LandPatternPL-176 +Footprint for Mini-Circuits case GP731 (https://ww2.minicircuits.com/case_style/GP731.pdf) following land pattern PL-176, including GND vias (https://www.minicircuits.com/pcb/98-pl176.pdf) +mini-circuits PL-176 +0 +21 +8 +RF_Mini-Circuits +Mini-Circuits_GP1212 +Footprint for Mini-Circuits case GP1212 (https://ww2.minicircuits.com/case_style/GP731.pdf) +mini-circuits GP1212 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_GP1212_LandPatternPL-176 +Footprint for Mini-Circuits case GP1212 (https://ww2.minicircuits.com/case_style/GP731.pdf) following land pattern PL-176, including GND vias (https://www.minicircuits.com/pcb/98-pl176.pdf) +mini-circuits PL-176 +0 +21 +8 +RF_Mini-Circuits +Mini-Circuits_HF1139 +Footprint for Mini-Circuits case HF1139 (https://ww2.minicircuits.com/case_style/HF1139.pdf) +Mini-Circuits HF1139 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_HF1139_LandPatternPL-230 +Footprint for Mini-Circuits case HF1139 (https://ww2.minicircuits.com/case_style/HF1139.pdf) following land pattern PL-230, including GND vias (https://ww2.minicircuits.com/pcb/98-pl230.pdf) +Mini-Circuits PL-230 +0 +37 +8 +RF_Mini-Circuits +Mini-Circuits_HQ1157 +Footprint for Mini-Circuits case HQ1157 (https://www.minicircuits.com/case_style/HQ1157.pdf) +Mini-Circuits HQ1157 +0 +14 +14 +RF_Mini-Circuits +Mini-Circuits_HZ1198 +Footprint for Mini-Circuits case HZ1198 (https://ww2.minicircuits.com/case_style/HZ1198.pdf) +Mini-Circuits HZ1198 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_HZ1198_LandPatternPL-247 +Footprint for Mini-Circuits cas HZ1198 (https://ww2.minicircuits.com/case_style/HZ1198.pdf) following land pattern PL-247, including GND-vias (https://www.minicircuits.com/pcb/98-pl247.pdf) +Mini-Circuits PL-247 HZ1198 +0 +40 +6 +RF_Mini-Circuits +Mini-Circuits_MMM168 +Footprint for Mini-Circuits case MMM168 (https://ww2.minicircuits.com/case_style/MMM168.pdf) +Mini-Circuits MMM168 +0 +4 +4 +RF_Mini-Circuits +Mini-Circuits_MMM168_LandPatternPL-225 +Footprint for Mini-Circuits case MMM168, Land pattern PL-225, vias included, (case drawing: https://ww2.minicircuits.com/case_style/MMM168.pdf, land pattern drawing: https://ww2.minicircuits.com/pcb/98-pl225.pdf) +pl-225 +0 +10 +4 +RF_Mini-Circuits +Mini-Circuits_QQQ130_ClockwisePinNumbering +Footprint for Mini-Circuits case QQQ130 (https://ww2.minicircuits.com/case_style/QQQ130.pdf) +Mini-Circuits QQQ130 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_QQQ130_LandPattern_PL-236_ClockwisePinNumbering +Footprint for Mini-Circuits case QQQ130 (https://ww2.minicircuits.com/case_style/QQQ130.pdf) following land pattern PL-236, including GND vias (https://ww2.minicircuits.com/pcb/98-pl236.pdf) +Mini-Circuits PL-236 +0 +14 +6 +RF_Mini-Circuits +Mini-Circuits_TT1224_ClockwisePinNumbering +Footprint for Mini-Circuits case TT1224 (https://ww2.minicircuits.com/case_style/TT1224.pdf) following land-pattern PL-258, including GND-vias (https://www.minicircuits.com/pcb/98-pl258.pdf) +Mini-Circuits TT1224 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_TT1224_LandPatternPL-258_ClockwisePinNumbering +Footprint for Mini-Circuits case TT1224 (https://ww2.minicircuits.com/case_style/TT1224.pdf) following land-pattern PL-258, including GND-vias (https://www.minicircuits.com/pcb/98-pl258.pdf) +PL-258 Mini-Circuits +0 +26 +6 +RF_Mini-Circuits +Mini-Circuits_TTT167 +Footprint for Mini-Circuits case TTT167 (https://ww2.minicircuits.com/case_style/TTT167.pdf) +Mini-Circuits TTT167 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_TTT167_LandPatternPL-079 +Footprint for Mini-Circuits case TTT167 (Mini-Circuits_TTT167_LandPatternPL-079) following land pattern PL-079, including GND vias (https://ww2.minicircuits.com/pcb/98-pl079.pdf) +Mini-Circuits PL-079 +0 +36 +6 +RF_Mini-Circuits +Mini-Circuits_YY161 +Footprint for Mini-Circuits case YY161 (https://ww2.minicircuits.com/case_style/YY161.pdf) +Mini-Circuits YY161 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_YY161_LandPatternPL-049 +Footprint for Mini-Circuits case YY161 (https://ww2.minicircuits.com/case_style/YY161.pdf) using land-pattern PL-049, including GND-connections and vias (https://ww2.minicircuits.com/pcb/98-pl049.pdf) +mini-circuits pl-049 +0 +36 +8 +RF_Module +Ai-Thinker-Ra-01-LoRa +Ai Thinker Ra-01 LoRa +LoRa Ra-01 +0 +16 +16 +RF_Module +Astrocast_AST50147-00 +L-band satellite communication module, https://docs.astrocast.com/dl/0532-DOC-M2M-ASTRO-Astronode_S-Datasheet.pdf +RF module Astrocast radio Astronode +0 +38 +38 +RF_Module +Atmel_ATSAMR21G18-MR210UA_NoRFPads +http://ww1.microchip.com/downloads/en/devicedoc/atmel-42475-atsamr21g18-mr210ua_datasheet.pdf +module wireless zigbee 802.15.4 flash crypto ATSAMR21G18 AT45DB041E TECC508A U.Fi +0 +42 +42 +RF_Module +BLE112-A +Class 4 Bluetooth Module with on-board antenna +Bluetooth Module +0 +30 +30 +RF_Module +BM78SPPS5xC2 +Bluetooth Dual-mode module with integral chip antenna (http://ww1.microchip.com/downloads/en/DeviceDoc/60001380C.pdf) +Bluetooth BR/EDR BLE +0 +33 +33 +RF_Module +CMWX1ZZABZ +https://wireless.murata.com/RFM/data/type_abz.pdf +iot lora sigfox +0 +57 +57 +RF_Module +CYBLE-21Pin-10x10mm +Cypress EZ-BLE PRoC Module (Bluetooth Smart) 21 Pin Module +Cypress BT Bluetooth +0 +21 +21 +RF_Module +DWM1000 +IEEE802.15.4-2011 UWB +UWB Module +0 +24 +24 +RF_Module +DecaWave_DWM1001 +https://www.decawave.com/sites/default/files/dwm1001_datasheet.pdf +UWB module +0 +34 +34 +RF_Module +Digi_XBee_SMT +http://www.digi.com/resources/documentation/digidocs/pdfs/90002126.pdf http://ftp1.digi.com/support/documentation/90001020_F.pdf +Digi XBee SMT RF +0 +37 +37 +RF_Module +E18-MS1-PCB +http://www.cdebyte.com/en/downpdf.aspx?id=122 +Zigbee +0 +24 +24 +RF_Module +E73-2G4M04S +http://www.cdebyte.com/en/downpdf.aspx?id=243 +BLE BLE5 nRF52832 +0 +44 +44 +RF_Module +ESP-07 +Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/a007ps01a2_esp-07_product_specification_v1.2.pdf +Wi-Fi Module +0 +16 +16 +RF_Module +ESP-12E +Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/aithinker_esp_12f_datasheet_en.pdf +Wi-Fi Module +0 +22 +22 +RF_Module +ESP-WROOM-02 +https://www.espressif.com/sites/default/files/documentation/0c-esp-wroom-02_datasheet_en.pdf +ESP WROOM-02 espressif esp8266ex +0 +19 +19 +RF_Module +ESP32-C3-WROOM-02 +RF Module, ESP32-C3 WROOM-02, Wi-Fi and Bluetooth, BLE, onboard antenna, https://www.espressif.com/sites/default/files/documentation/esp32-c3-wroom-02_datasheet_en.pdf +ESP32-C3 WROOM-02 espressif +0 +40 +19 +RF_Module +ESP32-C3-WROOM-02U +RF Module, ESP32-C3 WROOM-02 , Wi-Fi and Bluetooth, BLE, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-c3-wroom-02_datasheet_en.pdf +ESP32-C3 WROOM-02 espressif +0 +40 +19 +RF_Module +ESP32-S2-MINI-1 +2.4 GHz Wi-Fi and Bluetooth combo chip, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf +2.4 GHz Wi-Fi Bluetooth external antenna espressif 20*15.4mm +0 +73 +65 +RF_Module +ESP32-S2-MINI-1U +2.4 GHz Wi-Fi and Bluetooth combo chip, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf +2.4 GHz Wi-Fi Bluetooth external antenna espressif 15.4*15.4mm +0 +73 +65 +RF_Module +ESP32-S2-WROVER +ESP32-S2-WROVER(-I) 2.4 GHz Wi-Fi https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf +ESP32-S2 ESP32 WIFI +0 +43 +43 +RF_Module +ESP32-S3-WROOM-1 +2.4 GHz Wi-Fi and Bluetooth module https://www.espressif.com/sites/default/files/documentation/esp32-s3-wroom-1_wroom-1u_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module +0 +62 +41 +RF_Module +ESP32-S3-WROOM-1U +2.4 GHz Wi-Fi and Bluetooth module https://www.espressif.com/sites/default/files/documentation/esp32-s3-wroom-1_wroom-1u_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module +0 +62 +41 +RF_Module +ESP32-S3-WROOM-2 +2.4 GHz Wi­-Fi and Bluetooth 5 (LE) module: https://www.espressif.com/sites/default/files/documentation/esp32-s3-wroom-2_datasheet_en.pdf +Bluetooth WiFi Wi-Fi ESP WROOM +0 +61 +41 +RF_Module +ESP32-WROOM-32 +Single 2.4 GHz Wi-Fi and Bluetooth combo chip https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf +Single 2.4 GHz Wi-Fi and Bluetooth combo chip +0 +60 +39 +RF_Module +ESP32-WROOM-32D +2.4 GHz Wi-Fi and Bluetooth module, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module ESP32-D0WD Espressif ESP32-WROOM-32E +0 +60 +39 +RF_Module +ESP32-WROOM-32E +2.4 GHz Wi­-Fi and Bluetooth 5 (LE) module: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +Bluetooth WiFi Wi-Fi ESP32 WROOM Xtensa LX6 +0 +59 +39 +RF_Module +ESP32-WROOM-32U +Single 2.4 GHz Wi-Fi and Bluetooth combo chip with U.FL connector, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf +Single 2.4 GHz Wi-Fi and Bluetooth combo chip +0 +60 +39 +RF_Module +ESP32-WROOM-32UE +2.4 GHz Wi-Fi and Bluetooth module, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module +0 +60 +39 +RF_Module +Garmin_M8-35_9.8x14.0mm_Layout6x6_P1.5mm +D52M ANT SoC Module https://www.thisisant.com/assets/resources/D00001687_D52_Module_Datasheet.v.2.3_(Garmin).pdf +RF SoC Radio ANT Bluetooth BLE D52 nRF52 Garmin Canada Dynastream Nordic +0 +35 +35 +RF_Module +HOPERF_RFM9XW_SMD +Low Power Long Range Transceiver Module SMD-16 (https://www.hoperf.com/data/upload/portal/20181127/5bfcbea20e9ef.pdf) +LoRa Low Power Long Range Transceiver Module +0 +16 +16 +RF_Module +HOPERF_RFM9XW_THT +Low Power Long Range Transceiver Module THT-16 (https://www.hoperf.com/data/upload/portal/20181127/5bfcbea20e9ef.pdf) +Low Power Long Range Transceiver Module LoRa +0 +16 +16 +RF_Module +HOPERF_RFM69HW +Radio, RF, Module, http://www.hoperf.com/upload/rf/RFM69HW-V1.3.pdf +Radio RF Module +0 +16 +16 +RF_Module +Heltec_HT-CT62 +HT-CT62 LoRa Module +LoRa WiFi Heltec HT-CT62 ESP32C3 +0 +22 +22 +RF_Module +IQRF_TRx2DA_KON-SIM-01 +8 pin SIM connector for IQRF TR-x2DA(T) modules, http://iqrf.org/weben/downloads.php?id=104 +IQRF_KON-SIM-01 IQRF_TRx2DA +0 +10 +8 +RF_Module +IQRF_TRx2D_KON-SIM-01 +8 pin SIM connector for IQRF TR-x2D(C)(T) modules, http://iqrf.org/weben/downloads.php?id=104 +IQRF_KON-SIM-01 IQRF_TRx2D IQRF_TRx2DC +0 +10 +8 +RF_Module +Laird_BL652 +Bluetooth v4.2 + NFC module +Bluetooth BLE NFC +0 +39 +39 +RF_Module +MCU_Seeed_ESP32C3 +ESP32C3 Seeed Xiao RF Wifi Shield (https://www.seeedstudio.com/blog/wp-content/uploads/2022/08/Seeed-Studio-XIAO-Series-Package-and-PCB-Design.pdf) +wifi bluetooth microcontroller +0 +27 +23 +RF_Module +MOD-nRF8001 +BLE module, https://www.olimex.com/Products/Modules/RF/MOD-nRF8001/ +BLE module +0 +11 +11 +RF_Module +Microchip_BM83 +Microchip BM83, Bluetooth 5.0 Stereo Audio Module with on-Board antenna, https://ww1.microchip.com/downloads/aemDocuments/documents/WSG/ProductDocuments/DataSheets/70005402E.pdf +bluetooth module +0 +52 +52 +RF_Module +Microchip_RN4871 +Microchip RN4871 footprint +RN4871 BLE +0 +16 +16 +RF_Module +Modtronix_inAir9 +Modtronix Wireless SX1276 LoRa Module (http://modtronix.com/img/prod/imod/inair9/inair_dimensions.gif) +Modtronix LoRa inAir inAir9 SX1276 RF 915MHz 868MHz Wireless +0 +14 +14 +RF_Module +MonoWireless_TWE-L-WX +https://www.mono-wireless.com/jp/products/TWE-LITE/MW-PDS-TWELITE-JP.pdf +TWE-L-WX +0 +32 +32 +RF_Module +NINA-B111 +NINA-B111 LGA module 42 Pin https://content.u-blox.com/sites/default/files/NINA-B1_DataSheet_UBX-15019243.pdf#page=30 +NINA ublox u-blox b111 bluetooth nrf52840 module +0 +42 +42 +RF_Module +Particle_P1 +https://docs.particle.io/datasheets/p1-datasheet/ +Particle P1 +0 +75 +75 +RF_Module +RAK811 +RAK811 LPWAN Module https://downloads.rakwireless.com/LoRa/RAK811/Hardware_Specification/RAK811_LoRa_Module_Datasheet_V1.4.pdf +LoRa LoRaWAN RAK811 +0 +34 +34 +RF_Module +RAK4200 +RAK4200 LPWAN Module https://downloads.rakwireless.com/LoRa/RAK4200/Hardware-Specification/RAK4200_Module_Specifications_V1.4.pdf +LoRa LoRaWAN RAK4200 +0 +20 +20 +RF_Module +RFDigital_RFD77101 +RFDigital RFD77101 Simblee +RFDigital RFD77101 Simblee +0 +45 +45 +RF_Module +RN42 +Class 2 Bluetooth Module with on-board antenna +Bluetooth Module +0 +36 +33 +RF_Module +RN42N +Class 2 Bluetooth Module without antenna +Bluetooth Module +0 +39 +36 +RF_Module +RN2483 +Low-Power Long Range LoRa Transceiver Module +rf module lora lorawan +0 +47 +47 +RF_Module +Raytac_MDBT42Q +Multiprotocol radio SoC module https://www.raytac.com/download/index.php?index_id=27 +wireless 2.4 GHz Bluetooth ble zigbee 802.15.4 thread nordic raytac nrf52832 +0 +41 +41 +RF_Module +Raytac_MDBT50Q +Multiprotocol radio SoC module https://www.raytac.com/download/index.php?index_id=43 +wireless 2.4 GHz Bluetooth ble zigbee 802.15.4 thread nordic raytac nrf52840 nrf52833 +0 +61 +61 +RF_Module +ST-SiP-LGA-86-11x7.3mm +STM32WB5MMG Module, LGA86L 11x7.3 +bluetooth bluetooth5 bluetooth5.0 802.15.4 zigbee thread module stm32 rf +0 +86 +86 +RF_Module +ST_SPBTLE +Bluetooth Low Energy Module +ble module st bluetooth +0 +11 +11 +RF_Module +TD1205 +https://github.com/Telecom-Design/Documentation_TD_RF_Module/blob/master/TD1205%20Datasheet.pdf +SIGFOX Module +0 +9 +9 +RF_Module +TD1208 +https://github.com/Telecom-Design/Documentation_TD_RF_Module/blob/master/TD1208%20Datasheet.pdf +SIGFOX Module +0 +25 +25 +RF_Module +Taiyo-Yuden_EYSGJNZWY +Taiyo Yuden NRF51822 Module Bluetooth https://www.yuden.co.jp/wireless_module/document/datareport2/en/TY_BLE_EYSGJNZ_DataReport_V1_9_20180530E.pdf +Taiyo Yuden NRF51822 Module Bluetooth +0 +30 +28 +RF_Module +ZETA-433-SO_SMD +RF transceiver SMD style https://www.rfsolutions.co.uk/downloads/1456219226DS-ZETA.pdf +RF transceiver SMD style +0 +12 +12 +RF_Module +ZETA-433-SO_THT +RF transceiver THT style https://www.rfsolutions.co.uk/downloads/1456219226DS-ZETA.pdf +RF transceiver SMD style +0 +12 +12 +RF_Module +nRF24L01_Breakout +nRF24L01 breakout board +nRF24L01 adapter breakout +0 +8 +8 +RF_Shielding +Laird_Technologies_97-2002_25.40x25.40mm +Laird Technologies 97-2002 EZ PEEL Shielding Cabinet One Piece SMD 25.40x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +8 +1 +RF_Shielding +Laird_Technologies_97-2003_12.70x13.37mm +Laird Technologies 97-2003 EZ PEEL Shielding Cabinet One Piece SMD 12.70x13.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +8 +1 +RF_Shielding +Laird_Technologies_BMI-S-101_13.66x12.70mm +Laird Technologies BMI-S-101 Shielding Cabinet One Piece SMD 13.66x12.70mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-102_16.50x16.50mm +Laird Technologies BMI-S-102 Shielding Cabinet One Piece SMD 16.50x16.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-103_26.21x26.21mm +Laird Technologies BMI-S-103 Shielding Cabinet One Piece SMD 26.21x26.21mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +24 +1 +RF_Shielding +Laird_Technologies_BMI-S-104_32.00x32.00mm +Laird Technologies BMI-S-104 Shielding Cabinet One Piece SMD 32.00x32.00mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-105_38.10x25.40mm +Laird Technologies BMI-S-105 Shielding Cabinet One Piece SMD 38.10x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-106_36.83x33.68mm +Laird Technologies BMI-S-106 Shielding Cabinet One Piece SMD 36.83x33.68mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-107_44.37x44.37mm +Laird Technologies BMI-S-107 Shielding Cabinet One Piece SMD 44.37x44.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +36 +1 +RF_Shielding +Laird_Technologies_BMI-S-201-F_13.66x12.70mm +Laird Technologies BMI-S-201-F Shielding Cabinet Two Piece SMD 13.66x12.70mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-202-F_16.50x16.50mm +Laird Technologies BMI-S-202-F Shielding Cabinet Two Piece SMD 16.50x16.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-203-F_26.21x26.21mm +Laird Technologies BMI-S-203-F Shielding Cabinet Two Piece SMD 26.21x26.21mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +24 +1 +RF_Shielding +Laird_Technologies_BMI-S-204-F_32.00x32.00mm +Laird Technologies BMI-S-204-F Shielding Cabinet Two Piece SMD 32.00x32.00mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-205-F_38.10x25.40mm +Laird Technologies BMI-S-205-F Shielding Cabinet Two Piece SMD 38.10x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-206-F_36.83x33.68mm +Laird Technologies BMI-S-206-F Shielding Cabinet Two Piece SMD 36.83x33.68mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-207-F_44.37x44.37mm +Laird Technologies BMI-S-207-F Shielding Cabinet Two Piece SMD 44.37x44.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +36 +1 +RF_Shielding +Laird_Technologies_BMI-S-208-F_39.60x39.60mm +Laird Technologies BMI-S-208-F Shielding Cabinet Two Piece SMD 39.60x39.60mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +32 +1 +RF_Shielding +Laird_Technologies_BMI-S-209-F_29.36x18.50mm +Laird Technologies BMI-S-209-F Shielding Cabinet Two Piece SMD 29.36x18.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +20 +1 +RF_Shielding +Laird_Technologies_BMI-S-210-F_44.00x30.50mm +Laird Technologies BMI-S-210-F Shielding Cabinet Two Piece SMD 44.00x30.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +32 +1 +RF_Shielding +Laird_Technologies_BMI-S-230-F_50.8x38.1mm +Laird Technologies BMI-S-230-F Shielding Cabinet Two Piece SMD 50.8x38.1mm +Shielding Cabinet +0 +36 +1 +RF_Shielding +Wuerth_36103205_20x20mm +WE-SHC Shielding Cabinet SMD 20x20mm +Shielding Cabinet +0 +20 +1 +RF_Shielding +Wuerth_36103255_25x25mm +WE-SHC Shielding Cabinet SMD 25x25mm +Shielding Cabinet +0 +24 +1 +RF_Shielding +Wuerth_36103305_30x30mm +WE-SHC Shielding Cabinet SMD 30x30mm +Shielding Cabinet +0 +28 +1 +RF_Shielding +Wuerth_36103505_50x50mm +WE-SHC Shielding Cabinet SMD 50x50mm +Shielding Cabinet +0 +44 +1 +RF_Shielding +Wuerth_36103605_60x60mm +WE-SHC Shielding Cabinet SMD 60x60mm +Shielding Cabinet +0 +52 +1 +RF_Shielding +Wuerth_36503205_20x20mm +WE-SHC Shielding Cabinet THT 21x21mm +Shielding Cabinet +0 +16 +1 +RF_Shielding +Wuerth_36503255_25x25mm +WE-SHC Shielding Cabinet THT 26x26mm +Shielding Cabinet +0 +20 +1 +RF_Shielding +Wuerth_36503305_30x30mm +WE-SHC Shielding Cabinet THT 31x31mm +Shielding Cabinet +0 +24 +1 +RF_Shielding +Wuerth_36503505_50x50mm +WE-SHC Shielding Cabinet THT 51x51mm +Shielding Cabinet +0 +40 +1 +RF_Shielding +Wuerth_36503605_60x60mm +WE-SHC Shielding Cabinet THT 61x61mm +Shielding Cabinet +0 +48 +1 +RF_WiFi +USR-C322 +https://www.usriot.com/download/WIFI/USR-C322-Hardware-Manual_V1.2.01.pdf +WiFi IEEE802.11 b/g/n +0 +44 +44 +Relay_SMD +Relay_2P2T_10x6mm_TE_IMxxG +Signal Relay, 10x6mm, 2 Form C, Gull Wings, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7F108-98001%7FZ.1%7Fpdf%7FEnglish%7FENG_DS_108-98001_Z.1.pdf +TE IM-Series Relay DPDT Form C +0 +8 +8 +Relay_SMD +Relay_DPDT_AXICOM_IMSeries_JLeg +http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Specification+Or+Standard%7F108-98001%7FW5%7Fpdf%7FEnglish%7FENG_SS_108-98001_W5.pdf +AXICOM IM-Series Relay J JLeg +0 +8 +8 +Relay_SMD +Relay_DPDT_FRT5_SMD +IM Signal Relay DPDT FRT5 narrow footprint, SMD version of package +Relay DPDT IM-relay FRT5 +0 +10 +10 +Relay_SMD +Relay_DPDT_Kemet_EE2_NU +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double coil latching surface mount SMD +0 +8 +8 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUH +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double coil latching surface mount SMD +0 +8 +8 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUH_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD +0 +10 +10 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUX_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD +0 +10 +10 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUX_NKX +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double coil latching surface mount SMD +0 +8 +8 +Relay_SMD +Relay_DPDT_Kemet_EE2_NU_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD +0 +10 +10 +Relay_SMD +Relay_DPDT_Omron_G6H-2F +package for Omron G6H-2F relais, see http://cdn-reichelt.de/documents/datenblatt/C300/G6H%23OMR.pdf +Omron G6H-2F relais +0 +10 +10 +Relay_SMD +Relay_DPDT_Omron_G6K-2F +Omron G6K-2F relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2F relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6K-2F-Y +Omron G6K-2F-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2F-Y relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6K-2G +Omron G6K-2G relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2G relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6K-2G-Y +Omron G6K-2G-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2G-Y relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6S-2F +Relay Omron G6S-2F, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6S-2F +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6S-2G +Relay Omron G6S-2G, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6S-2G +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6SK-2F +Relay Omron G6SK-2F, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6SK-2F +0 +10 +10 +Relay_SMD +Relay_DPDT_Omron_G6SK-2G +Relay Omron G6SK-2G, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6SK-2G +0 +10 +10 +Relay_SMD +Relay_Fujitsu_FTR-B3S +https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-b3.pdf +Fujitsh FTR B3S B3SA Relay J JLeg +0 +8 +8 +Relay_SMD +Relay_SPDT_AXICOM_HF3Series_50ohms_Pitch1.27mm +hiqsdr.com/images/3/3e/Axicom-HF3.pdf +AXICOM HF3-Series Relay Pitch 1.27mm 50ohms +0 +16 +16 +Relay_SMD +Relay_SPDT_AXICOM_HF3Series_75ohms_Pitch1.27mm +hiqsdr.com/images/3/3e/Axicom-HF3.pdf +AXICOM HF3-Series Relay Pitch 1.27mm 75ohm +0 +16 +16 +Relay_THT +Relay_1-Form-A_Schrack-RYII_RM5mm +Relay, 1-Form-A, Schrack-RYII, RM5mm, SPST-NO +Relay 1-Form-A Schrack-RYII RM5mm SPST-NO +0 +4 +4 +Relay_THT +Relay_1-Form-B_Schrack-RYII_RM5mm +Relay, 1-Form-B, Schrack-RYII, RM5mm, SPST-NC +Relay 1-Form-B Schrack-RYII RM5mm SPST-NC +0 +4 +4 +Relay_THT +Relay_1-Form-C_Schrack-RYII_RM3.2mm +Relay, 1-Form-C, Schrack-RYII, RM3.2mm, SPDT +Relay 1-Form-C Schrack-RYII RM3.2mm SPDT +0 +5 +5 +Relay_THT +Relay_3PST_COTO_3650 +Low thermal EMF 3PST-NO reed relay, 150V 0.25A, similar to 3660 but with independent shield, https://cotorelay.com/wp-content/uploads/2014/09/3600_series_reed_relay_datasheet.pdf +reed relay low thermal emf +0 +9 +9 +Relay_THT +Relay_3PST_COTO_3660 +Low thermal EMF 3PST-NO reed relay, 150V 0.25A, similar to 3650 but with shared shield/contact, https://cotorelay.com/wp-content/uploads/2014/09/3600_series_reed_relay_datasheet.pdf +reed relay low thermal emf +0 +8 +8 +Relay_THT +Relay_DPDT_AXICOM_IMSeries_Pitch3.2mm +AXICOM IM-Series Relays, DPDR, Pitch 3.2mm, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Specification+Or+Standard%7F108-98001%7FV%7Fpdf%7FEnglish%7FENG_SS_108-98001_V_IM_0614_v1.pdf%7F4-1462039-1 +AXICOM IM-Series Relay DPDR Pitch 3.2mm +0 +8 +8 +Relay_THT +Relay_DPDT_AXICOM_IMSeries_Pitch5.08mm +AXICOM IM-Series Relays, DPDR, Pitch 5.08 +AXICOM IM-Series Relay DPDR Pitch 5.08 +0 +8 +8 +Relay_THT +Relay_DPDT_FRT5 +IM Signal Relay DPDT FRT5 narrow footprint +Relay DPDT IM-relay FRT5 +0 +10 +10 +Relay_THT +Relay_DPDT_Finder_30.22 +Finder 32.21-x000 Relay, DPDT, https://gfinder.findernet.com/public/attachments/30/EN/S30EN.pdf +AXICOM IM-Series Relay SPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Finder_40.52 +DPDT relay, Finder 40.52, 8A, 250V, body size 29x12.4mm, height 25mm, pitch 5x7.5mm, https://cdn.findernet.com/app/uploads/S40EN.pdf +2-Form-C +0 +8 +8 +Relay_THT +Relay_DPDT_Fujitsu_FTR-F1C +https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-f1.pdf +relay dpdt fujitsu tht +0 +8 +8 +Relay_THT +Relay_DPDT_Hongfa_HF115F-2Z-x4 +Hongfa DPDT power relay, 8A, 250VAC, body size 29x127.x15.7mm, https://source.hongfa.com//pdf/web/viewer.html?file=/Uploads/Product/PDF/HF115F_I_en.pdf +2-Form-C +0 +8 +8 +Relay_THT +Relay_DPDT_Kemet_EC2 +Kemet signal relay, DPDT, non-latching, single coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT non single coil latching through hole THT +0 +8 +8 +Relay_THT +Relay_DPDT_Kemet_EC2_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching through hole THT +0 +10 +10 +Relay_THT +Relay_DPDT_Omron_G2RL-2 +Omron Relay, DPDT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G5V-2 +http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v2.pdf +Omron G5V-2 Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6A +DPDT signal relay, Omron G6A/G6AU, 20x9.9x8.2mm https://omronfs.omron.com/en_US/ecb/products/pdf/en-g6a.pdf +Omron G6A Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6AK +DPDT signal relay, double-winding latching, Omron G6AK, 20x9.9x8.2mm https://omronfs.omron.com/en_US/ecb/products/pdf/en-g6a.pdf +Omron G6AK Relay DPDT +0 +10 +10 +Relay_THT +Relay_DPDT_Omron_G6H-2 +Omron relay G6H-2, see http://cdn-reichelt.de/documents/datenblatt/C300/G6H%23OMR.pdf +Omron relay G6H-2 +0 +10 +10 +Relay_THT +Relay_DPDT_Omron_G6K-2P +Omron G6K-2P relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2P relay +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6K-2P-Y +Omron G6K-2P-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2P-Y relay +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6S-2 +Relay Omron G6S-2, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6S-2 +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6SK-2 +Relay Omron G6SK-2, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6SK-2 +0 +10 +10 +Relay_THT +Relay_DPDT_Panasonic_JW2 +Panasonic Relay DPDT, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok +Panasonic Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Schrack-RT2-FormC-Dual-Coil_RM5mm +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FRT2_bistable%7F1116%7Fpdf%7FEnglish%7FENG_DS_RT2_bistable_1116.pdf%7F1-1415537-8 +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Relay +0 +9 +9 +Relay_THT +Relay_DPDT_Schrack-RT2-FormC_RM5mm +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Relay +0 +8 +8 +Relay_THT +Relay_DPST_COTO_3602 +Low thermal EMF DPST-NO reed relay, 150V 0.25A, https://cotorelay.com/wp-content/uploads/2014/09/3600_series_reed_relay_datasheet.pdf +reed relay low thermal emf +0 +7 +7 +Relay_THT +Relay_DPST_Fujitsu_FTR-F1A +https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-f1.pdf +relay dpst fujitsu tht +0 +6 +6 +Relay_THT +Relay_DPST_Omron_G2RL-2A +Omron Relay, DPST, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay DPST +0 +6 +6 +Relay_THT +Relay_DPST_Schrack-RT2-FormA_RM5mm +Relay DPST Schrack-RT2 RM5mm 16A 250V AC Form A http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN +Relay DPST Schrack-RT2 RM5mm 16A 250V AC Relay +0 +6 +6 +Relay_THT +Relay_NCR_HHG1D-1 +NCR solid state relay 1A, 2A, 3A, 4A, https://ncr.hk/uploads/Relays/Solid_State_Relays/HHG1D-1.pdf +ssr +0 +4 +4 +Relay_THT +Relay_SPDT_Finder_32.21-x000 +Finder 32.21-x000 Relay, SPDT, https://gfinder.findernet.com/assets/Series/355/S32EN.pdf +AXICOM IM-Series Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_34.51_Horizontal +Relay SPDT, Finder Type34.51, horizontal form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf +Relay SPDT Finder +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_34.51_Vertical +Relay SPDT, Finder Type34.51, vertical/standing form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf +Relay SPDT Finder +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_36.11 +FINDER 36.11, SPDT relay, 10A, https://cdn.findernet.com/app/uploads/S36EN.pdf +spdt relay +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.11 +Relay SPDT Finder 40.11, 10/16A, 250V, body size 28.5x26.3mm, height 12.7mm, https://web.archive.org/web/20170816081018if_/https://www.finder-relais.net/de/finder-relais-serie-40.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.31 +DPDT relay, Finder 40.52, 10/12A, 250V, body size 29x12.4mm, height 25mm, pitch 3.5x7.5mm, https://cdn.findernet.com/app/uploads/S40EN.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.41 +Relay SPDT Finder 40.11, 10A, 250V, body size 28.5x12.3mm, height 26.3mm, https://web.archive.org/web/20170816081018if_/https://www.finder-relais.net/de/finder-relais-serie-40.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.51 +SPDT relay, Finder 40.52, 10/12A, 250V, body size 29x12.4mm, height 25mm, pitch 5x7.5mm, https://cdn.findernet.com/app/uploads/S40EN.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Fujitsu_FTR-LYCA005x_FormC_Vertical +Relay, SPDT Form C, vertical mount, 6A, 5-60V, https://www.fujitsu.com/sg/imagesgig5/ftr-ly.pdf +relay SPDT form c vertical +0 +5 +5 +Relay_THT +Relay_SPDT_HJR-4102 +IM Signal Relay SPDT HJR-4102 +Relay SPDT IM-relay HJR-4102 +0 +6 +6 +Relay_THT +Relay_SPDT_Hongfa_HF3F-L-xx-1ZL1T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 10A switching current, Form-C https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-c 1-coil +0 +5 +5 +Relay_THT +Relay_SPDT_Hongfa_HF3F-L-xx-1ZL2T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 10A switching current, Form-C https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-c 2-coil +0 +6 +6 +Relay_THT +Relay_SPDT_Hongfa_HF3F-L-xx-1ZL2T-R +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 10A switching current, reverse polarity, Form-C https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-c 2-coil reverse-polarity +0 +6 +6 +Relay_THT +Relay_SPDT_HsinDa_Y14 +http://www.hsinda.com.tw/upload/file/Y14-20200430135145.pdf +Relay Y14 +0 +6 +6 +Relay_THT +Relay_SPDT_Omron-G5LE-1 +Omron Relay SPDT, http://www.omron.com/ecb/products/pdf/en-g5le.pdf +Omron Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_Omron-G5Q-1 +Relay SPDT Omron Serie G5Q, http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5q.pdf +Relay SPDT Omron Serie G5Q +0 +5 +5 +Relay_THT +Relay_SPDT_Omron_G2RL-1 +Omron Relay, SPDT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_Omron_G2RL-1-E +Omron Relay, SPDT, High Capacity, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPDT High Capacity +0 +8 +5 +Relay_THT +Relay_SPDT_Omron_G5V-1 +Relay Omron G5V-1, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v_1.pdf +Relay Omron G5V-1 +0 +6 +6 +Relay_THT +Relay_SPDT_Omron_G6E +Relay SPDT Omron Serie G6E +Relay SPDT Omron Serie G6E 1x um +0 +5 +5 +Relay_THT +Relay_SPDT_Omron_G6EK +Relay SPDT Omron Serie G6EK, see http://www.logosfoundation.org/instrum_gwr/pi/Omron_G6E_134P.pdf +Relay SPDT Omron Serie G6EK +0 +6 +6 +Relay_THT +Relay_SPDT_Panasonic_JW1_FormC +Panasonic Relay SPDT, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok +Panasonic Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_PotterBrumfield_T9AP5D52_12V30A +Relay SPDT Potter&Brumfield T9AP5D52 12V 30A 1xUn Connector Fast ON Only Dummy for Space NO Pads +Relay SPDT Potter&Brumfield T9AP5D52 12V 30A 1xUm Connector Fast ON Flachsteckeranschluss Only Dummy for Space NO Pads +0 +0 +0 +Relay_THT +Relay_SPDT_RAYEX-L90 +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90 SPDT +0 +6 +6 +Relay_THT +Relay_SPDT_RAYEX-L90S +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90S SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_SANYOU_SRD_Series_Form_C +relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf +relay Sanyu SRD form C +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RP-II-1-16A-FormC_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Relay +0 +8 +5 +Relay_THT +Relay_SPDT_Schrack-RP-II-1-FormC_RM3.5mm +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RP-II-1-FormC_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RT1-16A-FormC_RM5mm +Relay SPST Schrack-RT1 RM5mm 16A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM5mm 16A 250V AC Relay +0 +8 +5 +Relay_THT +Relay_SPDT_Schrack-RT1-FormC_RM3.5mm +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RT1-FormC_RM5mm +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_StandexMeder_SIL_Form1C +Standex-Meder SIL-relais, Form 1C, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf +Standex Meder SIL reed relais +0 +5 +5 +Relay_THT +Relay_SPST-NO_Fujitsu_FTR-LYAA005x_FormA_Vertical +Relay, SPST-NO Form A, vertical mount, 6A, 5-60V, https://www.fujitsu.com/sg/imagesgig5/ftr-ly.pdf +relay SPST-NO form A vertical +0 +4 +4 +Relay_THT +Relay_SPST_Finder_32.21-x300 +Finder 32.21-x300 Relay, SPST, https://gfinder.findernet.com/assets/Series/355/S32EN.pdf +Finder 32.21-x300 Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Hongfa_HF3F-L-xx-1HL1T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 15A switching current, Form-A https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-a 1-coil +0 +4 +4 +Relay_THT +Relay_SPST_Hongfa_HF3F-L-xx-1HL2T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 15A switching current, Form-A https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-a 2-coil +0 +5 +5 +Relay_THT +Relay_SPST_Hongfa_HF3F-L-xx-1HL2T-R +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 15A switching current, Form-A, reverse polarity, https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-a 2-coil reverse-polarity +0 +5 +5 +Relay_THT +Relay_SPST_Omron-G5Q-1A +Relay SPST-NO Omron Serie G5Q, http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5q.pdf +Relay SPST-NO Omron Serie G5Q +0 +4 +4 +Relay_THT +Relay_SPST_Omron_G2RL-1A +Omron Relay, SPST, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Omron_G2RL-1A-E +Omron Relay, SPST, High Capacity, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPST High Capacity +0 +6 +4 +Relay_THT +Relay_SPST_Omron_G5NB +PCB Power Relay, SPST-NO, 7A (250 VAC), 5A (30 VDC), 20.5x7.2x15.3mm max +Omron G5NB Relay SPST-NO +0 +4 +4 +Relay_THT +Relay_SPST_Omron_G5PZ +Relay Omron G5PZ, see https://components.omron.com/us-en/sites/components.omron.com.us/files/datasheet_pdf/K320-E1.pdf +Relay Omron G5PZ +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_ADW11 +Panasonic power relay, SPST, latching, 10x24mm, 18.8mm height, https://api.pim.na.industrial.panasonic.com/file_stream/main/fileversion/270 +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_ALFG_FormA +Panasonic Relay SPST, https://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_lfg.pdf +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_ALFG_FormA_CircularHoles +Panasonic Relay SPST, https://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_lfg.pdf +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_JW1_FormA +Panasonic Relay SPST, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_PotterBrumfield_T9AP1D52_12V30A +Relay SPST Potter&Brumfield T9AP1D52 12V 30A 1xEin Connector Fast ON Only Dummy for Space NO Pads +Relau SPST Potter&Brumfield T9AP1D52 12V 30A 1xEin Connector Fast ON Flachsteckeranschluss Only Dummy for Space NO Pads +0 +0 +0 +Relay_THT +Relay_SPST_RAYEX-L90A +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90A SPST NO +0 +5 +5 +Relay_THT +Relay_SPST_RAYEX-L90AS +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90AS SPST NO +0 +4 +4 +Relay_THT +Relay_SPST_RAYEX-L90B +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90B SPST NC +0 +5 +5 +Relay_THT +Relay_SPST_RAYEX-L90BS +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90BS SPST NC +0 +4 +4 +Relay_THT +Relay_SPST_SANYOU_SRD_Series_Form_A +relay Sanyou SRD series Form A http://www.sanyourelay.ca/public/products/pdf/SRD.pdf +relay Sanyu SRD form A +0 +4 +4 +Relay_THT +Relay_SPST_SANYOU_SRD_Series_Form_B +relay Sanyou SRD series Form B opener http://www.sanyourelay.ca/public/products/pdf/SRD.pdf +relay Sanyu SRD form B opener +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RP-II-1-16A-FormA_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Form A http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Relay +0 +6 +4 +Relay_THT +Relay_SPST_Schrack-RP-II-1-FormA_RM3.5mm +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Form A +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RP-II-1-FormA_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Form A http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RP3SL-1coil_RM5mm +Relay SPST Schrack-RP3SL, 1-coil-version, RM5mm 16A 250V AC Form A http://www.alliedelec.com/m/d/543c6bed18bf23a83ae5238947033ee0.pdf +Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Relay +0 +6 +4 +Relay_THT +Relay_SPST_Schrack-RP3SL_RM5mm +Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Form A http://www.alliedelec.com/m/d/543c6bed18bf23a83ae5238947033ee0.pdf +Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Relay +0 +7 +5 +Relay_THT +Relay_SPST_Schrack-RT1-16A-FormA_RM5mm +Relay SPST Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN +Relay SPST Schrack-RT2 RM5mm 16A 250V AC Relay +0 +6 +4 +Relay_THT +Relay_SPST_Schrack-RT1-FormA_RM3.5mm +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Form A +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RT1-FormA_RM5mm +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_StandexMeder_MS_Form1AB +Standex-Meder MS SIL-relais, Form 1A/1B, see https://standexelectronics.com/de/produkte/ms-reed-relais/ +Standex Meder MS SIL reed relais +0 +4 +4 +Relay_THT +Relay_SPST_StandexMeder_SIL_Form1A +Standex-Meder SIL-relais, Form 1A, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf +Standex Meder SIL reed relais +0 +4 +4 +Relay_THT +Relay_SPST_StandexMeder_SIL_Form1B +Standex-Meder SIL-relais, Form 1B, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf +Standex Meder SIL reed relais +0 +4 +4 +Relay_THT +Relay_SPST_TE_PCH-1xxx2M +Miniature PCB Relay, PCH Series, 1 Form A (NO), SPST http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FPCH_series_relay_data_sheet_E%7F1215%7Fpdf%7FEnglish%7FENG_DS_PCH_series_relay_data_sheet_E_1215.pdf +Relay SPST NO +0 +4 +4 +Relay_THT +Relay_SPST_TE_PCN-1xxD3MHZ +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1461491%7FG2%7Fpdf%7FEnglish%7FENG_CD_1461491_G2.pdf%7F3-1461491-0 +SPST relay slim +0 +4 +4 +Relay_THT +Relay_SPST_Zettler-AZSR131 +American Zettler RELAY EV CHRG SOLAR SPST 35A 12V, https://zettlerelectronics.com/products/AZSR131.pdf +SPST +0 +4 +4 +Relay_THT +Relay_Socket_3PDT_Omron_PLE11-0 +29mm Dia, round mounting socket, 10A, 2kV AC / minute, 1e3Mohm, https://www.omron.com.tw/data_pdf/cat/common_sockets_ds_e_6_1_csm1819.pdf?#page=27 +tube type relay +0 +11 +11 +Relay_THT +Relay_Socket_4PDT_Omron_PY14-02 +21.4x25.8mm, 4Pole mounting socket, 3A, 1.5kV AC / minute, 1e2Mohm, https://www.omron.com.tw/data_pdf/cat/common_sockets_ds_e_6_1_csm1819.pdf?#page=19 +relay socket +0 +14 +14 +Relay_THT +Relay_Socket_DPDT_Finder_96.12 +DPDT relay socket, 15A max 10A per contact, 2kV AC Isolation, https://gfinder.findernet.com/public/attachments/56/DE/S56DE.pdf +finder relay socket 96.12 56.32 +0 +8 +8 +Relay_THT +Relay_Socket_DPDT_Omron_PLE08-0 +29mm Dia, round mounting socket, 10A, 2kV AC / minute, 1e3Mohm, https://www.omron.com.tw/data_pdf/cat/common_sockets_ds_e_6_1_csm1819.pdf?#page=27 +tube type relay +0 +8 +8 +Relay_THT +Relay_StandexMeder_DIP_HighProfile +package for Standex Meder DIP reed relay series, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_DIP.pdf +DIL DIP PDIP 2.54mm 7.62mm 300mil reed relay +0 +8 +8 +Relay_THT +Relay_StandexMeder_DIP_LowProfile +package for Standex Meder DIP reed relay series, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_DIP.pdf +DIL DIP PDIP 2.54mm 7.62mm 300mil reed relay +0 +8 +8 +Relay_THT +Relay_StandexMeder_UMS +Standex-Meder SIL-relais, UMS, see http://cdn-reichelt.de/documents/datenblatt/C300/UMS05_1A80_75L_DB.pdf +Standex Meder SIL reed relais +0 +4 +4 +Resistor_SMD +R_0201_0603Metric +Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +resistor +0 +4 +2 +Resistor_SMD +R_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +4 +2 +Resistor_SMD +R_0402_1005Metric +Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0402_1005Metric_Pad0.72x0.64mm_HandSolder +Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0603_1608Metric +Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0603_1608Metric_Pad0.98x0.95mm_HandSolder +Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0612_1632Metric +Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0612_1632Metric_Pad1.18x3.40mm_HandSolder +Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0805_2012Metric +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0805_2012Metric_Pad1.20x1.40mm_HandSolder +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0815_2038Metric +Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0815_2038Metric_Pad1.20x4.05mm_HandSolder +Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_01005_0402Metric +Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +resistor +0 +4 +2 +Resistor_SMD +R_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +4 +2 +Resistor_SMD +R_1020_2550Metric +Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1020_2550Metric_Pad1.33x5.20mm_HandSolder +Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1206_3216Metric +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1206_3216Metric_Pad1.30x1.75mm_HandSolder +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1210_3225Metric +Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1210_3225Metric_Pad1.30x2.65mm_HandSolder +Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1218_3246Metric +Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1218_3246Metric_Pad1.22x4.75mm_HandSolder +Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1812_4532Metric +Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_2010_5025Metric +Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_2010_5025Metric_Pad1.40x2.65mm_HandSolder +Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_2512_6332Metric +Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_2512_6332Metric_Pad1.40x3.35mm_HandSolder +Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_2816_7142Metric +Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_2816_7142Metric_Pad3.20x4.45mm_HandSolder +Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_4020_10251Metric +Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_4020_10251Metric_Pad1.65x5.30mm_HandSolder +Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_Array_Concave_2x0603 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Concave_4x0402 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA04P (see cra04p.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Concave_4x0603 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_2x0402 +Chip Resistor Network, ROHM MNR02 (see mnr_g.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_2x0603 +Chip Resistor Network, ROHM MNR12 (see mnr_g.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_2x0606 +Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_2x1206 +Chip Resistor Network, ROHM MNR32 (see mnr_g.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_4x0402 +Chip Resistor Network, ROHM MNR04 (see mnr_g.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_4x0603 +Chip Resistor Network, ROHM MNR14 (see mnr_g.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_4x0612 +Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_4x1206 +Chip Resistor Network, ROHM MNR34 (see mnr_g.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_5x0603 +Chip Resistor Network, ROHM MNR15 (see mnr_g.pdf) +resistor array +0 +10 +10 +Resistor_SMD +R_Array_Convex_5x1206 +Chip Resistor Network, ROHM MNR35 (see mnr_g.pdf) +resistor array +0 +10 +10 +Resistor_SMD +R_Array_Convex_8x0602 +Chip Resistor Network, ROHM MNR18 (see mnr_g.pdf) +resistor array +0 +16 +16 +Resistor_SMD +R_Cat16-2 +SMT resistor net, Bourns CAT16 series, 2 way +SMT resistor net Bourns CAT16 series 2 way +0 +4 +4 +Resistor_SMD +R_Cat16-4 +SMT resistor net, Bourns CAT16 series, 4 way +SMT resistor net Bourns CAT16 series 4 way +0 +8 +8 +Resistor_SMD +R_Cat16-8 +SMT resistor net, Bourns CAT16 series, 8 way +SMT resistor net Bourns CAT16 series 8 way +0 +16 +16 +Resistor_SMD +R_MELF_MMB-0207 +Resistor, MELF, MMB-0207, http://www.vishay.com/docs/28713/melfprof.pdf +MELF Resistor +0 +2 +2 +Resistor_SMD +R_MicroMELF_MMU-0102 +Resistor, MicroMELF, MMU-0102, http://www.vishay.com/docs/28713/melfprof.pdf +MicroMELF Resistor +0 +2 +2 +Resistor_SMD +R_MiniMELF_MMA-0204 +Resistor, MiniMELF, MMA-0204, http://www.vishay.com/docs/28713/melfprof.pdf +MiniMELF Resistor +0 +2 +2 +Resistor_SMD +R_Shunt_Isabellenhuette_BVR4026 +4-Wire Shunt, SMD 4026, https://www.isabellenhuette.de/fileadmin/Daten/Praezisionswiderstaende/Datenblaetter/BVR.PDF +kelvin-connection +0 +4 +4 +Resistor_SMD +R_Shunt_Ohmite_LVK12 +4 contact shunt resistor +shunt resistor 4 contacts +0 +4 +4 +Resistor_SMD +R_Shunt_Ohmite_LVK20 +4 contacts shunt resistor, https://www.ohmite.com/assets/docs/res_lvk.pdf +4 contacts resistor smd +0 +4 +4 +Resistor_SMD +R_Shunt_Ohmite_LVK24 +4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf +4 contacts resistor smd +0 +4 +4 +Resistor_SMD +R_Shunt_Ohmite_LVK25 +4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf +4 contacts resistor smd +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSK2512_6332Metric_T1.19mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 1.19mm, 5 to 200 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) +resistor shunt WSK2512 +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSK2512_6332Metric_T2.21mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.21mm, 1 to 4.9 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) +resistor shunt WSK2512 +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSK2512_6332Metric_T2.66mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.66mm, 0.5 to 0.99 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) +resistor shunt WSK2512 +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSKW0612 +https://www.vishay.com/docs/30332/wskw0612.pdf +4-Terminal SMD Shunt +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSR2_WSR3 +Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf +SMD Shunt Resistor +0 +2 +2 +Resistor_SMD +R_Shunt_Vishay_WSR2_WSR3_KelvinConnection +Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf +SMD Shunt Resistor +0 +4 +2 +Resistor_THT +R_Array_SIP4 +4-pin Resistor SIP pack +R +0 +4 +4 +Resistor_THT +R_Array_SIP5 +5-pin Resistor SIP pack +R +0 +5 +5 +Resistor_THT +R_Array_SIP6 +6-pin Resistor SIP pack +R +0 +6 +6 +Resistor_THT +R_Array_SIP7 +7-pin Resistor SIP pack +R +0 +7 +7 +Resistor_THT +R_Array_SIP8 +8-pin Resistor SIP pack +R +0 +8 +8 +Resistor_THT +R_Array_SIP9 +9-pin Resistor SIP pack +R +0 +9 +9 +Resistor_THT +R_Array_SIP10 +10-pin Resistor SIP pack +R +0 +10 +10 +Resistor_THT +R_Array_SIP11 +11-pin Resistor SIP pack +R +0 +11 +11 +Resistor_THT +R_Array_SIP12 +12-pin Resistor SIP pack +R +0 +12 +12 +Resistor_THT +R_Array_SIP13 +13-pin Resistor SIP pack +R +0 +13 +13 +Resistor_THT +R_Array_SIP14 +14-pin Resistor SIP pack +R +0 +14 +14 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=1.9mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 1.9mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=2.54mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 2.54mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=5.08mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 5.08mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 5.08mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 5.08mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P5.08mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=5.08mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 5.08mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 5.08mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P5.08mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=5.08mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 5.08mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P22.40mm +Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P25.40mm +Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W6.4mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W6.4mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W6.4mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W9.0mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W9.0mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L50.0mm_W9.0mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L50.0mm_W9.0mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P66.04mm +Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P71.12mm +Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L75.0mm_W9.0mm_P81.28mm +Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L75.0mm_W9.0mm_P86.36mm +Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm +Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm +0 +4 +4 +Resistor_THT +R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm +0 +2 +2 +Resistor_THT +R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm +0 +2 +2 +Resistor_THT +R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm +0 +2 +2 +Resistor_THT +R_Box_L8.4mm_W2.5mm_P5.08mm +Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf +Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm +0 +2 +2 +Resistor_THT +R_Box_L13.0mm_W4.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm +0 +2 +2 +Resistor_THT +R_Box_L14.0mm_W5.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm +0 +2 +2 +Resistor_THT +R_Box_L26.0mm_W5.0mm_P20.00mm +Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L7.0mm_W8.0mm_Px2.40mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.40*2.30mm^2, 7W, length*width=7*8mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.40*2.30mm^2 7W length 7mm width 8mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L9.0mm_W10.0mm_Px2.70mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.70*2.30mm^2, 17W, length*width=9*10mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.70*2.30mm^2 17W length 9mm width 10mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L11.0mm_W7.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 2W, length*width=11.0*7.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 2W length 11.0mm width 7.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L12.0mm_W8.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L13.0mm_W9.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L16.1mm_W9.0mm_P7.37mm +Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm +0 +2 +2 +Rotary_Encoder +RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm +Alps rotary encoder, EC12E... with switch, vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E... with switch, vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC11E_Vertical_H20mm +Alps rotary encoder, EC12E... without switch (pins are dummy), vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +4 +Rotary_Encoder +RotaryEncoder_Alps_EC11E_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E... without switch (pins are dummy), vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +4 +Rotary_Encoder +RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm +Alps rotary encoder, EC12E... with switch, vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html & http://cdn-reichelt.de/documents/datenblatt/F100/402097STEC12E08.PDF +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E... with switch, vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html & http://cdn-reichelt.de/documents/datenblatt/F100/402097STEC12E08.PDF +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC12E_Vertical_H20mm +Alps rotary encoder, EC12E..., vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Alps_EC12E_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E..., vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC09-2xxxF-Nxxxx +Bourns rotary encoder, PEC09, without switch, horizontal shaft, https://www.bourns.com/products/encoders/contacting-encoders/product/PEC09 +rotary encoder +0 +3 +3 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC09-2xxxF-Sxxxx +Bourns rotary encoder, PEC09, with switch, horizontal shaft, https://www.bourns.com/products/encoders/contacting-encoders/product/PEC09 +rotary encoder +0 +5 +5 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC12R-2x17F-Nxxxx +Bourns rotary encoder, PEC12R, without switch, horizontal shaft, 17mm shaft length, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC12R-2x17F-Sxxxx +Bourns rotary encoder, PEC12R, with switch, horizontal shaft, 17mm shaft length, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x16F-Sxxxx +Rotary encoder with switch and illuminated 4mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x18F-Sxxxx +Rotary encoder with switch and illuminated 6mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x21F-Sxxxx +Rotary encoder with switch and illuminated 8mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x25S-Sxxxx +Rotary encoder with switch and illuminated shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x26F-Sxxxx +Rotary encoder with switch and illuminated 13mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x31F-Sxxxx +Rotary encoder with switch and illuminated 18mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEC12R-3x17F-Nxxxx +Bourns rotary encoder, PEC12R, without switch, with bushing, vertical shaft, 17.5mm shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEC12R-3x17F-Sxxxx +Bourns rotary encoder, PEC12R, with switch, with bushing, vertical shaft, 17.5mm shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEL12D-4x25S-Sxxxx +Rotary encoder with switch and illuminated 13mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch vertical +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEL12D-4xxxF-Sxxxx +Rotary encoder with switch and illuminated 4,6,8,13,18mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch vertical +0 +9 +8 +Sensor +ASAIR_AM2302_P2.54mm_Lead2.75mm_TabDown +Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/AM2302.pdf +Temperature and humidity module DHT22 AM2302 +0 +4 +4 +Sensor +ASAIR_AM2302_P2.54mm_Vertical +Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/AM2302.pdf +Temperature and humidity module DHT22 AM2302 +0 +4 +4 +Sensor +Aosong_DHT11_5.5x12.0_P2.54mm +Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/DHT11.pdf +Temperature and humidity module +0 +4 +4 +Sensor +Avago_APDS-9960 +Digital Proximity, Ambient Light, RGB and Gesture Sensor (https://docs.broadcom.com/doc/AV02-4191EN) +DFN Sensor optical IR +0 +8 +8 +Sensor +LuminOX_LOX-O2 +SST LuminOX Luminescence-based O2 sensor, https://sstsensing.com/wp-content/uploads/2021/08/DS0030rev15_LuminOx.pdf +SST LuminOX O2 +0 +4 +4 +Sensor +MQ-6 +Gas Sensor, 6 pin, https://www.winsen-sensor.com/d/files/semiconductor/mq-6.pdf +gas sensor +0 +6 +6 +Sensor +Rohm_RPR-0521RS +Digital Proximity and Ambient Light Sensor, 2.36 x 3.94 x 1.35mm, LGA-8 (https://fscdn.rohm.com/en/products/databook/datasheet/opto/optical_sensor/opto_module/rpr-0521rs-e.pdf) +DFN Sensor optical IR +0 +8 +8 +Sensor +SHT1x +SHT1x +SHT1x +0 +8 +8 +Sensor +SPEC_110-xxx_SMD-10Pin_20x20mm_P4.0mm +SPEC Sensors SMD package, 20x20mm, https://www.spec-sensors.com/wp-content/uploads/2016/10/3SP_H2S_50-C-Package-110-304.pdf +SPEC Sensors gas sensor +0 +10 +10 +Sensor +Senseair_S8_Down +Sensair S8 Series CO2 sensor, 1kHz PWM output, Modbus, THT +co2 gas sensor pwm modbus +0 +9 +9 +Sensor +Senseair_S8_Up +Sensair S8 Series CO2 sensor, 1kHz PWM output, Modbus, THT +co2 gas sensor pwm modbus +0 +9 +9 +Sensor +Sensirion_SCD4x-1EP_10.1x10.1mm_P1.25mm_EP4.8x4.8mm +Sensirion SCD4x QFN, 20 Pin (https://sensirion.com/media/documents/C4B87CE6/627C2DCD/CD_DS_SCD40_SCD41_Datasheet_D1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Sensirion QFN NoLead +0 +25 +21 +Sensor +Sensortech_MiCS_5x7mm_P1.25mm +https://www.sgxsensortech.com/content/uploads/2014/07/1084_Datasheet-MiCS-5524-rev-8.pdf +Sensortech MiCS MEMS sensor +0 +10 +10 +Sensor +TGS-5141 +Fixaro carbon monoxide electrochemical sensor, https://figarosensor.com/product/docs/tgs5141-p00_product%20infomation%28fusa%29_rev07.pdf +Figaro CO sensor +0 +3 +2 +Sensor +Winson_GM-402B_5x5mm_P1.27mm +Winson GM-402B QFN, 8 Pin (https://www.winsen-sensor.com/d/files/me2/mems--gm-402b--manual-v1_1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Winson QFN NoLead +0 +8 +8 +Sensor_Audio +CUI_CMC-4013-SMT +Omnidirectional, -42dB, reflowable, electret condenser microphone https://www.cuidevices.com/product/resource/cmc-4013-smt-tr.pdf +Microphone CUI +0 +2 +2 +Sensor_Audio +Infineon_PG-LLGA-5-1 +Infineon_PG-LLGA-5-1 StepUp generated footprint, https://www.infineon.com/cms/en/product/packages/PG-LLGA/PG-LLGA-5-1/ +infineon mems microphone +0 +15 +5 +Sensor_Audio +Infineon_PG-LLGA-5-2 +Infineon, IP57, XENSIV, LGA-5, https://www.infineon.com/dgdl/Infineon-IM73A135-DataSheet-v01_00-EN.pdf?fileId=8ac78c8c7f2a768a017fadec36b84500 +MEMS Microphone LGA Dust Water +0 +5 +5 +Sensor_Audio +InvenSense_ICS-43434-6_3.5x2.65mm +TDK InvenSense MEMS I2S Microphone: https://invensense.tdk.com/products/ics-43434/ +microphone MEMS I2S ICS-43434 TDK InvenSense +0 +6 +6 +Sensor_Audio +Knowles_LGA-5_3.5x2.65mm +https://www.knowles.com/docs/default-source/model-downloads/sph0641lu4h-1-revb.pdf +MEMS Microphone LGA +0 +5 +5 +Sensor_Audio +Knowles_LGA-6_4.72x3.76mm +Knowles MEMS Analog Microphone, Omnidirectional, SMD, Differential/Single-Ended Output, -40dB, Bottom Port, https://www.knowles.com/docs/default-source/default-document-library/spm0687lr5h-1_winfrey_datasheet.pdf +SPM0687LR5H MEMS Microphone LGA +0 +6 +6 +Sensor_Audio +Knowles_SPH0645LM4H-6_3.5x2.65mm +Knowles MEMS I2S Microphone: https://www.knowles.com/subdepartment/dpt-microphones/subdpt-sisonic-surface-mount-mems +microphone MEMS I2S SPH0645LM4H Knowles +0 +6 +6 +Sensor_Audio +POM-2244P-C3310-2-R +Electret Condenser microphone, Project Unlimited (PU) Audio, https://api.puiaudio.com/file/b7e03aec-9603-48da-8064-9a0e0468047c.pdf +microphone electret +0 +2 +2 +Sensor_Audio +ST_HLGA-6_3.76x4.72mm_P1.65mm +http://www.st.com/content/ccc/resource/technical/document/datasheet/group3/27/62/48/98/44/54/4d/36/DM00303211/files/DM00303211.pdf/jcr:content/translations/en.DM00303211.pdf +HLGA Sensor Audio +0 +6 +6 +Sensor_Current +AKM_CQ_7 +AKM Current Sensor, 7 pin, THT (http://www.akm.com/akm/en/file/datasheet/CQ-236B.pdf) +akm current sensor tht +0 +39 +7 +Sensor_Current +AKM_CQ_7S +AKM Current Sensor, 7 pin, SMD (http://www.akm.com/akm/en/file/datasheet/CQ-236B.pdf) +akm current sensor smd +0 +19 +7 +Sensor_Current +AKM_CQ_VSOP-24_5.6x7.9mm_P0.65mm +AKM VSOP-24 current sensor, 5.6x7.9mm body, 0.65mm pitch (http://www.akm.com/akm/en/file/datasheet/CQ-330J.pdf) +akm vsop 24 +0 +10 +10 +Sensor_Current +AKM_CZ_SSOP-10_6.5x8.1mm_P0.95mm +AKM CZ-381x current sensor, 6.5x8.1mm body, 0.95mm pitch (http://www.akm.com/akm/en/product/detail/0009/) +akm cz-381x 10 +0 +10 +10 +Sensor_Current +Allegro_CB_PFF +Allegro MicroSystems, CB-PFF Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) !PADS 4-5 DO NOT MATCH DATASHEET! +Allegro CB-PFF +0 +37 +5 +Sensor_Current +Allegro_CB_PSF +Allegro MicroSystems, CB-PSF Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) +Allegro CB-PSF +0 +5 +5 +Sensor_Current +Allegro_CB_PSS +Allegro MicroSystems, CB-PSS Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) +Allegro CB-PSS +0 +5 +5 +Sensor_Current +Allegro_PSOF-7_4.8x6.4mm_P1.60mm +Allegro Microsystems PSOF-7, 4.8x6.4mm Body, 1.60mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/ACS780-Datasheet.ashx) +Allegro PSOF-7 +0 +7 +7 +Sensor_Current +Allegro_QFN-12-10-1EP_3x3mm_P0.5mm +Allegro Microsystems 12-Lead (10-Lead Populated) Quad Flat Pack, 3x3mm Body, 0.5mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/ACS711-Datasheet.ashx) +Allegro QFN 0.5 +0 +14 +10 +Sensor_Current +Allegro_QSOP-24_3.9x8.7mm_P0.635mm +Allegro Microsystems 24-Lead Plastic Shrink Small Outline Narrow Body Body [QSOP] (http://www.allegromicro.com/~/media/Files/Datasheets/ACS726-Datasheet.ashx?la=en) +Allegro QSOP 0.635 +0 +24 +24 +Sensor_Current +Allegro_SIP-3 +Allegro Microsystems SIP-3, 1.27mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/A1369-Datasheet.ashx) +Allegro SIP-3 +0 +3 +3 +Sensor_Current +Allegro_SIP-4 +Allegro Microsystems SIP-4, 1.27mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/A1363-Datasheet.ashx) +Allegro SIP-4 +0 +4 +4 +Sensor_Current +Diodes_SIP-3_4.1x1.5mm_P1.27mm +Diodes SIP-3 Bulk Pack, 1.27mm Pitch (https://www.diodes.com/assets/Package-Files/SIP-3-Bulk-Pack.pdf) +Diodes SIP-3 Bulk Pack +0 +3 +3 +Sensor_Current +Diodes_SIP-3_4.1x1.5mm_P2.65mm +Diodes SIP-3 Ammo Pack, 2.65mm Pitch (https://www.diodes.com/assets/Package-Files/SIP-3-Ammo-Pack.pdf) +Diodes SIP-3 Ammo Pack +0 +3 +3 +Sensor_Current +Honeywell_CSLW +https://sensing.honeywell.com/honeywell-sensing-cslw-series-product-sheet-005861-1-en.pdf +Miniature Wired Open-Loop Current Sensor +0 +5 +5 +Sensor_Current +LEM_CKSR +LEM CKSR 6/15/25/50/75-NP Current Transducer, https://www.lem.com/sites/default/files/products_datasheets/cksr_75-np.pdf +current transducer LEM +0 +14 +14 +Sensor_Current +LEM_HO8-NP +LEM HO 8/15/25-NP Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-np-0000_series.pdf) +current transducer +0 +13 +13 +Sensor_Current +LEM_HO8-NSM +LEM HO 8/15/25-NSM Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-nsm-0000_series.pdf) +current transducer +0 +13 +13 +Sensor_Current +LEM_HO40-NP +LEM HO 40/60/120/150-NP Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-np_0100__1100_series.pdf) +current transducer +0 +13 +13 +Sensor_Current +LEM_HTFS +LEM HTFS x00-P current transducer (https://www.lem.com/sites/default/files/products_datasheets/htfs_200_800-p.pdf) +HTFS current transducer +0 +4 +4 +Sensor_Current +LEM_HX02-P +LEM HX02-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX03-P-SP2 +LEM HX03-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX04-P +LEM HX04-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX05-NP +LEM HX05-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) +hall current +0 +8 +8 +Sensor_Current +LEM_HX05-P-SP2 +LEM HX05-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX06-P +LEM HX06-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX10-NP +LEM HX10-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) +hall current +0 +8 +8 +Sensor_Current +LEM_HX10-P-SP2 +LEM HX10-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX15-NP +LEM HX15-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) +hall current +0 +8 +8 +Sensor_Current +LEM_HX15-P-SP2 +LEM HX15-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX20-P-SP2 +LEM HX20-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX25-P-SP2 +LEM HX25-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX50-P-SP2 +LEM HX50-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_LA25-P +LEM Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/la_25-p.pdf) +current transducer +0 +3 +3 +Sensor_Current +LEM_LTSR-NP +LEM current transducer LEM_LTSR-NP 5V supply voltage series https://www.lem.com/sites/default/files/products_datasheets/ltsr_6-np.pdf +Current transducer +0 +10 +10 +Sensor_Distance +AMS_OLGA12 +TMF8820/1/8 distance sensor +TMF8820 TMF8821 TMF8828 +0 +12 +12 +Sensor_Distance +ST_VL53L1x +VL53L1x distance sensor +VL53L1CXV0FY1 VL53L1x +0 +13 +12 +Sensor_Humidity +Sensirion_DFN-4-1EP_2x2mm_P1mm_EP0.7x1.6mm +DFN, 4 Pin (https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/0_Datasheets/Humidity/Sensirion_Humidity_Sensors_SHTC3_Datasheet.pdf) +Sensirion DFN NoLead +0 +10 +5 +Sensor_Humidity +Sensirion_DFN-4_1.5x1.5mm_P0.8mm_SHT4x_NoCentralPad +Sensirion, SHT40, SHT41, SHT45, DFN, 4 Pin (https://sensirion.com/media/documents/33FD6951/624C4357/Datasheet_SHT4x.pdf) +DFN NoLead +0 +4 +4 +Sensor_Humidity +Sensirion_DFN-8-1EP_2.5x2.5mm_P0.5mm_EP1.1x1.7mm +Sensirion DFN-8 SHT3x-DIS (https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Datasheets/Sensirion_Humidity_Sensors_SHT3x_Datasheet_digital.pdf) +sensirion dfn nolead +0 +10 +9 +Sensor_Motion +Analog_LGA-16_3.25x3mm_P0.5mm_LayoutBorder3x5y +LGA, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL363.pdf#page=44) +LGA NoLead CC-16-4 +0 +16 +16 +Sensor_Motion +InvenSense_QFN-24_3x3mm_P0.4mm +24-Lead Plastic QFN (3mm x 3mm); Pitch 0.4mm; EP 1.7x1.54mm; for InvenSense motion sensors; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.4 +0 +24 +24 +Sensor_Motion +InvenSense_QFN-24_3x3mm_P0.4mm_NoMask +24-Lead Plastic QFN (3mm x 3mm); Pitch 0.4mm; EP 1.7x1.54mm; for InvenSense motion sensors; Mask removed below exposed pad; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.4 +0 +25 +24 +Sensor_Motion +InvenSense_QFN-24_4x4mm_P0.5mm +24-Lead Plastic QFN (4mm x 4mm); Pitch 0.5mm; EP 2.7x2.6mm; for InvenSense motion sensors; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.5 +0 +24 +24 +Sensor_Motion +InvenSense_QFN-24_4x4mm_P0.5mm_NoMask +24-Lead Plastic QFN (4mm x 4mm); Pitch 0.5mm; EP 2.7x2.6mm; for InvenSense motion sensors; Mask removed below exposed pad; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.5 +0 +25 +24 +Sensor_Pressure +CFSensor_XGZP6897x +Port External Dia 3.13mm, Port Internal Dia 0.9mm, 8 Pin (https://cfsensor.com/wp-content/uploads/2022/11/XGZP6897D-Pressure-Sensor-V2.7.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py, hand modified +sop sensor +0 +8 +8 +Sensor_Pressure +CFSensor_XGZP6899x +Port External Dia 3mm, Port Internal Dia 1mm, 8 Pin (https://cfsensor.com/wp-content/uploads/2022/11/XGZP6899D-Pressure-Sensor-V2.8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py, hand modified +sop sensor +0 +8 +8 +Sensor_Pressure +Freescale_98ARH99066A +https://www.nxp.com/docs/en/data-sheet/MPXH6250A.pdf +sensor pressure ssop 98ARH99066A +0 +8 +8 +Sensor_Pressure +Freescale_98ARH99089A +https://www.nxp.com/docs/en/data-sheet/MPXH6250A.pdf +sensor pressure ssop 98ARH99089A +0 +8 +8 +Sensor_Pressure +Honeywell_40PCxxxG1A +https://www.honeywellscportal.com/index.php?ci_id=138832 +pressure sensor automotive honeywell +0 +3 +3 +Sensor_Pressure +TE_MS5525DSO-DBxxxyS +Pressure Sensor, Dual-Barbed, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=MS5525DSO&DocType=DS&DocLang=English +Pressure DualBarbed +0 +14 +14 +Sensor_Pressure +TE_MS5837-xxBA +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FMS5837-30BA%7FB1%7Fpdf%7FEnglish%7FENG_DS_MS5837-30BA_B1.pdf%7FCAT-BLPS0017 +MS5837 Ultra-small gel-filled pressure sensor with stainless steel cap +0 +4 +4 +Sensor_Voltage +LEM_LV25-P +LEM LV25-P Voltage transducer, https://www.lem.com/sites/default/files/products_datasheets/lv_25-p.pdf +LEM Hall Effect Voltage transducer +0 +5 +5 +Socket +3M_Textool_240-1288-00-0602J_2x20_P2.54mm +3M 40-pin zero insertion force socket, though-hole, row spacing 25.4 mm (1000 mils) +THT DIP DIL ZIF 25.4mm 1000mil Socket +0 +40 +40 +Socket +DIP_Socket-14_W4.3_W5.08_W7.62_W10.16_W10.9_3M_214-3339-00-0602J +3M 14-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +14 +14 +Socket +DIP_Socket-16_W4.3_W5.08_W7.62_W10.16_W10.9_3M_216-3340-00-0602J +3M 16-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +16 +16 +Socket +DIP_Socket-18_W4.3_W5.08_W7.62_W10.16_W10.9_3M_218-3341-00-0602J +3M 18-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +18 +18 +Socket +DIP_Socket-20_W4.3_W5.08_W7.62_W10.16_W10.9_3M_220-3342-00-0602J +3M 20-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +20 +20 +Socket +DIP_Socket-22_W6.9_W7.62_W10.16_W12.7_W13.5_3M_222-3343-00-0602J +3M 22-pin zero insertion force socket, through-hole, row spacing 10.16 mm (400 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 10.16mm 400mil Socket +0 +22 +22 +Socket +DIP_Socket-24_W4.3_W5.08_W7.62_W10.16_W10.9_3M_224-5248-00-0602J +3M 24-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +24 +24 +Socket +DIP_Socket-24_W11.9_W12.7_W15.24_W17.78_W18.5_3M_224-1275-00-0602J +3M 24-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +24 +24 +Socket +DIP_Socket-28_W6.9_W7.62_W10.16_W12.7_W13.5_3M_228-4817-00-0602J +3M 28-pin zero insertion force socket, through-hole, row spacing 10.16 mm (400 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 10.16mm 400mil Socket +0 +28 +28 +Socket +DIP_Socket-28_W11.9_W12.7_W15.24_W17.78_W18.5_3M_228-1277-00-0602J +3M 28-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +28 +28 +Socket +DIP_Socket-32_W11.9_W12.7_W15.24_W17.78_W18.5_3M_232-1285-00-0602J +3M 32-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +32 +32 +Socket +DIP_Socket-40_W11.9_W12.7_W15.24_W17.78_W18.5_3M_240-1280-00-0602J +3M 40-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +40 +40 +Socket +DIP_Socket-40_W22.1_W22.86_W25.4_W27.94_W28.7_3M_240-3639-00-0602J +3M 40-pin zero insertion force socket, through-hole, row spacing 25.4 mm (1000 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 25.4mm 1000mil Socket +0 +40 +40 +Socket +DIP_Socket-42_W11.9_W12.7_W15.24_W17.78_W18.5_3M_242-1281-00-0602J +3M 42-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +42 +42 +Socket +Wells_648-0482211SA01 +https://www.farnell.com/cad/316865.pdf?_ga=2.37208032.177107060.1530611323-249019997.1498114824 +48pin TSOP Socket +0 +48 +48 +Symbol +CE-Logo_8.5x6mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_11.2x8mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_16.8x12mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_28x20mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_42x30mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_56.1x40mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +ESD-Logo_6.6x6mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_8.9x8mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_13.2x12mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_22x20mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_33x30mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_44.1x40mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +EasterEgg_EWG1308-2013_ClassA +Egg with 42x60mm Body-Size, ClassA, according to EWG1308/2013 +egg easter +0 +0 +0 +Symbol +FCC-Logo_7.3x6mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_9.6x8mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_14.6x12mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_24.2x20mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_36.3x30mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_48.3x40mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +KiCad-Logo2_5mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_5mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_6mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_6mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_8mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_8mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_12mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_12mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_20mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_20mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_30mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_30mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_40mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_40mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_5mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_5mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_6mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_6mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_8mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_8mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_12mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_12mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_20mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_20mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_30mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_30mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_40mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_40mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +OSHW-Logo2_7.3x6mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_7.3x6mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_9.8x8mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_9.8x8mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_14.6x12mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_14.6x12mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_24.3x20mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_24.3x20mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_36.5x30mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_36.5x30mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_48.7x40mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_48.7x40mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo_5.7x6mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_5.7x6mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_7.5x8mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_7.5x8mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_11.4x12mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_11.4x12mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_19x20mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_19x20mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_28.5x30mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_28.5x30mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_38.1x40mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_38.1x40mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Symbol_6.7x6mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_6.7x6mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_8.9x8mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_8.9x8mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_13.4x12mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_13.4x12mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_22.3x20mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_22.3x20mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_33.5x30mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_33.5x30mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_44.5x40mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_44.5x40mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +Polarity_Center_Negative_6mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_8mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_12mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_20mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_30mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_40mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Positive_6mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_8mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_12mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_20mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_30mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_40mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +RoHS-Logo_6mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_8mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_12mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_20mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_30mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_40mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +Symbol_Attention_Triangle_8x7mm_Copper +Symbol, Attention, 8x7mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_Attention_Triangle_17x15mm_Copper +Symbol, attention, 17x15mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_Barrel_Polarity +Barrel connector polarity indicator +barrel polarity +0 +0 +0 +Symbol +Symbol_CC-Attribution_CopperTop_Big +Creative Commons symbol, CC-BY, copper layer, 10mm +attribution license graphic +0 +0 +0 +Symbol +Symbol_CC-Attribution_CopperTop_Small +Creative Commons symbol, CC-BY, copper layer, 5mm + +0 +0 +0 +Symbol +Symbol_CC-Noncommercial_CopperTop_Big +Creative Commons symbol, CC-NC, copper layer, 10mm +noncommercial non-commercial license graphic +0 +0 +0 +Symbol +Symbol_CC-Noncommercial_CopperTop_Small +Creative Commons symbol, CC-NC, copper layer, 5mm +noncommercial non-commercial license graphic +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_CopperTop_Big +Creative Commons symbol, CC0, copper layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_CopperTop_Small +Creative Commons symbol, CC0, copper layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_SilkScreenTop_Big +Creative Commons symbol, CC0, silkscreen layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CC-ShareAlike_CopperTop_Big +Creative Commons symbol, CC-SA, copper layer, 10mm +share-alike license graphic +0 +0 +0 +Symbol +Symbol_CC-ShareAlike_CopperTop_Small +Creative Commons symbol, CC-SA, copper layer, 5mm +share-alike license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommonsPublicDomain_CopperTop_Small +Creative Commons symbol, CC0, with words, copper layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommonsPublicDomain_SilkScreenTop_Small +Creative Commons symbol, CC0, with words, silkscreen layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type1_Big +Creative Commons symbol, CC, with words, copper layer, 10mm +license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type2_Big +Creative Commons symbol, CC, copper layer, 10mm +license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type2_Small +Creative Commons symbol, CC, copper layer, 5mm +license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_SilkScreenTop_Type2_Big +Creative Commons symbol, CC0, silkscreen layer, 10mm +license graphic +0 +0 +0 +Symbol +Symbol_Danger_8x8mm_Copper +Danger symbol, 8x8mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_Danger_18x16mm_Copper +Danger symbol, 18x16mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_ESD-Logo-Text_CopperTop + + +0 +0 +0 +Symbol +Symbol_ESD-Logo_CopperTop +ESD-Logo, similar JEDEC-14, without text, ohne Text, Copper Top, +ESD-Logo, similar JEDEC-14, without text, ohne Text, Copper Top, +0 +0 +0 +Symbol +Symbol_GNU-GPL_CopperTop_Big +Symbol, GNU-GPL, Copper Top, Big, +Symbol, GNU-GPL, Copper Top, Big, +0 +0 +0 +Symbol +Symbol_GNU-GPL_CopperTop_Small +Symbol, GNU-GPL, Copper Top, Small, +Symbol, GNU-GPL, Copper Top, Small, +0 +0 +0 +Symbol +Symbol_GNU-Logo_CopperTop +GNU-Logo, GNU-Head, GNU-Kopf, Copper Top, +GNU-Logo, GNU-Head, GNU-Kopf, Copper Top, +0 +0 +0 +Symbol +Symbol_GNU-Logo_SilkscreenTop +GNU-Logo, GNU-Head, GNU-Kopf, Silkscreen, +GNU-Logo, GNU-Head, GNU-Kopf, Silkscreen, +0 +0 +0 +Symbol +Symbol_HighVoltage_NoTriangle_2x5mm_Copper +High voltage symbol, no triangle, 2x5mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_NoTriangle_6x15mm_Copper +High voltage symbol, no triangle, 6x15mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_Triangle_6x6mm_Copper +High voltage symbol, in triangle, 6x6mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_Triangle_8x7mm_Copper +High voltage symbol, in triangle, 8x7mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_Triangle_17x15mm_Copper +High voltage symbol, in triangle, 17x15mm, copper layer +warning graphic +0 +0 +0 +Symbol +UKCA-Logo_6x6mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_8x8mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_12x12mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_20x20mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_30x30mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_40x40mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +WEEE-Logo_4.2x6mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_5.6x8mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_8.4x12mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_14x20mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_21x30mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_28.1x40mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +TerminalBlock +TerminalBlock_Altech_AK300-2_P5.00mm +Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf +Altech AK300 terminal block pitch 5.0mm +0 +2 +2 +TerminalBlock +TerminalBlock_Altech_AK300-3_P5.00mm +Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf +Altech AK300 terminal block pitch 5.0mm +0 +3 +3 +TerminalBlock +TerminalBlock_Altech_AK300-4_P5.00mm +Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf +Altech AK300 terminal block pitch 5.0mm +0 +4 +4 +TerminalBlock +TerminalBlock_Degson_DG246-3.81-03P +DEGSON ELECTRONICS DG246 terminal block, https://www.degson.com/index.php?a=downloadFile&id=1090277 +connector terminal block +0 +6 +3 +TerminalBlock +TerminalBlock_Wuerth_691311400102_P7.62mm +https://katalog.we-online.de/em/datasheet/6913114001xx.pdf +Wuerth WR-TBL Series 3114 terminal block pitch 7.62mm +0 +2 +2 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-2P_1x02_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-2P, 2 pins, pitch 2.54mm, size 5.58x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-2P pitch 2.54mm size 5.58x6.5mm^2 drill 1.2mm pad 2mm +0 +2 +2 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-3P_1x03_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-3P, 3 pins, pitch 2.54mm, size 8.12x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-3P pitch 2.54mm size 8.12x6.5mm^2 drill 1.2mm pad 2mm +0 +3 +3 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-4P_1x04_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-4P, 4 pins, pitch 2.54mm, size 10.7x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-4P pitch 2.54mm size 10.7x6.5mm^2 drill 1.2mm pad 2mm +0 +4 +4 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-5P_1x05_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-5P, 5 pins, pitch 2.54mm, size 13.2x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-5P pitch 2.54mm size 13.2x6.5mm^2 drill 1.2mm pad 2mm +0 +5 +5 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-6P_1x06_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-6P, 6 pins, pitch 2.54mm, size 15.7x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-6P pitch 2.54mm size 15.7x6.5mm^2 drill 1.2mm pad 2mm +0 +6 +6 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-7P_1x07_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-7P, 7 pins, pitch 2.54mm, size 18.3x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-7P pitch 2.54mm size 18.3x6.5mm^2 drill 1.2mm pad 2mm +0 +7 +7 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-8P_1x08_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-8P, 8 pins, pitch 2.54mm, size 20.8x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-8P pitch 2.54mm size 20.8x6.5mm^2 drill 1.2mm pad 2mm +0 +8 +8 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-9P_1x09_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-9P, 9 pins, pitch 2.54mm, size 23.4x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-9P pitch 2.54mm size 23.4x6.5mm^2 drill 1.2mm pad 2mm +0 +9 +9 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-10P_1x10_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-10P, 10 pins, pitch 2.54mm, size 25.9x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-10P pitch 2.54mm size 25.9x6.5mm^2 drill 1.2mm pad 2mm +0 +10 +10 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-11P_1x11_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-11P, 11 pins, pitch 2.54mm, size 28.4x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-11P pitch 2.54mm size 28.4x6.5mm^2 drill 1.2mm pad 2mm +0 +11 +11 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-12P_1x12_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-12P, 12 pins, pitch 2.54mm, size 31x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-12P pitch 2.54mm size 31x6.5mm^2 drill 1.2mm pad 2mm +0 +12 +12 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-13P_1x13_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-13P, 13 pins, pitch 2.54mm, size 33.5x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-13P pitch 2.54mm size 33.5x6.5mm^2 drill 1.2mm pad 2mm +0 +13 +13 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-14P_1x14_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-14P, 14 pins, pitch 2.54mm, size 36.1x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-14P pitch 2.54mm size 36.1x6.5mm^2 drill 1.2mm pad 2mm +0 +14 +14 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-15P_1x15_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-15P, 15 pins, pitch 2.54mm, size 38.6x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-15P pitch 2.54mm size 38.6x6.5mm^2 drill 1.2mm pad 2mm +0 +15 +15 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-16P_1x16_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-16P, 16 pins, pitch 2.54mm, size 41.1x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-16P pitch 2.54mm size 41.1x6.5mm^2 drill 1.2mm pad 2mm +0 +16 +16 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-17P_1x17_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-17P, 17 pins, pitch 2.54mm, size 43.7x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-17P pitch 2.54mm size 43.7x6.5mm^2 drill 1.2mm pad 2mm +0 +17 +17 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-18P_1x18_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-18P, 18 pins, pitch 2.54mm, size 46.2x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-18P pitch 2.54mm size 46.2x6.5mm^2 drill 1.2mm pad 2mm +0 +18 +18 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-19P_1x19_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-19P, 19 pins, pitch 2.54mm, size 48.8x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-19P pitch 2.54mm size 48.8x6.5mm^2 drill 1.2mm pad 2mm +0 +19 +19 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-20P_1x20_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-20P, 20 pins, pitch 2.54mm, size 51.3x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-20P pitch 2.54mm size 51.3x6.5mm^2 drill 1.2mm pad 2mm +0 +20 +20 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-21P_1x21_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-21P, 21 pins, pitch 2.54mm, size 53.8x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-21P pitch 2.54mm size 53.8x6.5mm^2 drill 1.2mm pad 2mm +0 +21 +21 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-22P_1x22_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-22P, 22 pins, pitch 2.54mm, size 56.4x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-22P pitch 2.54mm size 56.4x6.5mm^2 drill 1.2mm pad 2mm +0 +22 +22 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-23P_1x23_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-23P, 23 pins, pitch 2.54mm, size 58.9x6.5mm^2, drill diameter 1.2mm, pad diameter 2mm, see http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-23P pitch 2.54mm size 58.9x6.5mm^2 drill 1.2mm pad 2mm +0 +23 +23 +TerminalBlock +TerminalBlock_bornier-2_P5.08mm +simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2 +terminal block bornier2 +0 +2 +2 +TerminalBlock +TerminalBlock_bornier-3_P5.08mm +simple 3-pin terminal block, pitch 5.08mm, revamped version of bornier3 +terminal block bornier3 +0 +3 +3 +TerminalBlock +TerminalBlock_bornier-4_P5.08mm +simple 4-pin terminal block, pitch 5.08mm, revamped version of bornier4 +terminal block bornier4 +0 +4 +4 +TerminalBlock +TerminalBlock_bornier-5_P5.08mm +simple 5-pin terminal block, pitch 5.08mm, revamped version of bornier5 +terminal block bornier5 +0 +5 +5 +TerminalBlock +TerminalBlock_bornier-6_P5.08mm +simple 6pin terminal block, pitch 5.08mm, revamped version of bornier6 +terminal block bornier6 +0 +6 +6 +TerminalBlock +TerminalBlock_bornier-8_P5.08mm +simple 8pin terminal block, pitch 5.08mm, revamped version of bornier8 +terminal block bornier8 +0 +8 +8 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x02_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 19963, 2 pins, pitch 3.5mm, size 7.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19963.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19963 pitch 3.5mm size 7.7x7mm^2 drill 1.2mm pad 2.4mm +0 +2 +2 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x02_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10693, vertical (cable from top), 2 pins, pitch 3.5mm, size 8x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10693.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10693 vertical pitch 3.5mm size 8x8.3mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x03_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 20193, 3 pins, pitch 3.5mm, size 11.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20193.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20193 pitch 3.5mm size 11.2x7mm^2 drill 1.2mm pad 2.4mm +0 +3 +3 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x03_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10694, vertical (cable from top), 3 pins, pitch 3.5mm, size 11.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10694.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10694 vertical pitch 3.5mm size 11.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x04_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 20001, 4 pins, pitch 3.5mm, size 14.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20001.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20001 pitch 3.5mm size 14.7x7mm^2 drill 1.2mm pad 2.4mm +0 +4 +4 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x04_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10695, vertical (cable from top), 4 pins, pitch 3.5mm, size 15x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10695.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10695 vertical pitch 3.5mm size 15x8.3mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x05_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 20223, 5 pins, pitch 3.5mm, size 18.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20223.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20223 pitch 3.5mm size 18.2x7mm^2 drill 1.2mm pad 2.4mm +0 +5 +5 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x05_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10696, vertical (cable from top), 5 pins, pitch 3.5mm, size 18.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10696.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10696 vertical pitch 3.5mm size 18.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x06_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 19964, 6 pins, pitch 3.5mm, size 21.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19964.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19964 pitch 3.5mm size 21.7x7mm^2 drill 1.2mm pad 2.4mm +0 +6 +6 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x06_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10697, vertical (cable from top), 6 pins, pitch 3.5mm, size 22x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10697.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10697 vertical pitch 3.5mm size 22x8.3mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x07_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10684, 7 pins, pitch 3.5mm, size 25.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10684.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10684 pitch 3.5mm size 25.2x7mm^2 drill 1.2mm pad 2.4mm +0 +7 +7 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x07_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10698, vertical (cable from top), 7 pins, pitch 3.5mm, size 25.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10698.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10698 vertical pitch 3.5mm size 25.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x08_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 19965, 8 pins, pitch 3.5mm, size 28.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19965.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19965 pitch 3.5mm size 28.7x7mm^2 drill 1.2mm pad 2.4mm +0 +8 +8 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x08_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10699, vertical (cable from top), 8 pins, pitch 3.5mm, size 29x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10699.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10699 vertical pitch 3.5mm size 29x8.3mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x09_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10686, 9 pins, pitch 3.5mm, size 32.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10686.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10686 pitch 3.5mm size 32.2x7mm^2 drill 1.2mm pad 2.4mm +0 +9 +9 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x09_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10700, vertical (cable from top), 9 pins, pitch 3.5mm, size 32.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10700.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10700 vertical pitch 3.5mm size 32.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x10_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10687, 10 pins, pitch 3.5mm, size 35.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10687.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10687 pitch 3.5mm size 35.7x7mm^2 drill 1.2mm pad 2.4mm +0 +10 +10 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x10_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10701, vertical (cable from top), 10 pins, pitch 3.5mm, size 36x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10701.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10701 vertical pitch 3.5mm size 36x8.3mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x11_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10688, 11 pins, pitch 3.5mm, size 39.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10688.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10688 pitch 3.5mm size 39.2x7mm^2 drill 1.2mm pad 2.4mm +0 +11 +11 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x11_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10702, vertical (cable from top), 11 pins, pitch 3.5mm, size 39.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10702.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10702 vertical pitch 3.5mm size 39.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x12_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10689, 12 pins, pitch 3.5mm, size 42.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10689.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10689 pitch 3.5mm size 42.7x7mm^2 drill 1.2mm pad 2.4mm +0 +12 +12 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x12_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10703, vertical (cable from top), 12 pins, pitch 3.5mm, size 43x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10703.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10703 vertical pitch 3.5mm size 43x8.3mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x13_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10690, 13 pins, pitch 3.5mm, size 46.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10690.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10690 pitch 3.5mm size 46.2x7mm^2 drill 1.2mm pad 2.4mm +0 +13 +13 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x13_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10704, vertical (cable from top), 13 pins, pitch 3.5mm, size 46.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10704.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10704 vertical pitch 3.5mm size 46.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x14_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10691, 14 pins, pitch 3.5mm, size 49.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10691.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10691 pitch 3.5mm size 49.7x7mm^2 drill 1.2mm pad 2.4mm +0 +14 +14 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x14_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10705, vertical (cable from top), 14 pins, pitch 3.5mm, size 50x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10705.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10705 vertical pitch 3.5mm size 50x8.3mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x15_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10692, 15 pins, pitch 3.5mm, size 53.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10692.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10692 pitch 3.5mm size 53.2x7mm^2 drill 1.2mm pad 2.4mm +0 +15 +15 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x15_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10706, vertical (cable from top), 15 pins, pitch 3.5mm, size 53.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10706.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10706 vertical pitch 3.5mm size 53.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Altech +Altech_AK100_1x02_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +2 +2 +TerminalBlock_Altech +Altech_AK100_1x03_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +3 +3 +TerminalBlock_Altech +Altech_AK100_1x04_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +4 +4 +TerminalBlock_Altech +Altech_AK100_1x05_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +5 +5 +TerminalBlock_Altech +Altech_AK100_1x06_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +6 +6 +TerminalBlock_Altech +Altech_AK100_1x07_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +7 +7 +TerminalBlock_Altech +Altech_AK100_1x08_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +8 +8 +TerminalBlock_Altech +Altech_AK100_1x09_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +9 +9 +TerminalBlock_Altech +Altech_AK100_1x10_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +10 +10 +TerminalBlock_Altech +Altech_AK100_1x11_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +11 +11 +TerminalBlock_Altech +Altech_AK100_1x12_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +12 +12 +TerminalBlock_Altech +Altech_AK100_1x13_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +13 +13 +TerminalBlock_Altech +Altech_AK100_1x14_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +14 +14 +TerminalBlock_Altech +Altech_AK100_1x15_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +15 +15 +TerminalBlock_Altech +Altech_AK100_1x16_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +16 +16 +TerminalBlock_Altech +Altech_AK100_1x17_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +17 +17 +TerminalBlock_Altech +Altech_AK100_1x18_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +18 +18 +TerminalBlock_Altech +Altech_AK100_1x19_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +19 +19 +TerminalBlock_Altech +Altech_AK100_1x20_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +20 +20 +TerminalBlock_Altech +Altech_AK100_1x21_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +21 +21 +TerminalBlock_Altech +Altech_AK100_1x22_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +22 +22 +TerminalBlock_Altech +Altech_AK100_1x23_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +23 +23 +TerminalBlock_Altech +Altech_AK100_1x24_P5.00mm +Altech AK100 serie terminal block (Script generated with StandardBox.py) (https://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK100 serie connector +0 +24 +24 +TerminalBlock_Altech +Altech_AK300_1x02_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +2 +2 +TerminalBlock_Altech +Altech_AK300_1x03_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +3 +3 +TerminalBlock_Altech +Altech_AK300_1x04_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +4 +4 +TerminalBlock_Altech +Altech_AK300_1x05_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +5 +5 +TerminalBlock_Altech +Altech_AK300_1x06_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +6 +6 +TerminalBlock_Altech +Altech_AK300_1x07_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +7 +7 +TerminalBlock_Altech +Altech_AK300_1x08_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +8 +8 +TerminalBlock_Altech +Altech_AK300_1x09_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +9 +9 +TerminalBlock_Altech +Altech_AK300_1x10_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +10 +10 +TerminalBlock_Altech +Altech_AK300_1x11_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +11 +11 +TerminalBlock_Altech +Altech_AK300_1x12_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +12 +12 +TerminalBlock_Altech +Altech_AK300_1x13_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +13 +13 +TerminalBlock_Altech +Altech_AK300_1x14_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +14 +14 +TerminalBlock_Altech +Altech_AK300_1x15_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +15 +15 +TerminalBlock_Altech +Altech_AK300_1x16_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +16 +16 +TerminalBlock_Altech +Altech_AK300_1x17_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +17 +17 +TerminalBlock_Altech +Altech_AK300_1x18_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +18 +18 +TerminalBlock_Altech +Altech_AK300_1x19_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +19 +19 +TerminalBlock_Altech +Altech_AK300_1x20_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +20 +20 +TerminalBlock_Altech +Altech_AK300_1x21_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +21 +21 +TerminalBlock_Altech +Altech_AK300_1x22_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +22 +22 +TerminalBlock_Altech +Altech_AK300_1x23_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +23 +23 +TerminalBlock_Altech +Altech_AK300_1x24_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +24 +24 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-02_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +2 +2 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-03_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +3 +3 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-04_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +4 +4 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-05_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +5 +5 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-06_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +6 +6 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-07_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +7 +7 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-08_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +8 +8 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-09_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +9 +9 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-10_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +10 +10 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-11_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +11 +11 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-12_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +12 +12 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-13_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +13 +13 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-14_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +14 +14 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-15_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +15 +15 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-16_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +16 +16 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-17_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +17 +17 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-18_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +18 +18 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-19_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +19 +19 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-20_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +20 +20 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-21_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +21 +21 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-22_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +22 +22 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-23_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +23 +23 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-24_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +24 +24 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-25_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +25 +25 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-26_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +26 +26 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-27_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +27 +27 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-28_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +28 +28 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-29_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +29 +29 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-30_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +30 +30 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360271_1x01_Horizontal_ScrewM3.0_Boxed +single screw terminal block Metz Connect 360271, block size 9x7.3mm^2, drill diamater 1.5mm, 1 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 134, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360271 size 9x7.3mm^2 drill 1.5mm pad 3mm +0 +1 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360272_1x01_Horizontal_ScrewM2.6 +single screw terminal block Metz Connect 360272, block size 4x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 131, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360272 size 4x4mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360273_1x01_Horizontal_ScrewM2.6_WireProtection +single screw terminal block Metz Connect 360273, block size 5x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 131, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360273 size 5x4mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360291_1x01_Horizontal_ScrewM3.0_Boxed +single screw terminal block Metz Connect 360291, block size 9x7.3mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360291 size 9x7.3mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360322_1x01_Horizontal_ScrewM3.0_WireProtection +single screw terminal block Metz Connect 360322, block size 6x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360322 size 6x4mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360381_1x01_Horizontal_ScrewM3.0 +single screw terminal block Metz Connect 360381, block size 5x5mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360381 size 5x5mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360410_1x01_Horizontal_ScrewM3.0 +single screw terminal block Metz Connect 360410, block size 5x5mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 132, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360410 size 5x5mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360425_1x01_Horizontal_ScrewM4.0_Boxed +single screw terminal block Metz Connect 360425, block size 9x9mm^2, drill diamater 1.6mm, 4 pads, pad diameter 3.2mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 134, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360425 size 9x9mm^2 drill 1.6mm pad 3.2mm +0 +4 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05502HBWC_1x02_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05502HBWC, 2 pins, pitch 5mm, size 10x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05502HBWC pitch 5mm size 10x10.5mm^2 drill 1.4mm pad 2.8mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05503HBWC_1x03_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05503HBWC, 3 pins, pitch 5mm, size 15x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05503HBWC pitch 5mm size 15x10.5mm^2 drill 1.4mm pad 2.8mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05504HBWC_1x04_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05504HBWC, 4 pins, pitch 5mm, size 20x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05504HBWC pitch 5mm size 20x10.5mm^2 drill 1.4mm pad 2.8mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05505HBWC_1x05_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05505HBWC, 5 pins, pitch 5mm, size 25x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05505HBWC pitch 5mm size 25x10.5mm^2 drill 1.4mm pad 2.8mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05506HBWC_1x06_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05506HBWC, 6 pins, pitch 5mm, size 30x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05506HBWC pitch 5mm size 30x10.5mm^2 drill 1.4mm pad 2.8mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type055_RT01502HDWU_1x02_P5.00mm_Horizontal +terminal block Metz Connect Type055_RT01502HDWU, 2 pins, pitch 5mm, size 10x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01502HDWU pitch 5mm size 10x8mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type055_RT01503HDWU_1x03_P5.00mm_Horizontal +terminal block Metz Connect Type055_RT01503HDWU, 3 pins, pitch 5mm, size 15x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01503HDWU pitch 5mm size 15x8mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type055_RT01504HDWU_1x04_P5.00mm_Horizontal +terminal block Metz Connect Type055_RT01504HDWU, 4 pins, pitch 5mm, size 20x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01504HDWU pitch 5mm size 20x8mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06302HBWC_1x02_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06302HBWC, 2 pins, pitch 3.5mm, size 7x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06302HBWC pitch 3.5mm size 7x6.5mm^2 drill 1.2mm pad 2.3mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06303HBWC_1x03_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06303HBWC, 3 pins, pitch 3.5mm, size 10.5x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06303HBWC pitch 3.5mm size 10.5x6.5mm^2 drill 1.2mm pad 2.3mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06304HBWC_1x04_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06304HBWC, 4 pins, pitch 3.5mm, size 14x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06304HBWC pitch 3.5mm size 14x6.5mm^2 drill 1.2mm pad 2.3mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06305HBWC_1x05_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06305HBWC, 5 pins, pitch 3.5mm, size 17.5x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06305HBWC pitch 3.5mm size 17.5x6.5mm^2 drill 1.2mm pad 2.3mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06306HBWC_1x06_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06306HBWC, 6 pins, pitch 3.5mm, size 21x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06306HBWC pitch 3.5mm size 21x6.5mm^2 drill 1.2mm pad 2.3mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01902HDWC_1x02_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01902HDWC, 2 pins, pitch 10mm, size 15.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01902HDWC pitch 10mm size 15.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01903HDWC_1x03_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01903HDWC, 3 pins, pitch 10mm, size 25.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01903HDWC pitch 10mm size 25.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01904HDWC_1x04_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01904HDWC, 4 pins, pitch 10mm, size 35.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01904HDWC pitch 10mm size 35.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01905HDWC_1x05_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01905HDWC, 5 pins, pitch 10mm, size 45.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01905HDWC pitch 10mm size 45.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type073_RT02602HBLU_1x02_P5.08mm_Horizontal +terminal block Metz Connect Type073_RT02602HBLU, 2 pins, pitch 5.08mm, size 10.2x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310731_RT026xxHBLU_OFF-022792U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type073_RT02602HBLU pitch 5.08mm size 10.2x11mm^2 drill 1.4mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type073_RT02603HBLU_1x03_P5.08mm_Horizontal +terminal block Metz Connect Type073_RT02603HBLU, 3 pins, pitch 5.08mm, size 15.2x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310731_RT026xxHBLU_OFF-022792U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type073_RT02603HBLU pitch 5.08mm size 15.2x11mm^2 drill 1.4mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03402HBLC_1x02_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03402HBLC, 2 pins, pitch 3.81mm, size 7.51x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03402HBLC pitch 3.81mm size 7.51x7.3mm^2 drill 0.7mm pad 1.4mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03403HBLC_1x03_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03403HBLC, 3 pins, pitch 3.81mm, size 11.3x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03403HBLC pitch 3.81mm size 11.3x7.3mm^2 drill 0.7mm pad 1.4mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03404HBLC_1x04_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03404HBLC, 4 pins, pitch 3.81mm, size 15.1x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03404HBLC pitch 3.81mm size 15.1x7.3mm^2 drill 0.7mm pad 1.4mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03405HBLC_1x05_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03405HBLC, 5 pins, pitch 3.81mm, size 18.9x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03405HBLC pitch 3.81mm size 18.9x7.3mm^2 drill 0.7mm pad 1.4mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03406HBLC_1x06_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03406HBLC, 6 pins, pitch 3.81mm, size 22.8x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03406HBLC pitch 3.81mm size 22.8x7.3mm^2 drill 0.7mm pad 1.4mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03502HBLU_1x02_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03502HBLU, 2 pins, pitch 5mm, size 10x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03502HBLU pitch 5mm size 10x8.3mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03503HBLU_1x03_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03503HBLU, 3 pins, pitch 5mm, size 15x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03503HBLU pitch 5mm size 15x8.3mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03504HBLU_1x04_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03504HBLU, 4 pins, pitch 5mm, size 20x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03504HBLU pitch 5mm size 20x8.3mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03505HBLU_1x05_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03505HBLU, 5 pins, pitch 5mm, size 25x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03505HBLU pitch 5mm size 25x8.3mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03506HBLU_1x06_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03506HBLU, 6 pins, pitch 5mm, size 30x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03506HBLU pitch 5mm size 30x8.3mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01602HBWC_1x02_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01602HBWC, 2 pins, pitch 5.08mm, size 10.2x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01602HBWC pitch 5.08mm size 10.2x8mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01603HBWC_1x03_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01603HBWC, 3 pins, pitch 5.08mm, size 15.2x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01603HBWC pitch 5.08mm size 15.2x8mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01604HBWC_1x04_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01604HBWC, 4 pins, pitch 5.08mm, size 20.3x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01604HBWC pitch 5.08mm size 20.3x8mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01605HBWC_1x05_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01605HBWC, 5 pins, pitch 5.08mm, size 25.4x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01605HBWC pitch 5.08mm size 25.4x8mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01606HBWC_1x06_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01606HBWC, 6 pins, pitch 5.08mm, size 30.5x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01606HBWC pitch 5.08mm size 30.5x8mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13702HBWC_1x02_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13702HBWC, 2 pins, pitch 7.5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13702HBWC pitch 7.5mm size 15x9mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13703HBWC_1x03_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13703HBWC, 3 pins, pitch 7.5mm, size 22.5x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13703HBWC pitch 7.5mm size 22.5x9mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13704HBWC_1x04_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13704HBWC, 4 pins, pitch 7.5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13704HBWC pitch 7.5mm size 30x9mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13705HBWC_1x05_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13705HBWC, 5 pins, pitch 7.5mm, size 37.5x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13705HBWC pitch 7.5mm size 37.5x9mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13706HBWC_1x06_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13706HBWC, 6 pins, pitch 7.5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13706HBWC pitch 7.5mm size 45x9mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02702HBLC_1x02_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02702HBLC, 2 pins, pitch 7.5mm, size 15x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02702HBLC pitch 7.5mm size 15x11mm^2 drill 1.4mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02703HBLC_1x03_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02703HBLC, 3 pins, pitch 7.5mm, size 22.5x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02703HBLC pitch 7.5mm size 22.5x11mm^2 drill 1.4mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02704HBLC_1x04_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02704HBLC, 4 pins, pitch 7.5mm, size 30x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02704HBLC pitch 7.5mm size 30x11mm^2 drill 1.4mm pad 2.6mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02705HBLC_1x05_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02705HBLC, 5 pins, pitch 7.5mm, size 37.5x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02705HBLC pitch 7.5mm size 37.5x11mm^2 drill 1.4mm pad 2.6mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02706HBLC_1x06_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02706HBLC, 6 pins, pitch 7.5mm, size 45x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02706HBLC pitch 7.5mm size 45x11mm^2 drill 1.4mm pad 2.6mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04502UBLC_1x02_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04502UBLC, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 10x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04502UBLC 45Degree pitch 5mm size 10x12.5mm^2 drill 1.4mm pad 2.7mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04503UBLC_1x03_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04503UBLC, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 15x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04503UBLC 45Degree pitch 5mm size 15x12.5mm^2 drill 1.4mm pad 2.7mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04504UBLC_1x04_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04504UBLC, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 20x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04504UBLC 45Degree pitch 5mm size 20x12.5mm^2 drill 1.4mm pad 2.7mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04505UBLC_1x05_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04505UBLC, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 25x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04505UBLC 45Degree pitch 5mm size 25x12.5mm^2 drill 1.4mm pad 2.7mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04506UBLC_1x06_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04506UBLC, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 30x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04506UBLC 45Degree pitch 5mm size 30x12.5mm^2 drill 1.4mm pad 2.7mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type701_RT11L02HGLU_1x02_P6.35mm_Horizontal +terminal block Metz Connect Type701_RT11L02HGLU, 2 pins, pitch 6.35mm, size 12.7x12.5mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317011_RT11LxxHGLU_OFF-022798U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type701_RT11L02HGLU pitch 6.35mm size 12.7x12.5mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type701_RT11L03HGLU_1x03_P6.35mm_Horizontal +terminal block Metz Connect Type701_RT11L03HGLU, 3 pins, pitch 6.35mm, size 19x12.5mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317011_RT11LxxHGLU_OFF-022798U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type701_RT11L03HGLU pitch 6.35mm size 19x12.5mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type703_RT10N02HGLU_1x02_P9.52mm_Horizontal +terminal block Metz Connect Type703_RT10N02HGLU, 2 pins, pitch 9.52mm, size 19x12.5mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317031_RT10NxxHGLU_OFF-022897S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type703_RT10N02HGLU pitch 9.52mm size 19x12.5mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type703_RT10N03HGLU_1x03_P9.52mm_Horizontal +terminal block Metz Connect Type703_RT10N03HGLU, 3 pins, pitch 9.52mm, size 28.6x12.5mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317031_RT10NxxHGLU_OFF-022897S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type703_RT10N03HGLU pitch 9.52mm size 28.6x12.5mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Philmore +TerminalBlock_Philmore_TB132_1x02_P5.00mm_Horizontal +Terminal Block Philmore , 2 pins, pitch 5mm, size 10x10.2mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.philmore-datak.com/mc/Page%20197.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Philmore +THT Terminal Block Philmore pitch 5mm size 10x10.2mm^2 drill 1.2mm pad 2.4mm +0 +2 +2 +TerminalBlock_Philmore +TerminalBlock_Philmore_TB133_1x03_P5.00mm_Horizontal +Terminal Block Philmore , 3 pins, pitch 5mm, size 15x10.2mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.philmore-datak.com/mc/Page%20197.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Philmore +THT Terminal Block Philmore pitch 5mm size 15x10.2mm^2 drill 1.2mm pad 2.4mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-2-5.08, 2 pins, pitch 5.08mm, size 10.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-2, 2 pins, pitch 5mm, size 10x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-2 pitch 5mm size 10x9.8mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-3-5.08, 3 pins, pitch 5.08mm, size 15.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-3-5.08 pitch 5.08mm size 15.2x9.8mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-3, 3 pins, pitch 5mm, size 15x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-3 pitch 5mm size 15x9.8mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-4-5.08_1x04_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-4-5.08, 4 pins, pitch 5.08mm, size 20.3x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-4-5.08 pitch 5.08mm size 20.3x9.8mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-4_1x04_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-4, 4 pins, pitch 5mm, size 20x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-4 pitch 5mm size 20x9.8mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-5-5.08_1x05_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-5-5.08, 5 pins, pitch 5.08mm, size 25.4x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-5-5.08 pitch 5.08mm size 25.4x9.8mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-5_1x05_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-5, 5 pins, pitch 5mm, size 25x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-5 pitch 5mm size 25x9.8mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-6-5.08_1x06_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-6-5.08, 6 pins, pitch 5.08mm, size 30.5x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-6-5.08 pitch 5.08mm size 30.5x9.8mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-6_1x06_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-6, 6 pins, pitch 5mm, size 30x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-6 pitch 5mm size 30x9.8mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-7-5.08_1x07_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-7-5.08, 7 pins, pitch 5.08mm, size 35.6x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-7-5.08 pitch 5.08mm size 35.6x9.8mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-7_1x07_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-7, 7 pins, pitch 5mm, size 35x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-7 pitch 5mm size 35x9.8mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-8-5.08_1x08_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-8-5.08, 8 pins, pitch 5.08mm, size 40.6x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-8-5.08 pitch 5.08mm size 40.6x9.8mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-8_1x08_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-8, 8 pins, pitch 5mm, size 40x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-8 pitch 5mm size 40x9.8mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-9-5.08_1x09_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-9-5.08, 9 pins, pitch 5.08mm, size 45.7x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-9-5.08 pitch 5.08mm size 45.7x9.8mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-9_1x09_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-9, 9 pins, pitch 5mm, size 45x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-9 pitch 5mm size 45x9.8mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-10-5.08_1x10_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-10-5.08, 10 pins, pitch 5.08mm, size 50.8x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-10-5.08 pitch 5.08mm size 50.8x9.8mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-10_1x10_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-10, 10 pins, pitch 5mm, size 50x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-10 pitch 5mm size 50x9.8mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-11-5.08_1x11_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-11-5.08, 11 pins, pitch 5.08mm, size 55.9x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-11-5.08 pitch 5.08mm size 55.9x9.8mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-11_1x11_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-11, 11 pins, pitch 5mm, size 55x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-11 pitch 5mm size 55x9.8mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-12-5.08_1x12_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-12-5.08, 12 pins, pitch 5.08mm, size 61x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-12-5.08 pitch 5.08mm size 61x9.8mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-12_1x12_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-12, 12 pins, pitch 5mm, size 60x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-12 pitch 5mm size 60x9.8mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-13-5.08_1x13_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-13-5.08, 13 pins, pitch 5.08mm, size 66x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-13-5.08 pitch 5.08mm size 66x9.8mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-13_1x13_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-13, 13 pins, pitch 5mm, size 65x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-13 pitch 5mm size 65x9.8mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-14-5.08_1x14_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-14-5.08, 14 pins, pitch 5.08mm, size 71.1x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-14-5.08 pitch 5.08mm size 71.1x9.8mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-14_1x14_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-14, 14 pins, pitch 5mm, size 70x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-14 pitch 5mm size 70x9.8mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-15-5.08_1x15_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-15-5.08, 15 pins, pitch 5.08mm, size 76.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-15-5.08 pitch 5.08mm size 76.2x9.8mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-15_1x15_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-15, 15 pins, pitch 5mm, size 75x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-15 pitch 5mm size 75x9.8mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-16-5.08_1x16_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-16-5.08, 16 pins, pitch 5.08mm, size 81.3x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-16-5.08 pitch 5.08mm size 81.3x9.8mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-16_1x16_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-16, 16 pins, pitch 5mm, size 80x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-16 pitch 5mm size 80x9.8mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-2-5.08_1x02_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-2-5.08, 2 pins, pitch 5.08mm, size 10.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-2-5.08 pitch 5.08mm size 10.2x11.2mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-3-5.08_1x03_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-3-5.08, 3 pins, pitch 5.08mm, size 15.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-3-5.08 pitch 5.08mm size 15.2x11.2mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-4-5.08_1x04_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-4-5.08, 4 pins, pitch 5.08mm, size 20.3x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-4-5.08 pitch 5.08mm size 20.3x11.2mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-5-5.08_1x05_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-5-5.08, 5 pins, pitch 5.08mm, size 25.4x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-5-5.08 pitch 5.08mm size 25.4x11.2mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-6-5.08_1x06_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-6-5.08, 6 pins, pitch 5.08mm, size 30.5x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-6-5.08 pitch 5.08mm size 30.5x11.2mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-7-5.08_1x07_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-7-5.08, 7 pins, pitch 5.08mm, size 35.6x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-7-5.08 pitch 5.08mm size 35.6x11.2mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-8-5.08_1x08_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-8-5.08, 8 pins, pitch 5.08mm, size 40.6x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-8-5.08 pitch 5.08mm size 40.6x11.2mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-9-5.08_1x09_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-9-5.08, 9 pins, pitch 5.08mm, size 45.7x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-9-5.08 pitch 5.08mm size 45.7x11.2mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-10-5.08_1x10_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-10-5.08, 10 pins, pitch 5.08mm, size 50.8x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-10-5.08 pitch 5.08mm size 50.8x11.2mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-11-5.08_1x11_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-11-5.08, 11 pins, pitch 5.08mm, size 55.9x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-11-5.08 pitch 5.08mm size 55.9x11.2mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-12-5.08_1x12_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-12-5.08, 12 pins, pitch 5.08mm, size 61x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-12-5.08 pitch 5.08mm size 61x11.2mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-13-5.08_1x13_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-13-5.08, 13 pins, pitch 5.08mm, size 66x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-13-5.08 pitch 5.08mm size 66x11.2mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-14-5.08_1x14_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-14-5.08, 14 pins, pitch 5.08mm, size 71.1x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-14-5.08 pitch 5.08mm size 71.1x11.2mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-15-5.08_1x15_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-15-5.08, 15 pins, pitch 5.08mm, size 76.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-15-5.08 pitch 5.08mm size 76.2x11.2mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-16-5.08_1x16_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-16-5.08, 16 pins, pitch 5.08mm, size 81.3x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-16-5.08 pitch 5.08mm size 81.3x11.2mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-2-2.54, 2 pins, pitch 2.54mm, size 5.54x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-2-2.54 pitch 2.54mm size 5.54x6.2mm^2 drill 1.1mm pad 2.2mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-3-2.54_1x03_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-3-2.54, 3 pins, pitch 2.54mm, size 8.08x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-3-2.54 pitch 2.54mm size 8.08x6.2mm^2 drill 1.1mm pad 2.2mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-4-2.54_1x04_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-4-2.54, 4 pins, pitch 2.54mm, size 10.6x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-4-2.54 pitch 2.54mm size 10.6x6.2mm^2 drill 1.1mm pad 2.2mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-5-2.54_1x05_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-5-2.54, 5 pins, pitch 2.54mm, size 13.2x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-5-2.54 pitch 2.54mm size 13.2x6.2mm^2 drill 1.1mm pad 2.2mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-6-2.54_1x06_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-6-2.54, 6 pins, pitch 2.54mm, size 15.7x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-6-2.54 pitch 2.54mm size 15.7x6.2mm^2 drill 1.1mm pad 2.2mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-7-2.54_1x07_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-7-2.54, 7 pins, pitch 2.54mm, size 18.2x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-7-2.54 pitch 2.54mm size 18.2x6.2mm^2 drill 1.1mm pad 2.2mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-8-2.54_1x08_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-8-2.54, 8 pins, pitch 2.54mm, size 20.8x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-8-2.54 pitch 2.54mm size 20.8x6.2mm^2 drill 1.1mm pad 2.2mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-9-2.54_1x09_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-9-2.54, 9 pins, pitch 2.54mm, size 23.3x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-9-2.54 pitch 2.54mm size 23.3x6.2mm^2 drill 1.1mm pad 2.2mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-10-2.54_1x10_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-10-2.54, 10 pins, pitch 2.54mm, size 25.9x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-10-2.54 pitch 2.54mm size 25.9x6.2mm^2 drill 1.1mm pad 2.2mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-11-2.54_1x11_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-11-2.54, 11 pins, pitch 2.54mm, size 28.4x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-11-2.54 pitch 2.54mm size 28.4x6.2mm^2 drill 1.1mm pad 2.2mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-12-2.54_1x12_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-12-2.54, 12 pins, pitch 2.54mm, size 30.9x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-12-2.54 pitch 2.54mm size 30.9x6.2mm^2 drill 1.1mm pad 2.2mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-2-3.5-H_1x02_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-2-3.5-H, 2 pins, pitch 3.5mm, size 7x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-2-3.5-H pitch 3.5mm size 7x7.6mm^2 drill 1.2mm pad 2.4mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-2-5.0-H_1x02_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-2-5.0-H, 2 pins, pitch 5mm, size 10x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-2-5.0-H pitch 5mm size 10x9mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-3-3.5-H_1x03_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-3-3.5-H, 3 pins, pitch 3.5mm, size 10.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-3-3.5-H pitch 3.5mm size 10.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-3-5.0-H_1x03_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-3-5.0-H, 3 pins, pitch 5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-3-5.0-H pitch 5mm size 15x9mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-4-3.5-H_1x04_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-4-3.5-H, 4 pins, pitch 3.5mm, size 14x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-4-3.5-H pitch 3.5mm size 14x7.6mm^2 drill 1.2mm pad 2.4mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-4-5.0-H_1x04_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-4-5.0-H, 4 pins, pitch 5mm, size 20x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-4-5.0-H pitch 5mm size 20x9mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-5-3.5-H_1x05_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-5-3.5-H, 5 pins, pitch 3.5mm, size 17.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-5-3.5-H pitch 3.5mm size 17.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-5-5.0-H_1x05_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-5-5.0-H, 5 pins, pitch 5mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-5-5.0-H pitch 5mm size 25x9mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-6-3.5-H_1x06_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-6-3.5-H, 6 pins, pitch 3.5mm, size 21x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-6-3.5-H pitch 3.5mm size 21x7.6mm^2 drill 1.2mm pad 2.4mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-6-5.0-H_1x06_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-6-5.0-H, 6 pins, pitch 5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-6-5.0-H pitch 5mm size 30x9mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-7-3.5-H_1x07_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-7-3.5-H, 7 pins, pitch 3.5mm, size 24.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-7-3.5-H pitch 3.5mm size 24.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-7-5.0-H_1x07_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-7-5.0-H, 7 pins, pitch 5mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-7-5.0-H pitch 5mm size 35x9mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-8-3.5-H_1x08_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-8-3.5-H, 8 pins, pitch 3.5mm, size 28x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-8-3.5-H pitch 3.5mm size 28x7.6mm^2 drill 1.2mm pad 2.4mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-8-5.0-H_1x08_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-8-5.0-H, 8 pins, pitch 5mm, size 40x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-8-5.0-H pitch 5mm size 40x9mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-9-3.5-H_1x09_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-9-3.5-H, 9 pins, pitch 3.5mm, size 31.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-9-3.5-H pitch 3.5mm size 31.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-9-5.0-H_1x09_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-9-5.0-H, 9 pins, pitch 5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-9-5.0-H pitch 5mm size 45x9mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-10-3.5-H_1x10_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-10-3.5-H, 10 pins, pitch 3.5mm, size 35x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-10-3.5-H pitch 3.5mm size 35x7.6mm^2 drill 1.2mm pad 2.4mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-10-5.0-H_1x10_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-10-5.0-H, 10 pins, pitch 5mm, size 50x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-10-5.0-H pitch 5mm size 50x9mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-11-3.5-H_1x11_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-11-3.5-H, 11 pins, pitch 3.5mm, size 38.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-11-3.5-H pitch 3.5mm size 38.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-11-5.0-H_1x11_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-11-5.0-H, 11 pins, pitch 5mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-11-5.0-H pitch 5mm size 55x9mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-12-3.5-H_1x12_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-12-3.5-H, 12 pins, pitch 3.5mm, size 42x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-12-3.5-H pitch 3.5mm size 42x7.6mm^2 drill 1.2mm pad 2.4mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-12-5.0-H_1x12_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-12-5.0-H, 12 pins, pitch 5mm, size 60x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-12-5.0-H pitch 5mm size 60x9mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-13-3.5-H_1x13_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-13-3.5-H, 13 pins, pitch 3.5mm, size 45.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-13-3.5-H pitch 3.5mm size 45.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-13-5.0-H_1x13_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-13-5.0-H, 13 pins, pitch 5mm, size 65x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-13-5.0-H pitch 5mm size 65x9mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-14-3.5-H_1x14_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-14-3.5-H, 14 pins, pitch 3.5mm, size 49x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-14-3.5-H pitch 3.5mm size 49x7.6mm^2 drill 1.2mm pad 2.4mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-14-5.0-H_1x14_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-14-5.0-H, 14 pins, pitch 5mm, size 70x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-14-5.0-H pitch 5mm size 70x9mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-15-3.5-H_1x15_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-15-3.5-H, 15 pins, pitch 3.5mm, size 52.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-15-3.5-H pitch 3.5mm size 52.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-15-5.0-H_1x15_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-15-5.0-H, 15 pins, pitch 5mm, size 75x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-15-5.0-H pitch 5mm size 75x9mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-16-3.5-H_1x16_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-16-3.5-H, 16 pins, pitch 3.5mm, size 56x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-16-3.5-H pitch 3.5mm size 56x7.6mm^2 drill 1.2mm pad 2.4mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-16-5.0-H_1x16_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-16-5.0-H, 16 pins, pitch 5mm, size 80x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-16-5.0-H pitch 5mm size 80x9mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-2,5-V-SMD_1x02-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 2 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814702/pdf +PhoenixContact PTSM0.5 2 2.5mm vertical SMD spring clamp terminal block connector +0 +4 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-2.5-H-THR_1x02_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-2-2.5-H-THR, 2 pins, pitch 2.5mm, size 7.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-2-2.5-H-THR pitch 2.5mm size 7.2x10mm^2 drill 1.2mm pad 3mm +0 +4 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-2.5-V-THR_1x02_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-2-2.5-V-THR, vertical (cable from top), 2 pins, pitch 2.5mm, size 5.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-2-2.5-V-THR vertical pitch 2.5mm size 5.5x5mm^2 drill 1.2mm pad 2mm +0 +4 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-HV-2.5-SMD_1x02-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 2 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778696/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +4 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-2,5-V-SMD_1x03-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 3 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814715/pdf +PhoenixContact PTSM0.5 3 2.5mm vertical SMD spring clamp terminal block connector +0 +5 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-2.5-H-THR_1x03_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-3-2.5-H-THR, 3 pins, pitch 2.5mm, size 9.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-3-2.5-H-THR pitch 2.5mm size 9.7x10mm^2 drill 1.2mm pad 3mm +0 +6 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-2.5-V-THR_1x03_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-3-2.5-V-THR, vertical (cable from top), 3 pins, pitch 2.5mm, size 8x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-3-2.5-V-THR vertical pitch 2.5mm size 8x5mm^2 drill 1.2mm pad 2mm +0 +6 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-HV-2.5-SMD_1x03-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 3 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778706/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +5 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-2,5-V-SMD_1x04-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 4 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814728/pdf +PhoenixContact PTSM0.5 4 2.5mm vertical SMD spring clamp terminal block connector +0 +6 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-2.5-H-THR_1x04_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-4-2.5-H-THR, 4 pins, pitch 2.5mm, size 12.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-4-2.5-H-THR pitch 2.5mm size 12.2x10mm^2 drill 1.2mm pad 3mm +0 +8 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-2.5-V-THR_1x04_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-4-2.5-V-THR, vertical (cable from top), 4 pins, pitch 2.5mm, size 10.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-4-2.5-V-THR vertical pitch 2.5mm size 10.5x5mm^2 drill 1.2mm pad 2mm +0 +8 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-HV-2.5-SMD_1x04-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 4 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778719/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +4 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-2,5-V-SMD_1x05-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 5 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814731/pdf +PhoenixContact PTSM0.5 5 2.5mm vertical SMD spring clamp terminal block connector +0 +7 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-2.5-H-THR_1x05_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-5-2.5-H-THR, 5 pins, pitch 2.5mm, size 14.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-5-2.5-H-THR pitch 2.5mm size 14.7x10mm^2 drill 1.2mm pad 3mm +0 +10 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-2.5-V-THR_1x05_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-5-2.5-V-THR, vertical (cable from top), 5 pins, pitch 2.5mm, size 13x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-5-2.5-V-THR vertical pitch 2.5mm size 13x5mm^2 drill 1.2mm pad 2mm +0 +10 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-HV-2.5-SMD_1x05-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 5 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778722/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +7 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-2,5-V-SMD_1x06-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 6 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814744/pdf +PhoenixContact PTSM0.5 6 2.5mm vertical SMD spring clamp terminal block connector +0 +8 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-2.5-H-THR_1x06_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-6-2.5-H-THR, 6 pins, pitch 2.5mm, size 17.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-6-2.5-H-THR pitch 2.5mm size 17.2x10mm^2 drill 1.2mm pad 3mm +0 +12 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-2.5-V-THR_1x06_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-6-2.5-V-THR, vertical (cable from top), 6 pins, pitch 2.5mm, size 15.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-6-2.5-V-THR vertical pitch 2.5mm size 15.5x5mm^2 drill 1.2mm pad 2mm +0 +12 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-HV-2.5-SMD_1x06-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 6 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778735/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +8 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-2,5-V-SMD_1x07-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 7 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814757/pdf +PhoenixContact PTSM0.5 7 2.5mm vertical SMD spring clamp terminal block connector +0 +9 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-2.5-H-THR_1x07_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-7-2.5-H-THR, 7 pins, pitch 2.5mm, size 19.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-7-2.5-H-THR pitch 2.5mm size 19.7x10mm^2 drill 1.2mm pad 3mm +0 +14 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-2.5-V-THR_1x07_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-7-2.5-V-THR, vertical (cable from top), 7 pins, pitch 2.5mm, size 18x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-7-2.5-V-THR vertical pitch 2.5mm size 18x5mm^2 drill 1.2mm pad 2mm +0 +14 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-HV-2.5-SMD_1x07-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 7 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778748/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +9 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-2,5-V-SMD_1x08-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 8 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814760/pdf +PhoenixContact PTSM0.5 8 2.5mm vertical SMD spring clamp terminal block connector +0 +10 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-2.5-H-THR_1x08_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-8-2.5-H-THR, 8 pins, pitch 2.5mm, size 22.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-8-2.5-H-THR pitch 2.5mm size 22.2x10mm^2 drill 1.2mm pad 3mm +0 +16 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-2.5-V-THR_1x08_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-8-2.5-V-THR, vertical (cable from top), 8 pins, pitch 2.5mm, size 20.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-8-2.5-V-THR vertical pitch 2.5mm size 20.5x5mm^2 drill 1.2mm pad 2mm +0 +16 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-HV-2.5-SMD_1x08-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 8 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778751/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +10 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00001_1x02_P5.00mm_Horizontal +terminal block RND 205-00001, 2 pins, pitch 5mm, size 10x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00001 pitch 5mm size 10x9mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00002_1x03_P5.00mm_Horizontal +terminal block RND 205-00002, 3 pins, pitch 5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00002 pitch 5mm size 15x9mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00003_1x04_P5.00mm_Horizontal +terminal block RND 205-00003, 4 pins, pitch 5mm, size 20x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00003 pitch 5mm size 20x9mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00004_1x05_P5.00mm_Horizontal +terminal block RND 205-00004, 5 pins, pitch 5mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00004 pitch 5mm size 25x9mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00005_1x06_P5.00mm_Horizontal +terminal block RND 205-00005, 6 pins, pitch 5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00005 pitch 5mm size 30x9mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00006_1x07_P5.00mm_Horizontal +terminal block RND 205-00006, 7 pins, pitch 5mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00006 pitch 5mm size 35x9mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00007_1x08_P5.00mm_Horizontal +terminal block RND 205-00007, 8 pins, pitch 5mm, size 40x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00007 pitch 5mm size 40x9mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00008_1x09_P5.00mm_Horizontal +terminal block RND 205-00008, 9 pins, pitch 5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00008 pitch 5mm size 45x9mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00009_1x10_P5.00mm_Horizontal +terminal block RND 205-00009, 10 pins, pitch 5mm, size 50x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00009 pitch 5mm size 50x9mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00010_1x11_P5.00mm_Horizontal +terminal block RND 205-00010, 11 pins, pitch 5mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00010 pitch 5mm size 55x9mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00011_1x12_P5.00mm_Horizontal +terminal block RND 205-00011, 12 pins, pitch 5mm, size 60x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00011 pitch 5mm size 60x9mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00012_1x02_P5.00mm_Horizontal +terminal block RND 205-00012, 2 pins, pitch 5mm, size 10x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00012 pitch 5mm size 10x7.6mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00013_1x03_P5.00mm_Horizontal +terminal block RND 205-00013, 3 pins, pitch 5mm, size 15x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00013 pitch 5mm size 15x7.6mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00014_1x04_P5.00mm_Horizontal +terminal block RND 205-00014, 4 pins, pitch 5mm, size 20x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00014 pitch 5mm size 20x7.6mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00015_1x05_P5.00mm_Horizontal +terminal block RND 205-00015, 5 pins, pitch 5mm, size 25x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00015 pitch 5mm size 25x7.6mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00016_1x06_P5.00mm_Horizontal +terminal block RND 205-00016, 6 pins, pitch 5mm, size 30x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00016 pitch 5mm size 30x7.6mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00017_1x07_P5.00mm_Horizontal +terminal block RND 205-00017, 7 pins, pitch 5mm, size 35x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00017 pitch 5mm size 35x7.6mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00018_1x08_P5.00mm_Horizontal +terminal block RND 205-00018, 8 pins, pitch 5mm, size 40x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00018 pitch 5mm size 40x7.6mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00019_1x09_P5.00mm_Horizontal +terminal block RND 205-00019, 9 pins, pitch 5mm, size 45x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00019 pitch 5mm size 45x7.6mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00020_1x10_P5.00mm_Horizontal +terminal block RND 205-00020, 10 pins, pitch 5mm, size 50x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00020 pitch 5mm size 50x7.6mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00021_1x11_P5.00mm_Horizontal +terminal block RND 205-00021, 11 pins, pitch 5mm, size 55x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00021 pitch 5mm size 55x7.6mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00022_1x12_P5.00mm_Horizontal +terminal block RND 205-00022, 12 pins, pitch 5mm, size 60x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00022 pitch 5mm size 60x7.6mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00023_1x02_P10.00mm_Horizontal +terminal block RND 205-00023, 2 pins, pitch 10mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00023 pitch 10mm size 15x9mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00024_1x03_P10.00mm_Horizontal +terminal block RND 205-00024, 3 pins, pitch 10mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00024 pitch 10mm size 25x9mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00025_1x04_P10.00mm_Horizontal +terminal block RND 205-00025, 4 pins, pitch 10mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00025 pitch 10mm size 35x9mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00026_1x05_P10.00mm_Horizontal +terminal block RND 205-00026, 5 pins, pitch 10mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00026 pitch 10mm size 45x9mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00027_1x06_P10.00mm_Horizontal +terminal block RND 205-00027, 6 pins, pitch 10mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00027 pitch 10mm size 55x9mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00028_1x07_P10.00mm_Horizontal +terminal block RND 205-00028, 7 pins, pitch 10mm, size 65x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00028 pitch 10mm size 65x9mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00029_1x08_P10.00mm_Horizontal +terminal block RND 205-00029, 8 pins, pitch 10mm, size 75x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00029 pitch 10mm size 75x9mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00030_1x09_P10.00mm_Horizontal +terminal block RND 205-00030, 9 pins, pitch 10mm, size 85x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00030 pitch 10mm size 85x9mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00031_1x10_P10.00mm_Horizontal +terminal block RND 205-00031, 10 pins, pitch 10mm, size 95x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00031 pitch 10mm size 95x9mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00032_1x11_P10.00mm_Horizontal +terminal block RND 205-00032, 11 pins, pitch 10mm, size 105x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00032 pitch 10mm size 105x9mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00033_1x12_P10.00mm_Horizontal +terminal block RND 205-00033, 12 pins, pitch 10mm, size 115x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00033 pitch 10mm size 115x9mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00045_1x02_P5.00mm_Horizontal +terminal block RND 205-00045, 2 pins, pitch 5mm, size 10x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00045 pitch 5mm size 10x8.1mm^2 drill 1.1mm pad 2.1mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00046_1x03_P5.00mm_Horizontal +terminal block RND 205-00046, 3 pins, pitch 5mm, size 15x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00046 pitch 5mm size 15x8.1mm^2 drill 1.1mm pad 2.1mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00047_1x04_P5.00mm_Horizontal +terminal block RND 205-00047, 4 pins, pitch 5mm, size 20x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00047 pitch 5mm size 20x8.1mm^2 drill 1.1mm pad 2.1mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00048_1x05_P5.00mm_Horizontal +terminal block RND 205-00048, 5 pins, pitch 5mm, size 25x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00048 pitch 5mm size 25x8.1mm^2 drill 1.1mm pad 2.1mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00049_1x06_P5.00mm_Horizontal +terminal block RND 205-00049, 6 pins, pitch 5mm, size 30x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00049 pitch 5mm size 30x8.1mm^2 drill 1.1mm pad 2.1mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00050_1x07_P5.00mm_Horizontal +terminal block RND 205-00050, 7 pins, pitch 5mm, size 35x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00050 pitch 5mm size 35x8.1mm^2 drill 1.1mm pad 2.1mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00051_1x08_P5.00mm_Horizontal +terminal block RND 205-00051, 8 pins, pitch 5mm, size 40x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00051 pitch 5mm size 40x8.1mm^2 drill 1.1mm pad 2.1mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00052_1x09_P5.00mm_Horizontal +terminal block RND 205-00052, 9 pins, pitch 5mm, size 45x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00052 pitch 5mm size 45x8.1mm^2 drill 1.1mm pad 2.1mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00053_1x10_P5.00mm_Horizontal +terminal block RND 205-00053, 10 pins, pitch 5mm, size 50x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00053 pitch 5mm size 50x8.1mm^2 drill 1.1mm pad 2.1mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00054_1x11_P5.00mm_Horizontal +terminal block RND 205-00054, 11 pins, pitch 5mm, size 55x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00054 pitch 5mm size 55x8.1mm^2 drill 1.1mm pad 2.1mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00055_1x12_P5.00mm_Horizontal +terminal block RND 205-00055, 12 pins, pitch 5mm, size 60x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00055 pitch 5mm size 60x8.1mm^2 drill 1.1mm pad 2.1mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00056_1x02_P5.00mm_45Degree +terminal block RND 205-00056, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 10x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00056 45Degree pitch 5mm size 10x12.6mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00057_1x03_P5.00mm_45Degree +terminal block RND 205-00057, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 15x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00057 45Degree pitch 5mm size 15x12.6mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00058_1x04_P5.00mm_45Degree +terminal block RND 205-00058, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 20x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00058 45Degree pitch 5mm size 20x12.6mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00059_1x05_P5.00mm_45Degree +terminal block RND 205-00059, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 25x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00059 45Degree pitch 5mm size 25x12.6mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00060_1x06_P5.00mm_45Degree +terminal block RND 205-00060, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 30x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00060 45Degree pitch 5mm size 30x12.6mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00061_1x07_P5.00mm_45Degree +terminal block RND 205-00061, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 35x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00061 45Degree pitch 5mm size 35x12.6mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00062_1x08_P5.00mm_45Degree +terminal block RND 205-00062, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 40x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00062 45Degree pitch 5mm size 40x12.6mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00063_1x09_P5.00mm_45Degree +terminal block RND 205-00063, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 45x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00063 45Degree pitch 5mm size 45x12.6mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00064_1x10_P5.00mm_45Degree +terminal block RND 205-00064, 45Degree (cable under 45degree), 10 pins, pitch 5mm, size 50x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00064 45Degree pitch 5mm size 50x12.6mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00065_1x11_P5.00mm_45Degree +terminal block RND 205-00065, 45Degree (cable under 45degree), 11 pins, pitch 5mm, size 55x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00065 45Degree pitch 5mm size 55x12.6mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00066_1x12_P5.00mm_45Degree +terminal block RND 205-00066, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 60x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00066 45Degree pitch 5mm size 60x12.6mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00067_1x02_P7.50mm_Horizontal +terminal block RND 205-00067, 2 pins, pitch 7.5mm, size 15x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00067 pitch 7.5mm size 15x10.3mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00068_1x03_P7.50mm_Horizontal +terminal block RND 205-00068, 3 pins, pitch 7.5mm, size 22.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00068 pitch 7.5mm size 22.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00069_1x04_P7.50mm_Horizontal +terminal block RND 205-00069, 4 pins, pitch 7.5mm, size 30x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00069 pitch 7.5mm size 30x10.3mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00070_1x05_P7.50mm_Horizontal +terminal block RND 205-00070, 5 pins, pitch 7.5mm, size 37.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00070 pitch 7.5mm size 37.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00071_1x06_P7.50mm_Horizontal +terminal block RND 205-00071, 6 pins, pitch 7.5mm, size 45x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00071 pitch 7.5mm size 45x10.3mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00072_1x07_P7.50mm_Horizontal +terminal block RND 205-00072, 7 pins, pitch 7.5mm, size 52.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00072 pitch 7.5mm size 52.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00073_1x08_P7.50mm_Horizontal +terminal block RND 205-00073, 8 pins, pitch 7.5mm, size 60x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00073 pitch 7.5mm size 60x10.3mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00074_1x09_P7.50mm_Horizontal +terminal block RND 205-00074, 9 pins, pitch 7.5mm, size 67.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00074 pitch 7.5mm size 67.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00075_1x10_P7.50mm_Horizontal +terminal block RND 205-00075, 10 pins, pitch 7.5mm, size 75x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00075 pitch 7.5mm size 75x10.3mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00076_1x11_P7.50mm_Horizontal +terminal block RND 205-00076, 11 pins, pitch 7.5mm, size 82.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00076 pitch 7.5mm size 82.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00077_1x12_P7.50mm_Horizontal +terminal block RND 205-00077, 12 pins, pitch 7.5mm, size 90x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00077 pitch 7.5mm size 90x10.3mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00078_1x02_P10.00mm_Horizontal +terminal block RND 205-00078, 2 pins, pitch 10mm, size 15x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00078 pitch 10mm size 15x10.3mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00079_1x03_P10.00mm_Horizontal +terminal block RND 205-00079, 3 pins, pitch 10mm, size 25x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00079 pitch 10mm size 25x10.3mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00080_1x04_P10.00mm_Horizontal +terminal block RND 205-00080, 4 pins, pitch 10mm, size 35x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00080 pitch 10mm size 35x10.3mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00081_1x05_P10.00mm_Horizontal +terminal block RND 205-00081, 5 pins, pitch 10mm, size 45x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00081 pitch 10mm size 45x10.3mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00082_1x06_P10.00mm_Horizontal +terminal block RND 205-00082, 6 pins, pitch 10mm, size 55x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00082 pitch 10mm size 55x10.3mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00083_1x07_P10.00mm_Horizontal +terminal block RND 205-00083, 7 pins, pitch 10mm, size 65x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00083 pitch 10mm size 65x10.3mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00084_1x08_P10.00mm_Horizontal +terminal block RND 205-00084, 8 pins, pitch 10mm, size 75x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00084 pitch 10mm size 75x10.3mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00085_1x09_P10.00mm_Horizontal +terminal block RND 205-00085, 9 pins, pitch 10mm, size 85x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00085 pitch 10mm size 85x10.3mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00086_1x10_P10.00mm_Horizontal +terminal block RND 205-00086, 10 pins, pitch 10mm, size 95x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00086 pitch 10mm size 95x10.3mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00087_1x11_P10.00mm_Horizontal +terminal block RND 205-00087, 11 pins, pitch 10mm, size 105x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00087 pitch 10mm size 105x10.3mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00088_1x12_P10.00mm_Horizontal +terminal block RND 205-00088, 12 pins, pitch 10mm, size 115x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00088 pitch 10mm size 115x10.3mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00232_1x02_P5.08mm_Horizontal +terminal block RND 205-00232, 2 pins, pitch 5.08mm, size 10.2x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00232 pitch 5.08mm size 10.2x8.45mm^2 drill 1.1mm pad 2.1mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00233_1x03_P5.08mm_Horizontal +terminal block RND 205-00233, 3 pins, pitch 5.08mm, size 15.2x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00233 pitch 5.08mm size 15.2x8.45mm^2 drill 1.1mm pad 2.1mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00234_1x04_P5.08mm_Horizontal +terminal block RND 205-00234, 4 pins, pitch 5.08mm, size 20.3x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00234 pitch 5.08mm size 20.3x8.45mm^2 drill 1.1mm pad 2.1mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00235_1x05_P5.08mm_Horizontal +terminal block RND 205-00235, 5 pins, pitch 5.08mm, size 25.4x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00235 pitch 5.08mm size 25.4x8.45mm^2 drill 1.1mm pad 2.1mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00236_1x06_P5.08mm_Horizontal +terminal block RND 205-00236, 6 pins, pitch 5.08mm, size 30.5x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00236 pitch 5.08mm size 30.5x8.45mm^2 drill 1.1mm pad 2.1mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00237_1x07_P5.08mm_Horizontal +terminal block RND 205-00237, 7 pins, pitch 5.08mm, size 35.6x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00237 pitch 5.08mm size 35.6x8.45mm^2 drill 1.1mm pad 2.1mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00238_1x08_P5.08mm_Horizontal +terminal block RND 205-00238, 8 pins, pitch 5.08mm, size 40.6x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00238 pitch 5.08mm size 40.6x8.45mm^2 drill 1.1mm pad 2.1mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00239_1x09_P5.08mm_Horizontal +terminal block RND 205-00239, 9 pins, pitch 5.08mm, size 45.7x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00239 pitch 5.08mm size 45.7x8.45mm^2 drill 1.1mm pad 2.1mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00240_1x10_P5.08mm_Horizontal +terminal block RND 205-00240, 10 pins, pitch 5.08mm, size 50.8x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00240 pitch 5.08mm size 50.8x8.45mm^2 drill 1.1mm pad 2.1mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00241_1x02_P10.16mm_Horizontal +terminal block RND 205-00241, 2 pins, pitch 10.2mm, size 15.2x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00241 pitch 10.2mm size 15.2x8.3mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00242_1x03_P10.16mm_Horizontal +terminal block RND 205-00242, 3 pins, pitch 10.2mm, size 25.4x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00242 pitch 10.2mm size 25.4x8.3mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00243_1x04_P10.16mm_Horizontal +terminal block RND 205-00243, 4 pins, pitch 10.2mm, size 35.6x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00243 pitch 10.2mm size 35.6x8.3mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00244_1x05_P10.16mm_Horizontal +terminal block RND 205-00244, 5 pins, pitch 10.2mm, size 45.7x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00244 pitch 10.2mm size 45.7x8.3mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00245_1x06_P10.16mm_Horizontal +terminal block RND 205-00245, 6 pins, pitch 10.2mm, size 55.9x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00245 pitch 10.2mm size 55.9x8.3mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00246_1x07_P10.16mm_Horizontal +terminal block RND 205-00246, 7 pins, pitch 10.2mm, size 66x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00246 pitch 10.2mm size 66x8.3mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00247_1x08_P10.16mm_Horizontal +terminal block RND 205-00247, 8 pins, pitch 10.2mm, size 76.2x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00247 pitch 10.2mm size 76.2x8.3mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00248_1x09_P10.16mm_Horizontal +terminal block RND 205-00248, 9 pins, pitch 10.2mm, size 86.4x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00248 pitch 10.2mm size 86.4x8.3mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00249_1x10_P10.16mm_Horizontal +terminal block RND 205-00249, 10 pins, pitch 10.2mm, size 96.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00249 pitch 10.2mm size 96.5x8.3mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00250_1x11_P10.16mm_Horizontal +terminal block RND 205-00250, 11 pins, pitch 10.2mm, size 107x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00250 pitch 10.2mm size 107x8.3mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00251_1x12_P10.16mm_Horizontal +terminal block RND 205-00251, 12 pins, pitch 10.2mm, size 117x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00251 pitch 10.2mm size 117x8.3mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00276_1x02_P5.00mm_Vertical +terminal block RND 205-00078, vertical (cable from top), 2 pins, pitch 5mm, size 10x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00078 vertical pitch 5mm size 10x10mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00277_1x03_P5.00mm_Vertical +terminal block RND 205-00079, vertical (cable from top), 3 pins, pitch 5mm, size 15x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00079 vertical pitch 5mm size 15x10mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00278_1x04_P5.00mm_Vertical +terminal block RND 205-00080, vertical (cable from top), 4 pins, pitch 5mm, size 20x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00080 vertical pitch 5mm size 20x10mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00279_1x05_P5.00mm_Vertical +terminal block RND 205-00081, vertical (cable from top), 5 pins, pitch 5mm, size 25x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00081 vertical pitch 5mm size 25x10mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00280_1x06_P5.00mm_Vertical +terminal block RND 205-00082, vertical (cable from top), 6 pins, pitch 5mm, size 30x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00082 vertical pitch 5mm size 30x10mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00281_1x07_P5.00mm_Vertical +terminal block RND 205-00083, vertical (cable from top), 7 pins, pitch 5mm, size 35x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00083 vertical pitch 5mm size 35x10mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00282_1x08_P5.00mm_Vertical +terminal block RND 205-00084, vertical (cable from top), 8 pins, pitch 5mm, size 40x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00084 vertical pitch 5mm size 40x10mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00283_1x09_P5.00mm_Vertical +terminal block RND 205-00085, vertical (cable from top), 9 pins, pitch 5mm, size 45x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00085 vertical pitch 5mm size 45x10mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00284_1x10_P5.00mm_Vertical +terminal block RND 205-00086, vertical (cable from top), 10 pins, pitch 5mm, size 50x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00086 vertical pitch 5mm size 50x10mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00285_1x11_P5.00mm_Vertical +terminal block RND 205-00087, vertical (cable from top), 11 pins, pitch 5mm, size 55x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00087 vertical pitch 5mm size 55x10mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00286_1x12_P5.00mm_Vertical +terminal block RND 205-00088, vertical (cable from top), 12 pins, pitch 5mm, size 60x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00088 vertical pitch 5mm size 60x10mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00287_1x02_P5.08mm_Horizontal +terminal block RND 205-00287, 2 pins, pitch 5.08mm, size 10.2x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00287 pitch 5.08mm size 10.2x10.6mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00288_1x03_P5.08mm_Horizontal +terminal block RND 205-00288, 3 pins, pitch 5.08mm, size 15.2x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00288 pitch 5.08mm size 15.2x10.6mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00289_1x04_P5.08mm_Horizontal +terminal block RND 205-00289, 4 pins, pitch 5.08mm, size 20.3x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00289 pitch 5.08mm size 20.3x10.6mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00290_1x05_P5.08mm_Horizontal +terminal block RND 205-00290, 5 pins, pitch 5.08mm, size 25.4x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00290 pitch 5.08mm size 25.4x10.6mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00291_1x06_P5.08mm_Horizontal +terminal block RND 205-00291, 6 pins, pitch 5.08mm, size 30.5x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00291 pitch 5.08mm size 30.5x10.6mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00292_1x07_P5.08mm_Horizontal +terminal block RND 205-00292, 7 pins, pitch 5.08mm, size 35.6x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00292 pitch 5.08mm size 35.6x10.6mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00293_1x08_P5.08mm_Horizontal +terminal block RND 205-00293, 8 pins, pitch 5.08mm, size 40.6x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00293 pitch 5.08mm size 40.6x10.6mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00294_1x09_P5.08mm_Horizontal +terminal block RND 205-00294, 9 pins, pitch 5.08mm, size 45.7x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00294 pitch 5.08mm size 45.7x10.6mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00295_1x10_P5.08mm_Horizontal +terminal block RND 205-00295, 10 pins, pitch 5.08mm, size 50.8x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00295 pitch 5.08mm size 50.8x10.6mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00296_1x11_P5.08mm_Horizontal +terminal block RND 205-00296, 11 pins, pitch 5.08mm, size 55.9x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00296 pitch 5.08mm size 55.9x10.6mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00297_1x12_P5.08mm_Horizontal +terminal block RND 205-00297, 12 pins, pitch 5.08mm, size 61x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00297 pitch 5.08mm size 61x10.6mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00298_1x02_P10.00mm_Horizontal +terminal block RND 205-00298, 2 pins, pitch 10mm, size 15x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00298 pitch 10mm size 15x8.1mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00299_1x03_P10.00mm_Horizontal +terminal block RND 205-00299, 3 pins, pitch 10mm, size 25x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00299 pitch 10mm size 25x8.1mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00300_1x04_P10.00mm_Horizontal +terminal block RND 205-00300, 4 pins, pitch 10mm, size 35x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00300 pitch 10mm size 35x8.1mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00301_1x05_P10.00mm_Horizontal +terminal block RND 205-00301, 5 pins, pitch 10mm, size 45x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00301 pitch 10mm size 45x8.1mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00302_1x06_P10.00mm_Horizontal +terminal block RND 205-00302, 6 pins, pitch 10mm, size 55x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00302 pitch 10mm size 55x8.1mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00303_1x07_P10.00mm_Horizontal +terminal block RND 205-00303, 7 pins, pitch 10mm, size 65x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00303 pitch 10mm size 65x8.1mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00304_1x08_P10.00mm_Horizontal +terminal block RND 205-00304, 8 pins, pitch 10mm, size 75x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00304 pitch 10mm size 75x8.1mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00305_1x09_P10.00mm_Horizontal +terminal block RND 205-00305, 9 pins, pitch 10mm, size 85x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00305 pitch 10mm size 85x8.1mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00306_1x10_P10.00mm_Horizontal +terminal block RND 205-00306, 10 pins, pitch 10mm, size 95x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00306 pitch 10mm size 95x8.1mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00307_1x11_P10.00mm_Horizontal +terminal block RND 205-00307, 11 pins, pitch 10mm, size 105x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00307 pitch 10mm size 105x8.1mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00308_1x12_P10.00mm_Horizontal +terminal block RND 205-00308, 12 pins, pitch 10mm, size 115x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00308 pitch 10mm size 115x8.1mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_1-282834-0_1x10_P2.54mm_Horizontal +Terminal Block TE 1-282834-0, 10 pins, pitch 2.54mm, size 25.86x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-0 pitch 2.54mm size 25.86x6.5mm^2 drill 1.1mm pad 2.1mm +0 +10 +10 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_1-282834-1_1x11_P2.54mm_Horizontal +Terminal Block TE 1-282834-1, 11 pins, pitch 2.54mm, size 28.4x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-1 pitch 2.54mm size 28.4x6.5mm^2 drill 1.1mm pad 2.1mm +0 +11 +11 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_1-282834-2_1x12_P2.54mm_Horizontal +Terminal Block TE 1-282834-2, 12 pins, pitch 2.54mm, size 30.94x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-2 pitch 2.54mm size 30.94x6.5mm^2 drill 1.1mm pad 2.1mm +0 +12 +12 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-2_1x02_P2.54mm_Horizontal +Terminal Block TE 282834-2, 2 pins, pitch 2.54mm, size 5.54x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-2 pitch 2.54mm size 5.54x6.5mm^2 drill 1.1mm pad 2.1mm +0 +2 +2 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal +Terminal Block TE 282834-3, 3 pins, pitch 2.54mm, size 8.08x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-3 pitch 2.54mm size 8.08x6.5mm^2 drill 1.1mm pad 2.1mm +0 +3 +3 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-4_1x04_P2.54mm_Horizontal +Terminal Block TE 282834-4, 4 pins, pitch 2.54mm, size 10.620000000000001x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-4 pitch 2.54mm size 10.620000000000001x6.5mm^2 drill 1.1mm pad 2.1mm +0 +4 +4 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-5_1x05_P2.54mm_Horizontal +Terminal Block TE 282834-5, 5 pins, pitch 2.54mm, size 13.16x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-5 pitch 2.54mm size 13.16x6.5mm^2 drill 1.1mm pad 2.1mm +0 +5 +5 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-6_1x06_P2.54mm_Horizontal +Terminal Block TE 282834-6, 6 pins, pitch 2.54mm, size 15.7x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-6 pitch 2.54mm size 15.7x6.5mm^2 drill 1.1mm pad 2.1mm +0 +6 +6 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-7_1x07_P2.54mm_Horizontal +Terminal Block TE 282834-7, 7 pins, pitch 2.54mm, size 18.240000000000002x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-7 pitch 2.54mm size 18.240000000000002x6.5mm^2 drill 1.1mm pad 2.1mm +0 +7 +7 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-8_1x08_P2.54mm_Horizontal +Terminal Block TE 282834-8, 8 pins, pitch 2.54mm, size 20.78x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-8 pitch 2.54mm size 20.78x6.5mm^2 drill 1.1mm pad 2.1mm +0 +8 +8 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-9_1x09_P2.54mm_Horizontal +Terminal Block TE 282834-9, 9 pins, pitch 2.54mm, size 23.32x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-9 pitch 2.54mm size 23.32x6.5mm^2 drill 1.1mm pad 2.1mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-502_2x02_P2.54mm +Terminal Block Wago 233-502, 2 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-502 +THT +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-503_2x03_P2.54mm +Terminal Block Wago 233-503, 3 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-503 +THT +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-504_2x04_P2.54mm +Terminal Block Wago 233-504, 4 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-504 +THT +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-505_2x05_P2.54mm +Terminal Block Wago 233-505, 5 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-505 +THT +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-506_2x06_P2.54mm +Terminal Block Wago 233-506, 6 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-506 +THT +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-507_2x07_P2.54mm +Terminal Block Wago 233-507, 7 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-507 +THT +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-508_2x08_P2.54mm +Terminal Block Wago 233-508, 8 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-508 +THT +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-509_2x09_P2.54mm +Terminal Block Wago 233-509, 9 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-509 +THT +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-510_2x10_P2.54mm +Terminal Block Wago 233-510, 10 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-510 +THT +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-512_2x12_P2.54mm +Terminal Block Wago 233-512, 12 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-512 +THT +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-101_1x01_P5.00mm_45Degree +Terminal Block WAGO 236-101, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 7.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-101 45Degree pitch 5mm size 7.3x14mm^2 drill 1.15mm pad 3mm +0 +1 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-102_1x02_P5.00mm_45Degree +Terminal Block WAGO 236-102, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-102 45Degree pitch 5mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-103_1x03_P5.00mm_45Degree +Terminal Block WAGO 236-103, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-103 45Degree pitch 5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +3 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-104_1x04_P5.00mm_45Degree +Terminal Block WAGO 236-104, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-104 45Degree pitch 5mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-105_1x05_P5.00mm_45Degree +Terminal Block WAGO 236-105, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 27.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-105 45Degree pitch 5mm size 27.3x14mm^2 drill 1.15mm pad 3mm +0 +5 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-106_1x06_P5.00mm_45Degree +Terminal Block WAGO 236-106, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-106 45Degree pitch 5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-107_1x07_P5.00mm_45Degree +Terminal Block WAGO 236-107, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 37.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-107 45Degree pitch 5mm size 37.3x14mm^2 drill 1.15mm pad 3mm +0 +7 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-108_1x08_P5.00mm_45Degree +Terminal Block WAGO 236-108, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-108 45Degree pitch 5mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-109_1x09_P5.00mm_45Degree +Terminal Block WAGO 236-109, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-109 45Degree pitch 5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-112_1x12_P5.00mm_45Degree +Terminal Block WAGO 236-112, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-112 45Degree pitch 5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-114_1x14_P5.00mm_45Degree +Terminal Block WAGO 236-114, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 72.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-114 45Degree pitch 5mm size 72.3x14mm^2 drill 1.15mm pad 3mm +0 +14 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-116_1x16_P5.00mm_45Degree +Terminal Block WAGO 236-116, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-116 45Degree pitch 5mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-124_1x24_P5.00mm_45Degree +Terminal Block WAGO 236-124, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-124 45Degree pitch 5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +24 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-136_1x36_P5.00mm_45Degree +Terminal Block WAGO 236-136, 45Degree (cable under 45degree), 36 pins, pitch 5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-136 45Degree pitch 5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +36 +36 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-148_1x48_P5.00mm_45Degree +Terminal Block WAGO 236-148, 45Degree (cable under 45degree), 48 pins, pitch 5mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-148 45Degree pitch 5mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +48 +48 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-201_1x01_P7.50mm_45Degree +Terminal Block WAGO 236-201, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 9.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-201 45Degree pitch 7.5mm size 9.8x14mm^2 drill 1.15mm pad 3mm +0 +1 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-202_1x02_P7.50mm_45Degree +Terminal Block WAGO 236-202, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-202 45Degree pitch 7.5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-203_1x03_P7.50mm_45Degree +Terminal Block WAGO 236-203, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 24.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-203 45Degree pitch 7.5mm size 24.8x14mm^2 drill 1.15mm pad 3mm +0 +3 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-204_1x04_P7.50mm_45Degree +Terminal Block WAGO 236-204, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-204 45Degree pitch 7.5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-205_1x05_P7.50mm_45Degree +Terminal Block WAGO 236-205, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 39.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-205 45Degree pitch 7.5mm size 39.8x14mm^2 drill 1.15mm pad 3mm +0 +5 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-206_1x06_P7.50mm_45Degree +Terminal Block WAGO 236-206, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-206 45Degree pitch 7.5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-207_1x07_P7.50mm_45Degree +Terminal Block WAGO 236-207, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 54.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-207 45Degree pitch 7.5mm size 54.8x14mm^2 drill 1.15mm pad 3mm +0 +7 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-208_1x08_P7.50mm_45Degree +Terminal Block WAGO 236-208, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-208 45Degree pitch 7.5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-209_1x09_P7.50mm_45Degree +Terminal Block WAGO 236-209, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 69.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-209 45Degree pitch 7.5mm size 69.8x14mm^2 drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-212_1x12_P7.50mm_45Degree +Terminal Block WAGO 236-212, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-212 45Degree pitch 7.5mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-216_1x16_P7.50mm_45Degree +Terminal Block WAGO 236-216, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-216 45Degree pitch 7.5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +16 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-224_1x24_P7.50mm_45Degree +Terminal Block WAGO 236-224, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-224 45Degree pitch 7.5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +24 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-301_1x01_P10.00mm_45Degree +Terminal Block WAGO 236-301, 45Degree (cable under 45degree), 1 pins, pitch 10mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-301 45Degree pitch 10mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +1 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-302_1x02_P10.00mm_45Degree +Terminal Block WAGO 236-302, 45Degree (cable under 45degree), 2 pins, pitch 10mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-302 45Degree pitch 10mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-303_1x03_P10.00mm_45Degree +Terminal Block WAGO 236-303, 45Degree (cable under 45degree), 3 pins, pitch 10mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-303 45Degree pitch 10mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +3 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-304_1x04_P10.00mm_45Degree +Terminal Block WAGO 236-304, 45Degree (cable under 45degree), 4 pins, pitch 10mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-304 45Degree pitch 10mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-305_1x05_P10.00mm_45Degree +Terminal Block WAGO 236-305, 45Degree (cable under 45degree), 5 pins, pitch 10mm, size 52.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-305 45Degree pitch 10mm size 52.3x14mm^2 drill 1.15mm pad 3mm +0 +5 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-306_1x06_P10.00mm_45Degree +Terminal Block WAGO 236-306, 45Degree (cable under 45degree), 6 pins, pitch 10mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-306 45Degree pitch 10mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-308_1x08_P10.00mm_45Degree +Terminal Block WAGO 236-308, 45Degree (cable under 45degree), 8 pins, pitch 10mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-308 45Degree pitch 10mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-309_1x09_P10.00mm_45Degree +Terminal Block WAGO 236-309, 45Degree (cable under 45degree), 9 pins, pitch 10mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-309 45Degree pitch 10mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-312_1x12_P10.00mm_45Degree +Terminal Block WAGO 236-312, 45Degree (cable under 45degree), 12 pins, pitch 10mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-312 45Degree pitch 10mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-316_1x16_P10.00mm_45Degree +Terminal Block WAGO 236-316, 45Degree (cable under 45degree), 16 pins, pitch 10mm, size 162x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-316 45Degree pitch 10mm size 162x14mm^2 drill 1.15mm pad 3mm +0 +16 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-324_1x24_P10.00mm_45Degree +Terminal Block WAGO 236-324, 45Degree (cable under 45degree), 24 pins, pitch 10mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-324 45Degree pitch 10mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +24 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-401_1x01_P5.00mm_45Degree +Terminal Block WAGO 236-401, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 7.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-401 45Degree pitch 5mm size 7.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-402_1x02_P5.00mm_45Degree +Terminal Block WAGO 236-402, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-402 45Degree pitch 5mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-403_1x03_P5.00mm_45Degree +Terminal Block WAGO 236-403, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-403 45Degree pitch 5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-404_1x04_P5.00mm_45Degree +Terminal Block WAGO 236-404, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-404 45Degree pitch 5mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-405_1x05_P5.00mm_45Degree +Terminal Block WAGO 236-405, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 27.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-405 45Degree pitch 5mm size 27.3x14mm^2 drill 1.15mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-406_1x06_P5.00mm_45Degree +Terminal Block WAGO 236-406, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-406 45Degree pitch 5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-407_1x07_P5.00mm_45Degree +Terminal Block WAGO 236-407, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 37.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-407 45Degree pitch 5mm size 37.3x14mm^2 drill 1.15mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-408_1x08_P5.00mm_45Degree +Terminal Block WAGO 236-408, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-408 45Degree pitch 5mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-409_1x09_P5.00mm_45Degree +Terminal Block WAGO 236-409, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-409 45Degree pitch 5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-412_1x12_P5.00mm_45Degree +Terminal Block WAGO 236-412, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-412 45Degree pitch 5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-414_1x14_P5.00mm_45Degree +Terminal Block WAGO 236-414, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 72.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-414 45Degree pitch 5mm size 72.3x14mm^2 drill 1.15mm pad 3mm +0 +28 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-416_1x16_P5.00mm_45Degree +Terminal Block WAGO 236-416, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-416 45Degree pitch 5mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-424_1x24_P5.00mm_45Degree +Terminal Block WAGO 236-424, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-424 45Degree pitch 5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-436_1x36_P5.00mm_45Degree +Terminal Block WAGO 236-436, 45Degree (cable under 45degree), 36 pins, pitch 5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-436 45Degree pitch 5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +72 +36 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-448_1x48_P5.00mm_45Degree +Terminal Block WAGO 236-448, 45Degree (cable under 45degree), 48 pins, pitch 5mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-448 45Degree pitch 5mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +96 +48 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-501_1x01_P7.50mm_45Degree +Terminal Block WAGO 236-501, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 9.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-501 45Degree pitch 7.5mm size 9.8x14mm^2 drill 1.15mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-502_1x02_P7.50mm_45Degree +Terminal Block WAGO 236-502, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-502 45Degree pitch 7.5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-503_1x03_P7.50mm_45Degree +Terminal Block WAGO 236-503, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 24.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-503 45Degree pitch 7.5mm size 24.8x14mm^2 drill 1.15mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-504_1x04_P7.50mm_45Degree +Terminal Block WAGO 236-504, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-504 45Degree pitch 7.5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-505_1x05_P7.50mm_45Degree +Terminal Block WAGO 236-505, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 39.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-505 45Degree pitch 7.5mm size 39.8x14mm^2 drill 1.15mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-506_1x06_P7.50mm_45Degree +Terminal Block WAGO 236-506, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-506 45Degree pitch 7.5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-507_1x07_P7.50mm_45Degree +Terminal Block WAGO 236-507, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 54.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-507 45Degree pitch 7.5mm size 54.8x14mm^2 drill 1.15mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-508_1x08_P7.50mm_45Degree +Terminal Block WAGO 236-508, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-508 45Degree pitch 7.5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-509_1x09_P7.50mm_45Degree +Terminal Block WAGO 236-509, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 69.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-509 45Degree pitch 7.5mm size 69.8x14mm^2 drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-512_1x12_P7.50mm_45Degree +Terminal Block WAGO 236-512, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-512 45Degree pitch 7.5mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-516_1x16_P7.50mm_45Degree +Terminal Block WAGO 236-516, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-516 45Degree pitch 7.5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-524_1x24_P7.50mm_45Degree +Terminal Block WAGO 236-524, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-524 45Degree pitch 7.5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-601_1x01_P10.00mm_45Degree +Terminal Block WAGO 236-601, 45Degree (cable under 45degree), 1 pins, pitch 10mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-601 45Degree pitch 10mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-602_1x02_P10.00mm_45Degree +Terminal Block WAGO 236-602, 45Degree (cable under 45degree), 2 pins, pitch 10mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-602 45Degree pitch 10mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-603_1x03_P10.00mm_45Degree +Terminal Block WAGO 236-603, 45Degree (cable under 45degree), 3 pins, pitch 10mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-603 45Degree pitch 10mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-604_1x04_P10.00mm_45Degree +Terminal Block WAGO 236-604, 45Degree (cable under 45degree), 4 pins, pitch 10mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-604 45Degree pitch 10mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-605_1x05_P10.00mm_45Degree +Terminal Block WAGO 236-605, 45Degree (cable under 45degree), 5 pins, pitch 10mm, size 52.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-605 45Degree pitch 10mm size 52.3x14mm^2 drill 1.15mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-606_1x06_P10.00mm_45Degree +Terminal Block WAGO 236-606, 45Degree (cable under 45degree), 6 pins, pitch 10mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-606 45Degree pitch 10mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-608_1x08_P10.00mm_45Degree +Terminal Block WAGO 236-608, 45Degree (cable under 45degree), 8 pins, pitch 10mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-608 45Degree pitch 10mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-609_1x09_P10.00mm_45Degree +Terminal Block WAGO 236-609, 45Degree (cable under 45degree), 9 pins, pitch 10mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-609 45Degree pitch 10mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-612_1x12_P10.00mm_45Degree +Terminal Block WAGO 236-612, 45Degree (cable under 45degree), 12 pins, pitch 10mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-612 45Degree pitch 10mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-616_1x16_P10.00mm_45Degree +Terminal Block WAGO 236-616, 45Degree (cable under 45degree), 16 pins, pitch 10mm, size 162x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-616 45Degree pitch 10mm size 162x14mm^2 drill 1.15mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-624_1x24_P10.00mm_45Degree +Terminal Block WAGO 236-624, 45Degree (cable under 45degree), 24 pins, pitch 10mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-624 45Degree pitch 10mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-101_1x01_P5.00mm_45Degree +Terminal Block WAGO 804-101, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 6.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-101 45Degree pitch 5mm size 6.5x15mm^2 drill 1.2mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-102_1x02_P5.00mm_45Degree +Terminal Block WAGO 804-102, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 11.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-102 45Degree pitch 5mm size 11.5x15mm^2 drill 1.2mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-103_1x03_P5.00mm_45Degree +Terminal Block WAGO 804-103, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 16.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-103 45Degree pitch 5mm size 16.5x15mm^2 drill 1.2mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-104_1x04_P5.00mm_45Degree +Terminal Block WAGO 804-104, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 21.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-104 45Degree pitch 5mm size 21.5x15mm^2 drill 1.2mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-105_1x05_P5.00mm_45Degree +Terminal Block WAGO 804-105, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 26.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-105 45Degree pitch 5mm size 26.5x15mm^2 drill 1.2mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-106_1x06_P5.00mm_45Degree +Terminal Block WAGO 804-106, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 31.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-106 45Degree pitch 5mm size 31.5x15mm^2 drill 1.2mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-107_1x07_P5.00mm_45Degree +Terminal Block WAGO 804-107, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 36.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-107 45Degree pitch 5mm size 36.5x15mm^2 drill 1.2mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-108_1x08_P5.00mm_45Degree +Terminal Block WAGO 804-108, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 41.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-108 45Degree pitch 5mm size 41.5x15mm^2 drill 1.2mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-109_1x09_P5.00mm_45Degree +Terminal Block WAGO 804-109, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 46.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-109 45Degree pitch 5mm size 46.5x15mm^2 drill 1.2mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-110_1x10_P5.00mm_45Degree +Terminal Block WAGO 804-110, 45Degree (cable under 45degree), 10 pins, pitch 5mm, size 51.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-110 45Degree pitch 5mm size 51.5x15mm^2 drill 1.2mm pad 3mm +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-111_1x11_P5.00mm_45Degree +Terminal Block WAGO 804-111, 45Degree (cable under 45degree), 11 pins, pitch 5mm, size 56.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-111 45Degree pitch 5mm size 56.5x15mm^2 drill 1.2mm pad 3mm +0 +22 +11 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-112_1x12_P5.00mm_45Degree +Terminal Block WAGO 804-112, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 61.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-112 45Degree pitch 5mm size 61.5x15mm^2 drill 1.2mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-113_1x13_P5.00mm_45Degree +Terminal Block WAGO 804-113, 45Degree (cable under 45degree), 13 pins, pitch 5mm, size 66.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-113 45Degree pitch 5mm size 66.5x15mm^2 drill 1.2mm pad 3mm +0 +26 +13 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-114_1x14_P5.00mm_45Degree +Terminal Block WAGO 804-114, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 71.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-114 45Degree pitch 5mm size 71.5x15mm^2 drill 1.2mm pad 3mm +0 +28 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-115_1x15_P5.00mm_45Degree +Terminal Block WAGO 804-115, 45Degree (cable under 45degree), 15 pins, pitch 5mm, size 76.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-115 45Degree pitch 5mm size 76.5x15mm^2 drill 1.2mm pad 3mm +0 +30 +15 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-116_1x16_P5.00mm_45Degree +Terminal Block WAGO 804-116, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 81.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-116 45Degree pitch 5mm size 81.5x15mm^2 drill 1.2mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-124_1x24_P5.00mm_45Degree +Terminal Block WAGO 804-124, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-124 45Degree pitch 5mm size 122x15mm^2 drill 1.2mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-301_1x01_P7.50mm_45Degree +Terminal Block WAGO 804-301, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 6.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-301 45Degree pitch 7.5mm size 6.5x15mm^2 drill 1.2mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-302_1x02_P7.50mm_45Degree +Terminal Block WAGO 804-302, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 14x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-302 45Degree pitch 7.5mm size 14x15mm^2 drill 1.2mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-303_1x03_P7.50mm_45Degree +Terminal Block WAGO 804-303, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 21.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-303 45Degree pitch 7.5mm size 21.5x15mm^2 drill 1.2mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-304_1x04_P7.50mm_45Degree +Terminal Block WAGO 804-304, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 29x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-304 45Degree pitch 7.5mm size 29x15mm^2 drill 1.2mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-305_1x05_P7.50mm_45Degree +Terminal Block WAGO 804-305, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 36.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-305 45Degree pitch 7.5mm size 36.5x15mm^2 drill 1.2mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-306_1x06_P7.50mm_45Degree +Terminal Block WAGO 804-306, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 44x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-306 45Degree pitch 7.5mm size 44x15mm^2 drill 1.2mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-307_1x07_P7.50mm_45Degree +Terminal Block WAGO 804-307, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 51.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-307 45Degree pitch 7.5mm size 51.5x15mm^2 drill 1.2mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-308_1x08_P7.50mm_45Degree +Terminal Block WAGO 804-308, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 59x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-308 45Degree pitch 7.5mm size 59x15mm^2 drill 1.2mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-309_1x09_P7.50mm_45Degree +Terminal Block WAGO 804-309, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 66.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-309 45Degree pitch 7.5mm size 66.5x15mm^2 drill 1.2mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-310_1x10_P7.50mm_45Degree +Terminal Block WAGO 804-310, 45Degree (cable under 45degree), 10 pins, pitch 7.5mm, size 74x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-310 45Degree pitch 7.5mm size 74x15mm^2 drill 1.2mm pad 3mm +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-311_1x11_P7.50mm_45Degree +Terminal Block WAGO 804-311, 45Degree (cable under 45degree), 11 pins, pitch 7.5mm, size 81.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-311 45Degree pitch 7.5mm size 81.5x15mm^2 drill 1.2mm pad 3mm +0 +22 +11 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-312_1x12_P7.50mm_45Degree +Terminal Block WAGO 804-312, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 89x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-312 45Degree pitch 7.5mm size 89x15mm^2 drill 1.2mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-316_1x16_P7.50mm_45Degree +Terminal Block WAGO 804-316, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 119x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-316 45Degree pitch 7.5mm size 119x15mm^2 drill 1.2mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-324_1x24_P7.50mm_45Degree +Terminal Block WAGO 804-324, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 179x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-324 45Degree pitch 7.5mm size 179x15mm^2 drill 1.2mm pad 3mm +0 +48 +24 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650073_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650073.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650074_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650074.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650094_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650094.pdf) +screw terminal thread redcube thr power connector +0 +16 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650173_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650173.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650174_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650174.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650194_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650194.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650195_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650195.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74655095_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74655095.pdf) +screw terminal thread redcube thr power connector +0 +16 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651173_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651173.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651174_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651174.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651175_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651175.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651194_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651194.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651195_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651195.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TestPoint +TestPoint_2Pads_Pitch2.54mm_Drill0.8mm +Test point with 2 pins, pitch 2.54mm, drill diameter 0.8mm +CONN DEV +0 +2 +2 +TestPoint +TestPoint_2Pads_Pitch5.08mm_Drill1.3mm +Test point with 2 pads, pitch 5.08mm, hole diameter 1.3mm, wire diameter 1.0mm +CONN DEV +0 +2 +2 +TestPoint +TestPoint_Bridge_Pitch2.0mm_Drill0.7mm +wire loop as test point, pitch 2.0mm, hole diameter 0.7mm, wire diameter 0.5mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch2.54mm_Drill0.7mm +wire loop as test point, pitch 2.0mm, hole diameter 0.7mm, wire diameter 0.5mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch2.54mm_Drill1.0mm +wire loop as test point, pitch 2.54mm, hole diameter 1.0mm, wire diameter 0.8mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch2.54mm_Drill1.3mm +wire loop as test point, pitch 2.54mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch3.81mm_Drill1.3mm +wire loop as test point, pitch 3.81mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch5.08mm_Drill0.7mm +wire loop as test point, pitch 5.08mm, hole diameter 0.7mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch5.08mm_Drill1.3mm +wire loop as test point, pitch 5.08mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch6.35mm_Drill1.3mm +wire loop as test point, pitch 6.35mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch7.62mm_Drill1.3mm +wire loop as test point, pitch 7.62mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Keystone_5000-5004_Miniature +Keystone Miniature THM Test Point 5000-5004, http://www.keyelco.com/product-pdf.cfm?p=1309 +Through Hole Mount Test Points +0 +1 +1 +TestPoint +TestPoint_Keystone_5005-5009_Compact +Keystone Miniature THM Test Point 5005-5009, http://www.keyelco.com/product-pdf.cfm?p=1314 +Through Hole Mount Test Points +0 +1 +1 +TestPoint +TestPoint_Keystone_5010-5014_Multipurpose +Keystone Miniature THM Test Point 5010-5014, http://www.keyelco.com/product-pdf.cfm?p=1319 +Through Hole Mount Test Points +0 +1 +1 +TestPoint +TestPoint_Keystone_5015_Micro-Minature +SMT Test Point- Micro Miniature 5015, http://www.keyelco.com/product-pdf.cfm?p=1353 +Test Point +0 +1 +1 +TestPoint +TestPoint_Keystone_5019_Minature +SMT Test Point- Micro Miniature 5019, http://www.keyelco.com/product-pdf.cfm?p=1357 +Test Point +0 +1 +1 +TestPoint +TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded +wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.50mm_Drill1.0mm +wire loop as test point, loop diameter 2.5mm, hole diameter 1.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.50mm_Drill1.0mm_LowProfile +low profile wire loop as test point, loop diameter 2.5mm, hole diameter 1.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.50mm_Drill1.85mm +wire loop as test point, loop diameter 2.5mm, hole diameter 1.85mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.54mm_Drill1.5mm_Beaded +wire loop with bead as test point, loop diameter2.548mm, hole diameter 1.5mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.60mm_Drill0.9mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 0.9mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.60mm_Drill1.4mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 1.4mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.60mm_Drill1.6mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 1.6mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.50mm_Drill0.9mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 0.9mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.50mm_Drill1.4mm_Beaded +wire loop with bead as test point, loop diameter 3.5mm, hole diameter 1.4mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.80mm_Drill2.0mm +wire loop as test point, loop diameter 3.8mm, hole diameter 2.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.80mm_Drill2.5mm +wire loop as test point, loop diameter 3.8mm, hole diameter 2.5mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.80mm_Drill2.8mm +wire loop as test point, loop diameter 3.8mm, hole diameter 2.8mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Pad_1.0x1.0mm +SMD rectangular pad as test Point, square 1.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_1.5x1.5mm +SMD rectangular pad as test Point, square 1.5mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_2.0x2.0mm +SMD rectangular pad as test Point, square 2.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_2.5x2.5mm +SMD rectangular pad as test Point, square 2.5mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_3.0x3.0mm +SMD rectangular pad as test Point, square 3.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_4.0x4.0mm +SMD rectangular pad as test Point, square 4.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_D1.0mm +SMD pad as test Point, diameter 1.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D1.5mm +SMD pad as test Point, diameter 1.5mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D2.0mm +SMD pad as test Point, diameter 2.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D2.5mm +SMD pad as test Point, diameter 2.5mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D3.0mm +SMD pad as test Point, diameter 3.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D4.0mm +SMD pad as test Point, diameter 4.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D2.0mm +Plated Hole as test Point, diameter 2.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D3.0mm +Plated Hole as test Point, diameter 3.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D4.0mm +Plated Hole as test Point, diameter 4.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D5.0mm +Plated Hole as test Point, diameter 5.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_THTPad_1.0x1.0mm_Drill0.5mm +THT rectangular pad as test Point, square 1.0mm side length, hole diameter 0.5mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_1.5x1.5mm_Drill0.7mm +THT rectangular pad as test Point, square 1.5mm side length, hole diameter 0.7mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_2.0x2.0mm_Drill1.0mm +THT rectangular pad as test Point, square 2.0mm_Drill1.0mm side length, hole diameter 1.0mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_2.5x2.5mm_Drill1.2mm +THT rectangular pad as test Point, square 2.5mm side length, hole diameter 1.2mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_3.0x3.0mm_Drill1.5mm +THT rectangular pad as test Point, square 3.0mm side length, hole diameter 1.5mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_4.0x4.0mm_Drill2.0mm +THT rectangular pad as test Point, square 4.0mm side length, hole diameter 2.0mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_D1.0mm_Drill0.5mm +THT pad as test Point, diameter 1.0mm, hole diameter 0.5mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D1.5mm_Drill0.7mm +THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D2.0mm_Drill1.0mm +THT pad as test Point, diameter 2.0mm, hole diameter 1.0mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D2.5mm_Drill1.2mm +THT pad as test Point, diameter 2.5mm, hole diameter 1.2mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D3.0mm_Drill1.5mm +THT pad as test Point, diameter 3.0mm, hole diameter 1.5mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D4.0mm_Drill2.0mm +THT pad as test Point, diameter 4.0mm, hole diameter 2.0mm +test point THT pad +0 +1 +1 +Transformer_SMD +Pulse_P0926NL +SMT Gate Drive Transformer, 1:1:1, 8.0x6.3x5.3mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa0926nl +0 +6 +6 +Transformer_SMD +Pulse_PA1323NL +SMT Gate Drive Transformer, 1:1, 9.5x7.1x5.3mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa1323nl +0 +6 +6 +Transformer_SMD +Pulse_PA2001NL +SMT Gate Drive Transformer, 1:1, 8.6x6.7x2.5mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2001nl pe-68386nl +0 +4 +4 +Transformer_SMD +Pulse_PA2002NL-PA2008NL-PA2009NL +SMT Gate Drive Transformer, 1:1:1 or 2:1:1 or 2.5:1:1 or 1:1, 9.0x8.6x7.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2002nl pa2008nl pa2009nl p0544nl pa0184nl pa0297nl pa0510nl +0 +6 +6 +Transformer_SMD +Pulse_PA2004NL +SMT Gate Drive Transformer, 1:1:1, 8.6x6.7x3.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2004nl pa0264nl +0 +6 +6 +Transformer_SMD +Pulse_PA2005NL +SMT Gate Drive Transformer, 1:1:1, 11.8x8.8x4.0mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2005nl pa0173nl +0 +6 +6 +Transformer_SMD +Pulse_PA2006NL +SMT Gate Drive Transformer, 1:1, 11.8x8.8x4.0mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2006nl pa0186nl +0 +4 +4 +Transformer_SMD +Pulse_PA2007NL +SMT Gate Drive Transformer, 1:1, 9.0x8.6x7.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2007nl +0 +4 +4 +Transformer_SMD +Pulse_PA2777NL +SMT Gate Drive Transformer, 1:1, 7.1x6.1x5.5mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa2777nl +0 +8 +8 +Transformer_SMD +Pulse_PA3493NL +SMT Gate Drive Transformer, 1.25:1, 10.9x9.7x2.7mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa3493nl +0 +4 +4 +Transformer_SMD +Transformer_Coilcraft_CST1 +Current sense transformer, SMD, 8.0x8.13x5.3mm (https://www.coilcraft.com/pdfs/cst.pdf) +Transformer current sense SMD +0 +8 +8 +Transformer_SMD +Transformer_Coilcraft_CST2 +Current sense transformer, SMD, 8.0x8.13x5.3mm (https://www.coilcraft.com/pdfs/cst.pdf) +Transformer current sense SMD +0 +8 +8 +Transformer_SMD +Transformer_Coilcraft_CST2010 +Current sense transformer, SMD, 14.55x19.91x10.50mm (https://www.coilcraft.com/pdfs/cst2010.pdf) +Transformer current sense SMD +0 +12 +12 +Transformer_SMD +Transformer_CurrentSense_8.4x7.2mm +Transformer current sense SMD 8.4x7.2mm +Transformer current sense SMD +0 +8 +8 +Transformer_SMD +Transformer_ED8_4-Lead_10.5x8mm_P5mm +Isolated audio transformer, ED8, 4-lead, body 10.5x8mm body, pitch 5mm, height 5mm, https://gitlab.com/kicad/libraries/kicad-footprints/-/merge_requests/3626 +permalloy core +0 +4 +4 +Transformer_SMD +Transformer_Ethernet_Bel_S558-5999-T7-F +Ethernet Transformer, Bel S558-5999-T7-F, https://www.belfuse.com/resources/ICMs/lan-/S558-5999-T7-F.pdf +Ethernet Transformer +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Bourns_PT61017PEL +https://www.bourns.com/docs/Product-Datasheets/PT61017PEL.pdf +Transformer Ethernet Single Center-Tap +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Bourns_PT61020EL +10/100/1000 Base-T Transformer Module, PT61020EL (https://www.bourns.com/pdfs/PT61020.pdf) +Gigabit PoE Ethernet Transformer Single +0 +24 +24 +Transformer_SMD +Transformer_Ethernet_HALO_TG111-MSC13 +Transformer Ethernet SMD, https://www.haloelectronics.com/pdf/discrete-genesus.pdf +Transformer Ethernet SMD +0 +24 +24 +Transformer_SMD +Transformer_Ethernet_Halo_N2_SO-16_7.11x12.7mm +Halo N2 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Halo SO Transformer_SMD +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Halo_N5_SO-16_7.11x12.7mm +Halo N5 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Halo SO Transformer_SMD +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Halo_N6_SO-16_7.11x14.73mm +Halo N6 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Halo SO Transformer_SMD +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Wuerth_749013011A +Ethernet Transformer, Wuerth 749013011A, https://www.we-online.com/katalog/datasheet/749013011A.pdf +Ethernet Transformer +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_YDS_30F-51NL_SO-24_7.1x15.1mm +YDS 30F-51NL SO, 24 Pin (https://datasheet.lcsc.com/lcsc/1811051610_Shanghai-YDS-Tech-30F-51NL_C123168.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +YDS SO Transformer_SMD +0 +24 +24 +Transformer_SMD +Transformer_MACOM_SM-22 +https://cdn.macom.com/datasheets/ETC1-1-13.pdf +RF Transformer +0 +5 +5 +Transformer_SMD +Transformer_MiniCircuits_AT224-1A +SMD RF transformer, 50 ohm, 4.5 to 3000Mhz, https://www.minicircuits.com/pdfs/TC1-1-13M+.pdf +RF Transformer +0 +5 +5 +Transformer_SMD +Transformer_Murata_78250JC +Murata 78250JC https://www.murata-ps.com/datasheet?/data/magnetics/kmp_78250j.pdf +Murata transformer +0 +6 +6 +Transformer_SMD +Transformer_NF_ETAL_P2781 +NF-Transformer, ETAL, P2781, SMD, +NF-Transformer ETAL P2781 SMD +0 +8 +7 +Transformer_SMD +Transformer_NF_ETAL_P2781_HandSoldering +NF-Transformer, ETAL, P2781, SMD, Handsoldering +NF-Transformer ETAL P2781 SMD Handsoldering +0 +8 +7 +Transformer_SMD +Transformer_NF_ETAL_P3000 +NF-Reansformer, ETAL, P3000, SMD, +NF-Reansformer ETAL P3000 SMD +0 +15 +13 +Transformer_SMD +Transformer_NF_ETAL_P3000_HandSoldering +NF-Reansformer, ETAL, P3000, SMD, Handsoldering, +NF-Reansformer ETAL P3000 SMD Handsoldering +0 +15 +13 +Transformer_SMD +Transformer_NF_ETAL_P3181 +NF-Transformer, ETAL, P3181, SMD, +NF-Transformer ETAL P3181 SMD +0 +7 +6 +Transformer_SMD +Transformer_NF_ETAL_P3181_HandSoldering +NF-Transformer, ETAL, P3181, SMD, Hand Soldering, +NF-Transformer ETAL P3181 SMD Hand Soldering +0 +7 +6 +Transformer_SMD +Transformer_NF_ETAL_P3188 +NF-Transformer, ETAL, P3188, SMD, +NF-Transformer ETAL P3188 SMD +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3188_HandSoldering +NF-Transformer, ETAL, P3188, SMD, Handsoldering, +NF-Transformer ETAL P3188 SMD Handsoldering +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3191 +NF-Transformer, ETAL, P3191, SMD, +NF-Transformer ETAL P3191 SMD +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3191_HandSoldering +NF-Transformer, ETAL, P3191, SMD, Handsoldering, +NF-Transformer ETAL P3191 SMD Handsoldering +0 +8 +6 +Transformer_SMD +Transformer_Pulse_H1100NL +For H1100NL, H1101NL, H1102NL, H1121NL, H1183NL, H1199NL, HX1188NL, HX1198NL and H1302NL. https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/H1102NL/doc_part/H1102NL.pdf +H1100NL H1101NL H1102NL H1121NL H1183NL H1199NL HX1188NL HX1198NL H1302N +0 +16 +16 +Transformer_SMD +Transformer_Wuerth_750315371 +Power Transformer, horizontal core with bobbin, 6 pin, 2.54mm pitch, 11.24mm row spacing, 12.6x8.3x4.1mm +transformer flyback +0 +6 +6 +Transformer_SMD +Transformer_Wurth_WE-AGDT-EP7 +WE-AGDT Auxiliary Gate Drive Transformer EP7, https://www.we-online.com/components/products/datasheet/750319177.pdf +auxiliary gate drive transformer +0 +8 +8 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D9.0mm_Amidon-T30 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 9mm, Amidon T30, +Autotransformer Toroid horizontal laying 1 Tap Diameter 9mm Amidon T30 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D10.5mm_Amidon-T37 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 10,5mm, Amidon T37, +Autotransformer Toroid horizontal laying 1 Tap Diameter 10 5mm Amidon T37 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D12.5mm_Amidon-T44 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 12,5mm, Amidon T44, +Autotransformer Toroid horizontal laying 1 Tap Diameter 12 5mm Amidon T44 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D14.0mm_Amidon-T50 +Choke, Inductance, Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 14mm, Amidon T50, +Choke Inductance Autotransformer Toroid horizontal laying 1 Tap Diameter 14mm Amidon T50 +0 +3 +3 +Transformer_THT +Autotransformer_ZS1052-AC +Ignition coil for xenon flash, http://www.excelitas.com/downloads/ZS1052ACH.pdf +ignition coil autotransformer +0 +3 +3 +Transformer_THT +Transformer_37x44 +transformer 37x44mm² +transformer 37x44mm² +0 +12 +4 +Transformer_THT +Transformer_Breve_TEZ-22x24 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +7 +7 +Transformer_THT +Transformer_Breve_TEZ-28x33 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-35x42 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-38x45 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-44x52 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +10 +10 +Transformer_THT +Transformer_Breve_TEZ-47x57 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +13 +13 +Transformer_THT +Transformer_CHK_EI30-2VA_1xSec +Trafo, Printtrafo, CHK, EI30, 2VA, 1x Sec,http://www.eratransformers.com/downloads/030-7585.0.pdf +Trafo Printtrafo CHK EI30 2VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI30-2VA_2xSec +Trafo, Printtrafo, CHK, EI30, 2VA, 2x Sec, +Trafo Printtrafo CHK EI30 2VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI30-2VA_Neutral +Trafo, Printtrafo, CHK, EI30, 2VA, neutral, +Trafo Printtrafo CHK EI30 2VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_1xSec +Trafo, Printtrafo, CHK, EI38, 3VA, 1x Sec, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI38 3VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_2xSec +Trafo, Printtrafo, CHK, EI38, 3VA, 2x Sec, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI38 3VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_Neutral +Trafo, Printtrafo, CHK, EI38, 3VA, neutral, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI42 3VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_1xSec +Trafo, Printtrafo, CHK, EI42, 5VA, 1x Sec, +Trafo Printtrafo CHK EI42 5VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_2xSec +Trafo, Printtrafo, CHK, EI42, 5VA, 2x Sec, +Trafo Printtrafo CHK EI42 5VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_Neutral +Trafo, Printtrafo, CHK, EI42, 5VA, neutral, +Trafo Printtrafo CHK EI42 5VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI48-8VA_1xSec +Trafo, Printtrafo, CHK, EI48, 8VA, 1x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA 1x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-8VA_2xSec +Trafo, Printtrafo, CHK, EI48, 8VA, 2x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA 2x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-8VA_Neutral +Trafo, Printtrafo, CHK, EI48, 8VA, neutral, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA neutral +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_1xSec +Trafo, Printtrafo, CHK, EI48, 10VA, 1x Sec, +Trafo Printtrafo CHK EI48 10VA 1x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_2xSec +Trafo, Printtrafo, CHK, EI48, 10VA, 2x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 10VA 2x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_Neutral +Trafo, Printtrafo, CHK, EI48, 10VA, neutral, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 10VA neutral +0 +12 +12 +Transformer_THT +Transformer_CHK_EI54-12VA_1xSec +Trafo, Printtrafo, CHK, EI54, 12VA, 1x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA 1x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-12VA_2xSec +Trafo, Printtrafo, CHK, EI54, 12VA, 2x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA 2x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-12VA_Neutral +Trafo, Printtrafo, CHK, EI54, 12VA, neutral,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA neutral +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_1xSec +Trafo, Printtrafo, CHK, EI54, 16VA, 1x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA 1x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_2xSec +Trafo, Printtrafo, CHK, EI54, 16VA, 2x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA 2x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_Neutral +Trafo, Printtrafo, CHK, EI54, 16VA, neutral,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA neutral +0 +14 +14 +Transformer_THT +Transformer_CHK_UI30-4VA_Flat +Trafo, Flattrafo, CHK, UI30, 4VA, +Trafo Flattrafo CHK UI30 4VA +0 +16 +16 +Transformer_THT +Transformer_CHK_UI39-10VA_Flat +Trafo, Flattrafo, CHK, UI39, 10VA, +Trafo Flattrafo CHK UI39 10VA +0 +20 +20 +Transformer_THT +Transformer_Coilcraft_Q4434-B_Rhombus-T1311 +Transformator, Transformer, Flyback, Coilcraft Q4434-B, Rgombus T1311, +Transformator Transformer Flyback Coilcraft Q4434-B Rgombus T1311 +0 +8 +8 +Transformer_THT +Transformer_EPCOS_B66359A1013T_Horizontal +Transformer, Transformator, ETD29, 13 Pin, Horizontal, EPCOS-B66359A1013T, +Transformer Transformator ETD29 13 Pin Horizontal EPCOS-B66359A1013T +0 +13 +13 +Transformer_THT +Transformer_EPCOS_B66359J1014T_Vertical +Transformer, Transformator, ETD29, 14 Pin, Vertical, EPCOS-B66359J1014T, +Transformer Transformator ETD29 14 Pin Vertical EPCOS-B66359J1014T +0 +14 +14 +Transformer_THT +Transformer_Microphone_Lundahl_LL1538 +AUDIO TRAFO LUNDAHL, https://www.lundahltransformers.com/wp-content/uploads/datasheets/1538_8xl.pdf +AUDIO TRAFO LUNDAHL +0 +7 +7 +Transformer_THT +Transformer_Microphone_Lundahl_LL1587 +AUDIO TRAFO LUNDAHL, https://www.lundahltransformers.com/wp-content/uploads/datasheets/1587.pdf +AUDIO TRAFO LUNDAHL +0 +7 +7 +Transformer_THT +Transformer_Myrra_74040_Horizontal +Transformer, Transformator, ETD29, 13 Pin, Horizontal, Myrra-74040, +Transformer Transformator ETD29 13 Pin Horizontal Myrra-74040 +0 +13 +13 +Transformer_THT +Transformer_Myrra_EF20_7408x +EF20 flyback transformer,http://myrra.com/wp-content/uploads/2017/09/Datasheet-74087-74088-74089-rev-A.pdf +transformer flyback SMPS +0 +9 +9 +Transformer_THT +Transformer_Myrra_EI30-5_44000_Horizontal +Myrra 44000 series encapsulated transformer, 50/60Hz, EI 30-5, 0.6VA, 32.6 x 27.6 x 15.3mm, https://myrra.com/wp-content/uploads/2021/03/Catalogue-Myrra-2022-Final_compressed-5.pdf +Transformer THT Myrra +0 +6 +6 +Transformer_THT +Transformer_NF_ETAL_1-1_P1200 +NF-Transformer, 1:1, ETAL P1200,http://www.etalgroup.com/sites/default/files/products/P1200_April_2005.pdf +NF-Transformer 1to1 ETAL P1200 +0 +4 +4 +Transformer_THT +Transformer_NF_ETAL_P1165 +NF-Transformer, ETAL, P1165,http://www.etalgroup.com/sites/default/files/products/P1165_February_2006.pdf +NF-Transformer ETAL P1165 +0 +4 +4 +Transformer_THT +Transformer_NF_ETAL_P3324 +NF-Transformer, ETAL P3324,http://www.etalgroup.com/sites/default/files/products/P3324_April_2005.pdf +NF-Transformer ETAL P3324 +0 +4 +4 +Transformer_THT +Transformer_NF_ETAL_P3356 +NF-Transformer, ETAL P3356, http://www.etalgroup.com/sites/default/files/products/P3356_December_2005.pdf +NF-Transformer ETAL P3356 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D9.0mm_Amidon-T30 +Transformer, Toroid, horizontal, laying, Diameter 9mm, Amidon, T30, +Transformer Toroid horizontal laying Diameter 9mm Amidon T30 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D10.5mm_Amidon-T37 +Transformer, Toroid, horizontal, laying, Diameter 10,5mm, Amidon T37, +Transformer Toroid horizontal laying Diameter 10 5mm Amidon T37 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D12.5mm_Amidon-T44 +Transformer, Toroid, horizontal, laying, Diameter 12,5mm, Amidon T44, +Transformer Toroid horizontal laying Diameter 12 5mm Amidon T44 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D14.0mm_Amidon-T50 +Transformer, Toroid, horizontal, laying, Diameter 14mm, Amidon T50, +Transformer Toroid horizontal laying Diameter 14mm Amidon T50 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D18.0mm +Transformer, Toroid, tapped, horizontal, laying, Diameter 18mm, +Transformer Toroid tapped horizontal laying Diameter 18mm +0 +5 +4 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D9.0mm_Amidon-T30 +Transformer, Toroid, tapped, horizontal, laying, Diameter 9mm, Amidon, T30, +Transformer Toroid tapped horizontal laying Diameter 9mm Amidon T30 +0 +6 +6 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D10.5mm_Amidon-T37 +Transformer, Toroid, tapped, horizontal, laying, Diameter 10,5mm, Amidon, T37, +Transformer Toroid tapped horizontal laying Diameter 10 5mm Amidon T37 +0 +6 +6 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D12.5mm_Amidon-T44 +Transformer, Toroid, tapped, horizontal, laying, Diameter 12,5mm, Amidon, T44, +Transformer Toroid tapped horizontal laying Diameter 12 5mm Amidon T44 +0 +6 +6 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D14.0mm_Amidon-T50 +Transformer, Toroid, tapped, horizontal, laying, Diameter 14mm, Amidon T50, +Transformer Toroid tapped horizontal laying Diameter 14mm Amidon T50 +0 +6 +6 +Transformer_THT +Transformer_Triad_VPP16-310 +Power transformer, 2x Pri, 2x Sec, 230/115 VAC to 16/8V (0.31/0.62 A) +power center-tap +0 +8 +8 +Transformer_THT +Transformer_Wuerth_750343373 +Transformer, horizontal core with bobbin, 10 pin, 3.81mm pitch, 15.24mm row spacing, 22x23x17.53mm (https://katalog.we-online.com/ctm/datasheet/750343373.pdf) +transformer flyback +0 +10 +10 +Transformer_THT +Transformer_Wuerth_760871131 +Transformer, horizontal core with bobbin, 14 pin, 2.49 mm pitch, 20 mm row spacing, 25x22.2x16mm https://www.we-online.com/catalog/datasheet/760871131.pdf +transformer flyback +0 +14 +14 +Transformer_THT +Transformer_Zeming_ZMCT103C +Qingxian Zeming Langxi Electronic ZMCT103C current transformer 1000:1, https://5krorwxhmqqirik.leadongcdn.com/ZMCT103C+specification-aidirBqoKomRilSjpimnokp.pdf +current transformer ZMCT +0 +2 +2 +Transformer_THT +Transformer_Zeming_ZMPT101K +Qingxian Zeming Langxi Electronic ZMPT101K voltage transformer 1000:1000 2mA:2mA, https://5krorwxhmqqirik.leadongcdn.com/ZMPT101K+specification-aidikBqoKomRilSkopqmikp.pdf +voltage transformer ZMPT +0 +4 +4 +Transistor_Power +GaN_Systems_GaNPX-3_5x6.6mm_Drain2.93x0.6mm +GaN Systems GaNPX GS66502B Package, https://gansystems.com/wp-content/uploads/2020/04/GS66502B-DS-Rev-200402.pdf +ganpx gs66502b +0 +7 +3 +Transistor_Power +GaN_Systems_GaNPX-3_5x6.6mm_Drain3.76x0.6mm +GaN Systems GaNPX GS66504B Package, https://gansystems.com/wp-content/uploads/2020/04/GS66504B-DS-Rev-200402.pdf +ganpx gs66504b +0 +7 +3 +Transistor_Power +GaN_Systems_GaNPX-4_7x8.4mm +GaN Systems GaNPX GS66508B Package, https://gansystems.com/wp-content/uploads/2020/04/GS66508B-DS-Rev-200402.pdf +ganpx gs66508b +0 +15 +4 +Transistor_Power_Module +Infineon_AG-ECONO2 +28-lead TH, EconoPACK 2, same as Littelfuse_Package_H_XN2MM, https://www.infineon.com/dgdl/Infineon-FS75R07N2E4-DS-v02_00-en_de.pdf?fileId=db3a30432f5008fe012f52f916333979 +igbt diode module +0 +28 +28 +Transistor_Power_Module +Infineon_EasyPIM-1B +35-lead TH, EasyPIM 1B, https://www.infineon.com/dgdl/Infineon-FP10R06W1E3-DS-v02_01-en_de.pdf?fileId=db3a304412b407950112b43312285a63 +brifge rectifier igbt diode module +0 +23 +23 +Transistor_Power_Module +Infineon_EasyPIM-2B +35-lead TH, EasyPIM 2B, same as ST_ACEPACK-2-CIB, https://www.infineon.com/dgdl/Infineon-FP50R06W2E3-DS-v02_02-EN.pdf?fileId=db3a30431b3e89eb011b455c99987d24 +brifge rectifier igbt diode module +0 +35 +23 +Transistor_Power_Module +Littelfuse_Package_H_XBN2MM +24-lead TH, Package H, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1215h_xbn2mm_datasheet.pdf.pdf +brifge rectifier igbt diode module +0 +24 +24 +Transistor_Power_Module +Littelfuse_Package_H_XN2MM +28-lead TH, Package H, same as Infineon_AG-ECONO2, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1225h_xn2mm_datasheet.pdf.pdf +igbt diode module +0 +28 +28 +Transistor_Power_Module +Littelfuse_Package_W_XBN2MM +24-lead TH, Package W, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1250w_xbn2mm_datasheet.pdf.pdf +brifge rectifier igbt diode module +0 +35 +24 +Transistor_Power_Module +Littelfuse_Package_W_XN2MM +35-lead TH, Package W, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1275w_xn2mm_datasheet.pdf.pdf +igbt diode module +0 +35 +35 +Transistor_Power_Module +ST_ACEPACK-2-CIB +35-lead TH, ACEPACK 2 CIB, same as Infineon_EasyPIM-2B, https://www.st.com/resource/en/datasheet/a2c25s12m3.pdf +brifge rectifier igbt diode module +0 +35 +23 +Transistor_Power_Module +ST_ACEPACK-2-CIB_PressFIT +35-lead TH, ACEPACK 2 CIB, PressFIT, https://www.st.com/resource/en/datasheet/a2c50s65m2-f.pdf +brifge rectifier igbt diode module +0 +35 +23 +Transistor_Power_Module +ST_SDIP-25L +25-lead TH, SDIP-25L, https://www.st.com/resource/en/datasheet/stgips20k60.pdf +igbt diode module +0 +25 +25 +Valve +Valve_ECC-83-1 +Valve ECC-83-1 round pins +Valve ECC-83-1 round pins +0 +9 +9 +Valve +Valve_ECC-83-2 +Valve ECC-83-2 flat pins +Valve ECC-83-2 flat pins +0 +10 +9 +Valve +Valve_EURO +Valve Euro +Valve Euro +0 +7 +5 +Valve +Valve_Glimm +Valve Glimm +Valve Glimm +0 +2 +2 +Valve +Valve_Mini_G +Valve mini G +Valve mini G +0 +9 +7 +Valve +Valve_Mini_P +Valve mini P +Valve mini P +0 +7 +7 +Valve +Valve_Mini_Pentode_Linear +Mini-Pentode, 5-pin, e.g. JAN6418 +Valve Mini-Pentode 5-pin JAN6418 +0 +5 +5 +Valve +Valve_Noval_G +Valve NOVAL G +Valve NOVAL G +0 +11 +9 +Valve +Valve_Noval_P +Valve NOVAL P +Valve NOVAL P +0 +9 +9 +Valve +Valve_Octal +8-pin round valve +valve +0 +9 +8 +Varistor +RV_Disc_D7mm_W3.4mm_P5mm +Varistor, diameter 7mm, width 3.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.5mm_P5mm +Varistor, diameter 7mm, width 3.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.6mm_P5mm +Varistor, diameter 7mm, width 3.6mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.7mm_P5mm +Varistor, diameter 7mm, width 3.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.8mm_P5mm +Varistor, diameter 7mm, width 3.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.9mm_P5mm +Varistor, diameter 7mm, width 3.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.2mm_P5mm +Varistor, diameter 7mm, width 4.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.3mm_P5mm +Varistor, diameter 7mm, width 4.3mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.5mm_P5mm +Varistor, diameter 7mm, width 4.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.8mm_P5mm +Varistor, diameter 7mm, width 4.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.9mm_P5mm +Varistor, diameter 7mm, width 4.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4mm_P5mm +Varistor, diameter 7mm, width 4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.1mm_P5mm +Varistor, diameter 7mm, width 5.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.4mm_P5mm +Varistor, diameter 7mm, width 5.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.5mm_P5mm +Varistor, diameter 7mm, width 5.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.7mm_P5mm +Varistor, diameter 7mm, width 5.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.3mm_P5mm +Varistor, diameter 9mm, width 3.3mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.4mm_P5mm +Varistor, diameter 9mm, width 3.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.5mm_P5mm +Varistor, diameter 9mm, width 3.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.6mm_P5mm +Varistor, diameter 9mm, width 3.6mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.7mm_P5mm +Varistor, diameter 9mm, width 3.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.8mm_P5mm +Varistor, diameter 9mm, width 3.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.9mm_P5mm +Varistor, diameter 9mm, width 3.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.1mm_P5mm +Varistor, diameter 9mm, width 4.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.2mm_P5mm +Varistor, diameter 9mm, width 4.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.4mm_P5mm +Varistor, diameter 9mm, width 4.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.5mm_P5mm +Varistor, diameter 9mm, width 4.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.8mm_P5mm +Varistor, diameter 9mm, width 4.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4mm_P5mm +Varistor, diameter 9mm, width 4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.2mm_P5mm +Varistor, diameter 9mm, width 5.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.4mm_P5mm +Varistor, diameter 9mm, width 5.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.5mm_P5mm +Varistor, diameter 9mm, width 5.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.7mm_P5mm +Varistor, diameter 9mm, width 5.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W6.1mm_P5mm +Varistor, diameter 9mm, width 6.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W3.9mm_P7.5mm +Varistor, diameter 12mm, width 3.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.2mm_P7.5mm +Varistor, diameter 12mm, width 4.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.3mm_P7.5mm +Varistor, diameter 12mm, width 4.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.4mm_P7.5mm +Varistor, diameter 12mm, width 4.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.5mm_P7.5mm +Varistor, diameter 12mm, width 4.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.6mm_P7.5mm +Varistor, diameter 12mm, width 4.6mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.7mm_P7.5mm +Varistor, diameter 12mm, width 4.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.8mm_P7.5mm +Varistor, diameter 12mm, width 4.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4mm_P7.5mm +Varistor, diameter 12mm, width 4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.1mm_P7.5mm +Varistor, diameter 12mm, width 5.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.4mm_P7.5mm +Varistor, diameter 12mm, width 5.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.8mm_P7.5mm +Varistor, diameter 12mm, width 5.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5mm_P7.5mm +Varistor, diameter 12mm, width 5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.1mm_P7.5mm +Varistor, diameter 12mm, width 6.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.2mm_P7.5mm +Varistor, diameter 12mm, width 6.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.3mm_P7.5mm +Varistor, diameter 12mm, width 6.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.7mm_P7.5mm +Varistor, diameter 12mm, width 6.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.1mm_P7.5mm +Varistor, diameter 12mm, width 7.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.5mm_P7.5mm +Varistor, diameter 12mm, width 7.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.9mm_P7.5mm +Varistor, diameter 12mm, width 7.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W3.9mm_P7.5mm +Varistor, diameter 15.5mm, width 3.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.2mm_P7.5mm +Varistor, diameter 15.5mm, width 4.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.3mm_P7.5mm +Varistor, diameter 15.5mm, width 4.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.4mm_P7.5mm +Varistor, diameter 15.5mm, width 4.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.5mm_P7.5mm +Varistor, diameter 15.5mm, width 4.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.6mm_P7.5mm +Varistor, diameter 15.5mm, width 4.6mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.7mm_P7.5mm +Varistor, diameter 15.5mm, width 4.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.8mm_P7.5mm +Varistor, diameter 15.5mm, width 4.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.9mm_P7.5mm +Varistor, diameter 15.5mm, width 4.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4mm_P7.5mm +Varistor, diameter 15.5mm, width 4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.2mm_P7.5mm +Varistor, diameter 15.5mm, width 5.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.4mm_P7.5mm +Varistor, diameter 15.5mm, width 5.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.9mm_P7.5mm +Varistor, diameter 15.5mm, width 5.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5mm_P7.5mm +Varistor, diameter 15.5mm, width 5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.1mm_P7.5mm +Varistor, diameter 15.5mm, width 6.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.3mm_P7.5mm +Varistor, diameter 15.5mm, width 6.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.4mm_P7.5mm +Varistor, diameter 15.5mm, width 6.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.8mm_P7.5mm +Varistor, diameter 15.5mm, width 6.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W7.2mm_P7.5mm +Varistor, diameter 15.5mm, width 7.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W7.5mm_P7.5mm +Varistor, diameter 15.5mm, width 7.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W8mm_P7.5mm +Varistor, diameter 15.5mm, width 8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W11mm_P7.5mm +Varistor, diameter 15.5mm, width 11mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D16.5mm_W6.7mm_P7.5mm +Varistor, diameter 16.5mm, width 6.7mm, pitch 5mm, https://katalog.we-online.de/pbs/datasheet/820542711.pdf +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.3mm_P10mm +Varistor, diameter 21.5mm, width 4.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.4mm_P10mm +Varistor, diameter 21.5mm, width 4.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.5mm_P10mm +Varistor, diameter 21.5mm, width 4.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.6mm_P10mm +Varistor, diameter 21.5mm, width 4.6mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.7mm_P10mm +Varistor, diameter 21.5mm, width 4.7mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.8mm_P10mm +Varistor, diameter 21.5mm, width 4.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.9mm_P10mm +Varistor, diameter 21.5mm, width 4.9mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.1mm_P10mm +Varistor, diameter 21.5mm, width 5.1mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.3mm_P10mm +Varistor, diameter 21.5mm, width 5.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.4mm_P10mm +Varistor, diameter 21.5mm, width 5.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.6mm_P10mm +Varistor, diameter 21.5mm, width 5.6mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.8mm_P10mm +Varistor, diameter 21.5mm, width 5.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5mm_P10mm +Varistor, diameter 21.5mm, width 5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.1mm_P7.5mm +varistor +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.3mm_P10mm +Varistor, diameter 21.5mm, width 6.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.5mm_P10mm +Varistor, diameter 21.5mm, width 6.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.7mm_P10mm +Varistor, diameter 21.5mm, width 6.7mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.8mm_P10mm +Varistor, diameter 21.5mm, width 6.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.1mm_P10mm +Varistor, diameter 21.5mm, width 7.1mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.5mm_P10mm +Varistor, diameter 21.5mm, width 7.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.9mm_P10mm +Varistor, diameter 21.5mm, width 7.9mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W8.4mm_P10mm +Varistor, diameter 21.5mm, width 8.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W11.4mm_P10mm +Varistor, diameter 21.5mm, width 11.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Rect_V25S440P_L26.5mm_W8.2mm_P12.7mm +Varistor, V25S440P, https://www.littelfuse.com/media?resourcetype=datasheets&itemid=b410c42c-51d1-460e-b1d9-d105d93c9679&filename=littelfuse-varistor-ultramov25s-datasheet +varistor +0 +2 +2 +Varistor +Varistor_Panasonic_VF +Panasonic VF series varistor, 6x8mm body, 3.2mm height, https://mediap.industry.panasonic.eu/assets/imported/industrial.panasonic.com/cdbs/www-data/pdf/AWA0000/AWA0000C4.pdf +Varistor VF +0 +2 +2 diff --git a/Schematics/safd/Schematics-F_Cu.svg b/Schematics/safd/Schematics-F_Cu.svg new file mode 100644 index 0000000..71da1d3 --- /dev/null +++ b/Schematics/safd/Schematics-F_Cu.svg @@ -0,0 +1,4252 @@ + + + +SVG Image created as Schematics-F_Cu.svg date 2024/07/20 13:42:31 + Image generated by PCBNEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +